From d204abe8e87e810ad41cfcb90618b453b971ce00 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Sat, 2 Feb 2019 00:53:22 +0800 Subject: [PATCH 1/7] fix Readme file --- object/User.py | 2 +- run/PostCounterpartyScript.py | 17 ++++++++++------- run/PostCustomerScript.py | 8 +++++--- settings.py | 10 ++++++---- 4 files changed, 22 insertions(+), 15 deletions(-) diff --git a/object/User.py b/object/User.py index 83590df..2e0932c 100644 --- a/object/User.py +++ b/object/User.py @@ -26,7 +26,7 @@ def oauth_login(self): ) url = settings.API_HOST + settings.OAUTH_TOKEN_PATH - response = session.fetch_request_token(url, verify=False) + response = session.fetch_request_token(url, verify=settings.VERIFY) self.oauth_token = response.get('oauth_token') self.oauth_secret = response.get('oauth_token_secret') diff --git a/run/PostCounterpartyScript.py b/run/PostCounterpartyScript.py index 474f0a7..fcbe1f3 100644 --- a/run/PostCounterpartyScript.py +++ b/run/PostCounterpartyScript.py @@ -47,11 +47,11 @@ if logoUrl.startswith("http") and other_accounts['metadata']['image_URL'] is None: json_tmp = {"image_URL": logoUrl} url = settings.API_HOST + "/obp/v3.1.0/banks/" + bank_id + "/accounts/" + account_id + "/" + view['id'] + "/other_accounts/"+other_accounts['id']+"/metadata/image_url" - result = session.request('POST', url, json = json_tmp, verify=False) + result = session.request('POST', url, json = json_tmp, verify=settings.VERIFY) if result.status_code == 201: print("Saved " + logoUrl + " as imageURL for counterparty "+ other_accounts['id']) else: - print("Save failed. {}".format(result.error)) + print("Save failed. {}".format(result.error if result is not None and result.error is not None else "")) else: print("did NOT save " + logoUrl + " as imageURL for counterparty "+ other_accounts['id']) @@ -59,11 +59,11 @@ json_tmp = {"URL": cp['homePageUrl']} url = settings.API_HOST + "/obp/v3.1.0/banks/" + bank_id + "/accounts/" + account_id + "/" + \ view['id'] + "/other_accounts/" + other_accounts['id'] + "/metadata/url" - result = session.request('POST', url, json=json_tmp, verify=False) + result = session.request('POST', url, json=json_tmp, verify=settings.VERIFY) if result.status_code == 201: print("Saved " + cp['homePageUrl'] + " as URL for counterparty "+ other_accounts['id']) else: - print("Save failed. {}".format(result.error)) + print("Save failed. {}".format(result.error if result is not None and result.error is not None else "")) else: print("did NOT save " + cp['homePageUrl'] + " as URL for counterparty "+ other_accounts['id']) @@ -73,12 +73,15 @@ json_tmp = {"more_info": moreInfo} url = settings.API_HOST + "/obp/v3.1.0/banks/" + bank_id + "/accounts/" + account_id + "/" + view['id'] + "/other_accounts/" + other_accounts['id'] + "/metadata/more_info" - result = session.request('POST', url, json=json_tmp, verify=False) + result = session.request('POST', url, json=json_tmp, verify=settings.VERIFY) if result.status_code==201: print("Saved " + moreInfo + " as more_info for counterparty "+ other_accounts['id']) else: - print("Save failed. {}".format(result.error)) + print("Save failed. {}".format(result.error if result is not None and result.error is not None else "")) else: - print("did NOT save more_info for counterparty "+ other_accounts['id']) + if other_accounts['metadata']['more_info'] is not None: + print("more info is not empty:{}") + else: + print("did NOT save more_info for counterparty "+ other_accounts['id']) user.oauth_logout() \ No newline at end of file diff --git a/run/PostCustomerScript.py b/run/PostCustomerScript.py index 1f3c6c3..006bef2 100644 --- a/run/PostCustomerScript.py +++ b/run/PostCustomerScript.py @@ -61,9 +61,11 @@ for bank in bank_list: print("Posting a customer for bank {}".format(bank.short_name)) - url = settings.API_HOST+"/obp/v3.1.0/banks/{}/customers".format(bank.id) - result2 = session.request('POST', url, json=customer.to_json(current_user['user_id']), verify=False) + url = settings.API_HOST+"/obp/v2.1.0/banks/{}/customers".format(bank.id) + result2 = session.request('POST', url, json=customer.to_json(current_user['user_id']), verify=settings.VERIFY) if result2.status_code==201: print("saved {} as customer {}".format(customer.customer_number, result2.content)) else: - print("did NOT save customer {}".format(result2.error)) + print("did NOT save customer {}".format(result2.content if result2 is not None and result2.content is not None else "")) + else: + print(result.content if result is not None and result.content is not None else "") \ No newline at end of file diff --git a/settings.py b/settings.py index 4ee30f9..f319364 100644 --- a/settings.py +++ b/settings.py @@ -1,7 +1,7 @@ -OAUTH_CONSUMER_KEY = 'symhwtmli25b23c0nu2iy0khmdnupe50vlrrxpc5' -OAUTH_CONSUMER_SECRET = 'psbqnt4lm0a5olt0sdigprlz0pyyl430ynkf51jb' +OAUTH_CONSUMER_KEY = '52twqicuegicqljbpsb5macoj4on22ss05vm0yms' +OAUTH_CONSUMER_SECRET = 'alshky0ujfeuattvqkqzi12wfofcmbges5wuescu' -API_HOST = 'http://127.0.0.1:8080' +API_HOST = 'https://openlab.openbankproject.com' API_VERSION = '3.1.0' @@ -14,4 +14,6 @@ ADMIN_USERNAME = "pflee" ADMIN_PASSWORD = "Pflee@0218" -FILE_ROOT = "../example_input/" \ No newline at end of file +FILE_ROOT = "../example_input/" + +VERIFY = True if API_HOST.startswith("https") else False \ No newline at end of file From 9af37639d72ba51f31e92a7009cf33eebabaaedd Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Sat, 2 Feb 2019 00:55:10 +0800 Subject: [PATCH 2/7] fix Readme file --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d0e6b62..e731400 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,9 @@ $ python run\PostCounterpartyScript.py make sure your admin account have the roles below: CanCreateCustomer or CanCreateCustomerAtAnyBank +CanCreateCustomer and CanCreateUserCustomerLink +CanCreateCustomerAtAnyBank and CanCreateUserCustomerLinkAtAnyBank +CanGetAnyUser ```bash $ python run\PostCustomerScript.py ``` \ No newline at end of file From 1161e860d9f91c91a0bfbb23c2d4be7fa67948a4 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Wed, 6 Feb 2019 20:26:24 +0800 Subject: [PATCH 3/7] OAUTH_BASE_URL --> REDIRECT_URL --- README.md | 2 +- object/User.py | 2 +- settings.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e731400..f50a6db 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ API_HOST = '' API_VERSION = '3.1.0' # API Tester hostname, e.g. https://apitester.openbankproject.com -LOGIN_AGENT_URL = 'http://127.0.0.1:9090' +REDIRECT_URL = 'http://127.0.0.1:9090' OAUTH_TOKEN_PATH = '/oauth/initiate' OAUTH_AUTHORIZATION_PATH = '/oauth/authorize' diff --git a/object/User.py b/object/User.py index 2e0932c..990e5c8 100644 --- a/object/User.py +++ b/object/User.py @@ -22,7 +22,7 @@ def oauth_login(self): session = OAuth1Session( settings.OAUTH_CONSUMER_KEY, client_secret=settings.OAUTH_CONSUMER_SECRET, - callback_uri=settings.LOGIN_AGENT_URL +settings.OAUTH_AUTHORIZATION_PATH, + callback_uri=settings.REDIRECT_URL +settings.OAUTH_AUTHORIZATION_PATH, ) url = settings.API_HOST + settings.OAUTH_TOKEN_PATH diff --git a/settings.py b/settings.py index f319364..4991316 100644 --- a/settings.py +++ b/settings.py @@ -5,7 +5,7 @@ API_VERSION = '3.1.0' -LOGIN_AGENT_URL = 'http://127.0.0.1:9090' +REDIRECT_URL = 'http://127.0.0.1:9090' OAUTH_TOKEN_PATH = '/oauth/initiate' OAUTH_AUTHORIZATION_PATH = '/oauth/authorize' From b1f2035b16b71889e32f2297b6f70907c3d6c1b1 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Sat, 9 Feb 2019 00:19:04 +0800 Subject: [PATCH 4/7] OAUTH_BASE_URL --> REDIRECT_URL --- object/User.py | 25 +++++++++++++++++++++++++ run/PostCounterpartyScript.py | 2 +- settings.py | 2 ++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/object/User.py b/object/User.py index 990e5c8..0cf0187 100644 --- a/object/User.py +++ b/object/User.py @@ -4,6 +4,7 @@ import settings from selenium import webdriver from selenium.webdriver.firefox.options import Options +import requests class User: def __init__(self, user_name, password, email=None): @@ -73,6 +74,30 @@ def oauth_login(self): return self.session + def direct_login(self): + url = settings.API_HOST + settings.DIRECTLOGIN_PATH + authorization = 'DirectLogin username="{}",password="{}",consumer_key="{}"'.format( # noqa + self.user_name, + self.password, + settings.OAUTH_CONSUMER_KEY) + headers = {'Authorization': authorization} + + self.session = None + try: + response = requests.post(url, headers=headers) + result = response.json() + if response.status_code != 201: + print("Login failed!!!") + else: + token = result['token'] + headers = {'Authorization': 'DirectLogin token={}'.format(token)} + self.session = requests.Session() + self.session.headers.update(headers) + except requests.exceptions.ConnectionError as err: + print("Login failed!!!") + + return self.session + def get_user_private_account(self): result = self.session.get(settings.API_HOST+"/obp/v1.2.1/accounts/private") diff --git a/run/PostCounterpartyScript.py b/run/PostCounterpartyScript.py index fcbe1f3..67614ec 100644 --- a/run/PostCounterpartyScript.py +++ b/run/PostCounterpartyScript.py @@ -15,7 +15,7 @@ for user_dict in json_object_user['users']: user = User(user_dict['user_name'], user_dict['password'], user_dict['email']) print("login as user: ") - session = user.oauth_login() + session = user.direct_login() print("get users private accounts") private_account = user.get_user_private_account() account_list = json.loads(private_account)['accounts'] diff --git a/settings.py b/settings.py index 4991316..7fb2302 100644 --- a/settings.py +++ b/settings.py @@ -11,6 +11,8 @@ OAUTH_AUTHORIZATION_PATH = '/oauth/authorize' OAUTH_ACCESS_TOKEN_PATH = '/oauth/token' +DIRECTLOGIN_PATH = '/my/logins/direct' + ADMIN_USERNAME = "pflee" ADMIN_PASSWORD = "Pflee@0218" From 65d4a71bc63a562815431b293f567811a6db1ce3 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Mon, 18 Feb 2019 19:59:12 +0800 Subject: [PATCH 5/7] insert super user with several roles to OBP --- .../OBP_sandbox_counterparties_pretty.json | 2518 + .../OBP_sandbox_customers_pretty.json | 722 + example_input/OBP_sandbox_pretty.json | 402243 +++++++++++++++ example_input/transactions.json | 400900 ++++++++++++++ example_input/users.json | 54 + object/Transaction.py | 22 + object/User.py | 47 +- run/CreateUsers.py | 35 + run/TransactionGenerator.py | 11 + 9 files changed, 806551 insertions(+), 1 deletion(-) create mode 100644 example_input/OBP_sandbox_counterparties_pretty.json create mode 100644 example_input/OBP_sandbox_customers_pretty.json create mode 100644 example_input/OBP_sandbox_pretty.json create mode 100644 example_input/transactions.json create mode 100644 example_input/users.json create mode 100644 object/Transaction.py create mode 100644 run/CreateUsers.py create mode 100644 run/TransactionGenerator.py diff --git a/example_input/OBP_sandbox_counterparties_pretty.json b/example_input/OBP_sandbox_counterparties_pretty.json new file mode 100644 index 0000000..b5b18f8 --- /dev/null +++ b/example_input/OBP_sandbox_counterparties_pretty.json @@ -0,0 +1,2518 @@ +[ + [ + { + "name":"British Airways", + "category":"Airline_1", + "superCategory":"Airline", + "logoUrl":"https://s3-eu-west-1.amazonaws.com/sendmybag/media/third-party/british-airways-logo.png", + "homePageUrl":"http://www.britishairways.com/en-de/destinations/uk-ireland?DM1_Channel=PPC&DM1_Mkt=DE&DM1_Campaign=EUNAF_DE_EN_FLIGHTS_BRAND_SH_OD_UNITED+KINGDOM&Brand=Y&SEO=N&gclid=CjwKEAjwlq24BRDMjdK7g8mD6BASJABBl8n3_tCtMD7wK7HDhQV7EeLdsAOoQMpi1L7Iv3n-3UNu9xoCG5Lw_wcB", + "region":"uk" + }, + { + "name":"Easyjet", + "category":"Airline_2", + "superCategory":"Airline", + "logoUrl":"https://autobahn13.files.wordpress.com/1300/04/easyjet-com.jpg", + "homePageUrl":"http://www.easyjet.com/en/", + "region":"uk" + }, + { + "name":"Heathrow Services", + "category":"Airport Services_1", + "superCategory":"Airport Facilities", + "logoUrl":"http://nicc.creategravity.com/wp-content/uploads/2014/04/Purple_logo_jpeg-no-strapline.jpg", + "homePageUrl":"http://www.heathrow.com/airport-guide/terminal-facilities-and-services", + "region":"uk" + }, + { + "name":"London Eye", + "category":"Attraction_1", + "superCategory":"London arttraction", + "logoUrl":"http://www.voucherfox.co.uk/images/image_1500616332.jpg", + "homePageUrl":"https://www.londoneye.com", + "region":"uk" + }, + { + "name":"Revolution Bar", + "category":"Bar_1", + "superCategory":"Bar", + "logoUrl":"http://www.bookthemagician.com/wp-content/uploads/2013/12/Revolution-Logo.jpg", + "homePageUrl":"http://www.revolution-bars.co.uk/", + "region":"uk" + }, + { + "name":"Hollywood Bowling", + "category":"Bar_2", + "superCategory":"Bar", + "logoUrl":"https://weekenderlife.files.wordpress.com/2013/04/hollywoodbowl-logos-2.jpg", + "homePageUrl":"http://www.hollywoodbowl.co.uk/", + "region":"uk" + }, + { + "name":"Booking.com", + "category":"Booking.com_1", + "superCategory":"Booking.com", + "logoUrl":"http://www.logoeps.net/wp-content/uploads/2013/06/booking-com-logo.jpg", + "homePageUrl":"http://www.booking.com/", + "region":"uk" + }, + { + "name":"My Service Mercedes Benz", + "category":"Car Service_1", + "superCategory":"Car Servicing", + "logoUrl":"http://enginegroup.co.uk/assets/images/691_mercedes-grid.jpg", + "homePageUrl":"https://www.mymercedesservice.co.uk/home", + "region":"uk" + }, + { + "name":"Age UK", + "category":"Charity_1", + "superCategory":"Elder People Charity", + "logoUrl":"http://www.ageuk.org.uk/BrandPartnerGlobal/berkshireVPP/Images/logos/age-uk_logo.jpg", + "homePageUrl":"http://www.ageuk.org.uk", + "region":"uk" + }, + { + "name":"British Red Cross", + "category":"Charity_2", + "superCategory":"humanitarian Charity", + "logoUrl":"http://www.clipartbest.com/cliparts/dc8/oRK/dc8oRK6Bi.jpeg", + "homePageUrl":"http://www.ageuk.org.uk/BrandPartnerGlobal/berkshireVPP/Images/logos/age-uk_logo.jpg", + "region":"uk" + }, + { + "name":"Showcase Cinema", + "category":"Cinema_1", + "superCategory":"Cinema", + "logoUrl":"http://images.events.blue-compass.com.s3.amazonaws.com/logos/13/13138x300.jpg", + "homePageUrl":"http://www.showcasecinemas.co.uk", + "region":"uk" + }, + { + "name":"Costa Coffee", + "category":"Coffee_1", + "superCategory":"Coffee", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/4/42/CostaLogo.svg/1024px-CostaLogo.svg.png", + "homePageUrl":"http://www.costa.co.uk/", + "region":"uk" + }, + { + "name":"Starbucks", + "category":"Coffee_2", + "superCategory":"Coffee", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/3/35/Starbucks_Coffee_Logo.svg/1024px-Starbucks_Coffee_Logo.svg.png", + "homePageUrl":"http://www.starbucks.co.uk/", + "region":"uk" + }, + { + "name":"Arrow Industrial", + "category":"Comercial door Suppilers_1", + "superCategory":"Commercial/Industrial Doors", + "logoUrl":"http://www.arrow-industrial.co.uk/wp-content/uploads/2015/07/Arrow_Logo-Web-Image.png", + "homePageUrl":"http://www.arrow-industrial.co.uk", + "region":"uk" + }, + { + "name":"Council Tax", + "category":"Council Tax_1", + "superCategory":"Council Tax", + "logoUrl":"", + "homePageUrl":"https://www.gov.uk/council-tax/working-out-your-council-tax", + "region":"uk" + }, + { + "name":"City Dental", + "category":"Dental Clinic_1", + "superCategory":"Dentist", + "logoUrl":"http://www.citydental.co.uk/wp-content/themes/citydentalclinic/images/city-dental-clinic-logo.png", + "homePageUrl":"http://www.citydental.co.uk", + "region":"uk" + }, + { + "name":"Savills", + "category":"Estate Agent_1", + "superCategory":"Estate Agent", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Savills_logo.svg/2000px-Savills_logo.svg.png", + "homePageUrl":"http://www.savills.co.uk/?gclid=CjwKEAjwlq24BRDMjdK7g8mD6BASJABBl8n3GdmQFNGiLaoQg3n3NVhElE6M35GhTpKTOztM3k0niBoCBbPw_wcB", + "region":"uk" + }, + { + "name":"Texaco Filling Station", + "category":"Filling Station_1", + "superCategory":"Filling Station", + "logoUrl":"http://archietew.com/wp-content/uploads/2012/11/texaco_Logo_1_Good.jpg", + "homePageUrl":"https://texaco.co.uk", + "region":"uk" + }, + { + "name":"Shell Filling Station", + "category":"Filling Station_2", + "superCategory":"Filling Station", + "logoUrl":"http://www.threewaysgarage.net/wp-content/uploads/2014/03/shell-logo.png", + "homePageUrl":"http://www.shell.co.uk/", + "region":"uk" + }, + { + "name":"Easyjet", + "category":"Flights_1", + "superCategory":"Flights", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/EasyJet_logo.svg/2000px-EasyJet_logo.svg.png", + "homePageUrl":"http://www.easyjet.com/", + "region":"uk" + }, + { + "name":"Skyscanner", + "category":"Flights_2", + "superCategory":"Flight Finder", + "logoUrl":"http://everywhereism.com/wp-content/uploads/2015/08/skyscanner-app-review.png", + "homePageUrl":"http://www.skyscanner.net/flights-from/uk/cheap-flights-from-united-kingdom.html?currency=GBP&market=UK&locale=en-GB", + "region":"uk" + }, + { + "name":"Eurosonix", + "category":"Freight Services_1", + "superCategory":"Freight Services", + "logoUrl":"http://m.c.lnkd.licdn.com/mpr/mpr/AAEAAQAAAAAAAAMvAAAAJDE1OTcyZWQ4LTA1MDQtNDljOC04ZWNkLTQ4YTUwMDllYjg4OQ.jpg", + "homePageUrl":"http://eurosonix.co.uk", + "region":"uk" + }, + { + "name":"Marks and Spencers", + "category":"Groceries/Supermaket_2", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Tesco", + "category":"Groceries/Supermaket_5", + "superCategory":"Supermarket", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/b/b0/Tesco_Logo.svg/1024px-Tesco_Logo.svg.png", + "homePageUrl":"http://www.tesco.com/", + "region":"uk" + }, + { + "name":"Waitrose", + "category":"Groceries/Supermaket_6", + "superCategory":"Supermarket", + "logoUrl":"https://pbs.twimg.com/profile_images/463627280980254720/RvbRvneq.jpeg", + "homePageUrl":"http://www.waitrose.com", + "region":"uk" + }, + { + "name":"Sainsbury's", + "category":"Groceries/Supermarket_1", + "superCategory":"Supermarket", + "logoUrl":"http://www.wilsonbowden.co.uk/images/6_5488d3ad61f22780398246/large.png", + "homePageUrl":"http://www.sainsburys.co.uk/", + "region":"uk" + }, + { + "name":"Asda", + "category":"Groceries/Supermarket_3", + "superCategory":"Supermarket", + "logoUrl":"http://www.groceryinsight.com/wp-content/uploads/2014/05/ASDA_logo_svg_.png", + "homePageUrl":"http://www.asda.com/", + "region":"uk" + }, + { + "name":"CO-OP", + "category":"Groceries/Supermarket_4", + "superCategory":"Supermarket", + "logoUrl":"http://poupartcitrus.co.uk/images/content/coop-card.png", + "homePageUrl":"http://www.co-operativefood.co.uk/", + "region":"uk" + }, + { + "name":"Fitness First", + "category":"Gym_1", + "superCategory":"Gym", + "logoUrl":"http://www.groundbloomflourish.com/wp-content/uploads/2015/10/Fitness-First.jpg", + "homePageUrl":"http://www.fitnessfirst.co.uk", + "region":"uk" + }, + { + "name":"Spooner", + "category":"Industiral Process Company_1", + "superCategory":"Industrial Processing Company", + "logoUrl":"http://www.spooner.co.uk/wp-content/themes/spooners/images/logo.png", + "homePageUrl":"http://www.spooner.co.uk", + "region":"uk" + }, + { + "name":"Atlantic Machinery", + "category":"Industrial Glass and Machinery_1", + "superCategory":"Industrial Glass and Machinery", + "logoUrl":"http://www.atlantic-machinery.co.uk/lib/atlantic_logo.jpg", + "homePageUrl":"http://www.atlantic-machinery.co.uk", + "region":"uk" + }, + { + "name":"Directline", + "category":"Insurance_1", + "superCategory":"Insurance", + "logoUrl":"http://www.thetimes.co.uk/tto/multimedia/archive/00334/60731799_direct_334169c.jpg", + "homePageUrl":"https://www.directline.com", + "region":"uk" + }, + { + "name":"Networkfish", + "category":"IT Company_1", + "superCategory":"IT Copmany", + "logoUrl":"http://networkfish.com/wp-content/themes/networkfish/img/logo.png", + "homePageUrl":"http://networkfish.com/?gclid=CjwKEAjwlq24BRDMjdK7g8mD6BASJABBl8n3MapIAZHJ6YPkEOvoxQr506D5wOnaJvGQEO-UN2OVTRoCfIDw_wcB", + "region":"uk" + }, + { + "name":"Goodman", + "category":"Manufacturing/Property/Investment_1", + "superCategory":"Commerical Property Investment", + "logoUrl":"http://www.deltascheme.com/admin/resources/casestudygoodmanlogo.jpg", + "homePageUrl":"http://www.goodman.com", + "region":"uk" + }, + { + "name":"Orange Mobile", + "category":"Mobile_1", + "superCategory":"Mobile", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Orange_logo.svg/2000px-Orange_logo.svg.png", + "homePageUrl":"http://www.store-orange.co.uk/", + "region":"uk" + }, + { + "name":"Three Mobile", + "category":"Mobile_2", + "superCategory":"Mobile", + "logoUrl":"http://s3.uswitchstatic.com/_img/library/news_image/three_mobile_logo_520x300x24_fill_h237df3f1.jpg", + "homePageUrl":"http://www.three.co.uk/", + "region":"uk" + }, + { + "name":"Duddingston Golf Club", + "category":"Monthly Membership_1", + "superCategory":"Golf", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Netflix", + "category":"Monthly Membership_2", + "superCategory":"Monthly Membership", + "logoUrl":"http://static6.businessinsider.com/image/539aedc269beddc243d29c52-800-371/netflix_web_logo.png", + "homePageUrl":"https://www.netflix.com", + "region":"uk" + }, + { + "name":"ING Mortgage", + "category":"Mortgage_1", + "superCategory":"Mortgage", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/ING_logo.png/640px-ING_logo.png", + "homePageUrl":"http://www.ing.com/", + "region":"uk" + }, + { + "name":"Viking Direct", + "category":"Office Suppliers_1", + "superCategory":"Office Suppliers", + "logoUrl":"http://www.underconsideration.com/brandnew/archives/viking_logo.gif", + "homePageUrl":"http://www.viking-direct.co.uk/?cm_mmc=Google-_-OSP_GEN_OFFICE-SUPPLIES_office-supplies_LOCATION-_-office%20supplies%20London_e-_-office%20supplies%20london_Exact&s2m_channel=70&gclid=CjwKEAjwlq24BRDMjdK7g8mD6BASJABBl8n37Muo8uekXXhglJ0eZcZdEz1ErEX9lMB_91mQg9QnRBoCAvnw_wcB", + "region":"uk" + }, + { + "name":"Specsavers", + "category":"Opticitan_1", + "superCategory":"Opticitan", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/07/thumb_6254_logo_retailer_1x.png", + "homePageUrl":"http://www.specsavers.co.uk/", + "region":"uk" + }, + { + "name":"Vision Express", + "category":"Opticitan_2", + "superCategory":"Opticitan", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/07/thumb_6259_logo_retailer_1x.png", + "homePageUrl":"http://www.visionexpress.com", + "region":"uk" + }, + { + "name":"NCP Car Park", + "category":"Parking_1", + "superCategory":"Parking", + "logoUrl":"", + "homePageUrl":"http://www.ncp.co.uk/", + "region":"uk" + }, + { + "name":"Llyolds Pharmacy", + "category":"Pharmacy_1", + "superCategory":"Pharmacy", + "logoUrl":"https://onlinedoctor.lloydspharmacy.com/blob/14300/2cdff5d4e9fd18ddb24629f78d05a65a/lloydspharmacy-logo---new-data.png", + "homePageUrl":"http://www.lloydspharmacy.com", + "region":"uk" + }, + { + "name":"Premier Pipline", + "category":"Pipeline suppilers_1", + "superCategory":"Pipeline Suppilers", + "logoUrl":"http://premierpipeline.co.uk/wp-content/themes/designmechanics/images/logo.png", + "homePageUrl":"http://premierpipeline.co.uk", + "region":"uk" + }, + { + "name":"EF-Electrical", + "category":"Repair and Maintenance_1", + "superCategory":"Electrical", + "logoUrl":"https://biz.prlog.org/EF-Electrical/logo.jpg", + "homePageUrl":"http://www.ef-electrical.co.uk/electrical-repairs.html", + "region":"uk" + }, + { + "name":"Laptop Repair Workshop", + "category":"Repair and Maintence_2", + "superCategory":"Electronic", + "logoUrl":"http://www.laptoprepairworkshop.co.uk/wp-content/themes/power/images/laptop-repair-london-logo.png", + "homePageUrl":"http://www.laptoprepairworkshop.co.uk", + "region":"uk" + }, + { + "name":"Appliance services", + "category":"Repair/Maintenance_3", + "superCategory":"Electrical", + "logoUrl":"http://www.domex-uk.co.uk/wp-content/themes/domex/_static/images/logo-domex.png", + "homePageUrl":"http://www.domex-uk.co.uk", + "region":"uk" + }, + { + "name":"Nando's", + "category":"Restaurant_1", + "superCategory":"Restaurant", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/c/c5/Nandos_logo.svg/1280px-Nandos_logo.svg.png", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Gordon Ramsay Resturant", + "category":"Restaurant_10", + "superCategory":"Restaurant", + "logoUrl":"http://www.restoconnection.fr/wp-content/uploads/2015/05/Gordon-ramsay-logo-restaurant.jpg", + "homePageUrl":"https://www.gordonramsayrestaurants.com/restaurant-gordon-ramsay", + "region":"uk" + }, + { + "name":"The Cellar Door", + "category":"Restaurant_11", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"The Coach and Horses", + "category":"Restaurant_12", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Chimichanga", + "category":"Restaurant_2", + "superCategory":"Restaurant", + "logoUrl":"http://www.chimichanga.co.uk/Static/images/brand/Chimi-box-logo.svg", + "homePageUrl":"http://www.chimichanga.co.uk/", + "region":"uk" + }, + { + "name":"Hand Made Burger Company", + "category":"Restaurant_3", + "superCategory":"Restaurant", + "logoUrl":"https://www.gourmetsociety.co.uk/uploads/images/chains/logos/3b033573865e88962893a92746cfce62-image.png", + "homePageUrl":"http://handmadeburger.co.uk/", + "region":"uk" + }, + { + "name":"Burger King", + "category":"Restaurant_4", + "superCategory":"Restaurant", + "logoUrl":"http://vignette4.wikia.nocookie.net/logopedia/images/2/2a/Burger_King.png/revision/latest?cb=20150719154954", + "homePageUrl":"http://www.burgerking.co.uk/", + "region":"uk" + }, + { + "name":"Zizzi", + "category":"Restaurant_5", + "superCategory":"Restaurant", + "logoUrl":"http://www.theo2.co.uk/assets/img/Zizzi-Logo.jpg", + "homePageUrl":"http://www.zizzi.co.uk/", + "region":"uk" + }, + { + "name":"Pizza Hut", + "category":"Restaurant_6", + "superCategory":"Restaurant", + "logoUrl":"http://vignette1.wikia.nocookie.net/logopedia/images/6/63/Pizza_Hut_2012_logo.png/revision/latest?cb=20140507122847", + "homePageUrl":"https://www.pizzahut.co.uk/", + "region":"uk" + }, + { + "name":"Mcdonalds", + "category":"Restaurant_7", + "superCategory":"Restaurant", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Mcdonalds-90s-logo.svg/2000px-Mcdonalds-90s-logo.svg.png", + "homePageUrl":"http://www.mcdonalds.co.uk/ukhome.html/", + "region":"uk" + }, + { + "name":"Pizza Express", + "category":"Restaurant_8", + "superCategory":"Restaurant", + "logoUrl":"https://pbs.twimg.com/profile_images/469131441733787648/q2MUP3Nk.jpeg", + "homePageUrl":"http://www.pizzaexpress.com/", + "region":"uk" + }, + { + "name":"Prezzo", + "category":"Restaurant_9", + "superCategory":"Restaurant", + "logoUrl":"http://www.thelightleeds.co.uk/wp-content/uploads/2013/09/logo-prezzo.png", + "homePageUrl":"http://www.prezzorestaurants.co.uk", + "region":"uk" + }, + { + "name":"DVLA", + "category":"Road Tax_1", + "superCategory":"Road Tax", + "logoUrl":"http://allcontactnumbers.co.uk/wp-content/uploads/2015/10/DVLA-2.jpg", + "homePageUrl":"https://www.gov.uk/government/organisations/driver-and-vehicle-licensing-agency", + "region":"uk" + }, + { + "name":"RBS Savings", + "category":"Savings_1", + "superCategory":"Savings", + "logoUrl":"", + "homePageUrl":"http://personal.rbs.co.uk/personal.html", + "region":"uk" + }, + { + "name":"Post Office Savings", + "category":"Savings_2", + "superCategory":"Savings", + "logoUrl":"", + "homePageUrl":"http://www.postoffice.co.uk/", + "region":"uk" + }, + { + "name":"Chelsea Independent College", + "category":"School_1", + "superCategory":"School Fees", + "logoUrl":"http://www.astrumeducation.com/wp-content/uploads/2015/03/chelsea-independent-college-home-logo.png", + "homePageUrl":"http://www.chelseaindependentcollege.com", + "region":"uk" + }, + { + "name":"Seven Seas Worldwide", + "category":"Shipping Company_1", + "superCategory":"Shipping Company", + "logoUrl":"http://www.sevenseasworldwide.com/ssw-shipping-logo.png", + "homePageUrl":"http://www.sevenseasworldwide.com", + "region":"uk" + }, + { + "name":"Accessorize", + "category":"Shopping/Accessories_29", + "superCategory":"Accessories", + "logoUrl":"http://www.discountspout.com/images/stores/accessorize-us.png", + "homePageUrl":"http://uk.accessorize.com/?countrycheck=true&languageCode=en_gb", + "region":"uk" + }, + { + "name":"Disney Store", + "category":"Shopping/Accessories_30", + "superCategory":"Shopping", + "logoUrl":"https://cdn-ssl.img.disneystore.com/content/ds/skyway/global/ds_logo_stacked.png", + "homePageUrl":"http://www.disneystore.co.uk", + "region":"uk" + }, + { + "name":"Kiddicare", + "category":"Shopping/baby Shop_16", + "superCategory":"Baby Shop", + "logoUrl":"http://www.realwire.com/writeitfiles/Kiddicare-Logo_2.JPG", + "homePageUrl":"http://www.kiddicare.com", + "region":"uk" + }, + { + "name":"The Book People", + "category":"Shopping/Book Store Online_34", + "superCategory":"Shopping", + "logoUrl":"", + "homePageUrl":"http://www.thebookpeople.co.uk/webapp/wcs/stores/servlet/qs_home_tbp?storeId=10001&catalogId=10051&langId=100&cm_mmc=Google%20Adwords-_-Brand-_-the%20book%20people-_-Homepage&gclid=CJCt6rvmssgCFSsCwwodTZ0AWA", + "region":"uk" + }, + { + "name":"Thorntons", + "category":"Shopping/Chocolste Shop_33", + "superCategory":"Chocolate Shop", + "logoUrl":"https://www.textmarketer.co.uk/blog/wp-content/uploads/2010/01/thorntons-logo.png", + "homePageUrl":"http://www.thorntons.co.uk", + "region":"uk" + }, + { + "name":"Topman", + "category":"Shopping/Clothing_10", + "superCategory":"Shopping", + "logoUrl":"https://ncgrussell.files.wordpress.com/2015/02/topman-logo.jpg", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Topshop", + "category":"Shopping/Clothing_11", + "superCategory":"Shopping", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/06/thumb_5157_logo_retailer_1x.pn", + "homePageUrl":"www.topshop.com", + "region":"uk" + }, + { + "name":"All Saints", + "category":"Shopping/Clothing_12", + "superCategory":"Shopping", + "logoUrl":"http://uk.queryclick.com/static/images/logos/allsaints.png", + "homePageUrl":"http://www.allsaints.com/", + "region":"uk" + }, + { + "name":"New Look", + "category":"Shopping/Clothing_8", + "superCategory":"Shopping", + "logoUrl":"http://www.fashioncapital.co.uk/images/newlook-logo.png", + "homePageUrl":"http://www.newlook.com/", + "region":"uk" + }, + { + "name":"Zara", + "category":"Shopping/Clothing_9", + "superCategory":"Shopping", + "logoUrl":"http://fashionweek.com/wp-content/uploads/2015/03/zara.jpg", + "homePageUrl":"www.zara.com/uk", + "region":"uk" + }, + { + "name":"The Body Shop", + "category":"shopping/Cosmetic_13", + "superCategory":"Shopping", + "logoUrl":"http://www.thebigidea.co.uk/wp-content/uploads/2015/09/The-Body-Shop.png", + "homePageUrl":"http://www.thebodyshop.co.uk/", + "region":"uk" + }, + { + "name":"Mac", + "category":"Shopping/Cosmetic_14", + "superCategory":"Makeup", + "logoUrl":"http://www.mehnazkhan.com/wp-content/uploads/2013/07/MAC-cosmetics-logo.jpg", + "homePageUrl":"http://www.maccosmetics.co.uk", + "region":"uk" + }, + { + "name":"Boots", + "category":"shopping/Cosmetic_15", + "superCategory":"Cosmetics", + "logoUrl":"http://vignette3.wikia.nocookie.net/logopedia/images/0/0d/Boots_logo.jpg/revision/latest?cb=20110712172659", + "homePageUrl":"http://www.boots-uk.com", + "region":"uk" + }, + { + "name":"Ebay", + "category":"Shopping/Department Store Online_1", + "superCategory":"Department Store Online", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/4/48/EBay_logo.png", + "homePageUrl":"http://www.ebay.co.uk/", + "region":"uk" + }, + { + "name":"Amazon", + "category":"Shopping/Department Store Online_2", + "superCategory":"Department Store Online", + "logoUrl":"http://img1.wikia.nocookie.net/__cb20100929014950/logopedia/images/c/cd/500px-Amazon_com_logo_svg.png", + "homePageUrl":"http://www.amazon.co.uk/", + "region":"uk" + }, + { + "name":"Next", + "category":"Shopping/Department Store_3", + "superCategory":"Department Store", + "logoUrl":"http://www.nextplc.co.uk/~/media/Images/N/Next-PLC/Image%20Library/company-images/logos/download/Next-Thin-Master-Logo-2014-Reversed.jpg", + "homePageUrl":"http://www.next.co.uk/", + "region":"uk" + }, + { + "name":"House of fraser", + "category":"Shopping/Department Store_4", + "superCategory":"Department Store", + "logoUrl":"http://demandware.edgesuite.net/aaba_prd/on/demandware.static/-/Sites-hof-Library/default/dw475daeb3/LOGOS/house_of_fraser_logo_white.jpg", + "homePageUrl":"http://www.houseoffraser.co.uk/", + "region":"uk" + }, + { + "name":"Harvey Nichols", + "category":"Shopping/Department Store_5", + "superCategory":"Department Store", + "logoUrl":"https://pbs.twimg.com/profile_images/378800000438095303/826bcfb5086e42d62183b51f869cb4a1.jpeg", + "homePageUrl":"http://www.harveynichols.com/", + "region":"uk" + }, + { + "name":"John Lewis", + "category":"Shopping/Department Store_6", + "superCategory":"Department Store", + "logoUrl":"http://cplus-prod-assets.s3.amazonaws.com/production_wordpress/news_uploads/2013/02/john-lewis.jpg", + "homePageUrl":"http://www.johnlewis.com", + "region":"uk" + }, + { + "name":"Debenhams", + "category":"Shopping/Department Store_7", + "superCategory":"Department Store", + "logoUrl":"http://www.simplyharrogate.com/_images_features/66_0.jpg", + "homePageUrl":"http://www.debenhams.com", + "region":"uk" + }, + { + "name":"Channel", + "category":"Shopping/Designer Brand_27", + "superCategory":"Designer Brand", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/9/92/Chanel_logo_interlocking_cs.svg/1280px-Chanel_logo_interlocking_cs.svg.png", + "homePageUrl":"http://www.chanel.com/en_GB/", + "region":"uk" + }, + { + "name":"Michael Kors", + "category":"Shopping/Designer Brand_28", + "superCategory":"Designer Brand", + "logoUrl":"http://www.brandsoftheworld.com/sites/default/files/styles/logo-thumbnail/public/042014/michael_kors.png?itok=-LcukS9K", + "homePageUrl":"http://www.michaelkors.com", + "region":"uk" + }, + { + "name":"Argos", + "category":"Shopping/Electrical_19", + "superCategory":"Electrical", + "logoUrl":"http://i.dailymail.co.uk/i/pix/2010/06/10/article-0-003EFF5400000258-713_468x317.jpg", + "homePageUrl":"http://www.argos.co.uk/static/Home.htm?sRefURL=https%3A//www.google.co.uk/", + "region":"uk" + }, + { + "name":"Currys", + "category":"Shopping/Electroinc_20", + "superCategory":"Electronic", + "logoUrl":"http://all-services.co.uk/customer-service-logos/currys.gif", + "homePageUrl":"http://www.currys.co.uk/gbuk/index.html", + "region":"uk" + }, + { + "name":"Euronics", + "category":"Shopping/Electroins_21", + "superCategory":"Electronic", + "logoUrl":"https://75471eab7235b46b961c-3be884ee5fdd935653d5922e592d54ea.ssl.cf3.rackcdn.com/logo.gif", + "homePageUrl":"http://www.euronics.co.uk", + "region":"uk" + }, + { + "name":"Interflora", + "category":"Shopping/Florist_37", + "superCategory":"Florist", + "logoUrl":"http://www.floralambitions.co.uk/images/interflora_logo.jpg", + "homePageUrl":"http://www.interflora.co.uk", + "region":"uk" + }, + { + "name":"Clintons Cards", + "category":"Shopping/Greating Cards and gifts_36", + "superCategory":"Greeting Cards and Gifts", + "logoUrl":"http://cornmillcentre.co.uk/wp-content/uploads/2015/03/clinton-cards-logo.jpg", + "homePageUrl":"https://www.clintonsretail.com", + "region":"uk" + }, + { + "name":"B&Q", + "category":"Shopping/Hardware Store_39", + "superCategory":"Hardware Store", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/6/63/B%26Q_company_logo_(2).png", + "homePageUrl":"http://www.diy.com", + "region":"uk" + }, + { + "name":"Argos", + "category":"Shopping/Home Furniture_24", + "superCategory":"Home Furniture", + "logoUrl":"http://i.dailymail.co.uk/i/pix/2010/06/10/article-0-003EFF5400000258-713_468x317.jpg", + "homePageUrl":"http://www.argos.co.uk/static/Home.htm?sRefURL=https%3A//www.google.co.uk/", + "region":"uk" + }, + { + "name":"Harveys", + "category":"Shopping/Home Furniture_25", + "superCategory":"Home Furniture", + "logoUrl":"http://www.shootfactory.co.uk/blog/wp-content/uploads/2012/04/getasset1.jpeg", + "homePageUrl":"https://67fb162d391b3c725e9d-210fd98f9f4ad5bac2f98cc8e61aaae5.ssl.cf2.rackcdn.com/clients/jd-sports/logo-18e9aaa70cfc521565a79eb9da6e5bb2.png", + "region":"uk" + }, + { + "name":"Sofa World", + "category":"Shopping/Home Furniture_26", + "superCategory":"Home Furniture", + "logoUrl":"http://www.bestsofashops.uk/wp-content/uploads/sofaworld-logo.png", + "homePageUrl":"http://www.sofasworld.co.uk/?affiliate=SFW-google-search&gclid=CjwKEAjw0KK4BRDCiKHD5Ny8pHESJACLE620ENp-PBPofIDy6Nh6UXSiUuszj-Qom7X4LM_hhQluGRoCcgzw_wcB", + "region":"uk" + }, + { + "name":"Poundland", + "category":"Shopping/Household_1", + "superCategory":"Shopping", + "logoUrl":"http://www.macmillan.org.uk/Images/AboutUs/Ourpartners/new/Poundland-logo.jpg", + "homePageUrl":"http://www.poundland.co.uk/", + "region":"uk" + }, + { + "name":"Goldsmith", + "category":"Shopping/Jewelry Store_32", + "superCategory":"Jewelry Store", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/06/thumb_5029_logo_retailer_1x.png", + "homePageUrl":"http://www.goldsmiths.co.uk/?utm_source=GOOGLE&utm_medium=cpc&utm_campaign=Trademark%20-%20Other&gclid=CjwKEAjw86e4BRCnzuWGlpjLoUcSJACaHG55WY7Si0EeylHOA6R2QtFX4o5HWUJ3I8kh07VElbxvERoCFNjw_wcB", + "region":"uk" + }, + { + "name":"Pumpkin Patch", + "category":"Shopping/Kids Store_17", + "superCategory":"Kids Store", + "logoUrl":"http://www.pumpkinpatch.co.uk/brand/pp/assets/img/pumpkin-patch-logo-northern.png", + "homePageUrl":"http://www.pumpkinpatch.co.uk", + "region":"uk" + }, + { + "name":"Disney Store", + "category":"Shopping/Kids Store_18", + "superCategory":"Kids Store", + "logoUrl":"http://aimg.disneystore.com/content/global/misc/defaultCategoryImg.jpg", + "homePageUrl":"http://www.disneystore.co.uk/mn/1306502/?&CMP=KNC-TDS-UK-BG-BMM-Generic-Voucher&s_kwcid=TC%7C1028693%7Cdisney%20store%20uk%20discount%7C%7CS%7Cb%7C74125769342&mckv=sfhPY89YG_dc%7Cpcrid%7C74125769342%7Cpkw%7Cdisney%20store%20uk%20discount%7Cpmt%7Cb&gclid=CjwKEAjw0KK4BRDCiKHD5Ny8pHESJACLE620sFs6BbSHNE1VfNOy0EnUjBmTWcGSwissmH0MWLA6ZBoCPKvw_wcB", + "region":"uk" + }, + { + "name":"Lights.co.uk", + "category":"Shopping/Lighting_38", + "superCategory":"Lighting Shop", + "logoUrl":"https://mvp.tribesgds.com/dyn/fd/3Z/fd3ZB6-Rx9k/_/tIIyubfFgL0/VdlE/lights.co.uk-logo.png", + "homePageUrl":"lights.co.uk", + "region":"uk" + }, + { + "name":"WH Smith", + "category":"Shopping/Newspaper Shop_35", + "superCategory":"Newspaper Shop", + "logoUrl":"http://www.unb.com/mediacenter/images/2014/WHSmith.JPG", + "homePageUrl":"http://www.whsmith.co.uk", + "region":"uk" + }, + { + "name":"Clarks", + "category":"Shopping/Shoes_30", + "superCategory":"Shopping", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/06/thumb_5018_logo_retailer_1x.png", + "homePageUrl":"http://www.clarks.co.uk/", + "region":"uk" + }, + { + "name":"Office", + "category":"Shopping/Shoes_31", + "superCategory":"Shoes", + "logoUrl":"http://www.voucherfox.co.uk/images/image_2056797326.jpg", + "homePageUrl":"http://officelondon.co.uk", + "region":"uk" + }, + { + "name":"Sport Direct", + "category":"Shopping/Sports Store_22", + "superCategory":"Sports Store", + "logoUrl":"https://excoupuk.com/wp-content/uploads/2015/12/Sports-direct.jpg", + "homePageUrl":"http://www.sportsdirect.com", + "region":"uk" + }, + { + "name":"JD Sports", + "category":"Shopping/Sports Store_23", + "superCategory":"Sports Store", + "logoUrl":"https://67fb162d391b3c725e9d-210fd98f9f4ad5bac2f98cc8e61aaae5.ssl.cf2.rackcdn.com/clients/jd-sports/logo-18e9aaa70cfc521565a79eb9da6e5bb2.png", + "homePageUrl":"http://www.jdsports.co.uk/home?cm_mmc=JDUK-_-INTredirect-_-na-_-na", + "region":"uk" + }, + { + "name":"Sky", + "category":"Sky Tv_1", + "superCategory":"Sky Tv", + "logoUrl":"http://www.theo2.co.uk/assets/img/VenueLanding_Sky_TheO2_logo.jpg", + "homePageUrl":"http://www.sky.com/", + "region":"uk" + }, + { + "name":"Spa London", + "category":"Spa_1", + "superCategory":"Spa", + "logoUrl":"http://www.spa-london.org/wp-content/uploads/2015/06/Spa-Logo.png", + "homePageUrl":"http://www.spa-london.org", + "region":"uk" + }, + { + "name":"Clear Air group", + "category":"Suppilers of Cooler Items_1", + "superCategory":"Cooler Items Suppliers", + "logoUrl":"http://cleanair.co.uk/wp-content/uploads/2010/09/Clean-Air-Group-rgb.jpg", + "homePageUrl":"http://cleanair.co.uk/what-we-do/evaporative-cooling/", + "region":"uk" + }, + { + "name":"Farnell", + "category":"Suppliers Of large electronic_1", + "superCategory":"Suppliers Of large electronic", + "logoUrl":"http://www.labfacility.com/media/wysiwyg/farnell-logo.png", + "homePageUrl":"http://uk.farnell.com", + "region":"uk" + }, + { + "name":"Dominos", + "category":"Takeway_1", + "superCategory":"Takeway", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Dominos_pizza_logo.svg/2000px-Dominos_pizza_logo.svg.png", + "homePageUrl":"https://www.dominos.co.uk/", + "region":"uk" + }, + { + "name":"Talk Talk", + "category":"Telecom_1", + "superCategory":"Phone/Internet", + "logoUrl":"http://www.theinquirer.net/IMG/793/134793/talktalk-logo.JPG", + "homePageUrl":"https://sales.talktalk.co.uk", + "region":"uk" + }, + { + "name":"Vodafone", + "category":"Telecom_2", + "superCategory":"Mobile Contract", + "logoUrl":"http://www.theinquirer.net/IMG/873/153873/vodafone3920-270x167.jpg?1451875518", + "homePageUrl":"https://www.vodafone.co.uk", + "region":"uk" + }, + { + "name":"British Telecom", + "category":"Telecom_3", + "superCategory":"Telephone", + "logoUrl":"http://blogs.which.co.uk/technology/wp-content/uploads/2013/06/BT-logo.jpg", + "homePageUrl":"http://home.bt.com", + "region":"uk" + }, + { + "name":"o2", + "category":"Telecom_4", + "superCategory":"Mobile Contract", + "logoUrl":"https://blogtelecomarketing.files.wordpress.com/2011/11/group-o2.jpg", + "homePageUrl":"http://www.o2.co.uk", + "region":"uk" + }, + { + "name":"Ticket Master", + "category":"Tickets_1", + "superCategory":"Tickets", + "logoUrl":"http://www.foyleside.co.uk/perch/resources/ticketmaster-logo.jpg", + "homePageUrl":"www.ticketmaster.co.uk", + "region":"uk" + }, + { + "name":"Markets.com", + "category":"Trading_1", + "superCategory":"Trading Company", + "logoUrl":"http://www.gambling-affiliation.com/uploads/cms/logos/markets_com.png", + "homePageUrl":"http://www.markets.com", + "region":"uk" + }, + { + "name":"Oyster Card", + "category":"Travel_1", + "superCategory":"Travel card", + "logoUrl":"http://www.petrolprices.com/files/2011/08/oyster-card.png", + "homePageUrl":"https://oyster.tfl.gov.uk/oyster/entry.do", + "region":"uk" + }, + { + "name":"EON", + "category":"Utility_1", + "superCategory":"Gas/Elec", + "logoUrl":"https://www.eonenergy.com/Images/Logos/EonMainLogo.gif", + "homePageUrl":"https://www.eonenergy.com/", + "region":"uk" + }, + { + "name":"SSE", + "category":"Utility_2", + "superCategory":"Gas/Elec", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/d/d5/SSEenergy.svg/1280px-SSEenergy.svg.png", + "homePageUrl":"https://www.sse.co.uk", + "region":"uk" + }, + { + "name":"British Gas", + "category":"Utility_3", + "superCategory":"Gas Supplier", + "logoUrl":"https://www.britishgas.co.uk/media/services/GetImage.ashx?id=w%2BKtDvny%2B4ABCRKoADRMug%3D%3D&thumbnailsize=6&download=0&doctype=0", + "homePageUrl":"http://www.britishgas.co.uk", + "region":"uk" + }, + { + "name":"Seven Trent Water", + "category":"Utility_4", + "superCategory":"Water", + "logoUrl":"", + "homePageUrl":"https://www.stwater.co.uk/", + "region":"uk" + }, + { + "name":"Thames Water", + "category":"Utility_5", + "superCategory":"Water Supplier", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/9/9e/Thames_Water_logo.svg/480px-Thames_Water_logo.svg.png", + "homePageUrl":"http://www.thameswater.co.uk", + "region":"uk" + }, + { + "name":"Uk power Network", + "category":"Utility_6", + "superCategory":"Electrtric supplier", + "logoUrl":"http://www.energynetworks.org/assets/files/info/Members%20Logos/UKPN%20Logo_CMYK%20elec%20strap.jpg", + "homePageUrl":"http://www.ukpowernetworks.co.uk", + "region":"uk" + }, + { + "name":"Royal Thames Yatch Club", + "category":"Yatch Club_1", + "superCategory":"Yatch Club", + "logoUrl":"https://www.royalthames.com/SiteDesign/splash5/image3.aspx", + "homePageUrl":"https://www.royalthames.com", + "region":"uk" + }, + { + "name":"Asda ATM", + "category":"ATM/Cashwithdrawal_1", + "superCategory":"Cashwithdrawal", + "logoUrl":"http://l7.alamy.com/zooms/cafd82d0dcc749418b129ca442c52cd0/atm-at-asda-supermarket-in-leeds-emnybw.jpg", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"High Street ATM", + "category":"ATM/Cashwithdrawal_2", + "superCategory":"Cashwithdrawal", + "logoUrl":"http://www.atmbusinessblueprint.com/wp-content/uploads/2013/08/ownatmmachines.jpg", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Miss Heath", + "category":"Donation_1", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Mr and Mrs Cooper", + "category":"Donation_2", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Mr and Mrs Waterhouse", + "category":"Donation_3", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Mr James", + "category":"Donation_4", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Page Family", + "category":"Donation_5", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Donation Smile Train", + "category":"Donation_6", + "superCategory":"Donation", + "logoUrl":"https://smiletrain.org.uk/sites/default/files/smile-train-logo-social-share.jpg", + "homePageUrl":"https://smiletrain.org.uk/", + "region":"uk" + }, + { + "name":"Donation The Corner Store", + "category":"Donation_7", + "superCategory":"Donation", + "logoUrl":"http://ep.yimg.com/ca/I/yhst-80828730941664_2262_9854927", + "homePageUrl":"http://thecornershopga.com/", + "region":"uk" + }, + { + "name":"Donation The Eye Company", + "category":"Donation_8", + "superCategory":"Donation", + "logoUrl":"http://www.eye-company.co.uk/wp-content/uploads/bespoke2.jpg", + "homePageUrl":"http://www.eye-company.co.uk/", + "region":"uk" + }, + { + "name":"Donation The Keepers arms", + "category":"Donation_9", + "superCategory":"Donation", + "logoUrl":"http://thekeepersarms.co.uk/wp-content/uploads/2016/10/welcome-bg2.jpg", + "homePageUrl":"http://thekeepersarms.co.uk/", + "region":"uk" + }, + { + "name":"Donation The Union", + "category":"Donation_10", + "superCategory":"Donation", + "logoUrl":"https://www.google.de/search?q=www.union.co.uk+logo&noj=1&tbm=isch&imgil=-9Y99q_lckkajM%253A%253B7T2dZiu9RuocDM%253Bhttp%25253A%25252F%25252Fwww.ipa.co.uk%25252FAgencies%25252FThe-Union-Advertising-Agency-Ltd&source=iu&pf=m&fir=-9Y99q_lckkajM%253A%252C7T2dZiu9RuocDM%252C_&usg=__nOyiWLG_JrRYt2oy93y0BuN4hLY%3D&biw=1440&bih=826&ved=0ahUKEwj9z-DZiP7SAhWMDywKHXRPCl8QyjcINQ&ei=V-TcWL3IHoyfsAH0nqn4BQ#imgrc=-9Y99q_lckkajM:", + "homePageUrl":"http://www.union.co.uk/", + "region":"uk" + }, + { + "name":"Pay", + "category":"Income_1", + "superCategory":"Income", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Mr D Moda", + "category":"Transfer_1", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Business Rates", + "category":"Business Rates_1", + "superCategory":"Business Rates", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Rent", + "category":"Rent_1", + "superCategory":"Rent", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Rainbow hospice", + "category":"Transfer_2", + "superCategory":"Transfer", + "logoUrl":"https://rainbowhospice.org/images/logos/rainbow-logo.png", + "homePageUrl":"https://rainbowhospice.org/", + "region":"uk" + }, + { + "name":"Royal Edinburgh hospital", + "category":"Transfer_3", + "superCategory":"Transfer", + "logoUrl":"https://medicaljobs.scot.nhs.uk/media/1075/lo_2col.jpg", + "homePageUrl":"http://www.nhslothian.scot.nhs.uk/GoingToHospital/Locations/REH/Pages/default.aspx", + "region":"uk" + }, + { + "name":"Salary Mr R Turner", + "category":"Transfer_4", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Salary Mrs F White", + "category":"Transfer_5", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice Mr Folk", + "category":"Transfer_6", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice Mr Green", + "category":"Transfer_7", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice Miss Dean", + "category":"Transfer_8", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice 76542 Mr Green", + "category":"Transfer_9", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice 986 Mr Khan", + "category":"Transfer_10", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Paid Invoice 2297 Miss Dean", + "category":"Transfer_11", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Salary", + "category":"Transfer Salary_1", + "superCategory":"Salary", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"Salary", + "category":"Salary_1", + "superCategory":"Salary", + "logoUrl":"", + "homePageUrl":"", + "region":"uk" + }, + { + "name":"trainline", + "category":"Travel_2", + "superCategory":"Train ticket", + "logoUrl":"http://blog.thetrainline.com/wp-content/uploads/2015/08/TL-new-icon1.png", + "homePageUrl":"https://www.thetrainline.com", + "region":"uk" + }, + { + "name":"Directline for Business", + "category":"business insurance_1", + "superCategory":"Business insurance", + "logoUrl":"https://service.directlineforbusiness.co.uk/Static/Microsites/DLParent/Images/Framework/directLineLogo_horizontal_2014.gif", + "homePageUrl":"https://www.directlineforbusiness.co.uk/small-business-insurance/home-business-insurance?cmpid=43700007968848396/bfh/ppc/GOOGLE/businesses+insurance&gclid=Cj0KEQjw2fLGBRDopP-vg7PLgvsBEiQAUOnIXJ0ajVFKT_gHX_0Qex8Dfmev49PZmIKNYi-dfYQZ0g4aAj6U8P8HAQ", + "region":"uk" + }, + { + "name":"Credit Card Visa", + "category":"Credit Card_1", + "superCategory":"Credit Card", + "logoUrl":"https://seeklogo.com/images/V/visa-logo-6F4057663D-seeklogo.com.png", + "homePageUrl":"https://www.visa.co.uk", + "region":"uk" + }, + { + "name":"Credit Card Mastercard", + "category":"Credit Card_2", + "superCategory":"Credit Card", + "logoUrl":"", + "homePageUrl":"https://www.mastercard.co.uk/en-gb.html", + "region":"uk" + } + ], + [ + { + "name":"Hong Kong", + "category":"Airline_1", + "superCategory":"Airline", + "logoUrl":"", + "homePageUrl":"https://www.hongkongairlines.com/zh_HK/homepage", + "region":"hk" + }, + { + "name":"Air China", + "category":"Airline_2", + "superCategory":"Airline", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/8/88/AirChina_Logo_Star.svg", + "homePageUrl":"https://www.airchina.hk/HK/TW/Home", + "region":"hk" + }, + { + "name":"Hong Kong International Airport", + "category":"Airport Services_1", + "superCategory":"Airport Facilities", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/7/7d/HongKongAirportlogo.svg", + "homePageUrl":"https://www.hongkongairport.com/tc/passenger-guide/airport-facilities-services/", + "region":"hk" + }, + { + "name":"Peak Tram", + "category":"Attraction_1", + "superCategory":"London arttraction", + "logoUrl":"https://vignette.wikia.nocookie.net/hk-rail/images/7/7e/Peak_Tramways_logo.png/revision/latest?cb=20110607085518&path-prefix=zh", + "homePageUrl":"https://www.thepeak.com.hk/zh-hant", + "region":"hk" + }, + { + "name":"The Peninsula", + "category":"Bar_1", + "superCategory":"Bar", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Peninsula_Hotels_logo.png", + "homePageUrl":"https://www.peninsula.com/zh-cn/hong-kong/hotel-fine-dining/felix", + "region":"hk" + }, + { + "name":"Back Bar", + "category":"Bar_2", + "superCategory":"Bar", + "logoUrl":"", + "homePageUrl":"http://hamandsherry.hk/bar_about/", + "region":"hk" + }, + { + "name":"Booking.com", + "category":"Booking.com_1", + "superCategory":"Booking.com", + "logoUrl":"http://www.logoeps.net/wp-content/uploads/2013/06/booking-com-logo.jpg", + "homePageUrl":"https://secure.booking.com/company/search.zh-cn.html?label=gen173nr-1DCAEoggJCAlhYSDNYBGg7iAEBmAEuwgEDYWJuyAEN2AED6AEBkgIBeagCBA&sid=2f7aed6e2550e4ea832ae64202f1969e&tmpl=profile%2Fcompany_search&lang=zh-cn&soz=1&lang_click=top;cdl=en-gb;lang_changed=1", + "region":"hk" + }, + { + "name":"My Service Mercedes Benz", + "category":"Car Service_1", + "superCategory":"Car Servicing", + "logoUrl":"http://enginegroup.co.uk/assets/images/691_mercedes-grid.jpg", + "homePageUrl":"https://www.mercedes-benz.com.hk/zh_HK/passengercars.html", + "region":"hk" + }, + { + "name":"Helping Hand", + "category":"Charity_1", + "superCategory":"Elder People Charity", + "logoUrl":"", + "homePageUrl":"https://www.charitablechoice.org.hk/zh-HK/charities/helping-hand", + "region":"hk" + }, + { + "name":"World Vision", + "category":"Charity_2", + "superCategory":"humanitarian Charity", + "logoUrl":"", + "homePageUrl":"humanitarian Charityhttps://www.worldvision.org.hk", + "region":"hk" + }, + { + "name":"The Grand Cinema", + "category":"Cinema_1", + "superCategory":"Cinema", + "logoUrl":"", + "homePageUrl":"http://www.thegrandcinema.com.hk/index.aspx?Lang=1", + "region":"hk" + }, + { + "name":"Costa Coffee", + "category":"Coffee_1", + "superCategory":"Coffee", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/4/42/CostaLogo.svg/1024px-CostaLogo.svg.png", + "homePageUrl":"http://www.costa.net.cn", + "region":"hk" + }, + { + "name":"Starbucks", + "category":"Coffee_2", + "superCategory":"Coffee", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/3/35/Starbucks_Coffee_Logo.svg/1024px-Starbucks_Coffee_Logo.svg.png", + "homePageUrl":"http://www.starbucks.com.hk", + "region":"hk" + }, + { + "name":"Dorma", + "category":"Comercial door Suppilers_1", + "superCategory":"Commercial/Industrial Doors", + "logoUrl":"", + "homePageUrl":"http://www.dorma.com/hk/", + "region":"hk" + }, + { + "name":"Gov Hong Kong", + "category":"Council Tax_1", + "superCategory":"Council Tax", + "logoUrl":"", + "homePageUrl":"https://www.gov.hk/en/residents/housing/private/?subcat=rate", + "region":"hk" + }, + { + "name":"Comeron Dental Centre", + "category":"Dental Clinic_1", + "superCategory":"Dentist", + "logoUrl":"", + "homePageUrl":"http://tc.cdc-asia.com/home", + "region":"hk" + }, + { + "name":"Stately Home", + "category":"Estate Agent_1", + "superCategory":"Estate Agent", + "logoUrl":"", + "homePageUrl":"http://www.statelyhome.com.hk/tc/", + "region":"hk" + }, + { + "name":"Esso Filling Station", + "category":"Filling Station_1", + "superCategory":"Filling Station", + "logoUrl":"", + "homePageUrl":"https://www.esso.com.hk/zh", + "region":"hk" + }, + { + "name":"Shell Filling Station", + "category":"Filling Station_2", + "superCategory":"Filling Station", + "logoUrl":"http://www.threewaysgarage.net/wp-content/uploads/2014/03/shell-logo.png", + "homePageUrl":"https://find.shell.com/hk/fuel/10045133-shell-kai-tak/en_HK", + "region":"hk" + }, + { + "name":"Air China", + "category":"Flights_1", + "superCategory":"Flights", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/8/88/AirChina_Logo_Star.svg", + "homePageUrl":"https://www.airchina.hk/HK/TW/Home", + "region":"hk" + }, + { + "name":"Skyscanner", + "category":"Flights_2", + "superCategory":"Flight Finder", + "logoUrl":"http://everywhereism.com/wp-content/uploads/2015/08/skyscanner-app-review.png", + "homePageUrl":"https://www.skyscanner.com.hk/?locale=zh-TW¤cy=HKD&market=HK&_mp=1619f1480ad49d-03bd3158684c8d8-1c411b27-13c680-1619f1480ae390_1538657864830&_ga=2.39419043.1851016962.1538657853-794456862.1518792376", + "region":"hk" + }, + { + "name":"TNT", + "category":"Freight Services_1", + "superCategory":"Freight Services", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/4/46/TNT_Logo.svg", + "homePageUrl":"https://www.tnt.com/express/zh_hk/site/shipping-services/freight-services.html", + "region":"hk" + }, + { + "name":"Marks and Spencers", + "category":"Groceries/Supermaket_2", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"https://www.marksandspencer.com/hk/", + "region":"hk" + }, + { + "name":"City Super", + "category":"Groceries/Supermaket_5", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"https://www.citysuper.com.hk/tc/", + "region":"hk" + }, + { + "name":"Park n Shop", + "category":"Groceries/Supermaket_6", + "superCategory":"Supermarket", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/3/3b/Parknshoplogo.PNG", + "homePageUrl":"https://www.parknshop.com/zh-hk/", + "region":"hk" + }, + { + "name":"Market Place By Jasons", + "category":"Groceries/Supermarket_1", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"https://www.marketplacebyjasons.com/mpj2shop/zh/html/index.html", + "region":"hk" + }, + { + "name":"Gateway", + "category":"Groceries/Supermarket_3", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"http://www.gatewaysupermarket.com", + "region":"hk" + }, + { + "name":"Yata", + "category":"Groceries/Supermarket_4", + "superCategory":"Supermarket", + "logoUrl":"", + "homePageUrl":"https://www.yata.hk/tch/about/mongkok.aspx", + "region":"hk" + }, + { + "name":"Fitness First", + "category":"Gym_1", + "superCategory":"Gym", + "logoUrl":"http://www.groundbloomflourish.com/wp-content/uploads/2015/10/Fitness-First.jpg", + "homePageUrl":"https://www.fitnessfirst.com.hk/zh-HK/clubs/olympia-plaza/", + "region":"hk" + }, + { + "name":"Spooner", + "category":"Industiral Process Company_1", + "superCategory":"Industrial Processing Company", + "logoUrl":"", + "homePageUrl":"http://hong-kong-economy-research.hktdc.com/business-news/article/Hong-Kong-Industry-Profiles/Processed-Food-and-Beverages-Industry-in-Hong-Kong/hkip/en/1/1X000000/1X006S3L.htm", + "region":"hk" + }, + { + "name":"Apex Glass", + "category":"Industrial Glass and Machinery_1", + "superCategory":"Industrial Glass and Machinery", + "logoUrl":"", + "homePageUrl":"http://www.apex-glass.com/cn/", + "region":"hk" + }, + { + "name":"Directline", + "category":"Insurance_1", + "superCategory":"Insurance", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/a/aa/HSBC_logo_%282018%29.svg", + "homePageUrl":"https://www.hsbc.com.hk/zh-hk/insurance/products/car/", + "region":"hk" + }, + { + "name":"Kites Systems", + "category":"IT Company_1", + "superCategory":"IT Copmany", + "logoUrl":"", + "homePageUrl":"http://www.kitesystems.com", + "region":"hk" + }, + { + "name":"Goodman", + "category":"Manufacturing/Property/Investment_1", + "superCategory":"Commerical Property Investment", + "logoUrl":"http://www.deltascheme.com/admin/resources/casestudygoodmanlogo.jpg", + "homePageUrl":"http://www.csigroup.hk/en/", + "region":"hk" + }, + { + "name":"Sun Mobile", + "category":"Mobile_1", + "superCategory":"Mobile", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/b/ba/Sun_Cellular_Logo_2015.svg", + "homePageUrl":"http://www.sunmobile.com.hk", + "region":"hk" + }, + { + "name":"Three Mobile", + "category":"Mobile_2", + "superCategory":"Mobile", + "logoUrl":"http://s3.uswitchstatic.com/_img/library/news_image/three_mobile_logo_520x300x24_fill_h237df3f1.jpg", + "homePageUrl":"https://www.three.com.hk/website/appmanager/three/home?_nfpb=true&pageid=d11001&_pageLabel=P600193131219996753703&lang=chi?cmpid=sem_google_idm_3hk-alwayson_brand_brandname", + "region":"hk" + }, + { + "name":"Hong Kong Golf Club", + "category":"Monthly Membership_1", + "superCategory":"Golf", + "logoUrl":"", + "homePageUrl":"https://www.hkgolfclub.org/cms/", + "region":"hk" + }, + { + "name":"Netflix", + "category":"Monthly Membership_2", + "superCategory":"Monthly Membership", + "logoUrl":"http://static6.businessinsider.com/image/539aedc269beddc243d29c52-800-371/netflix_web_logo.png", + "homePageUrl":"https://www.netflix.com", + "region":"hk" + }, + { + "name":"DBS Bank", + "category":"Mortgage_1", + "superCategory":"Mortgage", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/1/18/DBS_Bank_Logo.svg", + "homePageUrl":"https://www.dbs.com.hk/personal-zh/promotion/personal-instalment-loan?cid=google_sem", + "region":"hk" + }, + { + "name":"Sharp", + "category":"Office Suppliers_1", + "superCategory":"Office Suppliers", + "logoUrl":"", + "homePageUrl":"https://www.sharp.com.hk/en/office-solutions/?gclid=Cj0KCQiA68bhBRCKARIsABYUGicfVfK9EAqXFvnIMzXTOQ7BnJ8iXE9wrWpQTSXFqYrGLUXR3KC4FxQaApaoEALw_wcB", + "region":"hk" + }, + { + "name":"Otical 88", + "category":"Opticitan_1", + "superCategory":"Opticitan", + "logoUrl":"", + "homePageUrl":"https://www.optical88.com.hk/index.php", + "region":"hk" + }, + { + "name":"Optical", + "category":"Opticitan_2", + "superCategory":"Opticitan", + "logoUrl":"", + "homePageUrl":"http://www.hkoptical.com.hk", + "region":"hk" + }, + { + "name":"Mack Car Park", + "category":"Parking_1", + "superCategory":"Parking", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/b/bb/Information_road_sign_parking.svg", + "homePageUrl":"http://www.mackcarpark.com.hk/big5/carpark_info.php?id=31", + "region":"hk" + }, + { + "name":"Watsons", + "category":"Pharmacy_1", + "superCategory":"Pharmacy", + "logoUrl":"", + "homePageUrl":"https://www.watsons.com.hk", + "region":"hk" + }, + { + "name":"Kembla", + "category":"Pipeline suppilers_1", + "superCategory":"Pipeline Suppilers", + "logoUrl":"http://premierpipeline.co.uk/wp-content/themes/designmechanics/images/logo.png", + "homePageUrl":"https://www.kembla.com.hk", + "region":"hk" + }, + { + "name":"EF-Electrical", + "category":"Repair and Maintenance_1", + "superCategory":"Electrical", + "logoUrl":"", + "homePageUrl":"http://www.shesc.com/zh", + "region":"hk" + }, + { + "name":"Computer Trouble Shooters", + "category":"Repair and Maintence_2", + "superCategory":"Electronic", + "logoUrl":"", + "homePageUrl":"http://www.comptroub.com.hk", + "region":"hk" + }, + { + "name":"ENK Appliance Service", + "category":"Repair/Maintenance_3", + "superCategory":"Electrical", + "logoUrl":"", + "homePageUrl":"http://www.enkapplianceservice.com/main-page/", + "region":"hk" + }, + { + "name":"Speedway Diner", + "category":"Restaurant_1", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"https://www.facebook.com/speedwaydiner/", + "region":"hk" + }, + { + "name":"Rare", + "category":"Restaurant_10", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"https://rarerhk.com", + "region":"hk" + }, + { + "name":"The Cellar Door", + "category":"Restaurant_11", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"tin Lung Heen", + "category":"Restaurant_12", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"http://www.ritzcarlton.com/en/hotels/china/hong-kong/dining/tin-lung-heen?scid=bb1a189a-fec3-4d19-a255-54ba596febe2", + "region":"hk" + }, + { + "name":"Capo", + "category":"Restaurant_2", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"https://capohk.business.site", + "region":"hk" + }, + { + "name":"Beef & Liberty", + "category":"Restaurant_3", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"http://www.beef-liberty.com", + "region":"hk" + }, + { + "name":"Burger King", + "category":"Restaurant_4", + "superCategory":"Restaurant", + "logoUrl":"http://vignette4.wikia.nocookie.net/logopedia/images/2/2a/Burger_King.png/revision/latest?cb=20150719154954", + "homePageUrl":"http://www.bkchina.cn", + "region":"hk" + }, + { + "name":"Pirata", + "category":"Restaurant_5", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"http://pirata.hk", + "region":"hk" + }, + { + "name":"Pizza Hut", + "category":"Restaurant_6", + "superCategory":"Restaurant", + "logoUrl":"http://vignette1.wikia.nocookie.net/logopedia/images/6/63/Pizza_Hut_2012_logo.png/revision/latest?cb=20140507122847", + "homePageUrl":"https://www.pizzahut.com.hk/en/home", + "region":"hk" + }, + { + "name":"Mcdonalds", + "category":"Restaurant_7", + "superCategory":"Restaurant", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Mcdonalds-90s-logo.svg/2000px-Mcdonalds-90s-logo.svg.png", + "homePageUrl":"https://www.mcdonalds.com.hk/ch.html", + "region":"hk" + }, + { + "name":"Pizza Express", + "category":"Restaurant_8", + "superCategory":"Restaurant", + "logoUrl":"https://pbs.twimg.com/profile_images/469131441733787648/q2MUP3Nk.jpeg", + "homePageUrl":"https://www.pizzaexpress.com.hk/restaurant/k11-art-mall/", + "region":"hk" + }, + { + "name":"Little Bao", + "category":"Restaurant_9", + "superCategory":"Restaurant", + "logoUrl":"", + "homePageUrl":"https://www.little-bao.com", + "region":"hk" + }, + { + "name":"Gov Hong Kong", + "category":"Road Tax_1", + "superCategory":"Road Tax", + "logoUrl":"", + "homePageUrl":"https://www.gov.hk/sc/residents/transport/vehicle/carowner.htm", + "region":"hk" + }, + { + "name":"Neat", + "category":"Savings_1", + "superCategory":"Savings", + "logoUrl":"", + "homePageUrl":"https://www.neat.hk/personal/features", + "region":"hk" + }, + { + "name":"Citi Bank", + "category":"Savings_2", + "superCategory":"Savings", + "logoUrl":"https://www.milessoft.com/wp-content/uploads/2018/07/citibank-logo-vector-400x400.png", + "homePageUrl":"https://www.citibank.com.hk/english/banking/checking-savings.htm", + "region":"hk" + }, + { + "name":"American Internatinal School", + "category":"School_1", + "superCategory":"School Fees", + "logoUrl":"", + "homePageUrl":"https://www.ais.edu.hk", + "region":"hk" + }, + { + "name":"Seven Seas Worldwide", + "category":"Shipping Company_1", + "superCategory":"Shipping Company", + "logoUrl":"http://www.sevenseasworldwide.com/ssw-shipping-logo.png", + "homePageUrl":"http://www.sevenseasworldwide.com", + "region":"hk" + }, + { + "name":"Accessorize", + "category":"Shopping/Accessories_29", + "superCategory":"Accessories", + "logoUrl":"http://www.discountspout.com/images/stores/accessorize-us.png", + "homePageUrl":"https://global.accessorize.com/en-hk/?skipRedirection=true&glCurrency=HKD", + "region":"hk" + }, + { + "name":"Disney Store", + "category":"Shopping/Accessories_30", + "superCategory":"Shopping", + "logoUrl":"https://cdn-ssl.img.disneystore.com/content/ds/skyway/global/ds_logo_stacked.png", + "homePageUrl":"https://www.shopdisney.com", + "region":"hk" + }, + { + "name":"Baby Oline", + "category":"Shopping/baby Shop_16", + "superCategory":"Baby Shop", + "logoUrl":"", + "homePageUrl":"https://www.babyonline.com.hk", + "region":"hk" + }, + { + "name":"Hong Kong Reader", + "category":"Shopping/Book Store Online_34", + "superCategory":"Shopping", + "logoUrl":"", + "homePageUrl":"http://www.hkreaders.com/?page_id=136", + "region":"hk" + }, + { + "name":"See's Candies", + "category":"Shopping/Chocolste Shop_33", + "superCategory":"Chocolate Shop", + "logoUrl":"", + "homePageUrl":"http://chocolateshops.sees.com/hk-hk/central/chocolate_shops_central_hk_intl-110b.html", + "region":"hk" + }, + { + "name":"Topman", + "category":"Shopping/Clothing_10", + "superCategory":"Shopping", + "logoUrl":"https://ncgrussell.files.wordpress.com/2015/02/topman-logo.jpg", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Topshop", + "category":"Shopping/Clothing_11", + "superCategory":"Shopping", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/06/thumb_5157_logo_retailer_1x.pn", + "homePageUrl":"www.topshop.com", + "region":"hk" + }, + { + "name":"All Saints", + "category":"Shopping/Clothing_12", + "superCategory":"Shopping", + "logoUrl":"http://uk.queryclick.com/static/images/logos/allsaints.png", + "homePageUrl":"http://www.allsaints.com/", + "region":"hk" + }, + { + "name":"New Look", + "category":"Shopping/Clothing_8", + "superCategory":"Shopping", + "logoUrl":"http://www.fashioncapital.co.uk/images/newlook-logo.png", + "homePageUrl":"http://www.newlook.com/", + "region":"hk" + }, + { + "name":"Zara", + "category":"Shopping/Clothing_9", + "superCategory":"Shopping", + "logoUrl":"http://fashionweek.com/wp-content/uploads/2015/03/zara.jpg", + "homePageUrl":"www.zara.com/", + "region":"hk" + }, + { + "name":"The Body Shop", + "category":"shopping/Cosmetic_13", + "superCategory":"Shopping", + "logoUrl":"http://www.thebigidea.co.uk/wp-content/uploads/2015/09/The-Body-Shop.png", + "homePageUrl":"https://www.thebodyshop.com/zh-hant-hk/", + "region":"hk" + }, + { + "name":"Mac", + "category":"Shopping/Cosmetic_14", + "superCategory":"Makeup", + "logoUrl":"http://www.mehnazkhan.com/wp-content/uploads/2013/07/MAC-cosmetics-logo.jpg", + "homePageUrl":"http://www.maccosmetics.com", + "region":"hk" + }, + { + "name":"NYX", + "category":"shopping/Cosmetic_15", + "superCategory":"Cosmetics", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/c/cb/NYX_cosmetics_logo.png", + "homePageUrl":"https://www.nyxcosmetics.hk", + "region":"hk" + }, + { + "name":"Ebay", + "category":"Shopping/Department Store Online_1", + "superCategory":"Department Store Online", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/4/48/EBay_logo.png", + "homePageUrl":"https://www.ebay.com.hk", + "region":"hk" + }, + { + "name":"Amazon", + "category":"Shopping/Department Store Online_2", + "superCategory":"Department Store Online", + "logoUrl":"http://img1.wikia.nocookie.net/__cb20100929014950/logopedia/images/c/cd/500px-Amazon_com_logo_svg.png", + "homePageUrl":"http://www.amazon.com.hk", + "region":"hk" + }, + { + "name":"Next", + "category":"Shopping/Department Store_3", + "superCategory":"Department Store", + "logoUrl":"http://www.nextplc.co.uk/~/media/Images/N/Next-PLC/Image%20Library/company-images/logos/download/Next-Thin-Master-Logo-2014-Reversed.jpg", + "homePageUrl":"https://www.nextdirect.com/hk/en", + "region":"hk" + }, + { + "name":"Sincere", + "category":"Shopping/Department Store_4", + "superCategory":"Department Store", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/f/fe/Sincere_logo.svg", + "homePageUrl":"http://www.sincere.com.hk/department/lang_hk", + "region":"hk" + }, + { + "name":"Harvey Nichols", + "category":"Shopping/Department Store_5", + "superCategory":"Department Store", + "logoUrl":"https://pbs.twimg.com/profile_images/378800000438095303/826bcfb5086e42d62183b51f869cb4a1.jpeg", + "homePageUrl":"https://www.harveynichols.com/en-hk/", + "region":"hk" + }, + { + "name":"John Lewis", + "category":"Shopping/Department Store_6", + "superCategory":"Department Store", + "logoUrl":"http://cplus-prod-assets.s3.amazonaws.com/production_wordpress/news_uploads/2013/02/john-lewis.jpg", + "homePageUrl":"https://www.johnlewis.com/hk/customer-services/delivery-information/international-delivery", + "region":"hk" + }, + { + "name":"Debenhams", + "category":"Shopping/Department Store_7", + "superCategory":"Department Store", + "logoUrl":"http://www.simplyharrogate.com/_images_features/66_0.jpg", + "homePageUrl":"https://www.debenhams.com/en-hk", + "region":"hk" + }, + { + "name":"Channel", + "category":"Shopping/Designer Brand_27", + "superCategory":"Designer Brand", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/thumb/9/92/Chanel_logo_interlocking_cs.svg/1280px-Chanel_logo_interlocking_cs.svg.png", + "homePageUrl":"http://www.chanel.com/en_HK/", + "region":"hk" + }, + { + "name":"Michael Kors", + "category":"Shopping/Designer Brand_28", + "superCategory":"Designer Brand", + "logoUrl":"http://www.brandsoftheworld.com/sites/default/files/styles/logo-thumbnail/public/042014/michael_kors.png?itok=-LcukS9K", + "homePageUrl":"http://www.michaelkors.com", + "region":"hk" + }, + { + "name":"E Cox", + "category":"Shopping/Electrical_19", + "superCategory":"Electrical", + "logoUrl":"", + "homePageUrl":"https://ecox.com.hk/shop/?SID=ioa80j6q20m7qr6icdi5utqhv3", + "region":"hk" + }, + { + "name":"Shunhing Group", + "category":"Shopping/Electroinc_20", + "superCategory":"Electronic", + "logoUrl":"", + "homePageUrl":"http://www.shunhinggroup.com/site/chinese/home.aspx", + "region":"hk" + }, + { + "name":"Sony", + "category":"Shopping/Electroins_21", + "superCategory":"Electronic", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/c/ca/Sony_logo.svg", + "homePageUrl":"https://www.sony.com.hk/en", + "region":"hk" + }, + { + "name":"Xpress Flowers", + "category":"Shopping/Florist_37", + "superCategory":"Florist", + "logoUrl":"https://www.oom.com.sg/wp-content/uploads/2015/12/xpressflower.jpg", + "homePageUrl":"https://www.xpressflower.com/international/hong-kong", + "region":"hk" + }, + { + "name":"Hallmark", + "category":"Shopping/Greating Cards and gifts_36", + "superCategory":"Greeting Cards and Gifts", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/3/37/Hallmark_logo.svg", + "homePageUrl":"http://www.hallmarkhk.com/v2/index.php", + "region":"hk" + }, + { + "name":"Victory Hardware", + "category":"Shopping/Hardware Store_39", + "superCategory":"Hardware Store", + "logoUrl":"", + "homePageUrl":"http://www.victoryhardware.com/contact.html", + "region":"hk" + }, + { + "name":"Sofa Sale", + "category":"Shopping/Home Furniture_24", + "superCategory":"Home Furniture", + "logoUrl":"", + "homePageUrl":"https://www.sofasale.com.hk/furniture?gclid=Cj0KCQiAjszhBRDgARIsAH8KgvcS55qpxsSFcTsF0j7TgjYFJkPkDQsN2BykTs_N0rVFt2B7Y8-ZGfIaAkaQEALw_wcB", + "region":"hk" + }, + { + "name":"Stock Room", + "category":"Shopping/Home Furniture_25", + "superCategory":"Home Furniture", + "logoUrl":"", + "homePageUrl":"http://www.stockroom.com.hk/chairs-dining-chairs-c-166_150_151.html?gclid=Cj0KCQiAjszhBRDgARIsAH8KgvcCMYYG3aP8n0CMI76_pqLSX36W0cxSzoLMn2mHkDwe_gFeE8ycxbcaAmtmEALw_wcB", + "region":"hk" + }, + { + "name":"Décor Collection", + "category":"Shopping/Home Furniture_26", + "superCategory":"Home Furniture", + "logoUrl":"", + "homePageUrl":"http://www.decorcollection.com/zh-hant/", + "region":"hk" + }, + { + "name":"Daiso", + "category":"Shopping/Household_1", + "superCategory":"Shopping", + "logoUrl":"", + "homePageUrl":"http://www.daisoglobal.com/store/list/?c_id=C0021", + "region":"hk" + }, + { + "name":"Blue Nile", + "category":"Shopping/Jewelry Store_32", + "superCategory":"Jewelry Store", + "logoUrl":"", + "homePageUrl":"https://www.bluenile.com/hk/jewellery?gclid=Cj0KCQiAjszhBRDgARIsAH8KgvenpiBbSLRlJvDuK7qQN8zhb4qHO3O9SQ9FlS-7z7pJKaqufhVqLK8aAgL8EALw_wcB&click_id=881972538", + "region":"hk" + }, + { + "name":"Wise Kids Toys", + "category":"Shopping/Kids Store_17", + "superCategory":"Kids Store", + "logoUrl":"", + "homePageUrl":"http://www.wisekidstoys.com", + "region":"hk" + }, + { + "name":"Petit-Bazaar", + "category":"Shopping/Kids Store_18", + "superCategory":"Kids Store", + "logoUrl":"", + "homePageUrl":"https://tc.petit-bazaar.com", + "region":"hk" + }, + { + "name":"Zodiac Lighting", + "category":"Shopping/Lighting_38", + "superCategory":"Lighting Shop", + "logoUrl":"", + "homePageUrl":"http://www.zodiaclighting.com/zh-hk/", + "region":"hk" + }, + { + "name":"Journalize", + "category":"Shopping/Newspaper Shop_35", + "superCategory":"Newspaper Shop", + "logoUrl":"", + "homePageUrl":"https://journalize.hk", + "region":"hk" + }, + { + "name":"Clarks", + "category":"Shopping/Shoes_30", + "superCategory":"Shopping", + "logoUrl":"http://intu.co.uk/uploads/media/logo_retailer/0001/06/thumb_5018_logo_retailer_1x.png", + "homePageUrl":"https://www.clarks.com", + "region":"hk" + }, + { + "name":"Iprice", + "category":"Shopping/Shoes_31", + "superCategory":"Shoes", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/d/d0/Iprice.png", + "homePageUrl":"https://iprice.hk/office/shoes/", + "region":"hk" + }, + { + "name":"Escapade Sports", + "category":"Shopping/Sports Store_22", + "superCategory":"Sports Store", + "logoUrl":"", + "homePageUrl":"http://www.escapade.com.hk/brands-at-escapade-sports.html", + "region":"hk" + }, + { + "name":"APA Outdoor Shop", + "category":"Shopping/Sports Store_23", + "superCategory":"Sports Store", + "logoUrl":"", + "homePageUrl":"https://www.apaoutdoorshop.com", + "region":"hk" + }, + { + "name":"OpenSky.tv", + "category":"Sky Tv_1", + "superCategory":"Sky Tv", + "logoUrl":"", + "homePageUrl":"http://download.opensky.tv/en-us", + "region":"hk" + }, + { + "name":"The Mira", + "category":"Spa_1", + "superCategory":"Spa", + "logoUrl":"", + "homePageUrl":"https://www.themirahotel.com/hotel-facilities/", + "region":"hk" + }, + { + "name":"Fortress", + "category":"Suppilers of Cooler Items_1", + "superCategory":"Cooler Items Suppliers", + "logoUrl":"", + "homePageUrl":"https://www.fortress.com.hk/en/shop/home-appliances/air-conditioners/c/44?q=%3A", + "region":"hk" + }, + { + "name":"Element14", + "category":"Suppliers Of large electronic_1", + "superCategory":"Suppliers Of large electronic", + "logoUrl":"", + "homePageUrl":"https://hk.element14.com", + "region":"hk" + }, + { + "name":"Food Panda", + "category":"Takeway_1", + "superCategory":"Takeway", + "logoUrl":"", + "homePageUrl":"https://www.foodpanda.hk", + "region":"hk" + }, + { + "name":"Netvigator", + "category":"Telecom_1", + "superCategory":"Phone/Internet", + "logoUrl":"", + "homePageUrl":"https://www.netvigator.com/chi/index.html", + "region":"hk" + }, + { + "name":"Smartone", + "category":"Telecom_2", + "superCategory":"Mobile Contract", + "logoUrl":"", + "homePageUrl":"https://www.smartone.com/jsp/english/index.jsp?s=273b77187678617e23200c1b184c", + "region":"hk" + }, + { + "name":"Cable Tv", + "category":"Telecom_3", + "superCategory":"Telephone", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/3/3f/HK_Cable_TV_logo.svg", + "homePageUrl":"http://www.cabletv.com.hk/en/index.php", + "region":"hk" + }, + { + "name":"CSL", + "category":"Telecom_4", + "superCategory":"Mobile Contract", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/e/ee/CSLHK_logo.svg", + "homePageUrl":"https://www.hkcsl.com", + "region":"hk" + }, + { + "name":"Stub Hub", + "category":"Tickets_1", + "superCategory":"Tickets", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/3/32/Stubhub.svg", + "homePageUrl":"https://www.stubhub.hk/en/", + "region":"hk" + }, + { + "name":"Markets.com", + "category":"Trading_1", + "superCategory":"Trading Company", + "logoUrl":"http://www.gambling-affiliation.com/uploads/cms/logos/markets_com.png", + "homePageUrl":"http://www.markets.com", + "region":"hk" + }, + { + "name":"MTR", + "category":"Travel_1", + "superCategory":"Travel card", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/8/80/MTR_Corporation_logo.svg", + "homePageUrl":"http://www.mtr.com.hk/ch/customer/tickets/travel_pass_ael.html", + "region":"hk" + }, + { + "name":"HK Electric", + "category":"Utility_1", + "superCategory":"Gas/Elec", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/d/d6/Hongkong_Electric_%28logo%29.png", + "homePageUrl":"https://www.hkelectric.com/en", + "region":"hk" + }, + { + "name":"CLP", + "category":"Utility_2", + "superCategory":"Gas/Elec", + "logoUrl":"", + "homePageUrl":"https://www.clp.com.hk/zh", + "region":"hk" + }, + { + "name":"Town Gas", + "category":"Utility_3", + "superCategory":"Gas Supplier", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/1/1a/Towngas_Logo.svg", + "homePageUrl":"https://www.towngas.com/en/Home", + "region":"hk" + }, + { + "name":"WSD", + "category":"Utility_4", + "superCategory":"Water", + "logoUrl":"", + "homePageUrl":"https://www.wsd.gov.hk/tc/home/index.html", + "region":"hk" + }, + { + "name":"WSD", + "category":"Utility_5", + "superCategory":"Water Supplier", + "logoUrl":"", + "homePageUrl":"https://www.wsd.gov.hk/tc/home/index.html", + "region":"hk" + }, + { + "name":"HK Electric", + "category":"Utility_6", + "superCategory":"Gas/Elec", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/d/d6/Hongkong_Electric_%28logo%29.png", + "homePageUrl":"https://www.hkelectric.com/en", + "region":"hk" + }, + { + "name":"Royal Hong Kong Yatch Club", + "category":"Yatch Club_1", + "superCategory":"Yatch Club", + "logoUrl":"", + "homePageUrl":"https://www.rhkyc.org.hk", + "region":"hk" + }, + { + "name":"HSBC ATM", + "category":"ATM/Cashwithdrawal_1", + "superCategory":"Cashwithdrawal", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/c/c6/HK_TST_Harbour_City_office_英國保誠保險大樓_Prudential_Tower_night_HSBC_ETC_ATM_machine_Apr-2013.JPG", + "homePageUrl":"https://www.hsbc.com.hk", + "region":"hk" + }, + { + "name":"High Street ATM", + "category":"ATM/Cashwithdrawal_2", + "superCategory":"Cashwithdrawal", + "logoUrl":"http://www.atmbusinessblueprint.com/wp-content/uploads/2013/08/ownatmmachines.jpg", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Miss Xing", + "category":"Donation_1", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Mr and Mrs Liu", + "category":"Donation_2", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Mr and Mrs Yang", + "category":"Donation_3", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Mr Huang", + "category":"Donation_4", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Page Wu", + "category":"Donation_5", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Donation Smile Train", + "category":"Donation_6", + "superCategory":"Donation", + "logoUrl":"https://smiletrain.org.uk/sites/default/files/smile-train-logo-social-share.jpg", + "homePageUrl":"https://www.smiletrain.org", + "region":"hk" + }, + { + "name":"Donation Hong Kong Youth Hostels Association", + "category":"Donation_7", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"https://www.yha.org.hk/en/", + "region":"hk" + }, + { + "name":"Donation The Hong Kong Society for the Blind", + "category":"Donation_8", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"https://www.hksb.org.hk/en/", + "region":"hk" + }, + { + "name":"Donation Honds on Hong Kong", + "category":"Donation_9", + "superCategory":"Donation", + "logoUrl":"", + "homePageUrl":"https://www.handsonhongkong.org/about-us", + "region":"hk" + }, + { + "name":"Donation Feeding Hong Kong", + "category":"Donation_10", + "superCategory":"Donation", + "logoUrl":"https://upload.wikimedia.org/wikipedia/en/d/d8/Feeding_Hong_Kong_Logo.jpg", + "homePageUrl":"https://www.feedinghk.org", + "region":"hk" + }, + { + "name":"Pay", + "category":"Income_1", + "superCategory":"Income", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Mr D Zhou", + "category":"Transfer_1", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Business Rates", + "category":"Business Rates_1", + "superCategory":"Business Rates", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Rent", + "category":"Rent_1", + "superCategory":"Rent", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Po Leung Kuk", + "category":"Transfer_2", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"http://elderly.poleungkuk.org.hk/tc/elderly-home2.aspx?pageid=21#", + "region":"hk" + }, + { + "name":"Staint Paul's Hospital", + "category":"Transfer_3", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"http://www.stpaul.org.hk/internet/", + "region":"hk" + }, + { + "name":"Salary Mr R Bao", + "category":"Transfer_4", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Salary Mrs F Dunn", + "category":"Transfer_5", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice Mr Fan", + "category":"Transfer_6", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice Mr Kwok", + "category":"Transfer_7", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice Miss Lee", + "category":"Transfer_8", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice 76542 Mr Tin", + "category":"Transfer_9", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice 986 Mr Woo", + "category":"Transfer_10", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Paid Invoice 2297 Miss Wang", + "category":"Transfer_11", + "superCategory":"Transfer", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Salary", + "category":"Transfer Salary_1", + "superCategory":"Salary", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"Salary", + "category":"Salary_1", + "superCategory":"Salary", + "logoUrl":"", + "homePageUrl":"", + "region":"hk" + }, + { + "name":"MTR", + "category":"Travel_2", + "superCategory":"Train ticket", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/8/80/MTR_Corporation_logo.svg", + "homePageUrl":"http://www.mtr.com.hk/en/customer/tickets/tf_index.html", + "region":"hk" + }, + { + "name":"AIG", + "category":"business insurance_1", + "superCategory":"Business insurance", + "logoUrl":"https://upload.wikimedia.org/wikipedia/commons/b/b3/AIG_logo.svg", + "homePageUrl":"https://www.aig.com.hk/zh/personal", + "region":"hk" + }, + { + "name":"Credit Card Visa", + "category":"Credit Card_1", + "superCategory":"Credit Card", + "logoUrl":"https://seeklogo.com/images/V/visa-logo-6F4057663D-seeklogo.com.png", + "homePageUrl":"https://www.visa.com.hk", + "region":"hk" + }, + { + "name":"Credit Card Mastercard", + "category":"Credit Card_2", + "superCategory":"Credit Card", + "logoUrl":"", + "homePageUrl":"https://www.visa.com.hk", + "region":"hk" + } + ] +] \ No newline at end of file diff --git a/example_input/OBP_sandbox_customers_pretty.json b/example_input/OBP_sandbox_customers_pretty.json new file mode 100644 index 0000000..87da4b4 --- /dev/null +++ b/example_input/OBP_sandbox_customers_pretty.json @@ -0,0 +1,722 @@ +[ + { + "customer_number":"uk2134941755", + "legal_name":"Robert Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"robert.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Married", + "dependants":3, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"Phd.", + "employment_status":"Employed", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-651283529", + "legal_name":"Susan Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"susan.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Divorced", + "dependants":2, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Employed", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-469497271", + "legal_name":"Anil Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"anil.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk1932114874", + "legal_name":"Ellie Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"ellie.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk1897449366", + "legal_name":"Rosalie Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"rosalie.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-697538224", + "legal_name":"Chris Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"chris.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk279117540", + "legal_name":"Dennis Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"dennis.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-2009488665", + "legal_name":"Jane Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"jane.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk2055571317", + "legal_name":"Emma Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"emma.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-848323239", + "legal_name":"Sebastien Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"sebastien.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-1071737964", + "legal_name":"Wim Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"wim.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-1703755665", + "legal_name":"Simon Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"simon.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk78609030", + "legal_name":"Jean-paul Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"jean-paul.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk-987222163", + "legal_name":"Elise Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"elise.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"uk1616620007", + "legal_name":"Eleanor Uk.01", + "mobile_phone_number":"00 44 12345", + "email":"eleanor.uk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.uk.uk", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc2122935982", + "legal_name":"Robert Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"robert.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Married", + "dependants":3, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"Phd.", + "employment_status":"Employed", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-663289302", + "legal_name":"Susan Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"susan.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Divorced", + "dependants":2, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Employed", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-481503044", + "legal_name":"Anil Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"anil.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc1920109101", + "legal_name":"Ellie Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"ellie.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc1885443593", + "legal_name":"Rosalie Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"rosalie.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-709543997", + "legal_name":"Chris Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"chris.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc267111767", + "legal_name":"Dennis Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"dennis.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-2021494438", + "legal_name":"Jane Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"jane.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc2043565544", + "legal_name":"Emma Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"emma.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-860329012", + "legal_name":"Sebastien Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"sebastien.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-1083743737", + "legal_name":"Wim Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"wim.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-1715761438", + "legal_name":"Simon Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"simon.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc66603257", + "legal_name":"Jean-paul Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"jean-paul.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc-999227936", + "legal_name":"Elise Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"elise.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + }, + { + "customer_number":"hsbc1604614234", + "legal_name":"Eleanor Hk.01", + "mobile_phone_number":"00 44 12345", + "email":"eleanor.hk.01@x.y", + "face_image":{ + "url":"www.example.com", + "date":"2019-01-15T12:02:07Z" + }, + "date_of_birth":"2019-01-15T12:02:07Z", + "relationship_status":"Single", + "dependants":0, + "dob_of_dependants":[ + "2019-01-15T12:02:07Z", + "2019-01-15T12:02:07Z" + ], + "highest_education_attained":"BA.", + "employment_status":"Student", + "kyc_status":true, + "last_ok_date":"2019-01-15T12:02:07Z", + "bank_id":"hsbc.01.hk.hsbc", + "credit_rating":"", + "credit_limit":"" + } +] \ No newline at end of file diff --git a/example_input/OBP_sandbox_pretty.json b/example_input/OBP_sandbox_pretty.json new file mode 100644 index 0000000..c6511ac --- /dev/null +++ b/example_input/OBP_sandbox_pretty.json @@ -0,0 +1,402243 @@ +{ + "banks":[ + { + "id":"hsbc.01.uk.uk", + "short_name":"uk", + "full_name":"uk", + "logo":"https://static.openbankproject.com/images/sandbox/bank_y.png", + "website":"http://www.example.com" + }, + { + "id":"hsbc.01.hk.hsbc", + "short_name":"hsbc", + "full_name":"hsbc", + "logo":"https://static.openbankproject.com/openlab/img/hsbc-logo.jpg", + "website":"https://www.hsbc.com.hk/" + } + ], + "users":[ + { + "user_name":"Robert.Uk.01", + "password":"X!16a99a4e", + "email":"robert.uk.01@x.y" + }, + { + "user_name":"Susan.Uk.01", + "password":"X!8bd5ad03", + "email":"susan.uk.01@x.y" + }, + { + "user_name":"Anil.Uk.01", + "password":"X!fd32256a", + "email":"anil.uk.01@x.y" + }, + { + "user_name":"Ellie.Uk.01", + "password":"X!fd9f36a7", + "email":"ellie.uk.01@x.y" + }, + { + "user_name":"Rosalie.Uk.01", + "password":"X!b0362f35", + "email":"rosalie.uk.01@x.y" + }, + { + "user_name":"Chris.Uk.01", + "password":"X!2aa5f9a2", + "email":"chris.uk.01@x.y" + }, + { + "user_name":"Dennis.Uk.01", + "password":"X!038fbe24", + "email":"dennis.uk.01@x.y" + }, + { + "user_name":"Jane.Uk.01", + "password":"X!bbe98532", + "email":"jane.uk.01@x.y" + }, + { + "user_name":"Emma.Uk.01", + "password":"X!5d064260", + "email":"emma.uk.01@x.y" + }, + { + "user_name":"Sebastien.Uk.01", + "password":"X!80258f24", + "email":"sebastien.uk.01@x.y" + }, + { + "user_name":"Wim.Uk.01", + "password":"X!b9a5d227", + "email":"wim.uk.01@x.y" + }, + { + "user_name":"Simon.Uk.01", + "password":"X!dd359fce", + "email":"simon.uk.01@x.y" + }, + { + "user_name":"Jean-paul.Uk.01", + "password":"X!1ad79584", + "email":"jean-paul.uk.01@x.y" + }, + { + "user_name":"Elise.Uk.01", + "password":"X!2a3fd4e9", + "email":"elise.uk.01@x.y" + }, + { + "user_name":"Eleanor.Uk.01", + "password":"X!060fb4ac", + "email":"eleanor.uk.01@x.y" + }, + { + "user_name":"Robert.Hk.01", + "password":"X!b3726b93", + "email":"robert.hk.01@x.y" + }, + { + "user_name":"Susan.Hk.01", + "password":"X!c46e7262", + "email":"susan.hk.01@x.y" + }, + { + "user_name":"Anil.Hk.01", + "password":"X!3b49d64c", + "email":"anil.hk.01@x.y" + }, + { + "user_name":"Ellie.Hk.01", + "password":"X!c6cc1cfe", + "email":"ellie.hk.01@x.y" + }, + { + "user_name":"Rosalie.Hk.01", + "password":"X!0a0b7a91", + "email":"rosalie.hk.01@x.y" + }, + { + "user_name":"Chris.Hk.01", + "password":"X!e5043f01", + "email":"chris.hk.01@x.y" + }, + { + "user_name":"Dennis.Hk.01", + "password":"X!77a657d6", + "email":"dennis.hk.01@x.y" + }, + { + "user_name":"Jane.Hk.01", + "password":"X!7c77a124", + "email":"jane.hk.01@x.y" + }, + { + "user_name":"Emma.Hk.01", + "password":"X!13abd253", + "email":"emma.hk.01@x.y" + }, + { + "user_name":"Sebastien.Hk.01", + "password":"X!757f0850", + "email":"sebastien.hk.01@x.y" + }, + { + "user_name":"Wim.Hk.01", + "password":"X!49a5ce19", + "email":"wim.hk.01@x.y" + }, + { + "user_name":"Simon.Hk.01", + "password":"X!c5cb7549", + "email":"simon.hk.01@x.y" + }, + { + "user_name":"Jean-paul.Hk.01", + "password":"X!dd52d6d3", + "email":"jean-paul.hk.01@x.y" + }, + { + "user_name":"Elise.Hk.01", + "password":"X!e19960eb", + "email":"elise.hk.01@x.y" + }, + { + "user_name":"Eleanor.Hk.01", + "password":"X!eb7fea34", + "email":"eleanor.hk.01@x.y" + } + ], + "accounts":[ + { + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk", + "label":"Susan.Uk.01 M35 12..954", + "number":"12171066954", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"5410.22" + }, + "IBAN":"UK12 1234 5123 4512 1710 6695 477", + "owners":[ + "Susan.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk", + "label":"Robert.Uk.01 M35 10..127", + "number":"10765064127", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"34830.37" + }, + "IBAN":"UK12 1234 5123 4510 7650 6412 777", + "owners":[ + "Robert.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk", + "label":"Anil.Uk.01 M35 11..474", + "number":"11365971474", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"3525.88" + }, + "IBAN":"UK12 1234 5123 4511 3659 7147 477", + "owners":[ + "Anil.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk", + "label":"Robert.Uk.01 M35 13..280", + "number":"13078786280", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"3670.22" + }, + "IBAN":"UK12 1234 5123 4513 0787 8628 077", + "owners":[ + "Robert.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk", + "label":"Ellie.Uk.01 M35 15..647", + "number":"15715050647", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"9788.57" + }, + "IBAN":"UK12 1234 5123 4515 7150 5064 777", + "owners":[ + "Ellie.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk", + "label":"Anil.Uk.01 M35 16..351", + "number":"16658708351", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"3822.22" + }, + "IBAN":"UK12 1234 5123 4516 6587 0835 177", + "owners":[ + "Anil.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk", + "label":"Anil.Uk.01 M35 11..449", + "number":"11201691449", + "type":"Red Mastercard", + "balance":{ + "currency":"GBP", + "amount":"3441.48" + }, + "IBAN":"UK12 1234 5123 4511 2016 9144 977", + "owners":[ + "Anil.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk", + "label":"Rosalie.Uk.01 M35 16..963", + "number":"16113491963", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"2802.55" + }, + "IBAN":"UK12 1234 5123 4516 1134 9196 377", + "owners":[ + "Rosalie.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk", + "label":"Chris.Uk.01 M35 11..317", + "number":"11424910317", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"35099.37" + }, + "IBAN":"UK12 1234 5123 4511 4249 1031 777", + "owners":[ + "Chris.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk", + "label":"Dennis.Uk.01 M35 13..461", + "number":"13061133461", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"4745.78" + }, + "IBAN":"UK12 1234 5123 4513 0611 3346 177", + "owners":[ + "Dennis.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk", + "label":"Chris.Uk.01 M35 14..209", + "number":"14136667209", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"6963.89" + }, + "IBAN":"UK12 1234 5123 4514 1366 6720 977", + "owners":[ + "Chris.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk", + "label":"Jane.Uk.01 M35 12..852", + "number":"12580584852", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"7437.17" + }, + "IBAN":"UK12 1234 5123 4512 5805 8485 277", + "owners":[ + "Jane.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk", + "label":"Dennis.Uk.01 M35 18..035", + "number":"18543762035", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"4898.23" + }, + "IBAN":"UK12 1234 5123 4518 5437 6203 577", + "owners":[ + "Dennis.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk", + "label":"Dennis.Uk.01 M35 14..686", + "number":"14467487686", + "type":"Red Mastercard", + "balance":{ + "currency":"GBP", + "amount":"3810.77" + }, + "IBAN":"UK12 1234 5123 4514 4674 8768 677", + "owners":[ + "Dennis.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk", + "label":"Emma.Uk.01 M35 10..488", + "number":"10253772488", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"4549.10" + }, + "IBAN":"UK12 1234 5123 4510 2537 7248 877", + "owners":[ + "Emma.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk", + "label":"Sebastien.Uk.01 M35 18..845", + "number":"18044371845", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"36585.94" + }, + "IBAN":"UK12 1234 5123 4518 0443 7184 577", + "owners":[ + "Sebastien.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk", + "label":"Wim.Uk.01 M35 18..735", + "number":"18561756735", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"3782.36" + }, + "IBAN":"UK12 1234 5123 4518 5617 5673 577", + "owners":[ + "Wim.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk", + "label":"Sebastien.Uk.01 M35 12..499", + "number":"12295886499", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"2442.41" + }, + "IBAN":"UK12 1234 5123 4512 2958 8649 977", + "owners":[ + "Sebastien.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk", + "label":"Jane.Uk.01 M35 19..444", + "number":"19634802444", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"8751.08" + }, + "IBAN":"UK12 1234 5123 4519 6348 0244 477", + "owners":[ + "Jane.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk", + "label":"Wim.Uk.01 M35 15..251", + "number":"15956876251", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"2273.16" + }, + "IBAN":"UK12 1234 5123 4515 9568 7625 177", + "owners":[ + "Wim.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk", + "label":"Wim.Uk.01 M35 13..858", + "number":"13713162858", + "type":"Red Mastercard", + "balance":{ + "currency":"GBP", + "amount":"6979.31" + }, + "IBAN":"UK12 1234 5123 4513 7131 6285 877", + "owners":[ + "Wim.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk", + "label":"Elise.Uk.01 M35 18..369", + "number":"18986722369", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"2461.09" + }, + "IBAN":"UK12 1234 5123 4518 9867 2236 977", + "owners":[ + "Elise.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk", + "label":"Simon.Uk.01 M35 11..042", + "number":"11399114042", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"34518.28" + }, + "IBAN":"UK12 1234 5123 4511 3991 1404 277", + "owners":[ + "Simon.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk", + "label":"Jean-paul.Uk.01 M35 15..590", + "number":"15009926590", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"2733.50" + }, + "IBAN":"UK12 1234 5123 4515 0099 2659 077", + "owners":[ + "Jean-paul.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk", + "label":"Simon.Uk.01 M35 14..642", + "number":"14668519642", + "type":"CURRENT PLUS", + "balance":{ + "currency":"GBP", + "amount":"2059.07" + }, + "IBAN":"UK12 1234 5123 4514 6685 1964 277", + "owners":[ + "Simon.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk", + "label":"Eleanor.Uk.01 M35 16..925", + "number":"16964236925", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"6311.97" + }, + "IBAN":"UK12 1234 5123 4516 9642 3692 577", + "owners":[ + "Eleanor.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk", + "label":"Jean-paul.Uk.01 M35 10..591", + "number":"10667348591", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"GBP", + "amount":"3834.39" + }, + "IBAN":"UK12 1234 5123 4510 6673 4859 177", + "owners":[ + "Jean-paul.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk", + "label":"Jean-paul.Uk.01 M35 16..836", + "number":"16828784836", + "type":"Red Mastercard", + "balance":{ + "currency":"GBP", + "amount":"2220.37" + }, + "IBAN":"UK12 1234 5123 4516 8287 8483 677", + "owners":[ + "Jean-paul.Uk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc", + "label":"Susan.Hk.01 M35 12..954", + "number":"12171066954", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"5032.99" + }, + "IBAN":"HS12 1234 5123 4512 1710 6695 477", + "owners":[ + "Susan.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc", + "label":"Robert.Hk.01 M35 10..127", + "number":"10765064127", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"6962.93" + }, + "IBAN":"HS12 1234 5123 4510 7650 6412 777", + "owners":[ + "Robert.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc", + "label":"Anil.Hk.01 M35 11..474", + "number":"11365971474", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"2984.86" + }, + "IBAN":"HS12 1234 5123 4511 3659 7147 477", + "owners":[ + "Anil.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc", + "label":"Robert.Hk.01 M35 13..280", + "number":"13078786280", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"4571.38" + }, + "IBAN":"HS12 1234 5123 4513 0787 8628 077", + "owners":[ + "Robert.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc", + "label":"Ellie.Hk.01 M35 15..647", + "number":"15715050647", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"5723.91" + }, + "IBAN":"HS12 1234 5123 4515 7150 5064 777", + "owners":[ + "Ellie.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc", + "label":"Anil.Hk.01 M35 16..351", + "number":"16658708351", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"3567.35" + }, + "IBAN":"HS12 1234 5123 4516 6587 0835 177", + "owners":[ + "Anil.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc", + "label":"Anil.Hk.01 M35 11..449", + "number":"11201691449", + "type":"Red Mastercard", + "balance":{ + "currency":"HKD", + "amount":"2933.46" + }, + "IBAN":"HS12 1234 5123 4511 2016 9144 977", + "owners":[ + "Anil.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc", + "label":"Rosalie.Hk.01 M35 16..963", + "number":"16113491963", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"3578.48" + }, + "IBAN":"HS12 1234 5123 4516 1134 9196 377", + "owners":[ + "Rosalie.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc", + "label":"Chris.Hk.01 M35 11..317", + "number":"11424910317", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"9543.47" + }, + "IBAN":"HS12 1234 5123 4511 4249 1031 777", + "owners":[ + "Chris.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc", + "label":"Dennis.Hk.01 M35 13..461", + "number":"13061133461", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"6452.88" + }, + "IBAN":"HS12 1234 5123 4513 0611 3346 177", + "owners":[ + "Dennis.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc", + "label":"Chris.Hk.01 M35 14..209", + "number":"14136667209", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"3311.01" + }, + "IBAN":"HS12 1234 5123 4514 1366 6720 977", + "owners":[ + "Chris.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc", + "label":"Jane.Hk.01 M35 12..852", + "number":"12580584852", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"4243.50" + }, + "IBAN":"HS12 1234 5123 4512 5805 8485 277", + "owners":[ + "Jane.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc", + "label":"Dennis.Hk.01 M35 18..035", + "number":"18543762035", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"5903.63" + }, + "IBAN":"HS12 1234 5123 4518 5437 6203 577", + "owners":[ + "Dennis.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc", + "label":"Dennis.Hk.01 M35 14..686", + "number":"14467487686", + "type":"Red Mastercard", + "balance":{ + "currency":"HKD", + "amount":"4285.74" + }, + "IBAN":"HS12 1234 5123 4514 4674 8768 677", + "owners":[ + "Dennis.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc", + "label":"Emma.Hk.01 M35 10..488", + "number":"10253772488", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"2191.11" + }, + "IBAN":"HS12 1234 5123 4510 2537 7248 877", + "owners":[ + "Emma.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc", + "label":"Sebastien.Hk.01 M35 18..845", + "number":"18044371845", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"8451.11" + }, + "IBAN":"HS12 1234 5123 4518 0443 7184 577", + "owners":[ + "Sebastien.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc", + "label":"Wim.Hk.01 M35 18..735", + "number":"18561756735", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"2083.25" + }, + "IBAN":"HS12 1234 5123 4518 5617 5673 577", + "owners":[ + "Wim.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc", + "label":"Sebastien.Hk.01 M35 12..499", + "number":"12295886499", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"4071.56" + }, + "IBAN":"HS12 1234 5123 4512 2958 8649 977", + "owners":[ + "Sebastien.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc", + "label":"Jane.Hk.01 M35 19..444", + "number":"19634802444", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"4587.79" + }, + "IBAN":"HS12 1234 5123 4519 6348 0244 477", + "owners":[ + "Jane.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc", + "label":"Wim.Hk.01 M35 15..251", + "number":"15956876251", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"6139.36" + }, + "IBAN":"HS12 1234 5123 4515 9568 7625 177", + "owners":[ + "Wim.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc", + "label":"Wim.Hk.01 M35 13..858", + "number":"13713162858", + "type":"Red Mastercard", + "balance":{ + "currency":"HKD", + "amount":"3163.26" + }, + "IBAN":"HS12 1234 5123 4513 7131 6285 877", + "owners":[ + "Wim.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc", + "label":"Elise.Hk.01 M35 18..369", + "number":"18986722369", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"5462.67" + }, + "IBAN":"HS12 1234 5123 4518 9867 2236 977", + "owners":[ + "Elise.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc", + "label":"Simon.Hk.01 M35 11..042", + "number":"11399114042", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"6191.28" + }, + "IBAN":"HS12 1234 5123 4511 3991 1404 277", + "owners":[ + "Simon.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc", + "label":"Jean-paul.Hk.01 M35 15..590", + "number":"15009926590", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"5751.24" + }, + "IBAN":"HS12 1234 5123 4515 0099 2659 077", + "owners":[ + "Jean-paul.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc", + "label":"Simon.Hk.01 M35 14..642", + "number":"14668519642", + "type":"CURRENT PLUS", + "balance":{ + "currency":"HKD", + "amount":"4231.99" + }, + "IBAN":"HS12 1234 5123 4514 6685 1964 277", + "owners":[ + "Simon.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc", + "label":"Eleanor.Hk.01 M35 16..925", + "number":"16964236925", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"6982.45" + }, + "IBAN":"HS12 1234 5123 4516 9642 3692 577", + "owners":[ + "Eleanor.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc", + "label":"Jean-paul.Hk.01 M35 10..591", + "number":"10667348591", + "type":"BUSINESS CURRENT", + "balance":{ + "currency":"HKD", + "amount":"4641.38" + }, + "IBAN":"HS12 1234 5123 4510 6673 4859 177", + "owners":[ + "Jean-paul.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + }, + { + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc", + "label":"Jean-paul.Hk.01 M35 16..836", + "number":"16828784836", + "type":"Red Mastercard", + "balance":{ + "currency":"HKD", + "amount":"5097.41" + }, + "IBAN":"HS12 1234 5123 4516 8287 8483 677", + "owners":[ + "Jean-paul.Hk.01" + ], + "generate_public_view":false, + "generate_accountants_view":true, + "generate_auditors_view":true + } + ], + "transactions":[ + { + "id":"264bd920-368c-4e58-9b4b-b3e7ee53d3c5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T07:09:20.434Z", + "completed":"2016-01-01T07:09:20.434Z", + "new_balance":"6247.65", + "value":"-7.70" + } + }, + { + "id":"5dfb5bf0-dcbb-4980-8922-96b7aa6e61b9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T09:01:59.694Z", + "completed":"2016-01-01T09:01:59.694Z", + "new_balance":"6244.21", + "value":"-3.44" + } + }, + { + "id":"48fc4ab1-8ced-46d6-9816-0c4849504600", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T18:38:56.001Z", + "completed":"2016-01-01T18:38:56.001Z", + "new_balance":"6240.03", + "value":"-4.18" + } + }, + { + "id":"6eaa029d-4225-4aa9-b93e-de578511ee3c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T20:18:22.673Z", + "completed":"2016-01-01T20:18:22.673Z", + "new_balance":"6236.59", + "value":"-3.44" + } + }, + { + "id":"093d47c2-8f53-488b-a8d6-6763f54f63a7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T17:22:16.212Z", + "completed":"2016-01-05T17:22:16.212Z", + "new_balance":"6226.55", + "value":"-10.04" + } + }, + { + "id":"12f8f6ab-2703-4b9b-8cfb-22adc42ababe", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T19:44:43.667Z", + "completed":"2016-01-05T19:44:43.667Z", + "new_balance":"6219.25", + "value":"-7.30" + } + }, + { + "id":"d4e392ae-5176-4fb4-a031-f55bae3316bd", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T21:38:36.359Z", + "completed":"2016-01-08T21:38:36.359Z", + "new_balance":"6217.85", + "value":"-1.40" + } + }, + { + "id":"e7475738-3078-4b8e-841b-5284cbc27d49", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T17:13:19.898Z", + "completed":"2016-01-10T17:13:19.898Z", + "new_balance":"6213.19", + "value":"-4.66" + } + }, + { + "id":"ac3ceda1-6520-4fc0-8c72-7262e5afb94c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T22:14:19.923Z", + "completed":"2016-01-11T22:14:19.923Z", + "new_balance":"6207.78", + "value":"-5.41" + } + }, + { + "id":"c8467c2b-dd91-4183-8f76-bada023b4c25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T12:10:27.658Z", + "completed":"2016-01-12T12:10:27.658Z", + "new_balance":"6204.34", + "value":"-3.44" + } + }, + { + "id":"d063669f-2952-495c-88bf-58631921c7a0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:25:52.984Z", + "completed":"2016-01-13T03:25:52.984Z", + "new_balance":"6203.88", + "value":"-0.46" + } + }, + { + "id":"92752cc6-0638-4556-a648-5224faa55dea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T22:38:11.921Z", + "completed":"2016-01-13T22:38:11.921Z", + "new_balance":"6203.37", + "value":"-0.51" + } + }, + { + "id":"cc353af3-9ab4-45f0-b189-6291fbac4887", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T01:07:55.340Z", + "completed":"2016-01-16T01:07:55.340Z", + "new_balance":"6193.85", + "value":"-9.52" + } + }, + { + "id":"d2f96cd0-acb8-430b-8066-acf6100e53cb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T12:56:55.754Z", + "completed":"2016-01-19T12:56:55.754Z", + "new_balance":"6187.02", + "value":"-6.83" + } + }, + { + "id":"2ca64f72-7738-479c-85db-c04bd2b9c03f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T22:14:04.796Z", + "completed":"2016-01-19T22:14:04.796Z", + "new_balance":"6179.72", + "value":"-7.30" + } + }, + { + "id":"18623a97-4e20-4542-98f8-36abc2e8d88f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T02:12:54.573Z", + "completed":"2016-01-24T02:12:54.573Z", + "new_balance":"6177.04", + "value":"-2.68" + } + }, + { + "id":"b6151c2d-9124-4c49-bbb7-93ec078d8d45", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T14:46:00.653Z", + "completed":"2016-01-27T14:46:00.653Z", + "new_balance":"6173.37", + "value":"-3.67" + } + }, + { + "id":"bd04eaa3-b80c-434f-96a1-fad7f2dfac69", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T15:26:31.402Z", + "completed":"2016-01-27T15:26:31.402Z", + "new_balance":"6408.33", + "value":"234.96" + } + }, + { + "id":"436d7f9a-38a6-4820-ae6e-305a60169fd0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T12:06:35.269Z", + "completed":"2016-01-31T12:06:35.269Z", + "new_balance":"6385.09", + "value":"-23.24" + } + }, + { + "id":"c3f9b654-93fc-4852-9f9f-0b77988fb7b7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:00:41.773Z", + "completed":"2016-02-01T02:00:41.773Z", + "new_balance":"6380.91", + "value":"-4.18" + } + }, + { + "id":"8ea1b3f5-0ad0-4aee-a841-55b1fdc9bda7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T16:43:23.994Z", + "completed":"2016-02-01T16:43:23.994Z", + "new_balance":"6377.47", + "value":"-3.44" + } + }, + { + "id":"fa857414-92ef-4f90-aa65-12f70848d630", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T20:16:57.560Z", + "completed":"2016-02-01T20:16:57.560Z", + "new_balance":"6369.77", + "value":"-7.70" + } + }, + { + "id":"ceb471c1-d199-48ea-a824-ba0fcf3da655", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T23:45:53.681Z", + "completed":"2016-02-01T23:45:53.681Z", + "new_balance":"6366.33", + "value":"-3.44" + } + }, + { + "id":"6d55aaf0-e034-4c23-9814-6cedaf90ea3b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T01:24:11.899Z", + "completed":"2016-02-03T01:24:11.899Z", + "new_balance":"6365.63", + "value":"-0.70" + } + }, + { + "id":"a04a3e5b-9c8e-4ecc-ae8a-b09c6f12ce74", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T03:44:44.350Z", + "completed":"2016-02-04T03:44:44.350Z", + "new_balance":"6358.33", + "value":"-7.30" + } + }, + { + "id":"1250f374-b30a-4f4e-9c7d-dbc99b843492", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T00:36:18.123Z", + "completed":"2016-02-06T00:36:18.123Z", + "new_balance":"6348.23", + "value":"-10.10" + } + }, + { + "id":"2dd02b0d-f086-456b-9959-6f9fdcb816e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T06:14:50.902Z", + "completed":"2016-02-06T06:14:50.902Z", + "new_balance":"6338.77", + "value":"-9.46" + } + }, + { + "id":"4d949833-12f3-4c19-9a43-3a6f97ecdbf4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T01:59:22.002Z", + "completed":"2016-02-07T01:59:22.002Z", + "new_balance":"6334.97", + "value":"-3.80" + } + }, + { + "id":"e79d2542-24eb-44d7-987a-77de2cd54bbc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T22:10:52.675Z", + "completed":"2016-02-08T22:10:52.675Z", + "new_balance":"6333.85", + "value":"-1.12" + } + }, + { + "id":"f90caa64-8bb9-4d93-b28c-2449715dae48", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T11:28:19.953Z", + "completed":"2016-02-09T11:28:19.953Z", + "new_balance":"6329.26", + "value":"-4.59" + } + }, + { + "id":"c46afb2e-08cf-49fa-8b09-bc1e54be0f95", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T03:58:43.655Z", + "completed":"2016-02-11T03:58:43.655Z", + "new_balance":"6326.86", + "value":"-2.40" + } + }, + { + "id":"1bbfbad2-94a5-47d2-bfb0-fe3aae15c450", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T03:27:40.176Z", + "completed":"2016-02-13T03:27:40.176Z", + "new_balance":"6323.98", + "value":"-2.88" + } + }, + { + "id":"75b1e931-e734-4fcc-8a23-9a5e1eaea77e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T13:20:50.963Z", + "completed":"2016-02-17T13:20:50.963Z", + "new_balance":"6323.46", + "value":"-0.52" + } + }, + { + "id":"2c7f457f-53b9-4e35-a2c8-1e2235803bb5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T18:16:00.516Z", + "completed":"2016-02-19T18:16:00.516Z", + "new_balance":"6318.28", + "value":"-5.18" + } + }, + { + "id":"94021c72-e37e-460b-a532-04c7c12acb37", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T19:23:00.475Z", + "completed":"2016-02-21T19:23:00.475Z", + "new_balance":"6310.98", + "value":"-7.30" + } + }, + { + "id":"89daca29-802e-4054-a43b-f14fb253865c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T00:15:50.494Z", + "completed":"2016-02-24T00:15:50.494Z", + "new_balance":"6307.31", + "value":"-3.67" + } + }, + { + "id":"64eb9d60-2c08-4eb0-8286-86c4facaf2c9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T21:55:20.086Z", + "completed":"2016-02-26T21:55:20.086Z", + "new_balance":"6542.27", + "value":"234.96" + } + }, + { + "id":"2801a83c-98fe-4e14-8478-826d09e14ceb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T03:17:44.721Z", + "completed":"2016-03-01T03:17:44.721Z", + "new_balance":"6538.83", + "value":"-3.44" + } + }, + { + "id":"9a7bf04f-167b-42e3-976b-b8a30ca692e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T04:38:03.511Z", + "completed":"2016-03-01T04:38:03.511Z", + "new_balance":"6531.13", + "value":"-7.70" + } + }, + { + "id":"17939242-9e43-467d-8693-c8b053cc5ed2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T11:18:21.041Z", + "completed":"2016-03-01T11:18:21.041Z", + "new_balance":"6526.95", + "value":"-4.18" + } + }, + { + "id":"70916187-c897-4dd8-8e79-6ed70b405e6d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:46:23.894Z", + "completed":"2016-03-01T16:46:23.894Z", + "new_balance":"6523.51", + "value":"-3.44" + } + }, + { + "id":"4b0eaa7d-1e41-4ef7-a7eb-4c83d96736e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T03:32:16.863Z", + "completed":"2016-03-09T03:32:16.863Z", + "new_balance":"6517.69", + "value":"-5.82" + } + }, + { + "id":"98936cd9-ec3d-4390-90d1-3f8699d2e085", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T14:28:46.490Z", + "completed":"2016-03-09T14:28:46.490Z", + "new_balance":"6510.43", + "value":"-7.26" + } + }, + { + "id":"4f7efdaf-d5b2-4b2a-93b4-a779fdd62d8e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T23:32:36.287Z", + "completed":"2016-03-17T23:32:36.287Z", + "new_balance":"6502.69", + "value":"-7.74" + } + }, + { + "id":"557e401f-3f1b-4ce0-ad67-a3a582c60490", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T11:41:39.679Z", + "completed":"2016-03-18T11:41:39.679Z", + "new_balance":"6498.28", + "value":"-4.41" + } + }, + { + "id":"fbe97604-d50b-41fe-bdf8-e6182ddcbea6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T16:41:48.268Z", + "completed":"2016-03-18T16:41:48.268Z", + "new_balance":"6490.54", + "value":"-7.74" + } + }, + { + "id":"59661f85-7507-4243-9e7c-24cdaaef8613", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T16:51:53.443Z", + "completed":"2016-03-18T16:51:53.443Z", + "new_balance":"6489.93", + "value":"-0.61" + } + }, + { + "id":"2ac3dd80-8ea5-4bbb-812c-77b86dc69831", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T22:33:58.213Z", + "completed":"2016-03-18T22:33:58.213Z", + "new_balance":"6485.86", + "value":"-4.07" + } + }, + { + "id":"f4744e82-6fe0-403b-b91e-6b949adc41a8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T20:15:54.298Z", + "completed":"2016-03-22T20:15:54.298Z", + "new_balance":"6475.85", + "value":"-10.01" + } + }, + { + "id":"8315d131-a9a0-434f-93c7-c0fa1e50a9d3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T04:03:06.217Z", + "completed":"2016-03-29T04:03:06.217Z", + "new_balance":"6472.18", + "value":"-3.67" + } + }, + { + "id":"91f8899d-ca6f-484e-a038-c1bacddd9092", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T06:27:49.555Z", + "completed":"2016-03-29T06:27:49.555Z", + "new_balance":"6707.14", + "value":"234.96" + } + }, + { + "id":"21b095f7-5b74-4653-b8eb-95c60d6b1ab8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T21:52:29.557Z", + "completed":"2016-03-31T21:52:29.557Z", + "new_balance":"6683.90", + "value":"-23.24" + } + }, + { + "id":"008919c2-03d7-4f03-9ff0-2533a456747c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T02:18:26.459Z", + "completed":"2016-04-01T02:18:26.459Z", + "new_balance":"6680.46", + "value":"-3.44" + } + }, + { + "id":"628c34e6-1867-48e4-b79c-cda49b1c9f24", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T09:32:04.307Z", + "completed":"2016-04-01T09:32:04.307Z", + "new_balance":"6672.76", + "value":"-7.70" + } + }, + { + "id":"c2573654-92e1-4377-991f-5efc028ea58b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:25:14.199Z", + "completed":"2016-04-01T14:25:14.199Z", + "new_balance":"6669.32", + "value":"-3.44" + } + }, + { + "id":"a770b90c-a45e-4cec-aef5-bcf5e705946c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T17:32:55.185Z", + "completed":"2016-04-01T17:32:55.185Z", + "new_balance":"6665.14", + "value":"-4.18" + } + }, + { + "id":"b7d287c6-e465-47f4-9992-ba89cb5c4049", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T16:05:36.146Z", + "completed":"2016-04-02T16:05:36.146Z", + "new_balance":"6657.58", + "value":"-7.56" + } + }, + { + "id":"9f87435d-058a-4eb4-8170-a62cad316832", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T04:05:00.419Z", + "completed":"2016-04-05T04:05:00.419Z", + "new_balance":"6654.14", + "value":"-3.44" + } + }, + { + "id":"2684f70b-1618-4345-8f2a-0d53164d68d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T05:01:54.496Z", + "completed":"2016-04-05T05:01:54.496Z", + "new_balance":"6653.55", + "value":"-0.59" + } + }, + { + "id":"6694ca6f-d6d3-4c6c-a320-577e90c74e17", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T07:44:57.260Z", + "completed":"2016-04-05T07:44:57.260Z", + "new_balance":"6652.85", + "value":"-0.70" + } + }, + { + "id":"1621c948-3b9a-419c-88bd-e76a63214f40", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T19:46:49.703Z", + "completed":"2016-04-05T19:46:49.703Z", + "new_balance":"6645.55", + "value":"-7.30" + } + }, + { + "id":"44c7ca49-8fcb-4f71-9da8-3142c754ed68", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T21:22:25.330Z", + "completed":"2016-04-05T21:22:25.330Z", + "new_balance":"6644.31", + "value":"-1.24" + } + }, + { + "id":"7a5829f2-c983-4c87-8da9-c98fb01744e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T22:29:46.259Z", + "completed":"2016-04-05T22:29:46.259Z", + "new_balance":"6640.13", + "value":"-4.18" + } + }, + { + "id":"0a922a5b-f1f8-4ccd-b645-1a98c7b25443", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T22:37:46.224Z", + "completed":"2016-04-05T22:37:46.224Z", + "new_balance":"6634.68", + "value":"-5.45" + } + }, + { + "id":"3ac99af0-716e-43b7-9e5b-03ae3266df2d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T16:56:26.783Z", + "completed":"2016-04-08T16:56:26.783Z", + "new_balance":"6626.59", + "value":"-8.09" + } + }, + { + "id":"cac8c30c-3539-402d-95d9-76682d78fdf9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T15:29:47.275Z", + "completed":"2016-04-10T15:29:47.275Z", + "new_balance":"6620.47", + "value":"-6.12" + } + }, + { + "id":"53084dff-1de3-4ad1-8987-4e6abd28a640", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T06:29:34.203Z", + "completed":"2016-04-11T06:29:34.203Z", + "new_balance":"6613.17", + "value":"-7.30" + } + }, + { + "id":"9dda2936-c103-41a7-afcf-bbe96e337ca2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T11:19:45.769Z", + "completed":"2016-04-11T11:19:45.769Z", + "new_balance":"6610.49", + "value":"-2.68" + } + }, + { + "id":"e9c04ae7-474b-4e5f-81a5-fd9a5777155b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T12:07:13.035Z", + "completed":"2016-04-13T12:07:13.035Z", + "new_balance":"6606.82", + "value":"-3.67" + } + }, + { + "id":"26531c69-39ae-4afb-a1f0-29267b44e012", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T09:00:36.065Z", + "completed":"2016-04-18T09:00:36.065Z", + "new_balance":"6841.78", + "value":"234.96" + } + }, + { + "id":"3073e8ab-beb3-481f-bab7-7dfcb82d32a6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T10:37:13.329Z", + "completed":"2016-04-25T10:37:13.329Z", + "new_balance":"6818.54", + "value":"-23.24" + } + }, + { + "id":"666b3735-845f-4977-b2cc-dd2d75614a34", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T07:02:29.375Z", + "completed":"2016-05-02T07:02:29.375Z", + "new_balance":"6810.84", + "value":"-7.70" + } + }, + { + "id":"8f4a058a-ebbd-4ec0-8f40-502eb841477c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T08:44:00.513Z", + "completed":"2016-05-02T08:44:00.513Z", + "new_balance":"6807.40", + "value":"-3.44" + } + }, + { + "id":"bb83481d-3067-4585-b940-03709f784dd9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T17:44:29.271Z", + "completed":"2016-05-02T17:44:29.271Z", + "new_balance":"6803.22", + "value":"-4.18" + } + }, + { + "id":"904011c8-c30b-4fe4-b032-2af55c6c4fc0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T22:36:38.541Z", + "completed":"2016-05-02T22:36:38.541Z", + "new_balance":"6799.78", + "value":"-3.44" + } + }, + { + "id":"def5f8b1-28c8-42a5-b435-d51abda09d07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T02:58:24.328Z", + "completed":"2016-05-04T02:58:24.328Z", + "new_balance":"6799.08", + "value":"-0.70" + } + }, + { + "id":"630d80f0-f81d-4ded-91f0-224a13b60dcc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T21:26:22.328Z", + "completed":"2016-05-04T21:26:22.328Z", + "new_balance":"6791.78", + "value":"-7.30" + } + }, + { + "id":"55b498c8-4085-40f1-8373-093e69e46513", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T17:00:23.548Z", + "completed":"2016-05-06T17:00:23.548Z", + "new_balance":"6784.34", + "value":"-7.44" + } + }, + { + "id":"db9601aa-0f97-44e8-96c9-5f0dfa74af43", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T00:51:57.643Z", + "completed":"2016-05-07T00:51:57.643Z", + "new_balance":"6776.78", + "value":"-7.56" + } + }, + { + "id":"3cea6e89-2e74-4a20-b878-e3309296b157", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T08:45:27.343Z", + "completed":"2016-05-07T08:45:27.343Z", + "new_balance":"6774.07", + "value":"-2.71" + } + }, + { + "id":"7d91d296-9a57-4de4-9e1c-d3b86bb8179f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T19:33:12.480Z", + "completed":"2016-05-09T19:33:12.480Z", + "new_balance":"6772.83", + "value":"-1.24" + } + }, + { + "id":"849cf451-850c-4525-a2cd-420eda3331fb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T23:08:09.983Z", + "completed":"2016-05-09T23:08:09.983Z", + "new_balance":"6768.24", + "value":"-4.59" + } + }, + { + "id":"96850b5b-59e5-491f-b9c3-5880a16895fd", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T03:16:22.850Z", + "completed":"2016-05-13T03:16:22.850Z", + "new_balance":"6766.11", + "value":"-2.13" + } + }, + { + "id":"cc21aa0b-6af8-4de0-83d0-9494a790ae40", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T05:16:05.243Z", + "completed":"2016-05-13T05:16:05.243Z", + "new_balance":"6765.41", + "value":"-0.70" + } + }, + { + "id":"37d3ed2b-f21b-4971-9578-847f909a0508", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T11:25:13.708Z", + "completed":"2016-05-13T11:25:13.708Z", + "new_balance":"6762.70", + "value":"-2.71" + } + }, + { + "id":"92df9281-ea78-4ddc-8402-2192ec41ccd6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T01:59:19.618Z", + "completed":"2016-05-14T01:59:19.618Z", + "new_balance":"6758.24", + "value":"-4.46" + } + }, + { + "id":"e661e5d3-81dc-421b-bb6c-ede4e6a40691", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T05:23:36.001Z", + "completed":"2016-05-14T05:23:36.001Z", + "new_balance":"6750.94", + "value":"-7.30" + } + }, + { + "id":"0ec2e9ae-23ea-4664-aa80-ec0b71ce2070", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T07:00:10.148Z", + "completed":"2016-05-15T07:00:10.148Z", + "new_balance":"6747.27", + "value":"-3.67" + } + }, + { + "id":"30758e82-3fc7-4b5b-af36-9cbfba512976", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T03:32:35.280Z", + "completed":"2016-05-30T03:32:35.280Z", + "new_balance":"6982.23", + "value":"234.96" + } + }, + { + "id":"6527e3f1-ad40-42bc-890b-6870b913a1ea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T08:49:41.928Z", + "completed":"2016-05-30T08:49:41.928Z", + "new_balance":"6958.99", + "value":"-23.24" + } + }, + { + "id":"93a0b348-c67b-46b4-8bd4-65bc78ead148", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T03:01:11.444Z", + "completed":"2016-06-01T03:01:11.444Z", + "new_balance":"6955.55", + "value":"-3.44" + } + }, + { + "id":"34453c81-567d-4237-a824-516c0c872153", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T08:01:44.446Z", + "completed":"2016-06-01T08:01:44.446Z", + "new_balance":"6947.85", + "value":"-7.70" + } + }, + { + "id":"b017bea6-f5e1-4742-ae7f-30d347f8b070", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T21:00:55.345Z", + "completed":"2016-06-01T21:00:55.345Z", + "new_balance":"6943.67", + "value":"-4.18" + } + }, + { + "id":"f003026d-4b1d-4049-9d07-89c72924bcd7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T23:22:26.778Z", + "completed":"2016-06-01T23:22:26.778Z", + "new_balance":"6940.23", + "value":"-3.44" + } + }, + { + "id":"0f41cdf3-9f18-4251-9089-93d249626857", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T22:29:43.663Z", + "completed":"2016-06-04T22:29:43.663Z", + "new_balance":"6932.97", + "value":"-7.26" + } + }, + { + "id":"109df7c9-b56b-41b5-91e1-4e9a74d97590", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T23:01:40.672Z", + "completed":"2016-06-04T23:01:40.672Z", + "new_balance":"6927.15", + "value":"-5.82" + } + }, + { + "id":"49422661-ad5e-4001-8b84-701c9231a02a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T04:57:39.934Z", + "completed":"2016-06-11T04:57:39.934Z", + "new_balance":"6919.41", + "value":"-7.74" + } + }, + { + "id":"82e19891-a4ab-4173-9dc5-f2c8d54809f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T09:29:54.756Z", + "completed":"2016-06-11T09:29:54.756Z", + "new_balance":"6911.67", + "value":"-7.74" + } + }, + { + "id":"273b5cc8-fcf6-4305-8f65-62d37e3a57d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T17:50:27.067Z", + "completed":"2016-06-11T17:50:27.067Z", + "new_balance":"6907.26", + "value":"-4.41" + } + }, + { + "id":"4af12033-ebeb-4f73-831d-6e6a69b16fc8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T13:13:53.541Z", + "completed":"2016-06-12T13:13:53.541Z", + "new_balance":"6903.19", + "value":"-4.07" + } + }, + { + "id":"8accc874-3616-4e37-a866-41916ab62ad4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T21:12:05.210Z", + "completed":"2016-06-12T21:12:05.210Z", + "new_balance":"6902.58", + "value":"-0.61" + } + }, + { + "id":"a74e7dad-a27e-4564-bc24-722f45851af2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:37:06.549Z", + "completed":"2016-06-16T00:37:06.549Z", + "new_balance":"6892.57", + "value":"-10.01" + } + }, + { + "id":"db7b04bd-e9fd-466a-9be3-2b4d21c67796", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T03:20:50.914Z", + "completed":"2016-06-29T03:20:50.914Z", + "new_balance":"6888.90", + "value":"-3.67" + } + }, + { + "id":"443c5a0b-3609-4fea-9775-6c0cb5991015", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T10:11:11.475Z", + "completed":"2016-06-30T10:11:11.475Z", + "new_balance":"7123.86", + "value":"234.96" + } + }, + { + "id":"e340b690-0925-4dda-bb04-cbb59713eda7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T22:41:34.801Z", + "completed":"2016-06-30T22:41:34.801Z", + "new_balance":"7100.62", + "value":"-23.24" + } + }, + { + "id":"af156790-0252-473e-8670-90b8e2d8c6d3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T02:01:11.669Z", + "completed":"2016-07-01T02:01:11.669Z", + "new_balance":"7097.18", + "value":"-3.44" + } + }, + { + "id":"81f5d4d2-6fbf-4dd7-9905-9f55cf73cf96", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T04:05:57.531Z", + "completed":"2016-07-01T04:05:57.531Z", + "new_balance":"7093.00", + "value":"-4.18" + } + }, + { + "id":"1e1d5965-151e-4bad-8c24-1eb7a0b6fe12", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T11:45:41.551Z", + "completed":"2016-07-01T11:45:41.551Z", + "new_balance":"7089.56", + "value":"-3.44" + } + }, + { + "id":"c6e50795-c70b-4f1b-aa4f-e9c07b68e538", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T19:32:14.718Z", + "completed":"2016-07-01T19:32:14.718Z", + "new_balance":"7081.86", + "value":"-7.70" + } + }, + { + "id":"8e9fb5dd-d8de-4174-bcb4-74415e88a573", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T01:24:28.228Z", + "completed":"2016-07-05T01:24:28.228Z", + "new_balance":"7071.82", + "value":"-10.04" + } + }, + { + "id":"839a4444-8f64-4b24-9324-e0e8f32943eb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T15:19:20.319Z", + "completed":"2016-07-05T15:19:20.319Z", + "new_balance":"7064.52", + "value":"-7.30" + } + }, + { + "id":"df0fb3cb-d5e9-400a-a7f7-bd673649e369", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T06:51:16.259Z", + "completed":"2016-07-08T06:51:16.259Z", + "new_balance":"7063.12", + "value":"-1.40" + } + }, + { + "id":"6b2bff85-e4d5-4f4c-999e-e30b89b46dc2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T09:47:45.943Z", + "completed":"2016-07-10T09:47:45.943Z", + "new_balance":"7058.46", + "value":"-4.66" + } + }, + { + "id":"0ca63a8a-8ee3-4449-b1c3-fa33fb4ce657", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T01:12:59.469Z", + "completed":"2016-07-12T01:12:59.469Z", + "new_balance":"7055.02", + "value":"-3.44" + } + }, + { + "id":"ac15a0b3-8410-4eea-beda-93b437daaa9a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T14:43:10.878Z", + "completed":"2016-07-12T14:43:10.878Z", + "new_balance":"7049.61", + "value":"-5.41" + } + }, + { + "id":"b94f3dbe-29fd-4c6a-9064-7425797b04f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T03:48:19.721Z", + "completed":"2016-07-13T03:48:19.721Z", + "new_balance":"7049.10", + "value":"-0.51" + } + }, + { + "id":"eb1cdea7-4984-451e-9ef6-df19c2b7c738", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T21:26:29.066Z", + "completed":"2016-07-13T21:26:29.066Z", + "new_balance":"7048.64", + "value":"-0.46" + } + }, + { + "id":"a0ca7d8d-b8a2-47bc-8f21-49347683958e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T12:34:31.685Z", + "completed":"2016-07-18T12:34:31.685Z", + "new_balance":"7039.12", + "value":"-9.52" + } + }, + { + "id":"2571f39c-d156-4acc-b24c-c48288e2cbec", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T11:29:09.924Z", + "completed":"2016-07-20T11:29:09.924Z", + "new_balance":"7032.29", + "value":"-6.83" + } + }, + { + "id":"65f97d5a-b65c-4428-a6f0-c631701ee5b5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T22:20:01.023Z", + "completed":"2016-07-20T22:20:01.023Z", + "new_balance":"7024.99", + "value":"-7.30" + } + }, + { + "id":"448f7ce9-904c-43d0-8c37-2a799ff080d9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T07:36:09.799Z", + "completed":"2016-07-24T07:36:09.799Z", + "new_balance":"7022.31", + "value":"-2.68" + } + }, + { + "id":"6207ffff-5c9f-451a-959a-0f56e90d3dcb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T12:52:30.871Z", + "completed":"2016-07-29T12:52:30.871Z", + "new_balance":"7018.64", + "value":"-3.67" + } + }, + { + "id":"0f9dc51c-701f-424a-a0bc-81d22486c251", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T19:13:10.359Z", + "completed":"2016-07-29T19:13:10.359Z", + "new_balance":"7253.60", + "value":"234.96" + } + }, + { + "id":"24c6e6fe-b70f-459f-9ad3-77c239b61c45", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:34:48.650Z", + "completed":"2016-07-30T05:34:48.650Z", + "new_balance":"7230.36", + "value":"-23.24" + } + }, + { + "id":"db17c842-b92a-4415-b364-437cd2727b1d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T08:28:36.238Z", + "completed":"2016-08-01T08:28:36.238Z", + "new_balance":"7226.18", + "value":"-4.18" + } + }, + { + "id":"d9e63c3a-cc07-42f5-83bc-5fee34ddd9d0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T16:27:13.674Z", + "completed":"2016-08-01T16:27:13.674Z", + "new_balance":"7222.74", + "value":"-3.44" + } + }, + { + "id":"33a06d5b-3712-4bbb-9f3c-6cdd111ca8bb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T20:48:02.732Z", + "completed":"2016-08-01T20:48:02.732Z", + "new_balance":"7215.04", + "value":"-7.70" + } + }, + { + "id":"cfb67a2b-3c9b-4fba-a579-3493f07b2119", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T22:34:15.972Z", + "completed":"2016-08-01T22:34:15.972Z", + "new_balance":"7211.60", + "value":"-3.44" + } + }, + { + "id":"59752419-a125-4831-8a9b-3463dce2369c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T22:03:15.421Z", + "completed":"2016-08-03T22:03:15.421Z", + "new_balance":"7210.90", + "value":"-0.70" + } + }, + { + "id":"3e7106cf-070c-4064-a0c7-9a0528ffa090", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T15:20:26.922Z", + "completed":"2016-08-04T15:20:26.922Z", + "new_balance":"7203.60", + "value":"-7.30" + } + }, + { + "id":"e30e5e35-cf8d-4bf5-8613-ff23907a0917", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:22:30.591Z", + "completed":"2016-08-08T03:22:30.591Z", + "new_balance":"7202.48", + "value":"-1.12" + } + }, + { + "id":"5c33516c-1e6a-403f-a4b3-2b3744100d07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T07:12:48.884Z", + "completed":"2016-08-08T07:12:48.884Z", + "new_balance":"7192.38", + "value":"-10.10" + } + }, + { + "id":"77a53ef7-f634-46a4-b61a-381264124d22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T07:15:53.788Z", + "completed":"2016-08-08T07:15:53.788Z", + "new_balance":"7182.92", + "value":"-9.46" + } + }, + { + "id":"10bf6d01-5d4e-4f92-86ed-0f8e36688be0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T23:42:33.467Z", + "completed":"2016-08-08T23:42:33.467Z", + "new_balance":"7179.12", + "value":"-3.80" + } + }, + { + "id":"700ad0e0-4f5b-4066-8f40-308658ab8442", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T01:59:07.174Z", + "completed":"2016-08-09T01:59:07.174Z", + "new_balance":"7174.53", + "value":"-4.59" + } + }, + { + "id":"8da7ca9d-4a0c-4576-b34f-332fd3fb3d29", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T15:09:34.760Z", + "completed":"2016-08-14T15:09:34.760Z", + "new_balance":"7172.13", + "value":"-2.40" + } + }, + { + "id":"47e8c23e-d19b-473e-8eff-fbd799f137ea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T01:05:27.368Z", + "completed":"2016-08-15T01:05:27.368Z", + "new_balance":"7169.25", + "value":"-2.88" + } + }, + { + "id":"ddd8a3cd-162f-4553-9fd7-8caed9e0adbc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T23:23:14.694Z", + "completed":"2016-08-19T23:23:14.694Z", + "new_balance":"7168.73", + "value":"-0.52" + } + }, + { + "id":"d6d0d176-7b00-498c-ba2a-56b8879ebcce", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T06:49:18.830Z", + "completed":"2016-08-22T06:49:18.830Z", + "new_balance":"7163.55", + "value":"-5.18" + } + }, + { + "id":"4b9eba58-855e-4b07-9ca0-f5cb22fbaee1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T08:41:37.474Z", + "completed":"2016-08-26T08:41:37.474Z", + "new_balance":"7156.25", + "value":"-7.30" + } + }, + { + "id":"7b202608-15c4-4055-8b47-0d8967288e25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T09:36:47.582Z", + "completed":"2016-08-28T09:36:47.582Z", + "new_balance":"7133.01", + "value":"-23.24" + } + }, + { + "id":"bc8a33e1-cf64-424d-89a8-9b002ca370e2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T00:49:00.901Z", + "completed":"2016-08-29T00:49:00.901Z", + "new_balance":"7367.97", + "value":"234.96" + } + }, + { + "id":"da497405-9da8-4bde-995f-630f7809a35d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T09:23:54.393Z", + "completed":"2016-08-29T09:23:54.393Z", + "new_balance":"7364.30", + "value":"-3.67" + } + }, + { + "id":"a44a144d-8916-4242-8cbd-a95cbb5a7f63", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T13:18:31.626Z", + "completed":"2016-08-30T13:18:31.626Z", + "new_balance":"7341.06", + "value":"-23.24" + } + }, + { + "id":"825f01b4-828a-4202-a5f8-545f0d0c4e4b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T03:33:10.983Z", + "completed":"2016-09-01T03:33:10.983Z", + "new_balance":"7333.36", + "value":"-7.70" + } + }, + { + "id":"c623666e-999d-40c6-b998-3fa9fc87721e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:26:36.784Z", + "completed":"2016-09-01T09:26:36.784Z", + "new_balance":"7329.92", + "value":"-3.44" + } + }, + { + "id":"abec0251-4061-4d10-9feb-eb124ba03b2f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T12:39:01.551Z", + "completed":"2016-09-01T12:39:01.551Z", + "new_balance":"7326.48", + "value":"-3.44" + } + }, + { + "id":"bf7acedb-f9c4-4122-802c-4ed440e6b111", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T21:10:04.860Z", + "completed":"2016-09-01T21:10:04.860Z", + "new_balance":"7322.30", + "value":"-4.18" + } + }, + { + "id":"387a4091-6e17-4821-983e-356ad990838a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T01:41:03.610Z", + "completed":"2016-09-09T01:41:03.610Z", + "new_balance":"7315.04", + "value":"-7.26" + } + }, + { + "id":"77fc7164-58ff-4c24-932b-63c3850a6fb5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T13:56:16.428Z", + "completed":"2016-09-09T13:56:16.428Z", + "new_balance":"7309.22", + "value":"-5.82" + } + }, + { + "id":"b770d1c7-b662-4d27-94a7-1658e49e62b6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T21:31:04.261Z", + "completed":"2016-09-17T21:31:04.261Z", + "new_balance":"7301.48", + "value":"-7.74" + } + }, + { + "id":"92004f99-9053-4818-9487-a4b75cac430b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T08:50:44.154Z", + "completed":"2016-09-18T08:50:44.154Z", + "new_balance":"7293.74", + "value":"-7.74" + } + }, + { + "id":"29854725-7fa6-473d-85d4-76381c3bf608", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T09:14:56.629Z", + "completed":"2016-09-18T09:14:56.629Z", + "new_balance":"7293.13", + "value":"-0.61" + } + }, + { + "id":"3882571e-30b2-4763-8373-88e08cc9474f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T18:10:36.735Z", + "completed":"2016-09-18T18:10:36.735Z", + "new_balance":"7288.72", + "value":"-4.41" + } + }, + { + "id":"ea46461b-5f47-4e02-aea8-9c36721ea2d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T23:00:46.949Z", + "completed":"2016-09-18T23:00:46.949Z", + "new_balance":"7284.65", + "value":"-4.07" + } + }, + { + "id":"96abe2d6-5644-4c9c-bdfe-ceaf678a7633", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T11:20:58.951Z", + "completed":"2016-09-22T11:20:58.951Z", + "new_balance":"7274.64", + "value":"-10.01" + } + }, + { + "id":"18c8fe44-669e-47fd-aeb6-5b756ff8c987", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T08:27:12.383Z", + "completed":"2016-09-29T08:27:12.383Z", + "new_balance":"7509.60", + "value":"234.96" + } + }, + { + "id":"31185731-16a4-41a8-ac9e-f474f349eb73", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T23:51:30.831Z", + "completed":"2016-09-29T23:51:30.831Z", + "new_balance":"7505.93", + "value":"-3.67" + } + }, + { + "id":"fccd718d-6805-4893-8250-76fc6eb48b8f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T13:24:38.158Z", + "completed":"2016-09-30T13:24:38.158Z", + "new_balance":"7482.69", + "value":"-23.24" + } + }, + { + "id":"74b2827f-0e1b-48c7-ae6a-151b3d5216f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T13:51:59.208Z", + "completed":"2016-10-01T13:51:59.208Z", + "new_balance":"7479.25", + "value":"-3.44" + } + }, + { + "id":"3783c678-8fde-497b-b55f-1abff89b02cc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T17:43:20.420Z", + "completed":"2016-10-01T17:43:20.420Z", + "new_balance":"7471.55", + "value":"-7.70" + } + }, + { + "id":"342d7a4f-ae65-40b7-baa0-8d5e59c442b5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T21:49:05.095Z", + "completed":"2016-10-01T21:49:05.095Z", + "new_balance":"7467.37", + "value":"-4.18" + } + }, + { + "id":"35ea23cc-76b5-401d-b177-6b4a20c850a4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T23:11:32.648Z", + "completed":"2016-10-01T23:11:32.648Z", + "new_balance":"7463.93", + "value":"-3.44" + } + }, + { + "id":"53ca2afa-a7e3-4e84-be0d-286a605e1568", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T11:53:24.171Z", + "completed":"2016-10-02T11:53:24.171Z", + "new_balance":"7456.37", + "value":"-7.56" + } + }, + { + "id":"43f50383-81a6-4293-877a-d7a33078ee9c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T00:29:55.788Z", + "completed":"2016-10-05T00:29:55.788Z", + "new_balance":"7455.67", + "value":"-0.70" + } + }, + { + "id":"dd78e92b-a08c-4f4c-bcd5-38e3494da5e2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T01:49:19.433Z", + "completed":"2016-10-05T01:49:19.433Z", + "new_balance":"7455.08", + "value":"-0.59" + } + }, + { + "id":"aff02b9c-670c-47d7-b368-d00b431a8694", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T08:00:14.252Z", + "completed":"2016-10-05T08:00:14.252Z", + "new_balance":"7447.78", + "value":"-7.30" + } + }, + { + "id":"fec48fa4-b62f-4b37-8c01-2766df2d2158", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T10:34:12.746Z", + "completed":"2016-10-05T10:34:12.746Z", + "new_balance":"7442.33", + "value":"-5.45" + } + }, + { + "id":"eeaadccd-2ffb-4b1d-97c7-741c6554f498", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:23:32.080Z", + "completed":"2016-10-05T14:23:32.080Z", + "new_balance":"7441.09", + "value":"-1.24" + } + }, + { + "id":"e5d6eabe-6bc7-4770-8e0b-a80520466381", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T18:56:29.286Z", + "completed":"2016-10-05T18:56:29.286Z", + "new_balance":"7436.91", + "value":"-4.18" + } + }, + { + "id":"59ea1050-39ad-4064-bc9d-3fde088bc79e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T22:21:35.785Z", + "completed":"2016-10-05T22:21:35.785Z", + "new_balance":"7433.47", + "value":"-3.44" + } + }, + { + "id":"608caeeb-3bc8-43fe-b473-d0005c2edbfb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T06:03:21.966Z", + "completed":"2016-10-09T06:03:21.966Z", + "new_balance":"7425.38", + "value":"-8.09" + } + }, + { + "id":"4a05c4f7-0183-4387-a91b-1392c339c138", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T12:35:29.580Z", + "completed":"2016-10-11T12:35:29.580Z", + "new_balance":"7419.26", + "value":"-6.12" + } + }, + { + "id":"70c76778-3ae8-4eb7-a5ab-82dd9b47cb0d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T13:50:44.062Z", + "completed":"2016-10-12T13:50:44.062Z", + "new_balance":"7416.58", + "value":"-2.68" + } + }, + { + "id":"1c6af9c5-e017-4a1d-bfbe-8cf8f9a3b874", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T23:09:48.313Z", + "completed":"2016-10-12T23:09:48.313Z", + "new_balance":"7409.28", + "value":"-7.30" + } + }, + { + "id":"1f60304c-4f2d-4b66-a75f-7dfab92cd73b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T18:56:02.183Z", + "completed":"2016-10-20T18:56:02.183Z", + "new_balance":"7405.61", + "value":"-3.67" + } + }, + { + "id":"1c01ce18-3ded-48c1-b1a6-903a6d086586", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T23:43:10.281Z", + "completed":"2016-10-29T23:43:10.281Z", + "new_balance":"7640.57", + "value":"234.96" + } + }, + { + "id":"b8043ab2-91be-49f4-b9f3-9f0105a8cd8f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T04:43:02.876Z", + "completed":"2016-10-30T04:43:02.876Z", + "new_balance":"7617.33", + "value":"-23.24" + } + }, + { + "id":"59aa3b77-5c34-4e68-8f62-976c545d55b4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T11:43:15.873Z", + "completed":"2016-11-02T11:43:15.873Z", + "new_balance":"7613.15", + "value":"-4.18" + } + }, + { + "id":"f2bea0a6-10ba-4cdb-b419-253b2b0e3074", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T12:32:06.811Z", + "completed":"2016-11-02T12:32:06.811Z", + "new_balance":"7605.45", + "value":"-7.70" + } + }, + { + "id":"49e180d1-14f8-473f-9f9c-87901857f72c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T14:56:47.183Z", + "completed":"2016-11-02T14:56:47.183Z", + "new_balance":"7602.01", + "value":"-3.44" + } + }, + { + "id":"e1333329-630f-401c-91e4-dc906a6266db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T15:29:43.451Z", + "completed":"2016-11-02T15:29:43.451Z", + "new_balance":"7598.57", + "value":"-3.44" + } + }, + { + "id":"13dda293-97a5-4ccf-8e43-197803a0ce41", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T14:23:32.204Z", + "completed":"2016-11-04T14:23:32.204Z", + "new_balance":"7597.87", + "value":"-0.70" + } + }, + { + "id":"84b3a95a-a0c5-417c-9837-2e4015ac7eee", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T18:00:12.703Z", + "completed":"2016-11-04T18:00:12.703Z", + "new_balance":"7590.57", + "value":"-7.30" + } + }, + { + "id":"c415e436-8e56-4060-9279-fe4d8f019cea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:13:27.230Z", + "completed":"2016-11-06T13:13:27.230Z", + "new_balance":"7583.13", + "value":"-7.44" + } + }, + { + "id":"92cacb31-7bba-4ed4-a41d-6ebdc363c236", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T01:18:35.110Z", + "completed":"2016-11-07T01:18:35.110Z", + "new_balance":"7575.57", + "value":"-7.56" + } + }, + { + "id":"86d4b377-ed8c-4410-85e8-a8c578df9f72", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T10:25:16.312Z", + "completed":"2016-11-07T10:25:16.312Z", + "new_balance":"7572.86", + "value":"-2.71" + } + }, + { + "id":"938b3adf-766f-44c0-9429-065ee107f35a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T09:37:15.064Z", + "completed":"2016-11-09T09:37:15.064Z", + "new_balance":"7571.62", + "value":"-1.24" + } + }, + { + "id":"4c5ea67b-7cff-435c-be4c-3ba86c5d36e0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T15:48:50.558Z", + "completed":"2016-11-09T15:48:50.558Z", + "new_balance":"7567.03", + "value":"-4.59" + } + }, + { + "id":"21381868-accf-4655-8cb5-6fe1305ae30b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T16:37:31.048Z", + "completed":"2016-11-13T16:37:31.048Z", + "new_balance":"7564.90", + "value":"-2.13" + } + }, + { + "id":"6d4155c2-039c-4327-9882-8f48f8e5720d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T17:02:10.701Z", + "completed":"2016-11-13T17:02:10.701Z", + "new_balance":"7564.20", + "value":"-0.70" + } + }, + { + "id":"a067ed82-0a6f-4d6e-a0d7-a684cb780654", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T22:12:23.192Z", + "completed":"2016-11-13T22:12:23.192Z", + "new_balance":"7561.49", + "value":"-2.71" + } + }, + { + "id":"4960b122-9ae0-4ff3-9a56-e8cf4b7e7035", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T06:31:18.537Z", + "completed":"2016-11-14T06:31:18.537Z", + "new_balance":"7557.03", + "value":"-4.46" + } + }, + { + "id":"485a537b-0eb1-4f65-b969-e75f70380a17", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:45:00.388Z", + "completed":"2016-11-14T17:45:00.388Z", + "new_balance":"7549.73", + "value":"-7.30" + } + }, + { + "id":"fd8f4915-e059-43fb-88bd-fc2b4723e7d2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T06:41:09.365Z", + "completed":"2016-11-15T06:41:09.365Z", + "new_balance":"7546.06", + "value":"-3.67" + } + }, + { + "id":"6ab9f2a2-c82f-4f6a-971e-863ffe641e2a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T10:18:57.941Z", + "completed":"2016-11-30T10:18:57.941Z", + "new_balance":"7522.82", + "value":"-23.24" + } + }, + { + "id":"09b12693-e758-4941-962d-7b459e1cafdb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T19:38:56.310Z", + "completed":"2016-11-30T19:38:56.310Z", + "new_balance":"7757.78", + "value":"234.96" + } + }, + { + "id":"726b50f0-6186-4bef-a02e-ce1d779634ca", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T02:17:30.868Z", + "completed":"2016-12-01T02:17:30.868Z", + "new_balance":"7754.34", + "value":"-3.44" + } + }, + { + "id":"e9da6409-232e-49d1-b432-03ebd4481c5c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T18:02:36.314Z", + "completed":"2016-12-01T18:02:36.314Z", + "new_balance":"7750.16", + "value":"-4.18" + } + }, + { + "id":"9baeb777-ef7b-470b-a6fb-49b5f9f2d85e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T21:08:03.297Z", + "completed":"2016-12-01T21:08:03.297Z", + "new_balance":"7746.72", + "value":"-3.44" + } + }, + { + "id":"9b390b23-abd3-4f70-aa87-0eb44810b8fc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T23:08:08.891Z", + "completed":"2016-12-01T23:08:08.891Z", + "new_balance":"7739.02", + "value":"-7.70" + } + }, + { + "id":"f36f6a03-cbcc-4d4e-9045-a229825ca79c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T01:17:01.631Z", + "completed":"2016-12-04T01:17:01.631Z", + "new_balance":"7731.76", + "value":"-7.26" + } + }, + { + "id":"64563bc7-c261-4b54-8d99-e4e0d106d5ac", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T09:56:17.746Z", + "completed":"2016-12-04T09:56:17.746Z", + "new_balance":"7725.94", + "value":"-5.82" + } + }, + { + "id":"5779edd0-33df-4507-b7e4-93eb7f7730a9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:30:40.361Z", + "completed":"2016-12-11T06:30:40.361Z", + "new_balance":"7721.53", + "value":"-4.41" + } + }, + { + "id":"5b2b9e93-e0e1-4858-b257-2e8b233f2422", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T13:11:22.682Z", + "completed":"2016-12-11T13:11:22.682Z", + "new_balance":"7713.79", + "value":"-7.74" + } + }, + { + "id":"55453275-a5ec-4f3d-a6f1-5acc4ea02920", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T15:22:41.246Z", + "completed":"2016-12-11T15:22:41.246Z", + "new_balance":"7706.05", + "value":"-7.74" + } + }, + { + "id":"18601b62-3e74-438d-b46d-713daab691cf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T08:08:32.464Z", + "completed":"2016-12-12T08:08:32.464Z", + "new_balance":"7705.44", + "value":"-0.61" + } + }, + { + "id":"be19a453-9657-4cff-b9be-acd1cce3e3d7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T19:59:20.101Z", + "completed":"2016-12-12T19:59:20.101Z", + "new_balance":"7701.37", + "value":"-4.07" + } + }, + { + "id":"f9f84b86-5e8b-4af3-8697-e1a512474027", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T13:46:50.997Z", + "completed":"2016-12-16T13:46:50.997Z", + "new_balance":"7691.36", + "value":"-10.01" + } + }, + { + "id":"52bccbbc-6aa0-4a1d-8506-5f5b25419914", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T04:00:45.667Z", + "completed":"2016-12-29T04:00:45.667Z", + "new_balance":"7687.69", + "value":"-3.67" + } + }, + { + "id":"6996aaea-3ff9-4e5e-965f-e5fff5f462e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T07:51:45.470Z", + "completed":"2016-12-30T07:51:45.470Z", + "new_balance":"7664.45", + "value":"-23.24" + } + }, + { + "id":"76f350b4-242a-421d-8bd6-daad03e5948b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T14:23:39.086Z", + "completed":"2016-12-30T14:23:39.086Z", + "new_balance":"7899.41", + "value":"234.96" + } + }, + { + "id":"ed56b825-a20f-4eea-a8fc-6c77a3b50729", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T08:59:58.291Z", + "completed":"2017-01-01T08:59:58.291Z", + "new_balance":"7895.23", + "value":"-4.18" + } + }, + { + "id":"7860a468-2f74-4df3-8ebd-774158781ddb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T13:28:17.832Z", + "completed":"2017-01-01T13:28:17.832Z", + "new_balance":"7887.53", + "value":"-7.70" + } + }, + { + "id":"5c63ab2a-03a6-4a24-8542-9acc8c81005c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T17:24:08.279Z", + "completed":"2017-01-01T17:24:08.279Z", + "new_balance":"7884.09", + "value":"-3.44" + } + }, + { + "id":"ae713dfe-d937-43d2-be2a-4949717078ee", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T18:37:52.774Z", + "completed":"2017-01-01T18:37:52.774Z", + "new_balance":"7880.65", + "value":"-3.44" + } + }, + { + "id":"841f99a3-0dd5-4177-b2eb-138c1e0e2b8a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T05:08:03.509Z", + "completed":"2017-01-05T05:08:03.509Z", + "new_balance":"7870.61", + "value":"-10.04" + } + }, + { + "id":"f1b7e4c9-5d46-4dea-befa-07bec9417b27", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T20:24:14.966Z", + "completed":"2017-01-05T20:24:14.966Z", + "new_balance":"7863.31", + "value":"-7.30" + } + }, + { + "id":"77485417-cd6b-4b4d-a9e7-fe222b8bbcef", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T01:46:58.783Z", + "completed":"2017-01-08T01:46:58.783Z", + "new_balance":"7861.91", + "value":"-1.40" + } + }, + { + "id":"6b684997-f77e-4278-8013-dd1ddd20a75c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T06:05:48.927Z", + "completed":"2017-01-10T06:05:48.927Z", + "new_balance":"7857.25", + "value":"-4.66" + } + }, + { + "id":"31844ef8-e797-4706-8da6-856e9873c884", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T00:53:11.314Z", + "completed":"2017-01-11T00:53:11.314Z", + "new_balance":"7851.84", + "value":"-5.41" + } + }, + { + "id":"df5f3fb3-241d-4599-8686-aeb65e02c65e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T10:12:50.889Z", + "completed":"2017-01-12T10:12:50.889Z", + "new_balance":"7848.40", + "value":"-3.44" + } + }, + { + "id":"73a58650-3d98-415d-acc0-cd5e6e60d454", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T10:19:07.227Z", + "completed":"2017-01-13T10:19:07.227Z", + "new_balance":"7847.89", + "value":"-0.51" + } + }, + { + "id":"6456cacc-00cb-4795-8ad7-6be15984ff99", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T18:46:07.626Z", + "completed":"2017-01-13T18:46:07.626Z", + "new_balance":"7847.43", + "value":"-0.46" + } + }, + { + "id":"4a4fd7a5-8bf1-46c0-aac8-5668a22d23b9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T00:16:14.966Z", + "completed":"2017-01-16T00:16:14.966Z", + "new_balance":"7837.91", + "value":"-9.52" + } + }, + { + "id":"df0967fa-ae5a-418a-8b05-4ebcfdb97eaa", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T05:45:24.149Z", + "completed":"2017-01-19T05:45:24.149Z", + "new_balance":"7831.08", + "value":"-6.83" + } + }, + { + "id":"ca1b51f0-85b5-43f2-8f9c-4fd3f80ebe25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T11:58:23.109Z", + "completed":"2017-01-19T11:58:23.109Z", + "new_balance":"7823.78", + "value":"-7.30" + } + }, + { + "id":"7a5faf50-1db7-4af7-9f94-430bbdb68927", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T08:12:05.094Z", + "completed":"2017-01-24T08:12:05.094Z", + "new_balance":"7821.10", + "value":"-2.68" + } + }, + { + "id":"7844cd4d-8dfb-4a12-9c13-d87ade4018a3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T13:45:27.752Z", + "completed":"2017-01-27T13:45:27.752Z", + "new_balance":"7817.43", + "value":"-3.67" + } + }, + { + "id":"d945f8d9-a20f-4f7e-af11-088be99f9dd4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T21:09:28.745Z", + "completed":"2017-01-27T21:09:28.745Z", + "new_balance":"8052.39", + "value":"234.96" + } + }, + { + "id":"2495e90c-c780-4905-98e8-338ec859f70c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T11:21:55.507Z", + "completed":"2017-01-31T11:21:55.507Z", + "new_balance":"8029.15", + "value":"-23.24" + } + }, + { + "id":"2d913c39-2781-452a-8aa5-a156f0a01ae7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T03:34:17.726Z", + "completed":"2017-02-01T03:34:17.726Z", + "new_balance":"8024.97", + "value":"-4.18" + } + }, + { + "id":"3ca9e934-bfda-4ea1-862b-8cd17c691e96", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T05:46:08.859Z", + "completed":"2017-02-01T05:46:08.859Z", + "new_balance":"8017.27", + "value":"-7.70" + } + }, + { + "id":"4cec40fe-7b16-4320-a2f7-b1c0ab545cc2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T14:01:53.533Z", + "completed":"2017-02-01T14:01:53.533Z", + "new_balance":"8013.83", + "value":"-3.44" + } + }, + { + "id":"2883e86c-1aef-4055-8879-61c40da0aaa4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T16:00:02.306Z", + "completed":"2017-02-01T16:00:02.306Z", + "new_balance":"8010.39", + "value":"-3.44" + } + }, + { + "id":"4918b151-a694-4c1d-ae89-afb0eb0fb1c0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T18:38:43.240Z", + "completed":"2017-02-03T18:38:43.240Z", + "new_balance":"8009.69", + "value":"-0.70" + } + }, + { + "id":"edf8b000-a45e-4280-a42b-c1d7145207d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T03:35:25.514Z", + "completed":"2017-02-04T03:35:25.514Z", + "new_balance":"8002.39", + "value":"-7.30" + } + }, + { + "id":"1fdbff30-720e-4436-9f6d-5d6955ece48f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T06:48:42.761Z", + "completed":"2017-02-06T06:48:42.761Z", + "new_balance":"7992.93", + "value":"-9.46" + } + }, + { + "id":"5883cdfd-652f-4715-aece-fb5dc3d3470c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T11:19:46.314Z", + "completed":"2017-02-06T11:19:46.314Z", + "new_balance":"7982.83", + "value":"-10.10" + } + }, + { + "id":"78980721-7482-4405-a219-b952cc7e86fb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T14:53:22.977Z", + "completed":"2017-02-07T14:53:22.977Z", + "new_balance":"7979.03", + "value":"-3.80" + } + }, + { + "id":"9808411e-8f69-4ac4-9e21-54d216c9db97", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T00:00:32.869Z", + "completed":"2017-02-08T00:00:32.869Z", + "new_balance":"7977.91", + "value":"-1.12" + } + }, + { + "id":"f2df96bc-8980-4785-95ff-4746b3e6e8ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T05:27:47.801Z", + "completed":"2017-02-09T05:27:47.801Z", + "new_balance":"7973.32", + "value":"-4.59" + } + }, + { + "id":"547885d8-6676-4df0-a5e1-7af58b000bb6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:04:29.764Z", + "completed":"2017-02-11T05:04:29.764Z", + "new_balance":"7970.92", + "value":"-2.40" + } + }, + { + "id":"d48b7191-2294-4abd-aed1-af87931cd4fc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T21:04:23.905Z", + "completed":"2017-02-13T21:04:23.905Z", + "new_balance":"7968.04", + "value":"-2.88" + } + }, + { + "id":"054e0d3d-2796-42b3-8a1f-7a13576c9389", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T07:27:42.396Z", + "completed":"2017-02-17T07:27:42.396Z", + "new_balance":"7967.52", + "value":"-0.52" + } + }, + { + "id":"ba59e979-7c48-43a9-b251-0e682a5ce80c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T23:10:09.296Z", + "completed":"2017-02-19T23:10:09.296Z", + "new_balance":"7962.34", + "value":"-5.18" + } + }, + { + "id":"ab50714d-e283-40f1-89ca-b12677f5b72c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T14:17:21.377Z", + "completed":"2017-02-21T14:17:21.377Z", + "new_balance":"7955.04", + "value":"-7.30" + } + }, + { + "id":"9b1cc31c-6f6c-4f3f-9c5a-cd040f958848", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T10:45:42.225Z", + "completed":"2017-02-24T10:45:42.225Z", + "new_balance":"7951.37", + "value":"-3.67" + } + }, + { + "id":"3512fd15-b75f-4256-b91e-36ac9ab95f02", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T17:18:37.488Z", + "completed":"2017-02-26T17:18:37.488Z", + "new_balance":"8186.33", + "value":"234.96" + } + }, + { + "id":"5b970ca8-5e09-4b49-bad6-428c010a5f02", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T04:26:32.437Z", + "completed":"2017-03-01T04:26:32.437Z", + "new_balance":"8182.89", + "value":"-3.44" + } + }, + { + "id":"cc1a94f1-1b0c-4b0a-9cf1-19182ceb1c89", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T08:23:12.788Z", + "completed":"2017-03-01T08:23:12.788Z", + "new_balance":"8179.45", + "value":"-3.44" + } + }, + { + "id":"a90fd3dc-d046-419d-891b-3d298d35a01a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T17:00:35.617Z", + "completed":"2017-03-01T17:00:35.617Z", + "new_balance":"8171.75", + "value":"-7.70" + } + }, + { + "id":"00447888-3abb-4c29-be88-e03561039a22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T19:51:40.192Z", + "completed":"2017-03-01T19:51:40.192Z", + "new_balance":"8167.57", + "value":"-4.18" + } + }, + { + "id":"8674bf10-0360-42a3-a475-ddca4a2cc26c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T03:15:13.449Z", + "completed":"2017-03-09T03:15:13.449Z", + "new_balance":"8161.75", + "value":"-5.82" + } + }, + { + "id":"a8b7a70f-78d1-4f9a-956c-d8c35f6eff68", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T19:56:10.704Z", + "completed":"2017-03-09T19:56:10.704Z", + "new_balance":"8154.49", + "value":"-7.26" + } + }, + { + "id":"2a8d222d-894b-42d1-a738-0846e976d55c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T15:06:20.590Z", + "completed":"2017-03-17T15:06:20.590Z", + "new_balance":"8146.75", + "value":"-7.74" + } + }, + { + "id":"8f108fa3-b255-4377-bc4e-6fbadd01e613", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T02:07:37.804Z", + "completed":"2017-03-18T02:07:37.804Z", + "new_balance":"8146.14", + "value":"-0.61" + } + }, + { + "id":"9ed6ce05-40a1-4b17-8a10-295d5d9b7495", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T03:41:34.767Z", + "completed":"2017-03-18T03:41:34.767Z", + "new_balance":"8138.40", + "value":"-7.74" + } + }, + { + "id":"1cddac20-43a7-4bc7-a473-4eada01c78d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T04:52:33.238Z", + "completed":"2017-03-18T04:52:33.238Z", + "new_balance":"8133.99", + "value":"-4.41" + } + }, + { + "id":"23d25888-e5e1-4a11-a504-135a5c294c0b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T06:23:20.201Z", + "completed":"2017-03-18T06:23:20.201Z", + "new_balance":"8129.92", + "value":"-4.07" + } + }, + { + "id":"c108bced-9f05-488f-9059-c8598ec4e16f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T07:45:32.595Z", + "completed":"2017-03-22T07:45:32.595Z", + "new_balance":"8119.91", + "value":"-10.01" + } + }, + { + "id":"d96ed90c-c961-4d77-8a3c-2cafca395fe8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T15:21:21.360Z", + "completed":"2017-03-29T15:21:21.360Z", + "new_balance":"8354.87", + "value":"234.96" + } + }, + { + "id":"433b95fa-ae35-478c-b675-a80355de3c39", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T19:53:51.831Z", + "completed":"2017-03-29T19:53:51.831Z", + "new_balance":"8351.20", + "value":"-3.67" + } + }, + { + "id":"8a16f96a-31bc-4f24-9041-b4752c32ea9d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T21:51:52.564Z", + "completed":"2017-03-31T21:51:52.564Z", + "new_balance":"8327.96", + "value":"-23.24" + } + }, + { + "id":"676240ab-fc9f-43f5-a33a-7d9b9239867a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T01:48:40.167Z", + "completed":"2017-04-01T01:48:40.167Z", + "new_balance":"8320.26", + "value":"-7.70" + } + }, + { + "id":"17a8e46b-1b1a-4b8a-9211-ac3330d78ad9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T05:44:54.059Z", + "completed":"2017-04-01T05:44:54.059Z", + "new_balance":"8316.82", + "value":"-3.44" + } + }, + { + "id":"9524eed4-b2df-40b7-8f9d-afcb64a456a6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T07:38:17.329Z", + "completed":"2017-04-01T07:38:17.329Z", + "new_balance":"8312.64", + "value":"-4.18" + } + }, + { + "id":"bcdcb091-4c3e-4c68-b378-a05978c266f2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T19:32:30.901Z", + "completed":"2017-04-01T19:32:30.901Z", + "new_balance":"8309.20", + "value":"-3.44" + } + }, + { + "id":"48a06ee6-2dab-44e8-99c4-3c5a2ac2618c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T06:37:16.494Z", + "completed":"2017-04-02T06:37:16.494Z", + "new_balance":"8301.64", + "value":"-7.56" + } + }, + { + "id":"11b2e7c3-e8d6-4f69-a196-4881e61cea22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T00:22:33.979Z", + "completed":"2017-04-05T00:22:33.979Z", + "new_balance":"8296.19", + "value":"-5.45" + } + }, + { + "id":"a8d810b1-1e9c-4032-98b4-db69928a660d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T02:24:10.339Z", + "completed":"2017-04-05T02:24:10.339Z", + "new_balance":"8295.49", + "value":"-0.70" + } + }, + { + "id":"de3ffc37-974d-476a-a68d-d17b1d0e9d56", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T10:13:47.191Z", + "completed":"2017-04-05T10:13:47.191Z", + "new_balance":"8294.90", + "value":"-0.59" + } + }, + { + "id":"3ff8e06f-968a-4046-aa38-68291b23bea2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T10:29:28.792Z", + "completed":"2017-04-05T10:29:28.792Z", + "new_balance":"8291.46", + "value":"-3.44" + } + }, + { + "id":"7b3b724e-6c48-4d56-9206-7a9eb3e45c5b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:43:13.070Z", + "completed":"2017-04-05T10:43:13.070Z", + "new_balance":"8290.22", + "value":"-1.24" + } + }, + { + "id":"bcfb1714-0228-4e48-89f0-cb9d4bb26082", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T13:30:29.263Z", + "completed":"2017-04-05T13:30:29.263Z", + "new_balance":"8282.92", + "value":"-7.30" + } + }, + { + "id":"0aaf138b-9fda-43f9-960b-711a173cf1c8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T16:01:27.712Z", + "completed":"2017-04-05T16:01:27.712Z", + "new_balance":"8278.74", + "value":"-4.18" + } + }, + { + "id":"6d04d280-3806-4087-a157-0dc3b0581369", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T10:43:05.159Z", + "completed":"2017-04-08T10:43:05.159Z", + "new_balance":"8270.65", + "value":"-8.09" + } + }, + { + "id":"53228680-e85d-4858-b7b0-6434c3e8c323", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T04:38:06.997Z", + "completed":"2017-04-10T04:38:06.997Z", + "new_balance":"8264.53", + "value":"-6.12" + } + }, + { + "id":"07ca145b-745f-4577-b9df-26e014ba2f61", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T10:50:15.860Z", + "completed":"2017-04-11T10:50:15.860Z", + "new_balance":"8261.85", + "value":"-2.68" + } + }, + { + "id":"9e47593f-bf73-4681-8004-3851c50134ae", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T10:52:14.676Z", + "completed":"2017-04-11T10:52:14.676Z", + "new_balance":"8254.55", + "value":"-7.30" + } + }, + { + "id":"0234d346-ee63-4051-b199-dd784ae03bad", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T02:55:05.242Z", + "completed":"2017-04-13T02:55:05.242Z", + "new_balance":"8250.88", + "value":"-3.67" + } + }, + { + "id":"92c2b344-5b52-4bc1-8257-b1fcaa13cb61", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T07:12:32.089Z", + "completed":"2017-04-18T07:12:32.089Z", + "new_balance":"8485.84", + "value":"234.96" + } + }, + { + "id":"43d76edf-854d-4e2b-aa31-3d6c5474059d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T11:52:11.113Z", + "completed":"2017-04-25T11:52:11.113Z", + "new_balance":"8462.60", + "value":"-23.24" + } + }, + { + "id":"fbee86c4-db4f-455f-864d-f05b46e983d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T12:53:31.190Z", + "completed":"2017-05-02T12:53:31.190Z", + "new_balance":"8459.16", + "value":"-3.44" + } + }, + { + "id":"af297639-61f1-4972-8cfc-b3b775eb4399", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T17:02:21.912Z", + "completed":"2017-05-02T17:02:21.912Z", + "new_balance":"8451.46", + "value":"-7.70" + } + }, + { + "id":"c033be07-a898-4656-815b-604b0d6e9a13", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T20:42:16.044Z", + "completed":"2017-05-02T20:42:16.044Z", + "new_balance":"8447.28", + "value":"-4.18" + } + }, + { + "id":"18d9fcf5-4291-4b3f-9134-9b65c5bce4f4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T23:50:31.064Z", + "completed":"2017-05-02T23:50:31.064Z", + "new_balance":"8443.84", + "value":"-3.44" + } + }, + { + "id":"53b4db3b-c49a-4aa1-a6c9-cc6e4e6997a1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:00:52.090Z", + "completed":"2017-05-04T09:00:52.090Z", + "new_balance":"8443.14", + "value":"-0.70" + } + }, + { + "id":"b5cdd1be-be6f-4d1d-9617-cc3443b07ac7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:46:27.864Z", + "completed":"2017-05-04T09:46:27.864Z", + "new_balance":"8435.84", + "value":"-7.30" + } + }, + { + "id":"e1af1191-b965-43dc-978b-f0e64fefac97", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T02:07:28.925Z", + "completed":"2017-05-06T02:07:28.925Z", + "new_balance":"8428.40", + "value":"-7.44" + } + }, + { + "id":"07519c84-6edc-4666-88fa-3b679fd62270", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T16:04:30.751Z", + "completed":"2017-05-07T16:04:30.751Z", + "new_balance":"8420.84", + "value":"-7.56" + } + }, + { + "id":"99fc3079-0bac-45e4-90e3-6165d281379b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T18:19:45.439Z", + "completed":"2017-05-07T18:19:45.439Z", + "new_balance":"8418.13", + "value":"-2.71" + } + }, + { + "id":"f83b3c25-2b39-4a1e-b854-5437945b5b7e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T04:12:20.504Z", + "completed":"2017-05-09T04:12:20.504Z", + "new_balance":"8413.54", + "value":"-4.59" + } + }, + { + "id":"ea815dbd-d18f-4d79-97b0-9eb2458c38e5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T10:55:50.262Z", + "completed":"2017-05-09T10:55:50.262Z", + "new_balance":"8412.30", + "value":"-1.24" + } + }, + { + "id":"47702aa3-76f4-4ea1-8116-db62aa18372f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T14:29:05.389Z", + "completed":"2017-05-13T14:29:05.389Z", + "new_balance":"8409.59", + "value":"-2.71" + } + }, + { + "id":"baadeddf-b357-4cc8-ab45-8580037ae565", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T16:43:24.805Z", + "completed":"2017-05-13T16:43:24.805Z", + "new_balance":"8408.89", + "value":"-0.70" + } + }, + { + "id":"a7841df4-3337-46d0-98b3-249b2840d3db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T17:36:46.649Z", + "completed":"2017-05-13T17:36:46.649Z", + "new_balance":"8406.76", + "value":"-2.13" + } + }, + { + "id":"e5a96953-268c-4957-9660-d5426f4a10e3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T04:27:24.362Z", + "completed":"2017-05-14T04:27:24.362Z", + "new_balance":"8402.30", + "value":"-4.46" + } + }, + { + "id":"ca21d9a5-c78e-4fc8-9402-0bbfac83cf6f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T12:17:03.089Z", + "completed":"2017-05-14T12:17:03.089Z", + "new_balance":"8395.00", + "value":"-7.30" + } + }, + { + "id":"3eaefc08-72d6-4a6f-8cb2-10a0cb756001", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T12:56:36.887Z", + "completed":"2017-05-15T12:56:36.887Z", + "new_balance":"8391.33", + "value":"-3.67" + } + }, + { + "id":"ec83a52f-1708-4f00-b713-22e2dd7eb746", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T11:01:08.870Z", + "completed":"2017-05-30T11:01:08.870Z", + "new_balance":"8368.09", + "value":"-23.24" + } + }, + { + "id":"a9c01568-9cd6-4821-85bb-09dba6187016", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T16:15:59.412Z", + "completed":"2017-05-30T16:15:59.412Z", + "new_balance":"8603.05", + "value":"234.96" + } + }, + { + "id":"a1afa481-72b4-45bd-aa57-a3c647e8d6a9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T08:17:03.910Z", + "completed":"2017-06-01T08:17:03.910Z", + "new_balance":"8599.61", + "value":"-3.44" + } + }, + { + "id":"adf9056c-a5b1-4c5d-badd-2a6f4ff8de63", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T10:31:06.841Z", + "completed":"2017-06-01T10:31:06.841Z", + "new_balance":"8591.91", + "value":"-7.70" + } + }, + { + "id":"76ce05b6-365f-4309-bdf0-8c83b4e55cd4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T11:15:19.135Z", + "completed":"2017-06-01T11:15:19.135Z", + "new_balance":"8587.73", + "value":"-4.18" + } + }, + { + "id":"87f7dc7e-ce73-4e31-8064-4e4555ab31b8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T18:33:35.345Z", + "completed":"2017-06-01T18:33:35.345Z", + "new_balance":"8584.29", + "value":"-3.44" + } + }, + { + "id":"b3fc71d4-3f9c-469c-b462-a485d15c32d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T07:36:14.745Z", + "completed":"2017-06-04T07:36:14.745Z", + "new_balance":"8578.47", + "value":"-5.82" + } + }, + { + "id":"512b9eac-cf45-4103-8eba-9db8944d1c11", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T13:14:05.092Z", + "completed":"2017-06-04T13:14:05.092Z", + "new_balance":"8571.21", + "value":"-7.26" + } + }, + { + "id":"9aa8d897-4626-46d3-9e36-1dcd10b56cea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T00:20:50.004Z", + "completed":"2017-06-11T00:20:50.004Z", + "new_balance":"8563.47", + "value":"-7.74" + } + }, + { + "id":"e3f54a1f-bc89-4c8a-b26b-ce60ec6f86f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T16:54:19.031Z", + "completed":"2017-06-11T16:54:19.031Z", + "new_balance":"8555.73", + "value":"-7.74" + } + }, + { + "id":"21ade438-b913-464e-a69b-81d27291ad77", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T23:06:09.557Z", + "completed":"2017-06-11T23:06:09.557Z", + "new_balance":"8551.32", + "value":"-4.41" + } + }, + { + "id":"8e62bc2b-4ae3-49c4-9972-fd86d4561b04", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T11:24:15.639Z", + "completed":"2017-06-12T11:24:15.639Z", + "new_balance":"8547.25", + "value":"-4.07" + } + }, + { + "id":"f4ab3d11-74a4-4f08-a623-424e797145bb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T12:02:47.537Z", + "completed":"2017-06-12T12:02:47.537Z", + "new_balance":"8546.64", + "value":"-0.61" + } + }, + { + "id":"8b53cb88-11b7-4e32-9d99-08c55ab2bb64", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T06:09:58.748Z", + "completed":"2017-06-16T06:09:58.748Z", + "new_balance":"8536.63", + "value":"-10.01" + } + }, + { + "id":"a683a575-d301-4d5b-94a6-5aa962714d90", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T01:05:23.556Z", + "completed":"2017-06-29T01:05:23.556Z", + "new_balance":"8532.96", + "value":"-3.67" + } + }, + { + "id":"cd070298-fd74-4b10-946f-4cbdb3af6ecf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T07:34:59.091Z", + "completed":"2017-06-30T07:34:59.091Z", + "new_balance":"8509.72", + "value":"-23.24" + } + }, + { + "id":"e2286abb-cb38-4d77-9d8b-6885524cd182", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T21:37:57.448Z", + "completed":"2017-06-30T21:37:57.448Z", + "new_balance":"8744.68", + "value":"234.96" + } + }, + { + "id":"793374ae-8d8b-4628-b6cb-c5397620045a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T06:44:25.463Z", + "completed":"2017-07-01T06:44:25.463Z", + "new_balance":"8740.50", + "value":"-4.18" + } + }, + { + "id":"e4777d45-ce96-48f8-9219-5c0dfbe721c7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T20:33:33.344Z", + "completed":"2017-07-01T20:33:33.344Z", + "new_balance":"8737.06", + "value":"-3.44" + } + }, + { + "id":"441aea69-51f8-4b39-a7de-a94dfb344c43", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T21:31:41.649Z", + "completed":"2017-07-01T21:31:41.649Z", + "new_balance":"8729.36", + "value":"-7.70" + } + }, + { + "id":"9933a19d-cde8-487f-97e2-5c5f782f3a07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T22:10:30.547Z", + "completed":"2017-07-01T22:10:30.547Z", + "new_balance":"8725.92", + "value":"-3.44" + } + }, + { + "id":"1a3e29a3-402e-47a6-9124-91d4753c76d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T11:08:05.923Z", + "completed":"2017-07-05T11:08:05.923Z", + "new_balance":"8715.88", + "value":"-10.04" + } + }, + { + "id":"28729dc6-8ef8-4071-81b3-84b902d6379e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T14:07:29.961Z", + "completed":"2017-07-05T14:07:29.961Z", + "new_balance":"8708.58", + "value":"-7.30" + } + }, + { + "id":"e1783fe1-4b80-4fde-949b-5ce2aceab5a2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T05:22:35.725Z", + "completed":"2017-07-08T05:22:35.725Z", + "new_balance":"8707.18", + "value":"-1.40" + } + }, + { + "id":"4347cefe-cc9a-4fe8-bee3-48c9c33d0306", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T15:29:11.370Z", + "completed":"2017-07-10T15:29:11.370Z", + "new_balance":"8702.52", + "value":"-4.66" + } + }, + { + "id":"7fc964bb-d7d6-48b9-b4af-b8e0b833fe34", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T04:08:51.322Z", + "completed":"2017-07-12T04:08:51.322Z", + "new_balance":"8697.11", + "value":"-5.41" + } + }, + { + "id":"af8c2844-a4f2-470d-b82b-554c0bf1ffff", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T14:55:09.018Z", + "completed":"2017-07-12T14:55:09.018Z", + "new_balance":"8693.67", + "value":"-3.44" + } + }, + { + "id":"793c5e35-81e3-4718-913b-9d72c83867c6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T02:48:19.465Z", + "completed":"2017-07-13T02:48:19.465Z", + "new_balance":"8693.21", + "value":"-0.46" + } + }, + { + "id":"beee65cb-cee5-4b62-92f2-fb0501f052be", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T09:08:07.059Z", + "completed":"2017-07-13T09:08:07.059Z", + "new_balance":"8692.70", + "value":"-0.51" + } + }, + { + "id":"ff2040c8-3f18-4354-960e-41359a1ac2af", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T15:37:54.684Z", + "completed":"2017-07-18T15:37:54.684Z", + "new_balance":"8683.18", + "value":"-9.52" + } + }, + { + "id":"ba78773b-84ec-4640-a6cc-d6ab0871666e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T02:17:16.317Z", + "completed":"2017-07-20T02:17:16.317Z", + "new_balance":"8676.35", + "value":"-6.83" + } + }, + { + "id":"959dcd85-abd8-4d8e-9dbe-0b51edfab2df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T19:45:44.124Z", + "completed":"2017-07-20T19:45:44.124Z", + "new_balance":"8669.05", + "value":"-7.30" + } + }, + { + "id":"ffa6e862-3420-4401-9166-9a74cd101fbf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T01:15:28.793Z", + "completed":"2017-07-24T01:15:28.793Z", + "new_balance":"8666.37", + "value":"-2.68" + } + }, + { + "id":"c163b0e3-183f-4ecf-a23f-5be938688ee1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T12:55:19.884Z", + "completed":"2017-07-29T12:55:19.884Z", + "new_balance":"8901.33", + "value":"234.96" + } + }, + { + "id":"9952a119-cc60-44ca-960d-6fdd9984f0b6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T23:33:38.873Z", + "completed":"2017-07-29T23:33:38.873Z", + "new_balance":"8897.66", + "value":"-3.67" + } + }, + { + "id":"29a3f090-8a57-4c19-bc99-64bc334941a8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T12:41:32.466Z", + "completed":"2017-07-30T12:41:32.466Z", + "new_balance":"8874.42", + "value":"-23.24" + } + }, + { + "id":"5d33c152-e6ce-40ca-abdb-0ff8eb171085", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:45:51.083Z", + "completed":"2017-08-01T00:45:51.083Z", + "new_balance":"8870.98", + "value":"-3.44" + } + }, + { + "id":"9f33721b-7d02-4378-acfe-c2580721df46", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T01:50:59.544Z", + "completed":"2017-08-01T01:50:59.544Z", + "new_balance":"8867.54", + "value":"-3.44" + } + }, + { + "id":"658f7f59-e0e1-487f-b1b7-1cb0f242e7db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T19:21:53.608Z", + "completed":"2017-08-01T19:21:53.608Z", + "new_balance":"8863.36", + "value":"-4.18" + } + }, + { + "id":"4277ce9e-e95d-4899-8221-14265edc61bc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T19:31:25.732Z", + "completed":"2017-08-01T19:31:25.732Z", + "new_balance":"8855.66", + "value":"-7.70" + } + }, + { + "id":"b89cd666-8a5c-4e04-8c95-577d12a8f2c8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T14:21:08.501Z", + "completed":"2017-08-03T14:21:08.501Z", + "new_balance":"8854.96", + "value":"-0.70" + } + }, + { + "id":"d2674877-e5c7-4f2c-92af-be3c51f5dd4b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T17:38:11.603Z", + "completed":"2017-08-04T17:38:11.603Z", + "new_balance":"8847.66", + "value":"-7.30" + } + }, + { + "id":"5a1e0f6c-6495-4cc3-bef8-dcc6957e4c2e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T00:04:46.501Z", + "completed":"2017-08-08T00:04:46.501Z", + "new_balance":"8846.54", + "value":"-1.12" + } + }, + { + "id":"e951cd14-d76c-47b3-86e9-ffa80b340c9c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T02:00:08.887Z", + "completed":"2017-08-08T02:00:08.887Z", + "new_balance":"8837.08", + "value":"-9.46" + } + }, + { + "id":"f5f09ace-97ed-42bd-94d1-95a71ca3d3ff", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:41:13.720Z", + "completed":"2017-08-08T04:41:13.720Z", + "new_balance":"8826.98", + "value":"-10.10" + } + }, + { + "id":"e687b1be-6934-48cb-aaa1-c40c7b5cf76c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T13:25:40.846Z", + "completed":"2017-08-08T13:25:40.846Z", + "new_balance":"8823.18", + "value":"-3.80" + } + }, + { + "id":"9fed7c80-1685-4f92-b7e4-ce169aecef8e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T03:02:26.199Z", + "completed":"2017-08-09T03:02:26.199Z", + "new_balance":"8818.59", + "value":"-4.59" + } + }, + { + "id":"0b211ccd-26f6-4313-8dfd-475a1fd01139", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T10:16:11.763Z", + "completed":"2017-08-14T10:16:11.763Z", + "new_balance":"8816.19", + "value":"-2.40" + } + }, + { + "id":"91f69011-a9e7-4ffd-8ce9-cc9fcbde9528", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T19:57:22.438Z", + "completed":"2017-08-15T19:57:22.438Z", + "new_balance":"8813.31", + "value":"-2.88" + } + }, + { + "id":"c8dd2fad-10b7-4525-968b-3669123f149c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T00:56:05.086Z", + "completed":"2017-08-19T00:56:05.086Z", + "new_balance":"8812.79", + "value":"-0.52" + } + }, + { + "id":"d59ad039-645c-49d6-88d3-097f03b581ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T17:56:48.782Z", + "completed":"2017-08-22T17:56:48.782Z", + "new_balance":"8807.61", + "value":"-5.18" + } + }, + { + "id":"9f75cf2f-5766-4a7e-9a0b-265d316ea2c4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T00:40:42.715Z", + "completed":"2017-08-26T00:40:42.715Z", + "new_balance":"8800.31", + "value":"-7.30" + } + }, + { + "id":"2f7009c7-94c7-4134-9a00-a373cf858104", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T09:38:03.005Z", + "completed":"2017-08-28T09:38:03.005Z", + "new_balance":"8777.07", + "value":"-23.24" + } + }, + { + "id":"f6ed6ba9-d2ae-465a-a8a6-cd0e392d8934", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T00:54:40.939Z", + "completed":"2017-08-29T00:54:40.939Z", + "new_balance":"9012.03", + "value":"234.96" + } + }, + { + "id":"ac3e5e07-505b-4cf9-929f-93a716a316f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T19:19:07.027Z", + "completed":"2017-08-29T19:19:07.027Z", + "new_balance":"9008.36", + "value":"-3.67" + } + }, + { + "id":"65bcb1ca-9ee0-4efc-bd32-53d4d4be642e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T09:05:09.217Z", + "completed":"2017-08-30T09:05:09.217Z", + "new_balance":"8985.12", + "value":"-23.24" + } + }, + { + "id":"3ee5f50d-c705-4cde-bcdd-e390808d2711", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T04:20:06.843Z", + "completed":"2017-09-01T04:20:06.843Z", + "new_balance":"8977.42", + "value":"-7.70" + } + }, + { + "id":"0206094b-5c21-46c6-8921-b06e816d13ef", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T10:22:22.526Z", + "completed":"2017-09-01T10:22:22.526Z", + "new_balance":"8973.24", + "value":"-4.18" + } + }, + { + "id":"9f46368c-1e29-48ba-bd0a-89c6a472b13f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T11:30:22.065Z", + "completed":"2017-09-01T11:30:22.065Z", + "new_balance":"8969.80", + "value":"-3.44" + } + }, + { + "id":"e8e7fbc3-b6e1-4982-93b0-9c339b63c334", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T17:39:41.493Z", + "completed":"2017-09-01T17:39:41.493Z", + "new_balance":"8966.36", + "value":"-3.44" + } + }, + { + "id":"e089c4e4-61a0-4a41-b7b5-ed25c1524c41", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T03:26:31.267Z", + "completed":"2017-09-09T03:26:31.267Z", + "new_balance":"8960.54", + "value":"-5.82" + } + }, + { + "id":"cc834413-aa19-4c2d-8266-2b9d646978c3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T13:02:39.522Z", + "completed":"2017-09-09T13:02:39.522Z", + "new_balance":"8953.28", + "value":"-7.26" + } + }, + { + "id":"3dcd57f8-ac5a-4aea-ae9f-0df9046b062b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T19:16:25.627Z", + "completed":"2017-09-17T19:16:25.627Z", + "new_balance":"8945.54", + "value":"-7.74" + } + }, + { + "id":"1cf1158d-0ce8-4f53-a804-db4aabe9e1ed", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T01:18:16.290Z", + "completed":"2017-09-18T01:18:16.290Z", + "new_balance":"8944.93", + "value":"-0.61" + } + }, + { + "id":"562b34e8-8292-4645-ba67-d9cd5a082fd5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T03:57:10.244Z", + "completed":"2017-09-18T03:57:10.244Z", + "new_balance":"8937.19", + "value":"-7.74" + } + }, + { + "id":"31bebcf4-640c-4dd0-b7e7-b11da2607bb6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:06:17.288Z", + "completed":"2017-09-18T10:06:17.288Z", + "new_balance":"8932.78", + "value":"-4.41" + } + }, + { + "id":"ff0ce033-27d1-4c60-8dd4-686c53e591a4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T19:03:24.845Z", + "completed":"2017-09-18T19:03:24.845Z", + "new_balance":"8928.71", + "value":"-4.07" + } + }, + { + "id":"cc834ac5-9d22-47df-8c43-fafa63e18b03", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T04:27:29.915Z", + "completed":"2017-09-22T04:27:29.915Z", + "new_balance":"8918.70", + "value":"-10.01" + } + }, + { + "id":"0ece06d6-9538-4325-9adc-ee4e2d26abaa", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T09:05:51.574Z", + "completed":"2017-09-29T09:05:51.574Z", + "new_balance":"8915.03", + "value":"-3.67" + } + }, + { + "id":"de908010-d594-48d5-857e-b1c915f02299", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T13:45:05.291Z", + "completed":"2017-09-29T13:45:05.291Z", + "new_balance":"9149.99", + "value":"234.96" + } + }, + { + "id":"85eace85-00c9-4b35-9350-a47c1fd73d35", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T02:58:29.789Z", + "completed":"2017-09-30T02:58:29.789Z", + "new_balance":"9126.75", + "value":"-23.24" + } + }, + { + "id":"e708ae67-931c-43f7-9ae3-3e77300c9e26", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T05:46:34.255Z", + "completed":"2017-10-01T05:46:34.255Z", + "new_balance":"9119.05", + "value":"-7.70" + } + }, + { + "id":"b4ddf3b7-e65f-4f4e-b8d5-795b82fc81d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T09:20:40.919Z", + "completed":"2017-10-01T09:20:40.919Z", + "new_balance":"9115.61", + "value":"-3.44" + } + }, + { + "id":"1f27f61f-bd14-4b59-ab10-7a833b8d3fea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T09:55:20.034Z", + "completed":"2017-10-01T09:55:20.034Z", + "new_balance":"9111.43", + "value":"-4.18" + } + }, + { + "id":"a64c5fd7-9819-42fc-af4e-d1d07bc9a2df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T13:58:03.781Z", + "completed":"2017-10-01T13:58:03.781Z", + "new_balance":"9107.99", + "value":"-3.44" + } + }, + { + "id":"3374e2c4-c42a-4646-842c-1a66bb6cebc5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T17:52:01.895Z", + "completed":"2017-10-02T17:52:01.895Z", + "new_balance":"9100.43", + "value":"-7.56" + } + }, + { + "id":"7d0d9bca-a860-4fa9-a5a1-366ad9cd494f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T02:25:01.772Z", + "completed":"2017-10-05T02:25:01.772Z", + "new_balance":"9096.25", + "value":"-4.18" + } + }, + { + "id":"5070a112-bf90-423d-a51f-97fea339deed", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T03:09:36.558Z", + "completed":"2017-10-05T03:09:36.558Z", + "new_balance":"9090.80", + "value":"-5.45" + } + }, + { + "id":"04f338e0-b4c1-4b55-9ac6-7debe0430a98", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T05:18:05.937Z", + "completed":"2017-10-05T05:18:05.937Z", + "new_balance":"9090.10", + "value":"-0.70" + } + }, + { + "id":"afbe2658-633c-48f6-8359-4269607d269c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T05:40:47.846Z", + "completed":"2017-10-05T05:40:47.846Z", + "new_balance":"9089.51", + "value":"-0.59" + } + }, + { + "id":"d93e22f4-0af7-4d60-8419-bcad0af5a33a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T07:16:05.768Z", + "completed":"2017-10-05T07:16:05.768Z", + "new_balance":"9086.07", + "value":"-3.44" + } + }, + { + "id":"cf63a04d-101c-488f-9fca-49e294274ad8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T13:28:53.089Z", + "completed":"2017-10-05T13:28:53.089Z", + "new_balance":"9078.77", + "value":"-7.30" + } + }, + { + "id":"48e995fc-78a5-4e8c-be48-1bb3ea82ba2f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T19:43:49.196Z", + "completed":"2017-10-05T19:43:49.196Z", + "new_balance":"9077.53", + "value":"-1.24" + } + }, + { + "id":"79f1cee1-a1ea-42f8-a3fe-83cebe55649d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T14:38:02.283Z", + "completed":"2017-10-09T14:38:02.283Z", + "new_balance":"9069.44", + "value":"-8.09" + } + }, + { + "id":"5b7bdc05-b85a-43b2-9a14-1a5e376ba018", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T15:04:07.247Z", + "completed":"2017-10-11T15:04:07.247Z", + "new_balance":"9063.32", + "value":"-6.12" + } + }, + { + "id":"c78f75d9-e1b5-4b8d-aaef-2de45a90cdc0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T13:36:23.589Z", + "completed":"2017-10-12T13:36:23.589Z", + "new_balance":"9056.02", + "value":"-7.30" + } + }, + { + "id":"bffc6492-24ba-450b-95b5-09867189a0f9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T15:58:06.541Z", + "completed":"2017-10-12T15:58:06.541Z", + "new_balance":"9053.34", + "value":"-2.68" + } + }, + { + "id":"e82cdcb2-8b46-43dd-86ff-49dbb363b4f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T01:32:57.514Z", + "completed":"2017-10-20T01:32:57.514Z", + "new_balance":"9049.67", + "value":"-3.67" + } + }, + { + "id":"e2315a79-f7a4-4c06-a330-76edc171635b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T16:09:36.327Z", + "completed":"2017-10-29T16:09:36.327Z", + "new_balance":"9284.63", + "value":"234.96" + } + }, + { + "id":"0e7f9c15-799a-40e6-a281-264c1a5bf06c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T09:39:54.297Z", + "completed":"2017-10-30T09:39:54.297Z", + "new_balance":"9261.39", + "value":"-23.24" + } + }, + { + "id":"e6998615-dd15-4b7f-bc45-e90af8f4bd56", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T02:50:03.591Z", + "completed":"2017-11-02T02:50:03.591Z", + "new_balance":"9257.21", + "value":"-4.18" + } + }, + { + "id":"8624566c-4441-40c8-aa91-3841dfe88679", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T07:56:05.936Z", + "completed":"2017-11-02T07:56:05.936Z", + "new_balance":"9253.77", + "value":"-3.44" + } + }, + { + "id":"b4fc893d-92bf-44ec-aa1e-7de9ff37cdf2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T15:32:10.918Z", + "completed":"2017-11-02T15:32:10.918Z", + "new_balance":"9250.33", + "value":"-3.44" + } + }, + { + "id":"58d26b3f-d081-451d-81c5-692a07ebf1b0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T17:35:23.246Z", + "completed":"2017-11-02T17:35:23.246Z", + "new_balance":"9242.63", + "value":"-7.70" + } + }, + { + "id":"bc2eadf3-24d4-4983-98d7-c492e9f9dfce", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T09:15:33.845Z", + "completed":"2017-11-04T09:15:33.845Z", + "new_balance":"9235.33", + "value":"-7.30" + } + }, + { + "id":"9f7c52be-c71f-4bfd-ad02-8e3b08970f4f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T14:38:27.722Z", + "completed":"2017-11-04T14:38:27.722Z", + "new_balance":"9234.63", + "value":"-0.70" + } + }, + { + "id":"912f0a8a-5e4e-42aa-877a-996aae9aa6ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T01:15:03.295Z", + "completed":"2017-11-06T01:15:03.295Z", + "new_balance":"9227.19", + "value":"-7.44" + } + }, + { + "id":"de607fba-0af2-4170-adae-8dc9acef2481", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T12:36:19.463Z", + "completed":"2017-11-07T12:36:19.463Z", + "new_balance":"9219.63", + "value":"-7.56" + } + }, + { + "id":"52b5eebf-3c03-4069-9750-1c4568fb06e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T14:33:26.165Z", + "completed":"2017-11-07T14:33:26.165Z", + "new_balance":"9216.92", + "value":"-2.71" + } + }, + { + "id":"042ca9dd-9c29-46b8-ade9-28bc759760f6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T12:44:57.036Z", + "completed":"2017-11-09T12:44:57.036Z", + "new_balance":"9212.33", + "value":"-4.59" + } + }, + { + "id":"26f0ca16-abd4-4d20-a1af-74be82d0d174", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T23:38:45.459Z", + "completed":"2017-11-09T23:38:45.459Z", + "new_balance":"9211.09", + "value":"-1.24" + } + }, + { + "id":"d88ebcfd-ca61-4043-9caa-e4dab012dac6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T01:48:29.574Z", + "completed":"2017-11-13T01:48:29.574Z", + "new_balance":"9208.38", + "value":"-2.71" + } + }, + { + "id":"586ea9e4-fea9-4a0d-9fc9-082cb2f3785e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T02:16:54.807Z", + "completed":"2017-11-13T02:16:54.807Z", + "new_balance":"9207.68", + "value":"-0.70" + } + }, + { + "id":"19681122-dadd-4a61-8879-ff03d5adfef8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T10:48:25.564Z", + "completed":"2017-11-13T10:48:25.564Z", + "new_balance":"9205.55", + "value":"-2.13" + } + }, + { + "id":"32b968b8-42ee-4e12-ad9b-eb57c80f92df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T13:34:39.964Z", + "completed":"2017-11-14T13:34:39.964Z", + "new_balance":"9198.25", + "value":"-7.30" + } + }, + { + "id":"42608c28-6294-4cb2-9c3b-730b3b03c752", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T14:12:47.563Z", + "completed":"2017-11-14T14:12:47.563Z", + "new_balance":"9193.79", + "value":"-4.46" + } + }, + { + "id":"e5430bd9-cdb3-4e8f-8f0d-ff80248fafb8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T10:39:38.832Z", + "completed":"2017-11-15T10:39:38.832Z", + "new_balance":"9190.12", + "value":"-3.67" + } + }, + { + "id":"89fd2fd5-a9b7-45ab-8941-09b4f6080412", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:46:09.758Z", + "completed":"2017-11-30T00:46:09.758Z", + "new_balance":"9166.88", + "value":"-23.24" + } + }, + { + "id":"312fb4f8-2b5a-4d89-b7c8-0e3814b2387a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T16:15:34.593Z", + "completed":"2017-11-30T16:15:34.593Z", + "new_balance":"9401.84", + "value":"234.96" + } + }, + { + "id":"f1e7f166-756e-4936-b985-581370b43c28", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T00:43:29.131Z", + "completed":"2017-12-01T00:43:29.131Z", + "new_balance":"9397.66", + "value":"-4.18" + } + }, + { + "id":"fa9ab814-37de-473a-b05c-c7b8b7be7637", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:24:58.876Z", + "completed":"2017-12-01T02:24:58.876Z", + "new_balance":"9394.22", + "value":"-3.44" + } + }, + { + "id":"c7af8c7d-3fc4-4d1e-8c78-4c23fbc0dbfb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:04:01.201Z", + "completed":"2017-12-01T06:04:01.201Z", + "new_balance":"9390.78", + "value":"-3.44" + } + }, + { + "id":"d7c8b165-07a3-4224-b003-4ab28ba3178b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T13:56:10.781Z", + "completed":"2017-12-01T13:56:10.781Z", + "new_balance":"9383.08", + "value":"-7.70" + } + }, + { + "id":"a6f6cdbd-0b71-4006-8ef0-f61eafc54a5d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T17:47:45.239Z", + "completed":"2017-12-04T17:47:45.239Z", + "new_balance":"9377.26", + "value":"-5.82" + } + }, + { + "id":"09634935-b97b-44de-9942-c53eff3e26b1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T19:09:17.076Z", + "completed":"2017-12-04T19:09:17.076Z", + "new_balance":"9370.00", + "value":"-7.26" + } + }, + { + "id":"c9439315-19ce-45b7-8be7-d36418231373", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T00:47:38.394Z", + "completed":"2017-12-11T00:47:38.394Z", + "new_balance":"9362.26", + "value":"-7.74" + } + }, + { + "id":"c6fec4a7-c1d7-41bf-b057-3cfdb69ee257", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T01:55:57.692Z", + "completed":"2017-12-11T01:55:57.692Z", + "new_balance":"9354.52", + "value":"-7.74" + } + }, + { + "id":"d2ed6432-35a3-4a15-b504-bdf46d95aaa8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:56:06.488Z", + "completed":"2017-12-11T06:56:06.488Z", + "new_balance":"9350.11", + "value":"-4.41" + } + }, + { + "id":"4497cb5a-d144-414d-9381-12cda87bdaca", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T00:53:07.662Z", + "completed":"2017-12-12T00:53:07.662Z", + "new_balance":"9349.50", + "value":"-0.61" + } + }, + { + "id":"51c6484d-e81e-4fdb-a000-bd32d63678bc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T07:16:44.100Z", + "completed":"2017-12-12T07:16:44.100Z", + "new_balance":"9345.43", + "value":"-4.07" + } + }, + { + "id":"d898d74d-38f4-48e3-bfee-a1d02e89e720", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:20:27.577Z", + "completed":"2017-12-16T02:20:27.577Z", + "new_balance":"9335.42", + "value":"-10.01" + } + }, + { + "id":"78b01d3c-f876-4fa7-990e-b98bb2cf5307", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T17:25:32.023Z", + "completed":"2017-12-29T17:25:32.023Z", + "new_balance":"9331.75", + "value":"-3.67" + } + }, + { + "id":"efba08c6-c2c0-4f49-b19c-cbaafcf19709", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T06:01:18.399Z", + "completed":"2017-12-30T06:01:18.399Z", + "new_balance":"9566.71", + "value":"234.96" + } + }, + { + "id":"ed638407-64c6-43ed-a120-57e14f1216f1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T19:03:25.242Z", + "completed":"2017-12-30T19:03:25.242Z", + "new_balance":"9543.47", + "value":"-23.24" + } + }, + { + "id":"3e84082f-455a-4587-8be2-87e6a6a6b4c8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T11:07:59.531Z", + "completed":"2016-03-01T11:07:59.531Z", + "new_balance":"13244.52", + "value":"-45.51" + } + }, + { + "id":"47732df2-5d0c-4cf9-b632-ddfc8bde2f0f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T16:30:48.795Z", + "completed":"2016-03-02T16:30:48.795Z", + "new_balance":"13170.59", + "value":"-73.93" + } + }, + { + "id":"49e1ff64-fa14-4bdf-929c-145e34145643", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T00:24:33.086Z", + "completed":"2016-03-06T00:24:33.086Z", + "new_balance":"13119.49", + "value":"-51.10" + } + }, + { + "id":"d4fcba01-b6ac-40fe-97df-234ccd9b16ea", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T23:42:31.302Z", + "completed":"2016-03-11T23:42:31.302Z", + "new_balance":"13112.80", + "value":"-6.69" + } + }, + { + "id":"b6db6d8a-049e-4774-bca2-9eba6ce115b3", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T02:49:30.168Z", + "completed":"2016-03-13T02:49:30.168Z", + "new_balance":"13109.10", + "value":"-3.70" + } + }, + { + "id":"69dd4a41-343c-4937-bd7a-8038cbc76012", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T10:42:16.680Z", + "completed":"2016-03-16T10:42:16.680Z", + "new_balance":"12791.89", + "value":"-317.21" + } + }, + { + "id":"0f05ea13-14cf-4316-9f2f-ad27f80e936d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T01:39:20.905Z", + "completed":"2016-03-17T01:39:20.905Z", + "new_balance":"12749.55", + "value":"-42.34" + } + }, + { + "id":"81b47a30-9b8b-4375-a178-16108dfa0bfc", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T14:37:17.872Z", + "completed":"2016-03-17T14:37:17.872Z", + "new_balance":"12586.07", + "value":"-163.48" + } + }, + { + "id":"5fc25a81-6109-4424-be30-7759362ab487", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T02:19:30.412Z", + "completed":"2016-03-19T02:19:30.412Z", + "new_balance":"12582.37", + "value":"-3.70" + } + }, + { + "id":"0d08a64e-d299-4955-9f70-e76e9ee5c4a8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T13:42:00.646Z", + "completed":"2016-03-21T13:42:00.646Z", + "new_balance":"12562.79", + "value":"-19.58" + } + }, + { + "id":"a194f2fb-3467-4cda-a375-40d00dcce476", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T20:02:55.230Z", + "completed":"2016-03-23T20:02:55.230Z", + "new_balance":"12517.28", + "value":"-45.51" + } + }, + { + "id":"6627ef24-c840-4d1b-8278-07938dce21cc", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T07:25:11.087Z", + "completed":"2016-03-24T07:25:11.087Z", + "new_balance":"12510.59", + "value":"-6.69" + } + }, + { + "id":"0be12a06-cbbd-4aea-a70a-269d1ac6878b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T09:08:41.518Z", + "completed":"2016-03-26T09:08:41.518Z", + "new_balance":"12497.58", + "value":"-13.01" + } + }, + { + "id":"fa72b1e1-2635-4d34-941a-a17b5d7ba69f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T19:23:14.895Z", + "completed":"2016-04-01T19:23:14.895Z", + "new_balance":"12484.57", + "value":"-13.01" + } + }, + { + "id":"30b22911-4c1f-42c1-9422-f9510ffffbcf", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T04:24:20.092Z", + "completed":"2016-06-01T04:24:20.092Z", + "new_balance":"12439.06", + "value":"-45.51" + } + }, + { + "id":"814c107c-5231-4882-816f-24e2bd1ffa8a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T14:39:14.990Z", + "completed":"2016-06-04T14:39:14.990Z", + "new_balance":"12365.13", + "value":"-73.93" + } + }, + { + "id":"3cf5429f-a7e0-4282-a9f7-b9d0de7c034f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T10:51:43.980Z", + "completed":"2016-06-19T10:51:43.980Z", + "new_balance":"12314.03", + "value":"-51.10" + } + }, + { + "id":"e41adf65-4ca4-4d9f-a97d-6e6ed95eab6e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T15:46:09.777Z", + "completed":"2016-06-21T15:46:09.777Z", + "new_balance":"12307.34", + "value":"-6.69" + } + }, + { + "id":"d80f0c94-d77b-4331-bb3f-59b4e6f14c18", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T10:26:50.492Z", + "completed":"2016-06-24T10:26:50.492Z", + "new_balance":"12303.64", + "value":"-3.70" + } + }, + { + "id":"57cec184-7bf3-4bdc-a11b-464d86ef39e5", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T08:52:43.401Z", + "completed":"2016-06-28T08:52:43.401Z", + "new_balance":"11986.43", + "value":"-317.21" + } + }, + { + "id":"93907ec8-6811-4c34-b031-7b1547ff4e88", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T09:05:40.737Z", + "completed":"2016-06-28T09:05:40.737Z", + "new_balance":"11822.95", + "value":"-163.48" + } + }, + { + "id":"36877aaa-2439-445c-bbad-89444a6407a2", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T12:33:49.074Z", + "completed":"2016-06-28T12:33:49.074Z", + "new_balance":"11780.61", + "value":"-42.34" + } + }, + { + "id":"151726b2-2691-40de-b597-b0a662eec94c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T15:05:46.079Z", + "completed":"2016-06-29T15:05:46.079Z", + "new_balance":"11776.91", + "value":"-3.70" + } + }, + { + "id":"18b86d70-8653-42aa-b69a-4a7ffa470216", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T01:36:03.547Z", + "completed":"2016-06-30T01:36:03.547Z", + "new_balance":"11770.22", + "value":"-6.69" + } + }, + { + "id":"bbc7d1a4-828d-4c60-a058-0467250fc31b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T01:40:34.607Z", + "completed":"2016-06-30T01:40:34.607Z", + "new_balance":"11724.71", + "value":"-45.51" + } + }, + { + "id":"d50b4ac6-5835-4a55-8f03-b3bb3a8c7556", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T09:34:43.094Z", + "completed":"2016-06-30T09:34:43.094Z", + "new_balance":"11705.13", + "value":"-19.58" + } + }, + { + "id":"60de354b-946f-4ddd-9f67-769b31058c09", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T01:58:01.275Z", + "completed":"2016-09-01T01:58:01.275Z", + "new_balance":"11681.27", + "value":"-23.86" + } + }, + { + "id":"c3cc292e-29c0-49ed-bb0f-8b3549e6ea0c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T23:49:37.887Z", + "completed":"2016-09-02T23:49:37.887Z", + "new_balance":"11607.34", + "value":"-73.93" + } + }, + { + "id":"32fecc67-305f-45a7-90e4-afa0145869f4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T12:45:01.697Z", + "completed":"2016-09-07T12:45:01.697Z", + "new_balance":"11556.24", + "value":"-51.10" + } + }, + { + "id":"8fd94c2b-af92-45e8-a953-6eb1a1d35873", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T10:15:00.741Z", + "completed":"2016-09-11T10:15:00.741Z", + "new_balance":"11549.55", + "value":"-6.69" + } + }, + { + "id":"b7e45ba2-8bc4-4714-926c-08c328822ebb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T01:09:11.532Z", + "completed":"2016-09-15T01:09:11.532Z", + "new_balance":"11538.64", + "value":"-10.91" + } + }, + { + "id":"e941cd41-a26e-4f13-aab4-67af805a84c4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T00:04:02.032Z", + "completed":"2016-09-17T00:04:02.032Z", + "new_balance":"11375.16", + "value":"-163.48" + } + }, + { + "id":"8c78d2ff-0487-47f6-8498-8c8cf7cd1f6d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T14:31:53.386Z", + "completed":"2016-09-17T14:31:53.386Z", + "new_balance":"11057.95", + "value":"-317.21" + } + }, + { + "id":"971a2180-5da7-4953-b324-6886303335a7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T19:13:51.576Z", + "completed":"2016-09-17T19:13:51.576Z", + "new_balance":"11015.61", + "value":"-42.34" + } + }, + { + "id":"4f46e88e-0dc4-48a8-b5a1-6cd797cb70eb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T07:12:49.135Z", + "completed":"2016-09-19T07:12:49.135Z", + "new_balance":"11011.91", + "value":"-3.70" + } + }, + { + "id":"aac45f26-571a-4b9e-94e6-f0cff80171ad", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T16:48:04.278Z", + "completed":"2016-09-21T16:48:04.278Z", + "new_balance":"10992.33", + "value":"-19.58" + } + }, + { + "id":"244cd82e-965a-44ad-9589-67e3913b8deb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T17:05:21.591Z", + "completed":"2016-09-23T17:05:21.591Z", + "new_balance":"10946.82", + "value":"-45.51" + } + }, + { + "id":"33e16312-88a4-411c-9aab-4917ad11051b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T20:41:39.812Z", + "completed":"2016-09-24T20:41:39.812Z", + "new_balance":"10940.13", + "value":"-6.69" + } + }, + { + "id":"063aaca5-c089-465f-8c66-c42da260f66e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T22:40:02.888Z", + "completed":"2016-09-27T22:40:02.888Z", + "new_balance":"10927.12", + "value":"-13.01" + } + }, + { + "id":"4897ab13-92e7-4494-ab72-04c6480234b5", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T19:15:35.233Z", + "completed":"2016-10-01T19:15:35.233Z", + "new_balance":"10914.11", + "value":"-13.01" + } + }, + { + "id":"883c1e19-a84a-4cd0-ba7a-69d9ecd524f1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:00:21.794Z", + "completed":"2016-12-01T15:00:21.794Z", + "new_balance":"10868.60", + "value":"-45.51" + } + }, + { + "id":"c63743de-aea5-4bb2-a62a-0125f5c0e06b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T15:45:41.746Z", + "completed":"2016-12-04T15:45:41.746Z", + "new_balance":"10794.67", + "value":"-73.93" + } + }, + { + "id":"69a6f5c3-110c-4547-9607-f9dbd22d8683", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T11:12:59.950Z", + "completed":"2016-12-19T11:12:59.950Z", + "new_balance":"10743.57", + "value":"-51.10" + } + }, + { + "id":"a1c7f94d-2b36-44b5-aceb-957b55e1d870", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T01:29:14.983Z", + "completed":"2016-12-24T01:29:14.983Z", + "new_balance":"10736.88", + "value":"-6.69" + } + }, + { + "id":"591e7b26-2fe0-4e58-998a-12ac379f3e86", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T02:08:31.520Z", + "completed":"2016-12-24T02:08:31.520Z", + "new_balance":"10733.18", + "value":"-3.70" + } + }, + { + "id":"9094d0f1-a666-4f39-bb2f-d1c05839e22f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T04:25:03.540Z", + "completed":"2016-12-28T04:25:03.540Z", + "new_balance":"10569.70", + "value":"-163.48" + } + }, + { + "id":"043a4243-2cad-4c2d-bede-2982356c59a3", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T07:12:29.652Z", + "completed":"2016-12-28T07:12:29.652Z", + "new_balance":"10527.36", + "value":"-42.34" + } + }, + { + "id":"4b8f9ba2-b45e-447b-8f19-43c451d32a4c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T17:17:01.209Z", + "completed":"2016-12-28T17:17:01.209Z", + "new_balance":"10210.15", + "value":"-317.21" + } + }, + { + "id":"2e5e6083-f215-4dfd-ae3d-9a07621dae3b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T14:30:35.586Z", + "completed":"2016-12-29T14:30:35.586Z", + "new_balance":"10206.45", + "value":"-3.70" + } + }, + { + "id":"329aab55-097b-4330-a8a6-04b9b2f022d0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T02:48:47.489Z", + "completed":"2016-12-30T02:48:47.489Z", + "new_balance":"10160.94", + "value":"-45.51" + } + }, + { + "id":"31f5dbc3-afa3-407d-9d24-9a8e4a9d5424", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T21:35:24.846Z", + "completed":"2016-12-30T21:35:24.846Z", + "new_balance":"10141.36", + "value":"-19.58" + } + }, + { + "id":"35b897e4-3929-416f-999d-3b5a1f92f2c0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T22:05:35.339Z", + "completed":"2016-12-30T22:05:35.339Z", + "new_balance":"10134.67", + "value":"-6.69" + } + }, + { + "id":"2560c2e3-0a95-4a85-871b-f0c24b392946", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T17:37:00.099Z", + "completed":"2017-03-01T17:37:00.099Z", + "new_balance":"10089.16", + "value":"-45.51" + } + }, + { + "id":"a9a758a9-3b7c-487b-9221-9a5b43fbc32a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T05:28:06.834Z", + "completed":"2017-03-02T05:28:06.834Z", + "new_balance":"10015.23", + "value":"-73.93" + } + }, + { + "id":"7ec38fe2-f6a3-48fe-9692-3d4ac8962d20", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T05:42:09.417Z", + "completed":"2017-03-06T05:42:09.417Z", + "new_balance":"9964.13", + "value":"-51.10" + } + }, + { + "id":"97316957-cc19-4593-a370-b278783f6586", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T20:39:56.517Z", + "completed":"2017-03-11T20:39:56.517Z", + "new_balance":"9957.44", + "value":"-6.69" + } + }, + { + "id":"29cf1768-3a6b-4da0-81a1-57672033be7a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T12:34:23.704Z", + "completed":"2017-03-13T12:34:23.704Z", + "new_balance":"9953.74", + "value":"-3.70" + } + }, + { + "id":"119ec242-6df6-478c-9526-1a12a76c3383", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T05:05:15.453Z", + "completed":"2017-03-16T05:05:15.453Z", + "new_balance":"9636.53", + "value":"-317.21" + } + }, + { + "id":"6ee727e7-3e6f-497a-ae5f-75486f2b34e2", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T11:05:40.350Z", + "completed":"2017-03-17T11:05:40.350Z", + "new_balance":"9594.19", + "value":"-42.34" + } + }, + { + "id":"81006ac5-1652-4289-be8b-1c18b6281434", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T23:05:38.828Z", + "completed":"2017-03-17T23:05:38.828Z", + "new_balance":"9430.71", + "value":"-163.48" + } + }, + { + "id":"7a3ebd98-7c61-4ae6-803c-32b7183d4da8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T09:39:33.235Z", + "completed":"2017-03-19T09:39:33.235Z", + "new_balance":"9427.01", + "value":"-3.70" + } + }, + { + "id":"af012ebe-99d5-4cb7-944f-1f7f8eff6138", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T09:38:27.311Z", + "completed":"2017-03-21T09:38:27.311Z", + "new_balance":"9407.43", + "value":"-19.58" + } + }, + { + "id":"7b9bb87a-5de9-4d44-b07a-07712faa77a0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T00:46:19.603Z", + "completed":"2017-03-23T00:46:19.603Z", + "new_balance":"9361.92", + "value":"-45.51" + } + }, + { + "id":"7b059b60-8b32-4bd9-832e-98eeda24b391", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T23:23:13.670Z", + "completed":"2017-03-24T23:23:13.670Z", + "new_balance":"9355.23", + "value":"-6.69" + } + }, + { + "id":"9f7f828b-82a1-4355-b13a-bbe1bc92889f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T20:18:50.774Z", + "completed":"2017-03-26T20:18:50.774Z", + "new_balance":"9342.22", + "value":"-13.01" + } + }, + { + "id":"dd6d4d3a-4529-452b-b8dc-7244e355a0b1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T19:28:20.154Z", + "completed":"2017-04-01T19:28:20.154Z", + "new_balance":"9329.21", + "value":"-13.01" + } + }, + { + "id":"62cb00a5-d712-471e-a9cf-5cf34749d129", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T19:43:45.122Z", + "completed":"2017-06-01T19:43:45.122Z", + "new_balance":"9283.70", + "value":"-45.51" + } + }, + { + "id":"da2e73ec-373c-48d5-a7eb-85c7fe5c4386", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T09:38:15.852Z", + "completed":"2017-06-04T09:38:15.852Z", + "new_balance":"9209.77", + "value":"-73.93" + } + }, + { + "id":"872f66e9-250f-4ff9-8403-5bb643dc7622", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T22:31:57.212Z", + "completed":"2017-06-19T22:31:57.212Z", + "new_balance":"9158.67", + "value":"-51.10" + } + }, + { + "id":"fd377a2c-4255-4394-beda-dbe097d4fefb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T01:43:28.077Z", + "completed":"2017-06-21T01:43:28.077Z", + "new_balance":"9151.98", + "value":"-6.69" + } + }, + { + "id":"4ab262d2-c09c-4bbb-9b1f-3d5b7c229dfd", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T02:07:50.676Z", + "completed":"2017-06-24T02:07:50.676Z", + "new_balance":"9148.28", + "value":"-3.70" + } + }, + { + "id":"cc46a9d1-74b9-4986-8f88-ce4937095e4d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T04:40:27.053Z", + "completed":"2017-06-28T04:40:27.053Z", + "new_balance":"8984.80", + "value":"-163.48" + } + }, + { + "id":"1d42c52c-78a4-4ffd-802e-78d0652645e7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T05:07:41.672Z", + "completed":"2017-06-28T05:07:41.672Z", + "new_balance":"8667.59", + "value":"-317.21" + } + }, + { + "id":"ff3c89e9-6008-430b-a210-e107ed727d07", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T13:39:07.536Z", + "completed":"2017-06-28T13:39:07.536Z", + "new_balance":"8625.25", + "value":"-42.34" + } + }, + { + "id":"b1fb8b1a-d13a-4ecc-aa33-c84463484314", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T15:01:01.180Z", + "completed":"2017-06-29T15:01:01.180Z", + "new_balance":"8621.55", + "value":"-3.70" + } + }, + { + "id":"f49a3824-1bfe-4eb6-9d36-e9dbb950220e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T09:18:26.729Z", + "completed":"2017-06-30T09:18:26.729Z", + "new_balance":"8576.04", + "value":"-45.51" + } + }, + { + "id":"d4e278b5-7d50-4ea2-bdce-b78caf8e746f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T09:48:26.133Z", + "completed":"2017-06-30T09:48:26.133Z", + "new_balance":"8556.46", + "value":"-19.58" + } + }, + { + "id":"6e1e9cb9-272b-4e25-9b86-28a1a161c33a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T13:45:59.758Z", + "completed":"2017-06-30T13:45:59.758Z", + "new_balance":"8549.77", + "value":"-6.69" + } + }, + { + "id":"d9c6969a-de23-49ea-90c1-43dfbe3104b1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T00:07:08.379Z", + "completed":"2017-09-01T00:07:08.379Z", + "new_balance":"8525.91", + "value":"-23.86" + } + }, + { + "id":"ad9134ac-e7d5-4b46-a5fc-50a036209f90", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T18:45:52.169Z", + "completed":"2017-09-02T18:45:52.169Z", + "new_balance":"8451.98", + "value":"-73.93" + } + }, + { + "id":"8c8f83c3-f6d4-4666-b5fb-45f9b3937027", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T12:32:36.905Z", + "completed":"2017-09-07T12:32:36.905Z", + "new_balance":"8400.88", + "value":"-51.10" + } + }, + { + "id":"562bd015-d4ba-4f77-a318-4ccfe2d5ba0a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T12:32:16.360Z", + "completed":"2017-09-11T12:32:16.360Z", + "new_balance":"8394.19", + "value":"-6.69" + } + }, + { + "id":"61617206-a65a-4f64-8f48-70db32b39460", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T10:05:11.167Z", + "completed":"2017-09-15T10:05:11.167Z", + "new_balance":"8383.28", + "value":"-10.91" + } + }, + { + "id":"1e064b67-2130-420c-80c2-b3e80d55d9f4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T02:05:41.358Z", + "completed":"2017-09-17T02:05:41.358Z", + "new_balance":"8340.94", + "value":"-42.34" + } + }, + { + "id":"6c447cb1-4ed7-42f0-a577-cf54cda2d445", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T20:33:33.941Z", + "completed":"2017-09-17T20:33:33.941Z", + "new_balance":"8177.46", + "value":"-163.48" + } + }, + { + "id":"efde1347-05c4-4e32-8ec0-8dea12476f77", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T21:33:46.484Z", + "completed":"2017-09-17T21:33:46.484Z", + "new_balance":"7860.25", + "value":"-317.21" + } + }, + { + "id":"ba837a70-ba7a-431c-b025-4f5504ae858f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T06:42:25.043Z", + "completed":"2017-09-19T06:42:25.043Z", + "new_balance":"7856.55", + "value":"-3.70" + } + }, + { + "id":"5d80e092-4111-4edb-91a9-431065c66618", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T11:49:29.220Z", + "completed":"2017-09-21T11:49:29.220Z", + "new_balance":"7836.97", + "value":"-19.58" + } + }, + { + "id":"c619228a-a08b-4cbd-8d35-0166510d3a58", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T12:51:37.996Z", + "completed":"2017-09-23T12:51:37.996Z", + "new_balance":"7791.46", + "value":"-45.51" + } + }, + { + "id":"f8144f04-1239-4927-b91e-f7c44b57e02f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T10:57:15.429Z", + "completed":"2017-09-24T10:57:15.429Z", + "new_balance":"7784.77", + "value":"-6.69" + } + }, + { + "id":"daa324b8-6a65-4faf-bc04-547ff78a8d20", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:25:52.580Z", + "completed":"2017-09-27T21:25:52.580Z", + "new_balance":"7771.76", + "value":"-13.01" + } + }, + { + "id":"3ff80b07-36fa-4dcd-820d-e35a79a58995", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T19:37:39.324Z", + "completed":"2017-10-01T19:37:39.324Z", + "new_balance":"7758.75", + "value":"-13.01" + } + }, + { + "id":"18c1e259-76ca-440d-a1ec-50d6c803e157", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T11:02:37.782Z", + "completed":"2017-12-01T11:02:37.782Z", + "new_balance":"7713.24", + "value":"-45.51" + } + }, + { + "id":"0696880b-00df-4df1-904b-6e7bad939e2f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T09:31:58.431Z", + "completed":"2017-12-04T09:31:58.431Z", + "new_balance":"7639.31", + "value":"-73.93" + } + }, + { + "id":"d7e47d17-9031-4430-bcec-57ce2c052f22", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T17:16:26.250Z", + "completed":"2017-12-19T17:16:26.250Z", + "new_balance":"7588.21", + "value":"-51.10" + } + }, + { + "id":"14861ebc-b46f-46ed-9440-2f5172265a45", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T09:20:59.792Z", + "completed":"2017-12-24T09:20:59.792Z", + "new_balance":"7581.52", + "value":"-6.69" + } + }, + { + "id":"1e26219e-d5a3-4b05-842b-66dcdb046224", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T19:16:15.627Z", + "completed":"2017-12-24T19:16:15.627Z", + "new_balance":"7577.82", + "value":"-3.70" + } + }, + { + "id":"05633228-44b9-439e-a353-4878a39e5cb8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T05:14:32.772Z", + "completed":"2017-12-28T05:14:32.772Z", + "new_balance":"7260.61", + "value":"-317.21" + } + }, + { + "id":"fb601258-d5c1-4902-a38b-11bea24a0e56", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T08:50:24.384Z", + "completed":"2017-12-28T08:50:24.384Z", + "new_balance":"7218.27", + "value":"-42.34" + } + }, + { + "id":"a45395b3-7b8e-463c-a541-1ddc7402b147", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T17:43:47.436Z", + "completed":"2017-12-28T17:43:47.436Z", + "new_balance":"7054.79", + "value":"-163.48" + } + }, + { + "id":"594b8aa8-92e9-4e76-b7d7-2d4ba4484561", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T00:40:26.963Z", + "completed":"2017-12-29T00:40:26.963Z", + "new_balance":"7051.09", + "value":"-3.70" + } + }, + { + "id":"e280da76-00de-42ee-b769-61bb5595390d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T08:32:40.160Z", + "completed":"2017-12-30T08:32:40.160Z", + "new_balance":"7044.40", + "value":"-6.69" + } + }, + { + "id":"54402aca-f36a-4e4a-8b70-36fc9d8944a7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T13:06:47.984Z", + "completed":"2017-12-30T13:06:47.984Z", + "new_balance":"6998.89", + "value":"-45.51" + } + }, + { + "id":"5b9d1db1-fe2c-4fef-a9b2-836aa6863f24", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T15:00:28.923Z", + "completed":"2017-12-30T15:00:28.923Z", + "new_balance":"6979.31", + "value":"-19.58" + } + }, + { + "id":"12e13484-b35e-45fe-a308-4f78fc6ea0df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T00:11:00.053Z", + "completed":"2016-01-01T00:11:00.053Z", + "new_balance":"7740.58", + "value":"1680.41" + } + }, + { + "id":"579b2f07-5813-4e6f-a05e-e755fdd38945", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T05:09:20.188Z", + "completed":"2016-01-01T05:09:20.188Z", + "new_balance":"8763.00", + "value":"1022.42" + } + }, + { + "id":"a3e95969-90f9-4954-8921-374bc7a5620a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T15:57:56.021Z", + "completed":"2016-01-02T15:57:56.021Z", + "new_balance":"8355.43", + "value":"-407.57" + } + }, + { + "id":"5d0aa51d-2557-4f40-ba79-f71d1259dd9b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T01:54:40.917Z", + "completed":"2016-01-03T01:54:40.917Z", + "new_balance":"8337.81", + "value":"-17.62" + } + }, + { + "id":"f2218939-2439-405b-bfab-951f92dcec19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T12:33:40.515Z", + "completed":"2016-01-03T12:33:40.515Z", + "new_balance":"8291.01", + "value":"-46.80" + } + }, + { + "id":"944b543a-741d-4c6a-8a86-d516284d3a0e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T20:47:14.616Z", + "completed":"2016-01-03T20:47:14.616Z", + "new_balance":"8284.63", + "value":"-6.38" + } + }, + { + "id":"02ed9b49-7e7a-481d-9c92-c0ee6ea46750", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:14:12.225Z", + "completed":"2016-01-04T18:14:12.225Z", + "new_balance":"8273.72", + "value":"-10.91" + } + }, + { + "id":"a3245435-3bbc-4d76-aeb9-30a8a3db4c37", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T14:23:52.905Z", + "completed":"2016-01-05T14:23:52.905Z", + "new_balance":"8266.73", + "value":"-6.99" + } + }, + { + "id":"ad57594e-0c36-4e5d-b358-1bf7deb58003", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T07:33:04.581Z", + "completed":"2016-01-07T07:33:04.581Z", + "new_balance":"8247.57", + "value":"-19.16" + } + }, + { + "id":"185c147c-4d92-4049-9909-e314abf4163c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T16:44:13.888Z", + "completed":"2016-01-07T16:44:13.888Z", + "new_balance":"8222.64", + "value":"-24.93" + } + }, + { + "id":"8a876a37-5222-4821-8b01-414d73671afe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T04:59:21.535Z", + "completed":"2016-01-08T04:59:21.535Z", + "new_balance":"8207.65", + "value":"-14.99" + } + }, + { + "id":"da82c2fe-1357-443e-a97c-263e775a477b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T19:21:14.246Z", + "completed":"2016-01-08T19:21:14.246Z", + "new_balance":"8191.64", + "value":"-16.01" + } + }, + { + "id":"9471ea9a-e860-4984-b718-573a9fe52c04", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T17:36:15.372Z", + "completed":"2016-01-09T17:36:15.372Z", + "new_balance":"8146.58", + "value":"-45.06" + } + }, + { + "id":"edd2491d-73a2-4e36-b332-fab3075f5914", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T21:15:13.300Z", + "completed":"2016-01-09T21:15:13.300Z", + "new_balance":"8117.42", + "value":"-29.16" + } + }, + { + "id":"282a0c4a-22fd-4e65-932d-3bc91d55ddc0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T01:04:04.645Z", + "completed":"2016-01-10T01:04:04.645Z", + "new_balance":"8072.94", + "value":"-44.48" + } + }, + { + "id":"68de0c2e-195e-47b4-9aa4-fbd204c0b6f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T18:24:32.529Z", + "completed":"2016-01-10T18:24:32.529Z", + "new_balance":"7968.22", + "value":"-104.72" + } + }, + { + "id":"3abe6704-85b9-4bc8-bc5b-3cbf4d1ef546", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:14:39.366Z", + "completed":"2016-01-11T02:14:39.366Z", + "new_balance":"7962.45", + "value":"-5.77" + } + }, + { + "id":"a9a2a100-2dcb-41fe-8d4f-95d3ca4614fe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T06:17:53.662Z", + "completed":"2016-01-11T06:17:53.662Z", + "new_balance":"7883.37", + "value":"-79.08" + } + }, + { + "id":"907e908b-f5ae-4b09-95c6-98b3fd35f91c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T06:40:17.275Z", + "completed":"2016-01-11T06:40:17.275Z", + "new_balance":"7974.25", + "value":"90.88" + } + }, + { + "id":"375fb030-9926-4b73-95f7-40ea7e4331c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T11:06:32.699Z", + "completed":"2016-01-12T11:06:32.699Z", + "new_balance":"7964.18", + "value":"-10.07" + } + }, + { + "id":"e704ed28-365e-4095-a959-678100fa36c8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T23:30:13.811Z", + "completed":"2016-01-15T23:30:13.811Z", + "new_balance":"7938.78", + "value":"-25.40" + } + }, + { + "id":"211f1443-477d-42c2-b9ac-340f2dc223ae", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T07:07:48.110Z", + "completed":"2016-01-16T07:07:48.110Z", + "new_balance":"7907.97", + "value":"-30.81" + } + }, + { + "id":"1ea0d3de-e638-4a2b-bf67-a52720b300bd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T14:11:57.517Z", + "completed":"2016-01-17T14:11:57.517Z", + "new_balance":"7893.14", + "value":"-14.83" + } + }, + { + "id":"68ba3d13-cf0a-42f4-ab7d-731228d0170a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T21:36:42.291Z", + "completed":"2016-01-20T21:36:42.291Z", + "new_balance":"7886.15", + "value":"-6.99" + } + }, + { + "id":"0846f58c-878f-4ddc-9c3a-287e4643c29b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T10:41:07.673Z", + "completed":"2016-01-21T10:41:07.673Z", + "new_balance":"7837.37", + "value":"-48.78" + } + }, + { + "id":"63875881-60c4-4b04-ac7f-1f6665a8607f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T05:46:59.114Z", + "completed":"2016-01-23T05:46:59.114Z", + "new_balance":"7639.46", + "value":"-197.91" + } + }, + { + "id":"f01977e4-b8d0-4d0e-ab43-225ee028c7ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:56:32.849Z", + "completed":"2016-02-01T02:56:32.849Z", + "new_balance":"8661.88", + "value":"1022.42" + } + }, + { + "id":"b3b18fb1-1568-4da4-9b07-030baa4ed4a3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T01:15:19.132Z", + "completed":"2016-02-03T01:15:19.132Z", + "new_balance":"8498.40", + "value":"-163.48" + } + }, + { + "id":"6ec88435-d1e6-4ac6-a9c3-99ee54089b3e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T11:41:39.803Z", + "completed":"2016-02-03T11:41:39.803Z", + "new_balance":"8090.83", + "value":"-407.57" + } + }, + { + "id":"8e2acbfe-cd4c-4605-bc0c-3249c921f0e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T18:15:04.530Z", + "completed":"2016-02-04T18:15:04.530Z", + "new_balance":"8076.32", + "value":"-14.51" + } + }, + { + "id":"1d0f2192-3f2c-4aea-b75e-18fb193db78f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T23:34:46.848Z", + "completed":"2016-02-05T23:34:46.848Z", + "new_balance":"8069.83", + "value":"-6.49" + } + }, + { + "id":"f0a6737a-303e-4dca-a1db-472c13305615", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T08:24:39.507Z", + "completed":"2016-02-06T08:24:39.507Z", + "new_balance":"8045.03", + "value":"-24.80" + } + }, + { + "id":"f3d9afe0-ef2d-4618-af7c-c4580d2238fa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T12:47:56.292Z", + "completed":"2016-02-07T12:47:56.292Z", + "new_balance":"7940.31", + "value":"-104.72" + } + }, + { + "id":"97a386e4-4888-4f4b-83de-1977b5d89a3a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T13:09:04.312Z", + "completed":"2016-02-07T13:09:04.312Z", + "new_balance":"7911.15", + "value":"-29.16" + } + }, + { + "id":"926bab72-d650-4e02-bb5d-ccf6d306a1cc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T15:27:07.157Z", + "completed":"2016-02-07T15:27:07.157Z", + "new_balance":"7869.80", + "value":"-41.35" + } + }, + { + "id":"b3f335ac-42ff-47d8-8d4d-e62942319cc0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T23:29:51.019Z", + "completed":"2016-02-08T23:29:51.019Z", + "new_balance":"7819.24", + "value":"-50.56" + } + }, + { + "id":"a24a1aa5-073f-40ba-82f3-597224c2f2f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T10:00:06.286Z", + "completed":"2016-02-09T10:00:06.286Z", + "new_balance":"7793.44", + "value":"-25.80" + } + }, + { + "id":"cde0d322-b8f2-4767-b276-f8e11382a408", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T20:35:04.024Z", + "completed":"2016-02-10T20:35:04.024Z", + "new_balance":"7786.45", + "value":"-6.99" + } + }, + { + "id":"bb9779d3-09e1-4d51-9a10-ecbb0cc325c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T18:10:21.720Z", + "completed":"2016-02-12T18:10:21.720Z", + "new_balance":"7751.26", + "value":"-35.19" + } + }, + { + "id":"448e9580-b7e9-4cb5-952e-31bacd306442", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T09:25:08.793Z", + "completed":"2016-02-14T09:25:08.793Z", + "new_balance":"7722.10", + "value":"-29.16" + } + }, + { + "id":"fe4ce81c-085a-43b7-9835-1f3aa9483db6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T13:11:53.132Z", + "completed":"2016-02-16T13:11:53.132Z", + "new_balance":"7716.33", + "value":"-5.77" + } + }, + { + "id":"a646da34-dd04-4da7-82b2-c02cb468ed53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T18:51:25.842Z", + "completed":"2016-02-16T18:51:25.842Z", + "new_balance":"7670.82", + "value":"-45.51" + } + }, + { + "id":"f9c0c1da-e8ba-4329-937e-2af89f9d79d5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T02:49:17.082Z", + "completed":"2016-02-18T02:49:17.082Z", + "new_balance":"7662.42", + "value":"-8.40" + } + }, + { + "id":"5e76b4e2-5f71-4163-b87d-3cd93f9ccf0b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T05:03:44.850Z", + "completed":"2016-02-21T05:03:44.850Z", + "new_balance":"7613.64", + "value":"-48.78" + } + }, + { + "id":"9832163b-acdc-496b-885c-08582c9f05ab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T12:29:35.438Z", + "completed":"2016-02-21T12:29:35.438Z", + "new_balance":"7727.78", + "value":"114.14" + } + }, + { + "id":"43e04817-9080-4caa-a16e-dbd864a0f8aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T22:17:52.402Z", + "completed":"2016-02-27T22:17:52.402Z", + "new_balance":"7529.87", + "value":"-197.91" + } + }, + { + "id":"7fb6681d-a953-42b2-8bae-4ae5be066fb6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T15:51:04.523Z", + "completed":"2016-03-01T15:51:04.523Z", + "new_balance":"8552.29", + "value":"1022.42" + } + }, + { + "id":"cc44e159-ee02-40e6-ae31-6feaad04f3d7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T13:41:17.547Z", + "completed":"2016-03-03T13:41:17.547Z", + "new_balance":"8144.72", + "value":"-407.57" + } + }, + { + "id":"93c25c3b-e603-41dc-adfb-859066a8c09d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T06:02:06.878Z", + "completed":"2016-03-04T06:02:06.878Z", + "new_balance":"8113.91", + "value":"-30.81" + } + }, + { + "id":"0f382fb0-a495-4bd9-8e46-78059b821cd2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T20:16:45.003Z", + "completed":"2016-03-04T20:16:45.003Z", + "new_balance":"8082.46", + "value":"-31.45" + } + }, + { + "id":"860a15a5-c95f-4089-8fca-20ad2b9f016e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T22:56:43.969Z", + "completed":"2016-03-04T22:56:43.969Z", + "new_balance":"8065.46", + "value":"-17.00" + } + }, + { + "id":"f4e3641f-8054-4873-996e-7d40c457e5f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T23:24:41.602Z", + "completed":"2016-03-04T23:24:41.602Z", + "new_balance":"8019.95", + "value":"-45.51" + } + }, + { + "id":"99bd51d1-ab86-4f43-9eb2-5de03c63ec42", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T00:27:37.860Z", + "completed":"2016-03-05T00:27:37.860Z", + "new_balance":"7974.41", + "value":"-45.54" + } + }, + { + "id":"a4f51f76-f4c8-4283-bb47-07c0b3cae153", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T03:22:06.431Z", + "completed":"2016-03-05T03:22:06.431Z", + "new_balance":"7968.64", + "value":"-5.77" + } + }, + { + "id":"15dfce50-f5ff-4650-849c-4a6b1ffa8962", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T08:20:41.948Z", + "completed":"2016-03-05T08:20:41.948Z", + "new_balance":"7954.58", + "value":"-14.06" + } + }, + { + "id":"762f6ddb-770d-49ad-8ec2-1588cdc98ba8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T11:52:17.859Z", + "completed":"2016-03-05T11:52:17.859Z", + "new_balance":"7849.86", + "value":"-104.72" + } + }, + { + "id":"38f80eb6-b86d-4f81-9777-fa432f876700", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T02:08:52.198Z", + "completed":"2016-03-06T02:08:52.198Z", + "new_balance":"7768.07", + "value":"-81.79" + } + }, + { + "id":"92f61221-947c-402a-a4a4-fb3cf9d461a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T20:09:56.213Z", + "completed":"2016-03-06T20:09:56.213Z", + "new_balance":"7668.95", + "value":"-99.12" + } + }, + { + "id":"8ece3b51-d70c-4aa7-97a6-18d66ee5c742", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T05:19:17.731Z", + "completed":"2016-03-07T05:19:17.731Z", + "new_balance":"7663.18", + "value":"-5.77" + } + }, + { + "id":"eafda1e3-94d4-4a04-9ec2-315d4dc826da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T13:05:49.991Z", + "completed":"2016-03-07T13:05:49.991Z", + "new_balance":"7655.57", + "value":"-7.61" + } + }, + { + "id":"9c7244cb-2ce4-476b-821c-75ff30ee633f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T01:53:49.260Z", + "completed":"2016-03-08T01:53:49.260Z", + "new_balance":"7647.96", + "value":"-7.61" + } + }, + { + "id":"f75917ef-6fbf-469d-ae30-7e59820be845", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T16:50:14.039Z", + "completed":"2016-03-08T16:50:14.039Z", + "new_balance":"7639.44", + "value":"-8.52" + } + }, + { + "id":"a4aa1329-6ef7-4772-a7ee-de5e764e9256", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T01:41:58.037Z", + "completed":"2016-03-10T01:41:58.037Z", + "new_balance":"7607.10", + "value":"-32.34" + } + }, + { + "id":"0a7924b0-5fa3-433b-bf5f-521697c80f68", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T03:20:09.600Z", + "completed":"2016-03-11T03:20:09.600Z", + "new_balance":"7594.73", + "value":"-12.37" + } + }, + { + "id":"3188c476-f3ed-4931-a091-40f1c67973a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T12:38:41.218Z", + "completed":"2016-03-11T12:38:41.218Z", + "new_balance":"7570.43", + "value":"-24.30" + } + }, + { + "id":"09c9c617-1afa-4fe9-ae51-769fec466747", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T23:49:41.825Z", + "completed":"2016-03-11T23:49:41.825Z", + "new_balance":"7564.66", + "value":"-5.77" + } + }, + { + "id":"5b7adb01-8156-4764-94c7-a8c1a25e5fa3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T01:05:19.157Z", + "completed":"2016-03-12T01:05:19.157Z", + "new_balance":"7558.89", + "value":"-5.77" + } + }, + { + "id":"0cd98450-381f-44ac-a7ab-ab04509f9722", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T06:50:51.650Z", + "completed":"2016-03-12T06:50:51.650Z", + "new_balance":"7457.63", + "value":"-101.26" + } + }, + { + "id":"e52a8b8c-f3b4-448a-beb5-4bd33f910600", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:56:10.242Z", + "completed":"2016-03-12T15:56:10.242Z", + "new_balance":"7391.45", + "value":"-66.18" + } + }, + { + "id":"00db8c28-99cf-4f36-897c-8a0e5d3a583d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T18:09:36.524Z", + "completed":"2016-03-12T18:09:36.524Z", + "new_balance":"7372.29", + "value":"-19.16" + } + }, + { + "id":"b16f4362-6d31-4a0d-85b2-6dcbe22342d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T02:04:00.075Z", + "completed":"2016-03-13T02:04:00.075Z", + "new_balance":"7329.80", + "value":"-42.49" + } + }, + { + "id":"52090c9f-d4a7-4508-9501-0fc185d4ea46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T23:50:11.338Z", + "completed":"2016-03-13T23:50:11.338Z", + "new_balance":"7324.03", + "value":"-5.77" + } + }, + { + "id":"f441ae31-b9e4-40d9-a363-07974d22af2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T08:14:26.115Z", + "completed":"2016-03-15T08:14:26.115Z", + "new_balance":"7275.14", + "value":"-48.89" + } + }, + { + "id":"855c60a2-2770-43cb-bb1f-7b7ed4e5385b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T19:37:05.779Z", + "completed":"2016-03-15T19:37:05.779Z", + "new_balance":"7232.91", + "value":"-42.23" + } + }, + { + "id":"4e88a945-db8f-4224-ac2e-77fa57c993cd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T17:21:35.359Z", + "completed":"2016-03-17T17:21:35.359Z", + "new_balance":"7188.94", + "value":"-43.97" + } + }, + { + "id":"297e6b10-b4c5-4c0d-a924-2b222793b17f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T23:40:59.267Z", + "completed":"2016-03-18T23:40:59.267Z", + "new_balance":"7091.44", + "value":"-97.50" + } + }, + { + "id":"fb6b72ab-53a7-466f-af98-c4fae4e4747c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T08:05:26.952Z", + "completed":"2016-03-20T08:05:26.952Z", + "new_balance":"6987.12", + "value":"-104.32" + } + }, + { + "id":"91ab516f-6896-47ae-b1ff-0833f1088dd5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T15:09:26.546Z", + "completed":"2016-03-22T15:09:26.546Z", + "new_balance":"6946.80", + "value":"-40.32" + } + }, + { + "id":"34281bb5-efbc-40f2-ba35-fab888504ac8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T02:49:19.231Z", + "completed":"2016-03-25T02:49:19.231Z", + "new_balance":"6941.03", + "value":"-5.77" + } + }, + { + "id":"48087528-7f3d-4657-905b-dcd0fd7026c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T22:54:45.730Z", + "completed":"2016-03-25T22:54:45.730Z", + "new_balance":"6928.02", + "value":"-13.01" + } + }, + { + "id":"3860c33a-53a7-49f7-9904-df2a9d3ce42b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T08:28:30.300Z", + "completed":"2016-03-26T08:28:30.300Z", + "new_balance":"6915.23", + "value":"-12.79" + } + }, + { + "id":"0b00d473-c346-4921-9e17-a3f1e31eaefe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T09:54:25.065Z", + "completed":"2016-03-26T09:54:25.065Z", + "new_balance":"6889.61", + "value":"-25.62" + } + }, + { + "id":"fa9d94ef-911d-4e0e-bae3-c09a47d88d19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:56:44.101Z", + "completed":"2016-03-27T22:56:44.101Z", + "new_balance":"6875.42", + "value":"-14.19" + } + }, + { + "id":"4efbe283-67af-491e-9119-690e8c4273d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T02:23:44.852Z", + "completed":"2016-03-28T02:23:44.852Z", + "new_balance":"6826.64", + "value":"-48.78" + } + }, + { + "id":"aebf24c1-f171-4b97-ac6e-d36080ff7c10", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T13:17:55.519Z", + "completed":"2016-03-31T13:17:55.519Z", + "new_balance":"6628.73", + "value":"-197.91" + } + }, + { + "id":"fb077707-07e0-43fe-a4eb-135801f1e00f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T00:50:42.858Z", + "completed":"2016-04-01T00:50:42.858Z", + "new_balance":"8309.14", + "value":"1680.41" + } + }, + { + "id":"56f84085-a55b-4278-a8d0-accc90367047", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T08:24:47.708Z", + "completed":"2016-04-01T08:24:47.708Z", + "new_balance":"7901.57", + "value":"-407.57" + } + }, + { + "id":"b867135f-be27-417c-afe0-f534557dae91", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T14:48:49.351Z", + "completed":"2016-04-01T14:48:49.351Z", + "new_balance":"8923.99", + "value":"1022.42" + } + }, + { + "id":"a92a61f4-dab7-4a35-83d9-b3457298b38b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T06:53:45.141Z", + "completed":"2016-04-03T06:53:45.141Z", + "new_balance":"8917.61", + "value":"-6.38" + } + }, + { + "id":"ec15738e-533b-4103-a9a6-fe06734728f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T09:32:24.743Z", + "completed":"2016-04-03T09:32:24.743Z", + "new_balance":"8870.81", + "value":"-46.80" + } + }, + { + "id":"b205faa0-ac51-435e-8a33-257e09d14730", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T15:44:29.828Z", + "completed":"2016-04-03T15:44:29.828Z", + "new_balance":"8853.19", + "value":"-17.62" + } + }, + { + "id":"737e2960-2b94-4373-9bd3-aade87215e10", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T02:55:52.681Z", + "completed":"2016-04-05T02:55:52.681Z", + "new_balance":"8846.20", + "value":"-6.99" + } + }, + { + "id":"4f039ea5-e984-47f4-bf83-e5acce6963ec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T13:59:21.381Z", + "completed":"2016-04-05T13:59:21.381Z", + "new_balance":"8835.29", + "value":"-10.91" + } + }, + { + "id":"cba2041e-c279-42cd-ac08-bf25245bfa8f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T09:34:34.602Z", + "completed":"2016-04-06T09:34:34.602Z", + "new_balance":"8810.36", + "value":"-24.93" + } + }, + { + "id":"d0ae9494-ae01-4352-93ab-af7844a408d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T20:49:47.404Z", + "completed":"2016-04-09T20:49:47.404Z", + "new_balance":"8791.20", + "value":"-19.16" + } + }, + { + "id":"4debfaaa-6b00-4f9f-b2b5-b3b0bce70f57", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T21:11:31.635Z", + "completed":"2016-04-10T21:11:31.635Z", + "new_balance":"8776.21", + "value":"-14.99" + } + }, + { + "id":"adba128c-cc75-4cd9-b9a6-e166faf1ebae", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T09:14:22.171Z", + "completed":"2016-04-11T09:14:22.171Z", + "new_balance":"8747.05", + "value":"-29.16" + } + }, + { + "id":"7d6ed210-6ca8-4a2d-957c-740c08686f95", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:42:57.738Z", + "completed":"2016-04-11T14:42:57.738Z", + "new_balance":"8731.04", + "value":"-16.01" + } + }, + { + "id":"f304f72f-1ad5-46ca-b8a1-d2f13d024789", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T03:21:27.738Z", + "completed":"2016-04-13T03:21:27.738Z", + "new_balance":"8626.32", + "value":"-104.72" + } + }, + { + "id":"669ba93c-bb66-4a30-8af2-752ebe20e922", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T15:09:12.644Z", + "completed":"2016-04-13T15:09:12.644Z", + "new_balance":"8581.26", + "value":"-45.06" + } + }, + { + "id":"74cafd0d-7336-42a9-8907-7e84aa075b31", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T09:29:58.267Z", + "completed":"2016-04-15T09:29:58.267Z", + "new_balance":"8536.78", + "value":"-44.48" + } + }, + { + "id":"521cc89b-1f86-4cc3-b305-d6804925993d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T09:08:18.441Z", + "completed":"2016-04-16T09:08:18.441Z", + "new_balance":"8526.71", + "value":"-10.07" + } + }, + { + "id":"a3b6f996-146b-4652-86f5-d8f88b96bde7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T23:18:38.045Z", + "completed":"2016-04-16T23:18:38.045Z", + "new_balance":"8520.94", + "value":"-5.77" + } + }, + { + "id":"cf389369-1e98-4c6a-9929-fb1816a8466d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:36:01.924Z", + "completed":"2016-04-18T16:36:01.924Z", + "new_balance":"8441.86", + "value":"-79.08" + } + }, + { + "id":"5e8ec402-ea36-45e8-88e5-3f2f08876859", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T07:32:34.207Z", + "completed":"2016-04-23T07:32:34.207Z", + "new_balance":"8416.46", + "value":"-25.40" + } + }, + { + "id":"5c6d9667-51db-48dd-83e7-1bb0d4f113f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T06:04:25.466Z", + "completed":"2016-04-24T06:04:25.466Z", + "new_balance":"8401.63", + "value":"-14.83" + } + }, + { + "id":"d2fe3de0-fd93-4c2c-84c2-0393481a81de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T16:26:16.402Z", + "completed":"2016-04-24T16:26:16.402Z", + "new_balance":"8370.82", + "value":"-30.81" + } + }, + { + "id":"96ae7f7b-c219-410a-9c16-856b2fb4d5e1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T06:55:46.806Z", + "completed":"2016-04-26T06:55:46.806Z", + "new_balance":"8363.83", + "value":"-6.99" + } + }, + { + "id":"7f084ee9-1e5e-441f-aba0-5320e705e1a7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T04:54:03.683Z", + "completed":"2016-04-28T04:54:03.683Z", + "new_balance":"8315.05", + "value":"-48.78" + } + }, + { + "id":"9dac4ece-c0dd-4d6c-8fbc-c2041ac54ee9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T19:17:23.490Z", + "completed":"2016-04-28T19:17:23.490Z", + "new_balance":"8117.14", + "value":"-197.91" + } + }, + { + "id":"1292b2c9-b014-4f5a-bac8-2d9ae9f13e02", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T06:05:17.101Z", + "completed":"2016-05-02T06:05:17.101Z", + "new_balance":"7953.66", + "value":"-163.48" + } + }, + { + "id":"14594fac-8971-468e-a7fe-51c911229faa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T13:19:27.339Z", + "completed":"2016-05-02T13:19:27.339Z", + "new_balance":"7546.09", + "value":"-407.57" + } + }, + { + "id":"717558e3-bf57-43c4-8962-3b1151ee3ae5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T16:21:57.724Z", + "completed":"2016-05-02T16:21:57.724Z", + "new_balance":"7539.60", + "value":"-6.49" + } + }, + { + "id":"f52865f9-726f-492c-8a9e-ed625b089285", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T21:36:09.096Z", + "completed":"2016-05-02T21:36:09.096Z", + "new_balance":"7525.09", + "value":"-14.51" + } + }, + { + "id":"07e71ffd-88d6-4cde-9cec-5a54cf12d109", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T01:05:07.449Z", + "completed":"2016-05-06T01:05:07.449Z", + "new_balance":"7500.29", + "value":"-24.80" + } + }, + { + "id":"4c9540b6-6e1c-4589-a696-10994d511980", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T03:22:36.891Z", + "completed":"2016-05-06T03:22:36.891Z", + "new_balance":"7471.13", + "value":"-29.16" + } + }, + { + "id":"fbbdf13a-01cd-4070-ba66-712466f28657", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T07:08:22.277Z", + "completed":"2016-05-07T07:08:22.277Z", + "new_balance":"7429.78", + "value":"-41.35" + } + }, + { + "id":"d6c0bb46-f099-4af8-8339-8f1cd80648be", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T23:07:44.930Z", + "completed":"2016-05-07T23:07:44.930Z", + "new_balance":"7325.06", + "value":"-104.72" + } + }, + { + "id":"5ae0abea-5a62-4a83-b9bb-12a6d22af836", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T05:47:10.908Z", + "completed":"2016-05-09T05:47:10.908Z", + "new_balance":"8347.48", + "value":"1022.42" + } + }, + { + "id":"ae88c499-455d-40ae-8c36-8a982e1ec95f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T06:50:21.251Z", + "completed":"2016-05-14T06:50:21.251Z", + "new_balance":"8321.68", + "value":"-25.80" + } + }, + { + "id":"087d2892-8712-4ad4-a487-c98125a474fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T23:10:45.978Z", + "completed":"2016-05-14T23:10:45.978Z", + "new_balance":"8271.12", + "value":"-50.56" + } + }, + { + "id":"65b84efa-0c85-44dd-b702-3906c6ab913f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T02:24:42.535Z", + "completed":"2016-05-16T02:24:42.535Z", + "new_balance":"8264.13", + "value":"-6.99" + } + }, + { + "id":"adfa6f94-1dab-4740-ad04-d912da6c2a4c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T07:52:49.180Z", + "completed":"2016-05-21T07:52:49.180Z", + "new_balance":"8228.94", + "value":"-35.19" + } + }, + { + "id":"ac688909-ebf9-478a-bd43-6ca884916462", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T09:07:54.030Z", + "completed":"2016-05-23T09:07:54.030Z", + "new_balance":"8199.78", + "value":"-29.16" + } + }, + { + "id":"588f71fc-8bc3-4e96-b663-f44357578997", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T18:44:20.272Z", + "completed":"2016-05-23T18:44:20.272Z", + "new_balance":"8194.01", + "value":"-5.77" + } + }, + { + "id":"85b4a9a9-cdca-4876-b849-14dde223a0f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T00:40:00.311Z", + "completed":"2016-05-24T00:40:00.311Z", + "new_balance":"8148.50", + "value":"-45.51" + } + }, + { + "id":"ec6365ca-568e-47a9-8b45-6ad82f638b9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T05:36:07.666Z", + "completed":"2016-05-27T05:36:07.666Z", + "new_balance":"8140.10", + "value":"-8.40" + } + }, + { + "id":"aa738216-a3e0-436f-b17d-09670a926519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T21:16:59.996Z", + "completed":"2016-05-30T21:16:59.996Z", + "new_balance":"7942.19", + "value":"-197.91" + } + }, + { + "id":"4f25e996-750d-487c-86b7-8d4f5f041578", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T23:29:49.845Z", + "completed":"2016-05-30T23:29:49.845Z", + "new_balance":"7893.41", + "value":"-48.78" + } + }, + { + "id":"db4fb585-890c-4e9c-98dd-f98b5331d4ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T00:24:27.140Z", + "completed":"2016-06-01T00:24:27.140Z", + "new_balance":"7485.84", + "value":"-407.57" + } + }, + { + "id":"390fed6f-58c8-4a5a-a6e6-f9ee99296f16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T02:32:57.976Z", + "completed":"2016-06-01T02:32:57.976Z", + "new_balance":"8508.26", + "value":"1022.42" + } + }, + { + "id":"e7bb0d98-6afd-41c7-b7c4-ece1c2c026d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T04:33:49.072Z", + "completed":"2016-06-04T04:33:49.072Z", + "new_balance":"8491.26", + "value":"-17.00" + } + }, + { + "id":"b92c1b98-56ae-4cb3-bdd2-ae972a0ac98b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:11:34.720Z", + "completed":"2016-06-04T15:11:34.720Z", + "new_balance":"8459.81", + "value":"-31.45" + } + }, + { + "id":"a593fcb8-4536-482b-b737-60454ddbcc51", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T05:56:52.879Z", + "completed":"2016-06-11T05:56:52.879Z", + "new_balance":"8429.00", + "value":"-30.81" + } + }, + { + "id":"b897a6de-eb3b-4886-be78-b710aba2cdbd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T08:22:55.943Z", + "completed":"2016-06-11T08:22:55.943Z", + "new_balance":"8383.49", + "value":"-45.51" + } + }, + { + "id":"331c3ff3-4003-4146-9bb9-206691e58b7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T02:37:28.899Z", + "completed":"2016-06-12T02:37:28.899Z", + "new_balance":"8369.43", + "value":"-14.06" + } + }, + { + "id":"48da9ec8-61da-4131-8f73-454e64775a73", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T08:01:48.300Z", + "completed":"2016-06-12T08:01:48.300Z", + "new_balance":"8363.66", + "value":"-5.77" + } + }, + { + "id":"b1dbb999-7e5f-4ba0-8a1c-69b6de9ba49a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T19:35:00.667Z", + "completed":"2016-06-12T19:35:00.667Z", + "new_balance":"8258.94", + "value":"-104.72" + } + }, + { + "id":"0fb192fa-5b51-48a8-b86c-1bafb171bb8d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T14:35:51.711Z", + "completed":"2016-06-13T14:35:51.711Z", + "new_balance":"8213.40", + "value":"-45.54" + } + }, + { + "id":"c8b08be2-e03f-4fd0-9c52-95c36cafe3ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:53:38.575Z", + "completed":"2016-06-13T22:53:38.575Z", + "new_balance":"8114.28", + "value":"-99.12" + } + }, + { + "id":"87470c06-4c70-4d57-965d-28b0ddbe5b80", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T23:08:34.690Z", + "completed":"2016-06-13T23:08:34.690Z", + "new_balance":"8032.49", + "value":"-81.79" + } + }, + { + "id":"4f783972-d343-416d-8348-dc5a9e1a233c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T04:24:23.049Z", + "completed":"2016-06-14T04:24:23.049Z", + "new_balance":"8026.72", + "value":"-5.77" + } + }, + { + "id":"ace4bdc8-7e07-494a-8ab5-b228fffbe8e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T08:35:20.032Z", + "completed":"2016-06-14T08:35:20.032Z", + "new_balance":"8019.11", + "value":"-7.61" + } + }, + { + "id":"6a735f21-8cfd-4bce-8dce-6a5564f13cf1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T11:48:08.570Z", + "completed":"2016-06-14T11:48:08.570Z", + "new_balance":"8011.50", + "value":"-7.61" + } + }, + { + "id":"4ec0eae8-0065-4e48-8994-bf9dc5421516", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T06:23:31.531Z", + "completed":"2016-06-15T06:23:31.531Z", + "new_balance":"7979.16", + "value":"-32.34" + } + }, + { + "id":"5adeb1a8-a00d-4303-8f06-9aaf6f45ad43", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T09:15:01.548Z", + "completed":"2016-06-15T09:15:01.548Z", + "new_balance":"7970.64", + "value":"-8.52" + } + }, + { + "id":"2d1e40b1-e48d-4c4d-bcac-1502e6f3df94", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T19:16:31.814Z", + "completed":"2016-06-15T19:16:31.814Z", + "new_balance":"7964.87", + "value":"-5.77" + } + }, + { + "id":"343da199-9294-4717-b07d-aea326b8a25c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T03:01:41.904Z", + "completed":"2016-06-16T03:01:41.904Z", + "new_balance":"7940.57", + "value":"-24.30" + } + }, + { + "id":"10247868-3c3f-430b-8421-12bcd3137102", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T02:24:36.322Z", + "completed":"2016-06-17T02:24:36.322Z", + "new_balance":"7928.20", + "value":"-12.37" + } + }, + { + "id":"44b7f80d-59e0-496c-87bd-2f175b843000", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T04:11:03.156Z", + "completed":"2016-06-18T04:11:03.156Z", + "new_balance":"7885.71", + "value":"-42.49" + } + }, + { + "id":"dca27f67-aac6-4b53-b2a7-9c108452b861", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T08:50:16.675Z", + "completed":"2016-06-18T08:50:16.675Z", + "new_balance":"7866.55", + "value":"-19.16" + } + }, + { + "id":"a5e34900-bc40-4dd1-ab3f-84bba85b719e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T09:55:45.670Z", + "completed":"2016-06-18T09:55:45.670Z", + "new_balance":"7860.78", + "value":"-5.77" + } + }, + { + "id":"927a3b59-7060-4a10-986a-188653652653", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T12:04:08.718Z", + "completed":"2016-06-18T12:04:08.718Z", + "new_balance":"7794.60", + "value":"-66.18" + } + }, + { + "id":"3dbb9ec0-b5e6-4989-9780-4b7d75c3c8fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T21:34:49.262Z", + "completed":"2016-06-18T21:34:49.262Z", + "new_balance":"7693.34", + "value":"-101.26" + } + }, + { + "id":"9fc4c8f8-21bf-4e35-be48-e3f504b7a743", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T22:15:49.081Z", + "completed":"2016-06-18T22:15:49.081Z", + "new_balance":"7687.57", + "value":"-5.77" + } + }, + { + "id":"c6f21af2-a8f2-4fe4-8fc7-243886917651", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T02:00:41.059Z", + "completed":"2016-06-19T02:00:41.059Z", + "new_balance":"7645.34", + "value":"-42.23" + } + }, + { + "id":"fdc39b96-a555-4277-8a41-39ff4817fd51", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T13:56:27.988Z", + "completed":"2016-06-19T13:56:27.988Z", + "new_balance":"7596.45", + "value":"-48.89" + } + }, + { + "id":"661574e7-4ef4-4400-bab7-bea69691dc5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T15:03:06.649Z", + "completed":"2016-06-19T15:03:06.649Z", + "new_balance":"7552.48", + "value":"-43.97" + } + }, + { + "id":"44e266b9-a18b-4c82-a7d5-f4a968164cbf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T20:03:31.025Z", + "completed":"2016-06-21T20:03:31.025Z", + "new_balance":"7448.16", + "value":"-104.32" + } + }, + { + "id":"fcc617f3-d6eb-4881-84ad-e2072f7de389", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T22:21:28.105Z", + "completed":"2016-06-21T22:21:28.105Z", + "new_balance":"7350.66", + "value":"-97.50" + } + }, + { + "id":"22648557-6013-4852-9c55-4bac5e2d904c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T00:01:24.558Z", + "completed":"2016-06-22T00:01:24.558Z", + "new_balance":"7310.34", + "value":"-40.32" + } + }, + { + "id":"23240058-1200-49d8-9cf9-117e5c9a75f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T19:13:43.446Z", + "completed":"2016-06-22T19:13:43.446Z", + "new_balance":"7297.33", + "value":"-13.01" + } + }, + { + "id":"1ac9b4a8-95fc-4db3-8bb5-f7196bb31f21", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T23:34:15.470Z", + "completed":"2016-06-22T23:34:15.470Z", + "new_balance":"7291.56", + "value":"-5.77" + } + }, + { + "id":"7fd9295b-ce7c-4568-aa54-6bb11fac6fbe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:10:15.702Z", + "completed":"2016-06-23T16:10:15.702Z", + "new_balance":"7278.77", + "value":"-12.79" + } + }, + { + "id":"3827e677-bc75-4365-95f0-282fce9835f7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T06:40:38.772Z", + "completed":"2016-06-24T06:40:38.772Z", + "new_balance":"7253.15", + "value":"-25.62" + } + }, + { + "id":"d6aacb38-a1b1-461b-8b78-22107f307239", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T10:30:18.306Z", + "completed":"2016-06-26T10:30:18.306Z", + "new_balance":"7238.96", + "value":"-14.19" + } + }, + { + "id":"e11726bf-2d74-4403-abcb-ea8e1af34eb8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T07:57:41.543Z", + "completed":"2016-06-30T07:57:41.543Z", + "new_balance":"7041.05", + "value":"-197.91" + } + }, + { + "id":"1153fed0-4425-4c64-aed5-a7b0a9b980d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T21:31:15.467Z", + "completed":"2016-06-30T21:31:15.467Z", + "new_balance":"6992.27", + "value":"-48.78" + } + }, + { + "id":"e2222585-25e1-4811-9b81-ad3df58a3d39", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T10:23:55.775Z", + "completed":"2016-07-01T10:23:55.775Z", + "new_balance":"8014.69", + "value":"1022.42" + } + }, + { + "id":"6dfa7633-c907-488e-b102-bcb6deae0db0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:03:28.615Z", + "completed":"2016-07-01T18:03:28.615Z", + "new_balance":"9695.10", + "value":"1680.41" + } + }, + { + "id":"fa9dc7de-aaec-4bae-9839-15cf89395a0e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T12:57:21.849Z", + "completed":"2016-07-03T12:57:21.849Z", + "new_balance":"9287.53", + "value":"-407.57" + } + }, + { + "id":"5e9a24d1-0a3c-4b62-82af-68f048a1ba95", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T09:00:26.736Z", + "completed":"2016-07-04T09:00:26.736Z", + "new_balance":"9240.73", + "value":"-46.80" + } + }, + { + "id":"6e69c2a0-9344-4e05-b919-7cf5f2319ea9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T10:46:25.729Z", + "completed":"2016-07-04T10:46:25.729Z", + "new_balance":"9234.35", + "value":"-6.38" + } + }, + { + "id":"3e33e991-a55e-4ab6-91a5-e35f7d59b466", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T12:35:28.951Z", + "completed":"2016-07-04T12:35:28.951Z", + "new_balance":"9216.73", + "value":"-17.62" + } + }, + { + "id":"31c2ebaa-a603-411d-826e-dd1888d62958", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T10:33:15.539Z", + "completed":"2016-07-05T10:33:15.539Z", + "new_balance":"9205.82", + "value":"-10.91" + } + }, + { + "id":"6fef0072-c1a1-4527-b37f-198778360365", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T08:54:56.215Z", + "completed":"2016-07-07T08:54:56.215Z", + "new_balance":"9198.83", + "value":"-6.99" + } + }, + { + "id":"be34db99-4d4c-447d-b267-646a6bfaa54e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T02:19:22.679Z", + "completed":"2016-07-11T02:19:22.679Z", + "new_balance":"9183.84", + "value":"-14.99" + } + }, + { + "id":"9c29a395-b9b7-4ab1-98f5-e583f9eb2142", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T04:22:03.900Z", + "completed":"2016-07-11T04:22:03.900Z", + "new_balance":"9164.68", + "value":"-19.16" + } + }, + { + "id":"955ba6d7-8955-4618-be9c-8fdc5b074cad", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T15:29:24.555Z", + "completed":"2016-07-11T15:29:24.555Z", + "new_balance":"9148.67", + "value":"-16.01" + } + }, + { + "id":"37e96d5a-c787-4fdb-a637-6b9356e8d3da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T17:10:30.414Z", + "completed":"2016-07-11T17:10:30.414Z", + "new_balance":"9123.74", + "value":"-24.93" + } + }, + { + "id":"9d1d6de5-ca8e-424a-96e9-05c181966383", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T21:54:22.000Z", + "completed":"2016-07-11T21:54:22.000Z", + "new_balance":"9094.58", + "value":"-29.16" + } + }, + { + "id":"6bd7f54f-3348-463e-b27c-f1e7312c455d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T07:57:31.992Z", + "completed":"2016-07-13T07:57:31.992Z", + "new_balance":"8989.86", + "value":"-104.72" + } + }, + { + "id":"8774872e-f934-49f5-971e-39189fb7a0ea", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T23:07:58.737Z", + "completed":"2016-07-13T23:07:58.737Z", + "new_balance":"8944.80", + "value":"-45.06" + } + }, + { + "id":"3610d5cf-8331-4ffe-87f8-046c163397a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T00:47:01.805Z", + "completed":"2016-07-16T00:47:01.805Z", + "new_balance":"8900.32", + "value":"-44.48" + } + }, + { + "id":"d0aef306-ed95-4eda-bf9a-f4ec540430b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T21:39:41.083Z", + "completed":"2016-07-16T21:39:41.083Z", + "new_balance":"8991.20", + "value":"90.88" + } + }, + { + "id":"b86e64ba-91fb-4691-905b-bcfb6a3a43f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T04:03:06.276Z", + "completed":"2016-07-17T04:03:06.276Z", + "new_balance":"8985.43", + "value":"-5.77" + } + }, + { + "id":"f942850e-e4e6-482f-87ec-7915338c5632", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:22:35.741Z", + "completed":"2016-07-17T16:22:35.741Z", + "new_balance":"8975.36", + "value":"-10.07" + } + }, + { + "id":"f24f7785-1fa3-4f01-bb3c-70329857dd2e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T17:06:23.551Z", + "completed":"2016-07-19T17:06:23.551Z", + "new_balance":"8896.28", + "value":"-79.08" + } + }, + { + "id":"514ffd14-b1ff-4e5b-a29c-df5670849cbc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T05:47:38.275Z", + "completed":"2016-07-21T05:47:38.275Z", + "new_balance":"8870.88", + "value":"-25.40" + } + }, + { + "id":"a1fee849-0dc6-42ee-a21d-4e7ed1a2072f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T16:02:56.883Z", + "completed":"2016-07-23T16:02:56.883Z", + "new_balance":"8840.07", + "value":"-30.81" + } + }, + { + "id":"b8e22065-51f5-42c4-9bfb-54cdb3362016", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T05:21:59.487Z", + "completed":"2016-07-25T05:21:59.487Z", + "new_balance":"8825.24", + "value":"-14.83" + } + }, + { + "id":"b8231b2d-3c2b-4429-8931-c42975175188", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T22:03:34.479Z", + "completed":"2016-07-27T22:03:34.479Z", + "new_balance":"8818.25", + "value":"-6.99" + } + }, + { + "id":"a21100c8-982d-47af-9cbb-191687cf5d93", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T13:14:24.061Z", + "completed":"2016-07-28T13:14:24.061Z", + "new_balance":"8620.34", + "value":"-197.91" + } + }, + { + "id":"b8929e30-5153-4030-bdee-5c289b658848", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T15:22:52.320Z", + "completed":"2016-07-28T15:22:52.320Z", + "new_balance":"8571.56", + "value":"-48.78" + } + }, + { + "id":"ffe3f81d-1476-4a82-809b-8399f74dcea1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T05:57:14.728Z", + "completed":"2016-08-01T05:57:14.728Z", + "new_balance":"9593.98", + "value":"1022.42" + } + }, + { + "id":"e5aee9b7-ae64-47a8-891e-0899f332c8ff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T03:37:02.755Z", + "completed":"2016-08-03T03:37:02.755Z", + "new_balance":"9430.50", + "value":"-163.48" + } + }, + { + "id":"74c79b2f-ab27-4da7-9a89-0f8c539cea9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:40:50.377Z", + "completed":"2016-08-03T09:40:50.377Z", + "new_balance":"9022.93", + "value":"-407.57" + } + }, + { + "id":"3fe80e11-322e-419a-94d7-0fae08083fdf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T15:25:07.212Z", + "completed":"2016-08-04T15:25:07.212Z", + "new_balance":"9008.42", + "value":"-14.51" + } + }, + { + "id":"9a37d340-abe6-4707-8851-9a1b36243d5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T15:59:28.754Z", + "completed":"2016-08-07T15:59:28.754Z", + "new_balance":"9001.93", + "value":"-6.49" + } + }, + { + "id":"4e539275-1c97-4613-bf72-c016eeb35f33", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T23:02:47.958Z", + "completed":"2016-08-07T23:02:47.958Z", + "new_balance":"8972.77", + "value":"-29.16" + } + }, + { + "id":"9bf30b87-c44d-4e21-9818-14465fc050ad", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T23:05:54.203Z", + "completed":"2016-08-07T23:05:54.203Z", + "new_balance":"8947.97", + "value":"-24.80" + } + }, + { + "id":"299a3d06-70d6-4a06-a019-7bfacceb199a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T00:55:04.298Z", + "completed":"2016-08-08T00:55:04.298Z", + "new_balance":"8906.62", + "value":"-41.35" + } + }, + { + "id":"04218216-9c12-4176-80f0-e5800aeee3d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T09:39:41.011Z", + "completed":"2016-08-08T09:39:41.011Z", + "new_balance":"8801.90", + "value":"-104.72" + } + }, + { + "id":"0f00579f-6a66-46ab-8cbe-7c9a47b018b6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T22:13:51.621Z", + "completed":"2016-08-08T22:13:51.621Z", + "new_balance":"8751.34", + "value":"-50.56" + } + }, + { + "id":"92cd8ee0-8ab0-49bb-b904-5dd72c266dfd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T10:18:09.959Z", + "completed":"2016-08-09T10:18:09.959Z", + "new_balance":"8725.54", + "value":"-25.80" + } + }, + { + "id":"f114e7e0-96e2-4454-a43f-f7bd9fa53ee2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T23:30:56.576Z", + "completed":"2016-08-11T23:30:56.576Z", + "new_balance":"8718.55", + "value":"-6.99" + } + }, + { + "id":"6fd2cf7c-9f9a-4152-8d96-4b21d5c5ad9b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T06:27:31.760Z", + "completed":"2016-08-14T06:27:31.760Z", + "new_balance":"8683.36", + "value":"-35.19" + } + }, + { + "id":"11a3cf76-a79d-40d1-9b21-84d30303ac35", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T21:01:46.069Z", + "completed":"2016-08-15T21:01:46.069Z", + "new_balance":"8654.20", + "value":"-29.16" + } + }, + { + "id":"eb87d410-ff83-4a19-8bdd-9a6e928d5de0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T05:57:45.182Z", + "completed":"2016-08-17T05:57:45.182Z", + "new_balance":"8648.43", + "value":"-5.77" + } + }, + { + "id":"1e40d643-c656-404a-8b5b-6dad9b74a541", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T18:52:47.826Z", + "completed":"2016-08-17T18:52:47.826Z", + "new_balance":"8602.92", + "value":"-45.51" + } + }, + { + "id":"c0461609-48ed-4317-92e2-9dbcca0d867d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T12:00:41.056Z", + "completed":"2016-08-19T12:00:41.056Z", + "new_balance":"8594.52", + "value":"-8.40" + } + }, + { + "id":"b8d15bef-39b9-49ec-a072-9d243b56f2bc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T01:45:14.764Z", + "completed":"2016-08-25T01:45:14.764Z", + "new_balance":"8708.66", + "value":"114.14" + } + }, + { + "id":"04f1887c-ffae-44a1-a80e-5b4fad3e18b8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T09:04:17.481Z", + "completed":"2016-08-28T09:04:17.481Z", + "new_balance":"8510.75", + "value":"-197.91" + } + }, + { + "id":"b7ed2cde-ecaf-4dc6-8d10-73fa2c8241eb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T15:34:11.437Z", + "completed":"2016-08-28T15:34:11.437Z", + "new_balance":"8461.97", + "value":"-48.78" + } + }, + { + "id":"ff4abf07-c07e-4dfa-850c-8e08fd65c699", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T01:02:03.162Z", + "completed":"2016-09-01T01:02:03.162Z", + "new_balance":"9484.39", + "value":"1022.42" + } + }, + { + "id":"8407b9df-fc87-48bc-8324-cf16cb7f6ad7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T01:11:23.790Z", + "completed":"2016-09-03T01:11:23.790Z", + "new_balance":"9076.82", + "value":"-407.57" + } + }, + { + "id":"dfd4891c-9d8f-4cb1-a35c-358a5ea292e8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T03:49:52.193Z", + "completed":"2016-09-04T03:49:52.193Z", + "new_balance":"9045.37", + "value":"-31.45" + } + }, + { + "id":"8bc0d4f9-ea6f-4817-9e01-bb2f07c7d433", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T09:27:22.095Z", + "completed":"2016-09-04T09:27:22.095Z", + "new_balance":"8999.86", + "value":"-45.51" + } + }, + { + "id":"7f7f7c9d-ffbc-4751-95cc-466dcd4d885f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T20:05:57.315Z", + "completed":"2016-09-04T20:05:57.315Z", + "new_balance":"8969.05", + "value":"-30.81" + } + }, + { + "id":"af671919-4f94-4dcb-8a67-dec204b6dc29", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T23:00:32.305Z", + "completed":"2016-09-04T23:00:32.305Z", + "new_balance":"8952.05", + "value":"-17.00" + } + }, + { + "id":"1075033e-54fe-4dbc-addc-e90ad3b025c0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T01:50:52.500Z", + "completed":"2016-09-05T01:50:52.500Z", + "new_balance":"8906.51", + "value":"-45.54" + } + }, + { + "id":"4eb8e894-2434-4ffa-ae80-6253ece2e7de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T02:46:29.473Z", + "completed":"2016-09-05T02:46:29.473Z", + "new_balance":"8900.74", + "value":"-5.77" + } + }, + { + "id":"17e19b08-8466-4ea4-a58b-656f8c11cfac", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T07:04:47.676Z", + "completed":"2016-09-05T07:04:47.676Z", + "new_balance":"8886.68", + "value":"-14.06" + } + }, + { + "id":"aa7b0015-a6fa-48b7-a69c-790a099b2830", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T15:24:20.591Z", + "completed":"2016-09-05T15:24:20.591Z", + "new_balance":"8804.89", + "value":"-81.79" + } + }, + { + "id":"11eddfc8-5073-4cce-a96a-99e91e2f427f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T15:24:37.302Z", + "completed":"2016-09-05T15:24:37.302Z", + "new_balance":"8700.17", + "value":"-104.72" + } + }, + { + "id":"bbac878d-7768-42a5-a9f7-37b476347c7d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T19:13:05.634Z", + "completed":"2016-09-05T19:13:05.634Z", + "new_balance":"8601.05", + "value":"-99.12" + } + }, + { + "id":"66b81f9f-799f-480c-a6f7-e5eebed11f97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T02:03:09.926Z", + "completed":"2016-09-07T02:03:09.926Z", + "new_balance":"8595.28", + "value":"-5.77" + } + }, + { + "id":"09482c02-03e2-4857-99ab-053f0a38268f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T08:02:14.223Z", + "completed":"2016-09-07T08:02:14.223Z", + "new_balance":"8587.67", + "value":"-7.61" + } + }, + { + "id":"cd1a303e-4dcb-4065-ad7d-2e142bf5c29c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T11:15:48.230Z", + "completed":"2016-09-07T11:15:48.230Z", + "new_balance":"8579.15", + "value":"-8.52" + } + }, + { + "id":"49f0c021-5b55-43aa-bd4e-78d0b7b2611e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T14:21:21.226Z", + "completed":"2016-09-07T14:21:21.226Z", + "new_balance":"8571.54", + "value":"-7.61" + } + }, + { + "id":"d4fe3cac-2fba-4d45-b16d-d529f8e7c731", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T05:39:43.842Z", + "completed":"2016-09-10T05:39:43.842Z", + "new_balance":"8539.20", + "value":"-32.34" + } + }, + { + "id":"d1946942-d08c-438d-b3f4-9902c004c546", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T02:34:44.878Z", + "completed":"2016-09-11T02:34:44.878Z", + "new_balance":"8514.90", + "value":"-24.30" + } + }, + { + "id":"5aa6d58b-3a7f-483d-a4c5-78a4b6681cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T09:27:30.811Z", + "completed":"2016-09-11T09:27:30.811Z", + "new_balance":"8502.53", + "value":"-12.37" + } + }, + { + "id":"5e30670f-6994-4bf6-87a2-62b614969502", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T13:32:47.318Z", + "completed":"2016-09-11T13:32:47.318Z", + "new_balance":"8496.76", + "value":"-5.77" + } + }, + { + "id":"7bd33a2b-c0c2-402b-90a7-b40004b3c40f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T04:11:59.317Z", + "completed":"2016-09-12T04:11:59.317Z", + "new_balance":"8490.99", + "value":"-5.77" + } + }, + { + "id":"ac318c87-0685-4f2a-b1bd-ee194cc77a1f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T06:34:14.183Z", + "completed":"2016-09-12T06:34:14.183Z", + "new_balance":"8424.81", + "value":"-66.18" + } + }, + { + "id":"cdc154a8-f1ec-46e8-82f9-0ef926270c87", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T20:22:55.476Z", + "completed":"2016-09-12T20:22:55.476Z", + "new_balance":"8405.65", + "value":"-19.16" + } + }, + { + "id":"0e1d8582-aa03-4f3a-92b7-bb56fc5433db", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T23:16:21.353Z", + "completed":"2016-09-12T23:16:21.353Z", + "new_balance":"8304.39", + "value":"-101.26" + } + }, + { + "id":"1d7bd41e-a814-4fe8-af06-fa5231f3f619", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T21:06:59.681Z", + "completed":"2016-09-13T21:06:59.681Z", + "new_balance":"8261.90", + "value":"-42.49" + } + }, + { + "id":"ae6658c4-8639-4f08-895c-4c1d8a26b392", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T04:56:18.131Z", + "completed":"2016-09-14T04:56:18.131Z", + "new_balance":"8219.67", + "value":"-42.23" + } + }, + { + "id":"e67dd235-5057-451b-8679-8c41f136315c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T17:25:28.911Z", + "completed":"2016-09-14T17:25:28.911Z", + "new_balance":"8213.90", + "value":"-5.77" + } + }, + { + "id":"d8fdadbc-a547-43f6-809a-e8dca7876bd7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T06:39:35.781Z", + "completed":"2016-09-16T06:39:35.781Z", + "new_balance":"8165.01", + "value":"-48.89" + } + }, + { + "id":"a18c5d34-88aa-431e-8492-6d21ad179e7f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T06:15:07.363Z", + "completed":"2016-09-18T06:15:07.363Z", + "new_balance":"8121.04", + "value":"-43.97" + } + }, + { + "id":"ae140b94-bc04-4175-ba31-1ec64d8e15ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T05:13:41.121Z", + "completed":"2016-09-21T05:13:41.121Z", + "new_balance":"8023.54", + "value":"-97.50" + } + }, + { + "id":"13baf905-8f5b-4c6c-83a5-e8935338d762", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T16:26:08.882Z", + "completed":"2016-09-21T16:26:08.882Z", + "new_balance":"7919.22", + "value":"-104.32" + } + }, + { + "id":"82ad89a1-0397-4763-8058-9a38bc35ca07", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T04:40:09.139Z", + "completed":"2016-09-23T04:40:09.139Z", + "new_balance":"7878.90", + "value":"-40.32" + } + }, + { + "id":"ff297378-fae9-4014-9964-8368f816b415", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T06:23:47.529Z", + "completed":"2016-09-24T06:23:47.529Z", + "new_balance":"7873.13", + "value":"-5.77" + } + }, + { + "id":"41ce6892-b54e-42e3-8c04-f4572bdf13bd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T05:06:44.688Z", + "completed":"2016-09-26T05:06:44.688Z", + "new_balance":"7847.51", + "value":"-25.62" + } + }, + { + "id":"c5f8d475-46f2-44c2-ae28-68eeb7841469", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T08:41:06.074Z", + "completed":"2016-09-26T08:41:06.074Z", + "new_balance":"7834.50", + "value":"-13.01" + } + }, + { + "id":"675f79d1-8dd2-4c46-b941-e187a00eddb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T12:20:58.236Z", + "completed":"2016-09-26T12:20:58.236Z", + "new_balance":"7821.71", + "value":"-12.79" + } + }, + { + "id":"e481a28f-4bda-4e64-a50a-ce522768c350", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T05:31:16.133Z", + "completed":"2016-09-27T05:31:16.133Z", + "new_balance":"7807.52", + "value":"-14.19" + } + }, + { + "id":"ff7d2f9e-c4e1-4e92-9316-2848a8efdf24", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T13:58:34.422Z", + "completed":"2016-09-28T13:58:34.422Z", + "new_balance":"7758.74", + "value":"-48.78" + } + }, + { + "id":"f5ace5c7-f371-42cc-a36f-61b96f087523", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T21:45:18.235Z", + "completed":"2016-09-28T21:45:18.235Z", + "new_balance":"7560.83", + "value":"-197.91" + } + }, + { + "id":"3c34884f-9a7e-4bc2-9eb1-3fb149c4c3fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T09:35:51.670Z", + "completed":"2016-10-01T09:35:51.670Z", + "new_balance":"7153.26", + "value":"-407.57" + } + }, + { + "id":"86615fde-54f8-480e-acbb-3fe85182cf44", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:07:36.046Z", + "completed":"2016-10-01T19:07:36.046Z", + "new_balance":"8175.68", + "value":"1022.42" + } + }, + { + "id":"2355c171-0df9-44bd-a1b7-01711df87ea5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T20:31:39.980Z", + "completed":"2016-10-01T20:31:39.980Z", + "new_balance":"9856.09", + "value":"1680.41" + } + }, + { + "id":"6d7ebd3a-3ea0-4cef-8064-e0493257e757", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T15:00:02.492Z", + "completed":"2016-10-03T15:00:02.492Z", + "new_balance":"9809.29", + "value":"-46.80" + } + }, + { + "id":"26d8f056-e7cb-4156-b707-57e14b8c15fd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T15:05:24.591Z", + "completed":"2016-10-03T15:05:24.591Z", + "new_balance":"9802.91", + "value":"-6.38" + } + }, + { + "id":"6c02335f-14dc-4471-9257-925897b01d48", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T21:14:02.783Z", + "completed":"2016-10-03T21:14:02.783Z", + "new_balance":"9785.29", + "value":"-17.62" + } + }, + { + "id":"ace4e2bb-9ca2-45ae-87e7-2ec394bc1128", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T08:08:20.020Z", + "completed":"2016-10-05T08:08:20.020Z", + "new_balance":"9774.38", + "value":"-10.91" + } + }, + { + "id":"831b8065-cd80-4959-8749-4c13ad55b1df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T14:42:13.728Z", + "completed":"2016-10-05T14:42:13.728Z", + "new_balance":"9767.39", + "value":"-6.99" + } + }, + { + "id":"d4c8d8ab-6484-43d7-8ed5-e346593d11ac", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T17:40:59.074Z", + "completed":"2016-10-06T17:40:59.074Z", + "new_balance":"9742.46", + "value":"-24.93" + } + }, + { + "id":"f07a8be6-29fc-4032-a3f8-abe68485db7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T02:41:14.344Z", + "completed":"2016-10-09T02:41:14.344Z", + "new_balance":"9723.30", + "value":"-19.16" + } + }, + { + "id":"c2ab6781-e215-44ca-9d05-cbf40648b089", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:45:43.379Z", + "completed":"2016-10-10T17:45:43.379Z", + "new_balance":"9708.31", + "value":"-14.99" + } + }, + { + "id":"c15ff94c-816c-42c6-be04-d87852e29276", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:33:43.580Z", + "completed":"2016-10-11T09:33:43.580Z", + "new_balance":"9692.30", + "value":"-16.01" + } + }, + { + "id":"f0aaa40c-c115-49ea-a9b1-8ecf27f17bd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T21:44:38.851Z", + "completed":"2016-10-11T21:44:38.851Z", + "new_balance":"9663.14", + "value":"-29.16" + } + }, + { + "id":"0eae1646-6376-4bd0-b1ff-ed7cb9538fdc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T19:44:50.466Z", + "completed":"2016-10-14T19:44:50.466Z", + "new_balance":"9618.08", + "value":"-45.06" + } + }, + { + "id":"df39e2c9-59a8-44d7-95a6-752bf0085396", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T22:37:32.422Z", + "completed":"2016-10-14T22:37:32.422Z", + "new_balance":"9513.36", + "value":"-104.72" + } + }, + { + "id":"89b058b9-5fdf-4e0d-8f22-c2eb7d2023e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T15:38:18.550Z", + "completed":"2016-10-17T15:38:18.550Z", + "new_balance":"9468.88", + "value":"-44.48" + } + }, + { + "id":"5a14549c-f013-4bb2-b5ad-76d62896f39f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T04:03:57.638Z", + "completed":"2016-10-18T04:03:57.638Z", + "new_balance":"9463.11", + "value":"-5.77" + } + }, + { + "id":"2afe4353-5b89-4bbf-9f5a-5ac7104c361f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T13:17:19.649Z", + "completed":"2016-10-18T13:17:19.649Z", + "new_balance":"9384.03", + "value":"-79.08" + } + }, + { + "id":"98b19bb8-45e7-45a2-bcc5-4be77a6c552a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T22:16:46.796Z", + "completed":"2016-10-18T22:16:46.796Z", + "new_balance":"9373.96", + "value":"-10.07" + } + }, + { + "id":"2261244c-824f-4fb4-9f01-30011eda6d2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T18:47:31.489Z", + "completed":"2016-10-23T18:47:31.489Z", + "new_balance":"9348.56", + "value":"-25.40" + } + }, + { + "id":"87a48891-1d05-4991-84b6-3720814d513d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T14:13:40.875Z", + "completed":"2016-10-24T14:13:40.875Z", + "new_balance":"9333.73", + "value":"-14.83" + } + }, + { + "id":"3ce0ce4d-d478-43ed-8f86-1941a552228e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T22:57:38.309Z", + "completed":"2016-10-24T22:57:38.309Z", + "new_balance":"9302.92", + "value":"-30.81" + } + }, + { + "id":"1b02cd0e-a80c-4903-8f56-6c3abc48b471", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T19:52:47.734Z", + "completed":"2016-10-26T19:52:47.734Z", + "new_balance":"9295.93", + "value":"-6.99" + } + }, + { + "id":"4c1478f0-259b-42cc-bd7c-28be6aa7b538", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T08:17:15.519Z", + "completed":"2016-10-30T08:17:15.519Z", + "new_balance":"9098.02", + "value":"-197.91" + } + }, + { + "id":"e6295175-798d-4bc5-8c0c-e71a41c8e5a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:32:17.895Z", + "completed":"2016-10-30T15:32:17.895Z", + "new_balance":"9049.24", + "value":"-48.78" + } + }, + { + "id":"a494c820-b892-4abe-83b5-14f7144dd519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T00:51:59.963Z", + "completed":"2016-11-02T00:51:59.963Z", + "new_balance":"9042.75", + "value":"-6.49" + } + }, + { + "id":"d9b06d02-e51f-4315-81cc-5cd66b975ce4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T10:43:04.689Z", + "completed":"2016-11-02T10:43:04.689Z", + "new_balance":"8635.18", + "value":"-407.57" + } + }, + { + "id":"e792ffbd-adeb-4206-9627-9dff8f125dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T16:22:00.450Z", + "completed":"2016-11-02T16:22:00.450Z", + "new_balance":"8620.67", + "value":"-14.51" + } + }, + { + "id":"8dec409a-e43d-4b98-b60f-4fb993eb091a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T16:30:33.286Z", + "completed":"2016-11-02T16:30:33.286Z", + "new_balance":"8457.19", + "value":"-163.48" + } + }, + { + "id":"628bfd9e-52f1-46e2-84e3-b576e5493859", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T16:10:43.391Z", + "completed":"2016-11-06T16:10:43.391Z", + "new_balance":"8428.03", + "value":"-29.16" + } + }, + { + "id":"3152162b-7d88-49a3-af15-c01456e744a3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T18:49:13.602Z", + "completed":"2016-11-06T18:49:13.602Z", + "new_balance":"8403.23", + "value":"-24.80" + } + }, + { + "id":"14e0f809-bf3a-474e-b4a2-c961a78a95b4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T13:01:19.006Z", + "completed":"2016-11-07T13:01:19.006Z", + "new_balance":"8298.51", + "value":"-104.72" + } + }, + { + "id":"6c6e10da-c0d2-462a-8686-12faed9e01d6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T21:36:21.796Z", + "completed":"2016-11-07T21:36:21.796Z", + "new_balance":"8257.16", + "value":"-41.35" + } + }, + { + "id":"ba4b34e1-6d15-46ca-8744-17b2c2c00e63", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T16:06:30.061Z", + "completed":"2016-11-09T16:06:30.061Z", + "new_balance":"9279.58", + "value":"1022.42" + } + }, + { + "id":"f578118a-40d4-4b07-adfb-38d57df58f9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:47:59.372Z", + "completed":"2016-11-14T01:47:59.372Z", + "new_balance":"9229.02", + "value":"-50.56" + } + }, + { + "id":"891624da-7a3f-4366-b2c5-4124b718b7d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T21:56:53.641Z", + "completed":"2016-11-14T21:56:53.641Z", + "new_balance":"9203.22", + "value":"-25.80" + } + }, + { + "id":"1b2443af-90f8-4236-9321-ca7ada06d8a0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T07:03:16.074Z", + "completed":"2016-11-16T07:03:16.074Z", + "new_balance":"9196.23", + "value":"-6.99" + } + }, + { + "id":"ceb8c67c-808f-42c1-b7dc-9603361d8d43", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T21:49:34.101Z", + "completed":"2016-11-20T21:49:34.101Z", + "new_balance":"9161.04", + "value":"-35.19" + } + }, + { + "id":"df53f159-5623-4df7-ad3a-7e65e4a86791", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T03:00:24.838Z", + "completed":"2016-11-23T03:00:24.838Z", + "new_balance":"9115.53", + "value":"-45.51" + } + }, + { + "id":"34bcf8ab-a3c9-4298-a98f-0542f8addb31", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T03:19:08.495Z", + "completed":"2016-11-23T03:19:08.495Z", + "new_balance":"9086.37", + "value":"-29.16" + } + }, + { + "id":"9f2f2031-c2ad-4d9b-887f-5bbc2df64a09", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T18:55:54.503Z", + "completed":"2016-11-23T18:55:54.503Z", + "new_balance":"9080.60", + "value":"-5.77" + } + }, + { + "id":"87c01220-bfd6-47d8-8729-7781d5969e04", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T05:16:04.035Z", + "completed":"2016-11-28T05:16:04.035Z", + "new_balance":"9072.20", + "value":"-8.40" + } + }, + { + "id":"d6c45050-9bfa-4b75-b77e-218323b2fe99", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T00:05:25.258Z", + "completed":"2016-11-30T00:05:25.258Z", + "new_balance":"8874.29", + "value":"-197.91" + } + }, + { + "id":"31cacd0f-d38e-4bd4-816a-be4398c65a40", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T11:45:46.072Z", + "completed":"2016-11-30T11:45:46.072Z", + "new_balance":"8825.51", + "value":"-48.78" + } + }, + { + "id":"808b8264-33ac-4878-80e4-82d356ec315b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T00:35:17.566Z", + "completed":"2016-12-01T00:35:17.566Z", + "new_balance":"8417.94", + "value":"-407.57" + } + }, + { + "id":"f515bef8-4948-42f3-8738-6250dd8e359b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T13:17:39.634Z", + "completed":"2016-12-01T13:17:39.634Z", + "new_balance":"9440.36", + "value":"1022.42" + } + }, + { + "id":"0113c842-af2e-42f0-85ab-9b249d96698f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T11:00:18.899Z", + "completed":"2016-12-04T11:00:18.899Z", + "new_balance":"9408.91", + "value":"-31.45" + } + }, + { + "id":"b83d151d-63e7-4aa0-a3b2-d9ca9d55cf83", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T11:29:32.254Z", + "completed":"2016-12-04T11:29:32.254Z", + "new_balance":"9391.91", + "value":"-17.00" + } + }, + { + "id":"ffd9515c-bcd1-4dbf-8c5c-259303f422e7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T18:02:51.385Z", + "completed":"2016-12-11T18:02:51.385Z", + "new_balance":"9346.40", + "value":"-45.51" + } + }, + { + "id":"84fa37a6-decb-457f-bd23-df3bd5b521c9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T20:51:38.751Z", + "completed":"2016-12-11T20:51:38.751Z", + "new_balance":"9315.59", + "value":"-30.81" + } + }, + { + "id":"25a21a8e-2934-4327-9b87-e0dccdbd1e7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:25:36.061Z", + "completed":"2016-12-14T03:25:36.061Z", + "new_balance":"9309.82", + "value":"-5.77" + } + }, + { + "id":"6bd3dd1e-c579-40e2-a4b6-69c943aa678d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T04:49:19.297Z", + "completed":"2016-12-14T04:49:19.297Z", + "new_balance":"9228.03", + "value":"-81.79" + } + }, + { + "id":"e25da2ff-f2ea-41e4-a819-ca9555c5a8cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T10:59:37.281Z", + "completed":"2016-12-14T10:59:37.281Z", + "new_balance":"9220.42", + "value":"-7.61" + } + }, + { + "id":"c18d173d-a9e4-4726-abcc-8ff395afa21b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T15:16:42.340Z", + "completed":"2016-12-14T15:16:42.340Z", + "new_balance":"9212.81", + "value":"-7.61" + } + }, + { + "id":"3c44ab72-a604-4da0-a794-0b9f8dbc93c4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T17:49:11.810Z", + "completed":"2016-12-14T17:49:11.810Z", + "new_balance":"9207.04", + "value":"-5.77" + } + }, + { + "id":"2ca1e673-731c-4774-83ca-cdc6f7a8bf61", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T20:07:25.617Z", + "completed":"2016-12-14T20:07:25.617Z", + "new_balance":"9161.50", + "value":"-45.54" + } + }, + { + "id":"d3145c94-f2f9-4869-9214-28e39834f77e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T20:37:38.855Z", + "completed":"2016-12-14T20:37:38.855Z", + "new_balance":"9147.44", + "value":"-14.06" + } + }, + { + "id":"1c730a04-55c1-4422-82fa-08c364e539e8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T20:46:57.565Z", + "completed":"2016-12-14T20:46:57.565Z", + "new_balance":"9042.72", + "value":"-104.72" + } + }, + { + "id":"e50a7e0a-450a-42bb-98aa-1df8132eb927", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T21:29:37.304Z", + "completed":"2016-12-14T21:29:37.304Z", + "new_balance":"8943.60", + "value":"-99.12" + } + }, + { + "id":"1802f755-b3d0-45fa-861a-dc31bb4c3508", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T04:58:08.028Z", + "completed":"2016-12-15T04:58:08.028Z", + "new_balance":"8937.83", + "value":"-5.77" + } + }, + { + "id":"33c789ac-8c14-40fe-bf5a-d12797bc8c13", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T05:19:44.803Z", + "completed":"2016-12-15T05:19:44.803Z", + "new_balance":"8929.31", + "value":"-8.52" + } + }, + { + "id":"57eb6f66-3ca3-4a9c-bc27-b4d2af779ea5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:00:17.333Z", + "completed":"2016-12-15T18:00:17.333Z", + "new_balance":"8896.97", + "value":"-32.34" + } + }, + { + "id":"c0362b0a-5923-48c4-a4a3-6e928452782f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T00:27:08.374Z", + "completed":"2016-12-18T00:27:08.374Z", + "new_balance":"8854.48", + "value":"-42.49" + } + }, + { + "id":"e6c595a3-982b-4495-8a65-e212216eaac1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T04:26:39.790Z", + "completed":"2016-12-18T04:26:39.790Z", + "new_balance":"8753.22", + "value":"-101.26" + } + }, + { + "id":"78f20d52-6044-4633-928b-d327aad9d553", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T09:09:50.427Z", + "completed":"2016-12-18T09:09:50.427Z", + "new_balance":"8734.06", + "value":"-19.16" + } + }, + { + "id":"011b2e19-ff3f-43cb-bf06-a4daf56b54e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T09:35:25.727Z", + "completed":"2016-12-18T09:35:25.727Z", + "new_balance":"8721.69", + "value":"-12.37" + } + }, + { + "id":"8539b7e3-51b1-4d97-bd6b-bf067f9731dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T14:39:55.459Z", + "completed":"2016-12-18T14:39:55.459Z", + "new_balance":"8697.39", + "value":"-24.30" + } + }, + { + "id":"ee0ceafe-b26e-4101-a65f-473ba66785be", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T15:08:10.896Z", + "completed":"2016-12-18T15:08:10.896Z", + "new_balance":"8691.62", + "value":"-5.77" + } + }, + { + "id":"85e76302-00dd-4266-bd18-60d8aaa523a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:34:12.582Z", + "completed":"2016-12-18T20:34:12.582Z", + "new_balance":"8625.44", + "value":"-66.18" + } + }, + { + "id":"e9a40c76-7839-4550-b4c3-ee3798b8caf5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T22:26:37.078Z", + "completed":"2016-12-18T22:26:37.078Z", + "new_balance":"8619.67", + "value":"-5.77" + } + }, + { + "id":"b6343400-aac2-4f31-a664-a1c592a05e5a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:34:53.090Z", + "completed":"2016-12-19T02:34:53.090Z", + "new_balance":"8575.70", + "value":"-43.97" + } + }, + { + "id":"dc9e1f8a-f23a-4dab-99c6-204b86600af9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T11:33:48.652Z", + "completed":"2016-12-19T11:33:48.652Z", + "new_balance":"8533.47", + "value":"-42.23" + } + }, + { + "id":"53508d2a-9642-4f2c-8f3d-f0747d352b55", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T12:09:55.627Z", + "completed":"2016-12-19T12:09:55.627Z", + "new_balance":"8484.58", + "value":"-48.89" + } + }, + { + "id":"5ed7d82d-375f-4a39-88b9-fb85cd68376f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T02:30:26.481Z", + "completed":"2016-12-21T02:30:26.481Z", + "new_balance":"8471.57", + "value":"-13.01" + } + }, + { + "id":"860c2835-4107-4200-9214-0ed2731c8a14", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T05:07:40.336Z", + "completed":"2016-12-21T05:07:40.336Z", + "new_balance":"8431.25", + "value":"-40.32" + } + }, + { + "id":"53dfca3d-3a74-4113-af93-1817e7df86e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T12:14:43.393Z", + "completed":"2016-12-21T12:14:43.393Z", + "new_balance":"8326.93", + "value":"-104.32" + } + }, + { + "id":"718973ee-7e0b-4ae8-83e2-fd6826c0f475", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T20:26:53.255Z", + "completed":"2016-12-21T20:26:53.255Z", + "new_balance":"8321.16", + "value":"-5.77" + } + }, + { + "id":"5dacc77e-58ac-4d74-aec1-06662f2063cf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T22:01:47.958Z", + "completed":"2016-12-21T22:01:47.958Z", + "new_balance":"8223.66", + "value":"-97.50" + } + }, + { + "id":"53c2fdc8-ee72-4f81-a9a6-df5365cd5f52", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T00:07:51.721Z", + "completed":"2016-12-24T00:07:51.721Z", + "new_balance":"8209.47", + "value":"-14.19" + } + }, + { + "id":"2f016236-6a04-4691-8f42-454738da43da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T07:50:48.575Z", + "completed":"2016-12-24T07:50:48.575Z", + "new_balance":"8196.68", + "value":"-12.79" + } + }, + { + "id":"2cc3bf54-0f00-408b-9076-9249a6ada99b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T20:57:11.967Z", + "completed":"2016-12-24T20:57:11.967Z", + "new_balance":"8171.06", + "value":"-25.62" + } + }, + { + "id":"481bf84c-79b9-4318-a91c-0eff955f3c46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T02:14:07.441Z", + "completed":"2016-12-30T02:14:07.441Z", + "new_balance":"7973.15", + "value":"-197.91" + } + }, + { + "id":"19d874fe-82ea-4d21-9032-ddb0a3d173f5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T11:40:47.424Z", + "completed":"2016-12-30T11:40:47.424Z", + "new_balance":"7924.37", + "value":"-48.78" + } + }, + { + "id":"48889522-6e17-49d3-bcd2-048c49ca9ae6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T08:18:32.760Z", + "completed":"2017-01-01T08:18:32.760Z", + "new_balance":"8946.79", + "value":"1022.42" + } + }, + { + "id":"9c197f17-1df4-4418-91aa-1f0557e7cf90", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T11:09:07.822Z", + "completed":"2017-01-01T11:09:07.822Z", + "new_balance":"10627.20", + "value":"1680.41" + } + }, + { + "id":"8a2693fd-1347-49c2-9f8a-a0c78c80a945", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T19:08:10.390Z", + "completed":"2017-01-02T19:08:10.390Z", + "new_balance":"10219.63", + "value":"-407.57" + } + }, + { + "id":"d67173f3-e502-4a26-8d06-966e4f8e7ba6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T05:30:36.767Z", + "completed":"2017-01-03T05:30:36.767Z", + "new_balance":"10172.83", + "value":"-46.80" + } + }, + { + "id":"2a9959a4-dd1a-4f2c-b548-14b168458e6f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T10:50:13.949Z", + "completed":"2017-01-03T10:50:13.949Z", + "new_balance":"10155.21", + "value":"-17.62" + } + }, + { + "id":"57ea1cd2-6bb5-4909-9351-5e2f71640937", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T20:48:00.562Z", + "completed":"2017-01-03T20:48:00.562Z", + "new_balance":"10148.83", + "value":"-6.38" + } + }, + { + "id":"400d520b-f8aa-4e86-bfa4-098d8e4a45cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T00:43:51.690Z", + "completed":"2017-01-04T00:43:51.690Z", + "new_balance":"10137.92", + "value":"-10.91" + } + }, + { + "id":"6ffe3f58-a33c-478a-8b4c-d0f346df605f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T17:23:24.131Z", + "completed":"2017-01-05T17:23:24.131Z", + "new_balance":"10130.93", + "value":"-6.99" + } + }, + { + "id":"3e3b6f3f-c51a-452c-a3dc-976bbdfba777", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T11:16:15.614Z", + "completed":"2017-01-07T11:16:15.614Z", + "new_balance":"10106.00", + "value":"-24.93" + } + }, + { + "id":"77a7353a-f188-4368-8ae3-6ced408afac3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T16:26:53.985Z", + "completed":"2017-01-07T16:26:53.985Z", + "new_balance":"10086.84", + "value":"-19.16" + } + }, + { + "id":"d8a883d0-7e3d-433d-af08-61bd5f9f0b3f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T12:09:23.299Z", + "completed":"2017-01-08T12:09:23.299Z", + "new_balance":"10070.83", + "value":"-16.01" + } + }, + { + "id":"6ea3ad5d-2cb8-4964-bb0d-3d17db0f48ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T16:47:16.968Z", + "completed":"2017-01-08T16:47:16.968Z", + "new_balance":"10055.84", + "value":"-14.99" + } + }, + { + "id":"3f8d338e-ebd6-4e06-8a1c-2be079868866", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T18:40:42.391Z", + "completed":"2017-01-09T18:40:42.391Z", + "new_balance":"10026.68", + "value":"-29.16" + } + }, + { + "id":"fc3f7077-9931-465b-82c5-87bce1f1e7ba", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T22:38:07.128Z", + "completed":"2017-01-09T22:38:07.128Z", + "new_balance":"9981.62", + "value":"-45.06" + } + }, + { + "id":"81afc404-ab4c-4a8d-8672-bcde08547a20", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T15:20:28.766Z", + "completed":"2017-01-10T15:20:28.766Z", + "new_balance":"9876.90", + "value":"-104.72" + } + }, + { + "id":"fc4767f7-70ff-41e6-98c4-975ca444ddd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T22:34:01.153Z", + "completed":"2017-01-10T22:34:01.153Z", + "new_balance":"9832.42", + "value":"-44.48" + } + }, + { + "id":"1c51518b-31e7-4f90-912a-d8a2237d5e91", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T07:16:47.026Z", + "completed":"2017-01-11T07:16:47.026Z", + "new_balance":"9826.65", + "value":"-5.77" + } + }, + { + "id":"a35245db-f61b-4c5d-8403-2b8826a45a03", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T18:58:27.401Z", + "completed":"2017-01-11T18:58:27.401Z", + "new_balance":"9917.53", + "value":"90.88" + } + }, + { + "id":"041afaa5-d08c-4cd9-b698-0c98bfbb25e6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T19:21:31.584Z", + "completed":"2017-01-11T19:21:31.584Z", + "new_balance":"9838.45", + "value":"-79.08" + } + }, + { + "id":"a8ca563c-b33b-4a74-ba04-c53caa5e55d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T05:53:29.312Z", + "completed":"2017-01-12T05:53:29.312Z", + "new_balance":"9828.38", + "value":"-10.07" + } + }, + { + "id":"01dad9df-83a6-40a1-98d3-06916e2bc156", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T13:18:56.150Z", + "completed":"2017-01-15T13:18:56.150Z", + "new_balance":"9802.98", + "value":"-25.40" + } + }, + { + "id":"a6a8357b-8037-4063-9d8f-51ab05755b79", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T06:30:00.182Z", + "completed":"2017-01-16T06:30:00.182Z", + "new_balance":"9772.17", + "value":"-30.81" + } + }, + { + "id":"b81db83a-d784-4935-9e35-2c65a56a247c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:24:06.700Z", + "completed":"2017-01-17T18:24:06.700Z", + "new_balance":"9757.34", + "value":"-14.83" + } + }, + { + "id":"9a0882f2-a83d-4336-9cc6-70c5b2908ed9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T15:47:30.269Z", + "completed":"2017-01-20T15:47:30.269Z", + "new_balance":"9750.35", + "value":"-6.99" + } + }, + { + "id":"a3d6603f-1622-46b8-a557-a90485344fec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T11:03:34.914Z", + "completed":"2017-01-21T11:03:34.914Z", + "new_balance":"9701.57", + "value":"-48.78" + } + }, + { + "id":"3addf1d5-df7f-42b9-b810-94b817668c55", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T02:15:06.986Z", + "completed":"2017-01-23T02:15:06.986Z", + "new_balance":"9503.66", + "value":"-197.91" + } + }, + { + "id":"0f01112a-1a3b-4511-82f6-70d415735864", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T00:11:03.265Z", + "completed":"2017-02-01T00:11:03.265Z", + "new_balance":"10526.08", + "value":"1022.42" + } + }, + { + "id":"4bddcf35-7983-4af5-b2c3-8108068a9556", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T21:53:10.485Z", + "completed":"2017-02-03T21:53:10.485Z", + "new_balance":"10118.51", + "value":"-407.57" + } + }, + { + "id":"37fc49d0-7df7-453f-8d32-2a6baaac5919", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T22:12:11.784Z", + "completed":"2017-02-03T22:12:11.784Z", + "new_balance":"9955.03", + "value":"-163.48" + } + }, + { + "id":"3bc7b74f-f3f0-4b05-a1bb-84be43df1bc1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T15:48:41.781Z", + "completed":"2017-02-04T15:48:41.781Z", + "new_balance":"9940.52", + "value":"-14.51" + } + }, + { + "id":"070c5206-be86-4c30-8296-e0efadfd8cf8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T07:34:58.896Z", + "completed":"2017-02-05T07:34:58.896Z", + "new_balance":"9934.03", + "value":"-6.49" + } + }, + { + "id":"c658fda5-3878-46a7-9ca4-9f5137360158", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:10:49.995Z", + "completed":"2017-02-06T14:10:49.995Z", + "new_balance":"9909.23", + "value":"-24.80" + } + }, + { + "id":"d60cdb95-2c89-4688-bbb1-927d6c4c45b9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T08:32:07.099Z", + "completed":"2017-02-07T08:32:07.099Z", + "new_balance":"9804.51", + "value":"-104.72" + } + }, + { + "id":"398fedfb-3ac6-4f6d-b19a-39518f66d68f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T10:04:24.205Z", + "completed":"2017-02-07T10:04:24.205Z", + "new_balance":"9775.35", + "value":"-29.16" + } + }, + { + "id":"4cd7d433-cc9a-46c6-a4a1-e22a4ebbfc25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T23:20:49.345Z", + "completed":"2017-02-07T23:20:49.345Z", + "new_balance":"9734.00", + "value":"-41.35" + } + }, + { + "id":"ace378a1-db71-4110-8a9d-ac03b028db2e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:33:38.784Z", + "completed":"2017-02-08T07:33:38.784Z", + "new_balance":"9683.44", + "value":"-50.56" + } + }, + { + "id":"3d4548ff-81ff-4144-b8aa-65b1085bb78e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T01:51:00.411Z", + "completed":"2017-02-09T01:51:00.411Z", + "new_balance":"9657.64", + "value":"-25.80" + } + }, + { + "id":"07b89146-827a-496c-b019-56eaa4637a7f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T20:45:34.806Z", + "completed":"2017-02-10T20:45:34.806Z", + "new_balance":"9650.65", + "value":"-6.99" + } + }, + { + "id":"994625a0-7aa5-4b0f-8cad-f68f4e4f6262", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T05:49:44.406Z", + "completed":"2017-02-12T05:49:44.406Z", + "new_balance":"9615.46", + "value":"-35.19" + } + }, + { + "id":"4a3493b8-1dbb-4a2f-8a5e-c81bbc497f42", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T07:30:33.374Z", + "completed":"2017-02-14T07:30:33.374Z", + "new_balance":"9586.30", + "value":"-29.16" + } + }, + { + "id":"46a2f49b-42dc-48c0-9d7c-1b64d1d7a566", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T02:44:52.144Z", + "completed":"2017-02-16T02:44:52.144Z", + "new_balance":"9580.53", + "value":"-5.77" + } + }, + { + "id":"5645f1f3-6284-47b4-9211-aca2a3e4b8fd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T18:22:37.078Z", + "completed":"2017-02-16T18:22:37.078Z", + "new_balance":"9535.02", + "value":"-45.51" + } + }, + { + "id":"34f137aa-d007-4283-ba52-d75cb4c7be1e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T15:35:35.564Z", + "completed":"2017-02-18T15:35:35.564Z", + "new_balance":"9526.62", + "value":"-8.40" + } + }, + { + "id":"91f9f466-ce1c-4abd-8d5d-ffd7e3b2f900", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T04:45:43.285Z", + "completed":"2017-02-21T04:45:43.285Z", + "new_balance":"9477.84", + "value":"-48.78" + } + }, + { + "id":"49f12346-1f8a-48d0-bb8f-f9c13b4d4a52", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T19:16:08.239Z", + "completed":"2017-02-21T19:16:08.239Z", + "new_balance":"9591.98", + "value":"114.14" + } + }, + { + "id":"bac9d910-60d0-48ad-bf2e-d1ae1fd90950", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:21:56.245Z", + "completed":"2017-02-27T17:21:56.245Z", + "new_balance":"9394.07", + "value":"-197.91" + } + }, + { + "id":"4d06ee4c-daf9-47d3-a63b-4fb0bdf27d6c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T00:26:31.439Z", + "completed":"2017-03-01T00:26:31.439Z", + "new_balance":"10416.49", + "value":"1022.42" + } + }, + { + "id":"571b36a0-4024-46ae-85cc-4ef46dc79463", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T07:00:44.597Z", + "completed":"2017-03-03T07:00:44.597Z", + "new_balance":"10008.92", + "value":"-407.57" + } + }, + { + "id":"5190f8ea-cd00-411e-a9b0-e168009adece", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:49:13.940Z", + "completed":"2017-03-04T11:49:13.940Z", + "new_balance":"9978.11", + "value":"-30.81" + } + }, + { + "id":"e8bfbed4-8dfa-4f59-a4a0-c3ae09795547", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T14:20:11.429Z", + "completed":"2017-03-04T14:20:11.429Z", + "new_balance":"9946.66", + "value":"-31.45" + } + }, + { + "id":"6b79cae2-40ec-4495-9290-215d59de8405", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T17:30:31.544Z", + "completed":"2017-03-04T17:30:31.544Z", + "new_balance":"9929.66", + "value":"-17.00" + } + }, + { + "id":"165f0834-2ace-47f5-aa06-8065dd337d77", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T19:52:15.823Z", + "completed":"2017-03-04T19:52:15.823Z", + "new_balance":"9884.15", + "value":"-45.51" + } + }, + { + "id":"9cc4cdfd-3058-49c8-b1ea-150bd15304f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T04:10:02.022Z", + "completed":"2017-03-05T04:10:02.022Z", + "new_balance":"9878.38", + "value":"-5.77" + } + }, + { + "id":"2c5a71a4-91d4-4f8f-9802-c2ba612676a6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T12:26:25.780Z", + "completed":"2017-03-05T12:26:25.780Z", + "new_balance":"9773.66", + "value":"-104.72" + } + }, + { + "id":"a7336134-9033-4065-af6e-666528cf7787", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T12:42:01.310Z", + "completed":"2017-03-05T12:42:01.310Z", + "new_balance":"9759.60", + "value":"-14.06" + } + }, + { + "id":"9019c57e-d8ac-436d-bd85-8b35f7eea0f3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T21:41:16.528Z", + "completed":"2017-03-05T21:41:16.528Z", + "new_balance":"9714.06", + "value":"-45.54" + } + }, + { + "id":"21a90e96-a3df-4012-80e8-17127015eb7e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T16:21:14.569Z", + "completed":"2017-03-06T16:21:14.569Z", + "new_balance":"9632.27", + "value":"-81.79" + } + }, + { + "id":"0d4d71ee-fc07-4eef-8954-bfcb9d636472", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T22:30:51.121Z", + "completed":"2017-03-06T22:30:51.121Z", + "new_balance":"9533.15", + "value":"-99.12" + } + }, + { + "id":"152ab17d-7475-498b-a789-943097568544", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T16:32:04.058Z", + "completed":"2017-03-07T16:32:04.058Z", + "new_balance":"9527.38", + "value":"-5.77" + } + }, + { + "id":"4cebee3e-6abd-4754-947e-cec4894e3a62", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T21:04:06.945Z", + "completed":"2017-03-07T21:04:06.945Z", + "new_balance":"9519.77", + "value":"-7.61" + } + }, + { + "id":"86860030-cece-4183-aba5-9e8e34eef6b1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T12:49:50.937Z", + "completed":"2017-03-08T12:49:50.937Z", + "new_balance":"9512.16", + "value":"-7.61" + } + }, + { + "id":"268c601b-263e-49ba-9d2a-25b7c47dfc01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:40:41.606Z", + "completed":"2017-03-08T16:40:41.606Z", + "new_balance":"9503.64", + "value":"-8.52" + } + }, + { + "id":"f6725ded-a886-4496-a338-61cf41a1f15c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T00:04:09.727Z", + "completed":"2017-03-10T00:04:09.727Z", + "new_balance":"9471.30", + "value":"-32.34" + } + }, + { + "id":"1f6b6bfe-9634-43bf-a38b-ceb8a303e287", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:23:25.753Z", + "completed":"2017-03-11T07:23:25.753Z", + "new_balance":"9458.93", + "value":"-12.37" + } + }, + { + "id":"331e3c0c-b5c1-401d-ae03-7ee7aea98104", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T16:33:14.912Z", + "completed":"2017-03-11T16:33:14.912Z", + "new_balance":"9434.63", + "value":"-24.30" + } + }, + { + "id":"6fd918f9-58cb-418a-94bc-f90cb8fcbc35", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T18:02:53.747Z", + "completed":"2017-03-11T18:02:53.747Z", + "new_balance":"9428.86", + "value":"-5.77" + } + }, + { + "id":"7c079486-b3e6-4b89-a691-72d44eeca95a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:39:20.569Z", + "completed":"2017-03-12T12:39:20.569Z", + "new_balance":"9362.68", + "value":"-66.18" + } + }, + { + "id":"4314fb1c-9c55-4eab-be9b-d0761665a9f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:03:00.993Z", + "completed":"2017-03-12T14:03:00.993Z", + "new_balance":"9343.52", + "value":"-19.16" + } + }, + { + "id":"3512976b-5854-4481-8231-8c5985f45b4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T20:11:03.488Z", + "completed":"2017-03-12T20:11:03.488Z", + "new_balance":"9337.75", + "value":"-5.77" + } + }, + { + "id":"62adaf84-dd22-4ac6-83fa-13d68eb76bf2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:48:16.388Z", + "completed":"2017-03-12T20:48:16.388Z", + "new_balance":"9236.49", + "value":"-101.26" + } + }, + { + "id":"2815a15f-c660-4eb5-95c5-fd5bffeaaab8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T20:07:23.906Z", + "completed":"2017-03-13T20:07:23.906Z", + "new_balance":"9230.72", + "value":"-5.77" + } + }, + { + "id":"66efc008-5a89-455b-999a-bed6f8d0f898", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T21:12:11.260Z", + "completed":"2017-03-13T21:12:11.260Z", + "new_balance":"9188.23", + "value":"-42.49" + } + }, + { + "id":"fdc060f2-a057-4a7d-a907-ca54bf490b00", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T13:06:36.339Z", + "completed":"2017-03-15T13:06:36.339Z", + "new_balance":"9139.34", + "value":"-48.89" + } + }, + { + "id":"a714ddc4-d560-49e8-a339-dcac061c8398", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:59:10.161Z", + "completed":"2017-03-15T20:59:10.161Z", + "new_balance":"9097.11", + "value":"-42.23" + } + }, + { + "id":"4e7521e4-ecb7-4901-9d4e-541da7db90a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T15:48:37.211Z", + "completed":"2017-03-17T15:48:37.211Z", + "new_balance":"9053.14", + "value":"-43.97" + } + }, + { + "id":"062416be-729d-4fa1-b0e4-8ff9cc6d2879", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T22:14:30.861Z", + "completed":"2017-03-18T22:14:30.861Z", + "new_balance":"8955.64", + "value":"-97.50" + } + }, + { + "id":"1bcb43d8-3160-4be7-b3af-e388addc80ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T05:16:43.131Z", + "completed":"2017-03-20T05:16:43.131Z", + "new_balance":"8851.32", + "value":"-104.32" + } + }, + { + "id":"fe2ada6b-f7d0-489b-8920-3eaf2ed2caf3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T01:27:05.473Z", + "completed":"2017-03-22T01:27:05.473Z", + "new_balance":"8811.00", + "value":"-40.32" + } + }, + { + "id":"8e5ac2a8-fbd3-4f27-bce8-2cd36a6d1e27", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T00:23:57.570Z", + "completed":"2017-03-25T00:23:57.570Z", + "new_balance":"8805.23", + "value":"-5.77" + } + }, + { + "id":"9fecb3b0-fec2-4ccb-9557-9913d748c6b3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T11:13:25.300Z", + "completed":"2017-03-25T11:13:25.300Z", + "new_balance":"8792.22", + "value":"-13.01" + } + }, + { + "id":"973141db-6b4b-43b8-a7e8-5b8adffc83a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T08:01:15.253Z", + "completed":"2017-03-26T08:01:15.253Z", + "new_balance":"8766.60", + "value":"-25.62" + } + }, + { + "id":"8b90f49a-e25c-41cd-abac-7ee02d39342f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T12:12:48.423Z", + "completed":"2017-03-26T12:12:48.423Z", + "new_balance":"8753.81", + "value":"-12.79" + } + }, + { + "id":"65fc82a7-3123-4bb5-8f48-66b9dc4731ab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T06:26:54.784Z", + "completed":"2017-03-27T06:26:54.784Z", + "new_balance":"8739.62", + "value":"-14.19" + } + }, + { + "id":"d56dc972-dfdf-4e40-8e36-bbeec76190f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T06:14:23.736Z", + "completed":"2017-03-28T06:14:23.736Z", + "new_balance":"8690.84", + "value":"-48.78" + } + }, + { + "id":"40c9bf2e-81f0-4fea-bbd0-84ee7645de41", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T03:41:33.858Z", + "completed":"2017-03-31T03:41:33.858Z", + "new_balance":"8492.93", + "value":"-197.91" + } + }, + { + "id":"c8efbc47-8a8f-4dcf-a5b4-b51a75bc0972", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T00:04:57.941Z", + "completed":"2017-04-01T00:04:57.941Z", + "new_balance":"10173.34", + "value":"1680.41" + } + }, + { + "id":"59a0cdad-98dd-4f72-a742-292b9bb70012", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T00:36:30.309Z", + "completed":"2017-04-01T00:36:30.309Z", + "new_balance":"11195.76", + "value":"1022.42" + } + }, + { + "id":"6de76e76-cc31-4613-970b-bbee35d2db97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T20:36:47.581Z", + "completed":"2017-04-01T20:36:47.581Z", + "new_balance":"10788.19", + "value":"-407.57" + } + }, + { + "id":"f06970e4-d5bc-4a58-abf6-29d1384307de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T05:49:27.875Z", + "completed":"2017-04-03T05:49:27.875Z", + "new_balance":"10741.39", + "value":"-46.80" + } + }, + { + "id":"41d61556-4333-46f7-ab10-baa970cf0bd9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T08:18:27.549Z", + "completed":"2017-04-03T08:18:27.549Z", + "new_balance":"10723.77", + "value":"-17.62" + } + }, + { + "id":"d7d8f4cc-fb0f-4bc5-ac68-b01317ef671c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T09:42:21.181Z", + "completed":"2017-04-03T09:42:21.181Z", + "new_balance":"10717.39", + "value":"-6.38" + } + }, + { + "id":"20dc3df2-0561-47e1-9769-3bd7aca7b960", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T05:27:14.421Z", + "completed":"2017-04-05T05:27:14.421Z", + "new_balance":"10710.40", + "value":"-6.99" + } + }, + { + "id":"e6d0de85-d78c-4844-9d89-f96d9e5984d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:47:54.551Z", + "completed":"2017-04-05T15:47:54.551Z", + "new_balance":"10699.49", + "value":"-10.91" + } + }, + { + "id":"41ae0136-5b0a-405e-82c7-ad00b762b614", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T16:05:55.626Z", + "completed":"2017-04-06T16:05:55.626Z", + "new_balance":"10674.56", + "value":"-24.93" + } + }, + { + "id":"16cde98d-fdde-4ca1-ac16-70beef0acc16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T10:33:35.983Z", + "completed":"2017-04-09T10:33:35.983Z", + "new_balance":"10655.40", + "value":"-19.16" + } + }, + { + "id":"3edb21e8-10b6-4936-8a53-903aa3c0023d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T05:29:53.926Z", + "completed":"2017-04-10T05:29:53.926Z", + "new_balance":"10640.41", + "value":"-14.99" + } + }, + { + "id":"96550bf7-9a7c-4866-bfed-7256383c0470", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T00:21:45.353Z", + "completed":"2017-04-11T00:21:45.353Z", + "new_balance":"10611.25", + "value":"-29.16" + } + }, + { + "id":"b7cf0300-792a-4ed6-a40e-7fe603787ac4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T18:03:40.594Z", + "completed":"2017-04-11T18:03:40.594Z", + "new_balance":"10595.24", + "value":"-16.01" + } + }, + { + "id":"c6dfe9f8-bd18-4b0d-b805-d94fd68afacd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T05:13:53.215Z", + "completed":"2017-04-13T05:13:53.215Z", + "new_balance":"10550.18", + "value":"-45.06" + } + }, + { + "id":"54c2d3a8-0aec-443a-b31e-58420aaa4119", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T19:45:25.768Z", + "completed":"2017-04-13T19:45:25.768Z", + "new_balance":"10445.46", + "value":"-104.72" + } + }, + { + "id":"b81acea2-9cd3-4dcf-a325-5928fa4893b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T12:32:41.401Z", + "completed":"2017-04-15T12:32:41.401Z", + "new_balance":"10400.98", + "value":"-44.48" + } + }, + { + "id":"c3492f84-2a89-43e7-8d8d-e88855443959", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T02:36:51.185Z", + "completed":"2017-04-16T02:36:51.185Z", + "new_balance":"10395.21", + "value":"-5.77" + } + }, + { + "id":"fbc651ea-d84e-4636-a5f1-31b66f067cc9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T10:27:48.605Z", + "completed":"2017-04-16T10:27:48.605Z", + "new_balance":"10385.14", + "value":"-10.07" + } + }, + { + "id":"1eaaa6a0-9a35-405f-b21b-2c920d191e7c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T03:46:07.701Z", + "completed":"2017-04-18T03:46:07.701Z", + "new_balance":"10306.06", + "value":"-79.08" + } + }, + { + "id":"25079892-6626-4497-ba3f-df109cc59d3b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T18:05:39.771Z", + "completed":"2017-04-23T18:05:39.771Z", + "new_balance":"10280.66", + "value":"-25.40" + } + }, + { + "id":"58238cd2-55b2-440b-8434-12d7bce02f07", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T16:15:58.844Z", + "completed":"2017-04-24T16:15:58.844Z", + "new_balance":"10249.85", + "value":"-30.81" + } + }, + { + "id":"daa0058e-6c1b-4ad3-aa13-36f7d2f3636f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T16:48:15.757Z", + "completed":"2017-04-24T16:48:15.757Z", + "new_balance":"10235.02", + "value":"-14.83" + } + }, + { + "id":"f59c28b1-aa38-4d63-bde4-cf76c47781d7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T02:28:34.108Z", + "completed":"2017-04-26T02:28:34.108Z", + "new_balance":"10228.03", + "value":"-6.99" + } + }, + { + "id":"35374aac-c70a-48ad-bb10-52c10a37ceab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T00:16:02.914Z", + "completed":"2017-04-28T00:16:02.914Z", + "new_balance":"10179.25", + "value":"-48.78" + } + }, + { + "id":"d764909a-cdb2-4bcc-8dc0-1c2c5888a3dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T21:28:22.698Z", + "completed":"2017-04-28T21:28:22.698Z", + "new_balance":"9981.34", + "value":"-197.91" + } + }, + { + "id":"3c17051c-3561-4da5-9c19-6419dad80624", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T00:58:01.724Z", + "completed":"2017-05-02T00:58:01.724Z", + "new_balance":"9966.83", + "value":"-14.51" + } + }, + { + "id":"f6c8066f-3915-4910-a897-503a97b3392c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T10:57:36.707Z", + "completed":"2017-05-02T10:57:36.707Z", + "new_balance":"9803.35", + "value":"-163.48" + } + }, + { + "id":"c70cb887-a777-4de8-8065-8a7a14aad11f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T15:25:43.354Z", + "completed":"2017-05-02T15:25:43.354Z", + "new_balance":"9796.86", + "value":"-6.49" + } + }, + { + "id":"cfb0fdad-e9e1-4e13-ac84-b63058409d0d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T16:25:17.833Z", + "completed":"2017-05-02T16:25:17.833Z", + "new_balance":"9389.29", + "value":"-407.57" + } + }, + { + "id":"b412da75-9bec-4ef6-867a-570c0c7d73fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T04:26:13.084Z", + "completed":"2017-05-06T04:26:13.084Z", + "new_balance":"9364.49", + "value":"-24.80" + } + }, + { + "id":"a96955a2-79b3-4980-bae4-b5d9f1eb5e77", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T21:19:12.678Z", + "completed":"2017-05-06T21:19:12.678Z", + "new_balance":"9335.33", + "value":"-29.16" + } + }, + { + "id":"3be7c34f-9f3f-4481-8b6d-aa3fdbaed978", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T04:20:15.900Z", + "completed":"2017-05-07T04:20:15.900Z", + "new_balance":"9230.61", + "value":"-104.72" + } + }, + { + "id":"b6c523ba-b7d7-4d5f-92af-6ddfaa4322c3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T21:56:27.169Z", + "completed":"2017-05-07T21:56:27.169Z", + "new_balance":"9189.26", + "value":"-41.35" + } + }, + { + "id":"30838ead-bb7c-4702-ad92-72ee8eeba9ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T15:32:01.445Z", + "completed":"2017-05-09T15:32:01.445Z", + "new_balance":"10211.68", + "value":"1022.42" + } + }, + { + "id":"d56e11b0-3e3a-49ca-996f-cb693dacb463", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T17:40:33.482Z", + "completed":"2017-05-14T17:40:33.482Z", + "new_balance":"10161.12", + "value":"-50.56" + } + }, + { + "id":"d9fdbb99-4898-433f-9f4a-b90539dfc04f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T20:15:09.570Z", + "completed":"2017-05-14T20:15:09.570Z", + "new_balance":"10135.32", + "value":"-25.80" + } + }, + { + "id":"8f146660-3b81-4615-9059-1853297665cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T15:47:11.797Z", + "completed":"2017-05-16T15:47:11.797Z", + "new_balance":"10128.33", + "value":"-6.99" + } + }, + { + "id":"e6fe333a-116a-46a2-813d-45d9028559db", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T03:18:09.274Z", + "completed":"2017-05-21T03:18:09.274Z", + "new_balance":"10093.14", + "value":"-35.19" + } + }, + { + "id":"958e04ea-2a1a-4b5d-8cbf-230c6a240922", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T00:46:35.105Z", + "completed":"2017-05-23T00:46:35.105Z", + "new_balance":"10087.37", + "value":"-5.77" + } + }, + { + "id":"1528f700-bc2b-4dd6-b3e4-3441530bad53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T23:52:44.940Z", + "completed":"2017-05-23T23:52:44.940Z", + "new_balance":"10058.21", + "value":"-29.16" + } + }, + { + "id":"79f4004d-1cad-4a98-b9c7-806063605c25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T19:00:37.785Z", + "completed":"2017-05-24T19:00:37.785Z", + "new_balance":"10012.70", + "value":"-45.51" + } + }, + { + "id":"4cf7121e-d886-403d-aae6-55e7e7d91ea0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:19:53.086Z", + "completed":"2017-05-27T07:19:53.086Z", + "new_balance":"10004.30", + "value":"-8.40" + } + }, + { + "id":"d423b926-1979-4975-8804-8d3df642740f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T09:43:29.699Z", + "completed":"2017-05-30T09:43:29.699Z", + "new_balance":"9955.52", + "value":"-48.78" + } + }, + { + "id":"3562e041-932c-455c-bb68-4db8f4b64b75", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T17:33:51.266Z", + "completed":"2017-05-30T17:33:51.266Z", + "new_balance":"9757.61", + "value":"-197.91" + } + }, + { + "id":"15e9e429-f3f5-4fb3-9841-66240154a641", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T00:57:19.922Z", + "completed":"2017-06-01T00:57:19.922Z", + "new_balance":"10780.03", + "value":"1022.42" + } + }, + { + "id":"e7a0ba77-90b1-4641-a1d2-1bba76a57e74", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T06:21:12.470Z", + "completed":"2017-06-01T06:21:12.470Z", + "new_balance":"10372.46", + "value":"-407.57" + } + }, + { + "id":"59570eee-e23b-411d-b170-906f712d96cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T02:08:26.413Z", + "completed":"2017-06-04T02:08:26.413Z", + "new_balance":"10341.01", + "value":"-31.45" + } + }, + { + "id":"92ca3dbe-8c50-454d-953a-f6c0d0b9fe2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T18:09:46.368Z", + "completed":"2017-06-04T18:09:46.368Z", + "new_balance":"10324.01", + "value":"-17.00" + } + }, + { + "id":"9128477b-6d47-4b6c-9c4b-d8fd02dc749d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T01:56:09.566Z", + "completed":"2017-06-11T01:56:09.566Z", + "new_balance":"10278.50", + "value":"-45.51" + } + }, + { + "id":"0f2c8a9c-91b8-4700-8b6f-ba04932d270f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:09:39.942Z", + "completed":"2017-06-11T22:09:39.942Z", + "new_balance":"10247.69", + "value":"-30.81" + } + }, + { + "id":"edc6ddb2-d5ba-4589-9d02-b31ea3d58fb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T07:58:54.107Z", + "completed":"2017-06-12T07:58:54.107Z", + "new_balance":"10233.63", + "value":"-14.06" + } + }, + { + "id":"99989970-a963-4013-baa1-fc5242cc3a97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T11:28:11.491Z", + "completed":"2017-06-12T11:28:11.491Z", + "new_balance":"10128.91", + "value":"-104.72" + } + }, + { + "id":"900b7138-1a8d-4acf-ba34-5ef1ad4c5b36", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T22:20:57.828Z", + "completed":"2017-06-12T22:20:57.828Z", + "new_balance":"10123.14", + "value":"-5.77" + } + }, + { + "id":"143ee207-a62b-491f-af0c-d4ea0be6f88d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T02:11:06.970Z", + "completed":"2017-06-13T02:11:06.970Z", + "new_balance":"10077.60", + "value":"-45.54" + } + }, + { + "id":"72e024e3-aeb0-43b5-a274-e50c9bc78ec5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T15:12:49.438Z", + "completed":"2017-06-13T15:12:49.438Z", + "new_balance":"9978.48", + "value":"-99.12" + } + }, + { + "id":"f2bd815b-37bc-44b4-9548-29ea2a139c19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T15:56:32.766Z", + "completed":"2017-06-13T15:56:32.766Z", + "new_balance":"9896.69", + "value":"-81.79" + } + }, + { + "id":"1c12895a-9523-47f9-b1e6-cde4dc3543c1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T00:42:56.220Z", + "completed":"2017-06-14T00:42:56.220Z", + "new_balance":"9889.08", + "value":"-7.61" + } + }, + { + "id":"71e299da-c8b3-4731-b0a3-a3b6c425e067", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T13:18:11.017Z", + "completed":"2017-06-14T13:18:11.017Z", + "new_balance":"9883.31", + "value":"-5.77" + } + }, + { + "id":"128a6dec-8abe-4d55-b4cc-894335136958", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T21:45:32.673Z", + "completed":"2017-06-14T21:45:32.673Z", + "new_balance":"9875.70", + "value":"-7.61" + } + }, + { + "id":"c1c97c07-c597-49d3-89b9-d5c3b4083cab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T03:33:19.467Z", + "completed":"2017-06-15T03:33:19.467Z", + "new_balance":"9867.18", + "value":"-8.52" + } + }, + { + "id":"39acb4c1-6520-4b2d-920f-897071612043", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T14:01:55.075Z", + "completed":"2017-06-15T14:01:55.075Z", + "new_balance":"9834.84", + "value":"-32.34" + } + }, + { + "id":"ff861622-fce6-496a-8666-c8d4993e26df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T16:54:44.589Z", + "completed":"2017-06-15T16:54:44.589Z", + "new_balance":"9829.07", + "value":"-5.77" + } + }, + { + "id":"fea52f84-6779-4be9-92a0-000015fcb551", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T21:09:12.146Z", + "completed":"2017-06-16T21:09:12.146Z", + "new_balance":"9804.77", + "value":"-24.30" + } + }, + { + "id":"65942e55-6953-4706-b941-151f729c612b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T01:45:38.718Z", + "completed":"2017-06-17T01:45:38.718Z", + "new_balance":"9792.40", + "value":"-12.37" + } + }, + { + "id":"b31b4bff-0184-49f9-8e69-84f13a12ec69", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T00:49:14.601Z", + "completed":"2017-06-18T00:49:14.601Z", + "new_balance":"9726.22", + "value":"-66.18" + } + }, + { + "id":"84dd6c06-8f52-453a-a8b5-ac8223332fda", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T02:08:48.085Z", + "completed":"2017-06-18T02:08:48.085Z", + "new_balance":"9720.45", + "value":"-5.77" + } + }, + { + "id":"a2e44ec6-d5f6-43cb-be08-48abb30f63ef", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T03:10:05.145Z", + "completed":"2017-06-18T03:10:05.145Z", + "new_balance":"9701.29", + "value":"-19.16" + } + }, + { + "id":"e073b69b-65e1-41a4-8ee0-a699779cf515", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T12:32:50.431Z", + "completed":"2017-06-18T12:32:50.431Z", + "new_balance":"9658.80", + "value":"-42.49" + } + }, + { + "id":"deee1485-00ec-4a77-88a9-79f583fedfc1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T16:24:55.875Z", + "completed":"2017-06-18T16:24:55.875Z", + "new_balance":"9557.54", + "value":"-101.26" + } + }, + { + "id":"b54025ab-b69c-4e83-83b0-5fbf5fba97fc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T18:54:29.024Z", + "completed":"2017-06-18T18:54:29.024Z", + "new_balance":"9551.77", + "value":"-5.77" + } + }, + { + "id":"933bc3d4-ccf2-4217-b02f-46d03417da23", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T01:11:33.975Z", + "completed":"2017-06-19T01:11:33.975Z", + "new_balance":"9502.88", + "value":"-48.89" + } + }, + { + "id":"5b9af6d4-0965-4802-bd8a-06180d1a8c0f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T04:43:21.542Z", + "completed":"2017-06-19T04:43:21.542Z", + "new_balance":"9458.91", + "value":"-43.97" + } + }, + { + "id":"9f51dda5-6c16-42ea-8c1b-58cea0baa037", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:12:17.172Z", + "completed":"2017-06-19T21:12:17.172Z", + "new_balance":"9416.68", + "value":"-42.23" + } + }, + { + "id":"11736261-0844-4e40-b92d-eb6cf13e08ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T01:53:25.848Z", + "completed":"2017-06-21T01:53:25.848Z", + "new_balance":"9319.18", + "value":"-97.50" + } + }, + { + "id":"98c37960-42da-443d-ba9e-59467e1c7ec2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T07:02:55.403Z", + "completed":"2017-06-21T07:02:55.403Z", + "new_balance":"9214.86", + "value":"-104.32" + } + }, + { + "id":"0429a7ed-6eb0-47c2-8653-57c0c353b74a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T10:24:31.327Z", + "completed":"2017-06-22T10:24:31.327Z", + "new_balance":"9201.85", + "value":"-13.01" + } + }, + { + "id":"a40b68cc-c76f-4acc-b716-bb9300203248", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T10:57:11.795Z", + "completed":"2017-06-22T10:57:11.795Z", + "new_balance":"9196.08", + "value":"-5.77" + } + }, + { + "id":"883203b0-ce60-4c49-b350-cfc6a13441f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T12:40:57.146Z", + "completed":"2017-06-22T12:40:57.146Z", + "new_balance":"9155.76", + "value":"-40.32" + } + }, + { + "id":"48746ed7-8615-4186-beb2-0a55b946ee24", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T10:10:15.540Z", + "completed":"2017-06-23T10:10:15.540Z", + "new_balance":"9142.97", + "value":"-12.79" + } + }, + { + "id":"d4bf61de-4095-4f17-a942-b6601881a07b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T13:52:03.412Z", + "completed":"2017-06-24T13:52:03.412Z", + "new_balance":"9117.35", + "value":"-25.62" + } + }, + { + "id":"4f2a8d81-e063-4406-b0c2-7c87e7c7702c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T18:07:24.304Z", + "completed":"2017-06-26T18:07:24.304Z", + "new_balance":"9103.16", + "value":"-14.19" + } + }, + { + "id":"8cb11fed-53e1-47c3-bf05-5498631d5797", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T05:14:45.783Z", + "completed":"2017-06-30T05:14:45.783Z", + "new_balance":"8905.25", + "value":"-197.91" + } + }, + { + "id":"6a8d6b8b-c965-4e63-976a-4e0b7c5484d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:55:31.705Z", + "completed":"2017-06-30T20:55:31.705Z", + "new_balance":"8856.47", + "value":"-48.78" + } + }, + { + "id":"24b8545f-b967-4881-bcfc-e58a70749c50", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T10:35:37.983Z", + "completed":"2017-07-01T10:35:37.983Z", + "new_balance":"10536.88", + "value":"1680.41" + } + }, + { + "id":"0752ee8e-29c3-432e-bb4a-49acc2c2b8f4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T19:00:57.784Z", + "completed":"2017-07-01T19:00:57.784Z", + "new_balance":"11559.30", + "value":"1022.42" + } + }, + { + "id":"beaae88b-c269-49aa-bf45-85d6daad19f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T03:01:45.896Z", + "completed":"2017-07-03T03:01:45.896Z", + "new_balance":"11151.73", + "value":"-407.57" + } + }, + { + "id":"b5f9cc5a-9d75-4663-99e7-d02b7d928b6d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T07:08:32.446Z", + "completed":"2017-07-04T07:08:32.446Z", + "new_balance":"11104.93", + "value":"-46.80" + } + }, + { + "id":"5168a4fa-097c-43f5-a819-af3a84f3facd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T07:25:18.215Z", + "completed":"2017-07-04T07:25:18.215Z", + "new_balance":"11087.31", + "value":"-17.62" + } + }, + { + "id":"f8cd2ab4-e63a-4b9a-8569-2d00238a2218", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T09:02:32.841Z", + "completed":"2017-07-04T09:02:32.841Z", + "new_balance":"11080.93", + "value":"-6.38" + } + }, + { + "id":"bccd01f8-6af3-4a61-9c53-769b07fff9ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T19:28:17.422Z", + "completed":"2017-07-05T19:28:17.422Z", + "new_balance":"11070.02", + "value":"-10.91" + } + }, + { + "id":"a416193c-7157-4a6a-9f47-16dcb204289e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T11:56:55.244Z", + "completed":"2017-07-07T11:56:55.244Z", + "new_balance":"11063.03", + "value":"-6.99" + } + }, + { + "id":"f5f020de-bf85-40ea-b193-52aee485423a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T00:07:41.771Z", + "completed":"2017-07-11T00:07:41.771Z", + "new_balance":"11033.87", + "value":"-29.16" + } + }, + { + "id":"0a1bf786-3112-4f23-8cac-db7d657688e7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T00:48:40.101Z", + "completed":"2017-07-11T00:48:40.101Z", + "new_balance":"11018.88", + "value":"-14.99" + } + }, + { + "id":"9f1c7d62-ea04-4705-a04d-fc1a3f90e7eb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T07:38:08.949Z", + "completed":"2017-07-11T07:38:08.949Z", + "new_balance":"11002.87", + "value":"-16.01" + } + }, + { + "id":"dfd2d7f7-4711-4b43-b8d3-07a3773e6d5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T18:36:07.155Z", + "completed":"2017-07-11T18:36:07.155Z", + "new_balance":"10977.94", + "value":"-24.93" + } + }, + { + "id":"daf31cb8-2728-4de1-abae-83a7ad2bab98", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T19:03:41.392Z", + "completed":"2017-07-11T19:03:41.392Z", + "new_balance":"10958.78", + "value":"-19.16" + } + }, + { + "id":"8665388e-1edf-4fc6-ac28-24caf2e94f25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T06:24:59.238Z", + "completed":"2017-07-13T06:24:59.238Z", + "new_balance":"10913.72", + "value":"-45.06" + } + }, + { + "id":"4be45679-f214-409f-af42-bf8572a5979f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T11:21:41.208Z", + "completed":"2017-07-13T11:21:41.208Z", + "new_balance":"10809.00", + "value":"-104.72" + } + }, + { + "id":"d85975e7-3182-4c1e-bc97-827db3b01b34", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T04:40:26.689Z", + "completed":"2017-07-16T04:40:26.689Z", + "new_balance":"10764.52", + "value":"-44.48" + } + }, + { + "id":"32de7df7-9f6a-4ae1-9ece-f9959dea6ef6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:14:23.445Z", + "completed":"2017-07-16T06:14:23.445Z", + "new_balance":"10855.40", + "value":"90.88" + } + }, + { + "id":"7b8b4b36-e569-4480-bf34-5a24bf239c17", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T00:10:12.863Z", + "completed":"2017-07-17T00:10:12.863Z", + "new_balance":"10845.33", + "value":"-10.07" + } + }, + { + "id":"24e134db-227c-4a59-abd5-4a67fc40cace", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T14:47:54.332Z", + "completed":"2017-07-17T14:47:54.332Z", + "new_balance":"10839.56", + "value":"-5.77" + } + }, + { + "id":"6ad32420-69b0-4590-9eb5-7bbf2334eae2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T18:02:37.675Z", + "completed":"2017-07-19T18:02:37.675Z", + "new_balance":"10760.48", + "value":"-79.08" + } + }, + { + "id":"ee040448-8058-4ab2-8e6f-49342ca04e06", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T16:21:00.770Z", + "completed":"2017-07-21T16:21:00.770Z", + "new_balance":"10735.08", + "value":"-25.40" + } + }, + { + "id":"d8a9858b-5812-4334-8c4b-05d01db9ebee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T16:20:15.823Z", + "completed":"2017-07-23T16:20:15.823Z", + "new_balance":"10704.27", + "value":"-30.81" + } + }, + { + "id":"7e3242b5-0dce-4fea-a3bd-f204623d7fff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:08:06.731Z", + "completed":"2017-07-25T03:08:06.731Z", + "new_balance":"10689.44", + "value":"-14.83" + } + }, + { + "id":"cac56d85-abc5-486f-bbfe-1eeadcaa1791", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T03:22:24.302Z", + "completed":"2017-07-27T03:22:24.302Z", + "new_balance":"10682.45", + "value":"-6.99" + } + }, + { + "id":"59c4e00b-dae6-437b-aa57-4dd3ec409519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T00:53:56.500Z", + "completed":"2017-07-28T00:53:56.500Z", + "new_balance":"10633.67", + "value":"-48.78" + } + }, + { + "id":"6226d6ca-bdd5-48b0-8451-b36513f72e26", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T18:38:17.912Z", + "completed":"2017-07-28T18:38:17.912Z", + "new_balance":"10435.76", + "value":"-197.91" + } + }, + { + "id":"5b2ba2c0-982b-4b9c-9d60-f445cb1914c4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T06:21:34.118Z", + "completed":"2017-08-01T06:21:34.118Z", + "new_balance":"11458.18", + "value":"1022.42" + } + }, + { + "id":"54fb0ac1-81fd-4ba4-beaf-396fe3a000b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T12:37:46.069Z", + "completed":"2017-08-03T12:37:46.069Z", + "new_balance":"11050.61", + "value":"-407.57" + } + }, + { + "id":"d1daf109-788e-46e8-ac3b-5710492cd6f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:23:58.190Z", + "completed":"2017-08-03T17:23:58.190Z", + "new_balance":"10887.13", + "value":"-163.48" + } + }, + { + "id":"c7e40587-f73e-48c7-9dea-05e3beb94741", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T20:11:02.512Z", + "completed":"2017-08-04T20:11:02.512Z", + "new_balance":"10872.62", + "value":"-14.51" + } + }, + { + "id":"0c519dee-32c2-4a27-95e9-4c96fa2471cc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T03:37:10.973Z", + "completed":"2017-08-07T03:37:10.973Z", + "new_balance":"10866.13", + "value":"-6.49" + } + }, + { + "id":"0c22e14d-6001-4e02-a1b6-d357119642c7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T17:52:03.664Z", + "completed":"2017-08-07T17:52:03.664Z", + "new_balance":"10841.33", + "value":"-24.80" + } + }, + { + "id":"41496271-bfd7-4c69-8f5d-f1e78009d727", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T18:23:49.482Z", + "completed":"2017-08-07T18:23:49.482Z", + "new_balance":"10812.17", + "value":"-29.16" + } + }, + { + "id":"f0b0e9be-2585-4c4d-a5fb-420fc640d7ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T00:04:08.181Z", + "completed":"2017-08-08T00:04:08.181Z", + "new_balance":"10707.45", + "value":"-104.72" + } + }, + { + "id":"3f2f0564-67ac-47c7-979a-7e8706627532", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T04:03:45.007Z", + "completed":"2017-08-08T04:03:45.007Z", + "new_balance":"10656.89", + "value":"-50.56" + } + }, + { + "id":"67526128-f79b-47d8-b2d7-97bb8130bf6b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T15:59:40.961Z", + "completed":"2017-08-08T15:59:40.961Z", + "new_balance":"10615.54", + "value":"-41.35" + } + }, + { + "id":"4477e86f-12db-4e64-992d-c510f085c541", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T23:13:00.779Z", + "completed":"2017-08-09T23:13:00.779Z", + "new_balance":"10589.74", + "value":"-25.80" + } + }, + { + "id":"1aa6ed2d-350d-43c5-a57b-a1d2598217b9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T15:10:36.775Z", + "completed":"2017-08-11T15:10:36.775Z", + "new_balance":"10582.75", + "value":"-6.99" + } + }, + { + "id":"b83fdd52-b33e-419e-9394-e33ae42a5fc6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T11:17:24.300Z", + "completed":"2017-08-14T11:17:24.300Z", + "new_balance":"10547.56", + "value":"-35.19" + } + }, + { + "id":"b314f3a1-2837-45b0-b471-4f5ef4a385bc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T06:29:25.322Z", + "completed":"2017-08-15T06:29:25.322Z", + "new_balance":"10518.40", + "value":"-29.16" + } + }, + { + "id":"6777cb70-b7d1-41ee-8ad3-f65b950ad18c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T01:36:24.843Z", + "completed":"2017-08-17T01:36:24.843Z", + "new_balance":"10472.89", + "value":"-45.51" + } + }, + { + "id":"593305e9-d814-49a1-aa9f-54e3ab513e74", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T08:34:12.350Z", + "completed":"2017-08-17T08:34:12.350Z", + "new_balance":"10467.12", + "value":"-5.77" + } + }, + { + "id":"cb0b8fc0-7322-4926-a865-167c19366792", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T19:41:26.186Z", + "completed":"2017-08-19T19:41:26.186Z", + "new_balance":"10458.72", + "value":"-8.40" + } + }, + { + "id":"0037699e-4b35-4225-9912-2895f3c955f7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T05:16:34.813Z", + "completed":"2017-08-25T05:16:34.813Z", + "new_balance":"10572.86", + "value":"114.14" + } + }, + { + "id":"26f25e22-7b9e-4d2c-bb29-771a8d4a9f02", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T04:56:26.498Z", + "completed":"2017-08-28T04:56:26.498Z", + "new_balance":"10524.08", + "value":"-48.78" + } + }, + { + "id":"14d0f464-3d1b-429a-9beb-e17d673fedd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T11:57:12.729Z", + "completed":"2017-08-28T11:57:12.729Z", + "new_balance":"10326.17", + "value":"-197.91" + } + }, + { + "id":"08815fb7-5ef9-408c-ac57-c1eab48ba148", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T11:16:43.044Z", + "completed":"2017-09-01T11:16:43.044Z", + "new_balance":"11348.59", + "value":"1022.42" + } + }, + { + "id":"1ead05d9-7ed5-4d7d-8b83-2c48bd39b015", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T19:36:09.228Z", + "completed":"2017-09-03T19:36:09.228Z", + "new_balance":"10941.02", + "value":"-407.57" + } + }, + { + "id":"fa28ba67-da25-444d-9ee6-0e84b3dd0da9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T11:27:46.272Z", + "completed":"2017-09-04T11:27:46.272Z", + "new_balance":"10895.51", + "value":"-45.51" + } + }, + { + "id":"b40dbb66-eed4-4555-b598-8a4bd4af8dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:22:39.016Z", + "completed":"2017-09-04T19:22:39.016Z", + "new_balance":"10864.06", + "value":"-31.45" + } + }, + { + "id":"e9d0b196-4d16-4b5e-bb6a-d42ca5e4b717", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T21:40:12.787Z", + "completed":"2017-09-04T21:40:12.787Z", + "new_balance":"10833.25", + "value":"-30.81" + } + }, + { + "id":"f344bf43-5bbc-4bba-884d-5dde883d5a6b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T23:08:42.610Z", + "completed":"2017-09-04T23:08:42.610Z", + "new_balance":"10816.25", + "value":"-17.00" + } + }, + { + "id":"c7b4864d-49b1-40e0-a511-df72b202da21", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T05:28:00.940Z", + "completed":"2017-09-05T05:28:00.940Z", + "new_balance":"10734.46", + "value":"-81.79" + } + }, + { + "id":"7eada753-dad7-4b61-be44-1f8156fb5b16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T06:41:57.734Z", + "completed":"2017-09-05T06:41:57.734Z", + "new_balance":"10728.69", + "value":"-5.77" + } + }, + { + "id":"4599df6c-75c1-4e08-bd8d-b1f5ca70031d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T06:44:24.936Z", + "completed":"2017-09-05T06:44:24.936Z", + "new_balance":"10714.63", + "value":"-14.06" + } + }, + { + "id":"766feeae-0a2a-4205-b76a-d33224826b79", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T07:29:27.545Z", + "completed":"2017-09-05T07:29:27.545Z", + "new_balance":"10669.09", + "value":"-45.54" + } + }, + { + "id":"5a0eebbd-ab5b-4567-b547-f66299a9ffa1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T10:54:21.791Z", + "completed":"2017-09-05T10:54:21.791Z", + "new_balance":"10564.37", + "value":"-104.72" + } + }, + { + "id":"5c173071-3148-4c0c-9611-29a087037e6c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T20:48:27.456Z", + "completed":"2017-09-05T20:48:27.456Z", + "new_balance":"10465.25", + "value":"-99.12" + } + }, + { + "id":"a0eebf59-3a51-4b5a-96bd-cce1479b7a8e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T02:49:48.187Z", + "completed":"2017-09-07T02:49:48.187Z", + "new_balance":"10457.64", + "value":"-7.61" + } + }, + { + "id":"d54b598e-5969-415a-8061-9f25baad01cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T06:34:46.753Z", + "completed":"2017-09-07T06:34:46.753Z", + "new_balance":"10451.87", + "value":"-5.77" + } + }, + { + "id":"f7c3afae-23a4-49f3-9302-0cc6bbde4a0a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T17:55:28.146Z", + "completed":"2017-09-07T17:55:28.146Z", + "new_balance":"10443.35", + "value":"-8.52" + } + }, + { + "id":"f17b9375-9650-47a5-ad3e-87635d69f3a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T23:56:28.872Z", + "completed":"2017-09-07T23:56:28.872Z", + "new_balance":"10435.74", + "value":"-7.61" + } + }, + { + "id":"de2812e2-a8d2-4c08-9a10-5c60e90039f8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T18:40:05.928Z", + "completed":"2017-09-10T18:40:05.928Z", + "new_balance":"10403.40", + "value":"-32.34" + } + }, + { + "id":"f0f82d47-7a1b-4e79-b87e-b58dce556090", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T00:22:23.361Z", + "completed":"2017-09-11T00:22:23.361Z", + "new_balance":"10397.63", + "value":"-5.77" + } + }, + { + "id":"74747697-ca67-4023-bb20-3b9fb6d8e6a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T05:54:32.994Z", + "completed":"2017-09-11T05:54:32.994Z", + "new_balance":"10373.33", + "value":"-24.30" + } + }, + { + "id":"0d37e23b-5a03-4da1-8e7b-3814654b1e01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T18:35:36.174Z", + "completed":"2017-09-11T18:35:36.174Z", + "new_balance":"10360.96", + "value":"-12.37" + } + }, + { + "id":"663456c2-d9bd-4ab9-9e7b-db5266597975", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T02:00:47.386Z", + "completed":"2017-09-12T02:00:47.386Z", + "new_balance":"10294.78", + "value":"-66.18" + } + }, + { + "id":"5e0a859b-4400-47a9-8cba-e661555c5c01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T06:38:21.971Z", + "completed":"2017-09-12T06:38:21.971Z", + "new_balance":"10289.01", + "value":"-5.77" + } + }, + { + "id":"d253f8c0-1b92-4e8f-9ba7-ff3b10fee1c9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T12:57:22.297Z", + "completed":"2017-09-12T12:57:22.297Z", + "new_balance":"10269.85", + "value":"-19.16" + } + }, + { + "id":"29f7440d-c9bf-47b5-9062-d0ed37ef64aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T18:44:29.905Z", + "completed":"2017-09-12T18:44:29.905Z", + "new_balance":"10168.59", + "value":"-101.26" + } + }, + { + "id":"bdaccb42-f8ca-42e1-b38a-ab27528f45ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T20:35:18.616Z", + "completed":"2017-09-13T20:35:18.616Z", + "new_balance":"10126.10", + "value":"-42.49" + } + }, + { + "id":"6f69739c-44a9-48c5-a8e5-acdeb5dbf3df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T04:15:12.002Z", + "completed":"2017-09-14T04:15:12.002Z", + "new_balance":"10120.33", + "value":"-5.77" + } + }, + { + "id":"3069ccd5-fa40-4126-be80-62aaac304ebf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:43:16.709Z", + "completed":"2017-09-14T05:43:16.709Z", + "new_balance":"10078.10", + "value":"-42.23" + } + }, + { + "id":"5098b190-19f9-47cf-8fcf-d5d9ab0b3f5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T07:26:16.321Z", + "completed":"2017-09-16T07:26:16.321Z", + "new_balance":"10029.21", + "value":"-48.89" + } + }, + { + "id":"2ea51b73-ebda-49e4-80ed-e6a19f164909", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T11:03:24.138Z", + "completed":"2017-09-18T11:03:24.138Z", + "new_balance":"9985.24", + "value":"-43.97" + } + }, + { + "id":"3f879b45-2e11-4797-8c9c-8acf33fc4a63", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T04:02:09.669Z", + "completed":"2017-09-21T04:02:09.669Z", + "new_balance":"9880.92", + "value":"-104.32" + } + }, + { + "id":"b8a69a9b-5a0e-4907-849f-2f0fee24b765", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T16:08:11.961Z", + "completed":"2017-09-21T16:08:11.961Z", + "new_balance":"9783.42", + "value":"-97.50" + } + }, + { + "id":"71fda03c-200f-42ce-93db-becf404b0372", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T16:25:47.740Z", + "completed":"2017-09-23T16:25:47.740Z", + "new_balance":"9743.10", + "value":"-40.32" + } + }, + { + "id":"b937b5eb-3e7c-4d78-b3d0-e1192e61606b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T22:53:14.236Z", + "completed":"2017-09-24T22:53:14.236Z", + "new_balance":"9737.33", + "value":"-5.77" + } + }, + { + "id":"64b0ad8b-5ab0-4f18-a80a-fdb1fa1b82e6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T03:15:58.112Z", + "completed":"2017-09-26T03:15:58.112Z", + "new_balance":"9724.54", + "value":"-12.79" + } + }, + { + "id":"e7691790-d5e7-4c93-8d34-429f4b6a32a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T15:20:53.252Z", + "completed":"2017-09-26T15:20:53.252Z", + "new_balance":"9711.53", + "value":"-13.01" + } + }, + { + "id":"e9bfd08f-d8d0-40b1-8397-2d58ea6faf7d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T23:45:49.942Z", + "completed":"2017-09-26T23:45:49.942Z", + "new_balance":"9685.91", + "value":"-25.62" + } + }, + { + "id":"063d95e5-2c05-44e8-85ad-9712c3949cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T08:23:31.801Z", + "completed":"2017-09-27T08:23:31.801Z", + "new_balance":"9671.72", + "value":"-14.19" + } + }, + { + "id":"1a48e5c6-d5a7-446e-b38a-28c6a0a846f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T06:27:51.886Z", + "completed":"2017-09-28T06:27:51.886Z", + "new_balance":"9473.81", + "value":"-197.91" + } + }, + { + "id":"057c2db5-92de-4bf5-99b7-a35e28de9128", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T16:24:36.188Z", + "completed":"2017-09-28T16:24:36.188Z", + "new_balance":"9425.03", + "value":"-48.78" + } + }, + { + "id":"f77d7479-7d53-4a6a-a508-01afde30a1b7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T02:26:03.421Z", + "completed":"2017-10-01T02:26:03.421Z", + "new_balance":"11105.44", + "value":"1680.41" + } + }, + { + "id":"08a4e90f-e65a-4833-9943-135bf1735db7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T10:25:49.120Z", + "completed":"2017-10-01T10:25:49.120Z", + "new_balance":"10697.87", + "value":"-407.57" + } + }, + { + "id":"713230ad-59c4-4a15-af7e-ed0ec6886a0a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T19:48:18.116Z", + "completed":"2017-10-01T19:48:18.116Z", + "new_balance":"11720.29", + "value":"1022.42" + } + }, + { + "id":"b37ddee0-0392-4746-a2e0-05ba2f615f54", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:07:00.423Z", + "completed":"2017-10-03T11:07:00.423Z", + "new_balance":"11702.67", + "value":"-17.62" + } + }, + { + "id":"35f3a37e-4270-484d-b5b2-761508eb42cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T17:44:13.750Z", + "completed":"2017-10-03T17:44:13.750Z", + "new_balance":"11655.87", + "value":"-46.80" + } + }, + { + "id":"c2fb4a9b-cc25-4a8b-acfb-96594074126a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T20:00:48.348Z", + "completed":"2017-10-03T20:00:48.348Z", + "new_balance":"11649.49", + "value":"-6.38" + } + }, + { + "id":"09fe0cf0-7b80-4189-8a82-36ec1f037dff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T13:05:01.253Z", + "completed":"2017-10-05T13:05:01.253Z", + "new_balance":"11638.58", + "value":"-10.91" + } + }, + { + "id":"8fc56a75-62c3-4011-b0c9-754bcb6f58d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T18:21:26.964Z", + "completed":"2017-10-05T18:21:26.964Z", + "new_balance":"11631.59", + "value":"-6.99" + } + }, + { + "id":"b29e7891-808c-43fd-9951-7cd6e8428946", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T06:51:43.791Z", + "completed":"2017-10-06T06:51:43.791Z", + "new_balance":"11606.66", + "value":"-24.93" + } + }, + { + "id":"92dd2b73-cf06-4dfa-9015-e090677d52d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T10:05:49.139Z", + "completed":"2017-10-09T10:05:49.139Z", + "new_balance":"11587.50", + "value":"-19.16" + } + }, + { + "id":"14f60b3d-81c2-495d-a792-f5f202aba90a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T08:44:24.503Z", + "completed":"2017-10-10T08:44:24.503Z", + "new_balance":"11572.51", + "value":"-14.99" + } + }, + { + "id":"9bfd4711-594a-47c5-9e96-e2fca83f88e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T02:26:17.874Z", + "completed":"2017-10-11T02:26:17.874Z", + "new_balance":"11556.50", + "value":"-16.01" + } + }, + { + "id":"f1e82924-849c-40e6-82ca-d7d624767ad2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T15:51:17.292Z", + "completed":"2017-10-11T15:51:17.292Z", + "new_balance":"11527.34", + "value":"-29.16" + } + }, + { + "id":"4bf079c9-fc17-420d-be24-ee9c5e521b30", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T11:09:05.566Z", + "completed":"2017-10-14T11:09:05.566Z", + "new_balance":"11422.62", + "value":"-104.72" + } + }, + { + "id":"15429941-9258-451e-ae67-756ec2b5cc46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T14:44:27.075Z", + "completed":"2017-10-14T14:44:27.075Z", + "new_balance":"11377.56", + "value":"-45.06" + } + }, + { + "id":"2277ec8b-2fc7-4ee5-9e1e-1bebb8c81afd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T16:28:07.786Z", + "completed":"2017-10-17T16:28:07.786Z", + "new_balance":"11333.08", + "value":"-44.48" + } + }, + { + "id":"4a830da8-14cc-469e-9d02-1571aec65037", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T14:45:26.534Z", + "completed":"2017-10-18T14:45:26.534Z", + "new_balance":"11323.01", + "value":"-10.07" + } + }, + { + "id":"35a6d9ae-22d7-450a-9984-81018787e2c1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T15:50:29.056Z", + "completed":"2017-10-18T15:50:29.056Z", + "new_balance":"11243.93", + "value":"-79.08" + } + }, + { + "id":"d16a6cb7-4dce-40e9-b9e7-f40f6a5d641d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T21:06:48.707Z", + "completed":"2017-10-18T21:06:48.707Z", + "new_balance":"11238.16", + "value":"-5.77" + } + }, + { + "id":"0b468b53-4e94-4277-95c1-0a14493ea971", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T02:53:04.676Z", + "completed":"2017-10-23T02:53:04.676Z", + "new_balance":"11212.76", + "value":"-25.40" + } + }, + { + "id":"59e97853-b619-4fd9-8502-c4682fd7a18b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T01:43:49.405Z", + "completed":"2017-10-24T01:43:49.405Z", + "new_balance":"11197.93", + "value":"-14.83" + } + }, + { + "id":"2a600041-3a18-418d-b9f2-39d9dd579854", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:46:37.552Z", + "completed":"2017-10-24T15:46:37.552Z", + "new_balance":"11167.12", + "value":"-30.81" + } + }, + { + "id":"bfbfbdb9-2ec1-48cf-a6af-988f8f57bbe7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T23:25:05.005Z", + "completed":"2017-10-26T23:25:05.005Z", + "new_balance":"11160.13", + "value":"-6.99" + } + }, + { + "id":"1b66d4d5-ea51-4613-88c8-dc376ddd3549", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T05:06:56.218Z", + "completed":"2017-10-30T05:06:56.218Z", + "new_balance":"11111.35", + "value":"-48.78" + } + }, + { + "id":"daceddda-dac7-47c1-9e85-cf12eb2f13f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T23:34:36.440Z", + "completed":"2017-10-30T23:34:36.440Z", + "new_balance":"10913.44", + "value":"-197.91" + } + }, + { + "id":"533e2b18-4842-49a0-84ec-f81df091019d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:01:31.607Z", + "completed":"2017-11-02T02:01:31.607Z", + "new_balance":"10906.95", + "value":"-6.49" + } + }, + { + "id":"80543018-5160-4611-9d23-9cec8fda4c41", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T11:17:38.050Z", + "completed":"2017-11-02T11:17:38.050Z", + "new_balance":"10892.44", + "value":"-14.51" + } + }, + { + "id":"4bcc40ea-a04a-4513-a497-9319e982817e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T13:07:47.073Z", + "completed":"2017-11-02T13:07:47.073Z", + "new_balance":"10728.96", + "value":"-163.48" + } + }, + { + "id":"6c28543a-009c-4cd3-b8ba-5587ccd5b975", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T18:46:01.557Z", + "completed":"2017-11-02T18:46:01.557Z", + "new_balance":"10321.39", + "value":"-407.57" + } + }, + { + "id":"038255d5-ba9f-4d5f-8100-bd3ec56ea0f3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T00:39:25.003Z", + "completed":"2017-11-06T00:39:25.003Z", + "new_balance":"10292.23", + "value":"-29.16" + } + }, + { + "id":"69e93949-c187-4fc6-b92e-9486113aa7fe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T02:30:30.934Z", + "completed":"2017-11-06T02:30:30.934Z", + "new_balance":"10267.43", + "value":"-24.80" + } + }, + { + "id":"2a4c922e-5b12-4f6f-8405-3fcc25cb4606", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T00:26:12.983Z", + "completed":"2017-11-07T00:26:12.983Z", + "new_balance":"10162.71", + "value":"-104.72" + } + }, + { + "id":"5e776a4d-36d9-4038-8ffd-a8cd06b76592", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:57:02.886Z", + "completed":"2017-11-07T04:57:02.886Z", + "new_balance":"10121.36", + "value":"-41.35" + } + }, + { + "id":"84786ff3-bc01-4a5e-b952-1f3f95a1bde3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T13:46:05.306Z", + "completed":"2017-11-09T13:46:05.306Z", + "new_balance":"11143.78", + "value":"1022.42" + } + }, + { + "id":"84e968e3-fe5f-44ce-a7ae-c47d23007cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:17:29.268Z", + "completed":"2017-11-14T06:17:29.268Z", + "new_balance":"11093.22", + "value":"-50.56" + } + }, + { + "id":"45b8acf9-f147-43d9-a205-8ec6669d2dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T08:35:52.580Z", + "completed":"2017-11-14T08:35:52.580Z", + "new_balance":"11067.42", + "value":"-25.80" + } + }, + { + "id":"c911651e-f90a-4b3d-aff1-65cdf88ed180", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T18:53:55.131Z", + "completed":"2017-11-16T18:53:55.131Z", + "new_balance":"11060.43", + "value":"-6.99" + } + }, + { + "id":"2a279071-e99e-4ecc-9ece-255fffd3c189", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T19:51:00.562Z", + "completed":"2017-11-20T19:51:00.562Z", + "new_balance":"11025.24", + "value":"-35.19" + } + }, + { + "id":"d5bad611-c5d7-401a-9fba-ce3a30f976f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T06:34:04.399Z", + "completed":"2017-11-23T06:34:04.399Z", + "new_balance":"11019.47", + "value":"-5.77" + } + }, + { + "id":"ad19ee13-6d4a-4acf-941b-821516d975a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T11:19:49.814Z", + "completed":"2017-11-23T11:19:49.814Z", + "new_balance":"10990.31", + "value":"-29.16" + } + }, + { + "id":"3f852a54-a3c0-4dac-b675-84db7b6d6535", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T11:34:20.837Z", + "completed":"2017-11-23T11:34:20.837Z", + "new_balance":"10944.80", + "value":"-45.51" + } + }, + { + "id":"6243abc6-4095-4fb9-a3ab-b03cadc84bd8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T11:21:07.267Z", + "completed":"2017-11-28T11:21:07.267Z", + "new_balance":"10936.40", + "value":"-8.40" + } + }, + { + "id":"03a113c7-2986-422d-8187-f82e43968eb2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T04:12:09.119Z", + "completed":"2017-11-30T04:12:09.119Z", + "new_balance":"10738.49", + "value":"-197.91" + } + }, + { + "id":"3d1f8860-236a-4172-96d6-29834035f2ba", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T20:17:38.943Z", + "completed":"2017-11-30T20:17:38.943Z", + "new_balance":"10689.71", + "value":"-48.78" + } + }, + { + "id":"a966f8a9-ecba-46df-8988-bf16c5823842", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T12:12:55.351Z", + "completed":"2017-12-01T12:12:55.351Z", + "new_balance":"10282.14", + "value":"-407.57" + } + }, + { + "id":"0b721c5b-aa87-4997-947a-7ccc90e4a19a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T12:54:53.783Z", + "completed":"2017-12-01T12:54:53.783Z", + "new_balance":"11304.56", + "value":"1022.42" + } + }, + { + "id":"e7969ef1-1587-4fb8-8a90-43f9dde275e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T11:15:41.071Z", + "completed":"2017-12-04T11:15:41.071Z", + "new_balance":"11287.56", + "value":"-17.00" + } + }, + { + "id":"8fc4ea23-b9ac-487d-a8b9-fe4e815b98a0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:12:20.433Z", + "completed":"2017-12-04T21:12:20.433Z", + "new_balance":"11256.11", + "value":"-31.45" + } + }, + { + "id":"7013a426-4e00-4c1f-a442-cfaaa116469b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T03:37:48.718Z", + "completed":"2017-12-11T03:37:48.718Z", + "new_balance":"11210.60", + "value":"-45.51" + } + }, + { + "id":"84142765-843b-4f9e-9533-84364765d395", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T17:35:00.263Z", + "completed":"2017-12-11T17:35:00.263Z", + "new_balance":"11179.79", + "value":"-30.81" + } + }, + { + "id":"ef9fd024-79d7-4bb4-8e81-1ff71ef420dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T00:55:45.344Z", + "completed":"2017-12-14T00:55:45.344Z", + "new_balance":"11172.18", + "value":"-7.61" + } + }, + { + "id":"74bd0dc3-aada-43a7-97f3-9fc2f6686ca0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T03:01:06.779Z", + "completed":"2017-12-14T03:01:06.779Z", + "new_balance":"11166.41", + "value":"-5.77" + } + }, + { + "id":"510e441f-6c90-4a82-8b78-0ba6541122f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T10:11:44.957Z", + "completed":"2017-12-14T10:11:44.957Z", + "new_balance":"11120.87", + "value":"-45.54" + } + }, + { + "id":"63a5b2c8-082e-48fc-b346-8111c8c0e17b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T14:23:37.738Z", + "completed":"2017-12-14T14:23:37.738Z", + "new_balance":"11106.81", + "value":"-14.06" + } + }, + { + "id":"a974f401-5b32-4d5c-a724-92d1e665f86c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T14:34:17.406Z", + "completed":"2017-12-14T14:34:17.406Z", + "new_balance":"11101.04", + "value":"-5.77" + } + }, + { + "id":"b040db06-0e72-49af-883d-42d0b634d242", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T16:06:45.820Z", + "completed":"2017-12-14T16:06:45.820Z", + "new_balance":"11001.92", + "value":"-99.12" + } + }, + { + "id":"0c684ab8-a131-4938-bcff-188fc63a9953", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T19:29:09.920Z", + "completed":"2017-12-14T19:29:09.920Z", + "new_balance":"10994.31", + "value":"-7.61" + } + }, + { + "id":"c4163520-f9e9-4e8c-9c69-bfb1e948f85b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T20:10:10.181Z", + "completed":"2017-12-14T20:10:10.181Z", + "new_balance":"10912.52", + "value":"-81.79" + } + }, + { + "id":"05f37e15-2171-4b17-bd2c-242c3b0b2109", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T21:20:41.491Z", + "completed":"2017-12-14T21:20:41.491Z", + "new_balance":"10807.80", + "value":"-104.72" + } + }, + { + "id":"73879090-1efb-4b32-bc3a-5a40f8dd3f1a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T01:38:29.188Z", + "completed":"2017-12-15T01:38:29.188Z", + "new_balance":"10799.28", + "value":"-8.52" + } + }, + { + "id":"f4101ea5-6100-4df1-bde2-aedafb35edc4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T01:48:24.318Z", + "completed":"2017-12-15T01:48:24.318Z", + "new_balance":"10766.94", + "value":"-32.34" + } + }, + { + "id":"19b5626b-10c2-48fa-b7e4-8b74b06a25dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T07:59:11.357Z", + "completed":"2017-12-15T07:59:11.357Z", + "new_balance":"10761.17", + "value":"-5.77" + } + }, + { + "id":"1f9f7b32-6edb-40a0-a00b-a8a71f88b24a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T05:42:21.861Z", + "completed":"2017-12-18T05:42:21.861Z", + "new_balance":"10742.01", + "value":"-19.16" + } + }, + { + "id":"de52e0df-6d34-4574-8333-cb0c559e827a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T05:48:17.025Z", + "completed":"2017-12-18T05:48:17.025Z", + "new_balance":"10699.52", + "value":"-42.49" + } + }, + { + "id":"396b7315-e2af-44d6-b76a-028501023914", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T07:10:47.632Z", + "completed":"2017-12-18T07:10:47.632Z", + "new_balance":"10693.75", + "value":"-5.77" + } + }, + { + "id":"4348f5e9-5aca-4910-9dd6-6ea838a4f102", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T14:08:02.337Z", + "completed":"2017-12-18T14:08:02.337Z", + "new_balance":"10592.49", + "value":"-101.26" + } + }, + { + "id":"46a1ebf5-8141-4563-81be-b1756fa823ec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T18:25:01.902Z", + "completed":"2017-12-18T18:25:01.902Z", + "new_balance":"10586.72", + "value":"-5.77" + } + }, + { + "id":"f45345aa-349c-48d9-b42f-367fb8831352", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T18:46:26.211Z", + "completed":"2017-12-18T18:46:26.211Z", + "new_balance":"10562.42", + "value":"-24.30" + } + }, + { + "id":"eb41a949-0714-4f16-94bc-30d3288dd6df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T21:48:27.403Z", + "completed":"2017-12-18T21:48:27.403Z", + "new_balance":"10496.24", + "value":"-66.18" + } + }, + { + "id":"f2ffae5a-5893-4af7-be6a-ddc3a5d497e2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T22:13:27.135Z", + "completed":"2017-12-18T22:13:27.135Z", + "new_balance":"10483.87", + "value":"-12.37" + } + }, + { + "id":"260de06c-2035-4a32-a420-ad5a163d3173", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T05:24:41.941Z", + "completed":"2017-12-19T05:24:41.941Z", + "new_balance":"10439.90", + "value":"-43.97" + } + }, + { + "id":"59809057-7a40-4742-873b-d1a97ee6e2aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:08:07.444Z", + "completed":"2017-12-19T11:08:07.444Z", + "new_balance":"10397.67", + "value":"-42.23" + } + }, + { + "id":"0e280d89-bab5-400c-b03b-4deb0c223634", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T20:03:05.158Z", + "completed":"2017-12-19T20:03:05.158Z", + "new_balance":"10348.78", + "value":"-48.89" + } + }, + { + "id":"d54ed47c-6cec-4350-90eb-456842af764a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T02:49:02.053Z", + "completed":"2017-12-21T02:49:02.053Z", + "new_balance":"10335.77", + "value":"-13.01" + } + }, + { + "id":"1cd802b9-954d-4fa4-984e-05e80638625a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T05:10:14.821Z", + "completed":"2017-12-21T05:10:14.821Z", + "new_balance":"10295.45", + "value":"-40.32" + } + }, + { + "id":"1f9f62e1-0a14-4c71-9a81-dc4b717dfd87", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T09:27:17.674Z", + "completed":"2017-12-21T09:27:17.674Z", + "new_balance":"10191.13", + "value":"-104.32" + } + }, + { + "id":"f90c6bd2-c7a3-44e6-801e-36fe23126bc2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T13:33:00.957Z", + "completed":"2017-12-21T13:33:00.957Z", + "new_balance":"10185.36", + "value":"-5.77" + } + }, + { + "id":"20bf8cde-5f2b-4946-b2f4-520197f46f4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T16:47:16.292Z", + "completed":"2017-12-21T16:47:16.292Z", + "new_balance":"10087.86", + "value":"-97.50" + } + }, + { + "id":"cae27447-b26a-4129-9966-be7acd502e5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T05:05:06.322Z", + "completed":"2017-12-24T05:05:06.322Z", + "new_balance":"10073.67", + "value":"-14.19" + } + }, + { + "id":"5f610e6e-4d37-4e96-b531-c2f50b4a2768", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T22:22:52.231Z", + "completed":"2017-12-24T22:22:52.231Z", + "new_balance":"10060.88", + "value":"-12.79" + } + }, + { + "id":"37169def-5934-4d19-ab20-ae0bf1800e53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T22:58:16.589Z", + "completed":"2017-12-24T22:58:16.589Z", + "new_balance":"10035.26", + "value":"-25.62" + } + }, + { + "id":"e42746e8-6f02-449b-9d5c-aad9e083ecfe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T06:43:51.158Z", + "completed":"2017-12-30T06:43:51.158Z", + "new_balance":"9837.35", + "value":"-197.91" + } + }, + { + "id":"3b420caa-7629-45f3-9ad5-1fcb6084cf4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T20:20:32.295Z", + "completed":"2017-12-30T20:20:32.295Z", + "new_balance":"9788.57", + "value":"-48.78" + } + }, + { + "id":"cb405dbc-0c8d-4c6f-b4ed-f2a23d828b86", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T00:23:04.438Z", + "completed":"2016-01-01T00:23:04.438Z", + "new_balance":"5326.65", + "value":"-104.72" + } + }, + { + "id":"3f2acc53-c678-4ab3-a7b8-d8b5d2221160", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T06:01:05.450Z", + "completed":"2016-01-01T06:01:05.450Z", + "new_balance":"5279.75", + "value":"-46.90" + } + }, + { + "id":"6fa5207a-3703-485e-84dd-5a313f953d92", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T10:07:01.096Z", + "completed":"2016-01-01T10:07:01.096Z", + "new_balance":"5245.32", + "value":"-34.43" + } + }, + { + "id":"5883a4d0-ade2-47cd-9717-156f31782200", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:17:28.322Z", + "completed":"2016-01-01T19:17:28.322Z", + "new_balance":"5210.89", + "value":"-34.43" + } + }, + { + "id":"4f7d16c6-c804-4f5b-aa9c-1be6733eefd5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T06:40:35.691Z", + "completed":"2016-01-05T06:40:35.691Z", + "new_balance":"5129.68", + "value":"-81.21" + } + }, + { + "id":"d664871f-6036-400e-a6df-438eff534a0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T17:57:53.390Z", + "completed":"2016-01-05T17:57:53.390Z", + "new_balance":"5062.23", + "value":"-67.45" + } + }, + { + "id":"12b91762-e5b4-4b35-b923-d8cacd16675f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T01:58:44.085Z", + "completed":"2016-01-08T01:58:44.085Z", + "new_balance":"5051.32", + "value":"-10.91" + } + }, + { + "id":"f6a0d420-7783-4903-9b68-275c69128f7d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T14:12:19.044Z", + "completed":"2016-01-10T14:12:19.044Z", + "new_balance":"5004.86", + "value":"-46.46" + } + }, + { + "id":"846f4aff-d9df-4d0b-a399-f3042c526f07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T07:27:16.562Z", + "completed":"2016-01-11T07:27:16.562Z", + "new_balance":"4948.22", + "value":"-56.64" + } + }, + { + "id":"28970c20-19e3-495f-9b13-2575513f2996", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T23:10:21.010Z", + "completed":"2016-01-12T23:10:21.010Z", + "new_balance":"4913.79", + "value":"-34.43" + } + }, + { + "id":"d168c5c3-a55a-45fc-96f1-b4772e18557f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T05:11:39.823Z", + "completed":"2016-01-13T05:11:39.823Z", + "new_balance":"4908.14", + "value":"-5.65" + } + }, + { + "id":"da5efa70-0c03-4edd-8db5-d7396655b431", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T13:29:50.938Z", + "completed":"2016-01-13T13:29:50.938Z", + "new_balance":"4904.55", + "value":"-3.59" + } + }, + { + "id":"9703778f-10d2-450f-baed-09ba485c5ca8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T18:16:25.245Z", + "completed":"2016-01-16T18:16:25.245Z", + "new_balance":"4821.46", + "value":"-83.09" + } + }, + { + "id":"8c00c7d5-1cdf-4c00-bb7f-394d381c199d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T00:01:41.495Z", + "completed":"2016-01-19T00:01:41.495Z", + "new_balance":"4740.02", + "value":"-81.44" + } + }, + { + "id":"b9e23f7a-699c-4983-a7e4-fcf14783742a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T18:40:14.791Z", + "completed":"2016-01-19T18:40:14.791Z", + "new_balance":"4658.81", + "value":"-81.21" + } + }, + { + "id":"1d21f5de-ac19-4c74-9de7-f274e4a8b3de", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T21:08:35.590Z", + "completed":"2016-01-24T21:08:35.590Z", + "new_balance":"4631.36", + "value":"-27.45" + } + }, + { + "id":"83c3d723-3b11-4ec6-ae19-1180fd4540c0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T08:26:03.722Z", + "completed":"2016-01-27T08:26:03.722Z", + "new_balance":"4603.38", + "value":"-27.98" + } + }, + { + "id":"004cbf5a-1447-4ac2-bffa-3f04eff887f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T12:46:32.875Z", + "completed":"2016-01-27T12:46:32.875Z", + "new_balance":"6953.59", + "value":"2350.21" + } + }, + { + "id":"6692bebc-e1d7-4da5-802e-ab8d77dc9967", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T07:29:34.580Z", + "completed":"2016-01-31T07:29:34.580Z", + "new_balance":"6636.38", + "value":"-317.21" + } + }, + { + "id":"ec267b39-1552-4c05-b59f-777767248095", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T00:38:35.328Z", + "completed":"2016-02-01T00:38:35.328Z", + "new_balance":"6531.66", + "value":"-104.72" + } + }, + { + "id":"c33dcde0-d7f7-4b6c-a1d6-4892684f63bc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T09:07:28.795Z", + "completed":"2016-02-01T09:07:28.795Z", + "new_balance":"6484.76", + "value":"-46.90" + } + }, + { + "id":"d1d571f8-e660-4780-8740-24ae06e2b652", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T20:27:04.948Z", + "completed":"2016-02-01T20:27:04.948Z", + "new_balance":"6450.33", + "value":"-34.43" + } + }, + { + "id":"c7980d36-b9cb-4f6d-8122-4817f5f297bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T21:02:21.923Z", + "completed":"2016-02-01T21:02:21.923Z", + "new_balance":"6415.90", + "value":"-34.43" + } + }, + { + "id":"d0e714f3-af42-4ee9-91ce-8d56d8c175da", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T20:54:15.599Z", + "completed":"2016-02-03T20:54:15.599Z", + "new_balance":"6409.18", + "value":"-6.72" + } + }, + { + "id":"01700398-b850-46f5-97c4-d69af7cb0cac", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T05:24:59.597Z", + "completed":"2016-02-04T05:24:59.597Z", + "new_balance":"6327.97", + "value":"-81.21" + } + }, + { + "id":"fdb60910-7c82-4ebc-ab75-b167d58ca1b8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T01:15:36.291Z", + "completed":"2016-02-06T01:15:36.291Z", + "new_balance":"6246.80", + "value":"-81.17" + } + }, + { + "id":"f9201705-1f4e-4ad2-bc3e-97d10c4e1f36", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T19:36:53.824Z", + "completed":"2016-02-06T19:36:53.824Z", + "new_balance":"6139.99", + "value":"-106.81" + } + }, + { + "id":"c790bb31-0156-4e24-a83d-af08d06cdeaa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T05:22:40.347Z", + "completed":"2016-02-07T05:22:40.347Z", + "new_balance":"6111.96", + "value":"-28.03" + } + }, + { + "id":"6ebcf7a6-08ed-40bb-a614-b3144a2910c0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T15:22:32.163Z", + "completed":"2016-02-08T15:22:32.163Z", + "new_balance":"6096.67", + "value":"-15.29" + } + }, + { + "id":"e369b89c-6f19-49f0-b55b-e5bc02f59ade", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:09:38.374Z", + "completed":"2016-02-09T00:09:38.374Z", + "new_balance":"6053.72", + "value":"-42.95" + } + }, + { + "id":"0cd0892a-4b15-412b-929b-10844d37ddfb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T07:39:22.517Z", + "completed":"2016-02-11T07:39:22.517Z", + "new_balance":"6026.99", + "value":"-26.73" + } + }, + { + "id":"d7b4e277-81c6-4a06-955b-117a1e7d64a9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T18:47:13.116Z", + "completed":"2016-02-13T18:47:13.116Z", + "new_balance":"5985.45", + "value":"-41.54" + } + }, + { + "id":"eaa1dae9-f85b-4e3a-bc09-6232a9e29974", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T20:51:46.275Z", + "completed":"2016-02-17T20:51:46.275Z", + "new_balance":"5978.46", + "value":"-6.99" + } + }, + { + "id":"b254fc57-edcd-4b7f-9585-6a1349bf3184", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T19:50:34.654Z", + "completed":"2016-02-19T19:50:34.654Z", + "new_balance":"5928.52", + "value":"-49.94" + } + }, + { + "id":"d7b60969-1642-4c0a-9831-0b29ddacbe5e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T23:10:49.586Z", + "completed":"2016-02-21T23:10:49.586Z", + "new_balance":"5847.31", + "value":"-81.21" + } + }, + { + "id":"129eb8bb-c771-44dc-a4e9-bc6f02541790", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T12:13:52.977Z", + "completed":"2016-02-24T12:13:52.977Z", + "new_balance":"5819.33", + "value":"-27.98" + } + }, + { + "id":"965a7608-861d-43bb-93bd-810e0a99bb08", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T19:36:12.742Z", + "completed":"2016-02-26T19:36:12.742Z", + "new_balance":"8169.54", + "value":"2350.21" + } + }, + { + "id":"77d2877d-6d1b-41a1-acb7-bec608abd438", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T01:21:29.650Z", + "completed":"2016-03-01T01:21:29.650Z", + "new_balance":"8135.11", + "value":"-34.43" + } + }, + { + "id":"ca4dd8bb-e550-4f1a-8987-6d71bca2c3fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T02:48:54.258Z", + "completed":"2016-03-01T02:48:54.258Z", + "new_balance":"8088.21", + "value":"-46.90" + } + }, + { + "id":"7a6b5a21-f866-4258-86b0-71c1e8b64001", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T04:16:24.254Z", + "completed":"2016-03-01T04:16:24.254Z", + "new_balance":"8053.78", + "value":"-34.43" + } + }, + { + "id":"cabec60a-b5ab-4907-857c-78d07971aac8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T12:00:16.417Z", + "completed":"2016-03-01T12:00:16.417Z", + "new_balance":"7949.06", + "value":"-104.72" + } + }, + { + "id":"c3901431-38a1-4b88-bdaa-c076a11bf544", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T10:11:02.778Z", + "completed":"2016-03-09T10:11:02.778Z", + "new_balance":"7885.49", + "value":"-63.57" + } + }, + { + "id":"7644a408-5e9f-489e-8ab6-8b9cffb52837", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T18:43:25.079Z", + "completed":"2016-03-09T18:43:25.079Z", + "new_balance":"7824.12", + "value":"-61.37" + } + }, + { + "id":"bceb16bd-93ce-4d79-84e1-3e8f56f237aa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T09:48:07.514Z", + "completed":"2016-03-17T09:48:07.514Z", + "new_balance":"7735.63", + "value":"-88.49" + } + }, + { + "id":"5b14d15f-40f3-4b0a-8e73-bc7597387cbf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T00:43:11.081Z", + "completed":"2016-03-18T00:43:11.081Z", + "new_balance":"7728.86", + "value":"-6.77" + } + }, + { + "id":"4cce9669-b298-409b-9dd6-735a36a4cf41", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T12:44:13.350Z", + "completed":"2016-03-18T12:44:13.350Z", + "new_balance":"7689.22", + "value":"-39.64" + } + }, + { + "id":"dc18db07-ba98-4662-8734-7c1afaa767ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T13:22:47.156Z", + "completed":"2016-03-18T13:22:47.156Z", + "new_balance":"7643.75", + "value":"-45.47" + } + }, + { + "id":"1c2698d7-6518-4843-9de6-2014b525243b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T19:04:55.945Z", + "completed":"2016-03-18T19:04:55.945Z", + "new_balance":"7561.96", + "value":"-81.79" + } + }, + { + "id":"1f5f6d9d-4279-4799-b0c7-472d257a607e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T17:43:07.753Z", + "completed":"2016-03-22T17:43:07.753Z", + "new_balance":"7457.77", + "value":"-104.19" + } + }, + { + "id":"9ecfd09f-eff3-4092-b349-d78985e62ef9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T05:04:45.506Z", + "completed":"2016-03-29T05:04:45.506Z", + "new_balance":"9807.98", + "value":"2350.21" + } + }, + { + "id":"9de2771d-1a54-4a7d-a623-e5db99f2da5d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T18:01:01.089Z", + "completed":"2016-03-29T18:01:01.089Z", + "new_balance":"9780.00", + "value":"-27.98" + } + }, + { + "id":"ae32b495-ef6f-4e67-b25d-f413fbc9934f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T04:24:50.350Z", + "completed":"2016-03-31T04:24:50.350Z", + "new_balance":"9462.79", + "value":"-317.21" + } + }, + { + "id":"91aa6b3d-80dd-4d9b-adb7-3d037cd961f6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T04:39:48.044Z", + "completed":"2016-04-01T04:39:48.044Z", + "new_balance":"9358.07", + "value":"-104.72" + } + }, + { + "id":"88258922-c7df-4c18-a421-1bf0826d26e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T08:09:00.962Z", + "completed":"2016-04-01T08:09:00.962Z", + "new_balance":"9311.17", + "value":"-46.90" + } + }, + { + "id":"03aa7182-29f4-4565-bc25-ee39a7167556", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T13:43:37.991Z", + "completed":"2016-04-01T13:43:37.991Z", + "new_balance":"9276.74", + "value":"-34.43" + } + }, + { + "id":"f4e29594-9c8a-45f0-99f5-ff1341162eda", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:58:04.311Z", + "completed":"2016-04-01T21:58:04.311Z", + "new_balance":"9242.31", + "value":"-34.43" + } + }, + { + "id":"1664e5fc-1300-4376-8474-c9605294dd2b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T16:30:49.203Z", + "completed":"2016-04-02T16:30:49.203Z", + "new_balance":"9147.98", + "value":"-94.33" + } + }, + { + "id":"a738e9bc-f5c7-4d7f-889a-5befdc80a9a9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T03:16:59.578Z", + "completed":"2016-04-05T03:16:59.578Z", + "new_balance":"9093.14", + "value":"-54.84" + } + }, + { + "id":"c6757724-375e-4b6c-a4c7-d3da0d49dac6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T04:01:41.199Z", + "completed":"2016-04-05T04:01:41.199Z", + "new_balance":"9088.50", + "value":"-4.64" + } + }, + { + "id":"70c14433-272f-4123-a600-66777d569ed1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T04:11:11.494Z", + "completed":"2016-04-05T04:11:11.494Z", + "new_balance":"9047.07", + "value":"-41.43" + } + }, + { + "id":"854bab0c-5047-4ee5-a2fa-71203389dc6c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T08:19:38.025Z", + "completed":"2016-04-05T08:19:38.025Z", + "new_balance":"9012.64", + "value":"-34.43" + } + }, + { + "id":"46c0d904-b49e-4217-a6e1-c52411f6aaf3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T11:40:25.371Z", + "completed":"2016-04-05T11:40:25.371Z", + "new_balance":"9006.06", + "value":"-6.58" + } + }, + { + "id":"bef034fb-7487-46b9-b901-fb148a7bf3b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T14:21:09.161Z", + "completed":"2016-04-05T14:21:09.161Z", + "new_balance":"8994.13", + "value":"-11.93" + } + }, + { + "id":"5be6b6f1-a333-4d6f-a295-bed162cf9684", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T17:33:33.576Z", + "completed":"2016-04-05T17:33:33.576Z", + "new_balance":"8912.92", + "value":"-81.21" + } + }, + { + "id":"bae59b2c-1d3f-4779-8838-22a7b3490828", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T06:56:11.355Z", + "completed":"2016-04-08T06:56:11.355Z", + "new_balance":"8815.00", + "value":"-97.92" + } + }, + { + "id":"3206fc3b-62fa-4bdd-8dc5-174d00d58a81", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T01:02:38.969Z", + "completed":"2016-04-10T01:02:38.969Z", + "new_balance":"8758.87", + "value":"-56.13" + } + }, + { + "id":"ac8172a4-0fff-4898-9060-86cf11c2c69d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T01:42:54.552Z", + "completed":"2016-04-11T01:42:54.552Z", + "new_balance":"8677.66", + "value":"-81.21" + } + }, + { + "id":"c210170a-e082-44c5-97f1-489eed8753be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T06:06:46.792Z", + "completed":"2016-04-11T06:06:46.792Z", + "new_balance":"8650.21", + "value":"-27.45" + } + }, + { + "id":"5e6efdf0-7cd6-4938-ac2e-c81ad4a0f6be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:26:09.685Z", + "completed":"2016-04-13T06:26:09.685Z", + "new_balance":"8622.23", + "value":"-27.98" + } + }, + { + "id":"9f880ffe-587f-430d-91c6-ed6c15ec51fd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T13:25:42.595Z", + "completed":"2016-04-18T13:25:42.595Z", + "new_balance":"10972.44", + "value":"2350.21" + } + }, + { + "id":"ef993e8b-9345-4423-9c14-26f1332db903", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:31:10.636Z", + "completed":"2016-04-25T19:31:10.636Z", + "new_balance":"10655.23", + "value":"-317.21" + } + }, + { + "id":"99eebbc6-4794-4806-9d25-d13207051303", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T03:33:27.267Z", + "completed":"2016-05-02T03:33:27.267Z", + "new_balance":"10620.80", + "value":"-34.43" + } + }, + { + "id":"40bd2d0f-8564-4d49-be15-ef4954f36e06", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T12:48:13.370Z", + "completed":"2016-05-02T12:48:13.370Z", + "new_balance":"10573.90", + "value":"-46.90" + } + }, + { + "id":"094c1997-009a-48c2-9b31-aa0a9e59c838", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T14:58:46.626Z", + "completed":"2016-05-02T14:58:46.626Z", + "new_balance":"10469.18", + "value":"-104.72" + } + }, + { + "id":"24ad1e0b-2dc0-4a0a-93f7-14db4c2282c3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T16:01:39.282Z", + "completed":"2016-05-02T16:01:39.282Z", + "new_balance":"10434.75", + "value":"-34.43" + } + }, + { + "id":"742ddce0-65e2-45c0-8100-1f2e352dbc1c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T03:13:33.049Z", + "completed":"2016-05-04T03:13:33.049Z", + "new_balance":"10428.17", + "value":"-6.58" + } + }, + { + "id":"3f8dbdf5-dba6-4ab1-b70d-98bfa8029e3c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T19:06:04.976Z", + "completed":"2016-05-04T19:06:04.976Z", + "new_balance":"10346.96", + "value":"-81.21" + } + }, + { + "id":"1817dcd3-c829-499b-a1fb-88fd10dec123", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T01:19:13.109Z", + "completed":"2016-05-06T01:19:13.109Z", + "new_balance":"10266.75", + "value":"-80.21" + } + }, + { + "id":"53f00df2-38b1-49ae-830b-c71d54aaf41d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T16:28:00.211Z", + "completed":"2016-05-07T16:28:00.211Z", + "new_balance":"10232.24", + "value":"-34.51" + } + }, + { + "id":"8fe8a2ec-d103-49e6-b3be-47a265fb8ea0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T20:38:15.590Z", + "completed":"2016-05-07T20:38:15.590Z", + "new_balance":"10137.91", + "value":"-94.33" + } + }, + { + "id":"61144fcb-4d39-4630-9b3a-93cea69c9e41", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T14:55:33.842Z", + "completed":"2016-05-09T14:55:33.842Z", + "new_balance":"10094.96", + "value":"-42.95" + } + }, + { + "id":"42cefc1a-8e47-4505-b236-bb7bf1ae1747", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T17:43:31.561Z", + "completed":"2016-05-09T17:43:31.561Z", + "new_balance":"10083.03", + "value":"-11.93" + } + }, + { + "id":"f2ed61d9-7d82-4c74-841e-36aad2cde03b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T00:00:57.869Z", + "completed":"2016-05-13T00:00:57.869Z", + "new_balance":"10054.84", + "value":"-28.19" + } + }, + { + "id":"3aaf2b50-1491-45a3-8681-c3b038209afd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T07:23:40.301Z", + "completed":"2016-05-13T07:23:40.301Z", + "new_balance":"10048.26", + "value":"-6.58" + } + }, + { + "id":"20c77ff0-73fb-4a48-b5a5-9311929d8782", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T23:53:14.466Z", + "completed":"2016-05-13T23:53:14.466Z", + "new_balance":"10013.75", + "value":"-34.51" + } + }, + { + "id":"8af8e8e2-44dd-4d97-ada2-0622e589783c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T04:49:09.137Z", + "completed":"2016-05-14T04:49:09.137Z", + "new_balance":"9948.52", + "value":"-65.23" + } + }, + { + "id":"73f40eee-a3b6-4b18-ac04-68adb34ebe20", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T11:08:33.665Z", + "completed":"2016-05-14T11:08:33.665Z", + "new_balance":"9867.31", + "value":"-81.21" + } + }, + { + "id":"fd7ac8d4-7611-405f-baf6-7d48ee02bad7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T07:50:58.249Z", + "completed":"2016-05-15T07:50:58.249Z", + "new_balance":"9839.33", + "value":"-27.98" + } + }, + { + "id":"bd871cbd-ebe6-4341-93b1-2d8aa0316848", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T00:36:25.594Z", + "completed":"2016-05-30T00:36:25.594Z", + "new_balance":"12189.54", + "value":"2350.21" + } + }, + { + "id":"6569f661-8085-4b7e-abbb-a61faf38e560", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T13:27:26.584Z", + "completed":"2016-05-30T13:27:26.584Z", + "new_balance":"11872.33", + "value":"-317.21" + } + }, + { + "id":"67d332d3-0c84-4cd6-9876-5d3e4a9fb1d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T12:44:27.349Z", + "completed":"2016-06-01T12:44:27.349Z", + "new_balance":"11837.90", + "value":"-34.43" + } + }, + { + "id":"5ef5a08a-da4d-4c09-b919-3df2283bded6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T12:59:49.372Z", + "completed":"2016-06-01T12:59:49.372Z", + "new_balance":"11733.18", + "value":"-104.72" + } + }, + { + "id":"21c3e30d-4551-4bc6-b483-f06c4a4e3241", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:49:31.478Z", + "completed":"2016-06-01T16:49:31.478Z", + "new_balance":"11698.75", + "value":"-34.43" + } + }, + { + "id":"48de9d4d-bdcc-4c17-86d0-0d8ded95f7dc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T17:27:35.917Z", + "completed":"2016-06-01T17:27:35.917Z", + "new_balance":"11651.85", + "value":"-46.90" + } + }, + { + "id":"ca1d07b9-0ed6-47f1-ba93-08bfd6bd7398", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T06:27:13.322Z", + "completed":"2016-06-04T06:27:13.322Z", + "new_balance":"11588.28", + "value":"-63.57" + } + }, + { + "id":"7b9712b7-c15a-4ffc-aa2c-be0bc956bbc2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:06:36.424Z", + "completed":"2016-06-04T14:06:36.424Z", + "new_balance":"11526.91", + "value":"-61.37" + } + }, + { + "id":"a29d9dc3-3cea-4833-9847-f0e8ef16fd10", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T01:07:16.985Z", + "completed":"2016-06-11T01:07:16.985Z", + "new_balance":"11438.42", + "value":"-88.49" + } + }, + { + "id":"62d06d59-d004-4273-afd9-d57cf5283c4b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T13:17:50.076Z", + "completed":"2016-06-11T13:17:50.076Z", + "new_balance":"11392.95", + "value":"-45.47" + } + }, + { + "id":"fc7aec62-b9dd-45a4-9435-ae2eed72bf62", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T20:54:12.839Z", + "completed":"2016-06-11T20:54:12.839Z", + "new_balance":"11311.16", + "value":"-81.79" + } + }, + { + "id":"eaea77b7-255d-412b-9a4d-d4bba2f2947b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T11:30:00.277Z", + "completed":"2016-06-12T11:30:00.277Z", + "new_balance":"11271.52", + "value":"-39.64" + } + }, + { + "id":"8649380b-ff26-4643-81ab-a243230d4597", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T13:55:19.908Z", + "completed":"2016-06-12T13:55:19.908Z", + "new_balance":"11264.75", + "value":"-6.77" + } + }, + { + "id":"8e9f97e2-60bf-4f83-bd1b-2c90412d20e2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T05:25:55.775Z", + "completed":"2016-06-16T05:25:55.775Z", + "new_balance":"11160.56", + "value":"-104.19" + } + }, + { + "id":"28d91126-64bc-475c-8427-4ddc95ac126a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T19:52:57.746Z", + "completed":"2016-06-29T19:52:57.746Z", + "new_balance":"11132.58", + "value":"-27.98" + } + }, + { + "id":"9a2aa559-c2a9-4132-8415-a43908cb0230", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T15:52:59.182Z", + "completed":"2016-06-30T15:52:59.182Z", + "new_balance":"10815.37", + "value":"-317.21" + } + }, + { + "id":"7133143f-5253-4c16-bce8-fdc731b85a16", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T18:04:14.250Z", + "completed":"2016-06-30T18:04:14.250Z", + "new_balance":"13165.58", + "value":"2350.21" + } + }, + { + "id":"27ec5a2e-36d5-463f-b2b0-bcf920ced937", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:02:05.716Z", + "completed":"2016-07-01T02:02:05.716Z", + "new_balance":"13118.68", + "value":"-46.90" + } + }, + { + "id":"9efbd9c1-d09d-422f-b095-e67c2b730e0c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T13:19:49.136Z", + "completed":"2016-07-01T13:19:49.136Z", + "new_balance":"13013.96", + "value":"-104.72" + } + }, + { + "id":"368a3cfc-cf80-429b-a085-ca3c4d985fc3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T13:34:20.692Z", + "completed":"2016-07-01T13:34:20.692Z", + "new_balance":"12979.53", + "value":"-34.43" + } + }, + { + "id":"fa1eede3-6141-4d4c-92b7-c0a76a213fa0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T20:52:43.469Z", + "completed":"2016-07-01T20:52:43.469Z", + "new_balance":"12945.10", + "value":"-34.43" + } + }, + { + "id":"79fff2ea-a47a-42e8-85e0-11623ccdc83a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T15:23:24.188Z", + "completed":"2016-07-05T15:23:24.188Z", + "new_balance":"12863.89", + "value":"-81.21" + } + }, + { + "id":"e47d353b-3a3c-4d2a-9693-0a2104c4cd6a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T23:03:16.576Z", + "completed":"2016-07-05T23:03:16.576Z", + "new_balance":"12796.44", + "value":"-67.45" + } + }, + { + "id":"18b04500-ef0f-4f52-bede-9fa4034b8367", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T12:39:08.123Z", + "completed":"2016-07-08T12:39:08.123Z", + "new_balance":"12785.53", + "value":"-10.91" + } + }, + { + "id":"89fa7185-514e-4e6b-b1df-8f8bbc34f676", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T13:25:47.249Z", + "completed":"2016-07-10T13:25:47.249Z", + "new_balance":"12739.07", + "value":"-46.46" + } + }, + { + "id":"169b70e9-5533-44ef-bbe8-a0378843cac6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T13:11:02.014Z", + "completed":"2016-07-12T13:11:02.014Z", + "new_balance":"12704.64", + "value":"-34.43" + } + }, + { + "id":"558fa186-e16c-42c2-95ab-a8db57bd03f2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T17:18:22.709Z", + "completed":"2016-07-12T17:18:22.709Z", + "new_balance":"12648.00", + "value":"-56.64" + } + }, + { + "id":"adf1cefe-150d-4045-a4d0-12174d0b9194", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T21:51:11.942Z", + "completed":"2016-07-13T21:51:11.942Z", + "new_balance":"12644.41", + "value":"-3.59" + } + }, + { + "id":"bdbebaea-d0e5-4a4b-9bea-efd757cc67a0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T22:12:22.807Z", + "completed":"2016-07-13T22:12:22.807Z", + "new_balance":"12638.76", + "value":"-5.65" + } + }, + { + "id":"17d6d8f7-81c5-49fc-addf-5d5f5a08f4b2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T18:30:19.436Z", + "completed":"2016-07-18T18:30:19.436Z", + "new_balance":"12555.67", + "value":"-83.09" + } + }, + { + "id":"8aef94bd-a44f-4db0-b732-4a1fa7b04364", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T02:17:22.692Z", + "completed":"2016-07-20T02:17:22.692Z", + "new_balance":"12474.46", + "value":"-81.21" + } + }, + { + "id":"a4b0cf80-98ff-479c-b588-5f59123af7c5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T12:51:45.746Z", + "completed":"2016-07-20T12:51:45.746Z", + "new_balance":"12393.02", + "value":"-81.44" + } + }, + { + "id":"37f2bdfd-ce5e-4de5-9065-dec198a52fb4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T06:29:28.612Z", + "completed":"2016-07-24T06:29:28.612Z", + "new_balance":"12365.57", + "value":"-27.45" + } + }, + { + "id":"a91b7774-9143-4893-b67d-6efedf63ddb4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T05:38:44.802Z", + "completed":"2016-07-29T05:38:44.802Z", + "new_balance":"14715.78", + "value":"2350.21" + } + }, + { + "id":"1bdffa29-7459-4d9a-bfed-8c5fef5d50ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T18:25:55.457Z", + "completed":"2016-07-29T18:25:55.457Z", + "new_balance":"14687.80", + "value":"-27.98" + } + }, + { + "id":"7ce0522c-94b9-4aa4-b790-60fc7a4016ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T03:57:39.975Z", + "completed":"2016-07-30T03:57:39.975Z", + "new_balance":"14370.59", + "value":"-317.21" + } + }, + { + "id":"16d19f3d-8187-4b03-9952-da80207e5f76", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T02:26:07.098Z", + "completed":"2016-08-01T02:26:07.098Z", + "new_balance":"14336.16", + "value":"-34.43" + } + }, + { + "id":"131bc6e7-95e1-4769-8734-31cbf6710468", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T05:05:32.013Z", + "completed":"2016-08-01T05:05:32.013Z", + "new_balance":"14301.73", + "value":"-34.43" + } + }, + { + "id":"e86a3347-536e-4980-bd96-433d51b78b17", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T13:39:52.174Z", + "completed":"2016-08-01T13:39:52.174Z", + "new_balance":"14254.83", + "value":"-46.90" + } + }, + { + "id":"99d82888-dfe4-4e20-8261-514ab1663d00", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T21:03:12.434Z", + "completed":"2016-08-01T21:03:12.434Z", + "new_balance":"14150.11", + "value":"-104.72" + } + }, + { + "id":"71023cf7-c620-4b6f-986b-cb6934b5a046", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T14:03:01.926Z", + "completed":"2016-08-03T14:03:01.926Z", + "new_balance":"14143.39", + "value":"-6.72" + } + }, + { + "id":"513998d7-c9e1-48b4-8281-35933c9ec093", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T12:44:29.764Z", + "completed":"2016-08-04T12:44:29.764Z", + "new_balance":"14062.18", + "value":"-81.21" + } + }, + { + "id":"64a9d435-ef2b-4019-83cd-4c8b92fd0f02", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T05:10:57.580Z", + "completed":"2016-08-08T05:10:57.580Z", + "new_balance":"14046.89", + "value":"-15.29" + } + }, + { + "id":"d628eec0-2a0d-4efb-a816-2f5d82797279", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T13:32:20.416Z", + "completed":"2016-08-08T13:32:20.416Z", + "new_balance":"13940.08", + "value":"-106.81" + } + }, + { + "id":"771c69e4-216d-4b85-ae73-943edbebd28b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:02:56.737Z", + "completed":"2016-08-08T22:02:56.737Z", + "new_balance":"13858.91", + "value":"-81.17" + } + }, + { + "id":"284e56af-9063-46e7-a853-1e8d93802ed3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:41:46.003Z", + "completed":"2016-08-08T22:41:46.003Z", + "new_balance":"13830.88", + "value":"-28.03" + } + }, + { + "id":"66aa4c58-f38a-44bb-b8ea-5c4f66e1d2bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:31:27.351Z", + "completed":"2016-08-09T16:31:27.351Z", + "new_balance":"13787.93", + "value":"-42.95" + } + }, + { + "id":"2f9e2011-2120-4306-905c-b52633d66ca0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T23:16:33.331Z", + "completed":"2016-08-14T23:16:33.331Z", + "new_balance":"13761.20", + "value":"-26.73" + } + }, + { + "id":"ac15f677-dd2a-45b2-9cb0-89c75fdb94a6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T10:17:21.464Z", + "completed":"2016-08-15T10:17:21.464Z", + "new_balance":"13719.66", + "value":"-41.54" + } + }, + { + "id":"4a81caa1-cf93-45db-9ea0-fb08a2ae290c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T18:45:50.083Z", + "completed":"2016-08-19T18:45:50.083Z", + "new_balance":"13712.67", + "value":"-6.99" + } + }, + { + "id":"5177b58a-f23b-42f3-a383-03a49b58d62a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T03:23:19.517Z", + "completed":"2016-08-22T03:23:19.517Z", + "new_balance":"13662.73", + "value":"-49.94" + } + }, + { + "id":"f18ea616-4013-4982-9f53-e66cf4ac6522", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T07:31:53.881Z", + "completed":"2016-08-26T07:31:53.881Z", + "new_balance":"13581.52", + "value":"-81.21" + } + }, + { + "id":"c814d7ec-37ac-471c-be3f-37428aac795f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T06:38:43.835Z", + "completed":"2016-08-28T06:38:43.835Z", + "new_balance":"13264.31", + "value":"-317.21" + } + }, + { + "id":"d69697c3-a548-4edd-bb47-95237057a30b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T08:31:51.058Z", + "completed":"2016-08-29T08:31:51.058Z", + "new_balance":"15614.52", + "value":"2350.21" + } + }, + { + "id":"9b59bcc1-9d96-4ead-a453-482318374819", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T10:05:00.034Z", + "completed":"2016-08-29T10:05:00.034Z", + "new_balance":"15586.54", + "value":"-27.98" + } + }, + { + "id":"b28f90aa-3b6a-477d-a342-94b8e9c1812c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T10:39:18.783Z", + "completed":"2016-08-30T10:39:18.783Z", + "new_balance":"15269.33", + "value":"-317.21" + } + }, + { + "id":"815e2d25-239d-4c00-8827-76c64bedfee3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T04:01:56.589Z", + "completed":"2016-09-01T04:01:56.589Z", + "new_balance":"15222.43", + "value":"-46.90" + } + }, + { + "id":"54e69357-c63d-4815-b453-948020adbe97", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T05:07:25.233Z", + "completed":"2016-09-01T05:07:25.233Z", + "new_balance":"15188.00", + "value":"-34.43" + } + }, + { + "id":"7029baad-2506-4d3b-b89d-75251e123dcf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T06:30:44.592Z", + "completed":"2016-09-01T06:30:44.592Z", + "new_balance":"15083.28", + "value":"-104.72" + } + }, + { + "id":"885a7458-fd03-4b9e-9724-779e9b9e8b6c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:10:32.418Z", + "completed":"2016-09-01T09:10:32.418Z", + "new_balance":"15048.85", + "value":"-34.43" + } + }, + { + "id":"ebb9acbe-1400-48bb-9f14-0a42efab83af", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T06:37:21.870Z", + "completed":"2016-09-09T06:37:21.870Z", + "new_balance":"14985.28", + "value":"-63.57" + } + }, + { + "id":"2e8e3124-98b4-4eb2-acba-8f01162dac32", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T16:36:57.061Z", + "completed":"2016-09-09T16:36:57.061Z", + "new_balance":"14923.91", + "value":"-61.37" + } + }, + { + "id":"4b71bb00-2046-4de4-b4e2-141af873c1f7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T05:49:25.144Z", + "completed":"2016-09-17T05:49:25.144Z", + "new_balance":"14835.42", + "value":"-88.49" + } + }, + { + "id":"b3c102f5-c2a4-4d0d-a8ca-c049f6826643", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T04:04:33.095Z", + "completed":"2016-09-18T04:04:33.095Z", + "new_balance":"14795.78", + "value":"-39.64" + } + }, + { + "id":"a12eb449-2cb5-4155-baba-eecea6bd1720", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T12:41:02.397Z", + "completed":"2016-09-18T12:41:02.397Z", + "new_balance":"14750.31", + "value":"-45.47" + } + }, + { + "id":"05bc20ca-a421-4290-b396-d312c0f7cd02", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T13:39:57.327Z", + "completed":"2016-09-18T13:39:57.327Z", + "new_balance":"14668.52", + "value":"-81.79" + } + }, + { + "id":"5b0fc6db-f367-4736-b94e-cf86ccdf6fba", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T19:11:40.722Z", + "completed":"2016-09-18T19:11:40.722Z", + "new_balance":"14661.75", + "value":"-6.77" + } + }, + { + "id":"9696cc80-9946-4b9e-8c7f-e8d1166e3404", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T08:45:13.846Z", + "completed":"2016-09-22T08:45:13.846Z", + "new_balance":"14557.56", + "value":"-104.19" + } + }, + { + "id":"0e665e66-5325-4c3c-8b47-9bc34f7b8952", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T13:13:16.547Z", + "completed":"2016-09-29T13:13:16.547Z", + "new_balance":"16907.77", + "value":"2350.21" + } + }, + { + "id":"4892c2db-7c91-4921-85fb-4278fb86aed9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T20:48:55.055Z", + "completed":"2016-09-29T20:48:55.055Z", + "new_balance":"16879.79", + "value":"-27.98" + } + }, + { + "id":"5d0c457e-0932-448d-b202-384ccfa329b4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T17:57:50.338Z", + "completed":"2016-09-30T17:57:50.338Z", + "new_balance":"16562.58", + "value":"-317.21" + } + }, + { + "id":"0822157b-09b7-4687-be07-80a388a1981b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T03:26:14.250Z", + "completed":"2016-10-01T03:26:14.250Z", + "new_balance":"16528.15", + "value":"-34.43" + } + }, + { + "id":"0adb1f9a-42a0-4c9b-a8e1-188e6009bc8e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T05:31:30.335Z", + "completed":"2016-10-01T05:31:30.335Z", + "new_balance":"16481.25", + "value":"-46.90" + } + }, + { + "id":"6f831f67-5d52-401b-b918-e6cbe57a4148", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T17:49:42.080Z", + "completed":"2016-10-01T17:49:42.080Z", + "new_balance":"16376.53", + "value":"-104.72" + } + }, + { + "id":"313a7257-11fa-484e-a142-6e83663a4db9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T23:13:51.523Z", + "completed":"2016-10-01T23:13:51.523Z", + "new_balance":"16342.10", + "value":"-34.43" + } + }, + { + "id":"28d457d4-99aa-4bb6-b17a-d35bf384e168", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T17:41:49.513Z", + "completed":"2016-10-02T17:41:49.513Z", + "new_balance":"16247.77", + "value":"-94.33" + } + }, + { + "id":"dd69b8bd-6355-49f6-a32d-2786a786921f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T02:25:22.993Z", + "completed":"2016-10-05T02:25:22.993Z", + "new_balance":"16206.34", + "value":"-41.43" + } + }, + { + "id":"b90e6a5c-2050-494f-af1f-c13818af5dd0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T06:49:58.254Z", + "completed":"2016-10-05T06:49:58.254Z", + "new_balance":"16125.13", + "value":"-81.21" + } + }, + { + "id":"9ac06ddf-1cd4-436c-b52c-45980a3ad282", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T07:12:13.857Z", + "completed":"2016-10-05T07:12:13.857Z", + "new_balance":"16113.20", + "value":"-11.93" + } + }, + { + "id":"e77e5384-be3f-456f-b4ea-dfba49ef70fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T13:05:41.449Z", + "completed":"2016-10-05T13:05:41.449Z", + "new_balance":"16078.77", + "value":"-34.43" + } + }, + { + "id":"204c115a-635b-4dda-bb13-b35157b8554d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T18:48:00.797Z", + "completed":"2016-10-05T18:48:00.797Z", + "new_balance":"16074.13", + "value":"-4.64" + } + }, + { + "id":"8a58a036-0db0-4460-bbe9-29368a6323fa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T20:42:31.485Z", + "completed":"2016-10-05T20:42:31.485Z", + "new_balance":"16019.29", + "value":"-54.84" + } + }, + { + "id":"767a61b4-3680-48c8-be22-a154a8fe6b35", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T22:29:27.561Z", + "completed":"2016-10-05T22:29:27.561Z", + "new_balance":"16012.71", + "value":"-6.58" + } + }, + { + "id":"fe462e31-dd39-4728-81d2-e56e5d18b616", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T02:40:53.995Z", + "completed":"2016-10-09T02:40:53.995Z", + "new_balance":"15914.79", + "value":"-97.92" + } + }, + { + "id":"e6dab681-e2b0-45af-b824-671c53142eb9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T05:28:52.930Z", + "completed":"2016-10-11T05:28:52.930Z", + "new_balance":"15858.66", + "value":"-56.13" + } + }, + { + "id":"ff7eda2b-9558-4021-b6c8-47a136bf507f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T04:08:00.995Z", + "completed":"2016-10-12T04:08:00.995Z", + "new_balance":"15777.45", + "value":"-81.21" + } + }, + { + "id":"ab12e5a3-fd57-44d8-afe8-58a05424f708", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T08:57:10.830Z", + "completed":"2016-10-12T08:57:10.830Z", + "new_balance":"15750.00", + "value":"-27.45" + } + }, + { + "id":"27a1208d-72d4-4ee1-9cdd-0608251e220f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T14:03:26.373Z", + "completed":"2016-10-20T14:03:26.373Z", + "new_balance":"15722.02", + "value":"-27.98" + } + }, + { + "id":"23ff7ea9-ca32-45cf-a64e-9be8739df136", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T01:23:50.222Z", + "completed":"2016-10-29T01:23:50.222Z", + "new_balance":"18072.23", + "value":"2350.21" + } + }, + { + "id":"1ac0cbfa-079c-48e2-8af7-969556a29006", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T13:36:47.182Z", + "completed":"2016-10-30T13:36:47.182Z", + "new_balance":"17755.02", + "value":"-317.21" + } + }, + { + "id":"9a5ec09c-ec3b-49f5-adbe-5184ff5085ce", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T01:55:31.674Z", + "completed":"2016-11-02T01:55:31.674Z", + "new_balance":"17650.30", + "value":"-104.72" + } + }, + { + "id":"814bfd37-381e-4b20-a8ec-195e1a354aa3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T11:34:25.160Z", + "completed":"2016-11-02T11:34:25.160Z", + "new_balance":"17615.87", + "value":"-34.43" + } + }, + { + "id":"6d7b6b1d-4105-48d5-887d-fc712ffba24c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T12:10:35.730Z", + "completed":"2016-11-02T12:10:35.730Z", + "new_balance":"17568.97", + "value":"-46.90" + } + }, + { + "id":"6eee3c68-c48b-41a3-a247-5c53d447d6ff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T21:00:01.075Z", + "completed":"2016-11-02T21:00:01.075Z", + "new_balance":"17534.54", + "value":"-34.43" + } + }, + { + "id":"52f764e3-926a-4b07-8402-0d226c9e906f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T11:13:54.237Z", + "completed":"2016-11-04T11:13:54.237Z", + "new_balance":"17527.96", + "value":"-6.58" + } + }, + { + "id":"c8fe048b-6df1-4557-b997-6668a138fb8b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T21:36:14.390Z", + "completed":"2016-11-04T21:36:14.390Z", + "new_balance":"17446.75", + "value":"-81.21" + } + }, + { + "id":"d284d1dc-7f93-45e2-8ab2-7c7c27a1c689", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:40:51.669Z", + "completed":"2016-11-06T13:40:51.669Z", + "new_balance":"17366.54", + "value":"-80.21" + } + }, + { + "id":"4dfbfa96-d90e-4db2-a8a8-f24c0283baeb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T03:24:49.646Z", + "completed":"2016-11-07T03:24:49.646Z", + "new_balance":"17272.21", + "value":"-94.33" + } + }, + { + "id":"f723eb79-2561-4f42-aa23-a74934f5b1ab", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T05:29:17.943Z", + "completed":"2016-11-07T05:29:17.943Z", + "new_balance":"17237.70", + "value":"-34.51" + } + }, + { + "id":"3a0ab472-2190-4b0f-8a2f-f9c3b205944a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T11:10:38.923Z", + "completed":"2016-11-09T11:10:38.923Z", + "new_balance":"17225.77", + "value":"-11.93" + } + }, + { + "id":"e259717a-db11-4099-a5e7-f5aa0930819c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T16:39:45.010Z", + "completed":"2016-11-09T16:39:45.010Z", + "new_balance":"17182.82", + "value":"-42.95" + } + }, + { + "id":"abba86b1-dd78-4090-81a1-80dd35fde40b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T00:21:37.660Z", + "completed":"2016-11-13T00:21:37.660Z", + "new_balance":"17154.63", + "value":"-28.19" + } + }, + { + "id":"44f93a97-1f1e-4633-947b-7bf7b1226eff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T19:38:11.410Z", + "completed":"2016-11-13T19:38:11.410Z", + "new_balance":"17148.05", + "value":"-6.58" + } + }, + { + "id":"143014ea-8f34-4773-ae49-9df7f8f2b860", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T21:08:37.038Z", + "completed":"2016-11-13T21:08:37.038Z", + "new_balance":"17113.54", + "value":"-34.51" + } + }, + { + "id":"d97dffc7-6da9-4be8-8b95-f6362c461a2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T15:46:10.472Z", + "completed":"2016-11-14T15:46:10.472Z", + "new_balance":"17032.33", + "value":"-81.21" + } + }, + { + "id":"c09cc8d2-a0fb-4fda-a95f-e87d3bce0681", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T22:35:23.846Z", + "completed":"2016-11-14T22:35:23.846Z", + "new_balance":"16967.10", + "value":"-65.23" + } + }, + { + "id":"9083460b-13e2-4679-9c7c-006bdaf12307", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T10:59:21.828Z", + "completed":"2016-11-15T10:59:21.828Z", + "new_balance":"16939.12", + "value":"-27.98" + } + }, + { + "id":"02ec6e7f-0516-49ba-bd71-eeb49d2260f1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T16:45:27.337Z", + "completed":"2016-11-30T16:45:27.337Z", + "new_balance":"16621.91", + "value":"-317.21" + } + }, + { + "id":"1214f5b8-6031-478c-be50-e912989b0c39", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T17:20:54.738Z", + "completed":"2016-11-30T17:20:54.738Z", + "new_balance":"18972.12", + "value":"2350.21" + } + }, + { + "id":"781026ef-069c-47b9-b5f5-0b74d0adec28", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T03:39:31.011Z", + "completed":"2016-12-01T03:39:31.011Z", + "new_balance":"18937.69", + "value":"-34.43" + } + }, + { + "id":"d4c6143e-f4d8-49f5-8046-84128f3e4ed3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T12:19:47.890Z", + "completed":"2016-12-01T12:19:47.890Z", + "new_balance":"18832.97", + "value":"-104.72" + } + }, + { + "id":"7daf128c-1fb6-4e9a-bc0d-c60100993719", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T16:01:01.103Z", + "completed":"2016-12-01T16:01:01.103Z", + "new_balance":"18798.54", + "value":"-34.43" + } + }, + { + "id":"dd5bf90c-2ecf-4c3e-9f37-e9b9386bdcf2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T21:16:57.079Z", + "completed":"2016-12-01T21:16:57.079Z", + "new_balance":"18751.64", + "value":"-46.90" + } + }, + { + "id":"93741059-6e82-4e06-bc1e-8a090e1e9ae7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T08:06:52.175Z", + "completed":"2016-12-04T08:06:52.175Z", + "new_balance":"18688.07", + "value":"-63.57" + } + }, + { + "id":"7c5181f7-e16c-4563-82c1-c7f86960d701", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T22:28:15.365Z", + "completed":"2016-12-04T22:28:15.365Z", + "new_balance":"18626.70", + "value":"-61.37" + } + }, + { + "id":"9d1dcda9-cfbb-47c6-a1ca-5cf9b95f71be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T05:33:03.672Z", + "completed":"2016-12-11T05:33:03.672Z", + "new_balance":"18538.21", + "value":"-88.49" + } + }, + { + "id":"0aea7df4-ed4a-43c3-9023-c316ba2d1163", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T07:00:27.314Z", + "completed":"2016-12-11T07:00:27.314Z", + "new_balance":"18456.42", + "value":"-81.79" + } + }, + { + "id":"b821f077-2d49-4a4d-b598-e7f67f9c9ce2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T14:08:01.434Z", + "completed":"2016-12-11T14:08:01.434Z", + "new_balance":"18410.95", + "value":"-45.47" + } + }, + { + "id":"416394d6-5c66-4bc0-8406-d07e5dba4038", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T01:03:45.717Z", + "completed":"2016-12-12T01:03:45.717Z", + "new_balance":"18404.18", + "value":"-6.77" + } + }, + { + "id":"059dfa13-66d2-4815-8c89-2c0dcc86d3bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T01:46:01.552Z", + "completed":"2016-12-12T01:46:01.552Z", + "new_balance":"18364.54", + "value":"-39.64" + } + }, + { + "id":"72461ed8-6021-46ce-93a5-83b7dcd675dc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T15:14:21.956Z", + "completed":"2016-12-16T15:14:21.956Z", + "new_balance":"18260.35", + "value":"-104.19" + } + }, + { + "id":"0818e410-3a43-419e-9f55-3668064835fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T06:01:21.383Z", + "completed":"2016-12-29T06:01:21.383Z", + "new_balance":"18232.37", + "value":"-27.98" + } + }, + { + "id":"e317df58-7cce-4016-83f6-4b2e2c949e3e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T01:44:34.103Z", + "completed":"2016-12-30T01:44:34.103Z", + "new_balance":"20582.58", + "value":"2350.21" + } + }, + { + "id":"6fe7ad4d-8ed2-4db8-b1fc-162895208481", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T21:06:14.867Z", + "completed":"2016-12-30T21:06:14.867Z", + "new_balance":"20265.37", + "value":"-317.21" + } + }, + { + "id":"d905b3ed-e293-45e4-9b66-f2e2711abac1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T04:00:55.366Z", + "completed":"2017-01-01T04:00:55.366Z", + "new_balance":"20230.94", + "value":"-34.43" + } + }, + { + "id":"6f21d009-428d-43a7-9dc1-056df67c8c18", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:21:20.700Z", + "completed":"2017-01-01T13:21:20.700Z", + "new_balance":"20196.51", + "value":"-34.43" + } + }, + { + "id":"fd4bf426-8bad-4c8c-a4e1-9500abdef8f1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T21:12:02.403Z", + "completed":"2017-01-01T21:12:02.403Z", + "new_balance":"20091.79", + "value":"-104.72" + } + }, + { + "id":"6d5ef817-6f5c-4e3f-ac75-bf255e69ace7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T22:21:55.056Z", + "completed":"2017-01-01T22:21:55.056Z", + "new_balance":"20044.89", + "value":"-46.90" + } + }, + { + "id":"3d768e51-155b-4d2d-a967-d2a6579d1efd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T09:19:46.830Z", + "completed":"2017-01-05T09:19:46.830Z", + "new_balance":"19977.44", + "value":"-67.45" + } + }, + { + "id":"ccd43bfa-8980-43b4-85bd-5535fa0f2d8b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T20:53:14.798Z", + "completed":"2017-01-05T20:53:14.798Z", + "new_balance":"19896.23", + "value":"-81.21" + } + }, + { + "id":"b7f39f1c-9e8c-435e-bd13-87ecbf464eb3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T19:03:43.637Z", + "completed":"2017-01-08T19:03:43.637Z", + "new_balance":"19885.32", + "value":"-10.91" + } + }, + { + "id":"e92bc955-2c0b-4dd0-94ce-e39df580dd17", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T04:32:36.740Z", + "completed":"2017-01-10T04:32:36.740Z", + "new_balance":"19838.86", + "value":"-46.46" + } + }, + { + "id":"a80f983a-8bb1-4955-b16c-599ebd5e3d3f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T02:24:15.839Z", + "completed":"2017-01-11T02:24:15.839Z", + "new_balance":"19782.22", + "value":"-56.64" + } + }, + { + "id":"58e61efe-f8f5-498b-acbb-8ef49a53d6bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T08:32:02.041Z", + "completed":"2017-01-12T08:32:02.041Z", + "new_balance":"19747.79", + "value":"-34.43" + } + }, + { + "id":"bcda31bc-40d9-49b5-a87a-b05d4f8515fd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T09:32:03.756Z", + "completed":"2017-01-13T09:32:03.756Z", + "new_balance":"19742.14", + "value":"-5.65" + } + }, + { + "id":"2f4b9130-2e06-40f0-9c9a-8e87a8814d6e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T23:49:40.256Z", + "completed":"2017-01-13T23:49:40.256Z", + "new_balance":"19738.55", + "value":"-3.59" + } + }, + { + "id":"95aaf367-cd91-426b-a640-3bf2cb224d11", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T14:51:59.697Z", + "completed":"2017-01-16T14:51:59.697Z", + "new_balance":"19655.46", + "value":"-83.09" + } + }, + { + "id":"6f207358-17e3-44b9-8d2e-c598d705308d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T03:23:09.463Z", + "completed":"2017-01-19T03:23:09.463Z", + "new_balance":"19574.25", + "value":"-81.21" + } + }, + { + "id":"b6f68b12-afb1-422d-95e8-24f0cc774a64", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T15:46:38.556Z", + "completed":"2017-01-19T15:46:38.556Z", + "new_balance":"19492.81", + "value":"-81.44" + } + }, + { + "id":"f534128a-fe22-4128-b386-f9f68418ce85", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:53:52.626Z", + "completed":"2017-01-24T23:53:52.626Z", + "new_balance":"19465.36", + "value":"-27.45" + } + }, + { + "id":"2d2bf934-ac99-47f7-8cc5-88eb73aabcf5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T12:30:41.876Z", + "completed":"2017-01-27T12:30:41.876Z", + "new_balance":"19437.38", + "value":"-27.98" + } + }, + { + "id":"b721edb1-e64d-4eda-9dac-199401fe440e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T15:09:55.671Z", + "completed":"2017-01-27T15:09:55.671Z", + "new_balance":"21787.59", + "value":"2350.21" + } + }, + { + "id":"bc1d319d-6f93-46bb-8d6e-a1c8c91dca80", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T15:58:34.680Z", + "completed":"2017-01-31T15:58:34.680Z", + "new_balance":"21470.38", + "value":"-317.21" + } + }, + { + "id":"f09235d7-b841-4f3c-a10d-7cae23c1f335", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T01:36:23.998Z", + "completed":"2017-02-01T01:36:23.998Z", + "new_balance":"21423.48", + "value":"-46.90" + } + }, + { + "id":"994a748b-e1f6-4b78-a2be-bdc0cc1398d4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T02:39:51.511Z", + "completed":"2017-02-01T02:39:51.511Z", + "new_balance":"21389.05", + "value":"-34.43" + } + }, + { + "id":"1cde8346-0120-418f-976e-7807034ba669", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T06:48:57.637Z", + "completed":"2017-02-01T06:48:57.637Z", + "new_balance":"21354.62", + "value":"-34.43" + } + }, + { + "id":"8f6214c6-daa7-46bc-838e-4b2bacf57dfe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T21:34:09.279Z", + "completed":"2017-02-01T21:34:09.279Z", + "new_balance":"21249.90", + "value":"-104.72" + } + }, + { + "id":"d449bde9-a946-4b3d-a94f-7fb145039aa2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T19:29:10.789Z", + "completed":"2017-02-03T19:29:10.789Z", + "new_balance":"21243.18", + "value":"-6.72" + } + }, + { + "id":"5b2f32e7-803d-4124-8720-914aa28b08f3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T00:07:51.096Z", + "completed":"2017-02-04T00:07:51.096Z", + "new_balance":"21161.97", + "value":"-81.21" + } + }, + { + "id":"e51d330a-a0f5-4c99-bbcb-9eda9eaa1f62", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T01:59:43.012Z", + "completed":"2017-02-06T01:59:43.012Z", + "new_balance":"21080.80", + "value":"-81.17" + } + }, + { + "id":"937d336b-5529-48b7-94bf-926c031c25f3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T07:37:33.924Z", + "completed":"2017-02-06T07:37:33.924Z", + "new_balance":"20973.99", + "value":"-106.81" + } + }, + { + "id":"6e90c39f-dc7f-4f71-ba1c-cd67ff134742", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T13:04:18.648Z", + "completed":"2017-02-07T13:04:18.648Z", + "new_balance":"20945.96", + "value":"-28.03" + } + }, + { + "id":"6e60bac2-93d9-4e3f-9d34-68fcbdb30f51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T13:14:00.180Z", + "completed":"2017-02-08T13:14:00.180Z", + "new_balance":"20930.67", + "value":"-15.29" + } + }, + { + "id":"adad345c-d865-40e2-ab2d-9638de192baa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T03:38:21.314Z", + "completed":"2017-02-09T03:38:21.314Z", + "new_balance":"20887.72", + "value":"-42.95" + } + }, + { + "id":"85cd3a9d-cc85-4b39-ad6a-cb7963fad1d7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T06:58:01.284Z", + "completed":"2017-02-11T06:58:01.284Z", + "new_balance":"20860.99", + "value":"-26.73" + } + }, + { + "id":"0a2d5020-5d65-431e-abaa-45451c3f2189", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T03:08:32.561Z", + "completed":"2017-02-13T03:08:32.561Z", + "new_balance":"20819.45", + "value":"-41.54" + } + }, + { + "id":"deca7495-cf01-47fb-ba13-96172d7113ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T16:11:21.592Z", + "completed":"2017-02-17T16:11:21.592Z", + "new_balance":"20812.46", + "value":"-6.99" + } + }, + { + "id":"91d7c0d1-6647-4544-a2a0-bd39abf124df", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T16:35:07.927Z", + "completed":"2017-02-19T16:35:07.927Z", + "new_balance":"20762.52", + "value":"-49.94" + } + }, + { + "id":"0745f447-0f20-45be-b174-501d3ab2e800", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T10:19:46.499Z", + "completed":"2017-02-21T10:19:46.499Z", + "new_balance":"20681.31", + "value":"-81.21" + } + }, + { + "id":"fa24050e-73a9-4eb4-a911-6751ded6071f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T02:14:06.122Z", + "completed":"2017-02-24T02:14:06.122Z", + "new_balance":"20653.33", + "value":"-27.98" + } + }, + { + "id":"a05455cf-4392-474c-a18b-e4cf7196a95f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T22:21:07.946Z", + "completed":"2017-02-26T22:21:07.946Z", + "new_balance":"23003.54", + "value":"2350.21" + } + }, + { + "id":"70e031e6-930d-494f-ba04-f8484b357548", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T01:53:27.238Z", + "completed":"2017-03-01T01:53:27.238Z", + "new_balance":"22898.82", + "value":"-104.72" + } + }, + { + "id":"6d63143c-4a9d-4679-95aa-6b9986d0203c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:42:38.438Z", + "completed":"2017-03-01T06:42:38.438Z", + "new_balance":"22864.39", + "value":"-34.43" + } + }, + { + "id":"8fc23574-302a-48bc-b69d-46570c10cbab", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T12:03:08.582Z", + "completed":"2017-03-01T12:03:08.582Z", + "new_balance":"22829.96", + "value":"-34.43" + } + }, + { + "id":"975b57ac-4a95-467f-a5e9-3459ed619cb9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T12:38:32.042Z", + "completed":"2017-03-01T12:38:32.042Z", + "new_balance":"22783.06", + "value":"-46.90" + } + }, + { + "id":"238cb3a0-b083-4006-a8d1-b80b1f8d0f8a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:04:59.099Z", + "completed":"2017-03-09T10:04:59.099Z", + "new_balance":"22721.69", + "value":"-61.37" + } + }, + { + "id":"677da5ac-2f08-465f-aa8d-80787dedbb2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T23:31:01.123Z", + "completed":"2017-03-09T23:31:01.123Z", + "new_balance":"22658.12", + "value":"-63.57" + } + }, + { + "id":"67b7b794-89f8-4c6d-829c-87f431fad7f6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T09:53:20.354Z", + "completed":"2017-03-17T09:53:20.354Z", + "new_balance":"22569.63", + "value":"-88.49" + } + }, + { + "id":"d461c1be-6878-440d-b1dc-856d09e6c0aa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T10:00:31.139Z", + "completed":"2017-03-18T10:00:31.139Z", + "new_balance":"22524.16", + "value":"-45.47" + } + }, + { + "id":"d7373738-5291-40d7-8fb1-b78f5db3e641", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T16:56:30.757Z", + "completed":"2017-03-18T16:56:30.757Z", + "new_balance":"22517.39", + "value":"-6.77" + } + }, + { + "id":"d7027447-e83a-4541-ae9d-d694231a2bbd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T18:23:30.914Z", + "completed":"2017-03-18T18:23:30.914Z", + "new_balance":"22435.60", + "value":"-81.79" + } + }, + { + "id":"8c9ad0e8-e9d2-4abd-940e-aa749d9f1807", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T20:32:14.219Z", + "completed":"2017-03-18T20:32:14.219Z", + "new_balance":"22395.96", + "value":"-39.64" + } + }, + { + "id":"d1a6368e-d5c3-43b2-bd68-c878ab8a1f00", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T00:24:17.450Z", + "completed":"2017-03-22T00:24:17.450Z", + "new_balance":"22291.77", + "value":"-104.19" + } + }, + { + "id":"6f72837c-3b2f-4612-ac6d-c612f91484b1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T01:31:59.176Z", + "completed":"2017-03-29T01:31:59.176Z", + "new_balance":"22263.79", + "value":"-27.98" + } + }, + { + "id":"460cac74-13cb-4de6-84a9-e396b0d312ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T18:11:55.361Z", + "completed":"2017-03-29T18:11:55.361Z", + "new_balance":"24614.00", + "value":"2350.21" + } + }, + { + "id":"916db084-edab-4061-8de2-a4ce87c8d675", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T01:47:44.078Z", + "completed":"2017-03-31T01:47:44.078Z", + "new_balance":"24296.79", + "value":"-317.21" + } + }, + { + "id":"c85f5fbe-d059-4881-8be2-566e7d68f7f8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:05:11.737Z", + "completed":"2017-04-01T00:05:11.737Z", + "new_balance":"24262.36", + "value":"-34.43" + } + }, + { + "id":"b36eb0aa-0f39-4228-be89-702bc23a5a4c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T05:05:05.250Z", + "completed":"2017-04-01T05:05:05.250Z", + "new_balance":"24227.93", + "value":"-34.43" + } + }, + { + "id":"3b1da68d-cebf-4f29-b8dd-9e5ed14bcca8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T10:12:17.383Z", + "completed":"2017-04-01T10:12:17.383Z", + "new_balance":"24181.03", + "value":"-46.90" + } + }, + { + "id":"6fee5731-c9dc-4f7f-a8bb-f9213f9b6ff6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T18:38:16.300Z", + "completed":"2017-04-01T18:38:16.300Z", + "new_balance":"24076.31", + "value":"-104.72" + } + }, + { + "id":"24bee432-a3f7-4871-86c5-bcfef712d55e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T15:08:03.355Z", + "completed":"2017-04-02T15:08:03.355Z", + "new_balance":"23981.98", + "value":"-94.33" + } + }, + { + "id":"0c607d44-91de-487f-b64c-ac552b0bebb7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T01:37:26.417Z", + "completed":"2017-04-05T01:37:26.417Z", + "new_balance":"23975.40", + "value":"-6.58" + } + }, + { + "id":"cf6ecb59-a704-4548-8b71-fff8287c90b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T02:57:06.980Z", + "completed":"2017-04-05T02:57:06.980Z", + "new_balance":"23970.76", + "value":"-4.64" + } + }, + { + "id":"8368f271-5e29-4ae3-b4fd-13b8b55d9354", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T05:29:39.704Z", + "completed":"2017-04-05T05:29:39.704Z", + "new_balance":"23936.33", + "value":"-34.43" + } + }, + { + "id":"45e98f34-8e25-4743-9b5b-c64f12e4500e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:51:55.382Z", + "completed":"2017-04-05T10:51:55.382Z", + "new_balance":"23924.40", + "value":"-11.93" + } + }, + { + "id":"305505b6-48db-4639-9c06-c4fa55102ef2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T12:54:49.636Z", + "completed":"2017-04-05T12:54:49.636Z", + "new_balance":"23843.19", + "value":"-81.21" + } + }, + { + "id":"78dd0594-3bb0-4dec-a5ff-f9eebdb3ccd0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T23:01:30.382Z", + "completed":"2017-04-05T23:01:30.382Z", + "new_balance":"23801.76", + "value":"-41.43" + } + }, + { + "id":"4844e8d9-6020-4b8e-a154-3b3c5339329d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T23:50:07.409Z", + "completed":"2017-04-05T23:50:07.409Z", + "new_balance":"23746.92", + "value":"-54.84" + } + }, + { + "id":"51257f83-dc2d-42e2-9858-2b6d7dda90ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T10:02:26.998Z", + "completed":"2017-04-08T10:02:26.998Z", + "new_balance":"23649.00", + "value":"-97.92" + } + }, + { + "id":"3d40876b-b43b-4540-bf17-f59f0beb1986", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T03:30:21.411Z", + "completed":"2017-04-10T03:30:21.411Z", + "new_balance":"23592.87", + "value":"-56.13" + } + }, + { + "id":"d1ca4ef2-166b-4b20-8c46-93440c177cb2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T03:31:21.375Z", + "completed":"2017-04-11T03:31:21.375Z", + "new_balance":"23565.42", + "value":"-27.45" + } + }, + { + "id":"3faa8ee8-6f5c-476d-a52c-6df80889663e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T10:03:39.796Z", + "completed":"2017-04-11T10:03:39.796Z", + "new_balance":"23484.21", + "value":"-81.21" + } + }, + { + "id":"8f30d731-1e4a-4803-a2fd-c83bedda8095", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T00:10:42.668Z", + "completed":"2017-04-13T00:10:42.668Z", + "new_balance":"23456.23", + "value":"-27.98" + } + }, + { + "id":"9e789cf2-a51a-4aaa-b2c2-b8a6bebcca78", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T09:18:48.477Z", + "completed":"2017-04-18T09:18:48.477Z", + "new_balance":"25806.44", + "value":"2350.21" + } + }, + { + "id":"5aaa0dbc-f77b-4d58-bf2b-a98675b67136", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T22:28:36.754Z", + "completed":"2017-04-25T22:28:36.754Z", + "new_balance":"25489.23", + "value":"-317.21" + } + }, + { + "id":"dad403b7-260c-45e2-8435-26be163da5ba", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T13:29:09.783Z", + "completed":"2017-05-02T13:29:09.783Z", + "new_balance":"25454.80", + "value":"-34.43" + } + }, + { + "id":"cdd33520-4cf8-4df9-9df3-49fbfb238d4c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T13:48:03.004Z", + "completed":"2017-05-02T13:48:03.004Z", + "new_balance":"25420.37", + "value":"-34.43" + } + }, + { + "id":"359f1fc2-88cd-4221-b375-62921265dd4d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T14:33:05.144Z", + "completed":"2017-05-02T14:33:05.144Z", + "new_balance":"25315.65", + "value":"-104.72" + } + }, + { + "id":"893b18d5-d3b8-4fc4-886c-197c9b22eed0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T17:54:12.964Z", + "completed":"2017-05-02T17:54:12.964Z", + "new_balance":"25268.75", + "value":"-46.90" + } + }, + { + "id":"18ce8cb5-a0bf-43ba-9bef-4fd88bbc0c08", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T05:29:38.465Z", + "completed":"2017-05-04T05:29:38.465Z", + "new_balance":"25262.17", + "value":"-6.58" + } + }, + { + "id":"9e8971d1-5832-4c50-b271-44c7184ebb0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T23:55:11.691Z", + "completed":"2017-05-04T23:55:11.691Z", + "new_balance":"25180.96", + "value":"-81.21" + } + }, + { + "id":"36ce17fb-6394-4ccf-8d2f-7704f31be941", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T07:20:52.216Z", + "completed":"2017-05-06T07:20:52.216Z", + "new_balance":"25100.75", + "value":"-80.21" + } + }, + { + "id":"5b84fef1-bdc4-4ef3-acdb-45405fb94221", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T15:52:57.291Z", + "completed":"2017-05-07T15:52:57.291Z", + "new_balance":"25066.24", + "value":"-34.51" + } + }, + { + "id":"12290b43-5685-4069-ba2b-aa2e2a7c9292", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T20:39:07.432Z", + "completed":"2017-05-07T20:39:07.432Z", + "new_balance":"24971.91", + "value":"-94.33" + } + }, + { + "id":"a1d6a801-ffc5-4418-a397-19cae75375ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T02:47:52.064Z", + "completed":"2017-05-09T02:47:52.064Z", + "new_balance":"24928.96", + "value":"-42.95" + } + }, + { + "id":"558fe547-4ed1-4b6d-970b-648054be51d9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T10:07:26.414Z", + "completed":"2017-05-09T10:07:26.414Z", + "new_balance":"24917.03", + "value":"-11.93" + } + }, + { + "id":"c3688f30-b85a-454e-bec0-76a3b1f1f6d1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T04:03:32.977Z", + "completed":"2017-05-13T04:03:32.977Z", + "new_balance":"24882.52", + "value":"-34.51" + } + }, + { + "id":"3e0819dd-35b5-4e79-914b-061f3866c446", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T09:24:30.394Z", + "completed":"2017-05-13T09:24:30.394Z", + "new_balance":"24875.94", + "value":"-6.58" + } + }, + { + "id":"3fb8c39e-bf39-48a7-82ac-9bb00b1c163e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T23:45:28.015Z", + "completed":"2017-05-13T23:45:28.015Z", + "new_balance":"24847.75", + "value":"-28.19" + } + }, + { + "id":"4f3b86ac-2d03-4cc8-b789-49f74a724021", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T01:32:38.451Z", + "completed":"2017-05-14T01:32:38.451Z", + "new_balance":"24766.54", + "value":"-81.21" + } + }, + { + "id":"2163904b-a866-409d-8485-1179002a4b1c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T22:06:20.701Z", + "completed":"2017-05-14T22:06:20.701Z", + "new_balance":"24701.31", + "value":"-65.23" + } + }, + { + "id":"1690dd52-6ddc-4bb8-8a54-3b2962dd9caf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T03:23:33.655Z", + "completed":"2017-05-15T03:23:33.655Z", + "new_balance":"24673.33", + "value":"-27.98" + } + }, + { + "id":"413d7751-ac6d-4a39-bed3-7c2ca7e4cb7c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T15:06:27.950Z", + "completed":"2017-05-30T15:06:27.950Z", + "new_balance":"27023.54", + "value":"2350.21" + } + }, + { + "id":"4f10b464-5846-4e49-ba69-3460542b4ef4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T16:33:14.167Z", + "completed":"2017-05-30T16:33:14.167Z", + "new_balance":"26706.33", + "value":"-317.21" + } + }, + { + "id":"572f19e6-f3de-4f7e-a70d-5a3549facc8f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T01:13:32.308Z", + "completed":"2017-06-01T01:13:32.308Z", + "new_balance":"26671.90", + "value":"-34.43" + } + }, + { + "id":"358ae6d0-abff-4973-918a-36262da578bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T03:50:22.896Z", + "completed":"2017-06-01T03:50:22.896Z", + "new_balance":"26625.00", + "value":"-46.90" + } + }, + { + "id":"6580f854-19be-47e5-9098-228d4828ff5c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T04:37:54.910Z", + "completed":"2017-06-01T04:37:54.910Z", + "new_balance":"26590.57", + "value":"-34.43" + } + }, + { + "id":"759b6e0a-bbe2-41b2-bbd7-288f802fcf05", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T20:19:27.696Z", + "completed":"2017-06-01T20:19:27.696Z", + "new_balance":"26485.85", + "value":"-104.72" + } + }, + { + "id":"0c7e65fc-4757-488c-b24f-aa3b4b19952a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T00:03:31.591Z", + "completed":"2017-06-04T00:03:31.591Z", + "new_balance":"26424.48", + "value":"-61.37" + } + }, + { + "id":"4f523c0e-5638-45e1-a49c-465e4dac47bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T08:48:54.945Z", + "completed":"2017-06-04T08:48:54.945Z", + "new_balance":"26360.91", + "value":"-63.57" + } + }, + { + "id":"c2de5f4e-0c17-409f-99b2-79cad4acb8f0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T09:31:32.875Z", + "completed":"2017-06-11T09:31:32.875Z", + "new_balance":"26279.12", + "value":"-81.79" + } + }, + { + "id":"88fc5561-c053-415f-a109-bbeb9c7a9d2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T12:16:17.400Z", + "completed":"2017-06-11T12:16:17.400Z", + "new_balance":"26233.65", + "value":"-45.47" + } + }, + { + "id":"7121008c-e3d5-4989-a446-0e51677f02e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:24:26.558Z", + "completed":"2017-06-11T14:24:26.558Z", + "new_balance":"26145.16", + "value":"-88.49" + } + }, + { + "id":"35df6c2b-58aa-4228-ae7a-8c14eb59e969", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T12:22:51.602Z", + "completed":"2017-06-12T12:22:51.602Z", + "new_balance":"26138.39", + "value":"-6.77" + } + }, + { + "id":"7bbf85e4-c087-4a3b-b8f2-b6ef00e24faf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T15:05:30.284Z", + "completed":"2017-06-12T15:05:30.284Z", + "new_balance":"26098.75", + "value":"-39.64" + } + }, + { + "id":"ad9724cb-6747-4104-8bea-f8afd65e50bd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T22:50:53.693Z", + "completed":"2017-06-16T22:50:53.693Z", + "new_balance":"25994.56", + "value":"-104.19" + } + }, + { + "id":"a06f1a44-ef29-4727-8275-701005ea7c0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T21:28:51.067Z", + "completed":"2017-06-29T21:28:51.067Z", + "new_balance":"25966.58", + "value":"-27.98" + } + }, + { + "id":"5fc888c3-ba00-4cc6-aa81-49ed5e5dcde4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T05:42:44.000Z", + "completed":"2017-06-30T05:42:44.000Z", + "new_balance":"25649.37", + "value":"-317.21" + } + }, + { + "id":"312056ed-114f-4edb-80c6-174fb60c2c1a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T13:23:42.885Z", + "completed":"2017-06-30T13:23:42.885Z", + "new_balance":"27999.58", + "value":"2350.21" + } + }, + { + "id":"283d1d89-64ec-4cb3-a9d4-c01912eba0f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T10:43:22.333Z", + "completed":"2017-07-01T10:43:22.333Z", + "new_balance":"27965.15", + "value":"-34.43" + } + }, + { + "id":"15c56c09-f425-42a5-92b7-dd8e22879d07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T19:50:30.436Z", + "completed":"2017-07-01T19:50:30.436Z", + "new_balance":"27930.72", + "value":"-34.43" + } + }, + { + "id":"dcc4b28f-d7db-4527-bf85-876beac49506", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T19:54:22.628Z", + "completed":"2017-07-01T19:54:22.628Z", + "new_balance":"27883.82", + "value":"-46.90" + } + }, + { + "id":"2a2d5695-108f-4fe0-88f3-fa8ec79d2dff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T22:49:47.055Z", + "completed":"2017-07-01T22:49:47.055Z", + "new_balance":"27779.10", + "value":"-104.72" + } + }, + { + "id":"56a672f0-4ab5-4d82-a828-0351721da587", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T01:04:44.716Z", + "completed":"2017-07-05T01:04:44.716Z", + "new_balance":"27711.65", + "value":"-67.45" + } + }, + { + "id":"4cecb228-d100-47d8-be9b-f3ab4753b21d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T08:53:54.606Z", + "completed":"2017-07-05T08:53:54.606Z", + "new_balance":"27630.44", + "value":"-81.21" + } + }, + { + "id":"adc3e1c9-1ca1-4ccd-a32c-255cd9303a38", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T01:41:35.482Z", + "completed":"2017-07-08T01:41:35.482Z", + "new_balance":"27619.53", + "value":"-10.91" + } + }, + { + "id":"49b04292-a5f0-4a44-aae0-646a79ff2e28", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T18:22:01.916Z", + "completed":"2017-07-10T18:22:01.916Z", + "new_balance":"27573.07", + "value":"-46.46" + } + }, + { + "id":"06cb7cc9-39e2-4f33-ab68-d9a009fa61be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T09:43:06.978Z", + "completed":"2017-07-12T09:43:06.978Z", + "new_balance":"27516.43", + "value":"-56.64" + } + }, + { + "id":"7ac04034-18b8-436d-8189-3e1dfbe5c8fe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T14:21:56.832Z", + "completed":"2017-07-12T14:21:56.832Z", + "new_balance":"27482.00", + "value":"-34.43" + } + }, + { + "id":"b5519e2d-b590-4b35-87d9-d83375ebf9c5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T14:06:18.357Z", + "completed":"2017-07-13T14:06:18.357Z", + "new_balance":"27478.41", + "value":"-3.59" + } + }, + { + "id":"7de5c15a-37a5-45e5-9cf1-b1c7be9e0ea7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T14:23:14.327Z", + "completed":"2017-07-13T14:23:14.327Z", + "new_balance":"27472.76", + "value":"-5.65" + } + }, + { + "id":"a5762c25-5ae3-49d7-a061-452ebc7848f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T01:41:37.069Z", + "completed":"2017-07-18T01:41:37.069Z", + "new_balance":"27389.67", + "value":"-83.09" + } + }, + { + "id":"b93d53c1-4f35-41f4-b18c-2aa4fb75f220", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T11:12:01.010Z", + "completed":"2017-07-20T11:12:01.010Z", + "new_balance":"27308.46", + "value":"-81.21" + } + }, + { + "id":"a54336af-f68a-4446-9545-4a61335431ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T13:25:24.570Z", + "completed":"2017-07-20T13:25:24.570Z", + "new_balance":"27227.02", + "value":"-81.44" + } + }, + { + "id":"c18d5a9a-8eee-48b7-bdf7-1ae42b9a0440", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T10:27:01.259Z", + "completed":"2017-07-24T10:27:01.259Z", + "new_balance":"27199.57", + "value":"-27.45" + } + }, + { + "id":"10ed39d1-1b40-4ba0-831d-bff464c3ea4e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T08:45:59.520Z", + "completed":"2017-07-29T08:45:59.520Z", + "new_balance":"27171.59", + "value":"-27.98" + } + }, + { + "id":"e8447349-6d01-491a-8405-9b9a2c33ae82", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T20:58:56.063Z", + "completed":"2017-07-29T20:58:56.063Z", + "new_balance":"29521.80", + "value":"2350.21" + } + }, + { + "id":"bd2f8908-8cf7-43f7-b7f0-3e3833b2e249", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T03:41:09.945Z", + "completed":"2017-07-30T03:41:09.945Z", + "new_balance":"29204.59", + "value":"-317.21" + } + }, + { + "id":"041311f1-e494-4d6b-bd8c-d8ded071665a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T02:23:21.554Z", + "completed":"2017-08-01T02:23:21.554Z", + "new_balance":"29099.87", + "value":"-104.72" + } + }, + { + "id":"65ec911f-e5b6-4b43-8242-21045110021a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T03:08:54.137Z", + "completed":"2017-08-01T03:08:54.137Z", + "new_balance":"29065.44", + "value":"-34.43" + } + }, + { + "id":"f747a044-349b-41a0-a39d-452bccb32abe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T07:55:50.980Z", + "completed":"2017-08-01T07:55:50.980Z", + "new_balance":"29031.01", + "value":"-34.43" + } + }, + { + "id":"083c6f5f-daf8-4cbb-9a4d-49aa28413b51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T16:33:21.070Z", + "completed":"2017-08-01T16:33:21.070Z", + "new_balance":"28984.11", + "value":"-46.90" + } + }, + { + "id":"7836630c-fc45-4ec7-8198-330208b3ef2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T04:41:52.295Z", + "completed":"2017-08-03T04:41:52.295Z", + "new_balance":"28977.39", + "value":"-6.72" + } + }, + { + "id":"d92baf7a-337d-496e-ae67-b428cc6badb5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T05:57:23.520Z", + "completed":"2017-08-04T05:57:23.520Z", + "new_balance":"28896.18", + "value":"-81.21" + } + }, + { + "id":"3e555b86-c8e4-4f98-9399-b4d30e6442e7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T01:15:34.776Z", + "completed":"2017-08-08T01:15:34.776Z", + "new_balance":"28880.89", + "value":"-15.29" + } + }, + { + "id":"43a5ad8a-c46d-4bd8-baa8-d7f9ab61f82c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T03:30:22.819Z", + "completed":"2017-08-08T03:30:22.819Z", + "new_balance":"28774.08", + "value":"-106.81" + } + }, + { + "id":"fca7a453-0d6a-4a35-ae6b-b3e5c2ec2134", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:14:09.073Z", + "completed":"2017-08-08T04:14:09.073Z", + "new_balance":"28692.91", + "value":"-81.17" + } + }, + { + "id":"8e1643af-b03a-41f9-a6f2-64f99b0f0674", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:17:08.114Z", + "completed":"2017-08-08T04:17:08.114Z", + "new_balance":"28664.88", + "value":"-28.03" + } + }, + { + "id":"aafea28d-b197-4321-a9e5-25c946740d4b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T04:56:57.575Z", + "completed":"2017-08-09T04:56:57.575Z", + "new_balance":"28621.93", + "value":"-42.95" + } + }, + { + "id":"ecd168ba-926f-4406-9c52-51eccf19ef34", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T17:25:29.084Z", + "completed":"2017-08-14T17:25:29.084Z", + "new_balance":"28595.20", + "value":"-26.73" + } + }, + { + "id":"5935518c-c743-41e7-a78f-171fe69a03bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T15:22:34.407Z", + "completed":"2017-08-15T15:22:34.407Z", + "new_balance":"28553.66", + "value":"-41.54" + } + }, + { + "id":"cfaca8de-7042-47d8-810e-cecd8c6050e6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T06:18:04.693Z", + "completed":"2017-08-19T06:18:04.693Z", + "new_balance":"28546.67", + "value":"-6.99" + } + }, + { + "id":"64cb911a-60eb-4c0a-a1db-79a97935ffbd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T04:33:02.498Z", + "completed":"2017-08-22T04:33:02.498Z", + "new_balance":"28496.73", + "value":"-49.94" + } + }, + { + "id":"fb8a45cc-caeb-4453-8b50-7f4cebce87ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T13:43:27.207Z", + "completed":"2017-08-26T13:43:27.207Z", + "new_balance":"28415.52", + "value":"-81.21" + } + }, + { + "id":"376cb6a5-1acd-48c4-91dd-87b9be4611d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T19:00:02.093Z", + "completed":"2017-08-28T19:00:02.093Z", + "new_balance":"28098.31", + "value":"-317.21" + } + }, + { + "id":"7769a798-2b0e-408b-bfe7-1aca06244896", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T02:41:08.706Z", + "completed":"2017-08-29T02:41:08.706Z", + "new_balance":"30448.52", + "value":"2350.21" + } + }, + { + "id":"db7f33de-5d50-4600-89ae-60057f61e91f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T07:27:22.411Z", + "completed":"2017-08-29T07:27:22.411Z", + "new_balance":"30420.54", + "value":"-27.98" + } + }, + { + "id":"eb707cbc-e124-48cc-bceb-b359f580c5f9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T03:27:23.755Z", + "completed":"2017-08-30T03:27:23.755Z", + "new_balance":"30103.33", + "value":"-317.21" + } + }, + { + "id":"668a8815-8ef4-47c5-b019-638a81253c89", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T05:24:44.170Z", + "completed":"2017-09-01T05:24:44.170Z", + "new_balance":"30056.43", + "value":"-46.90" + } + }, + { + "id":"56948622-57de-431d-ada0-3dc880aacaf5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T08:50:28.055Z", + "completed":"2017-09-01T08:50:28.055Z", + "new_balance":"29951.71", + "value":"-104.72" + } + }, + { + "id":"4378629c-e1be-46bb-ba79-12498aee3035", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T16:41:39.051Z", + "completed":"2017-09-01T16:41:39.051Z", + "new_balance":"29917.28", + "value":"-34.43" + } + }, + { + "id":"ac5a2fda-bff6-4730-a37f-7fcfdaa6ff68", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T19:00:24.619Z", + "completed":"2017-09-01T19:00:24.619Z", + "new_balance":"29882.85", + "value":"-34.43" + } + }, + { + "id":"b1b5be1f-d804-4284-b9f7-438b338bc1cd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T10:23:16.869Z", + "completed":"2017-09-09T10:23:16.869Z", + "new_balance":"29819.28", + "value":"-63.57" + } + }, + { + "id":"8e879be8-ee02-46d4-9881-f5bb22fe1f10", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T14:42:51.656Z", + "completed":"2017-09-09T14:42:51.656Z", + "new_balance":"29757.91", + "value":"-61.37" + } + }, + { + "id":"79f54949-069e-4609-b452-7d8e833a5a37", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:41:15.943Z", + "completed":"2017-09-17T13:41:15.943Z", + "new_balance":"29669.42", + "value":"-88.49" + } + }, + { + "id":"ff552689-11b7-4093-8c6e-6a69eca1c243", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:57:11.371Z", + "completed":"2017-09-18T07:57:11.371Z", + "new_balance":"29662.65", + "value":"-6.77" + } + }, + { + "id":"122ae526-c076-4bb8-9a41-f27f210a9ce1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T11:55:35.912Z", + "completed":"2017-09-18T11:55:35.912Z", + "new_balance":"29617.18", + "value":"-45.47" + } + }, + { + "id":"774f4656-90f7-4756-b975-b369a3a69da8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T14:24:31.467Z", + "completed":"2017-09-18T14:24:31.467Z", + "new_balance":"29577.54", + "value":"-39.64" + } + }, + { + "id":"8b16e5e1-9ee9-45c8-b5e7-9269dea091b4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T21:22:00.434Z", + "completed":"2017-09-18T21:22:00.434Z", + "new_balance":"29495.75", + "value":"-81.79" + } + }, + { + "id":"f08f3496-8bbb-4bda-90aa-85511f91c98f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T18:11:30.112Z", + "completed":"2017-09-22T18:11:30.112Z", + "new_balance":"29391.56", + "value":"-104.19" + } + }, + { + "id":"8620b464-0484-42e1-882b-adc2a2204c3c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T09:58:56.721Z", + "completed":"2017-09-29T09:58:56.721Z", + "new_balance":"29363.58", + "value":"-27.98" + } + }, + { + "id":"e0e9ff21-c11b-4a32-b589-b338297b84b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T19:48:19.631Z", + "completed":"2017-09-29T19:48:19.631Z", + "new_balance":"31713.79", + "value":"2350.21" + } + }, + { + "id":"fb6ea6c2-fc10-4f33-8b3f-63af1b8e03f7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T05:09:25.332Z", + "completed":"2017-09-30T05:09:25.332Z", + "new_balance":"31396.58", + "value":"-317.21" + } + }, + { + "id":"ab55b2e7-5d2b-4543-86f3-0062cc0768eb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T03:33:01.819Z", + "completed":"2017-10-01T03:33:01.819Z", + "new_balance":"31362.15", + "value":"-34.43" + } + }, + { + "id":"a63fc2f8-9aa5-427a-9040-e4208a0dc20a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T05:07:02.519Z", + "completed":"2017-10-01T05:07:02.519Z", + "new_balance":"31315.25", + "value":"-46.90" + } + }, + { + "id":"2fafa685-ab1f-4121-963e-ee297ddb71d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T05:56:38.912Z", + "completed":"2017-10-01T05:56:38.912Z", + "new_balance":"31280.82", + "value":"-34.43" + } + }, + { + "id":"f999978e-b230-4d7c-a158-b05a6ac6fd07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T09:38:00.290Z", + "completed":"2017-10-01T09:38:00.290Z", + "new_balance":"31176.10", + "value":"-104.72" + } + }, + { + "id":"bd4a6a7d-b0cb-4cbd-a364-399de8075565", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T07:43:52.790Z", + "completed":"2017-10-02T07:43:52.790Z", + "new_balance":"31081.77", + "value":"-94.33" + } + }, + { + "id":"36e1f472-01ba-4659-958f-004ea80bfd5f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T09:38:28.910Z", + "completed":"2017-10-05T09:38:28.910Z", + "new_balance":"31077.13", + "value":"-4.64" + } + }, + { + "id":"61ea223a-0d8a-46a1-9bfc-d57f527b6fb2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:01:48.013Z", + "completed":"2017-10-05T10:01:48.013Z", + "new_balance":"30995.92", + "value":"-81.21" + } + }, + { + "id":"23f47905-aee6-4bd3-9d54-93245caa68e2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T15:10:08.488Z", + "completed":"2017-10-05T15:10:08.488Z", + "new_balance":"30983.99", + "value":"-11.93" + } + }, + { + "id":"4a49dd2d-a606-4fda-8043-43edcb710fb0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T16:22:00.297Z", + "completed":"2017-10-05T16:22:00.297Z", + "new_balance":"30977.41", + "value":"-6.58" + } + }, + { + "id":"394fbaa4-acc2-44f5-bd22-be3628d75864", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T18:40:56.113Z", + "completed":"2017-10-05T18:40:56.113Z", + "new_balance":"30935.98", + "value":"-41.43" + } + }, + { + "id":"7c29add5-d248-4676-bc58-e92581246c69", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T21:49:03.613Z", + "completed":"2017-10-05T21:49:03.613Z", + "new_balance":"30901.55", + "value":"-34.43" + } + }, + { + "id":"8344f437-4105-4d49-90ba-d387a76af874", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T22:12:48.059Z", + "completed":"2017-10-05T22:12:48.059Z", + "new_balance":"30846.71", + "value":"-54.84" + } + }, + { + "id":"078d410d-03da-424c-a83b-fe256ea5d6a7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T17:01:51.432Z", + "completed":"2017-10-09T17:01:51.432Z", + "new_balance":"30748.79", + "value":"-97.92" + } + }, + { + "id":"f51417e3-648e-4a69-bad1-53616210ca83", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T22:24:45.812Z", + "completed":"2017-10-11T22:24:45.812Z", + "new_balance":"30692.66", + "value":"-56.13" + } + }, + { + "id":"8b167963-40f8-40a1-b945-dffc8115d70f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T13:04:48.631Z", + "completed":"2017-10-12T13:04:48.631Z", + "new_balance":"30665.21", + "value":"-27.45" + } + }, + { + "id":"cef93ce3-caee-4f25-bfc8-16457779ebfa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T22:42:06.656Z", + "completed":"2017-10-12T22:42:06.656Z", + "new_balance":"30584.00", + "value":"-81.21" + } + }, + { + "id":"1f4a2299-c4af-4da2-938e-8b06e6b0e919", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T08:39:50.042Z", + "completed":"2017-10-20T08:39:50.042Z", + "new_balance":"30556.02", + "value":"-27.98" + } + }, + { + "id":"6c1816cc-c3cb-4af8-8b02-c54c7b1d5148", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T20:00:47.975Z", + "completed":"2017-10-29T20:00:47.975Z", + "new_balance":"32906.23", + "value":"2350.21" + } + }, + { + "id":"67b5e7a1-01b3-45b9-987a-62cc0c7e3fd7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T04:05:20.887Z", + "completed":"2017-10-30T04:05:20.887Z", + "new_balance":"32589.02", + "value":"-317.21" + } + }, + { + "id":"05def60c-96a5-4fd8-bc22-20894b93e951", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T04:37:28.965Z", + "completed":"2017-11-02T04:37:28.965Z", + "new_balance":"32554.59", + "value":"-34.43" + } + }, + { + "id":"05541894-2b56-4b54-8f38-b4562f5e2a61", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T20:42:12.760Z", + "completed":"2017-11-02T20:42:12.760Z", + "new_balance":"32520.16", + "value":"-34.43" + } + }, + { + "id":"55416ab6-9a28-4289-9818-c4599a9f62dd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T23:08:31.001Z", + "completed":"2017-11-02T23:08:31.001Z", + "new_balance":"32473.26", + "value":"-46.90" + } + }, + { + "id":"bcb7df33-b653-4ca8-9fb9-37f9f73c62e5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T23:11:05.882Z", + "completed":"2017-11-02T23:11:05.882Z", + "new_balance":"32368.54", + "value":"-104.72" + } + }, + { + "id":"dead8267-55be-443b-ba83-463ff5226e77", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T01:16:12.183Z", + "completed":"2017-11-04T01:16:12.183Z", + "new_balance":"32287.33", + "value":"-81.21" + } + }, + { + "id":"cf9d6b92-027e-4b42-9daf-b9cac69f00f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T01:27:13.206Z", + "completed":"2017-11-04T01:27:13.206Z", + "new_balance":"32280.75", + "value":"-6.58" + } + }, + { + "id":"d146233d-120a-4344-9362-0c596a184ecb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T22:57:43.598Z", + "completed":"2017-11-06T22:57:43.598Z", + "new_balance":"32200.54", + "value":"-80.21" + } + }, + { + "id":"5b1cc743-e290-4a2a-9898-ba0c8181307e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T06:37:22.291Z", + "completed":"2017-11-07T06:37:22.291Z", + "new_balance":"32166.03", + "value":"-34.51" + } + }, + { + "id":"b7b48bde-d564-422c-b557-fcf42c64b73f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T17:06:34.525Z", + "completed":"2017-11-07T17:06:34.525Z", + "new_balance":"32071.70", + "value":"-94.33" + } + }, + { + "id":"ad820210-6895-4dcc-a406-b8dfb3a9b0a2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T01:11:59.101Z", + "completed":"2017-11-09T01:11:59.101Z", + "new_balance":"32059.77", + "value":"-11.93" + } + }, + { + "id":"13618198-cf8a-4ff0-aa0d-24d3e32017ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T07:56:14.120Z", + "completed":"2017-11-09T07:56:14.120Z", + "new_balance":"32016.82", + "value":"-42.95" + } + }, + { + "id":"25088263-8345-46fb-8890-f2926fe8bf67", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T03:17:46.747Z", + "completed":"2017-11-13T03:17:46.747Z", + "new_balance":"32010.24", + "value":"-6.58" + } + }, + { + "id":"58fa2ec5-6324-4ad3-8d7a-901d01ad372c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T19:03:49.777Z", + "completed":"2017-11-13T19:03:49.777Z", + "new_balance":"31982.05", + "value":"-28.19" + } + }, + { + "id":"a960c077-fcff-4456-a88a-d0ae2040878a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T22:28:27.438Z", + "completed":"2017-11-13T22:28:27.438Z", + "new_balance":"31947.54", + "value":"-34.51" + } + }, + { + "id":"60eb9437-0060-4093-94b5-9347980d6df7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T00:39:19.644Z", + "completed":"2017-11-14T00:39:19.644Z", + "new_balance":"31882.31", + "value":"-65.23" + } + }, + { + "id":"b662c55b-8d37-4654-a8bd-757df0491cfa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T19:58:47.313Z", + "completed":"2017-11-14T19:58:47.313Z", + "new_balance":"31801.10", + "value":"-81.21" + } + }, + { + "id":"4ac735b5-deb5-4b0a-a10d-083f123e9ba4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T03:33:30.390Z", + "completed":"2017-11-15T03:33:30.390Z", + "new_balance":"31773.12", + "value":"-27.98" + } + }, + { + "id":"e1cc0367-2154-41aa-bbe7-2fb01747b30b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T07:04:38.969Z", + "completed":"2017-11-30T07:04:38.969Z", + "new_balance":"34123.33", + "value":"2350.21" + } + }, + { + "id":"9aa2e200-f733-4f36-b45a-cdfc4377d6de", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T16:00:29.047Z", + "completed":"2017-11-30T16:00:29.047Z", + "new_balance":"33806.12", + "value":"-317.21" + } + }, + { + "id":"80d2110b-c07b-4daf-9fb4-9d25a37086e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T03:19:12.980Z", + "completed":"2017-12-01T03:19:12.980Z", + "new_balance":"33759.22", + "value":"-46.90" + } + }, + { + "id":"381cef2b-6c2e-4a01-9a94-2a489f005760", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:19:57.773Z", + "completed":"2017-12-01T06:19:57.773Z", + "new_balance":"33724.79", + "value":"-34.43" + } + }, + { + "id":"0cf7c6b9-1daf-4be3-9862-9d31d0358e51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T20:38:19.270Z", + "completed":"2017-12-01T20:38:19.270Z", + "new_balance":"33690.36", + "value":"-34.43" + } + }, + { + "id":"7dfd3a7e-557f-4a1b-b2cb-8d36147451fe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T23:42:09.224Z", + "completed":"2017-12-01T23:42:09.224Z", + "new_balance":"33585.64", + "value":"-104.72" + } + }, + { + "id":"d43cef9c-409e-42c1-a7da-2a05fb0141a0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T06:49:16.723Z", + "completed":"2017-12-04T06:49:16.723Z", + "new_balance":"33524.27", + "value":"-61.37" + } + }, + { + "id":"b9f4b1b0-be45-40f8-8dc0-466a40e8fb64", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T08:53:30.681Z", + "completed":"2017-12-04T08:53:30.681Z", + "new_balance":"33460.70", + "value":"-63.57" + } + }, + { + "id":"13661a32-ade9-453b-9376-91fed6c5513c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T00:23:22.844Z", + "completed":"2017-12-11T00:23:22.844Z", + "new_balance":"33372.21", + "value":"-88.49" + } + }, + { + "id":"d5266a1b-6b4c-42c8-8684-c8f431ac2734", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T02:20:46.734Z", + "completed":"2017-12-11T02:20:46.734Z", + "new_balance":"33290.42", + "value":"-81.79" + } + }, + { + "id":"d1640e82-af8c-416a-ac3f-0f8742e130bd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:30:28.737Z", + "completed":"2017-12-11T06:30:28.737Z", + "new_balance":"33244.95", + "value":"-45.47" + } + }, + { + "id":"63ddf6d5-f395-4612-8cc0-186b75b69f9f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T14:36:05.787Z", + "completed":"2017-12-12T14:36:05.787Z", + "new_balance":"33238.18", + "value":"-6.77" + } + }, + { + "id":"008ba4d6-a253-4e1e-83e2-2a95efbef196", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T19:45:38.636Z", + "completed":"2017-12-12T19:45:38.636Z", + "new_balance":"33198.54", + "value":"-39.64" + } + }, + { + "id":"5141f739-c4a2-4818-986f-c99c2925c1ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T04:27:14.466Z", + "completed":"2017-12-16T04:27:14.466Z", + "new_balance":"33094.35", + "value":"-104.19" + } + }, + { + "id":"5e0549a0-99bf-44e5-bcd8-96199f64f801", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T19:56:37.632Z", + "completed":"2017-12-29T19:56:37.632Z", + "new_balance":"33066.37", + "value":"-27.98" + } + }, + { + "id":"ccf2bc3c-2191-4321-b1f9-110b6401b36b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T09:18:39.778Z", + "completed":"2017-12-30T09:18:39.778Z", + "new_balance":"32749.16", + "value":"-317.21" + } + }, + { + "id":"71828994-82d2-44f0-98a7-2397842d1e69", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T17:04:23.264Z", + "completed":"2017-12-30T17:04:23.264Z", + "new_balance":"35099.37", + "value":"2350.21" + } + }, + { + "id":"8aa6c1b9-3d69-4fdf-a8c9-47a0dbb56609", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T16:26:42.574Z", + "completed":"2016-03-01T16:26:42.574Z", + "new_balance":"3707.25", + "value":"-4.61" + } + }, + { + "id":"f86b4fb5-4dd3-4549-b3af-246612cdbdd0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T09:56:45.725Z", + "completed":"2016-03-02T09:56:45.725Z", + "new_balance":"3700.06", + "value":"-7.19" + } + }, + { + "id":"0e2dd05d-93d0-4e14-9430-9db43cd546a0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T05:10:46.387Z", + "completed":"2016-03-06T05:10:46.387Z", + "new_balance":"3693.53", + "value":"-6.53" + } + }, + { + "id":"b2d0614f-d1ee-425f-af88-0d740fa090e3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T15:31:49.116Z", + "completed":"2016-03-11T15:31:49.116Z", + "new_balance":"3692.88", + "value":"-0.65" + } + }, + { + "id":"c2716186-fb5f-48f8-9e35-daf96b482675", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T18:17:43.072Z", + "completed":"2016-03-13T18:17:43.072Z", + "new_balance":"3692.54", + "value":"-0.34" + } + }, + { + "id":"1794dfb2-d700-48df-a2da-61ee61a39de8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T02:22:09.110Z", + "completed":"2016-03-16T02:22:09.110Z", + "new_balance":"3669.30", + "value":"-23.24" + } + }, + { + "id":"b57fdcab-4997-40d4-a79b-87225f956633", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T01:28:42.005Z", + "completed":"2016-03-17T01:28:42.005Z", + "new_balance":"3656.20", + "value":"-13.10" + } + }, + { + "id":"6e8ba5ac-4b9e-4463-b554-d177fdc76738", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T14:45:59.946Z", + "completed":"2016-03-17T14:45:59.946Z", + "new_balance":"3651.93", + "value":"-4.27" + } + }, + { + "id":"2e4272d7-f89d-4c42-802b-ed2e5275c51c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T23:12:16.416Z", + "completed":"2016-03-19T23:12:16.416Z", + "new_balance":"3651.59", + "value":"-0.34" + } + }, + { + "id":"c81dbb96-22c2-42c4-8c07-a17081b6a363", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T06:09:01.905Z", + "completed":"2016-03-21T06:09:01.905Z", + "new_balance":"3649.27", + "value":"-2.32" + } + }, + { + "id":"520292bc-89bc-43c7-bf4f-ee4e650c257d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T05:41:23.440Z", + "completed":"2016-03-23T05:41:23.440Z", + "new_balance":"3644.66", + "value":"-4.61" + } + }, + { + "id":"7181a520-b5df-431d-99e8-a75e162dcf0a", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T14:39:46.998Z", + "completed":"2016-03-24T14:39:46.998Z", + "new_balance":"3644.01", + "value":"-0.65" + } + }, + { + "id":"c3688717-b519-41f1-a65c-1833b258653b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T23:31:22.877Z", + "completed":"2016-03-26T23:31:22.877Z", + "new_balance":"3642.86", + "value":"-1.15" + } + }, + { + "id":"0441d666-8eab-462b-a7c5-148c0aa450da", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T08:14:49.231Z", + "completed":"2016-04-01T08:14:49.231Z", + "new_balance":"3641.71", + "value":"-1.15" + } + }, + { + "id":"4bac4265-75a4-4683-ad47-1c86c274c973", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T11:35:46.191Z", + "completed":"2016-06-01T11:35:46.191Z", + "new_balance":"3637.10", + "value":"-4.61" + } + }, + { + "id":"521d0dfd-c52d-444e-a260-45dfc28497eb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T18:06:40.330Z", + "completed":"2016-06-04T18:06:40.330Z", + "new_balance":"3629.91", + "value":"-7.19" + } + }, + { + "id":"8930940c-d7f9-4b87-ba2a-c5ef202e2af2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T06:42:53.071Z", + "completed":"2016-06-19T06:42:53.071Z", + "new_balance":"3623.38", + "value":"-6.53" + } + }, + { + "id":"787e3c5f-1c5e-476b-982f-4b9ec41338fb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T00:26:12.190Z", + "completed":"2016-06-21T00:26:12.190Z", + "new_balance":"3622.73", + "value":"-0.65" + } + }, + { + "id":"89802208-8317-4c88-882f-cf642cea017f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T14:33:11.403Z", + "completed":"2016-06-24T14:33:11.403Z", + "new_balance":"3622.39", + "value":"-0.34" + } + }, + { + "id":"0914f7d6-85f2-4b72-86b0-af7972874703", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T02:24:05.326Z", + "completed":"2016-06-28T02:24:05.326Z", + "new_balance":"3618.12", + "value":"-4.27" + } + }, + { + "id":"e7adf460-ce6b-4b5e-8b1b-7664b7a941d8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T12:15:33.899Z", + "completed":"2016-06-28T12:15:33.899Z", + "new_balance":"3605.02", + "value":"-13.10" + } + }, + { + "id":"7cab66e7-a523-4362-aca7-37993e6d1369", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T23:43:06.337Z", + "completed":"2016-06-28T23:43:06.337Z", + "new_balance":"3581.78", + "value":"-23.24" + } + }, + { + "id":"8e711a5d-af29-455e-8607-c9db4d056aa6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T03:17:06.847Z", + "completed":"2016-06-29T03:17:06.847Z", + "new_balance":"3581.44", + "value":"-0.34" + } + }, + { + "id":"f299fbf9-6ab2-45a0-bdaf-e8a5e55cfd62", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T03:00:08.208Z", + "completed":"2016-06-30T03:00:08.208Z", + "new_balance":"3576.83", + "value":"-4.61" + } + }, + { + "id":"47b2b430-0f4e-41e5-b1b7-efc3a96ffd36", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T04:42:19.809Z", + "completed":"2016-06-30T04:42:19.809Z", + "new_balance":"3574.51", + "value":"-2.32" + } + }, + { + "id":"a78238d4-719d-436d-894f-ca686ae4adc2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T06:44:35.508Z", + "completed":"2016-06-30T06:44:35.508Z", + "new_balance":"3573.86", + "value":"-0.65" + } + }, + { + "id":"f0c694d0-73b3-4283-b2e0-9700112fcebe", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T23:29:38.060Z", + "completed":"2016-09-01T23:29:38.060Z", + "new_balance":"3572.01", + "value":"-1.85" + } + }, + { + "id":"159d94fe-d674-4109-b13f-1bb51f9f764e", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T11:01:56.625Z", + "completed":"2016-09-02T11:01:56.625Z", + "new_balance":"3564.82", + "value":"-7.19" + } + }, + { + "id":"72cfc5d7-af6d-4d9e-b425-5849be6386bc", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T19:40:05.966Z", + "completed":"2016-09-07T19:40:05.966Z", + "new_balance":"3558.29", + "value":"-6.53" + } + }, + { + "id":"f56f6b0e-82b1-4782-a4a7-a2f7afc88ada", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T11:42:53.713Z", + "completed":"2016-09-11T11:42:53.713Z", + "new_balance":"3557.64", + "value":"-0.65" + } + }, + { + "id":"052236a9-6268-4576-9a01-e42f7865a347", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T23:23:45.093Z", + "completed":"2016-09-15T23:23:45.093Z", + "new_balance":"3556.24", + "value":"-1.40" + } + }, + { + "id":"045d58d1-fa82-48af-9447-f9bebc825028", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T09:57:16.519Z", + "completed":"2016-09-17T09:57:16.519Z", + "new_balance":"3551.97", + "value":"-4.27" + } + }, + { + "id":"31673a93-7251-4eee-b261-295c49561e22", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T17:50:09.475Z", + "completed":"2016-09-17T17:50:09.475Z", + "new_balance":"3538.87", + "value":"-13.10" + } + }, + { + "id":"52c0dc39-094d-4351-9eb6-59a83bc4603b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T19:04:49.553Z", + "completed":"2016-09-17T19:04:49.553Z", + "new_balance":"3515.63", + "value":"-23.24" + } + }, + { + "id":"df2ecd16-db89-468b-bcd2-412bf0b23fe0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T18:50:49.330Z", + "completed":"2016-09-19T18:50:49.330Z", + "new_balance":"3515.29", + "value":"-0.34" + } + }, + { + "id":"36d9efd5-4299-4491-914a-c6a268d2ebd4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T04:50:02.134Z", + "completed":"2016-09-21T04:50:02.134Z", + "new_balance":"3512.97", + "value":"-2.32" + } + }, + { + "id":"20a5cd92-a69b-4d30-b7cc-e652eed2b4d6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T22:35:54.932Z", + "completed":"2016-09-23T22:35:54.932Z", + "new_balance":"3508.36", + "value":"-4.61" + } + }, + { + "id":"50707381-188a-4c06-b93b-59b357b28e53", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T05:24:55.073Z", + "completed":"2016-09-24T05:24:55.073Z", + "new_balance":"3507.71", + "value":"-0.65" + } + }, + { + "id":"886c5615-66f8-49ff-a2a6-33f1d1f3aa60", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T20:55:17.950Z", + "completed":"2016-09-27T20:55:17.950Z", + "new_balance":"3506.56", + "value":"-1.15" + } + }, + { + "id":"2ae0ca89-a1d8-4944-a4a2-7d5da9da1f92", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T02:46:40.359Z", + "completed":"2016-10-01T02:46:40.359Z", + "new_balance":"3505.41", + "value":"-1.15" + } + }, + { + "id":"6dab2372-94ce-4870-a71f-5641d5ff0f75", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:27:06.378Z", + "completed":"2016-12-01T15:27:06.378Z", + "new_balance":"3500.80", + "value":"-4.61" + } + }, + { + "id":"fb3c7fda-b970-49a6-a36e-33d464002314", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T21:49:32.245Z", + "completed":"2016-12-04T21:49:32.245Z", + "new_balance":"3493.61", + "value":"-7.19" + } + }, + { + "id":"dfd08aad-5ae1-4c40-ad0e-95288cdd2f7d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T00:07:42.567Z", + "completed":"2016-12-19T00:07:42.567Z", + "new_balance":"3487.08", + "value":"-6.53" + } + }, + { + "id":"cb85e520-b361-419d-9db9-0b2df2dff498", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T07:34:27.812Z", + "completed":"2016-12-24T07:34:27.812Z", + "new_balance":"3486.74", + "value":"-0.34" + } + }, + { + "id":"4b169672-06e0-4374-a4fc-860de3e2ea94", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T22:57:30.731Z", + "completed":"2016-12-24T22:57:30.731Z", + "new_balance":"3486.09", + "value":"-0.65" + } + }, + { + "id":"304382c0-2ff0-4f67-bb85-7172b2f599f2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T02:25:26.793Z", + "completed":"2016-12-28T02:25:26.793Z", + "new_balance":"3481.82", + "value":"-4.27" + } + }, + { + "id":"8769697b-4919-4b0e-bbd4-4ccc3c388eeb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T12:26:49.362Z", + "completed":"2016-12-28T12:26:49.362Z", + "new_balance":"3468.72", + "value":"-13.10" + } + }, + { + "id":"7d28e5d4-bd28-4444-9818-39140804e2a8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T15:24:24.082Z", + "completed":"2016-12-28T15:24:24.082Z", + "new_balance":"3445.48", + "value":"-23.24" + } + }, + { + "id":"b5e78f23-71db-428e-8d10-3ccf492808f1", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T11:30:46.985Z", + "completed":"2016-12-29T11:30:46.985Z", + "new_balance":"3445.14", + "value":"-0.34" + } + }, + { + "id":"1d698842-919d-4dcb-8945-2f27b301d227", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T00:22:13.962Z", + "completed":"2016-12-30T00:22:13.962Z", + "new_balance":"3444.49", + "value":"-0.65" + } + }, + { + "id":"fe8c44eb-e2d6-4b88-bbcd-40b2d66b43f7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T10:06:51.382Z", + "completed":"2016-12-30T10:06:51.382Z", + "new_balance":"3442.17", + "value":"-2.32" + } + }, + { + "id":"1c57b9a5-22ad-4afc-a0c8-fb0203301aa4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T18:07:16.474Z", + "completed":"2016-12-30T18:07:16.474Z", + "new_balance":"3437.56", + "value":"-4.61" + } + }, + { + "id":"9dea54eb-11ad-4c8a-810b-3c4e6cacb321", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T00:12:33.588Z", + "completed":"2017-03-01T00:12:33.588Z", + "new_balance":"3432.95", + "value":"-4.61" + } + }, + { + "id":"f01c5cc9-8136-4872-9f8d-08c88d88c174", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T04:18:43.611Z", + "completed":"2017-03-02T04:18:43.611Z", + "new_balance":"3425.76", + "value":"-7.19" + } + }, + { + "id":"8bbc60cd-709e-40e8-adb9-8c3ca1628f34", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T14:24:01.601Z", + "completed":"2017-03-06T14:24:01.601Z", + "new_balance":"3419.23", + "value":"-6.53" + } + }, + { + "id":"c7802e48-ee5a-4630-9e86-f5a154695c17", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T08:34:57.392Z", + "completed":"2017-03-11T08:34:57.392Z", + "new_balance":"3418.58", + "value":"-0.65" + } + }, + { + "id":"1514c4a5-bf9b-4bb0-a072-823a1efb8727", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T08:58:16.442Z", + "completed":"2017-03-13T08:58:16.442Z", + "new_balance":"3418.24", + "value":"-0.34" + } + }, + { + "id":"60aa12df-e7c9-41fe-b74c-c29e53cbd28d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T12:17:31.764Z", + "completed":"2017-03-16T12:17:31.764Z", + "new_balance":"3395.00", + "value":"-23.24" + } + }, + { + "id":"609a2774-6c03-47fc-9a55-be3a06ca3fa7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T05:36:39.633Z", + "completed":"2017-03-17T05:36:39.633Z", + "new_balance":"3381.90", + "value":"-13.10" + } + }, + { + "id":"dff4ea5f-bfdc-4107-bd5c-137bf62bf9fd", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T06:34:12.257Z", + "completed":"2017-03-17T06:34:12.257Z", + "new_balance":"3377.63", + "value":"-4.27" + } + }, + { + "id":"c94dd8b1-2237-4a9f-ad0a-2aef6edfe84f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T11:12:25.059Z", + "completed":"2017-03-19T11:12:25.059Z", + "new_balance":"3377.29", + "value":"-0.34" + } + }, + { + "id":"e7e50725-ade6-489e-a591-ccc6e6b3d7c6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T09:14:46.812Z", + "completed":"2017-03-21T09:14:46.812Z", + "new_balance":"3374.97", + "value":"-2.32" + } + }, + { + "id":"5f678d66-197d-4475-832f-ddeacd509e19", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T04:30:14.455Z", + "completed":"2017-03-23T04:30:14.455Z", + "new_balance":"3370.36", + "value":"-4.61" + } + }, + { + "id":"6d01da08-7438-4940-ba9b-43059293bb6b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T03:58:36.623Z", + "completed":"2017-03-24T03:58:36.623Z", + "new_balance":"3369.71", + "value":"-0.65" + } + }, + { + "id":"760abe84-f531-4af0-890c-c35ee7eb7cf9", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T00:43:16.364Z", + "completed":"2017-03-26T00:43:16.364Z", + "new_balance":"3368.56", + "value":"-1.15" + } + }, + { + "id":"28cbc0ef-4d8a-4d14-b5fc-8879ad252258", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T07:52:16.384Z", + "completed":"2017-04-01T07:52:16.384Z", + "new_balance":"3367.41", + "value":"-1.15" + } + }, + { + "id":"7f65cd8f-713d-41c1-a016-5db494ae538d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T18:24:52.000Z", + "completed":"2017-06-01T18:24:52.000Z", + "new_balance":"3362.80", + "value":"-4.61" + } + }, + { + "id":"2fce688b-de39-468f-9197-c15e3f73e67c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T11:59:32.983Z", + "completed":"2017-06-04T11:59:32.983Z", + "new_balance":"3355.61", + "value":"-7.19" + } + }, + { + "id":"58d6c67d-618b-405e-a54d-e37eaa8d64d6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T09:19:17.699Z", + "completed":"2017-06-19T09:19:17.699Z", + "new_balance":"3349.08", + "value":"-6.53" + } + }, + { + "id":"49284769-7611-45ed-958c-012e6e882ec5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T20:24:47.276Z", + "completed":"2017-06-21T20:24:47.276Z", + "new_balance":"3348.43", + "value":"-0.65" + } + }, + { + "id":"86c19f5d-b4ac-4fc1-aee7-eea6a77e2eb4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T22:22:38.413Z", + "completed":"2017-06-24T22:22:38.413Z", + "new_balance":"3348.09", + "value":"-0.34" + } + }, + { + "id":"5a4efccb-d263-48b9-be8f-516415b3d6e7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T00:04:59.473Z", + "completed":"2017-06-28T00:04:59.473Z", + "new_balance":"3343.82", + "value":"-4.27" + } + }, + { + "id":"7de19532-2823-4260-8c11-8400fb3b08c3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T21:26:32.190Z", + "completed":"2017-06-28T21:26:32.190Z", + "new_balance":"3320.58", + "value":"-23.24" + } + }, + { + "id":"3765b48a-7661-4174-9037-2d31dc9a10ab", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T23:49:30.193Z", + "completed":"2017-06-28T23:49:30.193Z", + "new_balance":"3307.48", + "value":"-13.10" + } + }, + { + "id":"6b10e3db-8616-4836-8cf3-e7ce7da86133", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T09:31:04.493Z", + "completed":"2017-06-29T09:31:04.493Z", + "new_balance":"3307.14", + "value":"-0.34" + } + }, + { + "id":"365486ca-b90c-4bee-809b-37dee4bce3b0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T05:59:58.250Z", + "completed":"2017-06-30T05:59:58.250Z", + "new_balance":"3302.53", + "value":"-4.61" + } + }, + { + "id":"aeab4da3-3cf5-48db-af9a-09cc683d16a3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:50:19.579Z", + "completed":"2017-06-30T10:50:19.579Z", + "new_balance":"3301.88", + "value":"-0.65" + } + }, + { + "id":"9868776c-f326-4be4-8747-8ea2331f406d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T21:27:43.817Z", + "completed":"2017-06-30T21:27:43.817Z", + "new_balance":"3299.56", + "value":"-2.32" + } + }, + { + "id":"bbe3f7c0-36ad-4bba-af85-8ec34637d1f0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T14:47:37.227Z", + "completed":"2017-09-01T14:47:37.227Z", + "new_balance":"3297.71", + "value":"-1.85" + } + }, + { + "id":"ba7a2aa2-9c94-420e-9621-f2395b0631e5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T08:43:52.487Z", + "completed":"2017-09-02T08:43:52.487Z", + "new_balance":"3290.52", + "value":"-7.19" + } + }, + { + "id":"1f6be143-893c-4c8b-bb5f-74c6bb75df60", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T13:35:22.810Z", + "completed":"2017-09-07T13:35:22.810Z", + "new_balance":"3283.99", + "value":"-6.53" + } + }, + { + "id":"4386190b-adce-4b2c-9a97-219274755022", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T00:34:06.611Z", + "completed":"2017-09-11T00:34:06.611Z", + "new_balance":"3283.34", + "value":"-0.65" + } + }, + { + "id":"262c5807-6c3f-4e2a-ad50-cb3519f7fc3d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T17:42:38.991Z", + "completed":"2017-09-15T17:42:38.991Z", + "new_balance":"3281.94", + "value":"-1.40" + } + }, + { + "id":"cb9b6f64-8310-4e9d-8019-6962b090cd9f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T10:10:09.765Z", + "completed":"2017-09-17T10:10:09.765Z", + "new_balance":"3268.84", + "value":"-13.10" + } + }, + { + "id":"c47ce41f-10c9-4c8f-bf17-787a8927f3c6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T12:00:34.090Z", + "completed":"2017-09-17T12:00:34.090Z", + "new_balance":"3245.60", + "value":"-23.24" + } + }, + { + "id":"e2659b9d-d504-41ab-9507-bdb0edf6ec4f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T13:37:30.772Z", + "completed":"2017-09-17T13:37:30.772Z", + "new_balance":"3241.33", + "value":"-4.27" + } + }, + { + "id":"337ca840-cb00-4939-975d-b3ce0752df48", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T08:26:06.910Z", + "completed":"2017-09-19T08:26:06.910Z", + "new_balance":"3240.99", + "value":"-0.34" + } + }, + { + "id":"8548ecfe-0e84-4b43-9951-0026fad417c4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T19:09:59.192Z", + "completed":"2017-09-21T19:09:59.192Z", + "new_balance":"3238.67", + "value":"-2.32" + } + }, + { + "id":"2ea2f695-aba1-4515-9052-45d5ff3b130e", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T08:54:46.076Z", + "completed":"2017-09-23T08:54:46.076Z", + "new_balance":"3234.06", + "value":"-4.61" + } + }, + { + "id":"79d591d1-6038-4398-a0b3-1b9924d82eeb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T07:21:02.426Z", + "completed":"2017-09-24T07:21:02.426Z", + "new_balance":"3233.41", + "value":"-0.65" + } + }, + { + "id":"3b5e0ab4-2d6e-4b41-8551-7f929d969ad5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T18:29:17.388Z", + "completed":"2017-09-27T18:29:17.388Z", + "new_balance":"3232.26", + "value":"-1.15" + } + }, + { + "id":"c56ee34e-290a-4dad-8d3f-1efc08e6139d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T07:21:26.258Z", + "completed":"2017-10-01T07:21:26.258Z", + "new_balance":"3231.11", + "value":"-1.15" + } + }, + { + "id":"1e179fd6-c711-4bfe-b6bd-25d1ed2144bb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T20:02:50.227Z", + "completed":"2017-12-01T20:02:50.227Z", + "new_balance":"3226.50", + "value":"-4.61" + } + }, + { + "id":"70446655-6027-4819-8507-fa1684e56e87", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T18:38:54.578Z", + "completed":"2017-12-04T18:38:54.578Z", + "new_balance":"3219.31", + "value":"-7.19" + } + }, + { + "id":"2e53c72b-e25e-4612-a288-d3d062603b6b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T05:02:01.249Z", + "completed":"2017-12-19T05:02:01.249Z", + "new_balance":"3212.78", + "value":"-6.53" + } + }, + { + "id":"71e49d0e-e049-446d-b424-f2275927f467", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T00:43:54.382Z", + "completed":"2017-12-24T00:43:54.382Z", + "new_balance":"3212.13", + "value":"-0.65" + } + }, + { + "id":"a70ad47c-5c41-4059-bf60-5aa777a33093", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T11:54:16.222Z", + "completed":"2017-12-24T11:54:16.222Z", + "new_balance":"3211.79", + "value":"-0.34" + } + }, + { + "id":"2a108ec8-6ae8-475d-99f2-515de3d27271", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T10:03:07.451Z", + "completed":"2017-12-28T10:03:07.451Z", + "new_balance":"3207.52", + "value":"-4.27" + } + }, + { + "id":"627765c2-e785-4574-9391-a9c8edb900f4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T10:10:34.747Z", + "completed":"2017-12-28T10:10:34.747Z", + "new_balance":"3184.28", + "value":"-23.24" + } + }, + { + "id":"f5b1fc5a-fb1f-480a-89d8-50a1b476c655", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T22:44:41.578Z", + "completed":"2017-12-28T22:44:41.578Z", + "new_balance":"3171.18", + "value":"-13.10" + } + }, + { + "id":"7952f20f-1a99-4c3c-980f-d86bb9ade941", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T19:48:08.112Z", + "completed":"2017-12-29T19:48:08.112Z", + "new_balance":"3170.84", + "value":"-0.34" + } + }, + { + "id":"40b70a0a-fcb6-42c8-879d-78675889033b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T18:34:28.174Z", + "completed":"2017-12-30T18:34:28.174Z", + "new_balance":"3168.52", + "value":"-2.32" + } + }, + { + "id":"cc279f02-8c14-44aa-b9cf-2001e7a2590a", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T19:25:16.022Z", + "completed":"2017-12-30T19:25:16.022Z", + "new_balance":"3163.91", + "value":"-4.61" + } + }, + { + "id":"afa44d3f-e82d-48c8-abd6-8e8ea395d32c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T22:38:53.934Z", + "completed":"2017-12-30T22:38:53.934Z", + "new_balance":"3163.26", + "value":"-0.65" + } + }, + { + "id":"99f49667-d14e-49f1-94cc-9a609ed7b909", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T03:26:15.870Z", + "completed":"2016-01-01T03:26:15.870Z", + "new_balance":"21315.98", + "value":"-134.48" + } + }, + { + "id":"4040090e-4858-4e24-a5e1-f449eafe487d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T08:01:06.151Z", + "completed":"2016-01-01T08:01:06.151Z", + "new_balance":"21281.55", + "value":"-34.43" + } + }, + { + "id":"135149fc-d71e-49aa-84fc-e246d802b056", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T12:54:28.660Z", + "completed":"2016-01-01T12:54:28.660Z", + "new_balance":"21247.12", + "value":"-34.43" + } + }, + { + "id":"d554a15a-c401-458b-bc25-cc6fdd7f98eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T13:39:19.771Z", + "completed":"2016-01-01T13:39:19.771Z", + "new_balance":"20736.58", + "value":"-510.54" + } + }, + { + "id":"f6a1f660-2391-4311-be45-50beb7c657c5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T16:37:29.763Z", + "completed":"2016-01-01T16:37:29.763Z", + "new_balance":"20706.70", + "value":"-29.88" + } + }, + { + "id":"47ac533b-5d53-4e78-8874-8b0fd6aad094", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T18:20:04.647Z", + "completed":"2016-01-01T18:20:04.647Z", + "new_balance":"20653.52", + "value":"-53.18" + } + }, + { + "id":"47b9818c-6997-4c53-be29-bfb7ae363c66", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T11:07:08.242Z", + "completed":"2016-01-02T11:07:08.242Z", + "new_balance":"20566.96", + "value":"-86.56" + } + }, + { + "id":"9a8d4355-8c3a-4de4-9c6b-c75ffb67e7f2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T23:49:26.300Z", + "completed":"2016-01-02T23:49:26.300Z", + "new_balance":"20494.97", + "value":"-71.99" + } + }, + { + "id":"8d9bb7f4-07ca-4bd6-9e26-3abd90c7e3f9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T05:11:15.505Z", + "completed":"2016-01-04T05:11:15.505Z", + "new_balance":"20457.78", + "value":"-37.19" + } + }, + { + "id":"2cba1fa5-86d2-497f-a7ad-63be111ecfca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T20:24:27.780Z", + "completed":"2016-01-04T20:24:27.780Z", + "new_balance":"20423.00", + "value":"-34.78" + } + }, + { + "id":"8eea9090-e3b1-4058-811f-6ae509ca9d7f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T15:38:11.492Z", + "completed":"2016-01-07T15:38:11.492Z", + "new_balance":"20349.07", + "value":"-73.93" + } + }, + { + "id":"c626e1dd-56d3-4e58-8e54-81703cf6d65a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T00:40:39.352Z", + "completed":"2016-01-09T00:40:39.352Z", + "new_balance":"20345.48", + "value":"-3.59" + } + }, + { + "id":"322bd933-6a4b-4acc-beb6-5847ab771e49", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T03:56:26.534Z", + "completed":"2016-01-10T03:56:26.534Z", + "new_balance":"20318.03", + "value":"-27.45" + } + }, + { + "id":"d2fdcb51-8640-4c16-8d96-d8932fb6896d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T21:13:55.506Z", + "completed":"2016-01-12T21:13:55.506Z", + "new_balance":"20286.74", + "value":"-31.29" + } + }, + { + "id":"157b0122-3017-4ce4-8611-0a9453be6dc8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T05:58:46.871Z", + "completed":"2016-01-15T05:58:46.871Z", + "new_balance":"20271.92", + "value":"-14.82" + } + }, + { + "id":"0e975561-c230-4b52-a1fa-a90b586d842c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T23:58:25.256Z", + "completed":"2016-01-15T23:58:25.256Z", + "new_balance":"20264.76", + "value":"-7.16" + } + }, + { + "id":"38075d18-d031-4683-9b10-e71093725daa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T09:50:38.547Z", + "completed":"2016-01-17T09:50:38.547Z", + "new_balance":"20242.51", + "value":"-22.25" + } + }, + { + "id":"4e052e1d-58be-4584-a425-fd3b55be46a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T21:40:18.171Z", + "completed":"2016-01-19T21:40:18.171Z", + "new_balance":"20053.24", + "value":"-189.27" + } + }, + { + "id":"59160adc-89ee-42dc-a6bc-1b3d63bc753a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T14:07:43.400Z", + "completed":"2016-01-20T14:07:43.400Z", + "new_balance":"20046.53", + "value":"-6.71" + } + }, + { + "id":"9028ed54-d0cd-468d-9100-79eec1dad8bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T04:12:08.396Z", + "completed":"2016-01-22T04:12:08.396Z", + "new_balance":"20001.29", + "value":"-45.24" + } + }, + { + "id":"814e0452-7434-41d7-ad8e-4e66cf3db75a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T21:54:07.707Z", + "completed":"2016-01-22T21:54:07.707Z", + "new_balance":"19991.59", + "value":"-9.70" + } + }, + { + "id":"1b768f69-280e-4e20-87c4-874a60f0647a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T16:46:18.684Z", + "completed":"2016-01-24T16:46:18.684Z", + "new_balance":"19959.31", + "value":"-32.28" + } + }, + { + "id":"ea746836-c94a-4c94-abba-aaccf5b7629d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T02:40:08.218Z", + "completed":"2016-01-25T02:40:08.218Z", + "new_balance":"19952.60", + "value":"-6.71" + } + }, + { + "id":"4c3096d5-9622-405b-861d-84a42931b13c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T20:38:54.442Z", + "completed":"2016-01-25T20:38:54.442Z", + "new_balance":"19910.08", + "value":"-42.52" + } + }, + { + "id":"46c9c878-7056-42ee-94ce-b296c77b0692", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T08:33:35.289Z", + "completed":"2016-01-26T08:33:35.289Z", + "new_balance":"19846.51", + "value":"-63.57" + } + }, + { + "id":"53a18d03-ceb3-4ea1-b228-af99f7e1d18c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T00:19:07.669Z", + "completed":"2016-02-01T00:19:07.669Z", + "new_balance":"19793.33", + "value":"-53.18" + } + }, + { + "id":"20916029-8743-4990-a5a4-fb7b44f82099", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T01:58:37.676Z", + "completed":"2016-02-01T01:58:37.676Z", + "new_balance":"19758.90", + "value":"-34.43" + } + }, + { + "id":"f2ba33d4-ffb1-410b-8cd4-ea7c778ef3d8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T03:10:46.714Z", + "completed":"2016-02-01T03:10:46.714Z", + "new_balance":"19729.02", + "value":"-29.88" + } + }, + { + "id":"62fd02b0-4215-447a-bb58-77fd6d074671", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T09:31:34.310Z", + "completed":"2016-02-01T09:31:34.310Z", + "new_balance":"19594.54", + "value":"-134.48" + } + }, + { + "id":"d13faa53-f478-4e42-9683-301089adaef9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:20:21.764Z", + "completed":"2016-02-01T10:20:21.764Z", + "new_balance":"21274.95", + "value":"1680.41" + } + }, + { + "id":"fbd35887-4b99-4db7-a1e0-e417098da492", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T15:47:45.012Z", + "completed":"2016-02-01T15:47:45.012Z", + "new_balance":"20764.41", + "value":"-510.54" + } + }, + { + "id":"841a3e88-9ffb-4329-a585-048340c4dfd7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T07:03:00.475Z", + "completed":"2016-02-02T07:03:00.475Z", + "new_balance":"20749.77", + "value":"-14.64" + } + }, + { + "id":"66af7539-a2eb-4789-8683-15610416f4b5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T19:12:57.104Z", + "completed":"2016-02-02T19:12:57.104Z", + "new_balance":"20663.21", + "value":"-86.56" + } + }, + { + "id":"f2f07618-dc88-4679-bf98-a0f64dcc74d8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T21:43:28.710Z", + "completed":"2016-02-02T21:43:28.710Z", + "new_balance":"20647.28", + "value":"-15.93" + } + }, + { + "id":"3cc3ea9d-e4f8-4c63-9024-4aea3e60153a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T15:11:23.575Z", + "completed":"2016-02-03T15:11:23.575Z", + "new_balance":"20619.27", + "value":"-28.01" + } + }, + { + "id":"3b40543a-83aa-44f9-b639-7244505c64c7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T20:53:43.031Z", + "completed":"2016-02-03T20:53:43.031Z", + "new_balance":"20595.90", + "value":"-23.37" + } + }, + { + "id":"a9179d84-fc8d-4817-a308-92f109be5d80", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T23:52:22.346Z", + "completed":"2016-02-03T23:52:22.346Z", + "new_balance":"20570.10", + "value":"-25.80" + } + }, + { + "id":"4efa6012-979d-41e4-b11f-8ad9043736a6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T23:17:10.805Z", + "completed":"2016-02-06T23:17:10.805Z", + "new_balance":"20496.17", + "value":"-73.93" + } + }, + { + "id":"09aa9a34-6607-42cc-9e58-2b123776b0e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T01:38:45.508Z", + "completed":"2016-02-08T01:38:45.508Z", + "new_balance":"20492.08", + "value":"-4.09" + } + }, + { + "id":"5fca10e8-466c-4e6e-8133-d75b8060df32", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T16:28:09.553Z", + "completed":"2016-02-08T16:28:09.553Z", + "new_balance":"20464.23", + "value":"-27.85" + } + }, + { + "id":"e4064581-fdd7-463c-aeac-bb82664ea4e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T20:18:34.500Z", + "completed":"2016-02-08T20:18:34.500Z", + "new_balance":"20443.13", + "value":"-21.10" + } + }, + { + "id":"7ba07c97-b116-4a76-bd7b-99bb2217ce1e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T15:06:37.846Z", + "completed":"2016-02-09T15:06:37.846Z", + "new_balance":"20397.96", + "value":"-45.17" + } + }, + { + "id":"c41876b5-b505-4291-bf9b-5b6779786890", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T21:37:12.804Z", + "completed":"2016-02-09T21:37:12.804Z", + "new_balance":"20349.26", + "value":"-48.70" + } + }, + { + "id":"d7cbf9e2-9166-474e-91bd-890e9f468ea4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T23:07:09.240Z", + "completed":"2016-02-12T23:07:09.240Z", + "new_balance":"20343.49", + "value":"-5.77" + } + }, + { + "id":"546a4901-113a-4ff4-a8e6-687d3c158a26", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T09:11:46.470Z", + "completed":"2016-02-13T09:11:46.470Z", + "new_balance":"20299.70", + "value":"-43.79" + } + }, + { + "id":"0c58d94c-8ad6-4c64-89a2-a1c161c60994", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T09:55:07.598Z", + "completed":"2016-02-13T09:55:07.598Z", + "new_balance":"20291.18", + "value":"-8.52" + } + }, + { + "id":"23c59004-49f6-4f63-8c07-dac90dc96360", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T11:34:06.580Z", + "completed":"2016-02-13T11:34:06.580Z", + "new_balance":"20330.19", + "value":"39.01" + } + }, + { + "id":"022f6e7d-96cb-4c12-ad38-bfbc9619e3ab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:44:01.167Z", + "completed":"2016-02-14T14:44:01.167Z", + "new_balance":"20284.56", + "value":"-45.63" + } + }, + { + "id":"b4eee58e-37e5-4d96-8f1b-c2956b8f55af", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T02:24:23.929Z", + "completed":"2016-02-15T02:24:23.929Z", + "new_balance":"20259.00", + "value":"-25.56" + } + }, + { + "id":"f3a57b09-3720-4658-af6c-890b798925b2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T22:15:43.828Z", + "completed":"2016-02-28T22:15:43.828Z", + "new_balance":"20225.47", + "value":"-33.53" + } + }, + { + "id":"8728b641-14c7-4dbe-927f-2faca33ed032", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T05:56:00.884Z", + "completed":"2016-03-01T05:56:00.884Z", + "new_balance":"20191.04", + "value":"-34.43" + } + }, + { + "id":"db21fa94-a557-45a5-a4a3-0438b6188433", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T08:54:52.831Z", + "completed":"2016-03-01T08:54:52.831Z", + "new_balance":"19680.50", + "value":"-510.54" + } + }, + { + "id":"5a4d2251-d10d-4fae-96f4-5bfec42f6c6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T10:51:52.779Z", + "completed":"2016-03-01T10:51:52.779Z", + "new_balance":"19627.32", + "value":"-53.18" + } + }, + { + "id":"8985d853-4466-41a5-b78d-0be2095c48d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T16:37:37.380Z", + "completed":"2016-03-01T16:37:37.380Z", + "new_balance":"19597.44", + "value":"-29.88" + } + }, + { + "id":"4ad3e87c-1623-4796-b16a-7c32fa34b0b6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T19:56:49.625Z", + "completed":"2016-03-01T19:56:49.625Z", + "new_balance":"19462.96", + "value":"-134.48" + } + }, + { + "id":"7e7f4175-3c81-4a60-9d28-c4bafe021b66", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T23:40:14.383Z", + "completed":"2016-03-01T23:40:14.383Z", + "new_balance":"21143.37", + "value":"1680.41" + } + }, + { + "id":"d2fddd6c-3045-411d-8f3f-911d5d09430c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T15:31:29.681Z", + "completed":"2016-03-02T15:31:29.681Z", + "new_balance":"21056.81", + "value":"-86.56" + } + }, + { + "id":"b1c745dd-d5ec-4589-b104-a8786f1fc389", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T00:23:39.407Z", + "completed":"2016-03-04T00:23:39.407Z", + "new_balance":"21026.00", + "value":"-30.81" + } + }, + { + "id":"0b3e06ae-b75f-48ab-8646-97501ac83c52", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T02:16:01.457Z", + "completed":"2016-03-04T02:16:01.457Z", + "new_balance":"21019.53", + "value":"-6.47" + } + }, + { + "id":"1073118d-05c3-450c-93d0-947d6eb19c0d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T08:55:20.045Z", + "completed":"2016-03-04T08:55:20.045Z", + "new_balance":"20938.32", + "value":"-81.21" + } + }, + { + "id":"c6b54e79-d217-4150-8d6e-e8412853a0ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T15:33:14.269Z", + "completed":"2016-03-04T15:33:14.269Z", + "new_balance":"20927.79", + "value":"-10.53" + } + }, + { + "id":"508c9e89-578d-429f-9b2b-d49dcb6feefe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T09:28:26.559Z", + "completed":"2016-03-05T09:28:26.559Z", + "new_balance":"20886.56", + "value":"-41.23" + } + }, + { + "id":"2dd7857a-982c-491c-9262-00a26883dd57", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T22:47:53.414Z", + "completed":"2016-03-05T22:47:53.414Z", + "new_balance":"20881.79", + "value":"-4.77" + } + }, + { + "id":"0849935c-dd59-4785-b6ee-20a88c9b1cf8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:46:47.763Z", + "completed":"2016-03-06T02:46:47.763Z", + "new_balance":"20800.58", + "value":"-81.21" + } + }, + { + "id":"e4b2f215-5ce1-4728-8157-11c4ede76d0c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T08:27:38.153Z", + "completed":"2016-03-06T08:27:38.153Z", + "new_balance":"20716.78", + "value":"-83.80" + } + }, + { + "id":"2ee92f55-0ae9-4ea9-828e-f7f5746c7820", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T05:55:13.768Z", + "completed":"2016-03-07T05:55:13.768Z", + "new_balance":"20674.44", + "value":"-42.34" + } + }, + { + "id":"3bd0e208-7abc-43a3-98b7-6fc44ae767d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:46:06.523Z", + "completed":"2016-03-08T05:46:06.523Z", + "new_balance":"20590.64", + "value":"-83.80" + } + }, + { + "id":"85ac657e-f306-42e9-b808-51d0efce4845", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T09:49:51.978Z", + "completed":"2016-03-09T09:49:51.978Z", + "new_balance":"20587.06", + "value":"-3.58" + } + }, + { + "id":"288c067e-4fc9-4e6e-bb81-addd90f22166", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T00:16:16.959Z", + "completed":"2016-03-10T00:16:16.959Z", + "new_balance":"20495.59", + "value":"-91.47" + } + }, + { + "id":"846cec63-087b-48af-a30d-1e2bf1af0550", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:44:48.695Z", + "completed":"2016-03-11T08:44:48.695Z", + "new_balance":"20488.31", + "value":"-7.28" + } + }, + { + "id":"7d104465-b8f8-4aac-934a-1a09b2e81878", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T10:36:54.919Z", + "completed":"2016-03-12T10:36:54.919Z", + "new_balance":"20475.07", + "value":"-13.24" + } + }, + { + "id":"8926d843-72d1-4059-9a47-711b957dd9a7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T11:55:11.817Z", + "completed":"2016-03-12T11:55:11.817Z", + "new_balance":"20447.77", + "value":"-27.30" + } + }, + { + "id":"4a4d49de-6786-44e6-9e22-5110240ea085", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T05:59:45.954Z", + "completed":"2016-03-13T05:59:45.954Z", + "new_balance":"20401.76", + "value":"-46.01" + } + }, + { + "id":"aa661232-86a2-4c9e-80b3-3f3fe57a1247", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T20:21:10.661Z", + "completed":"2016-03-14T20:21:10.661Z", + "new_balance":"20394.77", + "value":"-6.99" + } + }, + { + "id":"c3c6678f-9136-4f11-8e5a-b20f55b40720", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T16:35:03.152Z", + "completed":"2016-03-16T16:35:03.152Z", + "new_balance":"20347.97", + "value":"-46.80" + } + }, + { + "id":"ebc39a09-d93a-449f-9db0-d51e540f8460", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T21:11:59.883Z", + "completed":"2016-03-16T21:11:59.883Z", + "new_balance":"20266.56", + "value":"-81.41" + } + }, + { + "id":"5f07cc4f-c16b-4f51-9910-e353b89cf1bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T06:28:39.736Z", + "completed":"2016-03-18T06:28:39.736Z", + "new_balance":"20259.57", + "value":"-6.99" + } + }, + { + "id":"fcb7670c-e563-4e70-b1d7-b860d29bfae9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T06:12:09.443Z", + "completed":"2016-03-19T06:12:09.443Z", + "new_balance":"20225.66", + "value":"-33.91" + } + }, + { + "id":"aa6b1f71-5e95-4767-8183-2c53ee549074", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T19:23:44.400Z", + "completed":"2016-03-19T19:23:44.400Z", + "new_balance":"20174.65", + "value":"-51.01" + } + }, + { + "id":"d9c170ad-1ded-444b-bb90-2d0afae07e33", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T21:35:02.638Z", + "completed":"2016-03-19T21:35:02.638Z", + "new_balance":"20137.70", + "value":"-36.95" + } + }, + { + "id":"6edf48fc-026d-4dc9-9aaa-eedbf159cbff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T03:17:35.832Z", + "completed":"2016-03-20T03:17:35.832Z", + "new_balance":"20078.80", + "value":"-58.90" + } + }, + { + "id":"e2620c4f-eeb1-4acb-b921-76a2e643943a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T04:59:40.735Z", + "completed":"2016-03-20T04:59:40.735Z", + "new_balance":"20005.29", + "value":"-73.51" + } + }, + { + "id":"9860b83a-d16b-4c35-9b51-7dbebbc459e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T22:06:51.418Z", + "completed":"2016-03-21T22:06:51.418Z", + "new_balance":"19998.82", + "value":"-6.47" + } + }, + { + "id":"89798ef0-c0ec-4ce7-8231-25b3943c4d05", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T22:38:45.258Z", + "completed":"2016-03-21T22:38:45.258Z", + "new_balance":"19992.94", + "value":"-5.88" + } + }, + { + "id":"af672553-8fa9-4ce4-935c-8c9880099374", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T13:25:27.951Z", + "completed":"2016-03-23T13:25:27.951Z", + "new_balance":"19981.71", + "value":"-11.23" + } + }, + { + "id":"ed4e1a8b-c81e-4c63-8979-f8a136b72da0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T23:53:20.110Z", + "completed":"2016-03-23T23:53:20.110Z", + "new_balance":"19936.20", + "value":"-45.51" + } + }, + { + "id":"71517e6e-8b14-412b-ba0a-d9d42ff069ca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T02:32:47.440Z", + "completed":"2016-03-24T02:32:47.440Z", + "new_balance":"19907.34", + "value":"-28.86" + } + }, + { + "id":"b6fa2590-6009-4ec8-a8c1-3d6a0fdecad4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T05:19:09.074Z", + "completed":"2016-03-25T05:19:09.074Z", + "new_balance":"19873.31", + "value":"-34.03" + } + }, + { + "id":"5dc12ab5-dbe5-4810-b6da-fc24e798c752", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:38:44.267Z", + "completed":"2016-03-25T23:38:44.267Z", + "new_balance":"19857.23", + "value":"-16.08" + } + }, + { + "id":"5f7c611b-fb8e-4dc8-967e-d191a1b0ef6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T13:18:30.770Z", + "completed":"2016-03-27T13:18:30.770Z", + "new_balance":"19667.96", + "value":"-189.27" + } + }, + { + "id":"47210ea8-d494-4cad-a782-2d35c6035424", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T06:36:06.063Z", + "completed":"2016-03-28T06:36:06.063Z", + "new_balance":"19640.99", + "value":"-26.97" + } + }, + { + "id":"b93a8615-08ba-4a03-b841-9b5a4b365c13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T04:35:27.727Z", + "completed":"2016-04-01T04:35:27.727Z", + "new_balance":"19611.11", + "value":"-29.88" + } + }, + { + "id":"c8827646-da53-4c26-870a-5b2b7175dfd6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T04:35:31.512Z", + "completed":"2016-04-01T04:35:31.512Z", + "new_balance":"19100.57", + "value":"-510.54" + } + }, + { + "id":"bd487fae-0906-4ece-9e00-3675be48bffe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T05:55:16.040Z", + "completed":"2016-04-01T05:55:16.040Z", + "new_balance":"18966.09", + "value":"-134.48" + } + }, + { + "id":"f46060ca-c884-459e-afd5-b6256ea0ad70", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:34:28.960Z", + "completed":"2016-04-01T09:34:28.960Z", + "new_balance":"18912.91", + "value":"-53.18" + } + }, + { + "id":"829ba2f2-4c93-46e0-ae4d-c1ad6ec50099", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T03:09:36.709Z", + "completed":"2016-04-02T03:09:36.709Z", + "new_balance":"18840.92", + "value":"-71.99" + } + }, + { + "id":"15e85e10-3aad-45b2-9f24-f5c32f62ef05", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T09:39:55.896Z", + "completed":"2016-04-02T09:39:55.896Z", + "new_balance":"18754.36", + "value":"-86.56" + } + }, + { + "id":"a69ff44a-85f7-4f52-a58c-fe1aa8d54c10", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:34:23.222Z", + "completed":"2016-04-03T01:34:23.222Z", + "new_balance":"18717.17", + "value":"-37.19" + } + }, + { + "id":"dc2fd2d6-bb75-4d0c-b6c0-666244542d1c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:14:06.465Z", + "completed":"2016-04-03T02:14:06.465Z", + "new_balance":"18679.98", + "value":"-37.19" + } + }, + { + "id":"8ed35ecb-aa23-49e6-97d4-3588ac0b45df", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T06:34:04.253Z", + "completed":"2016-04-03T06:34:04.253Z", + "new_balance":"18802.18", + "value":"122.20" + } + }, + { + "id":"03b37ccf-dee3-401c-ad3c-e1b5b1e8f73b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T11:23:52.792Z", + "completed":"2016-04-03T11:23:52.792Z", + "new_balance":"18767.40", + "value":"-34.78" + } + }, + { + "id":"82d061ea-cf97-4be7-84e9-481f97168470", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T23:11:24.325Z", + "completed":"2016-04-03T23:11:24.325Z", + "new_balance":"18840.23", + "value":"72.83" + } + }, + { + "id":"5d9cdf11-c20f-4e9c-b509-cace822fbdf4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T23:01:44.404Z", + "completed":"2016-04-04T23:01:44.404Z", + "new_balance":"18766.30", + "value":"-73.93" + } + }, + { + "id":"d076333c-a727-4021-8cfa-6b64f378fa35", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T15:55:14.188Z", + "completed":"2016-04-05T15:55:14.188Z", + "new_balance":"18738.85", + "value":"-27.45" + } + }, + { + "id":"9d023306-26de-4e1c-b429-d16e1886db47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T21:54:05.968Z", + "completed":"2016-04-05T21:54:05.968Z", + "new_balance":"18735.26", + "value":"-3.59" + } + }, + { + "id":"bf03f567-aa56-46f4-8bd6-20218990563a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T04:27:21.774Z", + "completed":"2016-04-07T04:27:21.774Z", + "new_balance":"18720.44", + "value":"-14.82" + } + }, + { + "id":"c7097486-25c6-4532-8237-025469d0f3dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T23:45:24.993Z", + "completed":"2016-04-07T23:45:24.993Z", + "new_balance":"18689.15", + "value":"-31.29" + } + }, + { + "id":"3438df1d-6ec1-4d57-a53c-d39e09feec6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T21:39:37.484Z", + "completed":"2016-04-08T21:39:37.484Z", + "new_balance":"18681.99", + "value":"-7.16" + } + }, + { + "id":"7ddcbbd5-b2a1-4c3e-807a-6fe059d6c055", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T07:13:20.538Z", + "completed":"2016-04-09T07:13:20.538Z", + "new_balance":"18659.74", + "value":"-22.25" + } + }, + { + "id":"559c231a-083a-4580-a886-4d8008836be2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T20:40:21.417Z", + "completed":"2016-04-09T20:40:21.417Z", + "new_balance":"18470.47", + "value":"-189.27" + } + }, + { + "id":"092eb2f8-6594-4363-9dd5-d440f6b1ed5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T23:44:49.525Z", + "completed":"2016-04-09T23:44:49.525Z", + "new_balance":"18463.76", + "value":"-6.71" + } + }, + { + "id":"2269765a-d616-433e-9408-22896d0c1ea7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T00:34:49.648Z", + "completed":"2016-04-10T00:34:49.648Z", + "new_balance":"18418.52", + "value":"-45.24" + } + }, + { + "id":"229e151b-ad54-4f62-abcc-903218eeaeab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T16:52:30.406Z", + "completed":"2016-04-17T16:52:30.406Z", + "new_balance":"18408.82", + "value":"-9.70" + } + }, + { + "id":"90dcdc24-7a69-488f-a0cd-6cc5b577a76c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T16:16:51.426Z", + "completed":"2016-04-18T16:16:51.426Z", + "new_balance":"18376.54", + "value":"-32.28" + } + }, + { + "id":"c1269dfb-e295-4f61-bd38-ec0a0dc6c29b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T23:59:50.107Z", + "completed":"2016-04-25T23:59:50.107Z", + "new_balance":"18334.02", + "value":"-42.52" + } + }, + { + "id":"5019b901-a5d3-4ea4-a5a0-7dcf1e0fbdae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T01:49:10.049Z", + "completed":"2016-04-26T01:49:10.049Z", + "new_balance":"18270.45", + "value":"-63.57" + } + }, + { + "id":"fbbd95bd-6ab7-4eb3-8f07-1cbb5569af48", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T23:02:05.127Z", + "completed":"2016-04-26T23:02:05.127Z", + "new_balance":"18263.74", + "value":"-6.71" + } + }, + { + "id":"99852bf8-6edb-4a93-866c-0c671d8e8f5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T00:22:05.592Z", + "completed":"2016-05-02T00:22:05.592Z", + "new_balance":"18229.31", + "value":"-34.43" + } + }, + { + "id":"72bae921-6782-44c3-9c77-c4fe91c5563f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T06:27:33.610Z", + "completed":"2016-05-02T06:27:33.610Z", + "new_balance":"18094.83", + "value":"-134.48" + } + }, + { + "id":"7e4a67f6-ea11-43ca-b0b7-f780a67670f6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T07:36:10.544Z", + "completed":"2016-05-02T07:36:10.544Z", + "new_balance":"17584.29", + "value":"-510.54" + } + }, + { + "id":"1999e58e-67b6-4cd0-b43d-9937025c6019", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T12:05:33.827Z", + "completed":"2016-05-02T12:05:33.827Z", + "new_balance":"17554.41", + "value":"-29.88" + } + }, + { + "id":"2d14fca6-4035-4d65-b5eb-971b546a1a9c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T12:42:56.149Z", + "completed":"2016-05-02T12:42:56.149Z", + "new_balance":"17501.23", + "value":"-53.18" + } + }, + { + "id":"5b91db92-b78f-49fc-9bc5-584de718bb37", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T12:45:07.773Z", + "completed":"2016-05-02T12:45:07.773Z", + "new_balance":"17414.67", + "value":"-86.56" + } + }, + { + "id":"914fdf82-6049-488a-8089-72174d3106e2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T18:23:27.872Z", + "completed":"2016-05-02T18:23:27.872Z", + "new_balance":"19095.08", + "value":"1680.41" + } + }, + { + "id":"90e12af7-9ea4-41f1-866c-150a31e2129d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T18:59:44.124Z", + "completed":"2016-05-02T18:59:44.124Z", + "new_balance":"19079.15", + "value":"-15.93" + } + }, + { + "id":"c738b9e3-7367-484e-bb74-1aa6ba1ad2fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T08:38:15.378Z", + "completed":"2016-05-03T08:38:15.378Z", + "new_balance":"19064.51", + "value":"-14.64" + } + }, + { + "id":"383e233d-18d9-440f-bd53-339896511797", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T23:07:45.905Z", + "completed":"2016-05-03T23:07:45.905Z", + "new_balance":"19041.14", + "value":"-23.37" + } + }, + { + "id":"11947764-5423-489f-afdf-12fde7e30a5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T03:32:06.056Z", + "completed":"2016-05-04T03:32:06.056Z", + "new_balance":"19015.34", + "value":"-25.80" + } + }, + { + "id":"9adc311f-da74-4128-88ed-2e4407823c0f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T06:21:22.980Z", + "completed":"2016-05-04T06:21:22.980Z", + "new_balance":"18987.33", + "value":"-28.01" + } + }, + { + "id":"d324c549-ac62-455d-a6bf-c49cd4baac9c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T23:18:41.487Z", + "completed":"2016-05-05T23:18:41.487Z", + "new_balance":"18913.40", + "value":"-73.93" + } + }, + { + "id":"d57ab500-ca11-4094-b29b-098c663fb47f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T13:29:27.169Z", + "completed":"2016-05-07T13:29:27.169Z", + "new_balance":"18909.31", + "value":"-4.09" + } + }, + { + "id":"fe59094b-98aa-42bb-83cb-05af8f76f235", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T14:32:53.511Z", + "completed":"2016-05-07T14:32:53.511Z", + "new_balance":"18881.46", + "value":"-27.85" + } + }, + { + "id":"aa63b444-27a6-476d-92b3-4f0633d04ca1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T14:11:22.463Z", + "completed":"2016-05-12T14:11:22.463Z", + "new_balance":"18860.36", + "value":"-21.10" + } + }, + { + "id":"7f0a96f4-5476-454f-a5db-397e303f2311", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T19:21:45.904Z", + "completed":"2016-05-12T19:21:45.904Z", + "new_balance":"18811.66", + "value":"-48.70" + } + }, + { + "id":"a80cef75-75b0-471a-8e08-9df3f6f3a8ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T03:03:06.523Z", + "completed":"2016-05-14T03:03:06.523Z", + "new_balance":"18766.49", + "value":"-45.17" + } + }, + { + "id":"50d6acd9-4977-4597-9074-c915368d33a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T19:31:54.937Z", + "completed":"2016-05-16T19:31:54.937Z", + "new_balance":"18760.72", + "value":"-5.77" + } + }, + { + "id":"e1c0b07b-5c8b-4ea5-b750-0c4c7dca9f6a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T18:49:57.988Z", + "completed":"2016-05-18T18:49:57.988Z", + "new_balance":"18752.20", + "value":"-8.52" + } + }, + { + "id":"f8a56f2c-728d-4ec3-b2e4-22879662bbd5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T21:03:04.017Z", + "completed":"2016-05-20T21:03:04.017Z", + "new_balance":"18791.21", + "value":"39.01" + } + }, + { + "id":"60494edd-1eea-40d8-bdaa-a6d69569af1f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T12:24:48.146Z", + "completed":"2016-05-21T12:24:48.146Z", + "new_balance":"18747.42", + "value":"-43.79" + } + }, + { + "id":"2b8a65be-9c5d-4b9c-9b64-0d45edff6093", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T23:36:53.339Z", + "completed":"2016-05-21T23:36:53.339Z", + "new_balance":"18701.79", + "value":"-45.63" + } + }, + { + "id":"7f32497b-b5c0-4695-a2f6-601c98a930f6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:51:38.499Z", + "completed":"2016-05-27T01:51:38.499Z", + "new_balance":"18668.26", + "value":"-33.53" + } + }, + { + "id":"2a02eabc-56dc-49ea-abc5-9d453e5b2f8d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:49:10.447Z", + "completed":"2016-05-27T15:49:10.447Z", + "new_balance":"18642.70", + "value":"-25.56" + } + }, + { + "id":"81b2779b-0ce6-41b5-9923-1314f92948e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T12:06:48.751Z", + "completed":"2016-06-01T12:06:48.751Z", + "new_balance":"18132.16", + "value":"-510.54" + } + }, + { + "id":"8e38d4a2-1684-498b-b519-c73b79b8d235", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:33:54.449Z", + "completed":"2016-06-01T15:33:54.449Z", + "new_balance":"17997.68", + "value":"-134.48" + } + }, + { + "id":"306b39b0-b451-40d8-a94f-b866c0524475", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T16:05:48.582Z", + "completed":"2016-06-01T16:05:48.582Z", + "new_balance":"19678.09", + "value":"1680.41" + } + }, + { + "id":"2cfaaa73-7152-400d-9b12-c03c6e67b0eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T16:16:24.109Z", + "completed":"2016-06-01T16:16:24.109Z", + "new_balance":"19643.66", + "value":"-34.43" + } + }, + { + "id":"33bb095c-b3da-4a1b-a5a7-c6d950a0ebc2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T18:53:21.350Z", + "completed":"2016-06-01T18:53:21.350Z", + "new_balance":"19590.48", + "value":"-53.18" + } + }, + { + "id":"7b866ee6-67d5-4443-a2c0-d53e9b8ed067", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T20:35:59.607Z", + "completed":"2016-06-01T20:35:59.607Z", + "new_balance":"19560.60", + "value":"-29.88" + } + }, + { + "id":"38d978de-9854-4e24-aeb8-870c2036dbb2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T00:09:12.372Z", + "completed":"2016-06-04T00:09:12.372Z", + "new_balance":"19474.04", + "value":"-86.56" + } + }, + { + "id":"5e728231-a396-44cb-a25c-5b2a09fc8eda", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:41:51.257Z", + "completed":"2016-06-04T15:41:51.257Z", + "new_balance":"19342.20", + "value":"-131.84" + } + }, + { + "id":"efc50793-6bfb-4c85-b980-58026ee90e4b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T19:29:11.047Z", + "completed":"2016-06-11T19:29:11.047Z", + "new_balance":"19311.39", + "value":"-30.81" + } + }, + { + "id":"e4ebf582-cf66-45b6-8711-2549e4f10ee8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T00:00:37.722Z", + "completed":"2016-06-12T00:00:37.722Z", + "new_balance":"19300.86", + "value":"-10.53" + } + }, + { + "id":"3cdce1bd-4b64-4be2-bd8a-a57e52840757", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T16:03:12.988Z", + "completed":"2016-06-13T16:03:12.988Z", + "new_balance":"19219.65", + "value":"-81.21" + } + }, + { + "id":"ff23f500-4475-4b1d-a987-0bffc42580aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T18:19:37.983Z", + "completed":"2016-06-13T18:19:37.983Z", + "new_balance":"19213.18", + "value":"-6.47" + } + }, + { + "id":"7697c510-a85b-45e8-a4ef-1fb571a510b3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T07:57:56.030Z", + "completed":"2016-06-16T07:57:56.030Z", + "new_balance":"19171.95", + "value":"-41.23" + } + }, + { + "id":"5270aaac-8ac2-4a45-a7c6-71d293e71fc4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T09:34:26.453Z", + "completed":"2016-06-17T09:34:26.453Z", + "new_balance":"19090.74", + "value":"-81.21" + } + }, + { + "id":"c2a30c9b-f56f-4388-8c4b-e03cc20d980e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T15:36:36.144Z", + "completed":"2016-06-17T15:36:36.144Z", + "new_balance":"19085.97", + "value":"-4.77" + } + }, + { + "id":"deac6123-6f72-4fef-ab25-5bb82ef974dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T20:42:56.040Z", + "completed":"2016-06-18T20:42:56.040Z", + "new_balance":"19002.17", + "value":"-83.80" + } + }, + { + "id":"5c6f30e4-3e32-4b86-bdae-226886126f46", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T08:12:58.202Z", + "completed":"2016-06-19T08:12:58.202Z", + "new_balance":"18959.83", + "value":"-42.34" + } + }, + { + "id":"45b07baa-330d-4e55-8e31-c432813cb26a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T10:36:38.577Z", + "completed":"2016-06-19T10:36:38.577Z", + "new_balance":"18876.03", + "value":"-83.80" + } + }, + { + "id":"b7277104-4779-45f2-890b-32aa9527ef4a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T05:51:18.752Z", + "completed":"2016-06-21T05:51:18.752Z", + "new_balance":"18784.56", + "value":"-91.47" + } + }, + { + "id":"8efe3d18-1ec8-4e74-bdfa-fb3f6e517a67", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T21:35:02.503Z", + "completed":"2016-06-21T21:35:02.503Z", + "new_balance":"18780.98", + "value":"-3.58" + } + }, + { + "id":"1a132ecc-8c21-4718-b0aa-d8304b8336eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T00:59:37.878Z", + "completed":"2016-06-23T00:59:37.878Z", + "new_balance":"18773.70", + "value":"-7.28" + } + }, + { + "id":"8b16bae4-3c9e-41d4-9c54-b6ca8973c5e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:59:35.917Z", + "completed":"2016-06-23T16:59:35.917Z", + "new_balance":"18746.40", + "value":"-27.30" + } + }, + { + "id":"4b2e7561-f94b-4c9b-a455-2b9059860e21", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T11:36:56.705Z", + "completed":"2016-06-24T11:36:56.705Z", + "new_balance":"18700.39", + "value":"-46.01" + } + }, + { + "id":"cee645e5-60f0-427b-a89a-d764f6fb536e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T16:15:25.103Z", + "completed":"2016-06-24T16:15:25.103Z", + "new_balance":"18687.15", + "value":"-13.24" + } + }, + { + "id":"e7f14207-80cb-42ef-8ca8-861c3854bca2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:27:09.125Z", + "completed":"2016-06-28T01:27:09.125Z", + "new_balance":"18680.16", + "value":"-6.99" + } + }, + { + "id":"dc0ea833-8489-4766-a025-55fa8687601f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T07:07:45.638Z", + "completed":"2016-06-28T07:07:45.638Z", + "new_balance":"18673.17", + "value":"-6.99" + } + }, + { + "id":"e6fa1897-a779-45ac-8313-11196ee90ebf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T08:42:37.697Z", + "completed":"2016-06-28T08:42:37.697Z", + "new_balance":"18591.76", + "value":"-81.41" + } + }, + { + "id":"ab9cba77-8e50-43e0-9475-7288ba44e5dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T14:08:03.662Z", + "completed":"2016-06-28T14:08:03.662Z", + "new_balance":"18544.96", + "value":"-46.80" + } + }, + { + "id":"fa4b3d21-ed13-4ea7-860c-d776e9b7ffcb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T03:50:45.897Z", + "completed":"2016-06-29T03:50:45.897Z", + "new_balance":"18486.06", + "value":"-58.90" + } + }, + { + "id":"a46a908e-7315-4a92-8955-3926944ee7e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T08:47:29.897Z", + "completed":"2016-06-29T08:47:29.897Z", + "new_balance":"18435.05", + "value":"-51.01" + } + }, + { + "id":"5117096b-a440-404b-b255-ed4e6e1fbf9b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T09:16:38.034Z", + "completed":"2016-06-29T09:16:38.034Z", + "new_balance":"18361.54", + "value":"-73.51" + } + }, + { + "id":"72c936e6-4444-4333-b3ac-27f7314f1895", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T15:12:03.424Z", + "completed":"2016-06-29T15:12:03.424Z", + "new_balance":"18324.59", + "value":"-36.95" + } + }, + { + "id":"d35af5df-e445-4769-a954-1c81cbb2fcf1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T21:54:45.238Z", + "completed":"2016-06-29T21:54:45.238Z", + "new_balance":"18290.68", + "value":"-33.91" + } + }, + { + "id":"88fcc730-a759-459a-880c-42599877887c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T22:40:00.254Z", + "completed":"2016-06-29T22:40:00.254Z", + "new_balance":"18284.21", + "value":"-6.47" + } + }, + { + "id":"70e075e0-47cd-466f-af6b-bce845e172c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T07:30:10.137Z", + "completed":"2016-06-30T07:30:10.137Z", + "new_balance":"18272.98", + "value":"-11.23" + } + }, + { + "id":"7a200d71-7c06-41b6-a806-43836af065c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T16:43:24.571Z", + "completed":"2016-06-30T16:43:24.571Z", + "new_balance":"18227.47", + "value":"-45.51" + } + }, + { + "id":"ffbd2cf3-f1a9-4f4c-9fd3-5520e7fd1f02", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T18:24:46.127Z", + "completed":"2016-06-30T18:24:46.127Z", + "new_balance":"18198.61", + "value":"-28.86" + } + }, + { + "id":"f25b27af-9ba2-4a68-849f-a500582764aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T18:48:29.623Z", + "completed":"2016-06-30T18:48:29.623Z", + "new_balance":"18192.73", + "value":"-5.88" + } + }, + { + "id":"106b0b4d-8f9a-4c6d-b6dd-bd158a0c4b0e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T02:35:22.193Z", + "completed":"2016-07-01T02:35:22.193Z", + "new_balance":"18158.30", + "value":"-34.43" + } + }, + { + "id":"fe1b1f0e-a79a-4983-9ab4-ade3c7385afd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T03:02:40.621Z", + "completed":"2016-07-01T03:02:40.621Z", + "new_balance":"18023.82", + "value":"-134.48" + } + }, + { + "id":"440ae0e4-f7c8-430f-9fa4-e4f3af0004e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T03:09:45.051Z", + "completed":"2016-07-01T03:09:45.051Z", + "new_balance":"18007.74", + "value":"-16.08" + } + }, + { + "id":"7835536f-2c45-4f32-8b02-e375a94993f8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T03:56:41.662Z", + "completed":"2016-07-01T03:56:41.662Z", + "new_balance":"17973.71", + "value":"-34.03" + } + }, + { + "id":"07d8a080-d8f8-4cee-8e17-aca52056336e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T10:56:05.100Z", + "completed":"2016-07-01T10:56:05.100Z", + "new_balance":"17784.44", + "value":"-189.27" + } + }, + { + "id":"20692abd-0754-4a4b-ae65-d47e1c97bbc0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:13:16.850Z", + "completed":"2016-07-01T11:13:16.850Z", + "new_balance":"17750.01", + "value":"-34.43" + } + }, + { + "id":"28545021-258e-41d2-ad55-f05a1dbec3eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T11:25:15.844Z", + "completed":"2016-07-01T11:25:15.844Z", + "new_balance":"17723.04", + "value":"-26.97" + } + }, + { + "id":"5d3d155d-2f66-4817-9582-82aef350c9e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T11:49:15.302Z", + "completed":"2016-07-01T11:49:15.302Z", + "new_balance":"17212.50", + "value":"-510.54" + } + }, + { + "id":"0fe40880-11ed-4fd3-9c46-e887f22d3aff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T16:42:46.604Z", + "completed":"2016-07-01T16:42:46.604Z", + "new_balance":"17159.32", + "value":"-53.18" + } + }, + { + "id":"dc406ba0-5306-4495-acf0-a94a947e1bdb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T20:49:02.973Z", + "completed":"2016-07-01T20:49:02.973Z", + "new_balance":"17129.44", + "value":"-29.88" + } + }, + { + "id":"56e915c5-f968-435a-853a-abe94054dfab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T16:02:24.487Z", + "completed":"2016-07-02T16:02:24.487Z", + "new_balance":"17042.88", + "value":"-86.56" + } + }, + { + "id":"8c2d8cfb-0110-4c15-b2c6-e24635f698db", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T04:02:32.133Z", + "completed":"2016-07-03T04:02:32.133Z", + "new_balance":"16947.45", + "value":"-95.43" + } + }, + { + "id":"b54b7edd-f5ee-4c06-924f-313c737626dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T23:18:26.871Z", + "completed":"2016-07-04T23:18:26.871Z", + "new_balance":"16931.67", + "value":"-15.78" + } + }, + { + "id":"477ecab3-f8fa-45df-8ec3-b4bfb36e86d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T11:16:19.263Z", + "completed":"2016-07-05T11:16:19.263Z", + "new_balance":"16857.74", + "value":"-73.93" + } + }, + { + "id":"e4325115-78d1-41c8-91a2-9364faeb7d47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T22:03:55.277Z", + "completed":"2016-07-05T22:03:55.277Z", + "new_balance":"16785.65", + "value":"-72.09" + } + }, + { + "id":"c5bc2375-edb5-463f-bd3e-b25fc1edc44a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T23:40:01.506Z", + "completed":"2016-07-06T23:40:01.506Z", + "new_balance":"16782.06", + "value":"-3.59" + } + }, + { + "id":"be398396-0396-45c0-ab49-00e1119908ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T04:17:11.319Z", + "completed":"2016-07-11T04:17:11.319Z", + "new_balance":"16754.61", + "value":"-27.45" + } + }, + { + "id":"c09a2ae8-6572-49d8-82be-1fc43c1c3198", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T07:30:47.491Z", + "completed":"2016-07-12T07:30:47.491Z", + "new_balance":"16723.32", + "value":"-31.29" + } + }, + { + "id":"dc3b0e8b-0aa4-428f-b7e3-b51a0530c1b8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T00:05:25.737Z", + "completed":"2016-07-14T00:05:25.737Z", + "new_balance":"16708.50", + "value":"-14.82" + } + }, + { + "id":"7d2b243a-56b9-473e-977d-c1c3cbc26d68", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T21:50:20.999Z", + "completed":"2016-07-16T21:50:20.999Z", + "new_balance":"16701.34", + "value":"-7.16" + } + }, + { + "id":"608e3a2a-b44d-4d00-8883-0b8b02b391ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T23:08:46.730Z", + "completed":"2016-07-18T23:08:46.730Z", + "new_balance":"16679.09", + "value":"-22.25" + } + }, + { + "id":"80a19d0e-cfa1-4ebe-80ca-3f5b485fc04a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T09:39:41.111Z", + "completed":"2016-07-20T09:39:41.111Z", + "new_balance":"16672.38", + "value":"-6.71" + } + }, + { + "id":"af80a04a-c5ad-41c1-9c42-8988208a4012", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T09:51:28.782Z", + "completed":"2016-07-20T09:51:28.782Z", + "new_balance":"16483.11", + "value":"-189.27" + } + }, + { + "id":"383649e6-f038-459f-8fbb-f8399faeadbe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T06:46:57.046Z", + "completed":"2016-07-24T06:46:57.046Z", + "new_balance":"16473.41", + "value":"-9.70" + } + }, + { + "id":"df300c60-93a4-4ba9-aaca-c5e9cdd53967", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T15:30:05.028Z", + "completed":"2016-07-24T15:30:05.028Z", + "new_balance":"16428.17", + "value":"-45.24" + } + }, + { + "id":"487684a7-5c6b-4ec1-83cc-eb3de27572ab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T12:01:25.438Z", + "completed":"2016-07-25T12:01:25.438Z", + "new_balance":"16385.65", + "value":"-42.52" + } + }, + { + "id":"312214ef-8720-4e91-bd0a-00a671ee979c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T22:59:34.244Z", + "completed":"2016-07-25T22:59:34.244Z", + "new_balance":"16353.37", + "value":"-32.28" + } + }, + { + "id":"7846c687-df2b-42e8-b180-f05716af57a4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T14:01:34.861Z", + "completed":"2016-07-26T14:01:34.861Z", + "new_balance":"16289.80", + "value":"-63.57" + } + }, + { + "id":"0603b730-3f36-452d-8483-a1a42ef0965d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T18:11:26.037Z", + "completed":"2016-07-27T18:11:26.037Z", + "new_balance":"16283.09", + "value":"-6.71" + } + }, + { + "id":"36d23afd-279f-4a8a-a6ad-fa7b2c154774", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T00:14:28.440Z", + "completed":"2016-08-01T00:14:28.440Z", + "new_balance":"16229.91", + "value":"-53.18" + } + }, + { + "id":"e9f1f7e3-78f9-41ad-a829-97ee84ab24b2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:16:45.216Z", + "completed":"2016-08-01T02:16:45.216Z", + "new_balance":"16195.48", + "value":"-34.43" + } + }, + { + "id":"74676452-b6f7-4120-b958-47dfed8f628e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T06:17:35.602Z", + "completed":"2016-08-01T06:17:35.602Z", + "new_balance":"16061.00", + "value":"-134.48" + } + }, + { + "id":"4f400d58-3a74-43a9-b993-20f280ac2221", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T13:56:04.616Z", + "completed":"2016-08-01T13:56:04.616Z", + "new_balance":"15550.46", + "value":"-510.54" + } + }, + { + "id":"df6664e7-8ab0-46e7-93f3-75baed8d7f01", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T20:37:54.424Z", + "completed":"2016-08-01T20:37:54.424Z", + "new_balance":"15520.58", + "value":"-29.88" + } + }, + { + "id":"b06abb56-51ac-430e-a467-b82b97efe007", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T20:46:48.358Z", + "completed":"2016-08-01T20:46:48.358Z", + "new_balance":"17200.99", + "value":"1680.41" + } + }, + { + "id":"f858088c-d7f9-4fca-aed7-cd9308d3fee6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T19:59:48.594Z", + "completed":"2016-08-02T19:59:48.594Z", + "new_balance":"17114.43", + "value":"-86.56" + } + }, + { + "id":"287bdb32-a0e8-4f93-82e5-df099c93de8b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T03:39:20.863Z", + "completed":"2016-08-03T03:39:20.863Z", + "new_balance":"17110.84", + "value":"-3.59" + } + }, + { + "id":"c09c7a9e-8431-4799-a1cd-464cc8e1167e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T03:37:24.543Z", + "completed":"2016-08-04T03:37:24.543Z", + "new_balance":"17076.29", + "value":"-34.55" + } + }, + { + "id":"d84a8ad3-0ebb-42d4-8b3f-af2013080945", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T08:40:59.788Z", + "completed":"2016-08-07T08:40:59.788Z", + "new_balance":"17052.92", + "value":"-23.37" + } + }, + { + "id":"10b1fcc0-4a95-4702-9496-e879bba1d4b1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T05:58:57.124Z", + "completed":"2016-08-09T05:58:57.124Z", + "new_balance":"17024.91", + "value":"-28.01" + } + }, + { + "id":"e91eb893-baef-42cb-8290-86af110b8c92", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T06:37:33.583Z", + "completed":"2016-08-09T06:37:33.583Z", + "new_balance":"16999.11", + "value":"-25.80" + } + }, + { + "id":"ec4ab412-1688-4b21-b55b-32c9fc811227", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T18:30:21.806Z", + "completed":"2016-08-10T18:30:21.806Z", + "new_balance":"16925.18", + "value":"-73.93" + } + }, + { + "id":"da47da24-ee12-4e11-94fc-7d8748cb1162", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T07:39:04.279Z", + "completed":"2016-08-14T07:39:04.279Z", + "new_balance":"16921.09", + "value":"-4.09" + } + }, + { + "id":"d8c51f44-e6ef-4d65-af63-ef68a8b45557", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T01:17:10.077Z", + "completed":"2016-08-15T01:17:10.077Z", + "new_balance":"16885.16", + "value":"-35.93" + } + }, + { + "id":"ae38168d-193b-4ff5-af5e-2ff0e5235a99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T07:31:12.043Z", + "completed":"2016-08-15T07:31:12.043Z", + "new_balance":"16857.31", + "value":"-27.85" + } + }, + { + "id":"257e642e-8fd4-47de-8eaf-ece391e9753c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T09:24:16.871Z", + "completed":"2016-08-16T09:24:16.871Z", + "new_balance":"16808.61", + "value":"-48.70" + } + }, + { + "id":"51743d2f-718b-4141-90f4-ddfd6bae0024", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T01:37:02.181Z", + "completed":"2016-08-17T01:37:02.181Z", + "new_balance":"16763.44", + "value":"-45.17" + } + }, + { + "id":"2e66a69d-ff8a-428f-85dd-62f0d5d8e1e5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T16:42:39.069Z", + "completed":"2016-08-20T16:42:39.069Z", + "new_balance":"16754.92", + "value":"-8.52" + } + }, + { + "id":"0e0e08a1-6bfe-40da-889e-22745164ee73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T22:19:10.971Z", + "completed":"2016-08-20T22:19:10.971Z", + "new_balance":"16749.15", + "value":"-5.77" + } + }, + { + "id":"bbb6bbf0-6b02-4b25-9657-07e66b3ddc73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T10:47:47.894Z", + "completed":"2016-08-22T10:47:47.894Z", + "new_balance":"16788.16", + "value":"39.01" + } + }, + { + "id":"ae982e68-765f-4b64-9ede-4812775a80e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T04:27:40.886Z", + "completed":"2016-08-23T04:27:40.886Z", + "new_balance":"16742.53", + "value":"-45.63" + } + }, + { + "id":"d73a1757-1d05-4981-9bde-31b09846e82d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T21:36:39.652Z", + "completed":"2016-08-23T21:36:39.652Z", + "new_balance":"16698.74", + "value":"-43.79" + } + }, + { + "id":"9367884e-575b-401c-9d4e-688e74a0e016", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T10:18:37.988Z", + "completed":"2016-08-28T10:18:37.988Z", + "new_balance":"16673.18", + "value":"-25.56" + } + }, + { + "id":"4ae52a2b-1796-439b-974f-adf3d5527ca5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T20:03:42.258Z", + "completed":"2016-08-28T20:03:42.258Z", + "new_balance":"16639.65", + "value":"-33.53" + } + }, + { + "id":"1ced60e2-0d88-4832-bdda-c62db5db4729", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T00:31:04.163Z", + "completed":"2016-09-01T00:31:04.163Z", + "new_balance":"16586.47", + "value":"-53.18" + } + }, + { + "id":"b4593c0a-0ff2-47c8-8df6-d75e69fee8bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T04:45:15.245Z", + "completed":"2016-09-01T04:45:15.245Z", + "new_balance":"16556.59", + "value":"-29.88" + } + }, + { + "id":"c3595176-efbd-486a-8521-9de3f3b2601b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T14:44:36.445Z", + "completed":"2016-09-01T14:44:36.445Z", + "new_balance":"16046.05", + "value":"-510.54" + } + }, + { + "id":"6abccc92-be7c-45c8-beed-862310954dae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:12:54.574Z", + "completed":"2016-09-01T16:12:54.574Z", + "new_balance":"15911.57", + "value":"-134.48" + } + }, + { + "id":"a02c36da-22fd-481b-ba8f-f6af60c2cd36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T16:23:17.101Z", + "completed":"2016-09-01T16:23:17.101Z", + "new_balance":"17591.98", + "value":"1680.41" + } + }, + { + "id":"0bf57262-dba6-4ca5-a363-a1b1ae37f01e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T18:52:36.207Z", + "completed":"2016-09-01T18:52:36.207Z", + "new_balance":"17557.55", + "value":"-34.43" + } + }, + { + "id":"cc791690-ffbf-4c26-a2ba-f589897af9f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T16:37:30.674Z", + "completed":"2016-09-02T16:37:30.674Z", + "new_balance":"17470.99", + "value":"-86.56" + } + }, + { + "id":"ee9577e8-cddf-435c-b4a9-d2a7f1f0acf4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T00:19:46.988Z", + "completed":"2016-09-04T00:19:46.988Z", + "new_balance":"17464.52", + "value":"-6.47" + } + }, + { + "id":"c6a424b3-f293-46af-ba3f-3c4da692c9a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T04:23:06.462Z", + "completed":"2016-09-04T04:23:06.462Z", + "new_balance":"17433.71", + "value":"-30.81" + } + }, + { + "id":"db65ae80-1c50-4ed0-b129-ea4e7330f420", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T12:15:20.884Z", + "completed":"2016-09-04T12:15:20.884Z", + "new_balance":"17423.18", + "value":"-10.53" + } + }, + { + "id":"5f09728e-1b13-40e1-9a6a-e0c9ac7b960a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T21:32:27.223Z", + "completed":"2016-09-04T21:32:27.223Z", + "new_balance":"17341.97", + "value":"-81.21" + } + }, + { + "id":"838f244d-a089-4987-ba80-3550a54d3e41", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T15:12:37.643Z", + "completed":"2016-09-05T15:12:37.643Z", + "new_balance":"17300.74", + "value":"-41.23" + } + }, + { + "id":"96f12b87-1df5-40af-9679-15a9d88325e8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T23:01:55.840Z", + "completed":"2016-09-05T23:01:55.840Z", + "new_balance":"17295.97", + "value":"-4.77" + } + }, + { + "id":"4107327e-302c-4d60-8487-a45f264da2c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T05:17:58.221Z", + "completed":"2016-09-06T05:17:58.221Z", + "new_balance":"17214.76", + "value":"-81.21" + } + }, + { + "id":"1b31e4d1-1aef-4bb9-8446-fae5f76418f4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T22:08:03.150Z", + "completed":"2016-09-06T22:08:03.150Z", + "new_balance":"17130.96", + "value":"-83.80" + } + }, + { + "id":"ce7e3bec-3db6-4115-ada2-cc401c369b6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T16:38:02.573Z", + "completed":"2016-09-08T16:38:02.573Z", + "new_balance":"17088.62", + "value":"-42.34" + } + }, + { + "id":"a4b82841-db17-4d0c-9f3a-e8f03202eaef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T23:57:40.600Z", + "completed":"2016-09-08T23:57:40.600Z", + "new_balance":"17004.82", + "value":"-83.80" + } + }, + { + "id":"7df1d7e6-cb88-44ff-a01e-b48722a4c701", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T00:15:11.843Z", + "completed":"2016-09-10T00:15:11.843Z", + "new_balance":"16913.35", + "value":"-91.47" + } + }, + { + "id":"a0ded7da-542f-413a-9a7c-a6639dd99c5c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T21:38:55.452Z", + "completed":"2016-09-10T21:38:55.452Z", + "new_balance":"16909.77", + "value":"-3.58" + } + }, + { + "id":"35b8c177-76a0-4932-abef-660da9a3b399", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T15:26:19.906Z", + "completed":"2016-09-11T15:26:19.906Z", + "new_balance":"16902.49", + "value":"-7.28" + } + }, + { + "id":"86adec40-4f1a-4ddf-93d8-21606005ea1a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T16:49:25.086Z", + "completed":"2016-09-12T16:49:25.086Z", + "new_balance":"16875.19", + "value":"-27.30" + } + }, + { + "id":"4ce3dd83-b689-4909-ab50-726d5066172b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T23:09:32.746Z", + "completed":"2016-09-12T23:09:32.746Z", + "new_balance":"16861.95", + "value":"-13.24" + } + }, + { + "id":"4f81349b-b2e3-4c4d-9e95-f436c57b5387", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T14:43:55.065Z", + "completed":"2016-09-13T14:43:55.065Z", + "new_balance":"16815.94", + "value":"-46.01" + } + }, + { + "id":"462949c8-c76c-44ce-b56a-22b2be67dffe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T13:35:13.526Z", + "completed":"2016-09-16T13:35:13.526Z", + "new_balance":"16808.95", + "value":"-6.99" + } + }, + { + "id":"bd0feda5-9667-47e4-9ce8-57ccbf3e9bc8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T07:22:12.845Z", + "completed":"2016-09-17T07:22:12.845Z", + "new_balance":"16762.15", + "value":"-46.80" + } + }, + { + "id":"65e4957e-c382-41ea-bb8f-d321a9b30590", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T12:48:39.679Z", + "completed":"2016-09-17T12:48:39.679Z", + "new_balance":"16680.74", + "value":"-81.41" + } + }, + { + "id":"63e60ba2-abe8-4ff2-9f32-d5cdc8edbd2b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:53:41.511Z", + "completed":"2016-09-18T17:53:41.511Z", + "new_balance":"16673.75", + "value":"-6.99" + } + }, + { + "id":"c97972f2-8ce2-44e2-b884-c8197e4401be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T02:30:24.072Z", + "completed":"2016-09-19T02:30:24.072Z", + "new_balance":"16622.74", + "value":"-51.01" + } + }, + { + "id":"2674b7e4-a268-4674-8404-7818d8b5c04f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T02:47:31.934Z", + "completed":"2016-09-19T02:47:31.934Z", + "new_balance":"16585.79", + "value":"-36.95" + } + }, + { + "id":"dd9760a7-9127-4980-ae9b-a2847ae44b13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T08:25:06.637Z", + "completed":"2016-09-19T08:25:06.637Z", + "new_balance":"16551.88", + "value":"-33.91" + } + }, + { + "id":"7b7c0b1d-97d6-4267-8636-90864cfc7292", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T03:56:55.627Z", + "completed":"2016-09-20T03:56:55.627Z", + "new_balance":"16492.98", + "value":"-58.90" + } + }, + { + "id":"51815a2d-4525-4058-ae08-b9053b8635f5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T09:47:01.389Z", + "completed":"2016-09-20T09:47:01.389Z", + "new_balance":"16419.47", + "value":"-73.51" + } + }, + { + "id":"4bf81f8c-3bd8-4dfe-90c0-d629c031d700", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T09:12:05.269Z", + "completed":"2016-09-21T09:12:05.269Z", + "new_balance":"16413.00", + "value":"-6.47" + } + }, + { + "id":"7236b8b6-a438-48ec-8b59-d7f3e23da8f7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T18:37:53.267Z", + "completed":"2016-09-21T18:37:53.267Z", + "new_balance":"16407.12", + "value":"-5.88" + } + }, + { + "id":"a5b49538-cbe6-4f51-87b2-ceade64007e4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T02:47:24.262Z", + "completed":"2016-09-23T02:47:24.262Z", + "new_balance":"16361.61", + "value":"-45.51" + } + }, + { + "id":"da017b99-441c-4dea-96cc-ef59fc9ee037", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T10:37:16.004Z", + "completed":"2016-09-23T10:37:16.004Z", + "new_balance":"16350.38", + "value":"-11.23" + } + }, + { + "id":"2c6598ff-a572-47e3-9087-23bd150264ef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T15:44:20.311Z", + "completed":"2016-09-24T15:44:20.311Z", + "new_balance":"16321.52", + "value":"-28.86" + } + }, + { + "id":"f06d887f-dd7e-4c0b-8b86-3c7a7490a121", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T08:03:59.174Z", + "completed":"2016-09-25T08:03:59.174Z", + "new_balance":"16305.44", + "value":"-16.08" + } + }, + { + "id":"94ce166b-41de-42aa-8c5f-488de3371ebe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T09:51:25.488Z", + "completed":"2016-09-25T09:51:25.488Z", + "new_balance":"16271.41", + "value":"-34.03" + } + }, + { + "id":"dfa5e989-ac09-4269-b3ab-dbfeb232d074", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:02:17.371Z", + "completed":"2016-09-27T15:02:17.371Z", + "new_balance":"16082.14", + "value":"-189.27" + } + }, + { + "id":"f6808270-4f9b-4fa2-bc3f-e6436d5ade51", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T07:08:52.106Z", + "completed":"2016-09-29T07:08:52.106Z", + "new_balance":"16055.17", + "value":"-26.97" + } + }, + { + "id":"166366d1-5122-4ba1-8a17-f0f0217809e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T04:01:18.119Z", + "completed":"2016-10-01T04:01:18.119Z", + "new_balance":"16025.29", + "value":"-29.88" + } + }, + { + "id":"30ae85cf-2269-45e2-bc36-752a7c6f49fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T12:23:30.362Z", + "completed":"2016-10-01T12:23:30.362Z", + "new_balance":"15890.81", + "value":"-134.48" + } + }, + { + "id":"6c7707bd-7057-489d-9d37-7a539f07631f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T14:43:43.431Z", + "completed":"2016-10-01T14:43:43.431Z", + "new_balance":"15380.27", + "value":"-510.54" + } + }, + { + "id":"2eca973c-dc13-49d5-8cca-3551507b74a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:57:26.079Z", + "completed":"2016-10-01T23:57:26.079Z", + "new_balance":"15327.09", + "value":"-53.18" + } + }, + { + "id":"a4bc320d-edde-480f-aeaa-06038ee3aa9f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T11:28:46.837Z", + "completed":"2016-10-02T11:28:46.837Z", + "new_balance":"15255.10", + "value":"-71.99" + } + }, + { + "id":"823986e9-71cb-4c64-8150-008fd55bde13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T18:32:37.901Z", + "completed":"2016-10-02T18:32:37.901Z", + "new_balance":"15168.54", + "value":"-86.56" + } + }, + { + "id":"8aadb4f1-0adf-4b24-b916-eb7e3c65a773", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:21:52.090Z", + "completed":"2016-10-03T01:21:52.090Z", + "new_balance":"14436.69", + "value":"-731.85" + } + }, + { + "id":"e9b532eb-59f0-4818-bd2a-c32ca3015d89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:27:07.104Z", + "completed":"2016-10-03T01:27:07.104Z", + "new_balance":"14273.21", + "value":"-163.48" + } + }, + { + "id":"7a00a5c6-7885-4463-927d-48410f385108", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:28:14.272Z", + "completed":"2016-10-03T07:28:14.272Z", + "new_balance":"14236.02", + "value":"-37.19" + } + }, + { + "id":"1af2154c-99a1-4465-beda-2414e8516b3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T12:46:17.265Z", + "completed":"2016-10-03T12:46:17.265Z", + "new_balance":"14201.24", + "value":"-34.78" + } + }, + { + "id":"87ba369b-7d24-40ea-9d1f-2fdd1b40c5c2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T16:54:58.129Z", + "completed":"2016-10-03T16:54:58.129Z", + "new_balance":"14011.97", + "value":"-189.27" + } + }, + { + "id":"c780eeca-37e6-4e80-ae8f-15621f7f9512", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T00:22:47.063Z", + "completed":"2016-10-04T00:22:47.063Z", + "new_balance":"13938.04", + "value":"-73.93" + } + }, + { + "id":"e7b398fb-a88c-41df-ae70-14984e74920e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T10:30:33.003Z", + "completed":"2016-10-05T10:30:33.003Z", + "new_balance":"13910.59", + "value":"-27.45" + } + }, + { + "id":"0772b2f7-6a33-4207-853f-d366b0ac551b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T21:37:50.063Z", + "completed":"2016-10-05T21:37:50.063Z", + "new_balance":"13907.00", + "value":"-3.59" + } + }, + { + "id":"5b7cbf6e-69fc-4383-bb32-e8ea75559d8c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T04:54:07.157Z", + "completed":"2016-10-07T04:54:07.157Z", + "new_balance":"13892.18", + "value":"-14.82" + } + }, + { + "id":"cd6791dc-4f0c-4a58-b9bb-78ef413ce571", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T06:20:31.022Z", + "completed":"2016-10-07T06:20:31.022Z", + "new_balance":"13860.89", + "value":"-31.29" + } + }, + { + "id":"8d8d62d6-2b49-4751-a071-65ef2b19a817", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T16:07:11.490Z", + "completed":"2016-10-08T16:07:11.490Z", + "new_balance":"13853.73", + "value":"-7.16" + } + }, + { + "id":"a0dd4c6a-b029-488a-97ca-6eb3b62f2fa5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T09:38:30.475Z", + "completed":"2016-10-09T09:38:30.475Z", + "new_balance":"13847.02", + "value":"-6.71" + } + }, + { + "id":"3eca32d1-42e3-43a7-85c9-b19dd1be78dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T15:59:20.957Z", + "completed":"2016-10-09T15:59:20.957Z", + "new_balance":"13824.77", + "value":"-22.25" + } + }, + { + "id":"174ab270-be0a-4879-a9b7-2427bf9eebaf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T22:03:32.320Z", + "completed":"2016-10-09T22:03:32.320Z", + "new_balance":"13635.50", + "value":"-189.27" + } + }, + { + "id":"c63f9e4e-087c-455a-a22e-f5b6eb1083ee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T21:53:05.442Z", + "completed":"2016-10-10T21:53:05.442Z", + "new_balance":"13590.26", + "value":"-45.24" + } + }, + { + "id":"d9c29e35-15fb-4089-98e7-38a411b3962d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T10:45:47.426Z", + "completed":"2016-10-17T10:45:47.426Z", + "new_balance":"13580.56", + "value":"-9.70" + } + }, + { + "id":"e1c8a7f8-8c9c-4380-9105-996dd1d953cc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T06:43:17.338Z", + "completed":"2016-10-18T06:43:17.338Z", + "new_balance":"13548.28", + "value":"-32.28" + } + }, + { + "id":"e2bc8496-adac-4141-bc50-b73d9fe6d27d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T08:38:08.273Z", + "completed":"2016-10-25T08:38:08.273Z", + "new_balance":"13505.76", + "value":"-42.52" + } + }, + { + "id":"abd6e41b-b7a0-4325-9dbe-2891a35b25e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:06:31.292Z", + "completed":"2016-10-26T09:06:31.292Z", + "new_balance":"13499.05", + "value":"-6.71" + } + }, + { + "id":"5141327c-71fc-432c-a137-61dfaf7582bc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T15:17:44.313Z", + "completed":"2016-10-26T15:17:44.313Z", + "new_balance":"13435.48", + "value":"-63.57" + } + }, + { + "id":"1eba3948-edf1-4f60-b887-8b85ae3727e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T02:26:09.298Z", + "completed":"2016-11-02T02:26:09.298Z", + "new_balance":"13405.60", + "value":"-29.88" + } + }, + { + "id":"55f8ff0e-4130-4a99-8b11-dcd6360a23c7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T04:32:52.267Z", + "completed":"2016-11-02T04:32:52.267Z", + "new_balance":"15086.01", + "value":"1680.41" + } + }, + { + "id":"1b5b75e4-e7ce-4879-a250-d7c50e5e469c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T10:16:41.795Z", + "completed":"2016-11-02T10:16:41.795Z", + "new_balance":"14951.53", + "value":"-134.48" + } + }, + { + "id":"1198846c-d9d1-4910-a8c3-495a95802af4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T14:14:52.841Z", + "completed":"2016-11-02T14:14:52.841Z", + "new_balance":"14864.97", + "value":"-86.56" + } + }, + { + "id":"85678a93-085e-447c-b510-efa9b5b105f4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T15:16:53.925Z", + "completed":"2016-11-02T15:16:53.925Z", + "new_balance":"14830.54", + "value":"-34.43" + } + }, + { + "id":"c3be8ff1-2477-43cd-bb0c-46ff065725e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:48:01.481Z", + "completed":"2016-11-02T19:48:01.481Z", + "new_balance":"14777.36", + "value":"-53.18" + } + }, + { + "id":"06d6023f-8b25-4ed7-974e-3aec8eb69350", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T20:12:48.440Z", + "completed":"2016-11-02T20:12:48.440Z", + "new_balance":"14761.43", + "value":"-15.93" + } + }, + { + "id":"71cf09f0-f229-4c64-9d12-cf07c314ce10", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T20:53:35.267Z", + "completed":"2016-11-02T20:53:35.267Z", + "new_balance":"14250.89", + "value":"-510.54" + } + }, + { + "id":"88c88850-0781-4d3b-94eb-714892c3e611", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T22:14:38.964Z", + "completed":"2016-11-06T22:14:38.964Z", + "new_balance":"14236.25", + "value":"-14.64" + } + }, + { + "id":"6d42117b-3d67-4acb-ac57-17513c4167ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T03:44:46.654Z", + "completed":"2016-11-07T03:44:46.654Z", + "new_balance":"14208.24", + "value":"-28.01" + } + }, + { + "id":"c466092b-40eb-4469-9976-eeb2a06705ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T04:29:01.286Z", + "completed":"2016-11-07T04:29:01.286Z", + "new_balance":"14182.44", + "value":"-25.80" + } + }, + { + "id":"40decc57-170f-4d71-87cd-9041f3351af2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:23:33.728Z", + "completed":"2016-11-07T07:23:33.728Z", + "new_balance":"14159.07", + "value":"-23.37" + } + }, + { + "id":"efc10e8e-6ed7-4652-a93f-f52b1eda0387", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T01:20:00.695Z", + "completed":"2016-11-09T01:20:00.695Z", + "new_balance":"14085.14", + "value":"-73.93" + } + }, + { + "id":"ac99479a-2157-4794-8cb4-34e0c583d92e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T01:55:16.076Z", + "completed":"2016-11-09T01:55:16.076Z", + "new_balance":"14081.05", + "value":"-4.09" + } + }, + { + "id":"48df1edb-c328-4737-85f3-1e3e6846428e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T04:55:03.718Z", + "completed":"2016-11-12T04:55:03.718Z", + "new_balance":"14053.20", + "value":"-27.85" + } + }, + { + "id":"b672e87e-42db-4c50-ad2d-e3b5c40b76c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T11:56:14.364Z", + "completed":"2016-11-12T11:56:14.364Z", + "new_balance":"14032.10", + "value":"-21.10" + } + }, + { + "id":"32175e73-dcb2-4e46-a0cb-a0104d8bd06e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:02:36.203Z", + "completed":"2016-11-14T01:02:36.203Z", + "new_balance":"13986.93", + "value":"-45.17" + } + }, + { + "id":"621a0cf5-90d1-45dc-ad22-0bcda2d6b057", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T05:51:44.863Z", + "completed":"2016-11-14T05:51:44.863Z", + "new_balance":"13938.23", + "value":"-48.70" + } + }, + { + "id":"443d391d-8851-4f98-a76a-dd71f713e0a1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T03:43:55.785Z", + "completed":"2016-11-16T03:43:55.785Z", + "new_balance":"13932.46", + "value":"-5.77" + } + }, + { + "id":"bbf7729e-48ef-4175-855f-62528cceaffc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T07:46:47.044Z", + "completed":"2016-11-18T07:46:47.044Z", + "new_balance":"13923.94", + "value":"-8.52" + } + }, + { + "id":"73a9be22-4a9f-4632-8760-35aa2fa9caa5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T03:48:17.901Z", + "completed":"2016-11-20T03:48:17.901Z", + "new_balance":"13962.95", + "value":"39.01" + } + }, + { + "id":"7c80f6eb-49b6-4ca2-9850-30ac4eac8975", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T10:14:40.072Z", + "completed":"2016-11-21T10:14:40.072Z", + "new_balance":"13917.32", + "value":"-45.63" + } + }, + { + "id":"43cbd5c7-8fb1-4e44-abdf-947d2e4d73de", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T14:07:30.446Z", + "completed":"2016-11-21T14:07:30.446Z", + "new_balance":"13873.53", + "value":"-43.79" + } + }, + { + "id":"04fef0c9-e86a-44cc-a0e6-17b34d26f418", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T11:44:31.720Z", + "completed":"2016-11-27T11:44:31.720Z", + "new_balance":"13840.00", + "value":"-33.53" + } + }, + { + "id":"133fceab-d319-4907-9f47-24286e6e59aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T15:56:12.195Z", + "completed":"2016-11-27T15:56:12.195Z", + "new_balance":"13814.44", + "value":"-25.56" + } + }, + { + "id":"108a123d-d829-4286-8f25-0db7df462024", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:43:00.860Z", + "completed":"2016-12-01T01:43:00.860Z", + "new_balance":"13780.01", + "value":"-34.43" + } + }, + { + "id":"5e638b1b-d21b-4452-9b0c-6d75c34ab2cb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T04:00:47.982Z", + "completed":"2016-12-01T04:00:47.982Z", + "new_balance":"13645.53", + "value":"-134.48" + } + }, + { + "id":"e6802f19-873f-4fbd-826b-6ec924e84f67", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T07:38:17.981Z", + "completed":"2016-12-01T07:38:17.981Z", + "new_balance":"13592.35", + "value":"-53.18" + } + }, + { + "id":"77539612-7445-4bf1-a945-aa15a78f130c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:58:29.116Z", + "completed":"2016-12-01T10:58:29.116Z", + "new_balance":"15272.76", + "value":"1680.41" + } + }, + { + "id":"e33c3bca-c0d4-450e-868d-3b89d3acd179", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T18:57:34.024Z", + "completed":"2016-12-01T18:57:34.024Z", + "new_balance":"14762.22", + "value":"-510.54" + } + }, + { + "id":"e75e6f27-4ce0-47ab-9259-dd79793bf96d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T20:04:59.852Z", + "completed":"2016-12-01T20:04:59.852Z", + "new_balance":"14732.34", + "value":"-29.88" + } + }, + { + "id":"bd9bc2a2-2ef0-41bf-98c8-77ce9a4e7f99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:37:45.486Z", + "completed":"2016-12-04T07:37:45.486Z", + "new_balance":"14600.50", + "value":"-131.84" + } + }, + { + "id":"a336b394-0a0d-4d79-a33f-e7f7941b1ed7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T20:25:51.420Z", + "completed":"2016-12-04T20:25:51.420Z", + "new_balance":"14513.94", + "value":"-86.56" + } + }, + { + "id":"f48e90e9-667e-4636-a877-945218e6818d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T15:50:03.252Z", + "completed":"2016-12-12T15:50:03.252Z", + "new_balance":"14483.13", + "value":"-30.81" + } + }, + { + "id":"d4a272ac-245b-4fa9-b7b0-8b2dfdc2fb65", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T21:27:26.480Z", + "completed":"2016-12-12T21:27:26.480Z", + "new_balance":"14472.60", + "value":"-10.53" + } + }, + { + "id":"3f5c6b8e-7f47-49f4-abad-1c26717994fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T07:16:25.339Z", + "completed":"2016-12-13T07:16:25.339Z", + "new_balance":"14466.13", + "value":"-6.47" + } + }, + { + "id":"edc81db2-372c-4d62-8aef-fab40f6a0bdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T11:40:36.040Z", + "completed":"2016-12-13T11:40:36.040Z", + "new_balance":"14384.92", + "value":"-81.21" + } + }, + { + "id":"6d1d5be5-81e1-402a-91c2-99040e257713", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T15:41:47.264Z", + "completed":"2016-12-16T15:41:47.264Z", + "new_balance":"14343.69", + "value":"-41.23" + } + }, + { + "id":"b291f517-143a-46e8-92bd-caa173a87410", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T04:56:05.929Z", + "completed":"2016-12-18T04:56:05.929Z", + "new_balance":"14338.92", + "value":"-4.77" + } + }, + { + "id":"77b8f36f-cdcc-42b4-a132-fc8b12115ab8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T00:48:15.146Z", + "completed":"2016-12-19T00:48:15.146Z", + "new_balance":"14257.71", + "value":"-81.21" + } + }, + { + "id":"748487b5-7f0e-4c5f-9f05-361d0beb8663", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T03:38:07.463Z", + "completed":"2016-12-19T03:38:07.463Z", + "new_balance":"14173.91", + "value":"-83.80" + } + }, + { + "id":"f32b148a-4b9f-446a-a19d-8b844bf2a119", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T12:30:31.740Z", + "completed":"2016-12-20T12:30:31.740Z", + "new_balance":"14131.57", + "value":"-42.34" + } + }, + { + "id":"ecfaa810-07cc-44c6-a344-9f0731472175", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T15:38:34.780Z", + "completed":"2016-12-21T15:38:34.780Z", + "new_balance":"14047.77", + "value":"-83.80" + } + }, + { + "id":"0ff1b7b2-5427-4e70-994c-933e404acfa8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T00:43:02.793Z", + "completed":"2016-12-24T00:43:02.793Z", + "new_balance":"14034.53", + "value":"-13.24" + } + }, + { + "id":"69bb769f-501d-46ac-857f-873f0a24330e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T10:36:43.878Z", + "completed":"2016-12-24T10:36:43.878Z", + "new_balance":"14007.23", + "value":"-27.30" + } + }, + { + "id":"33084d93-e328-445b-b8a9-3eda2915354a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T18:43:51.997Z", + "completed":"2016-12-24T18:43:51.997Z", + "new_balance":"13961.22", + "value":"-46.01" + } + }, + { + "id":"0cb73a9b-212f-440f-87d1-7894061874bd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T19:41:20.993Z", + "completed":"2016-12-24T19:41:20.993Z", + "new_balance":"13869.75", + "value":"-91.47" + } + }, + { + "id":"ec61ad70-480c-4723-8243-d88807bf0e74", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T21:48:09.905Z", + "completed":"2016-12-24T21:48:09.905Z", + "new_balance":"13866.17", + "value":"-3.58" + } + }, + { + "id":"ca0bd91d-e442-4450-80e3-ae113889c3fe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T23:24:52.346Z", + "completed":"2016-12-24T23:24:52.346Z", + "new_balance":"13858.89", + "value":"-7.28" + } + }, + { + "id":"b58a1b49-81a9-45a6-a30f-aaa912305e44", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T05:46:49.406Z", + "completed":"2016-12-28T05:46:49.406Z", + "new_balance":"13851.90", + "value":"-6.99" + } + }, + { + "id":"19f2e772-aaf2-49d5-bd00-075989f3e68f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T08:03:33.638Z", + "completed":"2016-12-28T08:03:33.638Z", + "new_balance":"13770.49", + "value":"-81.41" + } + }, + { + "id":"98198617-8486-467b-8b64-c262b6603c99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T20:07:47.629Z", + "completed":"2016-12-28T20:07:47.629Z", + "new_balance":"13763.50", + "value":"-6.99" + } + }, + { + "id":"592bfaea-2178-4dea-a439-7d3e4919feff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T21:19:41.202Z", + "completed":"2016-12-28T21:19:41.202Z", + "new_balance":"13716.70", + "value":"-46.80" + } + }, + { + "id":"85bafcb9-dd9f-46c3-8f40-25ac14cf8850", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T09:35:27.210Z", + "completed":"2016-12-29T09:35:27.210Z", + "new_balance":"13643.19", + "value":"-73.51" + } + }, + { + "id":"6c30c4ef-ee53-4e7a-a908-0749d09f53be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T13:29:12.441Z", + "completed":"2016-12-29T13:29:12.441Z", + "new_balance":"13606.24", + "value":"-36.95" + } + }, + { + "id":"f5dc97e8-95b9-4fa0-a2d9-a03e67da064e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T16:17:47.651Z", + "completed":"2016-12-29T16:17:47.651Z", + "new_balance":"13599.77", + "value":"-6.47" + } + }, + { + "id":"0b2e4ec3-b6da-4681-af0e-7c1abfbc2c9f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T16:56:33.427Z", + "completed":"2016-12-29T16:56:33.427Z", + "new_balance":"13548.76", + "value":"-51.01" + } + }, + { + "id":"23764cb0-089e-4f9f-898f-051716fcb452", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T18:44:41.053Z", + "completed":"2016-12-29T18:44:41.053Z", + "new_balance":"13514.85", + "value":"-33.91" + } + }, + { + "id":"11232d6a-8032-4e7d-a447-8c863f7f2770", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T19:51:05.693Z", + "completed":"2016-12-29T19:51:05.693Z", + "new_balance":"13455.95", + "value":"-58.90" + } + }, + { + "id":"f4dbc229-e326-47e0-916a-f20edfecfc86", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T13:55:45.441Z", + "completed":"2016-12-30T13:55:45.441Z", + "new_balance":"13410.44", + "value":"-45.51" + } + }, + { + "id":"5fcaa5d1-6ca2-440a-947e-1a2ee3da02b7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T14:24:56.998Z", + "completed":"2016-12-30T14:24:56.998Z", + "new_balance":"13399.21", + "value":"-11.23" + } + }, + { + "id":"67dd5196-1f8a-4ccb-baa0-78a125e4b8d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T15:28:39.488Z", + "completed":"2016-12-30T15:28:39.488Z", + "new_balance":"13393.33", + "value":"-5.88" + } + }, + { + "id":"6b8b3064-ff8e-48d6-a4c1-4ad3a34a319b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T16:15:11.588Z", + "completed":"2016-12-30T16:15:11.588Z", + "new_balance":"13364.47", + "value":"-28.86" + } + }, + { + "id":"8c65e98c-60f4-4592-88a3-318c9764bd97", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T02:41:10.453Z", + "completed":"2016-12-31T02:41:10.453Z", + "new_balance":"13337.50", + "value":"-26.97" + } + }, + { + "id":"1c3e5b81-2e1c-473a-8d39-e378a023caaf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T08:20:59.944Z", + "completed":"2016-12-31T08:20:59.944Z", + "new_balance":"13148.23", + "value":"-189.27" + } + }, + { + "id":"4f100b74-1f05-48f6-b427-cee78b49ab63", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T11:14:12.645Z", + "completed":"2016-12-31T11:14:12.645Z", + "new_balance":"13114.20", + "value":"-34.03" + } + }, + { + "id":"e1c84550-398e-4c24-948d-56b28cf35da5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T19:57:38.596Z", + "completed":"2016-12-31T19:57:38.596Z", + "new_balance":"13098.12", + "value":"-16.08" + } + }, + { + "id":"a3e4c979-f094-46ea-a927-472ecc3af8d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T03:44:37.770Z", + "completed":"2017-01-01T03:44:37.770Z", + "new_balance":"13063.69", + "value":"-34.43" + } + }, + { + "id":"184dd4dd-24be-4a9a-8514-d5e4f61bd8f8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:17:50.561Z", + "completed":"2017-01-01T05:17:50.561Z", + "new_balance":"12929.21", + "value":"-134.48" + } + }, + { + "id":"d06d4d83-b4c1-4550-b51a-a9867bae760d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T06:52:11.654Z", + "completed":"2017-01-01T06:52:11.654Z", + "new_balance":"12876.03", + "value":"-53.18" + } + }, + { + "id":"e75b1fc9-de6e-405c-95b8-f70763ec89e5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T13:54:22.884Z", + "completed":"2017-01-01T13:54:22.884Z", + "new_balance":"12841.60", + "value":"-34.43" + } + }, + { + "id":"75dc59e0-38a1-4848-ac12-43e8a184b9f7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T15:05:36.390Z", + "completed":"2017-01-01T15:05:36.390Z", + "new_balance":"12811.72", + "value":"-29.88" + } + }, + { + "id":"7b1a5b4b-2658-49e6-94b5-8e997d419c18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T19:59:35.002Z", + "completed":"2017-01-01T19:59:35.002Z", + "new_balance":"12301.18", + "value":"-510.54" + } + }, + { + "id":"3531ab2b-f660-4381-b958-eb9aa01a341e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T19:19:17.428Z", + "completed":"2017-01-02T19:19:17.428Z", + "new_balance":"12214.62", + "value":"-86.56" + } + }, + { + "id":"7b310545-1aa2-40c2-b879-e05db71649ef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T19:55:01.149Z", + "completed":"2017-01-02T19:55:01.149Z", + "new_balance":"12142.63", + "value":"-71.99" + } + }, + { + "id":"ec719277-d32b-488c-972c-f4dee27abb72", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T03:15:40.963Z", + "completed":"2017-01-04T03:15:40.963Z", + "new_balance":"12105.44", + "value":"-37.19" + } + }, + { + "id":"3a9fd115-9d3e-4775-b0fe-0592db0d2033", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T19:42:09.247Z", + "completed":"2017-01-04T19:42:09.247Z", + "new_balance":"12070.66", + "value":"-34.78" + } + }, + { + "id":"210b2895-cca3-48fd-a68d-5fc51ee0078c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T13:53:37.168Z", + "completed":"2017-01-07T13:53:37.168Z", + "new_balance":"11996.73", + "value":"-73.93" + } + }, + { + "id":"d117555b-d487-44fc-a0bc-d50cf8f53561", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T11:07:17.375Z", + "completed":"2017-01-09T11:07:17.375Z", + "new_balance":"11993.14", + "value":"-3.59" + } + }, + { + "id":"ab209f00-6f62-4486-ab34-8f97e4fce8b3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T22:11:57.212Z", + "completed":"2017-01-10T22:11:57.212Z", + "new_balance":"11965.69", + "value":"-27.45" + } + }, + { + "id":"80291606-348f-4dc9-9cb5-9332d1757025", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T01:03:47.009Z", + "completed":"2017-01-12T01:03:47.009Z", + "new_balance":"11934.40", + "value":"-31.29" + } + }, + { + "id":"eb206a6b-2368-4cb3-93bf-8ac5d21474d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T11:22:35.331Z", + "completed":"2017-01-15T11:22:35.331Z", + "new_balance":"11927.24", + "value":"-7.16" + } + }, + { + "id":"6c199676-c44e-44e5-b559-630530bbbe16", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T17:06:19.012Z", + "completed":"2017-01-15T17:06:19.012Z", + "new_balance":"11912.42", + "value":"-14.82" + } + }, + { + "id":"75443567-9e49-410f-a967-4bdc0b88f1a9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T19:20:47.465Z", + "completed":"2017-01-17T19:20:47.465Z", + "new_balance":"11890.17", + "value":"-22.25" + } + }, + { + "id":"0fcdb82c-9254-4778-ad3a-a4fdd389a08b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T01:37:17.258Z", + "completed":"2017-01-19T01:37:17.258Z", + "new_balance":"11700.90", + "value":"-189.27" + } + }, + { + "id":"17ad9726-0575-46ee-a9e5-af3a230607aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T02:24:50.491Z", + "completed":"2017-01-20T02:24:50.491Z", + "new_balance":"11694.19", + "value":"-6.71" + } + }, + { + "id":"1b7d1011-4ca5-448d-a0d3-7b9cc2f14cdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T01:28:03.246Z", + "completed":"2017-01-22T01:28:03.246Z", + "new_balance":"11648.95", + "value":"-45.24" + } + }, + { + "id":"f3820ef8-9043-4eb8-a220-0be2f3360b7c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T21:31:33.721Z", + "completed":"2017-01-22T21:31:33.721Z", + "new_balance":"11639.25", + "value":"-9.70" + } + }, + { + "id":"c043087c-8407-4d26-bed2-efcc5a1fb577", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T08:31:43.267Z", + "completed":"2017-01-24T08:31:43.267Z", + "new_balance":"11606.97", + "value":"-32.28" + } + }, + { + "id":"25041b7a-4177-4045-a728-8250634fcf79", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T17:38:30.940Z", + "completed":"2017-01-25T17:38:30.940Z", + "new_balance":"11564.45", + "value":"-42.52" + } + }, + { + "id":"326c40cb-4bac-440b-9328-8193d3dffb6c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T20:57:59.490Z", + "completed":"2017-01-25T20:57:59.490Z", + "new_balance":"11557.74", + "value":"-6.71" + } + }, + { + "id":"f82ce6ef-4f50-466d-9945-ac2ed823d45f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T22:51:20.218Z", + "completed":"2017-01-26T22:51:20.218Z", + "new_balance":"11494.17", + "value":"-63.57" + } + }, + { + "id":"01449956-0f54-4804-a5a4-e394e3f2ad23", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T07:13:28.919Z", + "completed":"2017-02-01T07:13:28.919Z", + "new_balance":"10983.63", + "value":"-510.54" + } + }, + { + "id":"71fdc16b-4a49-48ec-811f-5776c1a97be4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T08:02:47.464Z", + "completed":"2017-02-01T08:02:47.464Z", + "new_balance":"10949.20", + "value":"-34.43" + } + }, + { + "id":"2caa684b-1293-40ad-8377-32fdc5575020", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T12:13:46.112Z", + "completed":"2017-02-01T12:13:46.112Z", + "new_balance":"10814.72", + "value":"-134.48" + } + }, + { + "id":"446d9ada-76f3-4226-b2c0-511178295a02", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:58:11.337Z", + "completed":"2017-02-01T15:58:11.337Z", + "new_balance":"10784.84", + "value":"-29.88" + } + }, + { + "id":"4fe99475-4562-4514-8700-932842d2b118", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T19:11:33.366Z", + "completed":"2017-02-01T19:11:33.366Z", + "new_balance":"12465.25", + "value":"1680.41" + } + }, + { + "id":"4c9cbad8-dfc8-4373-a9f9-32e4cbe45cca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T21:25:51.627Z", + "completed":"2017-02-01T21:25:51.627Z", + "new_balance":"12412.07", + "value":"-53.18" + } + }, + { + "id":"68cbf094-a125-408a-9a8d-47c21b591727", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T08:45:42.623Z", + "completed":"2017-02-02T08:45:42.623Z", + "new_balance":"12325.51", + "value":"-86.56" + } + }, + { + "id":"53bbe213-214c-46ea-84b6-7ed0da8c146a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T17:22:45.574Z", + "completed":"2017-02-02T17:22:45.574Z", + "new_balance":"12309.58", + "value":"-15.93" + } + }, + { + "id":"912b3113-6f2d-4238-9e41-79d6b7ff5b8a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T18:21:01.093Z", + "completed":"2017-02-02T18:21:01.093Z", + "new_balance":"12294.94", + "value":"-14.64" + } + }, + { + "id":"b7684d3d-b43f-4dc0-a367-61a3639b4f27", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T08:22:45.553Z", + "completed":"2017-02-03T08:22:45.553Z", + "new_balance":"12266.93", + "value":"-28.01" + } + }, + { + "id":"4b8346a1-bf1d-4f9c-87c1-eb6c2ce2eb36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T15:30:41.283Z", + "completed":"2017-02-03T15:30:41.283Z", + "new_balance":"12241.13", + "value":"-25.80" + } + }, + { + "id":"8b2f67ff-9dd8-46dd-a58c-95c814b62f09", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T18:05:03.900Z", + "completed":"2017-02-03T18:05:03.900Z", + "new_balance":"12217.76", + "value":"-23.37" + } + }, + { + "id":"9f7833cc-c6c9-4588-90ae-400db1efde93", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T09:04:38.440Z", + "completed":"2017-02-06T09:04:38.440Z", + "new_balance":"12143.83", + "value":"-73.93" + } + }, + { + "id":"5626c504-927c-4a88-8d65-89a5d1a16975", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T02:35:36.931Z", + "completed":"2017-02-08T02:35:36.931Z", + "new_balance":"12122.73", + "value":"-21.10" + } + }, + { + "id":"242d5712-0c46-46b2-968f-02e513f31e78", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T14:26:06.182Z", + "completed":"2017-02-08T14:26:06.182Z", + "new_balance":"12118.64", + "value":"-4.09" + } + }, + { + "id":"f89846ff-0dcd-4056-9da8-867517f86870", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T15:08:58.243Z", + "completed":"2017-02-08T15:08:58.243Z", + "new_balance":"12090.79", + "value":"-27.85" + } + }, + { + "id":"ef0102cc-29b3-4ee3-a47a-0462f566b3f3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T01:53:59.344Z", + "completed":"2017-02-09T01:53:59.344Z", + "new_balance":"12042.09", + "value":"-48.70" + } + }, + { + "id":"989e9703-26ca-4749-ba55-ba4c758ea8c9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T15:31:00.917Z", + "completed":"2017-02-09T15:31:00.917Z", + "new_balance":"11996.92", + "value":"-45.17" + } + }, + { + "id":"053850b9-a868-4fce-b9e9-7481ded19b86", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T17:52:06.636Z", + "completed":"2017-02-12T17:52:06.636Z", + "new_balance":"11991.15", + "value":"-5.77" + } + }, + { + "id":"b2838a7a-6caf-4492-898a-de7d5b9908d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T08:59:52.140Z", + "completed":"2017-02-13T08:59:52.140Z", + "new_balance":"11982.63", + "value":"-8.52" + } + }, + { + "id":"9e3d54eb-12d9-44fb-af7e-82954faebb6c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T14:14:47.214Z", + "completed":"2017-02-13T14:14:47.214Z", + "new_balance":"12021.64", + "value":"39.01" + } + }, + { + "id":"364ac303-8342-435d-aa72-08c25bea40e9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T17:25:53.210Z", + "completed":"2017-02-13T17:25:53.210Z", + "new_balance":"11977.85", + "value":"-43.79" + } + }, + { + "id":"cc852f5f-58a8-436d-a0a5-7188dfdd6fd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T01:32:33.145Z", + "completed":"2017-02-14T01:32:33.145Z", + "new_balance":"11932.22", + "value":"-45.63" + } + }, + { + "id":"af060f09-c572-44c8-9910-a578cb169d82", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T17:34:55.823Z", + "completed":"2017-02-15T17:34:55.823Z", + "new_balance":"11906.66", + "value":"-25.56" + } + }, + { + "id":"0610d21a-1ffc-41a7-a88a-bcd0cf439e51", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T19:47:05.809Z", + "completed":"2017-02-28T19:47:05.809Z", + "new_balance":"11873.13", + "value":"-33.53" + } + }, + { + "id":"f928d077-bf70-4d09-87ae-c40e915fee1a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T05:38:45.742Z", + "completed":"2017-03-01T05:38:45.742Z", + "new_balance":"11738.65", + "value":"-134.48" + } + }, + { + "id":"b968b847-b553-461a-92a1-6f161b2f200c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T09:18:05.610Z", + "completed":"2017-03-01T09:18:05.610Z", + "new_balance":"11708.77", + "value":"-29.88" + } + }, + { + "id":"3187f1dc-b8fa-4531-b995-9ea010de27d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T11:45:08.444Z", + "completed":"2017-03-01T11:45:08.444Z", + "new_balance":"13389.18", + "value":"1680.41" + } + }, + { + "id":"c84dd5ff-c52d-41ec-a265-c15f359b4f73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T12:14:31.903Z", + "completed":"2017-03-01T12:14:31.903Z", + "new_balance":"13354.75", + "value":"-34.43" + } + }, + { + "id":"3e387acd-d9e7-4a10-9307-4b16717741d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T14:25:16.676Z", + "completed":"2017-03-01T14:25:16.676Z", + "new_balance":"13301.57", + "value":"-53.18" + } + }, + { + "id":"f707ee8b-b5c2-41c5-9de7-cd9f0c836c96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T19:23:05.243Z", + "completed":"2017-03-01T19:23:05.243Z", + "new_balance":"12791.03", + "value":"-510.54" + } + }, + { + "id":"ccfc43b6-6753-43af-8165-49fc974234ee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T19:30:01.332Z", + "completed":"2017-03-02T19:30:01.332Z", + "new_balance":"12704.47", + "value":"-86.56" + } + }, + { + "id":"4938c75c-47a3-42e7-8773-f1db67fb324a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T01:48:55.901Z", + "completed":"2017-03-04T01:48:55.901Z", + "new_balance":"12623.26", + "value":"-81.21" + } + }, + { + "id":"434dff29-07fb-41a8-a562-b9bcd9e05d44", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T02:59:24.615Z", + "completed":"2017-03-04T02:59:24.615Z", + "new_balance":"12592.45", + "value":"-30.81" + } + }, + { + "id":"146af177-471b-40fc-94e4-f6a910185ecb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T17:30:24.264Z", + "completed":"2017-03-04T17:30:24.264Z", + "new_balance":"12585.98", + "value":"-6.47" + } + }, + { + "id":"0c4ac343-640c-4eb9-bac8-373df50a6a9e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T18:26:10.770Z", + "completed":"2017-03-04T18:26:10.770Z", + "new_balance":"12575.45", + "value":"-10.53" + } + }, + { + "id":"889089d6-8ff1-436e-a7b5-cd709ab2fc5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T01:54:40.724Z", + "completed":"2017-03-05T01:54:40.724Z", + "new_balance":"12534.22", + "value":"-41.23" + } + }, + { + "id":"7fc0656d-9d22-4f97-ab65-6a24e9de5dc2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T20:11:03.701Z", + "completed":"2017-03-05T20:11:03.701Z", + "new_balance":"12529.45", + "value":"-4.77" + } + }, + { + "id":"7f20391d-f1cc-4639-afe4-744223a2adfd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:29:23.396Z", + "completed":"2017-03-06T03:29:23.396Z", + "new_balance":"12445.65", + "value":"-83.80" + } + }, + { + "id":"a5350c83-69c4-4c84-8380-90fcf566c060", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T08:48:30.082Z", + "completed":"2017-03-06T08:48:30.082Z", + "new_balance":"12364.44", + "value":"-81.21" + } + }, + { + "id":"222e0e31-7191-41a7-8e9d-0a5719099104", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T04:30:47.170Z", + "completed":"2017-03-07T04:30:47.170Z", + "new_balance":"12322.10", + "value":"-42.34" + } + }, + { + "id":"66d7cc76-190b-424c-b87d-be7412e61977", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T04:07:47.377Z", + "completed":"2017-03-08T04:07:47.377Z", + "new_balance":"12238.30", + "value":"-83.80" + } + }, + { + "id":"9d199692-f2db-4b34-8ae8-6906710d5ef3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T20:05:41.932Z", + "completed":"2017-03-09T20:05:41.932Z", + "new_balance":"12234.72", + "value":"-3.58" + } + }, + { + "id":"01778ab1-6fdc-4a45-a9a6-b0eb761e7fbd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T15:29:30.742Z", + "completed":"2017-03-10T15:29:30.742Z", + "new_balance":"12143.25", + "value":"-91.47" + } + }, + { + "id":"0da01fc4-722f-4045-bd50-4739f1557eb6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:35:39.462Z", + "completed":"2017-03-11T19:35:39.462Z", + "new_balance":"12135.97", + "value":"-7.28" + } + }, + { + "id":"08be6dee-3f36-4c11-b475-94cc94e3e0dc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T00:41:21.869Z", + "completed":"2017-03-12T00:41:21.869Z", + "new_balance":"12108.67", + "value":"-27.30" + } + }, + { + "id":"a2337665-6ce2-4526-9800-51b96179ca2d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T16:49:58.658Z", + "completed":"2017-03-12T16:49:58.658Z", + "new_balance":"12095.43", + "value":"-13.24" + } + }, + { + "id":"9be5d404-96fb-4853-b569-b65d8703e6ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T23:58:26.196Z", + "completed":"2017-03-13T23:58:26.196Z", + "new_balance":"12049.42", + "value":"-46.01" + } + }, + { + "id":"8be824c6-2b9a-4dc7-b6cb-2a9a130e8318", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T15:51:30.605Z", + "completed":"2017-03-14T15:51:30.605Z", + "new_balance":"12042.43", + "value":"-6.99" + } + }, + { + "id":"3ed38bde-4e48-4d6f-b868-f4fa6abb4db1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T01:18:49.665Z", + "completed":"2017-03-16T01:18:49.665Z", + "new_balance":"11961.02", + "value":"-81.41" + } + }, + { + "id":"6bb1bb7d-df4e-4965-9ab6-446e2de77453", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T07:55:56.569Z", + "completed":"2017-03-16T07:55:56.569Z", + "new_balance":"11914.22", + "value":"-46.80" + } + }, + { + "id":"5c21d6c2-2167-4f58-bd2a-5281ca5b3570", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T07:25:43.091Z", + "completed":"2017-03-18T07:25:43.091Z", + "new_balance":"11907.23", + "value":"-6.99" + } + }, + { + "id":"88d6514f-c2e1-4500-81b2-05225d3e79a2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T01:49:09.348Z", + "completed":"2017-03-19T01:49:09.348Z", + "new_balance":"11870.28", + "value":"-36.95" + } + }, + { + "id":"ee355a68-b006-4aee-b58d-549ec7869176", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T04:07:31.626Z", + "completed":"2017-03-19T04:07:31.626Z", + "new_balance":"11819.27", + "value":"-51.01" + } + }, + { + "id":"4ad9b49e-e7b0-4106-baf1-e15ea91dec1e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T18:03:03.745Z", + "completed":"2017-03-19T18:03:03.745Z", + "new_balance":"11785.36", + "value":"-33.91" + } + }, + { + "id":"1b4fe281-7133-48d9-a1dd-a140522e0f08", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T19:26:43.807Z", + "completed":"2017-03-20T19:26:43.807Z", + "new_balance":"11726.46", + "value":"-58.90" + } + }, + { + "id":"2e7ccbff-7696-4ae3-b149-b1c27b9a2d0f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T23:25:11.399Z", + "completed":"2017-03-20T23:25:11.399Z", + "new_balance":"11652.95", + "value":"-73.51" + } + }, + { + "id":"fe96b8fa-ab43-4d3c-a9e5-0a63c19215f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T10:29:58.366Z", + "completed":"2017-03-21T10:29:58.366Z", + "new_balance":"11647.07", + "value":"-5.88" + } + }, + { + "id":"26f40732-751f-4c56-9ac7-78e189a7543e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T23:40:54.919Z", + "completed":"2017-03-21T23:40:54.919Z", + "new_balance":"11640.60", + "value":"-6.47" + } + }, + { + "id":"3ffce944-113c-4612-9cfa-84cf192305dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T14:49:47.364Z", + "completed":"2017-03-23T14:49:47.364Z", + "new_balance":"11629.37", + "value":"-11.23" + } + }, + { + "id":"ac9be25f-c917-4c96-80e3-a4f1348eeaf9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T15:06:44.512Z", + "completed":"2017-03-23T15:06:44.512Z", + "new_balance":"11583.86", + "value":"-45.51" + } + }, + { + "id":"ab051664-13ea-4099-9e8f-74c1394ed7d1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T14:38:43.104Z", + "completed":"2017-03-24T14:38:43.104Z", + "new_balance":"11555.00", + "value":"-28.86" + } + }, + { + "id":"e1884c18-4ae5-47a8-bc99-ba5d1d622244", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T00:26:24.572Z", + "completed":"2017-03-25T00:26:24.572Z", + "new_balance":"11520.97", + "value":"-34.03" + } + }, + { + "id":"214b4280-7c5b-4dba-9f2c-df6e9c4582ca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T08:41:25.181Z", + "completed":"2017-03-25T08:41:25.181Z", + "new_balance":"11504.89", + "value":"-16.08" + } + }, + { + "id":"8d009695-4ec9-41a1-8bda-729f5a83ad63", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T10:10:22.616Z", + "completed":"2017-03-27T10:10:22.616Z", + "new_balance":"11315.62", + "value":"-189.27" + } + }, + { + "id":"f73cb57f-367a-451d-9ca7-e1fad8a5cb4c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T00:45:35.167Z", + "completed":"2017-03-28T00:45:35.167Z", + "new_balance":"11288.65", + "value":"-26.97" + } + }, + { + "id":"05fa5027-b1ce-4a57-9334-c864869747d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:55:37.887Z", + "completed":"2017-04-01T00:55:37.887Z", + "new_balance":"11154.17", + "value":"-134.48" + } + }, + { + "id":"4bde1733-1805-43ea-9d71-274991e89d9b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T14:58:33.243Z", + "completed":"2017-04-01T14:58:33.243Z", + "new_balance":"11100.99", + "value":"-53.18" + } + }, + { + "id":"9fe4769a-1702-40ea-b511-940ce520ab5a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T18:50:55.862Z", + "completed":"2017-04-01T18:50:55.862Z", + "new_balance":"11071.11", + "value":"-29.88" + } + }, + { + "id":"8e55b69d-575c-416c-836c-78a3da4f35fd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T20:33:01.640Z", + "completed":"2017-04-01T20:33:01.640Z", + "new_balance":"10560.57", + "value":"-510.54" + } + }, + { + "id":"03839656-d38b-4b43-90dc-f007aeddbe9d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T08:19:49.791Z", + "completed":"2017-04-02T08:19:49.791Z", + "new_balance":"10474.01", + "value":"-86.56" + } + }, + { + "id":"3e496d79-ea35-47e4-aeed-2476dc7ec090", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T16:11:35.009Z", + "completed":"2017-04-02T16:11:35.009Z", + "new_balance":"10402.02", + "value":"-71.99" + } + }, + { + "id":"fac4643b-b362-4e41-80e7-ac2386fae18c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T03:00:21.818Z", + "completed":"2017-04-03T03:00:21.818Z", + "new_balance":"10364.83", + "value":"-37.19" + } + }, + { + "id":"b3b8a19b-0de3-4046-947a-8f8003aebd36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T12:45:19.404Z", + "completed":"2017-04-03T12:45:19.404Z", + "new_balance":"10327.64", + "value":"-37.19" + } + }, + { + "id":"03b4ff84-992b-4bd9-9c14-c32bf7e9ddd7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T13:27:20.497Z", + "completed":"2017-04-03T13:27:20.497Z", + "new_balance":"10292.86", + "value":"-34.78" + } + }, + { + "id":"ef3a2611-8c38-4be0-9dc0-fd7d0936c937", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T15:03:20.933Z", + "completed":"2017-04-03T15:03:20.933Z", + "new_balance":"10415.06", + "value":"122.20" + } + }, + { + "id":"d53ae311-111c-47ac-a745-92604f099098", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:42:23.282Z", + "completed":"2017-04-03T23:42:23.282Z", + "new_balance":"10487.89", + "value":"72.83" + } + }, + { + "id":"60dfc5b2-a783-4078-bc1c-96388123ffdb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T13:45:34.605Z", + "completed":"2017-04-04T13:45:34.605Z", + "new_balance":"10413.96", + "value":"-73.93" + } + }, + { + "id":"3d0f25aa-ea22-4c88-a77f-63b20d5ab8be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T03:28:51.199Z", + "completed":"2017-04-05T03:28:51.199Z", + "new_balance":"10386.51", + "value":"-27.45" + } + }, + { + "id":"10a14d7f-138d-4ee1-9788-a096c6524f50", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T14:07:02.893Z", + "completed":"2017-04-05T14:07:02.893Z", + "new_balance":"10382.92", + "value":"-3.59" + } + }, + { + "id":"4501b562-69a8-4762-ab2b-c82defaf532b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T08:39:00.956Z", + "completed":"2017-04-07T08:39:00.956Z", + "new_balance":"10368.10", + "value":"-14.82" + } + }, + { + "id":"02edbcdc-a724-4815-ae1a-13d9835e09d3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T22:23:07.995Z", + "completed":"2017-04-07T22:23:07.995Z", + "new_balance":"10336.81", + "value":"-31.29" + } + }, + { + "id":"072887cb-58de-4c22-8d41-ca28a264521e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T03:37:26.191Z", + "completed":"2017-04-08T03:37:26.191Z", + "new_balance":"10329.65", + "value":"-7.16" + } + }, + { + "id":"50d6a4d7-ed53-44bc-a6aa-9b2ba03d8269", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T02:35:45.007Z", + "completed":"2017-04-09T02:35:45.007Z", + "new_balance":"10307.40", + "value":"-22.25" + } + }, + { + "id":"b4ef98af-b9fe-414b-a9cf-4645c559706b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T08:51:09.122Z", + "completed":"2017-04-09T08:51:09.122Z", + "new_balance":"10300.69", + "value":"-6.71" + } + }, + { + "id":"d4406b0b-7b8d-4508-9832-f33d3744496b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T13:11:50.897Z", + "completed":"2017-04-09T13:11:50.897Z", + "new_balance":"10111.42", + "value":"-189.27" + } + }, + { + "id":"460a84cc-e14e-491c-adaa-027047a223fe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:56:34.366Z", + "completed":"2017-04-10T14:56:34.366Z", + "new_balance":"10066.18", + "value":"-45.24" + } + }, + { + "id":"868c6b62-f881-4865-a4b6-ff3e348a7137", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T07:17:48.604Z", + "completed":"2017-04-17T07:17:48.604Z", + "new_balance":"10056.48", + "value":"-9.70" + } + }, + { + "id":"813a08e5-1174-4ef8-8c7e-93c56729a39c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T09:09:45.416Z", + "completed":"2017-04-18T09:09:45.416Z", + "new_balance":"10024.20", + "value":"-32.28" + } + }, + { + "id":"30128438-93e9-4b11-803b-9abf7898fc4a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T12:54:46.556Z", + "completed":"2017-04-25T12:54:46.556Z", + "new_balance":"9981.68", + "value":"-42.52" + } + }, + { + "id":"430fbb3e-8e1b-4f3f-abb8-fc3beea43fac", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T12:01:04.616Z", + "completed":"2017-04-26T12:01:04.616Z", + "new_balance":"9974.97", + "value":"-6.71" + } + }, + { + "id":"a119bc4b-d56a-4bd6-b6cc-59eea6ede708", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T22:43:17.566Z", + "completed":"2017-04-26T22:43:17.566Z", + "new_balance":"9911.40", + "value":"-63.57" + } + }, + { + "id":"2f2db333-b196-4380-9718-dec2aba9d697", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T02:03:18.641Z", + "completed":"2017-05-02T02:03:18.641Z", + "new_balance":"9776.92", + "value":"-134.48" + } + }, + { + "id":"7c7f2864-16a6-44c7-b1cc-79e4e2788a20", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T02:25:48.396Z", + "completed":"2017-05-02T02:25:48.396Z", + "new_balance":"9690.36", + "value":"-86.56" + } + }, + { + "id":"473a94dd-6106-4e93-b348-c345ab4e99c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T07:48:46.338Z", + "completed":"2017-05-02T07:48:46.338Z", + "new_balance":"9660.48", + "value":"-29.88" + } + }, + { + "id":"3593bde1-cee8-418c-8708-306c181c9e2b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T08:20:57.221Z", + "completed":"2017-05-02T08:20:57.221Z", + "new_balance":"9607.30", + "value":"-53.18" + } + }, + { + "id":"c467e773-1284-4d78-b2dd-726951955666", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T14:12:11.301Z", + "completed":"2017-05-02T14:12:11.301Z", + "new_balance":"9572.87", + "value":"-34.43" + } + }, + { + "id":"35f672d7-2514-4b2a-8f7a-1f11ca76d853", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T15:12:45.734Z", + "completed":"2017-05-02T15:12:45.734Z", + "new_balance":"11253.28", + "value":"1680.41" + } + }, + { + "id":"b2e97f13-0a4b-4fc2-8964-d1fa7d29c10b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T16:25:55.646Z", + "completed":"2017-05-02T16:25:55.646Z", + "new_balance":"10742.74", + "value":"-510.54" + } + }, + { + "id":"44e4b0c3-1492-44b7-9b5c-9ce599f73fd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T19:23:52.500Z", + "completed":"2017-05-02T19:23:52.500Z", + "new_balance":"10726.81", + "value":"-15.93" + } + }, + { + "id":"f9427361-8cc6-45b6-81dd-d45a9176f769", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T01:05:30.379Z", + "completed":"2017-05-03T01:05:30.379Z", + "new_balance":"10712.17", + "value":"-14.64" + } + }, + { + "id":"d272c0b4-b0b8-4f94-ad5a-7fddf2819526", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T21:31:26.688Z", + "completed":"2017-05-03T21:31:26.688Z", + "new_balance":"10688.80", + "value":"-23.37" + } + }, + { + "id":"726e45a1-ef35-4ba6-94cf-1d163d896cd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T09:29:03.400Z", + "completed":"2017-05-04T09:29:03.400Z", + "new_balance":"10663.00", + "value":"-25.80" + } + }, + { + "id":"a6e5c897-1ffc-49c1-8e3b-84a19104c93b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T18:58:35.855Z", + "completed":"2017-05-04T18:58:35.855Z", + "new_balance":"10634.99", + "value":"-28.01" + } + }, + { + "id":"ec4e3a86-2a64-44f0-b86c-91df97f7f71f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T12:44:47.530Z", + "completed":"2017-05-05T12:44:47.530Z", + "new_balance":"10561.06", + "value":"-73.93" + } + }, + { + "id":"b0626668-c037-4f6d-95e5-2fdb2b646152", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T12:27:01.949Z", + "completed":"2017-05-07T12:27:01.949Z", + "new_balance":"10533.21", + "value":"-27.85" + } + }, + { + "id":"c360cacf-e0f5-4e16-93ad-5ad4dc87fc4e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T19:40:12.341Z", + "completed":"2017-05-07T19:40:12.341Z", + "new_balance":"10529.12", + "value":"-4.09" + } + }, + { + "id":"cfe1c0c0-7966-42d9-91a8-8f41d4c29bb5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T16:02:34.018Z", + "completed":"2017-05-12T16:02:34.018Z", + "new_balance":"10508.02", + "value":"-21.10" + } + }, + { + "id":"af65e617-b4ff-4a92-9978-cbb9eb131f06", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T19:22:49.828Z", + "completed":"2017-05-12T19:22:49.828Z", + "new_balance":"10459.32", + "value":"-48.70" + } + }, + { + "id":"827f74b5-56d4-4db0-bf72-4301ee5dff89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T00:19:35.670Z", + "completed":"2017-05-14T00:19:35.670Z", + "new_balance":"10414.15", + "value":"-45.17" + } + }, + { + "id":"97a1a3f9-f52d-4647-b533-afd0dea6377d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T12:12:07.415Z", + "completed":"2017-05-16T12:12:07.415Z", + "new_balance":"10408.38", + "value":"-5.77" + } + }, + { + "id":"d3cdbc67-80cd-49cf-9030-07582ab60127", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T20:12:36.573Z", + "completed":"2017-05-18T20:12:36.573Z", + "new_balance":"10399.86", + "value":"-8.52" + } + }, + { + "id":"3498e20b-94c9-4ea5-b293-fa747bc93bf0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T03:09:56.096Z", + "completed":"2017-05-20T03:09:56.096Z", + "new_balance":"10438.87", + "value":"39.01" + } + }, + { + "id":"ebc232ae-a614-4566-bd35-6a42583c20f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T06:06:11.113Z", + "completed":"2017-05-21T06:06:11.113Z", + "new_balance":"10395.08", + "value":"-43.79" + } + }, + { + "id":"463e8a0c-c8a8-4f64-bbe7-7bd92043a238", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T13:44:01.511Z", + "completed":"2017-05-21T13:44:01.511Z", + "new_balance":"10349.45", + "value":"-45.63" + } + }, + { + "id":"0230611f-15f4-47f7-85d2-bc9a5ef501a2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T11:07:00.923Z", + "completed":"2017-05-27T11:07:00.923Z", + "new_balance":"10323.89", + "value":"-25.56" + } + }, + { + "id":"8a00b225-dc8a-4440-8fa1-3279b668319d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T17:19:40.637Z", + "completed":"2017-05-27T17:19:40.637Z", + "new_balance":"10290.36", + "value":"-33.53" + } + }, + { + "id":"66fc2771-3dae-471c-a77a-bf67c1a32e70", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:42:54.400Z", + "completed":"2017-06-01T02:42:54.400Z", + "new_balance":"10155.88", + "value":"-134.48" + } + }, + { + "id":"5e204ad2-e6a8-4ded-a30c-e3d2a539e509", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T10:28:45.890Z", + "completed":"2017-06-01T10:28:45.890Z", + "new_balance":"10102.70", + "value":"-53.18" + } + }, + { + "id":"bc5e6126-e449-42f9-b6ec-4181fc8bf888", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T10:46:21.566Z", + "completed":"2017-06-01T10:46:21.566Z", + "new_balance":"11783.11", + "value":"1680.41" + } + }, + { + "id":"538b4f61-289a-4edc-bdf7-a235ef978f04", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T11:17:31.310Z", + "completed":"2017-06-01T11:17:31.310Z", + "new_balance":"11753.23", + "value":"-29.88" + } + }, + { + "id":"ad75219e-d53d-40fb-8f73-592efa214010", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T16:22:38.740Z", + "completed":"2017-06-01T16:22:38.740Z", + "new_balance":"11242.69", + "value":"-510.54" + } + }, + { + "id":"6945e260-2a18-492c-8dd7-5923fe291e6d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T16:32:48.092Z", + "completed":"2017-06-01T16:32:48.092Z", + "new_balance":"11208.26", + "value":"-34.43" + } + }, + { + "id":"c9b2390c-dede-4bc1-85e9-acc233aec1c6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T09:10:56.161Z", + "completed":"2017-06-04T09:10:56.161Z", + "new_balance":"11076.42", + "value":"-131.84" + } + }, + { + "id":"372f0ebf-3498-4f06-9f9d-66bd389027be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T23:03:27.682Z", + "completed":"2017-06-04T23:03:27.682Z", + "new_balance":"10989.86", + "value":"-86.56" + } + }, + { + "id":"186c39f8-3343-4fe2-b083-b05e002df166", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T01:01:30.751Z", + "completed":"2017-06-11T01:01:30.751Z", + "new_balance":"10959.05", + "value":"-30.81" + } + }, + { + "id":"3dcee76b-984e-4734-acbc-92129c9c42f5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T21:28:28.566Z", + "completed":"2017-06-12T21:28:28.566Z", + "new_balance":"10948.52", + "value":"-10.53" + } + }, + { + "id":"c1a02231-baf3-41c3-b6f1-05e4080b5aa6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T12:08:54.985Z", + "completed":"2017-06-13T12:08:54.985Z", + "new_balance":"10942.05", + "value":"-6.47" + } + }, + { + "id":"569dd706-0e3e-4838-89fb-592234f175ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T23:14:57.642Z", + "completed":"2017-06-13T23:14:57.642Z", + "new_balance":"10860.84", + "value":"-81.21" + } + }, + { + "id":"04247455-556c-4c92-8d6d-26d23e7be93f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T22:38:18.147Z", + "completed":"2017-06-16T22:38:18.147Z", + "new_balance":"10819.61", + "value":"-41.23" + } + }, + { + "id":"dc2f8eca-fbac-4f0d-bd60-7e7974427863", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T03:37:08.939Z", + "completed":"2017-06-17T03:37:08.939Z", + "new_balance":"10814.84", + "value":"-4.77" + } + }, + { + "id":"6fd71a9e-697e-4497-80ca-cd7d99f633b9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T15:37:53.295Z", + "completed":"2017-06-17T15:37:53.295Z", + "new_balance":"10733.63", + "value":"-81.21" + } + }, + { + "id":"37eed87a-e654-44ee-b9da-d156fc883ec8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T08:05:31.340Z", + "completed":"2017-06-18T08:05:31.340Z", + "new_balance":"10649.83", + "value":"-83.80" + } + }, + { + "id":"356e5186-54b2-44c8-9f27-77695b7b9e65", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T11:23:02.752Z", + "completed":"2017-06-19T11:23:02.752Z", + "new_balance":"10566.03", + "value":"-83.80" + } + }, + { + "id":"bc442e08-532c-4190-9bcb-d436037f3055", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T13:07:13.958Z", + "completed":"2017-06-19T13:07:13.958Z", + "new_balance":"10523.69", + "value":"-42.34" + } + }, + { + "id":"8f266a2e-824d-4a01-ab78-2b52a956913e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T03:32:24.442Z", + "completed":"2017-06-21T03:32:24.442Z", + "new_balance":"10520.11", + "value":"-3.58" + } + }, + { + "id":"37f96aa1-c6c9-451b-8ec8-a7be75cffc49", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T11:01:14.334Z", + "completed":"2017-06-21T11:01:14.334Z", + "new_balance":"10428.64", + "value":"-91.47" + } + }, + { + "id":"e7a9632d-a686-4e6d-a62e-d2881247c619", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T01:32:29.700Z", + "completed":"2017-06-23T01:32:29.700Z", + "new_balance":"10401.34", + "value":"-27.30" + } + }, + { + "id":"fbd738d2-f4b5-4db6-bc07-cc47a2195d62", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T14:25:42.988Z", + "completed":"2017-06-23T14:25:42.988Z", + "new_balance":"10394.06", + "value":"-7.28" + } + }, + { + "id":"57fbfd9f-c531-407e-81ff-f823bfe0dae7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T13:13:07.533Z", + "completed":"2017-06-24T13:13:07.533Z", + "new_balance":"10348.05", + "value":"-46.01" + } + }, + { + "id":"66521cc7-426c-4bb7-a160-8965b8379ed2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T22:49:14.143Z", + "completed":"2017-06-24T22:49:14.143Z", + "new_balance":"10334.81", + "value":"-13.24" + } + }, + { + "id":"34d4f83f-8b57-4bf2-b661-ec5000ca5592", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:39:31.818Z", + "completed":"2017-06-28T01:39:31.818Z", + "new_balance":"10253.40", + "value":"-81.41" + } + }, + { + "id":"9edb875f-0e18-4ab7-9a1b-8f33f0aa8217", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T10:45:09.775Z", + "completed":"2017-06-28T10:45:09.775Z", + "new_balance":"10206.60", + "value":"-46.80" + } + }, + { + "id":"735df767-1910-47fd-8ba5-b8698a8c238b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T14:36:30.616Z", + "completed":"2017-06-28T14:36:30.616Z", + "new_balance":"10199.61", + "value":"-6.99" + } + }, + { + "id":"1a19e348-f258-4550-a05a-382cd6379df1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T23:51:49.214Z", + "completed":"2017-06-28T23:51:49.214Z", + "new_balance":"10192.62", + "value":"-6.99" + } + }, + { + "id":"682c3436-3b81-467f-ab1c-aefe9f18510f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T01:00:52.250Z", + "completed":"2017-06-29T01:00:52.250Z", + "new_balance":"10158.71", + "value":"-33.91" + } + }, + { + "id":"0b02ca30-6ece-4c38-8541-19e96caa48aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T09:00:06.501Z", + "completed":"2017-06-29T09:00:06.501Z", + "new_balance":"10099.81", + "value":"-58.90" + } + }, + { + "id":"29f10a48-a668-4020-998b-e83f1d4e0392", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T15:59:06.179Z", + "completed":"2017-06-29T15:59:06.179Z", + "new_balance":"10026.30", + "value":"-73.51" + } + }, + { + "id":"46225ef2-ae01-4a09-a66e-8530c0f57196", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T16:52:45.142Z", + "completed":"2017-06-29T16:52:45.142Z", + "new_balance":"9975.29", + "value":"-51.01" + } + }, + { + "id":"fca3d5e9-0e95-49d4-acf4-259427a280a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T19:19:17.752Z", + "completed":"2017-06-29T19:19:17.752Z", + "new_balance":"9968.82", + "value":"-6.47" + } + }, + { + "id":"e7268b1f-4496-4410-a30a-e6936c6b56a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:16:15.995Z", + "completed":"2017-06-29T21:16:15.995Z", + "new_balance":"9931.87", + "value":"-36.95" + } + }, + { + "id":"7aa45af0-1b08-4992-9651-0375bdf90303", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T05:24:06.969Z", + "completed":"2017-06-30T05:24:06.969Z", + "new_balance":"9925.99", + "value":"-5.88" + } + }, + { + "id":"0dc26211-97fd-4361-82f2-5abfa5615f18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T07:18:13.404Z", + "completed":"2017-06-30T07:18:13.404Z", + "new_balance":"9914.76", + "value":"-11.23" + } + }, + { + "id":"b6fcfc61-8fd7-442f-9684-1655296ef438", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T11:38:09.803Z", + "completed":"2017-06-30T11:38:09.803Z", + "new_balance":"9885.90", + "value":"-28.86" + } + }, + { + "id":"d48fffff-ecf8-4081-b2fa-7663e79f6adf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T23:08:20.666Z", + "completed":"2017-06-30T23:08:20.666Z", + "new_balance":"9840.39", + "value":"-45.51" + } + }, + { + "id":"8417ba81-f334-4a43-8f4e-2e5784ad801e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T03:49:29.984Z", + "completed":"2017-07-01T03:49:29.984Z", + "new_balance":"9810.51", + "value":"-29.88" + } + }, + { + "id":"f98dc514-debe-4f5a-ab9a-c94468911d71", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T04:05:58.778Z", + "completed":"2017-07-01T04:05:58.778Z", + "new_balance":"9794.43", + "value":"-16.08" + } + }, + { + "id":"f98a2371-38ce-4e14-8505-c6ce46c85d23", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T04:48:52.400Z", + "completed":"2017-07-01T04:48:52.400Z", + "new_balance":"9760.00", + "value":"-34.43" + } + }, + { + "id":"adf6079a-ca18-4f46-a654-c96c0b834340", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T06:22:20.571Z", + "completed":"2017-07-01T06:22:20.571Z", + "new_balance":"9625.52", + "value":"-134.48" + } + }, + { + "id":"3d996a34-fdcf-4ca0-8e82-30af212037a8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T06:25:27.450Z", + "completed":"2017-07-01T06:25:27.450Z", + "new_balance":"9114.98", + "value":"-510.54" + } + }, + { + "id":"7b7b2dc5-1525-43e1-9262-a52f828be068", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T09:07:12.196Z", + "completed":"2017-07-01T09:07:12.196Z", + "new_balance":"9080.55", + "value":"-34.43" + } + }, + { + "id":"4df54661-0c0c-4e9e-a86b-fe6102e35feb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:21:34.090Z", + "completed":"2017-07-01T13:21:34.090Z", + "new_balance":"9027.37", + "value":"-53.18" + } + }, + { + "id":"18d5d493-5866-41b6-8810-0f51a6e5a46d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T15:41:19.924Z", + "completed":"2017-07-01T15:41:19.924Z", + "new_balance":"8838.10", + "value":"-189.27" + } + }, + { + "id":"4844a13a-49bd-4934-97f7-0d7af9782d8f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T16:29:44.148Z", + "completed":"2017-07-01T16:29:44.148Z", + "new_balance":"8804.07", + "value":"-34.03" + } + }, + { + "id":"eb79e1da-077a-4d98-b25a-359fd7c854c8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T22:27:21.545Z", + "completed":"2017-07-01T22:27:21.545Z", + "new_balance":"8777.10", + "value":"-26.97" + } + }, + { + "id":"4c98def9-a5f9-43fd-8b31-7f323cfb530f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T05:22:13.322Z", + "completed":"2017-07-02T05:22:13.322Z", + "new_balance":"8690.54", + "value":"-86.56" + } + }, + { + "id":"11cae818-c6ff-45fa-92c7-7baad594a472", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T01:09:49.827Z", + "completed":"2017-07-03T01:09:49.827Z", + "new_balance":"8595.11", + "value":"-95.43" + } + }, + { + "id":"25ddc5e1-b8a7-434a-961e-d37e6db86e17", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T13:48:25.642Z", + "completed":"2017-07-04T13:48:25.642Z", + "new_balance":"8579.33", + "value":"-15.78" + } + }, + { + "id":"2e02c6a2-be11-4789-8467-41c3a0eead56", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T02:47:13.264Z", + "completed":"2017-07-05T02:47:13.264Z", + "new_balance":"8507.24", + "value":"-72.09" + } + }, + { + "id":"24013dbc-6df0-4c15-b7cf-4bb76dd675e4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T02:54:58.177Z", + "completed":"2017-07-05T02:54:58.177Z", + "new_balance":"8433.31", + "value":"-73.93" + } + }, + { + "id":"3e43cf3b-91b8-480e-86b3-6cf3d7902cb5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T01:00:29.201Z", + "completed":"2017-07-06T01:00:29.201Z", + "new_balance":"8429.72", + "value":"-3.59" + } + }, + { + "id":"5be4c91d-1d87-4a82-98a8-1a6fae05466d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T00:02:02.923Z", + "completed":"2017-07-11T00:02:02.923Z", + "new_balance":"8402.27", + "value":"-27.45" + } + }, + { + "id":"69284e0c-4231-4250-b37e-29f13a963d6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:00:54.875Z", + "completed":"2017-07-12T10:00:54.875Z", + "new_balance":"8370.98", + "value":"-31.29" + } + }, + { + "id":"d962ade9-efc0-45d4-a798-10c150f864c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T20:18:44.304Z", + "completed":"2017-07-14T20:18:44.304Z", + "new_balance":"8356.16", + "value":"-14.82" + } + }, + { + "id":"25064d52-79e2-4f39-b5d3-3f85668d2bad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T17:47:49.428Z", + "completed":"2017-07-16T17:47:49.428Z", + "new_balance":"8349.00", + "value":"-7.16" + } + }, + { + "id":"2ccda017-6131-4ee3-9e47-543be1d9e0e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T11:44:25.584Z", + "completed":"2017-07-18T11:44:25.584Z", + "new_balance":"8326.75", + "value":"-22.25" + } + }, + { + "id":"d35f93df-a9ba-4a40-ac37-edeff7b8c227", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T05:33:07.558Z", + "completed":"2017-07-20T05:33:07.558Z", + "new_balance":"8137.48", + "value":"-189.27" + } + }, + { + "id":"1b45e2b1-a13a-4e4d-8137-80ccc3d5a30c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T06:37:24.124Z", + "completed":"2017-07-20T06:37:24.124Z", + "new_balance":"8130.77", + "value":"-6.71" + } + }, + { + "id":"72209919-8b05-4308-b73f-1b484f81056a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T07:52:18.872Z", + "completed":"2017-07-24T07:52:18.872Z", + "new_balance":"8085.53", + "value":"-45.24" + } + }, + { + "id":"df0e4bbf-1c63-4ff4-8662-9eea4c4e2b74", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T14:41:12.352Z", + "completed":"2017-07-24T14:41:12.352Z", + "new_balance":"8075.83", + "value":"-9.70" + } + }, + { + "id":"d22ccca7-0289-41b0-9219-021ac6760f71", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T16:49:53.555Z", + "completed":"2017-07-25T16:49:53.555Z", + "new_balance":"8043.55", + "value":"-32.28" + } + }, + { + "id":"04b6af88-7bc3-465c-bb22-ad718ea65e18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T21:09:15.702Z", + "completed":"2017-07-25T21:09:15.702Z", + "new_balance":"8001.03", + "value":"-42.52" + } + }, + { + "id":"aa6b8804-0160-452c-800e-cae36eecc7c4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T09:48:08.080Z", + "completed":"2017-07-26T09:48:08.080Z", + "new_balance":"7937.46", + "value":"-63.57" + } + }, + { + "id":"0d2aab24-173f-494a-b926-7bdec90a9501", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T08:37:13.717Z", + "completed":"2017-07-27T08:37:13.717Z", + "new_balance":"7930.75", + "value":"-6.71" + } + }, + { + "id":"40231373-3eca-4142-85e5-bf2f71f99ad9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T04:02:19.243Z", + "completed":"2017-08-01T04:02:19.243Z", + "new_balance":"7900.87", + "value":"-29.88" + } + }, + { + "id":"da57354d-89f4-411b-974f-0f09929461df", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T05:05:57.723Z", + "completed":"2017-08-01T05:05:57.723Z", + "new_balance":"7847.69", + "value":"-53.18" + } + }, + { + "id":"3fb518a3-e820-469e-9383-8d29b2e1f829", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T13:22:19.625Z", + "completed":"2017-08-01T13:22:19.625Z", + "new_balance":"7813.26", + "value":"-34.43" + } + }, + { + "id":"cff1d433-4670-4d8c-9640-27934926ae39", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T19:09:34.803Z", + "completed":"2017-08-01T19:09:34.803Z", + "new_balance":"7678.78", + "value":"-134.48" + } + }, + { + "id":"63219231-5394-4d83-9ddb-d1a27fe3f7c2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T20:58:10.039Z", + "completed":"2017-08-01T20:58:10.039Z", + "new_balance":"9359.19", + "value":"1680.41" + } + }, + { + "id":"bfb9d7a8-bcda-4287-8a3e-c69b7e69ccbd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T23:43:14.356Z", + "completed":"2017-08-01T23:43:14.356Z", + "new_balance":"8848.65", + "value":"-510.54" + } + }, + { + "id":"452b612d-22d2-40ed-9502-6702e50e8518", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T03:50:52.359Z", + "completed":"2017-08-02T03:50:52.359Z", + "new_balance":"8762.09", + "value":"-86.56" + } + }, + { + "id":"1dc70092-4470-4a61-87db-1e6a8a0f0ae5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T09:38:14.459Z", + "completed":"2017-08-03T09:38:14.459Z", + "new_balance":"8758.50", + "value":"-3.59" + } + }, + { + "id":"ad0e7d51-44ef-42bf-a995-f4ea30b8964d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T22:30:18.569Z", + "completed":"2017-08-04T22:30:18.569Z", + "new_balance":"8723.95", + "value":"-34.55" + } + }, + { + "id":"68b9f857-876d-477c-a4ca-328cce9f9dea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T12:54:53.065Z", + "completed":"2017-08-07T12:54:53.065Z", + "new_balance":"8700.58", + "value":"-23.37" + } + }, + { + "id":"14624990-ad78-401d-819e-1ef8bd85ba5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T09:45:53.870Z", + "completed":"2017-08-09T09:45:53.870Z", + "new_balance":"8672.57", + "value":"-28.01" + } + }, + { + "id":"4f9479db-bd8c-45c0-a0d4-fe93d4fe1c96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T22:29:18.655Z", + "completed":"2017-08-09T22:29:18.655Z", + "new_balance":"8646.77", + "value":"-25.80" + } + }, + { + "id":"0892cfea-5306-4c31-b960-2f5486884285", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T05:25:23.440Z", + "completed":"2017-08-10T05:25:23.440Z", + "new_balance":"8572.84", + "value":"-73.93" + } + }, + { + "id":"df54aa42-ac9d-47cf-b88e-d172767b648d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T05:53:51.048Z", + "completed":"2017-08-14T05:53:51.048Z", + "new_balance":"8568.75", + "value":"-4.09" + } + }, + { + "id":"1513eb48-a6f2-42cd-ab64-665a92940f2c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T13:39:41.350Z", + "completed":"2017-08-15T13:39:41.350Z", + "new_balance":"8540.90", + "value":"-27.85" + } + }, + { + "id":"e98b540f-9089-47a6-9c84-56c2ab5760f2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T15:29:19.600Z", + "completed":"2017-08-15T15:29:19.600Z", + "new_balance":"8504.97", + "value":"-35.93" + } + }, + { + "id":"bc8eb42b-ea32-4101-90b5-14cb9a95118d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T13:04:54.520Z", + "completed":"2017-08-16T13:04:54.520Z", + "new_balance":"8456.27", + "value":"-48.70" + } + }, + { + "id":"5bc03d77-bbe2-4fa8-bb92-248309d057a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T12:28:21.116Z", + "completed":"2017-08-17T12:28:21.116Z", + "new_balance":"8411.10", + "value":"-45.17" + } + }, + { + "id":"15eec1be-63b7-40c5-9492-30d206302f3c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T07:25:28.001Z", + "completed":"2017-08-20T07:25:28.001Z", + "new_balance":"8402.58", + "value":"-8.52" + } + }, + { + "id":"71d3b626-a26e-4abd-969e-074684baff01", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T09:26:52.432Z", + "completed":"2017-08-20T09:26:52.432Z", + "new_balance":"8396.81", + "value":"-5.77" + } + }, + { + "id":"6e7b4dc3-f1d5-44f0-a4e2-65104d933ee0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T06:55:26.488Z", + "completed":"2017-08-22T06:55:26.488Z", + "new_balance":"8435.82", + "value":"39.01" + } + }, + { + "id":"facd86d9-e5ed-46a2-9b9e-0c39e9b8955a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T16:43:03.773Z", + "completed":"2017-08-23T16:43:03.773Z", + "new_balance":"8392.03", + "value":"-43.79" + } + }, + { + "id":"3f30707d-45dd-4251-b624-c62c5c90e6c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T19:26:36.569Z", + "completed":"2017-08-23T19:26:36.569Z", + "new_balance":"8346.40", + "value":"-45.63" + } + }, + { + "id":"2a3a800b-46a8-4d63-aabe-7e1965f88c99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T07:50:00.072Z", + "completed":"2017-08-28T07:50:00.072Z", + "new_balance":"8320.84", + "value":"-25.56" + } + }, + { + "id":"062df237-27b9-4ef0-a261-1113d5bc40ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T13:06:55.880Z", + "completed":"2017-08-28T13:06:55.880Z", + "new_balance":"8287.31", + "value":"-33.53" + } + }, + { + "id":"0df0ff24-e888-4153-b533-e18511c53ea3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T09:29:34.105Z", + "completed":"2017-09-01T09:29:34.105Z", + "new_balance":"8257.43", + "value":"-29.88" + } + }, + { + "id":"93913ce0-b2e8-4a66-9181-cb0cc3664cff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T10:59:11.708Z", + "completed":"2017-09-01T10:59:11.708Z", + "new_balance":"8223.00", + "value":"-34.43" + } + }, + { + "id":"1dd7fbb1-f572-470a-bb6d-f88bbbb25d6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:56:20.834Z", + "completed":"2017-09-01T15:56:20.834Z", + "new_balance":"8169.82", + "value":"-53.18" + } + }, + { + "id":"f3a4ba6b-2236-4ea8-990f-bbdd18c2fd31", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:31:40.733Z", + "completed":"2017-09-01T17:31:40.733Z", + "new_balance":"9850.23", + "value":"1680.41" + } + }, + { + "id":"c84be7ca-c088-40d7-91fb-bd2bab97624e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:49:02.374Z", + "completed":"2017-09-01T21:49:02.374Z", + "new_balance":"9715.75", + "value":"-134.48" + } + }, + { + "id":"b0599048-c90d-443f-a0e1-ac199198fc79", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T22:01:19.885Z", + "completed":"2017-09-01T22:01:19.885Z", + "new_balance":"9205.21", + "value":"-510.54" + } + }, + { + "id":"09f73843-567e-4c35-8651-4218bb9ae573", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T12:27:03.231Z", + "completed":"2017-09-02T12:27:03.231Z", + "new_balance":"9118.65", + "value":"-86.56" + } + }, + { + "id":"1a2786c8-298e-4a3f-923b-ca12ee6c7e18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T10:19:18.454Z", + "completed":"2017-09-04T10:19:18.454Z", + "new_balance":"9112.18", + "value":"-6.47" + } + }, + { + "id":"8153b5cc-5ec7-4dcb-8b78-d4291ed9c82e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T19:04:10.083Z", + "completed":"2017-09-04T19:04:10.083Z", + "new_balance":"9030.97", + "value":"-81.21" + } + }, + { + "id":"97670ddf-056b-4226-ba21-76a8ebcb0463", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T20:03:00.305Z", + "completed":"2017-09-04T20:03:00.305Z", + "new_balance":"9000.16", + "value":"-30.81" + } + }, + { + "id":"7e70f1e1-a3f8-40b8-92cf-b7731165cec6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T22:33:22.029Z", + "completed":"2017-09-04T22:33:22.029Z", + "new_balance":"8989.63", + "value":"-10.53" + } + }, + { + "id":"65ad668f-4246-4e78-b1de-7b22aef50504", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T11:06:12.345Z", + "completed":"2017-09-05T11:06:12.345Z", + "new_balance":"8984.86", + "value":"-4.77" + } + }, + { + "id":"4c4899dc-8457-4e74-8196-c1f3c3371fb6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T22:15:27.117Z", + "completed":"2017-09-05T22:15:27.117Z", + "new_balance":"8943.63", + "value":"-41.23" + } + }, + { + "id":"c591b85f-2a58-4a94-bad7-3116b3f2d3d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T06:20:32.280Z", + "completed":"2017-09-06T06:20:32.280Z", + "new_balance":"8859.83", + "value":"-83.80" + } + }, + { + "id":"352ec12e-11a3-46e7-8b8e-12bdabbee3be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T08:59:32.586Z", + "completed":"2017-09-06T08:59:32.586Z", + "new_balance":"8778.62", + "value":"-81.21" + } + }, + { + "id":"931c9ffb-aede-4f46-957f-647a5b333fec", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T05:18:06.685Z", + "completed":"2017-09-08T05:18:06.685Z", + "new_balance":"8736.28", + "value":"-42.34" + } + }, + { + "id":"d8f355dc-00dc-4a6f-93d9-5fb45d519366", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T07:31:18.066Z", + "completed":"2017-09-08T07:31:18.066Z", + "new_balance":"8652.48", + "value":"-83.80" + } + }, + { + "id":"ffdaa054-b45f-4fab-9497-2079eb3aa7e8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T16:07:27.773Z", + "completed":"2017-09-10T16:07:27.773Z", + "new_balance":"8648.90", + "value":"-3.58" + } + }, + { + "id":"6e7f0bd8-0600-4e99-8d3c-76c4109b927f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T20:56:51.838Z", + "completed":"2017-09-10T20:56:51.838Z", + "new_balance":"8557.43", + "value":"-91.47" + } + }, + { + "id":"13fc538a-5eba-4de1-ba81-621ee7cd7e3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T14:57:53.856Z", + "completed":"2017-09-11T14:57:53.856Z", + "new_balance":"8550.15", + "value":"-7.28" + } + }, + { + "id":"e3286f4e-e620-491e-b04d-e9fbc7a755ea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T05:30:27.993Z", + "completed":"2017-09-12T05:30:27.993Z", + "new_balance":"8522.85", + "value":"-27.30" + } + }, + { + "id":"c39676f4-4fcc-4a42-b07c-912da8eb4db0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T09:24:01.231Z", + "completed":"2017-09-12T09:24:01.231Z", + "new_balance":"8509.61", + "value":"-13.24" + } + }, + { + "id":"283cf3ce-3c2c-4cea-8575-b97ff19490d9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T03:56:17.216Z", + "completed":"2017-09-13T03:56:17.216Z", + "new_balance":"8463.60", + "value":"-46.01" + } + }, + { + "id":"b1ae40a4-7c0c-4b2d-b8a7-c272c4028ff1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T20:40:25.789Z", + "completed":"2017-09-16T20:40:25.789Z", + "new_balance":"8456.61", + "value":"-6.99" + } + }, + { + "id":"64416764-cc77-48f1-88f4-77ff77374b3b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T08:59:23.125Z", + "completed":"2017-09-17T08:59:23.125Z", + "new_balance":"8375.20", + "value":"-81.41" + } + }, + { + "id":"339b2d11-2914-4ef4-a4f3-91cca3e556ea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T09:50:23.414Z", + "completed":"2017-09-17T09:50:23.414Z", + "new_balance":"8328.40", + "value":"-46.80" + } + }, + { + "id":"2df3db79-0384-4145-8728-40b349055984", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T20:54:31.653Z", + "completed":"2017-09-18T20:54:31.653Z", + "new_balance":"8321.41", + "value":"-6.99" + } + }, + { + "id":"6e6a06c7-486a-4a1f-b280-8e49496eeeca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:13:00.285Z", + "completed":"2017-09-19T20:13:00.285Z", + "new_balance":"8287.50", + "value":"-33.91" + } + }, + { + "id":"3fd1f6c1-188a-4a2e-8fab-99b3b8b14e17", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:34:18.808Z", + "completed":"2017-09-19T20:34:18.808Z", + "new_balance":"8236.49", + "value":"-51.01" + } + }, + { + "id":"124f3931-7416-446b-861c-7110bd9db11d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T23:38:51.917Z", + "completed":"2017-09-19T23:38:51.917Z", + "new_balance":"8199.54", + "value":"-36.95" + } + }, + { + "id":"906944d7-60c6-415e-aacd-ab242b04f220", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T02:09:44.531Z", + "completed":"2017-09-20T02:09:44.531Z", + "new_balance":"8126.03", + "value":"-73.51" + } + }, + { + "id":"acaac925-e5be-485a-abd4-6564a55b8437", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T15:49:48.218Z", + "completed":"2017-09-20T15:49:48.218Z", + "new_balance":"8067.13", + "value":"-58.90" + } + }, + { + "id":"8f290b4f-601f-40bc-a007-ff8a4caeef89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T03:05:51.689Z", + "completed":"2017-09-21T03:05:51.689Z", + "new_balance":"8061.25", + "value":"-5.88" + } + }, + { + "id":"1ad51c31-4566-4b50-a7bf-eac4ed3cf127", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T18:14:37.877Z", + "completed":"2017-09-21T18:14:37.877Z", + "new_balance":"8054.78", + "value":"-6.47" + } + }, + { + "id":"a64e6ec1-9bc0-4563-8de1-42c4f2eba77e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T17:20:10.223Z", + "completed":"2017-09-23T17:20:10.223Z", + "new_balance":"8043.55", + "value":"-11.23" + } + }, + { + "id":"59c91cfe-d1a7-407b-9c56-a650023345bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T20:18:56.169Z", + "completed":"2017-09-23T20:18:56.169Z", + "new_balance":"7998.04", + "value":"-45.51" + } + }, + { + "id":"d357d716-5fa8-475b-b217-f77dff6df308", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T19:37:32.753Z", + "completed":"2017-09-24T19:37:32.753Z", + "new_balance":"7969.18", + "value":"-28.86" + } + }, + { + "id":"b792026a-0ea9-4cb1-83ab-9e92e77a5718", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T06:23:22.994Z", + "completed":"2017-09-25T06:23:22.994Z", + "new_balance":"7935.15", + "value":"-34.03" + } + }, + { + "id":"20d95e85-2baa-4d74-9651-42a5ffca94d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T10:17:46.012Z", + "completed":"2017-09-25T10:17:46.012Z", + "new_balance":"7919.07", + "value":"-16.08" + } + }, + { + "id":"b3bed43d-bc5a-4ee2-891e-4d4db19c9e3f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T23:25:23.221Z", + "completed":"2017-09-27T23:25:23.221Z", + "new_balance":"7729.80", + "value":"-189.27" + } + }, + { + "id":"de36430a-5f29-4f75-b5b5-4864b89afd82", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T16:14:17.644Z", + "completed":"2017-09-29T16:14:17.644Z", + "new_balance":"7702.83", + "value":"-26.97" + } + }, + { + "id":"f94bbdc5-c4e1-4f5e-b582-2a27d54de823", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T00:21:11.711Z", + "completed":"2017-10-01T00:21:11.711Z", + "new_balance":"7672.95", + "value":"-29.88" + } + }, + { + "id":"c17ff975-1e82-41e1-aa80-bc3ff0ca4a2d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T04:13:42.898Z", + "completed":"2017-10-01T04:13:42.898Z", + "new_balance":"7619.77", + "value":"-53.18" + } + }, + { + "id":"5450c121-2aa7-4f62-9333-4ff59d97c325", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T10:51:00.559Z", + "completed":"2017-10-01T10:51:00.559Z", + "new_balance":"7485.29", + "value":"-134.48" + } + }, + { + "id":"a302237a-6b24-405d-a12a-589d16ee9ddb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T17:38:12.907Z", + "completed":"2017-10-01T17:38:12.907Z", + "new_balance":"6974.75", + "value":"-510.54" + } + }, + { + "id":"be0dcda3-53a6-4b76-a6d3-2de9a794365c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T11:05:21.699Z", + "completed":"2017-10-02T11:05:21.699Z", + "new_balance":"6888.19", + "value":"-86.56" + } + }, + { + "id":"70321c02-478d-4306-886a-6aed9651255f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T16:24:18.894Z", + "completed":"2017-10-02T16:24:18.894Z", + "new_balance":"6816.20", + "value":"-71.99" + } + }, + { + "id":"68e88f29-07b0-40b9-b1ff-19f952273d58", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T01:19:24.412Z", + "completed":"2017-10-03T01:19:24.412Z", + "new_balance":"6652.72", + "value":"-163.48" + } + }, + { + "id":"434def86-1cb1-4fba-a8a4-9680a22a5942", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T13:12:17.199Z", + "completed":"2017-10-03T13:12:17.199Z", + "new_balance":"6617.94", + "value":"-34.78" + } + }, + { + "id":"56db1147-c29b-4735-b482-361539b526d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T14:42:51.945Z", + "completed":"2017-10-03T14:42:51.945Z", + "new_balance":"5886.09", + "value":"-731.85" + } + }, + { + "id":"005b2f61-00e9-4e55-9fad-0293856aae3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T15:50:45.126Z", + "completed":"2017-10-03T15:50:45.126Z", + "new_balance":"5696.82", + "value":"-189.27" + } + }, + { + "id":"105d508d-e099-4f5d-a867-055cd519bae6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T23:44:42.007Z", + "completed":"2017-10-03T23:44:42.007Z", + "new_balance":"5659.63", + "value":"-37.19" + } + }, + { + "id":"6fdc72b4-697b-4ace-b914-6ca12df64373", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T06:38:46.686Z", + "completed":"2017-10-04T06:38:46.686Z", + "new_balance":"5585.70", + "value":"-73.93" + } + }, + { + "id":"c592e9cd-4d68-4f26-8ffc-b5e8c0a54246", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T05:17:03.576Z", + "completed":"2017-10-05T05:17:03.576Z", + "new_balance":"5582.11", + "value":"-3.59" + } + }, + { + "id":"8ab1f4f4-a679-47d4-bb57-24084ab91e33", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T20:19:38.826Z", + "completed":"2017-10-05T20:19:38.826Z", + "new_balance":"5554.66", + "value":"-27.45" + } + }, + { + "id":"536ff016-f06e-49a7-a97a-a6fb7c3915f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T17:15:00.358Z", + "completed":"2017-10-07T17:15:00.358Z", + "new_balance":"5539.84", + "value":"-14.82" + } + }, + { + "id":"97f5acc3-b04f-4c79-8a2f-7a201df1c489", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T21:59:28.627Z", + "completed":"2017-10-07T21:59:28.627Z", + "new_balance":"5508.55", + "value":"-31.29" + } + }, + { + "id":"b85bcff0-2a73-4493-8de5-c60db5094dfe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T04:04:11.278Z", + "completed":"2017-10-08T04:04:11.278Z", + "new_balance":"5501.39", + "value":"-7.16" + } + }, + { + "id":"98051584-74f3-428c-b6f5-ca275a39a183", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T03:16:35.255Z", + "completed":"2017-10-09T03:16:35.255Z", + "new_balance":"5312.12", + "value":"-189.27" + } + }, + { + "id":"65738bc1-2c5c-41c9-afbc-831b30ad85d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T21:35:52.041Z", + "completed":"2017-10-09T21:35:52.041Z", + "new_balance":"5305.41", + "value":"-6.71" + } + }, + { + "id":"79238128-4607-41db-b8ba-0677046610e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T22:46:08.953Z", + "completed":"2017-10-09T22:46:08.953Z", + "new_balance":"5283.16", + "value":"-22.25" + } + }, + { + "id":"c63d18df-ce53-4ccc-802e-0c2f87f25ea9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T15:04:44.763Z", + "completed":"2017-10-10T15:04:44.763Z", + "new_balance":"5237.92", + "value":"-45.24" + } + }, + { + "id":"8ec5736b-38dd-461f-aaf2-59ccd125ba18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T05:50:32.918Z", + "completed":"2017-10-17T05:50:32.918Z", + "new_balance":"5228.22", + "value":"-9.70" + } + }, + { + "id":"bd974eea-b82f-407b-81e3-667329603192", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T20:49:38.098Z", + "completed":"2017-10-18T20:49:38.098Z", + "new_balance":"5195.94", + "value":"-32.28" + } + }, + { + "id":"eb9449f4-0f20-4c1d-b13c-a14d78c60c47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T12:04:58.872Z", + "completed":"2017-10-25T12:04:58.872Z", + "new_balance":"5153.42", + "value":"-42.52" + } + }, + { + "id":"9b8f97e0-f928-41c9-8435-757db71a70c4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T07:32:40.380Z", + "completed":"2017-10-26T07:32:40.380Z", + "new_balance":"5146.71", + "value":"-6.71" + } + }, + { + "id":"110815c4-fdc8-410d-a1d3-cb194e76363b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T16:34:33.474Z", + "completed":"2017-10-26T16:34:33.474Z", + "new_balance":"5083.14", + "value":"-63.57" + } + }, + { + "id":"3a684ba0-d5c4-40e4-aa01-ce97aa96dad3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T03:30:59.562Z", + "completed":"2017-11-02T03:30:59.562Z", + "new_balance":"5029.96", + "value":"-53.18" + } + }, + { + "id":"b3d3e123-2057-415c-aa11-10f5f2b115ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T04:10:06.823Z", + "completed":"2017-11-02T04:10:06.823Z", + "new_balance":"4895.48", + "value":"-134.48" + } + }, + { + "id":"cd9bf234-00f8-43f7-b730-38ee07f99001", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T10:39:52.193Z", + "completed":"2017-11-02T10:39:52.193Z", + "new_balance":"4865.60", + "value":"-29.88" + } + }, + { + "id":"3285112b-e255-43fb-91d8-02f0b9e6bbea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T11:24:51.566Z", + "completed":"2017-11-02T11:24:51.566Z", + "new_balance":"4849.67", + "value":"-15.93" + } + }, + { + "id":"de0669e8-2557-4a73-82cd-7482bbc02daa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T14:31:27.327Z", + "completed":"2017-11-02T14:31:27.327Z", + "new_balance":"4339.13", + "value":"-510.54" + } + }, + { + "id":"e82a56e9-6a85-40fd-89c7-2c5ff6563971", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T17:45:16.584Z", + "completed":"2017-11-02T17:45:16.584Z", + "new_balance":"4304.70", + "value":"-34.43" + } + }, + { + "id":"7566b569-43e7-419f-bf66-c4faeefebbc4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T20:59:27.880Z", + "completed":"2017-11-02T20:59:27.880Z", + "new_balance":"4218.14", + "value":"-86.56" + } + }, + { + "id":"5141e421-1ac7-4e40-ba2f-fd92830f6c8d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T21:00:24.471Z", + "completed":"2017-11-02T21:00:24.471Z", + "new_balance":"5898.55", + "value":"1680.41" + } + }, + { + "id":"d9ffa365-22fa-4b7f-a460-80e08d788ef5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T21:42:23.923Z", + "completed":"2017-11-06T21:42:23.923Z", + "new_balance":"5883.91", + "value":"-14.64" + } + }, + { + "id":"5b54ba5c-1903-428b-a100-3a33dad9aaff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T17:47:07.607Z", + "completed":"2017-11-07T17:47:07.607Z", + "new_balance":"5855.90", + "value":"-28.01" + } + }, + { + "id":"39d32950-f113-4566-b9a3-5e681c965189", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T17:49:55.303Z", + "completed":"2017-11-07T17:49:55.303Z", + "new_balance":"5832.53", + "value":"-23.37" + } + }, + { + "id":"8f9ded2f-725b-47fd-892a-86eeff07b762", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T22:47:59.365Z", + "completed":"2017-11-07T22:47:59.365Z", + "new_balance":"5806.73", + "value":"-25.80" + } + }, + { + "id":"c7e3163f-0f4e-4d75-bb3e-347ad187100e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T03:06:56.903Z", + "completed":"2017-11-09T03:06:56.903Z", + "new_balance":"5732.80", + "value":"-73.93" + } + }, + { + "id":"56a717f1-2041-4504-b956-ded5fc5604d0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T04:52:34.225Z", + "completed":"2017-11-09T04:52:34.225Z", + "new_balance":"5728.71", + "value":"-4.09" + } + }, + { + "id":"1fb120d3-ac71-468f-b365-7b70dc7320c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T10:34:18.964Z", + "completed":"2017-11-12T10:34:18.964Z", + "new_balance":"5707.61", + "value":"-21.10" + } + }, + { + "id":"89653f8f-3aeb-4ae5-9110-20aae3ebafee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T23:59:30.785Z", + "completed":"2017-11-12T23:59:30.785Z", + "new_balance":"5679.76", + "value":"-27.85" + } + }, + { + "id":"c003d646-9f3f-48d6-a201-6a13439041eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T09:53:15.597Z", + "completed":"2017-11-14T09:53:15.597Z", + "new_balance":"5631.06", + "value":"-48.70" + } + }, + { + "id":"7ec83884-d06b-49c8-b9fa-0d0d89ea7f69", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T20:58:03.791Z", + "completed":"2017-11-14T20:58:03.791Z", + "new_balance":"5585.89", + "value":"-45.17" + } + }, + { + "id":"7c47e1af-249a-41d1-894e-37a37cd4cb39", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T04:56:16.272Z", + "completed":"2017-11-16T04:56:16.272Z", + "new_balance":"5580.12", + "value":"-5.77" + } + }, + { + "id":"50c7f4fa-e5b2-4cde-8968-f6c59309397c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T02:37:20.074Z", + "completed":"2017-11-18T02:37:20.074Z", + "new_balance":"5571.60", + "value":"-8.52" + } + }, + { + "id":"f861b236-36a2-4278-a95b-e594539ed394", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T03:57:30.389Z", + "completed":"2017-11-20T03:57:30.389Z", + "new_balance":"5610.61", + "value":"39.01" + } + }, + { + "id":"9cbd35c4-d5f8-45cf-a582-a4aa774e67a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T08:44:41.527Z", + "completed":"2017-11-21T08:44:41.527Z", + "new_balance":"5564.98", + "value":"-45.63" + } + }, + { + "id":"5a2fa7f2-0f88-485a-bbb5-c0351f156a89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T09:54:24.653Z", + "completed":"2017-11-21T09:54:24.653Z", + "new_balance":"5521.19", + "value":"-43.79" + } + }, + { + "id":"28c77569-fcd3-46eb-9518-16d06da3487c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T01:57:45.302Z", + "completed":"2017-11-27T01:57:45.302Z", + "new_balance":"5487.66", + "value":"-33.53" + } + }, + { + "id":"dbbf826e-5533-4257-961b-350f961f2e36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T17:37:01.189Z", + "completed":"2017-11-27T17:37:01.189Z", + "new_balance":"5462.10", + "value":"-25.56" + } + }, + { + "id":"b7bd0028-7de5-4d31-8014-be2125672680", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T01:20:41.223Z", + "completed":"2017-12-01T01:20:41.223Z", + "new_balance":"7142.51", + "value":"1680.41" + } + }, + { + "id":"af80ec57-14e8-4683-838d-04724e7eee3c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:51:07.447Z", + "completed":"2017-12-01T01:51:07.447Z", + "new_balance":"6631.97", + "value":"-510.54" + } + }, + { + "id":"67006b2f-ecd3-4027-a67f-33d4745a1742", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T06:07:26.194Z", + "completed":"2017-12-01T06:07:26.194Z", + "new_balance":"6602.09", + "value":"-29.88" + } + }, + { + "id":"fa6f86c8-b6ab-47b3-b690-18ed0aefac08", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T13:56:14.716Z", + "completed":"2017-12-01T13:56:14.716Z", + "new_balance":"6467.61", + "value":"-134.48" + } + }, + { + "id":"3def4260-0ef3-4a60-ae1d-3fef4cc2c9e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T19:20:40.825Z", + "completed":"2017-12-01T19:20:40.825Z", + "new_balance":"6433.18", + "value":"-34.43" + } + }, + { + "id":"4e269d1f-9fb0-4d34-bc11-f9060511eb96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T23:24:27.947Z", + "completed":"2017-12-01T23:24:27.947Z", + "new_balance":"6380.00", + "value":"-53.18" + } + }, + { + "id":"f61d9d6c-9677-4e74-a790-f5da16c1b421", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T04:06:19.065Z", + "completed":"2017-12-04T04:06:19.065Z", + "new_balance":"6248.16", + "value":"-131.84" + } + }, + { + "id":"b0893b95-3266-4512-9bca-6796d0bbd7c1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T22:31:23.928Z", + "completed":"2017-12-04T22:31:23.928Z", + "new_balance":"6161.60", + "value":"-86.56" + } + }, + { + "id":"b17ce4be-3553-4582-a7ff-b06fba7a1439", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T03:59:02.893Z", + "completed":"2017-12-12T03:59:02.893Z", + "new_balance":"6151.07", + "value":"-10.53" + } + }, + { + "id":"cc92ab2f-0c3a-44fb-a31c-546104d8235c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T15:04:06.488Z", + "completed":"2017-12-12T15:04:06.488Z", + "new_balance":"6120.26", + "value":"-30.81" + } + }, + { + "id":"7ad7f8a7-797d-41e8-9e16-93a9505e2693", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T03:18:21.747Z", + "completed":"2017-12-13T03:18:21.747Z", + "new_balance":"6113.79", + "value":"-6.47" + } + }, + { + "id":"2cdb6de1-532f-4a82-bb0c-94aa24845a21", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T07:21:20.423Z", + "completed":"2017-12-13T07:21:20.423Z", + "new_balance":"6032.58", + "value":"-81.21" + } + }, + { + "id":"9403828e-48ea-4fb7-b97a-3553e1366fdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T07:22:56.352Z", + "completed":"2017-12-16T07:22:56.352Z", + "new_balance":"5991.35", + "value":"-41.23" + } + }, + { + "id":"82ce4d06-0ea3-443b-bcb3-a45fe367e1d0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T10:16:01.441Z", + "completed":"2017-12-18T10:16:01.441Z", + "new_balance":"5986.58", + "value":"-4.77" + } + }, + { + "id":"69f41ee4-f214-4c21-9d0d-5419fb7d8e97", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:46:08.275Z", + "completed":"2017-12-19T00:46:08.275Z", + "new_balance":"5902.78", + "value":"-83.80" + } + }, + { + "id":"de464fb8-df07-4233-8832-991ada803714", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T20:59:59.571Z", + "completed":"2017-12-19T20:59:59.571Z", + "new_balance":"5821.57", + "value":"-81.21" + } + }, + { + "id":"03a688b4-0fe4-465a-a8db-3909c51c92dc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T23:35:34.888Z", + "completed":"2017-12-20T23:35:34.888Z", + "new_balance":"5779.23", + "value":"-42.34" + } + }, + { + "id":"94269177-e52e-4283-9eef-33d311a79449", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:34:46.040Z", + "completed":"2017-12-21T07:34:46.040Z", + "new_balance":"5695.43", + "value":"-83.80" + } + }, + { + "id":"ccf1813e-cad4-450c-a321-64720e6401cb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T00:03:03.068Z", + "completed":"2017-12-24T00:03:03.068Z", + "new_balance":"5603.96", + "value":"-91.47" + } + }, + { + "id":"174070bc-c7e2-4514-9f68-76421f1e3b24", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T08:14:52.101Z", + "completed":"2017-12-24T08:14:52.101Z", + "new_balance":"5557.95", + "value":"-46.01" + } + }, + { + "id":"7ce73102-0bcf-46d6-a758-e3ff74fd22dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T08:43:37.567Z", + "completed":"2017-12-24T08:43:37.567Z", + "new_balance":"5550.67", + "value":"-7.28" + } + }, + { + "id":"734d8312-7677-4a29-89ff-a929278e4efa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T08:52:25.607Z", + "completed":"2017-12-24T08:52:25.607Z", + "new_balance":"5537.43", + "value":"-13.24" + } + }, + { + "id":"57cc3791-ae86-4374-ae52-1bc5e2ceb61b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T15:18:44.151Z", + "completed":"2017-12-24T15:18:44.151Z", + "new_balance":"5533.85", + "value":"-3.58" + } + }, + { + "id":"6e630825-c9e4-42f1-a8c0-fc8c10994fb3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:24:27.799Z", + "completed":"2017-12-24T23:24:27.799Z", + "new_balance":"5506.55", + "value":"-27.30" + } + }, + { + "id":"3be24b06-1ca0-4aa6-bf18-f754323818fb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T04:26:20.722Z", + "completed":"2017-12-28T04:26:20.722Z", + "new_balance":"5425.14", + "value":"-81.41" + } + }, + { + "id":"e5ae45aa-8804-4304-acf5-627a8af532d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T09:55:16.536Z", + "completed":"2017-12-28T09:55:16.536Z", + "new_balance":"5378.34", + "value":"-46.80" + } + }, + { + "id":"1a8ee33b-b1da-4e38-bbaa-ad2b0bd042aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T12:10:49.342Z", + "completed":"2017-12-28T12:10:49.342Z", + "new_balance":"5371.35", + "value":"-6.99" + } + }, + { + "id":"d9732f2d-b792-4341-8c6c-fbfa9ce26b3b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T15:40:37.824Z", + "completed":"2017-12-28T15:40:37.824Z", + "new_balance":"5364.36", + "value":"-6.99" + } + }, + { + "id":"12ba8c8b-cb44-4978-a63b-3e8d4c5450d1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T01:42:35.112Z", + "completed":"2017-12-29T01:42:35.112Z", + "new_balance":"5330.45", + "value":"-33.91" + } + }, + { + "id":"26049b3e-f648-471b-a1df-e1bb1d936f84", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T07:48:40.807Z", + "completed":"2017-12-29T07:48:40.807Z", + "new_balance":"5279.44", + "value":"-51.01" + } + }, + { + "id":"a946a9a7-c2b0-487a-ae54-255ecde77618", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T15:22:25.888Z", + "completed":"2017-12-29T15:22:25.888Z", + "new_balance":"5220.54", + "value":"-58.90" + } + }, + { + "id":"002d81d8-7698-4fa3-baa3-8c849269baf0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T17:21:36.881Z", + "completed":"2017-12-29T17:21:36.881Z", + "new_balance":"5214.07", + "value":"-6.47" + } + }, + { + "id":"14c62ac0-ad38-47f0-bb64-8086ce0fc3a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T19:08:29.763Z", + "completed":"2017-12-29T19:08:29.763Z", + "new_balance":"5140.56", + "value":"-73.51" + } + }, + { + "id":"1b428a04-8a66-4e0e-8851-ac4af4815c32", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T23:49:40.664Z", + "completed":"2017-12-29T23:49:40.664Z", + "new_balance":"5103.61", + "value":"-36.95" + } + }, + { + "id":"009138c2-9114-4b75-beb2-a8d2c53592b4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T05:00:23.486Z", + "completed":"2017-12-30T05:00:23.486Z", + "new_balance":"5097.73", + "value":"-5.88" + } + }, + { + "id":"06319fcd-0dae-4dc8-91e1-a14ee784d9a7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T09:42:59.403Z", + "completed":"2017-12-30T09:42:59.403Z", + "new_balance":"5052.22", + "value":"-45.51" + } + }, + { + "id":"3b123092-d45c-4f67-8a90-0a8c378a8131", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T14:53:39.494Z", + "completed":"2017-12-30T14:53:39.494Z", + "new_balance":"5040.99", + "value":"-11.23" + } + }, + { + "id":"0abc7a77-c448-43eb-a811-d8bbe02b9ab5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T22:20:36.355Z", + "completed":"2017-12-30T22:20:36.355Z", + "new_balance":"5012.13", + "value":"-28.86" + } + }, + { + "id":"fed9bbc3-550d-4c47-9970-60fb23a3b2d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T00:47:52.917Z", + "completed":"2017-12-31T00:47:52.917Z", + "new_balance":"4978.10", + "value":"-34.03" + } + }, + { + "id":"38c55c9d-17fa-4687-a790-8e352a8ff774", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T06:41:27.713Z", + "completed":"2017-12-31T06:41:27.713Z", + "new_balance":"4962.02", + "value":"-16.08" + } + }, + { + "id":"9aad9c2e-d83c-4fd9-9a6e-f24929313639", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T14:35:09.395Z", + "completed":"2017-12-31T14:35:09.395Z", + "new_balance":"4935.05", + "value":"-26.97" + } + }, + { + "id":"132a7960-5162-42e5-9ea1-3895e0c1f240", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T19:19:58.793Z", + "completed":"2017-12-31T19:19:58.793Z", + "new_balance":"4745.78", + "value":"-189.27" + } + }, + { + "id":"031c5be7-1dab-4060-a19d-68bea54e59f4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T09:18:12.721Z", + "completed":"2016-03-02T09:18:12.721Z", + "new_balance":"15818.17", + "value":"-28.87" + } + }, + { + "id":"0cff89b9-9e0b-48cf-b86f-2e20c2ff2291", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T19:24:47.347Z", + "completed":"2016-03-02T19:24:47.347Z", + "new_balance":"15699.85", + "value":"-118.32" + } + }, + { + "id":"b3d9538b-01f8-4c67-9a69-31de0dda32aa", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T05:45:41.270Z", + "completed":"2016-03-03T05:45:41.270Z", + "new_balance":"15692.66", + "value":"-7.19" + } + }, + { + "id":"b3c05646-59e9-4aac-8d65-f639303f9c5f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T07:12:42.830Z", + "completed":"2016-03-03T07:12:42.830Z", + "new_balance":"15242.95", + "value":"-449.71" + } + }, + { + "id":"17b800f7-5e3d-4a8c-89d0-20a592457ebb", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T03:08:59.912Z", + "completed":"2016-03-04T03:08:59.912Z", + "new_balance":"15235.85", + "value":"-7.10" + } + }, + { + "id":"a0fc524c-7d08-445b-b6d3-187d1835d53b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T06:17:25.029Z", + "completed":"2016-03-04T06:17:25.029Z", + "new_balance":"15203.64", + "value":"-32.21" + } + }, + { + "id":"17ddc92d-41e0-46fa-b1e2-48d153429fda", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:35:40.244Z", + "completed":"2016-03-07T01:35:40.244Z", + "new_balance":"15198.49", + "value":"-5.15" + } + }, + { + "id":"8d16e729-0d16-46ab-af8c-f84d3e0285d5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T02:48:43.159Z", + "completed":"2016-03-09T02:48:43.159Z", + "new_balance":"15080.17", + "value":"-118.32" + } + }, + { + "id":"9301b974-808c-49a0-991e-ccd06f86a86f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T15:42:56.776Z", + "completed":"2016-03-16T15:42:56.776Z", + "new_balance":"14995.25", + "value":"-84.92" + } + }, + { + "id":"344ab480-7291-421f-8b2a-131deda3cf5b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T23:20:34.815Z", + "completed":"2016-03-25T23:20:34.815Z", + "new_balance":"14910.33", + "value":"-84.92" + } + }, + { + "id":"17a95cae-522c-41ec-8c6f-8e9da9bd72b4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T05:24:38.795Z", + "completed":"2016-03-30T05:24:38.795Z", + "new_balance":"14632.85", + "value":"-277.48" + } + }, + { + "id":"f1c2eaf8-d2be-4f47-8e6e-e77d1e2bea37", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T16:09:05.252Z", + "completed":"2016-06-07T16:09:05.252Z", + "new_balance":"14514.53", + "value":"-118.32" + } + }, + { + "id":"9672df75-3000-40fa-8528-c81f7a793559", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T22:10:10.466Z", + "completed":"2016-06-07T22:10:10.466Z", + "new_balance":"14485.66", + "value":"-28.87" + } + }, + { + "id":"adf38339-8e97-49fa-b266-5b063cd42b7e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T23:09:38.024Z", + "completed":"2016-06-07T23:09:38.024Z", + "new_balance":"14035.95", + "value":"-449.71" + } + }, + { + "id":"38d2f575-d28d-45d5-ba73-3eeafdc7e9b8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:30:38.640Z", + "completed":"2016-06-10T12:30:38.640Z", + "new_balance":"14028.85", + "value":"-7.10" + } + }, + { + "id":"9b806dc3-238d-4b53-b07e-450b819e702b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T05:05:48.475Z", + "completed":"2016-06-14T05:05:48.475Z", + "new_balance":"13996.64", + "value":"-32.21" + } + }, + { + "id":"2a30ffc0-75ae-4623-85e4-c867f8097864", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T15:35:44.457Z", + "completed":"2016-06-19T15:35:44.457Z", + "new_balance":"13989.45", + "value":"-7.19" + } + }, + { + "id":"9ff39fb1-db51-4032-837b-0f7b1bb44259", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T20:35:24.098Z", + "completed":"2016-06-19T20:35:24.098Z", + "new_balance":"13984.30", + "value":"-5.15" + } + }, + { + "id":"19dcc531-519b-4c39-a958-87ae8ad791a6", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T11:30:19.942Z", + "completed":"2016-06-20T11:30:19.942Z", + "new_balance":"13865.98", + "value":"-118.32" + } + }, + { + "id":"d1538256-1188-4146-a066-f1980aa80c15", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T18:18:43.048Z", + "completed":"2016-06-28T18:18:43.048Z", + "new_balance":"13781.06", + "value":"-84.92" + } + }, + { + "id":"14d04ccd-37f8-436a-a71d-83d4099c513f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T06:44:51.741Z", + "completed":"2016-07-01T06:44:51.741Z", + "new_balance":"13696.14", + "value":"-84.92" + } + }, + { + "id":"36183cf8-0030-42f3-a6c4-cd87a3d09ba1", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T23:24:20.748Z", + "completed":"2016-07-01T23:24:20.748Z", + "new_balance":"13418.66", + "value":"-277.48" + } + }, + { + "id":"1ce382a3-f869-4670-89cb-184ddbb9ed5e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T12:41:43.670Z", + "completed":"2016-09-02T12:41:43.670Z", + "new_balance":"13389.79", + "value":"-28.87" + } + }, + { + "id":"8219161b-3fbb-4828-96a0-c526daab665d", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T20:11:59.826Z", + "completed":"2016-09-02T20:11:59.826Z", + "new_balance":"13271.47", + "value":"-118.32" + } + }, + { + "id":"a7836b02-af7c-44c6-b27b-fdce4e37dfe0", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T07:16:59.910Z", + "completed":"2016-09-03T07:16:59.910Z", + "new_balance":"13267.29", + "value":"-4.18" + } + }, + { + "id":"2d531743-5902-4163-857b-522a5926b23c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T17:29:27.668Z", + "completed":"2016-09-03T17:29:27.668Z", + "new_balance":"13260.10", + "value":"-7.19" + } + }, + { + "id":"56638f0f-5d62-46c1-ab65-837368795a87", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T19:37:38.032Z", + "completed":"2016-09-03T19:37:38.032Z", + "new_balance":"12810.39", + "value":"-449.71" + } + }, + { + "id":"022e4c50-d663-4ddd-b340-5402a2486cdd", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T19:42:16.298Z", + "completed":"2016-09-04T19:42:16.298Z", + "new_balance":"12778.18", + "value":"-32.21" + } + }, + { + "id":"adba0ebb-1bee-4113-838b-ef8702785aaa", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T09:45:01.991Z", + "completed":"2016-09-07T09:45:01.991Z", + "new_balance":"12773.03", + "value":"-5.15" + } + }, + { + "id":"84e00f83-430a-4db3-b725-6924d1aba9f8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T22:04:53.222Z", + "completed":"2016-09-09T22:04:53.222Z", + "new_balance":"12654.71", + "value":"-118.32" + } + }, + { + "id":"a3aad1c2-7e6e-49f7-9c51-657407d6e698", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T05:48:57.854Z", + "completed":"2016-09-16T05:48:57.854Z", + "new_balance":"12569.79", + "value":"-84.92" + } + }, + { + "id":"88d3b92d-3f4a-46e8-addb-b7e1876231f0", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T02:07:09.884Z", + "completed":"2016-09-25T02:07:09.884Z", + "new_balance":"12484.87", + "value":"-84.92" + } + }, + { + "id":"f6e55d7c-3552-4e9e-a8a1-aacc0bc566ed", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T14:57:13.961Z", + "completed":"2016-09-30T14:57:13.961Z", + "new_balance":"12207.39", + "value":"-277.48" + } + }, + { + "id":"f1463f63-4685-478a-b5ff-462fe7200315", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T09:25:23.365Z", + "completed":"2016-12-07T09:25:23.365Z", + "new_balance":"12089.07", + "value":"-118.32" + } + }, + { + "id":"c45a46f8-25e1-4403-8853-844e499de0b7", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T12:04:10.986Z", + "completed":"2016-12-07T12:04:10.986Z", + "new_balance":"12060.20", + "value":"-28.87" + } + }, + { + "id":"489d0bb8-eda7-4851-811a-6e65a804b0b2", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T15:09:46.343Z", + "completed":"2016-12-07T15:09:46.343Z", + "new_balance":"11610.49", + "value":"-449.71" + } + }, + { + "id":"b17ab8e8-5f31-4f7a-9ddc-f55d4bebfe06", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T12:15:51.984Z", + "completed":"2016-12-11T12:15:51.984Z", + "new_balance":"11603.30", + "value":"-7.19" + } + }, + { + "id":"e7ac64e2-794e-4e3e-ab73-fd9d816ef709", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T23:05:51.903Z", + "completed":"2016-12-11T23:05:51.903Z", + "new_balance":"11596.20", + "value":"-7.10" + } + }, + { + "id":"1d95920b-f947-43d6-a427-43ad90382731", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T07:53:54.722Z", + "completed":"2016-12-14T07:53:54.722Z", + "new_balance":"11563.99", + "value":"-32.21" + } + }, + { + "id":"dad425f0-090f-4568-8d28-eff504241618", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:31:47.941Z", + "completed":"2016-12-20T17:31:47.941Z", + "new_balance":"11558.84", + "value":"-5.15" + } + }, + { + "id":"52cdf40c-6d01-4e7e-ac2c-223ad9eaee34", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T22:05:03.682Z", + "completed":"2016-12-22T22:05:03.682Z", + "new_balance":"11440.52", + "value":"-118.32" + } + }, + { + "id":"7a8d43b1-f232-4fd5-8791-e991a5488688", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T09:14:37.781Z", + "completed":"2016-12-28T09:14:37.781Z", + "new_balance":"11355.60", + "value":"-84.92" + } + }, + { + "id":"af6af2a0-0447-456b-bad9-4789b664e5b3", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T00:33:05.183Z", + "completed":"2016-12-31T00:33:05.183Z", + "new_balance":"11078.12", + "value":"-277.48" + } + }, + { + "id":"30780be7-5e88-4892-8bf3-b253cc6f96e9", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T19:11:53.115Z", + "completed":"2016-12-31T19:11:53.115Z", + "new_balance":"10993.20", + "value":"-84.92" + } + }, + { + "id":"5a29ed45-e90c-46c1-ae71-ef3a3e2da8ce", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T07:08:11.134Z", + "completed":"2017-03-02T07:08:11.134Z", + "new_balance":"10874.88", + "value":"-118.32" + } + }, + { + "id":"245d56fe-3443-441c-a4f4-914795b8e35f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T15:47:48.847Z", + "completed":"2017-03-02T15:47:48.847Z", + "new_balance":"10846.01", + "value":"-28.87" + } + }, + { + "id":"db8f901e-72cb-43a9-98ad-198c38a19266", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T01:48:03.892Z", + "completed":"2017-03-03T01:48:03.892Z", + "new_balance":"10396.30", + "value":"-449.71" + } + }, + { + "id":"aa366ee0-2851-4543-81f6-8178f65df914", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T10:08:40.093Z", + "completed":"2017-03-03T10:08:40.093Z", + "new_balance":"10389.11", + "value":"-7.19" + } + }, + { + "id":"8dbcda3c-b9d4-42a4-b127-15960f97c430", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T15:15:01.166Z", + "completed":"2017-03-04T15:15:01.166Z", + "new_balance":"10382.01", + "value":"-7.10" + } + }, + { + "id":"96c7ad1a-d869-417a-84f7-b9fb9e7e9735", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T20:46:29.508Z", + "completed":"2017-03-04T20:46:29.508Z", + "new_balance":"10349.80", + "value":"-32.21" + } + }, + { + "id":"c6bc0673-c259-4be0-b5e6-7db20e36206e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T10:26:41.098Z", + "completed":"2017-03-07T10:26:41.098Z", + "new_balance":"10344.65", + "value":"-5.15" + } + }, + { + "id":"42ab232a-8a22-4ecf-9b23-6ec4084a31a4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T00:35:44.406Z", + "completed":"2017-03-09T00:35:44.406Z", + "new_balance":"10226.33", + "value":"-118.32" + } + }, + { + "id":"8f14fe70-f327-4b55-9cce-c7fc5cec2cb6", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T23:10:53.802Z", + "completed":"2017-03-16T23:10:53.802Z", + "new_balance":"10141.41", + "value":"-84.92" + } + }, + { + "id":"da7ce53e-20cd-4935-9526-4d9fb3d6b1a8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T03:05:13.279Z", + "completed":"2017-03-25T03:05:13.279Z", + "new_balance":"10056.49", + "value":"-84.92" + } + }, + { + "id":"aea6e3fc-e82c-4be1-b8c8-0c30e30c50dc", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T01:32:18.024Z", + "completed":"2017-03-30T01:32:18.024Z", + "new_balance":"9779.01", + "value":"-277.48" + } + }, + { + "id":"9bd422e0-b726-4a14-8713-0aac8e6df884", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:24:22.787Z", + "completed":"2017-06-07T06:24:22.787Z", + "new_balance":"9750.14", + "value":"-28.87" + } + }, + { + "id":"ad84a9f7-a1c4-4a21-9502-499488367219", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T16:34:52.385Z", + "completed":"2017-06-07T16:34:52.385Z", + "new_balance":"9631.82", + "value":"-118.32" + } + }, + { + "id":"1c399f65-f9b8-44a6-8816-e4fd804c5025", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T22:47:00.539Z", + "completed":"2017-06-07T22:47:00.539Z", + "new_balance":"9182.11", + "value":"-449.71" + } + }, + { + "id":"9ec0f473-1ca9-4f48-a451-9fe466c27926", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:52:08.581Z", + "completed":"2017-06-10T02:52:08.581Z", + "new_balance":"9175.01", + "value":"-7.10" + } + }, + { + "id":"8e323d27-73ee-4ecf-a76f-530e963e8d5c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T07:13:58.245Z", + "completed":"2017-06-14T07:13:58.245Z", + "new_balance":"9142.80", + "value":"-32.21" + } + }, + { + "id":"8efeea9b-f9fe-4ae6-b9d8-73cd074ce6dd", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T23:05:58.039Z", + "completed":"2017-06-19T23:05:58.039Z", + "new_balance":"9135.61", + "value":"-7.19" + } + }, + { + "id":"ec573128-4799-4e13-9fd1-c4f2ccd34bc5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T23:43:51.655Z", + "completed":"2017-06-19T23:43:51.655Z", + "new_balance":"9130.46", + "value":"-5.15" + } + }, + { + "id":"412642d0-398d-418e-89e5-25eb968b7e01", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T22:00:05.109Z", + "completed":"2017-06-20T22:00:05.109Z", + "new_balance":"9012.14", + "value":"-118.32" + } + }, + { + "id":"49b5fb02-cac6-4c75-8748-9a6f95396bc7", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T11:00:15.203Z", + "completed":"2017-06-28T11:00:15.203Z", + "new_balance":"8927.22", + "value":"-84.92" + } + }, + { + "id":"46c37431-d083-47c2-802b-1c364e8150f5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T03:11:59.657Z", + "completed":"2017-07-01T03:11:59.657Z", + "new_balance":"8649.74", + "value":"-277.48" + } + }, + { + "id":"fe7ece83-e51c-487a-9ece-e188efcb5daf", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T12:31:36.848Z", + "completed":"2017-07-01T12:31:36.848Z", + "new_balance":"8564.82", + "value":"-84.92" + } + }, + { + "id":"79f5a748-ee93-49d9-a710-c9a2ac2c85d9", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T01:59:18.705Z", + "completed":"2017-09-02T01:59:18.705Z", + "new_balance":"8446.50", + "value":"-118.32" + } + }, + { + "id":"51417b38-e266-430e-aa00-a66d834f5637", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T23:13:38.366Z", + "completed":"2017-09-02T23:13:38.366Z", + "new_balance":"8417.63", + "value":"-28.87" + } + }, + { + "id":"3cf74b21-641e-4ffd-9d94-7f34cfa2da52", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T07:44:21.730Z", + "completed":"2017-09-03T07:44:21.730Z", + "new_balance":"8410.44", + "value":"-7.19" + } + }, + { + "id":"9a3c05d9-3d9a-499c-9c1f-e3ed56c1c9a8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T13:34:37.845Z", + "completed":"2017-09-03T13:34:37.845Z", + "new_balance":"7960.73", + "value":"-449.71" + } + }, + { + "id":"ccd030d9-0a72-4bd8-87ee-1f5f8a94bf72", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T18:38:01.548Z", + "completed":"2017-09-03T18:38:01.548Z", + "new_balance":"7956.55", + "value":"-4.18" + } + }, + { + "id":"bf00575b-eda0-4c70-9066-054bfa5bbd4c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T05:56:09.787Z", + "completed":"2017-09-04T05:56:09.787Z", + "new_balance":"7924.34", + "value":"-32.21" + } + }, + { + "id":"c8015335-3997-4559-a6fc-32c0388f2612", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T07:22:57.320Z", + "completed":"2017-09-07T07:22:57.320Z", + "new_balance":"7919.19", + "value":"-5.15" + } + }, + { + "id":"6ef06ef4-e136-4f1a-90a5-a6bc7688638f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T11:59:26.191Z", + "completed":"2017-09-09T11:59:26.191Z", + "new_balance":"7800.87", + "value":"-118.32" + } + }, + { + "id":"37d7701e-0a8c-4715-8099-f46352e8217a", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T16:38:01.441Z", + "completed":"2017-09-16T16:38:01.441Z", + "new_balance":"7715.95", + "value":"-84.92" + } + }, + { + "id":"9ccf8497-77a4-48a9-97d6-3ef447a299b1", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T15:44:05.328Z", + "completed":"2017-09-25T15:44:05.328Z", + "new_balance":"7631.03", + "value":"-84.92" + } + }, + { + "id":"612c33e0-a606-4f67-94f8-0591a92ad281", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T08:28:05.450Z", + "completed":"2017-09-30T08:28:05.450Z", + "new_balance":"7353.55", + "value":"-277.48" + } + }, + { + "id":"a0a74abf-6249-4333-94c7-06e0b6a7469b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T02:31:40.151Z", + "completed":"2017-12-07T02:31:40.151Z", + "new_balance":"7324.68", + "value":"-28.87" + } + }, + { + "id":"eabdf382-78eb-4fae-8990-76f7e41a912b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:30:43.735Z", + "completed":"2017-12-07T12:30:43.735Z", + "new_balance":"7206.36", + "value":"-118.32" + } + }, + { + "id":"691ab4a3-595a-43c6-a506-c231a8466b1c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T21:16:23.635Z", + "completed":"2017-12-07T21:16:23.635Z", + "new_balance":"6756.65", + "value":"-449.71" + } + }, + { + "id":"f6017488-88c3-46d1-9634-df17fb5e7a38", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T23:10:40.866Z", + "completed":"2017-12-11T23:10:40.866Z", + "new_balance":"6749.46", + "value":"-7.19" + } + }, + { + "id":"0c637dff-a584-4444-a63c-070de0660218", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T23:17:58.842Z", + "completed":"2017-12-11T23:17:58.842Z", + "new_balance":"6742.36", + "value":"-7.10" + } + }, + { + "id":"73a46783-8c59-4cff-916a-bc1c00272927", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T22:04:17.686Z", + "completed":"2017-12-14T22:04:17.686Z", + "new_balance":"6710.15", + "value":"-32.21" + } + }, + { + "id":"91b71105-6aa6-429b-ac05-dc6886489d53", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T10:00:29.465Z", + "completed":"2017-12-20T10:00:29.465Z", + "new_balance":"6705.00", + "value":"-5.15" + } + }, + { + "id":"65737325-1978-49a5-ac43-d865d2c23e58", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T00:54:52.502Z", + "completed":"2017-12-22T00:54:52.502Z", + "new_balance":"6586.68", + "value":"-118.32" + } + }, + { + "id":"5d27e1dd-0d72-4a55-afab-97c494629912", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T08:43:49.271Z", + "completed":"2017-12-28T08:43:49.271Z", + "new_balance":"6501.76", + "value":"-84.92" + } + }, + { + "id":"aed8a05e-dd97-4d23-8df4-74404fb11a80", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T01:28:28.571Z", + "completed":"2017-12-31T01:28:28.571Z", + "new_balance":"6416.84", + "value":"-84.92" + } + }, + { + "id":"c441799f-c470-43bb-ac37-2276a5c58922", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T17:17:19.037Z", + "completed":"2017-12-31T17:17:19.037Z", + "new_balance":"6139.36", + "value":"-277.48" + } + }, + { + "id":"5bb52a26-ac95-49c7-8591-742ee1b040da", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T08:55:54.819Z", + "completed":"2016-01-01T08:55:54.819Z", + "new_balance":"6193.55", + "value":"-6.40" + } + }, + { + "id":"fdc16f43-8475-4454-aded-cb3e256317fc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T15:38:00.613Z", + "completed":"2016-01-01T15:38:00.613Z", + "new_balance":"6187.15", + "value":"-6.40" + } + }, + { + "id":"a1664162-83b0-4e25-8c4e-1874d9d04c44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T04:49:49.060Z", + "completed":"2016-01-03T04:49:49.060Z", + "new_balance":"6183.71", + "value":"-3.44" + } + }, + { + "id":"00b2c787-d037-4bb1-9095-59158d0d8bb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T10:13:07.420Z", + "completed":"2016-01-03T10:13:07.420Z", + "new_balance":"6181.25", + "value":"-2.46" + } + }, + { + "id":"3aa6ce2d-3cb6-48db-a484-e283dce70501", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T17:01:07.639Z", + "completed":"2016-01-03T17:01:07.639Z", + "new_balance":"6174.06", + "value":"-7.19" + } + }, + { + "id":"a955eb32-3475-4659-a708-a56957338963", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T19:11:37.507Z", + "completed":"2016-01-03T19:11:37.507Z", + "new_balance":"6115.83", + "value":"-58.23" + } + }, + { + "id":"b1da63a4-aa95-4f85-a621-318068477d6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T12:14:49.906Z", + "completed":"2016-01-05T12:14:49.906Z", + "new_balance":"6114.68", + "value":"-1.15" + } + }, + { + "id":"425aa62d-d669-4d98-8ac8-0b24f21b7c7d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T15:48:02.241Z", + "completed":"2016-01-05T15:48:02.241Z", + "new_balance":"6109.53", + "value":"-5.15" + } + }, + { + "id":"0c4f9e91-9a7a-47d0-bbef-ea5aba825e96", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T23:35:21.011Z", + "completed":"2016-01-05T23:35:21.011Z", + "new_balance":"6105.11", + "value":"-4.42" + } + }, + { + "id":"26027908-0823-4540-8aa9-d9bcac010d26", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T01:11:38.311Z", + "completed":"2016-01-06T01:11:38.311Z", + "new_balance":"6102.79", + "value":"-2.32" + } + }, + { + "id":"e7d1b9b5-61d4-4bca-9e1d-e10e45f3d75c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T10:37:25.988Z", + "completed":"2016-01-06T10:37:25.988Z", + "new_balance":"6099.12", + "value":"-3.67" + } + }, + { + "id":"1a41a193-008b-48f9-ac88-14b1a78a099e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T19:55:24.075Z", + "completed":"2016-01-07T19:55:24.075Z", + "new_balance":"6094.65", + "value":"-4.47" + } + }, + { + "id":"a2dead39-fd66-435c-8a24-567c9cf51412", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T08:11:21.382Z", + "completed":"2016-01-10T08:11:21.382Z", + "new_balance":"6089.50", + "value":"-5.15" + } + }, + { + "id":"338ea526-8dca-4347-8379-951f10a4d2fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T19:12:08.339Z", + "completed":"2016-01-10T19:12:08.339Z", + "new_balance":"6087.12", + "value":"-2.38" + } + }, + { + "id":"48acd8d5-2861-44cf-9a4c-9300165f8f34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T01:36:17.852Z", + "completed":"2016-01-12T01:36:17.852Z", + "new_balance":"6084.39", + "value":"-2.73" + } + }, + { + "id":"5f3710fa-a718-4241-a3f9-4a86ae6b352d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:20:19.700Z", + "completed":"2016-01-12T04:20:19.700Z", + "new_balance":"6081.93", + "value":"-2.46" + } + }, + { + "id":"70cf0fc5-0f54-47f0-b137-cc9e29078f29", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T06:00:21.568Z", + "completed":"2016-01-12T06:00:21.568Z", + "new_balance":"6077.46", + "value":"-4.47" + } + }, + { + "id":"3c8a424c-9208-41f1-bb9d-21657fe68d22", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T19:42:39.695Z", + "completed":"2016-01-15T19:42:39.695Z", + "new_balance":"6074.83", + "value":"-2.63" + } + }, + { + "id":"ecd81a8e-e2d5-44d6-a8e8-7cbac2b53f73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T09:33:32.661Z", + "completed":"2016-01-16T09:33:32.661Z", + "new_balance":"6073.87", + "value":"-0.96" + } + }, + { + "id":"149cc056-05ed-4555-921d-a4fc073be4bf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T22:09:28.832Z", + "completed":"2016-01-16T22:09:28.832Z", + "new_balance":"6068.72", + "value":"-5.15" + } + }, + { + "id":"4ef0c78e-b784-492b-8b97-c8aaac4ab3a3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T00:21:39.652Z", + "completed":"2016-01-17T00:21:39.652Z", + "new_balance":"6061.97", + "value":"-6.75" + } + }, + { + "id":"e17a3a7a-e99a-425c-b26d-2d7ff9f2d4d1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T06:58:44.907Z", + "completed":"2016-01-17T06:58:44.907Z", + "new_balance":"6059.38", + "value":"-2.59" + } + }, + { + "id":"7b9970ba-17a2-469c-9759-b69d3aa6119f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T21:31:32.833Z", + "completed":"2016-01-19T21:31:32.833Z", + "new_balance":"6056.96", + "value":"-2.42" + } + }, + { + "id":"8d14b74e-cfbe-429f-8f90-434a6e6e5d63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T18:19:49.813Z", + "completed":"2016-01-20T18:19:49.813Z", + "new_balance":"6051.81", + "value":"-5.15" + } + }, + { + "id":"37608e60-3be4-411c-90b6-03666bf8aa6c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T05:38:28.165Z", + "completed":"2016-01-23T05:38:28.165Z", + "new_balance":"6050.39", + "value":"-1.42" + } + }, + { + "id":"a9abc249-7784-42ad-bb39-edf26cf0ab71", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T02:18:48.228Z", + "completed":"2016-01-26T02:18:48.228Z", + "new_balance":"6045.58", + "value":"-4.81" + } + }, + { + "id":"b1c93fb3-43f8-4a86-8221-03d55bff7a6f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T01:53:09.138Z", + "completed":"2016-01-27T01:53:09.138Z", + "new_balance":"6151.21", + "value":"105.63" + } + }, + { + "id":"97f82343-21c5-4874-b4ec-a5f8bd26cd1d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T04:58:02.383Z", + "completed":"2016-01-28T04:58:02.383Z", + "new_balance":"6147.77", + "value":"-3.44" + } + }, + { + "id":"0107be3f-5401-4dea-9bc2-4d1cd30b9fc2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T01:29:40.703Z", + "completed":"2016-01-30T01:29:40.703Z", + "new_balance":"6143.50", + "value":"-4.27" + } + }, + { + "id":"4d3fcf80-bc50-497d-ae10-b43cd2febc44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T05:54:12.220Z", + "completed":"2016-02-03T05:54:12.220Z", + "new_balance":"6136.31", + "value":"-7.19" + } + }, + { + "id":"725e24c1-6a67-4025-90ce-45b15db7825d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T09:33:24.168Z", + "completed":"2016-02-03T09:33:24.168Z", + "new_balance":"6132.87", + "value":"-3.44" + } + }, + { + "id":"5cdec414-c23b-499c-83a1-203786a21e63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T16:42:24.118Z", + "completed":"2016-02-03T16:42:24.118Z", + "new_balance":"6074.64", + "value":"-58.23" + } + }, + { + "id":"aa4cd967-ca0a-4ed2-bae1-5d1e31514887", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T20:49:41.609Z", + "completed":"2016-02-03T20:49:41.609Z", + "new_balance":"6072.18", + "value":"-2.46" + } + }, + { + "id":"f7e0ca5f-7cb8-467c-b924-4508620828c4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T10:48:46.313Z", + "completed":"2016-02-08T10:48:46.313Z", + "new_balance":"6067.76", + "value":"-4.42" + } + }, + { + "id":"a02a3cda-3939-4a0a-ab45-61a3cc99861f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T18:51:24.236Z", + "completed":"2016-02-08T18:51:24.236Z", + "new_balance":"6062.61", + "value":"-5.15" + } + }, + { + "id":"3fc80e59-78a0-4b11-b0cb-d60b614b4ce8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T00:59:12.536Z", + "completed":"2016-02-11T00:59:12.536Z", + "new_balance":"6063.72", + "value":"1.11" + } + }, + { + "id":"e966c3b3-707c-4703-93a2-6be6e9cc5e82", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T17:35:12.946Z", + "completed":"2016-02-13T17:35:12.946Z", + "new_balance":"6061.40", + "value":"-2.32" + } + }, + { + "id":"69231170-bc70-4d46-89d6-2878bbf11ef6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T10:43:15.449Z", + "completed":"2016-02-14T10:43:15.449Z", + "new_balance":"6058.37", + "value":"-3.03" + } + }, + { + "id":"8da815d8-e361-44f9-942d-58cb05291dea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T12:00:45.574Z", + "completed":"2016-02-17T12:00:45.574Z", + "new_balance":"6056.97", + "value":"-1.40" + } + }, + { + "id":"aee0d74a-35c6-451a-8130-2df38bc77854", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T09:16:53.178Z", + "completed":"2016-02-21T09:16:53.178Z", + "new_balance":"6052.48", + "value":"-4.49" + } + }, + { + "id":"069aad5f-437a-4961-9e4d-1a071963b92b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T07:09:53.755Z", + "completed":"2016-02-23T07:09:53.755Z", + "new_balance":"6047.33", + "value":"-5.15" + } + }, + { + "id":"74625bbb-bb06-41b5-9af5-899dce842a71", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T18:32:24.151Z", + "completed":"2016-02-23T18:32:24.151Z", + "new_balance":"6043.09", + "value":"-4.24" + } + }, + { + "id":"3abb4b94-ad3a-4e77-9e57-28275353f124", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T14:26:19.254Z", + "completed":"2016-02-24T14:26:19.254Z", + "new_balance":"6041.69", + "value":"-1.40" + } + }, + { + "id":"59e6b30c-7306-4978-8e3c-96f839c6820b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T00:15:40.563Z", + "completed":"2016-02-27T00:15:40.563Z", + "new_balance":"6039.67", + "value":"-2.02" + } + }, + { + "id":"cd00bb30-f310-45dd-b745-d0faef4b01d8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T19:14:42.050Z", + "completed":"2016-02-27T19:14:42.050Z", + "new_balance":"6145.30", + "value":"105.63" + } + }, + { + "id":"020541d7-af6e-41eb-b450-927ce26254d2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T23:13:23.134Z", + "completed":"2016-02-27T23:13:23.134Z", + "new_balance":"6140.49", + "value":"-4.81" + } + }, + { + "id":"53a03070-ec0f-40c2-81c4-9d1a5ee11547", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T08:09:22.569Z", + "completed":"2016-02-28T08:09:22.569Z", + "new_balance":"6137.05", + "value":"-3.44" + } + }, + { + "id":"e0344bea-48f4-4f51-a30d-aea5c9e18016", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T20:46:06.817Z", + "completed":"2016-02-28T20:46:06.817Z", + "new_balance":"6132.78", + "value":"-4.27" + } + }, + { + "id":"303c44f6-30fb-412f-93c1-9a1c1148a851", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T22:34:35.691Z", + "completed":"2016-03-01T22:34:35.691Z", + "new_balance":"6126.38", + "value":"-6.40" + } + }, + { + "id":"75fe1898-7148-4fd6-9a9a-a825b3e07969", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T00:04:05.430Z", + "completed":"2016-03-03T00:04:05.430Z", + "new_balance":"6119.19", + "value":"-7.19" + } + }, + { + "id":"c01fe141-9a05-46c6-8748-7e0bd7144a77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T05:01:13.175Z", + "completed":"2016-03-03T05:01:13.175Z", + "new_balance":"6116.73", + "value":"-2.46" + } + }, + { + "id":"afe13b92-8b3f-430b-acec-13036bf4b6fa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T14:01:01.303Z", + "completed":"2016-03-03T14:01:01.303Z", + "new_balance":"6113.29", + "value":"-3.44" + } + }, + { + "id":"8ba9bf7c-7240-4a2b-813e-0c934b2e9f97", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T19:26:05.413Z", + "completed":"2016-03-03T19:26:05.413Z", + "new_balance":"6055.06", + "value":"-58.23" + } + }, + { + "id":"522838c3-d9da-4cd4-8bd4-eb1f0a7055ca", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T02:04:08.737Z", + "completed":"2016-03-05T02:04:08.737Z", + "new_balance":"6049.91", + "value":"-5.15" + } + }, + { + "id":"9631ed9c-3d19-47c5-b6d4-70ff8cdae97e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T15:38:26.522Z", + "completed":"2016-03-05T15:38:26.522Z", + "new_balance":"6045.02", + "value":"-4.89" + } + }, + { + "id":"1536bda8-8aba-4160-ab06-b5755a7ae75a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T02:38:54.981Z", + "completed":"2016-03-07T02:38:54.981Z", + "new_balance":"6043.15", + "value":"-1.87" + } + }, + { + "id":"afbc6dd0-32ed-4d00-95be-7f83698d6439", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T19:34:24.942Z", + "completed":"2016-03-09T19:34:24.942Z", + "new_balance":"6038.00", + "value":"-5.15" + } + }, + { + "id":"e15f22ad-1474-4744-9f4a-ff66685e1993", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T22:22:24.405Z", + "completed":"2016-03-11T22:22:24.405Z", + "new_balance":"6036.42", + "value":"-1.58" + } + }, + { + "id":"854fa6cb-18de-4d31-a6c0-edd40f40b422", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T08:33:45.801Z", + "completed":"2016-03-13T08:33:45.801Z", + "new_balance":"6029.50", + "value":"-6.92" + } + }, + { + "id":"11f74db2-517e-4245-a75c-3f5d4a0b6094", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T07:49:28.669Z", + "completed":"2016-03-14T07:49:28.669Z", + "new_balance":"6028.26", + "value":"-1.24" + } + }, + { + "id":"378ddd52-67af-4879-a9d1-8d6dfefcac66", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T15:43:59.799Z", + "completed":"2016-03-14T15:43:59.799Z", + "new_balance":"6036.55", + "value":"8.29" + } + }, + { + "id":"284c27df-3bb1-41bd-9361-7fc9ba96f227", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T09:29:07.010Z", + "completed":"2016-03-15T09:29:07.010Z", + "new_balance":"6032.28", + "value":"-4.27" + } + }, + { + "id":"d94e9518-3758-4bd0-bed1-a390b90f54ea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T00:51:42.232Z", + "completed":"2016-03-26T00:51:42.232Z", + "new_balance":"6030.14", + "value":"-2.14" + } + }, + { + "id":"2447626f-d205-48a2-a166-2f90af5de943", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T04:54:55.001Z", + "completed":"2016-03-26T04:54:55.001Z", + "new_balance":"6025.45", + "value":"-4.69" + } + }, + { + "id":"90fdca43-0adb-47df-ba84-173f1e22f134", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T07:28:14.469Z", + "completed":"2016-03-26T07:28:14.469Z", + "new_balance":"6023.46", + "value":"-1.99" + } + }, + { + "id":"73277a64-402d-4a97-ad38-21a27eedbcb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T09:09:23.865Z", + "completed":"2016-03-27T09:09:23.865Z", + "new_balance":"6019.04", + "value":"-4.42" + } + }, + { + "id":"a3a3978d-f03a-47d3-a516-93f8607a4023", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T17:14:39.807Z", + "completed":"2016-03-27T17:14:39.807Z", + "new_balance":"6013.89", + "value":"-5.15" + } + }, + { + "id":"9174e49f-80d7-4fc3-8663-d265474dbef4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T20:01:29.845Z", + "completed":"2016-03-27T20:01:29.845Z", + "new_balance":"6119.52", + "value":"105.63" + } + }, + { + "id":"99cb3703-5d3b-45b2-89ce-8b02f4a0b855", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T23:55:31.344Z", + "completed":"2016-03-28T23:55:31.344Z", + "new_balance":"6116.08", + "value":"-3.44" + } + }, + { + "id":"10ab2e92-2d32-46b6-b97c-5893f7d0d8d2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T03:17:00.985Z", + "completed":"2016-03-30T03:17:00.985Z", + "new_balance":"6111.81", + "value":"-4.27" + } + }, + { + "id":"d45c08a3-d7d3-49bc-a3d3-40f2b2292d28", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T03:03:20.987Z", + "completed":"2016-04-01T03:03:20.987Z", + "new_balance":"6108.37", + "value":"-3.44" + } + }, + { + "id":"e0426080-883e-47f4-873e-5c9fd6a03bb7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T11:21:23.993Z", + "completed":"2016-04-01T11:21:23.993Z", + "new_balance":"6050.14", + "value":"-58.23" + } + }, + { + "id":"8b71b1a0-f900-4daf-bb2a-cacd9089e554", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T13:48:58.880Z", + "completed":"2016-04-01T13:48:58.880Z", + "new_balance":"6042.95", + "value":"-7.19" + } + }, + { + "id":"063a3809-3b0b-4ce4-85ec-f49fcc2cb6a3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T17:43:06.777Z", + "completed":"2016-04-01T17:43:06.777Z", + "new_balance":"6040.49", + "value":"-2.46" + } + }, + { + "id":"a66e79b6-a9e1-4757-8768-77f6af26314a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:02:21.853Z", + "completed":"2016-04-01T21:02:21.853Z", + "new_balance":"6034.09", + "value":"-6.40" + } + }, + { + "id":"d49fc0ca-79ae-44a4-8b68-82a05bea0b21", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T00:51:02.832Z", + "completed":"2016-04-05T00:51:02.832Z", + "new_balance":"6030.42", + "value":"-3.67" + } + }, + { + "id":"e121a2ad-dbf3-4e81-98d9-df347febed5d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T08:39:46.424Z", + "completed":"2016-04-05T08:39:46.424Z", + "new_balance":"6029.27", + "value":"-1.15" + } + }, + { + "id":"16634da7-b869-4632-a6fb-82e76cf51fc4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:40:35.375Z", + "completed":"2016-04-05T15:40:35.375Z", + "new_balance":"6024.85", + "value":"-4.42" + } + }, + { + "id":"212a9de6-8c0a-449c-aaa8-74d91656b70d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T23:54:26.428Z", + "completed":"2016-04-05T23:54:26.428Z", + "new_balance":"6019.70", + "value":"-5.15" + } + }, + { + "id":"c5934a34-dc54-4087-b4ad-8973c67378f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T07:50:17.167Z", + "completed":"2016-04-07T07:50:17.167Z", + "new_balance":"6017.38", + "value":"-2.32" + } + }, + { + "id":"046e6dc0-084f-4ec9-b560-43d31783ef11", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:33:12.039Z", + "completed":"2016-04-09T05:33:12.039Z", + "new_balance":"6015.00", + "value":"-2.38" + } + }, + { + "id":"fa7694d7-24b0-4bfe-b0e5-fc93afb677e8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T23:51:44.136Z", + "completed":"2016-04-09T23:51:44.136Z", + "new_balance":"6009.85", + "value":"-5.15" + } + }, + { + "id":"66476e93-f3c1-4e25-9c70-603e264016f3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:28:53.352Z", + "completed":"2016-04-10T01:28:53.352Z", + "new_balance":"6007.12", + "value":"-2.73" + } + }, + { + "id":"95bc6966-df69-4c07-8625-f98961b966d7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T14:41:49.882Z", + "completed":"2016-04-10T14:41:49.882Z", + "new_balance":"6004.66", + "value":"-2.46" + } + }, + { + "id":"1db2e6ed-bc1a-48b8-a651-31d7fc1ace7e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T17:59:02.586Z", + "completed":"2016-04-10T17:59:02.586Z", + "new_balance":"6000.19", + "value":"-4.47" + } + }, + { + "id":"90f68655-e1ea-4e84-a17e-6569ccd73e95", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T20:36:55.534Z", + "completed":"2016-04-10T20:36:55.534Z", + "new_balance":"5997.56", + "value":"-2.63" + } + }, + { + "id":"c4f72757-3ef1-4ce8-8a3a-165a7efdaf7c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T04:05:49.871Z", + "completed":"2016-04-11T04:05:49.871Z", + "new_balance":"5995.14", + "value":"-2.42" + } + }, + { + "id":"63e52bab-6944-4e0c-95e6-b42aeba02c75", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T06:35:27.777Z", + "completed":"2016-04-11T06:35:27.777Z", + "new_balance":"5989.99", + "value":"-5.15" + } + }, + { + "id":"7c71754a-26df-4dca-b419-fd319ce47485", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T11:59:49.759Z", + "completed":"2016-04-11T11:59:49.759Z", + "new_balance":"5989.03", + "value":"-0.96" + } + }, + { + "id":"dbc5e9a5-5d8f-4ddd-9405-47f9094629ab", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T19:25:28.870Z", + "completed":"2016-04-11T19:25:28.870Z", + "new_balance":"5986.44", + "value":"-2.59" + } + }, + { + "id":"019e88bb-f233-42de-ae87-37c986fc7aa5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T19:46:20.641Z", + "completed":"2016-04-11T19:46:20.641Z", + "new_balance":"5979.69", + "value":"-6.75" + } + }, + { + "id":"7c320061-c91e-4df6-b4e7-1b483b57b722", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T07:31:14.503Z", + "completed":"2016-04-21T07:31:14.503Z", + "new_balance":"5974.54", + "value":"-5.15" + } + }, + { + "id":"20169886-3153-4ec6-a0e4-6482d8f350e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T09:51:40.554Z", + "completed":"2016-04-23T09:51:40.554Z", + "new_balance":"5973.12", + "value":"-1.42" + } + }, + { + "id":"af8a777d-6d15-4940-9f8b-e63752d54bad", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T00:02:00.177Z", + "completed":"2016-04-29T00:02:00.177Z", + "new_balance":"6078.75", + "value":"105.63" + } + }, + { + "id":"9dfe279d-dbb4-4cee-99ce-37eb7aac7202", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T02:59:19.616Z", + "completed":"2016-04-29T02:59:19.616Z", + "new_balance":"6073.94", + "value":"-4.81" + } + }, + { + "id":"c4fe867c-c674-454b-a340-0b0ce1887833", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T07:11:16.590Z", + "completed":"2016-04-29T07:11:16.590Z", + "new_balance":"6070.50", + "value":"-3.44" + } + }, + { + "id":"7f9ffbb9-a075-47d2-a763-bffdef0b4b54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T09:40:49.652Z", + "completed":"2016-04-30T09:40:49.652Z", + "new_balance":"6066.23", + "value":"-4.27" + } + }, + { + "id":"1df17141-0e24-4a9a-a4c5-ecccaac3f141", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T02:12:34.805Z", + "completed":"2016-05-02T02:12:34.805Z", + "new_balance":"6059.04", + "value":"-7.19" + } + }, + { + "id":"e8bb6e2f-43ab-4550-ac72-7e384b75a897", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T05:34:08.141Z", + "completed":"2016-05-02T05:34:08.141Z", + "new_balance":"6056.58", + "value":"-2.46" + } + }, + { + "id":"e2efeba9-23f0-4e20-9039-3ac98d9ae929", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T13:00:41.660Z", + "completed":"2016-05-02T13:00:41.660Z", + "new_balance":"6050.18", + "value":"-6.40" + } + }, + { + "id":"89c03805-dc34-44ff-9db3-2c5dea07a352", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T14:41:16.114Z", + "completed":"2016-05-02T14:41:16.114Z", + "new_balance":"5991.95", + "value":"-58.23" + } + }, + { + "id":"55611f25-1478-41e9-ad86-8da80b20d912", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T17:42:12.432Z", + "completed":"2016-05-06T17:42:12.432Z", + "new_balance":"5987.53", + "value":"-4.42" + } + }, + { + "id":"8ac6db18-cbbb-4404-b983-6fd5f52b98d5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T02:28:00.196Z", + "completed":"2016-05-07T02:28:00.196Z", + "new_balance":"5986.13", + "value":"-1.40" + } + }, + { + "id":"f5cca48a-93e5-4fb0-add1-fceace56a07c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T15:10:12.392Z", + "completed":"2016-05-07T15:10:12.392Z", + "new_balance":"5981.64", + "value":"-4.49" + } + }, + { + "id":"34917ab1-c65a-4443-9bdf-3477038c36cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:52:56.193Z", + "completed":"2016-05-07T20:52:56.193Z", + "new_balance":"5978.61", + "value":"-3.03" + } + }, + { + "id":"8b495412-81d6-4fd6-952c-5376d695c1c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T23:49:14.184Z", + "completed":"2016-05-07T23:49:14.184Z", + "new_balance":"5976.29", + "value":"-2.32" + } + }, + { + "id":"c74ba6dd-d666-4003-99a9-5284b088bebd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T07:19:18.167Z", + "completed":"2016-05-08T07:19:18.167Z", + "new_balance":"5972.05", + "value":"-4.24" + } + }, + { + "id":"37c8da36-2440-45d1-b4f3-91d7dc82c258", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T05:42:52.397Z", + "completed":"2016-05-09T05:42:52.397Z", + "new_balance":"5968.61", + "value":"-3.44" + } + }, + { + "id":"8bde480b-bb89-466e-9be5-095b7b87cb00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T11:18:00.151Z", + "completed":"2016-05-13T11:18:00.151Z", + "new_balance":"5963.46", + "value":"-5.15" + } + }, + { + "id":"6d78a1ea-ca8f-4969-89a6-d655416dcb17", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T05:16:41.000Z", + "completed":"2016-05-26T05:16:41.000Z", + "new_balance":"5958.31", + "value":"-5.15" + } + }, + { + "id":"7d4013b5-794b-4ab0-aedd-16332da94ba9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T20:50:07.301Z", + "completed":"2016-05-26T20:50:07.301Z", + "new_balance":"5956.91", + "value":"-1.40" + } + }, + { + "id":"5732e207-c940-493a-9a80-d4e9062d9560", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T12:41:46.914Z", + "completed":"2016-05-27T12:41:46.914Z", + "new_balance":"5952.10", + "value":"-4.81" + } + }, + { + "id":"806bba11-a6b2-4504-8bc4-c4dc9c871353", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T18:04:54.012Z", + "completed":"2016-05-27T18:04:54.012Z", + "new_balance":"5950.08", + "value":"-2.02" + } + }, + { + "id":"aedee17a-a981-46cc-a728-8d4f63239054", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T15:00:31.752Z", + "completed":"2016-05-30T15:00:31.752Z", + "new_balance":"5946.64", + "value":"-3.44" + } + }, + { + "id":"9ecdd91b-167f-4572-af89-66b9865d3684", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T20:22:37.084Z", + "completed":"2016-05-30T20:22:37.084Z", + "new_balance":"5942.37", + "value":"-4.27" + } + }, + { + "id":"797707b8-82e6-4480-bfc5-db050b3c417d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T20:40:40.367Z", + "completed":"2016-05-30T20:40:40.367Z", + "new_balance":"6048.00", + "value":"105.63" + } + }, + { + "id":"fded7f81-770d-49b3-a557-5f27ab848c34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T01:58:17.852Z", + "completed":"2016-06-01T01:58:17.852Z", + "new_balance":"6043.11", + "value":"-4.89" + } + }, + { + "id":"eefc60ca-2318-469c-a6c2-6f99faa9789d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T02:07:29.247Z", + "completed":"2016-06-01T02:07:29.247Z", + "new_balance":"6039.67", + "value":"-3.44" + } + }, + { + "id":"94b5582f-69b4-4d9a-a6f2-a3dfc3ade01e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T05:47:14.301Z", + "completed":"2016-06-01T05:47:14.301Z", + "new_balance":"6034.52", + "value":"-5.15" + } + }, + { + "id":"36cb459f-82e4-4739-9021-998f7f62817f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T06:32:26.882Z", + "completed":"2016-06-01T06:32:26.882Z", + "new_balance":"5976.29", + "value":"-58.23" + } + }, + { + "id":"6d0007cd-64da-498d-b6b2-113a3628cdfa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T11:06:13.011Z", + "completed":"2016-06-01T11:06:13.011Z", + "new_balance":"5969.89", + "value":"-6.40" + } + }, + { + "id":"1cf17d8d-0c69-4afd-a741-bfaa89e185d1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T14:41:52.603Z", + "completed":"2016-06-01T14:41:52.603Z", + "new_balance":"5967.43", + "value":"-2.46" + } + }, + { + "id":"b0ef8ec7-8b1f-4308-87fc-98f43300d9fb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T15:33:48.182Z", + "completed":"2016-06-01T15:33:48.182Z", + "new_balance":"5960.24", + "value":"-7.19" + } + }, + { + "id":"eb6069da-ccd5-454c-85da-0abf04ebad06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T21:53:27.219Z", + "completed":"2016-06-01T21:53:27.219Z", + "new_balance":"5958.37", + "value":"-1.87" + } + }, + { + "id":"22ad6adf-45b6-4a64-84b1-d7908aac455e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T22:19:18.260Z", + "completed":"2016-06-01T22:19:18.260Z", + "new_balance":"5953.22", + "value":"-5.15" + } + }, + { + "id":"5aafc9cf-7391-4762-8b11-cb14cc3a53d6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T02:03:25.136Z", + "completed":"2016-06-02T02:03:25.136Z", + "new_balance":"5946.30", + "value":"-6.92" + } + }, + { + "id":"1d8fed96-beb1-445d-9b1f-77af0c714beb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T07:59:39.292Z", + "completed":"2016-06-02T07:59:39.292Z", + "new_balance":"5945.06", + "value":"-1.24" + } + }, + { + "id":"6b097ea9-fb47-450a-9870-e9e48a358bc7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T13:37:38.441Z", + "completed":"2016-06-02T13:37:38.441Z", + "new_balance":"5943.48", + "value":"-1.58" + } + }, + { + "id":"fcbcbd5e-518b-4d71-b191-0afcb4f516c6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T10:52:58.991Z", + "completed":"2016-06-04T10:52:58.991Z", + "new_balance":"5938.79", + "value":"-4.69" + } + }, + { + "id":"5bed4cf3-c662-4219-8979-020421edd4e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T13:48:04.411Z", + "completed":"2016-06-04T13:48:04.411Z", + "new_balance":"5936.65", + "value":"-2.14" + } + }, + { + "id":"74c72ff6-6610-4360-b9e4-da5a1895b4cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T22:16:35.596Z", + "completed":"2016-06-04T22:16:35.596Z", + "new_balance":"5932.38", + "value":"-4.27" + } + }, + { + "id":"41ae7a0b-ee2e-4531-8abd-57ffd6024203", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:24:28.246Z", + "completed":"2016-06-05T10:24:28.246Z", + "new_balance":"5927.96", + "value":"-4.42" + } + }, + { + "id":"016c1c5e-bed8-4c78-bb76-132efd30e235", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T12:27:47.801Z", + "completed":"2016-06-05T12:27:47.801Z", + "new_balance":"5925.97", + "value":"-1.99" + } + }, + { + "id":"83b65850-7124-4f29-b838-200557b991ec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T22:53:31.552Z", + "completed":"2016-06-18T22:53:31.552Z", + "new_balance":"5920.82", + "value":"-5.15" + } + }, + { + "id":"a10aa6e4-afc2-4be8-892f-456e1b13a3b1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T01:38:53.275Z", + "completed":"2016-06-30T01:38:53.275Z", + "new_balance":"5917.38", + "value":"-3.44" + } + }, + { + "id":"65ca5508-60a9-40fb-b140-71cd4fce61f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T04:54:24.155Z", + "completed":"2016-06-30T04:54:24.155Z", + "new_balance":"5913.11", + "value":"-4.27" + } + }, + { + "id":"6c65ff43-d74f-4015-aa7c-84f25d4c54f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T10:59:00.800Z", + "completed":"2016-06-30T10:59:00.800Z", + "new_balance":"6018.74", + "value":"105.63" + } + }, + { + "id":"e1dfd3c0-6b58-4da4-b0b7-5bb60cf8928c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:29:09.891Z", + "completed":"2016-06-30T19:29:09.891Z", + "new_balance":"6015.63", + "value":"-3.11" + } + }, + { + "id":"3399fc65-2633-4902-a4de-83bb2ec1fafb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:42:08.273Z", + "completed":"2016-07-01T05:42:08.273Z", + "new_balance":"6009.23", + "value":"-6.40" + } + }, + { + "id":"881d634a-b620-4702-ab02-9e144b76becd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T06:48:43.470Z", + "completed":"2016-07-03T06:48:43.470Z", + "new_balance":"6005.79", + "value":"-3.44" + } + }, + { + "id":"dc87981a-39ec-42b6-9f08-a88233826331", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T08:41:55.849Z", + "completed":"2016-07-03T08:41:55.849Z", + "new_balance":"5947.56", + "value":"-58.23" + } + }, + { + "id":"fdd62baa-6d7f-4f8d-b059-3f1de1c46598", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T19:26:09.911Z", + "completed":"2016-07-03T19:26:09.911Z", + "new_balance":"5945.10", + "value":"-2.46" + } + }, + { + "id":"07b74a43-f84b-4aa7-ab0d-fbe1918ddfac", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T20:19:57.307Z", + "completed":"2016-07-03T20:19:57.307Z", + "new_balance":"5937.91", + "value":"-7.19" + } + }, + { + "id":"ee78ced4-edb8-4f3d-b99c-dfe510ab2a39", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T08:56:00.313Z", + "completed":"2016-07-05T08:56:00.313Z", + "new_balance":"5933.49", + "value":"-4.42" + } + }, + { + "id":"1465fc46-f3dc-42e0-9027-97f40b8ba088", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T11:02:27.702Z", + "completed":"2016-07-05T11:02:27.702Z", + "new_balance":"5932.34", + "value":"-1.15" + } + }, + { + "id":"03b6457b-b428-4fbc-ad32-e0b60f23f686", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T18:46:54.086Z", + "completed":"2016-07-05T18:46:54.086Z", + "new_balance":"5927.19", + "value":"-5.15" + } + }, + { + "id":"8d0912c9-b665-423c-a9df-5305807f63f3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T13:32:35.408Z", + "completed":"2016-07-06T13:32:35.408Z", + "new_balance":"5923.52", + "value":"-3.67" + } + }, + { + "id":"a4e28a31-6abf-4860-8c30-9f9fc064a973", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T16:15:21.497Z", + "completed":"2016-07-06T16:15:21.497Z", + "new_balance":"5921.20", + "value":"-2.32" + } + }, + { + "id":"b73bf2b3-8479-4ae7-bba0-c0bb55a7c89a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T22:41:27.196Z", + "completed":"2016-07-07T22:41:27.196Z", + "new_balance":"5916.73", + "value":"-4.47" + } + }, + { + "id":"6d65c250-2232-44e3-8df4-76d5ebc46714", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T03:57:28.285Z", + "completed":"2016-07-10T03:57:28.285Z", + "new_balance":"5914.35", + "value":"-2.38" + } + }, + { + "id":"25d9ec39-32e9-44f1-bb85-734bec660bba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T22:47:46.728Z", + "completed":"2016-07-10T22:47:46.728Z", + "new_balance":"5909.20", + "value":"-5.15" + } + }, + { + "id":"834503a7-efb3-4ae1-af19-d3a5a4a9b4f1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:28:01.786Z", + "completed":"2016-07-12T03:28:01.786Z", + "new_balance":"5906.74", + "value":"-2.46" + } + }, + { + "id":"8705cad1-1db7-4de3-8a76-91abf971a018", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:59:42.942Z", + "completed":"2016-07-12T03:59:42.942Z", + "new_balance":"5904.01", + "value":"-2.73" + } + }, + { + "id":"44d14295-3eb3-4487-b97c-961a641946b9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:26:34.746Z", + "completed":"2016-07-12T16:26:34.746Z", + "new_balance":"5899.54", + "value":"-4.47" + } + }, + { + "id":"41709bd7-06f1-4d57-b95a-9af6d008beea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T13:23:53.214Z", + "completed":"2016-07-15T13:23:53.214Z", + "new_balance":"5896.91", + "value":"-2.63" + } + }, + { + "id":"4ee0c027-7bf8-4537-953e-432a75a6880d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T00:36:18.140Z", + "completed":"2016-07-16T00:36:18.140Z", + "new_balance":"5891.76", + "value":"-5.15" + } + }, + { + "id":"137ec398-7a92-443e-86c8-3246ff199f1e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T03:31:11.551Z", + "completed":"2016-07-16T03:31:11.551Z", + "new_balance":"5890.80", + "value":"-0.96" + } + }, + { + "id":"3282c709-1fb0-455b-98d1-292012b53d3b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T07:04:14.504Z", + "completed":"2016-07-17T07:04:14.504Z", + "new_balance":"5884.05", + "value":"-6.75" + } + }, + { + "id":"6e4190d9-c817-4d76-8de9-260dac002b74", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T18:59:42.686Z", + "completed":"2016-07-17T18:59:42.686Z", + "new_balance":"5881.46", + "value":"-2.59" + } + }, + { + "id":"e8dbe3d3-87ba-40bc-bfd8-4a38abb05806", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T21:07:27.532Z", + "completed":"2016-07-19T21:07:27.532Z", + "new_balance":"5879.04", + "value":"-2.42" + } + }, + { + "id":"f2cd6863-2c2f-4d50-97d2-959788e7b8e6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T23:35:16.777Z", + "completed":"2016-07-20T23:35:16.777Z", + "new_balance":"5873.89", + "value":"-5.15" + } + }, + { + "id":"6a3ffda5-008d-4396-9c74-ac2cbea8c8aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T23:35:53.884Z", + "completed":"2016-07-23T23:35:53.884Z", + "new_balance":"5872.47", + "value":"-1.42" + } + }, + { + "id":"93d05813-86f4-4b0e-b646-f8cd0ed0ee35", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T18:27:17.199Z", + "completed":"2016-07-26T18:27:17.199Z", + "new_balance":"5867.66", + "value":"-4.81" + } + }, + { + "id":"cfa0fdaf-2468-4dd7-8c24-3b4bc77260ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T10:30:09.962Z", + "completed":"2016-07-27T10:30:09.962Z", + "new_balance":"5973.29", + "value":"105.63" + } + }, + { + "id":"8a6f390f-7442-4a40-9b57-427ef7dfa305", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T06:40:49.619Z", + "completed":"2016-07-28T06:40:49.619Z", + "new_balance":"5969.85", + "value":"-3.44" + } + }, + { + "id":"f773b2e8-8047-4c9f-992e-3c0c83d9734c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T16:26:46.144Z", + "completed":"2016-07-30T16:26:46.144Z", + "new_balance":"5965.58", + "value":"-4.27" + } + }, + { + "id":"ef074954-ab17-4504-8b9f-685e5beda187", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T22:30:49.189Z", + "completed":"2016-08-01T22:30:49.189Z", + "new_balance":"5959.18", + "value":"-6.40" + } + }, + { + "id":"ccce9b60-a7f7-40b1-86d4-b66a376a8d3a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T07:32:04.626Z", + "completed":"2016-08-03T07:32:04.626Z", + "new_balance":"5951.99", + "value":"-7.19" + } + }, + { + "id":"af140336-0bde-45bd-8d96-f4f1d45dc1bf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T09:33:22.903Z", + "completed":"2016-08-03T09:33:22.903Z", + "new_balance":"5893.76", + "value":"-58.23" + } + }, + { + "id":"7a0e33e4-ce6a-4bfb-bec9-35744b1f8169", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T17:03:25.865Z", + "completed":"2016-08-03T17:03:25.865Z", + "new_balance":"5891.30", + "value":"-2.46" + } + }, + { + "id":"f4ccde70-5570-4fdd-b667-ef0c98de044b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T22:59:21.295Z", + "completed":"2016-08-03T22:59:21.295Z", + "new_balance":"5887.86", + "value":"-3.44" + } + }, + { + "id":"b2f097f7-b8ef-45a9-b5ff-c811f075d08e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T03:01:46.212Z", + "completed":"2016-08-08T03:01:46.212Z", + "new_balance":"5882.71", + "value":"-5.15" + } + }, + { + "id":"0f68faa1-2a8b-4ada-aee5-f46677469b47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T12:54:48.687Z", + "completed":"2016-08-08T12:54:48.687Z", + "new_balance":"5878.29", + "value":"-4.42" + } + }, + { + "id":"61210b75-a6f9-4ed2-a0d4-5ff65d86fdeb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T19:21:03.291Z", + "completed":"2016-08-11T19:21:03.291Z", + "new_balance":"5879.40", + "value":"1.11" + } + }, + { + "id":"ac7d3e5a-f545-4df5-b9c4-18323d624753", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T20:03:04.948Z", + "completed":"2016-08-13T20:03:04.948Z", + "new_balance":"5877.08", + "value":"-2.32" + } + }, + { + "id":"1a2e9e80-e153-4db5-96d0-32d5fd60ca0c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T02:58:01.820Z", + "completed":"2016-08-14T02:58:01.820Z", + "new_balance":"5874.05", + "value":"-3.03" + } + }, + { + "id":"b2e36f1f-877f-4d9d-8f1c-f79089ed3b92", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T21:45:39.219Z", + "completed":"2016-08-17T21:45:39.219Z", + "new_balance":"5872.65", + "value":"-1.40" + } + }, + { + "id":"22824a7d-dc9e-4541-8f55-e22418aa2e6d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T12:51:36.416Z", + "completed":"2016-08-21T12:51:36.416Z", + "new_balance":"5868.16", + "value":"-4.49" + } + }, + { + "id":"77bf58c7-104d-40b6-9d96-3c991b387c1b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T02:22:11.005Z", + "completed":"2016-08-23T02:22:11.005Z", + "new_balance":"5863.92", + "value":"-4.24" + } + }, + { + "id":"4ba69359-78be-4ebb-b953-b4f21f99cf68", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T22:02:07.090Z", + "completed":"2016-08-23T22:02:07.090Z", + "new_balance":"5858.77", + "value":"-5.15" + } + }, + { + "id":"c6abe065-d9ba-41eb-8b19-e50432822a94", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T18:02:49.735Z", + "completed":"2016-08-24T18:02:49.735Z", + "new_balance":"5857.37", + "value":"-1.40" + } + }, + { + "id":"fe3d974b-e59f-4c2a-b54b-3cc8bcaecfaf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T13:35:03.215Z", + "completed":"2016-08-27T13:35:03.215Z", + "new_balance":"5852.56", + "value":"-4.81" + } + }, + { + "id":"65f20907-6aec-4d2e-88bb-c2c4e33eced3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:09:58.687Z", + "completed":"2016-08-27T15:09:58.687Z", + "new_balance":"5850.54", + "value":"-2.02" + } + }, + { + "id":"af7481df-5ee2-4f0e-b6fc-81cc34091ebe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T15:34:00.907Z", + "completed":"2016-08-27T15:34:00.907Z", + "new_balance":"5956.17", + "value":"105.63" + } + }, + { + "id":"62146d57-bb32-42bf-977a-d5cc2c17f9db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T13:56:42.041Z", + "completed":"2016-08-28T13:56:42.041Z", + "new_balance":"5952.73", + "value":"-3.44" + } + }, + { + "id":"a53a3d6f-377a-4f6c-ac45-394b05e64077", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T11:02:23.121Z", + "completed":"2016-08-30T11:02:23.121Z", + "new_balance":"5948.46", + "value":"-4.27" + } + }, + { + "id":"bbe868ad-0bee-40b9-bf1c-dc39366609de", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:24:48.703Z", + "completed":"2016-09-01T14:24:48.703Z", + "new_balance":"5942.06", + "value":"-6.40" + } + }, + { + "id":"82f81d03-30d7-4b08-94d5-e543866309ce", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:10:01.694Z", + "completed":"2016-09-03T01:10:01.694Z", + "new_balance":"5938.62", + "value":"-3.44" + } + }, + { + "id":"1ecf6247-96af-4846-bbc3-528bb73893a7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T02:08:40.380Z", + "completed":"2016-09-03T02:08:40.380Z", + "new_balance":"5880.39", + "value":"-58.23" + } + }, + { + "id":"b6202cbf-a33c-4c85-892f-faefa275b326", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T20:32:48.476Z", + "completed":"2016-09-03T20:32:48.476Z", + "new_balance":"5877.93", + "value":"-2.46" + } + }, + { + "id":"4dc9f6b9-4651-4c66-a6ea-766980626c0e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T22:09:52.684Z", + "completed":"2016-09-03T22:09:52.684Z", + "new_balance":"5870.74", + "value":"-7.19" + } + }, + { + "id":"b162f884-6cbd-4a85-9afb-b42671cd444c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T12:48:29.106Z", + "completed":"2016-09-05T12:48:29.106Z", + "new_balance":"5865.85", + "value":"-4.89" + } + }, + { + "id":"a22575bb-b106-4e4e-b6fd-a4abb993246d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T20:50:16.310Z", + "completed":"2016-09-05T20:50:16.310Z", + "new_balance":"5860.70", + "value":"-5.15" + } + }, + { + "id":"27fcac6e-7a6e-422b-b1af-6d703e4a9d09", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T06:32:37.082Z", + "completed":"2016-09-07T06:32:37.082Z", + "new_balance":"5858.83", + "value":"-1.87" + } + }, + { + "id":"4da9c505-88c8-47e8-aff9-50f03589173e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T10:11:12.356Z", + "completed":"2016-09-09T10:11:12.356Z", + "new_balance":"5853.68", + "value":"-5.15" + } + }, + { + "id":"08e52511-a9b5-45c1-8d62-89899b9d3d77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T12:18:50.687Z", + "completed":"2016-09-11T12:18:50.687Z", + "new_balance":"5852.10", + "value":"-1.58" + } + }, + { + "id":"63709916-2487-4d89-b458-8d6c193053b5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:32:30.805Z", + "completed":"2016-09-13T16:32:30.805Z", + "new_balance":"5845.18", + "value":"-6.92" + } + }, + { + "id":"da45ecd8-0448-4deb-aeab-d393bbf60a62", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T01:02:08.495Z", + "completed":"2016-09-14T01:02:08.495Z", + "new_balance":"5853.47", + "value":"8.29" + } + }, + { + "id":"3e926ebe-8706-43e7-91d5-36ccfac3b8d3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T09:01:48.628Z", + "completed":"2016-09-14T09:01:48.628Z", + "new_balance":"5852.23", + "value":"-1.24" + } + }, + { + "id":"0a69a7f8-4e9d-4a26-904d-d0839b83af7a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T00:15:01.161Z", + "completed":"2016-09-15T00:15:01.161Z", + "new_balance":"5847.96", + "value":"-4.27" + } + }, + { + "id":"baec5a5b-f299-4253-8d65-a96f9efca8c8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T03:28:44.719Z", + "completed":"2016-09-26T03:28:44.719Z", + "new_balance":"5845.97", + "value":"-1.99" + } + }, + { + "id":"c0404e13-ee52-46aa-abe9-06c8e51c14e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T03:54:55.280Z", + "completed":"2016-09-26T03:54:55.280Z", + "new_balance":"5841.28", + "value":"-4.69" + } + }, + { + "id":"38b7a30f-bfff-427a-9197-ea13cb5f486f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T13:43:28.597Z", + "completed":"2016-09-26T13:43:28.597Z", + "new_balance":"5839.14", + "value":"-2.14" + } + }, + { + "id":"80497589-5ffa-41a5-9f65-7669d55a1b15", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T02:44:05.185Z", + "completed":"2016-09-27T02:44:05.185Z", + "new_balance":"5834.72", + "value":"-4.42" + } + }, + { + "id":"04a95776-e061-4b79-beb6-efa7703e6d9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T04:45:41.861Z", + "completed":"2016-09-27T04:45:41.861Z", + "new_balance":"5829.57", + "value":"-5.15" + } + }, + { + "id":"3f1e64d9-8ebd-42a0-8af1-492da630fa8a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T22:54:27.150Z", + "completed":"2016-09-27T22:54:27.150Z", + "new_balance":"5935.20", + "value":"105.63" + } + }, + { + "id":"7d5b99b6-a7d8-4cbd-8f58-43a918e0a801", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T01:22:54.973Z", + "completed":"2016-09-28T01:22:54.973Z", + "new_balance":"5931.76", + "value":"-3.44" + } + }, + { + "id":"12ab6047-0b6f-43f0-acc8-2bbf4609311b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T15:53:23.951Z", + "completed":"2016-09-30T15:53:23.951Z", + "new_balance":"5927.49", + "value":"-4.27" + } + }, + { + "id":"bfda5af3-40e5-459b-b114-013876b26427", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T03:51:20.790Z", + "completed":"2016-10-01T03:51:20.790Z", + "new_balance":"5924.05", + "value":"-3.44" + } + }, + { + "id":"20a853d5-ed69-4ace-ab1f-aa55ca505d27", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T09:52:46.801Z", + "completed":"2016-10-01T09:52:46.801Z", + "new_balance":"5917.65", + "value":"-6.40" + } + }, + { + "id":"b886a685-60e6-4525-a33b-cde1b9c04071", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T11:29:55.383Z", + "completed":"2016-10-01T11:29:55.383Z", + "new_balance":"5915.19", + "value":"-2.46" + } + }, + { + "id":"3c4b4b2e-caa7-4893-8bd3-c4126bc301f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T21:14:19.032Z", + "completed":"2016-10-01T21:14:19.032Z", + "new_balance":"5908.00", + "value":"-7.19" + } + }, + { + "id":"7cde951b-d469-4050-873e-fcb70f174e51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T22:33:43.528Z", + "completed":"2016-10-01T22:33:43.528Z", + "new_balance":"5849.77", + "value":"-58.23" + } + }, + { + "id":"11f3b09a-755f-4407-9589-1bbe62f830ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T02:16:46.730Z", + "completed":"2016-10-05T02:16:46.730Z", + "new_balance":"5846.10", + "value":"-3.67" + } + }, + { + "id":"a13727bb-88dd-46c7-ad3d-4364f14bc24a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T16:34:14.010Z", + "completed":"2016-10-05T16:34:14.010Z", + "new_balance":"5840.95", + "value":"-5.15" + } + }, + { + "id":"01ffd319-4915-4036-a03a-c1ed317910e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:54:07.899Z", + "completed":"2016-10-05T18:54:07.899Z", + "new_balance":"5839.80", + "value":"-1.15" + } + }, + { + "id":"5757071c-d3a0-4250-b556-40b8d8ca7a6b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T19:26:13.744Z", + "completed":"2016-10-05T19:26:13.744Z", + "new_balance":"5835.38", + "value":"-4.42" + } + }, + { + "id":"09b123d8-0313-4862-ae3d-25a795a0a24b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T13:32:02.856Z", + "completed":"2016-10-07T13:32:02.856Z", + "new_balance":"5833.06", + "value":"-2.32" + } + }, + { + "id":"470b740f-428d-46ed-a527-a403e9df3bcf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T10:34:06.176Z", + "completed":"2016-10-09T10:34:06.176Z", + "new_balance":"5830.68", + "value":"-2.38" + } + }, + { + "id":"41ab85a0-f3cb-40cb-93fa-be9c42d98c9c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T14:57:12.456Z", + "completed":"2016-10-09T14:57:12.456Z", + "new_balance":"5825.53", + "value":"-5.15" + } + }, + { + "id":"2e967817-6858-4938-8f2a-a11486bd54a7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T02:56:28.009Z", + "completed":"2016-10-10T02:56:28.009Z", + "new_balance":"5822.90", + "value":"-2.63" + } + }, + { + "id":"a31746db-ee26-4cf8-bf3f-66edd7eb1526", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T03:14:20.655Z", + "completed":"2016-10-10T03:14:20.655Z", + "new_balance":"5820.17", + "value":"-2.73" + } + }, + { + "id":"21251e17-806e-4e05-93e2-3e4c836ad5ea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T04:01:09.439Z", + "completed":"2016-10-10T04:01:09.439Z", + "new_balance":"5815.70", + "value":"-4.47" + } + }, + { + "id":"3953b480-80db-4e0e-978a-b10d30294942", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T17:10:36.999Z", + "completed":"2016-10-10T17:10:36.999Z", + "new_balance":"5813.24", + "value":"-2.46" + } + }, + { + "id":"665861ac-235f-48ac-9c87-54001164373b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T00:01:18.784Z", + "completed":"2016-10-11T00:01:18.784Z", + "new_balance":"5810.82", + "value":"-2.42" + } + }, + { + "id":"c9faf43c-38a8-46d0-ba48-be956882d532", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T01:43:07.552Z", + "completed":"2016-10-11T01:43:07.552Z", + "new_balance":"5805.67", + "value":"-5.15" + } + }, + { + "id":"eb12dcab-5aeb-4ea4-8058-73ba9d009f50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T07:23:01.483Z", + "completed":"2016-10-11T07:23:01.483Z", + "new_balance":"5803.08", + "value":"-2.59" + } + }, + { + "id":"58ea2989-8130-44a5-9572-fb08d82c7e51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T10:56:19.068Z", + "completed":"2016-10-11T10:56:19.068Z", + "new_balance":"5802.12", + "value":"-0.96" + } + }, + { + "id":"6ff7004f-cd7f-4549-90c5-6ee2825cdd44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:32:33.579Z", + "completed":"2016-10-11T13:32:33.579Z", + "new_balance":"5795.37", + "value":"-6.75" + } + }, + { + "id":"3bd07479-6edc-4b22-b7d5-327a3b351e7f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T07:02:45.159Z", + "completed":"2016-10-21T07:02:45.159Z", + "new_balance":"5790.22", + "value":"-5.15" + } + }, + { + "id":"55898569-626d-4afa-8091-8a6efbecc7d9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T03:02:48.418Z", + "completed":"2016-10-23T03:02:48.418Z", + "new_balance":"5788.80", + "value":"-1.42" + } + }, + { + "id":"4d1f2494-9e26-43b3-aedd-80c9fb007531", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T03:17:24.834Z", + "completed":"2016-10-29T03:17:24.834Z", + "new_balance":"5894.43", + "value":"105.63" + } + }, + { + "id":"5f2c8295-e335-480d-980b-95554c6ef1cf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T06:06:13.666Z", + "completed":"2016-10-29T06:06:13.666Z", + "new_balance":"5889.62", + "value":"-4.81" + } + }, + { + "id":"50309099-ce2e-497d-9f6f-8f42a91c8938", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T20:55:13.966Z", + "completed":"2016-10-29T20:55:13.966Z", + "new_balance":"5886.18", + "value":"-3.44" + } + }, + { + "id":"ac6687ba-c0de-4f8d-b93f-9367567d0100", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T21:14:15.980Z", + "completed":"2016-10-30T21:14:15.980Z", + "new_balance":"5881.91", + "value":"-4.27" + } + }, + { + "id":"e7d97305-6c56-4eb5-bae9-d67ae3259fb2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T00:21:06.205Z", + "completed":"2016-11-02T00:21:06.205Z", + "new_balance":"5875.51", + "value":"-6.40" + } + }, + { + "id":"8636c19b-46ae-4ff0-8128-534d263e761c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T00:59:17.919Z", + "completed":"2016-11-02T00:59:17.919Z", + "new_balance":"5873.05", + "value":"-2.46" + } + }, + { + "id":"9d321091-2bc1-4559-beb6-1eb104ab6ee3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:16:02.619Z", + "completed":"2016-11-02T12:16:02.619Z", + "new_balance":"5865.86", + "value":"-7.19" + } + }, + { + "id":"51aa2e4f-6970-4b78-abdc-a16b25425ce0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T21:31:52.701Z", + "completed":"2016-11-02T21:31:52.701Z", + "new_balance":"5807.63", + "value":"-58.23" + } + }, + { + "id":"2f468515-84d7-4dc8-844e-05b76101c987", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T20:24:59.997Z", + "completed":"2016-11-06T20:24:59.997Z", + "new_balance":"5803.21", + "value":"-4.42" + } + }, + { + "id":"24979aee-0c4d-4dd1-9d0f-4597bd684330", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T00:36:35.745Z", + "completed":"2016-11-07T00:36:35.745Z", + "new_balance":"5801.81", + "value":"-1.40" + } + }, + { + "id":"e5463158-c420-4061-bcee-0974f6ab30ba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T01:46:54.457Z", + "completed":"2016-11-07T01:46:54.457Z", + "new_balance":"5799.49", + "value":"-2.32" + } + }, + { + "id":"1703daed-819b-470c-9828-3d3fbca7c10e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T11:21:21.106Z", + "completed":"2016-11-07T11:21:21.106Z", + "new_balance":"5796.46", + "value":"-3.03" + } + }, + { + "id":"ce9d9e07-99dc-4c04-9b0d-960ba6f44160", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T13:11:15.344Z", + "completed":"2016-11-07T13:11:15.344Z", + "new_balance":"5791.97", + "value":"-4.49" + } + }, + { + "id":"842ad70a-712c-4481-bf12-7c4de48be835", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:25:38.285Z", + "completed":"2016-11-08T07:25:38.285Z", + "new_balance":"5787.73", + "value":"-4.24" + } + }, + { + "id":"6a6589bd-c8c9-41de-a874-1a1fbe106fea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T17:19:08.026Z", + "completed":"2016-11-09T17:19:08.026Z", + "new_balance":"5784.29", + "value":"-3.44" + } + }, + { + "id":"80280700-bb00-42aa-8397-078fd2cf19ad", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T14:57:25.645Z", + "completed":"2016-11-13T14:57:25.645Z", + "new_balance":"5779.14", + "value":"-5.15" + } + }, + { + "id":"debf61a0-9a82-4227-ad40-da5b617fd0bb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:47:35.775Z", + "completed":"2016-11-26T01:47:35.775Z", + "new_balance":"5773.99", + "value":"-5.15" + } + }, + { + "id":"3fcadc17-9ff8-4894-808f-dce9a8dbc040", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T16:18:05.401Z", + "completed":"2016-11-26T16:18:05.401Z", + "new_balance":"5772.59", + "value":"-1.40" + } + }, + { + "id":"ad23d7b5-0258-460c-8e4c-ecd8fb6d3795", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T09:51:33.235Z", + "completed":"2016-11-27T09:51:33.235Z", + "new_balance":"5770.57", + "value":"-2.02" + } + }, + { + "id":"22eb09aa-e8d4-4327-91a7-c3764807981a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T10:08:51.127Z", + "completed":"2016-11-27T10:08:51.127Z", + "new_balance":"5765.76", + "value":"-4.81" + } + }, + { + "id":"9abc9136-2017-411a-a762-daffe2b76fab", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T01:25:13.260Z", + "completed":"2016-11-30T01:25:13.260Z", + "new_balance":"5761.49", + "value":"-4.27" + } + }, + { + "id":"7d7b7a64-6004-427c-8df5-74bae7835108", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T07:22:07.864Z", + "completed":"2016-11-30T07:22:07.864Z", + "new_balance":"5758.05", + "value":"-3.44" + } + }, + { + "id":"2e93c735-a77a-4af6-b466-59bbc267c06b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T17:11:11.327Z", + "completed":"2016-11-30T17:11:11.327Z", + "new_balance":"5863.68", + "value":"105.63" + } + }, + { + "id":"6a6f99f5-3cba-494a-adc8-7e043c76bf7c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T02:43:27.089Z", + "completed":"2016-12-01T02:43:27.089Z", + "new_balance":"5805.45", + "value":"-58.23" + } + }, + { + "id":"4cbbfeaa-8045-46ba-9510-8090f7766927", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T03:04:01.314Z", + "completed":"2016-12-01T03:04:01.314Z", + "new_balance":"5803.58", + "value":"-1.87" + } + }, + { + "id":"cd9d1277-72c7-4590-aa78-7bc510568fc9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T05:04:35.236Z", + "completed":"2016-12-01T05:04:35.236Z", + "new_balance":"5800.14", + "value":"-3.44" + } + }, + { + "id":"82d845cc-c6c0-4ca7-8e62-290b9014b80e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T05:53:17.586Z", + "completed":"2016-12-01T05:53:17.586Z", + "new_balance":"5795.25", + "value":"-4.89" + } + }, + { + "id":"a7e7f34b-69ba-4511-9e51-8958d257a212", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T11:46:40.044Z", + "completed":"2016-12-01T11:46:40.044Z", + "new_balance":"5790.10", + "value":"-5.15" + } + }, + { + "id":"f408787c-d5d7-490d-b6ed-e1d4c83f1b23", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T13:06:26.028Z", + "completed":"2016-12-01T13:06:26.028Z", + "new_balance":"5783.70", + "value":"-6.40" + } + }, + { + "id":"34a60af1-ebb6-41a2-a118-54a0db605b06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T14:27:41.947Z", + "completed":"2016-12-01T14:27:41.947Z", + "new_balance":"5781.24", + "value":"-2.46" + } + }, + { + "id":"d58fd3ff-7e89-48d3-979a-c34ec805b4f2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T14:51:21.160Z", + "completed":"2016-12-01T14:51:21.160Z", + "new_balance":"5776.09", + "value":"-5.15" + } + }, + { + "id":"a617afcb-dd20-43c1-a153-851eb3c7c88a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T15:36:54.542Z", + "completed":"2016-12-01T15:36:54.542Z", + "new_balance":"5768.90", + "value":"-7.19" + } + }, + { + "id":"52a1c0ac-a329-4750-a2a8-2ce119420d93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T07:02:40.970Z", + "completed":"2016-12-02T07:02:40.970Z", + "new_balance":"5761.98", + "value":"-6.92" + } + }, + { + "id":"d6d3a965-7674-4ad0-ae2f-23ac2fe91946", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T08:18:31.267Z", + "completed":"2016-12-02T08:18:31.267Z", + "new_balance":"5760.74", + "value":"-1.24" + } + }, + { + "id":"3d9fa412-a3df-409b-80f5-c2788e279e24", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T15:37:32.357Z", + "completed":"2016-12-02T15:37:32.357Z", + "new_balance":"5759.16", + "value":"-1.58" + } + }, + { + "id":"f4229736-3806-440a-99c4-106c953c21f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:11:47.319Z", + "completed":"2016-12-04T12:11:47.319Z", + "new_balance":"5757.02", + "value":"-2.14" + } + }, + { + "id":"d0272379-cb22-4bac-83eb-8b7577541321", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T12:41:23.754Z", + "completed":"2016-12-04T12:41:23.754Z", + "new_balance":"5752.75", + "value":"-4.27" + } + }, + { + "id":"e3fd0081-df32-4b0e-b5aa-c9c5d0aeec19", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T20:21:47.369Z", + "completed":"2016-12-04T20:21:47.369Z", + "new_balance":"5748.06", + "value":"-4.69" + } + }, + { + "id":"c98196f8-495c-447a-af4f-fc023752394a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T08:11:21.365Z", + "completed":"2016-12-05T08:11:21.365Z", + "new_balance":"5746.07", + "value":"-1.99" + } + }, + { + "id":"48d1c862-f549-46a4-8412-d0bba9be3dd4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T23:58:21.499Z", + "completed":"2016-12-05T23:58:21.499Z", + "new_balance":"5741.65", + "value":"-4.42" + } + }, + { + "id":"e4238273-103f-43d3-9daa-816c27e02073", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T16:17:53.323Z", + "completed":"2016-12-18T16:17:53.323Z", + "new_balance":"5736.50", + "value":"-5.15" + } + }, + { + "id":"f8bd39df-6ec1-418f-b56a-80c3fb2d0dd5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T04:05:42.066Z", + "completed":"2016-12-30T04:05:42.066Z", + "new_balance":"5733.39", + "value":"-3.11" + } + }, + { + "id":"74a82f0e-9bf7-412b-be58-0344b15642c7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T08:16:47.117Z", + "completed":"2016-12-30T08:16:47.117Z", + "new_balance":"5839.02", + "value":"105.63" + } + }, + { + "id":"f66b3660-9971-4a7d-a9a4-8ce9f345bf18", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T18:42:01.108Z", + "completed":"2016-12-30T18:42:01.108Z", + "new_balance":"5835.58", + "value":"-3.44" + } + }, + { + "id":"e8ec50ba-e915-4162-96ef-f1047ce70857", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T22:32:26.514Z", + "completed":"2016-12-30T22:32:26.514Z", + "new_balance":"5831.31", + "value":"-4.27" + } + }, + { + "id":"6f5ba1b3-2322-450c-bcc7-7808df226c68", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T02:25:30.582Z", + "completed":"2017-01-01T02:25:30.582Z", + "new_balance":"5824.91", + "value":"-6.40" + } + }, + { + "id":"a94abf32-2100-46c7-b717-3febcba63d87", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T23:40:46.581Z", + "completed":"2017-01-01T23:40:46.581Z", + "new_balance":"5818.51", + "value":"-6.40" + } + }, + { + "id":"86b2f5ff-8cda-4731-87f5-de1248d630ce", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T00:37:23.629Z", + "completed":"2017-01-03T00:37:23.629Z", + "new_balance":"5816.05", + "value":"-2.46" + } + }, + { + "id":"03b70e6f-33d7-4251-879b-7c0f98daf0f2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T13:05:50.429Z", + "completed":"2017-01-03T13:05:50.429Z", + "new_balance":"5808.86", + "value":"-7.19" + } + }, + { + "id":"41fafd65-40fc-4d4f-9064-a6d6289892d4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T16:44:14.598Z", + "completed":"2017-01-03T16:44:14.598Z", + "new_balance":"5750.63", + "value":"-58.23" + } + }, + { + "id":"6028b805-ee3a-4b47-b100-0642dcca2beb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T19:08:37.525Z", + "completed":"2017-01-03T19:08:37.525Z", + "new_balance":"5747.19", + "value":"-3.44" + } + }, + { + "id":"c6825279-af19-49aa-8f8c-aebde16e9992", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T00:44:07.104Z", + "completed":"2017-01-05T00:44:07.104Z", + "new_balance":"5742.04", + "value":"-5.15" + } + }, + { + "id":"e3b91125-f81c-4138-997a-51a87210d046", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:21:42.658Z", + "completed":"2017-01-05T15:21:42.658Z", + "new_balance":"5737.62", + "value":"-4.42" + } + }, + { + "id":"14ec2cf9-7e78-4470-819b-6b2add04f174", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:57:23.783Z", + "completed":"2017-01-05T15:57:23.783Z", + "new_balance":"5736.47", + "value":"-1.15" + } + }, + { + "id":"8a7baae4-0919-4ba2-a275-966c6113351a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T02:13:51.019Z", + "completed":"2017-01-06T02:13:51.019Z", + "new_balance":"5734.15", + "value":"-2.32" + } + }, + { + "id":"cbde119b-85b7-4baa-88de-189fe7a67596", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:35:18.428Z", + "completed":"2017-01-06T06:35:18.428Z", + "new_balance":"5730.48", + "value":"-3.67" + } + }, + { + "id":"8260d800-792a-484d-a405-757f3ee532a5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T23:33:19.103Z", + "completed":"2017-01-07T23:33:19.103Z", + "new_balance":"5726.01", + "value":"-4.47" + } + }, + { + "id":"491a2f45-9c0d-453e-bba3-3d05b7eb79fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T02:06:31.204Z", + "completed":"2017-01-10T02:06:31.204Z", + "new_balance":"5723.63", + "value":"-2.38" + } + }, + { + "id":"e1d6a425-14e8-4db1-be4e-8cd3db3ff77e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T06:43:03.133Z", + "completed":"2017-01-10T06:43:03.133Z", + "new_balance":"5718.48", + "value":"-5.15" + } + }, + { + "id":"713ac0b5-cccc-48b3-92c9-a0708e27f93b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T01:42:15.911Z", + "completed":"2017-01-12T01:42:15.911Z", + "new_balance":"5716.02", + "value":"-2.46" + } + }, + { + "id":"882cdcc3-885f-4403-af6d-7ebd2074ea34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T17:53:37.056Z", + "completed":"2017-01-12T17:53:37.056Z", + "new_balance":"5711.55", + "value":"-4.47" + } + }, + { + "id":"c392c97f-12f0-42c6-aa7f-fd597126470c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:55:05.771Z", + "completed":"2017-01-12T23:55:05.771Z", + "new_balance":"5708.82", + "value":"-2.73" + } + }, + { + "id":"c06677d9-7a40-4cfe-b32d-8a298e10a479", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T11:17:01.550Z", + "completed":"2017-01-15T11:17:01.550Z", + "new_balance":"5706.19", + "value":"-2.63" + } + }, + { + "id":"875857b6-a177-45d6-967a-16569fa13220", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T00:19:30.116Z", + "completed":"2017-01-16T00:19:30.116Z", + "new_balance":"5701.04", + "value":"-5.15" + } + }, + { + "id":"90ed8ef0-4596-487e-8915-ee2737a7708f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T05:41:26.655Z", + "completed":"2017-01-16T05:41:26.655Z", + "new_balance":"5700.08", + "value":"-0.96" + } + }, + { + "id":"1c0bed69-9fa7-4633-9f3e-f194c64b86f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T05:55:35.238Z", + "completed":"2017-01-17T05:55:35.238Z", + "new_balance":"5693.33", + "value":"-6.75" + } + }, + { + "id":"b4ad7f69-6f4b-4a66-bff7-6274a5bae36d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T15:02:39.626Z", + "completed":"2017-01-17T15:02:39.626Z", + "new_balance":"5690.74", + "value":"-2.59" + } + }, + { + "id":"b16e0e59-05fe-48ce-bd80-2fa213fedf6b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T14:56:44.724Z", + "completed":"2017-01-19T14:56:44.724Z", + "new_balance":"5688.32", + "value":"-2.42" + } + }, + { + "id":"3daf049f-8c28-4300-bf52-4f392e68f5be", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T02:01:35.188Z", + "completed":"2017-01-20T02:01:35.188Z", + "new_balance":"5683.17", + "value":"-5.15" + } + }, + { + "id":"6a0fd237-a5dd-4d29-bf6f-2d18e3ab6aa2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T05:26:07.427Z", + "completed":"2017-01-23T05:26:07.427Z", + "new_balance":"5681.75", + "value":"-1.42" + } + }, + { + "id":"2b4ae52e-8915-49f7-9d21-eaadea57c75b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T17:32:38.958Z", + "completed":"2017-01-26T17:32:38.958Z", + "new_balance":"5676.94", + "value":"-4.81" + } + }, + { + "id":"3d9e2b6f-2e98-4420-9571-4ffac4d33a1d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T20:24:27.280Z", + "completed":"2017-01-27T20:24:27.280Z", + "new_balance":"5782.57", + "value":"105.63" + } + }, + { + "id":"f9540035-20ab-4a24-a3b4-b452e436b4e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T13:04:15.706Z", + "completed":"2017-01-28T13:04:15.706Z", + "new_balance":"5779.13", + "value":"-3.44" + } + }, + { + "id":"fec1f123-e485-419b-9a11-1e7c5774816b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T03:16:12.161Z", + "completed":"2017-01-30T03:16:12.161Z", + "new_balance":"5774.86", + "value":"-4.27" + } + }, + { + "id":"a674d06b-d536-4143-b436-e75312836d6a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T01:33:36.921Z", + "completed":"2017-02-03T01:33:36.921Z", + "new_balance":"5716.63", + "value":"-58.23" + } + }, + { + "id":"b4bf1063-3da7-40ea-8224-84f7c45ba5aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T06:39:22.357Z", + "completed":"2017-02-03T06:39:22.357Z", + "new_balance":"5709.44", + "value":"-7.19" + } + }, + { + "id":"763a6706-ef2b-4be2-afef-2fa1e74078b7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T09:18:08.345Z", + "completed":"2017-02-03T09:18:08.345Z", + "new_balance":"5706.00", + "value":"-3.44" + } + }, + { + "id":"9ff35cda-e81b-4e61-9cf2-e0fc9c01ddfd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T14:08:51.987Z", + "completed":"2017-02-03T14:08:51.987Z", + "new_balance":"5703.54", + "value":"-2.46" + } + }, + { + "id":"a2eaf6aa-fc37-4b5a-891e-3de3627265c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T06:58:05.939Z", + "completed":"2017-02-08T06:58:05.939Z", + "new_balance":"5698.39", + "value":"-5.15" + } + }, + { + "id":"3bbec6f3-71f1-48e2-8317-540c16ae4cbc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T22:44:29.514Z", + "completed":"2017-02-08T22:44:29.514Z", + "new_balance":"5693.97", + "value":"-4.42" + } + }, + { + "id":"819637d4-0ede-4e81-9247-fce190e051f1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T12:31:26.467Z", + "completed":"2017-02-11T12:31:26.467Z", + "new_balance":"5695.08", + "value":"1.11" + } + }, + { + "id":"49ca13eb-94c8-45cd-aec0-58c1944d594b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T18:02:41.818Z", + "completed":"2017-02-13T18:02:41.818Z", + "new_balance":"5692.76", + "value":"-2.32" + } + }, + { + "id":"0f2d2687-4c4c-4e8c-be54-19daa8c53b9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T02:57:14.189Z", + "completed":"2017-02-14T02:57:14.189Z", + "new_balance":"5689.73", + "value":"-3.03" + } + }, + { + "id":"0341caa2-1f4f-4eaa-9678-ae3f8725fe88", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T16:55:37.525Z", + "completed":"2017-02-17T16:55:37.525Z", + "new_balance":"5688.33", + "value":"-1.40" + } + }, + { + "id":"38361e0d-b668-46c1-97cb-d3056ca91313", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T09:35:27.433Z", + "completed":"2017-02-21T09:35:27.433Z", + "new_balance":"5683.84", + "value":"-4.49" + } + }, + { + "id":"1db8b18f-fd6b-4c1e-9f48-7eb0979ea845", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T08:07:03.581Z", + "completed":"2017-02-23T08:07:03.581Z", + "new_balance":"5678.69", + "value":"-5.15" + } + }, + { + "id":"7d35c065-d7f0-4728-9805-e6a39445e79b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T15:24:05.463Z", + "completed":"2017-02-23T15:24:05.463Z", + "new_balance":"5674.45", + "value":"-4.24" + } + }, + { + "id":"2b79a3cc-8715-403c-9be7-93050011588e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T05:42:21.785Z", + "completed":"2017-02-24T05:42:21.785Z", + "new_balance":"5673.05", + "value":"-1.40" + } + }, + { + "id":"30d2854c-2937-478e-9a51-cb1f2228595a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T03:21:54.120Z", + "completed":"2017-02-27T03:21:54.120Z", + "new_balance":"5671.03", + "value":"-2.02" + } + }, + { + "id":"52d7b178-82b0-4bea-8baa-6075984a5601", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T19:01:44.273Z", + "completed":"2017-02-27T19:01:44.273Z", + "new_balance":"5666.22", + "value":"-4.81" + } + }, + { + "id":"bebdebb8-be87-4d92-9552-027aa554ae77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T21:35:00.046Z", + "completed":"2017-02-27T21:35:00.046Z", + "new_balance":"5771.85", + "value":"105.63" + } + }, + { + "id":"3385b1c7-9651-4e24-8fd7-dcd72ae5f248", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T03:35:27.727Z", + "completed":"2017-02-28T03:35:27.727Z", + "new_balance":"5768.41", + "value":"-3.44" + } + }, + { + "id":"04d5957d-9706-4fba-8afa-bae89a3a4347", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T10:13:43.964Z", + "completed":"2017-02-28T10:13:43.964Z", + "new_balance":"5764.14", + "value":"-4.27" + } + }, + { + "id":"7eb8c06f-cfb4-4df8-857e-d08b38018b1e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T12:01:54.817Z", + "completed":"2017-03-01T12:01:54.817Z", + "new_balance":"5757.74", + "value":"-6.40" + } + }, + { + "id":"be006c2d-e04d-41c5-970d-27ee26fcb267", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T05:56:23.147Z", + "completed":"2017-03-03T05:56:23.147Z", + "new_balance":"5755.28", + "value":"-2.46" + } + }, + { + "id":"420e2c4b-f522-4da8-89d0-d23360911465", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T09:57:11.885Z", + "completed":"2017-03-03T09:57:11.885Z", + "new_balance":"5748.09", + "value":"-7.19" + } + }, + { + "id":"8b541708-3f63-46be-b976-7dce7f43ad08", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T21:33:29.824Z", + "completed":"2017-03-03T21:33:29.824Z", + "new_balance":"5689.86", + "value":"-58.23" + } + }, + { + "id":"1dfaaa51-064d-4465-9d54-b48375e18fbf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T23:13:05.965Z", + "completed":"2017-03-03T23:13:05.965Z", + "new_balance":"5686.42", + "value":"-3.44" + } + }, + { + "id":"f3a1121e-b3d9-4200-b249-c9fceac89975", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T03:57:20.467Z", + "completed":"2017-03-05T03:57:20.467Z", + "new_balance":"5681.53", + "value":"-4.89" + } + }, + { + "id":"bd091475-6867-4644-befa-672c7caf3f9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T21:12:21.664Z", + "completed":"2017-03-05T21:12:21.664Z", + "new_balance":"5676.38", + "value":"-5.15" + } + }, + { + "id":"fc3a3885-ea33-4952-b6a1-2eebc355e351", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T10:30:17.507Z", + "completed":"2017-03-07T10:30:17.507Z", + "new_balance":"5674.51", + "value":"-1.87" + } + }, + { + "id":"6918689d-d8df-4339-95b3-0b0fc26bc0a2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T12:43:21.986Z", + "completed":"2017-03-09T12:43:21.986Z", + "new_balance":"5669.36", + "value":"-5.15" + } + }, + { + "id":"b90c518b-c755-4814-974f-c79c3925dd18", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:51:55.389Z", + "completed":"2017-03-11T19:51:55.389Z", + "new_balance":"5667.78", + "value":"-1.58" + } + }, + { + "id":"10bed036-3119-4bf4-88f7-4606ec0517a6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T07:54:54.352Z", + "completed":"2017-03-13T07:54:54.352Z", + "new_balance":"5660.86", + "value":"-6.92" + } + }, + { + "id":"da837667-bb3f-4057-b266-e003877021e9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:33:57.443Z", + "completed":"2017-03-14T08:33:57.443Z", + "new_balance":"5659.62", + "value":"-1.24" + } + }, + { + "id":"c6bc414d-3f00-4b8f-b31f-70c2bcb785e4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T21:41:58.701Z", + "completed":"2017-03-14T21:41:58.701Z", + "new_balance":"5667.91", + "value":"8.29" + } + }, + { + "id":"0e9c88e6-3f6c-4d85-9747-d69430c3f261", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T00:08:35.708Z", + "completed":"2017-03-15T00:08:35.708Z", + "new_balance":"5663.64", + "value":"-4.27" + } + }, + { + "id":"f4b193e1-2a90-472d-8ed5-dc2534fd441b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T05:56:55.453Z", + "completed":"2017-03-26T05:56:55.453Z", + "new_balance":"5661.65", + "value":"-1.99" + } + }, + { + "id":"91599758-2563-44bf-b25f-fbd844ca4c54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T14:36:15.013Z", + "completed":"2017-03-26T14:36:15.013Z", + "new_balance":"5659.51", + "value":"-2.14" + } + }, + { + "id":"0c1b89c4-b3ce-45a7-9186-06cab0219a7f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T19:18:05.915Z", + "completed":"2017-03-26T19:18:05.915Z", + "new_balance":"5654.82", + "value":"-4.69" + } + }, + { + "id":"d6e42ab1-476a-46ac-9eb9-f693f2b299c0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T07:22:09.356Z", + "completed":"2017-03-27T07:22:09.356Z", + "new_balance":"5649.67", + "value":"-5.15" + } + }, + { + "id":"77be63ea-2cee-4fd5-af92-3a1b116bd6d3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T14:26:16.456Z", + "completed":"2017-03-27T14:26:16.456Z", + "new_balance":"5755.30", + "value":"105.63" + } + }, + { + "id":"7ec291a1-6399-4519-8955-0d7dc5c10846", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T20:17:50.871Z", + "completed":"2017-03-27T20:17:50.871Z", + "new_balance":"5750.88", + "value":"-4.42" + } + }, + { + "id":"621486f6-b7f0-413a-ac8c-187f2bf51961", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T06:09:03.095Z", + "completed":"2017-03-28T06:09:03.095Z", + "new_balance":"5747.44", + "value":"-3.44" + } + }, + { + "id":"caf69241-fe1d-4d75-bab7-204946af7f3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T20:07:03.745Z", + "completed":"2017-03-30T20:07:03.745Z", + "new_balance":"5743.17", + "value":"-4.27" + } + }, + { + "id":"acff5343-6f56-4631-9a1a-bc53e6103916", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T06:53:41.818Z", + "completed":"2017-04-01T06:53:41.818Z", + "new_balance":"5740.71", + "value":"-2.46" + } + }, + { + "id":"3477800c-8faf-47f9-9074-3b782c8806f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:09:42.762Z", + "completed":"2017-04-01T10:09:42.762Z", + "new_balance":"5737.27", + "value":"-3.44" + } + }, + { + "id":"98783bbf-5cf9-4118-9ba4-781b9e03a8b4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T14:05:48.777Z", + "completed":"2017-04-01T14:05:48.777Z", + "new_balance":"5679.04", + "value":"-58.23" + } + }, + { + "id":"0a677d83-c62b-4f39-9075-dda0531c892f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T20:16:24.680Z", + "completed":"2017-04-01T20:16:24.680Z", + "new_balance":"5671.85", + "value":"-7.19" + } + }, + { + "id":"9649b5eb-f33c-4a66-96a6-999f056f9659", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:02:12.975Z", + "completed":"2017-04-01T22:02:12.975Z", + "new_balance":"5665.45", + "value":"-6.40" + } + }, + { + "id":"6df6da13-e836-49fe-a050-964edfcd734d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T01:04:17.778Z", + "completed":"2017-04-05T01:04:17.778Z", + "new_balance":"5660.30", + "value":"-5.15" + } + }, + { + "id":"50063dec-b4a2-4d91-9967-19fa47960f3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T08:07:39.443Z", + "completed":"2017-04-05T08:07:39.443Z", + "new_balance":"5659.15", + "value":"-1.15" + } + }, + { + "id":"075f463b-8576-4d52-84c1-1263bf760bf5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:41:55.773Z", + "completed":"2017-04-05T17:41:55.773Z", + "new_balance":"5654.73", + "value":"-4.42" + } + }, + { + "id":"19847751-0c42-452d-b884-135fa9d862db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T17:59:56.709Z", + "completed":"2017-04-05T17:59:56.709Z", + "new_balance":"5651.06", + "value":"-3.67" + } + }, + { + "id":"dfa2cb6b-fadd-4340-b20e-d47ffa2aee6f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T07:10:59.190Z", + "completed":"2017-04-07T07:10:59.190Z", + "new_balance":"5648.74", + "value":"-2.32" + } + }, + { + "id":"1a0f1933-f21b-4bd5-aa2d-e338a85cca06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T06:23:15.844Z", + "completed":"2017-04-09T06:23:15.844Z", + "new_balance":"5643.59", + "value":"-5.15" + } + }, + { + "id":"423565f0-ebcb-4731-a0c1-5e9626e9baa3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T21:33:10.270Z", + "completed":"2017-04-09T21:33:10.270Z", + "new_balance":"5641.21", + "value":"-2.38" + } + }, + { + "id":"966c549e-3818-4d3f-965e-d0f4a9a3cf70", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T05:00:00.042Z", + "completed":"2017-04-10T05:00:00.042Z", + "new_balance":"5638.75", + "value":"-2.46" + } + }, + { + "id":"56141d69-9b4c-4e49-81c7-a36e1d518661", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T13:23:59.600Z", + "completed":"2017-04-10T13:23:59.600Z", + "new_balance":"5636.12", + "value":"-2.63" + } + }, + { + "id":"b0bcdad9-3a86-4c88-bffd-7aee16f404aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T16:53:09.955Z", + "completed":"2017-04-10T16:53:09.955Z", + "new_balance":"5631.65", + "value":"-4.47" + } + }, + { + "id":"9ae842fb-3ecd-417b-a096-4c83798a7c30", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T22:47:05.010Z", + "completed":"2017-04-10T22:47:05.010Z", + "new_balance":"5628.92", + "value":"-2.73" + } + }, + { + "id":"96ced8ab-1bf0-417e-a5c0-a13c33fe0ad6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T01:50:39.068Z", + "completed":"2017-04-11T01:50:39.068Z", + "new_balance":"5622.17", + "value":"-6.75" + } + }, + { + "id":"fe133951-4d73-4c55-b6af-e331b5b0fe54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T07:28:09.125Z", + "completed":"2017-04-11T07:28:09.125Z", + "new_balance":"5619.75", + "value":"-2.42" + } + }, + { + "id":"50087850-0178-4ad4-ac8d-396f7c173361", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T12:48:12.178Z", + "completed":"2017-04-11T12:48:12.178Z", + "new_balance":"5617.16", + "value":"-2.59" + } + }, + { + "id":"5cbe63ee-3246-467b-b916-56f6e3b745e4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T17:25:32.985Z", + "completed":"2017-04-11T17:25:32.985Z", + "new_balance":"5612.01", + "value":"-5.15" + } + }, + { + "id":"c774460b-f0c0-484e-a977-dabd374bfc59", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T19:13:37.303Z", + "completed":"2017-04-11T19:13:37.303Z", + "new_balance":"5611.05", + "value":"-0.96" + } + }, + { + "id":"afbdd9d7-7191-48da-b969-0a5bbcd55952", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:29:39.806Z", + "completed":"2017-04-21T23:29:39.806Z", + "new_balance":"5605.90", + "value":"-5.15" + } + }, + { + "id":"655f8f73-65ae-4667-ab05-bd65e09a385b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:27:09.167Z", + "completed":"2017-04-23T07:27:09.167Z", + "new_balance":"5604.48", + "value":"-1.42" + } + }, + { + "id":"2f737133-291a-4889-a3a3-b7aec712b5e8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T04:34:30.472Z", + "completed":"2017-04-29T04:34:30.472Z", + "new_balance":"5599.67", + "value":"-4.81" + } + }, + { + "id":"9c9bb002-955d-4c6e-87a6-2222bc714970", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T12:42:30.782Z", + "completed":"2017-04-29T12:42:30.782Z", + "new_balance":"5596.23", + "value":"-3.44" + } + }, + { + "id":"0c6a0e3c-db3e-442e-9286-4d8d8ee81892", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T23:34:48.337Z", + "completed":"2017-04-29T23:34:48.337Z", + "new_balance":"5701.86", + "value":"105.63" + } + }, + { + "id":"722bcd4a-4080-407d-806a-274203e33879", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T22:29:28.061Z", + "completed":"2017-04-30T22:29:28.061Z", + "new_balance":"5697.59", + "value":"-4.27" + } + }, + { + "id":"7caa0086-5914-449c-8812-9783c2e94b72", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T00:39:52.776Z", + "completed":"2017-05-02T00:39:52.776Z", + "new_balance":"5690.40", + "value":"-7.19" + } + }, + { + "id":"9b875593-e7ac-44c6-8e20-4acd71c74398", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T00:59:18.280Z", + "completed":"2017-05-02T00:59:18.280Z", + "new_balance":"5684.00", + "value":"-6.40" + } + }, + { + "id":"8c4a4dd2-930f-476e-8d56-0be6fff59f82", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T12:46:29.771Z", + "completed":"2017-05-02T12:46:29.771Z", + "new_balance":"5681.54", + "value":"-2.46" + } + }, + { + "id":"cc2c4f27-9fb0-45e9-bd02-1047f20a1b00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T15:51:11.019Z", + "completed":"2017-05-02T15:51:11.019Z", + "new_balance":"5623.31", + "value":"-58.23" + } + }, + { + "id":"701b8f64-f012-45d4-9b93-bf96a52e7a6c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T08:17:16.636Z", + "completed":"2017-05-06T08:17:16.636Z", + "new_balance":"5618.89", + "value":"-4.42" + } + }, + { + "id":"bb39afbd-07d0-4d08-861f-344fae966249", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:33:17.319Z", + "completed":"2017-05-07T02:33:17.319Z", + "new_balance":"5616.57", + "value":"-2.32" + } + }, + { + "id":"0d39fcca-933b-493e-bdce-9f731cccca93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T08:57:03.039Z", + "completed":"2017-05-07T08:57:03.039Z", + "new_balance":"5612.08", + "value":"-4.49" + } + }, + { + "id":"11a2005a-9540-4330-bbdf-05de1d6aba81", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T13:32:55.091Z", + "completed":"2017-05-07T13:32:55.091Z", + "new_balance":"5609.05", + "value":"-3.03" + } + }, + { + "id":"017fed95-fffc-452f-a37b-3e0c834539c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T21:47:06.815Z", + "completed":"2017-05-07T21:47:06.815Z", + "new_balance":"5607.65", + "value":"-1.40" + } + }, + { + "id":"076aedd5-e1ae-4b38-961d-0baa24906af8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T11:03:16.223Z", + "completed":"2017-05-08T11:03:16.223Z", + "new_balance":"5603.41", + "value":"-4.24" + } + }, + { + "id":"67f696b0-169b-4c61-931a-9074c333a932", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T22:33:12.075Z", + "completed":"2017-05-09T22:33:12.075Z", + "new_balance":"5599.97", + "value":"-3.44" + } + }, + { + "id":"811e1df7-8ecf-4007-ba91-c55820c195fd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T15:10:22.598Z", + "completed":"2017-05-13T15:10:22.598Z", + "new_balance":"5594.82", + "value":"-5.15" + } + }, + { + "id":"3a8050da-389a-4cbe-a806-878be7de2ef2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T14:29:18.995Z", + "completed":"2017-05-26T14:29:18.995Z", + "new_balance":"5589.67", + "value":"-5.15" + } + }, + { + "id":"068d3948-f9a8-4da8-b66b-129f6e53ccdb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T15:56:48.444Z", + "completed":"2017-05-26T15:56:48.444Z", + "new_balance":"5588.27", + "value":"-1.40" + } + }, + { + "id":"78180854-a41d-405f-b020-72c34c1069d0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:31:38.432Z", + "completed":"2017-05-27T02:31:38.432Z", + "new_balance":"5583.46", + "value":"-4.81" + } + }, + { + "id":"c8a0a971-ffb4-42e9-a01d-c06641289774", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T22:11:44.865Z", + "completed":"2017-05-27T22:11:44.865Z", + "new_balance":"5581.44", + "value":"-2.02" + } + }, + { + "id":"41a6f6b4-314c-44b7-9a7d-356995d9aa38", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T00:59:56.557Z", + "completed":"2017-05-30T00:59:56.557Z", + "new_balance":"5577.17", + "value":"-4.27" + } + }, + { + "id":"33deaeca-5d48-4da5-9654-7488caca7490", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T10:13:57.934Z", + "completed":"2017-05-30T10:13:57.934Z", + "new_balance":"5682.80", + "value":"105.63" + } + }, + { + "id":"951e70cc-9cba-4651-aac1-69c3a2dba8f5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T18:16:49.838Z", + "completed":"2017-05-30T18:16:49.838Z", + "new_balance":"5679.36", + "value":"-3.44" + } + }, + { + "id":"12533e52-6dca-4a51-a50e-1327cfe3fadc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:46:40.432Z", + "completed":"2017-06-01T02:46:40.432Z", + "new_balance":"5672.96", + "value":"-6.40" + } + }, + { + "id":"0547407b-bcec-45ad-88f4-c72db7779adf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:18:12.048Z", + "completed":"2017-06-01T07:18:12.048Z", + "new_balance":"5667.81", + "value":"-5.15" + } + }, + { + "id":"f60f0ab6-a6f0-4399-8a32-4893bcdc1444", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T09:38:33.624Z", + "completed":"2017-06-01T09:38:33.624Z", + "new_balance":"5664.37", + "value":"-3.44" + } + }, + { + "id":"1fb981a0-fbe5-4572-9560-6da51115db8e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T09:55:26.268Z", + "completed":"2017-06-01T09:55:26.268Z", + "new_balance":"5659.22", + "value":"-5.15" + } + }, + { + "id":"10d7dd07-8c0e-4a68-a275-c6373dc6a225", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T12:54:46.172Z", + "completed":"2017-06-01T12:54:46.172Z", + "new_balance":"5652.03", + "value":"-7.19" + } + }, + { + "id":"1899edf2-6d4a-4b93-a400-202ef05eeac9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T17:29:02.430Z", + "completed":"2017-06-01T17:29:02.430Z", + "new_balance":"5650.16", + "value":"-1.87" + } + }, + { + "id":"9685cba9-b8ba-4b47-9e4b-d95381fc9cc9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T17:40:09.533Z", + "completed":"2017-06-01T17:40:09.533Z", + "new_balance":"5591.93", + "value":"-58.23" + } + }, + { + "id":"b35fd522-aee3-4599-9431-92387ab501a4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T19:11:13.849Z", + "completed":"2017-06-01T19:11:13.849Z", + "new_balance":"5589.47", + "value":"-2.46" + } + }, + { + "id":"8925950e-1c58-42a2-bf8f-17ba2654ebfd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T19:32:53.630Z", + "completed":"2017-06-01T19:32:53.630Z", + "new_balance":"5584.58", + "value":"-4.89" + } + }, + { + "id":"2725f6b0-926b-419e-ba13-9e1d3f0e49b7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T18:58:40.401Z", + "completed":"2017-06-02T18:58:40.401Z", + "new_balance":"5583.34", + "value":"-1.24" + } + }, + { + "id":"0e525293-2351-492f-902a-a87c2506ca8c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T19:49:16.357Z", + "completed":"2017-06-02T19:49:16.357Z", + "new_balance":"5581.76", + "value":"-1.58" + } + }, + { + "id":"414d0cfa-fa6f-492f-ad51-56074da97dae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:33:02.476Z", + "completed":"2017-06-02T23:33:02.476Z", + "new_balance":"5574.84", + "value":"-6.92" + } + }, + { + "id":"e2aa79a8-db3b-455e-b3fd-0160fa0d97d4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T00:43:14.975Z", + "completed":"2017-06-04T00:43:14.975Z", + "new_balance":"5570.15", + "value":"-4.69" + } + }, + { + "id":"64f60385-3495-4560-9667-936db05fabba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:36:39.651Z", + "completed":"2017-06-04T07:36:39.651Z", + "new_balance":"5568.01", + "value":"-2.14" + } + }, + { + "id":"05731b1f-0834-4afe-ac91-353fc61deb11", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T11:43:32.489Z", + "completed":"2017-06-04T11:43:32.489Z", + "new_balance":"5563.74", + "value":"-4.27" + } + }, + { + "id":"aff3cec7-9bda-4e76-881b-2956f4520667", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T00:20:49.704Z", + "completed":"2017-06-05T00:20:49.704Z", + "new_balance":"5559.32", + "value":"-4.42" + } + }, + { + "id":"9417c598-ec73-45e4-a769-f30b283272b2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T14:10:51.548Z", + "completed":"2017-06-05T14:10:51.548Z", + "new_balance":"5557.33", + "value":"-1.99" + } + }, + { + "id":"25cee4dc-3cf0-4617-bedb-838d1f5519fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T14:56:12.978Z", + "completed":"2017-06-18T14:56:12.978Z", + "new_balance":"5552.18", + "value":"-5.15" + } + }, + { + "id":"ec6953df-ddb8-4557-aba1-8afc059cd2be", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T00:25:20.640Z", + "completed":"2017-06-30T00:25:20.640Z", + "new_balance":"5548.74", + "value":"-3.44" + } + }, + { + "id":"9dc666cb-71b0-402e-8ac7-b2b5b6d36e21", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T10:48:52.498Z", + "completed":"2017-06-30T10:48:52.498Z", + "new_balance":"5654.37", + "value":"105.63" + } + }, + { + "id":"ad60ba36-d2fb-43b1-975b-1a68b3edefc5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T12:00:19.569Z", + "completed":"2017-06-30T12:00:19.569Z", + "new_balance":"5651.26", + "value":"-3.11" + } + }, + { + "id":"0e1057fd-b151-434b-a0e4-c94dcb912f19", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T14:01:48.045Z", + "completed":"2017-06-30T14:01:48.045Z", + "new_balance":"5646.99", + "value":"-4.27" + } + }, + { + "id":"22ecc7e5-85ac-42ba-b1b3-2c828fbe3ffa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T20:42:38.139Z", + "completed":"2017-07-01T20:42:38.139Z", + "new_balance":"5640.59", + "value":"-6.40" + } + }, + { + "id":"8a0c9436-69bd-4322-844e-4328e2a34ed4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T00:14:51.508Z", + "completed":"2017-07-03T00:14:51.508Z", + "new_balance":"5633.40", + "value":"-7.19" + } + }, + { + "id":"893e4d16-52c8-49f4-a57f-c05ad308aa0e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T10:19:15.442Z", + "completed":"2017-07-03T10:19:15.442Z", + "new_balance":"5630.94", + "value":"-2.46" + } + }, + { + "id":"f05c7ff8-c374-46c4-8694-240f47256ee6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T13:10:00.901Z", + "completed":"2017-07-03T13:10:00.901Z", + "new_balance":"5627.50", + "value":"-3.44" + } + }, + { + "id":"7676519f-4894-44ef-8f99-256b8f185810", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T15:10:28.863Z", + "completed":"2017-07-03T15:10:28.863Z", + "new_balance":"5569.27", + "value":"-58.23" + } + }, + { + "id":"80d5b629-b098-4684-8917-4dfa797658f8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T11:52:13.063Z", + "completed":"2017-07-05T11:52:13.063Z", + "new_balance":"5564.85", + "value":"-4.42" + } + }, + { + "id":"72ab6601-7268-458c-936b-3cd69e7b6b6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T14:14:59.858Z", + "completed":"2017-07-05T14:14:59.858Z", + "new_balance":"5559.70", + "value":"-5.15" + } + }, + { + "id":"9761ac25-b2d9-4a20-977e-d313723eaead", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T18:37:55.381Z", + "completed":"2017-07-05T18:37:55.381Z", + "new_balance":"5558.55", + "value":"-1.15" + } + }, + { + "id":"8e3dfa5f-f876-479d-baa3-4d367f1d63e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T15:54:16.573Z", + "completed":"2017-07-06T15:54:16.573Z", + "new_balance":"5554.88", + "value":"-3.67" + } + }, + { + "id":"f817eb21-8832-4f1d-8a51-bd36cd0cb58d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T16:41:39.297Z", + "completed":"2017-07-06T16:41:39.297Z", + "new_balance":"5552.56", + "value":"-2.32" + } + }, + { + "id":"6dd8aeb2-15b3-44a9-809c-c6ba2694a42d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T11:30:41.329Z", + "completed":"2017-07-07T11:30:41.329Z", + "new_balance":"5548.09", + "value":"-4.47" + } + }, + { + "id":"edfb7709-0381-48dc-9c03-c6cb847e1ea6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T12:07:14.194Z", + "completed":"2017-07-10T12:07:14.194Z", + "new_balance":"5542.94", + "value":"-5.15" + } + }, + { + "id":"0dd0525d-9d60-4444-a0cd-19effb8a733e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T21:27:00.630Z", + "completed":"2017-07-10T21:27:00.630Z", + "new_balance":"5540.56", + "value":"-2.38" + } + }, + { + "id":"9c51c690-3042-4133-bebe-1e2c38d4ab60", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T01:35:05.908Z", + "completed":"2017-07-12T01:35:05.908Z", + "new_balance":"5537.83", + "value":"-2.73" + } + }, + { + "id":"e9304553-b01a-46e8-9c31-00e9aa283107", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T03:19:18.652Z", + "completed":"2017-07-12T03:19:18.652Z", + "new_balance":"5533.36", + "value":"-4.47" + } + }, + { + "id":"b33fb902-6412-48a1-9752-f3f5ebfd4b63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T07:22:06.794Z", + "completed":"2017-07-12T07:22:06.794Z", + "new_balance":"5530.90", + "value":"-2.46" + } + }, + { + "id":"9479b457-59d1-4ae3-bc3f-8eab857db478", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T17:46:17.187Z", + "completed":"2017-07-15T17:46:17.187Z", + "new_balance":"5528.27", + "value":"-2.63" + } + }, + { + "id":"b4ad6c7a-dfa3-4e54-8bf9-69d96395b2d7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T09:30:57.828Z", + "completed":"2017-07-16T09:30:57.828Z", + "new_balance":"5523.12", + "value":"-5.15" + } + }, + { + "id":"27c18412-5be8-445b-9d0c-424784101685", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T11:20:20.897Z", + "completed":"2017-07-16T11:20:20.897Z", + "new_balance":"5522.16", + "value":"-0.96" + } + }, + { + "id":"49cd07c0-46ad-4712-a5ee-312fec4f0053", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T19:35:46.958Z", + "completed":"2017-07-17T19:35:46.958Z", + "new_balance":"5515.41", + "value":"-6.75" + } + }, + { + "id":"98127414-daf3-4a2c-8246-e00c42232cbf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T21:20:42.160Z", + "completed":"2017-07-17T21:20:42.160Z", + "new_balance":"5512.82", + "value":"-2.59" + } + }, + { + "id":"78eb295f-c66e-4dfc-a7af-2b0dffacd3cf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T16:30:56.115Z", + "completed":"2017-07-19T16:30:56.115Z", + "new_balance":"5510.40", + "value":"-2.42" + } + }, + { + "id":"9953fe3c-6440-4370-b2ff-89e9f12e6ee1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T03:59:45.957Z", + "completed":"2017-07-20T03:59:45.957Z", + "new_balance":"5505.25", + "value":"-5.15" + } + }, + { + "id":"5d30bddc-6eff-4d31-b012-97b00c2fb52c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T05:01:31.247Z", + "completed":"2017-07-23T05:01:31.247Z", + "new_balance":"5503.83", + "value":"-1.42" + } + }, + { + "id":"2ea1f9c5-b2f6-48ed-9963-807598dcfdaf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T21:15:06.685Z", + "completed":"2017-07-26T21:15:06.685Z", + "new_balance":"5499.02", + "value":"-4.81" + } + }, + { + "id":"d221986f-25ae-474a-b734-47269d14cba8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T09:33:17.299Z", + "completed":"2017-07-27T09:33:17.299Z", + "new_balance":"5604.65", + "value":"105.63" + } + }, + { + "id":"d75d6ead-d034-41e2-a256-da7992926d89", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T04:14:52.700Z", + "completed":"2017-07-28T04:14:52.700Z", + "new_balance":"5601.21", + "value":"-3.44" + } + }, + { + "id":"d1da19fd-5ed0-45dd-a421-0c93da94ea5f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T05:46:55.480Z", + "completed":"2017-07-30T05:46:55.480Z", + "new_balance":"5596.94", + "value":"-4.27" + } + }, + { + "id":"d6864cd7-805c-414d-9369-5d2091c0f88f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T22:03:59.287Z", + "completed":"2017-08-01T22:03:59.287Z", + "new_balance":"5590.54", + "value":"-6.40" + } + }, + { + "id":"f6780a58-f8ef-437e-a07c-5bfdab1429cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T04:06:38.117Z", + "completed":"2017-08-03T04:06:38.117Z", + "new_balance":"5583.35", + "value":"-7.19" + } + }, + { + "id":"d647dfdb-f529-40d4-8509-835d7ce8f10e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T13:37:41.649Z", + "completed":"2017-08-03T13:37:41.649Z", + "new_balance":"5525.12", + "value":"-58.23" + } + }, + { + "id":"560383b1-6aa7-4a4d-8c59-4f180f3552c9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T14:12:17.277Z", + "completed":"2017-08-03T14:12:17.277Z", + "new_balance":"5521.68", + "value":"-3.44" + } + }, + { + "id":"196a9a86-28d9-477a-94ee-7497b6d03a13", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T16:00:26.741Z", + "completed":"2017-08-03T16:00:26.741Z", + "new_balance":"5519.22", + "value":"-2.46" + } + }, + { + "id":"09943675-934a-4e24-9743-effe2592d4e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T04:30:25.644Z", + "completed":"2017-08-08T04:30:25.644Z", + "new_balance":"5514.07", + "value":"-5.15" + } + }, + { + "id":"b9a879f7-ced3-485f-b7a9-b5141fa9c603", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T13:08:18.514Z", + "completed":"2017-08-08T13:08:18.514Z", + "new_balance":"5509.65", + "value":"-4.42" + } + }, + { + "id":"23829df2-3843-4d21-bf2a-ecc11334264d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T19:20:51.539Z", + "completed":"2017-08-11T19:20:51.539Z", + "new_balance":"5510.76", + "value":"1.11" + } + }, + { + "id":"8163620c-4e89-4996-a4a9-058a3b841eec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T09:25:39.125Z", + "completed":"2017-08-13T09:25:39.125Z", + "new_balance":"5508.44", + "value":"-2.32" + } + }, + { + "id":"5ac82509-f952-437c-97d9-4f542cd70dd0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T15:53:18.151Z", + "completed":"2017-08-14T15:53:18.151Z", + "new_balance":"5505.41", + "value":"-3.03" + } + }, + { + "id":"a8cab6c6-4f7c-4527-8a84-d267b4e7054d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T23:33:02.315Z", + "completed":"2017-08-17T23:33:02.315Z", + "new_balance":"5504.01", + "value":"-1.40" + } + }, + { + "id":"3a437dfb-3980-4614-8bb6-04255fd949b2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T19:46:18.401Z", + "completed":"2017-08-21T19:46:18.401Z", + "new_balance":"5499.52", + "value":"-4.49" + } + }, + { + "id":"5e237b12-69aa-4896-a3dc-b9f34e096501", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T14:34:19.935Z", + "completed":"2017-08-23T14:34:19.935Z", + "new_balance":"5494.37", + "value":"-5.15" + } + }, + { + "id":"e05d2ce9-9309-43f5-9aba-5df04ffd8256", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T19:09:35.020Z", + "completed":"2017-08-23T19:09:35.020Z", + "new_balance":"5490.13", + "value":"-4.24" + } + }, + { + "id":"67f9e8ee-4422-4040-a27e-d97084f12868", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T04:06:58.762Z", + "completed":"2017-08-24T04:06:58.762Z", + "new_balance":"5488.73", + "value":"-1.40" + } + }, + { + "id":"08aee059-4961-4abc-8e7c-b322d2c7c624", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T03:38:43.913Z", + "completed":"2017-08-27T03:38:43.913Z", + "new_balance":"5594.36", + "value":"105.63" + } + }, + { + "id":"2e4e8b12-243d-46af-aace-fa9355849f51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T09:37:34.202Z", + "completed":"2017-08-27T09:37:34.202Z", + "new_balance":"5589.55", + "value":"-4.81" + } + }, + { + "id":"c2e85900-2015-420b-9bde-25d65b9be5a0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T15:41:58.592Z", + "completed":"2017-08-27T15:41:58.592Z", + "new_balance":"5587.53", + "value":"-2.02" + } + }, + { + "id":"c21bfa9e-3b34-44df-9de4-bedac2933aa7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:06:30.100Z", + "completed":"2017-08-28T19:06:30.100Z", + "new_balance":"5584.09", + "value":"-3.44" + } + }, + { + "id":"b36ae7de-e4bc-400b-ba53-7cc262556ae9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T12:28:41.892Z", + "completed":"2017-08-30T12:28:41.892Z", + "new_balance":"5579.82", + "value":"-4.27" + } + }, + { + "id":"53bf4c64-85fb-4c66-93f8-f9edbced39e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:58:17.964Z", + "completed":"2017-09-01T14:58:17.964Z", + "new_balance":"5573.42", + "value":"-6.40" + } + }, + { + "id":"9afcd83f-9b4a-4664-8095-1ae0fce3ede0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T05:39:22.177Z", + "completed":"2017-09-03T05:39:22.177Z", + "new_balance":"5515.19", + "value":"-58.23" + } + }, + { + "id":"f85c4e4f-46d0-4aa1-b35c-1b2c47849b6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T11:51:41.085Z", + "completed":"2017-09-03T11:51:41.085Z", + "new_balance":"5511.75", + "value":"-3.44" + } + }, + { + "id":"5f62198e-f877-481b-9e10-4d16b33b88d5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T13:52:44.720Z", + "completed":"2017-09-03T13:52:44.720Z", + "new_balance":"5509.29", + "value":"-2.46" + } + }, + { + "id":"a36b3821-f39c-41da-afcf-cefc41f72ad1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T14:36:57.881Z", + "completed":"2017-09-03T14:36:57.881Z", + "new_balance":"5502.10", + "value":"-7.19" + } + }, + { + "id":"4925aec3-9dc1-4ef2-99cc-c19b98978e5c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T08:35:17.341Z", + "completed":"2017-09-05T08:35:17.341Z", + "new_balance":"5496.95", + "value":"-5.15" + } + }, + { + "id":"9ac829a7-e043-4296-8741-7dfc9a92cf73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T20:56:50.660Z", + "completed":"2017-09-05T20:56:50.660Z", + "new_balance":"5492.06", + "value":"-4.89" + } + }, + { + "id":"99c2690c-5c69-4a70-9974-1d727104cda2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T10:03:46.694Z", + "completed":"2017-09-07T10:03:46.694Z", + "new_balance":"5490.19", + "value":"-1.87" + } + }, + { + "id":"176cdc54-6162-4049-a61c-6ba31afb6731", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T12:10:28.703Z", + "completed":"2017-09-09T12:10:28.703Z", + "new_balance":"5485.04", + "value":"-5.15" + } + }, + { + "id":"8866d80e-232b-4226-a24d-17bc431936f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T20:43:04.336Z", + "completed":"2017-09-11T20:43:04.336Z", + "new_balance":"5483.46", + "value":"-1.58" + } + }, + { + "id":"28673ff7-f81a-48b2-bcd9-b607c1040c24", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T23:36:46.587Z", + "completed":"2017-09-13T23:36:46.587Z", + "new_balance":"5476.54", + "value":"-6.92" + } + }, + { + "id":"98171a74-adbf-4c3d-8766-96762bc79ddd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:07:58.913Z", + "completed":"2017-09-14T05:07:58.913Z", + "new_balance":"5475.30", + "value":"-1.24" + } + }, + { + "id":"7a3e120d-558e-43b7-bb32-d0e53547c4a6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T19:20:05.449Z", + "completed":"2017-09-14T19:20:05.449Z", + "new_balance":"5483.59", + "value":"8.29" + } + }, + { + "id":"47997942-a43d-415f-92b6-ec24c300c7f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T22:42:06.567Z", + "completed":"2017-09-15T22:42:06.567Z", + "new_balance":"5479.32", + "value":"-4.27" + } + }, + { + "id":"b746c7c4-5d72-4615-8df6-b481c535a052", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T03:49:42.594Z", + "completed":"2017-09-26T03:49:42.594Z", + "new_balance":"5477.18", + "value":"-2.14" + } + }, + { + "id":"ea30a1c5-579e-44d0-bc99-76fb403d9304", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:03:02.011Z", + "completed":"2017-09-26T07:03:02.011Z", + "new_balance":"5475.19", + "value":"-1.99" + } + }, + { + "id":"d3048750-70b4-4cd4-84e2-bc47156c5fd9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T08:35:33.017Z", + "completed":"2017-09-26T08:35:33.017Z", + "new_balance":"5470.50", + "value":"-4.69" + } + }, + { + "id":"40648676-6385-4c41-a482-34ef6505088a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T18:31:19.340Z", + "completed":"2017-09-27T18:31:19.340Z", + "new_balance":"5465.35", + "value":"-5.15" + } + }, + { + "id":"41f560c6-4df6-4db7-b4fe-424d99ca81db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T21:18:14.653Z", + "completed":"2017-09-27T21:18:14.653Z", + "new_balance":"5460.93", + "value":"-4.42" + } + }, + { + "id":"c3a21353-5ce5-4fa3-bc8d-6d8196428e43", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T21:19:15.014Z", + "completed":"2017-09-27T21:19:15.014Z", + "new_balance":"5566.56", + "value":"105.63" + } + }, + { + "id":"dfb81f14-2cc1-46fd-ac4f-5dbe572d5f5b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T01:10:27.731Z", + "completed":"2017-09-28T01:10:27.731Z", + "new_balance":"5563.12", + "value":"-3.44" + } + }, + { + "id":"8df561aa-c4b3-46d9-92ec-c156c0a06465", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T15:08:02.152Z", + "completed":"2017-09-30T15:08:02.152Z", + "new_balance":"5558.85", + "value":"-4.27" + } + }, + { + "id":"56960d0e-5491-449f-b775-c335bd067a39", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T05:47:32.934Z", + "completed":"2017-10-01T05:47:32.934Z", + "new_balance":"5555.41", + "value":"-3.44" + } + }, + { + "id":"34e017a8-5ac4-4e82-912e-82db953fe7ed", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T06:21:42.379Z", + "completed":"2017-10-01T06:21:42.379Z", + "new_balance":"5497.18", + "value":"-58.23" + } + }, + { + "id":"7db2c86c-b71f-47eb-a532-f53f3c6fb9e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T06:35:36.784Z", + "completed":"2017-10-01T06:35:36.784Z", + "new_balance":"5489.99", + "value":"-7.19" + } + }, + { + "id":"b287d825-b785-464a-910d-ed5cb383949b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T09:19:47.983Z", + "completed":"2017-10-01T09:19:47.983Z", + "new_balance":"5483.59", + "value":"-6.40" + } + }, + { + "id":"62b10b75-1775-430e-9538-32d6fd788f31", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T21:20:15.271Z", + "completed":"2017-10-01T21:20:15.271Z", + "new_balance":"5481.13", + "value":"-2.46" + } + }, + { + "id":"e6ffcded-1822-4b3e-8b62-977529bbc30c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T09:18:31.636Z", + "completed":"2017-10-05T09:18:31.636Z", + "new_balance":"5475.98", + "value":"-5.15" + } + }, + { + "id":"b3f895c1-c6c9-4b6b-92ac-8e0c3255fbc0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T09:47:46.914Z", + "completed":"2017-10-05T09:47:46.914Z", + "new_balance":"5472.31", + "value":"-3.67" + } + }, + { + "id":"ee0798e8-985d-41a3-b86e-23d3bd571e03", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T16:33:20.791Z", + "completed":"2017-10-05T16:33:20.791Z", + "new_balance":"5467.89", + "value":"-4.42" + } + }, + { + "id":"7511ad6e-aa58-4553-b7a4-319584762379", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:22:03.894Z", + "completed":"2017-10-05T20:22:03.894Z", + "new_balance":"5466.74", + "value":"-1.15" + } + }, + { + "id":"89661202-1314-436b-a3c3-d5c945f7a3e7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T18:02:12.297Z", + "completed":"2017-10-07T18:02:12.297Z", + "new_balance":"5464.42", + "value":"-2.32" + } + }, + { + "id":"0ab7b659-4cc5-451f-b4b6-fee204be36b5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T00:40:01.675Z", + "completed":"2017-10-09T00:40:01.675Z", + "new_balance":"5459.27", + "value":"-5.15" + } + }, + { + "id":"49007c61-01e7-447a-a2b9-e554e2988d61", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T06:37:01.046Z", + "completed":"2017-10-09T06:37:01.046Z", + "new_balance":"5456.89", + "value":"-2.38" + } + }, + { + "id":"b831ac1b-0658-4985-b14f-bcc6f3787a67", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T06:03:16.494Z", + "completed":"2017-10-10T06:03:16.494Z", + "new_balance":"5452.42", + "value":"-4.47" + } + }, + { + "id":"a572d9f5-3467-4fc0-8cdf-fede31888cb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T14:06:34.175Z", + "completed":"2017-10-10T14:06:34.175Z", + "new_balance":"5449.96", + "value":"-2.46" + } + }, + { + "id":"b79755cb-88c9-4536-a4cf-ab27255bf8ed", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T18:35:27.879Z", + "completed":"2017-10-10T18:35:27.879Z", + "new_balance":"5447.33", + "value":"-2.63" + } + }, + { + "id":"a2c9f5f7-0b0a-4fac-9151-62ae3d3b5771", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T22:14:09.103Z", + "completed":"2017-10-10T22:14:09.103Z", + "new_balance":"5444.60", + "value":"-2.73" + } + }, + { + "id":"e170906e-8760-4f2d-86ea-d48aaae7f0c5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T00:13:38.741Z", + "completed":"2017-10-11T00:13:38.741Z", + "new_balance":"5437.85", + "value":"-6.75" + } + }, + { + "id":"78b0fbe8-8fd7-47db-93d1-a0b91b6ca15d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T10:11:50.607Z", + "completed":"2017-10-11T10:11:50.607Z", + "new_balance":"5432.70", + "value":"-5.15" + } + }, + { + "id":"e73dbae0-e1f3-46cb-bcb0-45574ac48566", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T10:40:42.208Z", + "completed":"2017-10-11T10:40:42.208Z", + "new_balance":"5430.11", + "value":"-2.59" + } + }, + { + "id":"acc70a9e-ccd1-429a-94dd-4994045e20ec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T20:22:43.731Z", + "completed":"2017-10-11T20:22:43.731Z", + "new_balance":"5429.15", + "value":"-0.96" + } + }, + { + "id":"b5accb45-a2e5-4445-b7ef-f25ed4a2dda4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T22:05:52.844Z", + "completed":"2017-10-11T22:05:52.844Z", + "new_balance":"5426.73", + "value":"-2.42" + } + }, + { + "id":"5f485194-b7c4-47fc-a0cd-22f57ada21f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T15:10:50.528Z", + "completed":"2017-10-21T15:10:50.528Z", + "new_balance":"5421.58", + "value":"-5.15" + } + }, + { + "id":"db17ff76-be42-4535-9622-1f1b060bb8ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:40:10.425Z", + "completed":"2017-10-23T05:40:10.425Z", + "new_balance":"5420.16", + "value":"-1.42" + } + }, + { + "id":"cf9071cc-e58c-499a-9015-ac1e8a69675d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T02:04:09.637Z", + "completed":"2017-10-29T02:04:09.637Z", + "new_balance":"5415.35", + "value":"-4.81" + } + }, + { + "id":"f56e5677-3055-4f04-94a1-c62d953b4ab0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T03:04:13.661Z", + "completed":"2017-10-29T03:04:13.661Z", + "new_balance":"5520.98", + "value":"105.63" + } + }, + { + "id":"5f659516-a1df-455f-9f90-dda3c4d2c1dd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T04:14:46.763Z", + "completed":"2017-10-29T04:14:46.763Z", + "new_balance":"5517.54", + "value":"-3.44" + } + }, + { + "id":"da63b230-5e4f-4ccc-ab36-e8d8b3715524", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T11:27:13.780Z", + "completed":"2017-10-30T11:27:13.780Z", + "new_balance":"5513.27", + "value":"-4.27" + } + }, + { + "id":"bfcb0033-d448-4781-bf97-86f31e4c8c93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:37:57.961Z", + "completed":"2017-11-02T14:37:57.961Z", + "new_balance":"5455.04", + "value":"-58.23" + } + }, + { + "id":"f81bef09-83f2-490f-b97e-c443ebbf88c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T16:34:06.430Z", + "completed":"2017-11-02T16:34:06.430Z", + "new_balance":"5448.64", + "value":"-6.40" + } + }, + { + "id":"05e88bff-417c-42ff-add6-ef2508a63e73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T18:31:27.001Z", + "completed":"2017-11-02T18:31:27.001Z", + "new_balance":"5446.18", + "value":"-2.46" + } + }, + { + "id":"65e0e198-7ad7-466a-baac-1834ec1dfc50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T22:57:47.137Z", + "completed":"2017-11-02T22:57:47.137Z", + "new_balance":"5438.99", + "value":"-7.19" + } + }, + { + "id":"3d0f9270-1c46-4cf0-9802-5f2aa0f1faeb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T09:23:20.620Z", + "completed":"2017-11-06T09:23:20.620Z", + "new_balance":"5434.57", + "value":"-4.42" + } + }, + { + "id":"292fa011-07ff-478b-903a-be35796e516f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T09:33:00.333Z", + "completed":"2017-11-07T09:33:00.333Z", + "new_balance":"5430.08", + "value":"-4.49" + } + }, + { + "id":"c68df4d8-6183-4945-8763-f8d1bf6e3d37", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T18:05:49.495Z", + "completed":"2017-11-07T18:05:49.495Z", + "new_balance":"5427.05", + "value":"-3.03" + } + }, + { + "id":"5e9f55b2-f8ac-44ac-9f05-fb577f895ac6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T23:43:49.337Z", + "completed":"2017-11-07T23:43:49.337Z", + "new_balance":"5425.65", + "value":"-1.40" + } + }, + { + "id":"5aa8b645-8396-4703-8e4f-7671e4481db1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T23:52:43.702Z", + "completed":"2017-11-07T23:52:43.702Z", + "new_balance":"5423.33", + "value":"-2.32" + } + }, + { + "id":"52ce20fd-05b2-4d3e-b41f-b277b4aca8e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T18:41:58.349Z", + "completed":"2017-11-08T18:41:58.349Z", + "new_balance":"5419.09", + "value":"-4.24" + } + }, + { + "id":"98e8d44c-9b77-4301-b7ba-d1c81144123e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T23:49:44.105Z", + "completed":"2017-11-09T23:49:44.105Z", + "new_balance":"5415.65", + "value":"-3.44" + } + }, + { + "id":"5ba34425-48b5-4a79-848e-6674fffb8d60", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T23:39:23.311Z", + "completed":"2017-11-13T23:39:23.311Z", + "new_balance":"5410.50", + "value":"-5.15" + } + }, + { + "id":"33f201d5-4c08-4842-b979-12d9411c14a0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T13:02:15.761Z", + "completed":"2017-11-26T13:02:15.761Z", + "new_balance":"5409.10", + "value":"-1.40" + } + }, + { + "id":"0e1274dd-014f-4b18-b615-4fd639f17a3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T20:23:26.277Z", + "completed":"2017-11-26T20:23:26.277Z", + "new_balance":"5403.95", + "value":"-5.15" + } + }, + { + "id":"fbf0b94e-6429-46ab-af31-37eceb118c7e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T01:24:29.308Z", + "completed":"2017-11-27T01:24:29.308Z", + "new_balance":"5401.93", + "value":"-2.02" + } + }, + { + "id":"fc693cb9-1a5c-4922-bb95-b814e20cabb7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T02:28:16.741Z", + "completed":"2017-11-27T02:28:16.741Z", + "new_balance":"5397.12", + "value":"-4.81" + } + }, + { + "id":"d952d7e4-12ef-463a-8e81-7011efa5db04", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T11:12:51.486Z", + "completed":"2017-11-30T11:12:51.486Z", + "new_balance":"5502.75", + "value":"105.63" + } + }, + { + "id":"a4136ece-7eb8-424f-a636-8dc3572cf629", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T12:58:51.537Z", + "completed":"2017-11-30T12:58:51.537Z", + "new_balance":"5499.31", + "value":"-3.44" + } + }, + { + "id":"bbfc25e8-952a-4956-b8f4-ed452015dac2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T18:25:30.490Z", + "completed":"2017-11-30T18:25:30.490Z", + "new_balance":"5495.04", + "value":"-4.27" + } + }, + { + "id":"50201c1b-4939-4678-9d64-fa46c0dc2cf5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T02:14:33.140Z", + "completed":"2017-12-01T02:14:33.140Z", + "new_balance":"5492.58", + "value":"-2.46" + } + }, + { + "id":"774fd690-75d3-47bf-a022-c38720a73ab5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T04:52:34.196Z", + "completed":"2017-12-01T04:52:34.196Z", + "new_balance":"5434.35", + "value":"-58.23" + } + }, + { + "id":"d306fde2-e88d-4d9f-941b-9ab531a6d4f9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T06:41:55.419Z", + "completed":"2017-12-01T06:41:55.419Z", + "new_balance":"5427.95", + "value":"-6.40" + } + }, + { + "id":"1ce80ccf-5c18-4953-9707-e9d1db28f1b1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T09:11:13.584Z", + "completed":"2017-12-01T09:11:13.584Z", + "new_balance":"5422.80", + "value":"-5.15" + } + }, + { + "id":"74257421-256f-4e89-9cfd-d522ce40ef5c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T10:24:57.620Z", + "completed":"2017-12-01T10:24:57.620Z", + "new_balance":"5417.91", + "value":"-4.89" + } + }, + { + "id":"367c3198-510a-475e-a39a-c2806b2c78e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T13:48:57.290Z", + "completed":"2017-12-01T13:48:57.290Z", + "new_balance":"5412.76", + "value":"-5.15" + } + }, + { + "id":"f25bdc73-1254-40b8-bf16-ebc592cfc617", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T15:03:50.514Z", + "completed":"2017-12-01T15:03:50.514Z", + "new_balance":"5405.57", + "value":"-7.19" + } + }, + { + "id":"cca1e789-d00b-4149-9ed1-f6a680a988e2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:56:51.547Z", + "completed":"2017-12-01T19:56:51.547Z", + "new_balance":"5402.13", + "value":"-3.44" + } + }, + { + "id":"b911d78b-18c2-417c-9928-44fa12abe3e2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T20:09:16.426Z", + "completed":"2017-12-01T20:09:16.426Z", + "new_balance":"5400.26", + "value":"-1.87" + } + }, + { + "id":"8c428dfe-50bf-45fd-af8f-266482d2be50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T04:47:09.775Z", + "completed":"2017-12-02T04:47:09.775Z", + "new_balance":"5393.34", + "value":"-6.92" + } + }, + { + "id":"aa40d30a-0871-4234-8b45-73ef85054b0c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T15:23:07.372Z", + "completed":"2017-12-02T15:23:07.372Z", + "new_balance":"5391.76", + "value":"-1.58" + } + }, + { + "id":"d1501284-e607-4f0d-84d7-84fcd8d04b47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T19:41:13.663Z", + "completed":"2017-12-02T19:41:13.663Z", + "new_balance":"5390.52", + "value":"-1.24" + } + }, + { + "id":"11704fe1-c216-4d52-bf73-fa07330ccf47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T05:51:04.725Z", + "completed":"2017-12-04T05:51:04.725Z", + "new_balance":"5385.83", + "value":"-4.69" + } + }, + { + "id":"b5e10abd-0fa5-4d0a-b2ef-17e7ae9a83fa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T18:26:09.885Z", + "completed":"2017-12-04T18:26:09.885Z", + "new_balance":"5381.56", + "value":"-4.27" + } + }, + { + "id":"44008165-5969-4d2c-b261-de09c2b9697c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:45:22.378Z", + "completed":"2017-12-04T21:45:22.378Z", + "new_balance":"5379.42", + "value":"-2.14" + } + }, + { + "id":"5176f834-b924-4f95-a0da-8f24b7034ee8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T05:58:52.449Z", + "completed":"2017-12-05T05:58:52.449Z", + "new_balance":"5377.43", + "value":"-1.99" + } + }, + { + "id":"fdb485d8-9353-4242-a88e-122e53b08f00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T07:31:53.305Z", + "completed":"2017-12-05T07:31:53.305Z", + "new_balance":"5373.01", + "value":"-4.42" + } + }, + { + "id":"4035014c-c6d0-4f45-98a5-e6abad76b7bc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T04:17:51.982Z", + "completed":"2017-12-18T04:17:51.982Z", + "new_balance":"5367.86", + "value":"-5.15" + } + }, + { + "id":"4d908083-e792-4c15-8441-a0081b960916", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T00:35:50.512Z", + "completed":"2017-12-30T00:35:50.512Z", + "new_balance":"5363.59", + "value":"-4.27" + } + }, + { + "id":"66c454ef-711a-4889-81d9-117f690c2be7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T00:49:22.555Z", + "completed":"2017-12-30T00:49:22.555Z", + "new_balance":"5360.48", + "value":"-3.11" + } + }, + { + "id":"2b8dd9dc-bb03-48e3-828d-ec8842cacde5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T02:29:23.021Z", + "completed":"2017-12-30T02:29:23.021Z", + "new_balance":"5357.04", + "value":"-3.44" + } + }, + { + "id":"c44a6f04-230b-471d-b820-fe59230da537", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T17:27:46.638Z", + "completed":"2017-12-30T17:27:46.638Z", + "new_balance":"5462.67", + "value":"105.63" + } + }, + { + "id":"507a7afc-7d2a-492b-97c9-13918b61429c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T05:17:43.247Z", + "completed":"2016-01-01T05:17:43.247Z", + "new_balance":"4263.98", + "value":"1680.41" + } + }, + { + "id":"fd113783-5438-4dc6-98df-0efc98890098", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T22:28:32.918Z", + "completed":"2016-01-01T22:28:32.918Z", + "new_balance":"5286.40", + "value":"1022.42" + } + }, + { + "id":"11fe286b-4dc0-4d8b-8ce6-6fa843ad6de8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T12:30:55.742Z", + "completed":"2016-01-02T12:30:55.742Z", + "new_balance":"4878.83", + "value":"-407.57" + } + }, + { + "id":"94a1db51-e521-4653-9df9-de482b7a09ca", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T08:34:13.830Z", + "completed":"2016-01-03T08:34:13.830Z", + "new_balance":"4872.45", + "value":"-6.38" + } + }, + { + "id":"5d05f130-43b3-4ab7-92d8-5e99b3c6570a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T11:44:48.309Z", + "completed":"2016-01-03T11:44:48.309Z", + "new_balance":"4825.65", + "value":"-46.80" + } + }, + { + "id":"e2cbf2ce-8b32-4720-890b-41f0d603dd52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T12:05:38.808Z", + "completed":"2016-01-03T12:05:38.808Z", + "new_balance":"4808.03", + "value":"-17.62" + } + }, + { + "id":"5103d51c-612b-42d6-ac69-14f5e5b0c482", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:31:56.927Z", + "completed":"2016-01-04T18:31:56.927Z", + "new_balance":"4797.12", + "value":"-10.91" + } + }, + { + "id":"cec1ca4d-57fa-4a28-b8c3-96967217a8a9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T16:53:20.339Z", + "completed":"2016-01-05T16:53:20.339Z", + "new_balance":"4790.13", + "value":"-6.99" + } + }, + { + "id":"8cbbf046-9805-4b07-ac16-9aad5b13bd45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T04:54:43.245Z", + "completed":"2016-01-07T04:54:43.245Z", + "new_balance":"4765.20", + "value":"-24.93" + } + }, + { + "id":"f5c10aba-bc4e-46be-ab44-9c589f9264c9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T18:55:24.101Z", + "completed":"2016-01-07T18:55:24.101Z", + "new_balance":"4746.04", + "value":"-19.16" + } + }, + { + "id":"6b7a11f3-70e1-421e-b44c-1bfe7e1aa6da", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T00:40:31.423Z", + "completed":"2016-01-08T00:40:31.423Z", + "new_balance":"4730.03", + "value":"-16.01" + } + }, + { + "id":"729f5efd-f78d-470e-ae9a-0f874ae4a13a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T19:17:57.419Z", + "completed":"2016-01-08T19:17:57.419Z", + "new_balance":"4715.04", + "value":"-14.99" + } + }, + { + "id":"477dfa08-7242-49ad-9f92-60cf284e2e2d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:20:33.544Z", + "completed":"2016-01-09T07:20:33.544Z", + "new_balance":"4685.88", + "value":"-29.16" + } + }, + { + "id":"d03b16e0-e68b-4e83-81f2-05b051046302", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T21:49:24.703Z", + "completed":"2016-01-09T21:49:24.703Z", + "new_balance":"4640.82", + "value":"-45.06" + } + }, + { + "id":"f8d0bed1-3e57-46c8-8270-7d85e9e21dd4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T01:15:44.160Z", + "completed":"2016-01-10T01:15:44.160Z", + "new_balance":"4596.34", + "value":"-44.48" + } + }, + { + "id":"d65d81ee-3ded-478c-add7-9f7ac6932979", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T13:36:47.398Z", + "completed":"2016-01-10T13:36:47.398Z", + "new_balance":"4491.62", + "value":"-104.72" + } + }, + { + "id":"60c7a105-eec5-43fd-a10f-d9e332ca07b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:53:16.034Z", + "completed":"2016-01-11T02:53:16.034Z", + "new_balance":"4485.85", + "value":"-5.77" + } + }, + { + "id":"735767d9-5b37-4654-a3db-c35ef03610fb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T03:17:12.189Z", + "completed":"2016-01-11T03:17:12.189Z", + "new_balance":"4576.73", + "value":"90.88" + } + }, + { + "id":"047c8a3a-3640-4405-b856-d26cc377a396", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T21:35:37.826Z", + "completed":"2016-01-11T21:35:37.826Z", + "new_balance":"4497.65", + "value":"-79.08" + } + }, + { + "id":"a1e5959b-55af-4ada-a234-351c1f5f14c7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:36:53.862Z", + "completed":"2016-01-12T18:36:53.862Z", + "new_balance":"4487.58", + "value":"-10.07" + } + }, + { + "id":"bffd1849-3560-4a7e-a807-d58a99399f4b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T13:04:21.947Z", + "completed":"2016-01-15T13:04:21.947Z", + "new_balance":"4462.18", + "value":"-25.40" + } + }, + { + "id":"10d45d66-77ff-4834-b14a-3e1119ebf10b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T12:48:42.649Z", + "completed":"2016-01-16T12:48:42.649Z", + "new_balance":"4431.37", + "value":"-30.81" + } + }, + { + "id":"84a6da3c-7a8a-411a-bd76-86e4c4dd4dd0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T06:24:46.660Z", + "completed":"2016-01-17T06:24:46.660Z", + "new_balance":"4416.54", + "value":"-14.83" + } + }, + { + "id":"3775544d-d56f-4196-a0f4-83a0b8d792aa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T21:35:29.668Z", + "completed":"2016-01-20T21:35:29.668Z", + "new_balance":"4409.55", + "value":"-6.99" + } + }, + { + "id":"73205623-131a-4263-a67e-de9fbf91613d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:43:02.742Z", + "completed":"2016-01-21T04:43:02.742Z", + "new_balance":"4360.77", + "value":"-48.78" + } + }, + { + "id":"5417d5dc-a82a-4c81-8c6a-7e906cf9447a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T15:37:56.469Z", + "completed":"2016-01-23T15:37:56.469Z", + "new_balance":"4162.86", + "value":"-197.91" + } + }, + { + "id":"c783a2e6-f789-41f3-9b1e-536c17a69286", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T00:38:47.082Z", + "completed":"2016-02-01T00:38:47.082Z", + "new_balance":"5185.28", + "value":"1022.42" + } + }, + { + "id":"a7466a8b-bdc6-49e6-a67d-d3e38aff9c5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T14:18:11.002Z", + "completed":"2016-02-03T14:18:11.002Z", + "new_balance":"4777.71", + "value":"-407.57" + } + }, + { + "id":"38ec5cea-6e16-4663-a2b8-4dc475824522", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T23:25:02.005Z", + "completed":"2016-02-03T23:25:02.005Z", + "new_balance":"4614.23", + "value":"-163.48" + } + }, + { + "id":"1cdd15db-d2a8-4322-9998-ba248ef89836", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T17:03:50.334Z", + "completed":"2016-02-04T17:03:50.334Z", + "new_balance":"4599.72", + "value":"-14.51" + } + }, + { + "id":"f50fcdc4-1813-4c3a-93af-ab8eb71cf4f3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T08:07:56.708Z", + "completed":"2016-02-05T08:07:56.708Z", + "new_balance":"4593.23", + "value":"-6.49" + } + }, + { + "id":"edc7dc44-a825-4e3b-ac01-ce911ba21729", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T08:36:47.886Z", + "completed":"2016-02-06T08:36:47.886Z", + "new_balance":"4568.43", + "value":"-24.80" + } + }, + { + "id":"b87e8933-394b-4122-9c5a-196ca90d6b2b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T17:45:06.128Z", + "completed":"2016-02-07T17:45:06.128Z", + "new_balance":"4463.71", + "value":"-104.72" + } + }, + { + "id":"c442b707-5cc2-4ae9-b388-afdbff5860af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T19:20:56.693Z", + "completed":"2016-02-07T19:20:56.693Z", + "new_balance":"4422.36", + "value":"-41.35" + } + }, + { + "id":"fb4ff9c8-42f3-43b6-b9cb-c46891865e5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T22:37:15.362Z", + "completed":"2016-02-07T22:37:15.362Z", + "new_balance":"4393.20", + "value":"-29.16" + } + }, + { + "id":"ef9e614e-74b2-4fc9-ada4-d7f09dff4bf1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:28:20.100Z", + "completed":"2016-02-08T17:28:20.100Z", + "new_balance":"4342.64", + "value":"-50.56" + } + }, + { + "id":"32eac90b-c8e2-4cbb-a781-e52be2865859", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T13:16:46.013Z", + "completed":"2016-02-09T13:16:46.013Z", + "new_balance":"4316.84", + "value":"-25.80" + } + }, + { + "id":"5044360a-3f60-4c76-bc91-7ad98680c711", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T06:44:25.894Z", + "completed":"2016-02-10T06:44:25.894Z", + "new_balance":"4309.85", + "value":"-6.99" + } + }, + { + "id":"8a21ed1b-39b1-4cd1-9a6b-cfb023e65425", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T03:44:13.250Z", + "completed":"2016-02-12T03:44:13.250Z", + "new_balance":"4274.66", + "value":"-35.19" + } + }, + { + "id":"7a1a8ea1-247f-447c-af1c-368807f24dce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T00:58:14.600Z", + "completed":"2016-02-14T00:58:14.600Z", + "new_balance":"4245.50", + "value":"-29.16" + } + }, + { + "id":"f41c1335-02ef-488d-888b-191124c3ab7e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T04:17:42.786Z", + "completed":"2016-02-16T04:17:42.786Z", + "new_balance":"4199.99", + "value":"-45.51" + } + }, + { + "id":"adfbac7f-d48a-4b91-9418-d901a3189f69", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T09:05:58.422Z", + "completed":"2016-02-16T09:05:58.422Z", + "new_balance":"4194.22", + "value":"-5.77" + } + }, + { + "id":"f2480f0a-4491-4e82-8f3d-7f1ca514b51b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T20:46:34.421Z", + "completed":"2016-02-18T20:46:34.421Z", + "new_balance":"4185.82", + "value":"-8.40" + } + }, + { + "id":"76450bb3-eb8c-4bf1-a8b6-dcc3f08a13d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T03:09:01.249Z", + "completed":"2016-02-21T03:09:01.249Z", + "new_balance":"4137.04", + "value":"-48.78" + } + }, + { + "id":"16d7df13-7932-4c52-bc11-10fdee364366", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T18:35:57.226Z", + "completed":"2016-02-21T18:35:57.226Z", + "new_balance":"4251.18", + "value":"114.14" + } + }, + { + "id":"1b364394-cd8c-4d5a-b681-7ada7321147b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T05:25:12.619Z", + "completed":"2016-02-27T05:25:12.619Z", + "new_balance":"4053.27", + "value":"-197.91" + } + }, + { + "id":"8f3d59d1-5577-4c16-a99a-f95610992249", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T22:22:36.554Z", + "completed":"2016-03-01T22:22:36.554Z", + "new_balance":"5075.69", + "value":"1022.42" + } + }, + { + "id":"dc01b3f9-d9d2-45b2-b676-d75617e50fdb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T22:13:48.077Z", + "completed":"2016-03-03T22:13:48.077Z", + "new_balance":"4668.12", + "value":"-407.57" + } + }, + { + "id":"64e007b4-24d0-431b-a078-aab19ffd6baa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T03:09:31.591Z", + "completed":"2016-03-04T03:09:31.591Z", + "new_balance":"4637.31", + "value":"-30.81" + } + }, + { + "id":"13bf3c90-9fc1-42bf-8d75-af08efd57562", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T04:55:47.806Z", + "completed":"2016-03-04T04:55:47.806Z", + "new_balance":"4605.86", + "value":"-31.45" + } + }, + { + "id":"eb080a7f-d186-4543-ab1c-4bd859226074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T09:01:27.585Z", + "completed":"2016-03-04T09:01:27.585Z", + "new_balance":"4560.35", + "value":"-45.51" + } + }, + { + "id":"ec7502ad-d1f7-4e95-a031-9c86b51fc4ac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T22:53:00.681Z", + "completed":"2016-03-04T22:53:00.681Z", + "new_balance":"4543.35", + "value":"-17.00" + } + }, + { + "id":"91a77ca1-b3a2-4c7e-9d5a-715aa64563af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T08:35:34.084Z", + "completed":"2016-03-05T08:35:34.084Z", + "new_balance":"4537.58", + "value":"-5.77" + } + }, + { + "id":"844e973b-afc7-4c1d-84f1-f5e746ef6849", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T10:09:56.362Z", + "completed":"2016-03-05T10:09:56.362Z", + "new_balance":"4432.86", + "value":"-104.72" + } + }, + { + "id":"852e5860-d70e-423d-b2e1-aa35506a003b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T15:32:37.450Z", + "completed":"2016-03-05T15:32:37.450Z", + "new_balance":"4418.80", + "value":"-14.06" + } + }, + { + "id":"abc98eeb-0fcc-4570-a787-2fc162ee9525", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T23:53:42.502Z", + "completed":"2016-03-05T23:53:42.502Z", + "new_balance":"4373.26", + "value":"-45.54" + } + }, + { + "id":"5c8131e3-867a-4164-8a95-4104dbe7866e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T14:25:35.221Z", + "completed":"2016-03-06T14:25:35.221Z", + "new_balance":"4291.47", + "value":"-81.79" + } + }, + { + "id":"e0d8b513-1036-401e-a1e9-bb2828aae660", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T16:08:07.333Z", + "completed":"2016-03-06T16:08:07.333Z", + "new_balance":"4192.35", + "value":"-99.12" + } + }, + { + "id":"f36126aa-9149-42d9-b199-8b481917de80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T17:31:39.847Z", + "completed":"2016-03-07T17:31:39.847Z", + "new_balance":"4184.74", + "value":"-7.61" + } + }, + { + "id":"11195f2e-dccd-4bed-849c-c7be377fec77", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T20:15:05.952Z", + "completed":"2016-03-07T20:15:05.952Z", + "new_balance":"4178.97", + "value":"-5.77" + } + }, + { + "id":"5fd12972-76fd-4b06-ac94-36047bb72de0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T04:45:30.943Z", + "completed":"2016-03-08T04:45:30.943Z", + "new_balance":"4170.45", + "value":"-8.52" + } + }, + { + "id":"eef5081e-b961-4fbe-badd-1dc272c07f70", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T13:25:00.859Z", + "completed":"2016-03-08T13:25:00.859Z", + "new_balance":"4162.84", + "value":"-7.61" + } + }, + { + "id":"a5b8fd63-76f5-49f0-ab99-767d748d56d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T01:26:26.760Z", + "completed":"2016-03-10T01:26:26.760Z", + "new_balance":"4130.50", + "value":"-32.34" + } + }, + { + "id":"08e90deb-aaf7-4b1b-8208-326b7474f73c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T11:39:52.758Z", + "completed":"2016-03-11T11:39:52.758Z", + "new_balance":"4124.73", + "value":"-5.77" + } + }, + { + "id":"3128443a-56ff-48c8-a8fe-b26e9e7b0dac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T19:43:46.121Z", + "completed":"2016-03-11T19:43:46.121Z", + "new_balance":"4112.36", + "value":"-12.37" + } + }, + { + "id":"88a9d7e2-d044-4f06-bb0b-68cb74f0faaa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T21:48:28.067Z", + "completed":"2016-03-11T21:48:28.067Z", + "new_balance":"4088.06", + "value":"-24.30" + } + }, + { + "id":"5a3aa986-5ead-4286-9a72-05ef28f97d7c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T00:53:39.352Z", + "completed":"2016-03-12T00:53:39.352Z", + "new_balance":"4021.88", + "value":"-66.18" + } + }, + { + "id":"8db5c49b-0555-4d9a-b0ab-c40ebe9d4337", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T08:49:46.452Z", + "completed":"2016-03-12T08:49:46.452Z", + "new_balance":"4016.11", + "value":"-5.77" + } + }, + { + "id":"d3ef5778-96ff-4b4c-9350-0744eedcbdef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T18:28:24.931Z", + "completed":"2016-03-12T18:28:24.931Z", + "new_balance":"3914.85", + "value":"-101.26" + } + }, + { + "id":"6eeb31ac-db57-4659-9d18-82b069223e5a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T21:47:32.654Z", + "completed":"2016-03-12T21:47:32.654Z", + "new_balance":"3895.69", + "value":"-19.16" + } + }, + { + "id":"5552c560-778a-4f9f-8075-58a474374437", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T06:27:04.596Z", + "completed":"2016-03-13T06:27:04.596Z", + "new_balance":"3853.20", + "value":"-42.49" + } + }, + { + "id":"f405b788-41fe-4dde-b157-c52f8f1c5831", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T17:34:57.301Z", + "completed":"2016-03-13T17:34:57.301Z", + "new_balance":"3847.43", + "value":"-5.77" + } + }, + { + "id":"86ba4ec7-0e7b-4fc1-b866-236bd95cbf98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T17:09:44.990Z", + "completed":"2016-03-15T17:09:44.990Z", + "new_balance":"3805.20", + "value":"-42.23" + } + }, + { + "id":"65c5a76a-1477-437c-9b1d-1dc3718f5b01", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T20:34:54.155Z", + "completed":"2016-03-15T20:34:54.155Z", + "new_balance":"3756.31", + "value":"-48.89" + } + }, + { + "id":"ae8d219c-ac97-4bb9-9ea8-8afdc73375d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T00:28:05.731Z", + "completed":"2016-03-17T00:28:05.731Z", + "new_balance":"3712.34", + "value":"-43.97" + } + }, + { + "id":"e38decbf-039f-4a78-ac24-819ac526149d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T13:37:24.124Z", + "completed":"2016-03-18T13:37:24.124Z", + "new_balance":"3614.84", + "value":"-97.50" + } + }, + { + "id":"8822d222-4cce-4e94-ad3f-a7e2088d8d4b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T11:43:03.779Z", + "completed":"2016-03-20T11:43:03.779Z", + "new_balance":"3510.52", + "value":"-104.32" + } + }, + { + "id":"9f86b58d-8c1a-4431-b9dd-e2fd9260ddeb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:54:36.512Z", + "completed":"2016-03-22T06:54:36.512Z", + "new_balance":"3470.20", + "value":"-40.32" + } + }, + { + "id":"854eea66-7714-4bba-ac3a-ae3bda648125", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T17:30:53.719Z", + "completed":"2016-03-25T17:30:53.719Z", + "new_balance":"3464.43", + "value":"-5.77" + } + }, + { + "id":"e4d427bf-b5ca-4c10-85bb-1611d77de00f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T23:09:39.931Z", + "completed":"2016-03-25T23:09:39.931Z", + "new_balance":"3451.42", + "value":"-13.01" + } + }, + { + "id":"cdd3f599-d887-499a-8c6d-9d2e5e0a88b5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T12:51:20.906Z", + "completed":"2016-03-26T12:51:20.906Z", + "new_balance":"3438.63", + "value":"-12.79" + } + }, + { + "id":"d27de627-657a-49ab-91c9-a8da33a44035", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T14:05:50.953Z", + "completed":"2016-03-26T14:05:50.953Z", + "new_balance":"3413.01", + "value":"-25.62" + } + }, + { + "id":"8954c93c-427c-4a10-8823-a71b0e3d27ce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T08:37:56.136Z", + "completed":"2016-03-27T08:37:56.136Z", + "new_balance":"3398.82", + "value":"-14.19" + } + }, + { + "id":"85807244-c062-41c4-8c06-aecde4a45cbe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T20:58:48.068Z", + "completed":"2016-03-28T20:58:48.068Z", + "new_balance":"3350.04", + "value":"-48.78" + } + }, + { + "id":"f5e35602-eb3e-41e1-bc13-41241c0abb42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T15:19:17.751Z", + "completed":"2016-03-31T15:19:17.751Z", + "new_balance":"3152.13", + "value":"-197.91" + } + }, + { + "id":"3c1bb4fa-37e9-41de-8a3b-443dc9231263", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T04:29:29.477Z", + "completed":"2016-04-01T04:29:29.477Z", + "new_balance":"2744.56", + "value":"-407.57" + } + }, + { + "id":"7a5b16a0-a80f-4464-a76a-36d62878c3bf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T11:15:49.952Z", + "completed":"2016-04-01T11:15:49.952Z", + "new_balance":"4424.97", + "value":"1680.41" + } + }, + { + "id":"305c3cbd-dd40-49f5-9fcd-0f97e5af04e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T14:48:30.916Z", + "completed":"2016-04-01T14:48:30.916Z", + "new_balance":"5447.39", + "value":"1022.42" + } + }, + { + "id":"99f52af4-83d0-405e-be0f-601b28a16074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T09:51:31.429Z", + "completed":"2016-04-03T09:51:31.429Z", + "new_balance":"5400.59", + "value":"-46.80" + } + }, + { + "id":"1e915866-53cc-4859-9a5a-09791a1fa02a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T18:03:12.141Z", + "completed":"2016-04-03T18:03:12.141Z", + "new_balance":"5382.97", + "value":"-17.62" + } + }, + { + "id":"aee7c802-5730-43c1-887a-e28eaf835a43", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T20:20:01.614Z", + "completed":"2016-04-03T20:20:01.614Z", + "new_balance":"5376.59", + "value":"-6.38" + } + }, + { + "id":"9beaee4f-6599-4f3d-8155-939cea3fbe50", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T08:44:41.673Z", + "completed":"2016-04-05T08:44:41.673Z", + "new_balance":"5369.60", + "value":"-6.99" + } + }, + { + "id":"e2b80f49-c091-4125-9c28-8fdb04dc9f1b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T12:30:56.118Z", + "completed":"2016-04-05T12:30:56.118Z", + "new_balance":"5358.69", + "value":"-10.91" + } + }, + { + "id":"283168e7-6be7-42b2-9717-d9777e455552", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T12:35:10.955Z", + "completed":"2016-04-06T12:35:10.955Z", + "new_balance":"5333.76", + "value":"-24.93" + } + }, + { + "id":"97d55ed6-1f65-4762-b091-b802e1e12051", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T14:33:36.192Z", + "completed":"2016-04-09T14:33:36.192Z", + "new_balance":"5314.60", + "value":"-19.16" + } + }, + { + "id":"55fd308c-4147-47dd-adb7-bf090a694a4e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T10:29:49.795Z", + "completed":"2016-04-10T10:29:49.795Z", + "new_balance":"5299.61", + "value":"-14.99" + } + }, + { + "id":"5df6aab4-570a-4286-aee8-1ffd417b4e1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T10:44:29.354Z", + "completed":"2016-04-11T10:44:29.354Z", + "new_balance":"5283.60", + "value":"-16.01" + } + }, + { + "id":"32f58714-34ff-4c91-8229-04d454ed3ebc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T11:27:41.255Z", + "completed":"2016-04-11T11:27:41.255Z", + "new_balance":"5254.44", + "value":"-29.16" + } + }, + { + "id":"765dee4f-24b2-4a60-a30d-96cb779e7190", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T09:29:15.013Z", + "completed":"2016-04-13T09:29:15.013Z", + "new_balance":"5149.72", + "value":"-104.72" + } + }, + { + "id":"c3d33c4b-39fb-4c26-ac57-5c72d40644b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T11:34:34.534Z", + "completed":"2016-04-13T11:34:34.534Z", + "new_balance":"5104.66", + "value":"-45.06" + } + }, + { + "id":"a98134fc-3b01-48e1-be92-7a5e1ec1aa24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T19:46:20.070Z", + "completed":"2016-04-15T19:46:20.070Z", + "new_balance":"5060.18", + "value":"-44.48" + } + }, + { + "id":"7225fe36-2a6f-43d5-af9a-e79b39e58885", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T09:11:23.445Z", + "completed":"2016-04-16T09:11:23.445Z", + "new_balance":"5054.41", + "value":"-5.77" + } + }, + { + "id":"be4ebd4b-2f35-4c9f-8ada-83c47a85897e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T12:02:21.407Z", + "completed":"2016-04-16T12:02:21.407Z", + "new_balance":"5044.34", + "value":"-10.07" + } + }, + { + "id":"80f1144b-5bad-4882-8e82-0ae7e3da800b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:25:21.788Z", + "completed":"2016-04-18T16:25:21.788Z", + "new_balance":"4965.26", + "value":"-79.08" + } + }, + { + "id":"d3feffda-8bcc-4f1c-8f8a-7cfff5a2065f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T03:24:23.053Z", + "completed":"2016-04-23T03:24:23.053Z", + "new_balance":"4939.86", + "value":"-25.40" + } + }, + { + "id":"af2c2970-b6c7-4b75-a7a5-0dced1322de8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T18:56:37.005Z", + "completed":"2016-04-24T18:56:37.005Z", + "new_balance":"4909.05", + "value":"-30.81" + } + }, + { + "id":"cc4c6983-c760-4d0c-a745-62e8169b47cd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T22:50:46.796Z", + "completed":"2016-04-24T22:50:46.796Z", + "new_balance":"4894.22", + "value":"-14.83" + } + }, + { + "id":"a7aa9e92-e1d7-40a4-a18d-69103d343fd2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T01:41:11.293Z", + "completed":"2016-04-26T01:41:11.293Z", + "new_balance":"4887.23", + "value":"-6.99" + } + }, + { + "id":"531b9709-4869-413f-ad56-5b65a0dcb037", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T03:57:51.787Z", + "completed":"2016-04-28T03:57:51.787Z", + "new_balance":"4689.32", + "value":"-197.91" + } + }, + { + "id":"bae5529b-c4ff-4e44-874d-13acb83b6910", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T23:39:16.029Z", + "completed":"2016-04-28T23:39:16.029Z", + "new_balance":"4640.54", + "value":"-48.78" + } + }, + { + "id":"482de82f-b018-4c37-a218-be3b6ce40a32", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T06:07:16.842Z", + "completed":"2016-05-02T06:07:16.842Z", + "new_balance":"4626.03", + "value":"-14.51" + } + }, + { + "id":"1db46abb-547e-4007-9654-6f35d2edbe98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T15:09:18.411Z", + "completed":"2016-05-02T15:09:18.411Z", + "new_balance":"4619.54", + "value":"-6.49" + } + }, + { + "id":"9f1b07d4-f992-47fb-94cb-b1f40449d56e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T15:25:04.662Z", + "completed":"2016-05-02T15:25:04.662Z", + "new_balance":"4456.06", + "value":"-163.48" + } + }, + { + "id":"c9cd708a-fc0d-4543-ae6d-bd247ddb933b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T22:18:28.405Z", + "completed":"2016-05-02T22:18:28.405Z", + "new_balance":"4048.49", + "value":"-407.57" + } + }, + { + "id":"7ebe039b-668c-4893-aa0a-01965c6def39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T01:57:15.602Z", + "completed":"2016-05-06T01:57:15.602Z", + "new_balance":"4019.33", + "value":"-29.16" + } + }, + { + "id":"0000461b-3ab5-4101-a78a-cab0c2a4f446", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T20:42:26.230Z", + "completed":"2016-05-06T20:42:26.230Z", + "new_balance":"3994.53", + "value":"-24.80" + } + }, + { + "id":"912a24a7-e295-4876-8bf6-ee3f0a424aa8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T07:58:52.279Z", + "completed":"2016-05-07T07:58:52.279Z", + "new_balance":"3889.81", + "value":"-104.72" + } + }, + { + "id":"447c7d50-146e-4f23-b223-0e008870806d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T12:02:19.541Z", + "completed":"2016-05-07T12:02:19.541Z", + "new_balance":"3848.46", + "value":"-41.35" + } + }, + { + "id":"b6295fdd-34d1-493d-b0d6-18b53edef83a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T22:33:27.626Z", + "completed":"2016-05-09T22:33:27.626Z", + "new_balance":"4870.88", + "value":"1022.42" + } + }, + { + "id":"46f53d97-211c-4630-8560-17978abe1ea1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T08:48:22.799Z", + "completed":"2016-05-14T08:48:22.799Z", + "new_balance":"4845.08", + "value":"-25.80" + } + }, + { + "id":"00b54297-b611-4aa9-9cd5-e4436ee9fdf9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:23:49.673Z", + "completed":"2016-05-14T21:23:49.673Z", + "new_balance":"4794.52", + "value":"-50.56" + } + }, + { + "id":"0ea4ac4b-c74c-4e1c-9987-300c574366c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T14:25:34.422Z", + "completed":"2016-05-16T14:25:34.422Z", + "new_balance":"4787.53", + "value":"-6.99" + } + }, + { + "id":"ea8b4656-aed1-4a7d-b6c9-b70d2f86e75f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T04:02:22.474Z", + "completed":"2016-05-21T04:02:22.474Z", + "new_balance":"4752.34", + "value":"-35.19" + } + }, + { + "id":"9435511c-1e7d-4ac9-bb76-125d72002c98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T13:46:11.449Z", + "completed":"2016-05-23T13:46:11.449Z", + "new_balance":"4746.57", + "value":"-5.77" + } + }, + { + "id":"ce0a70bd-48d0-4656-9b81-08ef267cd2b1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T17:50:38.901Z", + "completed":"2016-05-23T17:50:38.901Z", + "new_balance":"4717.41", + "value":"-29.16" + } + }, + { + "id":"509168cf-e7b0-416f-8269-9b8948e54c08", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T20:14:24.182Z", + "completed":"2016-05-24T20:14:24.182Z", + "new_balance":"4671.90", + "value":"-45.51" + } + }, + { + "id":"27a6d126-4df3-41df-85da-77737c6e9ee1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T02:10:10.374Z", + "completed":"2016-05-27T02:10:10.374Z", + "new_balance":"4663.50", + "value":"-8.40" + } + }, + { + "id":"e0e53c2a-d1da-4bef-9797-1c242d537d78", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T22:57:05.577Z", + "completed":"2016-05-30T22:57:05.577Z", + "new_balance":"4614.72", + "value":"-48.78" + } + }, + { + "id":"0871f62f-39ea-47c2-a2a7-d543aef39306", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T23:56:01.855Z", + "completed":"2016-05-30T23:56:01.855Z", + "new_balance":"4416.81", + "value":"-197.91" + } + }, + { + "id":"acb17203-ee73-49ec-a289-5020ce2bcf59", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T03:55:20.049Z", + "completed":"2016-06-01T03:55:20.049Z", + "new_balance":"4009.24", + "value":"-407.57" + } + }, + { + "id":"9b17bac3-8ee3-42c6-985f-69ca798b4927", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T22:17:33.990Z", + "completed":"2016-06-01T22:17:33.990Z", + "new_balance":"5031.66", + "value":"1022.42" + } + }, + { + "id":"429371ce-2014-4dcf-a57a-8667e2a8aa40", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:37:37.508Z", + "completed":"2016-06-04T04:37:37.508Z", + "new_balance":"5000.21", + "value":"-31.45" + } + }, + { + "id":"0c9e9fcc-0e4e-4e27-82b6-7baf93736a17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T05:43:07.678Z", + "completed":"2016-06-04T05:43:07.678Z", + "new_balance":"4983.21", + "value":"-17.00" + } + }, + { + "id":"f7123137-b8b7-46d1-aaa9-b0cd5da8f347", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T00:31:14.294Z", + "completed":"2016-06-11T00:31:14.294Z", + "new_balance":"4952.40", + "value":"-30.81" + } + }, + { + "id":"d3bdf2fa-ee22-4cc5-a9a1-ef60557324bc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T18:53:40.954Z", + "completed":"2016-06-11T18:53:40.954Z", + "new_balance":"4906.89", + "value":"-45.51" + } + }, + { + "id":"afe493ba-9a99-4337-b878-ca81f5842c0a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T11:49:06.457Z", + "completed":"2016-06-12T11:49:06.457Z", + "new_balance":"4892.83", + "value":"-14.06" + } + }, + { + "id":"c97f7e70-efe2-4f8e-95b1-6120b572c254", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T16:43:41.322Z", + "completed":"2016-06-12T16:43:41.322Z", + "new_balance":"4788.11", + "value":"-104.72" + } + }, + { + "id":"c0838da3-93e4-4990-ac10-4fbb6d7463b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T21:28:15.137Z", + "completed":"2016-06-12T21:28:15.137Z", + "new_balance":"4782.34", + "value":"-5.77" + } + }, + { + "id":"3b60bfb4-7bfa-4567-b40c-354a24ae3964", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T03:02:18.219Z", + "completed":"2016-06-13T03:02:18.219Z", + "new_balance":"4683.22", + "value":"-99.12" + } + }, + { + "id":"e375cf2e-1066-4ece-9abd-bb527dbd0a62", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T04:26:29.629Z", + "completed":"2016-06-13T04:26:29.629Z", + "new_balance":"4601.43", + "value":"-81.79" + } + }, + { + "id":"97c393db-a539-497d-a016-b5b166e7f1d5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T20:12:52.074Z", + "completed":"2016-06-13T20:12:52.074Z", + "new_balance":"4555.89", + "value":"-45.54" + } + }, + { + "id":"8c69092a-675e-44ea-8002-b9a027fabd95", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T13:55:10.804Z", + "completed":"2016-06-14T13:55:10.804Z", + "new_balance":"4548.28", + "value":"-7.61" + } + }, + { + "id":"d38a86d5-9a75-4c57-af88-3ae4ff9c8c9b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T19:13:59.299Z", + "completed":"2016-06-14T19:13:59.299Z", + "new_balance":"4540.67", + "value":"-7.61" + } + }, + { + "id":"a6cd135f-ef65-44fd-8183-3301084605c0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T21:08:22.129Z", + "completed":"2016-06-14T21:08:22.129Z", + "new_balance":"4534.90", + "value":"-5.77" + } + }, + { + "id":"e9656f14-4e42-4c0f-b309-150999f1ecea", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T00:56:24.739Z", + "completed":"2016-06-15T00:56:24.739Z", + "new_balance":"4502.56", + "value":"-32.34" + } + }, + { + "id":"f3f323dd-c426-400e-a378-55269d9e262f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T02:51:45.837Z", + "completed":"2016-06-15T02:51:45.837Z", + "new_balance":"4496.79", + "value":"-5.77" + } + }, + { + "id":"1af6842b-22a0-489d-8ed9-877e2bf848fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T10:37:10.272Z", + "completed":"2016-06-15T10:37:10.272Z", + "new_balance":"4488.27", + "value":"-8.52" + } + }, + { + "id":"8e30e33c-aa74-478f-b9a7-28afb04ca8c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T19:11:47.527Z", + "completed":"2016-06-16T19:11:47.527Z", + "new_balance":"4463.97", + "value":"-24.30" + } + }, + { + "id":"da86438d-3577-47db-b8d3-eb3d352dc714", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T14:32:00.256Z", + "completed":"2016-06-17T14:32:00.256Z", + "new_balance":"4451.60", + "value":"-12.37" + } + }, + { + "id":"7737cf02-8687-4dca-9bd5-a7701aa18f49", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T01:47:23.922Z", + "completed":"2016-06-18T01:47:23.922Z", + "new_balance":"4409.11", + "value":"-42.49" + } + }, + { + "id":"a8fe7031-c004-433b-85aa-e0c5bae06cf3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T13:19:21.614Z", + "completed":"2016-06-18T13:19:21.614Z", + "new_balance":"4342.93", + "value":"-66.18" + } + }, + { + "id":"76d00512-b0ef-40d4-acc0-742cc1eeeedd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T14:16:38.837Z", + "completed":"2016-06-18T14:16:38.837Z", + "new_balance":"4337.16", + "value":"-5.77" + } + }, + { + "id":"9bbfa692-7d59-41d3-81e5-e356494f3eed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T18:17:24.508Z", + "completed":"2016-06-18T18:17:24.508Z", + "new_balance":"4331.39", + "value":"-5.77" + } + }, + { + "id":"49a81c91-f8ba-497a-ab43-6556de5fcf1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T18:33:41.248Z", + "completed":"2016-06-18T18:33:41.248Z", + "new_balance":"4230.13", + "value":"-101.26" + } + }, + { + "id":"d791c91f-736b-40b6-8dc2-42c0ef8fb3cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T23:35:27.989Z", + "completed":"2016-06-18T23:35:27.989Z", + "new_balance":"4210.97", + "value":"-19.16" + } + }, + { + "id":"a3163b98-a662-4353-b949-f5c2fb3ce2bd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:05:06.670Z", + "completed":"2016-06-19T03:05:06.670Z", + "new_balance":"4168.74", + "value":"-42.23" + } + }, + { + "id":"c1dac352-40f3-4878-8740-e023e49de65f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T05:56:34.886Z", + "completed":"2016-06-19T05:56:34.886Z", + "new_balance":"4124.77", + "value":"-43.97" + } + }, + { + "id":"72744f75-46ae-49ac-9e1c-fe04e486766c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T10:16:51.917Z", + "completed":"2016-06-19T10:16:51.917Z", + "new_balance":"4075.88", + "value":"-48.89" + } + }, + { + "id":"0c335f74-3b98-4692-96ab-f9a7a111cbe0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T06:25:29.933Z", + "completed":"2016-06-21T06:25:29.933Z", + "new_balance":"3971.56", + "value":"-104.32" + } + }, + { + "id":"0f7c8954-5951-46da-9e8d-118d44a24038", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T21:15:42.987Z", + "completed":"2016-06-21T21:15:42.987Z", + "new_balance":"3874.06", + "value":"-97.50" + } + }, + { + "id":"44e9de95-b0f5-497b-a4ca-5958d5c2a41a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T04:11:01.021Z", + "completed":"2016-06-22T04:11:01.021Z", + "new_balance":"3861.05", + "value":"-13.01" + } + }, + { + "id":"b1f8c7b4-f953-479c-be3f-b6c2ef3c4fed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T08:02:20.245Z", + "completed":"2016-06-22T08:02:20.245Z", + "new_balance":"3820.73", + "value":"-40.32" + } + }, + { + "id":"3e7d567b-9b82-4c65-a506-52c37cc995de", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T20:47:41.245Z", + "completed":"2016-06-22T20:47:41.245Z", + "new_balance":"3814.96", + "value":"-5.77" + } + }, + { + "id":"cdf77652-86a3-4c10-b9db-b78c73d100a3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T07:49:19.561Z", + "completed":"2016-06-23T07:49:19.561Z", + "new_balance":"3802.17", + "value":"-12.79" + } + }, + { + "id":"679c3258-9d63-4227-9a2c-75bdb1d0cba8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T07:34:24.083Z", + "completed":"2016-06-24T07:34:24.083Z", + "new_balance":"3776.55", + "value":"-25.62" + } + }, + { + "id":"f53e0eea-cf04-46bc-a95d-88753430dfdc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T01:42:29.462Z", + "completed":"2016-06-26T01:42:29.462Z", + "new_balance":"3762.36", + "value":"-14.19" + } + }, + { + "id":"424061a3-1071-47ce-8c7b-e6373cd3a465", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T15:50:09.055Z", + "completed":"2016-06-30T15:50:09.055Z", + "new_balance":"3564.45", + "value":"-197.91" + } + }, + { + "id":"26b0596c-e565-44d1-b9e5-766ada3a42a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T19:29:34.911Z", + "completed":"2016-06-30T19:29:34.911Z", + "new_balance":"3515.67", + "value":"-48.78" + } + }, + { + "id":"e0f7d658-0f73-48c0-8ff6-6556e0f6215d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T09:46:19.593Z", + "completed":"2016-07-01T09:46:19.593Z", + "new_balance":"5196.08", + "value":"1680.41" + } + }, + { + "id":"5dce8e37-25b3-4596-a058-541df6df6719", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T16:13:59.942Z", + "completed":"2016-07-01T16:13:59.942Z", + "new_balance":"6218.50", + "value":"1022.42" + } + }, + { + "id":"d11e3e1b-4bcb-4acf-97db-2841d1389a20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T11:14:12.853Z", + "completed":"2016-07-03T11:14:12.853Z", + "new_balance":"5810.93", + "value":"-407.57" + } + }, + { + "id":"2ee807d3-9dbf-49b6-8c50-0d92c8344b58", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T06:03:56.960Z", + "completed":"2016-07-04T06:03:56.960Z", + "new_balance":"5804.55", + "value":"-6.38" + } + }, + { + "id":"6eefcbe0-fd25-4a0b-9947-37a4b0085cb2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T07:25:55.941Z", + "completed":"2016-07-04T07:25:55.941Z", + "new_balance":"5757.75", + "value":"-46.80" + } + }, + { + "id":"bb56ea64-0054-4cab-a991-491d7958ad07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T14:44:06.754Z", + "completed":"2016-07-04T14:44:06.754Z", + "new_balance":"5740.13", + "value":"-17.62" + } + }, + { + "id":"ff1d435b-8b75-4619-b5a2-5bc9d1c7cdd8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T23:26:45.559Z", + "completed":"2016-07-05T23:26:45.559Z", + "new_balance":"5729.22", + "value":"-10.91" + } + }, + { + "id":"5f4a708d-f444-4367-87cc-ab318f990684", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T15:19:14.209Z", + "completed":"2016-07-07T15:19:14.209Z", + "new_balance":"5722.23", + "value":"-6.99" + } + }, + { + "id":"44189b97-4a57-4b2e-b0e1-1a48d83b0439", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T00:05:24.673Z", + "completed":"2016-07-11T00:05:24.673Z", + "new_balance":"5693.07", + "value":"-29.16" + } + }, + { + "id":"2c7ea02d-a08b-4245-8466-784b0bb653a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T01:31:18.494Z", + "completed":"2016-07-11T01:31:18.494Z", + "new_balance":"5668.14", + "value":"-24.93" + } + }, + { + "id":"237988e4-54c4-4ede-9399-cdd9227e9bac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T03:23:08.794Z", + "completed":"2016-07-11T03:23:08.794Z", + "new_balance":"5652.13", + "value":"-16.01" + } + }, + { + "id":"2f7be21e-039b-47b0-be37-9c35de8b7a81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:21:36.057Z", + "completed":"2016-07-11T10:21:36.057Z", + "new_balance":"5637.14", + "value":"-14.99" + } + }, + { + "id":"fdf3779e-97b1-46ab-9cfa-96ff7c942c89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T19:46:57.858Z", + "completed":"2016-07-11T19:46:57.858Z", + "new_balance":"5617.98", + "value":"-19.16" + } + }, + { + "id":"fc284f5a-07b8-424d-ac98-b80fddfe58f3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T08:53:18.763Z", + "completed":"2016-07-13T08:53:18.763Z", + "new_balance":"5513.26", + "value":"-104.72" + } + }, + { + "id":"d15fcad0-2d0c-4abf-9efd-821b683f7fc0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T18:14:46.022Z", + "completed":"2016-07-13T18:14:46.022Z", + "new_balance":"5468.20", + "value":"-45.06" + } + }, + { + "id":"5fcb041f-1feb-4e53-86a1-037eeec54d45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T09:06:46.217Z", + "completed":"2016-07-16T09:06:46.217Z", + "new_balance":"5559.08", + "value":"90.88" + } + }, + { + "id":"a53362b1-9abc-4016-8a87-5dc77f9aba95", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T18:48:19.957Z", + "completed":"2016-07-16T18:48:19.957Z", + "new_balance":"5514.60", + "value":"-44.48" + } + }, + { + "id":"6515f1d2-3319-4b77-b095-853635d18879", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T02:34:35.385Z", + "completed":"2016-07-17T02:34:35.385Z", + "new_balance":"5504.53", + "value":"-10.07" + } + }, + { + "id":"7f5af5bc-8d44-4cd6-9c7c-55040443b62f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T05:20:32.599Z", + "completed":"2016-07-17T05:20:32.599Z", + "new_balance":"5498.76", + "value":"-5.77" + } + }, + { + "id":"5f70fc45-a04d-4f34-a8bd-d76929305382", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T15:55:00.211Z", + "completed":"2016-07-19T15:55:00.211Z", + "new_balance":"5419.68", + "value":"-79.08" + } + }, + { + "id":"14f0b3a3-f0e7-4c05-8b97-6bf9324b8229", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T00:55:57.607Z", + "completed":"2016-07-21T00:55:57.607Z", + "new_balance":"5394.28", + "value":"-25.40" + } + }, + { + "id":"844b92c3-aadd-4805-bdd1-a95575b4acfd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T04:16:26.742Z", + "completed":"2016-07-23T04:16:26.742Z", + "new_balance":"5363.47", + "value":"-30.81" + } + }, + { + "id":"ac3c18c7-8f3e-4657-83d3-f35e84e2c0be", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T16:58:27.478Z", + "completed":"2016-07-25T16:58:27.478Z", + "new_balance":"5348.64", + "value":"-14.83" + } + }, + { + "id":"6c9dd847-23ae-440f-b725-e687c0f29d9e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T18:13:05.243Z", + "completed":"2016-07-27T18:13:05.243Z", + "new_balance":"5341.65", + "value":"-6.99" + } + }, + { + "id":"0ff38665-bc8b-47ba-88a8-6e0438e733f8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T02:36:54.924Z", + "completed":"2016-07-28T02:36:54.924Z", + "new_balance":"5143.74", + "value":"-197.91" + } + }, + { + "id":"052b1691-15e4-4849-b23a-e084e9ec06ce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T03:04:22.895Z", + "completed":"2016-07-28T03:04:22.895Z", + "new_balance":"5094.96", + "value":"-48.78" + } + }, + { + "id":"b201cee9-da18-4953-838a-5448ba584055", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T03:17:49.607Z", + "completed":"2016-08-01T03:17:49.607Z", + "new_balance":"6117.38", + "value":"1022.42" + } + }, + { + "id":"c6682978-9064-4beb-ba8f-67704022677f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T16:34:22.713Z", + "completed":"2016-08-03T16:34:22.713Z", + "new_balance":"5953.90", + "value":"-163.48" + } + }, + { + "id":"75b445e0-4c7a-4a35-95e0-813e70c121ac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T22:52:00.644Z", + "completed":"2016-08-03T22:52:00.644Z", + "new_balance":"5546.33", + "value":"-407.57" + } + }, + { + "id":"fe30c0b1-df51-4b58-9958-b372fab3e9e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T15:48:22.641Z", + "completed":"2016-08-04T15:48:22.641Z", + "new_balance":"5531.82", + "value":"-14.51" + } + }, + { + "id":"b0a8c678-7d8a-4c9d-a817-90da3baceb96", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T04:17:56.561Z", + "completed":"2016-08-07T04:17:56.561Z", + "new_balance":"5502.66", + "value":"-29.16" + } + }, + { + "id":"f239a336-a9b6-459b-883f-f0c49745286f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T10:40:36.632Z", + "completed":"2016-08-07T10:40:36.632Z", + "new_balance":"5477.86", + "value":"-24.80" + } + }, + { + "id":"01ca8e01-7a44-446c-8580-0fcab9e0e195", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T22:42:36.061Z", + "completed":"2016-08-07T22:42:36.061Z", + "new_balance":"5471.37", + "value":"-6.49" + } + }, + { + "id":"04dbe669-26c7-41f2-bda0-b74e90e11a8b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T05:38:26.282Z", + "completed":"2016-08-08T05:38:26.282Z", + "new_balance":"5366.65", + "value":"-104.72" + } + }, + { + "id":"d7c88b81-9b91-4220-bf08-0e049c8b865f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T14:07:49.068Z", + "completed":"2016-08-08T14:07:49.068Z", + "new_balance":"5316.09", + "value":"-50.56" + } + }, + { + "id":"a1d12427-f908-4b40-9c36-cd226c94c4c4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T23:18:40.760Z", + "completed":"2016-08-08T23:18:40.760Z", + "new_balance":"5274.74", + "value":"-41.35" + } + }, + { + "id":"74840994-8906-45a0-9321-754d0404d92f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T11:50:27.129Z", + "completed":"2016-08-09T11:50:27.129Z", + "new_balance":"5248.94", + "value":"-25.80" + } + }, + { + "id":"3922c036-b522-460c-9782-8bea61a63c57", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T03:26:36.650Z", + "completed":"2016-08-11T03:26:36.650Z", + "new_balance":"5241.95", + "value":"-6.99" + } + }, + { + "id":"03c8c480-3dd6-45dc-bc24-4ecfdf4ec671", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T06:57:16.097Z", + "completed":"2016-08-14T06:57:16.097Z", + "new_balance":"5206.76", + "value":"-35.19" + } + }, + { + "id":"89e2b2e8-2df9-4c27-9642-4a50432a4a71", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T00:43:07.272Z", + "completed":"2016-08-15T00:43:07.272Z", + "new_balance":"5177.60", + "value":"-29.16" + } + }, + { + "id":"005588b2-fd3e-4ec4-a4f4-c0ef1bfca427", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T09:24:37.932Z", + "completed":"2016-08-17T09:24:37.932Z", + "new_balance":"5132.09", + "value":"-45.51" + } + }, + { + "id":"f08a39d2-c286-481d-81a8-6168e8b6293b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T11:01:12.523Z", + "completed":"2016-08-17T11:01:12.523Z", + "new_balance":"5126.32", + "value":"-5.77" + } + }, + { + "id":"b679a0fa-446e-44fd-93fd-73e6263bcb23", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T06:33:02.176Z", + "completed":"2016-08-19T06:33:02.176Z", + "new_balance":"5117.92", + "value":"-8.40" + } + }, + { + "id":"d30c9529-cba3-4e5f-a3cc-e41b4c0b7252", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T03:21:25.708Z", + "completed":"2016-08-25T03:21:25.708Z", + "new_balance":"5232.06", + "value":"114.14" + } + }, + { + "id":"5ee656fe-3f43-4d91-a193-701d1e8040ff", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T09:22:23.177Z", + "completed":"2016-08-28T09:22:23.177Z", + "new_balance":"5183.28", + "value":"-48.78" + } + }, + { + "id":"6d77f3ef-703e-4fab-b6b6-45e7a138f507", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T22:54:41.361Z", + "completed":"2016-08-28T22:54:41.361Z", + "new_balance":"4985.37", + "value":"-197.91" + } + }, + { + "id":"52f13701-7c10-4656-9c6c-03d682009c63", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:06:22.420Z", + "completed":"2016-09-01T04:06:22.420Z", + "new_balance":"6007.79", + "value":"1022.42" + } + }, + { + "id":"6b3b915b-1688-445e-bce5-0b10b27382cf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T17:55:34.366Z", + "completed":"2016-09-03T17:55:34.366Z", + "new_balance":"5600.22", + "value":"-407.57" + } + }, + { + "id":"c7f3779b-9a22-4461-a73d-e03bf3c7774f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T01:42:54.159Z", + "completed":"2016-09-04T01:42:54.159Z", + "new_balance":"5568.77", + "value":"-31.45" + } + }, + { + "id":"198f3c00-4014-4f12-bbba-358464d89b81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T06:18:39.239Z", + "completed":"2016-09-04T06:18:39.239Z", + "new_balance":"5537.96", + "value":"-30.81" + } + }, + { + "id":"919d294b-de57-4e64-9036-5e0e9381aa52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T15:04:24.042Z", + "completed":"2016-09-04T15:04:24.042Z", + "new_balance":"5520.96", + "value":"-17.00" + } + }, + { + "id":"2259e263-75ca-4cb9-9683-dcd92f29ac7d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T23:40:21.325Z", + "completed":"2016-09-04T23:40:21.325Z", + "new_balance":"5475.45", + "value":"-45.51" + } + }, + { + "id":"a2a3bf33-818e-47ff-89ab-7a5782fe260d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T03:17:00.927Z", + "completed":"2016-09-05T03:17:00.927Z", + "new_balance":"5469.68", + "value":"-5.77" + } + }, + { + "id":"39bbe42f-6feb-4c75-aeb9-11281b628e39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T06:46:42.965Z", + "completed":"2016-09-05T06:46:42.965Z", + "new_balance":"5370.56", + "value":"-99.12" + } + }, + { + "id":"888217e5-cae9-437d-bffd-2500c1c9f385", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T11:17:07.529Z", + "completed":"2016-09-05T11:17:07.529Z", + "new_balance":"5325.02", + "value":"-45.54" + } + }, + { + "id":"fd2fa174-36d0-49ce-b0a8-3a6113615ddf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T15:31:42.737Z", + "completed":"2016-09-05T15:31:42.737Z", + "new_balance":"5310.96", + "value":"-14.06" + } + }, + { + "id":"f834b5cc-2f78-471b-afc8-7e90cf27b3f9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T15:36:31.491Z", + "completed":"2016-09-05T15:36:31.491Z", + "new_balance":"5229.17", + "value":"-81.79" + } + }, + { + "id":"c02b2a8e-71b7-49d6-a425-973303948f7b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T23:01:29.690Z", + "completed":"2016-09-05T23:01:29.690Z", + "new_balance":"5124.45", + "value":"-104.72" + } + }, + { + "id":"1c87dc45-8409-4c32-922c-3cd07dd5042f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T01:45:18.423Z", + "completed":"2016-09-07T01:45:18.423Z", + "new_balance":"5115.93", + "value":"-8.52" + } + }, + { + "id":"c906061f-b85c-481c-8e37-7aae827c2d23", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T03:11:43.515Z", + "completed":"2016-09-07T03:11:43.515Z", + "new_balance":"5110.16", + "value":"-5.77" + } + }, + { + "id":"2495f675-29cf-409e-b731-87adae4d6b76", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T10:18:53.443Z", + "completed":"2016-09-07T10:18:53.443Z", + "new_balance":"5102.55", + "value":"-7.61" + } + }, + { + "id":"66426013-982a-40b1-972c-9cad2e606c63", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T17:21:13.152Z", + "completed":"2016-09-07T17:21:13.152Z", + "new_balance":"5094.94", + "value":"-7.61" + } + }, + { + "id":"347cdd6e-69f4-437d-83f6-9786376c7d50", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T19:06:32.970Z", + "completed":"2016-09-10T19:06:32.970Z", + "new_balance":"5062.60", + "value":"-32.34" + } + }, + { + "id":"13c7cd7d-5fc2-4b5b-bd01-5d290906a5e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T12:32:55.931Z", + "completed":"2016-09-11T12:32:55.931Z", + "new_balance":"5038.30", + "value":"-24.30" + } + }, + { + "id":"5a969eae-f904-4429-849f-06cc18cca22a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T20:06:21.181Z", + "completed":"2016-09-11T20:06:21.181Z", + "new_balance":"5032.53", + "value":"-5.77" + } + }, + { + "id":"c2205114-7c99-4aba-a313-8124a34ea38a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T20:50:34.104Z", + "completed":"2016-09-11T20:50:34.104Z", + "new_balance":"5020.16", + "value":"-12.37" + } + }, + { + "id":"cd3c7f3f-f717-47a1-a18d-cec7ccad4cc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T11:13:53.901Z", + "completed":"2016-09-12T11:13:53.901Z", + "new_balance":"4918.90", + "value":"-101.26" + } + }, + { + "id":"1ea38f6f-4a5c-4989-82a3-6cea195d4677", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T14:14:34.723Z", + "completed":"2016-09-12T14:14:34.723Z", + "new_balance":"4913.13", + "value":"-5.77" + } + }, + { + "id":"e86c5beb-072e-4222-8ffd-95501f14055b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T18:42:28.375Z", + "completed":"2016-09-12T18:42:28.375Z", + "new_balance":"4893.97", + "value":"-19.16" + } + }, + { + "id":"966a980d-2cea-430d-ab47-e04ba82d5777", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T22:27:22.337Z", + "completed":"2016-09-12T22:27:22.337Z", + "new_balance":"4827.79", + "value":"-66.18" + } + }, + { + "id":"b271033d-4106-45b5-be7e-30953cb2f348", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T04:22:49.596Z", + "completed":"2016-09-13T04:22:49.596Z", + "new_balance":"4785.30", + "value":"-42.49" + } + }, + { + "id":"77ed153b-9ee5-4058-ac49-e9ccfbddc84b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T09:40:58.609Z", + "completed":"2016-09-14T09:40:58.609Z", + "new_balance":"4743.07", + "value":"-42.23" + } + }, + { + "id":"26157851-4156-4012-b08f-63861261197f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T11:05:10.220Z", + "completed":"2016-09-14T11:05:10.220Z", + "new_balance":"4737.30", + "value":"-5.77" + } + }, + { + "id":"3aa8fc4a-d8f4-4117-b8d3-0194369f3d0b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T12:50:36.063Z", + "completed":"2016-09-16T12:50:36.063Z", + "new_balance":"4688.41", + "value":"-48.89" + } + }, + { + "id":"2ca0deaa-0f7c-48da-99cb-d666347b61e1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T15:21:54.569Z", + "completed":"2016-09-18T15:21:54.569Z", + "new_balance":"4644.44", + "value":"-43.97" + } + }, + { + "id":"460a1156-deb7-43ca-b2e7-12fcc58fcb34", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T02:54:57.723Z", + "completed":"2016-09-21T02:54:57.723Z", + "new_balance":"4546.94", + "value":"-97.50" + } + }, + { + "id":"172c6894-d272-47b1-a9a3-bf7b67ad3c1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T23:57:07.715Z", + "completed":"2016-09-21T23:57:07.715Z", + "new_balance":"4442.62", + "value":"-104.32" + } + }, + { + "id":"aaecc567-8d19-4300-b43d-41816085f8ef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T01:14:15.846Z", + "completed":"2016-09-23T01:14:15.846Z", + "new_balance":"4402.30", + "value":"-40.32" + } + }, + { + "id":"e7e89bc5-15f6-41c5-b248-e4cc8dddf190", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T16:38:29.716Z", + "completed":"2016-09-24T16:38:29.716Z", + "new_balance":"4396.53", + "value":"-5.77" + } + }, + { + "id":"dd5755fb-5b70-48e4-b6e6-bd19751e7579", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T12:51:49.063Z", + "completed":"2016-09-26T12:51:49.063Z", + "new_balance":"4383.74", + "value":"-12.79" + } + }, + { + "id":"c5010884-8aa6-478f-a181-7e1bcdaf0f94", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T13:21:08.492Z", + "completed":"2016-09-26T13:21:08.492Z", + "new_balance":"4358.12", + "value":"-25.62" + } + }, + { + "id":"1743c3e3-e010-4532-a43e-be64b0effbd6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T15:46:13.208Z", + "completed":"2016-09-26T15:46:13.208Z", + "new_balance":"4345.11", + "value":"-13.01" + } + }, + { + "id":"ff318205-aa88-4976-bdc4-e1aec231a832", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T20:20:32.675Z", + "completed":"2016-09-27T20:20:32.675Z", + "new_balance":"4330.92", + "value":"-14.19" + } + }, + { + "id":"ba94c9bf-18a9-4edc-901e-59bc29799806", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T15:08:25.205Z", + "completed":"2016-09-28T15:08:25.205Z", + "new_balance":"4282.14", + "value":"-48.78" + } + }, + { + "id":"09291a1b-f8f2-47e0-82d0-ae9ef686feeb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T16:34:29.964Z", + "completed":"2016-09-28T16:34:29.964Z", + "new_balance":"4084.23", + "value":"-197.91" + } + }, + { + "id":"c5c1af08-8e8c-4066-8570-e0275ad72e0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T03:02:06.460Z", + "completed":"2016-10-01T03:02:06.460Z", + "new_balance":"3676.66", + "value":"-407.57" + } + }, + { + "id":"f45b4282-2c2e-42f4-b39c-79ff098d43c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:04:10.341Z", + "completed":"2016-10-01T19:04:10.341Z", + "new_balance":"4699.08", + "value":"1022.42" + } + }, + { + "id":"f8d76d2f-7432-4a37-a912-c050de4a939a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T20:28:10.335Z", + "completed":"2016-10-01T20:28:10.335Z", + "new_balance":"6379.49", + "value":"1680.41" + } + }, + { + "id":"a7e368c5-9796-443f-840e-8b63c3ace730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T02:44:38.843Z", + "completed":"2016-10-03T02:44:38.843Z", + "new_balance":"6373.11", + "value":"-6.38" + } + }, + { + "id":"9996ad80-32d2-4d80-82ae-945081729980", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T09:59:19.415Z", + "completed":"2016-10-03T09:59:19.415Z", + "new_balance":"6326.31", + "value":"-46.80" + } + }, + { + "id":"ba2881af-9a3d-4c86-ace1-754c5dedf330", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T18:10:10.736Z", + "completed":"2016-10-03T18:10:10.736Z", + "new_balance":"6308.69", + "value":"-17.62" + } + }, + { + "id":"44cc611c-9ff2-48ba-bb2a-26ba1b90ed45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T05:07:34.713Z", + "completed":"2016-10-05T05:07:34.713Z", + "new_balance":"6297.78", + "value":"-10.91" + } + }, + { + "id":"7d4e4677-ae89-4e72-9aad-bfaef0fb4bd5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T15:46:58.145Z", + "completed":"2016-10-05T15:46:58.145Z", + "new_balance":"6290.79", + "value":"-6.99" + } + }, + { + "id":"fa338b94-1609-401f-8fb4-442630ee5212", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T13:14:37.339Z", + "completed":"2016-10-06T13:14:37.339Z", + "new_balance":"6265.86", + "value":"-24.93" + } + }, + { + "id":"384fe009-c388-4d63-8da7-4821fdcc1596", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T18:52:55.907Z", + "completed":"2016-10-09T18:52:55.907Z", + "new_balance":"6246.70", + "value":"-19.16" + } + }, + { + "id":"f876bb8f-7488-44bf-8653-7377ab132f24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T12:23:24.968Z", + "completed":"2016-10-10T12:23:24.968Z", + "new_balance":"6231.71", + "value":"-14.99" + } + }, + { + "id":"c182102d-e3d9-4e2c-ac40-7ff47caad05d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T13:46:31.658Z", + "completed":"2016-10-11T13:46:31.658Z", + "new_balance":"6202.55", + "value":"-29.16" + } + }, + { + "id":"ffba4577-fe3c-4e7e-ab87-339199aa6878", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:58:10.933Z", + "completed":"2016-10-11T17:58:10.933Z", + "new_balance":"6186.54", + "value":"-16.01" + } + }, + { + "id":"7b337291-1ac4-436a-9054-94f5c8984f0c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T13:03:36.411Z", + "completed":"2016-10-14T13:03:36.411Z", + "new_balance":"6081.82", + "value":"-104.72" + } + }, + { + "id":"6e9b371c-c6e4-4917-b5f4-cd5a6056b310", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T17:12:27.565Z", + "completed":"2016-10-14T17:12:27.565Z", + "new_balance":"6036.76", + "value":"-45.06" + } + }, + { + "id":"6aca22fb-fd14-4e99-adb7-6b232b4b1a60", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T04:37:50.031Z", + "completed":"2016-10-17T04:37:50.031Z", + "new_balance":"5992.28", + "value":"-44.48" + } + }, + { + "id":"50c86c21-715a-4456-b962-0dc541dda357", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T13:30:12.031Z", + "completed":"2016-10-18T13:30:12.031Z", + "new_balance":"5982.21", + "value":"-10.07" + } + }, + { + "id":"82367b20-1137-43c1-a505-9744441015ec", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T15:58:41.972Z", + "completed":"2016-10-18T15:58:41.972Z", + "new_balance":"5903.13", + "value":"-79.08" + } + }, + { + "id":"de1d156e-b832-4d3e-9513-96c00422f7e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T23:37:19.361Z", + "completed":"2016-10-18T23:37:19.361Z", + "new_balance":"5897.36", + "value":"-5.77" + } + }, + { + "id":"e62eb857-d124-4302-96ff-2e785c1f64cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T15:47:31.893Z", + "completed":"2016-10-23T15:47:31.893Z", + "new_balance":"5871.96", + "value":"-25.40" + } + }, + { + "id":"23e6d549-cad7-4736-8e9b-321606ddbfc9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T05:11:12.733Z", + "completed":"2016-10-24T05:11:12.733Z", + "new_balance":"5841.15", + "value":"-30.81" + } + }, + { + "id":"6aded5b6-187d-4cac-8a1e-376c0822d290", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T17:43:45.246Z", + "completed":"2016-10-24T17:43:45.246Z", + "new_balance":"5826.32", + "value":"-14.83" + } + }, + { + "id":"4f84360a-4e1e-423c-99c5-95f2c2bfcc7f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T04:15:15.154Z", + "completed":"2016-10-26T04:15:15.154Z", + "new_balance":"5819.33", + "value":"-6.99" + } + }, + { + "id":"954e5e39-e9a0-4456-b0d4-86bb9965b601", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T12:35:07.703Z", + "completed":"2016-10-30T12:35:07.703Z", + "new_balance":"5621.42", + "value":"-197.91" + } + }, + { + "id":"cb1c17fa-4b2c-4ab2-bbbc-0a85370c906c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:49:23.192Z", + "completed":"2016-10-30T15:49:23.192Z", + "new_balance":"5572.64", + "value":"-48.78" + } + }, + { + "id":"bc4dc28e-7fd5-4362-ad1e-0664e2d6294a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T04:23:56.710Z", + "completed":"2016-11-02T04:23:56.710Z", + "new_balance":"5566.15", + "value":"-6.49" + } + }, + { + "id":"8a3d0289-24b3-49aa-ab33-66dbc63265d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T13:43:42.702Z", + "completed":"2016-11-02T13:43:42.702Z", + "new_balance":"5402.67", + "value":"-163.48" + } + }, + { + "id":"cf7e8cef-2493-4542-92f1-1a7b14f7009f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T14:10:21.500Z", + "completed":"2016-11-02T14:10:21.500Z", + "new_balance":"5388.16", + "value":"-14.51" + } + }, + { + "id":"bae85444-9213-4f25-a89e-75cfd2d57835", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T21:43:39.326Z", + "completed":"2016-11-02T21:43:39.326Z", + "new_balance":"4980.59", + "value":"-407.57" + } + }, + { + "id":"7e69c22e-1985-4c59-9c0d-2bb2c22bb275", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T21:11:16.946Z", + "completed":"2016-11-06T21:11:16.946Z", + "new_balance":"4955.79", + "value":"-24.80" + } + }, + { + "id":"19badd77-a349-4a5a-8bf6-3896e019ae48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T23:06:40.250Z", + "completed":"2016-11-06T23:06:40.250Z", + "new_balance":"4926.63", + "value":"-29.16" + } + }, + { + "id":"4809ad50-6192-40cb-8f10-5eddf129d6c2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T03:28:37.213Z", + "completed":"2016-11-07T03:28:37.213Z", + "new_balance":"4885.28", + "value":"-41.35" + } + }, + { + "id":"900da4a2-195a-46f0-a4f7-9b5c481d5fb2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T07:09:42.339Z", + "completed":"2016-11-07T07:09:42.339Z", + "new_balance":"4780.56", + "value":"-104.72" + } + }, + { + "id":"6fb520c5-73ad-42d4-a3bb-c25b7dffd598", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T15:32:14.335Z", + "completed":"2016-11-09T15:32:14.335Z", + "new_balance":"5802.98", + "value":"1022.42" + } + }, + { + "id":"99495764-ae62-43d7-9956-dd4eb79d6e13", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:07:20.249Z", + "completed":"2016-11-14T05:07:20.249Z", + "new_balance":"5777.18", + "value":"-25.80" + } + }, + { + "id":"16812dbd-f4da-4591-8ecf-03ac1406b773", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T21:24:10.402Z", + "completed":"2016-11-14T21:24:10.402Z", + "new_balance":"5726.62", + "value":"-50.56" + } + }, + { + "id":"1d7886e5-d913-4558-a4a3-acdb99a1a7b7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T14:31:57.296Z", + "completed":"2016-11-16T14:31:57.296Z", + "new_balance":"5719.63", + "value":"-6.99" + } + }, + { + "id":"da72e46c-d180-43f5-9d1a-92044664cc0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T18:49:24.406Z", + "completed":"2016-11-20T18:49:24.406Z", + "new_balance":"5684.44", + "value":"-35.19" + } + }, + { + "id":"749eee81-5aad-404a-8cfb-2e61489b2c43", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T03:22:07.496Z", + "completed":"2016-11-23T03:22:07.496Z", + "new_balance":"5638.93", + "value":"-45.51" + } + }, + { + "id":"0d609256-6db5-4aeb-88fa-854a813e4e55", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T03:50:07.529Z", + "completed":"2016-11-23T03:50:07.529Z", + "new_balance":"5609.77", + "value":"-29.16" + } + }, + { + "id":"b01f8ddb-efd7-42b5-b6db-35de662c9b1c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T19:12:14.836Z", + "completed":"2016-11-23T19:12:14.836Z", + "new_balance":"5604.00", + "value":"-5.77" + } + }, + { + "id":"b1dea62e-2d08-4e0a-82a2-0ee230099996", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:41:04.697Z", + "completed":"2016-11-28T01:41:04.697Z", + "new_balance":"5595.60", + "value":"-8.40" + } + }, + { + "id":"819555a6-5bd8-4ffa-abc0-5415b85a1f4a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T02:53:14.798Z", + "completed":"2016-11-30T02:53:14.798Z", + "new_balance":"5397.69", + "value":"-197.91" + } + }, + { + "id":"59733305-57b0-4730-8705-0e35adc1c816", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T12:20:16.896Z", + "completed":"2016-11-30T12:20:16.896Z", + "new_balance":"5348.91", + "value":"-48.78" + } + }, + { + "id":"b75762e9-3553-45da-ac67-aa4fca8856e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:55:34.986Z", + "completed":"2016-12-01T16:55:34.986Z", + "new_balance":"6371.33", + "value":"1022.42" + } + }, + { + "id":"39536561-5b73-4d8a-82ba-ebc620a0c7d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T21:28:13.464Z", + "completed":"2016-12-01T21:28:13.464Z", + "new_balance":"5963.76", + "value":"-407.57" + } + }, + { + "id":"3a6f1801-cb32-4c2a-9614-fe483d77b19a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T18:11:06.266Z", + "completed":"2016-12-04T18:11:06.266Z", + "new_balance":"5946.76", + "value":"-17.00" + } + }, + { + "id":"0934bd69-e664-49fd-af36-29f99975dd80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T23:33:14.164Z", + "completed":"2016-12-04T23:33:14.164Z", + "new_balance":"5915.31", + "value":"-31.45" + } + }, + { + "id":"d5320fac-645d-477f-aa0e-0d8c96e14e52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T06:32:04.733Z", + "completed":"2016-12-11T06:32:04.733Z", + "new_balance":"5884.50", + "value":"-30.81" + } + }, + { + "id":"72afbaa9-4d6c-4baa-99cf-3a7d4ff71192", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T09:52:05.571Z", + "completed":"2016-12-11T09:52:05.571Z", + "new_balance":"5838.99", + "value":"-45.51" + } + }, + { + "id":"06ea80fd-5f64-4784-992a-ec0957721588", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T01:36:21.225Z", + "completed":"2016-12-14T01:36:21.225Z", + "new_balance":"5757.20", + "value":"-81.79" + } + }, + { + "id":"c9f728b8-b0f1-450d-9ddd-b6353d936b1f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T07:19:43.115Z", + "completed":"2016-12-14T07:19:43.115Z", + "new_balance":"5749.59", + "value":"-7.61" + } + }, + { + "id":"5accdde6-fbba-4500-abcc-3a24f3c4e022", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T09:50:03.949Z", + "completed":"2016-12-14T09:50:03.949Z", + "new_balance":"5743.82", + "value":"-5.77" + } + }, + { + "id":"19301b8d-1307-4df7-a132-775cb23ef23e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T10:53:37.728Z", + "completed":"2016-12-14T10:53:37.728Z", + "new_balance":"5729.76", + "value":"-14.06" + } + }, + { + "id":"c0d76b90-d635-41f6-acd7-de777819cafc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T11:04:22.003Z", + "completed":"2016-12-14T11:04:22.003Z", + "new_balance":"5723.99", + "value":"-5.77" + } + }, + { + "id":"6e4e4b47-3b28-4279-8f51-cd0fe8016b44", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T11:25:36.184Z", + "completed":"2016-12-14T11:25:36.184Z", + "new_balance":"5716.38", + "value":"-7.61" + } + }, + { + "id":"216b1727-0abf-40fb-b944-b537616c2ced", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T12:26:44.201Z", + "completed":"2016-12-14T12:26:44.201Z", + "new_balance":"5611.66", + "value":"-104.72" + } + }, + { + "id":"1aacfec2-c28e-49a4-ae0f-eec5f7c179d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T13:01:27.232Z", + "completed":"2016-12-14T13:01:27.232Z", + "new_balance":"5512.54", + "value":"-99.12" + } + }, + { + "id":"55bd29bd-628b-46f2-837a-edcf9fdaccd5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T20:45:30.262Z", + "completed":"2016-12-14T20:45:30.262Z", + "new_balance":"5467.00", + "value":"-45.54" + } + }, + { + "id":"f075e23c-b206-4fa8-9b03-aba8b8e9ca1e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T02:52:21.355Z", + "completed":"2016-12-15T02:52:21.355Z", + "new_balance":"5458.48", + "value":"-8.52" + } + }, + { + "id":"27d9aa7e-f40d-42e1-8256-18b3cbb5a0a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T08:16:29.458Z", + "completed":"2016-12-15T08:16:29.458Z", + "new_balance":"5426.14", + "value":"-32.34" + } + }, + { + "id":"c598afee-e6c7-47fd-b9df-fa85edb75c90", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T22:07:06.202Z", + "completed":"2016-12-15T22:07:06.202Z", + "new_balance":"5420.37", + "value":"-5.77" + } + }, + { + "id":"f8b2b993-700a-4d0d-8b8a-ae590394f082", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T03:11:40.635Z", + "completed":"2016-12-18T03:11:40.635Z", + "new_balance":"5414.60", + "value":"-5.77" + } + }, + { + "id":"96e557b8-8a1f-4c3f-8daf-6f47f2adc89e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T11:16:00.291Z", + "completed":"2016-12-18T11:16:00.291Z", + "new_balance":"5402.23", + "value":"-12.37" + } + }, + { + "id":"e511451b-6489-49e0-a6eb-ebc688fa837e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T13:45:21.959Z", + "completed":"2016-12-18T13:45:21.959Z", + "new_balance":"5300.97", + "value":"-101.26" + } + }, + { + "id":"4d6065d3-c514-4d94-9b14-2811ee85ed67", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T14:59:59.449Z", + "completed":"2016-12-18T14:59:59.449Z", + "new_balance":"5258.48", + "value":"-42.49" + } + }, + { + "id":"39625412-86f8-4515-b9d0-c70ffc09e764", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T16:05:05.465Z", + "completed":"2016-12-18T16:05:05.465Z", + "new_balance":"5234.18", + "value":"-24.30" + } + }, + { + "id":"d5049d4b-09ac-4a6a-b819-5e741a2a9730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T16:21:15.718Z", + "completed":"2016-12-18T16:21:15.718Z", + "new_balance":"5228.41", + "value":"-5.77" + } + }, + { + "id":"5c6b244d-641c-4c65-af60-5ba98d45e7d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:08:04.367Z", + "completed":"2016-12-18T20:08:04.367Z", + "new_balance":"5162.23", + "value":"-66.18" + } + }, + { + "id":"8f9e2ee3-ee85-423f-836d-ba69e47e5a9e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T21:59:01.142Z", + "completed":"2016-12-18T21:59:01.142Z", + "new_balance":"5143.07", + "value":"-19.16" + } + }, + { + "id":"d0b4dcb3-52b9-490a-acd1-a9bbc1ab9392", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:35:19.686Z", + "completed":"2016-12-19T06:35:19.686Z", + "new_balance":"5099.10", + "value":"-43.97" + } + }, + { + "id":"4cb5721f-4f6c-4446-ab69-4be417298562", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T15:55:27.646Z", + "completed":"2016-12-19T15:55:27.646Z", + "new_balance":"5050.21", + "value":"-48.89" + } + }, + { + "id":"c52c1f7b-1ddc-4d41-b278-a3b306f62993", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T21:30:46.990Z", + "completed":"2016-12-19T21:30:46.990Z", + "new_balance":"5007.98", + "value":"-42.23" + } + }, + { + "id":"c56ccb45-4d58-4693-a2df-092c4e105605", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T09:03:13.123Z", + "completed":"2016-12-21T09:03:13.123Z", + "new_balance":"4903.66", + "value":"-104.32" + } + }, + { + "id":"b7a4c214-5cd3-4ffd-b19a-d78639ce6e11", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T09:40:45.568Z", + "completed":"2016-12-21T09:40:45.568Z", + "new_balance":"4890.65", + "value":"-13.01" + } + }, + { + "id":"22fa62e1-9c68-44ac-a4e8-27c10ac691a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T17:44:23.417Z", + "completed":"2016-12-21T17:44:23.417Z", + "new_balance":"4793.15", + "value":"-97.50" + } + }, + { + "id":"7f25350f-42bc-4421-9adf-6861b633060a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T19:36:28.014Z", + "completed":"2016-12-21T19:36:28.014Z", + "new_balance":"4752.83", + "value":"-40.32" + } + }, + { + "id":"4a73a88a-ceef-4d33-aa56-55737e19f599", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T21:37:49.147Z", + "completed":"2016-12-21T21:37:49.147Z", + "new_balance":"4747.06", + "value":"-5.77" + } + }, + { + "id":"9cb549c2-7860-4bd2-830a-e1d2030a82c6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T03:56:42.411Z", + "completed":"2016-12-24T03:56:42.411Z", + "new_balance":"4732.87", + "value":"-14.19" + } + }, + { + "id":"53f9dc15-ebc6-4d22-9583-5ffb32efc62b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T11:22:21.522Z", + "completed":"2016-12-24T11:22:21.522Z", + "new_balance":"4707.25", + "value":"-25.62" + } + }, + { + "id":"60245522-de30-46c7-bc78-5adfc2f1f7a7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T17:39:16.680Z", + "completed":"2016-12-24T17:39:16.680Z", + "new_balance":"4694.46", + "value":"-12.79" + } + }, + { + "id":"99898db8-959b-4884-9622-5f9ea9c3d06d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T01:44:10.462Z", + "completed":"2016-12-30T01:44:10.462Z", + "new_balance":"4496.55", + "value":"-197.91" + } + }, + { + "id":"a7e52ebc-a735-421f-8dee-1647b7521105", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T17:19:21.321Z", + "completed":"2016-12-30T17:19:21.321Z", + "new_balance":"4447.77", + "value":"-48.78" + } + }, + { + "id":"ad429852-2257-4629-9f7c-6b3d8e86b29b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T07:07:21.933Z", + "completed":"2017-01-01T07:07:21.933Z", + "new_balance":"5470.19", + "value":"1022.42" + } + }, + { + "id":"98a03b26-e1b6-4798-9966-f081c6ab2ef1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T23:28:23.541Z", + "completed":"2017-01-01T23:28:23.541Z", + "new_balance":"7150.60", + "value":"1680.41" + } + }, + { + "id":"6d75c859-a4d2-416e-b3d3-9e5d57d1af15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T06:04:56.451Z", + "completed":"2017-01-02T06:04:56.451Z", + "new_balance":"6743.03", + "value":"-407.57" + } + }, + { + "id":"e5842e59-7dc9-4ede-bd03-1ae5db640280", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T02:02:08.877Z", + "completed":"2017-01-03T02:02:08.877Z", + "new_balance":"6736.65", + "value":"-6.38" + } + }, + { + "id":"84c294e1-aa8f-4609-aec2-103be7d42f1a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T03:56:44.937Z", + "completed":"2017-01-03T03:56:44.937Z", + "new_balance":"6689.85", + "value":"-46.80" + } + }, + { + "id":"16c9c6fb-9f94-4535-bff7-035515ddef06", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T23:19:49.796Z", + "completed":"2017-01-03T23:19:49.796Z", + "new_balance":"6672.23", + "value":"-17.62" + } + }, + { + "id":"aeb45c85-6646-4bbd-b0a3-9c1bdfa7c20b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T07:13:58.440Z", + "completed":"2017-01-04T07:13:58.440Z", + "new_balance":"6661.32", + "value":"-10.91" + } + }, + { + "id":"918fb47a-a458-4809-94e5-664c85acd4f0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:01:20.814Z", + "completed":"2017-01-05T19:01:20.814Z", + "new_balance":"6654.33", + "value":"-6.99" + } + }, + { + "id":"9a59b2fc-4cce-4a7d-b3a1-b0aa25e85b38", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T02:11:04.467Z", + "completed":"2017-01-07T02:11:04.467Z", + "new_balance":"6629.40", + "value":"-24.93" + } + }, + { + "id":"b873981c-266c-47e7-9a14-0b1a04ab76f4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T12:17:02.145Z", + "completed":"2017-01-07T12:17:02.145Z", + "new_balance":"6610.24", + "value":"-19.16" + } + }, + { + "id":"2db480fc-9bef-4a91-b58a-eddea4e8d949", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T07:00:41.010Z", + "completed":"2017-01-08T07:00:41.010Z", + "new_balance":"6594.23", + "value":"-16.01" + } + }, + { + "id":"5133cee5-8115-4fc1-a19f-bb91a9353008", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T21:53:52.813Z", + "completed":"2017-01-08T21:53:52.813Z", + "new_balance":"6579.24", + "value":"-14.99" + } + }, + { + "id":"4d0a0e7b-7da8-407c-9e2b-1ca3cd0c4829", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T09:03:39.330Z", + "completed":"2017-01-09T09:03:39.330Z", + "new_balance":"6550.08", + "value":"-29.16" + } + }, + { + "id":"3a03a64a-0361-4bbd-9bc1-1d4712b0801d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T15:22:28.928Z", + "completed":"2017-01-09T15:22:28.928Z", + "new_balance":"6505.02", + "value":"-45.06" + } + }, + { + "id":"2113747e-d539-4b55-a191-c4e9b7fa5c84", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T00:29:40.090Z", + "completed":"2017-01-10T00:29:40.090Z", + "new_balance":"6460.54", + "value":"-44.48" + } + }, + { + "id":"acfab024-70da-4f5f-86ee-d12b1cc9f83b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T01:15:13.441Z", + "completed":"2017-01-10T01:15:13.441Z", + "new_balance":"6355.82", + "value":"-104.72" + } + }, + { + "id":"91a1e173-bdcb-44d8-9e6a-dfd661b80cec", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T01:49:32.242Z", + "completed":"2017-01-11T01:49:32.242Z", + "new_balance":"6350.05", + "value":"-5.77" + } + }, + { + "id":"801b1a87-3225-419b-8853-f5bf687ef26d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T05:03:29.978Z", + "completed":"2017-01-11T05:03:29.978Z", + "new_balance":"6440.93", + "value":"90.88" + } + }, + { + "id":"cbfb41cd-64be-4e44-930f-1059362e8531", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T18:53:58.466Z", + "completed":"2017-01-11T18:53:58.466Z", + "new_balance":"6361.85", + "value":"-79.08" + } + }, + { + "id":"1baeab13-3da3-4723-82f4-15ba56bd04d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T16:13:30.393Z", + "completed":"2017-01-12T16:13:30.393Z", + "new_balance":"6351.78", + "value":"-10.07" + } + }, + { + "id":"35ae9926-b730-4796-9509-f6d5ab74eb72", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T20:38:28.655Z", + "completed":"2017-01-15T20:38:28.655Z", + "new_balance":"6326.38", + "value":"-25.40" + } + }, + { + "id":"a4185760-324d-48c2-b0ed-877734ed1935", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T20:18:49.787Z", + "completed":"2017-01-16T20:18:49.787Z", + "new_balance":"6295.57", + "value":"-30.81" + } + }, + { + "id":"7e3eaf12-6d4d-48c4-89f8-af79bf3344b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T04:38:20.828Z", + "completed":"2017-01-17T04:38:20.828Z", + "new_balance":"6280.74", + "value":"-14.83" + } + }, + { + "id":"ae956c2c-69dc-4c2a-8feb-7f451dc88458", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T17:42:37.483Z", + "completed":"2017-01-20T17:42:37.483Z", + "new_balance":"6273.75", + "value":"-6.99" + } + }, + { + "id":"5cef0dc3-320d-45a0-855c-90dbcc1d87b5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T13:42:02.658Z", + "completed":"2017-01-21T13:42:02.658Z", + "new_balance":"6224.97", + "value":"-48.78" + } + }, + { + "id":"0439d31d-d1d7-499a-babe-e678541c7407", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T10:17:23.530Z", + "completed":"2017-01-23T10:17:23.530Z", + "new_balance":"6027.06", + "value":"-197.91" + } + }, + { + "id":"89ee0f91-ae68-432a-abb1-cddc35b98944", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T04:22:35.580Z", + "completed":"2017-02-01T04:22:35.580Z", + "new_balance":"7049.48", + "value":"1022.42" + } + }, + { + "id":"e6fc9ab9-a264-45fa-a098-8d76d27f5fb6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T15:05:17.918Z", + "completed":"2017-02-03T15:05:17.918Z", + "new_balance":"6641.91", + "value":"-407.57" + } + }, + { + "id":"b0c420bb-17f4-44d8-b89a-9862d639ade8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T18:00:03.238Z", + "completed":"2017-02-03T18:00:03.238Z", + "new_balance":"6478.43", + "value":"-163.48" + } + }, + { + "id":"e73f9b16-b03d-442c-890f-c8d722a5c236", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T21:11:00.790Z", + "completed":"2017-02-04T21:11:00.790Z", + "new_balance":"6463.92", + "value":"-14.51" + } + }, + { + "id":"adf9f039-86a0-4406-81ab-589963efb49d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T07:20:26.470Z", + "completed":"2017-02-05T07:20:26.470Z", + "new_balance":"6457.43", + "value":"-6.49" + } + }, + { + "id":"fc0f5205-ac51-420f-b85f-d3d71d21aecf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:32:41.355Z", + "completed":"2017-02-06T14:32:41.355Z", + "new_balance":"6432.63", + "value":"-24.80" + } + }, + { + "id":"b319d2df-424d-4efa-95dc-aa612d3d33f5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T02:25:07.513Z", + "completed":"2017-02-07T02:25:07.513Z", + "new_balance":"6391.28", + "value":"-41.35" + } + }, + { + "id":"916b609a-ac75-417b-b4dd-c222c52d6d9c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T14:56:25.962Z", + "completed":"2017-02-07T14:56:25.962Z", + "new_balance":"6286.56", + "value":"-104.72" + } + }, + { + "id":"55a47155-d1b9-4395-b8b1-3dfc4d7a8075", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:43:52.545Z", + "completed":"2017-02-07T20:43:52.545Z", + "new_balance":"6257.40", + "value":"-29.16" + } + }, + { + "id":"ddf95bb2-491a-430c-869f-20f1c929f25f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:56:52.713Z", + "completed":"2017-02-08T07:56:52.713Z", + "new_balance":"6206.84", + "value":"-50.56" + } + }, + { + "id":"7bb1d664-9388-4692-bd31-cfacf1ab2b10", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T10:05:57.831Z", + "completed":"2017-02-09T10:05:57.831Z", + "new_balance":"6181.04", + "value":"-25.80" + } + }, + { + "id":"746b6f69-f791-4766-a208-8bfa2539e9c3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T18:43:45.506Z", + "completed":"2017-02-10T18:43:45.506Z", + "new_balance":"6174.05", + "value":"-6.99" + } + }, + { + "id":"746507e9-bf00-42a1-bcf7-067f0dd368b1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T08:54:57.290Z", + "completed":"2017-02-12T08:54:57.290Z", + "new_balance":"6138.86", + "value":"-35.19" + } + }, + { + "id":"20c973da-1573-4046-83ea-0b31ef13fe0c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T00:41:01.195Z", + "completed":"2017-02-14T00:41:01.195Z", + "new_balance":"6109.70", + "value":"-29.16" + } + }, + { + "id":"9d62dbde-ec04-4f9e-887d-4def2f849370", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T13:06:49.047Z", + "completed":"2017-02-16T13:06:49.047Z", + "new_balance":"6103.93", + "value":"-5.77" + } + }, + { + "id":"35460678-f011-4d2a-a803-fb2c98b04633", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T22:13:06.971Z", + "completed":"2017-02-16T22:13:06.971Z", + "new_balance":"6058.42", + "value":"-45.51" + } + }, + { + "id":"ca29f7de-1245-44c8-ad46-0942643481a8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T09:24:11.203Z", + "completed":"2017-02-18T09:24:11.203Z", + "new_balance":"6050.02", + "value":"-8.40" + } + }, + { + "id":"25e3318d-3379-411a-89cf-5a3fed5cdb2d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T03:21:18.794Z", + "completed":"2017-02-21T03:21:18.794Z", + "new_balance":"6001.24", + "value":"-48.78" + } + }, + { + "id":"84efb6d1-225e-4747-bf15-6a198defe21f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T05:12:31.731Z", + "completed":"2017-02-21T05:12:31.731Z", + "new_balance":"6115.38", + "value":"114.14" + } + }, + { + "id":"5cde21d4-5db9-4eea-bc81-5fbf820088fc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T12:05:13.263Z", + "completed":"2017-02-27T12:05:13.263Z", + "new_balance":"5917.47", + "value":"-197.91" + } + }, + { + "id":"9f189544-a6ed-46a2-a726-61fae801b279", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T06:29:47.693Z", + "completed":"2017-03-01T06:29:47.693Z", + "new_balance":"6939.89", + "value":"1022.42" + } + }, + { + "id":"1c2de7d0-fdde-4efd-b3d2-d03a5921fcb1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T23:00:36.773Z", + "completed":"2017-03-03T23:00:36.773Z", + "new_balance":"6532.32", + "value":"-407.57" + } + }, + { + "id":"2358a816-4a8b-4d64-a6ba-3f3817c1ae5b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T09:11:42.853Z", + "completed":"2017-03-04T09:11:42.853Z", + "new_balance":"6501.51", + "value":"-30.81" + } + }, + { + "id":"cd2de8b9-9522-4712-a571-cadf74659b07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T15:22:10.271Z", + "completed":"2017-03-04T15:22:10.271Z", + "new_balance":"6470.06", + "value":"-31.45" + } + }, + { + "id":"46a56263-86c7-4452-a66d-051ddf79b9a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T21:30:25.673Z", + "completed":"2017-03-04T21:30:25.673Z", + "new_balance":"6424.55", + "value":"-45.51" + } + }, + { + "id":"2c827e09-3dbc-4324-bcd7-f5214b3f8604", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T23:25:51.838Z", + "completed":"2017-03-04T23:25:51.838Z", + "new_balance":"6407.55", + "value":"-17.00" + } + }, + { + "id":"7fcecc8f-8c59-41d1-9cb0-0007b94e5b0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T02:43:22.625Z", + "completed":"2017-03-05T02:43:22.625Z", + "new_balance":"6302.83", + "value":"-104.72" + } + }, + { + "id":"32517c27-7d78-4e07-a69f-0bfef0a3b6f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T15:25:00.628Z", + "completed":"2017-03-05T15:25:00.628Z", + "new_balance":"6257.29", + "value":"-45.54" + } + }, + { + "id":"68309a27-54bc-4d34-9e67-a6486288271c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T19:18:36.911Z", + "completed":"2017-03-05T19:18:36.911Z", + "new_balance":"6243.23", + "value":"-14.06" + } + }, + { + "id":"406c25c6-e80a-4c03-9a16-1411e587d586", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T22:27:42.367Z", + "completed":"2017-03-05T22:27:42.367Z", + "new_balance":"6237.46", + "value":"-5.77" + } + }, + { + "id":"1316e4e1-3447-41e8-b705-c12f51c8c85a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T13:57:32.675Z", + "completed":"2017-03-06T13:57:32.675Z", + "new_balance":"6155.67", + "value":"-81.79" + } + }, + { + "id":"15c79a57-747d-4dcf-9b3b-0d6829ec70d5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T23:32:40.139Z", + "completed":"2017-03-06T23:32:40.139Z", + "new_balance":"6056.55", + "value":"-99.12" + } + }, + { + "id":"ffd18332-dc25-4220-9f87-68e87f37c7e5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T01:51:50.526Z", + "completed":"2017-03-07T01:51:50.526Z", + "new_balance":"6048.94", + "value":"-7.61" + } + }, + { + "id":"a131548f-f89e-42ab-884e-17f12a86cd80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T19:16:47.124Z", + "completed":"2017-03-07T19:16:47.124Z", + "new_balance":"6043.17", + "value":"-5.77" + } + }, + { + "id":"d97315ca-735c-4608-91aa-03dcd7fa9027", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T02:37:47.291Z", + "completed":"2017-03-08T02:37:47.291Z", + "new_balance":"6035.56", + "value":"-7.61" + } + }, + { + "id":"1c842bd1-c34c-44de-87d7-fc7fb0f64497", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:57:20.677Z", + "completed":"2017-03-08T16:57:20.677Z", + "new_balance":"6027.04", + "value":"-8.52" + } + }, + { + "id":"682e5333-5597-443b-a823-989ff843b2dc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T08:56:58.770Z", + "completed":"2017-03-10T08:56:58.770Z", + "new_balance":"5994.70", + "value":"-32.34" + } + }, + { + "id":"e9b2f36e-766a-4e8a-851b-3c41881dbfe4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T01:33:49.565Z", + "completed":"2017-03-11T01:33:49.565Z", + "new_balance":"5982.33", + "value":"-12.37" + } + }, + { + "id":"b2ba6fe8-5086-4324-a786-d6845b53197d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T10:27:06.867Z", + "completed":"2017-03-11T10:27:06.867Z", + "new_balance":"5976.56", + "value":"-5.77" + } + }, + { + "id":"ab04425f-779e-44f6-bcee-7975fad7c74c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T18:29:39.943Z", + "completed":"2017-03-11T18:29:39.943Z", + "new_balance":"5952.26", + "value":"-24.30" + } + }, + { + "id":"08ce6f2e-8f7d-4779-b350-1433924a57cc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T06:12:36.398Z", + "completed":"2017-03-12T06:12:36.398Z", + "new_balance":"5886.08", + "value":"-66.18" + } + }, + { + "id":"9e3aca2c-f3f4-44d5-aeb4-6644496e7026", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T11:52:15.134Z", + "completed":"2017-03-12T11:52:15.134Z", + "new_balance":"5784.82", + "value":"-101.26" + } + }, + { + "id":"dd886176-277c-4029-af9e-8c5aa42d27ad", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T13:27:52.430Z", + "completed":"2017-03-12T13:27:52.430Z", + "new_balance":"5765.66", + "value":"-19.16" + } + }, + { + "id":"4a7b0ef5-3de4-407a-ab5e-74394659c730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T18:04:15.025Z", + "completed":"2017-03-12T18:04:15.025Z", + "new_balance":"5759.89", + "value":"-5.77" + } + }, + { + "id":"8afeaf83-536d-42ec-940b-22a4fb96581f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T12:56:36.812Z", + "completed":"2017-03-13T12:56:36.812Z", + "new_balance":"5754.12", + "value":"-5.77" + } + }, + { + "id":"d8e23e68-d4e4-4831-87b4-2ae94bf91bdd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T22:01:56.769Z", + "completed":"2017-03-13T22:01:56.769Z", + "new_balance":"5711.63", + "value":"-42.49" + } + }, + { + "id":"38517be4-7eef-41c4-8e94-84fa180205f0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T17:49:46.250Z", + "completed":"2017-03-15T17:49:46.250Z", + "new_balance":"5662.74", + "value":"-48.89" + } + }, + { + "id":"13ccc869-2413-4715-a0df-cb7e8c1c2a4c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T23:37:58.143Z", + "completed":"2017-03-15T23:37:58.143Z", + "new_balance":"5620.51", + "value":"-42.23" + } + }, + { + "id":"1bf1cd46-52fd-4d84-b9dd-b4ab5b4f8bc6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T22:13:28.753Z", + "completed":"2017-03-17T22:13:28.753Z", + "new_balance":"5576.54", + "value":"-43.97" + } + }, + { + "id":"dc15adb0-b673-4e16-8212-bf294ddeea5c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T09:30:45.988Z", + "completed":"2017-03-18T09:30:45.988Z", + "new_balance":"5479.04", + "value":"-97.50" + } + }, + { + "id":"fbc453b0-2f32-49fe-a04a-2793b498ee42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T02:43:36.697Z", + "completed":"2017-03-20T02:43:36.697Z", + "new_balance":"5374.72", + "value":"-104.32" + } + }, + { + "id":"99599370-6fc5-4f7f-99d5-32935ef8e4b9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T07:09:54.474Z", + "completed":"2017-03-22T07:09:54.474Z", + "new_balance":"5334.40", + "value":"-40.32" + } + }, + { + "id":"c2d6ea0a-e184-4db7-a6ed-2d2f61ddf81d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T07:15:20.661Z", + "completed":"2017-03-25T07:15:20.661Z", + "new_balance":"5328.63", + "value":"-5.77" + } + }, + { + "id":"3469a414-c5ab-4548-ad7b-ecde7d5d53ab", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T18:54:07.513Z", + "completed":"2017-03-25T18:54:07.513Z", + "new_balance":"5315.62", + "value":"-13.01" + } + }, + { + "id":"459a041b-c56d-4fcc-9040-02ca5bffde2c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T15:56:59.609Z", + "completed":"2017-03-26T15:56:59.609Z", + "new_balance":"5290.00", + "value":"-25.62" + } + }, + { + "id":"c247370b-3dc7-4981-957f-3ac86d3fcd27", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T20:07:45.274Z", + "completed":"2017-03-26T20:07:45.274Z", + "new_balance":"5277.21", + "value":"-12.79" + } + }, + { + "id":"81f59bcc-6477-4339-804d-9f9b6967b18c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T03:21:56.651Z", + "completed":"2017-03-27T03:21:56.651Z", + "new_balance":"5263.02", + "value":"-14.19" + } + }, + { + "id":"0a3a0592-f0b6-42d2-b327-48ce206e4989", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T03:02:08.287Z", + "completed":"2017-03-28T03:02:08.287Z", + "new_balance":"5214.24", + "value":"-48.78" + } + }, + { + "id":"06827bbe-6d39-465d-90cc-7b2417ec6825", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T14:26:08.010Z", + "completed":"2017-03-31T14:26:08.010Z", + "new_balance":"5016.33", + "value":"-197.91" + } + }, + { + "id":"39264fc0-9a5b-4be5-b42c-48b0133a54b7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T01:19:00.042Z", + "completed":"2017-04-01T01:19:00.042Z", + "new_balance":"4608.76", + "value":"-407.57" + } + }, + { + "id":"e8eaf65b-f647-44f3-a10a-9b90645a5065", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:26:04.540Z", + "completed":"2017-04-01T21:26:04.540Z", + "new_balance":"5631.18", + "value":"1022.42" + } + }, + { + "id":"d39d3404-6976-48ba-bcf4-58d2a8993d6c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:54:05.490Z", + "completed":"2017-04-01T21:54:05.490Z", + "new_balance":"7311.59", + "value":"1680.41" + } + }, + { + "id":"03000249-c816-4859-bf0f-0b6c9101d47b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T02:20:58.823Z", + "completed":"2017-04-03T02:20:58.823Z", + "new_balance":"7264.79", + "value":"-46.80" + } + }, + { + "id":"548dbdec-da93-4151-816c-c82d1b4b79cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T10:30:09.780Z", + "completed":"2017-04-03T10:30:09.780Z", + "new_balance":"7247.17", + "value":"-17.62" + } + }, + { + "id":"4c8ff7b9-ee56-4408-822a-c73c1c6ca042", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T11:11:21.962Z", + "completed":"2017-04-03T11:11:21.962Z", + "new_balance":"7240.79", + "value":"-6.38" + } + }, + { + "id":"bcf624ea-b5de-42c6-b17a-96714c435957", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T12:53:04.492Z", + "completed":"2017-04-05T12:53:04.492Z", + "new_balance":"7233.80", + "value":"-6.99" + } + }, + { + "id":"e7f5b6a0-90d6-4f58-94ef-998d48d06f10", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T22:52:56.729Z", + "completed":"2017-04-05T22:52:56.729Z", + "new_balance":"7222.89", + "value":"-10.91" + } + }, + { + "id":"b0b17426-0c71-4733-80b8-9ecc177143bd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T10:06:55.901Z", + "completed":"2017-04-06T10:06:55.901Z", + "new_balance":"7197.96", + "value":"-24.93" + } + }, + { + "id":"4bbbe51a-df12-4049-baf8-ca026b2b4fa2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T19:58:55.768Z", + "completed":"2017-04-09T19:58:55.768Z", + "new_balance":"7178.80", + "value":"-19.16" + } + }, + { + "id":"daf9af67-7923-4331-893f-40b2283dd30a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T13:01:01.193Z", + "completed":"2017-04-10T13:01:01.193Z", + "new_balance":"7163.81", + "value":"-14.99" + } + }, + { + "id":"14c21ef4-b11c-406a-bacc-78c511daa7fd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:39:14.964Z", + "completed":"2017-04-11T04:39:14.964Z", + "new_balance":"7147.80", + "value":"-16.01" + } + }, + { + "id":"1b2639bc-6d7e-4a48-b8d4-d23042ed57b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T08:12:01.314Z", + "completed":"2017-04-11T08:12:01.314Z", + "new_balance":"7118.64", + "value":"-29.16" + } + }, + { + "id":"dfa2ff32-4f60-41c3-8ded-ab0a12966e20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T18:43:21.721Z", + "completed":"2017-04-13T18:43:21.721Z", + "new_balance":"7073.58", + "value":"-45.06" + } + }, + { + "id":"10fef9e9-978a-409e-bbc1-e5d323d15dc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T20:48:32.205Z", + "completed":"2017-04-13T20:48:32.205Z", + "new_balance":"6968.86", + "value":"-104.72" + } + }, + { + "id":"8026deaf-d872-4f43-8b51-4bdd002b0819", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T02:44:43.577Z", + "completed":"2017-04-15T02:44:43.577Z", + "new_balance":"6924.38", + "value":"-44.48" + } + }, + { + "id":"04514984-e54e-45bc-9f38-031e18683bfe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T01:48:22.243Z", + "completed":"2017-04-16T01:48:22.243Z", + "new_balance":"6914.31", + "value":"-10.07" + } + }, + { + "id":"0b0013ac-ca81-465a-84f5-040984058ce6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T03:19:55.773Z", + "completed":"2017-04-16T03:19:55.773Z", + "new_balance":"6908.54", + "value":"-5.77" + } + }, + { + "id":"8b9f07a6-0cb3-4c40-8f0b-33362b5ca96d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T09:40:35.962Z", + "completed":"2017-04-18T09:40:35.962Z", + "new_balance":"6829.46", + "value":"-79.08" + } + }, + { + "id":"dd1e8c72-2e47-4f6e-8d60-8b7bb0057069", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T03:43:56.436Z", + "completed":"2017-04-23T03:43:56.436Z", + "new_balance":"6804.06", + "value":"-25.40" + } + }, + { + "id":"4b5b99c3-c428-497d-b158-b2fcdf5d400c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T00:14:03.512Z", + "completed":"2017-04-24T00:14:03.512Z", + "new_balance":"6773.25", + "value":"-30.81" + } + }, + { + "id":"e21f018c-6e3a-4a4e-9dbe-6fa13dd4cc48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T08:27:29.277Z", + "completed":"2017-04-24T08:27:29.277Z", + "new_balance":"6758.42", + "value":"-14.83" + } + }, + { + "id":"8996a556-fd05-47c9-8851-6fdb1044ac36", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T20:17:58.820Z", + "completed":"2017-04-26T20:17:58.820Z", + "new_balance":"6751.43", + "value":"-6.99" + } + }, + { + "id":"bd4ae5e0-2456-439f-8827-72b5a411286c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T00:14:46.773Z", + "completed":"2017-04-28T00:14:46.773Z", + "new_balance":"6702.65", + "value":"-48.78" + } + }, + { + "id":"4bd50179-62be-4120-9131-df449170f7af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T13:09:10.609Z", + "completed":"2017-04-28T13:09:10.609Z", + "new_balance":"6504.74", + "value":"-197.91" + } + }, + { + "id":"2fe180ff-605f-4408-bdfe-115037a78061", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T01:16:14.055Z", + "completed":"2017-05-02T01:16:14.055Z", + "new_balance":"6341.26", + "value":"-163.48" + } + }, + { + "id":"cc832183-2cef-45cf-9a83-9762b505d826", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T05:56:21.035Z", + "completed":"2017-05-02T05:56:21.035Z", + "new_balance":"6334.77", + "value":"-6.49" + } + }, + { + "id":"d4347610-f900-4350-b7e6-b0540bd7711e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T10:16:34.033Z", + "completed":"2017-05-02T10:16:34.033Z", + "new_balance":"6320.26", + "value":"-14.51" + } + }, + { + "id":"bdaa3108-fb4b-493a-ad16-aeea4576995e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T18:40:33.400Z", + "completed":"2017-05-02T18:40:33.400Z", + "new_balance":"5912.69", + "value":"-407.57" + } + }, + { + "id":"c7f60d6a-ccb7-416f-aa9a-2d88f13d4409", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T00:33:51.053Z", + "completed":"2017-05-06T00:33:51.053Z", + "new_balance":"5887.89", + "value":"-24.80" + } + }, + { + "id":"e3ee1ea2-6e97-4a13-a813-09d4808c1f2e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T03:19:22.980Z", + "completed":"2017-05-06T03:19:22.980Z", + "new_balance":"5858.73", + "value":"-29.16" + } + }, + { + "id":"0082e98f-a502-49b8-b5c9-cea99a79eb34", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T03:33:59.427Z", + "completed":"2017-05-07T03:33:59.427Z", + "new_balance":"5754.01", + "value":"-104.72" + } + }, + { + "id":"ec145203-6238-4d1b-ad76-95586631856c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T22:48:54.591Z", + "completed":"2017-05-07T22:48:54.591Z", + "new_balance":"5712.66", + "value":"-41.35" + } + }, + { + "id":"d9e6be3c-f5d2-4887-80fa-40055b966f7a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T18:01:00.532Z", + "completed":"2017-05-09T18:01:00.532Z", + "new_balance":"6735.08", + "value":"1022.42" + } + }, + { + "id":"437cf5be-679c-4119-a914-c151b12583a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T04:08:11.786Z", + "completed":"2017-05-14T04:08:11.786Z", + "new_balance":"6684.52", + "value":"-50.56" + } + }, + { + "id":"b8e75f2b-e572-4d8d-b100-ca9f1386897e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T12:24:31.440Z", + "completed":"2017-05-14T12:24:31.440Z", + "new_balance":"6658.72", + "value":"-25.80" + } + }, + { + "id":"08f20388-8563-4562-87b8-d816518f87b4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T10:49:34.117Z", + "completed":"2017-05-16T10:49:34.117Z", + "new_balance":"6651.73", + "value":"-6.99" + } + }, + { + "id":"137464ad-22fc-4b1d-a3cd-2fc0369d8b19", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T18:21:07.868Z", + "completed":"2017-05-21T18:21:07.868Z", + "new_balance":"6616.54", + "value":"-35.19" + } + }, + { + "id":"85e906ec-a83a-4e36-b45e-de2b14d32e49", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T08:16:45.799Z", + "completed":"2017-05-23T08:16:45.799Z", + "new_balance":"6587.38", + "value":"-29.16" + } + }, + { + "id":"dfe15577-f4ac-4229-b628-156d6fd84389", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T11:15:42.171Z", + "completed":"2017-05-23T11:15:42.171Z", + "new_balance":"6581.61", + "value":"-5.77" + } + }, + { + "id":"f6a08566-72d4-4fac-890e-d7a7ec33e385", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T08:49:38.837Z", + "completed":"2017-05-24T08:49:38.837Z", + "new_balance":"6536.10", + "value":"-45.51" + } + }, + { + "id":"f1570a4c-21fe-4ac3-841b-51925a54020f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:28:16.905Z", + "completed":"2017-05-27T07:28:16.905Z", + "new_balance":"6527.70", + "value":"-8.40" + } + }, + { + "id":"689204a0-5882-484c-baf1-1cc433b7b04f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T00:26:28.698Z", + "completed":"2017-05-30T00:26:28.698Z", + "new_balance":"6329.79", + "value":"-197.91" + } + }, + { + "id":"72310e83-830f-495d-b906-f400ca9b42e0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T06:40:16.285Z", + "completed":"2017-05-30T06:40:16.285Z", + "new_balance":"6281.01", + "value":"-48.78" + } + }, + { + "id":"d8611d92-4422-452c-bf34-d7a14a841e22", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T08:03:03.977Z", + "completed":"2017-06-01T08:03:03.977Z", + "new_balance":"5873.44", + "value":"-407.57" + } + }, + { + "id":"b87f72cd-807d-4f9b-a491-1a5ef7553b56", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T16:49:17.830Z", + "completed":"2017-06-01T16:49:17.830Z", + "new_balance":"6895.86", + "value":"1022.42" + } + }, + { + "id":"1c54b200-f552-480d-85e8-1c42ad22f2a4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:46:26.467Z", + "completed":"2017-06-04T06:46:26.467Z", + "new_balance":"6864.41", + "value":"-31.45" + } + }, + { + "id":"8503982c-f6cc-439e-aa18-3c4b4dd67197", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T07:58:19.055Z", + "completed":"2017-06-04T07:58:19.055Z", + "new_balance":"6847.41", + "value":"-17.00" + } + }, + { + "id":"d506e579-f70b-4270-a5cc-243f7c8b20d8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T11:27:05.095Z", + "completed":"2017-06-11T11:27:05.095Z", + "new_balance":"6801.90", + "value":"-45.51" + } + }, + { + "id":"3391bac7-47a7-4e82-9b62-32c3ea89f408", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T13:48:01.441Z", + "completed":"2017-06-11T13:48:01.441Z", + "new_balance":"6771.09", + "value":"-30.81" + } + }, + { + "id":"17202e82-9647-4488-8d08-e8e18e698fa7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T20:32:56.395Z", + "completed":"2017-06-12T20:32:56.395Z", + "new_balance":"6666.37", + "value":"-104.72" + } + }, + { + "id":"9dc32e8f-7e73-49d9-b4cb-5e87eb97fc09", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T21:33:24.303Z", + "completed":"2017-06-12T21:33:24.303Z", + "new_balance":"6660.60", + "value":"-5.77" + } + }, + { + "id":"606c7556-c5bf-4613-8370-1017ad4722e3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T22:11:55.000Z", + "completed":"2017-06-12T22:11:55.000Z", + "new_balance":"6646.54", + "value":"-14.06" + } + }, + { + "id":"6fc0b980-d755-47cb-b652-197dd0827305", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T11:04:33.234Z", + "completed":"2017-06-13T11:04:33.234Z", + "new_balance":"6564.75", + "value":"-81.79" + } + }, + { + "id":"17abf890-756c-4fbd-9d9c-de732726edc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T11:30:12.729Z", + "completed":"2017-06-13T11:30:12.729Z", + "new_balance":"6519.21", + "value":"-45.54" + } + }, + { + "id":"2b55bb9b-4cd4-4bc0-a82b-7030d346ea9d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T23:46:06.915Z", + "completed":"2017-06-13T23:46:06.915Z", + "new_balance":"6420.09", + "value":"-99.12" + } + }, + { + "id":"888f20d5-3cad-4043-b72b-0a7e7e903585", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T01:35:56.118Z", + "completed":"2017-06-14T01:35:56.118Z", + "new_balance":"6412.48", + "value":"-7.61" + } + }, + { + "id":"4a7774f9-ca76-4540-87c9-e38be037a991", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:16:00.273Z", + "completed":"2017-06-14T06:16:00.273Z", + "new_balance":"6406.71", + "value":"-5.77" + } + }, + { + "id":"c5143b5b-4e96-4680-b296-14b31f4d58e2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T22:18:41.803Z", + "completed":"2017-06-14T22:18:41.803Z", + "new_balance":"6399.10", + "value":"-7.61" + } + }, + { + "id":"ae11ba0e-26d3-4560-a76d-f18d8071c581", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T04:26:11.736Z", + "completed":"2017-06-15T04:26:11.736Z", + "new_balance":"6390.58", + "value":"-8.52" + } + }, + { + "id":"b1f4eaff-7480-44ab-9419-8860d53ad75c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T05:25:37.666Z", + "completed":"2017-06-15T05:25:37.666Z", + "new_balance":"6358.24", + "value":"-32.34" + } + }, + { + "id":"b37b30f7-3a8d-4001-a1bd-fdd3c2b1a80d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T07:56:58.754Z", + "completed":"2017-06-15T07:56:58.754Z", + "new_balance":"6352.47", + "value":"-5.77" + } + }, + { + "id":"03cb601f-54bd-494c-881d-8b014180f159", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T12:25:50.628Z", + "completed":"2017-06-16T12:25:50.628Z", + "new_balance":"6328.17", + "value":"-24.30" + } + }, + { + "id":"d3841195-e0ca-4b35-9512-61ac5a0f9c60", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T21:47:12.799Z", + "completed":"2017-06-17T21:47:12.799Z", + "new_balance":"6315.80", + "value":"-12.37" + } + }, + { + "id":"7258ec3c-90ae-4940-bb18-0638fb9b5797", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T04:21:46.318Z", + "completed":"2017-06-18T04:21:46.318Z", + "new_balance":"6310.03", + "value":"-5.77" + } + }, + { + "id":"0ca40908-0988-4097-8aba-804cf1abd276", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T09:02:44.092Z", + "completed":"2017-06-18T09:02:44.092Z", + "new_balance":"6208.77", + "value":"-101.26" + } + }, + { + "id":"05a23780-d531-4900-9f36-7bfb8d2e6a15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T13:00:28.629Z", + "completed":"2017-06-18T13:00:28.629Z", + "new_balance":"6142.59", + "value":"-66.18" + } + }, + { + "id":"c4d7a0a4-3b28-4723-b244-afc858d73ac3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T17:27:44.009Z", + "completed":"2017-06-18T17:27:44.009Z", + "new_balance":"6123.43", + "value":"-19.16" + } + }, + { + "id":"3da69e8d-2f3e-452e-b011-3bc603141b8d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T19:44:33.412Z", + "completed":"2017-06-18T19:44:33.412Z", + "new_balance":"6117.66", + "value":"-5.77" + } + }, + { + "id":"cea7092b-8f53-49b7-a884-d180720016d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T21:31:20.324Z", + "completed":"2017-06-18T21:31:20.324Z", + "new_balance":"6075.17", + "value":"-42.49" + } + }, + { + "id":"c524c128-eca2-4500-ac55-438b6266caf3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T03:24:59.888Z", + "completed":"2017-06-19T03:24:59.888Z", + "new_balance":"6026.28", + "value":"-48.89" + } + }, + { + "id":"3b927887-0a3b-4c41-a007-c9f7384d3e5b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T07:04:17.649Z", + "completed":"2017-06-19T07:04:17.649Z", + "new_balance":"5984.05", + "value":"-42.23" + } + }, + { + "id":"79284ad7-5a91-44cf-af4b-b0a2066bc6ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T23:57:51.589Z", + "completed":"2017-06-19T23:57:51.589Z", + "new_balance":"5940.08", + "value":"-43.97" + } + }, + { + "id":"65024c80-70eb-4a63-b2ac-7ed6ff0e55d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T01:07:04.133Z", + "completed":"2017-06-21T01:07:04.133Z", + "new_balance":"5835.76", + "value":"-104.32" + } + }, + { + "id":"b7647732-8762-4dd5-8329-d89a24b4241f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T21:46:26.502Z", + "completed":"2017-06-21T21:46:26.502Z", + "new_balance":"5738.26", + "value":"-97.50" + } + }, + { + "id":"92d91995-3a53-4d1d-9181-44eaaf45c0d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T10:09:54.189Z", + "completed":"2017-06-22T10:09:54.189Z", + "new_balance":"5697.94", + "value":"-40.32" + } + }, + { + "id":"0b65f123-025c-42b8-9f31-f3eea86a9f31", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T15:10:07.204Z", + "completed":"2017-06-22T15:10:07.204Z", + "new_balance":"5692.17", + "value":"-5.77" + } + }, + { + "id":"00c1f162-b994-403e-aca6-d90ba5b0c740", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T22:10:39.203Z", + "completed":"2017-06-22T22:10:39.203Z", + "new_balance":"5679.16", + "value":"-13.01" + } + }, + { + "id":"1f2c5206-8c96-4025-8264-99e83802747b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T10:28:45.372Z", + "completed":"2017-06-23T10:28:45.372Z", + "new_balance":"5666.37", + "value":"-12.79" + } + }, + { + "id":"ef58b67a-9436-4bce-8543-f3985978c967", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T15:32:08.234Z", + "completed":"2017-06-24T15:32:08.234Z", + "new_balance":"5640.75", + "value":"-25.62" + } + }, + { + "id":"83be17dc-7152-4961-9480-7c97d5ad4e48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T20:16:22.146Z", + "completed":"2017-06-26T20:16:22.146Z", + "new_balance":"5626.56", + "value":"-14.19" + } + }, + { + "id":"45e0f697-894c-4062-b1d2-cf4faa88489f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T11:57:01.876Z", + "completed":"2017-06-30T11:57:01.876Z", + "new_balance":"5577.78", + "value":"-48.78" + } + }, + { + "id":"4a9b0fd5-89c0-452d-a74f-5132d8368f6d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T23:46:04.763Z", + "completed":"2017-06-30T23:46:04.763Z", + "new_balance":"5379.87", + "value":"-197.91" + } + }, + { + "id":"9ef590e1-1dfd-4262-a9d8-93f77e4ea042", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T01:19:00.930Z", + "completed":"2017-07-01T01:19:00.930Z", + "new_balance":"7060.28", + "value":"1680.41" + } + }, + { + "id":"6deda586-3458-46f9-9386-cf38bc947d4d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T03:37:11.920Z", + "completed":"2017-07-01T03:37:11.920Z", + "new_balance":"8082.70", + "value":"1022.42" + } + }, + { + "id":"bbb1c7d1-d14f-4557-a9e0-046851ef3408", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T07:28:07.450Z", + "completed":"2017-07-03T07:28:07.450Z", + "new_balance":"7675.13", + "value":"-407.57" + } + }, + { + "id":"51868644-c167-4a9c-92b1-97ec41da6be2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T02:30:15.073Z", + "completed":"2017-07-04T02:30:15.073Z", + "new_balance":"7628.33", + "value":"-46.80" + } + }, + { + "id":"9579a2d1-3acf-47b5-a02e-d56a67f8c920", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T13:14:52.524Z", + "completed":"2017-07-04T13:14:52.524Z", + "new_balance":"7610.71", + "value":"-17.62" + } + }, + { + "id":"ddf107ef-f971-47f2-8454-1a8b84fecd7d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T20:15:17.923Z", + "completed":"2017-07-04T20:15:17.923Z", + "new_balance":"7604.33", + "value":"-6.38" + } + }, + { + "id":"31a95079-4379-4d24-ab0f-3f58a6805cfd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T11:14:08.871Z", + "completed":"2017-07-05T11:14:08.871Z", + "new_balance":"7593.42", + "value":"-10.91" + } + }, + { + "id":"4aa62df7-2d9a-4dff-b796-920a1fc20baf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T12:24:31.981Z", + "completed":"2017-07-07T12:24:31.981Z", + "new_balance":"7586.43", + "value":"-6.99" + } + }, + { + "id":"d516ab49-68cc-49f9-9ef6-a469dd5c758d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T00:31:12.637Z", + "completed":"2017-07-11T00:31:12.637Z", + "new_balance":"7571.44", + "value":"-14.99" + } + }, + { + "id":"360ebf42-1ee0-4f6f-a3bd-9b35854a1f15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T01:40:30.617Z", + "completed":"2017-07-11T01:40:30.617Z", + "new_balance":"7546.51", + "value":"-24.93" + } + }, + { + "id":"2f145d72-ae49-4f35-8e86-3726fc751974", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T08:23:52.761Z", + "completed":"2017-07-11T08:23:52.761Z", + "new_balance":"7530.50", + "value":"-16.01" + } + }, + { + "id":"e68022c1-1a65-4c41-93b2-a0b9abc1dc52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T12:08:12.406Z", + "completed":"2017-07-11T12:08:12.406Z", + "new_balance":"7501.34", + "value":"-29.16" + } + }, + { + "id":"311e2c57-e4cf-4600-ae6a-56c40402540b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T18:44:48.941Z", + "completed":"2017-07-11T18:44:48.941Z", + "new_balance":"7482.18", + "value":"-19.16" + } + }, + { + "id":"ce0ae499-50d3-44bc-9f6b-e32d90f020e6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T00:48:15.047Z", + "completed":"2017-07-13T00:48:15.047Z", + "new_balance":"7377.46", + "value":"-104.72" + } + }, + { + "id":"28e9b99e-429d-4061-95ef-23b963fb59a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T14:47:10.116Z", + "completed":"2017-07-13T14:47:10.116Z", + "new_balance":"7332.40", + "value":"-45.06" + } + }, + { + "id":"ce455f31-7b1b-41bb-8783-ef3be8354177", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T09:15:10.149Z", + "completed":"2017-07-16T09:15:10.149Z", + "new_balance":"7423.28", + "value":"90.88" + } + }, + { + "id":"b7a9a6cb-db08-4600-a035-e80fa1dd6c05", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T15:34:32.208Z", + "completed":"2017-07-16T15:34:32.208Z", + "new_balance":"7378.80", + "value":"-44.48" + } + }, + { + "id":"73fee22f-78da-4b2a-bd77-3dda7301be07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T01:51:38.497Z", + "completed":"2017-07-17T01:51:38.497Z", + "new_balance":"7368.73", + "value":"-10.07" + } + }, + { + "id":"1be0e9ea-7dcd-4e26-9fea-a88fa0227c24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T18:59:00.567Z", + "completed":"2017-07-17T18:59:00.567Z", + "new_balance":"7362.96", + "value":"-5.77" + } + }, + { + "id":"d6747b19-ae9e-452b-8585-6cdecf94cd01", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T22:18:08.056Z", + "completed":"2017-07-19T22:18:08.056Z", + "new_balance":"7283.88", + "value":"-79.08" + } + }, + { + "id":"10adc784-b103-42d0-8e7d-d6f7f5593997", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T09:10:40.753Z", + "completed":"2017-07-21T09:10:40.753Z", + "new_balance":"7258.48", + "value":"-25.40" + } + }, + { + "id":"9edee723-59da-4a71-a9ec-edf5c2f7ea78", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T15:28:11.347Z", + "completed":"2017-07-23T15:28:11.347Z", + "new_balance":"7227.67", + "value":"-30.81" + } + }, + { + "id":"ceeba6a2-7cf7-4de1-bb3c-175e7bcc069f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:13:38.783Z", + "completed":"2017-07-25T03:13:38.783Z", + "new_balance":"7212.84", + "value":"-14.83" + } + }, + { + "id":"16e9f110-ae8d-4e4c-9411-22afea5d7787", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T02:51:07.076Z", + "completed":"2017-07-27T02:51:07.076Z", + "new_balance":"7205.85", + "value":"-6.99" + } + }, + { + "id":"3885c0fa-0207-4803-ab01-8f606b6d03c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T01:41:39.125Z", + "completed":"2017-07-28T01:41:39.125Z", + "new_balance":"7157.07", + "value":"-48.78" + } + }, + { + "id":"d304d488-0e6b-4de9-8586-1b3430085a19", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T10:50:34.047Z", + "completed":"2017-07-28T10:50:34.047Z", + "new_balance":"6959.16", + "value":"-197.91" + } + }, + { + "id":"596b3eac-e9e7-4b57-b0c1-851005048511", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T20:33:27.536Z", + "completed":"2017-08-01T20:33:27.536Z", + "new_balance":"7981.58", + "value":"1022.42" + } + }, + { + "id":"0a784634-eedd-4406-8423-48ed7dc1f099", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T16:23:00.471Z", + "completed":"2017-08-03T16:23:00.471Z", + "new_balance":"7574.01", + "value":"-407.57" + } + }, + { + "id":"127ad3d8-2b7e-4b75-8ad5-5e83a3d96199", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:17:12.685Z", + "completed":"2017-08-03T17:17:12.685Z", + "new_balance":"7410.53", + "value":"-163.48" + } + }, + { + "id":"cc264c4b-ea01-4699-8549-f443beaf7533", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T00:46:06.546Z", + "completed":"2017-08-04T00:46:06.546Z", + "new_balance":"7396.02", + "value":"-14.51" + } + }, + { + "id":"d42ca462-b391-47c7-86f5-ccc646ddc6e9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T07:20:14.895Z", + "completed":"2017-08-07T07:20:14.895Z", + "new_balance":"7366.86", + "value":"-29.16" + } + }, + { + "id":"6cb83fc3-c63c-4dd6-af81-7541c6d32d17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T10:05:05.909Z", + "completed":"2017-08-07T10:05:05.909Z", + "new_balance":"7342.06", + "value":"-24.80" + } + }, + { + "id":"1a379c1d-6f7d-427f-b316-9d59518a4571", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T21:11:56.968Z", + "completed":"2017-08-07T21:11:56.968Z", + "new_balance":"7335.57", + "value":"-6.49" + } + }, + { + "id":"c0642b05-e5af-40a8-951d-b4a0fe0fce6b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T01:13:01.196Z", + "completed":"2017-08-08T01:13:01.196Z", + "new_balance":"7294.22", + "value":"-41.35" + } + }, + { + "id":"98978779-d22c-4ae9-8dba-8c433a8ac30d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T08:04:40.244Z", + "completed":"2017-08-08T08:04:40.244Z", + "new_balance":"7243.66", + "value":"-50.56" + } + }, + { + "id":"6f07d633-ae48-42ef-889d-cc93aa06daef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T23:16:45.239Z", + "completed":"2017-08-08T23:16:45.239Z", + "new_balance":"7138.94", + "value":"-104.72" + } + }, + { + "id":"b5c9568c-0202-488f-aa9b-e281a69667a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T11:51:01.104Z", + "completed":"2017-08-09T11:51:01.104Z", + "new_balance":"7113.14", + "value":"-25.80" + } + }, + { + "id":"2d688e95-f14e-4fbb-9d3d-6c7d2089edb5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T02:44:46.415Z", + "completed":"2017-08-11T02:44:46.415Z", + "new_balance":"7106.15", + "value":"-6.99" + } + }, + { + "id":"ebad8b1f-5370-4eac-96a7-a336e2311460", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T06:30:25.014Z", + "completed":"2017-08-14T06:30:25.014Z", + "new_balance":"7070.96", + "value":"-35.19" + } + }, + { + "id":"a2fcb849-b44f-4455-a535-1819955aa986", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T05:43:56.389Z", + "completed":"2017-08-15T05:43:56.389Z", + "new_balance":"7041.80", + "value":"-29.16" + } + }, + { + "id":"b012bc32-9b90-49b0-9c94-78b8542eed37", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T02:26:44.968Z", + "completed":"2017-08-17T02:26:44.968Z", + "new_balance":"6996.29", + "value":"-45.51" + } + }, + { + "id":"f0101273-d9d4-45a3-ac2b-58eeb897e7fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T05:05:51.419Z", + "completed":"2017-08-17T05:05:51.419Z", + "new_balance":"6990.52", + "value":"-5.77" + } + }, + { + "id":"3386bd92-68ad-41a6-87bb-d8f1330ea9c0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T04:39:00.348Z", + "completed":"2017-08-19T04:39:00.348Z", + "new_balance":"6982.12", + "value":"-8.40" + } + }, + { + "id":"42f47687-2d59-4967-acd2-c268823b5074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T23:41:02.571Z", + "completed":"2017-08-25T23:41:02.571Z", + "new_balance":"7096.26", + "value":"114.14" + } + }, + { + "id":"7a32eaf0-e874-451d-8de9-52256c0e4f80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T12:47:59.976Z", + "completed":"2017-08-28T12:47:59.976Z", + "new_balance":"7047.48", + "value":"-48.78" + } + }, + { + "id":"20e9573c-7630-4389-8cc2-8b9f0d28c970", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T17:13:40.727Z", + "completed":"2017-08-28T17:13:40.727Z", + "new_balance":"6849.57", + "value":"-197.91" + } + }, + { + "id":"810edc81-2d8a-4b8e-8191-3946194ec795", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T09:30:04.005Z", + "completed":"2017-09-01T09:30:04.005Z", + "new_balance":"7871.99", + "value":"1022.42" + } + }, + { + "id":"cd666289-a133-4796-b789-6f02ece5f6b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T17:15:47.656Z", + "completed":"2017-09-03T17:15:47.656Z", + "new_balance":"7464.42", + "value":"-407.57" + } + }, + { + "id":"42b40c54-65f9-4e13-b5d7-d8cc50bc0b72", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T02:05:50.929Z", + "completed":"2017-09-04T02:05:50.929Z", + "new_balance":"7433.61", + "value":"-30.81" + } + }, + { + "id":"ed7ab465-5568-4116-be17-4ec08d516992", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T07:11:56.256Z", + "completed":"2017-09-04T07:11:56.256Z", + "new_balance":"7416.61", + "value":"-17.00" + } + }, + { + "id":"5c53e620-839a-4288-8fcd-bedfd45c634e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T10:33:09.144Z", + "completed":"2017-09-04T10:33:09.144Z", + "new_balance":"7371.10", + "value":"-45.51" + } + }, + { + "id":"70f4053d-b519-4344-a72d-69e358763705", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:16:53.673Z", + "completed":"2017-09-04T19:16:53.673Z", + "new_balance":"7339.65", + "value":"-31.45" + } + }, + { + "id":"9a476fb4-75ae-4c32-8352-5eaab1404ad6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T03:14:33.195Z", + "completed":"2017-09-05T03:14:33.195Z", + "new_balance":"7333.88", + "value":"-5.77" + } + }, + { + "id":"eff03af6-4bff-409b-bd11-bd88eb4de5fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T10:33:31.374Z", + "completed":"2017-09-05T10:33:31.374Z", + "new_balance":"7252.09", + "value":"-81.79" + } + }, + { + "id":"f928e440-1153-4d8c-ad0f-1671f36372a3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T11:03:13.002Z", + "completed":"2017-09-05T11:03:13.002Z", + "new_balance":"7147.37", + "value":"-104.72" + } + }, + { + "id":"02ca84a0-2ce6-488b-8578-af3c9e62c7f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T16:18:44.919Z", + "completed":"2017-09-05T16:18:44.919Z", + "new_balance":"7101.83", + "value":"-45.54" + } + }, + { + "id":"87ca5032-c229-4237-8d4c-35a26848d832", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T21:25:30.742Z", + "completed":"2017-09-05T21:25:30.742Z", + "new_balance":"7002.71", + "value":"-99.12" + } + }, + { + "id":"ba28d83a-38d1-4363-a226-52bff86c451c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T23:44:32.126Z", + "completed":"2017-09-05T23:44:32.126Z", + "new_balance":"6988.65", + "value":"-14.06" + } + }, + { + "id":"30c34ae2-2814-4f9f-a10f-d448c7a4d706", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T01:43:07.052Z", + "completed":"2017-09-07T01:43:07.052Z", + "new_balance":"6981.04", + "value":"-7.61" + } + }, + { + "id":"393e9073-80a9-4c4e-bed8-a026c4baa1a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:41:15.303Z", + "completed":"2017-09-07T03:41:15.303Z", + "new_balance":"6973.43", + "value":"-7.61" + } + }, + { + "id":"17c8d850-2988-4acf-8e1c-cb4ab6fc24d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T04:10:28.684Z", + "completed":"2017-09-07T04:10:28.684Z", + "new_balance":"6967.66", + "value":"-5.77" + } + }, + { + "id":"16eef276-ee3e-46ea-86a9-cd90a12098f1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T14:11:38.868Z", + "completed":"2017-09-07T14:11:38.868Z", + "new_balance":"6959.14", + "value":"-8.52" + } + }, + { + "id":"3eb06f56-f47c-4dc3-a0b3-3e7b6cef65d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T02:02:51.071Z", + "completed":"2017-09-10T02:02:51.071Z", + "new_balance":"6926.80", + "value":"-32.34" + } + }, + { + "id":"965b0ed6-fffc-40dc-8eac-c1832407fa2f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T01:34:12.763Z", + "completed":"2017-09-11T01:34:12.763Z", + "new_balance":"6921.03", + "value":"-5.77" + } + }, + { + "id":"37a08a52-c975-4abe-95de-a722eecf5949", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T17:30:21.358Z", + "completed":"2017-09-11T17:30:21.358Z", + "new_balance":"6908.66", + "value":"-12.37" + } + }, + { + "id":"14d0505c-ff7d-4680-9388-8c7efe8039cc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T19:50:43.825Z", + "completed":"2017-09-11T19:50:43.825Z", + "new_balance":"6884.36", + "value":"-24.30" + } + }, + { + "id":"3640baa6-f60f-45e8-afa9-4901574ce608", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T12:39:10.354Z", + "completed":"2017-09-12T12:39:10.354Z", + "new_balance":"6865.20", + "value":"-19.16" + } + }, + { + "id":"a019e963-9cad-4831-b60f-b0ac46343b8a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T21:55:22.117Z", + "completed":"2017-09-12T21:55:22.117Z", + "new_balance":"6799.02", + "value":"-66.18" + } + }, + { + "id":"0cc7b1ba-4f8d-4a34-a739-217a4e51d693", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T23:04:33.848Z", + "completed":"2017-09-12T23:04:33.848Z", + "new_balance":"6697.76", + "value":"-101.26" + } + }, + { + "id":"fef1b3b5-bdd1-4f34-882a-a2a594fd4648", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:55:08.717Z", + "completed":"2017-09-12T23:55:08.717Z", + "new_balance":"6691.99", + "value":"-5.77" + } + }, + { + "id":"1f908b2f-4193-4e21-8e6a-2f8ed388c650", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T10:42:51.350Z", + "completed":"2017-09-13T10:42:51.350Z", + "new_balance":"6649.50", + "value":"-42.49" + } + }, + { + "id":"2a44381b-c365-4bd3-a226-b98e669ba008", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T15:08:03.614Z", + "completed":"2017-09-14T15:08:03.614Z", + "new_balance":"6643.73", + "value":"-5.77" + } + }, + { + "id":"557c1acc-9841-4b13-80ad-b2afc6de8b53", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T22:26:18.912Z", + "completed":"2017-09-14T22:26:18.912Z", + "new_balance":"6601.50", + "value":"-42.23" + } + }, + { + "id":"463f86d6-eeef-4bfd-b2c7-1710032f7dde", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T04:29:46.154Z", + "completed":"2017-09-16T04:29:46.154Z", + "new_balance":"6552.61", + "value":"-48.89" + } + }, + { + "id":"0bb6c25c-a88b-49dc-ad53-57ec3ae04906", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T11:01:04.724Z", + "completed":"2017-09-18T11:01:04.724Z", + "new_balance":"6508.64", + "value":"-43.97" + } + }, + { + "id":"13319307-06a9-4f27-9bb7-4b58c3ae4c66", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T08:08:17.590Z", + "completed":"2017-09-21T08:08:17.590Z", + "new_balance":"6411.14", + "value":"-97.50" + } + }, + { + "id":"d90582ce-0a24-4e42-9546-78a51c0b6e39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T10:03:24.607Z", + "completed":"2017-09-21T10:03:24.607Z", + "new_balance":"6306.82", + "value":"-104.32" + } + }, + { + "id":"ab1b06ee-8ae1-4d46-af40-589a6db99f0b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T21:05:41.991Z", + "completed":"2017-09-23T21:05:41.991Z", + "new_balance":"6266.50", + "value":"-40.32" + } + }, + { + "id":"6d539952-3cb3-455f-9915-dd19ead6785a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T16:34:00.186Z", + "completed":"2017-09-24T16:34:00.186Z", + "new_balance":"6260.73", + "value":"-5.77" + } + }, + { + "id":"56baf129-8943-44a7-b2a9-9fde14a8ac05", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T03:52:41.709Z", + "completed":"2017-09-26T03:52:41.709Z", + "new_balance":"6247.72", + "value":"-13.01" + } + }, + { + "id":"77553ff6-bed7-4512-ab6d-083ffd954778", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T08:47:22.271Z", + "completed":"2017-09-26T08:47:22.271Z", + "new_balance":"6234.93", + "value":"-12.79" + } + }, + { + "id":"126a0a47-c0bc-4a20-8c7f-dea3a19ad9c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T19:32:53.552Z", + "completed":"2017-09-26T19:32:53.552Z", + "new_balance":"6209.31", + "value":"-25.62" + } + }, + { + "id":"d2175c0f-3b4e-4a55-af59-ccb2ba4cbadd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T15:16:03.462Z", + "completed":"2017-09-27T15:16:03.462Z", + "new_balance":"6195.12", + "value":"-14.19" + } + }, + { + "id":"322952bd-a435-4e79-bb49-ff52ed937b4a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T00:05:00.462Z", + "completed":"2017-09-28T00:05:00.462Z", + "new_balance":"6146.34", + "value":"-48.78" + } + }, + { + "id":"29ad7fd3-5124-448a-9e9f-63cf6b978718", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T05:49:54.774Z", + "completed":"2017-09-28T05:49:54.774Z", + "new_balance":"5948.43", + "value":"-197.91" + } + }, + { + "id":"fc3527c4-2e8d-46e2-ad17-09c300f42e44", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T00:17:54.778Z", + "completed":"2017-10-01T00:17:54.778Z", + "new_balance":"7628.84", + "value":"1680.41" + } + }, + { + "id":"4912b630-840f-4a96-a201-1cdf7bd14261", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T07:59:20.005Z", + "completed":"2017-10-01T07:59:20.005Z", + "new_balance":"8651.26", + "value":"1022.42" + } + }, + { + "id":"a37997ff-339b-408c-bf87-765fb144f3c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T19:02:16.648Z", + "completed":"2017-10-01T19:02:16.648Z", + "new_balance":"8243.69", + "value":"-407.57" + } + }, + { + "id":"9f6894d4-23b8-41a0-be2f-b745141f7474", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T01:19:15.510Z", + "completed":"2017-10-03T01:19:15.510Z", + "new_balance":"8196.89", + "value":"-46.80" + } + }, + { + "id":"9ef82bea-4765-438a-bd08-76e488c5b641", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T03:16:50.227Z", + "completed":"2017-10-03T03:16:50.227Z", + "new_balance":"8190.51", + "value":"-6.38" + } + }, + { + "id":"bd591bcd-5fb5-44ac-8de9-06cd5c176b28", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T12:05:49.534Z", + "completed":"2017-10-03T12:05:49.534Z", + "new_balance":"8172.89", + "value":"-17.62" + } + }, + { + "id":"e6c53b3f-9130-4c32-acaa-a436979c1840", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:22:29.565Z", + "completed":"2017-10-05T06:22:29.565Z", + "new_balance":"8165.90", + "value":"-6.99" + } + }, + { + "id":"8bf90e35-38a4-4d41-86d2-22813efbdd2f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T18:28:33.978Z", + "completed":"2017-10-05T18:28:33.978Z", + "new_balance":"8154.99", + "value":"-10.91" + } + }, + { + "id":"802eb8e5-7282-45b8-88b2-4955c7d55b20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T10:07:33.389Z", + "completed":"2017-10-06T10:07:33.389Z", + "new_balance":"8130.06", + "value":"-24.93" + } + }, + { + "id":"d53961ff-14a2-4010-87c9-617a3d7f9d1a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T16:38:49.785Z", + "completed":"2017-10-09T16:38:49.785Z", + "new_balance":"8110.90", + "value":"-19.16" + } + }, + { + "id":"32549203-a42d-4216-afe2-20e1268395c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T09:51:32.157Z", + "completed":"2017-10-10T09:51:32.157Z", + "new_balance":"8095.91", + "value":"-14.99" + } + }, + { + "id":"8b6d2846-3f46-47d9-94d2-b89f7bf270d1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T02:11:00.266Z", + "completed":"2017-10-11T02:11:00.266Z", + "new_balance":"8066.75", + "value":"-29.16" + } + }, + { + "id":"b9021732-9f19-4750-87be-195806dd138c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T14:55:48.162Z", + "completed":"2017-10-11T14:55:48.162Z", + "new_balance":"8050.74", + "value":"-16.01" + } + }, + { + "id":"3031fc93-f2a3-4cc2-9ba2-bf7da63ee791", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T16:10:59.072Z", + "completed":"2017-10-14T16:10:59.072Z", + "new_balance":"8005.68", + "value":"-45.06" + } + }, + { + "id":"3775212d-c5b7-4bf0-9822-37dfc75fdacd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T22:19:08.154Z", + "completed":"2017-10-14T22:19:08.154Z", + "new_balance":"7900.96", + "value":"-104.72" + } + }, + { + "id":"6873c79e-8cad-4886-b5e8-cf4c3f8fae21", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T11:12:02.886Z", + "completed":"2017-10-17T11:12:02.886Z", + "new_balance":"7856.48", + "value":"-44.48" + } + }, + { + "id":"20d8736f-a617-4f74-963f-17f5512438a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T03:00:40.705Z", + "completed":"2017-10-18T03:00:40.705Z", + "new_balance":"7777.40", + "value":"-79.08" + } + }, + { + "id":"00b428c5-21b3-49f5-ba82-983e485bc2ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T08:06:57.322Z", + "completed":"2017-10-18T08:06:57.322Z", + "new_balance":"7771.63", + "value":"-5.77" + } + }, + { + "id":"204ef257-6e5f-4f70-867a-bbcbb9e36c81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T22:58:50.198Z", + "completed":"2017-10-18T22:58:50.198Z", + "new_balance":"7761.56", + "value":"-10.07" + } + }, + { + "id":"6b1cb17a-d99e-44a4-b86a-391ab1efbef8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T17:05:31.299Z", + "completed":"2017-10-23T17:05:31.299Z", + "new_balance":"7736.16", + "value":"-25.40" + } + }, + { + "id":"067c9c50-c501-4230-9279-a02894128c2c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T17:46:33.306Z", + "completed":"2017-10-24T17:46:33.306Z", + "new_balance":"7705.35", + "value":"-30.81" + } + }, + { + "id":"bda5cd42-e036-4c50-8d22-6457eb49476f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T20:39:58.757Z", + "completed":"2017-10-24T20:39:58.757Z", + "new_balance":"7690.52", + "value":"-14.83" + } + }, + { + "id":"5ec0b9d5-cf0e-4e76-af6e-f27509fc4180", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:59:01.529Z", + "completed":"2017-10-26T02:59:01.529Z", + "new_balance":"7683.53", + "value":"-6.99" + } + }, + { + "id":"934421f7-9d01-4501-90f7-438cb56e9e5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T00:14:46.448Z", + "completed":"2017-10-30T00:14:46.448Z", + "new_balance":"7485.62", + "value":"-197.91" + } + }, + { + "id":"45c83d23-fb20-4f7e-8d95-edbfebc2d460", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T01:40:43.575Z", + "completed":"2017-10-30T01:40:43.575Z", + "new_balance":"7436.84", + "value":"-48.78" + } + }, + { + "id":"2f46a048-405b-4c60-ad78-47b6dbc9a1a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:15:13.343Z", + "completed":"2017-11-02T02:15:13.343Z", + "new_balance":"7430.35", + "value":"-6.49" + } + }, + { + "id":"6b05ce5e-efe3-40b6-b6cb-d3682374c6c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T10:38:24.406Z", + "completed":"2017-11-02T10:38:24.406Z", + "new_balance":"7022.78", + "value":"-407.57" + } + }, + { + "id":"76aaf2b1-577d-4210-b934-6cbe22b9f9e6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T20:06:51.985Z", + "completed":"2017-11-02T20:06:51.985Z", + "new_balance":"6859.30", + "value":"-163.48" + } + }, + { + "id":"1fd4f873-a09a-4b30-927c-5cd83865bd65", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T20:08:47.374Z", + "completed":"2017-11-02T20:08:47.374Z", + "new_balance":"6844.79", + "value":"-14.51" + } + }, + { + "id":"19329680-f50c-4cff-8783-235539d28e17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T07:31:20.573Z", + "completed":"2017-11-06T07:31:20.573Z", + "new_balance":"6815.63", + "value":"-29.16" + } + }, + { + "id":"41caabf9-8066-403f-a8d4-56cc704782f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T12:49:04.641Z", + "completed":"2017-11-06T12:49:04.641Z", + "new_balance":"6790.83", + "value":"-24.80" + } + }, + { + "id":"e98dae89-1ed2-4fd4-851c-dd7a04bb0e7f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T00:19:15.472Z", + "completed":"2017-11-07T00:19:15.472Z", + "new_balance":"6686.11", + "value":"-104.72" + } + }, + { + "id":"f54ee4d2-2334-4787-be5d-b79d7be21d4e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T16:57:18.546Z", + "completed":"2017-11-07T16:57:18.546Z", + "new_balance":"6644.76", + "value":"-41.35" + } + }, + { + "id":"d14d6cd7-a59e-4926-a8ea-af292588ad07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T20:07:03.710Z", + "completed":"2017-11-09T20:07:03.710Z", + "new_balance":"7667.18", + "value":"1022.42" + } + }, + { + "id":"23e858ee-0954-4682-947e-de321e2056b2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:01:28.296Z", + "completed":"2017-11-14T05:01:28.296Z", + "new_balance":"7641.38", + "value":"-25.80" + } + }, + { + "id":"b45bfd85-23bc-443c-84c1-8121f7251850", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T22:55:01.093Z", + "completed":"2017-11-14T22:55:01.093Z", + "new_balance":"7590.82", + "value":"-50.56" + } + }, + { + "id":"bef66f38-003b-4cb9-bf2f-1ed34641d295", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T21:06:52.913Z", + "completed":"2017-11-16T21:06:52.913Z", + "new_balance":"7583.83", + "value":"-6.99" + } + }, + { + "id":"ca381ee5-3f0b-4996-a974-70f259f13603", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T15:12:11.442Z", + "completed":"2017-11-20T15:12:11.442Z", + "new_balance":"7548.64", + "value":"-35.19" + } + }, + { + "id":"8ba146fa-b4fd-48d7-9bf6-614125e0b037", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T12:39:59.729Z", + "completed":"2017-11-23T12:39:59.729Z", + "new_balance":"7519.48", + "value":"-29.16" + } + }, + { + "id":"a8276420-7610-48e6-ab7f-ed1870163ef3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T14:14:12.443Z", + "completed":"2017-11-23T14:14:12.443Z", + "new_balance":"7473.97", + "value":"-45.51" + } + }, + { + "id":"3a99163f-5770-4ede-b682-0d29268a92ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T14:43:49.277Z", + "completed":"2017-11-23T14:43:49.277Z", + "new_balance":"7468.20", + "value":"-5.77" + } + }, + { + "id":"17191e4d-1750-4eb7-a79d-641ae595d6fb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T10:07:05.151Z", + "completed":"2017-11-28T10:07:05.151Z", + "new_balance":"7459.80", + "value":"-8.40" + } + }, + { + "id":"3e2fcfe6-ef93-4530-a829-35df3e19c58d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T16:29:36.493Z", + "completed":"2017-11-30T16:29:36.493Z", + "new_balance":"7261.89", + "value":"-197.91" + } + }, + { + "id":"261ca6e7-24e9-4043-92b3-e927df0df211", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T17:15:55.589Z", + "completed":"2017-11-30T17:15:55.589Z", + "new_balance":"7213.11", + "value":"-48.78" + } + }, + { + "id":"788d8ad9-ec93-420a-88e8-eae31f25a63a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T04:29:57.421Z", + "completed":"2017-12-01T04:29:57.421Z", + "new_balance":"8235.53", + "value":"1022.42" + } + }, + { + "id":"c8c6ec7f-4071-4c92-9980-cb7a19c6ee4c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T22:16:00.506Z", + "completed":"2017-12-01T22:16:00.506Z", + "new_balance":"7827.96", + "value":"-407.57" + } + }, + { + "id":"cb4f4103-ece6-4868-9bd7-532b3c5cc41f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:14:24.870Z", + "completed":"2017-12-04T07:14:24.870Z", + "new_balance":"7796.51", + "value":"-31.45" + } + }, + { + "id":"df42692d-d0d3-4271-b599-57906ff8b869", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T17:20:39.598Z", + "completed":"2017-12-04T17:20:39.598Z", + "new_balance":"7779.51", + "value":"-17.00" + } + }, + { + "id":"28b1dd3b-05aa-4052-ba1b-c77b4ceadeba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T14:13:06.257Z", + "completed":"2017-12-11T14:13:06.257Z", + "new_balance":"7748.70", + "value":"-30.81" + } + }, + { + "id":"cfb12185-e9dd-4bb1-9805-705d1672a3e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T16:34:20.202Z", + "completed":"2017-12-11T16:34:20.202Z", + "new_balance":"7703.19", + "value":"-45.51" + } + }, + { + "id":"bfc3f1c2-f317-4732-8247-7d318cb6633f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T00:32:45.344Z", + "completed":"2017-12-14T00:32:45.344Z", + "new_balance":"7604.07", + "value":"-99.12" + } + }, + { + "id":"5f276230-6585-439f-ae65-28ac95de9600", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T00:51:06.931Z", + "completed":"2017-12-14T00:51:06.931Z", + "new_balance":"7499.35", + "value":"-104.72" + } + }, + { + "id":"ab0283dc-b2e1-45a8-980e-de5ad26abfc4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:51:27.275Z", + "completed":"2017-12-14T03:51:27.275Z", + "new_balance":"7491.74", + "value":"-7.61" + } + }, + { + "id":"521ae5a1-2d59-45fe-8708-ae81bf286c6b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T11:03:07.700Z", + "completed":"2017-12-14T11:03:07.700Z", + "new_balance":"7409.95", + "value":"-81.79" + } + }, + { + "id":"d3ba8368-6098-440d-b734-bae4ebd73019", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T13:28:13.051Z", + "completed":"2017-12-14T13:28:13.051Z", + "new_balance":"7404.18", + "value":"-5.77" + } + }, + { + "id":"f38f06b3-d73e-4219-b438-8c4a3a7dc3c4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T19:04:18.494Z", + "completed":"2017-12-14T19:04:18.494Z", + "new_balance":"7358.64", + "value":"-45.54" + } + }, + { + "id":"6d988b3a-446c-433f-9938-dc8d86d94dbe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T19:16:13.188Z", + "completed":"2017-12-14T19:16:13.188Z", + "new_balance":"7352.87", + "value":"-5.77" + } + }, + { + "id":"cc08cd53-75fb-464b-9f4a-2253884a1c67", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T20:51:11.709Z", + "completed":"2017-12-14T20:51:11.709Z", + "new_balance":"7345.26", + "value":"-7.61" + } + }, + { + "id":"0875e0df-b67e-483a-9018-3f8103268fd9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T21:17:14.124Z", + "completed":"2017-12-14T21:17:14.124Z", + "new_balance":"7331.20", + "value":"-14.06" + } + }, + { + "id":"6b4806f0-0045-45e9-b8b1-2353c541ed14", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:28:44.586Z", + "completed":"2017-12-15T04:28:44.586Z", + "new_balance":"7322.68", + "value":"-8.52" + } + }, + { + "id":"5d93f4c2-24cb-4e14-bd28-ba674fd31648", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T10:17:11.778Z", + "completed":"2017-12-15T10:17:11.778Z", + "new_balance":"7290.34", + "value":"-32.34" + } + }, + { + "id":"b7713501-3eaf-4125-b0db-246615382a6d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T16:35:10.064Z", + "completed":"2017-12-15T16:35:10.064Z", + "new_balance":"7284.57", + "value":"-5.77" + } + }, + { + "id":"72907114-60f4-4eb3-b6c9-ad311d390944", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T03:56:03.087Z", + "completed":"2017-12-18T03:56:03.087Z", + "new_balance":"7265.41", + "value":"-19.16" + } + }, + { + "id":"74f1c9a8-68b5-44f8-aab8-81438a5326ed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T04:35:57.507Z", + "completed":"2017-12-18T04:35:57.507Z", + "new_balance":"7259.64", + "value":"-5.77" + } + }, + { + "id":"cb737287-fd5c-44d1-94c0-4e48ee42de42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T05:19:04.558Z", + "completed":"2017-12-18T05:19:04.558Z", + "new_balance":"7158.38", + "value":"-101.26" + } + }, + { + "id":"9f43d344-3b19-488d-9f78-96358102638a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T08:55:25.421Z", + "completed":"2017-12-18T08:55:25.421Z", + "new_balance":"7152.61", + "value":"-5.77" + } + }, + { + "id":"84f7cdf3-d646-4421-a7f4-0397b549a5ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T11:56:05.438Z", + "completed":"2017-12-18T11:56:05.438Z", + "new_balance":"7140.24", + "value":"-12.37" + } + }, + { + "id":"5060afc3-f459-455c-b8e8-bcf6e4753805", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T16:03:58.455Z", + "completed":"2017-12-18T16:03:58.455Z", + "new_balance":"7074.06", + "value":"-66.18" + } + }, + { + "id":"b30de0af-1d9a-49ad-9656-cce2e2661ad6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T18:02:23.740Z", + "completed":"2017-12-18T18:02:23.740Z", + "new_balance":"7049.76", + "value":"-24.30" + } + }, + { + "id":"df64baba-b948-4f16-8277-23532d2cb727", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T21:02:21.508Z", + "completed":"2017-12-18T21:02:21.508Z", + "new_balance":"7007.27", + "value":"-42.49" + } + }, + { + "id":"596a0e07-230e-40cc-bcd8-d9820fa9f8a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:47:49.460Z", + "completed":"2017-12-19T11:47:49.460Z", + "new_balance":"6965.04", + "value":"-42.23" + } + }, + { + "id":"249ee9da-e353-4696-8c1c-ff3cd5ad56a1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:35:55.333Z", + "completed":"2017-12-19T14:35:55.333Z", + "new_balance":"6921.07", + "value":"-43.97" + } + }, + { + "id":"2d205a00-64b7-4764-a230-88b1267455b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T17:18:33.717Z", + "completed":"2017-12-19T17:18:33.717Z", + "new_balance":"6872.18", + "value":"-48.89" + } + }, + { + "id":"3bff6935-6183-4155-89d6-24a3c3d449a8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T04:07:21.457Z", + "completed":"2017-12-21T04:07:21.457Z", + "new_balance":"6831.86", + "value":"-40.32" + } + }, + { + "id":"7c4b05db-64e6-4a2c-8327-f49de848ff71", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T12:19:14.931Z", + "completed":"2017-12-21T12:19:14.931Z", + "new_balance":"6734.36", + "value":"-97.50" + } + }, + { + "id":"3d255834-af1c-4282-8818-1bfa241ca3bc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T13:34:09.104Z", + "completed":"2017-12-21T13:34:09.104Z", + "new_balance":"6630.04", + "value":"-104.32" + } + }, + { + "id":"a52fa4c8-37d9-4a2f-9d65-d2984859bf21", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T20:21:18.670Z", + "completed":"2017-12-21T20:21:18.670Z", + "new_balance":"6617.03", + "value":"-13.01" + } + }, + { + "id":"f5781902-79f2-4baa-a1ed-011246104b89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T20:25:25.917Z", + "completed":"2017-12-21T20:25:25.917Z", + "new_balance":"6611.26", + "value":"-5.77" + } + }, + { + "id":"03c0c17b-3130-4a41-a102-29c44ffd233e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:18:53.417Z", + "completed":"2017-12-24T11:18:53.417Z", + "new_balance":"6585.64", + "value":"-25.62" + } + }, + { + "id":"a3a48a25-de2c-4e63-a5bc-bebb801742a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T12:13:15.919Z", + "completed":"2017-12-24T12:13:15.919Z", + "new_balance":"6571.45", + "value":"-14.19" + } + }, + { + "id":"bf8c3213-6dd2-452e-913c-295140b24f89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:27:12.055Z", + "completed":"2017-12-24T23:27:12.055Z", + "new_balance":"6558.66", + "value":"-12.79" + } + }, + { + "id":"da648c8d-aac9-4ea9-8d8b-0f60623505aa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:57:09.608Z", + "completed":"2017-12-30T14:57:09.608Z", + "new_balance":"6509.88", + "value":"-48.78" + } + }, + { + "id":"909d1301-a417-43ea-9f39-710ccc437449", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T20:35:19.501Z", + "completed":"2017-12-30T20:35:19.501Z", + "new_balance":"6311.97", + "value":"-197.91" + } + }, + { + "id":"7846579d-ef36-4706-863c-59b7a3a96ead", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T01:08:44.595Z", + "completed":"2016-01-01T01:08:44.595Z", + "new_balance":"20196.13", + "value":"-34.43" + } + }, + { + "id":"fea9df16-0c02-45f2-8c45-7ebab18cac8e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:45:49.473Z", + "completed":"2016-01-01T02:45:49.473Z", + "new_balance":"20061.65", + "value":"-134.48" + } + }, + { + "id":"85f5225d-9635-4c0f-a836-bba01682b3ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T05:56:56.572Z", + "completed":"2016-01-01T05:56:56.572Z", + "new_balance":"19551.11", + "value":"-510.54" + } + }, + { + "id":"d80d924c-3a6a-4bb4-85d2-a9e0a8a357ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T08:14:10.525Z", + "completed":"2016-01-01T08:14:10.525Z", + "new_balance":"19516.68", + "value":"-34.43" + } + }, + { + "id":"03401804-61a4-43e2-81d6-06cb88e35b7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T08:31:19.701Z", + "completed":"2016-01-01T08:31:19.701Z", + "new_balance":"19486.80", + "value":"-29.88" + } + }, + { + "id":"6bcd1230-176f-4454-8150-97ca6704b0be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T20:03:16.842Z", + "completed":"2016-01-01T20:03:16.842Z", + "new_balance":"19433.62", + "value":"-53.18" + } + }, + { + "id":"d151fa93-3124-4f10-88db-387205efb7cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T07:40:10.875Z", + "completed":"2016-01-02T07:40:10.875Z", + "new_balance":"19347.06", + "value":"-86.56" + } + }, + { + "id":"0c4e01b5-8e6d-4a7c-bc03-3d6b0205e3e1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T19:32:52.290Z", + "completed":"2016-01-02T19:32:52.290Z", + "new_balance":"19275.07", + "value":"-71.99" + } + }, + { + "id":"3b1bf01f-8fc0-4318-b839-a039022e0d11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T00:41:37.350Z", + "completed":"2016-01-04T00:41:37.350Z", + "new_balance":"19240.29", + "value":"-34.78" + } + }, + { + "id":"60c6596e-a1e4-489f-bc02-db31e1257227", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:20:17.916Z", + "completed":"2016-01-04T04:20:17.916Z", + "new_balance":"19203.10", + "value":"-37.19" + } + }, + { + "id":"35e4a9d1-575f-4934-b7ff-e8784ebdbbc3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T06:21:14.097Z", + "completed":"2016-01-07T06:21:14.097Z", + "new_balance":"19129.17", + "value":"-73.93" + } + }, + { + "id":"a1500f2c-b9f3-4e81-a90a-56752fa0d003", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T05:25:38.937Z", + "completed":"2016-01-09T05:25:38.937Z", + "new_balance":"19125.58", + "value":"-3.59" + } + }, + { + "id":"df00b076-f1de-4852-9014-e2d0310c4d66", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T23:06:13.031Z", + "completed":"2016-01-10T23:06:13.031Z", + "new_balance":"19098.13", + "value":"-27.45" + } + }, + { + "id":"f9e8bf30-9266-44a8-96ed-d81b67ef4883", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T06:02:30.459Z", + "completed":"2016-01-12T06:02:30.459Z", + "new_balance":"19066.84", + "value":"-31.29" + } + }, + { + "id":"3ae69757-eb61-4fca-92a5-7a66e67a6a20", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T00:21:22.293Z", + "completed":"2016-01-15T00:21:22.293Z", + "new_balance":"19059.68", + "value":"-7.16" + } + }, + { + "id":"bd5820d3-b663-470a-a008-aabe7f14d445", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T23:33:55.292Z", + "completed":"2016-01-15T23:33:55.292Z", + "new_balance":"19044.86", + "value":"-14.82" + } + }, + { + "id":"4b509f06-9d83-45e7-9beb-24e1410b64f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T21:38:52.870Z", + "completed":"2016-01-17T21:38:52.870Z", + "new_balance":"19022.61", + "value":"-22.25" + } + }, + { + "id":"cbc5977b-072f-4e0c-aaa8-b1586d632baa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T22:08:37.619Z", + "completed":"2016-01-19T22:08:37.619Z", + "new_balance":"18833.34", + "value":"-189.27" + } + }, + { + "id":"05aed6e3-4407-47c0-b01b-2f53cc9ba4fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T16:21:19.383Z", + "completed":"2016-01-20T16:21:19.383Z", + "new_balance":"18826.63", + "value":"-6.71" + } + }, + { + "id":"6beb2129-f8f7-4724-80de-f94594eb34ac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T00:06:07.892Z", + "completed":"2016-01-22T00:06:07.892Z", + "new_balance":"18816.93", + "value":"-9.70" + } + }, + { + "id":"d6b3320e-0654-4e18-9d90-8fd0beea4121", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T01:41:01.232Z", + "completed":"2016-01-22T01:41:01.232Z", + "new_balance":"18771.69", + "value":"-45.24" + } + }, + { + "id":"d77de1d1-c457-42ed-a077-f8c6df0816be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T11:58:38.979Z", + "completed":"2016-01-24T11:58:38.979Z", + "new_balance":"18739.41", + "value":"-32.28" + } + }, + { + "id":"7e999179-8cee-47cd-b6fd-84daf713679b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T16:23:54.467Z", + "completed":"2016-01-25T16:23:54.467Z", + "new_balance":"18732.70", + "value":"-6.71" + } + }, + { + "id":"bf4eebb7-bd8f-49a1-b21d-2532ba949772", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T18:54:03.335Z", + "completed":"2016-01-25T18:54:03.335Z", + "new_balance":"18690.18", + "value":"-42.52" + } + }, + { + "id":"d1db55f7-fc9d-40fe-a762-277aa9a7ed9c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T01:54:21.833Z", + "completed":"2016-01-26T01:54:21.833Z", + "new_balance":"18626.61", + "value":"-63.57" + } + }, + { + "id":"fca97e37-a1b9-4b00-87a5-a498ccc333f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:06:35.943Z", + "completed":"2016-02-01T01:06:35.943Z", + "new_balance":"20307.02", + "value":"1680.41" + } + }, + { + "id":"b2d11a39-4772-456d-a73a-3940d9a44914", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T02:47:40.593Z", + "completed":"2016-02-01T02:47:40.593Z", + "new_balance":"20172.54", + "value":"-134.48" + } + }, + { + "id":"20c752ff-f1f3-410e-b081-e1762fd671e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T09:23:54.175Z", + "completed":"2016-02-01T09:23:54.175Z", + "new_balance":"20119.36", + "value":"-53.18" + } + }, + { + "id":"004c58d6-656d-4da2-a427-23618bec1f74", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T14:33:13.972Z", + "completed":"2016-02-01T14:33:13.972Z", + "new_balance":"19608.82", + "value":"-510.54" + } + }, + { + "id":"80000610-a52c-43b6-9eee-50d692025233", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T19:28:11.106Z", + "completed":"2016-02-01T19:28:11.106Z", + "new_balance":"19578.94", + "value":"-29.88" + } + }, + { + "id":"4fc3dcae-a32d-42d5-9777-e36177bdab0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T23:36:49.549Z", + "completed":"2016-02-01T23:36:49.549Z", + "new_balance":"19544.51", + "value":"-34.43" + } + }, + { + "id":"dc7356a0-c1f2-4700-9764-1d0f97678f30", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T03:09:20.077Z", + "completed":"2016-02-02T03:09:20.077Z", + "new_balance":"19528.58", + "value":"-15.93" + } + }, + { + "id":"acf444f2-3bbb-42b4-b548-5fa456df237a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T05:55:02.009Z", + "completed":"2016-02-02T05:55:02.009Z", + "new_balance":"19442.02", + "value":"-86.56" + } + }, + { + "id":"c6be99de-b612-4209-9465-a3c46f36c523", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T11:15:33.908Z", + "completed":"2016-02-02T11:15:33.908Z", + "new_balance":"19427.38", + "value":"-14.64" + } + }, + { + "id":"cc694648-3678-48ab-a729-4f4bf76cb9fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T08:37:43.218Z", + "completed":"2016-02-03T08:37:43.218Z", + "new_balance":"19404.01", + "value":"-23.37" + } + }, + { + "id":"0a400f68-80c5-4073-8761-dc874ce3963b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T12:48:04.951Z", + "completed":"2016-02-03T12:48:04.951Z", + "new_balance":"19376.00", + "value":"-28.01" + } + }, + { + "id":"0818ef3a-e6ea-4934-99a1-e745fc98398f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T17:24:18.279Z", + "completed":"2016-02-03T17:24:18.279Z", + "new_balance":"19350.20", + "value":"-25.80" + } + }, + { + "id":"1ee67ead-4eb3-407e-a82a-55f6d9c89ce8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T04:19:46.026Z", + "completed":"2016-02-06T04:19:46.026Z", + "new_balance":"19276.27", + "value":"-73.93" + } + }, + { + "id":"bcb7a35f-e66e-461f-8ad9-7e1911867f07", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T02:38:03.613Z", + "completed":"2016-02-08T02:38:03.613Z", + "new_balance":"19248.42", + "value":"-27.85" + } + }, + { + "id":"f1d67bef-142d-4a58-b13b-a3dbb9531518", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T10:12:08.293Z", + "completed":"2016-02-08T10:12:08.293Z", + "new_balance":"19244.33", + "value":"-4.09" + } + }, + { + "id":"f03959ea-fd20-4941-8359-d66ad781b49c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T19:16:55.677Z", + "completed":"2016-02-08T19:16:55.677Z", + "new_balance":"19223.23", + "value":"-21.10" + } + }, + { + "id":"fcdd0ff8-24e4-46bd-8793-2b2f8ea8c1a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T04:32:42.287Z", + "completed":"2016-02-09T04:32:42.287Z", + "new_balance":"19178.06", + "value":"-45.17" + } + }, + { + "id":"87d7d179-fc76-4ebc-bbd8-890c6a6277a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T06:38:46.832Z", + "completed":"2016-02-09T06:38:46.832Z", + "new_balance":"19129.36", + "value":"-48.70" + } + }, + { + "id":"11cbd9da-ddd4-406b-ac6c-b033e36985f6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T19:14:45.677Z", + "completed":"2016-02-12T19:14:45.677Z", + "new_balance":"19123.59", + "value":"-5.77" + } + }, + { + "id":"d6dcada0-6546-4e0d-992c-8fcd929dccc8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T11:29:57.362Z", + "completed":"2016-02-13T11:29:57.362Z", + "new_balance":"19162.60", + "value":"39.01" + } + }, + { + "id":"64c6c5ac-557b-4fba-bc87-cbc4c3015e68", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T12:02:48.742Z", + "completed":"2016-02-13T12:02:48.742Z", + "new_balance":"19154.08", + "value":"-8.52" + } + }, + { + "id":"f01ca298-17ab-45c1-aba4-be40cb49ea95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T13:29:27.344Z", + "completed":"2016-02-13T13:29:27.344Z", + "new_balance":"19110.29", + "value":"-43.79" + } + }, + { + "id":"272dc41c-cadd-4bd7-a807-6ef1fb72b225", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:16:08.870Z", + "completed":"2016-02-14T04:16:08.870Z", + "new_balance":"19064.66", + "value":"-45.63" + } + }, + { + "id":"d96d9a56-9871-4189-85be-c1f3ad3dc37c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T15:50:06.256Z", + "completed":"2016-02-15T15:50:06.256Z", + "new_balance":"19039.10", + "value":"-25.56" + } + }, + { + "id":"2339432d-b38d-44bc-ba2e-64a9b3a691c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T03:15:40.474Z", + "completed":"2016-02-28T03:15:40.474Z", + "new_balance":"19005.57", + "value":"-33.53" + } + }, + { + "id":"ed67b8ea-e27c-4d3e-8993-ff0e72fec449", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:10:12.930Z", + "completed":"2016-03-01T03:10:12.930Z", + "new_balance":"20685.98", + "value":"1680.41" + } + }, + { + "id":"810f6a8c-618c-4525-aa22-8f1e2a326696", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T04:58:31.264Z", + "completed":"2016-03-01T04:58:31.264Z", + "new_balance":"20551.50", + "value":"-134.48" + } + }, + { + "id":"85c5f58f-605e-4f9d-b3c9-160a7f2c89fc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T06:37:31.311Z", + "completed":"2016-03-01T06:37:31.311Z", + "new_balance":"20517.07", + "value":"-34.43" + } + }, + { + "id":"1ffd1ee5-2006-4a34-8fde-ce0abcd6c1f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T13:47:20.414Z", + "completed":"2016-03-01T13:47:20.414Z", + "new_balance":"20463.89", + "value":"-53.18" + } + }, + { + "id":"5c3a6d3b-7446-49e3-9fe0-2e6ddc869e73", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T13:51:03.470Z", + "completed":"2016-03-01T13:51:03.470Z", + "new_balance":"20434.01", + "value":"-29.88" + } + }, + { + "id":"647d3924-4d2f-4722-84d7-9219622b5253", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T15:46:27.423Z", + "completed":"2016-03-01T15:46:27.423Z", + "new_balance":"19923.47", + "value":"-510.54" + } + }, + { + "id":"fdff82df-0369-476f-a427-8d2869989280", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T21:46:20.372Z", + "completed":"2016-03-02T21:46:20.372Z", + "new_balance":"19836.91", + "value":"-86.56" + } + }, + { + "id":"82517391-814f-4b04-a541-972262d0e912", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T03:50:27.555Z", + "completed":"2016-03-04T03:50:27.555Z", + "new_balance":"19806.10", + "value":"-30.81" + } + }, + { + "id":"960a2458-bf4f-4e07-a4ed-99da7f81947c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T13:53:55.391Z", + "completed":"2016-03-04T13:53:55.391Z", + "new_balance":"19799.63", + "value":"-6.47" + } + }, + { + "id":"c83a2fcd-6872-4b4a-9e55-1091bf41960c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T20:17:15.720Z", + "completed":"2016-03-04T20:17:15.720Z", + "new_balance":"19718.42", + "value":"-81.21" + } + }, + { + "id":"f1979022-344b-447f-84e9-c77e9630a686", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T22:54:16.739Z", + "completed":"2016-03-04T22:54:16.739Z", + "new_balance":"19707.89", + "value":"-10.53" + } + }, + { + "id":"2470fe10-562b-456d-9a88-f3dc46a75a31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T02:05:59.906Z", + "completed":"2016-03-05T02:05:59.906Z", + "new_balance":"19703.12", + "value":"-4.77" + } + }, + { + "id":"f701cb14-7f13-4e74-9de8-99517c7d1b7a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T11:59:55.167Z", + "completed":"2016-03-05T11:59:55.167Z", + "new_balance":"19661.89", + "value":"-41.23" + } + }, + { + "id":"50172a57-834a-48f4-babe-0ffaa558fd5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:23:18.399Z", + "completed":"2016-03-06T02:23:18.399Z", + "new_balance":"19578.09", + "value":"-83.80" + } + }, + { + "id":"c4a52906-aaaf-41c0-977f-4bae9580f3dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:26:17.262Z", + "completed":"2016-03-06T02:26:17.262Z", + "new_balance":"19496.88", + "value":"-81.21" + } + }, + { + "id":"36440a27-cd1d-470f-90f5-240d4f439f70", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T16:21:18.314Z", + "completed":"2016-03-07T16:21:18.314Z", + "new_balance":"19454.54", + "value":"-42.34" + } + }, + { + "id":"b220beba-d4e0-4ea0-b85c-d1d81054c104", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T01:27:49.546Z", + "completed":"2016-03-08T01:27:49.546Z", + "new_balance":"19370.74", + "value":"-83.80" + } + }, + { + "id":"bfc90d06-c5a7-4cec-b150-75497869f675", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T15:41:51.305Z", + "completed":"2016-03-09T15:41:51.305Z", + "new_balance":"19367.16", + "value":"-3.58" + } + }, + { + "id":"841ac5a0-032a-414a-9abc-10d64e7ae7dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T12:43:41.164Z", + "completed":"2016-03-10T12:43:41.164Z", + "new_balance":"19275.69", + "value":"-91.47" + } + }, + { + "id":"78289fed-798c-4945-88ce-2fa85b07cf4f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T16:40:57.004Z", + "completed":"2016-03-11T16:40:57.004Z", + "new_balance":"19268.41", + "value":"-7.28" + } + }, + { + "id":"ff607be5-106d-4151-bd03-e5378276388b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T03:11:39.359Z", + "completed":"2016-03-12T03:11:39.359Z", + "new_balance":"19241.11", + "value":"-27.30" + } + }, + { + "id":"1096ad0c-617d-45e1-9b72-c8aedfbcf4d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T17:55:54.148Z", + "completed":"2016-03-12T17:55:54.148Z", + "new_balance":"19227.87", + "value":"-13.24" + } + }, + { + "id":"08712582-30d0-47b5-9a9b-4a3fd9a17802", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:52:20.045Z", + "completed":"2016-03-13T04:52:20.045Z", + "new_balance":"19181.86", + "value":"-46.01" + } + }, + { + "id":"e33b55e3-4e76-4350-b84d-81ab63b41b1e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T10:52:01.315Z", + "completed":"2016-03-14T10:52:01.315Z", + "new_balance":"19174.87", + "value":"-6.99" + } + }, + { + "id":"7a16f33b-5d75-4182-a440-72595880896a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T01:23:46.228Z", + "completed":"2016-03-16T01:23:46.228Z", + "new_balance":"19093.46", + "value":"-81.41" + } + }, + { + "id":"16d8735d-9a48-4949-bec5-03259e73287a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T12:11:41.020Z", + "completed":"2016-03-16T12:11:41.020Z", + "new_balance":"19046.66", + "value":"-46.80" + } + }, + { + "id":"e6ef3cef-cd6b-444d-ba5e-9cc50ddb91cd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T21:43:34.328Z", + "completed":"2016-03-18T21:43:34.328Z", + "new_balance":"19039.67", + "value":"-6.99" + } + }, + { + "id":"c481834d-1117-4de7-b78e-5ff578b95fff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T05:56:59.410Z", + "completed":"2016-03-19T05:56:59.410Z", + "new_balance":"18988.66", + "value":"-51.01" + } + }, + { + "id":"42a62707-55d2-4863-883b-bd57f69929b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T13:06:21.429Z", + "completed":"2016-03-19T13:06:21.429Z", + "new_balance":"18951.71", + "value":"-36.95" + } + }, + { + "id":"d812abd4-b778-4386-a1ef-e165322fbde6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T16:39:37.619Z", + "completed":"2016-03-19T16:39:37.619Z", + "new_balance":"18917.80", + "value":"-33.91" + } + }, + { + "id":"b77fd4f0-7f00-43f6-856a-814258fb4f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T05:43:17.091Z", + "completed":"2016-03-20T05:43:17.091Z", + "new_balance":"18858.90", + "value":"-58.90" + } + }, + { + "id":"08f9be46-7fcd-4904-83b5-b02d6f7b7730", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T23:21:00.482Z", + "completed":"2016-03-20T23:21:00.482Z", + "new_balance":"18785.39", + "value":"-73.51" + } + }, + { + "id":"2b2d1339-7f78-4625-afe7-ee76708108a5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T03:05:12.086Z", + "completed":"2016-03-21T03:05:12.086Z", + "new_balance":"18779.51", + "value":"-5.88" + } + }, + { + "id":"1e89f8a9-5970-47ae-ac92-ea8f60c33f82", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T17:23:06.588Z", + "completed":"2016-03-21T17:23:06.588Z", + "new_balance":"18773.04", + "value":"-6.47" + } + }, + { + "id":"f164b353-dca5-48f0-9091-b65f46bdfd5c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T14:22:43.786Z", + "completed":"2016-03-23T14:22:43.786Z", + "new_balance":"18727.53", + "value":"-45.51" + } + }, + { + "id":"27eb1b8b-49a6-428a-881a-cf189956ec4a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T14:38:07.275Z", + "completed":"2016-03-23T14:38:07.275Z", + "new_balance":"18716.30", + "value":"-11.23" + } + }, + { + "id":"f300a39f-febd-4ecc-bfc6-6148547f29e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T12:23:02.045Z", + "completed":"2016-03-24T12:23:02.045Z", + "new_balance":"18687.44", + "value":"-28.86" + } + }, + { + "id":"4cc70b23-bc72-4e07-bd43-085c8ecb031d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T15:36:39.806Z", + "completed":"2016-03-25T15:36:39.806Z", + "new_balance":"18653.41", + "value":"-34.03" + } + }, + { + "id":"b2de17a4-7a5b-446a-ae74-87a8a5f937aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T16:48:24.291Z", + "completed":"2016-03-25T16:48:24.291Z", + "new_balance":"18637.33", + "value":"-16.08" + } + }, + { + "id":"0fe2a7ec-e974-48cf-b417-28934b8ba4c1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T05:01:07.029Z", + "completed":"2016-03-27T05:01:07.029Z", + "new_balance":"18448.06", + "value":"-189.27" + } + }, + { + "id":"3821c769-8178-4e97-a545-213eb9585e66", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T20:17:18.954Z", + "completed":"2016-03-28T20:17:18.954Z", + "new_balance":"18421.09", + "value":"-26.97" + } + }, + { + "id":"9e3cdac8-eacc-417c-94f6-43b4eef533e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T04:54:20.240Z", + "completed":"2016-04-01T04:54:20.240Z", + "new_balance":"18286.61", + "value":"-134.48" + } + }, + { + "id":"29f0800a-e8a0-4c13-9a88-d83c3673bd3d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T10:25:42.945Z", + "completed":"2016-04-01T10:25:42.945Z", + "new_balance":"18256.73", + "value":"-29.88" + } + }, + { + "id":"702463d3-a38d-4df4-a1e2-f11cbcca644c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T14:28:17.132Z", + "completed":"2016-04-01T14:28:17.132Z", + "new_balance":"17746.19", + "value":"-510.54" + } + }, + { + "id":"21b7d31e-a220-4683-b4b3-5282412029ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T16:54:32.547Z", + "completed":"2016-04-01T16:54:32.547Z", + "new_balance":"17693.01", + "value":"-53.18" + } + }, + { + "id":"7406f6a2-f2f9-4dab-b10f-ea044f1e6f11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:41:29.933Z", + "completed":"2016-04-02T14:41:29.933Z", + "new_balance":"17621.02", + "value":"-71.99" + } + }, + { + "id":"65d95d65-1480-454e-9e04-0a8d93f14ed3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T15:40:16.817Z", + "completed":"2016-04-02T15:40:16.817Z", + "new_balance":"17534.46", + "value":"-86.56" + } + }, + { + "id":"0a5d6522-e74f-45cd-b982-9e661ba6dc5a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T09:06:01.423Z", + "completed":"2016-04-03T09:06:01.423Z", + "new_balance":"17499.68", + "value":"-34.78" + } + }, + { + "id":"a25cdba2-f9f9-4944-a346-f6d5dcfcffe7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T11:42:34.628Z", + "completed":"2016-04-03T11:42:34.628Z", + "new_balance":"17621.88", + "value":"122.20" + } + }, + { + "id":"63249ef3-f74a-4946-8af5-57e033fc972e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T14:55:54.012Z", + "completed":"2016-04-03T14:55:54.012Z", + "new_balance":"17694.71", + "value":"72.83" + } + }, + { + "id":"65ebd1df-791f-4097-8d5f-cd8d3ee75ebc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T22:54:14.304Z", + "completed":"2016-04-03T22:54:14.304Z", + "new_balance":"17657.52", + "value":"-37.19" + } + }, + { + "id":"71ea90e7-c7e2-4a03-8d1a-b2e5418922d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T23:44:34.897Z", + "completed":"2016-04-03T23:44:34.897Z", + "new_balance":"17620.33", + "value":"-37.19" + } + }, + { + "id":"469c770b-1b4d-46ca-bb41-bd34a9a525fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T10:12:10.861Z", + "completed":"2016-04-04T10:12:10.861Z", + "new_balance":"17546.40", + "value":"-73.93" + } + }, + { + "id":"c7aa85f1-914b-4a72-b274-7a0b4669dbad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T19:53:39.718Z", + "completed":"2016-04-05T19:53:39.718Z", + "new_balance":"17542.81", + "value":"-3.59" + } + }, + { + "id":"5f197e59-e41a-4bd3-987f-40b15ced9f39", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T22:42:01.674Z", + "completed":"2016-04-05T22:42:01.674Z", + "new_balance":"17515.36", + "value":"-27.45" + } + }, + { + "id":"091e2d7a-9a2c-49ce-87dc-cbca0631f4c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T00:32:49.303Z", + "completed":"2016-04-07T00:32:49.303Z", + "new_balance":"17500.54", + "value":"-14.82" + } + }, + { + "id":"816b9327-3821-4666-b0dd-442cbd595625", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T18:03:44.129Z", + "completed":"2016-04-07T18:03:44.129Z", + "new_balance":"17469.25", + "value":"-31.29" + } + }, + { + "id":"1e3f2405-48c2-4204-8d6d-1c49aaa2e1de", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T04:50:28.867Z", + "completed":"2016-04-08T04:50:28.867Z", + "new_balance":"17462.09", + "value":"-7.16" + } + }, + { + "id":"1bddd7b1-06a2-4027-8b18-7cd78818267f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T03:08:26.398Z", + "completed":"2016-04-09T03:08:26.398Z", + "new_balance":"17455.38", + "value":"-6.71" + } + }, + { + "id":"352b427d-d994-4b58-9066-3528da3baa8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T20:18:00.184Z", + "completed":"2016-04-09T20:18:00.184Z", + "new_balance":"17433.13", + "value":"-22.25" + } + }, + { + "id":"fe5aef9b-ab64-4621-a48e-4e1db90b7f71", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T23:21:47.633Z", + "completed":"2016-04-09T23:21:47.633Z", + "new_balance":"17243.86", + "value":"-189.27" + } + }, + { + "id":"eba2cbac-233f-4bdb-a9d8-754e868b4e48", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T10:14:13.509Z", + "completed":"2016-04-10T10:14:13.509Z", + "new_balance":"17198.62", + "value":"-45.24" + } + }, + { + "id":"a91f99f1-c748-42b8-b205-7ddaf0b9e86f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T00:04:17.102Z", + "completed":"2016-04-17T00:04:17.102Z", + "new_balance":"17188.92", + "value":"-9.70" + } + }, + { + "id":"5f6c0339-b2da-4e93-b34f-d79c45458a63", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T12:25:16.957Z", + "completed":"2016-04-18T12:25:16.957Z", + "new_balance":"17156.64", + "value":"-32.28" + } + }, + { + "id":"589bc12e-2594-4f14-94e7-283a86facab2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T01:15:15.813Z", + "completed":"2016-04-25T01:15:15.813Z", + "new_balance":"17114.12", + "value":"-42.52" + } + }, + { + "id":"4b080f5d-1347-4cc2-bec8-4c0fc0c4215e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T10:45:33.726Z", + "completed":"2016-04-26T10:45:33.726Z", + "new_balance":"17107.41", + "value":"-6.71" + } + }, + { + "id":"1ca7b7ba-96a3-4bdf-ae91-52efbd2d59be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T15:33:26.854Z", + "completed":"2016-04-26T15:33:26.854Z", + "new_balance":"17043.84", + "value":"-63.57" + } + }, + { + "id":"1d492f4a-0111-4cd6-b8cf-d16040bd16cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T03:18:39.869Z", + "completed":"2016-05-02T03:18:39.869Z", + "new_balance":"17013.96", + "value":"-29.88" + } + }, + { + "id":"acd590d0-a738-4547-8fed-c8ecc76ea491", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T07:21:23.405Z", + "completed":"2016-05-02T07:21:23.405Z", + "new_balance":"16879.48", + "value":"-134.48" + } + }, + { + "id":"115e13eb-f36e-4f5a-9fa9-0636197260c2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T09:09:01.179Z", + "completed":"2016-05-02T09:09:01.179Z", + "new_balance":"16792.92", + "value":"-86.56" + } + }, + { + "id":"40518f2b-3939-4ef5-93d9-c2f4aa4abac5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T09:34:59.298Z", + "completed":"2016-05-02T09:34:59.298Z", + "new_balance":"16776.99", + "value":"-15.93" + } + }, + { + "id":"7647f736-30b0-4f10-925c-04df80e97c95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T09:39:11.200Z", + "completed":"2016-05-02T09:39:11.200Z", + "new_balance":"16742.56", + "value":"-34.43" + } + }, + { + "id":"31e3a293-91b7-4563-816d-f0cb2a4de125", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T14:11:06.822Z", + "completed":"2016-05-02T14:11:06.822Z", + "new_balance":"16232.02", + "value":"-510.54" + } + }, + { + "id":"df190af4-daee-4415-b45a-7941c83cb5f0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T14:21:13.506Z", + "completed":"2016-05-02T14:21:13.506Z", + "new_balance":"16178.84", + "value":"-53.18" + } + }, + { + "id":"ff370599-3f4a-43b0-8a1e-dfcb91880110", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T20:09:44.332Z", + "completed":"2016-05-02T20:09:44.332Z", + "new_balance":"17859.25", + "value":"1680.41" + } + }, + { + "id":"fdcef432-ae63-47d7-899e-7f6a2633dafd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T16:52:28.738Z", + "completed":"2016-05-03T16:52:28.738Z", + "new_balance":"17844.61", + "value":"-14.64" + } + }, + { + "id":"94fb7d09-443c-427b-a29e-3826616da6b9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T18:59:41.004Z", + "completed":"2016-05-03T18:59:41.004Z", + "new_balance":"17821.24", + "value":"-23.37" + } + }, + { + "id":"995f3b5a-3a1d-4910-8d68-1c502c068d24", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T00:34:40.398Z", + "completed":"2016-05-04T00:34:40.398Z", + "new_balance":"17795.44", + "value":"-25.80" + } + }, + { + "id":"85b5c5ce-5b0e-4920-97a3-a75c7d8a73b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T09:32:49.983Z", + "completed":"2016-05-04T09:32:49.983Z", + "new_balance":"17767.43", + "value":"-28.01" + } + }, + { + "id":"f76c5ac7-c916-42ea-b7f8-ca162a0f393d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T02:27:46.477Z", + "completed":"2016-05-05T02:27:46.477Z", + "new_balance":"17693.50", + "value":"-73.93" + } + }, + { + "id":"650290fe-afc7-49e9-9b02-a7345bca79b6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T17:22:42.959Z", + "completed":"2016-05-07T17:22:42.959Z", + "new_balance":"17665.65", + "value":"-27.85" + } + }, + { + "id":"d6f15552-9a2b-4ae0-9114-9314796a7361", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T20:19:29.533Z", + "completed":"2016-05-07T20:19:29.533Z", + "new_balance":"17661.56", + "value":"-4.09" + } + }, + { + "id":"a7892279-f93a-41fc-b2e5-bc7732a0ff54", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T04:40:57.761Z", + "completed":"2016-05-12T04:40:57.761Z", + "new_balance":"17640.46", + "value":"-21.10" + } + }, + { + "id":"0c01f678-e2ef-44aa-93ab-094743249792", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T23:31:08.257Z", + "completed":"2016-05-12T23:31:08.257Z", + "new_balance":"17591.76", + "value":"-48.70" + } + }, + { + "id":"47977f0b-2c15-4d8f-a357-79aa1463ad9e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T12:46:24.528Z", + "completed":"2016-05-14T12:46:24.528Z", + "new_balance":"17546.59", + "value":"-45.17" + } + }, + { + "id":"b6efb6d0-23f6-41f3-9a70-b978077f9ad5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T16:59:13.352Z", + "completed":"2016-05-16T16:59:13.352Z", + "new_balance":"17540.82", + "value":"-5.77" + } + }, + { + "id":"fa2cfb9d-731a-484a-9fa6-612065576909", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T03:04:08.266Z", + "completed":"2016-05-18T03:04:08.266Z", + "new_balance":"17532.30", + "value":"-8.52" + } + }, + { + "id":"e8612e9c-c30a-4706-9dd2-4df97a206c37", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T22:49:49.149Z", + "completed":"2016-05-20T22:49:49.149Z", + "new_balance":"17571.31", + "value":"39.01" + } + }, + { + "id":"c94ce156-7adf-4c39-b2c3-d19a8263f621", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T09:07:34.859Z", + "completed":"2016-05-21T09:07:34.859Z", + "new_balance":"17527.52", + "value":"-43.79" + } + }, + { + "id":"13a048c6-2905-453e-a257-4869473d5cab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T15:27:04.971Z", + "completed":"2016-05-21T15:27:04.971Z", + "new_balance":"17481.89", + "value":"-45.63" + } + }, + { + "id":"77bc723f-5cea-4f1e-9d73-58aa2b7af53b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:14:19.682Z", + "completed":"2016-05-27T01:14:19.682Z", + "new_balance":"17448.36", + "value":"-33.53" + } + }, + { + "id":"6ce3ebb3-f19d-421d-b442-e871099685e9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T19:55:28.224Z", + "completed":"2016-05-27T19:55:28.224Z", + "new_balance":"17422.80", + "value":"-25.56" + } + }, + { + "id":"7576b7b9-d822-47b2-a600-ea0300133e10", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T01:01:10.163Z", + "completed":"2016-06-01T01:01:10.163Z", + "new_balance":"16912.26", + "value":"-510.54" + } + }, + { + "id":"555c9d50-2a07-4fdc-b11a-2da6a041a488", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T07:56:56.274Z", + "completed":"2016-06-01T07:56:56.274Z", + "new_balance":"18592.67", + "value":"1680.41" + } + }, + { + "id":"aa75dc68-95a8-444b-93ff-bb4f6f805e3f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T10:50:33.508Z", + "completed":"2016-06-01T10:50:33.508Z", + "new_balance":"18562.79", + "value":"-29.88" + } + }, + { + "id":"5e7353da-aa14-4505-ad7b-ee419b42d35d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T14:16:10.823Z", + "completed":"2016-06-01T14:16:10.823Z", + "new_balance":"18509.61", + "value":"-53.18" + } + }, + { + "id":"678578b8-958f-4d99-8572-c5251365dbd0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T20:24:57.236Z", + "completed":"2016-06-01T20:24:57.236Z", + "new_balance":"18375.13", + "value":"-134.48" + } + }, + { + "id":"4b3987b5-e732-4035-aba0-c9bd2a68ea11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T21:00:02.277Z", + "completed":"2016-06-01T21:00:02.277Z", + "new_balance":"18340.70", + "value":"-34.43" + } + }, + { + "id":"0d05f97d-000e-4d2f-b151-f941d3c19759", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T18:51:15.336Z", + "completed":"2016-06-04T18:51:15.336Z", + "new_balance":"18208.86", + "value":"-131.84" + } + }, + { + "id":"2d21d23f-f86b-48d7-8471-64bef4335920", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T19:45:48.848Z", + "completed":"2016-06-04T19:45:48.848Z", + "new_balance":"18122.30", + "value":"-86.56" + } + }, + { + "id":"fe0271d0-a0a5-4618-abfc-327f7cd452ee", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T20:16:42.055Z", + "completed":"2016-06-11T20:16:42.055Z", + "new_balance":"18091.49", + "value":"-30.81" + } + }, + { + "id":"2d161b61-9cb8-4205-8a27-a0793dee223e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T13:51:18.716Z", + "completed":"2016-06-12T13:51:18.716Z", + "new_balance":"18080.96", + "value":"-10.53" + } + }, + { + "id":"ea08fc9f-d613-46bb-a5dc-aa73d3f8ba47", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T09:34:10.580Z", + "completed":"2016-06-13T09:34:10.580Z", + "new_balance":"18074.49", + "value":"-6.47" + } + }, + { + "id":"f69fad40-e947-4eb8-afc5-9825a7984120", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T15:29:36.265Z", + "completed":"2016-06-13T15:29:36.265Z", + "new_balance":"17993.28", + "value":"-81.21" + } + }, + { + "id":"a7be937d-3200-413c-abae-9c766d0c94a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:53:12.027Z", + "completed":"2016-06-16T17:53:12.027Z", + "new_balance":"17952.05", + "value":"-41.23" + } + }, + { + "id":"da59384e-a422-47cf-a06c-33a02e1d4881", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T10:36:13.847Z", + "completed":"2016-06-17T10:36:13.847Z", + "new_balance":"17947.28", + "value":"-4.77" + } + }, + { + "id":"3cf49720-d3d0-4eac-8d50-4cbd798e9b00", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T23:59:19.277Z", + "completed":"2016-06-17T23:59:19.277Z", + "new_balance":"17866.07", + "value":"-81.21" + } + }, + { + "id":"ccdea155-b3cd-4a52-ab8a-c4b4a99f8c8d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T02:40:33.703Z", + "completed":"2016-06-18T02:40:33.703Z", + "new_balance":"17782.27", + "value":"-83.80" + } + }, + { + "id":"7049014e-2f66-4059-b5ad-fcb08b490ed9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T12:38:29.320Z", + "completed":"2016-06-19T12:38:29.320Z", + "new_balance":"17739.93", + "value":"-42.34" + } + }, + { + "id":"3a80c907-ccc2-4ad1-92d2-26ccdb3836e1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T12:42:20.257Z", + "completed":"2016-06-19T12:42:20.257Z", + "new_balance":"17656.13", + "value":"-83.80" + } + }, + { + "id":"2224a878-0664-4aac-831c-52989ae9d947", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T09:34:23.006Z", + "completed":"2016-06-21T09:34:23.006Z", + "new_balance":"17652.55", + "value":"-3.58" + } + }, + { + "id":"e8952c35-013c-4015-becd-25538fd949a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T22:21:24.100Z", + "completed":"2016-06-21T22:21:24.100Z", + "new_balance":"17561.08", + "value":"-91.47" + } + }, + { + "id":"1d83f258-a297-495c-aa14-c122856e4d6b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T08:03:27.274Z", + "completed":"2016-06-23T08:03:27.274Z", + "new_balance":"17533.78", + "value":"-27.30" + } + }, + { + "id":"5552e91a-eb97-4c43-af93-997e0d0116a4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T21:34:19.353Z", + "completed":"2016-06-23T21:34:19.353Z", + "new_balance":"17526.50", + "value":"-7.28" + } + }, + { + "id":"d4bf1830-3e92-41a5-8218-3170914d5a3c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T18:18:39.264Z", + "completed":"2016-06-24T18:18:39.264Z", + "new_balance":"17513.26", + "value":"-13.24" + } + }, + { + "id":"110294b9-a822-47fd-bd61-0e1016ddd740", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T18:56:09.493Z", + "completed":"2016-06-24T18:56:09.493Z", + "new_balance":"17467.25", + "value":"-46.01" + } + }, + { + "id":"636a4e4a-d936-41c2-ad35-c6ca44a5cf0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:26:05.595Z", + "completed":"2016-06-28T01:26:05.595Z", + "new_balance":"17460.26", + "value":"-6.99" + } + }, + { + "id":"a42dd243-bc03-4b47-af9e-b5d28b932e7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T01:47:29.384Z", + "completed":"2016-06-28T01:47:29.384Z", + "new_balance":"17413.46", + "value":"-46.80" + } + }, + { + "id":"1449a4b3-358f-4dce-b6f5-f40c0fa46184", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:00:09.291Z", + "completed":"2016-06-28T06:00:09.291Z", + "new_balance":"17406.47", + "value":"-6.99" + } + }, + { + "id":"dadf7922-aa5f-4e27-a82d-10f194bbd54e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T17:26:05.785Z", + "completed":"2016-06-28T17:26:05.785Z", + "new_balance":"17325.06", + "value":"-81.41" + } + }, + { + "id":"38b41362-e3be-445d-8df1-23227ddfb578", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T10:19:28.579Z", + "completed":"2016-06-29T10:19:28.579Z", + "new_balance":"17266.16", + "value":"-58.90" + } + }, + { + "id":"5e93b997-9250-442f-8aff-837df625ffcf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T13:02:04.313Z", + "completed":"2016-06-29T13:02:04.313Z", + "new_balance":"17259.69", + "value":"-6.47" + } + }, + { + "id":"a9c39047-50a1-4c2a-a6cf-d546c15a6a2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T16:14:18.179Z", + "completed":"2016-06-29T16:14:18.179Z", + "new_balance":"17225.78", + "value":"-33.91" + } + }, + { + "id":"c79d8915-5de7-4a0f-b150-4630b74188e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T17:48:11.054Z", + "completed":"2016-06-29T17:48:11.054Z", + "new_balance":"17188.83", + "value":"-36.95" + } + }, + { + "id":"6fec3d91-1210-48fc-9577-cc571a297408", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T22:24:51.119Z", + "completed":"2016-06-29T22:24:51.119Z", + "new_balance":"17137.82", + "value":"-51.01" + } + }, + { + "id":"b1cc5b1e-a908-4b83-8075-9b3fc1bfc142", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:41:34.962Z", + "completed":"2016-06-29T23:41:34.962Z", + "new_balance":"17064.31", + "value":"-73.51" + } + }, + { + "id":"9b421eac-7e44-4143-95a1-232e67b20902", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T01:53:00.258Z", + "completed":"2016-06-30T01:53:00.258Z", + "new_balance":"17058.43", + "value":"-5.88" + } + }, + { + "id":"81770a55-87c7-406e-be22-ea34a1b3d9aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T08:24:34.812Z", + "completed":"2016-06-30T08:24:34.812Z", + "new_balance":"17029.57", + "value":"-28.86" + } + }, + { + "id":"aa97d1bb-a63c-45cc-b61f-51d82962486e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T10:36:56.568Z", + "completed":"2016-06-30T10:36:56.568Z", + "new_balance":"17018.34", + "value":"-11.23" + } + }, + { + "id":"b01fb116-edde-452e-94a4-ea66ba648930", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T15:18:02.535Z", + "completed":"2016-06-30T15:18:02.535Z", + "new_balance":"16972.83", + "value":"-45.51" + } + }, + { + "id":"1ce431a1-9ebd-4da3-a098-483b400e0404", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:48:07.918Z", + "completed":"2016-07-01T02:48:07.918Z", + "new_balance":"16783.56", + "value":"-189.27" + } + }, + { + "id":"49704713-da1f-4bcd-89df-12af7f84e172", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T05:16:56.016Z", + "completed":"2016-07-01T05:16:56.016Z", + "new_balance":"16273.02", + "value":"-510.54" + } + }, + { + "id":"f4d5a5c1-1984-421f-819b-14e5028f63ed", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:42:23.433Z", + "completed":"2016-07-01T05:42:23.433Z", + "new_balance":"16238.59", + "value":"-34.43" + } + }, + { + "id":"c0ce799b-1571-41d6-9315-d8becdc8a261", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:52:35.298Z", + "completed":"2016-07-01T05:52:35.298Z", + "new_balance":"16204.16", + "value":"-34.43" + } + }, + { + "id":"9d67f5d2-9cd8-4301-a6d5-b140f0875b40", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T06:26:02.982Z", + "completed":"2016-07-01T06:26:02.982Z", + "new_balance":"16174.28", + "value":"-29.88" + } + }, + { + "id":"656f2533-1a10-44cd-9983-a7114dcf00a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T08:17:46.185Z", + "completed":"2016-07-01T08:17:46.185Z", + "new_balance":"16140.25", + "value":"-34.03" + } + }, + { + "id":"61cc6051-4fc3-4bf8-9643-6636e297d3b3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T14:11:13.576Z", + "completed":"2016-07-01T14:11:13.576Z", + "new_balance":"16005.77", + "value":"-134.48" + } + }, + { + "id":"85aa60ec-1c64-413a-9d0d-35815e086a6c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T17:02:48.159Z", + "completed":"2016-07-01T17:02:48.159Z", + "new_balance":"15978.80", + "value":"-26.97" + } + }, + { + "id":"b702ee67-3908-491e-80f1-914dce683c25", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T21:17:13.543Z", + "completed":"2016-07-01T21:17:13.543Z", + "new_balance":"15925.62", + "value":"-53.18" + } + }, + { + "id":"41ea1bd6-f49a-441e-a7d4-357f5a4f1348", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T21:57:27.371Z", + "completed":"2016-07-01T21:57:27.371Z", + "new_balance":"15909.54", + "value":"-16.08" + } + }, + { + "id":"a2229087-23d7-4987-ae8a-5188284aea1b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T02:36:56.806Z", + "completed":"2016-07-02T02:36:56.806Z", + "new_balance":"15822.98", + "value":"-86.56" + } + }, + { + "id":"eb9c8eaa-2687-4ee4-bb56-524818463d6c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T12:32:12.390Z", + "completed":"2016-07-03T12:32:12.390Z", + "new_balance":"15727.55", + "value":"-95.43" + } + }, + { + "id":"1650681c-6531-4b47-92fe-e87aba6d1806", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T10:39:18.565Z", + "completed":"2016-07-04T10:39:18.565Z", + "new_balance":"15711.77", + "value":"-15.78" + } + }, + { + "id":"f12e0d8b-01d3-46a7-ba1b-bbb77c6d77d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T15:10:17.802Z", + "completed":"2016-07-05T15:10:17.802Z", + "new_balance":"15637.84", + "value":"-73.93" + } + }, + { + "id":"f1a52c61-6462-477e-bfff-60dd91829bc0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T18:35:22.225Z", + "completed":"2016-07-05T18:35:22.225Z", + "new_balance":"15565.75", + "value":"-72.09" + } + }, + { + "id":"de443fe6-f453-4529-99fe-4309825c7fbb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T18:46:15.801Z", + "completed":"2016-07-06T18:46:15.801Z", + "new_balance":"15562.16", + "value":"-3.59" + } + }, + { + "id":"deaba927-d7e9-4efc-a363-28d231414018", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T18:04:20.601Z", + "completed":"2016-07-11T18:04:20.601Z", + "new_balance":"15534.71", + "value":"-27.45" + } + }, + { + "id":"cd564bc1-cc81-47e1-968e-42f2ce5b19d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T03:41:22.978Z", + "completed":"2016-07-12T03:41:22.978Z", + "new_balance":"15503.42", + "value":"-31.29" + } + }, + { + "id":"3f9a5093-c174-46ad-a9a7-41758b97fd60", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T13:10:26.133Z", + "completed":"2016-07-14T13:10:26.133Z", + "new_balance":"15488.60", + "value":"-14.82" + } + }, + { + "id":"9559a019-29a2-4943-a5df-835ad79f2f88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T20:23:14.205Z", + "completed":"2016-07-16T20:23:14.205Z", + "new_balance":"15481.44", + "value":"-7.16" + } + }, + { + "id":"750fd3aa-03e0-447e-8bbd-8837fa528e71", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T02:27:23.421Z", + "completed":"2016-07-18T02:27:23.421Z", + "new_balance":"15459.19", + "value":"-22.25" + } + }, + { + "id":"97471033-a339-4236-87f4-15081ffc6c33", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T11:01:40.953Z", + "completed":"2016-07-20T11:01:40.953Z", + "new_balance":"15452.48", + "value":"-6.71" + } + }, + { + "id":"981ff15a-84b0-4b54-b543-1e9fa220cfee", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T18:31:54.473Z", + "completed":"2016-07-20T18:31:54.473Z", + "new_balance":"15263.21", + "value":"-189.27" + } + }, + { + "id":"817e50f9-9c53-410f-b6bc-7e849d7166c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T00:39:52.867Z", + "completed":"2016-07-24T00:39:52.867Z", + "new_balance":"15217.97", + "value":"-45.24" + } + }, + { + "id":"bb27c0b9-e1c5-4e85-bbc5-0ad2658ce97b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T23:36:43.167Z", + "completed":"2016-07-24T23:36:43.167Z", + "new_balance":"15208.27", + "value":"-9.70" + } + }, + { + "id":"e305557c-e04c-4af4-8bce-ebfef230e27e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T10:00:43.792Z", + "completed":"2016-07-25T10:00:43.792Z", + "new_balance":"15175.99", + "value":"-32.28" + } + }, + { + "id":"90eebc03-29d8-4fe8-bfab-9cb5b51e0551", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T15:33:07.220Z", + "completed":"2016-07-25T15:33:07.220Z", + "new_balance":"15133.47", + "value":"-42.52" + } + }, + { + "id":"a8c84639-0ddc-4118-ab71-5f3533c2edc8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T00:15:31.799Z", + "completed":"2016-07-26T00:15:31.799Z", + "new_balance":"15069.90", + "value":"-63.57" + } + }, + { + "id":"c320e710-e859-47bb-bd95-323e0a38c9a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T12:31:44.436Z", + "completed":"2016-07-27T12:31:44.436Z", + "new_balance":"15063.19", + "value":"-6.71" + } + }, + { + "id":"5ae6fefd-84cc-4957-989e-0066a8967e3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T01:39:57.653Z", + "completed":"2016-08-01T01:39:57.653Z", + "new_balance":"14928.71", + "value":"-134.48" + } + }, + { + "id":"ccf025ab-bf44-47bd-b404-4959949d299f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:44:42.043Z", + "completed":"2016-08-01T02:44:42.043Z", + "new_balance":"14894.28", + "value":"-34.43" + } + }, + { + "id":"d67c2046-7ce6-4e85-9581-7deb37d1517f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T04:53:58.821Z", + "completed":"2016-08-01T04:53:58.821Z", + "new_balance":"14383.74", + "value":"-510.54" + } + }, + { + "id":"bf45a3b4-048b-4fca-a245-ffb691f99283", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T12:56:58.169Z", + "completed":"2016-08-01T12:56:58.169Z", + "new_balance":"16064.15", + "value":"1680.41" + } + }, + { + "id":"55519dbc-af60-4764-8740-7b130441bc10", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T16:50:03.236Z", + "completed":"2016-08-01T16:50:03.236Z", + "new_balance":"16010.97", + "value":"-53.18" + } + }, + { + "id":"1b9471a0-7cb7-40d8-975e-810b98911026", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T17:15:16.506Z", + "completed":"2016-08-01T17:15:16.506Z", + "new_balance":"15981.09", + "value":"-29.88" + } + }, + { + "id":"fb614b08-db32-4819-bb95-5142ecc677a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T12:17:06.252Z", + "completed":"2016-08-02T12:17:06.252Z", + "new_balance":"15894.53", + "value":"-86.56" + } + }, + { + "id":"0a0a6653-c3eb-4098-81a5-62d31c83a9fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T21:02:47.089Z", + "completed":"2016-08-03T21:02:47.089Z", + "new_balance":"15890.94", + "value":"-3.59" + } + }, + { + "id":"eea11eda-5f08-497e-9b1e-80b2da88ad97", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T00:32:58.506Z", + "completed":"2016-08-04T00:32:58.506Z", + "new_balance":"15856.39", + "value":"-34.55" + } + }, + { + "id":"423f0bbf-ad23-42ee-b3f1-3f39dec2c899", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T03:59:38.684Z", + "completed":"2016-08-07T03:59:38.684Z", + "new_balance":"15833.02", + "value":"-23.37" + } + }, + { + "id":"316541dd-f05f-4903-bc40-3a62ce22a3c8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T09:53:12.783Z", + "completed":"2016-08-09T09:53:12.783Z", + "new_balance":"15807.22", + "value":"-25.80" + } + }, + { + "id":"73e9a8cc-7f36-4532-ac59-6081eece8251", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:42:41.926Z", + "completed":"2016-08-09T23:42:41.926Z", + "new_balance":"15779.21", + "value":"-28.01" + } + }, + { + "id":"ccd130fc-fd0e-4b32-b79c-a3a17854f7e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T02:14:14.991Z", + "completed":"2016-08-10T02:14:14.991Z", + "new_balance":"15705.28", + "value":"-73.93" + } + }, + { + "id":"c85dbea8-0d90-49d6-b3c5-bfb4a79b4b57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T14:50:25.464Z", + "completed":"2016-08-14T14:50:25.464Z", + "new_balance":"15701.19", + "value":"-4.09" + } + }, + { + "id":"fb4ef537-6316-465d-a0cf-160c30491f04", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T09:15:26.832Z", + "completed":"2016-08-15T09:15:26.832Z", + "new_balance":"15665.26", + "value":"-35.93" + } + }, + { + "id":"52f5a777-8cdb-4927-9fef-f47133fc76f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T15:59:57.215Z", + "completed":"2016-08-15T15:59:57.215Z", + "new_balance":"15637.41", + "value":"-27.85" + } + }, + { + "id":"b89f4426-6aad-4929-8f3a-ec8c0d891fa8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T22:54:54.966Z", + "completed":"2016-08-16T22:54:54.966Z", + "new_balance":"15588.71", + "value":"-48.70" + } + }, + { + "id":"d2617897-461c-4381-99d8-c1e7b911a1cd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:47:59.364Z", + "completed":"2016-08-17T22:47:59.364Z", + "new_balance":"15543.54", + "value":"-45.17" + } + }, + { + "id":"ddf1fbec-1eb2-4139-ac7b-bcf58ae8849f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T12:59:34.948Z", + "completed":"2016-08-20T12:59:34.948Z", + "new_balance":"15537.77", + "value":"-5.77" + } + }, + { + "id":"f3293d4a-c76a-4681-8c9b-45cb0cb9ea57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T13:47:51.812Z", + "completed":"2016-08-20T13:47:51.812Z", + "new_balance":"15529.25", + "value":"-8.52" + } + }, + { + "id":"e2420f85-bf13-439f-924f-681f27675732", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T17:49:00.715Z", + "completed":"2016-08-22T17:49:00.715Z", + "new_balance":"15568.26", + "value":"39.01" + } + }, + { + "id":"490316b3-9573-4170-b417-33917b9e358a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T01:12:27.255Z", + "completed":"2016-08-23T01:12:27.255Z", + "new_balance":"15524.47", + "value":"-43.79" + } + }, + { + "id":"cb222e93-738c-4da8-949e-9e96526c0a17", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T16:43:50.951Z", + "completed":"2016-08-23T16:43:50.951Z", + "new_balance":"15478.84", + "value":"-45.63" + } + }, + { + "id":"10a0d785-e15a-40f3-aa24-68330c1959e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T13:26:40.362Z", + "completed":"2016-08-28T13:26:40.362Z", + "new_balance":"15445.31", + "value":"-33.53" + } + }, + { + "id":"fcd6ce77-52d3-467e-b9db-93860d90c6db", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T18:32:43.635Z", + "completed":"2016-08-28T18:32:43.635Z", + "new_balance":"15419.75", + "value":"-25.56" + } + }, + { + "id":"95745051-b111-4eb9-b2cf-8b6512cf48a5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T00:14:35.707Z", + "completed":"2016-09-01T00:14:35.707Z", + "new_balance":"14909.21", + "value":"-510.54" + } + }, + { + "id":"71b97c1f-66ee-42b4-ab7e-89dc215dd5e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T03:27:45.249Z", + "completed":"2016-09-01T03:27:45.249Z", + "new_balance":"14856.03", + "value":"-53.18" + } + }, + { + "id":"52d6dc26-5b29-43d4-9236-d6ecf022b04b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T13:14:10.744Z", + "completed":"2016-09-01T13:14:10.744Z", + "new_balance":"14721.55", + "value":"-134.48" + } + }, + { + "id":"2ac5f60c-d11e-407a-b305-99e1923839f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T14:18:05.348Z", + "completed":"2016-09-01T14:18:05.348Z", + "new_balance":"14691.67", + "value":"-29.88" + } + }, + { + "id":"701c5434-c20f-436b-86d9-5d7e7b3b97a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T15:14:50.081Z", + "completed":"2016-09-01T15:14:50.081Z", + "new_balance":"14657.24", + "value":"-34.43" + } + }, + { + "id":"4c6dc0a0-701a-4be1-9d5b-190cc73ddfff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T18:51:00.045Z", + "completed":"2016-09-01T18:51:00.045Z", + "new_balance":"16337.65", + "value":"1680.41" + } + }, + { + "id":"a0b8a964-1d3f-45be-a1e9-d5eeacf0e77f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T02:39:21.580Z", + "completed":"2016-09-02T02:39:21.580Z", + "new_balance":"16251.09", + "value":"-86.56" + } + }, + { + "id":"3e2ec0ac-92eb-42fb-b158-e2eba747c373", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T05:43:53.631Z", + "completed":"2016-09-04T05:43:53.631Z", + "new_balance":"16169.88", + "value":"-81.21" + } + }, + { + "id":"fcea7a02-6de9-475f-91fb-4295bbd0b481", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T07:28:38.976Z", + "completed":"2016-09-04T07:28:38.976Z", + "new_balance":"16159.35", + "value":"-10.53" + } + }, + { + "id":"940cf7e0-a349-438c-aa9e-859a2b2f3c31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T11:06:38.445Z", + "completed":"2016-09-04T11:06:38.445Z", + "new_balance":"16128.54", + "value":"-30.81" + } + }, + { + "id":"3ebd2beb-6d2d-484a-9c64-d8913bb0bb59", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T17:39:54.586Z", + "completed":"2016-09-04T17:39:54.586Z", + "new_balance":"16122.07", + "value":"-6.47" + } + }, + { + "id":"31e97d94-6880-47c7-b1d7-5a96065985d1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T21:32:20.485Z", + "completed":"2016-09-05T21:32:20.485Z", + "new_balance":"16080.84", + "value":"-41.23" + } + }, + { + "id":"d0d2c3e3-c032-424e-965e-d29d75b9a128", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T22:55:33.851Z", + "completed":"2016-09-05T22:55:33.851Z", + "new_balance":"16076.07", + "value":"-4.77" + } + }, + { + "id":"7d68a9b9-5297-4b47-babd-8186c53a809d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:28:01.304Z", + "completed":"2016-09-06T18:28:01.304Z", + "new_balance":"15992.27", + "value":"-83.80" + } + }, + { + "id":"512d9d6b-944b-481d-8964-bf7e16c704bc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T23:53:25.538Z", + "completed":"2016-09-06T23:53:25.538Z", + "new_balance":"15911.06", + "value":"-81.21" + } + }, + { + "id":"cb0ed35d-39a1-417a-ae90-d83e023caa3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T14:03:57.447Z", + "completed":"2016-09-08T14:03:57.447Z", + "new_balance":"15868.72", + "value":"-42.34" + } + }, + { + "id":"9a5f5a0b-3355-4328-8e56-0961eae66fbd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T21:43:04.033Z", + "completed":"2016-09-08T21:43:04.033Z", + "new_balance":"15784.92", + "value":"-83.80" + } + }, + { + "id":"c36deadc-d2fa-4d57-9864-fcbb852eaf28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T00:24:34.789Z", + "completed":"2016-09-10T00:24:34.789Z", + "new_balance":"15781.34", + "value":"-3.58" + } + }, + { + "id":"d935ed88-dd3e-4bef-991c-66efe008322d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:41:18.308Z", + "completed":"2016-09-10T22:41:18.308Z", + "new_balance":"15689.87", + "value":"-91.47" + } + }, + { + "id":"19187579-a43d-46f1-b832-9969c96ad113", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T19:49:59.076Z", + "completed":"2016-09-11T19:49:59.076Z", + "new_balance":"15682.59", + "value":"-7.28" + } + }, + { + "id":"275e4de0-f0f2-471a-a4cd-f4026f5fd9c4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T05:03:48.305Z", + "completed":"2016-09-12T05:03:48.305Z", + "new_balance":"15655.29", + "value":"-27.30" + } + }, + { + "id":"79b4c73e-8ab0-42ee-b356-693301d77b95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T05:30:31.597Z", + "completed":"2016-09-12T05:30:31.597Z", + "new_balance":"15642.05", + "value":"-13.24" + } + }, + { + "id":"13eea4e1-1173-4324-9811-18dee24413b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T20:55:52.811Z", + "completed":"2016-09-13T20:55:52.811Z", + "new_balance":"15596.04", + "value":"-46.01" + } + }, + { + "id":"28cf646a-f0b5-4c1c-8f99-0ff6ca973cbe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T00:58:47.772Z", + "completed":"2016-09-16T00:58:47.772Z", + "new_balance":"15589.05", + "value":"-6.99" + } + }, + { + "id":"8b4379cb-0bcd-4402-895f-9000bca0edcc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T10:32:23.838Z", + "completed":"2016-09-17T10:32:23.838Z", + "new_balance":"15542.25", + "value":"-46.80" + } + }, + { + "id":"896de0b4-aa47-415c-8938-5578f482c530", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T23:18:36.502Z", + "completed":"2016-09-17T23:18:36.502Z", + "new_balance":"15460.84", + "value":"-81.41" + } + }, + { + "id":"56f172a4-a8fa-4a08-8d38-46008a61c3be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:13:58.231Z", + "completed":"2016-09-18T17:13:58.231Z", + "new_balance":"15453.85", + "value":"-6.99" + } + }, + { + "id":"6c9e03ae-f2b4-4ab2-a843-cf0e9c19f296", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T08:50:42.895Z", + "completed":"2016-09-19T08:50:42.895Z", + "new_balance":"15419.94", + "value":"-33.91" + } + }, + { + "id":"273b4868-a606-4091-8627-529c298839fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T14:37:23.113Z", + "completed":"2016-09-19T14:37:23.113Z", + "new_balance":"15368.93", + "value":"-51.01" + } + }, + { + "id":"84d54962-3ffd-408c-b4ee-52942d71dcb0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T18:53:03.389Z", + "completed":"2016-09-19T18:53:03.389Z", + "new_balance":"15331.98", + "value":"-36.95" + } + }, + { + "id":"a15e2bbe-127e-4433-8822-5b0a5539b1ba", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T05:26:33.052Z", + "completed":"2016-09-20T05:26:33.052Z", + "new_balance":"15258.47", + "value":"-73.51" + } + }, + { + "id":"391a8311-9408-4e8f-af5a-8c420faa961f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T08:41:41.473Z", + "completed":"2016-09-20T08:41:41.473Z", + "new_balance":"15199.57", + "value":"-58.90" + } + }, + { + "id":"76412cfd-3cbb-4d7a-b387-38182ad77336", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T07:15:08.819Z", + "completed":"2016-09-21T07:15:08.819Z", + "new_balance":"15193.10", + "value":"-6.47" + } + }, + { + "id":"d89f7ade-73c2-470d-ae2a-869c669ff6f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T16:39:42.292Z", + "completed":"2016-09-21T16:39:42.292Z", + "new_balance":"15187.22", + "value":"-5.88" + } + }, + { + "id":"57a91dfc-6e5e-4a43-a2b4-3485127e85b3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T10:24:02.664Z", + "completed":"2016-09-23T10:24:02.664Z", + "new_balance":"15175.99", + "value":"-11.23" + } + }, + { + "id":"cd12d0b4-9f2b-41f8-a376-6e1ddf22e294", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T20:01:17.366Z", + "completed":"2016-09-23T20:01:17.366Z", + "new_balance":"15130.48", + "value":"-45.51" + } + }, + { + "id":"9bc8ffed-051b-41d3-9227-695cc8670394", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T18:00:22.866Z", + "completed":"2016-09-24T18:00:22.866Z", + "new_balance":"15101.62", + "value":"-28.86" + } + }, + { + "id":"dcba4b4b-2a47-4685-a072-8568dbc9342a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T00:34:03.539Z", + "completed":"2016-09-25T00:34:03.539Z", + "new_balance":"15067.59", + "value":"-34.03" + } + }, + { + "id":"07e8d4ef-2038-46d8-b26a-10f3371625f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T07:15:37.460Z", + "completed":"2016-09-25T07:15:37.460Z", + "new_balance":"15051.51", + "value":"-16.08" + } + }, + { + "id":"bf32cc49-9207-4c44-9d66-a48d6853f619", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:31:20.382Z", + "completed":"2016-09-27T15:31:20.382Z", + "new_balance":"14862.24", + "value":"-189.27" + } + }, + { + "id":"c193a879-54d0-4163-9465-6f492d05eb69", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T17:24:29.395Z", + "completed":"2016-09-29T17:24:29.395Z", + "new_balance":"14835.27", + "value":"-26.97" + } + }, + { + "id":"32ded2c7-d8de-4c0d-bc1c-fc0c2dd7544c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T02:09:17.870Z", + "completed":"2016-10-01T02:09:17.870Z", + "new_balance":"14782.09", + "value":"-53.18" + } + }, + { + "id":"af03ec78-e8bf-4748-a09c-0d857e609b34", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T18:19:28.823Z", + "completed":"2016-10-01T18:19:28.823Z", + "new_balance":"14647.61", + "value":"-134.48" + } + }, + { + "id":"f39a09da-e2d9-4415-a32d-2408c8e2545b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T19:39:57.675Z", + "completed":"2016-10-01T19:39:57.675Z", + "new_balance":"14617.73", + "value":"-29.88" + } + }, + { + "id":"b756081c-7b9f-4ff5-9736-e07bf6af8270", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T21:04:01.013Z", + "completed":"2016-10-01T21:04:01.013Z", + "new_balance":"14107.19", + "value":"-510.54" + } + }, + { + "id":"746fa4aa-e450-4f87-b194-f504f62d983f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T07:00:01.854Z", + "completed":"2016-10-02T07:00:01.854Z", + "new_balance":"14020.63", + "value":"-86.56" + } + }, + { + "id":"580c4d99-3683-4803-8088-4a2eb2b1b640", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T14:09:42.429Z", + "completed":"2016-10-02T14:09:42.429Z", + "new_balance":"13948.64", + "value":"-71.99" + } + }, + { + "id":"ba202f13-ad69-4fab-870f-09d978f6056c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:51:29.325Z", + "completed":"2016-10-03T01:51:29.325Z", + "new_balance":"13785.16", + "value":"-163.48" + } + }, + { + "id":"55c8ddab-f62c-48e4-8cc1-faac8a0939e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T04:29:56.996Z", + "completed":"2016-10-03T04:29:56.996Z", + "new_balance":"13750.38", + "value":"-34.78" + } + }, + { + "id":"9918c4d3-8497-4a3f-8190-544b6ae5e255", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:17:11.801Z", + "completed":"2016-10-03T07:17:11.801Z", + "new_balance":"13713.19", + "value":"-37.19" + } + }, + { + "id":"65fe6367-7b79-4c85-81c1-57ccdf8b8d06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T13:54:03.603Z", + "completed":"2016-10-03T13:54:03.603Z", + "new_balance":"13523.92", + "value":"-189.27" + } + }, + { + "id":"bd5c5843-595c-4493-b206-44f6422cbd65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T14:07:03.662Z", + "completed":"2016-10-03T14:07:03.662Z", + "new_balance":"12792.07", + "value":"-731.85" + } + }, + { + "id":"857eb2a0-8d62-4b14-bf8b-c1acb08d9c8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T16:31:03.393Z", + "completed":"2016-10-04T16:31:03.393Z", + "new_balance":"12718.14", + "value":"-73.93" + } + }, + { + "id":"0f17d760-cb1a-4915-8d80-3880c273015a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:29:02.088Z", + "completed":"2016-10-05T03:29:02.088Z", + "new_balance":"12690.69", + "value":"-27.45" + } + }, + { + "id":"bb05f949-2c8d-4e9b-9280-d5404e0c54aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T05:17:56.383Z", + "completed":"2016-10-05T05:17:56.383Z", + "new_balance":"12687.10", + "value":"-3.59" + } + }, + { + "id":"2b776956-8e5f-4353-868c-f2257093e6d9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T10:48:26.452Z", + "completed":"2016-10-07T10:48:26.452Z", + "new_balance":"12655.81", + "value":"-31.29" + } + }, + { + "id":"9767a3d5-81cb-4265-9e99-2fa6dceb1ccf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T22:29:16.299Z", + "completed":"2016-10-07T22:29:16.299Z", + "new_balance":"12640.99", + "value":"-14.82" + } + }, + { + "id":"0086672c-b68d-407e-b6d9-5a9794a7c201", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T21:29:35.369Z", + "completed":"2016-10-08T21:29:35.369Z", + "new_balance":"12633.83", + "value":"-7.16" + } + }, + { + "id":"17d9ee5f-09c0-4ae5-b3a7-0aac13f25af0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T05:40:18.263Z", + "completed":"2016-10-09T05:40:18.263Z", + "new_balance":"12627.12", + "value":"-6.71" + } + }, + { + "id":"d6bf7156-dcc0-49cf-9fb3-58853f3c82b6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T14:37:05.375Z", + "completed":"2016-10-09T14:37:05.375Z", + "new_balance":"12437.85", + "value":"-189.27" + } + }, + { + "id":"f186822c-a24b-4c1a-9794-80f0b086384e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T18:45:33.259Z", + "completed":"2016-10-09T18:45:33.259Z", + "new_balance":"12415.60", + "value":"-22.25" + } + }, + { + "id":"c6fa5e6c-f608-4736-acfe-0d3349a5ec2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:47:15.549Z", + "completed":"2016-10-10T17:47:15.549Z", + "new_balance":"12370.36", + "value":"-45.24" + } + }, + { + "id":"db211db5-2148-489e-b109-38c13267f4ef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T19:19:33.866Z", + "completed":"2016-10-17T19:19:33.866Z", + "new_balance":"12360.66", + "value":"-9.70" + } + }, + { + "id":"293352ae-f984-4430-b99b-19d6fcbaff4c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T07:43:43.197Z", + "completed":"2016-10-18T07:43:43.197Z", + "new_balance":"12328.38", + "value":"-32.28" + } + }, + { + "id":"9f147b61-60c1-467c-8f00-fbfd0b81936a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T03:33:20.491Z", + "completed":"2016-10-25T03:33:20.491Z", + "new_balance":"12285.86", + "value":"-42.52" + } + }, + { + "id":"44a130c9-1695-4554-b32f-035f21719d35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T02:10:21.730Z", + "completed":"2016-10-26T02:10:21.730Z", + "new_balance":"12279.15", + "value":"-6.71" + } + }, + { + "id":"639d0a73-46b6-4c59-a673-d9a38e3cbc4d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T06:59:26.285Z", + "completed":"2016-10-26T06:59:26.285Z", + "new_balance":"12215.58", + "value":"-63.57" + } + }, + { + "id":"0567ebe9-a16b-4078-a3de-f80d11a21a26", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T00:21:34.931Z", + "completed":"2016-11-02T00:21:34.931Z", + "new_balance":"12162.40", + "value":"-53.18" + } + }, + { + "id":"5bee0190-c813-4331-83bf-6984643d9890", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T11:03:40.510Z", + "completed":"2016-11-02T11:03:40.510Z", + "new_balance":"13842.81", + "value":"1680.41" + } + }, + { + "id":"c5e36020-e685-42f9-8cc0-c4e19398a510", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T12:17:23.579Z", + "completed":"2016-11-02T12:17:23.579Z", + "new_balance":"13812.93", + "value":"-29.88" + } + }, + { + "id":"5468ca58-aa71-44b9-9e55-9645f5cf4d50", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T12:45:19.736Z", + "completed":"2016-11-02T12:45:19.736Z", + "new_balance":"13778.50", + "value":"-34.43" + } + }, + { + "id":"a9356979-7b64-4778-a3c7-42e7510b69e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T17:44:10.907Z", + "completed":"2016-11-02T17:44:10.907Z", + "new_balance":"13267.96", + "value":"-510.54" + } + }, + { + "id":"1af6713d-9af4-42ee-8c05-dea9c4001d39", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T18:56:52.841Z", + "completed":"2016-11-02T18:56:52.841Z", + "new_balance":"13181.40", + "value":"-86.56" + } + }, + { + "id":"28d73b30-6176-486d-8d61-bdcec4a0f815", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T21:29:17.505Z", + "completed":"2016-11-02T21:29:17.505Z", + "new_balance":"13165.47", + "value":"-15.93" + } + }, + { + "id":"963db7e0-e159-4721-973a-66a54684e0f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T22:02:56.311Z", + "completed":"2016-11-02T22:02:56.311Z", + "new_balance":"13030.99", + "value":"-134.48" + } + }, + { + "id":"807286fe-755b-47e3-ab88-88f491c9a5a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T02:46:28.636Z", + "completed":"2016-11-06T02:46:28.636Z", + "new_balance":"13016.35", + "value":"-14.64" + } + }, + { + "id":"3e5fa1d2-0734-4f3a-afef-005ad6ee12e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T08:27:11.336Z", + "completed":"2016-11-07T08:27:11.336Z", + "new_balance":"12990.55", + "value":"-25.80" + } + }, + { + "id":"fdf6cb18-ca23-44ae-9cf0-df5f38c1b4e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T08:48:32.628Z", + "completed":"2016-11-07T08:48:32.628Z", + "new_balance":"12962.54", + "value":"-28.01" + } + }, + { + "id":"7f561625-b65e-4273-ae04-e58eb36d453e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T12:13:35.834Z", + "completed":"2016-11-07T12:13:35.834Z", + "new_balance":"12939.17", + "value":"-23.37" + } + }, + { + "id":"75e7c34b-89d4-4363-8d9d-84a05da955fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T02:04:57.620Z", + "completed":"2016-11-09T02:04:57.620Z", + "new_balance":"12935.08", + "value":"-4.09" + } + }, + { + "id":"e031aac1-df2e-4960-ac9a-c8d137a11bdb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T20:13:07.350Z", + "completed":"2016-11-09T20:13:07.350Z", + "new_balance":"12861.15", + "value":"-73.93" + } + }, + { + "id":"a5c8c986-42fe-47fb-84f9-397fc51ab6e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T03:57:37.250Z", + "completed":"2016-11-12T03:57:37.250Z", + "new_balance":"12840.05", + "value":"-21.10" + } + }, + { + "id":"5868e2cd-6713-4c3a-989c-19dbd58b4a74", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T07:51:32.718Z", + "completed":"2016-11-12T07:51:32.718Z", + "new_balance":"12812.20", + "value":"-27.85" + } + }, + { + "id":"3b059b38-e5e3-4bc2-aff0-016596ffcbef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T02:17:21.235Z", + "completed":"2016-11-14T02:17:21.235Z", + "new_balance":"12767.03", + "value":"-45.17" + } + }, + { + "id":"22356437-c7c3-4913-a94e-729ee1bb650a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T11:15:01.339Z", + "completed":"2016-11-14T11:15:01.339Z", + "new_balance":"12718.33", + "value":"-48.70" + } + }, + { + "id":"e49e9a77-d403-4dc2-b45d-f75ed6a1656c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T01:20:05.829Z", + "completed":"2016-11-16T01:20:05.829Z", + "new_balance":"12712.56", + "value":"-5.77" + } + }, + { + "id":"f3e0025c-50bb-4bc8-aa32-7193ba111b8c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T04:27:06.033Z", + "completed":"2016-11-18T04:27:06.033Z", + "new_balance":"12704.04", + "value":"-8.52" + } + }, + { + "id":"7e717079-72e3-422c-8655-aabc20aa0fd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T21:27:07.472Z", + "completed":"2016-11-20T21:27:07.472Z", + "new_balance":"12743.05", + "value":"39.01" + } + }, + { + "id":"eb7b6125-3d6b-46de-a46d-6b2c60ba0437", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T06:52:31.152Z", + "completed":"2016-11-21T06:52:31.152Z", + "new_balance":"12699.26", + "value":"-43.79" + } + }, + { + "id":"0cee6450-9311-4044-b83d-95dc0d5b8dc6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T13:23:41.445Z", + "completed":"2016-11-21T13:23:41.445Z", + "new_balance":"12653.63", + "value":"-45.63" + } + }, + { + "id":"3068f565-1ef2-4539-9d34-703757fb9368", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T03:34:04.552Z", + "completed":"2016-11-27T03:34:04.552Z", + "new_balance":"12628.07", + "value":"-25.56" + } + }, + { + "id":"e7ea0253-5b02-4323-8de1-efd9ab5a494d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T18:50:16.665Z", + "completed":"2016-11-27T18:50:16.665Z", + "new_balance":"12594.54", + "value":"-33.53" + } + }, + { + "id":"e66c8410-9ff7-4ddb-8660-4c56870d70d2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T02:18:53.229Z", + "completed":"2016-12-01T02:18:53.229Z", + "new_balance":"14274.95", + "value":"1680.41" + } + }, + { + "id":"3640a43c-6d87-4720-a01b-1b92d361504c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:15:58.237Z", + "completed":"2016-12-01T06:15:58.237Z", + "new_balance":"14245.07", + "value":"-29.88" + } + }, + { + "id":"e758861a-f96b-4226-8d91-e4d8e095acf2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:28:22.627Z", + "completed":"2016-12-01T08:28:22.627Z", + "new_balance":"14110.59", + "value":"-134.48" + } + }, + { + "id":"a93e1317-a7f8-47df-aacf-3816d98a1951", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T08:50:17.174Z", + "completed":"2016-12-01T08:50:17.174Z", + "new_balance":"14076.16", + "value":"-34.43" + } + }, + { + "id":"14592761-b622-4e93-af44-f7c7420cc997", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T11:06:33.127Z", + "completed":"2016-12-01T11:06:33.127Z", + "new_balance":"13565.62", + "value":"-510.54" + } + }, + { + "id":"91df5fea-a845-4b61-8633-2efd2ec042de", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T12:50:30.636Z", + "completed":"2016-12-01T12:50:30.636Z", + "new_balance":"13512.44", + "value":"-53.18" + } + }, + { + "id":"bcb6c75e-9466-4508-b80c-b67baeee799a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T03:56:49.497Z", + "completed":"2016-12-04T03:56:49.497Z", + "new_balance":"13425.88", + "value":"-86.56" + } + }, + { + "id":"fa96fcb3-bb0b-4e69-a0d9-2504767e7c87", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T22:45:54.975Z", + "completed":"2016-12-04T22:45:54.975Z", + "new_balance":"13294.04", + "value":"-131.84" + } + }, + { + "id":"a420c0ad-574d-4328-ae44-25173edd7812", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T11:39:24.250Z", + "completed":"2016-12-12T11:39:24.250Z", + "new_balance":"13263.23", + "value":"-30.81" + } + }, + { + "id":"e522f908-5a4d-4ff6-b17a-8003ea4e8e30", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T18:49:43.131Z", + "completed":"2016-12-12T18:49:43.131Z", + "new_balance":"13252.70", + "value":"-10.53" + } + }, + { + "id":"7cd081ad-502f-49aa-92b1-36d9ccdcba9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T04:30:06.199Z", + "completed":"2016-12-13T04:30:06.199Z", + "new_balance":"13246.23", + "value":"-6.47" + } + }, + { + "id":"1963474b-7209-4898-96e6-bf559caf3f61", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T22:09:17.144Z", + "completed":"2016-12-13T22:09:17.144Z", + "new_balance":"13165.02", + "value":"-81.21" + } + }, + { + "id":"7becc731-35b4-4f2b-804c-569b0e11227d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T23:53:47.729Z", + "completed":"2016-12-16T23:53:47.729Z", + "new_balance":"13123.79", + "value":"-41.23" + } + }, + { + "id":"c117dc5a-1bf4-4d2f-a9c7-d5b17c3548a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T00:56:14.178Z", + "completed":"2016-12-18T00:56:14.178Z", + "new_balance":"13119.02", + "value":"-4.77" + } + }, + { + "id":"750a4919-c096-4487-afbe-40bd70a35d8e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T13:07:01.487Z", + "completed":"2016-12-19T13:07:01.487Z", + "new_balance":"13035.22", + "value":"-83.80" + } + }, + { + "id":"419a6dc0-4ecd-4571-933b-15e58d79bb65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T23:11:11.526Z", + "completed":"2016-12-19T23:11:11.526Z", + "new_balance":"12954.01", + "value":"-81.21" + } + }, + { + "id":"80868f49-c9fd-4a5b-820a-62b763c479c7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T00:56:03.446Z", + "completed":"2016-12-20T00:56:03.446Z", + "new_balance":"12911.67", + "value":"-42.34" + } + }, + { + "id":"8f75245a-d0b4-4468-8cde-505f702cd13f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T05:06:59.322Z", + "completed":"2016-12-21T05:06:59.322Z", + "new_balance":"12827.87", + "value":"-83.80" + } + }, + { + "id":"3ef1d96e-2e86-43a3-80b2-6dd2da9833dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T03:40:57.164Z", + "completed":"2016-12-24T03:40:57.164Z", + "new_balance":"12800.57", + "value":"-27.30" + } + }, + { + "id":"8db1b7de-8e53-446d-9490-ecff22096847", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T06:33:32.894Z", + "completed":"2016-12-24T06:33:32.894Z", + "new_balance":"12793.29", + "value":"-7.28" + } + }, + { + "id":"3bd1e042-25aa-473b-8f0e-efa473c48ee8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T07:02:26.138Z", + "completed":"2016-12-24T07:02:26.138Z", + "new_balance":"12780.05", + "value":"-13.24" + } + }, + { + "id":"dea09389-295b-41d9-b366-09076603dfd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T14:04:19.023Z", + "completed":"2016-12-24T14:04:19.023Z", + "new_balance":"12688.58", + "value":"-91.47" + } + }, + { + "id":"6fc00523-5834-464f-93f8-6e6b51160821", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T20:15:53.019Z", + "completed":"2016-12-24T20:15:53.019Z", + "new_balance":"12642.57", + "value":"-46.01" + } + }, + { + "id":"9f3e06be-57d6-46bf-9833-94507895393e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T23:10:59.613Z", + "completed":"2016-12-24T23:10:59.613Z", + "new_balance":"12638.99", + "value":"-3.58" + } + }, + { + "id":"8b9ad40e-ad29-4ab1-b362-63b874b8519b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T09:59:16.636Z", + "completed":"2016-12-28T09:59:16.636Z", + "new_balance":"12632.00", + "value":"-6.99" + } + }, + { + "id":"32401cb2-1668-4943-86cb-99a300530d7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T15:09:39.375Z", + "completed":"2016-12-28T15:09:39.375Z", + "new_balance":"12550.59", + "value":"-81.41" + } + }, + { + "id":"7ed7ea3a-4f48-4a03-951d-6006682e495a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T16:25:53.197Z", + "completed":"2016-12-28T16:25:53.197Z", + "new_balance":"12503.79", + "value":"-46.80" + } + }, + { + "id":"9c49130a-8a0d-4f4f-b0d3-89b180fcf35e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T16:56:09.413Z", + "completed":"2016-12-28T16:56:09.413Z", + "new_balance":"12496.80", + "value":"-6.99" + } + }, + { + "id":"894b6479-78b0-4bef-b892-6e8643b48ccd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T07:18:15.756Z", + "completed":"2016-12-29T07:18:15.756Z", + "new_balance":"12490.33", + "value":"-6.47" + } + }, + { + "id":"f18e5f8c-01dd-45c5-ba88-4e979ef5ad47", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T07:50:58.064Z", + "completed":"2016-12-29T07:50:58.064Z", + "new_balance":"12431.43", + "value":"-58.90" + } + }, + { + "id":"b4eeb6c2-ea46-447a-8d6e-971dc291e59a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T08:32:47.997Z", + "completed":"2016-12-29T08:32:47.997Z", + "new_balance":"12380.42", + "value":"-51.01" + } + }, + { + "id":"ce9d8471-dfdd-4c86-ab60-f1b791c3f9d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T12:50:28.255Z", + "completed":"2016-12-29T12:50:28.255Z", + "new_balance":"12346.51", + "value":"-33.91" + } + }, + { + "id":"a609b891-9060-4e10-85c5-8e6fc952ba1d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T14:31:19.483Z", + "completed":"2016-12-29T14:31:19.483Z", + "new_balance":"12273.00", + "value":"-73.51" + } + }, + { + "id":"b7d59f02-91a8-4aae-b859-63a68cdf4a02", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T14:48:15.882Z", + "completed":"2016-12-29T14:48:15.882Z", + "new_balance":"12236.05", + "value":"-36.95" + } + }, + { + "id":"97a725e9-7b29-43e3-9906-8946a5527bf4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T06:27:04.422Z", + "completed":"2016-12-30T06:27:04.422Z", + "new_balance":"12224.82", + "value":"-11.23" + } + }, + { + "id":"f823e871-4ede-4c60-9331-b845647016a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T11:17:47.547Z", + "completed":"2016-12-30T11:17:47.547Z", + "new_balance":"12179.31", + "value":"-45.51" + } + }, + { + "id":"3ab386aa-fecd-47c7-81ff-c3e7e26641be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T15:04:03.556Z", + "completed":"2016-12-30T15:04:03.556Z", + "new_balance":"12173.43", + "value":"-5.88" + } + }, + { + "id":"ecee2a01-8bbe-48d0-9853-24b5f68d3dfa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T16:44:33.570Z", + "completed":"2016-12-30T16:44:33.570Z", + "new_balance":"12144.57", + "value":"-28.86" + } + }, + { + "id":"a4492366-a504-454b-958d-89d21f076c14", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T05:52:41.178Z", + "completed":"2016-12-31T05:52:41.178Z", + "new_balance":"12117.60", + "value":"-26.97" + } + }, + { + "id":"63bd0cc5-8089-47b4-abcf-be4f8141c0ec", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T06:48:48.244Z", + "completed":"2016-12-31T06:48:48.244Z", + "new_balance":"12083.57", + "value":"-34.03" + } + }, + { + "id":"e4dedb5c-9bb0-490a-9e6c-45ee915b2b49", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T12:05:29.031Z", + "completed":"2016-12-31T12:05:29.031Z", + "new_balance":"11894.30", + "value":"-189.27" + } + }, + { + "id":"99894f49-3093-482e-8339-62e93ac78662", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T14:37:53.496Z", + "completed":"2016-12-31T14:37:53.496Z", + "new_balance":"11878.22", + "value":"-16.08" + } + }, + { + "id":"3f29b56d-0127-4093-b53f-f7ee2d0cdf31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:30:49.208Z", + "completed":"2017-01-01T07:30:49.208Z", + "new_balance":"11743.74", + "value":"-134.48" + } + }, + { + "id":"c8e014ff-0456-4c27-bcee-5d518c712600", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T08:52:13.865Z", + "completed":"2017-01-01T08:52:13.865Z", + "new_balance":"11709.31", + "value":"-34.43" + } + }, + { + "id":"204edbe0-0345-4d16-84f8-2900b71168e9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T12:25:54.282Z", + "completed":"2017-01-01T12:25:54.282Z", + "new_balance":"11198.77", + "value":"-510.54" + } + }, + { + "id":"3d907ee9-23f0-4d66-8895-b4efa939397c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T17:00:39.550Z", + "completed":"2017-01-01T17:00:39.550Z", + "new_balance":"11164.34", + "value":"-34.43" + } + }, + { + "id":"596511b4-da4d-402d-ab18-963cdabc3533", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T20:15:00.353Z", + "completed":"2017-01-01T20:15:00.353Z", + "new_balance":"11134.46", + "value":"-29.88" + } + }, + { + "id":"2debf391-7ebe-404c-9f5d-c72917d8b0f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T22:56:25.036Z", + "completed":"2017-01-01T22:56:25.036Z", + "new_balance":"11081.28", + "value":"-53.18" + } + }, + { + "id":"23fd0201-9c7a-4c88-bbaf-5f80c49d731a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T18:00:26.465Z", + "completed":"2017-01-02T18:00:26.465Z", + "new_balance":"10994.72", + "value":"-86.56" + } + }, + { + "id":"4be4dde4-d56b-43ff-b794-261e4623083f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T23:26:58.329Z", + "completed":"2017-01-02T23:26:58.329Z", + "new_balance":"10922.73", + "value":"-71.99" + } + }, + { + "id":"1d65dab0-f9ef-4d2a-956d-bb2f8c05747d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T05:21:01.132Z", + "completed":"2017-01-04T05:21:01.132Z", + "new_balance":"10885.54", + "value":"-37.19" + } + }, + { + "id":"2be9cc7d-4934-46ec-aba0-5c825a046171", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T09:47:47.822Z", + "completed":"2017-01-04T09:47:47.822Z", + "new_balance":"10850.76", + "value":"-34.78" + } + }, + { + "id":"f23721ec-367e-4d8c-b600-32a7c181d103", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T14:25:10.685Z", + "completed":"2017-01-07T14:25:10.685Z", + "new_balance":"10776.83", + "value":"-73.93" + } + }, + { + "id":"efbebdca-2e24-49ce-97df-e4cf18cbe218", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T23:04:17.080Z", + "completed":"2017-01-09T23:04:17.080Z", + "new_balance":"10773.24", + "value":"-3.59" + } + }, + { + "id":"e1261cff-ab84-4e57-8c01-115d7ddf45f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T00:57:22.908Z", + "completed":"2017-01-10T00:57:22.908Z", + "new_balance":"10745.79", + "value":"-27.45" + } + }, + { + "id":"9fff2b0f-87ea-4987-94a7-da6556fd96bf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T17:45:43.736Z", + "completed":"2017-01-12T17:45:43.736Z", + "new_balance":"10714.50", + "value":"-31.29" + } + }, + { + "id":"a0fe579b-54b8-4570-ade2-1e1a2bfb453c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T14:57:20.924Z", + "completed":"2017-01-15T14:57:20.924Z", + "new_balance":"10707.34", + "value":"-7.16" + } + }, + { + "id":"ed12d3cd-0d17-4690-82e0-662c2a75f134", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T20:48:49.483Z", + "completed":"2017-01-15T20:48:49.483Z", + "new_balance":"10692.52", + "value":"-14.82" + } + }, + { + "id":"7af5375e-06f9-408b-9943-0311e6cbd5c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T21:48:46.410Z", + "completed":"2017-01-17T21:48:46.410Z", + "new_balance":"10670.27", + "value":"-22.25" + } + }, + { + "id":"1e200f2f-a661-483e-95b4-32c66272512e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T18:51:55.237Z", + "completed":"2017-01-19T18:51:55.237Z", + "new_balance":"10481.00", + "value":"-189.27" + } + }, + { + "id":"d840ac04-772d-407d-9ffa-b61606b46a57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T04:53:53.765Z", + "completed":"2017-01-20T04:53:53.765Z", + "new_balance":"10474.29", + "value":"-6.71" + } + }, + { + "id":"97329058-4988-4e46-b9df-5f9250fc766d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T11:40:04.639Z", + "completed":"2017-01-22T11:40:04.639Z", + "new_balance":"10464.59", + "value":"-9.70" + } + }, + { + "id":"c9e5636b-cbc8-4271-bc77-95c585f3d615", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T16:54:52.503Z", + "completed":"2017-01-22T16:54:52.503Z", + "new_balance":"10419.35", + "value":"-45.24" + } + }, + { + "id":"3dfe317a-76f2-4238-97bd-bf9de860348e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T15:00:38.932Z", + "completed":"2017-01-24T15:00:38.932Z", + "new_balance":"10387.07", + "value":"-32.28" + } + }, + { + "id":"8b4356f1-aa74-4250-b6d2-c4101fccf282", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T08:54:19.684Z", + "completed":"2017-01-25T08:54:19.684Z", + "new_balance":"10344.55", + "value":"-42.52" + } + }, + { + "id":"5e517fdd-cbbe-40d2-a073-682d4caee11d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T15:15:47.062Z", + "completed":"2017-01-25T15:15:47.062Z", + "new_balance":"10337.84", + "value":"-6.71" + } + }, + { + "id":"60dfe4da-0667-44e1-b58a-99462a9e2a86", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T02:25:31.800Z", + "completed":"2017-01-26T02:25:31.800Z", + "new_balance":"10274.27", + "value":"-63.57" + } + }, + { + "id":"2132b30d-af6d-4957-9477-212d7a2c42ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T00:06:32.843Z", + "completed":"2017-02-01T00:06:32.843Z", + "new_balance":"10221.09", + "value":"-53.18" + } + }, + { + "id":"949385bb-18f5-4bb2-979e-30b061caedf8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T00:48:37.481Z", + "completed":"2017-02-01T00:48:37.481Z", + "new_balance":"10086.61", + "value":"-134.48" + } + }, + { + "id":"e634a518-8f03-4cfc-bca9-912a8addfd76", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T07:51:08.834Z", + "completed":"2017-02-01T07:51:08.834Z", + "new_balance":"9576.07", + "value":"-510.54" + } + }, + { + "id":"10975022-bc7b-42d8-8206-6016ea20a793", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:49:52.742Z", + "completed":"2017-02-01T15:49:52.742Z", + "new_balance":"11256.48", + "value":"1680.41" + } + }, + { + "id":"90bbc675-43fd-4ede-9581-ef15fb196e88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T16:26:29.401Z", + "completed":"2017-02-01T16:26:29.401Z", + "new_balance":"11222.05", + "value":"-34.43" + } + }, + { + "id":"fcc66661-a376-4363-8822-99894b705f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T17:38:50.540Z", + "completed":"2017-02-01T17:38:50.540Z", + "new_balance":"11192.17", + "value":"-29.88" + } + }, + { + "id":"bdbba1ed-9a0a-45cc-8b94-a89b3e87cb8c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T00:41:14.250Z", + "completed":"2017-02-02T00:41:14.250Z", + "new_balance":"11177.53", + "value":"-14.64" + } + }, + { + "id":"f8d494bb-8f05-4a45-b75c-e1a564c52c29", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T06:49:49.356Z", + "completed":"2017-02-02T06:49:49.356Z", + "new_balance":"11090.97", + "value":"-86.56" + } + }, + { + "id":"3dd12f32-534c-410a-8b25-3454bb85a813", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T19:47:32.572Z", + "completed":"2017-02-02T19:47:32.572Z", + "new_balance":"11075.04", + "value":"-15.93" + } + }, + { + "id":"f9d8bf9d-fdf5-42eb-9026-d7350b9e47da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T06:47:35.027Z", + "completed":"2017-02-03T06:47:35.027Z", + "new_balance":"11049.24", + "value":"-25.80" + } + }, + { + "id":"bb10f85a-c3d2-485c-8d92-02327cafe50c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T07:22:20.422Z", + "completed":"2017-02-03T07:22:20.422Z", + "new_balance":"11025.87", + "value":"-23.37" + } + }, + { + "id":"60d9e0e4-f806-43e5-b733-8a0f18519bb0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T13:41:41.224Z", + "completed":"2017-02-03T13:41:41.224Z", + "new_balance":"10997.86", + "value":"-28.01" + } + }, + { + "id":"900972ed-ab35-46b1-8d3b-095c4cf1b6ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T10:59:33.877Z", + "completed":"2017-02-06T10:59:33.877Z", + "new_balance":"10923.93", + "value":"-73.93" + } + }, + { + "id":"99c6a053-50e7-427d-9af2-ddd1a43b5f06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T09:30:14.659Z", + "completed":"2017-02-08T09:30:14.659Z", + "new_balance":"10902.83", + "value":"-21.10" + } + }, + { + "id":"d1900361-9129-4715-919c-e4ce43b55dde", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T10:15:54.985Z", + "completed":"2017-02-08T10:15:54.985Z", + "new_balance":"10874.98", + "value":"-27.85" + } + }, + { + "id":"2246288e-158e-48ab-bf32-408b4c04a238", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T12:30:54.282Z", + "completed":"2017-02-08T12:30:54.282Z", + "new_balance":"10870.89", + "value":"-4.09" + } + }, + { + "id":"aea02957-dcd7-4dca-a8e9-e1c15bef79d4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T08:46:16.121Z", + "completed":"2017-02-09T08:46:16.121Z", + "new_balance":"10825.72", + "value":"-45.17" + } + }, + { + "id":"d23f9053-b41e-40e6-90bb-3f92cc5de3d6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T13:00:25.594Z", + "completed":"2017-02-09T13:00:25.594Z", + "new_balance":"10777.02", + "value":"-48.70" + } + }, + { + "id":"c0913f2e-b9ae-465b-85df-86e28d626860", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T01:59:23.954Z", + "completed":"2017-02-12T01:59:23.954Z", + "new_balance":"10771.25", + "value":"-5.77" + } + }, + { + "id":"0ca7f8cf-4010-4010-9d9b-ec8f357cba16", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T05:51:28.207Z", + "completed":"2017-02-13T05:51:28.207Z", + "new_balance":"10810.26", + "value":"39.01" + } + }, + { + "id":"cbf540a3-8c75-4ff2-a02a-43948aebcd48", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T08:03:20.228Z", + "completed":"2017-02-13T08:03:20.228Z", + "new_balance":"10801.74", + "value":"-8.52" + } + }, + { + "id":"7c1fe6e7-4f0a-4577-9dd0-7e4c3099b8ce", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T13:03:36.728Z", + "completed":"2017-02-13T13:03:36.728Z", + "new_balance":"10757.95", + "value":"-43.79" + } + }, + { + "id":"4314980c-ffb3-4f6c-9474-fc53db7a0ad7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:12:31.853Z", + "completed":"2017-02-14T20:12:31.853Z", + "new_balance":"10712.32", + "value":"-45.63" + } + }, + { + "id":"81d57ca5-12e3-42f5-9996-7b5a92b06963", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T21:42:58.690Z", + "completed":"2017-02-15T21:42:58.690Z", + "new_balance":"10686.76", + "value":"-25.56" + } + }, + { + "id":"68dfa9ed-6eea-41a8-8bbd-e76285106c60", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T19:01:20.360Z", + "completed":"2017-02-28T19:01:20.360Z", + "new_balance":"10653.23", + "value":"-33.53" + } + }, + { + "id":"ac36c5e8-7d61-4558-84e8-8923fd654726", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T03:16:06.922Z", + "completed":"2017-03-01T03:16:06.922Z", + "new_balance":"12333.64", + "value":"1680.41" + } + }, + { + "id":"17bffeb2-2d33-4372-95e5-8bd7ea26f2a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T07:09:23.398Z", + "completed":"2017-03-01T07:09:23.398Z", + "new_balance":"11823.10", + "value":"-510.54" + } + }, + { + "id":"6c79d676-211c-46c6-869d-469e08baa3cb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T08:43:55.179Z", + "completed":"2017-03-01T08:43:55.179Z", + "new_balance":"11793.22", + "value":"-29.88" + } + }, + { + "id":"5f88fc62-68c8-4592-934e-885dc18aca92", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T09:57:33.708Z", + "completed":"2017-03-01T09:57:33.708Z", + "new_balance":"11758.79", + "value":"-34.43" + } + }, + { + "id":"bc5ebccd-96f6-46bb-bc62-6761a650cb17", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T14:12:37.011Z", + "completed":"2017-03-01T14:12:37.011Z", + "new_balance":"11624.31", + "value":"-134.48" + } + }, + { + "id":"c3186198-17da-404b-9f8e-231877fc1fa7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T21:47:25.218Z", + "completed":"2017-03-01T21:47:25.218Z", + "new_balance":"11571.13", + "value":"-53.18" + } + }, + { + "id":"45712871-1824-4167-9e54-dc0e0e429dd4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T00:21:28.513Z", + "completed":"2017-03-02T00:21:28.513Z", + "new_balance":"11484.57", + "value":"-86.56" + } + }, + { + "id":"372c985b-5f50-43a3-9a17-9554c1bdc9f3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T11:46:09.651Z", + "completed":"2017-03-04T11:46:09.651Z", + "new_balance":"11474.04", + "value":"-10.53" + } + }, + { + "id":"6097036b-9f38-4d50-bda2-08a1d063be78", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T12:04:02.322Z", + "completed":"2017-03-04T12:04:02.322Z", + "new_balance":"11467.57", + "value":"-6.47" + } + }, + { + "id":"c4125bf5-05a8-457a-a88d-604000f424a3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T14:28:24.074Z", + "completed":"2017-03-04T14:28:24.074Z", + "new_balance":"11436.76", + "value":"-30.81" + } + }, + { + "id":"4a3cef11-df33-40bf-971c-fde87890a5f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:46:20.871Z", + "completed":"2017-03-04T23:46:20.871Z", + "new_balance":"11355.55", + "value":"-81.21" + } + }, + { + "id":"a09ad146-53d1-470e-8c97-7c8ab60a9058", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T09:33:58.655Z", + "completed":"2017-03-05T09:33:58.655Z", + "new_balance":"11350.78", + "value":"-4.77" + } + }, + { + "id":"20c4e9b3-722a-401e-afd9-714713d14d4b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T17:44:53.094Z", + "completed":"2017-03-05T17:44:53.094Z", + "new_balance":"11309.55", + "value":"-41.23" + } + }, + { + "id":"700c7d30-46a0-4383-8d42-a153a0b8a0a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T06:27:56.400Z", + "completed":"2017-03-06T06:27:56.400Z", + "new_balance":"11228.34", + "value":"-81.21" + } + }, + { + "id":"d104a4ca-50d7-44db-bb38-2455546c8d2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T21:34:55.154Z", + "completed":"2017-03-06T21:34:55.154Z", + "new_balance":"11144.54", + "value":"-83.80" + } + }, + { + "id":"a1028417-70aa-40ad-a9be-8051661c55d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T18:46:45.113Z", + "completed":"2017-03-07T18:46:45.113Z", + "new_balance":"11102.20", + "value":"-42.34" + } + }, + { + "id":"130c5a4e-d7fb-4959-8181-27f829a9a521", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:17:00.724Z", + "completed":"2017-03-08T16:17:00.724Z", + "new_balance":"11018.40", + "value":"-83.80" + } + }, + { + "id":"3eba6b65-06d5-40b1-be48-7f13baf6064e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T14:41:06.548Z", + "completed":"2017-03-09T14:41:06.548Z", + "new_balance":"11014.82", + "value":"-3.58" + } + }, + { + "id":"4368820b-8259-4a30-9aa1-6c83c632f322", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T11:36:57.820Z", + "completed":"2017-03-10T11:36:57.820Z", + "new_balance":"10923.35", + "value":"-91.47" + } + }, + { + "id":"23f0ba78-5065-4b0c-a1cd-862630f6014d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:39:59.610Z", + "completed":"2017-03-11T07:39:59.610Z", + "new_balance":"10916.07", + "value":"-7.28" + } + }, + { + "id":"33ff6abc-e2bb-492b-b171-da2cf1da7b5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T04:15:20.841Z", + "completed":"2017-03-12T04:15:20.841Z", + "new_balance":"10888.77", + "value":"-27.30" + } + }, + { + "id":"f92a6c92-f535-4ff1-bc2d-5d9555a6531b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T13:09:29.699Z", + "completed":"2017-03-12T13:09:29.699Z", + "new_balance":"10875.53", + "value":"-13.24" + } + }, + { + "id":"ae019736-5ed1-4526-b66d-73645fd64d7b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T00:02:06.201Z", + "completed":"2017-03-13T00:02:06.201Z", + "new_balance":"10829.52", + "value":"-46.01" + } + }, + { + "id":"128badd7-486f-4c2a-b612-6e228ae80888", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T06:20:34.749Z", + "completed":"2017-03-14T06:20:34.749Z", + "new_balance":"10822.53", + "value":"-6.99" + } + }, + { + "id":"20d61603-fcb6-4923-9866-7c3c186c118b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T15:49:54.470Z", + "completed":"2017-03-16T15:49:54.470Z", + "new_balance":"10741.12", + "value":"-81.41" + } + }, + { + "id":"85885aaa-b31f-4b68-bac9-db99f2980707", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T23:42:04.753Z", + "completed":"2017-03-16T23:42:04.753Z", + "new_balance":"10694.32", + "value":"-46.80" + } + }, + { + "id":"8062773b-b698-421b-831b-76bccb2003d0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T15:34:29.719Z", + "completed":"2017-03-18T15:34:29.719Z", + "new_balance":"10687.33", + "value":"-6.99" + } + }, + { + "id":"fee6d1eb-d67e-47ef-aecb-517f0862de92", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T01:37:12.275Z", + "completed":"2017-03-19T01:37:12.275Z", + "new_balance":"10653.42", + "value":"-33.91" + } + }, + { + "id":"9a4e11cf-047f-40c0-9858-ad6da8780cd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T18:43:41.773Z", + "completed":"2017-03-19T18:43:41.773Z", + "new_balance":"10616.47", + "value":"-36.95" + } + }, + { + "id":"845cf52f-e234-4d42-8739-c28eeefa59e6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T22:16:46.452Z", + "completed":"2017-03-19T22:16:46.452Z", + "new_balance":"10565.46", + "value":"-51.01" + } + }, + { + "id":"4b5507f9-0549-47ab-9d0a-cbfc647ddcd9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T07:53:27.423Z", + "completed":"2017-03-20T07:53:27.423Z", + "new_balance":"10506.56", + "value":"-58.90" + } + }, + { + "id":"0cf174e7-9f3c-4132-8383-7eedc566c27a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T23:33:16.754Z", + "completed":"2017-03-20T23:33:16.754Z", + "new_balance":"10433.05", + "value":"-73.51" + } + }, + { + "id":"dfa3e82e-6d65-49b3-b2b0-709de31f19c6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T19:59:16.060Z", + "completed":"2017-03-21T19:59:16.060Z", + "new_balance":"10427.17", + "value":"-5.88" + } + }, + { + "id":"171d68cd-37fb-4260-9ec7-cb99051276da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T20:07:45.689Z", + "completed":"2017-03-21T20:07:45.689Z", + "new_balance":"10420.70", + "value":"-6.47" + } + }, + { + "id":"293484db-bf56-47c1-ad34-45f4736dac28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T02:28:48.865Z", + "completed":"2017-03-23T02:28:48.865Z", + "new_balance":"10375.19", + "value":"-45.51" + } + }, + { + "id":"35c50bf5-3e1f-422e-8284-42b756fea02a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T11:39:13.439Z", + "completed":"2017-03-23T11:39:13.439Z", + "new_balance":"10363.96", + "value":"-11.23" + } + }, + { + "id":"cb1e3c61-c35d-4553-b273-7d0fef0eaf84", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T03:29:53.953Z", + "completed":"2017-03-24T03:29:53.953Z", + "new_balance":"10335.10", + "value":"-28.86" + } + }, + { + "id":"b029bb07-1789-4dfd-97cf-4cfd634dfc2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T18:15:09.249Z", + "completed":"2017-03-25T18:15:09.249Z", + "new_balance":"10319.02", + "value":"-16.08" + } + }, + { + "id":"9ed87442-0be9-4ee6-b97e-39dcdc74cc9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T22:43:03.565Z", + "completed":"2017-03-25T22:43:03.565Z", + "new_balance":"10284.99", + "value":"-34.03" + } + }, + { + "id":"07e9e0ee-d9c1-405f-82cc-2f8fb35d433f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T21:06:51.420Z", + "completed":"2017-03-27T21:06:51.420Z", + "new_balance":"10095.72", + "value":"-189.27" + } + }, + { + "id":"15ceb860-331f-43fb-b8bf-f69799a7dabc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T14:33:11.635Z", + "completed":"2017-03-28T14:33:11.635Z", + "new_balance":"10068.75", + "value":"-26.97" + } + }, + { + "id":"7c706d7a-cec3-493f-88e8-0da8aaa99966", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T00:42:04.816Z", + "completed":"2017-04-01T00:42:04.816Z", + "new_balance":"10038.87", + "value":"-29.88" + } + }, + { + "id":"c48885c6-4ff6-4927-8f90-2a80fa6de367", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T04:27:54.929Z", + "completed":"2017-04-01T04:27:54.929Z", + "new_balance":"9985.69", + "value":"-53.18" + } + }, + { + "id":"ac31c94a-99a3-4668-8b43-576a332d960b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T10:29:15.273Z", + "completed":"2017-04-01T10:29:15.273Z", + "new_balance":"9475.15", + "value":"-510.54" + } + }, + { + "id":"2161904d-3ef3-41d1-b8fa-f2e5f8b308c9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:04:46.040Z", + "completed":"2017-04-01T22:04:46.040Z", + "new_balance":"9340.67", + "value":"-134.48" + } + }, + { + "id":"ecf77c99-8df6-4190-bbc9-0243a5a89315", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T14:48:15.371Z", + "completed":"2017-04-02T14:48:15.371Z", + "new_balance":"9254.11", + "value":"-86.56" + } + }, + { + "id":"d9f088c7-172a-4f88-8345-c49cc0410720", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T23:40:34.922Z", + "completed":"2017-04-02T23:40:34.922Z", + "new_balance":"9182.12", + "value":"-71.99" + } + }, + { + "id":"d3bcd779-5488-4113-97a6-00a7141f0e12", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T13:02:13.433Z", + "completed":"2017-04-03T13:02:13.433Z", + "new_balance":"9304.32", + "value":"122.20" + } + }, + { + "id":"3b1a76e0-1a51-473e-8770-35bc00483554", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:07:55.613Z", + "completed":"2017-04-03T14:07:55.613Z", + "new_balance":"9267.13", + "value":"-37.19" + } + }, + { + "id":"b7e214e2-9858-4f3a-9da9-e133acac276a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T16:54:54.472Z", + "completed":"2017-04-03T16:54:54.472Z", + "new_balance":"9232.35", + "value":"-34.78" + } + }, + { + "id":"04605bf7-5279-4cc9-b466-6ce6e8a9e45d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:24:14.884Z", + "completed":"2017-04-03T20:24:14.884Z", + "new_balance":"9195.16", + "value":"-37.19" + } + }, + { + "id":"f19043c6-5d2e-4160-8303-e93082ed1dac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:59:24.697Z", + "completed":"2017-04-03T21:59:24.697Z", + "new_balance":"9267.99", + "value":"72.83" + } + }, + { + "id":"e1d14eaa-f81f-4c90-abf7-840a4b7b653f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T05:19:27.577Z", + "completed":"2017-04-04T05:19:27.577Z", + "new_balance":"9194.06", + "value":"-73.93" + } + }, + { + "id":"db8f2c9c-c72e-40db-a1ba-38b49ccaecc7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T09:06:55.270Z", + "completed":"2017-04-05T09:06:55.270Z", + "new_balance":"9166.61", + "value":"-27.45" + } + }, + { + "id":"873a1d15-ac71-400b-8236-8ea35cb7c2d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T18:03:25.341Z", + "completed":"2017-04-05T18:03:25.341Z", + "new_balance":"9163.02", + "value":"-3.59" + } + }, + { + "id":"54e5e138-beef-4b59-907c-c9a38459ef38", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T01:35:27.456Z", + "completed":"2017-04-07T01:35:27.456Z", + "new_balance":"9148.20", + "value":"-14.82" + } + }, + { + "id":"21446cdd-a53f-4a6f-baa4-f779b4ef2fd6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T12:17:21.997Z", + "completed":"2017-04-07T12:17:21.997Z", + "new_balance":"9116.91", + "value":"-31.29" + } + }, + { + "id":"57443574-e8dd-4620-8b06-3360ae9f18ac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T06:38:32.606Z", + "completed":"2017-04-08T06:38:32.606Z", + "new_balance":"9109.75", + "value":"-7.16" + } + }, + { + "id":"19e2f9e3-d53b-4eec-9bb8-886a3bd225b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T10:46:32.025Z", + "completed":"2017-04-09T10:46:32.025Z", + "new_balance":"8920.48", + "value":"-189.27" + } + }, + { + "id":"2531f11e-696d-4727-aba8-829c593bee0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T21:34:31.901Z", + "completed":"2017-04-09T21:34:31.901Z", + "new_balance":"8898.23", + "value":"-22.25" + } + }, + { + "id":"82eb1014-98b0-4f5d-acb4-f25990d05736", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T21:53:53.476Z", + "completed":"2017-04-09T21:53:53.476Z", + "new_balance":"8891.52", + "value":"-6.71" + } + }, + { + "id":"b95fd0f3-5141-4379-b954-3e8481bb5580", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T22:38:30.826Z", + "completed":"2017-04-10T22:38:30.826Z", + "new_balance":"8846.28", + "value":"-45.24" + } + }, + { + "id":"8c003c7c-a192-45e4-9868-81f9aedcc75c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T15:26:54.805Z", + "completed":"2017-04-17T15:26:54.805Z", + "new_balance":"8836.58", + "value":"-9.70" + } + }, + { + "id":"9ddaeb20-5052-4cef-98e5-b0a28a75e0f0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T22:56:08.354Z", + "completed":"2017-04-18T22:56:08.354Z", + "new_balance":"8804.30", + "value":"-32.28" + } + }, + { + "id":"3a6823eb-f9f2-4773-af4c-3b64f25dc313", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T14:40:22.510Z", + "completed":"2017-04-25T14:40:22.510Z", + "new_balance":"8761.78", + "value":"-42.52" + } + }, + { + "id":"36f8b9f8-bde1-4bf5-ad7d-d85b53ffa2b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T19:25:04.942Z", + "completed":"2017-04-26T19:25:04.942Z", + "new_balance":"8698.21", + "value":"-63.57" + } + }, + { + "id":"3c8430e2-6964-4393-aae4-18154b22f92f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T21:45:12.558Z", + "completed":"2017-04-26T21:45:12.558Z", + "new_balance":"8691.50", + "value":"-6.71" + } + }, + { + "id":"7617365e-e730-450a-8314-80c0cab4d3a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T01:59:28.589Z", + "completed":"2017-05-02T01:59:28.589Z", + "new_balance":"8675.57", + "value":"-15.93" + } + }, + { + "id":"29b2f02d-9723-4a36-abe3-c8400e5ddb8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T04:13:06.049Z", + "completed":"2017-05-02T04:13:06.049Z", + "new_balance":"10355.98", + "value":"1680.41" + } + }, + { + "id":"58db172e-2cfc-42d9-b8d8-ece2a3a47d01", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T05:03:23.201Z", + "completed":"2017-05-02T05:03:23.201Z", + "new_balance":"10221.50", + "value":"-134.48" + } + }, + { + "id":"f0d8c86a-520a-4aa5-ad5d-f6995aa1811c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T06:17:32.180Z", + "completed":"2017-05-02T06:17:32.180Z", + "new_balance":"10191.62", + "value":"-29.88" + } + }, + { + "id":"1ef13065-1cd5-4fbe-9f56-b791f0adc995", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T14:23:32.873Z", + "completed":"2017-05-02T14:23:32.873Z", + "new_balance":"10105.06", + "value":"-86.56" + } + }, + { + "id":"dc32d334-532b-4746-8fae-037ea1db77a4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T20:04:30.126Z", + "completed":"2017-05-02T20:04:30.126Z", + "new_balance":"10070.63", + "value":"-34.43" + } + }, + { + "id":"f91c01e1-c0bd-494a-a7b2-2906e543f0b1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T20:33:42.520Z", + "completed":"2017-05-02T20:33:42.520Z", + "new_balance":"10017.45", + "value":"-53.18" + } + }, + { + "id":"839390d6-0471-4d50-b317-fdeb65c4ebda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T21:24:47.515Z", + "completed":"2017-05-02T21:24:47.515Z", + "new_balance":"9506.91", + "value":"-510.54" + } + }, + { + "id":"16360eb4-ac67-4c29-ad1f-47b5cb239ec0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T04:45:16.944Z", + "completed":"2017-05-03T04:45:16.944Z", + "new_balance":"9483.54", + "value":"-23.37" + } + }, + { + "id":"33902eb4-8e9e-4954-a1ed-37c8ad2e7a5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T16:45:22.799Z", + "completed":"2017-05-03T16:45:22.799Z", + "new_balance":"9468.90", + "value":"-14.64" + } + }, + { + "id":"af08c110-927a-4ddf-9a95-26e888c04dac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T05:08:25.270Z", + "completed":"2017-05-04T05:08:25.270Z", + "new_balance":"9440.89", + "value":"-28.01" + } + }, + { + "id":"ffbe0c35-090d-462b-ac34-c9ff32d6a253", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T23:27:21.573Z", + "completed":"2017-05-04T23:27:21.573Z", + "new_balance":"9415.09", + "value":"-25.80" + } + }, + { + "id":"aae1fa03-a651-4c8a-978f-9dbdeee41d11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T19:26:21.410Z", + "completed":"2017-05-05T19:26:21.410Z", + "new_balance":"9341.16", + "value":"-73.93" + } + }, + { + "id":"b552890b-f061-4f90-9b9a-bf81f8e9dc61", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T08:52:39.482Z", + "completed":"2017-05-07T08:52:39.482Z", + "new_balance":"9337.07", + "value":"-4.09" + } + }, + { + "id":"54771d0a-5679-4a93-a49e-f147cd883ef3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:35:44.822Z", + "completed":"2017-05-07T14:35:44.822Z", + "new_balance":"9309.22", + "value":"-27.85" + } + }, + { + "id":"99e43a98-5c7f-41a4-a174-19557399229c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T04:20:39.687Z", + "completed":"2017-05-12T04:20:39.687Z", + "new_balance":"9260.52", + "value":"-48.70" + } + }, + { + "id":"d2eb9317-3999-413f-b2d0-3428969b8dda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T07:38:23.369Z", + "completed":"2017-05-12T07:38:23.369Z", + "new_balance":"9239.42", + "value":"-21.10" + } + }, + { + "id":"56a010b5-e961-471e-b270-c85b94060346", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T14:46:45.956Z", + "completed":"2017-05-14T14:46:45.956Z", + "new_balance":"9194.25", + "value":"-45.17" + } + }, + { + "id":"a9dee0c9-248b-43d3-9164-e2dcc5ed84f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T03:56:00.009Z", + "completed":"2017-05-16T03:56:00.009Z", + "new_balance":"9188.48", + "value":"-5.77" + } + }, + { + "id":"2db3529d-608d-4f70-86dd-bacaafbbac0a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T05:48:52.242Z", + "completed":"2017-05-18T05:48:52.242Z", + "new_balance":"9179.96", + "value":"-8.52" + } + }, + { + "id":"fe651c62-e3b8-4633-b3e3-e1d8d73c69cf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T19:26:05.882Z", + "completed":"2017-05-20T19:26:05.882Z", + "new_balance":"9218.97", + "value":"39.01" + } + }, + { + "id":"6885e120-1ff2-405a-8f5a-8dadde5945be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T19:22:46.913Z", + "completed":"2017-05-21T19:22:46.913Z", + "new_balance":"9173.34", + "value":"-45.63" + } + }, + { + "id":"03ebe9d2-b12b-47ba-a82e-37c28283eeaf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T22:09:55.966Z", + "completed":"2017-05-21T22:09:55.966Z", + "new_balance":"9129.55", + "value":"-43.79" + } + }, + { + "id":"9e77d84e-b5ad-4091-a41c-d97abe2f9b5e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T07:47:10.885Z", + "completed":"2017-05-27T07:47:10.885Z", + "new_balance":"9096.02", + "value":"-33.53" + } + }, + { + "id":"c16c0049-b698-40e4-b817-1e28a2e7e71f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T16:32:16.508Z", + "completed":"2017-05-27T16:32:16.508Z", + "new_balance":"9070.46", + "value":"-25.56" + } + }, + { + "id":"1c233248-d130-4509-80f9-cc032aa0801f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T02:40:58.909Z", + "completed":"2017-06-01T02:40:58.909Z", + "new_balance":"9040.58", + "value":"-29.88" + } + }, + { + "id":"0ce2d47b-8a03-4826-962c-e62de63c2024", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T13:15:51.402Z", + "completed":"2017-06-01T13:15:51.402Z", + "new_balance":"10720.99", + "value":"1680.41" + } + }, + { + "id":"cd056b5c-d666-4afd-b334-3775e1c36a5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T13:46:37.867Z", + "completed":"2017-06-01T13:46:37.867Z", + "new_balance":"10210.45", + "value":"-510.54" + } + }, + { + "id":"6754d8ae-84ac-4ab9-ae4b-6a67cc14a601", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T15:31:46.556Z", + "completed":"2017-06-01T15:31:46.556Z", + "new_balance":"10157.27", + "value":"-53.18" + } + }, + { + "id":"90b0e7af-9168-4b15-8f43-dcf8f9b4f01d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T16:57:56.685Z", + "completed":"2017-06-01T16:57:56.685Z", + "new_balance":"10122.84", + "value":"-34.43" + } + }, + { + "id":"8387552d-c117-474a-8352-71d3ddcc50e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T23:27:07.283Z", + "completed":"2017-06-01T23:27:07.283Z", + "new_balance":"9988.36", + "value":"-134.48" + } + }, + { + "id":"13a83ff8-19d3-4f58-b901-c7886f73757c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:34:50.844Z", + "completed":"2017-06-04T07:34:50.844Z", + "new_balance":"9856.52", + "value":"-131.84" + } + }, + { + "id":"9bb04459-86e9-4b87-ad4f-bde70fae921b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T16:29:53.275Z", + "completed":"2017-06-04T16:29:53.275Z", + "new_balance":"9769.96", + "value":"-86.56" + } + }, + { + "id":"03b4e552-acba-432b-b3c4-a39d8784f543", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T03:40:30.711Z", + "completed":"2017-06-11T03:40:30.711Z", + "new_balance":"9739.15", + "value":"-30.81" + } + }, + { + "id":"228dda84-d7c8-41b2-8263-b2b7a1b86911", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T08:48:45.322Z", + "completed":"2017-06-12T08:48:45.322Z", + "new_balance":"9728.62", + "value":"-10.53" + } + }, + { + "id":"5e7dbe90-31a1-4ea0-9eca-1f52790ad9a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T11:34:29.603Z", + "completed":"2017-06-13T11:34:29.603Z", + "new_balance":"9647.41", + "value":"-81.21" + } + }, + { + "id":"64f2cbdd-e26d-4fe4-859c-dddcb680d6cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T15:51:41.863Z", + "completed":"2017-06-13T15:51:41.863Z", + "new_balance":"9640.94", + "value":"-6.47" + } + }, + { + "id":"c6ff00cb-e4cb-4e05-a347-c391d3f4d247", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T05:53:52.409Z", + "completed":"2017-06-16T05:53:52.409Z", + "new_balance":"9599.71", + "value":"-41.23" + } + }, + { + "id":"ce6cd94d-e235-41d5-b716-6f1eb8abefd0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T00:55:32.882Z", + "completed":"2017-06-17T00:55:32.882Z", + "new_balance":"9594.94", + "value":"-4.77" + } + }, + { + "id":"10bb1048-1c07-45b1-8ce8-a43059a17691", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T02:55:05.487Z", + "completed":"2017-06-17T02:55:05.487Z", + "new_balance":"9513.73", + "value":"-81.21" + } + }, + { + "id":"c04a5b7b-0229-465e-9e86-eb466e50fbef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T03:26:26.571Z", + "completed":"2017-06-18T03:26:26.571Z", + "new_balance":"9429.93", + "value":"-83.80" + } + }, + { + "id":"47e614be-d462-4d10-848f-47efc0e6d8e7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:44:38.907Z", + "completed":"2017-06-19T12:44:38.907Z", + "new_balance":"9387.59", + "value":"-42.34" + } + }, + { + "id":"821eb513-fa8b-41c1-b3d2-a9884aabe994", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:57:33.198Z", + "completed":"2017-06-19T21:57:33.198Z", + "new_balance":"9303.79", + "value":"-83.80" + } + }, + { + "id":"68464139-6460-4f9e-b423-f76f493067d1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T13:21:03.805Z", + "completed":"2017-06-21T13:21:03.805Z", + "new_balance":"9212.32", + "value":"-91.47" + } + }, + { + "id":"b3a12634-6268-49b1-b436-3c7a03efac88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T18:12:50.740Z", + "completed":"2017-06-21T18:12:50.740Z", + "new_balance":"9208.74", + "value":"-3.58" + } + }, + { + "id":"58234b19-29df-4956-9762-ffd11d92f087", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T04:53:15.560Z", + "completed":"2017-06-23T04:53:15.560Z", + "new_balance":"9201.46", + "value":"-7.28" + } + }, + { + "id":"582ae48b-02ce-4f23-bdd7-1d3684907584", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T08:01:29.029Z", + "completed":"2017-06-23T08:01:29.029Z", + "new_balance":"9174.16", + "value":"-27.30" + } + }, + { + "id":"4892e5a8-9106-4d9d-be51-e2eebc8c5078", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T02:11:50.320Z", + "completed":"2017-06-24T02:11:50.320Z", + "new_balance":"9128.15", + "value":"-46.01" + } + }, + { + "id":"9dda5b31-b853-49c8-a1e0-675d1b8af7d9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T06:38:59.655Z", + "completed":"2017-06-24T06:38:59.655Z", + "new_balance":"9114.91", + "value":"-13.24" + } + }, + { + "id":"3dbca6e5-a20a-487a-a139-227f3dced914", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T19:25:38.901Z", + "completed":"2017-06-28T19:25:38.901Z", + "new_balance":"9033.50", + "value":"-81.41" + } + }, + { + "id":"99a8d90e-4e29-40b0-b5a0-7c9af4cf85d4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T21:00:31.429Z", + "completed":"2017-06-28T21:00:31.429Z", + "new_balance":"9026.51", + "value":"-6.99" + } + }, + { + "id":"75de73bf-4f99-4e0e-93f0-15c8c7a42310", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T22:01:04.752Z", + "completed":"2017-06-28T22:01:04.752Z", + "new_balance":"9019.52", + "value":"-6.99" + } + }, + { + "id":"d97487ef-01a2-4a43-92e3-78c3f4e76656", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T22:52:38.242Z", + "completed":"2017-06-28T22:52:38.242Z", + "new_balance":"8972.72", + "value":"-46.80" + } + }, + { + "id":"78d44b11-914a-421d-b5da-b3ad5b3f8888", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T02:58:19.569Z", + "completed":"2017-06-29T02:58:19.569Z", + "new_balance":"8913.82", + "value":"-58.90" + } + }, + { + "id":"8ae69503-a8e6-4746-b85d-4df82058c4ff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T06:32:42.036Z", + "completed":"2017-06-29T06:32:42.036Z", + "new_balance":"8907.35", + "value":"-6.47" + } + }, + { + "id":"8a5b1e5d-22df-413c-8d33-30e1661f156c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T10:42:22.915Z", + "completed":"2017-06-29T10:42:22.915Z", + "new_balance":"8856.34", + "value":"-51.01" + } + }, + { + "id":"9b738aa2-189c-4e65-96da-e23a7dc4c933", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T12:43:12.649Z", + "completed":"2017-06-29T12:43:12.649Z", + "new_balance":"8819.39", + "value":"-36.95" + } + }, + { + "id":"bc45543d-6844-4332-b0b0-c13e0809de9e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T15:20:11.467Z", + "completed":"2017-06-29T15:20:11.467Z", + "new_balance":"8745.88", + "value":"-73.51" + } + }, + { + "id":"5d1d8744-7201-45b3-8735-53a0567cab0b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:24:25.311Z", + "completed":"2017-06-29T21:24:25.311Z", + "new_balance":"8711.97", + "value":"-33.91" + } + }, + { + "id":"b7540273-ed2b-46cb-a34b-2691d21a44be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T01:37:12.462Z", + "completed":"2017-06-30T01:37:12.462Z", + "new_balance":"8700.74", + "value":"-11.23" + } + }, + { + "id":"f52e2d8b-f5e1-4b08-b427-21de6a2f902c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T01:52:16.930Z", + "completed":"2017-06-30T01:52:16.930Z", + "new_balance":"8694.86", + "value":"-5.88" + } + }, + { + "id":"bcab1f4c-cd96-4eb9-bb6a-80ae019449c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T08:27:35.742Z", + "completed":"2017-06-30T08:27:35.742Z", + "new_balance":"8666.00", + "value":"-28.86" + } + }, + { + "id":"283ff256-eeb0-41fa-aa29-33e702e97ed4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T09:42:53.275Z", + "completed":"2017-06-30T09:42:53.275Z", + "new_balance":"8620.49", + "value":"-45.51" + } + }, + { + "id":"d38ab0d6-b8a4-4a03-a25c-bac70203f4e6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T00:24:56.996Z", + "completed":"2017-07-01T00:24:56.996Z", + "new_balance":"8593.52", + "value":"-26.97" + } + }, + { + "id":"ab166875-c16e-4839-8bd9-02971aa06508", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T02:54:33.808Z", + "completed":"2017-07-01T02:54:33.808Z", + "new_balance":"8563.64", + "value":"-29.88" + } + }, + { + "id":"aaf8cc5c-4385-41c0-88ca-633e8e51534d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T04:39:46.951Z", + "completed":"2017-07-01T04:39:46.951Z", + "new_balance":"8510.46", + "value":"-53.18" + } + }, + { + "id":"db840eec-afa2-4329-b192-ea0c33cb1384", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T12:20:34.399Z", + "completed":"2017-07-01T12:20:34.399Z", + "new_balance":"7999.92", + "value":"-510.54" + } + }, + { + "id":"94563891-db46-42f0-b159-52a82d5a7fef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T13:11:26.427Z", + "completed":"2017-07-01T13:11:26.427Z", + "new_balance":"7983.84", + "value":"-16.08" + } + }, + { + "id":"088a8412-d3a1-4964-bf70-d3c4216f5951", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T13:29:13.150Z", + "completed":"2017-07-01T13:29:13.150Z", + "new_balance":"7849.36", + "value":"-134.48" + } + }, + { + "id":"a54e875d-76f4-4b3b-a629-5c2a8955757e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:10:34.492Z", + "completed":"2017-07-01T15:10:34.492Z", + "new_balance":"7814.93", + "value":"-34.43" + } + }, + { + "id":"e281d509-cb55-4eba-9656-efb5d0d62f5e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T16:18:37.904Z", + "completed":"2017-07-01T16:18:37.904Z", + "new_balance":"7780.50", + "value":"-34.43" + } + }, + { + "id":"488e2d78-eb16-4e2c-95d1-73a84434301f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:49:20.221Z", + "completed":"2017-07-01T17:49:20.221Z", + "new_balance":"7746.47", + "value":"-34.03" + } + }, + { + "id":"c9c29022-c656-4455-9ae8-abfc35034a65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T20:49:14.705Z", + "completed":"2017-07-01T20:49:14.705Z", + "new_balance":"7557.20", + "value":"-189.27" + } + }, + { + "id":"62e49693-066d-4065-bf60-d26355c9983f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T20:27:30.521Z", + "completed":"2017-07-02T20:27:30.521Z", + "new_balance":"7470.64", + "value":"-86.56" + } + }, + { + "id":"ed20760d-784d-4728-9af4-52874237eea9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T13:50:53.774Z", + "completed":"2017-07-03T13:50:53.774Z", + "new_balance":"7375.21", + "value":"-95.43" + } + }, + { + "id":"36c2a74d-a485-402a-ad72-71776f64c249", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T09:20:28.908Z", + "completed":"2017-07-04T09:20:28.908Z", + "new_balance":"7359.43", + "value":"-15.78" + } + }, + { + "id":"9d3523db-38e4-4ad6-acbd-018db3888216", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T11:12:21.814Z", + "completed":"2017-07-05T11:12:21.814Z", + "new_balance":"7285.50", + "value":"-73.93" + } + }, + { + "id":"4965c50c-f001-4dee-b552-5595c13c326e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T21:15:05.483Z", + "completed":"2017-07-05T21:15:05.483Z", + "new_balance":"7213.41", + "value":"-72.09" + } + }, + { + "id":"645b70a9-1451-4e2d-9783-57939e980677", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T08:35:02.301Z", + "completed":"2017-07-06T08:35:02.301Z", + "new_balance":"7209.82", + "value":"-3.59" + } + }, + { + "id":"28f76675-20b6-4c13-b51b-3dbc0e2b8382", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T14:54:21.384Z", + "completed":"2017-07-11T14:54:21.384Z", + "new_balance":"7182.37", + "value":"-27.45" + } + }, + { + "id":"3c847961-bd64-47d9-8375-26c98d73f0fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T07:29:09.990Z", + "completed":"2017-07-12T07:29:09.990Z", + "new_balance":"7151.08", + "value":"-31.29" + } + }, + { + "id":"0399ae04-43fd-44a4-a27f-ab0333f5ea2c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T10:49:26.306Z", + "completed":"2017-07-14T10:49:26.306Z", + "new_balance":"7136.26", + "value":"-14.82" + } + }, + { + "id":"82426872-1e37-4652-99bf-b92986cf6e53", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T03:04:42.816Z", + "completed":"2017-07-16T03:04:42.816Z", + "new_balance":"7129.10", + "value":"-7.16" + } + }, + { + "id":"2f22e9f1-c411-4968-9e29-160d16eb7ee3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T08:57:13.975Z", + "completed":"2017-07-18T08:57:13.975Z", + "new_balance":"7106.85", + "value":"-22.25" + } + }, + { + "id":"a04ebfd2-4d81-46cf-a333-aba62d93fdb6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T02:10:09.227Z", + "completed":"2017-07-20T02:10:09.227Z", + "new_balance":"6917.58", + "value":"-189.27" + } + }, + { + "id":"1e1993c6-cbc5-455a-9309-ed6ddc941d54", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T10:46:14.718Z", + "completed":"2017-07-20T10:46:14.718Z", + "new_balance":"6910.87", + "value":"-6.71" + } + }, + { + "id":"3e499ee9-b777-433f-8c9b-6bb48bb61528", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T11:53:41.926Z", + "completed":"2017-07-24T11:53:41.926Z", + "new_balance":"6901.17", + "value":"-9.70" + } + }, + { + "id":"1e5be618-fc26-4086-83d8-1816dc1f599d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T19:58:33.655Z", + "completed":"2017-07-24T19:58:33.655Z", + "new_balance":"6855.93", + "value":"-45.24" + } + }, + { + "id":"42d7234d-e548-4142-8d97-6d5aa23cc20b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T05:55:34.747Z", + "completed":"2017-07-25T05:55:34.747Z", + "new_balance":"6813.41", + "value":"-42.52" + } + }, + { + "id":"a5cf7a66-efda-4ee7-97a0-c11d0a299529", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T08:05:01.008Z", + "completed":"2017-07-25T08:05:01.008Z", + "new_balance":"6781.13", + "value":"-32.28" + } + }, + { + "id":"43c0906c-6ee8-4422-989f-2b3d7990205c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T05:37:51.797Z", + "completed":"2017-07-26T05:37:51.797Z", + "new_balance":"6717.56", + "value":"-63.57" + } + }, + { + "id":"dc36d6da-a1b0-4ef5-8135-b95ed659942e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T01:06:25.061Z", + "completed":"2017-07-27T01:06:25.061Z", + "new_balance":"6710.85", + "value":"-6.71" + } + }, + { + "id":"066705e5-7fc2-486c-990d-5e4598ffc06a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T05:34:40.190Z", + "completed":"2017-08-01T05:34:40.190Z", + "new_balance":"6576.37", + "value":"-134.48" + } + }, + { + "id":"b982139d-d755-4ff7-8648-c28dd852ae5c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T06:37:05.353Z", + "completed":"2017-08-01T06:37:05.353Z", + "new_balance":"6523.19", + "value":"-53.18" + } + }, + { + "id":"3a00c6a7-035f-4820-b866-6407a7e81582", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T11:52:27.600Z", + "completed":"2017-08-01T11:52:27.600Z", + "new_balance":"8203.60", + "value":"1680.41" + } + }, + { + "id":"b813b6ec-18c6-4f59-a2a2-4603e361818c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T18:27:07.881Z", + "completed":"2017-08-01T18:27:07.881Z", + "new_balance":"7693.06", + "value":"-510.54" + } + }, + { + "id":"58032a7e-8f2e-44af-b4b4-c42fcae613aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T18:54:18.572Z", + "completed":"2017-08-01T18:54:18.572Z", + "new_balance":"7663.18", + "value":"-29.88" + } + }, + { + "id":"aa49c420-b04f-4151-827c-9146216a8eb6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T23:27:49.300Z", + "completed":"2017-08-01T23:27:49.300Z", + "new_balance":"7628.75", + "value":"-34.43" + } + }, + { + "id":"82db81a9-36e3-400e-9428-cae56599609e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T06:04:29.721Z", + "completed":"2017-08-02T06:04:29.721Z", + "new_balance":"7542.19", + "value":"-86.56" + } + }, + { + "id":"945ab65c-e411-467d-be5f-acc75f319265", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T12:04:42.671Z", + "completed":"2017-08-03T12:04:42.671Z", + "new_balance":"7538.60", + "value":"-3.59" + } + }, + { + "id":"ed851542-3141-42cb-ac3c-81ce25d8c10a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T05:59:52.836Z", + "completed":"2017-08-04T05:59:52.836Z", + "new_balance":"7504.05", + "value":"-34.55" + } + }, + { + "id":"650a5c1f-c4f5-4a33-87d9-51370353ef82", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T13:53:37.812Z", + "completed":"2017-08-07T13:53:37.812Z", + "new_balance":"7480.68", + "value":"-23.37" + } + }, + { + "id":"b94edcd0-4e47-46f4-9338-fd8c60ac68c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T15:00:29.680Z", + "completed":"2017-08-09T15:00:29.680Z", + "new_balance":"7454.88", + "value":"-25.80" + } + }, + { + "id":"9d7294b9-e922-4ad4-b568-770b34e6ec1c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T15:30:07.327Z", + "completed":"2017-08-09T15:30:07.327Z", + "new_balance":"7426.87", + "value":"-28.01" + } + }, + { + "id":"9d92d576-11cc-4117-a063-7418579b269a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T13:01:10.955Z", + "completed":"2017-08-10T13:01:10.955Z", + "new_balance":"7352.94", + "value":"-73.93" + } + }, + { + "id":"12373016-0a82-43eb-ad16-feaf6ec9baaf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T18:24:53.099Z", + "completed":"2017-08-14T18:24:53.099Z", + "new_balance":"7348.85", + "value":"-4.09" + } + }, + { + "id":"b256cfc9-35fe-47b2-9278-0d5a94e66cbe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T08:28:02.644Z", + "completed":"2017-08-15T08:28:02.644Z", + "new_balance":"7312.92", + "value":"-35.93" + } + }, + { + "id":"5a65a454-484b-4b41-bc56-d35ac625a84a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T18:26:10.912Z", + "completed":"2017-08-15T18:26:10.912Z", + "new_balance":"7285.07", + "value":"-27.85" + } + }, + { + "id":"57dd58a3-f285-4caa-95fc-3ac53cca8431", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T16:50:52.886Z", + "completed":"2017-08-16T16:50:52.886Z", + "new_balance":"7236.37", + "value":"-48.70" + } + }, + { + "id":"ba6d2d88-94b4-40ec-8271-a4600affc6e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T18:15:48.437Z", + "completed":"2017-08-17T18:15:48.437Z", + "new_balance":"7191.20", + "value":"-45.17" + } + }, + { + "id":"d9b3f29a-5e98-4ac1-a46d-8b7dbcff5fa8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T00:26:00.267Z", + "completed":"2017-08-20T00:26:00.267Z", + "new_balance":"7185.43", + "value":"-5.77" + } + }, + { + "id":"8842403d-cf82-4aca-857f-ff71247f64a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T22:10:32.553Z", + "completed":"2017-08-20T22:10:32.553Z", + "new_balance":"7176.91", + "value":"-8.52" + } + }, + { + "id":"7ff9f42f-0018-4432-99d4-8b34e69eb38f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T19:26:49.531Z", + "completed":"2017-08-22T19:26:49.531Z", + "new_balance":"7215.92", + "value":"39.01" + } + }, + { + "id":"063abc0d-beee-4dd9-ac92-fe0063afe500", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T15:20:00.115Z", + "completed":"2017-08-23T15:20:00.115Z", + "new_balance":"7172.13", + "value":"-43.79" + } + }, + { + "id":"1ee54f92-03f2-4e36-afcc-50cf13592942", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T21:59:39.896Z", + "completed":"2017-08-23T21:59:39.896Z", + "new_balance":"7126.50", + "value":"-45.63" + } + }, + { + "id":"39ac2306-dedd-496c-bf48-382804b5e41f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T15:48:39.078Z", + "completed":"2017-08-28T15:48:39.078Z", + "new_balance":"7100.94", + "value":"-25.56" + } + }, + { + "id":"e14bdf98-9a42-4023-a67a-2358c7015fab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T20:18:01.216Z", + "completed":"2017-08-28T20:18:01.216Z", + "new_balance":"7067.41", + "value":"-33.53" + } + }, + { + "id":"32b86763-4261-49a5-85b4-9bf787eebe86", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T01:38:21.443Z", + "completed":"2017-09-01T01:38:21.443Z", + "new_balance":"7014.23", + "value":"-53.18" + } + }, + { + "id":"62fe9ae7-95fa-43b8-abf6-f8b3ae51a234", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T01:43:27.409Z", + "completed":"2017-09-01T01:43:27.409Z", + "new_balance":"6503.69", + "value":"-510.54" + } + }, + { + "id":"60a52934-3e1b-4efe-8fad-35d7a028e702", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T04:36:02.938Z", + "completed":"2017-09-01T04:36:02.938Z", + "new_balance":"8184.10", + "value":"1680.41" + } + }, + { + "id":"4c6f868e-80a4-417c-a8cc-50d27d7ef361", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T07:01:24.500Z", + "completed":"2017-09-01T07:01:24.500Z", + "new_balance":"8154.22", + "value":"-29.88" + } + }, + { + "id":"cdd094ac-14ce-4554-8e56-06e943f16715", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T13:13:19.981Z", + "completed":"2017-09-01T13:13:19.981Z", + "new_balance":"8119.79", + "value":"-34.43" + } + }, + { + "id":"2b9f86f3-2de2-43f1-ac38-728c40b9ded6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T17:02:00.550Z", + "completed":"2017-09-01T17:02:00.550Z", + "new_balance":"7985.31", + "value":"-134.48" + } + }, + { + "id":"d936f0df-d229-4a39-8946-b8e1dab764bc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T08:11:28.254Z", + "completed":"2017-09-02T08:11:28.254Z", + "new_balance":"7898.75", + "value":"-86.56" + } + }, + { + "id":"e7b32294-8af8-43e6-8b23-d5a3fcbc0144", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T07:19:19.836Z", + "completed":"2017-09-04T07:19:19.836Z", + "new_balance":"7817.54", + "value":"-81.21" + } + }, + { + "id":"633d50a8-4be2-4cf1-8b90-0539de39b627", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T12:41:08.761Z", + "completed":"2017-09-04T12:41:08.761Z", + "new_balance":"7786.73", + "value":"-30.81" + } + }, + { + "id":"d77232d4-ffce-4d99-8519-4a1971d0c5da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T20:34:32.054Z", + "completed":"2017-09-04T20:34:32.054Z", + "new_balance":"7776.20", + "value":"-10.53" + } + }, + { + "id":"fad0253e-d776-4de0-8178-a8bbe0277805", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T22:35:17.993Z", + "completed":"2017-09-04T22:35:17.993Z", + "new_balance":"7769.73", + "value":"-6.47" + } + }, + { + "id":"854849a6-5943-4d05-901a-9d9a40b75576", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T00:14:49.910Z", + "completed":"2017-09-05T00:14:49.910Z", + "new_balance":"7764.96", + "value":"-4.77" + } + }, + { + "id":"db2727d4-a0e0-45e1-bded-cbc04a3e5260", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T15:17:32.765Z", + "completed":"2017-09-05T15:17:32.765Z", + "new_balance":"7723.73", + "value":"-41.23" + } + }, + { + "id":"6631ea24-578f-4688-8d9c-073955eeb406", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T02:54:00.640Z", + "completed":"2017-09-06T02:54:00.640Z", + "new_balance":"7639.93", + "value":"-83.80" + } + }, + { + "id":"7d6c59ae-5656-4a6b-8922-53a2fa433a98", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T16:31:38.660Z", + "completed":"2017-09-06T16:31:38.660Z", + "new_balance":"7558.72", + "value":"-81.21" + } + }, + { + "id":"f1807060-0b25-4cce-bd42-6bb8f45e1351", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:04:59.166Z", + "completed":"2017-09-08T22:04:59.166Z", + "new_balance":"7516.38", + "value":"-42.34" + } + }, + { + "id":"62a57c84-9308-4a86-b255-4f89c04829e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T23:22:01.475Z", + "completed":"2017-09-08T23:22:01.475Z", + "new_balance":"7432.58", + "value":"-83.80" + } + }, + { + "id":"c166c5e6-b949-46d9-99af-2b431184c322", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T00:51:47.491Z", + "completed":"2017-09-10T00:51:47.491Z", + "new_balance":"7341.11", + "value":"-91.47" + } + }, + { + "id":"3bb59504-43e7-447c-a683-4e0593a06756", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T18:01:01.071Z", + "completed":"2017-09-10T18:01:01.071Z", + "new_balance":"7337.53", + "value":"-3.58" + } + }, + { + "id":"e905acbf-10de-4f54-ab0f-847b3bdf6ad8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T07:26:21.542Z", + "completed":"2017-09-11T07:26:21.542Z", + "new_balance":"7330.25", + "value":"-7.28" + } + }, + { + "id":"6fb5e7f1-1d72-4ec8-bb2a-8c11578140a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T08:42:39.392Z", + "completed":"2017-09-12T08:42:39.392Z", + "new_balance":"7302.95", + "value":"-27.30" + } + }, + { + "id":"6d5be486-94f7-47cd-9ea0-77633c020277", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T10:26:27.023Z", + "completed":"2017-09-12T10:26:27.023Z", + "new_balance":"7289.71", + "value":"-13.24" + } + }, + { + "id":"760ee386-b24e-45fa-8946-9bac84bac5ae", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T03:43:33.317Z", + "completed":"2017-09-13T03:43:33.317Z", + "new_balance":"7243.70", + "value":"-46.01" + } + }, + { + "id":"b38b9090-fe43-4671-9780-29cbe0987440", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T15:19:59.741Z", + "completed":"2017-09-16T15:19:59.741Z", + "new_balance":"7236.71", + "value":"-6.99" + } + }, + { + "id":"3f954ac7-f99f-429e-812b-ff43b071eb73", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T02:13:24.959Z", + "completed":"2017-09-17T02:13:24.959Z", + "new_balance":"7155.30", + "value":"-81.41" + } + }, + { + "id":"7405070d-9156-4f15-b881-7c3283dec61d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T18:41:09.318Z", + "completed":"2017-09-17T18:41:09.318Z", + "new_balance":"7108.50", + "value":"-46.80" + } + }, + { + "id":"61086976-4beb-4b8f-ba70-6d83a64ee1ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T22:03:53.370Z", + "completed":"2017-09-18T22:03:53.370Z", + "new_balance":"7101.51", + "value":"-6.99" + } + }, + { + "id":"e01fdef6-aa93-499a-b47b-da01d94c2ce6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T03:45:15.344Z", + "completed":"2017-09-19T03:45:15.344Z", + "new_balance":"7067.60", + "value":"-33.91" + } + }, + { + "id":"be8587fe-71a9-4959-b4f5-08b246cda2d3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T04:18:06.082Z", + "completed":"2017-09-19T04:18:06.082Z", + "new_balance":"7016.59", + "value":"-51.01" + } + }, + { + "id":"2062763d-859d-4854-9fa0-3bc64c02f91a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T16:19:20.646Z", + "completed":"2017-09-19T16:19:20.646Z", + "new_balance":"6979.64", + "value":"-36.95" + } + }, + { + "id":"6f0551af-b45b-49d9-a241-9fa8ef2561c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T00:37:34.053Z", + "completed":"2017-09-20T00:37:34.053Z", + "new_balance":"6920.74", + "value":"-58.90" + } + }, + { + "id":"68cb9701-170b-47da-9a04-49c59132224e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T23:52:25.042Z", + "completed":"2017-09-20T23:52:25.042Z", + "new_balance":"6847.23", + "value":"-73.51" + } + }, + { + "id":"e222048b-92e1-43d7-9097-f5c95dc11cfc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T07:44:40.710Z", + "completed":"2017-09-21T07:44:40.710Z", + "new_balance":"6840.76", + "value":"-6.47" + } + }, + { + "id":"95110828-8b0a-42f5-ae44-f85b14f559bf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T09:25:34.807Z", + "completed":"2017-09-21T09:25:34.807Z", + "new_balance":"6834.88", + "value":"-5.88" + } + }, + { + "id":"39f7c9d6-6080-423f-900b-5484f0dbf3dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T00:49:15.734Z", + "completed":"2017-09-23T00:49:15.734Z", + "new_balance":"6789.37", + "value":"-45.51" + } + }, + { + "id":"670713dd-20d9-453d-84ac-f1c7dd7dfe7a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T03:52:58.540Z", + "completed":"2017-09-23T03:52:58.540Z", + "new_balance":"6778.14", + "value":"-11.23" + } + }, + { + "id":"685c22d5-7471-430e-b174-eda2c4a6e304", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T09:18:31.080Z", + "completed":"2017-09-24T09:18:31.080Z", + "new_balance":"6749.28", + "value":"-28.86" + } + }, + { + "id":"9f28f921-f55a-434a-9148-33aaa191f207", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T07:12:29.481Z", + "completed":"2017-09-25T07:12:29.481Z", + "new_balance":"6733.20", + "value":"-16.08" + } + }, + { + "id":"9cadeb9f-5bf7-4752-abdb-c6af43e0480d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T08:34:09.618Z", + "completed":"2017-09-25T08:34:09.618Z", + "new_balance":"6699.17", + "value":"-34.03" + } + }, + { + "id":"e9a2e3be-3771-4e55-b9af-81d31186f624", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T07:07:08.784Z", + "completed":"2017-09-27T07:07:08.784Z", + "new_balance":"6509.90", + "value":"-189.27" + } + }, + { + "id":"944fbc1e-b652-48df-93d3-9b8c921640a9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T01:23:02.377Z", + "completed":"2017-09-29T01:23:02.377Z", + "new_balance":"6482.93", + "value":"-26.97" + } + }, + { + "id":"fad7e9ab-65b9-49ed-8b92-2f6c8875acd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T03:42:49.201Z", + "completed":"2017-10-01T03:42:49.201Z", + "new_balance":"6453.05", + "value":"-29.88" + } + }, + { + "id":"d50aa05e-e44c-4fc0-a0e5-891d50fb5dd9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T08:20:47.637Z", + "completed":"2017-10-01T08:20:47.637Z", + "new_balance":"5942.51", + "value":"-510.54" + } + }, + { + "id":"ca001ea1-af0a-421a-9bf0-391f5554f473", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T11:02:41.182Z", + "completed":"2017-10-01T11:02:41.182Z", + "new_balance":"5808.03", + "value":"-134.48" + } + }, + { + "id":"d96b25ff-13ec-49e5-9ae4-a12c92f03dd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T22:17:12.733Z", + "completed":"2017-10-01T22:17:12.733Z", + "new_balance":"5754.85", + "value":"-53.18" + } + }, + { + "id":"3f8eb274-7e0d-457b-a978-29a856741492", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T00:22:56.359Z", + "completed":"2017-10-02T00:22:56.359Z", + "new_balance":"5668.29", + "value":"-86.56" + } + }, + { + "id":"7fb19c9a-7664-41bb-b05d-407092bf3f8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T03:47:37.254Z", + "completed":"2017-10-02T03:47:37.254Z", + "new_balance":"5596.30", + "value":"-71.99" + } + }, + { + "id":"be7287ff-21bf-4547-96cb-dbd353be1011", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:00:08.926Z", + "completed":"2017-10-03T08:00:08.926Z", + "new_balance":"4864.45", + "value":"-731.85" + } + }, + { + "id":"fc4243dc-79bf-4f5d-9f14-a9b970cb791e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T15:22:59.064Z", + "completed":"2017-10-03T15:22:59.064Z", + "new_balance":"4700.97", + "value":"-163.48" + } + }, + { + "id":"77fcdd14-356d-4990-aa1d-b9778929591c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T17:03:05.488Z", + "completed":"2017-10-03T17:03:05.488Z", + "new_balance":"4666.19", + "value":"-34.78" + } + }, + { + "id":"8a4b81b9-9172-4b69-a10f-356a2e8681d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T20:16:05.134Z", + "completed":"2017-10-03T20:16:05.134Z", + "new_balance":"4476.92", + "value":"-189.27" + } + }, + { + "id":"ec30bdda-4168-4095-bbdd-86226b717058", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T23:01:12.393Z", + "completed":"2017-10-03T23:01:12.393Z", + "new_balance":"4439.73", + "value":"-37.19" + } + }, + { + "id":"e0049681-f363-41c4-a8e9-8321b7b44c2c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T16:36:05.409Z", + "completed":"2017-10-04T16:36:05.409Z", + "new_balance":"4365.80", + "value":"-73.93" + } + }, + { + "id":"e43f6f27-3c72-4925-a6de-90f84fe77574", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T06:34:32.312Z", + "completed":"2017-10-05T06:34:32.312Z", + "new_balance":"4338.35", + "value":"-27.45" + } + }, + { + "id":"b56cb7a2-339a-4671-9bc7-e981fda76fd7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T11:27:05.236Z", + "completed":"2017-10-05T11:27:05.236Z", + "new_balance":"4334.76", + "value":"-3.59" + } + }, + { + "id":"6ad1eeac-889c-4308-a144-50f4a478304c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T03:26:17.517Z", + "completed":"2017-10-07T03:26:17.517Z", + "new_balance":"4319.94", + "value":"-14.82" + } + }, + { + "id":"c55fc727-d710-4243-80fe-82d94a76cc6e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T14:36:38.187Z", + "completed":"2017-10-07T14:36:38.187Z", + "new_balance":"4288.65", + "value":"-31.29" + } + }, + { + "id":"077e2609-01ea-466c-98c8-e966a7f133ff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T01:12:18.815Z", + "completed":"2017-10-08T01:12:18.815Z", + "new_balance":"4281.49", + "value":"-7.16" + } + }, + { + "id":"d7663f9e-29bb-4efa-968c-756675bf6e9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T08:12:57.931Z", + "completed":"2017-10-09T08:12:57.931Z", + "new_balance":"4274.78", + "value":"-6.71" + } + }, + { + "id":"0bde69d7-0e00-4118-b60f-3502489cb18d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T12:43:32.734Z", + "completed":"2017-10-09T12:43:32.734Z", + "new_balance":"4252.53", + "value":"-22.25" + } + }, + { + "id":"e421f522-8fd7-496a-ab3a-48940ca4a70f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T21:05:54.302Z", + "completed":"2017-10-09T21:05:54.302Z", + "new_balance":"4063.26", + "value":"-189.27" + } + }, + { + "id":"78014482-d30b-40a7-999f-a37407290ec5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T14:23:54.608Z", + "completed":"2017-10-10T14:23:54.608Z", + "new_balance":"4018.02", + "value":"-45.24" + } + }, + { + "id":"9101e671-72e7-4a8c-81f4-d614b599bb28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T08:21:23.800Z", + "completed":"2017-10-17T08:21:23.800Z", + "new_balance":"4008.32", + "value":"-9.70" + } + }, + { + "id":"f1cb7874-c9d3-411d-93c8-7c62b76c7e5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:43:25.737Z", + "completed":"2017-10-18T01:43:25.737Z", + "new_balance":"3976.04", + "value":"-32.28" + } + }, + { + "id":"fbb0e5fb-ab91-4e08-8dd5-1b5aadda51d3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T15:51:30.655Z", + "completed":"2017-10-25T15:51:30.655Z", + "new_balance":"3933.52", + "value":"-42.52" + } + }, + { + "id":"e00ea7db-0989-47e2-b0c8-610320ee4eef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T05:34:53.186Z", + "completed":"2017-10-26T05:34:53.186Z", + "new_balance":"3869.95", + "value":"-63.57" + } + }, + { + "id":"a0351bf3-927b-4ccf-b4ef-8ff3d3379286", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T23:50:41.193Z", + "completed":"2017-10-26T23:50:41.193Z", + "new_balance":"3863.24", + "value":"-6.71" + } + }, + { + "id":"5fac09bc-d14f-41cf-b98f-bbe55c92740f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T02:58:37.574Z", + "completed":"2017-11-02T02:58:37.574Z", + "new_balance":"3776.68", + "value":"-86.56" + } + }, + { + "id":"010c5595-bc18-45ed-918f-13b95b57360e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T08:17:08.977Z", + "completed":"2017-11-02T08:17:08.977Z", + "new_balance":"5457.09", + "value":"1680.41" + } + }, + { + "id":"ab92a4a2-4fb1-4860-9a18-f0ab037c3476", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T09:34:35.465Z", + "completed":"2017-11-02T09:34:35.465Z", + "new_balance":"5441.16", + "value":"-15.93" + } + }, + { + "id":"8f57a155-c338-4448-90d2-5e2fa5649964", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T10:13:04.299Z", + "completed":"2017-11-02T10:13:04.299Z", + "new_balance":"5387.98", + "value":"-53.18" + } + }, + { + "id":"dfa523d9-779c-4afe-9878-6e56cfd18cd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T14:43:05.856Z", + "completed":"2017-11-02T14:43:05.856Z", + "new_balance":"5358.10", + "value":"-29.88" + } + }, + { + "id":"ab091279-9484-486e-a036-eb14bc3c01fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T15:26:59.492Z", + "completed":"2017-11-02T15:26:59.492Z", + "new_balance":"4847.56", + "value":"-510.54" + } + }, + { + "id":"fc77fcce-1fd6-4d9e-a642-8cbd623417c7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T21:12:07.368Z", + "completed":"2017-11-02T21:12:07.368Z", + "new_balance":"4713.08", + "value":"-134.48" + } + }, + { + "id":"ae36fd93-b419-4acc-8254-8a55bf2bb098", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T22:00:29.883Z", + "completed":"2017-11-02T22:00:29.883Z", + "new_balance":"4678.65", + "value":"-34.43" + } + }, + { + "id":"b6096503-2717-47d0-815c-c25cc6ef3f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T08:23:21.946Z", + "completed":"2017-11-06T08:23:21.946Z", + "new_balance":"4664.01", + "value":"-14.64" + } + }, + { + "id":"dd761326-a8d7-45c3-bea9-5aa8a61cc5f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T06:34:22.146Z", + "completed":"2017-11-07T06:34:22.146Z", + "new_balance":"4638.21", + "value":"-25.80" + } + }, + { + "id":"0323babd-4066-4410-8b2b-97370093d55e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T09:51:45.490Z", + "completed":"2017-11-07T09:51:45.490Z", + "new_balance":"4614.84", + "value":"-23.37" + } + }, + { + "id":"2495083f-ea61-4429-90ac-548b41362780", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T11:12:39.545Z", + "completed":"2017-11-07T11:12:39.545Z", + "new_balance":"4586.83", + "value":"-28.01" + } + }, + { + "id":"e7b4609c-6e6a-4481-bc08-1a45bf02d267", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T15:11:15.340Z", + "completed":"2017-11-09T15:11:15.340Z", + "new_balance":"4582.74", + "value":"-4.09" + } + }, + { + "id":"b4beab2e-fff6-4d40-955c-14e89fe7b3ae", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T20:58:14.167Z", + "completed":"2017-11-09T20:58:14.167Z", + "new_balance":"4508.81", + "value":"-73.93" + } + }, + { + "id":"abb918bd-1024-4f87-bc5b-eb024bede227", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T00:26:20.400Z", + "completed":"2017-11-12T00:26:20.400Z", + "new_balance":"4487.71", + "value":"-21.10" + } + }, + { + "id":"9f87ad5c-d31a-49a4-a23b-ea354f0a788d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T01:09:01.943Z", + "completed":"2017-11-12T01:09:01.943Z", + "new_balance":"4459.86", + "value":"-27.85" + } + }, + { + "id":"8469d39a-73f7-460c-8615-e307c6730380", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T03:55:21.267Z", + "completed":"2017-11-14T03:55:21.267Z", + "new_balance":"4411.16", + "value":"-48.70" + } + }, + { + "id":"7a1c59e9-bf9d-4413-a6a4-e0f6e91de016", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:26:54.219Z", + "completed":"2017-11-14T05:26:54.219Z", + "new_balance":"4365.99", + "value":"-45.17" + } + }, + { + "id":"eb41cc17-61e8-4b97-b090-3f5ac8d3bb98", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T15:32:07.863Z", + "completed":"2017-11-16T15:32:07.863Z", + "new_balance":"4360.22", + "value":"-5.77" + } + }, + { + "id":"aac2365f-8976-454f-a83e-b0e8a56d58e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T18:59:08.937Z", + "completed":"2017-11-18T18:59:08.937Z", + "new_balance":"4351.70", + "value":"-8.52" + } + }, + { + "id":"7c476889-12d4-47ec-8738-2519707c5b69", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T14:38:40.357Z", + "completed":"2017-11-20T14:38:40.357Z", + "new_balance":"4390.71", + "value":"39.01" + } + }, + { + "id":"90def5f4-2425-4ea7-9479-3c5a64868615", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T02:26:12.984Z", + "completed":"2017-11-21T02:26:12.984Z", + "new_balance":"4346.92", + "value":"-43.79" + } + }, + { + "id":"0e9388ed-2f5e-40a6-a613-4b305e685eda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T16:28:50.195Z", + "completed":"2017-11-21T16:28:50.195Z", + "new_balance":"4301.29", + "value":"-45.63" + } + }, + { + "id":"d39fb7ab-5bb7-431d-af9d-60076809ad06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T10:49:20.994Z", + "completed":"2017-11-27T10:49:20.994Z", + "new_balance":"4267.76", + "value":"-33.53" + } + }, + { + "id":"628006d4-45f3-4078-b69f-83b1bcf2e2d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T17:00:18.261Z", + "completed":"2017-11-27T17:00:18.261Z", + "new_balance":"4242.20", + "value":"-25.56" + } + }, + { + "id":"5cd707d0-bd83-4a9f-8b02-4318dc8f9f36", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T01:54:11.260Z", + "completed":"2017-12-01T01:54:11.260Z", + "new_balance":"4189.02", + "value":"-53.18" + } + }, + { + "id":"2e9bb85f-149a-4cd3-8193-5013cff784d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:18:14.395Z", + "completed":"2017-12-01T02:18:14.395Z", + "new_balance":"4054.54", + "value":"-134.48" + } + }, + { + "id":"54790d92-3033-48a2-ae3c-198e4294af57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T05:33:58.985Z", + "completed":"2017-12-01T05:33:58.985Z", + "new_balance":"4024.66", + "value":"-29.88" + } + }, + { + "id":"7caacb52-c98a-4c7f-90d4-ad8cb154ecce", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T12:57:35.634Z", + "completed":"2017-12-01T12:57:35.634Z", + "new_balance":"3990.23", + "value":"-34.43" + } + }, + { + "id":"549d9b8b-3e90-4c32-8bb1-02d8771bbdac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:04:33.393Z", + "completed":"2017-12-01T16:04:33.393Z", + "new_balance":"5670.64", + "value":"1680.41" + } + }, + { + "id":"59771192-c573-4cf6-9715-2f6ae93a619a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T19:46:52.425Z", + "completed":"2017-12-01T19:46:52.425Z", + "new_balance":"5160.10", + "value":"-510.54" + } + }, + { + "id":"f23a45d4-55a2-40ae-a7ef-90a87f45e5ea", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T02:21:54.362Z", + "completed":"2017-12-04T02:21:54.362Z", + "new_balance":"5073.54", + "value":"-86.56" + } + }, + { + "id":"e49efd79-cb0b-4e5e-953a-80b0ad10cf5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:22:38.569Z", + "completed":"2017-12-04T21:22:38.569Z", + "new_balance":"4941.70", + "value":"-131.84" + } + }, + { + "id":"e146cede-f525-4257-ad13-2bb72ad6b91a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T00:48:26.645Z", + "completed":"2017-12-12T00:48:26.645Z", + "new_balance":"4931.17", + "value":"-10.53" + } + }, + { + "id":"1cab0823-5c06-428e-959f-975eb8311099", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T06:52:08.723Z", + "completed":"2017-12-12T06:52:08.723Z", + "new_balance":"4900.36", + "value":"-30.81" + } + }, + { + "id":"5fb1d1d8-201b-4a0a-a890-fd74f618fc5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T19:07:18.685Z", + "completed":"2017-12-13T19:07:18.685Z", + "new_balance":"4893.89", + "value":"-6.47" + } + }, + { + "id":"e80e9e44-bda7-4e33-9b2c-317e10ab3d8b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T22:55:21.388Z", + "completed":"2017-12-13T22:55:21.388Z", + "new_balance":"4812.68", + "value":"-81.21" + } + }, + { + "id":"f9044129-cc31-470b-b878-b627dd37791a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T14:30:56.330Z", + "completed":"2017-12-16T14:30:56.330Z", + "new_balance":"4771.45", + "value":"-41.23" + } + }, + { + "id":"29e9f51f-d94a-4d89-b81e-a4565aee4e13", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T08:32:21.918Z", + "completed":"2017-12-18T08:32:21.918Z", + "new_balance":"4766.68", + "value":"-4.77" + } + }, + { + "id":"cffa261a-d2f8-4d00-be15-eda15ee6fab5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:45:55.248Z", + "completed":"2017-12-19T00:45:55.248Z", + "new_balance":"4682.88", + "value":"-83.80" + } + }, + { + "id":"fba37435-2a00-4608-acf9-beaa67451aa3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:26:46.639Z", + "completed":"2017-12-19T08:26:46.639Z", + "new_balance":"4601.67", + "value":"-81.21" + } + }, + { + "id":"6e4b7c12-36a8-4e8e-a180-49e382715da1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T11:28:41.256Z", + "completed":"2017-12-20T11:28:41.256Z", + "new_balance":"4559.33", + "value":"-42.34" + } + }, + { + "id":"d13c868c-9f06-4a4c-b1e6-ce7250054df9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T03:57:59.797Z", + "completed":"2017-12-21T03:57:59.797Z", + "new_balance":"4475.53", + "value":"-83.80" + } + }, + { + "id":"76ee6e9c-8ade-4fc4-9eb2-93b218df376a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T01:12:24.885Z", + "completed":"2017-12-24T01:12:24.885Z", + "new_balance":"4429.52", + "value":"-46.01" + } + }, + { + "id":"152a27be-8c71-4f6a-9ccb-566c658e7c3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T04:24:30.191Z", + "completed":"2017-12-24T04:24:30.191Z", + "new_balance":"4402.22", + "value":"-27.30" + } + }, + { + "id":"e928242e-678a-4761-a2d0-17fd3a6bc39a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T10:16:22.722Z", + "completed":"2017-12-24T10:16:22.722Z", + "new_balance":"4388.98", + "value":"-13.24" + } + }, + { + "id":"2d36affb-7a58-4d3b-9986-509c3a11d7f6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T10:31:09.317Z", + "completed":"2017-12-24T10:31:09.317Z", + "new_balance":"4381.70", + "value":"-7.28" + } + }, + { + "id":"87ebc9cd-68db-4cee-98bc-84e7c0af633a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T15:47:16.490Z", + "completed":"2017-12-24T15:47:16.490Z", + "new_balance":"4378.12", + "value":"-3.58" + } + }, + { + "id":"014c393b-4a97-413a-8c45-08b865232674", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T16:43:16.993Z", + "completed":"2017-12-24T16:43:16.993Z", + "new_balance":"4286.65", + "value":"-91.47" + } + }, + { + "id":"d9c9f00b-6f0f-43bb-a07f-e70309e47915", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T04:26:38.911Z", + "completed":"2017-12-28T04:26:38.911Z", + "new_balance":"4239.85", + "value":"-46.80" + } + }, + { + "id":"6ef55e2c-6bec-4156-bffb-0fbdf61350ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T10:41:08.950Z", + "completed":"2017-12-28T10:41:08.950Z", + "new_balance":"4232.86", + "value":"-6.99" + } + }, + { + "id":"40b25e95-605d-4d6e-9275-209ea5fba1dc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T10:50:19.082Z", + "completed":"2017-12-28T10:50:19.082Z", + "new_balance":"4151.45", + "value":"-81.41" + } + }, + { + "id":"65c1d096-9e27-477d-9c50-50313cf3463c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:45:29.879Z", + "completed":"2017-12-28T16:45:29.879Z", + "new_balance":"4144.46", + "value":"-6.99" + } + }, + { + "id":"623a7cb1-56a1-4af3-80d7-54d6908176aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T07:47:32.636Z", + "completed":"2017-12-29T07:47:32.636Z", + "new_balance":"4137.99", + "value":"-6.47" + } + }, + { + "id":"b71ea35f-4f35-449c-9148-8f80b37b6b78", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T16:55:52.967Z", + "completed":"2017-12-29T16:55:52.967Z", + "new_balance":"4104.08", + "value":"-33.91" + } + }, + { + "id":"a0a46108-e09e-4a4e-8130-0ae49b54ee22", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T18:16:34.203Z", + "completed":"2017-12-29T18:16:34.203Z", + "new_balance":"4053.07", + "value":"-51.01" + } + }, + { + "id":"4341e8fa-0d53-4d6b-b544-c37418435acb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T19:32:33.461Z", + "completed":"2017-12-29T19:32:33.461Z", + "new_balance":"3979.56", + "value":"-73.51" + } + }, + { + "id":"4f8d9ee7-dcb9-421a-8751-504849ec8b33", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T21:50:28.740Z", + "completed":"2017-12-29T21:50:28.740Z", + "new_balance":"3920.66", + "value":"-58.90" + } + }, + { + "id":"d53f9f43-5edd-4df5-b290-7a60a4480289", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:17:17.851Z", + "completed":"2017-12-29T22:17:17.851Z", + "new_balance":"3883.71", + "value":"-36.95" + } + }, + { + "id":"552bd7d0-c6d1-4eb9-8a5b-ba377b4ad35c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T01:25:27.156Z", + "completed":"2017-12-30T01:25:27.156Z", + "new_balance":"3838.20", + "value":"-45.51" + } + }, + { + "id":"efe09408-3eab-4c85-804e-315d8bcc1217", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T07:43:02.118Z", + "completed":"2017-12-30T07:43:02.118Z", + "new_balance":"3809.34", + "value":"-28.86" + } + }, + { + "id":"b9c1ae77-a618-4829-9df7-faec546785c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T13:22:15.090Z", + "completed":"2017-12-30T13:22:15.090Z", + "new_balance":"3798.11", + "value":"-11.23" + } + }, + { + "id":"14c678ca-c7ce-4010-8f3d-f69207d1f867", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T19:06:07.371Z", + "completed":"2017-12-30T19:06:07.371Z", + "new_balance":"3792.23", + "value":"-5.88" + } + }, + { + "id":"fae88210-8a98-41eb-9d56-1de95d49cf7e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:20:32.415Z", + "completed":"2017-12-31T00:20:32.415Z", + "new_balance":"3602.96", + "value":"-189.27" + } + }, + { + "id":"2f246e2f-9a8f-4e03-b3bc-3e17b943ddc7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T12:53:16.518Z", + "completed":"2017-12-31T12:53:16.518Z", + "new_balance":"3575.99", + "value":"-26.97" + } + }, + { + "id":"e996a619-4ff7-422a-a412-436d7369132e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T13:34:33.988Z", + "completed":"2017-12-31T13:34:33.988Z", + "new_balance":"3541.96", + "value":"-34.03" + } + }, + { + "id":"c0cc7236-82e4-4cd4-8bce-b0db0bc04e2a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T17:25:36.394Z", + "completed":"2017-12-31T17:25:36.394Z", + "new_balance":"3525.88", + "value":"-16.08" + } + }, + { + "id":"c9c1423e-9eb4-4992-a156-045166a5361a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:23:35.869Z", + "completed":"2016-01-01T01:23:35.869Z", + "new_balance":"4309.36", + "value":"-6.40" + } + }, + { + "id":"6e0b9e93-4b22-40f4-9134-fa01950b5b2d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T07:51:15.907Z", + "completed":"2016-01-01T07:51:15.907Z", + "new_balance":"4302.96", + "value":"-6.40" + } + }, + { + "id":"5d4bac2e-62a5-42c4-824a-b87d0f679e21", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T02:47:58.136Z", + "completed":"2016-01-03T02:47:58.136Z", + "new_balance":"4299.52", + "value":"-3.44" + } + }, + { + "id":"b4df343a-a797-4b37-b6b0-64fb3ac4dae2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T10:07:25.145Z", + "completed":"2016-01-03T10:07:25.145Z", + "new_balance":"4241.29", + "value":"-58.23" + } + }, + { + "id":"79f46fd2-3b85-439f-8288-765674d438d6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T15:18:41.313Z", + "completed":"2016-01-03T15:18:41.313Z", + "new_balance":"4234.10", + "value":"-7.19" + } + }, + { + "id":"01127775-696d-4cf8-89fb-1b0503c68fd1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T16:45:48.298Z", + "completed":"2016-01-03T16:45:48.298Z", + "new_balance":"4231.64", + "value":"-2.46" + } + }, + { + "id":"eda81186-836b-47fb-ac11-29b645505524", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T03:08:36.840Z", + "completed":"2016-01-05T03:08:36.840Z", + "new_balance":"4226.49", + "value":"-5.15" + } + }, + { + "id":"99c8a531-0dec-4d70-a519-93d6ccd7fa10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T04:41:44.713Z", + "completed":"2016-01-05T04:41:44.713Z", + "new_balance":"4225.34", + "value":"-1.15" + } + }, + { + "id":"96a20e19-80ff-4be8-8657-5620ba938842", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T22:30:42.327Z", + "completed":"2016-01-05T22:30:42.327Z", + "new_balance":"4220.92", + "value":"-4.42" + } + }, + { + "id":"11078a06-ca26-4624-b3bc-a6a1d39bac9d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T11:12:59.792Z", + "completed":"2016-01-06T11:12:59.792Z", + "new_balance":"4217.25", + "value":"-3.67" + } + }, + { + "id":"32bfde87-46ce-4cc2-997d-dacaf86e7e96", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T19:31:52.307Z", + "completed":"2016-01-06T19:31:52.307Z", + "new_balance":"4214.93", + "value":"-2.32" + } + }, + { + "id":"49796638-f485-4b9e-9ed2-438ee5eae72c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T02:49:02.992Z", + "completed":"2016-01-07T02:49:02.992Z", + "new_balance":"4210.46", + "value":"-4.47" + } + }, + { + "id":"01f0b0b5-76ff-4d22-a8e1-d16fee6d8fd9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T01:46:24.750Z", + "completed":"2016-01-10T01:46:24.750Z", + "new_balance":"4208.08", + "value":"-2.38" + } + }, + { + "id":"f3e98258-ec67-4d5a-9478-070e166834f0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T15:41:16.716Z", + "completed":"2016-01-10T15:41:16.716Z", + "new_balance":"4202.93", + "value":"-5.15" + } + }, + { + "id":"8213535f-23f3-43a3-ae4a-7ae9f17b2e76", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:14:45.265Z", + "completed":"2016-01-12T09:14:45.265Z", + "new_balance":"4200.47", + "value":"-2.46" + } + }, + { + "id":"da0b73e5-6ac6-4407-b964-11035b873e4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:24:15.618Z", + "completed":"2016-01-12T09:24:15.618Z", + "new_balance":"4196.00", + "value":"-4.47" + } + }, + { + "id":"dd53d84d-061d-4e37-81b4-bc1a9f3a0c97", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T16:36:10.955Z", + "completed":"2016-01-12T16:36:10.955Z", + "new_balance":"4193.27", + "value":"-2.73" + } + }, + { + "id":"fe451d32-b09c-4e42-8567-00a20cc0cf9b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T09:18:56.899Z", + "completed":"2016-01-15T09:18:56.899Z", + "new_balance":"4190.64", + "value":"-2.63" + } + }, + { + "id":"4b8e8004-2000-49e3-a31e-fe5b01da1685", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T08:43:47.889Z", + "completed":"2016-01-16T08:43:47.889Z", + "new_balance":"4189.68", + "value":"-0.96" + } + }, + { + "id":"4382f83c-ab10-4400-b469-fcc6682c351f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T10:45:19.428Z", + "completed":"2016-01-16T10:45:19.428Z", + "new_balance":"4184.53", + "value":"-5.15" + } + }, + { + "id":"1f8e23a8-975a-42b6-89a2-21d1a819a3d7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T06:46:22.039Z", + "completed":"2016-01-17T06:46:22.039Z", + "new_balance":"4181.94", + "value":"-2.59" + } + }, + { + "id":"b7966d30-e479-4544-a315-f2194d5a82c5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T23:14:45.448Z", + "completed":"2016-01-17T23:14:45.448Z", + "new_balance":"4175.19", + "value":"-6.75" + } + }, + { + "id":"5ddaf61e-3b9b-4f88-942a-f49f40f16ee1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T15:09:28.013Z", + "completed":"2016-01-19T15:09:28.013Z", + "new_balance":"4172.77", + "value":"-2.42" + } + }, + { + "id":"1db6b96a-0e61-49d1-9469-894b6d05f5cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T12:25:11.743Z", + "completed":"2016-01-20T12:25:11.743Z", + "new_balance":"4167.62", + "value":"-5.15" + } + }, + { + "id":"b0b583f7-69ac-4eb6-9407-2c09b2879d9c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:37:11.014Z", + "completed":"2016-01-23T22:37:11.014Z", + "new_balance":"4166.20", + "value":"-1.42" + } + }, + { + "id":"952136d2-a3f7-4671-830d-46e65b15da50", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T12:29:26.836Z", + "completed":"2016-01-26T12:29:26.836Z", + "new_balance":"4161.39", + "value":"-4.81" + } + }, + { + "id":"0fcf5e3b-8cf4-40df-ac25-1a8504c91fc7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T14:52:59.481Z", + "completed":"2016-01-27T14:52:59.481Z", + "new_balance":"4267.02", + "value":"105.63" + } + }, + { + "id":"0ee1f49c-0f90-4df2-a65c-8a65bc39df3d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T17:41:46.075Z", + "completed":"2016-01-28T17:41:46.075Z", + "new_balance":"4263.58", + "value":"-3.44" + } + }, + { + "id":"fb378446-3962-4cf5-a6df-d4d2b66d7f1b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T13:55:48.252Z", + "completed":"2016-01-30T13:55:48.252Z", + "new_balance":"4259.31", + "value":"-4.27" + } + }, + { + "id":"5a9caddf-597a-47f4-9e45-fb64aa6e2024", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T00:51:11.109Z", + "completed":"2016-02-03T00:51:11.109Z", + "new_balance":"4252.12", + "value":"-7.19" + } + }, + { + "id":"62612b44-522c-4a8f-b918-5798d9c40c94", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T12:42:15.307Z", + "completed":"2016-02-03T12:42:15.307Z", + "new_balance":"4249.66", + "value":"-2.46" + } + }, + { + "id":"b453701d-ce8c-4d8b-8249-6cc4e4049fb6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T14:00:42.667Z", + "completed":"2016-02-03T14:00:42.667Z", + "new_balance":"4191.43", + "value":"-58.23" + } + }, + { + "id":"859c0796-1519-4ecb-87bb-c7d1f3a4a86c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T19:29:53.841Z", + "completed":"2016-02-03T19:29:53.841Z", + "new_balance":"4187.99", + "value":"-3.44" + } + }, + { + "id":"0c5ef503-75ba-40a1-a246-d53a76e15409", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T01:23:13.034Z", + "completed":"2016-02-08T01:23:13.034Z", + "new_balance":"4183.57", + "value":"-4.42" + } + }, + { + "id":"1b078837-0817-42a4-828f-ecee74640379", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T15:24:46.296Z", + "completed":"2016-02-08T15:24:46.296Z", + "new_balance":"4178.42", + "value":"-5.15" + } + }, + { + "id":"76ae43ed-58c2-4bc9-94f9-bca7c07bc661", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T05:47:20.069Z", + "completed":"2016-02-11T05:47:20.069Z", + "new_balance":"4179.53", + "value":"1.11" + } + }, + { + "id":"197844c5-3ed1-4e8a-ba35-30e3d5754885", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T09:59:58.530Z", + "completed":"2016-02-13T09:59:58.530Z", + "new_balance":"4177.21", + "value":"-2.32" + } + }, + { + "id":"6c6994e8-8ddd-45b4-a0fe-274e483fcf49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T09:28:20.581Z", + "completed":"2016-02-14T09:28:20.581Z", + "new_balance":"4174.18", + "value":"-3.03" + } + }, + { + "id":"7aed5445-167c-41dc-bef1-11db4db71345", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T05:26:34.871Z", + "completed":"2016-02-17T05:26:34.871Z", + "new_balance":"4172.78", + "value":"-1.40" + } + }, + { + "id":"ed53fb59-b1d9-4a35-b905-1c4026674e56", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T08:55:05.124Z", + "completed":"2016-02-21T08:55:05.124Z", + "new_balance":"4168.29", + "value":"-4.49" + } + }, + { + "id":"866e828b-1ea7-419e-82ce-b1dbb4631e8b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T02:13:32.346Z", + "completed":"2016-02-23T02:13:32.346Z", + "new_balance":"4163.14", + "value":"-5.15" + } + }, + { + "id":"95043c81-6e17-4e41-8db4-cfe2003d001b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:43:08.199Z", + "completed":"2016-02-23T13:43:08.199Z", + "new_balance":"4158.90", + "value":"-4.24" + } + }, + { + "id":"4989582d-af5f-4d93-b364-4bcda7279f10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T12:31:01.625Z", + "completed":"2016-02-24T12:31:01.625Z", + "new_balance":"4157.50", + "value":"-1.40" + } + }, + { + "id":"6477c905-aad1-491c-9601-543cb369339f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T01:39:07.583Z", + "completed":"2016-02-27T01:39:07.583Z", + "new_balance":"4155.48", + "value":"-2.02" + } + }, + { + "id":"330ade9d-b5b7-4d72-8d03-74e9bbeb4be9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T06:21:56.913Z", + "completed":"2016-02-27T06:21:56.913Z", + "new_balance":"4261.11", + "value":"105.63" + } + }, + { + "id":"764f0ebc-6f58-4ddd-9b05-c279e1eac8a9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T14:13:07.858Z", + "completed":"2016-02-27T14:13:07.858Z", + "new_balance":"4256.30", + "value":"-4.81" + } + }, + { + "id":"7e5035e9-6f05-4d23-843c-913ea6c6bb22", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T02:19:22.465Z", + "completed":"2016-02-28T02:19:22.465Z", + "new_balance":"4252.03", + "value":"-4.27" + } + }, + { + "id":"b4d37e0e-5171-49a6-8135-969a9972c2a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T21:04:16.832Z", + "completed":"2016-02-28T21:04:16.832Z", + "new_balance":"4248.59", + "value":"-3.44" + } + }, + { + "id":"e44d3914-1676-4f27-8bf7-37e8510fe9ca", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T05:07:54.610Z", + "completed":"2016-03-01T05:07:54.610Z", + "new_balance":"4242.19", + "value":"-6.40" + } + }, + { + "id":"6f7dabb6-0fc8-446a-adbb-c5975d39f705", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T15:36:47.791Z", + "completed":"2016-03-03T15:36:47.791Z", + "new_balance":"4239.73", + "value":"-2.46" + } + }, + { + "id":"2dcb0747-4691-4f04-9030-1f34989ba562", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T16:58:51.559Z", + "completed":"2016-03-03T16:58:51.559Z", + "new_balance":"4236.29", + "value":"-3.44" + } + }, + { + "id":"35f4a9f8-5630-42ff-8a54-31e413813081", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T20:21:44.497Z", + "completed":"2016-03-03T20:21:44.497Z", + "new_balance":"4229.10", + "value":"-7.19" + } + }, + { + "id":"ddd8fb3d-9979-446f-8921-80f66b743c9b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T21:45:43.921Z", + "completed":"2016-03-03T21:45:43.921Z", + "new_balance":"4170.87", + "value":"-58.23" + } + }, + { + "id":"a465611a-db22-4826-bd75-09efe9900472", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T15:06:58.934Z", + "completed":"2016-03-05T15:06:58.934Z", + "new_balance":"4165.72", + "value":"-5.15" + } + }, + { + "id":"ba2a92ae-c304-4780-9a5e-c944ca5c9a09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T15:25:57.791Z", + "completed":"2016-03-05T15:25:57.791Z", + "new_balance":"4160.83", + "value":"-4.89" + } + }, + { + "id":"79e8edf6-d45d-46db-b8fe-01d8282dc9ab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T12:59:31.418Z", + "completed":"2016-03-07T12:59:31.418Z", + "new_balance":"4158.96", + "value":"-1.87" + } + }, + { + "id":"bd817c0a-aba9-4115-9ab3-6d759a76a39a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T00:34:14.877Z", + "completed":"2016-03-09T00:34:14.877Z", + "new_balance":"4153.81", + "value":"-5.15" + } + }, + { + "id":"7e1b632f-322a-4562-91b3-518a87b2e083", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T15:03:00.103Z", + "completed":"2016-03-11T15:03:00.103Z", + "new_balance":"4152.23", + "value":"-1.58" + } + }, + { + "id":"a080cd7f-14da-4c4c-a0f1-f80407cc1726", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T20:24:06.553Z", + "completed":"2016-03-13T20:24:06.553Z", + "new_balance":"4145.31", + "value":"-6.92" + } + }, + { + "id":"43a08ec4-2017-47f5-8f1c-2a7af7ab4733", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T03:58:48.569Z", + "completed":"2016-03-14T03:58:48.569Z", + "new_balance":"4144.07", + "value":"-1.24" + } + }, + { + "id":"e10e6b71-6f16-4f04-82a6-85bf8caa4c5c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T14:00:22.279Z", + "completed":"2016-03-14T14:00:22.279Z", + "new_balance":"4152.36", + "value":"8.29" + } + }, + { + "id":"12e4f4c5-9f89-490b-8147-cdd3bf18102e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T21:41:51.417Z", + "completed":"2016-03-15T21:41:51.417Z", + "new_balance":"4148.09", + "value":"-4.27" + } + }, + { + "id":"25f7a1a8-a827-4aca-81c7-24ffe39aad79", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T00:10:37.911Z", + "completed":"2016-03-26T00:10:37.911Z", + "new_balance":"4146.10", + "value":"-1.99" + } + }, + { + "id":"537cb053-5872-4071-9fd2-c5355ebf2486", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:59:26.301Z", + "completed":"2016-03-26T01:59:26.301Z", + "new_balance":"4143.96", + "value":"-2.14" + } + }, + { + "id":"cefe5185-fa4e-4fe6-9cc5-e2e7716f0e73", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T20:01:47.302Z", + "completed":"2016-03-26T20:01:47.302Z", + "new_balance":"4139.27", + "value":"-4.69" + } + }, + { + "id":"520bf8d0-51bf-4db8-b9ee-9dccf224b72e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T01:20:38.118Z", + "completed":"2016-03-27T01:20:38.118Z", + "new_balance":"4244.90", + "value":"105.63" + } + }, + { + "id":"422f8c6e-7a1d-4c89-b794-0d7227606b0a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T13:27:11.650Z", + "completed":"2016-03-27T13:27:11.650Z", + "new_balance":"4239.75", + "value":"-5.15" + } + }, + { + "id":"b1c24009-d0ca-4089-aec6-f0b7f66b0a4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T21:41:03.908Z", + "completed":"2016-03-27T21:41:03.908Z", + "new_balance":"4235.33", + "value":"-4.42" + } + }, + { + "id":"bf8d4ec1-f6e4-4249-8d04-899f8824fc8e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T14:19:17.517Z", + "completed":"2016-03-28T14:19:17.517Z", + "new_balance":"4231.89", + "value":"-3.44" + } + }, + { + "id":"fa89702e-5105-49dc-b1f5-f432f0f294d1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T01:41:19.724Z", + "completed":"2016-03-30T01:41:19.724Z", + "new_balance":"4227.62", + "value":"-4.27" + } + }, + { + "id":"12ab25f6-0378-4560-b980-e83eb9acfc38", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T02:31:19.621Z", + "completed":"2016-04-01T02:31:19.621Z", + "new_balance":"4221.22", + "value":"-6.40" + } + }, + { + "id":"75ccef2f-7abc-482a-9979-6986c7cd86e9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T10:20:47.587Z", + "completed":"2016-04-01T10:20:47.587Z", + "new_balance":"4218.76", + "value":"-2.46" + } + }, + { + "id":"7264c954-4e7c-4547-96ac-e39f45c41b38", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T11:04:10.017Z", + "completed":"2016-04-01T11:04:10.017Z", + "new_balance":"4211.57", + "value":"-7.19" + } + }, + { + "id":"730409d0-e236-4948-b747-2ba2c5f0853d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:31:45.475Z", + "completed":"2016-04-01T14:31:45.475Z", + "new_balance":"4153.34", + "value":"-58.23" + } + }, + { + "id":"a64b2a49-3073-4bae-9baa-c4b9bff2ee27", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T15:13:08.191Z", + "completed":"2016-04-01T15:13:08.191Z", + "new_balance":"4149.90", + "value":"-3.44" + } + }, + { + "id":"8c5dba83-4ea8-4486-8554-89b2e15dd84b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T00:49:05.388Z", + "completed":"2016-04-05T00:49:05.388Z", + "new_balance":"4144.75", + "value":"-5.15" + } + }, + { + "id":"ab63dd03-4dde-4b06-b6cc-7641ffb150a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T09:38:06.436Z", + "completed":"2016-04-05T09:38:06.436Z", + "new_balance":"4141.08", + "value":"-3.67" + } + }, + { + "id":"466e493a-0f76-4b81-9ad1-1a185c4e653e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T10:18:20.184Z", + "completed":"2016-04-05T10:18:20.184Z", + "new_balance":"4136.66", + "value":"-4.42" + } + }, + { + "id":"45f3db6d-31c0-487a-8b5f-114d9b447821", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T14:31:35.630Z", + "completed":"2016-04-05T14:31:35.630Z", + "new_balance":"4135.51", + "value":"-1.15" + } + }, + { + "id":"04b23595-9b6d-413f-a2a8-14703c1e0a19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T17:35:39.105Z", + "completed":"2016-04-07T17:35:39.105Z", + "new_balance":"4133.19", + "value":"-2.32" + } + }, + { + "id":"10706f3e-17f2-4637-b2b2-41cf2e4d2476", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T14:37:37.207Z", + "completed":"2016-04-09T14:37:37.207Z", + "new_balance":"4130.81", + "value":"-2.38" + } + }, + { + "id":"d5bf067b-1f7c-4ff1-8491-3a2d1db1ef31", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T18:27:50.802Z", + "completed":"2016-04-09T18:27:50.802Z", + "new_balance":"4125.66", + "value":"-5.15" + } + }, + { + "id":"5b59be4c-580c-4c78-8117-5eba2f973a43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:56:27.497Z", + "completed":"2016-04-10T01:56:27.497Z", + "new_balance":"4123.20", + "value":"-2.46" + } + }, + { + "id":"5a749f8e-c1ac-4b0c-b3c3-e3660eefc41c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:08:38.505Z", + "completed":"2016-04-10T03:08:38.505Z", + "new_balance":"4120.47", + "value":"-2.73" + } + }, + { + "id":"ab3b7673-0bc5-4bcc-8486-c81c0825b14e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T21:52:04.554Z", + "completed":"2016-04-10T21:52:04.554Z", + "new_balance":"4117.84", + "value":"-2.63" + } + }, + { + "id":"94583729-dca9-46c2-a39a-0921bb85de6f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T22:30:34.369Z", + "completed":"2016-04-10T22:30:34.369Z", + "new_balance":"4113.37", + "value":"-4.47" + } + }, + { + "id":"11d02fdf-a7e1-4db6-a0af-933e3da7c7ed", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T07:51:14.903Z", + "completed":"2016-04-11T07:51:14.903Z", + "new_balance":"4108.22", + "value":"-5.15" + } + }, + { + "id":"66c191fc-fe30-44da-818d-70b0a503ad12", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T09:45:34.008Z", + "completed":"2016-04-11T09:45:34.008Z", + "new_balance":"4107.26", + "value":"-0.96" + } + }, + { + "id":"6f1c27a5-7ad2-49c2-a029-22667acf593d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T18:20:05.225Z", + "completed":"2016-04-11T18:20:05.225Z", + "new_balance":"4100.51", + "value":"-6.75" + } + }, + { + "id":"8a4849c4-6a6c-48f2-a54c-bfea250129ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T19:38:02.022Z", + "completed":"2016-04-11T19:38:02.022Z", + "new_balance":"4097.92", + "value":"-2.59" + } + }, + { + "id":"eaec351c-aac8-48c3-8b97-6ef71171bf6b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T23:45:41.978Z", + "completed":"2016-04-11T23:45:41.978Z", + "new_balance":"4095.50", + "value":"-2.42" + } + }, + { + "id":"5cc28565-19dd-469e-84f4-7488c020128f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T06:48:27.580Z", + "completed":"2016-04-21T06:48:27.580Z", + "new_balance":"4090.35", + "value":"-5.15" + } + }, + { + "id":"3e3d15f4-eb2d-4d0f-abe2-4503d18998c0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T05:57:33.209Z", + "completed":"2016-04-23T05:57:33.209Z", + "new_balance":"4088.93", + "value":"-1.42" + } + }, + { + "id":"f88fddce-e6b1-4a01-b848-757b7de764e2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T08:41:42.494Z", + "completed":"2016-04-29T08:41:42.494Z", + "new_balance":"4194.56", + "value":"105.63" + } + }, + { + "id":"917a6628-278f-4309-a3f8-a7a4c33a782d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T11:09:18.943Z", + "completed":"2016-04-29T11:09:18.943Z", + "new_balance":"4189.75", + "value":"-4.81" + } + }, + { + "id":"668bd08a-4f0a-407f-80ee-7e93c2d714a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T14:33:52.070Z", + "completed":"2016-04-29T14:33:52.070Z", + "new_balance":"4186.31", + "value":"-3.44" + } + }, + { + "id":"9f9e2c72-574b-4f6b-ba1a-75b0e43f0f1c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T00:36:14.322Z", + "completed":"2016-04-30T00:36:14.322Z", + "new_balance":"4182.04", + "value":"-4.27" + } + }, + { + "id":"b42006a8-dada-435d-b213-92abc26a5e35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T04:36:02.236Z", + "completed":"2016-05-02T04:36:02.236Z", + "new_balance":"4179.58", + "value":"-2.46" + } + }, + { + "id":"24d19658-3fc7-4588-a632-a869292ae4e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T08:19:48.937Z", + "completed":"2016-05-02T08:19:48.937Z", + "new_balance":"4121.35", + "value":"-58.23" + } + }, + { + "id":"49feeb53-3f75-49e3-8a9b-d9d64711c6c0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T08:55:44.531Z", + "completed":"2016-05-02T08:55:44.531Z", + "new_balance":"4114.16", + "value":"-7.19" + } + }, + { + "id":"7da56f77-c302-4d66-a284-949d7a6072ee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:36:14.416Z", + "completed":"2016-05-02T21:36:14.416Z", + "new_balance":"4107.76", + "value":"-6.40" + } + }, + { + "id":"c4d6c61a-1f37-4fe4-858b-839d721b734a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T00:44:49.880Z", + "completed":"2016-05-06T00:44:49.880Z", + "new_balance":"4103.34", + "value":"-4.42" + } + }, + { + "id":"0d72d228-9bd2-4549-a1c3-26ca72be7090", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T02:55:12.880Z", + "completed":"2016-05-07T02:55:12.880Z", + "new_balance":"4101.02", + "value":"-2.32" + } + }, + { + "id":"d08ea02a-86de-4dd3-afe3-9fc3532916f1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T05:46:21.220Z", + "completed":"2016-05-07T05:46:21.220Z", + "new_balance":"4097.99", + "value":"-3.03" + } + }, + { + "id":"f636c0e1-acb2-4eef-aee7-bfe71b4cc8b6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T05:53:33.028Z", + "completed":"2016-05-07T05:53:33.028Z", + "new_balance":"4093.50", + "value":"-4.49" + } + }, + { + "id":"6141f3c0-5c5b-4d50-be23-696dce9a39fb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T15:12:43.577Z", + "completed":"2016-05-07T15:12:43.577Z", + "new_balance":"4092.10", + "value":"-1.40" + } + }, + { + "id":"a6f34f33-af25-4614-8f04-e52d7a827d4c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T07:09:55.123Z", + "completed":"2016-05-08T07:09:55.123Z", + "new_balance":"4087.86", + "value":"-4.24" + } + }, + { + "id":"499fe0e2-bb21-491f-8e78-5333313fc176", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T07:07:01.956Z", + "completed":"2016-05-09T07:07:01.956Z", + "new_balance":"4084.42", + "value":"-3.44" + } + }, + { + "id":"1609769b-8a20-4f15-a74f-269e9c443a1b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T11:40:14.504Z", + "completed":"2016-05-13T11:40:14.504Z", + "new_balance":"4079.27", + "value":"-5.15" + } + }, + { + "id":"6c3c5400-b14a-4d41-b83e-73680d136370", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T05:12:13.801Z", + "completed":"2016-05-26T05:12:13.801Z", + "new_balance":"4074.12", + "value":"-5.15" + } + }, + { + "id":"f103000d-5c71-4d3a-b2a4-b34a831fd18f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:23:25.276Z", + "completed":"2016-05-26T21:23:25.276Z", + "new_balance":"4072.72", + "value":"-1.40" + } + }, + { + "id":"5b6cce99-8bad-40c7-b7f5-e47cf7473690", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T06:47:09.098Z", + "completed":"2016-05-27T06:47:09.098Z", + "new_balance":"4067.91", + "value":"-4.81" + } + }, + { + "id":"52ef1afd-0586-4d53-81ee-38bea1dd3cbe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T10:38:19.402Z", + "completed":"2016-05-27T10:38:19.402Z", + "new_balance":"4065.89", + "value":"-2.02" + } + }, + { + "id":"76b4c713-03fb-4bb7-a422-0b65187a134f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T01:44:22.806Z", + "completed":"2016-05-30T01:44:22.806Z", + "new_balance":"4171.52", + "value":"105.63" + } + }, + { + "id":"0fdb58e0-9015-42bc-ab9c-afabda90476c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T09:14:44.373Z", + "completed":"2016-05-30T09:14:44.373Z", + "new_balance":"4168.08", + "value":"-3.44" + } + }, + { + "id":"b2d60295-92fa-4de6-8026-9a79064613cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T13:39:45.432Z", + "completed":"2016-05-30T13:39:45.432Z", + "new_balance":"4163.81", + "value":"-4.27" + } + }, + { + "id":"b3677c74-1f28-4c22-a614-00f32ae49219", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T01:12:26.486Z", + "completed":"2016-06-01T01:12:26.486Z", + "new_balance":"4160.37", + "value":"-3.44" + } + }, + { + "id":"1e51db40-5aa6-46b0-891d-dceda50b5833", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T02:22:10.169Z", + "completed":"2016-06-01T02:22:10.169Z", + "new_balance":"4155.48", + "value":"-4.89" + } + }, + { + "id":"4918a65c-579b-4d48-b5f4-407db5107558", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T04:05:30.369Z", + "completed":"2016-06-01T04:05:30.369Z", + "new_balance":"4148.29", + "value":"-7.19" + } + }, + { + "id":"28279fc6-ea58-4cf4-9c0d-ea7dcfde9946", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T06:55:02.016Z", + "completed":"2016-06-01T06:55:02.016Z", + "new_balance":"4145.83", + "value":"-2.46" + } + }, + { + "id":"e0d1ba47-8da3-4e1e-b206-ee90f3859e84", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T14:54:32.988Z", + "completed":"2016-06-01T14:54:32.988Z", + "new_balance":"4139.43", + "value":"-6.40" + } + }, + { + "id":"81fe8d86-6911-4d1f-87ab-02d427eb7a43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T16:04:45.427Z", + "completed":"2016-06-01T16:04:45.427Z", + "new_balance":"4134.28", + "value":"-5.15" + } + }, + { + "id":"36677d70-69cd-4332-8028-03d64b8c686f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T16:19:26.592Z", + "completed":"2016-06-01T16:19:26.592Z", + "new_balance":"4076.05", + "value":"-58.23" + } + }, + { + "id":"c1a6f21f-299a-4c86-a95b-6eb69ee5f91c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T19:17:27.172Z", + "completed":"2016-06-01T19:17:27.172Z", + "new_balance":"4070.90", + "value":"-5.15" + } + }, + { + "id":"eb94f249-80b4-45bf-8a82-ae653add27ed", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:40:59.512Z", + "completed":"2016-06-01T22:40:59.512Z", + "new_balance":"4069.03", + "value":"-1.87" + } + }, + { + "id":"b2fd5030-0c13-4380-8198-d1081717e2f8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T17:24:24.909Z", + "completed":"2016-06-02T17:24:24.909Z", + "new_balance":"4067.45", + "value":"-1.58" + } + }, + { + "id":"f15dd33b-df47-411a-a942-10a34917fb19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T20:05:44.253Z", + "completed":"2016-06-02T20:05:44.253Z", + "new_balance":"4060.53", + "value":"-6.92" + } + }, + { + "id":"17779496-f9fe-47ae-9436-11da982f8d32", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T21:26:59.976Z", + "completed":"2016-06-02T21:26:59.976Z", + "new_balance":"4059.29", + "value":"-1.24" + } + }, + { + "id":"0e16fe90-e726-4a8f-9783-10df842986cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T03:50:56.556Z", + "completed":"2016-06-04T03:50:56.556Z", + "new_balance":"4054.60", + "value":"-4.69" + } + }, + { + "id":"3d799357-e662-44a0-a524-beb95b09c3e8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T08:23:56.276Z", + "completed":"2016-06-04T08:23:56.276Z", + "new_balance":"4052.46", + "value":"-2.14" + } + }, + { + "id":"b55dd62a-fa39-4575-acf6-97f1b476f060", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T14:53:49.709Z", + "completed":"2016-06-04T14:53:49.709Z", + "new_balance":"4048.19", + "value":"-4.27" + } + }, + { + "id":"b030404f-869a-458e-9a3a-bf84e4ffbd16", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:28:58.402Z", + "completed":"2016-06-05T10:28:58.402Z", + "new_balance":"4046.20", + "value":"-1.99" + } + }, + { + "id":"e23aad41-2a14-4704-b099-eb1916a91bb9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:29:45.820Z", + "completed":"2016-06-05T10:29:45.820Z", + "new_balance":"4041.78", + "value":"-4.42" + } + }, + { + "id":"09f12d5a-ec35-4269-8101-4e551e4eaed9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T18:34:03.763Z", + "completed":"2016-06-18T18:34:03.763Z", + "new_balance":"4036.63", + "value":"-5.15" + } + }, + { + "id":"4c357e5f-418c-489a-abe4-c76f807676cc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T00:32:10.695Z", + "completed":"2016-06-30T00:32:10.695Z", + "new_balance":"4033.19", + "value":"-3.44" + } + }, + { + "id":"c8411f0f-e0d3-49f0-8a07-22edc70349f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T14:07:26.675Z", + "completed":"2016-06-30T14:07:26.675Z", + "new_balance":"4030.08", + "value":"-3.11" + } + }, + { + "id":"45d45b90-86e7-40c5-b2d0-4381ccddeca8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T16:08:57.393Z", + "completed":"2016-06-30T16:08:57.393Z", + "new_balance":"4135.71", + "value":"105.63" + } + }, + { + "id":"7405f3d8-8921-4413-aadc-3afd349463fe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T23:39:47.344Z", + "completed":"2016-06-30T23:39:47.344Z", + "new_balance":"4131.44", + "value":"-4.27" + } + }, + { + "id":"275ccfbd-6249-4a90-87ca-1db77eb4f2c2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T19:35:29.951Z", + "completed":"2016-07-01T19:35:29.951Z", + "new_balance":"4125.04", + "value":"-6.40" + } + }, + { + "id":"c88a95b5-f0c4-4820-a0d9-9bf93781952c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T04:10:36.511Z", + "completed":"2016-07-03T04:10:36.511Z", + "new_balance":"4122.58", + "value":"-2.46" + } + }, + { + "id":"6d15aba0-8c04-4a31-8cde-c80692bb154c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T08:08:26.023Z", + "completed":"2016-07-03T08:08:26.023Z", + "new_balance":"4064.35", + "value":"-58.23" + } + }, + { + "id":"0b36b30b-76be-46db-b43f-907fb8a609b0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T15:57:27.864Z", + "completed":"2016-07-03T15:57:27.864Z", + "new_balance":"4057.16", + "value":"-7.19" + } + }, + { + "id":"efa8b258-ce7b-4202-857b-ee74bf6ced61", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T23:53:56.229Z", + "completed":"2016-07-03T23:53:56.229Z", + "new_balance":"4053.72", + "value":"-3.44" + } + }, + { + "id":"a108d833-8b43-4117-bf23-5fda92c9eded", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T10:24:22.516Z", + "completed":"2016-07-05T10:24:22.516Z", + "new_balance":"4049.30", + "value":"-4.42" + } + }, + { + "id":"7b9c788e-9b6c-43a7-bfec-98f1e06f4267", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T15:15:42.915Z", + "completed":"2016-07-05T15:15:42.915Z", + "new_balance":"4044.15", + "value":"-5.15" + } + }, + { + "id":"4b3b4bad-13b7-4441-93f2-0f9d45878fd2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T17:31:21.862Z", + "completed":"2016-07-05T17:31:21.862Z", + "new_balance":"4043.00", + "value":"-1.15" + } + }, + { + "id":"c7ca5ee6-ea1f-44a2-8f68-4a8cc91911df", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T10:36:49.332Z", + "completed":"2016-07-06T10:36:49.332Z", + "new_balance":"4040.68", + "value":"-2.32" + } + }, + { + "id":"8ca271e5-67ee-41d4-837c-d86627faf11f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T23:54:51.694Z", + "completed":"2016-07-06T23:54:51.694Z", + "new_balance":"4037.01", + "value":"-3.67" + } + }, + { + "id":"35bb3586-cb00-4dd9-b771-315c1f243cf7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T14:27:31.046Z", + "completed":"2016-07-07T14:27:31.046Z", + "new_balance":"4032.54", + "value":"-4.47" + } + }, + { + "id":"a2259c82-d349-4cb8-aa8a-c7e149f748c6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T13:26:16.172Z", + "completed":"2016-07-10T13:26:16.172Z", + "new_balance":"4027.39", + "value":"-5.15" + } + }, + { + "id":"e5adcb56-83f4-4ce1-a68b-7e9e7c528da3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T17:06:25.878Z", + "completed":"2016-07-10T17:06:25.878Z", + "new_balance":"4025.01", + "value":"-2.38" + } + }, + { + "id":"7264c4d8-8ead-446e-ba29-ed20a517ee5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T04:37:06.163Z", + "completed":"2016-07-12T04:37:06.163Z", + "new_balance":"4022.28", + "value":"-2.73" + } + }, + { + "id":"5cba017c-6a43-45a0-805e-97148f47213d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T08:27:17.978Z", + "completed":"2016-07-12T08:27:17.978Z", + "new_balance":"4019.82", + "value":"-2.46" + } + }, + { + "id":"5fb0585c-079f-4643-991c-ff9af46b7206", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:48:43.684Z", + "completed":"2016-07-12T16:48:43.684Z", + "new_balance":"4015.35", + "value":"-4.47" + } + }, + { + "id":"c5735514-17e2-4355-84eb-5c03e24bd5a0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T23:01:48.187Z", + "completed":"2016-07-15T23:01:48.187Z", + "new_balance":"4012.72", + "value":"-2.63" + } + }, + { + "id":"9d2d3716-b7d6-4957-9693-841b6365608f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T02:52:30.359Z", + "completed":"2016-07-16T02:52:30.359Z", + "new_balance":"4007.57", + "value":"-5.15" + } + }, + { + "id":"8c95e780-d220-4aac-a8ea-c725effa2929", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T05:43:12.304Z", + "completed":"2016-07-16T05:43:12.304Z", + "new_balance":"4006.61", + "value":"-0.96" + } + }, + { + "id":"e64d38db-08df-482a-8438-8f237714811b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T07:02:58.296Z", + "completed":"2016-07-17T07:02:58.296Z", + "new_balance":"4004.02", + "value":"-2.59" + } + }, + { + "id":"2a7bcc07-5d81-4375-9930-2d530a4f41c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:15:07.948Z", + "completed":"2016-07-17T14:15:07.948Z", + "new_balance":"3997.27", + "value":"-6.75" + } + }, + { + "id":"464012b8-3f9c-4890-a464-738bfd067fcf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T00:14:08.042Z", + "completed":"2016-07-19T00:14:08.042Z", + "new_balance":"3994.85", + "value":"-2.42" + } + }, + { + "id":"4330690e-0dcf-4800-bb20-dc26273e7078", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T19:02:13.783Z", + "completed":"2016-07-20T19:02:13.783Z", + "new_balance":"3989.70", + "value":"-5.15" + } + }, + { + "id":"45cf7ddf-2fe0-4920-b521-35f045215f26", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T12:38:38.658Z", + "completed":"2016-07-23T12:38:38.658Z", + "new_balance":"3988.28", + "value":"-1.42" + } + }, + { + "id":"05dbbe3a-85a5-431b-83bc-e1b338efcffa", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T10:50:23.291Z", + "completed":"2016-07-26T10:50:23.291Z", + "new_balance":"3983.47", + "value":"-4.81" + } + }, + { + "id":"d92d4cdc-3e79-4608-8487-f8fb267ddd9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T18:28:12.798Z", + "completed":"2016-07-27T18:28:12.798Z", + "new_balance":"4089.10", + "value":"105.63" + } + }, + { + "id":"89335dc6-a5bd-4b18-8ce3-fa1e0eec74ec", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T00:18:19.253Z", + "completed":"2016-07-28T00:18:19.253Z", + "new_balance":"4085.66", + "value":"-3.44" + } + }, + { + "id":"90af1d2e-00c3-4552-9427-0c211a4cf197", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T09:02:38.575Z", + "completed":"2016-07-30T09:02:38.575Z", + "new_balance":"4081.39", + "value":"-4.27" + } + }, + { + "id":"55fab2cc-1f07-4bda-b516-1e5012e3111b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T03:08:16.057Z", + "completed":"2016-08-01T03:08:16.057Z", + "new_balance":"4074.99", + "value":"-6.40" + } + }, + { + "id":"5f0f9429-ae2b-4224-873c-cc38a3c50e0f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T16:08:18.728Z", + "completed":"2016-08-03T16:08:18.728Z", + "new_balance":"4067.80", + "value":"-7.19" + } + }, + { + "id":"b7620393-dc99-4217-b49d-3ba4e430e51c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T19:20:15.310Z", + "completed":"2016-08-03T19:20:15.310Z", + "new_balance":"4064.36", + "value":"-3.44" + } + }, + { + "id":"f532fa20-2921-428d-a436-923e7d4d2b6f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T21:19:20.748Z", + "completed":"2016-08-03T21:19:20.748Z", + "new_balance":"4006.13", + "value":"-58.23" + } + }, + { + "id":"2712759e-860b-4dbf-8c88-68fb844c7c4d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T23:21:31.901Z", + "completed":"2016-08-03T23:21:31.901Z", + "new_balance":"4003.67", + "value":"-2.46" + } + }, + { + "id":"9fb207a5-1fce-46a3-9b4d-ef5a3c556e63", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T20:17:49.036Z", + "completed":"2016-08-08T20:17:49.036Z", + "new_balance":"3998.52", + "value":"-5.15" + } + }, + { + "id":"f3d0c9b5-dafd-4b39-ad90-a27a94109d42", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T21:42:21.358Z", + "completed":"2016-08-08T21:42:21.358Z", + "new_balance":"3994.10", + "value":"-4.42" + } + }, + { + "id":"c7ee1256-158e-49a4-9a2c-96d40e4ffbe0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T20:32:14.649Z", + "completed":"2016-08-11T20:32:14.649Z", + "new_balance":"3995.21", + "value":"1.11" + } + }, + { + "id":"699e0eb1-6539-4b63-b8ac-bbd510259930", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T13:12:55.100Z", + "completed":"2016-08-13T13:12:55.100Z", + "new_balance":"3992.89", + "value":"-2.32" + } + }, + { + "id":"875fafc3-c59d-46ed-bd96-f1111d414593", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:38:11.138Z", + "completed":"2016-08-14T09:38:11.138Z", + "new_balance":"3989.86", + "value":"-3.03" + } + }, + { + "id":"eaa06baf-a0a0-4bbb-ad9a-543212a2b42a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:04:25.122Z", + "completed":"2016-08-17T22:04:25.122Z", + "new_balance":"3988.46", + "value":"-1.40" + } + }, + { + "id":"0618b4f3-3bd7-483b-8c64-6fb3ea146706", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T01:43:47.048Z", + "completed":"2016-08-21T01:43:47.048Z", + "new_balance":"3983.97", + "value":"-4.49" + } + }, + { + "id":"f32c6a0c-356e-47d3-933b-a389569b02d3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T16:04:00.849Z", + "completed":"2016-08-23T16:04:00.849Z", + "new_balance":"3978.82", + "value":"-5.15" + } + }, + { + "id":"03a2fcc3-188d-49f5-b014-e7508ab87c60", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T17:31:03.000Z", + "completed":"2016-08-23T17:31:03.000Z", + "new_balance":"3974.58", + "value":"-4.24" + } + }, + { + "id":"937e1865-0983-4489-9352-36e8a957dbf5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T04:32:23.196Z", + "completed":"2016-08-24T04:32:23.196Z", + "new_balance":"3973.18", + "value":"-1.40" + } + }, + { + "id":"a09f5aab-8a76-49c7-8b55-962bc91b61ec", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T00:44:09.069Z", + "completed":"2016-08-27T00:44:09.069Z", + "new_balance":"3968.37", + "value":"-4.81" + } + }, + { + "id":"b711d929-1da8-4994-851c-e3994b266d6a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:56:00.096Z", + "completed":"2016-08-27T15:56:00.096Z", + "new_balance":"3966.35", + "value":"-2.02" + } + }, + { + "id":"4027dc83-63e2-49f4-abb3-8fbbd25d291d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T21:20:17.442Z", + "completed":"2016-08-27T21:20:17.442Z", + "new_balance":"4071.98", + "value":"105.63" + } + }, + { + "id":"f9604858-e666-4bec-9648-cbac9688b1d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T17:21:10.858Z", + "completed":"2016-08-28T17:21:10.858Z", + "new_balance":"4068.54", + "value":"-3.44" + } + }, + { + "id":"369bf32b-dcf0-49c8-a5c1-dabae1d1753d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T08:30:44.731Z", + "completed":"2016-08-30T08:30:44.731Z", + "new_balance":"4064.27", + "value":"-4.27" + } + }, + { + "id":"9bb519de-9944-43f2-8cdc-c37caeeedeff", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:26:52.853Z", + "completed":"2016-09-01T14:26:52.853Z", + "new_balance":"4057.87", + "value":"-6.40" + } + }, + { + "id":"86d57c39-8b1c-4940-bd85-f6b0198500ef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T06:44:13.373Z", + "completed":"2016-09-03T06:44:13.373Z", + "new_balance":"3999.64", + "value":"-58.23" + } + }, + { + "id":"2c0c0ae6-44b6-41fb-b2b5-c4a5f0294c35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T08:04:17.181Z", + "completed":"2016-09-03T08:04:17.181Z", + "new_balance":"3992.45", + "value":"-7.19" + } + }, + { + "id":"8a16403a-4e93-4457-bbc8-a0ce3b1ce141", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T21:16:04.061Z", + "completed":"2016-09-03T21:16:04.061Z", + "new_balance":"3989.01", + "value":"-3.44" + } + }, + { + "id":"59719cc6-9f46-46bb-beaa-57a6cb49cce8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T21:16:50.145Z", + "completed":"2016-09-03T21:16:50.145Z", + "new_balance":"3986.55", + "value":"-2.46" + } + }, + { + "id":"7d3025dd-7cce-46f0-b31e-806956f5b3c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T10:37:57.579Z", + "completed":"2016-09-05T10:37:57.579Z", + "new_balance":"3981.40", + "value":"-5.15" + } + }, + { + "id":"e4f47d0f-630b-4c88-93a6-4329fcdba9d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T23:34:07.236Z", + "completed":"2016-09-05T23:34:07.236Z", + "new_balance":"3976.51", + "value":"-4.89" + } + }, + { + "id":"dd458afc-97d9-426d-a991-9dc374b30cab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T13:13:18.731Z", + "completed":"2016-09-07T13:13:18.731Z", + "new_balance":"3974.64", + "value":"-1.87" + } + }, + { + "id":"0bb57fc8-5d82-47b1-ac92-65ce398cd901", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T11:37:33.353Z", + "completed":"2016-09-09T11:37:33.353Z", + "new_balance":"3969.49", + "value":"-5.15" + } + }, + { + "id":"9d3a3f57-ef92-4aa5-b85a-e35a67885249", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T05:58:58.956Z", + "completed":"2016-09-11T05:58:58.956Z", + "new_balance":"3967.91", + "value":"-1.58" + } + }, + { + "id":"216a0b8b-489d-4a2f-ab6f-3937ba08c581", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T19:07:27.257Z", + "completed":"2016-09-13T19:07:27.257Z", + "new_balance":"3960.99", + "value":"-6.92" + } + }, + { + "id":"2a6dc43e-3558-4cd9-8937-0d332e6db6be", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T07:43:14.469Z", + "completed":"2016-09-14T07:43:14.469Z", + "new_balance":"3959.75", + "value":"-1.24" + } + }, + { + "id":"845b80e0-349a-40a6-aa93-2effddc4f2ad", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:59:26.777Z", + "completed":"2016-09-14T19:59:26.777Z", + "new_balance":"3968.04", + "value":"8.29" + } + }, + { + "id":"8dcd0ea9-c45e-49ab-a1c3-eb81556dc34d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T01:49:19.123Z", + "completed":"2016-09-15T01:49:19.123Z", + "new_balance":"3963.77", + "value":"-4.27" + } + }, + { + "id":"626c3fed-e30f-4509-891d-c57b77d82627", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T00:41:03.416Z", + "completed":"2016-09-26T00:41:03.416Z", + "new_balance":"3959.08", + "value":"-4.69" + } + }, + { + "id":"ed4af60f-f940-4768-9cf9-03975a91cafc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:20:55.089Z", + "completed":"2016-09-26T11:20:55.089Z", + "new_balance":"3957.09", + "value":"-1.99" + } + }, + { + "id":"cacb66b3-f166-425b-a123-be01b43d64d2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T18:28:11.792Z", + "completed":"2016-09-26T18:28:11.792Z", + "new_balance":"3954.95", + "value":"-2.14" + } + }, + { + "id":"996ce5d8-5e87-4a6f-b2bf-ed13cf1fd168", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T06:39:26.236Z", + "completed":"2016-09-27T06:39:26.236Z", + "new_balance":"3949.80", + "value":"-5.15" + } + }, + { + "id":"e9cacf0b-a534-41ba-a7b9-3b02bcfc4618", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T13:11:37.521Z", + "completed":"2016-09-27T13:11:37.521Z", + "new_balance":"4055.43", + "value":"105.63" + } + }, + { + "id":"01c5df62-4032-4a8e-89cc-f126bae7e0cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T19:51:33.218Z", + "completed":"2016-09-27T19:51:33.218Z", + "new_balance":"4051.01", + "value":"-4.42" + } + }, + { + "id":"1a7f3d9d-9e3a-45da-a2f0-0a75ccd78c28", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T19:07:38.365Z", + "completed":"2016-09-28T19:07:38.365Z", + "new_balance":"4047.57", + "value":"-3.44" + } + }, + { + "id":"4e3a6eab-fbe0-4739-9743-330e67286089", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T05:27:35.859Z", + "completed":"2016-09-30T05:27:35.859Z", + "new_balance":"4043.30", + "value":"-4.27" + } + }, + { + "id":"30bef958-6342-4437-82e5-bb213908d11f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T00:41:55.075Z", + "completed":"2016-10-01T00:41:55.075Z", + "new_balance":"4039.86", + "value":"-3.44" + } + }, + { + "id":"1eb33353-965e-4792-a60b-90b6e2f7387e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T14:48:15.484Z", + "completed":"2016-10-01T14:48:15.484Z", + "new_balance":"4037.40", + "value":"-2.46" + } + }, + { + "id":"2d073eed-83ac-4bf6-97d5-0457f9bb41e6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T15:47:44.746Z", + "completed":"2016-10-01T15:47:44.746Z", + "new_balance":"4030.21", + "value":"-7.19" + } + }, + { + "id":"f25b846c-02ff-4dbb-8344-00fd0f6d1d51", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T17:12:18.124Z", + "completed":"2016-10-01T17:12:18.124Z", + "new_balance":"4023.81", + "value":"-6.40" + } + }, + { + "id":"4f6f111a-a3eb-49dd-a181-38ec11a12cfb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T18:35:42.015Z", + "completed":"2016-10-01T18:35:42.015Z", + "new_balance":"3965.58", + "value":"-58.23" + } + }, + { + "id":"4af44b49-d202-40f6-93ef-2e91aefda248", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T06:00:44.167Z", + "completed":"2016-10-05T06:00:44.167Z", + "new_balance":"3961.91", + "value":"-3.67" + } + }, + { + "id":"fac0c1b9-20a0-4c06-91a6-4fb7b15fbd75", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T11:00:49.499Z", + "completed":"2016-10-05T11:00:49.499Z", + "new_balance":"3957.49", + "value":"-4.42" + } + }, + { + "id":"1d1e46a5-c11b-490b-b3c7-66b0f81f0e07", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T15:49:54.819Z", + "completed":"2016-10-05T15:49:54.819Z", + "new_balance":"3956.34", + "value":"-1.15" + } + }, + { + "id":"2b3fc2eb-52c9-4fab-84de-a3c5de716e71", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T18:51:08.659Z", + "completed":"2016-10-05T18:51:08.659Z", + "new_balance":"3951.19", + "value":"-5.15" + } + }, + { + "id":"7bced924-f405-44d5-aa14-8521239f1c49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T02:49:56.256Z", + "completed":"2016-10-07T02:49:56.256Z", + "new_balance":"3948.87", + "value":"-2.32" + } + }, + { + "id":"40ef8aaf-3d42-4c5f-87fa-94514fafa2cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T02:21:03.575Z", + "completed":"2016-10-09T02:21:03.575Z", + "new_balance":"3943.72", + "value":"-5.15" + } + }, + { + "id":"2ed17db3-cd57-478e-849a-81418b472556", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T03:13:11.510Z", + "completed":"2016-10-09T03:13:11.510Z", + "new_balance":"3941.34", + "value":"-2.38" + } + }, + { + "id":"a83c4a95-268e-4532-8659-54a05136bc49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T10:03:47.076Z", + "completed":"2016-10-10T10:03:47.076Z", + "new_balance":"3938.71", + "value":"-2.63" + } + }, + { + "id":"60411dda-96b3-48c2-8c62-5e18ded59d16", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T11:11:19.376Z", + "completed":"2016-10-10T11:11:19.376Z", + "new_balance":"3934.24", + "value":"-4.47" + } + }, + { + "id":"34c8dbf8-f93d-4157-b1fd-8c3bc4bb3176", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:11:58.844Z", + "completed":"2016-10-10T12:11:58.844Z", + "new_balance":"3931.78", + "value":"-2.46" + } + }, + { + "id":"2a225f5b-371a-4b7f-91e6-b59bfdaec683", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T18:04:01.664Z", + "completed":"2016-10-10T18:04:01.664Z", + "new_balance":"3929.05", + "value":"-2.73" + } + }, + { + "id":"9104fac0-c93d-497e-8fbb-41348110dd79", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:09:07.756Z", + "completed":"2016-10-11T09:09:07.756Z", + "new_balance":"3928.09", + "value":"-0.96" + } + }, + { + "id":"5a7459cf-94a3-489e-84cc-8c39303ad27d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T09:47:55.946Z", + "completed":"2016-10-11T09:47:55.946Z", + "new_balance":"3925.67", + "value":"-2.42" + } + }, + { + "id":"4b88995e-c347-4da8-8a06-14dc93e8fcdf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:55:37.066Z", + "completed":"2016-10-11T14:55:37.066Z", + "new_balance":"3918.92", + "value":"-6.75" + } + }, + { + "id":"169d56d9-0464-4591-9948-b4100712586f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T15:12:29.081Z", + "completed":"2016-10-11T15:12:29.081Z", + "new_balance":"3913.77", + "value":"-5.15" + } + }, + { + "id":"7a63b2cf-63ce-4dc3-894a-86d31e921e36", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T22:25:52.225Z", + "completed":"2016-10-11T22:25:52.225Z", + "new_balance":"3911.18", + "value":"-2.59" + } + }, + { + "id":"8b221f91-93d0-42de-8fe3-6f1562da7d68", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T05:42:46.717Z", + "completed":"2016-10-21T05:42:46.717Z", + "new_balance":"3906.03", + "value":"-5.15" + } + }, + { + "id":"c65d6f6c-ab6a-4bdf-b9e2-feeb18ae6166", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T06:37:06.689Z", + "completed":"2016-10-23T06:37:06.689Z", + "new_balance":"3904.61", + "value":"-1.42" + } + }, + { + "id":"fd21a003-6ea7-425e-98d1-babf301f7791", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T00:39:33.049Z", + "completed":"2016-10-29T00:39:33.049Z", + "new_balance":"3901.17", + "value":"-3.44" + } + }, + { + "id":"e5e0d36c-b559-426a-af60-bd9d6964a797", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T04:04:06.941Z", + "completed":"2016-10-29T04:04:06.941Z", + "new_balance":"4006.80", + "value":"105.63" + } + }, + { + "id":"f1c4134e-3816-4b55-b0ad-2e097bf33aa6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T11:39:51.555Z", + "completed":"2016-10-29T11:39:51.555Z", + "new_balance":"4001.99", + "value":"-4.81" + } + }, + { + "id":"515ac4d0-1d1e-414d-a366-497a0b35038d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T03:57:02.547Z", + "completed":"2016-10-30T03:57:02.547Z", + "new_balance":"3997.72", + "value":"-4.27" + } + }, + { + "id":"2bf869c8-fe41-4343-b0ca-919d08af685a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T09:12:58.859Z", + "completed":"2016-11-02T09:12:58.859Z", + "new_balance":"3939.49", + "value":"-58.23" + } + }, + { + "id":"6fdc5cae-765a-4fcb-8395-2c552c5580ac", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T09:31:24.835Z", + "completed":"2016-11-02T09:31:24.835Z", + "new_balance":"3937.03", + "value":"-2.46" + } + }, + { + "id":"9f33b671-ba50-4b61-8a23-d82bc20f56e5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T17:02:53.970Z", + "completed":"2016-11-02T17:02:53.970Z", + "new_balance":"3930.63", + "value":"-6.40" + } + }, + { + "id":"b168a82c-f3c2-4208-a29a-48fdee4f420e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:53:29.799Z", + "completed":"2016-11-02T19:53:29.799Z", + "new_balance":"3923.44", + "value":"-7.19" + } + }, + { + "id":"95aa217b-4844-481e-bf49-6372c2961b2f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T21:40:46.762Z", + "completed":"2016-11-06T21:40:46.762Z", + "new_balance":"3919.02", + "value":"-4.42" + } + }, + { + "id":"8ab1eb54-6549-4ae1-9227-c0278d13fda4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T05:53:49.051Z", + "completed":"2016-11-07T05:53:49.051Z", + "new_balance":"3916.70", + "value":"-2.32" + } + }, + { + "id":"a3c0bb50-ed8b-40b8-a34c-fb836fe36861", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:40:36.668Z", + "completed":"2016-11-07T07:40:36.668Z", + "new_balance":"3913.67", + "value":"-3.03" + } + }, + { + "id":"6bf5697d-46ea-4a04-922e-c3be54fdc2e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T08:20:50.721Z", + "completed":"2016-11-07T08:20:50.721Z", + "new_balance":"3912.27", + "value":"-1.40" + } + }, + { + "id":"07b0ac29-2fc8-4095-a108-222feecb0e4b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T14:06:39.613Z", + "completed":"2016-11-07T14:06:39.613Z", + "new_balance":"3907.78", + "value":"-4.49" + } + }, + { + "id":"4713db06-54fe-4023-9623-c13552e78b01", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T05:53:39.753Z", + "completed":"2016-11-08T05:53:39.753Z", + "new_balance":"3903.54", + "value":"-4.24" + } + }, + { + "id":"7df3d3ad-a507-40a0-9162-ccbfaf6ff341", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T11:28:29.223Z", + "completed":"2016-11-09T11:28:29.223Z", + "new_balance":"3900.10", + "value":"-3.44" + } + }, + { + "id":"fa6e6c07-7514-4b5e-b6fb-1ef71bc919ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T20:48:43.876Z", + "completed":"2016-11-13T20:48:43.876Z", + "new_balance":"3894.95", + "value":"-5.15" + } + }, + { + "id":"c7c627df-9002-4d4c-8aa9-89f62b875324", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T06:59:28.318Z", + "completed":"2016-11-26T06:59:28.318Z", + "new_balance":"3893.55", + "value":"-1.40" + } + }, + { + "id":"2167470e-382a-4da3-8080-522168f613b2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T09:02:07.777Z", + "completed":"2016-11-26T09:02:07.777Z", + "new_balance":"3888.40", + "value":"-5.15" + } + }, + { + "id":"2b254eeb-d2ab-437c-bba8-432db9665cd9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T02:27:23.766Z", + "completed":"2016-11-27T02:27:23.766Z", + "new_balance":"3886.38", + "value":"-2.02" + } + }, + { + "id":"02ad4e91-ae43-4cd8-b128-961fc6dd9bb7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T23:02:06.464Z", + "completed":"2016-11-27T23:02:06.464Z", + "new_balance":"3881.57", + "value":"-4.81" + } + }, + { + "id":"f8218776-2790-4146-adff-1eed27d05ea0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T03:00:06.054Z", + "completed":"2016-11-30T03:00:06.054Z", + "new_balance":"3877.30", + "value":"-4.27" + } + }, + { + "id":"df1f180b-9e99-40e9-913a-41c6cb1e3bab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T08:11:54.440Z", + "completed":"2016-11-30T08:11:54.440Z", + "new_balance":"3982.93", + "value":"105.63" + } + }, + { + "id":"857ffd31-6102-47e2-a7b1-8b805bfc3213", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T11:37:39.736Z", + "completed":"2016-11-30T11:37:39.736Z", + "new_balance":"3979.49", + "value":"-3.44" + } + }, + { + "id":"f1249ee8-6945-4016-bc74-5c4aa9be856d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T00:35:58.764Z", + "completed":"2016-12-01T00:35:58.764Z", + "new_balance":"3974.34", + "value":"-5.15" + } + }, + { + "id":"b56f2c85-14c2-4f33-b639-3b4531da9e42", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T06:06:05.841Z", + "completed":"2016-12-01T06:06:05.841Z", + "new_balance":"3967.94", + "value":"-6.40" + } + }, + { + "id":"9a6b8c4f-5cbb-484b-9f9a-d8f412ef0ac2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T07:08:54.699Z", + "completed":"2016-12-01T07:08:54.699Z", + "new_balance":"3909.71", + "value":"-58.23" + } + }, + { + "id":"8935a2e8-ecf2-4604-ba85-7236fe9f5b3c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T12:54:22.174Z", + "completed":"2016-12-01T12:54:22.174Z", + "new_balance":"3907.84", + "value":"-1.87" + } + }, + { + "id":"850c8fcf-bee5-43ff-84da-61f5748de535", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T13:39:57.182Z", + "completed":"2016-12-01T13:39:57.182Z", + "new_balance":"3904.40", + "value":"-3.44" + } + }, + { + "id":"763cff49-5eb1-4409-bee7-34870266ea3d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T17:46:11.854Z", + "completed":"2016-12-01T17:46:11.854Z", + "new_balance":"3899.25", + "value":"-5.15" + } + }, + { + "id":"dbcff484-8971-4963-bb07-15f9da220660", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T20:59:46.124Z", + "completed":"2016-12-01T20:59:46.124Z", + "new_balance":"3896.79", + "value":"-2.46" + } + }, + { + "id":"37af922c-54eb-4529-b160-e1c0af5f4a51", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T21:08:19.934Z", + "completed":"2016-12-01T21:08:19.934Z", + "new_balance":"3889.60", + "value":"-7.19" + } + }, + { + "id":"0d359d15-a571-493a-9ea4-ffaa401097fa", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T22:33:26.786Z", + "completed":"2016-12-01T22:33:26.786Z", + "new_balance":"3884.71", + "value":"-4.89" + } + }, + { + "id":"0371c737-11f5-4c70-9724-bde9d2630fe7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T03:47:44.896Z", + "completed":"2016-12-02T03:47:44.896Z", + "new_balance":"3883.47", + "value":"-1.24" + } + }, + { + "id":"0dffbec7-3de7-45f9-be21-cf48120b77ef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T07:47:09.641Z", + "completed":"2016-12-02T07:47:09.641Z", + "new_balance":"3881.89", + "value":"-1.58" + } + }, + { + "id":"db88c1e0-d068-42ac-914a-b9d6f7ecffe5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T08:58:36.077Z", + "completed":"2016-12-02T08:58:36.077Z", + "new_balance":"3874.97", + "value":"-6.92" + } + }, + { + "id":"4b75652e-cbb6-447e-8f39-a472b9bbd334", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T01:10:04.205Z", + "completed":"2016-12-04T01:10:04.205Z", + "new_balance":"3870.70", + "value":"-4.27" + } + }, + { + "id":"657259e1-5de6-4a82-bb49-893d27cf1877", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:13:41.307Z", + "completed":"2016-12-04T14:13:41.307Z", + "new_balance":"3868.56", + "value":"-2.14" + } + }, + { + "id":"dcd68de8-959d-4d48-b0c1-137fc07fa15b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T21:50:32.043Z", + "completed":"2016-12-04T21:50:32.043Z", + "new_balance":"3863.87", + "value":"-4.69" + } + }, + { + "id":"7d69bb4f-ea9a-402b-92e7-ad3d444091c8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:05:41.523Z", + "completed":"2016-12-05T06:05:41.523Z", + "new_balance":"3861.88", + "value":"-1.99" + } + }, + { + "id":"0e796a4e-4a41-422d-82fc-97ddeb3be484", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T08:17:21.832Z", + "completed":"2016-12-05T08:17:21.832Z", + "new_balance":"3857.46", + "value":"-4.42" + } + }, + { + "id":"3b27fa9c-f8d3-4c11-89b2-2776a1ff600d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T22:07:55.312Z", + "completed":"2016-12-18T22:07:55.312Z", + "new_balance":"3852.31", + "value":"-5.15" + } + }, + { + "id":"887c6439-5bc6-4a71-8ff2-041e99d404da", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T02:05:46.738Z", + "completed":"2016-12-30T02:05:46.738Z", + "new_balance":"3848.04", + "value":"-4.27" + } + }, + { + "id":"d8d76836-bae6-472b-aa3c-6c4fa268a33a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T03:52:23.009Z", + "completed":"2016-12-30T03:52:23.009Z", + "new_balance":"3953.67", + "value":"105.63" + } + }, + { + "id":"897e1b81-1aee-4594-bb4f-9e91b6c9d3a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T15:09:43.534Z", + "completed":"2016-12-30T15:09:43.534Z", + "new_balance":"3950.23", + "value":"-3.44" + } + }, + { + "id":"29132dae-7fee-42bd-a2ae-3705c8af39a1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T17:47:46.106Z", + "completed":"2016-12-30T17:47:46.106Z", + "new_balance":"3947.12", + "value":"-3.11" + } + }, + { + "id":"e05c0cf2-82f5-4c7b-a15d-2e3858cee890", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T11:36:17.724Z", + "completed":"2017-01-01T11:36:17.724Z", + "new_balance":"3940.72", + "value":"-6.40" + } + }, + { + "id":"0debb36e-910b-4d68-b8b9-4ec51b6f570b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:07:51.240Z", + "completed":"2017-01-01T12:07:51.240Z", + "new_balance":"3934.32", + "value":"-6.40" + } + }, + { + "id":"4c86bcd4-9620-43e1-97b6-065b84925531", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T02:53:05.106Z", + "completed":"2017-01-03T02:53:05.106Z", + "new_balance":"3876.09", + "value":"-58.23" + } + }, + { + "id":"b0a06038-16d2-4807-b791-137c4a8ca650", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T11:17:01.801Z", + "completed":"2017-01-03T11:17:01.801Z", + "new_balance":"3872.65", + "value":"-3.44" + } + }, + { + "id":"e68404d6-61c8-4e95-b736-67a7231d4234", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T12:22:33.603Z", + "completed":"2017-01-03T12:22:33.603Z", + "new_balance":"3870.19", + "value":"-2.46" + } + }, + { + "id":"d94d554d-d3ea-4839-9fea-13fb368be9bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T22:41:09.783Z", + "completed":"2017-01-03T22:41:09.783Z", + "new_balance":"3863.00", + "value":"-7.19" + } + }, + { + "id":"28b99851-e194-432c-a2cb-889d42f860b6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T18:46:24.842Z", + "completed":"2017-01-05T18:46:24.842Z", + "new_balance":"3857.85", + "value":"-5.15" + } + }, + { + "id":"65ce5d99-26fb-47b9-a1ff-3d61207d875c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T20:41:17.475Z", + "completed":"2017-01-05T20:41:17.475Z", + "new_balance":"3853.43", + "value":"-4.42" + } + }, + { + "id":"679f1f27-48ff-4c64-89b9-7d2272678903", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T22:32:38.786Z", + "completed":"2017-01-05T22:32:38.786Z", + "new_balance":"3852.28", + "value":"-1.15" + } + }, + { + "id":"4e5dcd2e-aefd-44c0-bac7-edccfab0b92f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:33:55.585Z", + "completed":"2017-01-06T06:33:55.585Z", + "new_balance":"3848.61", + "value":"-3.67" + } + }, + { + "id":"ef39f845-57a2-41af-bee2-40083bfec38b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T21:23:00.405Z", + "completed":"2017-01-06T21:23:00.405Z", + "new_balance":"3846.29", + "value":"-2.32" + } + }, + { + "id":"e58a6c70-1fe0-48ae-b340-e4ad47bb123e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T09:22:57.250Z", + "completed":"2017-01-07T09:22:57.250Z", + "new_balance":"3841.82", + "value":"-4.47" + } + }, + { + "id":"613af60e-f0d3-4647-b993-c85d90daaec5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T03:38:20.778Z", + "completed":"2017-01-10T03:38:20.778Z", + "new_balance":"3839.44", + "value":"-2.38" + } + }, + { + "id":"b2b20f83-faea-400d-98c1-7e1c9f3a4a49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T09:06:41.167Z", + "completed":"2017-01-10T09:06:41.167Z", + "new_balance":"3834.29", + "value":"-5.15" + } + }, + { + "id":"dfd241e9-3f31-4b8c-85dc-c3d601d73327", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T00:46:46.777Z", + "completed":"2017-01-12T00:46:46.777Z", + "new_balance":"3829.82", + "value":"-4.47" + } + }, + { + "id":"ca530f8f-1207-40d1-8978-b33fd3d8555a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T01:24:44.971Z", + "completed":"2017-01-12T01:24:44.971Z", + "new_balance":"3827.09", + "value":"-2.73" + } + }, + { + "id":"4e927607-2fd0-4b27-9322-535f466a6216", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:11:27.539Z", + "completed":"2017-01-12T23:11:27.539Z", + "new_balance":"3824.63", + "value":"-2.46" + } + }, + { + "id":"a139e296-a83b-4ad7-b8a6-bf66eef93229", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T03:21:13.861Z", + "completed":"2017-01-15T03:21:13.861Z", + "new_balance":"3822.00", + "value":"-2.63" + } + }, + { + "id":"80a8dbce-e535-4bb0-b941-e273a0466d07", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T03:57:59.659Z", + "completed":"2017-01-16T03:57:59.659Z", + "new_balance":"3816.85", + "value":"-5.15" + } + }, + { + "id":"03143920-f4ef-4351-899e-fe3a76674ac3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T08:02:05.666Z", + "completed":"2017-01-16T08:02:05.666Z", + "new_balance":"3815.89", + "value":"-0.96" + } + }, + { + "id":"29ddc4a2-36a0-4b5d-89e2-d80fe0e938dc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T06:26:13.972Z", + "completed":"2017-01-17T06:26:13.972Z", + "new_balance":"3813.30", + "value":"-2.59" + } + }, + { + "id":"01bb54f1-e952-4218-81b8-a1db21832b8a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T06:48:12.345Z", + "completed":"2017-01-17T06:48:12.345Z", + "new_balance":"3806.55", + "value":"-6.75" + } + }, + { + "id":"91da3ab2-a851-457e-a48a-fa61ab442508", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T21:10:30.091Z", + "completed":"2017-01-19T21:10:30.091Z", + "new_balance":"3804.13", + "value":"-2.42" + } + }, + { + "id":"198214c6-70e0-4ac4-a55f-1951c0906326", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T11:14:58.807Z", + "completed":"2017-01-20T11:14:58.807Z", + "new_balance":"3798.98", + "value":"-5.15" + } + }, + { + "id":"619c0455-68fa-48fa-8cc7-ff20a78a7730", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T04:27:38.445Z", + "completed":"2017-01-23T04:27:38.445Z", + "new_balance":"3797.56", + "value":"-1.42" + } + }, + { + "id":"3eab1467-f511-444c-aff2-5c0cac24f716", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T03:25:49.585Z", + "completed":"2017-01-26T03:25:49.585Z", + "new_balance":"3792.75", + "value":"-4.81" + } + }, + { + "id":"4726f975-1f5e-40c3-93f7-585ccb20caa2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T10:22:34.419Z", + "completed":"2017-01-27T10:22:34.419Z", + "new_balance":"3898.38", + "value":"105.63" + } + }, + { + "id":"8821e349-1b0b-4bfe-b157-4d20e4618c5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T07:33:08.043Z", + "completed":"2017-01-28T07:33:08.043Z", + "new_balance":"3894.94", + "value":"-3.44" + } + }, + { + "id":"b7c0887d-434f-4f42-b4cb-c571060f3dc6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T19:34:35.171Z", + "completed":"2017-01-30T19:34:35.171Z", + "new_balance":"3890.67", + "value":"-4.27" + } + }, + { + "id":"49ed0207-020a-4164-8c5a-956a490e18b5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T08:37:18.045Z", + "completed":"2017-02-03T08:37:18.045Z", + "new_balance":"3883.48", + "value":"-7.19" + } + }, + { + "id":"5edd19a3-c99b-43e2-aae7-d9951be62c1e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T13:02:08.027Z", + "completed":"2017-02-03T13:02:08.027Z", + "new_balance":"3880.04", + "value":"-3.44" + } + }, + { + "id":"f1e8252e-7fc1-4f56-8fd0-245747a602c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T17:25:18.906Z", + "completed":"2017-02-03T17:25:18.906Z", + "new_balance":"3877.58", + "value":"-2.46" + } + }, + { + "id":"f9b9ee04-d39b-4bc3-9a41-32c31c29d9b8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T21:36:34.642Z", + "completed":"2017-02-03T21:36:34.642Z", + "new_balance":"3819.35", + "value":"-58.23" + } + }, + { + "id":"45b7ec39-a69e-4e9e-a642-4f5dcac32e63", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T01:05:33.311Z", + "completed":"2017-02-08T01:05:33.311Z", + "new_balance":"3814.20", + "value":"-5.15" + } + }, + { + "id":"9b0588c8-fbc6-4146-b1c5-10dcde0b41d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T23:30:51.710Z", + "completed":"2017-02-08T23:30:51.710Z", + "new_balance":"3809.78", + "value":"-4.42" + } + }, + { + "id":"a6ce8afb-a7f6-4f3f-976c-c11041367d55", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T16:47:39.043Z", + "completed":"2017-02-11T16:47:39.043Z", + "new_balance":"3810.89", + "value":"1.11" + } + }, + { + "id":"7cb1af61-0145-4d3d-b4f4-6e54996f2f85", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T01:07:46.762Z", + "completed":"2017-02-13T01:07:46.762Z", + "new_balance":"3808.57", + "value":"-2.32" + } + }, + { + "id":"c9381b4a-845a-4523-8b6d-2f08a434890f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T20:50:41.500Z", + "completed":"2017-02-14T20:50:41.500Z", + "new_balance":"3805.54", + "value":"-3.03" + } + }, + { + "id":"4a15a6b2-0b27-43ac-acf1-4ede2724b7d1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T22:05:46.544Z", + "completed":"2017-02-17T22:05:46.544Z", + "new_balance":"3804.14", + "value":"-1.40" + } + }, + { + "id":"ca0bbad3-9548-4850-918b-49aac1acc8bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T19:53:20.367Z", + "completed":"2017-02-21T19:53:20.367Z", + "new_balance":"3799.65", + "value":"-4.49" + } + }, + { + "id":"582cfb44-153a-4a3f-8e3e-26fae57320ad", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T17:33:59.747Z", + "completed":"2017-02-23T17:33:59.747Z", + "new_balance":"3794.50", + "value":"-5.15" + } + }, + { + "id":"4ed76d3d-b3ba-4b61-9cf0-101b7f3d8d09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T23:00:00.682Z", + "completed":"2017-02-23T23:00:00.682Z", + "new_balance":"3790.26", + "value":"-4.24" + } + }, + { + "id":"60825275-9619-4d2d-9826-1ae9b45848dc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T02:12:33.767Z", + "completed":"2017-02-24T02:12:33.767Z", + "new_balance":"3788.86", + "value":"-1.40" + } + }, + { + "id":"51f24054-5d86-4771-9f6e-4498ccef41a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T04:09:16.920Z", + "completed":"2017-02-27T04:09:16.920Z", + "new_balance":"3894.49", + "value":"105.63" + } + }, + { + "id":"b85b26aa-faac-4af5-923e-61cbb09e8135", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T13:28:31.853Z", + "completed":"2017-02-27T13:28:31.853Z", + "new_balance":"3892.47", + "value":"-2.02" + } + }, + { + "id":"b5482b66-3f6a-4e55-9502-05ddbd42e575", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T16:53:00.686Z", + "completed":"2017-02-27T16:53:00.686Z", + "new_balance":"3887.66", + "value":"-4.81" + } + }, + { + "id":"b4662f67-2903-47c5-b0f4-20541f11a898", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T00:06:27.645Z", + "completed":"2017-02-28T00:06:27.645Z", + "new_balance":"3884.22", + "value":"-3.44" + } + }, + { + "id":"1ebf9954-9031-4858-a069-3ff9ad3e4650", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T16:34:31.896Z", + "completed":"2017-02-28T16:34:31.896Z", + "new_balance":"3879.95", + "value":"-4.27" + } + }, + { + "id":"a21c7eb3-f175-42d0-859c-c0fb1fa96a4b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T00:59:35.885Z", + "completed":"2017-03-01T00:59:35.885Z", + "new_balance":"3873.55", + "value":"-6.40" + } + }, + { + "id":"2f887dca-8d4c-4f70-b5cc-b289f925dcb2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T09:44:23.316Z", + "completed":"2017-03-03T09:44:23.316Z", + "new_balance":"3815.32", + "value":"-58.23" + } + }, + { + "id":"493f7a5b-f942-4477-8819-bcd5034cb03a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T14:30:48.750Z", + "completed":"2017-03-03T14:30:48.750Z", + "new_balance":"3811.88", + "value":"-3.44" + } + }, + { + "id":"999d0042-07d2-4dff-acde-d6922cb39c2a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T17:52:38.173Z", + "completed":"2017-03-03T17:52:38.173Z", + "new_balance":"3809.42", + "value":"-2.46" + } + }, + { + "id":"9fbbccc6-c206-4030-9b92-91d40a21ef08", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T18:47:13.798Z", + "completed":"2017-03-03T18:47:13.798Z", + "new_balance":"3802.23", + "value":"-7.19" + } + }, + { + "id":"838e5a5a-87d3-44fe-af5e-9f682c41eb09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T02:58:26.436Z", + "completed":"2017-03-05T02:58:26.436Z", + "new_balance":"3797.08", + "value":"-5.15" + } + }, + { + "id":"c864c634-daa5-423d-9239-a6190a06a040", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T18:16:23.425Z", + "completed":"2017-03-05T18:16:23.425Z", + "new_balance":"3792.19", + "value":"-4.89" + } + }, + { + "id":"e6cec0a3-32da-4717-85e7-3022904a207a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T17:57:13.954Z", + "completed":"2017-03-07T17:57:13.954Z", + "new_balance":"3790.32", + "value":"-1.87" + } + }, + { + "id":"381701f1-0c85-4445-b1d1-902a5178e029", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T14:27:30.936Z", + "completed":"2017-03-09T14:27:30.936Z", + "new_balance":"3785.17", + "value":"-5.15" + } + }, + { + "id":"f65e51c7-46dc-4a72-ade9-31cd2bb5cb0e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T10:06:30.772Z", + "completed":"2017-03-11T10:06:30.772Z", + "new_balance":"3783.59", + "value":"-1.58" + } + }, + { + "id":"dc7bbcb0-6a12-4423-99ca-ece1f18877a8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T02:40:46.815Z", + "completed":"2017-03-13T02:40:46.815Z", + "new_balance":"3776.67", + "value":"-6.92" + } + }, + { + "id":"e8ca1f22-70bd-4b4c-be0f-dff11b210a18", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T05:43:57.821Z", + "completed":"2017-03-14T05:43:57.821Z", + "new_balance":"3775.43", + "value":"-1.24" + } + }, + { + "id":"b8b55566-e609-4141-8ddb-21e0957fc14b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:53:24.386Z", + "completed":"2017-03-14T08:53:24.386Z", + "new_balance":"3783.72", + "value":"8.29" + } + }, + { + "id":"d17014c9-b3aa-4f3d-934e-1a8e6aa351c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T12:10:04.939Z", + "completed":"2017-03-15T12:10:04.939Z", + "new_balance":"3779.45", + "value":"-4.27" + } + }, + { + "id":"3130e198-ecfb-4511-bd47-e430fe125432", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T01:55:13.819Z", + "completed":"2017-03-26T01:55:13.819Z", + "new_balance":"3777.46", + "value":"-1.99" + } + }, + { + "id":"bca2fb24-ad29-497c-95be-efd0e587b93b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T18:15:27.421Z", + "completed":"2017-03-26T18:15:27.421Z", + "new_balance":"3772.77", + "value":"-4.69" + } + }, + { + "id":"2c58998c-494a-46d6-8a49-347c36aef5f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T19:41:51.472Z", + "completed":"2017-03-26T19:41:51.472Z", + "new_balance":"3770.63", + "value":"-2.14" + } + }, + { + "id":"e4d204e4-3cad-4706-a9ee-fb369247f607", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T02:06:12.222Z", + "completed":"2017-03-27T02:06:12.222Z", + "new_balance":"3766.21", + "value":"-4.42" + } + }, + { + "id":"fc85881b-226a-4af5-bef2-aa8ae968c85e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T13:45:35.439Z", + "completed":"2017-03-27T13:45:35.439Z", + "new_balance":"3871.84", + "value":"105.63" + } + }, + { + "id":"80d3bdca-a4b2-4237-9917-8496160e6641", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T21:19:19.973Z", + "completed":"2017-03-27T21:19:19.973Z", + "new_balance":"3866.69", + "value":"-5.15" + } + }, + { + "id":"89036a87-c08d-4f5e-a92c-4ab979604764", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T20:27:11.421Z", + "completed":"2017-03-28T20:27:11.421Z", + "new_balance":"3863.25", + "value":"-3.44" + } + }, + { + "id":"708195f7-80d6-41b8-a725-a62494cda82b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T00:00:03.609Z", + "completed":"2017-03-30T00:00:03.609Z", + "new_balance":"3858.98", + "value":"-4.27" + } + }, + { + "id":"516363f7-ff15-42ce-98b9-fc8d682ab08b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T18:21:43.137Z", + "completed":"2017-04-01T18:21:43.137Z", + "new_balance":"3856.52", + "value":"-2.46" + } + }, + { + "id":"b79c8c61-59b5-49ef-85c3-24f49cf7518b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T18:29:46.966Z", + "completed":"2017-04-01T18:29:46.966Z", + "new_balance":"3849.33", + "value":"-7.19" + } + }, + { + "id":"d9dd621c-c2c1-4a2f-975d-72d7d2c51ba6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T18:53:08.856Z", + "completed":"2017-04-01T18:53:08.856Z", + "new_balance":"3791.10", + "value":"-58.23" + } + }, + { + "id":"b8cac2c3-041a-4611-977f-60f0e4c40f5c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T19:15:42.383Z", + "completed":"2017-04-01T19:15:42.383Z", + "new_balance":"3787.66", + "value":"-3.44" + } + }, + { + "id":"ee18377e-7c46-460c-89cd-5d234a574b2b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T20:39:06.466Z", + "completed":"2017-04-01T20:39:06.466Z", + "new_balance":"3781.26", + "value":"-6.40" + } + }, + { + "id":"de9723d1-af8e-430f-903e-fe8cc78feca1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T06:08:56.202Z", + "completed":"2017-04-05T06:08:56.202Z", + "new_balance":"3777.59", + "value":"-3.67" + } + }, + { + "id":"f9227ccc-ff13-4e3c-a1f5-5800730e0705", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T10:00:58.885Z", + "completed":"2017-04-05T10:00:58.885Z", + "new_balance":"3773.17", + "value":"-4.42" + } + }, + { + "id":"b34a0e4b-c380-424b-8d5b-fa5a1fc03914", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T12:04:38.284Z", + "completed":"2017-04-05T12:04:38.284Z", + "new_balance":"3772.02", + "value":"-1.15" + } + }, + { + "id":"f9ca1049-a64f-4d77-8be8-816940e65f9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T21:31:36.905Z", + "completed":"2017-04-05T21:31:36.905Z", + "new_balance":"3766.87", + "value":"-5.15" + } + }, + { + "id":"2ae6f389-94d1-4df7-b8f8-148a33a7dd35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T14:06:34.381Z", + "completed":"2017-04-07T14:06:34.381Z", + "new_balance":"3764.55", + "value":"-2.32" + } + }, + { + "id":"4ecb722c-45cc-4bbf-aa62-a4956b866262", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T10:49:37.609Z", + "completed":"2017-04-09T10:49:37.609Z", + "new_balance":"3759.40", + "value":"-5.15" + } + }, + { + "id":"7e5cad33-ad0e-43c7-9e20-58c23bf7e911", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T17:03:14.581Z", + "completed":"2017-04-09T17:03:14.581Z", + "new_balance":"3757.02", + "value":"-2.38" + } + }, + { + "id":"02cb7dd8-cfb6-4e95-b2e7-896c4a234334", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T03:55:36.873Z", + "completed":"2017-04-10T03:55:36.873Z", + "new_balance":"3752.55", + "value":"-4.47" + } + }, + { + "id":"6f4431e0-cef5-414a-b9d2-89216636041e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T10:34:34.677Z", + "completed":"2017-04-10T10:34:34.677Z", + "new_balance":"3750.09", + "value":"-2.46" + } + }, + { + "id":"69cbb3a4-7b50-46cd-826a-64dedf04beb4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T17:11:02.743Z", + "completed":"2017-04-10T17:11:02.743Z", + "new_balance":"3747.36", + "value":"-2.73" + } + }, + { + "id":"d76ebaed-8b8b-4773-9083-c21e5c23bc27", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T19:53:34.418Z", + "completed":"2017-04-10T19:53:34.418Z", + "new_balance":"3744.73", + "value":"-2.63" + } + }, + { + "id":"88a39b93-349f-442f-a2c7-61585913a87e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T04:01:59.099Z", + "completed":"2017-04-11T04:01:59.099Z", + "new_balance":"3739.58", + "value":"-5.15" + } + }, + { + "id":"99882bba-c99c-4a9a-b373-38417ac53916", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T09:38:07.741Z", + "completed":"2017-04-11T09:38:07.741Z", + "new_balance":"3737.16", + "value":"-2.42" + } + }, + { + "id":"79443023-ba00-46c5-843f-68d7efee5e20", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T13:56:24.121Z", + "completed":"2017-04-11T13:56:24.121Z", + "new_balance":"3734.57", + "value":"-2.59" + } + }, + { + "id":"fb7cfe7b-5540-4c1b-9bb3-604367d1c66b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T18:40:43.025Z", + "completed":"2017-04-11T18:40:43.025Z", + "new_balance":"3727.82", + "value":"-6.75" + } + }, + { + "id":"82982eae-f05e-4d51-80d2-bb4170169525", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T21:24:28.748Z", + "completed":"2017-04-11T21:24:28.748Z", + "new_balance":"3726.86", + "value":"-0.96" + } + }, + { + "id":"b1b40f6b-34dc-4b88-b5b3-1bbf9bc88eef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T22:21:28.343Z", + "completed":"2017-04-21T22:21:28.343Z", + "new_balance":"3721.71", + "value":"-5.15" + } + }, + { + "id":"ac6007ba-861d-4f2d-bac6-48284d1525c1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:50:18.767Z", + "completed":"2017-04-23T07:50:18.767Z", + "new_balance":"3720.29", + "value":"-1.42" + } + }, + { + "id":"260690de-8439-413c-92ba-c82b67de8c03", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T05:01:25.902Z", + "completed":"2017-04-29T05:01:25.902Z", + "new_balance":"3715.48", + "value":"-4.81" + } + }, + { + "id":"94e295e5-93dd-4acb-ade9-4f2c9ccec23d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T18:49:24.016Z", + "completed":"2017-04-29T18:49:24.016Z", + "new_balance":"3821.11", + "value":"105.63" + } + }, + { + "id":"76716400-3ee2-4574-928d-dcec12c9a991", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T21:23:22.947Z", + "completed":"2017-04-29T21:23:22.947Z", + "new_balance":"3817.67", + "value":"-3.44" + } + }, + { + "id":"55d8afc4-db3e-45f8-ae51-8639edbb011c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T09:06:13.033Z", + "completed":"2017-04-30T09:06:13.033Z", + "new_balance":"3813.40", + "value":"-4.27" + } + }, + { + "id":"9097a8d1-04e9-4d99-bf90-755ebe73a1cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T06:35:37.973Z", + "completed":"2017-05-02T06:35:37.973Z", + "new_balance":"3806.21", + "value":"-7.19" + } + }, + { + "id":"6a6c1e13-cf5a-4002-94c9-63baa5edcb8d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T08:11:50.149Z", + "completed":"2017-05-02T08:11:50.149Z", + "new_balance":"3747.98", + "value":"-58.23" + } + }, + { + "id":"ead767f4-fbbe-474c-ba06-950af5f0e1bd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T12:30:58.996Z", + "completed":"2017-05-02T12:30:58.996Z", + "new_balance":"3741.58", + "value":"-6.40" + } + }, + { + "id":"cec725ae-fe74-4799-96b3-8cfd66c8be4a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T23:44:47.358Z", + "completed":"2017-05-02T23:44:47.358Z", + "new_balance":"3739.12", + "value":"-2.46" + } + }, + { + "id":"6c80fd69-04ce-464b-ad63-244a87805320", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T10:50:26.781Z", + "completed":"2017-05-06T10:50:26.781Z", + "new_balance":"3734.70", + "value":"-4.42" + } + }, + { + "id":"471bf37d-87f9-4fe7-aa7e-73364d19def5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:01:06.130Z", + "completed":"2017-05-07T02:01:06.130Z", + "new_balance":"3732.38", + "value":"-2.32" + } + }, + { + "id":"5f49d6d0-1023-4a74-b78a-8f709cfbf004", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T08:09:54.341Z", + "completed":"2017-05-07T08:09:54.341Z", + "new_balance":"3727.89", + "value":"-4.49" + } + }, + { + "id":"322f4d57-c48d-483b-9eca-52fc16bbce3a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T08:11:06.267Z", + "completed":"2017-05-07T08:11:06.267Z", + "new_balance":"3726.49", + "value":"-1.40" + } + }, + { + "id":"1dd3eab8-a708-4961-aba8-36882a60d311", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T20:27:35.273Z", + "completed":"2017-05-07T20:27:35.273Z", + "new_balance":"3723.46", + "value":"-3.03" + } + }, + { + "id":"8915b22f-253b-481a-b711-591c5d3bb6de", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T23:07:53.200Z", + "completed":"2017-05-08T23:07:53.200Z", + "new_balance":"3719.22", + "value":"-4.24" + } + }, + { + "id":"d3a6cf18-7fac-43dc-8618-d9ff83927ad3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T14:35:23.590Z", + "completed":"2017-05-09T14:35:23.590Z", + "new_balance":"3715.78", + "value":"-3.44" + } + }, + { + "id":"52866c10-91f5-4f6e-b2c7-d7a74d0ff039", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T04:13:01.220Z", + "completed":"2017-05-13T04:13:01.220Z", + "new_balance":"3710.63", + "value":"-5.15" + } + }, + { + "id":"dcca6d7c-7704-4afe-a5f5-2f7edd11915a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T16:52:47.081Z", + "completed":"2017-05-26T16:52:47.081Z", + "new_balance":"3709.23", + "value":"-1.40" + } + }, + { + "id":"5e7e2c92-0343-4372-848c-4068547b34a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T18:19:30.637Z", + "completed":"2017-05-26T18:19:30.637Z", + "new_balance":"3704.08", + "value":"-5.15" + } + }, + { + "id":"43b65339-c107-4c5a-8aaa-add22035f565", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T07:32:17.096Z", + "completed":"2017-05-27T07:32:17.096Z", + "new_balance":"3702.06", + "value":"-2.02" + } + }, + { + "id":"94bd572c-f948-47a9-a296-c596416c6aee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:55:52.080Z", + "completed":"2017-05-27T08:55:52.080Z", + "new_balance":"3697.25", + "value":"-4.81" + } + }, + { + "id":"9a8fb3be-298e-4fec-8382-3c17edc54dc0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T11:10:06.461Z", + "completed":"2017-05-30T11:10:06.461Z", + "new_balance":"3693.81", + "value":"-3.44" + } + }, + { + "id":"12197bc4-bfc3-43be-8865-463bea04ac15", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T12:15:15.836Z", + "completed":"2017-05-30T12:15:15.836Z", + "new_balance":"3689.54", + "value":"-4.27" + } + }, + { + "id":"0fad9e89-4076-4c7f-b238-3e36a3ac577b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T22:29:02.311Z", + "completed":"2017-05-30T22:29:02.311Z", + "new_balance":"3795.17", + "value":"105.63" + } + }, + { + "id":"9f048801-da30-464f-a476-f7c36d166bdd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T01:30:16.669Z", + "completed":"2017-06-01T01:30:16.669Z", + "new_balance":"3736.94", + "value":"-58.23" + } + }, + { + "id":"f74c6e0d-56c3-4eef-bc0a-1d382a08db13", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T04:51:35.287Z", + "completed":"2017-06-01T04:51:35.287Z", + "new_balance":"3734.48", + "value":"-2.46" + } + }, + { + "id":"f2ae86fa-8abf-42a2-a7f3-88d54713cc81", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T09:22:11.672Z", + "completed":"2017-06-01T09:22:11.672Z", + "new_balance":"3728.08", + "value":"-6.40" + } + }, + { + "id":"3a05456f-32a3-4399-a6cf-7eeddc83ce7b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:57:18.664Z", + "completed":"2017-06-01T11:57:18.664Z", + "new_balance":"3720.89", + "value":"-7.19" + } + }, + { + "id":"77c3de84-d73a-416a-98e9-e9282543ccb0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:22:40.404Z", + "completed":"2017-06-01T13:22:40.404Z", + "new_balance":"3719.02", + "value":"-1.87" + } + }, + { + "id":"24d37f36-861c-48b0-a5e1-6b75971b162b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T14:22:45.091Z", + "completed":"2017-06-01T14:22:45.091Z", + "new_balance":"3713.87", + "value":"-5.15" + } + }, + { + "id":"5c29f990-5e6b-41cc-8e92-760b8f3492fc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T18:11:22.576Z", + "completed":"2017-06-01T18:11:22.576Z", + "new_balance":"3708.72", + "value":"-5.15" + } + }, + { + "id":"b689a81d-a84e-45dc-bbe3-44a6d932c049", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T23:30:07.796Z", + "completed":"2017-06-01T23:30:07.796Z", + "new_balance":"3705.28", + "value":"-3.44" + } + }, + { + "id":"770b26b2-3629-47de-b7f5-d0392ee591a6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T23:30:48.678Z", + "completed":"2017-06-01T23:30:48.678Z", + "new_balance":"3700.39", + "value":"-4.89" + } + }, + { + "id":"c2a12036-27b4-47e0-85c6-d22b56b01e80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T03:22:36.929Z", + "completed":"2017-06-02T03:22:36.929Z", + "new_balance":"3699.15", + "value":"-1.24" + } + }, + { + "id":"daf69186-c518-4534-a285-83d174c8246e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T03:50:37.222Z", + "completed":"2017-06-02T03:50:37.222Z", + "new_balance":"3692.23", + "value":"-6.92" + } + }, + { + "id":"eda572c7-9605-4bdc-8592-47e64ff3218f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T20:50:36.665Z", + "completed":"2017-06-02T20:50:36.665Z", + "new_balance":"3690.65", + "value":"-1.58" + } + }, + { + "id":"077ef50b-0c8c-4a52-8918-e99431381907", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T11:38:54.202Z", + "completed":"2017-06-04T11:38:54.202Z", + "new_balance":"3686.38", + "value":"-4.27" + } + }, + { + "id":"ec0c7622-c3ae-4073-84c8-43cdafda409c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:40:49.601Z", + "completed":"2017-06-04T17:40:49.601Z", + "new_balance":"3684.24", + "value":"-2.14" + } + }, + { + "id":"2b9a5bef-f408-4aaa-a9fe-69c659556e5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T20:47:25.983Z", + "completed":"2017-06-04T20:47:25.983Z", + "new_balance":"3679.55", + "value":"-4.69" + } + }, + { + "id":"ff4886ee-7e7b-4466-835a-c929575f4aa9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:36:09.682Z", + "completed":"2017-06-05T06:36:09.682Z", + "new_balance":"3675.13", + "value":"-4.42" + } + }, + { + "id":"c30bb6b5-fdde-4aaf-a47b-3292d6a0b787", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T16:14:17.763Z", + "completed":"2017-06-05T16:14:17.763Z", + "new_balance":"3673.14", + "value":"-1.99" + } + }, + { + "id":"9198c7af-4720-4f9d-a2ca-b787ae27e49b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T15:05:01.049Z", + "completed":"2017-06-18T15:05:01.049Z", + "new_balance":"3667.99", + "value":"-5.15" + } + }, + { + "id":"09adb6c4-d748-4afa-bc1e-6af5a300c14b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T09:16:52.016Z", + "completed":"2017-06-30T09:16:52.016Z", + "new_balance":"3664.88", + "value":"-3.11" + } + }, + { + "id":"bc62b936-3ddd-40d5-9804-ceff16fbd1c7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T15:04:59.503Z", + "completed":"2017-06-30T15:04:59.503Z", + "new_balance":"3660.61", + "value":"-4.27" + } + }, + { + "id":"2f690439-dc5b-473c-8db9-0cf00d200928", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T21:27:27.265Z", + "completed":"2017-06-30T21:27:27.265Z", + "new_balance":"3657.17", + "value":"-3.44" + } + }, + { + "id":"7ede7f1f-833c-4b23-9339-cbab28ad99af", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T21:33:11.319Z", + "completed":"2017-06-30T21:33:11.319Z", + "new_balance":"3762.80", + "value":"105.63" + } + }, + { + "id":"5e632837-8479-418a-9b53-d008e5d1f878", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T18:14:32.005Z", + "completed":"2017-07-01T18:14:32.005Z", + "new_balance":"3756.40", + "value":"-6.40" + } + }, + { + "id":"0c94704d-0e45-4027-9c8f-306a92c6a331", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T01:55:09.977Z", + "completed":"2017-07-03T01:55:09.977Z", + "new_balance":"3698.17", + "value":"-58.23" + } + }, + { + "id":"8e5af378-86fc-4298-a071-4f29a44ee43e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T09:34:27.863Z", + "completed":"2017-07-03T09:34:27.863Z", + "new_balance":"3690.98", + "value":"-7.19" + } + }, + { + "id":"ddd9c552-e02e-4aab-964f-6a129619a697", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T22:35:51.773Z", + "completed":"2017-07-03T22:35:51.773Z", + "new_balance":"3687.54", + "value":"-3.44" + } + }, + { + "id":"66375dbb-7a33-4e13-9a9e-861f036cb978", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T22:59:19.402Z", + "completed":"2017-07-03T22:59:19.402Z", + "new_balance":"3685.08", + "value":"-2.46" + } + }, + { + "id":"1ba636d1-655e-4463-9f2f-23c0e1e9755f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T00:20:51.917Z", + "completed":"2017-07-05T00:20:51.917Z", + "new_balance":"3683.93", + "value":"-1.15" + } + }, + { + "id":"351e28a3-547d-4258-9ee1-9c9433f11483", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:32:38.876Z", + "completed":"2017-07-05T07:32:38.876Z", + "new_balance":"3679.51", + "value":"-4.42" + } + }, + { + "id":"3d825a9f-bdcc-43ed-8518-67e2d563aec2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T22:18:51.675Z", + "completed":"2017-07-05T22:18:51.675Z", + "new_balance":"3674.36", + "value":"-5.15" + } + }, + { + "id":"3e71bf96-0bbc-497a-8d96-0bcce13dc9b4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T03:49:10.972Z", + "completed":"2017-07-06T03:49:10.972Z", + "new_balance":"3672.04", + "value":"-2.32" + } + }, + { + "id":"ea3a7a4e-8525-4a57-80e0-bbcf0128d15f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T15:59:26.936Z", + "completed":"2017-07-06T15:59:26.936Z", + "new_balance":"3668.37", + "value":"-3.67" + } + }, + { + "id":"3c80b3ea-ddd5-42c4-a7a1-75861b85dbc7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T08:28:48.759Z", + "completed":"2017-07-07T08:28:48.759Z", + "new_balance":"3663.90", + "value":"-4.47" + } + }, + { + "id":"547bb798-a476-4561-91e9-150779ac27f4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T03:59:39.616Z", + "completed":"2017-07-10T03:59:39.616Z", + "new_balance":"3658.75", + "value":"-5.15" + } + }, + { + "id":"65c1c8b2-9298-43ed-99cf-b14e200aa0ee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T06:47:24.863Z", + "completed":"2017-07-10T06:47:24.863Z", + "new_balance":"3656.37", + "value":"-2.38" + } + }, + { + "id":"a2530676-190f-4404-8f9c-36ae3b1a12db", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T05:19:42.321Z", + "completed":"2017-07-12T05:19:42.321Z", + "new_balance":"3653.64", + "value":"-2.73" + } + }, + { + "id":"969a3066-692d-476d-8ea8-0e8981839928", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:33:22.421Z", + "completed":"2017-07-12T08:33:22.421Z", + "new_balance":"3649.17", + "value":"-4.47" + } + }, + { + "id":"d0c8de8b-0909-4dd6-9346-444293a28fd4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T18:46:16.662Z", + "completed":"2017-07-12T18:46:16.662Z", + "new_balance":"3646.71", + "value":"-2.46" + } + }, + { + "id":"5fbf7262-e035-44bf-97b4-bd5292b99b80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T01:50:06.630Z", + "completed":"2017-07-15T01:50:06.630Z", + "new_balance":"3644.08", + "value":"-2.63" + } + }, + { + "id":"d9b90c54-5961-4b08-b5de-9e21213d947c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T02:57:08.283Z", + "completed":"2017-07-16T02:57:08.283Z", + "new_balance":"3638.93", + "value":"-5.15" + } + }, + { + "id":"daaec244-ae92-41f5-90be-185cd654bc65", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T16:45:58.037Z", + "completed":"2017-07-16T16:45:58.037Z", + "new_balance":"3637.97", + "value":"-0.96" + } + }, + { + "id":"c60a527c-b0fb-4e2d-bd09-d754cdd1bd30", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T09:37:40.543Z", + "completed":"2017-07-17T09:37:40.543Z", + "new_balance":"3635.38", + "value":"-2.59" + } + }, + { + "id":"424a2b26-e1f6-4763-acf9-b795c7379a19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T12:45:59.395Z", + "completed":"2017-07-17T12:45:59.395Z", + "new_balance":"3628.63", + "value":"-6.75" + } + }, + { + "id":"23f7937d-0821-466d-b7cc-b9b91d84698d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T07:17:00.245Z", + "completed":"2017-07-19T07:17:00.245Z", + "new_balance":"3626.21", + "value":"-2.42" + } + }, + { + "id":"483f7eba-e67f-4e15-b9e2-a632039b43ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T11:15:21.088Z", + "completed":"2017-07-20T11:15:21.088Z", + "new_balance":"3621.06", + "value":"-5.15" + } + }, + { + "id":"3cf25fbb-c44e-474a-a9c7-d8f1596d2d43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T12:00:14.811Z", + "completed":"2017-07-23T12:00:14.811Z", + "new_balance":"3619.64", + "value":"-1.42" + } + }, + { + "id":"9658c6d3-f85f-4737-b101-8f8b4e62576b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T19:47:15.338Z", + "completed":"2017-07-26T19:47:15.338Z", + "new_balance":"3614.83", + "value":"-4.81" + } + }, + { + "id":"e18da05c-8ed8-49d0-a9d0-0364c2888e72", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T16:51:06.447Z", + "completed":"2017-07-27T16:51:06.447Z", + "new_balance":"3720.46", + "value":"105.63" + } + }, + { + "id":"3ec2f540-6c38-4b2c-bd78-ee6c654df9bb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T10:58:38.493Z", + "completed":"2017-07-28T10:58:38.493Z", + "new_balance":"3717.02", + "value":"-3.44" + } + }, + { + "id":"f2a75858-4826-4e5a-bd7d-4e96d2ede200", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T11:15:44.372Z", + "completed":"2017-07-30T11:15:44.372Z", + "new_balance":"3712.75", + "value":"-4.27" + } + }, + { + "id":"766aae07-61d5-4bb2-ad44-42a08e647939", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T20:28:38.414Z", + "completed":"2017-08-01T20:28:38.414Z", + "new_balance":"3706.35", + "value":"-6.40" + } + }, + { + "id":"5f7e44f0-c54d-4951-8845-cbb09a68488b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T03:19:21.269Z", + "completed":"2017-08-03T03:19:21.269Z", + "new_balance":"3702.91", + "value":"-3.44" + } + }, + { + "id":"c98e645f-2944-499c-8b4c-1071e813eb04", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T05:25:45.312Z", + "completed":"2017-08-03T05:25:45.312Z", + "new_balance":"3644.68", + "value":"-58.23" + } + }, + { + "id":"0b986244-e75c-422e-a4dd-8d126bf76a22", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T14:17:20.573Z", + "completed":"2017-08-03T14:17:20.573Z", + "new_balance":"3642.22", + "value":"-2.46" + } + }, + { + "id":"f8e8519c-a185-4c0b-b944-55ee39c5a8f3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T22:09:04.046Z", + "completed":"2017-08-03T22:09:04.046Z", + "new_balance":"3635.03", + "value":"-7.19" + } + }, + { + "id":"0e90a581-e330-47ef-bcc4-9d3d67c08cb6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T18:37:44.778Z", + "completed":"2017-08-08T18:37:44.778Z", + "new_balance":"3629.88", + "value":"-5.15" + } + }, + { + "id":"90a83d87-416f-4512-9992-50a1992970c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T22:52:26.064Z", + "completed":"2017-08-08T22:52:26.064Z", + "new_balance":"3625.46", + "value":"-4.42" + } + }, + { + "id":"2bd3e58b-ff4f-4ac4-ab6c-4e3615b0b51e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T13:42:49.790Z", + "completed":"2017-08-11T13:42:49.790Z", + "new_balance":"3626.57", + "value":"1.11" + } + }, + { + "id":"d31fbc6e-ca0e-4191-a3f4-0d53526872bb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T08:13:52.873Z", + "completed":"2017-08-13T08:13:52.873Z", + "new_balance":"3624.25", + "value":"-2.32" + } + }, + { + "id":"6c1d3079-2431-4817-9ca0-db05246054d6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T08:51:18.554Z", + "completed":"2017-08-14T08:51:18.554Z", + "new_balance":"3621.22", + "value":"-3.03" + } + }, + { + "id":"7b533228-1851-4b9e-91bd-b4f2eb757642", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T08:16:45.455Z", + "completed":"2017-08-17T08:16:45.455Z", + "new_balance":"3619.82", + "value":"-1.40" + } + }, + { + "id":"ea6c56bd-751b-4a68-98d0-aa89d6eebce4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T19:23:27.364Z", + "completed":"2017-08-21T19:23:27.364Z", + "new_balance":"3615.33", + "value":"-4.49" + } + }, + { + "id":"1232044a-7231-4c4c-bf8c-f27e20032cfe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T00:14:20.863Z", + "completed":"2017-08-23T00:14:20.863Z", + "new_balance":"3610.18", + "value":"-5.15" + } + }, + { + "id":"b5006f13-529e-416e-8e50-76a8d5347c60", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T09:08:53.015Z", + "completed":"2017-08-23T09:08:53.015Z", + "new_balance":"3605.94", + "value":"-4.24" + } + }, + { + "id":"38fb2c30-c9f4-4196-ac1b-ff88507558a6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T05:25:22.629Z", + "completed":"2017-08-24T05:25:22.629Z", + "new_balance":"3604.54", + "value":"-1.40" + } + }, + { + "id":"0b52ce6c-5ae6-4eec-a010-5f8fd6446a7e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T00:15:02.409Z", + "completed":"2017-08-27T00:15:02.409Z", + "new_balance":"3602.52", + "value":"-2.02" + } + }, + { + "id":"3d68a052-40ad-44e0-8cd6-702965a468eb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T12:09:50.756Z", + "completed":"2017-08-27T12:09:50.756Z", + "new_balance":"3597.71", + "value":"-4.81" + } + }, + { + "id":"3546b50a-235e-44ab-809c-71c7db3894a9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T20:31:27.162Z", + "completed":"2017-08-27T20:31:27.162Z", + "new_balance":"3703.34", + "value":"105.63" + } + }, + { + "id":"cb800943-1a62-49f8-8bd5-19a216172508", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:57:34.120Z", + "completed":"2017-08-28T19:57:34.120Z", + "new_balance":"3699.90", + "value":"-3.44" + } + }, + { + "id":"f75c8dd2-f108-4553-9889-81cbd91fb2e4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T05:51:39.157Z", + "completed":"2017-08-30T05:51:39.157Z", + "new_balance":"3695.63", + "value":"-4.27" + } + }, + { + "id":"6a51f604-f8ad-4481-972c-c0ac8ff3e9cd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T06:03:51.685Z", + "completed":"2017-09-01T06:03:51.685Z", + "new_balance":"3689.23", + "value":"-6.40" + } + }, + { + "id":"ad3c8cc4-4730-4f5c-8be8-d7162ed99411", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T00:29:17.586Z", + "completed":"2017-09-03T00:29:17.586Z", + "new_balance":"3686.77", + "value":"-2.46" + } + }, + { + "id":"231f0488-2e64-4033-8fd7-14d56095a0db", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T07:01:08.414Z", + "completed":"2017-09-03T07:01:08.414Z", + "new_balance":"3628.54", + "value":"-58.23" + } + }, + { + "id":"f49bb3d9-b249-4d11-9fc5-5a07b02aa16f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T14:25:04.143Z", + "completed":"2017-09-03T14:25:04.143Z", + "new_balance":"3625.10", + "value":"-3.44" + } + }, + { + "id":"4c56f9f4-1d1b-4652-a432-6994a5db1e78", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T23:27:01.818Z", + "completed":"2017-09-03T23:27:01.818Z", + "new_balance":"3617.91", + "value":"-7.19" + } + }, + { + "id":"6b711d72-2504-4545-b336-038c57135af5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T08:40:30.478Z", + "completed":"2017-09-05T08:40:30.478Z", + "new_balance":"3612.76", + "value":"-5.15" + } + }, + { + "id":"2c4b2269-095b-4687-a94b-90af22a8d4e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T13:46:25.982Z", + "completed":"2017-09-05T13:46:25.982Z", + "new_balance":"3607.87", + "value":"-4.89" + } + }, + { + "id":"5ed058c8-d6ab-44db-a29f-5a6ff54ab98c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T05:57:10.470Z", + "completed":"2017-09-07T05:57:10.470Z", + "new_balance":"3606.00", + "value":"-1.87" + } + }, + { + "id":"1e4afa5f-da40-474d-b6c2-ed313d0ac3c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T18:12:03.802Z", + "completed":"2017-09-09T18:12:03.802Z", + "new_balance":"3600.85", + "value":"-5.15" + } + }, + { + "id":"3f6cd614-cd2d-4dec-9322-315e5afa1fe3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T15:32:40.420Z", + "completed":"2017-09-11T15:32:40.420Z", + "new_balance":"3599.27", + "value":"-1.58" + } + }, + { + "id":"db344cc3-c8a0-4184-814d-70fd86c74f99", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T15:53:50.451Z", + "completed":"2017-09-13T15:53:50.451Z", + "new_balance":"3592.35", + "value":"-6.92" + } + }, + { + "id":"ddab0d18-d3e3-4dd9-8d48-efab031e044b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T01:04:42.971Z", + "completed":"2017-09-14T01:04:42.971Z", + "new_balance":"3600.64", + "value":"8.29" + } + }, + { + "id":"aef51a5e-9b05-4010-867c-57658b547aaf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:49:17.223Z", + "completed":"2017-09-14T17:49:17.223Z", + "new_balance":"3599.40", + "value":"-1.24" + } + }, + { + "id":"57c99d0c-7866-47b7-a7a3-d2aba46ad388", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T03:51:44.537Z", + "completed":"2017-09-15T03:51:44.537Z", + "new_balance":"3595.13", + "value":"-4.27" + } + }, + { + "id":"848aee2e-ecec-4940-a551-227a1d37dd96", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T01:24:30.955Z", + "completed":"2017-09-26T01:24:30.955Z", + "new_balance":"3593.14", + "value":"-1.99" + } + }, + { + "id":"067b843f-f6c8-4dd7-9cde-16ea8b94d3be", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T09:25:12.038Z", + "completed":"2017-09-26T09:25:12.038Z", + "new_balance":"3591.00", + "value":"-2.14" + } + }, + { + "id":"01fcaae6-e2d5-40ab-b1d4-85b19278995d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T23:45:36.063Z", + "completed":"2017-09-26T23:45:36.063Z", + "new_balance":"3586.31", + "value":"-4.69" + } + }, + { + "id":"0bf997c4-affc-4331-a92f-753a953cc40c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T09:21:33.930Z", + "completed":"2017-09-27T09:21:33.930Z", + "new_balance":"3581.89", + "value":"-4.42" + } + }, + { + "id":"87949931-928f-4356-bbc9-042e2da14067", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T14:55:11.113Z", + "completed":"2017-09-27T14:55:11.113Z", + "new_balance":"3687.52", + "value":"105.63" + } + }, + { + "id":"a59cb041-778f-4968-b14d-b9430ac8a8f2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T20:58:43.826Z", + "completed":"2017-09-27T20:58:43.826Z", + "new_balance":"3682.37", + "value":"-5.15" + } + }, + { + "id":"ba753392-2e14-4d00-890d-0a723aed42bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T23:28:29.033Z", + "completed":"2017-09-28T23:28:29.033Z", + "new_balance":"3678.93", + "value":"-3.44" + } + }, + { + "id":"065f279b-febc-4dc1-a731-61950fcb77b5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T15:43:30.715Z", + "completed":"2017-09-30T15:43:30.715Z", + "new_balance":"3674.66", + "value":"-4.27" + } + }, + { + "id":"ab182047-ad9b-4c84-bc37-8b9ed9fa02f7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T09:53:28.900Z", + "completed":"2017-10-01T09:53:28.900Z", + "new_balance":"3671.22", + "value":"-3.44" + } + }, + { + "id":"cd41ba47-4882-49ff-9412-46ce3fbfe3eb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T14:44:36.608Z", + "completed":"2017-10-01T14:44:36.608Z", + "new_balance":"3612.99", + "value":"-58.23" + } + }, + { + "id":"44b2311a-8470-47b7-be2d-1b1672abb12e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T14:57:38.513Z", + "completed":"2017-10-01T14:57:38.513Z", + "new_balance":"3605.80", + "value":"-7.19" + } + }, + { + "id":"ec164a50-bea6-4c46-8200-78ba6ad1ee0d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T19:29:50.002Z", + "completed":"2017-10-01T19:29:50.002Z", + "new_balance":"3603.34", + "value":"-2.46" + } + }, + { + "id":"33e6006f-6d33-494a-a715-cbd6506ddfbc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T21:58:23.775Z", + "completed":"2017-10-01T21:58:23.775Z", + "new_balance":"3596.94", + "value":"-6.40" + } + }, + { + "id":"1557d49c-f73b-4697-82f7-529a98e7bbe1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T03:04:10.826Z", + "completed":"2017-10-05T03:04:10.826Z", + "new_balance":"3593.27", + "value":"-3.67" + } + }, + { + "id":"546ea1f0-3081-44e4-b5a4-9321ee58ee1d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:50:29.849Z", + "completed":"2017-10-05T06:50:29.849Z", + "new_balance":"3588.85", + "value":"-4.42" + } + }, + { + "id":"c7edc709-c3b3-4e39-be96-6a0a78120c59", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T14:16:33.153Z", + "completed":"2017-10-05T14:16:33.153Z", + "new_balance":"3587.70", + "value":"-1.15" + } + }, + { + "id":"95d1592d-b135-4f80-9731-48df88df1668", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T20:38:19.957Z", + "completed":"2017-10-05T20:38:19.957Z", + "new_balance":"3582.55", + "value":"-5.15" + } + }, + { + "id":"bbee026a-2213-4d76-a443-999d5510f271", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T10:40:56.987Z", + "completed":"2017-10-07T10:40:56.987Z", + "new_balance":"3580.23", + "value":"-2.32" + } + }, + { + "id":"85003b2a-cca2-4160-866a-7f64b20bd6e4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T00:24:47.840Z", + "completed":"2017-10-09T00:24:47.840Z", + "new_balance":"3577.85", + "value":"-2.38" + } + }, + { + "id":"6fc76646-4d41-4bad-aebe-bbb9659ebe4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T04:48:51.101Z", + "completed":"2017-10-09T04:48:51.101Z", + "new_balance":"3572.70", + "value":"-5.15" + } + }, + { + "id":"b8f5eda8-f3a7-40bb-bba5-b6ea480b4851", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T01:15:29.431Z", + "completed":"2017-10-10T01:15:29.431Z", + "new_balance":"3569.97", + "value":"-2.73" + } + }, + { + "id":"25e9c6f3-4c44-43ef-baf6-61d3ce57d7e3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T10:00:52.089Z", + "completed":"2017-10-10T10:00:52.089Z", + "new_balance":"3565.50", + "value":"-4.47" + } + }, + { + "id":"40fee889-1f73-4c22-b14a-8e390878e2a3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T14:33:55.696Z", + "completed":"2017-10-10T14:33:55.696Z", + "new_balance":"3562.87", + "value":"-2.63" + } + }, + { + "id":"28a00ba7-ed18-43fa-8191-1b12ef07ace6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T19:25:39.865Z", + "completed":"2017-10-10T19:25:39.865Z", + "new_balance":"3560.41", + "value":"-2.46" + } + }, + { + "id":"09a25c05-adbb-48dc-8591-c208081164f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T02:56:26.972Z", + "completed":"2017-10-11T02:56:26.972Z", + "new_balance":"3559.45", + "value":"-0.96" + } + }, + { + "id":"301af5c1-05e2-4ba0-b252-c9c90a6a1ac3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T05:16:03.999Z", + "completed":"2017-10-11T05:16:03.999Z", + "new_balance":"3554.30", + "value":"-5.15" + } + }, + { + "id":"c1b81b56-6487-46b2-837b-ea4e5089eea9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:55:22.718Z", + "completed":"2017-10-11T06:55:22.718Z", + "new_balance":"3547.55", + "value":"-6.75" + } + }, + { + "id":"7a3ff938-4ce6-4d7d-8155-b31718749f80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T12:02:13.365Z", + "completed":"2017-10-11T12:02:13.365Z", + "new_balance":"3545.13", + "value":"-2.42" + } + }, + { + "id":"23222e57-5834-407d-9d13-0bb940776626", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T21:33:24.977Z", + "completed":"2017-10-11T21:33:24.977Z", + "new_balance":"3542.54", + "value":"-2.59" + } + }, + { + "id":"a66027df-8067-4b4d-8308-a538c11b3787", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T23:40:32.974Z", + "completed":"2017-10-21T23:40:32.974Z", + "new_balance":"3537.39", + "value":"-5.15" + } + }, + { + "id":"68ef5a60-8f3d-4314-83c7-1ea258f5c4e5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T20:27:22.541Z", + "completed":"2017-10-23T20:27:22.541Z", + "new_balance":"3535.97", + "value":"-1.42" + } + }, + { + "id":"5f84df4d-67a3-420e-8c9d-ab48647ee480", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T11:09:44.469Z", + "completed":"2017-10-29T11:09:44.469Z", + "new_balance":"3532.53", + "value":"-3.44" + } + }, + { + "id":"7c3f43e9-7571-4bf9-ba47-16a5162d83b1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T14:40:45.252Z", + "completed":"2017-10-29T14:40:45.252Z", + "new_balance":"3527.72", + "value":"-4.81" + } + }, + { + "id":"a2928df2-5f4e-4503-bf10-686256ad8075", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T20:14:52.817Z", + "completed":"2017-10-29T20:14:52.817Z", + "new_balance":"3633.35", + "value":"105.63" + } + }, + { + "id":"e0231f51-7eb4-4371-b03a-7fae141f359a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T01:32:28.891Z", + "completed":"2017-10-30T01:32:28.891Z", + "new_balance":"3629.08", + "value":"-4.27" + } + }, + { + "id":"ca0df2ea-30d6-46d9-8583-a533bf43dd5b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T08:27:51.104Z", + "completed":"2017-11-02T08:27:51.104Z", + "new_balance":"3626.62", + "value":"-2.46" + } + }, + { + "id":"9a151251-b00a-4eec-93dc-ee5bab315a87", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T14:38:39.063Z", + "completed":"2017-11-02T14:38:39.063Z", + "new_balance":"3620.22", + "value":"-6.40" + } + }, + { + "id":"f433ea9f-4aef-45f0-900b-c108e23162e3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:56:05.289Z", + "completed":"2017-11-02T14:56:05.289Z", + "new_balance":"3561.99", + "value":"-58.23" + } + }, + { + "id":"1b4d5b5e-a4cd-48bc-9d48-8e1ce758267d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T16:39:36.487Z", + "completed":"2017-11-02T16:39:36.487Z", + "new_balance":"3554.80", + "value":"-7.19" + } + }, + { + "id":"a175d527-eb71-4c37-940f-5dfe7d28165f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T04:18:23.976Z", + "completed":"2017-11-06T04:18:23.976Z", + "new_balance":"3550.38", + "value":"-4.42" + } + }, + { + "id":"d4c88762-1a07-473a-9cc3-7c36cc5b2130", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:12:01.861Z", + "completed":"2017-11-07T04:12:01.861Z", + "new_balance":"3548.06", + "value":"-2.32" + } + }, + { + "id":"1dec15a7-db11-4c7e-9640-809413b08e41", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T09:32:10.276Z", + "completed":"2017-11-07T09:32:10.276Z", + "new_balance":"3546.66", + "value":"-1.40" + } + }, + { + "id":"f9e2283b-4ef5-4975-8470-898f44857f9f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T15:38:59.998Z", + "completed":"2017-11-07T15:38:59.998Z", + "new_balance":"3543.63", + "value":"-3.03" + } + }, + { + "id":"692c1aad-54b0-4c5b-995d-58c3f34446f1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T22:26:07.444Z", + "completed":"2017-11-07T22:26:07.444Z", + "new_balance":"3539.14", + "value":"-4.49" + } + }, + { + "id":"ae9af696-96e7-4eab-a19c-846eea8af20e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T22:23:21.936Z", + "completed":"2017-11-08T22:23:21.936Z", + "new_balance":"3534.90", + "value":"-4.24" + } + }, + { + "id":"c4d99e78-ec6b-4c5d-9274-c96cba0728fd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T02:40:00.203Z", + "completed":"2017-11-09T02:40:00.203Z", + "new_balance":"3531.46", + "value":"-3.44" + } + }, + { + "id":"71d50cfe-4947-4d07-bc98-3da94ad20ab5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T08:05:24.372Z", + "completed":"2017-11-13T08:05:24.372Z", + "new_balance":"3526.31", + "value":"-5.15" + } + }, + { + "id":"b131e47d-ee62-4879-9db1-36261589f6c8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T01:44:27.635Z", + "completed":"2017-11-26T01:44:27.635Z", + "new_balance":"3521.16", + "value":"-5.15" + } + }, + { + "id":"95af6df6-7c62-420e-b62f-d5f1e81862f6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T08:18:35.911Z", + "completed":"2017-11-26T08:18:35.911Z", + "new_balance":"3519.76", + "value":"-1.40" + } + }, + { + "id":"42476e0d-171f-4f39-883b-4641e0dc8029", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T11:48:21.478Z", + "completed":"2017-11-27T11:48:21.478Z", + "new_balance":"3514.95", + "value":"-4.81" + } + }, + { + "id":"4b08d9e3-25c2-4a39-bd5a-035aca78318a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T15:24:57.467Z", + "completed":"2017-11-27T15:24:57.467Z", + "new_balance":"3512.93", + "value":"-2.02" + } + }, + { + "id":"e9060c69-a521-44fe-a941-888eb15ede9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T06:19:24.011Z", + "completed":"2017-11-30T06:19:24.011Z", + "new_balance":"3509.49", + "value":"-3.44" + } + }, + { + "id":"f9fbe41c-3298-49f0-9b5c-71e2c2e3ab7c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T17:27:54.333Z", + "completed":"2017-11-30T17:27:54.333Z", + "new_balance":"3615.12", + "value":"105.63" + } + }, + { + "id":"4d42fb50-2192-4dcb-95bd-e0268e0d9848", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T20:08:14.942Z", + "completed":"2017-11-30T20:08:14.942Z", + "new_balance":"3610.85", + "value":"-4.27" + } + }, + { + "id":"3a479d07-ce0a-44f9-89ef-0c6bb5af35b7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:28:56.266Z", + "completed":"2017-12-01T00:28:56.266Z", + "new_balance":"3604.45", + "value":"-6.40" + } + }, + { + "id":"354da7fd-3927-44b4-9601-0b9b089f712c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T04:58:47.064Z", + "completed":"2017-12-01T04:58:47.064Z", + "new_balance":"3601.99", + "value":"-2.46" + } + }, + { + "id":"7072f93b-f969-4d1a-9a08-e139a9ab2649", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T08:44:11.798Z", + "completed":"2017-12-01T08:44:11.798Z", + "new_balance":"3598.55", + "value":"-3.44" + } + }, + { + "id":"1de3298a-f2ef-4faf-8e20-fd9b2423cabc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T09:04:51.570Z", + "completed":"2017-12-01T09:04:51.570Z", + "new_balance":"3593.66", + "value":"-4.89" + } + }, + { + "id":"e0158b60-f35e-4be4-a1ac-dc8e4cf0c169", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T12:55:45.454Z", + "completed":"2017-12-01T12:55:45.454Z", + "new_balance":"3591.79", + "value":"-1.87" + } + }, + { + "id":"e4ed52a8-6200-415d-887e-b10c1997a370", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T12:58:21.666Z", + "completed":"2017-12-01T12:58:21.666Z", + "new_balance":"3586.64", + "value":"-5.15" + } + }, + { + "id":"e7cc2502-c6ac-463c-9f89-8fc2e14ec292", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T13:18:10.717Z", + "completed":"2017-12-01T13:18:10.717Z", + "new_balance":"3528.41", + "value":"-58.23" + } + }, + { + "id":"21a3a7e5-1b14-4b77-9439-3e3c49d89041", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T16:23:05.076Z", + "completed":"2017-12-01T16:23:05.076Z", + "new_balance":"3521.22", + "value":"-7.19" + } + }, + { + "id":"0bd7154d-a858-4c49-93f8-ecdb75608ae6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T18:41:00.354Z", + "completed":"2017-12-01T18:41:00.354Z", + "new_balance":"3516.07", + "value":"-5.15" + } + }, + { + "id":"c0b7a486-96aa-41f6-9d6c-3b180ff15683", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T04:40:30.813Z", + "completed":"2017-12-02T04:40:30.813Z", + "new_balance":"3514.83", + "value":"-1.24" + } + }, + { + "id":"3fa419f7-792e-4915-99f0-beb5dd003102", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T09:30:21.853Z", + "completed":"2017-12-02T09:30:21.853Z", + "new_balance":"3507.91", + "value":"-6.92" + } + }, + { + "id":"27aaa6b8-170d-4e12-9306-ce989383a12c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T18:52:52.970Z", + "completed":"2017-12-02T18:52:52.970Z", + "new_balance":"3506.33", + "value":"-1.58" + } + }, + { + "id":"55c16711-90e5-4f4a-8cc6-af6bdc8549d3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:29:24.164Z", + "completed":"2017-12-04T00:29:24.164Z", + "new_balance":"3504.19", + "value":"-2.14" + } + }, + { + "id":"9cd0ce04-997c-4b64-bd60-b4476db21c10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T18:07:24.802Z", + "completed":"2017-12-04T18:07:24.802Z", + "new_balance":"3499.50", + "value":"-4.69" + } + }, + { + "id":"53b44ab1-3447-44f3-b795-ad73e9bce6bc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T20:06:25.592Z", + "completed":"2017-12-04T20:06:25.592Z", + "new_balance":"3495.23", + "value":"-4.27" + } + }, + { + "id":"ab2473c5-7f15-439d-bd99-f27b8f53aabe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T00:30:08.933Z", + "completed":"2017-12-05T00:30:08.933Z", + "new_balance":"3493.24", + "value":"-1.99" + } + }, + { + "id":"a965cfb0-58e7-4bd0-a6a9-3c495a291311", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T20:58:57.954Z", + "completed":"2017-12-05T20:58:57.954Z", + "new_balance":"3488.82", + "value":"-4.42" + } + }, + { + "id":"5f4691ab-d43e-4a06-8c99-443dd31dd245", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T09:45:05.689Z", + "completed":"2017-12-18T09:45:05.689Z", + "new_balance":"3483.67", + "value":"-5.15" + } + }, + { + "id":"2a32f5eb-00c1-40f0-807e-b8d8be965e9e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T11:29:28.963Z", + "completed":"2017-12-30T11:29:28.963Z", + "new_balance":"3480.56", + "value":"-3.11" + } + }, + { + "id":"54579b93-a839-49a4-9301-ba9ea5427cf8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T13:08:38.097Z", + "completed":"2017-12-30T13:08:38.097Z", + "new_balance":"3476.29", + "value":"-4.27" + } + }, + { + "id":"62a5ae2e-0cda-40bf-8e8c-838b04d556c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T13:46:44.942Z", + "completed":"2017-12-30T13:46:44.942Z", + "new_balance":"3581.92", + "value":"105.63" + } + }, + { + "id":"fc575990-dff3-4f0a-ab6e-6608b840da3b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T21:54:43.443Z", + "completed":"2017-12-30T21:54:43.443Z", + "new_balance":"3578.48", + "value":"-3.44" + } + }, + { + "id":"688825f0-55ba-4441-8474-1b6ad4c46c74", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T16:38:42.473Z", + "completed":"2016-01-01T16:38:42.473Z", + "new_balance":"3671.37", + "value":"-3.44" + } + }, + { + "id":"d0238eb1-0453-4009-8201-5fc39084167d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T19:09:42.114Z", + "completed":"2016-01-01T19:09:42.114Z", + "new_balance":"3667.93", + "value":"-3.44" + } + }, + { + "id":"e54e2f81-dbc7-41f8-baf5-a6bddc412399", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T19:18:32.043Z", + "completed":"2016-01-01T19:18:32.043Z", + "new_balance":"3663.75", + "value":"-4.18" + } + }, + { + "id":"88600212-9224-4d7f-87ab-55f357469563", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T23:00:32.817Z", + "completed":"2016-01-01T23:00:32.817Z", + "new_balance":"3656.05", + "value":"-7.70" + } + }, + { + "id":"c3142b0b-6392-44dc-8f49-66fa2bff547e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T03:23:04.291Z", + "completed":"2016-01-05T03:23:04.291Z", + "new_balance":"3646.01", + "value":"-10.04" + } + }, + { + "id":"3263bb12-2f79-4231-9d89-d52eb450c288", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T10:08:34.753Z", + "completed":"2016-01-05T10:08:34.753Z", + "new_balance":"3638.71", + "value":"-7.30" + } + }, + { + "id":"6042483c-da67-4db7-916c-d712410954b7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T18:53:25.147Z", + "completed":"2016-01-08T18:53:25.147Z", + "new_balance":"3637.31", + "value":"-1.40" + } + }, + { + "id":"0fb9d46c-8b56-40dd-a30d-851ccf9b3cdf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T13:30:16.599Z", + "completed":"2016-01-10T13:30:16.599Z", + "new_balance":"3632.65", + "value":"-4.66" + } + }, + { + "id":"58e813e3-0745-4653-a535-2fc7c166d3f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T17:27:42.582Z", + "completed":"2016-01-11T17:27:42.582Z", + "new_balance":"3627.24", + "value":"-5.41" + } + }, + { + "id":"34edcb05-286f-4c3b-992b-5e4e590ff580", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T04:05:12.355Z", + "completed":"2016-01-12T04:05:12.355Z", + "new_balance":"3623.80", + "value":"-3.44" + } + }, + { + "id":"305b2350-13ae-4e55-adad-6a47d754f560", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:26:38.182Z", + "completed":"2016-01-13T03:26:38.182Z", + "new_balance":"3623.34", + "value":"-0.46" + } + }, + { + "id":"01dbcdc1-346c-4e74-99b5-a03a4c3b74c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T21:57:16.728Z", + "completed":"2016-01-13T21:57:16.728Z", + "new_balance":"3622.83", + "value":"-0.51" + } + }, + { + "id":"c08bd029-add9-46b9-89f2-c02ca09c882c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T19:37:21.682Z", + "completed":"2016-01-16T19:37:21.682Z", + "new_balance":"3613.31", + "value":"-9.52" + } + }, + { + "id":"c18fd7a2-cfed-4635-b3ee-2dc1930afe41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T08:10:16.199Z", + "completed":"2016-01-19T08:10:16.199Z", + "new_balance":"3606.48", + "value":"-6.83" + } + }, + { + "id":"3c460347-9e2b-48d9-ab36-43f1e7bf8918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T08:28:06.196Z", + "completed":"2016-01-19T08:28:06.196Z", + "new_balance":"3599.18", + "value":"-7.30" + } + }, + { + "id":"28f5e0b6-75e3-4354-b2c6-246620ed7e8d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T06:43:12.436Z", + "completed":"2016-01-24T06:43:12.436Z", + "new_balance":"3596.50", + "value":"-2.68" + } + }, + { + "id":"d0db8260-91c0-4172-9eb6-149d81b31f92", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T03:30:11.499Z", + "completed":"2016-01-27T03:30:11.499Z", + "new_balance":"3592.83", + "value":"-3.67" + } + }, + { + "id":"fd37e900-32ba-45d9-95af-62da8a320fb3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T23:29:43.003Z", + "completed":"2016-01-27T23:29:43.003Z", + "new_balance":"3827.79", + "value":"234.96" + } + }, + { + "id":"5479a78e-03e8-4e6b-8c35-260f33b653c6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T21:54:50.650Z", + "completed":"2016-01-31T21:54:50.650Z", + "new_balance":"3804.55", + "value":"-23.24" + } + }, + { + "id":"e4995196-c623-49fd-8d42-9cb2b6852207", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T04:36:34.141Z", + "completed":"2016-02-01T04:36:34.141Z", + "new_balance":"3801.11", + "value":"-3.44" + } + }, + { + "id":"5ec93b45-d0d8-4c7f-88cc-8a3bb59aadaf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T09:28:42.852Z", + "completed":"2016-02-01T09:28:42.852Z", + "new_balance":"3796.93", + "value":"-4.18" + } + }, + { + "id":"a5208506-de92-4e76-a9ef-eb105acae5c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T16:49:18.475Z", + "completed":"2016-02-01T16:49:18.475Z", + "new_balance":"3793.49", + "value":"-3.44" + } + }, + { + "id":"77ac7b10-89b6-4671-8b6e-771e41fcc957", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T21:01:07.268Z", + "completed":"2016-02-01T21:01:07.268Z", + "new_balance":"3785.79", + "value":"-7.70" + } + }, + { + "id":"7d3fc722-fc93-42c5-8740-a32f563028d2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T18:13:39.638Z", + "completed":"2016-02-03T18:13:39.638Z", + "new_balance":"3785.09", + "value":"-0.70" + } + }, + { + "id":"1b94539d-5988-4a6a-b813-85113d99c648", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T14:37:47.999Z", + "completed":"2016-02-04T14:37:47.999Z", + "new_balance":"3777.79", + "value":"-7.30" + } + }, + { + "id":"a51e62f0-9b96-495d-ab7e-235a70901899", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T05:32:50.384Z", + "completed":"2016-02-06T05:32:50.384Z", + "new_balance":"3768.33", + "value":"-9.46" + } + }, + { + "id":"4c315e74-4cbe-4687-aeab-ee64cce6afdc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T22:49:25.432Z", + "completed":"2016-02-06T22:49:25.432Z", + "new_balance":"3758.23", + "value":"-10.10" + } + }, + { + "id":"16ab2532-f790-4085-889a-d7ee512839a5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T22:33:31.958Z", + "completed":"2016-02-07T22:33:31.958Z", + "new_balance":"3754.43", + "value":"-3.80" + } + }, + { + "id":"c9abc1f2-dd2f-4b0b-916d-5e2b6467f0d8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T10:47:22.305Z", + "completed":"2016-02-08T10:47:22.305Z", + "new_balance":"3753.31", + "value":"-1.12" + } + }, + { + "id":"4238110e-572a-48ee-9962-3859a0851511", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T14:51:14.823Z", + "completed":"2016-02-09T14:51:14.823Z", + "new_balance":"3748.72", + "value":"-4.59" + } + }, + { + "id":"2d2dc699-bd9c-482e-9c22-943242b4a087", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T20:01:37.890Z", + "completed":"2016-02-11T20:01:37.890Z", + "new_balance":"3746.32", + "value":"-2.40" + } + }, + { + "id":"518d912d-3a08-4cce-95ed-db0b421f7008", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T01:54:14.886Z", + "completed":"2016-02-13T01:54:14.886Z", + "new_balance":"3743.44", + "value":"-2.88" + } + }, + { + "id":"df682b33-92b6-490f-baa0-13092b8b6ec4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T18:49:34.174Z", + "completed":"2016-02-17T18:49:34.174Z", + "new_balance":"3742.92", + "value":"-0.52" + } + }, + { + "id":"899e267a-da02-488c-8112-b9fc833b06c9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T14:50:59.858Z", + "completed":"2016-02-19T14:50:59.858Z", + "new_balance":"3737.74", + "value":"-5.18" + } + }, + { + "id":"59e296ac-00cf-4639-8e2f-00972dfa90e2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T15:55:36.489Z", + "completed":"2016-02-21T15:55:36.489Z", + "new_balance":"3730.44", + "value":"-7.30" + } + }, + { + "id":"8cce8015-491e-45f0-8e1c-f02dbd8a2768", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T13:34:07.440Z", + "completed":"2016-02-24T13:34:07.440Z", + "new_balance":"3726.77", + "value":"-3.67" + } + }, + { + "id":"9405dc30-fa4a-4b7c-99e3-cd50566bce94", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T11:38:47.202Z", + "completed":"2016-02-26T11:38:47.202Z", + "new_balance":"3961.73", + "value":"234.96" + } + }, + { + "id":"abf61af5-305b-43f0-99df-3f24e21a51e0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T01:27:00.789Z", + "completed":"2016-03-01T01:27:00.789Z", + "new_balance":"3954.03", + "value":"-7.70" + } + }, + { + "id":"3682bbf2-1c05-468d-a4f9-30c038f4cbd0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T01:43:53.808Z", + "completed":"2016-03-01T01:43:53.808Z", + "new_balance":"3950.59", + "value":"-3.44" + } + }, + { + "id":"d20ca2ef-5441-4664-b38d-5da1234c2fb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T21:49:50.803Z", + "completed":"2016-03-01T21:49:50.803Z", + "new_balance":"3947.15", + "value":"-3.44" + } + }, + { + "id":"73f14552-5c4a-4e02-bc62-d9fe3e36f44e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T22:59:32.081Z", + "completed":"2016-03-01T22:59:32.081Z", + "new_balance":"3942.97", + "value":"-4.18" + } + }, + { + "id":"f63f897c-ebb5-4978-8b7b-d85caba1dbde", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T01:18:49.396Z", + "completed":"2016-03-09T01:18:49.396Z", + "new_balance":"3937.15", + "value":"-5.82" + } + }, + { + "id":"846b033a-f389-4f7c-b1c6-9e293205d091", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T18:01:22.957Z", + "completed":"2016-03-09T18:01:22.957Z", + "new_balance":"3929.89", + "value":"-7.26" + } + }, + { + "id":"3ffda89e-4cc4-403f-be19-dce16abcd1d5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T18:07:47.194Z", + "completed":"2016-03-17T18:07:47.194Z", + "new_balance":"3922.15", + "value":"-7.74" + } + }, + { + "id":"a312f02f-25a6-445f-899b-1df0cd338f21", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T13:38:59.757Z", + "completed":"2016-03-18T13:38:59.757Z", + "new_balance":"3921.54", + "value":"-0.61" + } + }, + { + "id":"ebfe8eef-b099-48de-a30d-e4432e174ef3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T16:28:30.787Z", + "completed":"2016-03-18T16:28:30.787Z", + "new_balance":"3917.13", + "value":"-4.41" + } + }, + { + "id":"f2d8f49e-e1fb-47e1-8804-13d4e6fff9a1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T19:39:21.996Z", + "completed":"2016-03-18T19:39:21.996Z", + "new_balance":"3913.06", + "value":"-4.07" + } + }, + { + "id":"c18c5167-46f1-4486-a529-5f3ebab52529", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T23:40:50.105Z", + "completed":"2016-03-18T23:40:50.105Z", + "new_balance":"3905.32", + "value":"-7.74" + } + }, + { + "id":"df3b81e6-417e-468e-a1a7-58f4168a07c4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T19:08:06.396Z", + "completed":"2016-03-22T19:08:06.396Z", + "new_balance":"3895.31", + "value":"-10.01" + } + }, + { + "id":"5b7ac7be-60d8-43ed-bfe2-e73ebe9e8a26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T05:09:07.136Z", + "completed":"2016-03-29T05:09:07.136Z", + "new_balance":"3891.64", + "value":"-3.67" + } + }, + { + "id":"fd198a33-7afc-4422-9d63-dd057a46960c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T19:26:12.862Z", + "completed":"2016-03-29T19:26:12.862Z", + "new_balance":"4126.60", + "value":"234.96" + } + }, + { + "id":"c633e354-8616-4b0a-8f74-939a71d4f4e9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T09:31:25.148Z", + "completed":"2016-03-31T09:31:25.148Z", + "new_balance":"4103.36", + "value":"-23.24" + } + }, + { + "id":"d1d0945d-ab8b-4e37-b901-1ddc03e86d05", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T02:59:22.230Z", + "completed":"2016-04-01T02:59:22.230Z", + "new_balance":"4099.92", + "value":"-3.44" + } + }, + { + "id":"3dce1296-94d7-4b64-b2b0-f0ff7dd77fe9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T12:29:46.915Z", + "completed":"2016-04-01T12:29:46.915Z", + "new_balance":"4092.22", + "value":"-7.70" + } + }, + { + "id":"2c5a026a-70eb-4a7a-808f-d002e283031c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T13:51:58.589Z", + "completed":"2016-04-01T13:51:58.589Z", + "new_balance":"4088.04", + "value":"-4.18" + } + }, + { + "id":"4b0d802b-2b9f-4df8-b62d-09d23a5d164c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T21:52:11.298Z", + "completed":"2016-04-01T21:52:11.298Z", + "new_balance":"4084.60", + "value":"-3.44" + } + }, + { + "id":"d1e9b68e-26ab-4a6f-b520-0a541600692e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T18:51:03.696Z", + "completed":"2016-04-02T18:51:03.696Z", + "new_balance":"4077.04", + "value":"-7.56" + } + }, + { + "id":"0fdb7f37-95ac-4d9a-97be-8d2625000e01", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T00:17:56.135Z", + "completed":"2016-04-05T00:17:56.135Z", + "new_balance":"4075.80", + "value":"-1.24" + } + }, + { + "id":"4bcfec1e-bb70-453b-b202-31bbde80909a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T04:34:34.395Z", + "completed":"2016-04-05T04:34:34.395Z", + "new_balance":"4075.21", + "value":"-0.59" + } + }, + { + "id":"1a2a1d19-d371-4898-bb9f-fec7a0fd6b9f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T08:14:00.301Z", + "completed":"2016-04-05T08:14:00.301Z", + "new_balance":"4071.03", + "value":"-4.18" + } + }, + { + "id":"0379b72c-44f9-4805-a2a6-0383d4bdc8a2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T08:55:18.133Z", + "completed":"2016-04-05T08:55:18.133Z", + "new_balance":"4067.59", + "value":"-3.44" + } + }, + { + "id":"d03eb250-a662-4924-a5e2-051ea9c17947", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T11:30:43.424Z", + "completed":"2016-04-05T11:30:43.424Z", + "new_balance":"4060.29", + "value":"-7.30" + } + }, + { + "id":"e8d80182-ca7c-469f-8a3e-9b731e16a5ea", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T13:13:02.259Z", + "completed":"2016-04-05T13:13:02.259Z", + "new_balance":"4054.84", + "value":"-5.45" + } + }, + { + "id":"20037a78-e90e-4e66-905c-1ee09202f0bb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T22:28:10.501Z", + "completed":"2016-04-05T22:28:10.501Z", + "new_balance":"4054.14", + "value":"-0.70" + } + }, + { + "id":"78e687cb-410e-4a7b-9433-4a4864625d0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T11:16:37.763Z", + "completed":"2016-04-08T11:16:37.763Z", + "new_balance":"4046.05", + "value":"-8.09" + } + }, + { + "id":"931e0c8c-bbe5-4e81-bb59-ecfe833a5156", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T10:36:40.240Z", + "completed":"2016-04-10T10:36:40.240Z", + "new_balance":"4039.93", + "value":"-6.12" + } + }, + { + "id":"60e67187-06b6-42a2-9e11-51ecdd7db9a3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T13:04:17.383Z", + "completed":"2016-04-11T13:04:17.383Z", + "new_balance":"4032.63", + "value":"-7.30" + } + }, + { + "id":"a587c4d6-bfda-4170-b9a4-b5b58b4c7586", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T21:41:07.048Z", + "completed":"2016-04-11T21:41:07.048Z", + "new_balance":"4029.95", + "value":"-2.68" + } + }, + { + "id":"a1f68949-a4b3-42b5-932e-5f6c28d5cdef", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T15:52:35.847Z", + "completed":"2016-04-13T15:52:35.847Z", + "new_balance":"4026.28", + "value":"-3.67" + } + }, + { + "id":"8fdff6a1-ca47-427b-9a43-d5bf2e41b320", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T07:23:58.643Z", + "completed":"2016-04-18T07:23:58.643Z", + "new_balance":"4261.24", + "value":"234.96" + } + }, + { + "id":"b28fa716-14c5-4068-8a18-75d82bfa6608", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T01:41:01.562Z", + "completed":"2016-04-25T01:41:01.562Z", + "new_balance":"4238.00", + "value":"-23.24" + } + }, + { + "id":"b632b69a-feca-4c44-871a-dcc39dbe917e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T00:15:49.401Z", + "completed":"2016-05-02T00:15:49.401Z", + "new_balance":"4234.56", + "value":"-3.44" + } + }, + { + "id":"19d9ae97-ffd1-446c-bd41-0187dc5217c2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T03:41:48.829Z", + "completed":"2016-05-02T03:41:48.829Z", + "new_balance":"4226.86", + "value":"-7.70" + } + }, + { + "id":"d257f7d2-751b-4f15-9988-e7dc7076f344", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T07:22:30.077Z", + "completed":"2016-05-02T07:22:30.077Z", + "new_balance":"4223.42", + "value":"-3.44" + } + }, + { + "id":"7e141b7b-e4b2-401b-822b-db5343df7ec4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T11:33:45.681Z", + "completed":"2016-05-02T11:33:45.681Z", + "new_balance":"4219.24", + "value":"-4.18" + } + }, + { + "id":"ff824108-9005-412d-9f9e-25041a70d13b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T07:41:36.618Z", + "completed":"2016-05-04T07:41:36.618Z", + "new_balance":"4218.54", + "value":"-0.70" + } + }, + { + "id":"2bda6a85-b496-4332-8513-11051c88beff", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T13:42:31.311Z", + "completed":"2016-05-04T13:42:31.311Z", + "new_balance":"4211.24", + "value":"-7.30" + } + }, + { + "id":"a4963f21-9d79-482b-a2fa-35d123d08496", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T05:21:01.535Z", + "completed":"2016-05-06T05:21:01.535Z", + "new_balance":"4203.80", + "value":"-7.44" + } + }, + { + "id":"1f8a1387-1871-4a1a-9b34-b6efbb491b59", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T06:33:12.588Z", + "completed":"2016-05-07T06:33:12.588Z", + "new_balance":"4196.24", + "value":"-7.56" + } + }, + { + "id":"2eedba5d-1122-47e5-aaec-c396665e4006", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T20:10:26.223Z", + "completed":"2016-05-07T20:10:26.223Z", + "new_balance":"4193.53", + "value":"-2.71" + } + }, + { + "id":"db120e03-5e42-4076-aba8-5817b68ac7cc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T01:34:36.423Z", + "completed":"2016-05-09T01:34:36.423Z", + "new_balance":"4188.94", + "value":"-4.59" + } + }, + { + "id":"e6f71e8a-049f-4d24-8011-b223931a8d8e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T17:44:01.435Z", + "completed":"2016-05-09T17:44:01.435Z", + "new_balance":"4187.70", + "value":"-1.24" + } + }, + { + "id":"aea6f5f5-4045-4f93-9398-a8ec23b30d79", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T08:28:33.196Z", + "completed":"2016-05-13T08:28:33.196Z", + "new_balance":"4185.57", + "value":"-2.13" + } + }, + { + "id":"dc46ce37-2c2a-484f-9e3c-2bfe2a855bfb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T15:32:02.556Z", + "completed":"2016-05-13T15:32:02.556Z", + "new_balance":"4182.86", + "value":"-2.71" + } + }, + { + "id":"67bc95dc-0b94-4cfa-913f-00aea7fbc2cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T21:54:45.514Z", + "completed":"2016-05-13T21:54:45.514Z", + "new_balance":"4182.16", + "value":"-0.70" + } + }, + { + "id":"c74d090d-b512-4756-abcc-968a0b0c47da", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T08:41:39.218Z", + "completed":"2016-05-14T08:41:39.218Z", + "new_balance":"4174.86", + "value":"-7.30" + } + }, + { + "id":"a07cf698-cfdc-48b7-a9c2-d5b690a36b01", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T09:36:14.224Z", + "completed":"2016-05-14T09:36:14.224Z", + "new_balance":"4170.40", + "value":"-4.46" + } + }, + { + "id":"fbdea445-07a9-49a4-a06e-e7929751c879", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T05:21:20.977Z", + "completed":"2016-05-15T05:21:20.977Z", + "new_balance":"4166.73", + "value":"-3.67" + } + }, + { + "id":"bf00b30c-ed81-4b89-b7fa-9ef9c71ee9fa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T02:24:53.368Z", + "completed":"2016-05-30T02:24:53.368Z", + "new_balance":"4143.49", + "value":"-23.24" + } + }, + { + "id":"1028aaaf-e61a-4028-96bb-4c376fe0d2a0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T18:44:39.623Z", + "completed":"2016-05-30T18:44:39.623Z", + "new_balance":"4378.45", + "value":"234.96" + } + }, + { + "id":"ea14258f-6c99-49d5-ae11-d58b711d527f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T05:15:02.533Z", + "completed":"2016-06-01T05:15:02.533Z", + "new_balance":"4375.01", + "value":"-3.44" + } + }, + { + "id":"780d3dbb-24ec-4453-9846-0b0f46caf1eb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T16:24:54.092Z", + "completed":"2016-06-01T16:24:54.092Z", + "new_balance":"4370.83", + "value":"-4.18" + } + }, + { + "id":"894a3f00-2a18-4ce6-bf9a-7ab2222e134d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T17:25:44.220Z", + "completed":"2016-06-01T17:25:44.220Z", + "new_balance":"4363.13", + "value":"-7.70" + } + }, + { + "id":"b66a6c13-61c2-4828-bd76-44d75ef78f0d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:38:19.657Z", + "completed":"2016-06-01T18:38:19.657Z", + "new_balance":"4359.69", + "value":"-3.44" + } + }, + { + "id":"4d882932-6b12-4b5e-af86-8d5913ae3e68", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:54:44.948Z", + "completed":"2016-06-04T14:54:44.948Z", + "new_balance":"4352.43", + "value":"-7.26" + } + }, + { + "id":"32fa7ce3-3626-432c-8ba3-a9d660a82728", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T14:55:42.795Z", + "completed":"2016-06-04T14:55:42.795Z", + "new_balance":"4346.61", + "value":"-5.82" + } + }, + { + "id":"6cfe0ae0-f04a-4775-adb8-d9363d770903", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T03:49:14.611Z", + "completed":"2016-06-11T03:49:14.611Z", + "new_balance":"4338.87", + "value":"-7.74" + } + }, + { + "id":"2ae4e442-939e-42f4-a199-fb5bb5bc9907", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T09:51:58.082Z", + "completed":"2016-06-11T09:51:58.082Z", + "new_balance":"4331.13", + "value":"-7.74" + } + }, + { + "id":"3be26b74-ca09-4445-87fc-8bd1f676b52e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T17:50:23.176Z", + "completed":"2016-06-11T17:50:23.176Z", + "new_balance":"4326.72", + "value":"-4.41" + } + }, + { + "id":"b09ce80b-061e-45b2-9e3d-400ae75cb3a8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T08:01:46.376Z", + "completed":"2016-06-12T08:01:46.376Z", + "new_balance":"4322.65", + "value":"-4.07" + } + }, + { + "id":"8b51ce0d-a1cf-4674-b6ea-9351c3fc034c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T13:28:49.211Z", + "completed":"2016-06-12T13:28:49.211Z", + "new_balance":"4322.04", + "value":"-0.61" + } + }, + { + "id":"5217812f-85a3-409d-b793-7b3439648682", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:38:14.720Z", + "completed":"2016-06-16T00:38:14.720Z", + "new_balance":"4312.03", + "value":"-10.01" + } + }, + { + "id":"5dff825f-64cc-4c63-aa9e-f1727a7e8873", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T12:39:57.385Z", + "completed":"2016-06-29T12:39:57.385Z", + "new_balance":"4308.36", + "value":"-3.67" + } + }, + { + "id":"1b367b43-ecf5-4aa7-8b9b-65b407cedd46", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T07:19:25.918Z", + "completed":"2016-06-30T07:19:25.918Z", + "new_balance":"4285.12", + "value":"-23.24" + } + }, + { + "id":"0fdb67ec-a06b-4802-b335-4ad1c084798d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T20:16:18.693Z", + "completed":"2016-06-30T20:16:18.693Z", + "new_balance":"4520.08", + "value":"234.96" + } + }, + { + "id":"73a76ef4-95fa-4b31-9661-b3b12b5378b2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T06:33:45.075Z", + "completed":"2016-07-01T06:33:45.075Z", + "new_balance":"4515.90", + "value":"-4.18" + } + }, + { + "id":"a57a2873-2de2-42ca-b3d8-94a04bac92a7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T18:24:44.366Z", + "completed":"2016-07-01T18:24:44.366Z", + "new_balance":"4512.46", + "value":"-3.44" + } + }, + { + "id":"b1803656-ab06-47d4-b947-9754cbc32273", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T20:22:37.533Z", + "completed":"2016-07-01T20:22:37.533Z", + "new_balance":"4504.76", + "value":"-7.70" + } + }, + { + "id":"c639a843-096c-4aa5-8f51-d22cca98d45c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T23:37:38.846Z", + "completed":"2016-07-01T23:37:38.846Z", + "new_balance":"4501.32", + "value":"-3.44" + } + }, + { + "id":"847e0acf-ed06-47f5-b1a9-7777c4ac5f13", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T04:47:24.403Z", + "completed":"2016-07-05T04:47:24.403Z", + "new_balance":"4494.02", + "value":"-7.30" + } + }, + { + "id":"6ff07d67-5978-4055-bb43-2f771fd380d0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T07:18:57.111Z", + "completed":"2016-07-05T07:18:57.111Z", + "new_balance":"4483.98", + "value":"-10.04" + } + }, + { + "id":"9b80ceb7-77c4-47e3-a6b8-8f43f3b5381a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T17:57:28.849Z", + "completed":"2016-07-08T17:57:28.849Z", + "new_balance":"4482.58", + "value":"-1.40" + } + }, + { + "id":"4fd52f10-7350-4ce6-97de-3ef3e6b16b1e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T20:31:32.000Z", + "completed":"2016-07-10T20:31:32.000Z", + "new_balance":"4477.92", + "value":"-4.66" + } + }, + { + "id":"7be5a9c4-0f61-49b2-8bf0-668fadfa9f15", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T05:51:06.148Z", + "completed":"2016-07-12T05:51:06.148Z", + "new_balance":"4472.51", + "value":"-5.41" + } + }, + { + "id":"7e159a92-90cc-422e-a533-6d23bb4ffdfa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T07:55:53.355Z", + "completed":"2016-07-12T07:55:53.355Z", + "new_balance":"4469.07", + "value":"-3.44" + } + }, + { + "id":"287569e2-5007-45f7-980c-91f9fe87d868", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T03:52:28.582Z", + "completed":"2016-07-13T03:52:28.582Z", + "new_balance":"4468.61", + "value":"-0.46" + } + }, + { + "id":"3fc5c3ad-f224-4814-80a1-cef7dfd8f318", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T23:57:13.557Z", + "completed":"2016-07-13T23:57:13.557Z", + "new_balance":"4468.10", + "value":"-0.51" + } + }, + { + "id":"e91c1448-dfaa-4881-b69f-f93f73f136e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T05:15:27.163Z", + "completed":"2016-07-18T05:15:27.163Z", + "new_balance":"4458.58", + "value":"-9.52" + } + }, + { + "id":"0acb14d6-108e-4ea5-9e80-abed51002cfa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T05:30:32.107Z", + "completed":"2016-07-20T05:30:32.107Z", + "new_balance":"4451.28", + "value":"-7.30" + } + }, + { + "id":"c669f7fe-6e8b-4641-87bb-c9e2273c91df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T16:17:49.821Z", + "completed":"2016-07-20T16:17:49.821Z", + "new_balance":"4444.45", + "value":"-6.83" + } + }, + { + "id":"19e21086-6610-4fa9-abf5-5a8f1643fd80", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T15:52:16.090Z", + "completed":"2016-07-24T15:52:16.090Z", + "new_balance":"4441.77", + "value":"-2.68" + } + }, + { + "id":"fda75b35-2ef4-4609-b183-ca589cb8249b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T05:15:05.308Z", + "completed":"2016-07-29T05:15:05.308Z", + "new_balance":"4676.73", + "value":"234.96" + } + }, + { + "id":"4cb9878a-d52b-4936-be20-2ded79dcd08e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T05:44:06.952Z", + "completed":"2016-07-29T05:44:06.952Z", + "new_balance":"4673.06", + "value":"-3.67" + } + }, + { + "id":"38793d61-ab8e-4cab-b76e-9e251f09cfc5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:52:21.074Z", + "completed":"2016-07-30T05:52:21.074Z", + "new_balance":"4649.82", + "value":"-23.24" + } + }, + { + "id":"cafcc773-43c5-4b9e-86e8-7204ad7e08c7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T02:22:51.010Z", + "completed":"2016-08-01T02:22:51.010Z", + "new_balance":"4642.12", + "value":"-7.70" + } + }, + { + "id":"1b1e2818-35fb-41ac-918a-c4e98c739b19", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T21:58:49.930Z", + "completed":"2016-08-01T21:58:49.930Z", + "new_balance":"4638.68", + "value":"-3.44" + } + }, + { + "id":"14203688-366c-44d6-98a2-7df924644514", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T22:43:38.447Z", + "completed":"2016-08-01T22:43:38.447Z", + "new_balance":"4634.50", + "value":"-4.18" + } + }, + { + "id":"36bf642d-10fa-4bf8-a7c8-fe32fdfffd3c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T23:30:08.796Z", + "completed":"2016-08-01T23:30:08.796Z", + "new_balance":"4631.06", + "value":"-3.44" + } + }, + { + "id":"407ada85-b237-4d9d-851e-a6110bd3ea25", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T07:00:47.935Z", + "completed":"2016-08-03T07:00:47.935Z", + "new_balance":"4630.36", + "value":"-0.70" + } + }, + { + "id":"3bcb62a6-5b0b-4b04-b051-adaa844766cf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T15:42:25.831Z", + "completed":"2016-08-04T15:42:25.831Z", + "new_balance":"4623.06", + "value":"-7.30" + } + }, + { + "id":"59ffe002-5196-4504-8894-a63bf7939794", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:41:11.074Z", + "completed":"2016-08-08T10:41:11.074Z", + "new_balance":"4612.96", + "value":"-10.10" + } + }, + { + "id":"1e297537-a559-4681-ad6a-9a079aa5ec12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T18:16:53.928Z", + "completed":"2016-08-08T18:16:53.928Z", + "new_balance":"4609.16", + "value":"-3.80" + } + }, + { + "id":"47a02e3d-844f-4a8d-a743-d9e6d7f0b728", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T19:38:27.124Z", + "completed":"2016-08-08T19:38:27.124Z", + "new_balance":"4599.70", + "value":"-9.46" + } + }, + { + "id":"16a2bc63-355f-461c-80c9-930d801205c0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T22:12:45.385Z", + "completed":"2016-08-08T22:12:45.385Z", + "new_balance":"4598.58", + "value":"-1.12" + } + }, + { + "id":"e62e7b21-7fc4-4789-b30e-1907cbe2b9c9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T09:37:44.305Z", + "completed":"2016-08-09T09:37:44.305Z", + "new_balance":"4593.99", + "value":"-4.59" + } + }, + { + "id":"b1efbc05-e0be-459e-9fb0-3b9bd3780bc4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T08:51:47.500Z", + "completed":"2016-08-14T08:51:47.500Z", + "new_balance":"4591.59", + "value":"-2.40" + } + }, + { + "id":"84ef5731-3c57-4964-a1ea-5896c7a4f576", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T03:43:18.806Z", + "completed":"2016-08-15T03:43:18.806Z", + "new_balance":"4588.71", + "value":"-2.88" + } + }, + { + "id":"105a044c-b7ad-4b0a-9102-a70f2fb61d3d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T04:16:13.864Z", + "completed":"2016-08-19T04:16:13.864Z", + "new_balance":"4588.19", + "value":"-0.52" + } + }, + { + "id":"583295fe-d913-42e7-aac1-0558976ce5a9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T12:52:20.042Z", + "completed":"2016-08-22T12:52:20.042Z", + "new_balance":"4583.01", + "value":"-5.18" + } + }, + { + "id":"72aa6db0-6e94-4a0b-a590-d9c9084a8a51", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T20:28:21.726Z", + "completed":"2016-08-26T20:28:21.726Z", + "new_balance":"4575.71", + "value":"-7.30" + } + }, + { + "id":"240a54b6-cefd-4e5c-bda0-8a9c9083cc6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T11:10:29.779Z", + "completed":"2016-08-28T11:10:29.779Z", + "new_balance":"4552.47", + "value":"-23.24" + } + }, + { + "id":"a74c65ad-1fff-44b0-acf6-b7d771590343", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T04:50:19.946Z", + "completed":"2016-08-29T04:50:19.946Z", + "new_balance":"4548.80", + "value":"-3.67" + } + }, + { + "id":"5cf4273e-25ee-4f2e-af83-64f88798ae5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T13:34:36.534Z", + "completed":"2016-08-29T13:34:36.534Z", + "new_balance":"4783.76", + "value":"234.96" + } + }, + { + "id":"bdf7fe24-6a25-4575-b75e-ddf99bbc78d4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T13:16:08.492Z", + "completed":"2016-08-30T13:16:08.492Z", + "new_balance":"4760.52", + "value":"-23.24" + } + }, + { + "id":"f8098dc1-a3c1-418e-a3fa-c0780f2fa40d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:00:46.334Z", + "completed":"2016-09-01T09:00:46.334Z", + "new_balance":"4757.08", + "value":"-3.44" + } + }, + { + "id":"3265ed28-d5d5-4eac-a7e3-be1351a2a918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T16:40:49.502Z", + "completed":"2016-09-01T16:40:49.502Z", + "new_balance":"4753.64", + "value":"-3.44" + } + }, + { + "id":"69bc0414-d981-4c04-8b58-24777173267c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T21:50:16.894Z", + "completed":"2016-09-01T21:50:16.894Z", + "new_balance":"4749.46", + "value":"-4.18" + } + }, + { + "id":"ac90ec99-5e0e-4be2-8f3c-297c7baf77af", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T22:28:35.815Z", + "completed":"2016-09-01T22:28:35.815Z", + "new_balance":"4741.76", + "value":"-7.70" + } + }, + { + "id":"dbfc6b17-fdab-4da0-ac15-a75539789c0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T19:00:17.741Z", + "completed":"2016-09-09T19:00:17.741Z", + "new_balance":"4735.94", + "value":"-5.82" + } + }, + { + "id":"f6374816-d19f-4fc1-9ddc-f7b032d287aa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T23:41:47.813Z", + "completed":"2016-09-09T23:41:47.813Z", + "new_balance":"4728.68", + "value":"-7.26" + } + }, + { + "id":"8996ab6e-2c3e-4ff8-aab6-f4cac6acc457", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T09:07:19.733Z", + "completed":"2016-09-17T09:07:19.733Z", + "new_balance":"4720.94", + "value":"-7.74" + } + }, + { + "id":"f498ec85-9aa8-418b-b7f8-4c43ff878d75", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T08:43:43.084Z", + "completed":"2016-09-18T08:43:43.084Z", + "new_balance":"4713.20", + "value":"-7.74" + } + }, + { + "id":"1134ecc6-53cd-4dec-bd16-2f92fa687735", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T09:48:25.335Z", + "completed":"2016-09-18T09:48:25.335Z", + "new_balance":"4708.79", + "value":"-4.41" + } + }, + { + "id":"4f1faf45-cd34-4152-a972-03d78d44341f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T20:03:18.234Z", + "completed":"2016-09-18T20:03:18.234Z", + "new_balance":"4704.72", + "value":"-4.07" + } + }, + { + "id":"d43bbc48-e3af-4d82-b371-b413efdc5c26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T23:19:18.224Z", + "completed":"2016-09-18T23:19:18.224Z", + "new_balance":"4704.11", + "value":"-0.61" + } + }, + { + "id":"2523d3ae-5792-49b4-b0ea-305351a2eeb6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T03:21:03.610Z", + "completed":"2016-09-22T03:21:03.610Z", + "new_balance":"4694.10", + "value":"-10.01" + } + }, + { + "id":"3a43bd35-a688-45b2-9f3b-10be4bdef31a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T06:11:46.405Z", + "completed":"2016-09-29T06:11:46.405Z", + "new_balance":"4929.06", + "value":"234.96" + } + }, + { + "id":"8de99472-3a03-45c6-b824-a8ac62202cc0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T21:08:24.372Z", + "completed":"2016-09-29T21:08:24.372Z", + "new_balance":"4925.39", + "value":"-3.67" + } + }, + { + "id":"1beb705b-c4e1-402b-882b-5dbeddc0d0a8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T11:30:08.449Z", + "completed":"2016-09-30T11:30:08.449Z", + "new_balance":"4902.15", + "value":"-23.24" + } + }, + { + "id":"b7d7bdd5-12ea-4405-aea9-b0249a9bb85f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T04:08:40.230Z", + "completed":"2016-10-01T04:08:40.230Z", + "new_balance":"4898.71", + "value":"-3.44" + } + }, + { + "id":"54ad08bd-1641-4ece-ac4d-834497ab1002", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T20:04:16.414Z", + "completed":"2016-10-01T20:04:16.414Z", + "new_balance":"4895.27", + "value":"-3.44" + } + }, + { + "id":"9c9ae4d3-7f61-4548-88d6-71ddc760b167", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T21:03:58.112Z", + "completed":"2016-10-01T21:03:58.112Z", + "new_balance":"4887.57", + "value":"-7.70" + } + }, + { + "id":"7f070a75-b095-41f5-af83-5607aedf8b93", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T21:56:09.666Z", + "completed":"2016-10-01T21:56:09.666Z", + "new_balance":"4883.39", + "value":"-4.18" + } + }, + { + "id":"3351aaf6-8e52-4ea2-a539-ab8d192089b4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T22:51:11.313Z", + "completed":"2016-10-02T22:51:11.313Z", + "new_balance":"4875.83", + "value":"-7.56" + } + }, + { + "id":"188dfc46-6aa8-44b5-9df7-016e98a5b482", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T03:51:25.475Z", + "completed":"2016-10-05T03:51:25.475Z", + "new_balance":"4875.13", + "value":"-0.70" + } + }, + { + "id":"390736be-f3a4-4537-84ef-995aab5993cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T13:04:22.029Z", + "completed":"2016-10-05T13:04:22.029Z", + "new_balance":"4867.83", + "value":"-7.30" + } + }, + { + "id":"b6cce7f3-4b83-4f75-a487-4e44959f2021", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T13:05:16.200Z", + "completed":"2016-10-05T13:05:16.200Z", + "new_balance":"4867.24", + "value":"-0.59" + } + }, + { + "id":"49c70ae3-9bf3-48e5-92d5-29274d30c0fd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:27:05.979Z", + "completed":"2016-10-05T14:27:05.979Z", + "new_balance":"4866.00", + "value":"-1.24" + } + }, + { + "id":"07d28f9c-675d-4e37-8e38-2d98d6676be2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T14:39:20.994Z", + "completed":"2016-10-05T14:39:20.994Z", + "new_balance":"4861.82", + "value":"-4.18" + } + }, + { + "id":"e3f31f95-ef01-4bbc-8bdb-b12195390deb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T17:31:19.270Z", + "completed":"2016-10-05T17:31:19.270Z", + "new_balance":"4856.37", + "value":"-5.45" + } + }, + { + "id":"8d99980a-bac1-4346-a148-702b04f9b003", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:30:25.444Z", + "completed":"2016-10-05T18:30:25.444Z", + "new_balance":"4852.93", + "value":"-3.44" + } + }, + { + "id":"678a0ea0-a830-48df-b37d-aa8e733a52bd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T14:08:51.349Z", + "completed":"2016-10-09T14:08:51.349Z", + "new_balance":"4844.84", + "value":"-8.09" + } + }, + { + "id":"27ea3d0c-a820-4196-9014-e58224234ce3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T16:41:51.964Z", + "completed":"2016-10-11T16:41:51.964Z", + "new_balance":"4838.72", + "value":"-6.12" + } + }, + { + "id":"59198e39-b5e0-44fe-8db1-c9d041d22ef7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T08:31:54.645Z", + "completed":"2016-10-12T08:31:54.645Z", + "new_balance":"4831.42", + "value":"-7.30" + } + }, + { + "id":"a1eab607-279b-40eb-9b0e-6da5dc30ad6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T19:04:48.400Z", + "completed":"2016-10-12T19:04:48.400Z", + "new_balance":"4828.74", + "value":"-2.68" + } + }, + { + "id":"24ad81f8-e6c4-435d-b248-2344d39f14b4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T11:01:58.419Z", + "completed":"2016-10-20T11:01:58.419Z", + "new_balance":"4825.07", + "value":"-3.67" + } + }, + { + "id":"6da51fb3-2f6d-4754-9510-015140769c0d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T11:46:34.954Z", + "completed":"2016-10-29T11:46:34.954Z", + "new_balance":"5060.03", + "value":"234.96" + } + }, + { + "id":"dcff65c7-5d3d-4a4b-9aee-b4c1eea137c2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T17:43:31.659Z", + "completed":"2016-10-30T17:43:31.659Z", + "new_balance":"5036.79", + "value":"-23.24" + } + }, + { + "id":"07d8012e-855a-456a-bf98-1976c69da204", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T02:35:12.530Z", + "completed":"2016-11-02T02:35:12.530Z", + "new_balance":"5032.61", + "value":"-4.18" + } + }, + { + "id":"5793b81f-d974-4896-b880-acdfa4d09199", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T03:38:30.600Z", + "completed":"2016-11-02T03:38:30.600Z", + "new_balance":"5024.91", + "value":"-7.70" + } + }, + { + "id":"e8f63d4e-442f-4f58-84a4-f4b8e49e0bf8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T06:13:32.929Z", + "completed":"2016-11-02T06:13:32.929Z", + "new_balance":"5021.47", + "value":"-3.44" + } + }, + { + "id":"91b1b99e-7a71-44f8-a755-847c2d854937", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T09:03:56.742Z", + "completed":"2016-11-02T09:03:56.742Z", + "new_balance":"5018.03", + "value":"-3.44" + } + }, + { + "id":"04ee600a-081e-4569-ac96-ce8102ef8d9c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T00:45:08.361Z", + "completed":"2016-11-04T00:45:08.361Z", + "new_balance":"5010.73", + "value":"-7.30" + } + }, + { + "id":"0b9d836d-2d52-424d-90fb-d2ea6bff0abd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T16:15:49.241Z", + "completed":"2016-11-04T16:15:49.241Z", + "new_balance":"5010.03", + "value":"-0.70" + } + }, + { + "id":"e513b299-8390-449d-ba5e-8aeec9849314", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T06:23:44.710Z", + "completed":"2016-11-06T06:23:44.710Z", + "new_balance":"5002.59", + "value":"-7.44" + } + }, + { + "id":"85ef8a1a-df66-4d3c-8948-2bc1369786df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T02:30:00.853Z", + "completed":"2016-11-07T02:30:00.853Z", + "new_balance":"4999.88", + "value":"-2.71" + } + }, + { + "id":"82f15ff4-e00f-4269-b2de-0510db577cd9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T15:06:59.088Z", + "completed":"2016-11-07T15:06:59.088Z", + "new_balance":"4992.32", + "value":"-7.56" + } + }, + { + "id":"09b86d89-f6bd-4648-9e43-64610798d23b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T00:47:31.493Z", + "completed":"2016-11-09T00:47:31.493Z", + "new_balance":"4987.73", + "value":"-4.59" + } + }, + { + "id":"db2f7edb-1d51-4e40-afec-7c7c9beddcdb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T03:50:34.279Z", + "completed":"2016-11-09T03:50:34.279Z", + "new_balance":"4986.49", + "value":"-1.24" + } + }, + { + "id":"785bec88-c291-4fb3-8c46-ec3c603a435f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T01:40:49.793Z", + "completed":"2016-11-13T01:40:49.793Z", + "new_balance":"4984.36", + "value":"-2.13" + } + }, + { + "id":"e937450c-20c0-4e8c-b75f-426219eb8312", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T02:43:44.428Z", + "completed":"2016-11-13T02:43:44.428Z", + "new_balance":"4983.66", + "value":"-0.70" + } + }, + { + "id":"ef5a67c9-df73-44db-95c2-0225c1072f02", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T14:21:59.607Z", + "completed":"2016-11-13T14:21:59.607Z", + "new_balance":"4980.95", + "value":"-2.71" + } + }, + { + "id":"e10c728f-45fb-4897-8cb9-f1a67fdfc1e7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T04:12:02.731Z", + "completed":"2016-11-14T04:12:02.731Z", + "new_balance":"4973.65", + "value":"-7.30" + } + }, + { + "id":"a0c6fad0-05aa-46f6-9992-62f0f90f8d97", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T05:33:53.925Z", + "completed":"2016-11-14T05:33:53.925Z", + "new_balance":"4969.19", + "value":"-4.46" + } + }, + { + "id":"11ef2f9d-f6dc-422f-9e56-0ce1b270ca14", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T04:26:38.416Z", + "completed":"2016-11-15T04:26:38.416Z", + "new_balance":"4965.52", + "value":"-3.67" + } + }, + { + "id":"f6716f65-cadd-4cac-be3d-bc1496e28b4b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T02:12:54.395Z", + "completed":"2016-11-30T02:12:54.395Z", + "new_balance":"5200.48", + "value":"234.96" + } + }, + { + "id":"1172cb0e-b04a-45c8-9a86-bb14c3359046", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T09:03:22.642Z", + "completed":"2016-11-30T09:03:22.642Z", + "new_balance":"5177.24", + "value":"-23.24" + } + }, + { + "id":"82ba0e93-8c14-4037-967d-018bee5fc2ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T00:24:24.249Z", + "completed":"2016-12-01T00:24:24.249Z", + "new_balance":"5173.80", + "value":"-3.44" + } + }, + { + "id":"0fe9244c-affc-4f3d-ae76-20ff8aa0d198", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T08:14:32.145Z", + "completed":"2016-12-01T08:14:32.145Z", + "new_balance":"5170.36", + "value":"-3.44" + } + }, + { + "id":"55201722-c876-49e3-8fb1-11dc3d4dd315", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T23:36:11.471Z", + "completed":"2016-12-01T23:36:11.471Z", + "new_balance":"5166.18", + "value":"-4.18" + } + }, + { + "id":"4c223ed7-4b59-4202-92d5-f88c02421ae8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T23:39:21.523Z", + "completed":"2016-12-01T23:39:21.523Z", + "new_balance":"5158.48", + "value":"-7.70" + } + }, + { + "id":"b14a84fc-df70-44e0-baed-638b28706430", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T13:33:06.192Z", + "completed":"2016-12-04T13:33:06.192Z", + "new_balance":"5152.66", + "value":"-5.82" + } + }, + { + "id":"70b5c6da-1dd2-47d9-a62d-af5f468ae1a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T22:01:45.908Z", + "completed":"2016-12-04T22:01:45.908Z", + "new_balance":"5145.40", + "value":"-7.26" + } + }, + { + "id":"72fe74e3-c656-47fe-9e34-ab44309747c3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T01:50:23.591Z", + "completed":"2016-12-11T01:50:23.591Z", + "new_balance":"5137.66", + "value":"-7.74" + } + }, + { + "id":"55d88121-fbe5-49a7-8278-d5b4d978503c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T03:28:07.461Z", + "completed":"2016-12-11T03:28:07.461Z", + "new_balance":"5129.92", + "value":"-7.74" + } + }, + { + "id":"c8431b80-6f63-4d8b-8321-3c2b5dc18b5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T13:59:19.841Z", + "completed":"2016-12-11T13:59:19.841Z", + "new_balance":"5125.51", + "value":"-4.41" + } + }, + { + "id":"84b60f96-f374-4fc5-b0b8-e1595fd417f9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T13:41:32.459Z", + "completed":"2016-12-12T13:41:32.459Z", + "new_balance":"5124.90", + "value":"-0.61" + } + }, + { + "id":"99ef46a4-aece-4e9c-b4b9-f0f0190f2f47", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T20:37:41.963Z", + "completed":"2016-12-12T20:37:41.963Z", + "new_balance":"5120.83", + "value":"-4.07" + } + }, + { + "id":"400c925f-f668-4363-ad7a-0c42c22e7420", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T21:00:08.614Z", + "completed":"2016-12-16T21:00:08.614Z", + "new_balance":"5110.82", + "value":"-10.01" + } + }, + { + "id":"39622658-2ba8-439a-94a2-b22e14f30bbe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T14:27:09.945Z", + "completed":"2016-12-29T14:27:09.945Z", + "new_balance":"5107.15", + "value":"-3.67" + } + }, + { + "id":"4b9ae5be-7d0a-4e24-9a74-b161865bff2f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T12:49:25.518Z", + "completed":"2016-12-30T12:49:25.518Z", + "new_balance":"5083.91", + "value":"-23.24" + } + }, + { + "id":"56b9f5ff-d836-4568-a9e3-c4499eb6adac", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T17:11:39.510Z", + "completed":"2016-12-30T17:11:39.510Z", + "new_balance":"5318.87", + "value":"234.96" + } + }, + { + "id":"f4fa1d34-1d47-41ee-87cb-66ff1ad38771", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T01:58:51.586Z", + "completed":"2017-01-01T01:58:51.586Z", + "new_balance":"5314.69", + "value":"-4.18" + } + }, + { + "id":"8077f410-344b-4311-a979-f19eb31dd164", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T08:45:26.332Z", + "completed":"2017-01-01T08:45:26.332Z", + "new_balance":"5306.99", + "value":"-7.70" + } + }, + { + "id":"c01d0463-4124-432f-ba01-5ba0d49b2566", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:55:28.132Z", + "completed":"2017-01-01T12:55:28.132Z", + "new_balance":"5303.55", + "value":"-3.44" + } + }, + { + "id":"952f2d23-4acd-4690-8609-310722f36ac3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T15:02:39.968Z", + "completed":"2017-01-01T15:02:39.968Z", + "new_balance":"5300.11", + "value":"-3.44" + } + }, + { + "id":"e9291508-2c30-44e9-be27-74d955c9fe41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T07:36:00.843Z", + "completed":"2017-01-05T07:36:00.843Z", + "new_balance":"5292.81", + "value":"-7.30" + } + }, + { + "id":"c9e3e043-dd24-4e71-ab0d-1274e5e198cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T14:48:45.194Z", + "completed":"2017-01-05T14:48:45.194Z", + "new_balance":"5282.77", + "value":"-10.04" + } + }, + { + "id":"19788ec1-1ef3-414e-8a39-ed2b6616ce21", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T09:44:55.250Z", + "completed":"2017-01-08T09:44:55.250Z", + "new_balance":"5281.37", + "value":"-1.40" + } + }, + { + "id":"661b099d-41e1-41bc-8b92-3ed2023a5c69", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T05:29:21.313Z", + "completed":"2017-01-10T05:29:21.313Z", + "new_balance":"5276.71", + "value":"-4.66" + } + }, + { + "id":"6894ebb2-5ddb-48fa-9442-b579587d132c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T18:25:04.126Z", + "completed":"2017-01-11T18:25:04.126Z", + "new_balance":"5271.30", + "value":"-5.41" + } + }, + { + "id":"da127330-1524-49f3-bcbf-d5c442b13972", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T14:29:22.164Z", + "completed":"2017-01-12T14:29:22.164Z", + "new_balance":"5267.86", + "value":"-3.44" + } + }, + { + "id":"4a370e63-5ff3-495a-a564-a7b04643047d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T11:01:48.307Z", + "completed":"2017-01-13T11:01:48.307Z", + "new_balance":"5267.35", + "value":"-0.51" + } + }, + { + "id":"d475c2bf-f0a9-4ccc-b727-e611d138b343", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T16:37:57.765Z", + "completed":"2017-01-13T16:37:57.765Z", + "new_balance":"5266.89", + "value":"-0.46" + } + }, + { + "id":"6e8346bf-24a6-4d8d-8444-cda181c1feb6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T15:39:40.214Z", + "completed":"2017-01-16T15:39:40.214Z", + "new_balance":"5257.37", + "value":"-9.52" + } + }, + { + "id":"3b4e69e3-4d9e-4ff7-ad0f-50c489d4080a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T15:39:45.998Z", + "completed":"2017-01-19T15:39:45.998Z", + "new_balance":"5250.54", + "value":"-6.83" + } + }, + { + "id":"87d94ea6-fb4e-42c2-817c-be3cba07b38f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T22:55:39.330Z", + "completed":"2017-01-19T22:55:39.330Z", + "new_balance":"5243.24", + "value":"-7.30" + } + }, + { + "id":"3baa38a1-182c-44ec-9faa-72923b48cbc9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T14:20:01.952Z", + "completed":"2017-01-24T14:20:01.952Z", + "new_balance":"5240.56", + "value":"-2.68" + } + }, + { + "id":"f248a097-46d5-44ab-aeff-42ed1147751f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T10:47:44.132Z", + "completed":"2017-01-27T10:47:44.132Z", + "new_balance":"5475.52", + "value":"234.96" + } + }, + { + "id":"e856048e-3508-4c59-bd9b-179a4e216aad", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T15:35:34.327Z", + "completed":"2017-01-27T15:35:34.327Z", + "new_balance":"5471.85", + "value":"-3.67" + } + }, + { + "id":"9c437133-5904-4a0d-931a-4ec38b3487fe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T05:57:06.155Z", + "completed":"2017-01-31T05:57:06.155Z", + "new_balance":"5448.61", + "value":"-23.24" + } + }, + { + "id":"bbf6d283-2059-43c8-a3ec-c1098c307ce8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T02:50:15.410Z", + "completed":"2017-02-01T02:50:15.410Z", + "new_balance":"5445.17", + "value":"-3.44" + } + }, + { + "id":"a200c78b-4d34-42b9-b343-e51dde254725", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T16:31:58.332Z", + "completed":"2017-02-01T16:31:58.332Z", + "new_balance":"5440.99", + "value":"-4.18" + } + }, + { + "id":"23f988d9-f263-48ed-9932-8f9f2e65706c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T16:52:05.792Z", + "completed":"2017-02-01T16:52:05.792Z", + "new_balance":"5437.55", + "value":"-3.44" + } + }, + { + "id":"c5156283-144c-4c31-90a4-bee4cb592192", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T21:53:38.099Z", + "completed":"2017-02-01T21:53:38.099Z", + "new_balance":"5429.85", + "value":"-7.70" + } + }, + { + "id":"91c13ea0-bd0d-46eb-996b-b4a40b031821", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T07:25:21.845Z", + "completed":"2017-02-03T07:25:21.845Z", + "new_balance":"5429.15", + "value":"-0.70" + } + }, + { + "id":"8f71e913-e18d-4694-bddc-b15be3e1d5ee", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T18:23:59.330Z", + "completed":"2017-02-04T18:23:59.330Z", + "new_balance":"5421.85", + "value":"-7.30" + } + }, + { + "id":"7fb33046-8115-4efd-9543-517675486b47", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T08:08:34.349Z", + "completed":"2017-02-06T08:08:34.349Z", + "new_balance":"5412.39", + "value":"-9.46" + } + }, + { + "id":"70c923e4-787d-4ecd-bfdd-bdf55fac14d1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T10:09:25.221Z", + "completed":"2017-02-06T10:09:25.221Z", + "new_balance":"5402.29", + "value":"-10.10" + } + }, + { + "id":"d5a946f1-3a19-4e26-96ad-5e463733a9dc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T00:13:24.908Z", + "completed":"2017-02-07T00:13:24.908Z", + "new_balance":"5398.49", + "value":"-3.80" + } + }, + { + "id":"343f4b56-93e7-4196-8731-f8af6d76126c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T03:45:55.375Z", + "completed":"2017-02-08T03:45:55.375Z", + "new_balance":"5397.37", + "value":"-1.12" + } + }, + { + "id":"df501dce-80f1-4fb9-819c-a89626f7bb5f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T23:45:35.737Z", + "completed":"2017-02-09T23:45:35.737Z", + "new_balance":"5392.78", + "value":"-4.59" + } + }, + { + "id":"7331e9be-2a5f-45c6-abfb-dbf5dea11371", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T07:48:02.804Z", + "completed":"2017-02-11T07:48:02.804Z", + "new_balance":"5390.38", + "value":"-2.40" + } + }, + { + "id":"9f014943-4d0e-4292-b0a1-7a1a2197449f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T09:58:15.707Z", + "completed":"2017-02-13T09:58:15.707Z", + "new_balance":"5387.50", + "value":"-2.88" + } + }, + { + "id":"8fc05827-e545-4885-a0a4-eeaf6a6819a9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T20:44:25.664Z", + "completed":"2017-02-17T20:44:25.664Z", + "new_balance":"5386.98", + "value":"-0.52" + } + }, + { + "id":"450b380c-c699-478e-8d69-a41e32bd2e41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T05:31:06.738Z", + "completed":"2017-02-19T05:31:06.738Z", + "new_balance":"5381.80", + "value":"-5.18" + } + }, + { + "id":"11585120-fc46-4b39-992d-9b1cd31c4d4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T12:54:41.616Z", + "completed":"2017-02-21T12:54:41.616Z", + "new_balance":"5374.50", + "value":"-7.30" + } + }, + { + "id":"a0083c17-37dd-4ac9-80d7-e2fcae17a1e2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T02:41:06.681Z", + "completed":"2017-02-24T02:41:06.681Z", + "new_balance":"5370.83", + "value":"-3.67" + } + }, + { + "id":"e2b54f1a-a5ae-46ce-9c4f-2e58da3229cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T07:01:04.764Z", + "completed":"2017-02-26T07:01:04.764Z", + "new_balance":"5605.79", + "value":"234.96" + } + }, + { + "id":"1e10edaf-8fc6-4ba6-a052-65c1666b4d76", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T01:50:13.885Z", + "completed":"2017-03-01T01:50:13.885Z", + "new_balance":"5601.61", + "value":"-4.18" + } + }, + { + "id":"183cb536-501e-417d-bef8-8d699ebfc995", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T06:02:22.167Z", + "completed":"2017-03-01T06:02:22.167Z", + "new_balance":"5598.17", + "value":"-3.44" + } + }, + { + "id":"ec590026-9232-4367-8d17-3dd8be47b572", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T10:26:19.314Z", + "completed":"2017-03-01T10:26:19.314Z", + "new_balance":"5590.47", + "value":"-7.70" + } + }, + { + "id":"0b784734-b848-49ca-8994-11980ef81054", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T19:40:46.630Z", + "completed":"2017-03-01T19:40:46.630Z", + "new_balance":"5587.03", + "value":"-3.44" + } + }, + { + "id":"5a67658a-260c-4bdb-b527-180c12814fc7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T18:44:36.116Z", + "completed":"2017-03-09T18:44:36.116Z", + "new_balance":"5581.21", + "value":"-5.82" + } + }, + { + "id":"8f5b59cf-71ae-4526-a2b2-0e5ecfb3f03d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T20:41:34.741Z", + "completed":"2017-03-09T20:41:34.741Z", + "new_balance":"5573.95", + "value":"-7.26" + } + }, + { + "id":"1836ec53-c243-4d8a-8a97-c99f0a366962", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T03:55:20.048Z", + "completed":"2017-03-17T03:55:20.048Z", + "new_balance":"5566.21", + "value":"-7.74" + } + }, + { + "id":"ca98597e-8298-43d1-aff8-a442d4c64d12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:39:03.045Z", + "completed":"2017-03-18T14:39:03.045Z", + "new_balance":"5558.47", + "value":"-7.74" + } + }, + { + "id":"74057fd8-e153-48e0-9c3f-35103e8bb22f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:40:25.120Z", + "completed":"2017-03-18T14:40:25.120Z", + "new_balance":"5554.06", + "value":"-4.41" + } + }, + { + "id":"975cfa97-61d9-4cab-9454-47daa5f0eba4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T15:12:35.874Z", + "completed":"2017-03-18T15:12:35.874Z", + "new_balance":"5553.45", + "value":"-0.61" + } + }, + { + "id":"f69ba89d-8ab0-4ab7-8963-e1baaf971e89", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T23:37:48.104Z", + "completed":"2017-03-18T23:37:48.104Z", + "new_balance":"5549.38", + "value":"-4.07" + } + }, + { + "id":"efd9405e-080d-49fb-858d-506de42aa7db", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T01:49:56.883Z", + "completed":"2017-03-22T01:49:56.883Z", + "new_balance":"5539.37", + "value":"-10.01" + } + }, + { + "id":"1ee38e06-81e3-47c6-a07f-5a2779984350", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T03:51:03.610Z", + "completed":"2017-03-29T03:51:03.610Z", + "new_balance":"5774.33", + "value":"234.96" + } + }, + { + "id":"ad06b114-5b5d-41f7-baa4-bae92a66559f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T15:54:06.517Z", + "completed":"2017-03-29T15:54:06.517Z", + "new_balance":"5770.66", + "value":"-3.67" + } + }, + { + "id":"850687f9-d6a6-42dd-a4da-0e3be30a3df9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T13:56:07.546Z", + "completed":"2017-03-31T13:56:07.546Z", + "new_balance":"5747.42", + "value":"-23.24" + } + }, + { + "id":"abcf64d3-727c-4292-b3f7-b89d80dcc8f1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T00:42:04.251Z", + "completed":"2017-04-01T00:42:04.251Z", + "new_balance":"5743.98", + "value":"-3.44" + } + }, + { + "id":"b1f81e55-d3fe-4cdd-9b1b-1e32fdc8c100", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T06:10:37.602Z", + "completed":"2017-04-01T06:10:37.602Z", + "new_balance":"5736.28", + "value":"-7.70" + } + }, + { + "id":"5f1807e2-52fd-4298-920f-b3d297e0fb74", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T10:45:08.755Z", + "completed":"2017-04-01T10:45:08.755Z", + "new_balance":"5732.84", + "value":"-3.44" + } + }, + { + "id":"3b7f9093-0fed-4541-9052-3e477376da9b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T14:49:17.024Z", + "completed":"2017-04-01T14:49:17.024Z", + "new_balance":"5728.66", + "value":"-4.18" + } + }, + { + "id":"afa6680e-10c3-4f27-a81e-3437b10a8f24", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T05:41:25.611Z", + "completed":"2017-04-02T05:41:25.611Z", + "new_balance":"5721.10", + "value":"-7.56" + } + }, + { + "id":"d83de3d5-d3ed-4128-9edd-361c9bfd2704", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T03:33:33.207Z", + "completed":"2017-04-05T03:33:33.207Z", + "new_balance":"5713.80", + "value":"-7.30" + } + }, + { + "id":"81eaac41-dc79-4430-a7ef-4e284b38b429", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T05:27:58.539Z", + "completed":"2017-04-05T05:27:58.539Z", + "new_balance":"5708.35", + "value":"-5.45" + } + }, + { + "id":"777da1d4-b168-42af-9b2d-6bf34f72632c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T06:57:10.800Z", + "completed":"2017-04-05T06:57:10.800Z", + "new_balance":"5707.76", + "value":"-0.59" + } + }, + { + "id":"4ff296b0-1272-472e-8e60-4124b15bfccc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T08:06:59.011Z", + "completed":"2017-04-05T08:06:59.011Z", + "new_balance":"5706.52", + "value":"-1.24" + } + }, + { + "id":"9db1a0c2-dfdf-4253-b4f8-d287eb9a6a53", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T14:17:07.792Z", + "completed":"2017-04-05T14:17:07.792Z", + "new_balance":"5703.08", + "value":"-3.44" + } + }, + { + "id":"bf91d572-1fe0-49d6-908f-a00a14305130", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T19:55:07.302Z", + "completed":"2017-04-05T19:55:07.302Z", + "new_balance":"5698.90", + "value":"-4.18" + } + }, + { + "id":"883a216f-685d-48de-b157-a026fea11830", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T22:52:13.329Z", + "completed":"2017-04-05T22:52:13.329Z", + "new_balance":"5698.20", + "value":"-0.70" + } + }, + { + "id":"baad0069-dc60-44e7-96ac-c8d0d5c33c0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T12:21:21.235Z", + "completed":"2017-04-08T12:21:21.235Z", + "new_balance":"5690.11", + "value":"-8.09" + } + }, + { + "id":"e6e99849-0aff-40dc-9890-230a9aa9d231", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T14:57:11.167Z", + "completed":"2017-04-10T14:57:11.167Z", + "new_balance":"5683.99", + "value":"-6.12" + } + }, + { + "id":"ac8deb43-a3a6-484e-bee4-de591bc81c43", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T04:21:11.364Z", + "completed":"2017-04-11T04:21:11.364Z", + "new_balance":"5681.31", + "value":"-2.68" + } + }, + { + "id":"a6b8d4c2-8396-45c0-9d4c-b8cbb90269e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T18:47:53.598Z", + "completed":"2017-04-11T18:47:53.598Z", + "new_balance":"5674.01", + "value":"-7.30" + } + }, + { + "id":"e14f05fa-a2f7-40f2-aa91-7353d9eb7637", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T06:14:22.599Z", + "completed":"2017-04-13T06:14:22.599Z", + "new_balance":"5670.34", + "value":"-3.67" + } + }, + { + "id":"2f5ffe96-d6ec-4741-a315-68b7ae6172f2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T07:19:48.442Z", + "completed":"2017-04-18T07:19:48.442Z", + "new_balance":"5905.30", + "value":"234.96" + } + }, + { + "id":"c785b7d5-7927-4b24-a751-b723723998f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T10:08:08.080Z", + "completed":"2017-04-25T10:08:08.080Z", + "new_balance":"5882.06", + "value":"-23.24" + } + }, + { + "id":"eee1f763-cc52-4c85-9a19-ed5462c08c6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T01:27:21.021Z", + "completed":"2017-05-02T01:27:21.021Z", + "new_balance":"5877.88", + "value":"-4.18" + } + }, + { + "id":"8efc75f2-2929-48ef-aeed-ccb59657eeda", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:38:15.071Z", + "completed":"2017-05-02T10:38:15.071Z", + "new_balance":"5874.44", + "value":"-3.44" + } + }, + { + "id":"e6b4f955-9adb-4078-98c3-5bcde10d7466", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T12:24:54.364Z", + "completed":"2017-05-02T12:24:54.364Z", + "new_balance":"5866.74", + "value":"-7.70" + } + }, + { + "id":"a5b641cf-38c5-4670-ad24-f31e3291eef3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T13:02:18.445Z", + "completed":"2017-05-02T13:02:18.445Z", + "new_balance":"5863.30", + "value":"-3.44" + } + }, + { + "id":"0dc9c6f6-3c10-4eae-932a-498500c42018", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T03:14:24.490Z", + "completed":"2017-05-04T03:14:24.490Z", + "new_balance":"5862.60", + "value":"-0.70" + } + }, + { + "id":"cae037e2-0973-4f93-8770-05b4260638be", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T05:18:41.792Z", + "completed":"2017-05-04T05:18:41.792Z", + "new_balance":"5855.30", + "value":"-7.30" + } + }, + { + "id":"869a64a4-dd2f-4828-ae63-cd023aacf513", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T15:40:03.757Z", + "completed":"2017-05-06T15:40:03.757Z", + "new_balance":"5847.86", + "value":"-7.44" + } + }, + { + "id":"ba8581c7-8d80-4e06-a8f1-506d36caacf8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T02:46:11.086Z", + "completed":"2017-05-07T02:46:11.086Z", + "new_balance":"5845.15", + "value":"-2.71" + } + }, + { + "id":"8c37dba0-82aa-4a05-9e75-2fedc2e5dccb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T21:15:40.178Z", + "completed":"2017-05-07T21:15:40.178Z", + "new_balance":"5837.59", + "value":"-7.56" + } + }, + { + "id":"753e1ced-ca7f-469a-b72c-b650f502ed4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T06:47:41.426Z", + "completed":"2017-05-09T06:47:41.426Z", + "new_balance":"5833.00", + "value":"-4.59" + } + }, + { + "id":"2c33024c-c940-4839-9e47-330493f4efb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T17:28:43.462Z", + "completed":"2017-05-09T17:28:43.462Z", + "new_balance":"5831.76", + "value":"-1.24" + } + }, + { + "id":"5ad94844-d974-40ac-81ee-32c497525d4e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T01:39:19.759Z", + "completed":"2017-05-13T01:39:19.759Z", + "new_balance":"5829.63", + "value":"-2.13" + } + }, + { + "id":"fbcd747c-8dc6-4076-a65e-fea6b148e48a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T03:26:18.363Z", + "completed":"2017-05-13T03:26:18.363Z", + "new_balance":"5828.93", + "value":"-0.70" + } + }, + { + "id":"18324f55-1d75-4580-ac38-d7941466f13f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T03:26:36.374Z", + "completed":"2017-05-13T03:26:36.374Z", + "new_balance":"5826.22", + "value":"-2.71" + } + }, + { + "id":"bf2a10b5-6f3c-4938-b049-ebd72e9020cc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T00:47:58.419Z", + "completed":"2017-05-14T00:47:58.419Z", + "new_balance":"5821.76", + "value":"-4.46" + } + }, + { + "id":"6dd73168-5893-4be9-b138-b0fbaf1ef52c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T14:47:58.533Z", + "completed":"2017-05-14T14:47:58.533Z", + "new_balance":"5814.46", + "value":"-7.30" + } + }, + { + "id":"e05b66b1-f83d-4bba-9b26-25c5efaa6593", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T14:05:22.584Z", + "completed":"2017-05-15T14:05:22.584Z", + "new_balance":"5810.79", + "value":"-3.67" + } + }, + { + "id":"9c065a2d-b0b4-4624-b882-d1bedc67d516", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T15:09:21.926Z", + "completed":"2017-05-30T15:09:21.926Z", + "new_balance":"6045.75", + "value":"234.96" + } + }, + { + "id":"91d50d4a-7763-4f49-89b3-a2cd1643f6f2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T20:41:49.384Z", + "completed":"2017-05-30T20:41:49.384Z", + "new_balance":"6022.51", + "value":"-23.24" + } + }, + { + "id":"ef52f9aa-d3d8-44c8-948b-19f839cce0e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T07:56:38.113Z", + "completed":"2017-06-01T07:56:38.113Z", + "new_balance":"6019.07", + "value":"-3.44" + } + }, + { + "id":"61b60338-9136-40cc-a3e0-fec5faef5994", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T16:43:33.212Z", + "completed":"2017-06-01T16:43:33.212Z", + "new_balance":"6014.89", + "value":"-4.18" + } + }, + { + "id":"b269d7f5-1b90-49a7-8ad3-ddfddec169b5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T19:45:55.154Z", + "completed":"2017-06-01T19:45:55.154Z", + "new_balance":"6011.45", + "value":"-3.44" + } + }, + { + "id":"6ca33b7c-b876-4fbe-9306-19f4b0849878", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T22:34:32.509Z", + "completed":"2017-06-01T22:34:32.509Z", + "new_balance":"6003.75", + "value":"-7.70" + } + }, + { + "id":"b7a03355-c007-482e-ac1f-1f08989a2514", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T02:03:17.439Z", + "completed":"2017-06-04T02:03:17.439Z", + "new_balance":"5996.49", + "value":"-7.26" + } + }, + { + "id":"8bb926c0-3bb1-4b67-8cb9-50ee74839aef", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T19:47:13.747Z", + "completed":"2017-06-04T19:47:13.747Z", + "new_balance":"5990.67", + "value":"-5.82" + } + }, + { + "id":"06842773-c3e3-47de-9f57-3eedcabe454b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T03:24:02.160Z", + "completed":"2017-06-11T03:24:02.160Z", + "new_balance":"5982.93", + "value":"-7.74" + } + }, + { + "id":"73044575-c403-470c-ab59-a7333d1c5402", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T06:23:44.312Z", + "completed":"2017-06-11T06:23:44.312Z", + "new_balance":"5978.52", + "value":"-4.41" + } + }, + { + "id":"ba2307b2-76bc-4748-8458-34250c049ccf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T13:45:50.215Z", + "completed":"2017-06-11T13:45:50.215Z", + "new_balance":"5970.78", + "value":"-7.74" + } + }, + { + "id":"03d963b1-33cb-4707-9c05-2b4b8a36eb67", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T11:11:38.006Z", + "completed":"2017-06-12T11:11:38.006Z", + "new_balance":"5966.71", + "value":"-4.07" + } + }, + { + "id":"f9f247ad-884c-4173-b48d-38b4505a44f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T13:13:00.860Z", + "completed":"2017-06-12T13:13:00.860Z", + "new_balance":"5966.10", + "value":"-0.61" + } + }, + { + "id":"d8472591-2db3-4b06-af18-d9c15f6a81e3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T07:37:56.068Z", + "completed":"2017-06-16T07:37:56.068Z", + "new_balance":"5956.09", + "value":"-10.01" + } + }, + { + "id":"a39d1386-8972-41b3-aa44-cda97fc5f41d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T02:25:19.076Z", + "completed":"2017-06-29T02:25:19.076Z", + "new_balance":"5952.42", + "value":"-3.67" + } + }, + { + "id":"37efdb52-9df6-4d50-944f-f226662626b2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T16:09:23.341Z", + "completed":"2017-06-30T16:09:23.341Z", + "new_balance":"6187.38", + "value":"234.96" + } + }, + { + "id":"df525ceb-2823-4d3e-b36a-6a80de70d6e6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T18:23:01.861Z", + "completed":"2017-06-30T18:23:01.861Z", + "new_balance":"6164.14", + "value":"-23.24" + } + }, + { + "id":"aad5a6f1-2ad9-45ff-a82b-c1b84987dcd1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T00:50:21.777Z", + "completed":"2017-07-01T00:50:21.777Z", + "new_balance":"6160.70", + "value":"-3.44" + } + }, + { + "id":"25d78082-4357-4c42-a437-f49bcde6bd2c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T04:57:01.449Z", + "completed":"2017-07-01T04:57:01.449Z", + "new_balance":"6157.26", + "value":"-3.44" + } + }, + { + "id":"e9a78915-6d48-44b3-a1ac-4299c3c6491a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T13:16:37.456Z", + "completed":"2017-07-01T13:16:37.456Z", + "new_balance":"6153.08", + "value":"-4.18" + } + }, + { + "id":"3ff4848c-4f47-460a-99df-54edd81de1b6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T23:57:21.865Z", + "completed":"2017-07-01T23:57:21.865Z", + "new_balance":"6145.38", + "value":"-7.70" + } + }, + { + "id":"ec3f40d6-27c6-4560-a16e-d5b8f5798231", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T07:23:49.644Z", + "completed":"2017-07-05T07:23:49.644Z", + "new_balance":"6135.34", + "value":"-10.04" + } + }, + { + "id":"13435156-75d9-4e58-9163-7ac4624d252a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T13:09:48.439Z", + "completed":"2017-07-05T13:09:48.439Z", + "new_balance":"6128.04", + "value":"-7.30" + } + }, + { + "id":"c92d1460-ae05-43ca-8df6-7ab0faec7186", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T22:02:02.643Z", + "completed":"2017-07-08T22:02:02.643Z", + "new_balance":"6126.64", + "value":"-1.40" + } + }, + { + "id":"f373061f-7b48-4a87-a881-216d1365260d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T19:10:30.061Z", + "completed":"2017-07-10T19:10:30.061Z", + "new_balance":"6121.98", + "value":"-4.66" + } + }, + { + "id":"12c09d53-4993-485e-a6e5-bbddd13ad22d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T10:41:29.205Z", + "completed":"2017-07-12T10:41:29.205Z", + "new_balance":"6118.54", + "value":"-3.44" + } + }, + { + "id":"b2b22808-ce0c-48c4-b043-deba45a655da", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T23:41:36.557Z", + "completed":"2017-07-12T23:41:36.557Z", + "new_balance":"6113.13", + "value":"-5.41" + } + }, + { + "id":"f9a80213-21bd-4b28-b71c-0c1848cbfc1a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T19:42:04.205Z", + "completed":"2017-07-13T19:42:04.205Z", + "new_balance":"6112.67", + "value":"-0.46" + } + }, + { + "id":"61871a0e-9bb0-463b-9f99-9b3841c17c05", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T19:45:26.737Z", + "completed":"2017-07-13T19:45:26.737Z", + "new_balance":"6112.16", + "value":"-0.51" + } + }, + { + "id":"1bae2572-b79f-48a6-9a5a-dbeb1d785eba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T07:27:31.279Z", + "completed":"2017-07-18T07:27:31.279Z", + "new_balance":"6102.64", + "value":"-9.52" + } + }, + { + "id":"76fb9c9e-a9c9-41bc-8b6f-297cac581d5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T13:27:27.446Z", + "completed":"2017-07-20T13:27:27.446Z", + "new_balance":"6095.81", + "value":"-6.83" + } + }, + { + "id":"71a6cd29-cacf-403a-9586-1fc36d66fe22", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T21:13:14.472Z", + "completed":"2017-07-20T21:13:14.472Z", + "new_balance":"6088.51", + "value":"-7.30" + } + }, + { + "id":"e8c0f760-4fcd-4876-87cf-13105d42d829", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T12:35:46.862Z", + "completed":"2017-07-24T12:35:46.862Z", + "new_balance":"6085.83", + "value":"-2.68" + } + }, + { + "id":"df9e7cdb-a666-42d8-bf66-f2995242b1b5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T03:22:04.725Z", + "completed":"2017-07-29T03:22:04.725Z", + "new_balance":"6320.79", + "value":"234.96" + } + }, + { + "id":"fbfa5ab5-5b4d-4be5-90ba-6c8d2c132cd8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T23:53:38.777Z", + "completed":"2017-07-29T23:53:38.777Z", + "new_balance":"6317.12", + "value":"-3.67" + } + }, + { + "id":"13ddf91a-0e3e-4e91-a9b5-a2ef7e95da30", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T12:50:07.995Z", + "completed":"2017-07-30T12:50:07.995Z", + "new_balance":"6293.88", + "value":"-23.24" + } + }, + { + "id":"230ab5d9-87a5-4b9e-8aa5-de048c2d0846", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T03:30:25.129Z", + "completed":"2017-08-01T03:30:25.129Z", + "new_balance":"6290.44", + "value":"-3.44" + } + }, + { + "id":"9eabe9e4-ee7a-4095-91b6-818c056be29f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:10:06.521Z", + "completed":"2017-08-01T09:10:06.521Z", + "new_balance":"6286.26", + "value":"-4.18" + } + }, + { + "id":"8a558340-1c1e-44ea-ad75-d1a694993b72", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T10:59:33.844Z", + "completed":"2017-08-01T10:59:33.844Z", + "new_balance":"6278.56", + "value":"-7.70" + } + }, + { + "id":"f725c9fd-1a81-4710-b291-d8b667a43766", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T14:12:26.135Z", + "completed":"2017-08-01T14:12:26.135Z", + "new_balance":"6275.12", + "value":"-3.44" + } + }, + { + "id":"53855b02-7c48-429a-a5f7-9aacc3e3da9b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T11:56:26.585Z", + "completed":"2017-08-03T11:56:26.585Z", + "new_balance":"6274.42", + "value":"-0.70" + } + }, + { + "id":"5545caf4-e62e-4ab2-899d-63a7313fb0d2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T18:19:49.364Z", + "completed":"2017-08-04T18:19:49.364Z", + "new_balance":"6267.12", + "value":"-7.30" + } + }, + { + "id":"094977b8-3f9d-45c4-9341-71b948dceded", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T06:37:57.928Z", + "completed":"2017-08-08T06:37:57.928Z", + "new_balance":"6257.66", + "value":"-9.46" + } + }, + { + "id":"0f6b1ffb-147d-49bf-9ea9-1591921bfffa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T08:13:19.061Z", + "completed":"2017-08-08T08:13:19.061Z", + "new_balance":"6253.86", + "value":"-3.80" + } + }, + { + "id":"cdd81a6a-26dd-466d-8cd7-730a02bdb527", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T09:17:29.413Z", + "completed":"2017-08-08T09:17:29.413Z", + "new_balance":"6243.76", + "value":"-10.10" + } + }, + { + "id":"f8b83f75-d5d7-4612-bb9d-50990ec178df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T09:38:42.779Z", + "completed":"2017-08-08T09:38:42.779Z", + "new_balance":"6242.64", + "value":"-1.12" + } + }, + { + "id":"b909fdf8-cd75-49e8-8a26-74794e9eacb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T16:02:48.960Z", + "completed":"2017-08-09T16:02:48.960Z", + "new_balance":"6238.05", + "value":"-4.59" + } + }, + { + "id":"6c6a4155-d435-4a9e-b328-ea8060214476", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T20:31:31.056Z", + "completed":"2017-08-14T20:31:31.056Z", + "new_balance":"6235.65", + "value":"-2.40" + } + }, + { + "id":"3c31a7ca-ecec-4efa-a365-f5aae3753df2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T18:23:57.302Z", + "completed":"2017-08-15T18:23:57.302Z", + "new_balance":"6232.77", + "value":"-2.88" + } + }, + { + "id":"09d6cfb6-de9e-43d2-aaaa-761106b22052", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T22:26:47.330Z", + "completed":"2017-08-19T22:26:47.330Z", + "new_balance":"6232.25", + "value":"-0.52" + } + }, + { + "id":"b56dfe1c-b112-4b15-97af-3d65dcd363fc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T17:11:18.056Z", + "completed":"2017-08-22T17:11:18.056Z", + "new_balance":"6227.07", + "value":"-5.18" + } + }, + { + "id":"c28323f9-915d-4d98-a993-ea0f0ea07eba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T21:01:39.731Z", + "completed":"2017-08-26T21:01:39.731Z", + "new_balance":"6219.77", + "value":"-7.30" + } + }, + { + "id":"165e9d9c-94a6-4f80-b65b-bb3dc37e20c5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T22:43:12.050Z", + "completed":"2017-08-28T22:43:12.050Z", + "new_balance":"6196.53", + "value":"-23.24" + } + }, + { + "id":"0a2b4f91-0e11-4123-8740-e90ef34d3a15", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T08:41:38.594Z", + "completed":"2017-08-29T08:41:38.594Z", + "new_balance":"6192.86", + "value":"-3.67" + } + }, + { + "id":"870c6460-5383-4658-9720-96b2a98ae759", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T11:55:12.898Z", + "completed":"2017-08-29T11:55:12.898Z", + "new_balance":"6427.82", + "value":"234.96" + } + }, + { + "id":"748f87a0-c665-4e0b-a5e6-0d03eaf01159", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T06:06:28.656Z", + "completed":"2017-08-30T06:06:28.656Z", + "new_balance":"6404.58", + "value":"-23.24" + } + }, + { + "id":"19541561-acfe-4aec-8705-a6b299d6260c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T00:39:10.916Z", + "completed":"2017-09-01T00:39:10.916Z", + "new_balance":"6401.14", + "value":"-3.44" + } + }, + { + "id":"b25f761e-83ed-481c-b78e-8f0fe72a5a53", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T01:58:37.941Z", + "completed":"2017-09-01T01:58:37.941Z", + "new_balance":"6397.70", + "value":"-3.44" + } + }, + { + "id":"e5aef2a7-1667-4812-97fc-e14069434f7f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T08:34:24.996Z", + "completed":"2017-09-01T08:34:24.996Z", + "new_balance":"6393.52", + "value":"-4.18" + } + }, + { + "id":"a724832f-e9e9-47ab-ace3-6ba6e902ea14", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T21:47:25.613Z", + "completed":"2017-09-01T21:47:25.613Z", + "new_balance":"6385.82", + "value":"-7.70" + } + }, + { + "id":"52825dd9-44b4-4a25-970d-1ab3d3bb8d27", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T10:00:32.892Z", + "completed":"2017-09-09T10:00:32.892Z", + "new_balance":"6380.00", + "value":"-5.82" + } + }, + { + "id":"43e8900e-ecc0-4800-b222-9c7ad68d6254", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T18:28:32.761Z", + "completed":"2017-09-09T18:28:32.761Z", + "new_balance":"6372.74", + "value":"-7.26" + } + }, + { + "id":"5c11d2fe-8faa-4fab-92fb-22d7fc6bbfed", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T22:14:10.460Z", + "completed":"2017-09-17T22:14:10.460Z", + "new_balance":"6365.00", + "value":"-7.74" + } + }, + { + "id":"34aea4e2-0bc9-4d0d-8387-3c143490499a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T18:49:35.366Z", + "completed":"2017-09-18T18:49:35.366Z", + "new_balance":"6360.59", + "value":"-4.41" + } + }, + { + "id":"25803885-f9f4-4ec0-9530-fcd1f67e5acc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T21:19:07.087Z", + "completed":"2017-09-18T21:19:07.087Z", + "new_balance":"6352.85", + "value":"-7.74" + } + }, + { + "id":"780ef568-7039-4b65-b624-d024f7d65858", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T21:28:48.407Z", + "completed":"2017-09-18T21:28:48.407Z", + "new_balance":"6348.78", + "value":"-4.07" + } + }, + { + "id":"cd79baea-4cbb-4896-bca3-1f396b9c9f2d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T23:59:06.047Z", + "completed":"2017-09-18T23:59:06.047Z", + "new_balance":"6348.17", + "value":"-0.61" + } + }, + { + "id":"a96acf1f-e949-427c-bbe3-43f5cc66d504", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T08:51:05.479Z", + "completed":"2017-09-22T08:51:05.479Z", + "new_balance":"6338.16", + "value":"-10.01" + } + }, + { + "id":"2fa29e0f-9973-49e5-b3bd-e2630c0577aa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T00:35:48.698Z", + "completed":"2017-09-29T00:35:48.698Z", + "new_balance":"6334.49", + "value":"-3.67" + } + }, + { + "id":"e0053389-2a30-4211-a29f-fe0f96ece6ba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T07:45:45.799Z", + "completed":"2017-09-29T07:45:45.799Z", + "new_balance":"6569.45", + "value":"234.96" + } + }, + { + "id":"163e66d8-6313-4b87-91bd-f55c57437cfe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T10:05:37.666Z", + "completed":"2017-09-30T10:05:37.666Z", + "new_balance":"6546.21", + "value":"-23.24" + } + }, + { + "id":"0e7219e3-2b33-433c-9b1e-1b562fbe1f1e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T00:54:43.990Z", + "completed":"2017-10-01T00:54:43.990Z", + "new_balance":"6542.77", + "value":"-3.44" + } + }, + { + "id":"e4d56d14-0897-4fc6-bef1-7fc1218c4a8b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T02:37:36.166Z", + "completed":"2017-10-01T02:37:36.166Z", + "new_balance":"6535.07", + "value":"-7.70" + } + }, + { + "id":"cbaf4ae4-a011-47a0-bdfd-2a276adbb7ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T02:41:39.841Z", + "completed":"2017-10-01T02:41:39.841Z", + "new_balance":"6531.63", + "value":"-3.44" + } + }, + { + "id":"ecd4c3a1-4952-4f4f-803c-b151c0a5821a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T05:30:39.282Z", + "completed":"2017-10-01T05:30:39.282Z", + "new_balance":"6527.45", + "value":"-4.18" + } + }, + { + "id":"9157f926-f2c5-4a7e-a9bf-64b60c468a77", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T13:54:04.890Z", + "completed":"2017-10-02T13:54:04.890Z", + "new_balance":"6519.89", + "value":"-7.56" + } + }, + { + "id":"c6ac0c1a-d60b-41ff-8351-f976f678045d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T06:38:15.225Z", + "completed":"2017-10-05T06:38:15.225Z", + "new_balance":"6519.19", + "value":"-0.70" + } + }, + { + "id":"94d92813-0d29-4488-91fb-ebfbe64bcbb2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T10:24:38.823Z", + "completed":"2017-10-05T10:24:38.823Z", + "new_balance":"6517.95", + "value":"-1.24" + } + }, + { + "id":"95911a1d-022b-4ff5-a58b-b14bd1f0a3b8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T11:08:16.722Z", + "completed":"2017-10-05T11:08:16.722Z", + "new_balance":"6510.65", + "value":"-7.30" + } + }, + { + "id":"c912af1c-de03-4756-b8bd-9ecbf31a4655", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T14:25:51.896Z", + "completed":"2017-10-05T14:25:51.896Z", + "new_balance":"6507.21", + "value":"-3.44" + } + }, + { + "id":"6d66c1e7-1d33-48ff-b523-51ce07ad21ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T15:40:07.092Z", + "completed":"2017-10-05T15:40:07.092Z", + "new_balance":"6501.76", + "value":"-5.45" + } + }, + { + "id":"4d48d91b-423f-4cbe-96a8-fdfe1205901f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T17:56:06.281Z", + "completed":"2017-10-05T17:56:06.281Z", + "new_balance":"6497.58", + "value":"-4.18" + } + }, + { + "id":"47ccc208-3550-4112-9646-94391395ccd0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T18:25:28.444Z", + "completed":"2017-10-05T18:25:28.444Z", + "new_balance":"6496.99", + "value":"-0.59" + } + }, + { + "id":"7ffea779-21c2-45a5-98f5-c4f3a0267143", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T03:00:47.804Z", + "completed":"2017-10-09T03:00:47.804Z", + "new_balance":"6488.90", + "value":"-8.09" + } + }, + { + "id":"881cc45a-d6dd-4126-b9c1-fa160813ff92", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T21:07:47.512Z", + "completed":"2017-10-11T21:07:47.512Z", + "new_balance":"6482.78", + "value":"-6.12" + } + }, + { + "id":"3d68bcfa-176c-4379-ba2a-655e2a4abc26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T19:41:03.887Z", + "completed":"2017-10-12T19:41:03.887Z", + "new_balance":"6475.48", + "value":"-7.30" + } + }, + { + "id":"8705c37d-5a13-4a21-bef1-cf578881d7a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T21:20:07.525Z", + "completed":"2017-10-12T21:20:07.525Z", + "new_balance":"6472.80", + "value":"-2.68" + } + }, + { + "id":"3473c58d-a748-485e-be0a-db9ef8fa5829", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T19:35:31.296Z", + "completed":"2017-10-20T19:35:31.296Z", + "new_balance":"6469.13", + "value":"-3.67" + } + }, + { + "id":"cc778dcb-fc80-49e4-a6d6-dc45116e8009", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T14:26:09.954Z", + "completed":"2017-10-29T14:26:09.954Z", + "new_balance":"6704.09", + "value":"234.96" + } + }, + { + "id":"878b9231-11f0-4ba2-b361-603b32d80026", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T06:47:08.884Z", + "completed":"2017-10-30T06:47:08.884Z", + "new_balance":"6680.85", + "value":"-23.24" + } + }, + { + "id":"6891a658-eec4-47f8-831a-c0cc1da06977", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T15:47:16.122Z", + "completed":"2017-11-02T15:47:16.122Z", + "new_balance":"6673.15", + "value":"-7.70" + } + }, + { + "id":"2681e4b6-b951-47d4-8e42-092ed2d41faa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T18:16:14.325Z", + "completed":"2017-11-02T18:16:14.325Z", + "new_balance":"6668.97", + "value":"-4.18" + } + }, + { + "id":"942b5ae4-7481-41ff-a19a-fb62d2d315a1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T18:38:14.662Z", + "completed":"2017-11-02T18:38:14.662Z", + "new_balance":"6665.53", + "value":"-3.44" + } + }, + { + "id":"03c42e8f-d490-4b3d-b970-246c2feb4eca", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T22:20:12.430Z", + "completed":"2017-11-02T22:20:12.430Z", + "new_balance":"6662.09", + "value":"-3.44" + } + }, + { + "id":"2d5c68c0-be11-4153-9a40-7610b0a02f12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T02:40:07.567Z", + "completed":"2017-11-04T02:40:07.567Z", + "new_balance":"6654.79", + "value":"-7.30" + } + }, + { + "id":"33f05160-03d7-476e-8cd0-9448e6d7be90", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T04:23:23.610Z", + "completed":"2017-11-04T04:23:23.610Z", + "new_balance":"6654.09", + "value":"-0.70" + } + }, + { + "id":"25cc53bc-4a83-4d36-8618-ef299c6bfb5e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T01:35:03.342Z", + "completed":"2017-11-06T01:35:03.342Z", + "new_balance":"6646.65", + "value":"-7.44" + } + }, + { + "id":"fec8c5e9-3967-4239-88f9-920a5dbf67a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T08:38:26.547Z", + "completed":"2017-11-07T08:38:26.547Z", + "new_balance":"6639.09", + "value":"-7.56" + } + }, + { + "id":"8b4b2639-69da-4fc7-ac7e-7b5a1f394526", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T12:14:55.787Z", + "completed":"2017-11-07T12:14:55.787Z", + "new_balance":"6636.38", + "value":"-2.71" + } + }, + { + "id":"83750590-1c7e-4642-81bf-2e2a8506ca80", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T07:36:02.399Z", + "completed":"2017-11-09T07:36:02.399Z", + "new_balance":"6635.14", + "value":"-1.24" + } + }, + { + "id":"06ed8765-84c7-445b-8afb-d11d7ddcb75e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T14:45:57.845Z", + "completed":"2017-11-09T14:45:57.845Z", + "new_balance":"6630.55", + "value":"-4.59" + } + }, + { + "id":"7024a45d-6afd-4ac2-b3c4-b487de56c55b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T05:49:40.981Z", + "completed":"2017-11-13T05:49:40.981Z", + "new_balance":"6628.42", + "value":"-2.13" + } + }, + { + "id":"ed84cd32-2f2a-40f2-a087-a6e89552c193", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T07:22:45.667Z", + "completed":"2017-11-13T07:22:45.667Z", + "new_balance":"6627.72", + "value":"-0.70" + } + }, + { + "id":"7f097a42-10e3-4676-8a8d-5bde7d8f2c61", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T16:01:31.876Z", + "completed":"2017-11-13T16:01:31.876Z", + "new_balance":"6625.01", + "value":"-2.71" + } + }, + { + "id":"68204689-1f4b-4414-9920-e7ead96c32bd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T09:21:03.718Z", + "completed":"2017-11-14T09:21:03.718Z", + "new_balance":"6617.71", + "value":"-7.30" + } + }, + { + "id":"d1cc6540-404e-49fd-a547-adae1b2ca121", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T23:28:53.136Z", + "completed":"2017-11-14T23:28:53.136Z", + "new_balance":"6613.25", + "value":"-4.46" + } + }, + { + "id":"95b09ba3-bdc5-4e95-8814-7c91bb5b55ba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T23:20:34.528Z", + "completed":"2017-11-15T23:20:34.528Z", + "new_balance":"6609.58", + "value":"-3.67" + } + }, + { + "id":"763b8607-2872-422e-b2ce-899ef0c63c3a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T03:05:46.578Z", + "completed":"2017-11-30T03:05:46.578Z", + "new_balance":"6844.54", + "value":"234.96" + } + }, + { + "id":"3d48241d-f5ba-494d-82d5-e3af82e53b65", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T11:14:31.919Z", + "completed":"2017-11-30T11:14:31.919Z", + "new_balance":"6821.30", + "value":"-23.24" + } + }, + { + "id":"9bb95ca0-7e85-428c-b862-33e5a3604b3b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T02:33:26.897Z", + "completed":"2017-12-01T02:33:26.897Z", + "new_balance":"6817.86", + "value":"-3.44" + } + }, + { + "id":"4eb7c82e-55f0-4fae-b467-e794e093c8b1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T13:40:41.358Z", + "completed":"2017-12-01T13:40:41.358Z", + "new_balance":"6813.68", + "value":"-4.18" + } + }, + { + "id":"1f8b3957-2276-4e1c-8727-e9d528a5cc82", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T17:24:38.264Z", + "completed":"2017-12-01T17:24:38.264Z", + "new_balance":"6805.98", + "value":"-7.70" + } + }, + { + "id":"b46bd6c5-8750-4f42-acf4-82dc3fec4d4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:18:14.991Z", + "completed":"2017-12-01T19:18:14.991Z", + "new_balance":"6802.54", + "value":"-3.44" + } + }, + { + "id":"3fb294e9-5c45-42b0-a1a9-3784da7dc000", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T02:45:48.724Z", + "completed":"2017-12-04T02:45:48.724Z", + "new_balance":"6796.72", + "value":"-5.82" + } + }, + { + "id":"aa8904a5-a496-4d48-a79b-08a1861e3db6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T13:38:28.938Z", + "completed":"2017-12-04T13:38:28.938Z", + "new_balance":"6789.46", + "value":"-7.26" + } + }, + { + "id":"34c418bc-8e75-4066-bab2-9f6dbad8fbf0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T04:51:51.427Z", + "completed":"2017-12-11T04:51:51.427Z", + "new_balance":"6781.72", + "value":"-7.74" + } + }, + { + "id":"446b0ad0-206e-4212-99e8-c87470e631fb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T10:43:03.670Z", + "completed":"2017-12-11T10:43:03.670Z", + "new_balance":"6773.98", + "value":"-7.74" + } + }, + { + "id":"e49fd1d3-774f-4bb7-9df1-f654c5e6f3fb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T11:45:42.223Z", + "completed":"2017-12-11T11:45:42.223Z", + "new_balance":"6769.57", + "value":"-4.41" + } + }, + { + "id":"eae8fb36-f552-489e-b864-2d6539c22462", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T11:35:13.824Z", + "completed":"2017-12-12T11:35:13.824Z", + "new_balance":"6768.96", + "value":"-0.61" + } + }, + { + "id":"1c5006ad-bb2b-4384-ad59-743d70f6f202", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T23:24:50.685Z", + "completed":"2017-12-12T23:24:50.685Z", + "new_balance":"6764.89", + "value":"-4.07" + } + }, + { + "id":"a5c63b64-ce75-4838-8073-626eaa6307c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T09:06:00.423Z", + "completed":"2017-12-16T09:06:00.423Z", + "new_balance":"6754.88", + "value":"-10.01" + } + }, + { + "id":"31dea493-dc3f-4cd5-8715-563bbac7fb48", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T04:13:44.513Z", + "completed":"2017-12-29T04:13:44.513Z", + "new_balance":"6751.21", + "value":"-3.67" + } + }, + { + "id":"6c77f8f3-694f-48e7-a230-ec99e66c4918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T11:05:01.981Z", + "completed":"2017-12-30T11:05:01.981Z", + "new_balance":"6727.97", + "value":"-23.24" + } + }, + { + "id":"67a81641-ea74-4bfc-a9d7-9896059612b6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T14:12:49.385Z", + "completed":"2017-12-30T14:12:49.385Z", + "new_balance":"6962.93", + "value":"234.96" + } + }, + { + "id":"dbe6790d-e9c0-432e-a9a0-119a561d3f9f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T00:00:45.272Z", + "completed":"2016-03-02T00:00:45.272Z", + "new_balance":"90786.17", + "value":"-378.33" + } + }, + { + "id":"3ad01ed9-9eaa-4f7f-96ab-7c196b9d1a36", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T08:25:30.100Z", + "completed":"2016-03-02T08:25:30.100Z", + "new_balance":"89953.81", + "value":"-832.36" + } + }, + { + "id":"fdf2899c-6e85-4a31-b366-2ee54d3aa228", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T12:29:49.166Z", + "completed":"2016-03-03T12:29:49.166Z", + "new_balance":"89879.88", + "value":"-73.93" + } + }, + { + "id":"2c9c4313-2238-4946-9e23-466012249867", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T20:55:09.696Z", + "completed":"2016-03-03T20:55:09.696Z", + "new_balance":"85294.72", + "value":"-4585.16" + } + }, + { + "id":"da7ea9f7-105c-40c4-8fcd-f12ab80b749f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T01:19:28.103Z", + "completed":"2016-03-04T01:19:28.103Z", + "new_balance":"85208.16", + "value":"-86.56" + } + }, + { + "id":"afb7d93e-5be5-4308-b4e2-a442cb8db16c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T06:02:07.948Z", + "completed":"2016-03-04T06:02:07.948Z", + "new_balance":"84843.87", + "value":"-364.29" + } + }, + { + "id":"5b912303-cfcc-40ab-9d5f-e90ada0ad3f4", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T02:10:48.938Z", + "completed":"2016-03-07T02:10:48.938Z", + "new_balance":"84790.69", + "value":"-53.18" + } + }, + { + "id":"27efd642-89a1-4903-ba42-a2f2cdf55b23", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T09:56:25.547Z", + "completed":"2016-03-09T09:56:25.547Z", + "new_balance":"83958.33", + "value":"-832.36" + } + }, + { + "id":"9926aaef-cc70-4f46-8d92-2f6c8b7d9fd5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T19:39:28.050Z", + "completed":"2016-03-16T19:39:28.050Z", + "new_balance":"83413.17", + "value":"-545.16" + } + }, + { + "id":"523d8152-f583-4774-9f05-38d0c8e5f724", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:49:17.569Z", + "completed":"2016-03-25T19:49:17.569Z", + "new_balance":"82868.01", + "value":"-545.16" + } + }, + { + "id":"5521c664-74a0-40e2-82a8-545be4519964", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T14:45:09.017Z", + "completed":"2016-03-30T14:45:09.017Z", + "new_balance":"80236.80", + "value":"-2631.21" + } + }, + { + "id":"2545f87f-0a02-4af3-9d42-6dc6b4675644", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:39:11.060Z", + "completed":"2016-06-07T00:39:11.060Z", + "new_balance":"79404.44", + "value":"-832.36" + } + }, + { + "id":"2aa14147-f57d-4149-9904-1864921e80d5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T06:33:36.412Z", + "completed":"2016-06-07T06:33:36.412Z", + "new_balance":"74819.28", + "value":"-4585.16" + } + }, + { + "id":"77416736-891e-49d6-83cf-c6739e69baaa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T08:50:49.286Z", + "completed":"2016-06-07T08:50:49.286Z", + "new_balance":"74440.95", + "value":"-378.33" + } + }, + { + "id":"c1cade4e-e359-4880-bdb7-404c80afff36", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T19:58:50.107Z", + "completed":"2016-06-10T19:58:50.107Z", + "new_balance":"74354.39", + "value":"-86.56" + } + }, + { + "id":"85df662f-8d42-4c2d-b29e-03d750c47db1", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T03:27:58.253Z", + "completed":"2016-06-14T03:27:58.253Z", + "new_balance":"73990.10", + "value":"-364.29" + } + }, + { + "id":"6ae796b9-7735-40ca-ac56-d65c200a1aa9", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T17:34:57.358Z", + "completed":"2016-06-19T17:34:57.358Z", + "new_balance":"73916.17", + "value":"-73.93" + } + }, + { + "id":"c5ebe4bc-a443-4e60-9a95-f799e96eef4c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T23:58:11.421Z", + "completed":"2016-06-19T23:58:11.421Z", + "new_balance":"73862.99", + "value":"-53.18" + } + }, + { + "id":"5d5f52b9-e05a-4a3f-ae33-67c0f75c5dad", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T02:02:17.911Z", + "completed":"2016-06-20T02:02:17.911Z", + "new_balance":"73030.63", + "value":"-832.36" + } + }, + { + "id":"afc7a9c0-fb2d-479b-8fd0-63077c19960b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T17:18:02.357Z", + "completed":"2016-06-28T17:18:02.357Z", + "new_balance":"72485.47", + "value":"-545.16" + } + }, + { + "id":"57cf15c9-7bda-4e9b-a691-eb976c241a7b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T19:42:18.296Z", + "completed":"2016-07-01T19:42:18.296Z", + "new_balance":"69854.26", + "value":"-2631.21" + } + }, + { + "id":"0de0b7ef-a9ee-4909-8dae-771ced34c7fb", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T22:52:34.460Z", + "completed":"2016-07-01T22:52:34.460Z", + "new_balance":"69309.10", + "value":"-545.16" + } + }, + { + "id":"29491930-6b14-43f5-b7d7-edc4d4e19e0a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T11:26:24.508Z", + "completed":"2016-09-02T11:26:24.508Z", + "new_balance":"68930.77", + "value":"-378.33" + } + }, + { + "id":"cf993e12-777e-429c-8a1c-1e7be1be45aa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T19:32:36.401Z", + "completed":"2016-09-02T19:32:36.401Z", + "new_balance":"68098.41", + "value":"-832.36" + } + }, + { + "id":"23f8c3d3-618e-4be2-ba49-c789d1c95354", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T02:20:12.508Z", + "completed":"2016-09-03T02:20:12.508Z", + "new_balance":"63513.25", + "value":"-4585.16" + } + }, + { + "id":"369c2ca8-1541-4251-a4e4-7ae20a380432", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:27:24.970Z", + "completed":"2016-09-03T02:27:24.970Z", + "new_balance":"63439.32", + "value":"-73.93" + } + }, + { + "id":"31a34f59-1415-4511-b2b2-bac0a7873423", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T17:15:13.059Z", + "completed":"2016-09-03T17:15:13.059Z", + "new_balance":"63392.42", + "value":"-46.90" + } + }, + { + "id":"34b5c387-848d-4cb9-9fb0-cfa086381e22", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T07:18:29.450Z", + "completed":"2016-09-04T07:18:29.450Z", + "new_balance":"63028.13", + "value":"-364.29" + } + }, + { + "id":"f7fe3f44-28fd-4bcd-8cf5-f3466726e51f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T07:42:16.025Z", + "completed":"2016-09-07T07:42:16.025Z", + "new_balance":"62974.95", + "value":"-53.18" + } + }, + { + "id":"42a211cb-b70e-4e61-b417-48520afeadf5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T18:10:39.411Z", + "completed":"2016-09-09T18:10:39.411Z", + "new_balance":"62142.59", + "value":"-832.36" + } + }, + { + "id":"61006f35-c422-4ce8-a3c4-45f4ce18a59b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T22:09:02.551Z", + "completed":"2016-09-16T22:09:02.551Z", + "new_balance":"61597.43", + "value":"-545.16" + } + }, + { + "id":"236fbf79-5a55-4b95-b095-718392390ea9", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T00:35:49.050Z", + "completed":"2016-09-25T00:35:49.050Z", + "new_balance":"61052.27", + "value":"-545.16" + } + }, + { + "id":"0f43c817-4c02-493f-b11c-80fe620462e4", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T05:18:24.809Z", + "completed":"2016-09-30T05:18:24.809Z", + "new_balance":"58421.06", + "value":"-2631.21" + } + }, + { + "id":"31001b3e-0519-46e7-a283-755a98dcac01", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T02:41:19.089Z", + "completed":"2016-12-07T02:41:19.089Z", + "new_balance":"58042.73", + "value":"-378.33" + } + }, + { + "id":"e315bc2a-967a-4d1b-95d9-556b79ec1195", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T14:12:12.825Z", + "completed":"2016-12-07T14:12:12.825Z", + "new_balance":"57210.37", + "value":"-832.36" + } + }, + { + "id":"b86dddfd-4af1-48d6-883b-af9ab1735f13", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T16:46:35.382Z", + "completed":"2016-12-07T16:46:35.382Z", + "new_balance":"52625.21", + "value":"-4585.16" + } + }, + { + "id":"51de103c-4152-40f9-b1ab-4aece9ebdabe", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T06:55:00.409Z", + "completed":"2016-12-11T06:55:00.409Z", + "new_balance":"52551.28", + "value":"-73.93" + } + }, + { + "id":"df8659e3-228e-4f77-958a-c0ee5326b859", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T16:20:13.418Z", + "completed":"2016-12-11T16:20:13.418Z", + "new_balance":"52464.72", + "value":"-86.56" + } + }, + { + "id":"e5c0868c-b553-4a2f-9609-59be6cf533ef", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T12:33:05.002Z", + "completed":"2016-12-14T12:33:05.002Z", + "new_balance":"52100.43", + "value":"-364.29" + } + }, + { + "id":"6e5bed95-0bef-4960-b8d1-2d2b344be428", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T20:32:35.910Z", + "completed":"2016-12-20T20:32:35.910Z", + "new_balance":"52047.25", + "value":"-53.18" + } + }, + { + "id":"f5e37111-e4c1-4114-bde7-0aea1f9a0d84", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T09:17:15.744Z", + "completed":"2016-12-22T09:17:15.744Z", + "new_balance":"51214.89", + "value":"-832.36" + } + }, + { + "id":"ead8c5c3-d19f-46ba-a8ef-e1b227afe48d", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T06:24:02.461Z", + "completed":"2016-12-28T06:24:02.461Z", + "new_balance":"50669.73", + "value":"-545.16" + } + }, + { + "id":"74a7d35e-c5e5-49c8-b36f-b899ddac9252", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:13:42.135Z", + "completed":"2016-12-31T16:13:42.135Z", + "new_balance":"48038.52", + "value":"-2631.21" + } + }, + { + "id":"570ff3c0-a8f0-42b8-9474-31cb607f4f28", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T16:51:00.235Z", + "completed":"2016-12-31T16:51:00.235Z", + "new_balance":"47493.36", + "value":"-545.16" + } + }, + { + "id":"8dc9f905-6aa7-4b2b-9492-76d5b584b497", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T14:20:08.297Z", + "completed":"2017-03-02T14:20:08.297Z", + "new_balance":"47115.03", + "value":"-378.33" + } + }, + { + "id":"40ffb689-6c66-496b-8b3e-ac218f7e5eb3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T15:06:29.689Z", + "completed":"2017-03-02T15:06:29.689Z", + "new_balance":"46282.67", + "value":"-832.36" + } + }, + { + "id":"92b895dc-6a73-4d1a-baf0-bd54c9e7c8ca", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T12:46:21.422Z", + "completed":"2017-03-03T12:46:21.422Z", + "new_balance":"41697.51", + "value":"-4585.16" + } + }, + { + "id":"77934638-f6b7-424c-901a-d6ea4840ea67", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T12:57:49.583Z", + "completed":"2017-03-03T12:57:49.583Z", + "new_balance":"41623.58", + "value":"-73.93" + } + }, + { + "id":"49426184-5739-47cb-bdc5-9d2dfd931e02", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T05:46:29.862Z", + "completed":"2017-03-04T05:46:29.862Z", + "new_balance":"41259.29", + "value":"-364.29" + } + }, + { + "id":"103e5930-a040-4b29-9684-4d440d93ff28", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T19:03:45.224Z", + "completed":"2017-03-04T19:03:45.224Z", + "new_balance":"41172.73", + "value":"-86.56" + } + }, + { + "id":"3c61f74e-169b-429e-9b26-0a5dbc4645e7", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T20:54:24.753Z", + "completed":"2017-03-07T20:54:24.753Z", + "new_balance":"41119.55", + "value":"-53.18" + } + }, + { + "id":"e2188f81-be6f-4f20-b4cb-f362210f6b89", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T10:00:19.923Z", + "completed":"2017-03-09T10:00:19.923Z", + "new_balance":"40287.19", + "value":"-832.36" + } + }, + { + "id":"cbd429fd-543a-492c-8601-6fde964bd019", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T06:50:38.867Z", + "completed":"2017-03-16T06:50:38.867Z", + "new_balance":"39742.03", + "value":"-545.16" + } + }, + { + "id":"3b9821bc-cefe-4eb8-9389-afe143f089f8", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:52:49.912Z", + "completed":"2017-03-25T14:52:49.912Z", + "new_balance":"39196.87", + "value":"-545.16" + } + }, + { + "id":"175ee510-ced1-4d42-8b2d-28ab906bfc1a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T10:09:25.083Z", + "completed":"2017-03-30T10:09:25.083Z", + "new_balance":"36565.66", + "value":"-2631.21" + } + }, + { + "id":"2687b355-aff7-445a-90f9-c423ff3a47e5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T15:37:37.276Z", + "completed":"2017-06-07T15:37:37.276Z", + "new_balance":"35733.30", + "value":"-832.36" + } + }, + { + "id":"69e98c76-f805-4d9d-9cb5-120f8410ea93", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T19:21:59.160Z", + "completed":"2017-06-07T19:21:59.160Z", + "new_balance":"35354.97", + "value":"-378.33" + } + }, + { + "id":"f8c6b41e-4d66-4eaa-aafa-be1be541bae6", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T22:16:39.669Z", + "completed":"2017-06-07T22:16:39.669Z", + "new_balance":"30769.81", + "value":"-4585.16" + } + }, + { + "id":"73fbbde3-1553-451f-a6f3-4ce6bab00964", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:11:50.396Z", + "completed":"2017-06-10T02:11:50.396Z", + "new_balance":"30683.25", + "value":"-86.56" + } + }, + { + "id":"a4118ce2-33ed-47cf-9bd9-c367b582502e", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T07:11:51.746Z", + "completed":"2017-06-14T07:11:51.746Z", + "new_balance":"30318.96", + "value":"-364.29" + } + }, + { + "id":"0a9a7c22-27f0-474c-b342-1ff02ec88a48", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T03:15:01.491Z", + "completed":"2017-06-19T03:15:01.491Z", + "new_balance":"30245.03", + "value":"-73.93" + } + }, + { + "id":"bc899430-5dc5-4ae0-9e0a-7313e425c255", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T23:04:13.933Z", + "completed":"2017-06-19T23:04:13.933Z", + "new_balance":"30191.85", + "value":"-53.18" + } + }, + { + "id":"90a2f4d3-6eb4-4314-b2a9-dbd3589db295", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T13:31:27.699Z", + "completed":"2017-06-20T13:31:27.699Z", + "new_balance":"29359.49", + "value":"-832.36" + } + }, + { + "id":"57a58819-ee39-4637-86c8-6fd2d5ea2003", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T05:36:44.245Z", + "completed":"2017-06-28T05:36:44.245Z", + "new_balance":"28814.33", + "value":"-545.16" + } + }, + { + "id":"76c5e24a-105c-4150-b7a4-4714560eaf53", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T18:33:01.818Z", + "completed":"2017-07-01T18:33:01.818Z", + "new_balance":"26183.12", + "value":"-2631.21" + } + }, + { + "id":"aa1c637d-ef1e-4b5d-83bc-248544a71c15", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T23:43:10.141Z", + "completed":"2017-07-01T23:43:10.141Z", + "new_balance":"25637.96", + "value":"-545.16" + } + }, + { + "id":"e1bc8830-b404-4e9d-aa07-0ac0b0ba794d", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T03:25:46.883Z", + "completed":"2017-09-02T03:25:46.883Z", + "new_balance":"25259.63", + "value":"-378.33" + } + }, + { + "id":"d571d1a4-b801-42ec-a3dc-7ca39dc18471", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T13:22:28.889Z", + "completed":"2017-09-02T13:22:28.889Z", + "new_balance":"24427.27", + "value":"-832.36" + } + }, + { + "id":"aeaa3040-cdcc-4a97-b729-d1d21b4fab1a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T13:22:32.865Z", + "completed":"2017-09-03T13:22:32.865Z", + "new_balance":"24380.37", + "value":"-46.90" + } + }, + { + "id":"f0e55c88-778d-4d6b-bb57-afc9d3d30b37", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T14:32:39.539Z", + "completed":"2017-09-03T14:32:39.539Z", + "new_balance":"24306.44", + "value":"-73.93" + } + }, + { + "id":"9ee8a66e-40f9-43fa-94fd-9ba5d88846fd", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T20:25:15.078Z", + "completed":"2017-09-03T20:25:15.078Z", + "new_balance":"19721.28", + "value":"-4585.16" + } + }, + { + "id":"53b571f1-b955-40d2-9c87-ec1a91015f67", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T20:37:54.286Z", + "completed":"2017-09-04T20:37:54.286Z", + "new_balance":"19356.99", + "value":"-364.29" + } + }, + { + "id":"42303f5f-8089-449d-a288-a2cff58fc9a3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T22:19:31.454Z", + "completed":"2017-09-07T22:19:31.454Z", + "new_balance":"19303.81", + "value":"-53.18" + } + }, + { + "id":"be39e813-565f-4c0b-b361-749b74e1faaa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T05:26:23.589Z", + "completed":"2017-09-09T05:26:23.589Z", + "new_balance":"18471.45", + "value":"-832.36" + } + }, + { + "id":"6092e694-d0ed-4c6a-8ffc-cbf24c16e240", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T12:15:42.760Z", + "completed":"2017-09-16T12:15:42.760Z", + "new_balance":"17926.29", + "value":"-545.16" + } + }, + { + "id":"e617b876-b6ff-4c0c-a140-1de3a49af931", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T15:42:33.123Z", + "completed":"2017-09-25T15:42:33.123Z", + "new_balance":"17381.13", + "value":"-545.16" + } + }, + { + "id":"a6da4c11-563c-4743-ae13-a41522834868", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T11:37:49.090Z", + "completed":"2017-09-30T11:37:49.090Z", + "new_balance":"14749.92", + "value":"-2631.21" + } + }, + { + "id":"0d47ac98-0e11-4579-80b2-11ec51b2b7d0", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T02:27:39.544Z", + "completed":"2017-12-07T02:27:39.544Z", + "new_balance":"10164.76", + "value":"-4585.16" + } + }, + { + "id":"f2bff9b9-b72f-4b37-b1cb-aa33828a200b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T04:17:50.698Z", + "completed":"2017-12-07T04:17:50.698Z", + "new_balance":"9786.43", + "value":"-378.33" + } + }, + { + "id":"734904f9-24da-49f1-bfac-339e258f6bb0", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T20:28:37.777Z", + "completed":"2017-12-07T20:28:37.777Z", + "new_balance":"8954.07", + "value":"-832.36" + } + }, + { + "id":"7d05982f-75e1-4ae7-9ff7-49d0a48806de", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T08:37:17.962Z", + "completed":"2017-12-11T08:37:17.962Z", + "new_balance":"8867.51", + "value":"-86.56" + } + }, + { + "id":"bfdf679b-a684-485e-bf86-1ed8c1a6bbd3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T22:07:01.355Z", + "completed":"2017-12-11T22:07:01.355Z", + "new_balance":"8793.58", + "value":"-73.93" + } + }, + { + "id":"75b75e13-b7a0-49bd-b56a-aa0e66e02e27", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T18:06:33.081Z", + "completed":"2017-12-14T18:06:33.081Z", + "new_balance":"8429.29", + "value":"-364.29" + } + }, + { + "id":"812d6783-8260-4565-9719-b7dd2f77c72a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T07:13:40.983Z", + "completed":"2017-12-20T07:13:40.983Z", + "new_balance":"8376.11", + "value":"-53.18" + } + }, + { + "id":"e34f5e1d-22b6-42d4-aa4b-2350d6155283", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T08:43:56.291Z", + "completed":"2017-12-22T08:43:56.291Z", + "new_balance":"7543.75", + "value":"-832.36" + } + }, + { + "id":"2ea7e4d6-6264-494d-adc5-b3ae443aaea6", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T23:07:35.594Z", + "completed":"2017-12-28T23:07:35.594Z", + "new_balance":"6998.59", + "value":"-545.16" + } + }, + { + "id":"00fa05f4-fc22-43f9-a523-5ddce4f5f802", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T12:04:57.726Z", + "completed":"2017-12-31T12:04:57.726Z", + "new_balance":"6453.43", + "value":"-545.16" + } + }, + { + "id":"c487a11e-3117-4088-81b8-43d4c0eff40c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T20:32:15.073Z", + "completed":"2017-12-31T20:32:15.073Z", + "new_balance":"3822.22", + "value":"-2631.21" + } + }, + { + "id":"eb3589ff-3c7c-4e9e-8a06-dd8353ccdf67", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T06:02:12.110Z", + "completed":"2016-01-01T06:02:12.110Z", + "new_balance":"5763.87", + "value":"-6.40" + } + }, + { + "id":"22eddad8-3b2c-4d8b-8227-9c53bcddd3b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:05:51.505Z", + "completed":"2016-01-01T19:05:51.505Z", + "new_balance":"5757.47", + "value":"-6.40" + } + }, + { + "id":"e4379320-00e4-4660-b66e-a7d09a3589ac", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T05:34:27.612Z", + "completed":"2016-01-03T05:34:27.612Z", + "new_balance":"5755.01", + "value":"-2.46" + } + }, + { + "id":"43246a74-1aa0-4bc0-954d-3e0b4cd0016e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T05:49:51.292Z", + "completed":"2016-01-03T05:49:51.292Z", + "new_balance":"5747.82", + "value":"-7.19" + } + }, + { + "id":"6399fbde-3157-4dc1-874a-b8029248031f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T07:35:54.528Z", + "completed":"2016-01-03T07:35:54.528Z", + "new_balance":"5744.38", + "value":"-3.44" + } + }, + { + "id":"879cd4f8-2ea3-4836-b70e-cf6cfb415a82", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T12:34:47.965Z", + "completed":"2016-01-03T12:34:47.965Z", + "new_balance":"5686.15", + "value":"-58.23" + } + }, + { + "id":"890582d0-5bdd-4a9d-8b07-8260eff138ca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T07:38:18.140Z", + "completed":"2016-01-05T07:38:18.140Z", + "new_balance":"5685.00", + "value":"-1.15" + } + }, + { + "id":"2ccb9f52-c7f1-4078-ab8f-31224b151768", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T14:07:29.097Z", + "completed":"2016-01-05T14:07:29.097Z", + "new_balance":"5679.85", + "value":"-5.15" + } + }, + { + "id":"ff0f423c-ceb2-4225-8265-2278cfc8eb19", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T15:27:55.878Z", + "completed":"2016-01-05T15:27:55.878Z", + "new_balance":"5675.43", + "value":"-4.42" + } + }, + { + "id":"e884de3e-cfc7-44e9-af3d-15a9c0afcba5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T18:45:18.632Z", + "completed":"2016-01-06T18:45:18.632Z", + "new_balance":"5673.11", + "value":"-2.32" + } + }, + { + "id":"5a6353b2-c20b-4ed1-b688-18f3b9f6e821", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T22:10:34.881Z", + "completed":"2016-01-06T22:10:34.881Z", + "new_balance":"5669.44", + "value":"-3.67" + } + }, + { + "id":"ef186e57-3e2f-4add-8ee8-5d0d0ceb848b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T03:55:11.624Z", + "completed":"2016-01-07T03:55:11.624Z", + "new_balance":"5664.97", + "value":"-4.47" + } + }, + { + "id":"d45aa301-d005-491d-a9d6-1c5a7b2ed929", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T07:22:09.619Z", + "completed":"2016-01-10T07:22:09.619Z", + "new_balance":"5662.59", + "value":"-2.38" + } + }, + { + "id":"909258b0-c816-4981-8299-3306c535e2c9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T21:30:29.124Z", + "completed":"2016-01-10T21:30:29.124Z", + "new_balance":"5657.44", + "value":"-5.15" + } + }, + { + "id":"9308dcef-e3b0-4aaa-bf49-168aaa57c960", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T13:07:49.140Z", + "completed":"2016-01-12T13:07:49.140Z", + "new_balance":"5654.98", + "value":"-2.46" + } + }, + { + "id":"ce6e1407-7a08-47d6-bb8e-3f95a1a2e742", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:56:51.535Z", + "completed":"2016-01-12T22:56:51.535Z", + "new_balance":"5652.25", + "value":"-2.73" + } + }, + { + "id":"b5671008-ffb3-46a4-a2a3-bcb2f2464153", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T23:00:07.110Z", + "completed":"2016-01-12T23:00:07.110Z", + "new_balance":"5647.78", + "value":"-4.47" + } + }, + { + "id":"750eff70-2a68-4a7c-a8d8-2d716e8e4857", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T00:46:26.290Z", + "completed":"2016-01-15T00:46:26.290Z", + "new_balance":"5645.15", + "value":"-2.63" + } + }, + { + "id":"c6f64a93-058e-453a-9a2a-1b111f0f8049", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T07:04:43.533Z", + "completed":"2016-01-16T07:04:43.533Z", + "new_balance":"5644.19", + "value":"-0.96" + } + }, + { + "id":"8203cd01-c7f6-4af6-8656-40fe2cd30468", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T11:58:55.569Z", + "completed":"2016-01-16T11:58:55.569Z", + "new_balance":"5639.04", + "value":"-5.15" + } + }, + { + "id":"6fd076bd-45c1-48e8-bfbe-19a541c361c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:31:12.609Z", + "completed":"2016-01-17T10:31:12.609Z", + "new_balance":"5632.29", + "value":"-6.75" + } + }, + { + "id":"7f4d0452-7397-40cd-a06e-c9c204ccd318", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T18:18:09.085Z", + "completed":"2016-01-17T18:18:09.085Z", + "new_balance":"5629.70", + "value":"-2.59" + } + }, + { + "id":"f3b8f8e7-4564-41b5-8849-6f3b33abc631", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T17:29:16.316Z", + "completed":"2016-01-19T17:29:16.316Z", + "new_balance":"5627.28", + "value":"-2.42" + } + }, + { + "id":"1277d1bc-6a7d-45e5-b81b-b48b16ccde4b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T14:58:47.995Z", + "completed":"2016-01-20T14:58:47.995Z", + "new_balance":"5622.13", + "value":"-5.15" + } + }, + { + "id":"99db0bbd-a5a5-4285-8890-e5fc6244fddb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T21:48:01.794Z", + "completed":"2016-01-23T21:48:01.794Z", + "new_balance":"5620.71", + "value":"-1.42" + } + }, + { + "id":"a80b47b4-c499-4ba7-b7e4-b79da891966e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T18:10:05.448Z", + "completed":"2016-01-26T18:10:05.448Z", + "new_balance":"5615.90", + "value":"-4.81" + } + }, + { + "id":"4fda0d20-ce63-49c3-8034-d3aaf2a3f065", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T14:05:45.258Z", + "completed":"2016-01-27T14:05:45.258Z", + "new_balance":"5721.53", + "value":"105.63" + } + }, + { + "id":"cd424066-deb0-4862-a9fd-8d8cc0914136", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T06:47:43.359Z", + "completed":"2016-01-28T06:47:43.359Z", + "new_balance":"5718.09", + "value":"-3.44" + } + }, + { + "id":"5c255024-5de7-42fc-b951-bd558e71c912", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T19:10:48.383Z", + "completed":"2016-01-30T19:10:48.383Z", + "new_balance":"5713.82", + "value":"-4.27" + } + }, + { + "id":"4e98ef49-8e36-4334-b704-edd72363b049", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T08:10:32.971Z", + "completed":"2016-02-03T08:10:32.971Z", + "new_balance":"5655.59", + "value":"-58.23" + } + }, + { + "id":"6e4084db-9a3a-44cb-8df4-5e47506a86ee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T12:42:05.833Z", + "completed":"2016-02-03T12:42:05.833Z", + "new_balance":"5648.40", + "value":"-7.19" + } + }, + { + "id":"747ecfc4-a66c-4b7c-9f87-edb37477da10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T14:24:46.168Z", + "completed":"2016-02-03T14:24:46.168Z", + "new_balance":"5644.96", + "value":"-3.44" + } + }, + { + "id":"f8e1f844-f42d-4e3b-b2c0-bd54b3c4dedf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T17:53:32.663Z", + "completed":"2016-02-03T17:53:32.663Z", + "new_balance":"5642.50", + "value":"-2.46" + } + }, + { + "id":"7b2851cc-1429-40c3-8329-5c30aef4089a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T06:53:17.273Z", + "completed":"2016-02-08T06:53:17.273Z", + "new_balance":"5638.08", + "value":"-4.42" + } + }, + { + "id":"4e57a2ba-ccc5-4d79-beac-b162df52a164", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T12:31:06.762Z", + "completed":"2016-02-08T12:31:06.762Z", + "new_balance":"5632.93", + "value":"-5.15" + } + }, + { + "id":"9b38dc2f-1964-4e8b-926f-fa177bc9f925", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T10:14:44.931Z", + "completed":"2016-02-11T10:14:44.931Z", + "new_balance":"5634.04", + "value":"1.11" + } + }, + { + "id":"1f44fa67-c753-4080-9b7d-72d1efe40485", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T20:02:27.407Z", + "completed":"2016-02-13T20:02:27.407Z", + "new_balance":"5631.72", + "value":"-2.32" + } + }, + { + "id":"abd7a09e-cca5-4040-b8b3-5affd34197a7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T03:23:35.990Z", + "completed":"2016-02-14T03:23:35.990Z", + "new_balance":"5628.69", + "value":"-3.03" + } + }, + { + "id":"38fea829-db19-47ea-aa66-5ccb41f15b3f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T06:52:06.607Z", + "completed":"2016-02-17T06:52:06.607Z", + "new_balance":"5627.29", + "value":"-1.40" + } + }, + { + "id":"7ffbe448-7b5c-4d4d-b347-5995af749c9c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T03:50:49.230Z", + "completed":"2016-02-21T03:50:49.230Z", + "new_balance":"5622.80", + "value":"-4.49" + } + }, + { + "id":"ce8b8afe-fc50-4ec3-b01a-3b12bfbdf9e8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T14:55:08.708Z", + "completed":"2016-02-23T14:55:08.708Z", + "new_balance":"5618.56", + "value":"-4.24" + } + }, + { + "id":"58bf2877-dd08-4864-a338-a9b0dc60b11f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T23:03:47.121Z", + "completed":"2016-02-23T23:03:47.121Z", + "new_balance":"5613.41", + "value":"-5.15" + } + }, + { + "id":"fc17662d-a72e-4c39-a5af-192d72908c95", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T08:57:50.336Z", + "completed":"2016-02-24T08:57:50.336Z", + "new_balance":"5612.01", + "value":"-1.40" + } + }, + { + "id":"aba7acdc-7ee0-495c-a5f2-f04b29f5bbe9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T07:26:27.032Z", + "completed":"2016-02-27T07:26:27.032Z", + "new_balance":"5607.20", + "value":"-4.81" + } + }, + { + "id":"db2ea108-d033-4875-a358-7861570d6a97", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T17:36:06.814Z", + "completed":"2016-02-27T17:36:06.814Z", + "new_balance":"5605.18", + "value":"-2.02" + } + }, + { + "id":"82ab0bc6-761a-4bc0-a324-2f1d5e588426", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T23:06:50.371Z", + "completed":"2016-02-27T23:06:50.371Z", + "new_balance":"5710.81", + "value":"105.63" + } + }, + { + "id":"5e569761-8ee4-4cb6-bc30-f111cdc6e2db", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T01:42:18.624Z", + "completed":"2016-02-28T01:42:18.624Z", + "new_balance":"5707.37", + "value":"-3.44" + } + }, + { + "id":"1e36a82c-3441-4d75-a9f1-a5998af3f632", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T21:56:16.552Z", + "completed":"2016-02-28T21:56:16.552Z", + "new_balance":"5703.10", + "value":"-4.27" + } + }, + { + "id":"ee06e6c8-ab04-4e8b-aa65-e71b1fcb0d9d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T17:49:22.890Z", + "completed":"2016-03-01T17:49:22.890Z", + "new_balance":"5696.70", + "value":"-6.40" + } + }, + { + "id":"c5930c46-5990-411e-8374-ee2a7dc93a7f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:33:26.928Z", + "completed":"2016-03-03T05:33:26.928Z", + "new_balance":"5693.26", + "value":"-3.44" + } + }, + { + "id":"26c8fa90-e62e-49de-8165-634bce435be9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T07:56:11.870Z", + "completed":"2016-03-03T07:56:11.870Z", + "new_balance":"5690.80", + "value":"-2.46" + } + }, + { + "id":"6080aa12-d6df-4623-8b35-107a46ba914f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T17:57:40.703Z", + "completed":"2016-03-03T17:57:40.703Z", + "new_balance":"5683.61", + "value":"-7.19" + } + }, + { + "id":"27be8ae3-1e16-4080-b217-8018f1490a81", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T18:31:37.101Z", + "completed":"2016-03-03T18:31:37.101Z", + "new_balance":"5625.38", + "value":"-58.23" + } + }, + { + "id":"e48b488c-72ce-4807-81cb-1f4688249427", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T17:10:13.214Z", + "completed":"2016-03-05T17:10:13.214Z", + "new_balance":"5620.23", + "value":"-5.15" + } + }, + { + "id":"71b5a61e-083d-474e-b376-aed38107fa36", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T17:59:23.235Z", + "completed":"2016-03-05T17:59:23.235Z", + "new_balance":"5615.34", + "value":"-4.89" + } + }, + { + "id":"b9456303-f20b-4ecf-b4ae-af9de37813a5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T03:41:57.796Z", + "completed":"2016-03-07T03:41:57.796Z", + "new_balance":"5613.47", + "value":"-1.87" + } + }, + { + "id":"987e3c2d-b90f-4c16-bd35-d7f8142faf1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T06:53:59.926Z", + "completed":"2016-03-09T06:53:59.926Z", + "new_balance":"5608.32", + "value":"-5.15" + } + }, + { + "id":"75b9e037-d398-434d-a9d3-d56a1b8809b4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T05:10:05.260Z", + "completed":"2016-03-11T05:10:05.260Z", + "new_balance":"5606.74", + "value":"-1.58" + } + }, + { + "id":"72c86c61-b8ed-426c-916a-e5b0671d40b6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T23:15:26.178Z", + "completed":"2016-03-13T23:15:26.178Z", + "new_balance":"5599.82", + "value":"-6.92" + } + }, + { + "id":"75152ec3-f15d-4c0d-b296-00ba9d6e4864", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T07:38:32.720Z", + "completed":"2016-03-14T07:38:32.720Z", + "new_balance":"5598.58", + "value":"-1.24" + } + }, + { + "id":"305d12c6-c16a-4ce5-877e-e120799d9f3d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T09:32:48.059Z", + "completed":"2016-03-14T09:32:48.059Z", + "new_balance":"5606.87", + "value":"8.29" + } + }, + { + "id":"f6ee4b68-e9cc-4ca7-b6e9-783e70df7ed0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T03:14:05.592Z", + "completed":"2016-03-15T03:14:05.592Z", + "new_balance":"5602.60", + "value":"-4.27" + } + }, + { + "id":"75f79be5-4040-4a5c-82cb-b086fc759b03", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T03:29:07.451Z", + "completed":"2016-03-26T03:29:07.451Z", + "new_balance":"5600.61", + "value":"-1.99" + } + }, + { + "id":"4e0a6b78-7dda-4f65-91ed-c02503ecb18a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T05:01:21.318Z", + "completed":"2016-03-26T05:01:21.318Z", + "new_balance":"5595.92", + "value":"-4.69" + } + }, + { + "id":"370cfd14-5af5-4e6c-afa7-f835e8b8aade", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:00:25.787Z", + "completed":"2016-03-26T13:00:25.787Z", + "new_balance":"5593.78", + "value":"-2.14" + } + }, + { + "id":"1575fe61-0f77-426c-b651-60663adc80c7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T13:19:05.754Z", + "completed":"2016-03-27T13:19:05.754Z", + "new_balance":"5588.63", + "value":"-5.15" + } + }, + { + "id":"f22e9240-a458-4ffc-bea0-9baa7a6bf23f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T20:09:27.734Z", + "completed":"2016-03-27T20:09:27.734Z", + "new_balance":"5584.21", + "value":"-4.42" + } + }, + { + "id":"6884f6a9-f7ad-4eb6-97e0-46182c61e40a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T22:23:00.873Z", + "completed":"2016-03-27T22:23:00.873Z", + "new_balance":"5689.84", + "value":"105.63" + } + }, + { + "id":"32999e8b-386a-4db8-b5ff-3ad636b963f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T12:37:09.519Z", + "completed":"2016-03-28T12:37:09.519Z", + "new_balance":"5686.40", + "value":"-3.44" + } + }, + { + "id":"86ae8b24-6bad-49b5-8b07-3d5283ed5480", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T08:29:24.872Z", + "completed":"2016-03-30T08:29:24.872Z", + "new_balance":"5682.13", + "value":"-4.27" + } + }, + { + "id":"b831e409-a548-49ee-8714-4e4192f66cae", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T05:42:41.652Z", + "completed":"2016-04-01T05:42:41.652Z", + "new_balance":"5678.69", + "value":"-3.44" + } + }, + { + "id":"90826c47-c15b-4ea8-99d8-4e0aff2283c2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T12:05:26.283Z", + "completed":"2016-04-01T12:05:26.283Z", + "new_balance":"5620.46", + "value":"-58.23" + } + }, + { + "id":"ffa507cb-eccf-43ed-b49e-d431c018b7ca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T12:45:32.792Z", + "completed":"2016-04-01T12:45:32.792Z", + "new_balance":"5618.00", + "value":"-2.46" + } + }, + { + "id":"58bd385c-c07a-4a5e-a68e-74cfa5ffc988", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:20:54.395Z", + "completed":"2016-04-01T14:20:54.395Z", + "new_balance":"5611.60", + "value":"-6.40" + } + }, + { + "id":"ac6a5e2b-3d9f-47ed-81fc-5cd832c52a20", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T14:43:02.151Z", + "completed":"2016-04-01T14:43:02.151Z", + "new_balance":"5604.41", + "value":"-7.19" + } + }, + { + "id":"03e49089-7209-4ac8-aa8e-d62da0630480", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T03:21:49.532Z", + "completed":"2016-04-05T03:21:49.532Z", + "new_balance":"5599.99", + "value":"-4.42" + } + }, + { + "id":"5b8e8587-966c-4da6-a919-e9035ef41c97", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T06:01:23.647Z", + "completed":"2016-04-05T06:01:23.647Z", + "new_balance":"5598.84", + "value":"-1.15" + } + }, + { + "id":"acd2abc9-112f-48b7-ac81-3c8491638554", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T15:35:48.255Z", + "completed":"2016-04-05T15:35:48.255Z", + "new_balance":"5595.17", + "value":"-3.67" + } + }, + { + "id":"501092d8-5feb-45de-b15f-e186e1741102", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T23:56:26.167Z", + "completed":"2016-04-05T23:56:26.167Z", + "new_balance":"5590.02", + "value":"-5.15" + } + }, + { + "id":"2ccce2c6-1044-4dba-8a0e-b90efb407fef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T15:16:05.345Z", + "completed":"2016-04-07T15:16:05.345Z", + "new_balance":"5587.70", + "value":"-2.32" + } + }, + { + "id":"35409513-87b2-4663-8990-d493b5b0a71c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:43:18.766Z", + "completed":"2016-04-09T05:43:18.766Z", + "new_balance":"5585.32", + "value":"-2.38" + } + }, + { + "id":"6a06e2dd-7892-47cb-a354-5b384758788a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T07:29:22.250Z", + "completed":"2016-04-09T07:29:22.250Z", + "new_balance":"5580.17", + "value":"-5.15" + } + }, + { + "id":"50501db2-ff8d-4851-91ef-2b41e41a5102", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:24:36.667Z", + "completed":"2016-04-10T01:24:36.667Z", + "new_balance":"5575.70", + "value":"-4.47" + } + }, + { + "id":"6517dbd8-6997-4e64-808f-428f8f5c3ae8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T12:41:41.531Z", + "completed":"2016-04-10T12:41:41.531Z", + "new_balance":"5572.97", + "value":"-2.73" + } + }, + { + "id":"d0dee942-346b-4814-8269-eacd30b47f7e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T14:38:20.503Z", + "completed":"2016-04-10T14:38:20.503Z", + "new_balance":"5570.34", + "value":"-2.63" + } + }, + { + "id":"4dd6ac03-a2c1-4354-b90b-74412da6dba5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T18:07:24.483Z", + "completed":"2016-04-10T18:07:24.483Z", + "new_balance":"5567.88", + "value":"-2.46" + } + }, + { + "id":"5187343e-9ab1-4a1f-b6c2-c3992fbb6bf1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T02:39:47.452Z", + "completed":"2016-04-11T02:39:47.452Z", + "new_balance":"5566.92", + "value":"-0.96" + } + }, + { + "id":"0a710727-ff09-4290-9ab3-72ff1b9568f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T08:15:54.265Z", + "completed":"2016-04-11T08:15:54.265Z", + "new_balance":"5560.17", + "value":"-6.75" + } + }, + { + "id":"e3ffdcd7-f062-4851-b2a6-5db179b055dd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T12:04:04.770Z", + "completed":"2016-04-11T12:04:04.770Z", + "new_balance":"5557.75", + "value":"-2.42" + } + }, + { + "id":"7319e4c6-6c24-4885-87d4-0a218186afa6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T20:26:20.212Z", + "completed":"2016-04-11T20:26:20.212Z", + "new_balance":"5555.16", + "value":"-2.59" + } + }, + { + "id":"84a73f44-19c3-4501-9df4-f066897f5091", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T22:12:41.353Z", + "completed":"2016-04-11T22:12:41.353Z", + "new_balance":"5550.01", + "value":"-5.15" + } + }, + { + "id":"5946ba97-39db-4c01-9892-d322a7a0d6c2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T11:13:07.740Z", + "completed":"2016-04-21T11:13:07.740Z", + "new_balance":"5544.86", + "value":"-5.15" + } + }, + { + "id":"32bd2764-3005-40a1-94be-c99c5801a6e7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T14:57:39.219Z", + "completed":"2016-04-23T14:57:39.219Z", + "new_balance":"5543.44", + "value":"-1.42" + } + }, + { + "id":"f0de1ace-57d4-4239-bf0e-13692ae713ef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T07:13:49.203Z", + "completed":"2016-04-29T07:13:49.203Z", + "new_balance":"5540.00", + "value":"-3.44" + } + }, + { + "id":"287e780a-7dff-4134-815a-e645cc48d757", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T12:39:54.458Z", + "completed":"2016-04-29T12:39:54.458Z", + "new_balance":"5645.63", + "value":"105.63" + } + }, + { + "id":"1322b48a-6c49-437d-bbfd-06cc9b830257", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T22:42:01.628Z", + "completed":"2016-04-29T22:42:01.628Z", + "new_balance":"5640.82", + "value":"-4.81" + } + }, + { + "id":"ad615db3-bca6-45bc-ae38-cb80b59279df", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T18:36:33.528Z", + "completed":"2016-04-30T18:36:33.528Z", + "new_balance":"5636.55", + "value":"-4.27" + } + }, + { + "id":"ea259735-2127-4dc9-8ca5-635c373eded9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T09:34:54.251Z", + "completed":"2016-05-02T09:34:54.251Z", + "new_balance":"5634.09", + "value":"-2.46" + } + }, + { + "id":"95dddb4b-6016-4962-a49e-ef09ce84333b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:11:08.234Z", + "completed":"2016-05-02T11:11:08.234Z", + "new_balance":"5626.90", + "value":"-7.19" + } + }, + { + "id":"683ae672-4ea0-4e96-a1e0-f91e5803d7f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T21:06:42.827Z", + "completed":"2016-05-02T21:06:42.827Z", + "new_balance":"5568.67", + "value":"-58.23" + } + }, + { + "id":"0347d4c5-c5b7-4a1e-b3f1-4ea8090475c8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T22:59:52.827Z", + "completed":"2016-05-02T22:59:52.827Z", + "new_balance":"5562.27", + "value":"-6.40" + } + }, + { + "id":"44de13ed-774d-46c1-b70f-ee085cef9335", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T22:45:20.406Z", + "completed":"2016-05-06T22:45:20.406Z", + "new_balance":"5557.85", + "value":"-4.42" + } + }, + { + "id":"c348286f-d307-4021-9033-ed8aaeb14232", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T06:04:35.312Z", + "completed":"2016-05-07T06:04:35.312Z", + "new_balance":"5556.45", + "value":"-1.40" + } + }, + { + "id":"c9288a6b-1cf4-43ec-b9d4-61c2e2418b37", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T12:37:12.761Z", + "completed":"2016-05-07T12:37:12.761Z", + "new_balance":"5553.42", + "value":"-3.03" + } + }, + { + "id":"95d8e004-d75e-43a8-875b-8ecd8a461806", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:57:11.144Z", + "completed":"2016-05-07T14:57:11.144Z", + "new_balance":"5551.10", + "value":"-2.32" + } + }, + { + "id":"7b6b1a65-ff64-4b0c-8adb-3284d02b6a15", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T23:30:38.650Z", + "completed":"2016-05-07T23:30:38.650Z", + "new_balance":"5546.61", + "value":"-4.49" + } + }, + { + "id":"7eaa5181-2fdd-4e67-8872-e0646782f898", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T04:53:13.603Z", + "completed":"2016-05-08T04:53:13.603Z", + "new_balance":"5542.37", + "value":"-4.24" + } + }, + { + "id":"0dc01959-9097-4735-a8cf-7b41273245a8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T03:40:13.571Z", + "completed":"2016-05-09T03:40:13.571Z", + "new_balance":"5538.93", + "value":"-3.44" + } + }, + { + "id":"75faf1f7-47f6-439b-8407-5311f89b932f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:36:17.391Z", + "completed":"2016-05-13T19:36:17.391Z", + "new_balance":"5533.78", + "value":"-5.15" + } + }, + { + "id":"5f5a80c6-f814-4802-89e1-de06c4b8fa00", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T03:49:20.352Z", + "completed":"2016-05-26T03:49:20.352Z", + "new_balance":"5532.38", + "value":"-1.40" + } + }, + { + "id":"0e7f2806-bd4a-4d89-b436-04f18a6ad236", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T06:29:46.809Z", + "completed":"2016-05-26T06:29:46.809Z", + "new_balance":"5527.23", + "value":"-5.15" + } + }, + { + "id":"5b29544a-61c5-4e65-9183-b17f867f0623", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T08:27:18.540Z", + "completed":"2016-05-27T08:27:18.540Z", + "new_balance":"5522.42", + "value":"-4.81" + } + }, + { + "id":"179010bc-826b-4124-97e5-811eb2915fa4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T10:59:36.757Z", + "completed":"2016-05-27T10:59:36.757Z", + "new_balance":"5520.40", + "value":"-2.02" + } + }, + { + "id":"4b64b2ff-0356-481d-a385-182f845256b3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T06:41:22.436Z", + "completed":"2016-05-30T06:41:22.436Z", + "new_balance":"5516.96", + "value":"-3.44" + } + }, + { + "id":"435c4cec-ba35-40f1-a735-eab25f9cc885", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T08:10:49.969Z", + "completed":"2016-05-30T08:10:49.969Z", + "new_balance":"5622.59", + "value":"105.63" + } + }, + { + "id":"669af1d5-5fef-4a55-93b3-6981c68620f8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T12:13:22.152Z", + "completed":"2016-05-30T12:13:22.152Z", + "new_balance":"5618.32", + "value":"-4.27" + } + }, + { + "id":"0b878112-df8f-4215-a2a6-3bc6b5aede0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T02:37:05.926Z", + "completed":"2016-06-01T02:37:05.926Z", + "new_balance":"5613.17", + "value":"-5.15" + } + }, + { + "id":"7050c750-cfae-4331-b8e0-237153af1e50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T03:21:40.379Z", + "completed":"2016-06-01T03:21:40.379Z", + "new_balance":"5611.30", + "value":"-1.87" + } + }, + { + "id":"a1c3cce8-ffe8-44a1-883e-7956eb452ee6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T05:08:50.811Z", + "completed":"2016-06-01T05:08:50.811Z", + "new_balance":"5608.84", + "value":"-2.46" + } + }, + { + "id":"19eca919-c068-469a-913f-f893259f6030", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T05:09:34.858Z", + "completed":"2016-06-01T05:09:34.858Z", + "new_balance":"5603.95", + "value":"-4.89" + } + }, + { + "id":"bf52e1f7-1f19-4f28-83f4-5d0d97af4d0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T05:43:06.580Z", + "completed":"2016-06-01T05:43:06.580Z", + "new_balance":"5600.51", + "value":"-3.44" + } + }, + { + "id":"5072aac0-db60-4b4d-b1ad-830ccf995938", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:29:26.928Z", + "completed":"2016-06-01T06:29:26.928Z", + "new_balance":"5595.36", + "value":"-5.15" + } + }, + { + "id":"c7b38a88-f223-4c66-9208-4766e92fdf14", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:28:23.329Z", + "completed":"2016-06-01T16:28:23.329Z", + "new_balance":"5588.96", + "value":"-6.40" + } + }, + { + "id":"d48213af-74df-4357-b646-d749ee4ea443", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T16:52:45.257Z", + "completed":"2016-06-01T16:52:45.257Z", + "new_balance":"5530.73", + "value":"-58.23" + } + }, + { + "id":"06a57bc9-0f45-40d8-a7b6-e9055d9ca361", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T17:43:53.196Z", + "completed":"2016-06-01T17:43:53.196Z", + "new_balance":"5523.54", + "value":"-7.19" + } + }, + { + "id":"b6ed08a7-132c-4bb9-b00c-5771947427a5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T02:27:36.059Z", + "completed":"2016-06-02T02:27:36.059Z", + "new_balance":"5516.62", + "value":"-6.92" + } + }, + { + "id":"c542a93c-c91d-4686-ba5d-5aad0c767b74", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T09:38:54.266Z", + "completed":"2016-06-02T09:38:54.266Z", + "new_balance":"5515.04", + "value":"-1.58" + } + }, + { + "id":"cf68b930-4136-45fb-a0f8-a2bbf53b5235", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T19:52:20.363Z", + "completed":"2016-06-02T19:52:20.363Z", + "new_balance":"5513.80", + "value":"-1.24" + } + }, + { + "id":"3ae716bd-2367-4dec-898c-dec27dc2ebc6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:00:26.738Z", + "completed":"2016-06-04T09:00:26.738Z", + "new_balance":"5511.66", + "value":"-2.14" + } + }, + { + "id":"4e4d115d-637c-41ef-aa61-4678249478e0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T15:49:44.977Z", + "completed":"2016-06-04T15:49:44.977Z", + "new_balance":"5506.97", + "value":"-4.69" + } + }, + { + "id":"4a563a0c-f9d8-4f92-9c8c-1ffc6606bfd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T18:51:51.655Z", + "completed":"2016-06-04T18:51:51.655Z", + "new_balance":"5502.70", + "value":"-4.27" + } + }, + { + "id":"fd3fc408-fedb-4a85-b5c6-87f320153256", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T09:58:04.156Z", + "completed":"2016-06-05T09:58:04.156Z", + "new_balance":"5498.28", + "value":"-4.42" + } + }, + { + "id":"5ece995b-b6cd-49b6-bcc6-e75587373d6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T18:02:53.651Z", + "completed":"2016-06-05T18:02:53.651Z", + "new_balance":"5496.29", + "value":"-1.99" + } + }, + { + "id":"7b46e0e5-df46-4b7d-a394-beadd13aa57c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T06:01:35.915Z", + "completed":"2016-06-18T06:01:35.915Z", + "new_balance":"5491.14", + "value":"-5.15" + } + }, + { + "id":"afef7d90-eafd-4c01-a3e0-b5e3700d6f47", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T02:55:38.145Z", + "completed":"2016-06-30T02:55:38.145Z", + "new_balance":"5596.77", + "value":"105.63" + } + }, + { + "id":"193e5530-6b95-4920-909f-47cd643adfce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T07:14:57.359Z", + "completed":"2016-06-30T07:14:57.359Z", + "new_balance":"5592.50", + "value":"-4.27" + } + }, + { + "id":"8aebffb3-fdaa-4a6d-b08a-c37262296cb3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T22:13:21.903Z", + "completed":"2016-06-30T22:13:21.903Z", + "new_balance":"5589.39", + "value":"-3.11" + } + }, + { + "id":"02392423-ca41-461a-8f25-6c4b1df66d13", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T23:35:54.281Z", + "completed":"2016-06-30T23:35:54.281Z", + "new_balance":"5585.95", + "value":"-3.44" + } + }, + { + "id":"f62c064e-147d-4f2b-835f-c47af8aa72ce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T16:21:35.270Z", + "completed":"2016-07-01T16:21:35.270Z", + "new_balance":"5579.55", + "value":"-6.40" + } + }, + { + "id":"eb323b36-1837-400c-b342-b1eb2a8361b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T04:02:54.870Z", + "completed":"2016-07-03T04:02:54.870Z", + "new_balance":"5572.36", + "value":"-7.19" + } + }, + { + "id":"642bb403-3505-42ed-9a9c-e771d3f46b3a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T07:47:02.501Z", + "completed":"2016-07-03T07:47:02.501Z", + "new_balance":"5514.13", + "value":"-58.23" + } + }, + { + "id":"beaa229f-de45-4b23-8fa9-caa4fd5ba81a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T08:54:39.981Z", + "completed":"2016-07-03T08:54:39.981Z", + "new_balance":"5511.67", + "value":"-2.46" + } + }, + { + "id":"84bbc544-d8c1-4ad6-b10d-d77ba7b0c8e0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T14:51:18.218Z", + "completed":"2016-07-03T14:51:18.218Z", + "new_balance":"5508.23", + "value":"-3.44" + } + }, + { + "id":"72a13e06-b359-4628-976f-51ed6440390e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T05:50:17.639Z", + "completed":"2016-07-05T05:50:17.639Z", + "new_balance":"5503.81", + "value":"-4.42" + } + }, + { + "id":"3e463b0a-d988-42cf-a156-e69057e4d95d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:22:57.281Z", + "completed":"2016-07-05T13:22:57.281Z", + "new_balance":"5502.66", + "value":"-1.15" + } + }, + { + "id":"1769090a-4400-4be2-a146-d4dcce68e1e4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T16:18:47.073Z", + "completed":"2016-07-05T16:18:47.073Z", + "new_balance":"5497.51", + "value":"-5.15" + } + }, + { + "id":"32abc879-2051-4c99-bd90-1b6c88982a89", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T03:24:04.850Z", + "completed":"2016-07-06T03:24:04.850Z", + "new_balance":"5495.19", + "value":"-2.32" + } + }, + { + "id":"e869997c-134d-4278-b300-c22a88485b89", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T08:49:41.590Z", + "completed":"2016-07-06T08:49:41.590Z", + "new_balance":"5491.52", + "value":"-3.67" + } + }, + { + "id":"27cf1a38-6d5d-463e-9ac3-481afc130b84", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T10:04:29.188Z", + "completed":"2016-07-07T10:04:29.188Z", + "new_balance":"5487.05", + "value":"-4.47" + } + }, + { + "id":"86fb7830-4a8d-4b24-a800-21b29cf88df0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T04:36:57.999Z", + "completed":"2016-07-10T04:36:57.999Z", + "new_balance":"5484.67", + "value":"-2.38" + } + }, + { + "id":"86853a1f-26db-445c-bfed-f6b760dd6d40", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T19:26:59.991Z", + "completed":"2016-07-10T19:26:59.991Z", + "new_balance":"5479.52", + "value":"-5.15" + } + }, + { + "id":"906731e3-f9b1-4f73-999d-d6e12d862cee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T02:48:51.530Z", + "completed":"2016-07-12T02:48:51.530Z", + "new_balance":"5476.79", + "value":"-2.73" + } + }, + { + "id":"f925b45e-3029-4432-b099-e84bb36e8c11", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T18:56:02.681Z", + "completed":"2016-07-12T18:56:02.681Z", + "new_balance":"5474.33", + "value":"-2.46" + } + }, + { + "id":"fbc8eda8-cf1a-4257-863f-22874fee2096", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:31:18.678Z", + "completed":"2016-07-12T19:31:18.678Z", + "new_balance":"5469.86", + "value":"-4.47" + } + }, + { + "id":"aa3c35cc-d108-49e1-b22d-9380937a777c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T06:43:18.740Z", + "completed":"2016-07-15T06:43:18.740Z", + "new_balance":"5467.23", + "value":"-2.63" + } + }, + { + "id":"7d569b6c-0574-4881-b69f-997df6bbdeeb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:05:53.659Z", + "completed":"2016-07-16T15:05:53.659Z", + "new_balance":"5466.27", + "value":"-0.96" + } + }, + { + "id":"42a3bc3c-7267-40d3-8724-253871e44a83", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T19:16:58.177Z", + "completed":"2016-07-16T19:16:58.177Z", + "new_balance":"5461.12", + "value":"-5.15" + } + }, + { + "id":"e4dca72f-7624-4ce7-b289-94428802f0e2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T11:11:41.399Z", + "completed":"2016-07-17T11:11:41.399Z", + "new_balance":"5454.37", + "value":"-6.75" + } + }, + { + "id":"21c87033-cfe5-419f-88f6-2a33afd69c08", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T19:13:55.210Z", + "completed":"2016-07-17T19:13:55.210Z", + "new_balance":"5451.78", + "value":"-2.59" + } + }, + { + "id":"2d4949a8-03c5-44fa-89d7-0e6e5841c2d2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T09:04:36.554Z", + "completed":"2016-07-19T09:04:36.554Z", + "new_balance":"5449.36", + "value":"-2.42" + } + }, + { + "id":"6d1d4090-4df4-4d80-ba8b-1ed490153ac4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T06:56:17.172Z", + "completed":"2016-07-20T06:56:17.172Z", + "new_balance":"5444.21", + "value":"-5.15" + } + }, + { + "id":"a6fa657b-e76e-4aa7-830e-6bcb8be4cef1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T00:56:51.259Z", + "completed":"2016-07-23T00:56:51.259Z", + "new_balance":"5442.79", + "value":"-1.42" + } + }, + { + "id":"a8294ab0-fe2f-4e17-9120-2bc80e20ed72", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T07:29:12.556Z", + "completed":"2016-07-26T07:29:12.556Z", + "new_balance":"5437.98", + "value":"-4.81" + } + }, + { + "id":"46618ed7-a7ba-496e-aeb1-c614e7ffb768", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T14:06:07.206Z", + "completed":"2016-07-27T14:06:07.206Z", + "new_balance":"5543.61", + "value":"105.63" + } + }, + { + "id":"2e9989f8-0763-4bd7-bdf2-2c88cb84ad45", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T21:21:31.315Z", + "completed":"2016-07-28T21:21:31.315Z", + "new_balance":"5540.17", + "value":"-3.44" + } + }, + { + "id":"fb39bdac-6e88-40b6-8131-1d001e3dc41c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T01:50:03.879Z", + "completed":"2016-07-30T01:50:03.879Z", + "new_balance":"5535.90", + "value":"-4.27" + } + }, + { + "id":"2aee6ffc-cb25-4edd-bb8d-80665777b6b8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T17:28:16.953Z", + "completed":"2016-08-01T17:28:16.953Z", + "new_balance":"5529.50", + "value":"-6.40" + } + }, + { + "id":"e4c375fa-65fa-4e2c-bf75-3d05b173085e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T09:04:38.673Z", + "completed":"2016-08-03T09:04:38.673Z", + "new_balance":"5527.04", + "value":"-2.46" + } + }, + { + "id":"96bbaa94-b116-49d8-9546-888e9df3c111", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:11:38.984Z", + "completed":"2016-08-03T12:11:38.984Z", + "new_balance":"5519.85", + "value":"-7.19" + } + }, + { + "id":"933f0500-26ab-487e-bb81-0cf27a6b2325", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T19:43:40.324Z", + "completed":"2016-08-03T19:43:40.324Z", + "new_balance":"5516.41", + "value":"-3.44" + } + }, + { + "id":"5cbf6308-d375-44fc-a0bd-94322f656b9e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T22:58:53.793Z", + "completed":"2016-08-03T22:58:53.793Z", + "new_balance":"5458.18", + "value":"-58.23" + } + }, + { + "id":"876d8ee8-1782-4cea-a179-1302d8784619", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T15:01:35.371Z", + "completed":"2016-08-08T15:01:35.371Z", + "new_balance":"5453.76", + "value":"-4.42" + } + }, + { + "id":"6596052e-40b2-4b98-a826-7006b2f3d252", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T23:29:47.983Z", + "completed":"2016-08-08T23:29:47.983Z", + "new_balance":"5448.61", + "value":"-5.15" + } + }, + { + "id":"1833c7ca-a368-4c21-b690-7c74b212c910", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T23:12:41.587Z", + "completed":"2016-08-11T23:12:41.587Z", + "new_balance":"5449.72", + "value":"1.11" + } + }, + { + "id":"44ff94ca-5066-42f0-9aab-b93f009eefd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T23:46:32.461Z", + "completed":"2016-08-13T23:46:32.461Z", + "new_balance":"5447.40", + "value":"-2.32" + } + }, + { + "id":"700c28ed-31ae-48f5-addf-9d09eefbcd80", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:52:25.153Z", + "completed":"2016-08-14T09:52:25.153Z", + "new_balance":"5444.37", + "value":"-3.03" + } + }, + { + "id":"092250e1-099b-48eb-96bd-187d792a8fbf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T23:58:18.179Z", + "completed":"2016-08-17T23:58:18.179Z", + "new_balance":"5442.97", + "value":"-1.40" + } + }, + { + "id":"736f603a-0e6d-4245-bbf1-9e206320145a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T13:52:39.712Z", + "completed":"2016-08-21T13:52:39.712Z", + "new_balance":"5438.48", + "value":"-4.49" + } + }, + { + "id":"8a210653-547f-4470-8a03-7c5b97237588", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T08:00:06.937Z", + "completed":"2016-08-23T08:00:06.937Z", + "new_balance":"5434.24", + "value":"-4.24" + } + }, + { + "id":"1c6d56a4-7a70-4754-af4f-8eaec16c2e85", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:56:57.019Z", + "completed":"2016-08-23T23:56:57.019Z", + "new_balance":"5429.09", + "value":"-5.15" + } + }, + { + "id":"c2a0e622-9d24-4f79-9933-f3974c7d0000", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T22:03:34.500Z", + "completed":"2016-08-24T22:03:34.500Z", + "new_balance":"5427.69", + "value":"-1.40" + } + }, + { + "id":"3b119358-894c-4a33-b19a-8cd667c07638", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T12:08:41.163Z", + "completed":"2016-08-27T12:08:41.163Z", + "new_balance":"5425.67", + "value":"-2.02" + } + }, + { + "id":"fa9a1c6e-2030-4049-a4ef-7bef33e87f46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T18:01:38.590Z", + "completed":"2016-08-27T18:01:38.590Z", + "new_balance":"5420.86", + "value":"-4.81" + } + }, + { + "id":"4d097f59-f4c3-4ccb-bb94-7416dc355fc8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T18:40:53.299Z", + "completed":"2016-08-27T18:40:53.299Z", + "new_balance":"5526.49", + "value":"105.63" + } + }, + { + "id":"0cb0c78f-d443-4fe0-a883-f6b3852dfc6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T14:03:01.145Z", + "completed":"2016-08-28T14:03:01.145Z", + "new_balance":"5523.05", + "value":"-3.44" + } + }, + { + "id":"de7ea945-4c0d-4835-bf28-9fc6f3838943", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T20:28:14.963Z", + "completed":"2016-08-30T20:28:14.963Z", + "new_balance":"5518.78", + "value":"-4.27" + } + }, + { + "id":"876b88c1-c026-4070-b009-b3b675347506", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:43:01.901Z", + "completed":"2016-09-01T17:43:01.901Z", + "new_balance":"5512.38", + "value":"-6.40" + } + }, + { + "id":"c5d42376-59ec-46f9-b1ad-d738b938ba54", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T04:55:57.501Z", + "completed":"2016-09-03T04:55:57.501Z", + "new_balance":"5505.19", + "value":"-7.19" + } + }, + { + "id":"132c4ad3-5b61-4552-9019-db0847699f53", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T11:54:58.519Z", + "completed":"2016-09-03T11:54:58.519Z", + "new_balance":"5501.75", + "value":"-3.44" + } + }, + { + "id":"7ec06847-a6c8-4a7b-8651-bcc3d32c976e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T13:07:57.048Z", + "completed":"2016-09-03T13:07:57.048Z", + "new_balance":"5499.29", + "value":"-2.46" + } + }, + { + "id":"03d73407-d146-40ea-a845-0fe71278d4a3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T17:14:32.900Z", + "completed":"2016-09-03T17:14:32.900Z", + "new_balance":"5441.06", + "value":"-58.23" + } + }, + { + "id":"071fb3b6-a0d7-4598-a1be-3b54e27edc24", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T13:54:58.537Z", + "completed":"2016-09-05T13:54:58.537Z", + "new_balance":"5436.17", + "value":"-4.89" + } + }, + { + "id":"d3402d28-93e1-4606-8d0e-0eea10442c7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T16:04:00.868Z", + "completed":"2016-09-05T16:04:00.868Z", + "new_balance":"5431.02", + "value":"-5.15" + } + }, + { + "id":"aa7268b6-6217-4211-8150-8c93ef1babda", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T08:32:23.300Z", + "completed":"2016-09-07T08:32:23.300Z", + "new_balance":"5429.15", + "value":"-1.87" + } + }, + { + "id":"33e2fe3b-f2a1-46d9-a9fa-991b908c30f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T07:46:46.800Z", + "completed":"2016-09-09T07:46:46.800Z", + "new_balance":"5424.00", + "value":"-5.15" + } + }, + { + "id":"4be78318-d3a2-4e66-b4db-7edc7633499d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T01:53:34.593Z", + "completed":"2016-09-11T01:53:34.593Z", + "new_balance":"5422.42", + "value":"-1.58" + } + }, + { + "id":"df4085bb-9d60-47a1-b762-3bc7029669af", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T15:33:56.599Z", + "completed":"2016-09-13T15:33:56.599Z", + "new_balance":"5415.50", + "value":"-6.92" + } + }, + { + "id":"a5b77783-043e-456c-90a3-818cdb49d731", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T03:11:33.915Z", + "completed":"2016-09-14T03:11:33.915Z", + "new_balance":"5423.79", + "value":"8.29" + } + }, + { + "id":"f8e0049a-959f-481a-bd4d-a8f4f9650669", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T23:32:41.413Z", + "completed":"2016-09-14T23:32:41.413Z", + "new_balance":"5422.55", + "value":"-1.24" + } + }, + { + "id":"93144ad9-bc80-431f-877a-1e79ded1c499", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T08:00:29.282Z", + "completed":"2016-09-15T08:00:29.282Z", + "new_balance":"5418.28", + "value":"-4.27" + } + }, + { + "id":"8fdf5dca-2133-48b6-8e19-08ce8c3cf502", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T02:28:13.340Z", + "completed":"2016-09-26T02:28:13.340Z", + "new_balance":"5416.14", + "value":"-2.14" + } + }, + { + "id":"3da02097-5bee-49fd-afa7-a306ccf47464", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T09:00:11.131Z", + "completed":"2016-09-26T09:00:11.131Z", + "new_balance":"5414.15", + "value":"-1.99" + } + }, + { + "id":"dbe3afdb-7775-4ca4-a270-6c2138954c2e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T12:40:04.146Z", + "completed":"2016-09-26T12:40:04.146Z", + "new_balance":"5409.46", + "value":"-4.69" + } + }, + { + "id":"2244d622-3e92-411e-a6ee-de298e9e173f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T09:12:59.019Z", + "completed":"2016-09-27T09:12:59.019Z", + "new_balance":"5515.09", + "value":"105.63" + } + }, + { + "id":"c44da427-d001-4247-9c1b-ccfb587dfc1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T13:28:44.826Z", + "completed":"2016-09-27T13:28:44.826Z", + "new_balance":"5509.94", + "value":"-5.15" + } + }, + { + "id":"733f2e8c-bfd2-4fb1-abc8-646066b230fd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T22:19:26.457Z", + "completed":"2016-09-27T22:19:26.457Z", + "new_balance":"5505.52", + "value":"-4.42" + } + }, + { + "id":"68b8ca29-0e5c-4f8d-bf6a-6f4efde325c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T21:20:00.272Z", + "completed":"2016-09-28T21:20:00.272Z", + "new_balance":"5502.08", + "value":"-3.44" + } + }, + { + "id":"87a111b2-eed4-475d-93b8-c064da55fdf3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T17:07:50.724Z", + "completed":"2016-09-30T17:07:50.724Z", + "new_balance":"5497.81", + "value":"-4.27" + } + }, + { + "id":"e33033cb-7849-4e23-8037-34afa67362c4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T10:01:32.964Z", + "completed":"2016-10-01T10:01:32.964Z", + "new_balance":"5490.62", + "value":"-7.19" + } + }, + { + "id":"65fae595-404a-4c5a-bcad-079db273f988", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T15:32:05.639Z", + "completed":"2016-10-01T15:32:05.639Z", + "new_balance":"5484.22", + "value":"-6.40" + } + }, + { + "id":"2e987555-a929-4394-93a5-06412c27dc50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T15:40:27.817Z", + "completed":"2016-10-01T15:40:27.817Z", + "new_balance":"5425.99", + "value":"-58.23" + } + }, + { + "id":"0f37473f-dbab-4286-8fd5-50d11379f880", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T18:06:01.108Z", + "completed":"2016-10-01T18:06:01.108Z", + "new_balance":"5422.55", + "value":"-3.44" + } + }, + { + "id":"059acb4c-850a-4be2-af4c-e339e0dd4c87", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T20:23:38.713Z", + "completed":"2016-10-01T20:23:38.713Z", + "new_balance":"5420.09", + "value":"-2.46" + } + }, + { + "id":"c785c27b-5f93-4298-9dde-095d0190523b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T05:22:49.777Z", + "completed":"2016-10-05T05:22:49.777Z", + "new_balance":"5414.94", + "value":"-5.15" + } + }, + { + "id":"3d4556c0-5ca8-4b89-ba20-6616aed0315d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T09:09:38.801Z", + "completed":"2016-10-05T09:09:38.801Z", + "new_balance":"5410.52", + "value":"-4.42" + } + }, + { + "id":"b9e967af-fe03-4800-a722-de6f7df30171", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:11:25.188Z", + "completed":"2016-10-05T18:11:25.188Z", + "new_balance":"5409.37", + "value":"-1.15" + } + }, + { + "id":"2858aeb5-e883-46fc-a188-2e3f33be6cfd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T23:36:58.611Z", + "completed":"2016-10-05T23:36:58.611Z", + "new_balance":"5405.70", + "value":"-3.67" + } + }, + { + "id":"19582fbf-6b77-4250-9268-938dccb074b3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T10:51:52.730Z", + "completed":"2016-10-07T10:51:52.730Z", + "new_balance":"5403.38", + "value":"-2.32" + } + }, + { + "id":"5305ab35-d89c-41ac-b4fe-f3e2dde07eb0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T06:00:28.180Z", + "completed":"2016-10-09T06:00:28.180Z", + "new_balance":"5398.23", + "value":"-5.15" + } + }, + { + "id":"1991ef6d-bf3a-442e-8af3-2e7a7bca7be2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T20:58:58.766Z", + "completed":"2016-10-09T20:58:58.766Z", + "new_balance":"5395.85", + "value":"-2.38" + } + }, + { + "id":"dc333d31-a292-4a61-b6bf-63c7c335ac79", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:28:57.953Z", + "completed":"2016-10-10T12:28:57.953Z", + "new_balance":"5393.12", + "value":"-2.73" + } + }, + { + "id":"c5003df7-f8a2-4682-bcb3-e99488f5adce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T15:26:16.914Z", + "completed":"2016-10-10T15:26:16.914Z", + "new_balance":"5390.66", + "value":"-2.46" + } + }, + { + "id":"02edd871-0938-4a5b-9107-3b83866175d5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T16:01:12.452Z", + "completed":"2016-10-10T16:01:12.452Z", + "new_balance":"5386.19", + "value":"-4.47" + } + }, + { + "id":"c72415d1-d2fd-4f4c-9198-d3cbdeaa3cc7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T17:01:02.560Z", + "completed":"2016-10-10T17:01:02.560Z", + "new_balance":"5383.56", + "value":"-2.63" + } + }, + { + "id":"d932a841-c4f3-4c20-a9ef-c41cd117112c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T00:56:21.614Z", + "completed":"2016-10-11T00:56:21.614Z", + "new_balance":"5380.97", + "value":"-2.59" + } + }, + { + "id":"10c09fcf-111b-4441-9853-607903175aed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T03:47:42.420Z", + "completed":"2016-10-11T03:47:42.420Z", + "new_balance":"5374.22", + "value":"-6.75" + } + }, + { + "id":"777aa521-745e-4ef1-bec3-512e8835c7f1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T10:36:47.166Z", + "completed":"2016-10-11T10:36:47.166Z", + "new_balance":"5371.80", + "value":"-2.42" + } + }, + { + "id":"d29a1fa2-f7a5-4b99-8310-54ab53777451", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T14:31:47.739Z", + "completed":"2016-10-11T14:31:47.739Z", + "new_balance":"5366.65", + "value":"-5.15" + } + }, + { + "id":"a8d6c289-961f-4338-b911-163f3a9ae914", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T16:24:08.845Z", + "completed":"2016-10-11T16:24:08.845Z", + "new_balance":"5365.69", + "value":"-0.96" + } + }, + { + "id":"56d5559e-0b20-48f9-a9b0-b787ffbeba6a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T06:04:07.435Z", + "completed":"2016-10-21T06:04:07.435Z", + "new_balance":"5360.54", + "value":"-5.15" + } + }, + { + "id":"05aa0413-3b58-4d2c-9ede-142840296eb2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T12:44:41.213Z", + "completed":"2016-10-23T12:44:41.213Z", + "new_balance":"5359.12", + "value":"-1.42" + } + }, + { + "id":"4dd023ec-ee45-4695-8bac-31d0d56f3796", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T05:44:39.623Z", + "completed":"2016-10-29T05:44:39.623Z", + "new_balance":"5464.75", + "value":"105.63" + } + }, + { + "id":"602f8300-c4f1-4d6f-bafb-e8fb80a29aea", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T17:20:15.232Z", + "completed":"2016-10-29T17:20:15.232Z", + "new_balance":"5461.31", + "value":"-3.44" + } + }, + { + "id":"64911687-3cfc-40e1-be39-30fad287945f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T20:55:10.739Z", + "completed":"2016-10-29T20:55:10.739Z", + "new_balance":"5456.50", + "value":"-4.81" + } + }, + { + "id":"ddb583f7-1e25-4d16-bb77-a380ed46f7e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T04:33:27.497Z", + "completed":"2016-10-30T04:33:27.497Z", + "new_balance":"5452.23", + "value":"-4.27" + } + }, + { + "id":"14865374-f36b-4383-bb9c-022775c3ffa7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T02:14:46.356Z", + "completed":"2016-11-02T02:14:46.356Z", + "new_balance":"5445.04", + "value":"-7.19" + } + }, + { + "id":"8d4965ad-fadc-4482-90f2-f5beb31d3d7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T03:11:32.307Z", + "completed":"2016-11-02T03:11:32.307Z", + "new_balance":"5442.58", + "value":"-2.46" + } + }, + { + "id":"3fb39a4b-a0ee-4c22-a8b4-cc64b0bbad42", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:02:42.777Z", + "completed":"2016-11-02T19:02:42.777Z", + "new_balance":"5384.35", + "value":"-58.23" + } + }, + { + "id":"e643161b-6323-4f25-a2b2-c5bf07857742", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T21:23:24.081Z", + "completed":"2016-11-02T21:23:24.081Z", + "new_balance":"5377.95", + "value":"-6.40" + } + }, + { + "id":"bd4fef09-490c-4a64-9d85-c5295ddf997c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T17:22:38.391Z", + "completed":"2016-11-06T17:22:38.391Z", + "new_balance":"5373.53", + "value":"-4.42" + } + }, + { + "id":"cfd94def-2412-4445-bdf2-68c1391a7563", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:27:38.782Z", + "completed":"2016-11-07T07:27:38.782Z", + "new_balance":"5370.50", + "value":"-3.03" + } + }, + { + "id":"65e8622e-77ef-4b1e-911f-cea42fad5226", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:52:13.029Z", + "completed":"2016-11-07T14:52:13.029Z", + "new_balance":"5368.18", + "value":"-2.32" + } + }, + { + "id":"81330797-6c78-40f0-a889-6dbca5a1a3d8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T16:42:19.113Z", + "completed":"2016-11-07T16:42:19.113Z", + "new_balance":"5363.69", + "value":"-4.49" + } + }, + { + "id":"c25d3366-389c-4ed6-a4a3-e14339c83dd7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T23:11:44.694Z", + "completed":"2016-11-07T23:11:44.694Z", + "new_balance":"5362.29", + "value":"-1.40" + } + }, + { + "id":"55a0395c-1e7f-41cf-a883-ffd4ea165a26", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:12:30.790Z", + "completed":"2016-11-08T07:12:30.790Z", + "new_balance":"5358.05", + "value":"-4.24" + } + }, + { + "id":"fa84115c-8ae8-4282-ae4d-f04486ead5d0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T22:09:16.411Z", + "completed":"2016-11-09T22:09:16.411Z", + "new_balance":"5354.61", + "value":"-3.44" + } + }, + { + "id":"44438665-687f-44e2-a993-550fb431178a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T03:43:54.619Z", + "completed":"2016-11-13T03:43:54.619Z", + "new_balance":"5349.46", + "value":"-5.15" + } + }, + { + "id":"e1fac84f-d1dc-4372-be39-573da23a194d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T03:48:50.837Z", + "completed":"2016-11-26T03:48:50.837Z", + "new_balance":"5348.06", + "value":"-1.40" + } + }, + { + "id":"e7bcaf4a-6862-4cdd-93af-01929ffc1b11", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T16:11:01.065Z", + "completed":"2016-11-26T16:11:01.065Z", + "new_balance":"5342.91", + "value":"-5.15" + } + }, + { + "id":"596c7b23-fd5d-47ab-a17e-5800b07be668", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T01:00:33.446Z", + "completed":"2016-11-27T01:00:33.446Z", + "new_balance":"5340.89", + "value":"-2.02" + } + }, + { + "id":"57fe9c11-dc48-424b-b6c5-40021fb08ebf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T20:18:54.797Z", + "completed":"2016-11-27T20:18:54.797Z", + "new_balance":"5336.08", + "value":"-4.81" + } + }, + { + "id":"e9a4a740-e652-4fc4-a43f-15d31cadaa46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T02:11:37.798Z", + "completed":"2016-11-30T02:11:37.798Z", + "new_balance":"5331.81", + "value":"-4.27" + } + }, + { + "id":"31a2ee02-9130-4ebd-a2a8-8679b462ea32", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T05:45:52.960Z", + "completed":"2016-11-30T05:45:52.960Z", + "new_balance":"5328.37", + "value":"-3.44" + } + }, + { + "id":"fd730760-fa3d-4065-8b28-6a9bc792969d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T16:16:01.575Z", + "completed":"2016-11-30T16:16:01.575Z", + "new_balance":"5434.00", + "value":"105.63" + } + }, + { + "id":"d374bafe-f707-4bf1-a2a5-091c660ff135", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:26:52.654Z", + "completed":"2016-12-01T04:26:52.654Z", + "new_balance":"5432.13", + "value":"-1.87" + } + }, + { + "id":"b72a8d6f-b07f-40f1-8be4-d54a34f34355", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T08:45:06.429Z", + "completed":"2016-12-01T08:45:06.429Z", + "new_balance":"5426.98", + "value":"-5.15" + } + }, + { + "id":"eb331e5a-f67a-4022-9d3e-4d2c56838d69", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T09:20:47.019Z", + "completed":"2016-12-01T09:20:47.019Z", + "new_balance":"5424.52", + "value":"-2.46" + } + }, + { + "id":"219bfcfb-d8a5-4b66-8925-907c5c439539", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T09:40:53.389Z", + "completed":"2016-12-01T09:40:53.389Z", + "new_balance":"5418.12", + "value":"-6.40" + } + }, + { + "id":"d75071a3-8447-4c3f-b573-22a2a68a8443", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T10:55:06.908Z", + "completed":"2016-12-01T10:55:06.908Z", + "new_balance":"5414.68", + "value":"-3.44" + } + }, + { + "id":"11db20f5-709d-48d8-88e4-2dc2ca6baad8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T12:21:14.301Z", + "completed":"2016-12-01T12:21:14.301Z", + "new_balance":"5409.79", + "value":"-4.89" + } + }, + { + "id":"a4f1415c-0d7c-44e7-9b6f-c26571752775", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T15:09:24.557Z", + "completed":"2016-12-01T15:09:24.557Z", + "new_balance":"5402.60", + "value":"-7.19" + } + }, + { + "id":"3a3ae456-a5e5-456a-a740-011a3251071d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T15:30:03.711Z", + "completed":"2016-12-01T15:30:03.711Z", + "new_balance":"5344.37", + "value":"-58.23" + } + }, + { + "id":"28e279ca-a631-41a6-a781-b06559632e8e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T23:40:13.659Z", + "completed":"2016-12-01T23:40:13.659Z", + "new_balance":"5339.22", + "value":"-5.15" + } + }, + { + "id":"50d8bf18-5162-4feb-ba95-0ddd62d9abe9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T03:00:33.292Z", + "completed":"2016-12-02T03:00:33.292Z", + "new_balance":"5337.64", + "value":"-1.58" + } + }, + { + "id":"093dc6c2-73f2-4f1f-801a-ed38ade16f2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T05:29:31.309Z", + "completed":"2016-12-02T05:29:31.309Z", + "new_balance":"5336.40", + "value":"-1.24" + } + }, + { + "id":"81b4862a-fffa-496d-af35-9078291e15a9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T05:39:53.997Z", + "completed":"2016-12-02T05:39:53.997Z", + "new_balance":"5329.48", + "value":"-6.92" + } + }, + { + "id":"eb2e8fc6-a9b8-4f66-babb-d311fbf96bb8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T02:12:49.854Z", + "completed":"2016-12-04T02:12:49.854Z", + "new_balance":"5325.21", + "value":"-4.27" + } + }, + { + "id":"b8a9e1d8-d14b-4115-aa7e-d96ee96444b1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T04:40:24.322Z", + "completed":"2016-12-04T04:40:24.322Z", + "new_balance":"5320.52", + "value":"-4.69" + } + }, + { + "id":"e4e25349-c5f1-4d4a-85fb-a17a6bd80a13", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T05:02:04.903Z", + "completed":"2016-12-04T05:02:04.903Z", + "new_balance":"5318.38", + "value":"-2.14" + } + }, + { + "id":"c8ebda3d-2547-4018-a9a0-2dc13e0d84e8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T16:59:54.645Z", + "completed":"2016-12-05T16:59:54.645Z", + "new_balance":"5313.96", + "value":"-4.42" + } + }, + { + "id":"8b851429-f399-45dc-9545-4f986b9f780b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T20:53:29.991Z", + "completed":"2016-12-05T20:53:29.991Z", + "new_balance":"5311.97", + "value":"-1.99" + } + }, + { + "id":"daf4183c-6849-4ad8-9716-be8455968d7d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T23:46:17.242Z", + "completed":"2016-12-18T23:46:17.242Z", + "new_balance":"5306.82", + "value":"-5.15" + } + }, + { + "id":"be69e8a8-ab05-4dce-9133-8c09311b7b50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T00:32:30.576Z", + "completed":"2016-12-30T00:32:30.576Z", + "new_balance":"5303.71", + "value":"-3.11" + } + }, + { + "id":"10f62869-2798-49df-b9f7-d8d27ca3ccb3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T12:53:26.633Z", + "completed":"2016-12-30T12:53:26.633Z", + "new_balance":"5299.44", + "value":"-4.27" + } + }, + { + "id":"923d0aac-4b9e-476f-a723-3dc4e832397c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T13:10:41.719Z", + "completed":"2016-12-30T13:10:41.719Z", + "new_balance":"5296.00", + "value":"-3.44" + } + }, + { + "id":"87fbe974-6e2d-419f-9b49-3568a72151cd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T18:41:39.468Z", + "completed":"2016-12-30T18:41:39.468Z", + "new_balance":"5401.63", + "value":"105.63" + } + }, + { + "id":"5ccba187-3251-41a6-976c-03cf202a63fc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T10:37:26.485Z", + "completed":"2017-01-01T10:37:26.485Z", + "new_balance":"5395.23", + "value":"-6.40" + } + }, + { + "id":"4d4df23b-6b3f-4159-9adf-d4c0e0973e25", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T22:32:01.293Z", + "completed":"2017-01-01T22:32:01.293Z", + "new_balance":"5388.83", + "value":"-6.40" + } + }, + { + "id":"ac303f08-ec66-4714-b347-85d2a27d7dc5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T07:32:13.272Z", + "completed":"2017-01-03T07:32:13.272Z", + "new_balance":"5381.64", + "value":"-7.19" + } + }, + { + "id":"50f5d58b-d1bf-4023-a99e-402bf895b3d1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T16:29:47.096Z", + "completed":"2017-01-03T16:29:47.096Z", + "new_balance":"5323.41", + "value":"-58.23" + } + }, + { + "id":"8493ff26-c31a-44dd-8161-bd01a8f8eada", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T19:37:58.392Z", + "completed":"2017-01-03T19:37:58.392Z", + "new_balance":"5319.97", + "value":"-3.44" + } + }, + { + "id":"dfb9d52b-2f57-45d5-a37e-1acf615a9e56", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T20:14:47.110Z", + "completed":"2017-01-03T20:14:47.110Z", + "new_balance":"5317.51", + "value":"-2.46" + } + }, + { + "id":"c3b7c3d9-b0ce-4e01-a35a-05302c524246", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T05:25:58.466Z", + "completed":"2017-01-05T05:25:58.466Z", + "new_balance":"5312.36", + "value":"-5.15" + } + }, + { + "id":"5cfe7793-106c-46f5-afff-3f6855258a7d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T10:25:24.959Z", + "completed":"2017-01-05T10:25:24.959Z", + "new_balance":"5311.21", + "value":"-1.15" + } + }, + { + "id":"dcaf139f-d8d2-4b13-9a47-b06a8a2877c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T18:46:11.916Z", + "completed":"2017-01-05T18:46:11.916Z", + "new_balance":"5306.79", + "value":"-4.42" + } + }, + { + "id":"ad33ef45-900d-43e3-94e7-a20dd0510398", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T11:22:17.889Z", + "completed":"2017-01-06T11:22:17.889Z", + "new_balance":"5304.47", + "value":"-2.32" + } + }, + { + "id":"0851db4a-9012-4a28-a14b-dc80d7409575", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T21:06:26.896Z", + "completed":"2017-01-06T21:06:26.896Z", + "new_balance":"5300.80", + "value":"-3.67" + } + }, + { + "id":"061aafe7-6217-4fe1-8c6d-3e08951d474c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T00:19:12.436Z", + "completed":"2017-01-07T00:19:12.436Z", + "new_balance":"5296.33", + "value":"-4.47" + } + }, + { + "id":"9ddbcf9e-dfa0-4fd7-85f1-6318d1301385", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T01:31:54.188Z", + "completed":"2017-01-10T01:31:54.188Z", + "new_balance":"5293.95", + "value":"-2.38" + } + }, + { + "id":"13857cc2-8a84-4c01-9a3e-15acb8a16522", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T11:05:14.919Z", + "completed":"2017-01-10T11:05:14.919Z", + "new_balance":"5288.80", + "value":"-5.15" + } + }, + { + "id":"15b432e1-4ab6-4bfb-92b7-fa19e7566039", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T09:17:25.887Z", + "completed":"2017-01-12T09:17:25.887Z", + "new_balance":"5286.34", + "value":"-2.46" + } + }, + { + "id":"656c6dfb-dc00-4493-95fb-327dc9d16176", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T10:15:55.021Z", + "completed":"2017-01-12T10:15:55.021Z", + "new_balance":"5283.61", + "value":"-2.73" + } + }, + { + "id":"ba7062df-eb66-41da-87a4-3e6e329e0097", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T22:17:10.942Z", + "completed":"2017-01-12T22:17:10.942Z", + "new_balance":"5279.14", + "value":"-4.47" + } + }, + { + "id":"0f1667b5-7438-4863-b58d-27f96a6c7cc1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T00:05:42.261Z", + "completed":"2017-01-15T00:05:42.261Z", + "new_balance":"5276.51", + "value":"-2.63" + } + }, + { + "id":"fa2c47d4-8c06-4991-a09d-72b8733709f5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T05:34:49.604Z", + "completed":"2017-01-16T05:34:49.604Z", + "new_balance":"5271.36", + "value":"-5.15" + } + }, + { + "id":"38ca6091-0958-4933-9bae-d111424b3a0d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T05:38:59.254Z", + "completed":"2017-01-16T05:38:59.254Z", + "new_balance":"5270.40", + "value":"-0.96" + } + }, + { + "id":"3e5ef0fd-4a5f-4b02-958e-9fa4756fc391", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T09:01:01.442Z", + "completed":"2017-01-17T09:01:01.442Z", + "new_balance":"5263.65", + "value":"-6.75" + } + }, + { + "id":"c164295c-fe57-4133-b10c-5324b9af05fb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T12:40:38.215Z", + "completed":"2017-01-17T12:40:38.215Z", + "new_balance":"5261.06", + "value":"-2.59" + } + }, + { + "id":"5db13be1-75ea-4c1c-9d41-a67e2d7b8514", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T20:02:40.706Z", + "completed":"2017-01-19T20:02:40.706Z", + "new_balance":"5258.64", + "value":"-2.42" + } + }, + { + "id":"b6d6d149-e01b-4427-9702-675ef6eb1b0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T02:30:39.924Z", + "completed":"2017-01-20T02:30:39.924Z", + "new_balance":"5253.49", + "value":"-5.15" + } + }, + { + "id":"ca528451-a552-419d-b1c9-dcc5beea0759", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T00:54:00.913Z", + "completed":"2017-01-23T00:54:00.913Z", + "new_balance":"5252.07", + "value":"-1.42" + } + }, + { + "id":"c3cbaa59-c512-49d4-8077-25681fc8c45d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T12:00:52.981Z", + "completed":"2017-01-26T12:00:52.981Z", + "new_balance":"5247.26", + "value":"-4.81" + } + }, + { + "id":"74ee5736-76a6-44bc-ba0c-82df1daddd3e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T09:04:24.813Z", + "completed":"2017-01-27T09:04:24.813Z", + "new_balance":"5352.89", + "value":"105.63" + } + }, + { + "id":"d0ab8316-d64f-4d85-9aa5-dedc957e4a07", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T18:50:52.556Z", + "completed":"2017-01-28T18:50:52.556Z", + "new_balance":"5349.45", + "value":"-3.44" + } + }, + { + "id":"bd1b0ab9-e9d2-4b70-aa13-348555ec8f06", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T12:35:50.291Z", + "completed":"2017-01-30T12:35:50.291Z", + "new_balance":"5345.18", + "value":"-4.27" + } + }, + { + "id":"6a98bd63-896b-40a1-893a-59bc9ecfb0a9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T06:26:07.001Z", + "completed":"2017-02-03T06:26:07.001Z", + "new_balance":"5341.74", + "value":"-3.44" + } + }, + { + "id":"46bcc215-eedd-452c-b115-6121d33096ba", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T10:35:20.459Z", + "completed":"2017-02-03T10:35:20.459Z", + "new_balance":"5283.51", + "value":"-58.23" + } + }, + { + "id":"1a9bba32-4e3e-4068-85ff-0c7c981d5296", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T15:38:05.757Z", + "completed":"2017-02-03T15:38:05.757Z", + "new_balance":"5276.32", + "value":"-7.19" + } + }, + { + "id":"90c650c3-0f27-4afb-8412-6fbbd9dff420", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T16:10:10.517Z", + "completed":"2017-02-03T16:10:10.517Z", + "new_balance":"5273.86", + "value":"-2.46" + } + }, + { + "id":"aa17a6f5-0eec-4d75-bc23-2e111e4fe57d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T05:56:56.979Z", + "completed":"2017-02-08T05:56:56.979Z", + "new_balance":"5268.71", + "value":"-5.15" + } + }, + { + "id":"7e36cfd1-a059-44dc-a1df-d472d6d800dc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T14:14:08.477Z", + "completed":"2017-02-08T14:14:08.477Z", + "new_balance":"5264.29", + "value":"-4.42" + } + }, + { + "id":"d74d84e2-a502-47c5-b468-8a1583aef552", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T05:14:57.663Z", + "completed":"2017-02-11T05:14:57.663Z", + "new_balance":"5265.40", + "value":"1.11" + } + }, + { + "id":"c0f8726a-9bcf-4ec2-93a6-ea4793dd58a7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T09:01:06.106Z", + "completed":"2017-02-13T09:01:06.106Z", + "new_balance":"5263.08", + "value":"-2.32" + } + }, + { + "id":"eedd32b2-e7e5-4413-8f14-e69abddce21c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T02:35:24.583Z", + "completed":"2017-02-14T02:35:24.583Z", + "new_balance":"5260.05", + "value":"-3.03" + } + }, + { + "id":"0dcd7d9b-a72b-429d-ba4a-1b9c0582d23c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T01:07:51.896Z", + "completed":"2017-02-17T01:07:51.896Z", + "new_balance":"5258.65", + "value":"-1.40" + } + }, + { + "id":"abb885ac-2217-43a8-921e-85ed4c745c92", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T08:31:31.842Z", + "completed":"2017-02-21T08:31:31.842Z", + "new_balance":"5254.16", + "value":"-4.49" + } + }, + { + "id":"02d540d3-a6e0-444b-ada4-920ef1e2e8ea", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T16:30:31.824Z", + "completed":"2017-02-23T16:30:31.824Z", + "new_balance":"5249.01", + "value":"-5.15" + } + }, + { + "id":"176ceaa1-61e5-4470-ae90-e90f2240ff1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T22:38:58.463Z", + "completed":"2017-02-23T22:38:58.463Z", + "new_balance":"5244.77", + "value":"-4.24" + } + }, + { + "id":"3afddb99-b569-4fff-9e5e-5e636e67fa59", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T12:28:44.048Z", + "completed":"2017-02-24T12:28:44.048Z", + "new_balance":"5243.37", + "value":"-1.40" + } + }, + { + "id":"32c9e228-cabb-47b6-a0f5-618420711514", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T11:00:19.908Z", + "completed":"2017-02-27T11:00:19.908Z", + "new_balance":"5349.00", + "value":"105.63" + } + }, + { + "id":"d53a060a-a952-4d81-b4ad-c940fe71407e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T12:35:06.982Z", + "completed":"2017-02-27T12:35:06.982Z", + "new_balance":"5346.98", + "value":"-2.02" + } + }, + { + "id":"71e5f4ef-8985-4d35-be9d-4eb5799d1da2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T16:40:43.950Z", + "completed":"2017-02-27T16:40:43.950Z", + "new_balance":"5342.17", + "value":"-4.81" + } + }, + { + "id":"7754c962-b0ee-46d1-a40d-cdb516ca8c46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T10:22:26.936Z", + "completed":"2017-02-28T10:22:26.936Z", + "new_balance":"5337.90", + "value":"-4.27" + } + }, + { + "id":"1a684ad8-824f-443e-af29-26285a986f7e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T11:50:30.817Z", + "completed":"2017-02-28T11:50:30.817Z", + "new_balance":"5334.46", + "value":"-3.44" + } + }, + { + "id":"db5c3974-24f9-4e8b-ae00-49d034c69ff9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T16:27:49.340Z", + "completed":"2017-03-01T16:27:49.340Z", + "new_balance":"5328.06", + "value":"-6.40" + } + }, + { + "id":"799d9630-7c8f-402a-a40d-132ba831a9ee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T02:35:36.615Z", + "completed":"2017-03-03T02:35:36.615Z", + "new_balance":"5324.62", + "value":"-3.44" + } + }, + { + "id":"7ae6c656-38a6-4735-9783-4ebcbeff8704", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T12:37:36.484Z", + "completed":"2017-03-03T12:37:36.484Z", + "new_balance":"5317.43", + "value":"-7.19" + } + }, + { + "id":"913896a8-fbfe-4cc0-851c-3fabc7c8188a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T19:17:11.327Z", + "completed":"2017-03-03T19:17:11.327Z", + "new_balance":"5259.20", + "value":"-58.23" + } + }, + { + "id":"9783b45b-5fdc-4a8c-a69d-c5e94c888df6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T21:37:16.453Z", + "completed":"2017-03-03T21:37:16.453Z", + "new_balance":"5256.74", + "value":"-2.46" + } + }, + { + "id":"57b9ba98-9489-44b1-987d-9c0172f42192", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T10:57:46.891Z", + "completed":"2017-03-05T10:57:46.891Z", + "new_balance":"5251.59", + "value":"-5.15" + } + }, + { + "id":"85034fa7-d693-4685-b223-517713494cde", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:16:59.837Z", + "completed":"2017-03-05T19:16:59.837Z", + "new_balance":"5246.70", + "value":"-4.89" + } + }, + { + "id":"1a81e0e3-89c3-4fe4-8688-5189f6484526", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T14:35:57.705Z", + "completed":"2017-03-07T14:35:57.705Z", + "new_balance":"5244.83", + "value":"-1.87" + } + }, + { + "id":"71d869bf-c148-450d-90f5-ef4408028e0e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T06:42:40.158Z", + "completed":"2017-03-09T06:42:40.158Z", + "new_balance":"5239.68", + "value":"-5.15" + } + }, + { + "id":"34497131-e6c6-4918-863e-80ce96a1402a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T20:54:27.907Z", + "completed":"2017-03-11T20:54:27.907Z", + "new_balance":"5238.10", + "value":"-1.58" + } + }, + { + "id":"bfa55bae-c9cb-443c-ac40-1e4709e4eb09", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T05:42:39.799Z", + "completed":"2017-03-13T05:42:39.799Z", + "new_balance":"5231.18", + "value":"-6.92" + } + }, + { + "id":"0185c1b1-edb1-4480-ad36-936e03eec3df", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T02:48:00.372Z", + "completed":"2017-03-14T02:48:00.372Z", + "new_balance":"5239.47", + "value":"8.29" + } + }, + { + "id":"88882969-0584-4696-bc45-378630941242", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:01:04.194Z", + "completed":"2017-03-14T08:01:04.194Z", + "new_balance":"5238.23", + "value":"-1.24" + } + }, + { + "id":"51a3cfda-7301-4bf6-b76e-58644dfc3112", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T14:29:58.797Z", + "completed":"2017-03-15T14:29:58.797Z", + "new_balance":"5233.96", + "value":"-4.27" + } + }, + { + "id":"226fe63f-aaf2-40dd-a4f6-1017e5e95a59", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T09:48:30.207Z", + "completed":"2017-03-26T09:48:30.207Z", + "new_balance":"5231.97", + "value":"-1.99" + } + }, + { + "id":"66c10da7-3696-4fcd-8e4a-0476ba6a2989", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T16:45:14.071Z", + "completed":"2017-03-26T16:45:14.071Z", + "new_balance":"5227.28", + "value":"-4.69" + } + }, + { + "id":"06960816-847f-4eca-b9e5-f54a2d364704", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T17:37:50.123Z", + "completed":"2017-03-26T17:37:50.123Z", + "new_balance":"5225.14", + "value":"-2.14" + } + }, + { + "id":"c4a22d11-66c9-4262-b1fa-abfb171c88ec", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T00:58:54.825Z", + "completed":"2017-03-27T00:58:54.825Z", + "new_balance":"5330.77", + "value":"105.63" + } + }, + { + "id":"0a1a55f2-9450-4c5b-a3a4-42fed6c52a66", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T11:50:29.452Z", + "completed":"2017-03-27T11:50:29.452Z", + "new_balance":"5325.62", + "value":"-5.15" + } + }, + { + "id":"c0ac7444-4fdf-485b-8378-9f5024e81783", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T23:04:25.426Z", + "completed":"2017-03-27T23:04:25.426Z", + "new_balance":"5321.20", + "value":"-4.42" + } + }, + { + "id":"ccc25f6c-fd8b-4d02-bc63-f6f73a362eed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T13:43:00.026Z", + "completed":"2017-03-28T13:43:00.026Z", + "new_balance":"5317.76", + "value":"-3.44" + } + }, + { + "id":"0db93cab-652d-4f02-a44a-2658228993d8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T06:57:43.640Z", + "completed":"2017-03-30T06:57:43.640Z", + "new_balance":"5313.49", + "value":"-4.27" + } + }, + { + "id":"5596f552-3bb0-4211-b657-618298b9e7b7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T01:33:31.398Z", + "completed":"2017-04-01T01:33:31.398Z", + "new_balance":"5255.26", + "value":"-58.23" + } + }, + { + "id":"2d450ae8-47ba-47c9-bc7e-4d01409ff422", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T03:34:21.157Z", + "completed":"2017-04-01T03:34:21.157Z", + "new_balance":"5251.82", + "value":"-3.44" + } + }, + { + "id":"f3fb210b-f40a-457a-af4f-9e88e3625335", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T07:46:28.383Z", + "completed":"2017-04-01T07:46:28.383Z", + "new_balance":"5249.36", + "value":"-2.46" + } + }, + { + "id":"ccc7d3d8-6917-4bef-88eb-582715e2475a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T17:27:06.514Z", + "completed":"2017-04-01T17:27:06.514Z", + "new_balance":"5242.96", + "value":"-6.40" + } + }, + { + "id":"ea38f1eb-ecf3-4ed4-b4d3-cb075352e949", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T23:10:35.278Z", + "completed":"2017-04-01T23:10:35.278Z", + "new_balance":"5235.77", + "value":"-7.19" + } + }, + { + "id":"19243586-6950-4540-9854-01b425dd0c2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T00:39:17.409Z", + "completed":"2017-04-05T00:39:17.409Z", + "new_balance":"5230.62", + "value":"-5.15" + } + }, + { + "id":"5b4009ad-4239-40e6-a329-8d2ff34e6140", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T09:29:28.022Z", + "completed":"2017-04-05T09:29:28.022Z", + "new_balance":"5226.95", + "value":"-3.67" + } + }, + { + "id":"43cdd6f2-1525-4865-a9f3-30e3bc47bb54", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T13:04:39.613Z", + "completed":"2017-04-05T13:04:39.613Z", + "new_balance":"5225.80", + "value":"-1.15" + } + }, + { + "id":"de5db98e-87c9-4962-b8c8-19be98d84d2f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T19:03:45.129Z", + "completed":"2017-04-05T19:03:45.129Z", + "new_balance":"5221.38", + "value":"-4.42" + } + }, + { + "id":"23b8c068-289f-4a77-bd6c-1bb95df64a10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T07:27:04.637Z", + "completed":"2017-04-07T07:27:04.637Z", + "new_balance":"5219.06", + "value":"-2.32" + } + }, + { + "id":"847a0819-7c0a-4e95-ba43-ba4f0342973d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T00:04:49.232Z", + "completed":"2017-04-09T00:04:49.232Z", + "new_balance":"5213.91", + "value":"-5.15" + } + }, + { + "id":"4905bb8d-36ac-4917-9e9a-7254c7bad902", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T00:08:22.950Z", + "completed":"2017-04-09T00:08:22.950Z", + "new_balance":"5211.53", + "value":"-2.38" + } + }, + { + "id":"032b8087-de1d-47a0-a9ac-c90300b73a7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T02:25:49.987Z", + "completed":"2017-04-10T02:25:49.987Z", + "new_balance":"5208.80", + "value":"-2.73" + } + }, + { + "id":"4000c3a6-ca32-495d-aba4-a29b654a113c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T08:49:37.399Z", + "completed":"2017-04-10T08:49:37.399Z", + "new_balance":"5204.33", + "value":"-4.47" + } + }, + { + "id":"bf79888f-3754-49ab-a524-442cd6af99d5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:05:42.807Z", + "completed":"2017-04-10T19:05:42.807Z", + "new_balance":"5201.87", + "value":"-2.46" + } + }, + { + "id":"3ecf6bb7-065d-42a1-a9f9-775a578a6941", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T20:59:28.555Z", + "completed":"2017-04-10T20:59:28.555Z", + "new_balance":"5199.24", + "value":"-2.63" + } + }, + { + "id":"aad57ec8-2994-4f5b-b4d3-8349e165777a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T03:53:40.964Z", + "completed":"2017-04-11T03:53:40.964Z", + "new_balance":"5196.82", + "value":"-2.42" + } + }, + { + "id":"e9b5c322-0c76-4e88-a2d6-d15ee34a64d3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:32:18.379Z", + "completed":"2017-04-11T04:32:18.379Z", + "new_balance":"5190.07", + "value":"-6.75" + } + }, + { + "id":"091ab726-22cf-4a58-8d68-c7e4b2ff22c4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T12:15:01.301Z", + "completed":"2017-04-11T12:15:01.301Z", + "new_balance":"5184.92", + "value":"-5.15" + } + }, + { + "id":"f121ec0e-89dd-4855-8e82-24b824a15dda", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T20:41:50.684Z", + "completed":"2017-04-11T20:41:50.684Z", + "new_balance":"5183.96", + "value":"-0.96" + } + }, + { + "id":"49a31d57-e2c3-4024-900f-bf379a57ccb6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T23:08:58.981Z", + "completed":"2017-04-11T23:08:58.981Z", + "new_balance":"5181.37", + "value":"-2.59" + } + }, + { + "id":"8655f2c3-5248-47ee-9bf7-586074813918", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T03:59:59.633Z", + "completed":"2017-04-21T03:59:59.633Z", + "new_balance":"5176.22", + "value":"-5.15" + } + }, + { + "id":"effd907f-32d5-447e-ba08-f1015246200c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T13:13:14.939Z", + "completed":"2017-04-23T13:13:14.939Z", + "new_balance":"5174.80", + "value":"-1.42" + } + }, + { + "id":"dfb8f303-7096-4f98-8f83-03dee569f684", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T17:00:10.672Z", + "completed":"2017-04-29T17:00:10.672Z", + "new_balance":"5169.99", + "value":"-4.81" + } + }, + { + "id":"93fdb11c-1d17-4d2a-acee-ab6c82ee5f7a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T21:44:59.296Z", + "completed":"2017-04-29T21:44:59.296Z", + "new_balance":"5275.62", + "value":"105.63" + } + }, + { + "id":"d10939d5-0593-493e-aba9-db28fac61329", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T22:44:48.359Z", + "completed":"2017-04-29T22:44:48.359Z", + "new_balance":"5272.18", + "value":"-3.44" + } + }, + { + "id":"8281b094-911b-4e0b-9c6b-5406ecce67ed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T10:32:21.780Z", + "completed":"2017-04-30T10:32:21.780Z", + "new_balance":"5267.91", + "value":"-4.27" + } + }, + { + "id":"109ace4f-d193-43c8-9513-0d6bae51a39f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T01:06:43.004Z", + "completed":"2017-05-02T01:06:43.004Z", + "new_balance":"5261.51", + "value":"-6.40" + } + }, + { + "id":"d0b1080a-53b4-4621-a9b3-6be7efca0ffd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T14:19:18.330Z", + "completed":"2017-05-02T14:19:18.330Z", + "new_balance":"5259.05", + "value":"-2.46" + } + }, + { + "id":"2778ae10-c51b-427a-8a15-f049b9b888b6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T14:57:22.632Z", + "completed":"2017-05-02T14:57:22.632Z", + "new_balance":"5200.82", + "value":"-58.23" + } + }, + { + "id":"3e5764bb-fe74-44db-823b-f6b305b80a64", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:25:19.272Z", + "completed":"2017-05-02T23:25:19.272Z", + "new_balance":"5193.63", + "value":"-7.19" + } + }, + { + "id":"9a0655e9-760b-47cd-8895-063c4fbe6610", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T18:21:11.346Z", + "completed":"2017-05-06T18:21:11.346Z", + "new_balance":"5189.21", + "value":"-4.42" + } + }, + { + "id":"dc232a6a-aba1-4958-81e0-f98680a84e00", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T04:33:44.585Z", + "completed":"2017-05-07T04:33:44.585Z", + "new_balance":"5186.89", + "value":"-2.32" + } + }, + { + "id":"e737f7f5-729a-4014-ad9c-a34a9e4d027c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T05:53:56.276Z", + "completed":"2017-05-07T05:53:56.276Z", + "new_balance":"5185.49", + "value":"-1.40" + } + }, + { + "id":"2fcc2548-5339-4aba-b10d-b8883443a75f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T13:29:59.497Z", + "completed":"2017-05-07T13:29:59.497Z", + "new_balance":"5182.46", + "value":"-3.03" + } + }, + { + "id":"dfe18d65-df31-46cf-974d-2c684aec95a6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T17:30:38.322Z", + "completed":"2017-05-07T17:30:38.322Z", + "new_balance":"5177.97", + "value":"-4.49" + } + }, + { + "id":"3fcd7eee-d36e-4432-b4da-77a9a696c86b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T00:12:46.177Z", + "completed":"2017-05-08T00:12:46.177Z", + "new_balance":"5173.73", + "value":"-4.24" + } + }, + { + "id":"d15209e0-b798-40e4-8e83-f5b7b1f9cd32", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T17:37:17.060Z", + "completed":"2017-05-09T17:37:17.060Z", + "new_balance":"5170.29", + "value":"-3.44" + } + }, + { + "id":"69514d91-7f0a-40d2-bc19-e911ff678dd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T01:49:02.297Z", + "completed":"2017-05-13T01:49:02.297Z", + "new_balance":"5165.14", + "value":"-5.15" + } + }, + { + "id":"fe04a918-aedd-4142-ad3d-129d345e2e6c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T14:35:48.907Z", + "completed":"2017-05-26T14:35:48.907Z", + "new_balance":"5159.99", + "value":"-5.15" + } + }, + { + "id":"23b4e9b6-cd17-4b17-8017-833b393dfacd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:15:09.233Z", + "completed":"2017-05-26T19:15:09.233Z", + "new_balance":"5158.59", + "value":"-1.40" + } + }, + { + "id":"2cd71059-6cf0-4fec-93fc-b661147d1efe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T10:02:57.543Z", + "completed":"2017-05-27T10:02:57.543Z", + "new_balance":"5153.78", + "value":"-4.81" + } + }, + { + "id":"77683593-0561-41a5-8a8b-3aaab4c7ccb0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T19:03:58.388Z", + "completed":"2017-05-27T19:03:58.388Z", + "new_balance":"5151.76", + "value":"-2.02" + } + }, + { + "id":"87f820a1-cdf1-4ce3-9e9a-de10d38ce031", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T02:30:54.882Z", + "completed":"2017-05-30T02:30:54.882Z", + "new_balance":"5147.49", + "value":"-4.27" + } + }, + { + "id":"966d1d3e-fc7c-49b7-9661-86a73a874038", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T06:04:52.405Z", + "completed":"2017-05-30T06:04:52.405Z", + "new_balance":"5253.12", + "value":"105.63" + } + }, + { + "id":"e4eab6b7-c49c-41fb-98f8-e374d2887955", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T19:44:53.748Z", + "completed":"2017-05-30T19:44:53.748Z", + "new_balance":"5249.68", + "value":"-3.44" + } + }, + { + "id":"18e81d9e-565d-4c05-ad76-79d194d00cf1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T02:22:44.792Z", + "completed":"2017-06-01T02:22:44.792Z", + "new_balance":"5244.79", + "value":"-4.89" + } + }, + { + "id":"bd38aaec-1d11-43a5-ae13-f56a65f4b6ae", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T05:14:13.857Z", + "completed":"2017-06-01T05:14:13.857Z", + "new_balance":"5242.92", + "value":"-1.87" + } + }, + { + "id":"ff068abe-7453-462b-92cd-40bc62ace680", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T05:19:58.305Z", + "completed":"2017-06-01T05:19:58.305Z", + "new_balance":"5237.77", + "value":"-5.15" + } + }, + { + "id":"96989270-1d5f-48f8-be5f-19017aa91279", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T11:55:29.447Z", + "completed":"2017-06-01T11:55:29.447Z", + "new_balance":"5232.62", + "value":"-5.15" + } + }, + { + "id":"f3784395-6ecd-4dc4-b8bd-808a788f084b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T16:08:05.830Z", + "completed":"2017-06-01T16:08:05.830Z", + "new_balance":"5225.43", + "value":"-7.19" + } + }, + { + "id":"4bfc17a7-51c5-4d12-abf4-8b878c5b7fef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T16:18:41.989Z", + "completed":"2017-06-01T16:18:41.989Z", + "new_balance":"5222.97", + "value":"-2.46" + } + }, + { + "id":"48f1a6a6-dda4-4de1-81e5-c2e2bdc750ad", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T16:18:55.477Z", + "completed":"2017-06-01T16:18:55.477Z", + "new_balance":"5219.53", + "value":"-3.44" + } + }, + { + "id":"f2206d16-0bfc-4b43-8b96-5a5306a506a1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T18:00:16.735Z", + "completed":"2017-06-01T18:00:16.735Z", + "new_balance":"5213.13", + "value":"-6.40" + } + }, + { + "id":"23614fe3-6a86-499b-9a4d-6f5bc9376de9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T23:31:45.457Z", + "completed":"2017-06-01T23:31:45.457Z", + "new_balance":"5154.90", + "value":"-58.23" + } + }, + { + "id":"d90792e1-92f3-47c3-a9c2-929fce45a96d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T02:16:32.411Z", + "completed":"2017-06-02T02:16:32.411Z", + "new_balance":"5153.66", + "value":"-1.24" + } + }, + { + "id":"a1461cb2-a439-40f2-b16e-9b5131f4069b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T10:42:21.698Z", + "completed":"2017-06-02T10:42:21.698Z", + "new_balance":"5152.08", + "value":"-1.58" + } + }, + { + "id":"839526a3-ca9a-485f-bd10-cdfa4cba6a7c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T12:22:44.305Z", + "completed":"2017-06-02T12:22:44.305Z", + "new_balance":"5145.16", + "value":"-6.92" + } + }, + { + "id":"877be687-af86-4878-9b4c-b1c595355ff4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T09:26:48.514Z", + "completed":"2017-06-04T09:26:48.514Z", + "new_balance":"5140.89", + "value":"-4.27" + } + }, + { + "id":"5b5aabcb-63b4-4f0c-9d34-4fb3a16bc38a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T10:18:35.446Z", + "completed":"2017-06-04T10:18:35.446Z", + "new_balance":"5136.20", + "value":"-4.69" + } + }, + { + "id":"9c4bde81-ccab-4c6a-ac2c-12b57f04bba6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T14:26:17.524Z", + "completed":"2017-06-04T14:26:17.524Z", + "new_balance":"5134.06", + "value":"-2.14" + } + }, + { + "id":"d51b9632-d7b1-479d-b11d-50f4efc52bf4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:27:21.620Z", + "completed":"2017-06-05T12:27:21.620Z", + "new_balance":"5132.07", + "value":"-1.99" + } + }, + { + "id":"432bc656-5cbd-44fe-ae79-1f1650225948", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T20:06:55.830Z", + "completed":"2017-06-05T20:06:55.830Z", + "new_balance":"5127.65", + "value":"-4.42" + } + }, + { + "id":"ebde008a-2b05-447d-8111-d8726146d6f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T01:02:04.477Z", + "completed":"2017-06-18T01:02:04.477Z", + "new_balance":"5122.50", + "value":"-5.15" + } + }, + { + "id":"1790131e-aa40-42d1-9080-29312d06b05f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T02:22:09.187Z", + "completed":"2017-06-30T02:22:09.187Z", + "new_balance":"5118.23", + "value":"-4.27" + } + }, + { + "id":"c01c2a07-afa7-4f1f-9281-f1a322d2b563", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T02:52:24.878Z", + "completed":"2017-06-30T02:52:24.878Z", + "new_balance":"5223.86", + "value":"105.63" + } + }, + { + "id":"27458a2a-2645-4a63-8579-c4be9e816343", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T07:54:59.227Z", + "completed":"2017-06-30T07:54:59.227Z", + "new_balance":"5220.42", + "value":"-3.44" + } + }, + { + "id":"957552e0-7d72-4dac-a346-55f8fe9a078d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T22:58:17.626Z", + "completed":"2017-06-30T22:58:17.626Z", + "new_balance":"5217.31", + "value":"-3.11" + } + }, + { + "id":"c27f39b6-985c-41c3-8bdc-5dfd1ad06a0e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T16:54:23.356Z", + "completed":"2017-07-01T16:54:23.356Z", + "new_balance":"5210.91", + "value":"-6.40" + } + }, + { + "id":"f5e03be6-6cce-45d4-9a35-a53ad95befc8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T02:30:17.080Z", + "completed":"2017-07-03T02:30:17.080Z", + "new_balance":"5208.45", + "value":"-2.46" + } + }, + { + "id":"fa9079b6-f4ff-422c-ac39-838e603a41b8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T12:19:48.833Z", + "completed":"2017-07-03T12:19:48.833Z", + "new_balance":"5205.01", + "value":"-3.44" + } + }, + { + "id":"1bda612c-c2f1-47ac-9d6d-412f49a997a1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T19:31:42.354Z", + "completed":"2017-07-03T19:31:42.354Z", + "new_balance":"5197.82", + "value":"-7.19" + } + }, + { + "id":"b5729ac7-e067-4d63-bd00-99d39df5893e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T20:12:57.297Z", + "completed":"2017-07-03T20:12:57.297Z", + "new_balance":"5139.59", + "value":"-58.23" + } + }, + { + "id":"b56010b6-6610-4a51-aa2b-91d84653f8cc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T06:38:39.055Z", + "completed":"2017-07-05T06:38:39.055Z", + "new_balance":"5135.17", + "value":"-4.42" + } + }, + { + "id":"53c24954-b38e-4728-a8fe-bc9b1de35e4e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T17:35:42.371Z", + "completed":"2017-07-05T17:35:42.371Z", + "new_balance":"5130.02", + "value":"-5.15" + } + }, + { + "id":"2c60f3b6-0b13-4fbc-ae9d-9b9b24be7261", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T23:35:00.364Z", + "completed":"2017-07-05T23:35:00.364Z", + "new_balance":"5128.87", + "value":"-1.15" + } + }, + { + "id":"0d3826e3-da3b-4658-967c-616eb7dc3c2e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T08:14:50.128Z", + "completed":"2017-07-06T08:14:50.128Z", + "new_balance":"5126.55", + "value":"-2.32" + } + }, + { + "id":"7b9ebffc-bab4-48f8-84ef-8cef4575a051", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T11:52:51.058Z", + "completed":"2017-07-06T11:52:51.058Z", + "new_balance":"5122.88", + "value":"-3.67" + } + }, + { + "id":"e1cfb0ea-c874-44dc-b6d5-979c7893c72b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T16:37:41.698Z", + "completed":"2017-07-07T16:37:41.698Z", + "new_balance":"5118.41", + "value":"-4.47" + } + }, + { + "id":"904ffe37-9fe4-4877-b2ff-f7258e895b14", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T09:21:43.979Z", + "completed":"2017-07-10T09:21:43.979Z", + "new_balance":"5116.03", + "value":"-2.38" + } + }, + { + "id":"5bdbe14a-03cd-4933-850f-3d26dc494219", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T16:47:03.440Z", + "completed":"2017-07-10T16:47:03.440Z", + "new_balance":"5110.88", + "value":"-5.15" + } + }, + { + "id":"51f7627e-2ae8-433c-996b-002ac51dacce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:59:27.399Z", + "completed":"2017-07-12T08:59:27.399Z", + "new_balance":"5108.15", + "value":"-2.73" + } + }, + { + "id":"d6fa3a0a-d9f9-4013-bf80-f385e2ea9188", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T12:36:58.427Z", + "completed":"2017-07-12T12:36:58.427Z", + "new_balance":"5105.69", + "value":"-2.46" + } + }, + { + "id":"1b3aa5df-d0e9-4a74-b5ad-952e1f30c41c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T22:40:05.814Z", + "completed":"2017-07-12T22:40:05.814Z", + "new_balance":"5101.22", + "value":"-4.47" + } + }, + { + "id":"937d3a4d-15eb-4ea9-97e5-925b73899e4e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T16:48:45.733Z", + "completed":"2017-07-15T16:48:45.733Z", + "new_balance":"5098.59", + "value":"-2.63" + } + }, + { + "id":"6fae8b6e-6952-41d7-82c0-595a4e01594c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T07:46:20.784Z", + "completed":"2017-07-16T07:46:20.784Z", + "new_balance":"5093.44", + "value":"-5.15" + } + }, + { + "id":"55acb51a-270a-477b-a4e9-edd5b307422e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T19:05:11.717Z", + "completed":"2017-07-16T19:05:11.717Z", + "new_balance":"5092.48", + "value":"-0.96" + } + }, + { + "id":"e3b06e35-8254-4d32-b90d-f80e905d2a80", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T07:25:30.042Z", + "completed":"2017-07-17T07:25:30.042Z", + "new_balance":"5085.73", + "value":"-6.75" + } + }, + { + "id":"4d3a73eb-8eb8-4954-bfd0-5d5e039fba53", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T19:45:05.128Z", + "completed":"2017-07-17T19:45:05.128Z", + "new_balance":"5083.14", + "value":"-2.59" + } + }, + { + "id":"488b2e76-6f4c-4767-8d84-93f1bdc6b703", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T13:58:25.737Z", + "completed":"2017-07-19T13:58:25.737Z", + "new_balance":"5080.72", + "value":"-2.42" + } + }, + { + "id":"68e4776d-14b9-4dbd-8db1-badf9b148fd5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T23:19:22.286Z", + "completed":"2017-07-20T23:19:22.286Z", + "new_balance":"5075.57", + "value":"-5.15" + } + }, + { + "id":"6e212ce0-a54a-423d-8097-bd214c06d47b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T07:26:43.200Z", + "completed":"2017-07-23T07:26:43.200Z", + "new_balance":"5074.15", + "value":"-1.42" + } + }, + { + "id":"9404b1f5-be29-4e80-848c-ca2e8c152d6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T17:48:59.432Z", + "completed":"2017-07-26T17:48:59.432Z", + "new_balance":"5069.34", + "value":"-4.81" + } + }, + { + "id":"cba7d91d-8420-4179-b1ed-ef1cca061a46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T02:55:01.677Z", + "completed":"2017-07-27T02:55:01.677Z", + "new_balance":"5174.97", + "value":"105.63" + } + }, + { + "id":"a867d14c-99cb-4a76-993b-6d8361118874", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:12:34.977Z", + "completed":"2017-07-28T02:12:34.977Z", + "new_balance":"5171.53", + "value":"-3.44" + } + }, + { + "id":"95dec363-0c2a-4c35-bf4f-c6d38c46f577", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T20:14:12.839Z", + "completed":"2017-07-30T20:14:12.839Z", + "new_balance":"5167.26", + "value":"-4.27" + } + }, + { + "id":"85943691-3f2b-4786-ba5e-1a495919e3bf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T14:23:11.857Z", + "completed":"2017-08-01T14:23:11.857Z", + "new_balance":"5160.86", + "value":"-6.40" + } + }, + { + "id":"64256474-1540-4356-ac1e-8664933421a2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T02:02:08.406Z", + "completed":"2017-08-03T02:02:08.406Z", + "new_balance":"5157.42", + "value":"-3.44" + } + }, + { + "id":"ff1dc3c0-6643-4414-8555-0e80f597b743", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T08:29:04.593Z", + "completed":"2017-08-03T08:29:04.593Z", + "new_balance":"5154.96", + "value":"-2.46" + } + }, + { + "id":"63672cfc-d11e-4dad-a7ac-6c481d99fa4d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T15:24:56.556Z", + "completed":"2017-08-03T15:24:56.556Z", + "new_balance":"5096.73", + "value":"-58.23" + } + }, + { + "id":"80f5d848-abcf-4827-a103-fbb08ebb827c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T22:31:04.993Z", + "completed":"2017-08-03T22:31:04.993Z", + "new_balance":"5089.54", + "value":"-7.19" + } + }, + { + "id":"0fe7c093-c00a-4c03-9184-a696f8d04203", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T13:09:02.524Z", + "completed":"2017-08-08T13:09:02.524Z", + "new_balance":"5084.39", + "value":"-5.15" + } + }, + { + "id":"1c4d5ca2-d41c-40b0-8e8c-59488700e66e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:26:28.706Z", + "completed":"2017-08-08T16:26:28.706Z", + "new_balance":"5079.97", + "value":"-4.42" + } + }, + { + "id":"12241021-fe1e-48c2-8846-dd37924d926b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T13:32:45.905Z", + "completed":"2017-08-11T13:32:45.905Z", + "new_balance":"5081.08", + "value":"1.11" + } + }, + { + "id":"54b1ee70-9d25-4eb9-960f-09c74cf5d6f6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T07:12:39.129Z", + "completed":"2017-08-13T07:12:39.129Z", + "new_balance":"5078.76", + "value":"-2.32" + } + }, + { + "id":"d9536b96-4042-4922-bfd8-f793b24eb379", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T01:48:08.937Z", + "completed":"2017-08-14T01:48:08.937Z", + "new_balance":"5075.73", + "value":"-3.03" + } + }, + { + "id":"f62d0518-e9c4-4223-a5e8-c6bbff43eeb1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T14:24:06.708Z", + "completed":"2017-08-17T14:24:06.708Z", + "new_balance":"5074.33", + "value":"-1.40" + } + }, + { + "id":"6917918b-d78a-49af-a15d-9126e5327eaa", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T22:35:23.985Z", + "completed":"2017-08-21T22:35:23.985Z", + "new_balance":"5069.84", + "value":"-4.49" + } + }, + { + "id":"9bc4654f-3124-446e-9d37-09fc44d0788c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T12:07:55.419Z", + "completed":"2017-08-23T12:07:55.419Z", + "new_balance":"5064.69", + "value":"-5.15" + } + }, + { + "id":"1edb7112-b203-4579-9211-d73c34cdea10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T18:35:21.670Z", + "completed":"2017-08-23T18:35:21.670Z", + "new_balance":"5060.45", + "value":"-4.24" + } + }, + { + "id":"e8a03fe1-aab0-40aa-bbf2-0dcdd255646c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T05:58:56.361Z", + "completed":"2017-08-24T05:58:56.361Z", + "new_balance":"5059.05", + "value":"-1.40" + } + }, + { + "id":"efb1e89c-bfc8-404e-a3e9-47dbb7a1aca5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T01:24:17.923Z", + "completed":"2017-08-27T01:24:17.923Z", + "new_balance":"5057.03", + "value":"-2.02" + } + }, + { + "id":"f47d30a5-462b-45d9-ab42-030e0188ee3a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T07:30:03.145Z", + "completed":"2017-08-27T07:30:03.145Z", + "new_balance":"5162.66", + "value":"105.63" + } + }, + { + "id":"5d23c235-6058-49cf-bcf2-c3539b0f31e6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T14:06:54.158Z", + "completed":"2017-08-27T14:06:54.158Z", + "new_balance":"5157.85", + "value":"-4.81" + } + }, + { + "id":"b2e7870d-bdab-40b9-9e73-25d36804ad5b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T16:37:28.851Z", + "completed":"2017-08-28T16:37:28.851Z", + "new_balance":"5154.41", + "value":"-3.44" + } + }, + { + "id":"0855d07b-5a0f-43b2-be12-0431e2f3d4b1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T15:16:29.093Z", + "completed":"2017-08-30T15:16:29.093Z", + "new_balance":"5150.14", + "value":"-4.27" + } + }, + { + "id":"8626f88d-e35f-43a2-a2fc-175726b5519b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T16:42:40.060Z", + "completed":"2017-09-01T16:42:40.060Z", + "new_balance":"5143.74", + "value":"-6.40" + } + }, + { + "id":"3f3a9b78-a7f8-416c-81e2-a222edde233b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T09:33:18.753Z", + "completed":"2017-09-03T09:33:18.753Z", + "new_balance":"5141.28", + "value":"-2.46" + } + }, + { + "id":"79ef71e9-2755-4df0-ad32-3e75dd8a6dcf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T18:00:44.171Z", + "completed":"2017-09-03T18:00:44.171Z", + "new_balance":"5137.84", + "value":"-3.44" + } + }, + { + "id":"d3c3935d-3725-4a7b-985a-ffa29c1e2de2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T20:46:30.398Z", + "completed":"2017-09-03T20:46:30.398Z", + "new_balance":"5130.65", + "value":"-7.19" + } + }, + { + "id":"7eb0a8dc-1d70-4906-93e6-1d73b2262bd7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T23:44:55.840Z", + "completed":"2017-09-03T23:44:55.840Z", + "new_balance":"5072.42", + "value":"-58.23" + } + }, + { + "id":"58744083-236a-4385-96b3-4c4ec2575f1c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T16:11:11.939Z", + "completed":"2017-09-05T16:11:11.939Z", + "new_balance":"5067.27", + "value":"-5.15" + } + }, + { + "id":"303aa5e3-895e-49e5-b5cd-d03546de5d4b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T23:05:25.301Z", + "completed":"2017-09-05T23:05:25.301Z", + "new_balance":"5062.38", + "value":"-4.89" + } + }, + { + "id":"fdba926c-510a-410c-8a5d-a4ab67d9ef2d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T02:33:48.408Z", + "completed":"2017-09-07T02:33:48.408Z", + "new_balance":"5060.51", + "value":"-1.87" + } + }, + { + "id":"a9e906da-462a-49d7-9488-13265f4ce8f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T15:24:34.779Z", + "completed":"2017-09-09T15:24:34.779Z", + "new_balance":"5055.36", + "value":"-5.15" + } + }, + { + "id":"62b98985-b19c-4c9c-ace8-cdc0117b48ba", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T13:38:35.262Z", + "completed":"2017-09-11T13:38:35.262Z", + "new_balance":"5053.78", + "value":"-1.58" + } + }, + { + "id":"f648fdbf-eb3a-4142-b68f-48be4a080b2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T06:10:54.776Z", + "completed":"2017-09-13T06:10:54.776Z", + "new_balance":"5046.86", + "value":"-6.92" + } + }, + { + "id":"7746d54d-e6b8-40a3-bcc0-a614ce51bfd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T08:11:26.917Z", + "completed":"2017-09-14T08:11:26.917Z", + "new_balance":"5055.15", + "value":"8.29" + } + }, + { + "id":"575a51c8-57a6-4107-a26d-f2a465df0a02", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T23:38:17.602Z", + "completed":"2017-09-14T23:38:17.602Z", + "new_balance":"5053.91", + "value":"-1.24" + } + }, + { + "id":"99e150ef-9083-4a8d-9906-66098e43b716", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T02:45:52.746Z", + "completed":"2017-09-15T02:45:52.746Z", + "new_balance":"5049.64", + "value":"-4.27" + } + }, + { + "id":"eb349d7a-bf42-4bce-a0f7-1255f71c4f1b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T01:56:36.588Z", + "completed":"2017-09-26T01:56:36.588Z", + "new_balance":"5044.95", + "value":"-4.69" + } + }, + { + "id":"f33400a9-1561-4aba-a4d5-7ffba57b4fe6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T06:52:41.216Z", + "completed":"2017-09-26T06:52:41.216Z", + "new_balance":"5042.96", + "value":"-1.99" + } + }, + { + "id":"b91ce68e-af8a-4b0b-a122-349420940c83", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T17:46:36.431Z", + "completed":"2017-09-26T17:46:36.431Z", + "new_balance":"5040.82", + "value":"-2.14" + } + }, + { + "id":"38615167-6574-4ed5-91e9-92279260728a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T00:58:45.231Z", + "completed":"2017-09-27T00:58:45.231Z", + "new_balance":"5036.40", + "value":"-4.42" + } + }, + { + "id":"7f0fa8dd-54f3-4528-9623-02685dce565a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T04:27:43.397Z", + "completed":"2017-09-27T04:27:43.397Z", + "new_balance":"5031.25", + "value":"-5.15" + } + }, + { + "id":"c7d2c86b-9fa4-4b01-954e-8dcd2c87de21", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T08:54:38.317Z", + "completed":"2017-09-27T08:54:38.317Z", + "new_balance":"5136.88", + "value":"105.63" + } + }, + { + "id":"91250b75-9ad8-475a-83da-7e8c59f709b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T11:43:11.131Z", + "completed":"2017-09-28T11:43:11.131Z", + "new_balance":"5133.44", + "value":"-3.44" + } + }, + { + "id":"f8103dfb-f10b-46ce-8000-efc1420cbe43", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T18:30:48.431Z", + "completed":"2017-09-30T18:30:48.431Z", + "new_balance":"5129.17", + "value":"-4.27" + } + }, + { + "id":"c587b8f0-943e-46e2-9dde-6163a7df9ef4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T01:43:26.850Z", + "completed":"2017-10-01T01:43:26.850Z", + "new_balance":"5121.98", + "value":"-7.19" + } + }, + { + "id":"8f677bd8-db3a-4c2a-bff3-a92e778d14cc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T01:50:55.860Z", + "completed":"2017-10-01T01:50:55.860Z", + "new_balance":"5119.52", + "value":"-2.46" + } + }, + { + "id":"b509cc95-71df-41db-a0a5-529ef5b2d174", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T02:50:50.155Z", + "completed":"2017-10-01T02:50:50.155Z", + "new_balance":"5061.29", + "value":"-58.23" + } + }, + { + "id":"f73ba140-ea2d-405b-b608-1b83ebb52e65", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T09:18:33.953Z", + "completed":"2017-10-01T09:18:33.953Z", + "new_balance":"5057.85", + "value":"-3.44" + } + }, + { + "id":"cd41e926-aa89-43ec-a024-c05da30bf40b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T18:39:47.624Z", + "completed":"2017-10-01T18:39:47.624Z", + "new_balance":"5051.45", + "value":"-6.40" + } + }, + { + "id":"02dc8ff0-0b67-4295-af68-8bd2afbb6ea5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T05:49:58.782Z", + "completed":"2017-10-05T05:49:58.782Z", + "new_balance":"5047.03", + "value":"-4.42" + } + }, + { + "id":"dbf011e1-2251-43da-b36e-b7470a0ea712", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T11:59:08.314Z", + "completed":"2017-10-05T11:59:08.314Z", + "new_balance":"5043.36", + "value":"-3.67" + } + }, + { + "id":"510fba81-17a6-4400-b4de-78d4dc10ed6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T14:24:31.105Z", + "completed":"2017-10-05T14:24:31.105Z", + "new_balance":"5038.21", + "value":"-5.15" + } + }, + { + "id":"eae766f1-5d46-4a8b-a2d1-c8a3942221c9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T15:08:39.323Z", + "completed":"2017-10-05T15:08:39.323Z", + "new_balance":"5037.06", + "value":"-1.15" + } + }, + { + "id":"4f9db7d9-a447-4f88-8ea7-4ef53ae92c63", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T03:01:30.586Z", + "completed":"2017-10-07T03:01:30.586Z", + "new_balance":"5034.74", + "value":"-2.32" + } + }, + { + "id":"4ebd8a89-0395-4a05-a242-7d6d1db6945e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T09:10:14.624Z", + "completed":"2017-10-09T09:10:14.624Z", + "new_balance":"5029.59", + "value":"-5.15" + } + }, + { + "id":"7f6e3254-738b-43cd-9352-975f8a5b3771", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T14:51:20.846Z", + "completed":"2017-10-09T14:51:20.846Z", + "new_balance":"5027.21", + "value":"-2.38" + } + }, + { + "id":"15d6a683-5a2b-416d-a4ce-70a11347da6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T11:53:43.345Z", + "completed":"2017-10-10T11:53:43.345Z", + "new_balance":"5022.74", + "value":"-4.47" + } + }, + { + "id":"43b34caf-df4d-4878-9848-708c6c9f00fc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T16:49:15.078Z", + "completed":"2017-10-10T16:49:15.078Z", + "new_balance":"5020.28", + "value":"-2.46" + } + }, + { + "id":"88e03ad6-07cf-4465-abb3-4896475fd3d9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:36:24.174Z", + "completed":"2017-10-10T23:36:24.174Z", + "new_balance":"5017.55", + "value":"-2.73" + } + }, + { + "id":"8d9a91e9-6ffc-4330-be36-5d6699acf3ce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:47:06.598Z", + "completed":"2017-10-10T23:47:06.598Z", + "new_balance":"5014.92", + "value":"-2.63" + } + }, + { + "id":"7682fc09-184a-4249-8ab4-1e153c538677", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T01:50:59.418Z", + "completed":"2017-10-11T01:50:59.418Z", + "new_balance":"5012.50", + "value":"-2.42" + } + }, + { + "id":"70ea3cd0-178d-477b-a949-0065efc3a0e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T05:19:05.584Z", + "completed":"2017-10-11T05:19:05.584Z", + "new_balance":"5005.75", + "value":"-6.75" + } + }, + { + "id":"648c1e3d-02cd-4531-915f-e930b8447cc6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:16:54.328Z", + "completed":"2017-10-11T06:16:54.328Z", + "new_balance":"5004.79", + "value":"-0.96" + } + }, + { + "id":"cd1054a1-5e22-48d1-b0a1-c0a74d56b594", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T07:29:55.388Z", + "completed":"2017-10-11T07:29:55.388Z", + "new_balance":"5002.20", + "value":"-2.59" + } + }, + { + "id":"905dd898-b5aa-4900-8c1c-dfc04aa290fe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T14:05:44.695Z", + "completed":"2017-10-11T14:05:44.695Z", + "new_balance":"4997.05", + "value":"-5.15" + } + }, + { + "id":"070aacbd-23c6-4932-86a7-6d47006b0dca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T17:03:51.494Z", + "completed":"2017-10-21T17:03:51.494Z", + "new_balance":"4991.90", + "value":"-5.15" + } + }, + { + "id":"f07afed5-25d8-43f6-9340-59b41b9ee744", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T21:24:02.361Z", + "completed":"2017-10-23T21:24:02.361Z", + "new_balance":"4990.48", + "value":"-1.42" + } + }, + { + "id":"f1a5731b-ca7d-4f8a-9263-c42b9d939a3f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T05:21:14.141Z", + "completed":"2017-10-29T05:21:14.141Z", + "new_balance":"4985.67", + "value":"-4.81" + } + }, + { + "id":"54c0a4f3-4039-422d-b72c-d11a4608f986", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T14:32:06.141Z", + "completed":"2017-10-29T14:32:06.141Z", + "new_balance":"5091.30", + "value":"105.63" + } + }, + { + "id":"6f9f09d7-c03c-4734-b69a-ec8ccc84e9c3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T18:36:30.444Z", + "completed":"2017-10-29T18:36:30.444Z", + "new_balance":"5087.86", + "value":"-3.44" + } + }, + { + "id":"46fbcbfb-973f-4c76-9541-e08d27e418d4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T23:46:18.446Z", + "completed":"2017-10-30T23:46:18.446Z", + "new_balance":"5083.59", + "value":"-4.27" + } + }, + { + "id":"7970a04f-96bc-4a9a-8ba7-452f31dd29f7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T04:04:53.108Z", + "completed":"2017-11-02T04:04:53.108Z", + "new_balance":"5076.40", + "value":"-7.19" + } + }, + { + "id":"e31fbf7b-3885-4c7e-900a-326a72dab9e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T06:41:07.270Z", + "completed":"2017-11-02T06:41:07.270Z", + "new_balance":"5070.00", + "value":"-6.40" + } + }, + { + "id":"6c060280-a4fc-4f57-8bad-a08cf78e8f85", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:21:59.070Z", + "completed":"2017-11-02T14:21:59.070Z", + "new_balance":"5011.77", + "value":"-58.23" + } + }, + { + "id":"2342c8a2-550a-46f0-86a8-4668d6994b96", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T21:57:47.580Z", + "completed":"2017-11-02T21:57:47.580Z", + "new_balance":"5009.31", + "value":"-2.46" + } + }, + { + "id":"121f725c-2b10-4749-898d-98253efcc520", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T18:03:21.003Z", + "completed":"2017-11-06T18:03:21.003Z", + "new_balance":"5004.89", + "value":"-4.42" + } + }, + { + "id":"819d3bce-37f0-4511-b0d7-af2070caa177", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T02:44:22.974Z", + "completed":"2017-11-07T02:44:22.974Z", + "new_balance":"5000.40", + "value":"-4.49" + } + }, + { + "id":"4925c472-08a5-4df6-82fb-b85cc7848f6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T05:00:29.768Z", + "completed":"2017-11-07T05:00:29.768Z", + "new_balance":"4998.08", + "value":"-2.32" + } + }, + { + "id":"c4d039b5-76b7-4074-abbd-38c5ff7f73f6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T15:19:27.466Z", + "completed":"2017-11-07T15:19:27.466Z", + "new_balance":"4996.68", + "value":"-1.40" + } + }, + { + "id":"aa398d9d-92f0-4f61-be4e-029dc0976232", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T19:53:44.260Z", + "completed":"2017-11-07T19:53:44.260Z", + "new_balance":"4993.65", + "value":"-3.03" + } + }, + { + "id":"2212ccb3-cade-40bd-b988-c353076ba97f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T07:20:48.765Z", + "completed":"2017-11-08T07:20:48.765Z", + "new_balance":"4989.41", + "value":"-4.24" + } + }, + { + "id":"fa13bbab-d2d6-46c2-bab9-13031ac6e3fe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T23:13:03.940Z", + "completed":"2017-11-09T23:13:03.940Z", + "new_balance":"4985.97", + "value":"-3.44" + } + }, + { + "id":"c46ca076-4f95-42b6-a6d0-1bdb360e63bd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T03:01:07.249Z", + "completed":"2017-11-13T03:01:07.249Z", + "new_balance":"4980.82", + "value":"-5.15" + } + }, + { + "id":"c7211d6a-e159-4aa1-a9fc-19d40e9c3143", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T08:50:45.726Z", + "completed":"2017-11-26T08:50:45.726Z", + "new_balance":"4975.67", + "value":"-5.15" + } + }, + { + "id":"7e0333fa-e528-4cef-a160-5da31a415136", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T21:23:53.240Z", + "completed":"2017-11-26T21:23:53.240Z", + "new_balance":"4974.27", + "value":"-1.40" + } + }, + { + "id":"242ed7e5-63f3-4688-958a-980bf4e67b84", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T03:06:15.877Z", + "completed":"2017-11-27T03:06:15.877Z", + "new_balance":"4972.25", + "value":"-2.02" + } + }, + { + "id":"a898f3aa-1e70-4e40-9d0c-f3b62916423d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T21:25:14.228Z", + "completed":"2017-11-27T21:25:14.228Z", + "new_balance":"4967.44", + "value":"-4.81" + } + }, + { + "id":"7f947656-9121-482b-acc5-ae6084130c8c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T00:30:57.199Z", + "completed":"2017-11-30T00:30:57.199Z", + "new_balance":"4963.17", + "value":"-4.27" + } + }, + { + "id":"4516675b-a06a-4747-800f-f138b71381d4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T01:30:44.968Z", + "completed":"2017-11-30T01:30:44.968Z", + "new_balance":"5068.80", + "value":"105.63" + } + }, + { + "id":"40045577-a9d3-4ec7-a818-f933eb1d4967", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T12:09:44.989Z", + "completed":"2017-11-30T12:09:44.989Z", + "new_balance":"5065.36", + "value":"-3.44" + } + }, + { + "id":"e8c83a05-a789-4cf8-a4ff-164732de96a2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T01:26:59.267Z", + "completed":"2017-12-01T01:26:59.267Z", + "new_balance":"5062.90", + "value":"-2.46" + } + }, + { + "id":"0fb99cec-0801-4bd8-80e5-23d8840b80d6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T02:15:00.095Z", + "completed":"2017-12-01T02:15:00.095Z", + "new_balance":"5057.75", + "value":"-5.15" + } + }, + { + "id":"b5e5601a-7166-4811-b10e-08f86a3f0ffa", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T12:06:01.224Z", + "completed":"2017-12-01T12:06:01.224Z", + "new_balance":"5051.35", + "value":"-6.40" + } + }, + { + "id":"5ea15a18-2a35-40fa-8219-a75ee459de2a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T12:08:11.240Z", + "completed":"2017-12-01T12:08:11.240Z", + "new_balance":"5047.91", + "value":"-3.44" + } + }, + { + "id":"279e5043-42a2-4562-9d2d-7878024a8f7f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T13:15:30.193Z", + "completed":"2017-12-01T13:15:30.193Z", + "new_balance":"5043.02", + "value":"-4.89" + } + }, + { + "id":"1b40c080-641e-4cb8-b9ee-0045a59b5909", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T16:24:13.357Z", + "completed":"2017-12-01T16:24:13.357Z", + "new_balance":"5037.87", + "value":"-5.15" + } + }, + { + "id":"99f18546-c3b7-4fa4-b197-e63c15c6662e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T16:49:10.736Z", + "completed":"2017-12-01T16:49:10.736Z", + "new_balance":"5030.68", + "value":"-7.19" + } + }, + { + "id":"cb6b4fae-12c7-4c01-ad0c-84081ae43c1d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T17:18:11.689Z", + "completed":"2017-12-01T17:18:11.689Z", + "new_balance":"4972.45", + "value":"-58.23" + } + }, + { + "id":"be95da90-9f1a-4f26-9f18-cda1ef322e74", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T19:37:27.581Z", + "completed":"2017-12-01T19:37:27.581Z", + "new_balance":"4970.58", + "value":"-1.87" + } + }, + { + "id":"93b781c5-19c5-4388-b920-cc28e41bf175", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T15:33:08.731Z", + "completed":"2017-12-02T15:33:08.731Z", + "new_balance":"4969.34", + "value":"-1.24" + } + }, + { + "id":"e6424fe0-7cf1-4d76-a6ed-b76bc6bb0101", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:22:36.164Z", + "completed":"2017-12-02T17:22:36.164Z", + "new_balance":"4962.42", + "value":"-6.92" + } + }, + { + "id":"ed52e84c-18d3-42a2-8bc9-db211a7bcb9d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T22:05:24.226Z", + "completed":"2017-12-02T22:05:24.226Z", + "new_balance":"4960.84", + "value":"-1.58" + } + }, + { + "id":"29fa346e-a1ef-4be9-9825-31cb93b941c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T10:58:32.918Z", + "completed":"2017-12-04T10:58:32.918Z", + "new_balance":"4956.57", + "value":"-4.27" + } + }, + { + "id":"e7d09e49-8f58-4fcf-9088-d6014a49473b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T11:17:30.453Z", + "completed":"2017-12-04T11:17:30.453Z", + "new_balance":"4951.88", + "value":"-4.69" + } + }, + { + "id":"973837a8-953c-4470-a32b-27aba872844b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:15:43.353Z", + "completed":"2017-12-04T17:15:43.353Z", + "new_balance":"4949.74", + "value":"-2.14" + } + }, + { + "id":"41b9b575-6342-4836-9023-d744f4f37920", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T02:56:33.789Z", + "completed":"2017-12-05T02:56:33.789Z", + "new_balance":"4947.75", + "value":"-1.99" + } + }, + { + "id":"02f35fea-122c-42e3-8456-532a277f8780", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T03:29:00.160Z", + "completed":"2017-12-05T03:29:00.160Z", + "new_balance":"4943.33", + "value":"-4.42" + } + }, + { + "id":"33846831-40a0-4ef8-9fbd-1351c5a06e51", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T18:05:18.175Z", + "completed":"2017-12-18T18:05:18.175Z", + "new_balance":"4938.18", + "value":"-5.15" + } + }, + { + "id":"c628bd28-6fcc-450a-b16c-4718092e8318", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T01:54:20.000Z", + "completed":"2017-12-30T01:54:20.000Z", + "new_balance":"4933.91", + "value":"-4.27" + } + }, + { + "id":"00a64e04-a91f-448e-a52b-d58e6e78b5f1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T06:21:17.646Z", + "completed":"2017-12-30T06:21:17.646Z", + "new_balance":"5039.54", + "value":"105.63" + } + }, + { + "id":"ed169b06-c098-45e0-8527-d9ac2cde1a71", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T07:20:15.487Z", + "completed":"2017-12-30T07:20:15.487Z", + "new_balance":"5036.10", + "value":"-3.44" + } + }, + { + "id":"788d5bc5-e171-4cb5-8d55-add593efedd8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T16:35:45.475Z", + "completed":"2017-12-30T16:35:45.475Z", + "new_balance":"5032.99", + "value":"-3.11" + } + }, + { + "id":"58a6dff4-e80f-497b-bd6a-b8e251400dfc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T05:32:18.425Z", + "completed":"2016-01-01T05:32:18.425Z", + "new_balance":"7146.47", + "value":"-61.87" + } + }, + { + "id":"642f369c-5818-492e-8e9d-81908eb863f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:36:46.078Z", + "completed":"2016-01-01T19:36:46.078Z", + "new_balance":"7084.60", + "value":"-61.87" + } + }, + { + "id":"187c6b84-395a-441d-919e-bae08d1b176b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T02:23:54.159Z", + "completed":"2016-01-03T02:23:54.159Z", + "new_balance":"7010.67", + "value":"-73.93" + } + }, + { + "id":"98ff04b5-d909-4332-9284-b68fa4f8bf53", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T06:34:06.026Z", + "completed":"2016-01-03T06:34:06.026Z", + "new_balance":"6976.24", + "value":"-34.43" + } + }, + { + "id":"96ba61e9-6cb6-4889-91fe-069510e0f772", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T10:06:08.938Z", + "completed":"2016-01-03T10:06:08.938Z", + "new_balance":"6951.68", + "value":"-24.56" + } + }, + { + "id":"531b19e3-ae68-47ae-aebf-3d5b47184f34", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T23:47:28.736Z", + "completed":"2016-01-03T23:47:28.736Z", + "new_balance":"6441.14", + "value":"-510.54" + } + }, + { + "id":"9d1beccd-5ddb-415f-858c-53eeeafcedde", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T12:37:14.117Z", + "completed":"2016-01-05T12:37:14.117Z", + "new_balance":"6387.96", + "value":"-53.18" + } + }, + { + "id":"f94fdd91-cb63-4ff4-965f-fcb07316b4b0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T19:06:40.113Z", + "completed":"2016-01-05T19:06:40.113Z", + "new_balance":"6374.95", + "value":"-13.01" + } + }, + { + "id":"ba33bae9-8ab6-4ec4-a1b1-da1766106100", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T22:36:28.885Z", + "completed":"2016-01-05T22:36:28.885Z", + "new_balance":"6330.97", + "value":"-43.98" + } + }, + { + "id":"bf1fba70-99c1-49ea-b8f8-cbc256066a86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T04:46:00.031Z", + "completed":"2016-01-06T04:46:00.031Z", + "new_balance":"6301.09", + "value":"-29.88" + } + }, + { + "id":"cc903def-a9a4-4bcc-91df-c745ab03960a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T18:38:54.144Z", + "completed":"2016-01-06T18:38:54.144Z", + "new_balance":"6278.40", + "value":"-22.69" + } + }, + { + "id":"bb8469c1-1b00-456b-b31a-3d964aea013a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T22:43:22.830Z", + "completed":"2016-01-07T22:43:22.830Z", + "new_balance":"6239.23", + "value":"-39.17" + } + }, + { + "id":"49844f66-b211-4923-8c68-47b3e8cecc8b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T02:21:33.241Z", + "completed":"2016-01-10T02:21:33.241Z", + "new_balance":"6214.36", + "value":"-24.87" + } + }, + { + "id":"2555afa9-9033-463d-a36a-b4fdb7629c8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T11:31:18.317Z", + "completed":"2016-01-10T11:31:18.317Z", + "new_balance":"6161.18", + "value":"-53.18" + } + }, + { + "id":"8a166095-b12c-4d30-a777-c0365d7b29cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T05:26:38.852Z", + "completed":"2016-01-12T05:26:38.852Z", + "new_balance":"6141.11", + "value":"-20.07" + } + }, + { + "id":"82adcfa4-6302-45fb-87b6-f0beb0e1d187", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T07:12:04.777Z", + "completed":"2016-01-12T07:12:04.777Z", + "new_balance":"6101.94", + "value":"-39.17" + } + }, + { + "id":"631e2d71-4891-4f7b-9942-15808e424473", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:45:15.345Z", + "completed":"2016-01-12T22:45:15.345Z", + "new_balance":"6077.38", + "value":"-24.56" + } + }, + { + "id":"dfa78207-b9fb-4c92-8847-2a6ea634d25a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T13:23:25.957Z", + "completed":"2016-01-15T13:23:25.957Z", + "new_balance":"6060.98", + "value":"-16.40" + } + }, + { + "id":"793d5a6b-caa9-4686-aad9-2cb2d0b6ab1a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T14:08:51.888Z", + "completed":"2016-01-16T14:08:51.888Z", + "new_balance":"6007.80", + "value":"-53.18" + } + }, + { + "id":"618ea739-49e0-42a8-b4e6-5a13d856d377", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T17:25:42.044Z", + "completed":"2016-01-16T17:25:42.044Z", + "new_balance":"6001.65", + "value":"-6.15" + } + }, + { + "id":"211a2039-d0db-409d-a22b-ea788c7c29cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T00:41:24.715Z", + "completed":"2016-01-17T00:41:24.715Z", + "new_balance":"5940.47", + "value":"-61.18" + } + }, + { + "id":"84a1aafe-7f4d-4a7c-8e09-c3dc9356386e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T03:36:21.251Z", + "completed":"2016-01-17T03:36:21.251Z", + "new_balance":"5909.15", + "value":"-31.32" + } + }, + { + "id":"8b3fe66e-c2c5-4314-a76d-695b0a793afd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T17:47:16.308Z", + "completed":"2016-01-19T17:47:16.308Z", + "new_balance":"5878.75", + "value":"-30.40" + } + }, + { + "id":"35c8e4cd-17b5-4cdc-a32e-31c54334133f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T13:09:02.334Z", + "completed":"2016-01-20T13:09:02.334Z", + "new_balance":"5825.57", + "value":"-53.18" + } + }, + { + "id":"31f17559-1830-4afc-8393-b3044d31e791", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T20:33:39.074Z", + "completed":"2016-01-23T20:33:39.074Z", + "new_balance":"5809.74", + "value":"-15.83" + } + }, + { + "id":"401d733c-d8af-4ad7-a96f-6dd5069c4bef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T09:52:20.667Z", + "completed":"2016-01-26T09:52:20.667Z", + "new_balance":"5751.26", + "value":"-58.48" + } + }, + { + "id":"30558f5c-6020-4ea4-9be6-e3ae30125725", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T22:19:47.661Z", + "completed":"2016-01-27T22:19:47.661Z", + "new_balance":"6939.77", + "value":"1188.51" + } + }, + { + "id":"d91aa494-b728-4ae4-b941-129e8e1971c4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T08:50:43.916Z", + "completed":"2016-01-28T08:50:43.916Z", + "new_balance":"6905.34", + "value":"-34.43" + } + }, + { + "id":"96e77c67-eb78-4437-a709-98e960fb8376", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T02:26:23.459Z", + "completed":"2016-01-30T02:26:23.459Z", + "new_balance":"6863.00", + "value":"-42.34" + } + }, + { + "id":"25a4bea0-fe3b-48b4-960f-5df851c28f6c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T11:19:59.218Z", + "completed":"2016-02-03T11:19:59.218Z", + "new_balance":"6352.46", + "value":"-510.54" + } + }, + { + "id":"9baa8e3b-8596-46df-9e58-a3f35eb949c9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T12:03:52.005Z", + "completed":"2016-02-03T12:03:52.005Z", + "new_balance":"6327.90", + "value":"-24.56" + } + }, + { + "id":"260c77c8-cdc8-4cb6-b7fc-3f42ecb9aee8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T22:32:06.124Z", + "completed":"2016-02-03T22:32:06.124Z", + "new_balance":"6293.47", + "value":"-34.43" + } + }, + { + "id":"5ce81f2d-f6af-4c2a-a5ff-9366fbfca201", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T23:37:28.909Z", + "completed":"2016-02-03T23:37:28.909Z", + "new_balance":"6219.54", + "value":"-73.93" + } + }, + { + "id":"5ca02807-c339-4fcb-9e32-14cf33e0399a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:57:26.923Z", + "completed":"2016-02-08T15:57:26.923Z", + "new_balance":"6175.56", + "value":"-43.98" + } + }, + { + "id":"e8ec3745-d4d8-45a3-8855-a034591d6806", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T21:02:16.338Z", + "completed":"2016-02-08T21:02:16.338Z", + "new_balance":"6122.38", + "value":"-53.18" + } + }, + { + "id":"0bdd0927-1fb9-4956-ad07-0d46e65a958a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T15:20:39.624Z", + "completed":"2016-02-11T15:20:39.624Z", + "new_balance":"6133.27", + "value":"10.89" + } + }, + { + "id":"d5033a1c-4caa-4438-a7a7-79af5bac2b32", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T18:58:50.339Z", + "completed":"2016-02-13T18:58:50.339Z", + "new_balance":"6103.39", + "value":"-29.88" + } + }, + { + "id":"afc3ceee-b58c-4517-9df9-43e606fa4d3e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T19:35:29.539Z", + "completed":"2016-02-14T19:35:29.539Z", + "new_balance":"6075.54", + "value":"-27.85" + } + }, + { + "id":"e87fc543-be9c-44db-9cf8-ba4ead0ccb34", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T13:01:31.288Z", + "completed":"2016-02-17T13:01:31.288Z", + "new_balance":"6064.63", + "value":"-10.91" + } + }, + { + "id":"74e63955-2de3-412f-b649-0972af9db83e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T11:03:30.524Z", + "completed":"2016-02-21T11:03:30.524Z", + "new_balance":"6023.50", + "value":"-41.13" + } + }, + { + "id":"291c7e21-17ac-4737-92c4-5b03db302a14", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T08:27:22.120Z", + "completed":"2016-02-23T08:27:22.120Z", + "new_balance":"5982.58", + "value":"-40.92" + } + }, + { + "id":"b88ed2f5-ef5a-40c9-8d97-702c36d4a52e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T22:17:58.286Z", + "completed":"2016-02-23T22:17:58.286Z", + "new_balance":"5929.40", + "value":"-53.18" + } + }, + { + "id":"0a7607f4-68c3-4633-a4c7-853ac21d54b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T18:33:14.573Z", + "completed":"2016-02-24T18:33:14.573Z", + "new_balance":"5918.49", + "value":"-10.91" + } + }, + { + "id":"cb954c45-9f37-459e-9c2e-2b375eb61a13", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T11:53:35.639Z", + "completed":"2016-02-27T11:53:35.639Z", + "new_balance":"7107.00", + "value":"1188.51" + } + }, + { + "id":"7181b7ae-64de-45b0-be86-1b6521379556", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T15:56:16.259Z", + "completed":"2016-02-27T15:56:16.259Z", + "new_balance":"7048.52", + "value":"-58.48" + } + }, + { + "id":"82f1d218-67af-4845-a577-ef3f4a948ad6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T20:32:26.173Z", + "completed":"2016-02-27T20:32:26.173Z", + "new_balance":"7031.78", + "value":"-16.74" + } + }, + { + "id":"0399781e-985b-4e02-8017-9bcf01024a4e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T01:28:55.899Z", + "completed":"2016-02-28T01:28:55.899Z", + "new_balance":"6989.44", + "value":"-42.34" + } + }, + { + "id":"9307e4bd-8e45-49b0-8c7c-f1d3f46d9425", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T11:55:27.215Z", + "completed":"2016-02-28T11:55:27.215Z", + "new_balance":"6955.01", + "value":"-34.43" + } + }, + { + "id":"703d9bc5-c62d-48a0-855f-6d0887dbfdeb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T02:48:20.482Z", + "completed":"2016-03-01T02:48:20.482Z", + "new_balance":"6893.14", + "value":"-61.87" + } + }, + { + "id":"f2a4df24-5556-41d2-b8f6-0e24543260f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T01:24:50.290Z", + "completed":"2016-03-03T01:24:50.290Z", + "new_balance":"6868.58", + "value":"-24.56" + } + }, + { + "id":"549fff96-3a2a-438b-8f92-2aa5dba2154c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:20:03.158Z", + "completed":"2016-03-03T05:20:03.158Z", + "new_balance":"6834.15", + "value":"-34.43" + } + }, + { + "id":"6764b258-e156-4a1a-ad76-03ec468cdc89", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T13:14:21.052Z", + "completed":"2016-03-03T13:14:21.052Z", + "new_balance":"6323.61", + "value":"-510.54" + } + }, + { + "id":"60812ef7-b765-44fc-84fa-74854966470b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T22:24:29.901Z", + "completed":"2016-03-03T22:24:29.901Z", + "new_balance":"6249.68", + "value":"-73.93" + } + }, + { + "id":"ab0dba8e-e957-473c-9b5d-7d9a559f29ae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T11:21:01.521Z", + "completed":"2016-03-05T11:21:01.521Z", + "new_balance":"6196.50", + "value":"-53.18" + } + }, + { + "id":"c6bbea37-1e59-4ece-a4dd-6fde84449af7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T19:16:22.468Z", + "completed":"2016-03-05T19:16:22.468Z", + "new_balance":"6147.84", + "value":"-48.66" + } + }, + { + "id":"1466b3cc-24c3-492b-a781-591071eb6c8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T00:57:25.486Z", + "completed":"2016-03-07T00:57:25.486Z", + "new_balance":"6134.17", + "value":"-13.67" + } + }, + { + "id":"45a6c06d-5274-4abf-96c8-a1dfd94ab2b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T03:53:09.037Z", + "completed":"2016-03-09T03:53:09.037Z", + "new_balance":"6080.99", + "value":"-53.18" + } + }, + { + "id":"c84ef64b-1c5e-408a-b51f-50751112bf93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T12:08:11.027Z", + "completed":"2016-03-11T12:08:11.027Z", + "new_balance":"6069.99", + "value":"-11.00" + } + }, + { + "id":"cca1ee3b-72b1-458e-9944-60fadcc08cf2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T19:33:29.851Z", + "completed":"2016-03-13T19:33:29.851Z", + "new_balance":"6012.31", + "value":"-57.68" + } + }, + { + "id":"5fbfc146-9ff5-40a9-8951-7af13a05d5da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T15:38:29.495Z", + "completed":"2016-03-14T15:38:29.495Z", + "new_balance":"6000.38", + "value":"-11.93" + } + }, + { + "id":"e758c1b6-9a57-4560-84d6-a5e8642294db", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T22:22:34.652Z", + "completed":"2016-03-14T22:22:34.652Z", + "new_balance":"6063.74", + "value":"63.36" + } + }, + { + "id":"fd790d86-8eab-4bef-8bc2-5314dfdd56ea", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T19:18:17.776Z", + "completed":"2016-03-15T19:18:17.776Z", + "new_balance":"6021.40", + "value":"-42.34" + } + }, + { + "id":"f9a3183a-5035-4f0f-9f31-06daba633c56", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T10:41:33.139Z", + "completed":"2016-03-26T10:41:33.139Z", + "new_balance":"5974.47", + "value":"-46.93" + } + }, + { + "id":"7b953851-d43c-4d40-93f4-a0021953ef29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:49:55.184Z", + "completed":"2016-03-26T13:49:55.184Z", + "new_balance":"5949.10", + "value":"-25.37" + } + }, + { + "id":"ae8f7f79-736f-4e74-9530-041738f39465", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T18:42:48.090Z", + "completed":"2016-03-26T18:42:48.090Z", + "new_balance":"5922.26", + "value":"-26.84" + } + }, + { + "id":"25cb17f5-5574-4711-9821-0d2a214f283f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T06:22:47.029Z", + "completed":"2016-03-27T06:22:47.029Z", + "new_balance":"7110.77", + "value":"1188.51" + } + }, + { + "id":"15a5ccaf-5d73-4a2b-9fd5-399099aa9b5a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T14:56:48.604Z", + "completed":"2016-03-27T14:56:48.604Z", + "new_balance":"7057.59", + "value":"-53.18" + } + }, + { + "id":"5fbc7f9d-18b9-4aab-b832-05d2e3d0eaa2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T21:44:28.236Z", + "completed":"2016-03-27T21:44:28.236Z", + "new_balance":"6991.01", + "value":"-66.58" + } + }, + { + "id":"b247cc6c-60c8-428d-a4c9-29cb0d02acf9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T19:59:43.696Z", + "completed":"2016-03-28T19:59:43.696Z", + "new_balance":"6956.58", + "value":"-34.43" + } + }, + { + "id":"19d1f38e-34cd-4cc1-8747-5368bc1ec3dc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T17:40:58.221Z", + "completed":"2016-03-30T17:40:58.221Z", + "new_balance":"6914.24", + "value":"-42.34" + } + }, + { + "id":"beaa93a8-1ca2-468a-b374-5034997ec49c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T03:39:24.718Z", + "completed":"2016-04-01T03:39:24.718Z", + "new_balance":"6879.81", + "value":"-34.43" + } + }, + { + "id":"3e1b9420-3036-4b39-9dfc-c811729ece91", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T07:14:49.360Z", + "completed":"2016-04-01T07:14:49.360Z", + "new_balance":"6855.25", + "value":"-24.56" + } + }, + { + "id":"f6121aa6-0786-4fb1-af40-1f67e5545556", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T07:18:48.869Z", + "completed":"2016-04-01T07:18:48.869Z", + "new_balance":"6781.32", + "value":"-73.93" + } + }, + { + "id":"261c4885-6c12-4e01-bbbf-25a22ec87b41", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T12:39:49.383Z", + "completed":"2016-04-01T12:39:49.383Z", + "new_balance":"6719.45", + "value":"-61.87" + } + }, + { + "id":"aea1b61f-c706-4055-a188-4df4d3541c64", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:55:11.580Z", + "completed":"2016-04-01T14:55:11.580Z", + "new_balance":"6208.91", + "value":"-510.54" + } + }, + { + "id":"348db82f-2830-4f69-acd9-913ec0d84cb0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T03:50:57.578Z", + "completed":"2016-04-05T03:50:57.578Z", + "new_balance":"6195.90", + "value":"-13.01" + } + }, + { + "id":"303b3d8f-7559-4c12-a262-3aea7d62c9f8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T17:34:44.225Z", + "completed":"2016-04-05T17:34:44.225Z", + "new_balance":"6173.21", + "value":"-22.69" + } + }, + { + "id":"64eae10f-9186-423b-9619-36f55294edd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T18:34:15.875Z", + "completed":"2016-04-05T18:34:15.875Z", + "new_balance":"6120.03", + "value":"-53.18" + } + }, + { + "id":"700c0948-db39-4c96-b9ec-bb6af27e39e5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T22:22:49.699Z", + "completed":"2016-04-05T22:22:49.699Z", + "new_balance":"6076.05", + "value":"-43.98" + } + }, + { + "id":"c84d94d8-2376-4132-b570-b21351b84e13", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T12:20:13.469Z", + "completed":"2016-04-07T12:20:13.469Z", + "new_balance":"6046.17", + "value":"-29.88" + } + }, + { + "id":"6c6fd844-afea-4011-9ca7-a00c8372cd77", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T08:40:27.326Z", + "completed":"2016-04-09T08:40:27.326Z", + "new_balance":"6021.30", + "value":"-24.87" + } + }, + { + "id":"19462bc7-53d3-4c24-9009-fe50f41888aa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T20:11:25.091Z", + "completed":"2016-04-09T20:11:25.091Z", + "new_balance":"5968.12", + "value":"-53.18" + } + }, + { + "id":"9a777e90-5e8e-4330-bc34-f6e0eace2bcd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T04:42:17.053Z", + "completed":"2016-04-10T04:42:17.053Z", + "new_balance":"5943.56", + "value":"-24.56" + } + }, + { + "id":"4d056703-1b2e-4f80-ad86-1e75a62f940b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T07:30:14.958Z", + "completed":"2016-04-10T07:30:14.958Z", + "new_balance":"5904.39", + "value":"-39.17" + } + }, + { + "id":"dfc8fb88-3e00-43c9-9c6f-39745c129ac5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T10:30:21.312Z", + "completed":"2016-04-10T10:30:21.312Z", + "new_balance":"5884.32", + "value":"-20.07" + } + }, + { + "id":"3b362a20-961b-44ce-bdee-ec38341f8bff", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T19:44:27.179Z", + "completed":"2016-04-10T19:44:27.179Z", + "new_balance":"5867.92", + "value":"-16.40" + } + }, + { + "id":"13e4f833-b867-4912-a63b-ae1946b3de73", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T11:20:40.213Z", + "completed":"2016-04-11T11:20:40.213Z", + "new_balance":"5861.77", + "value":"-6.15" + } + }, + { + "id":"2a36b2e2-f4a9-4d57-a542-b1fe90d29ea6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T15:10:08.392Z", + "completed":"2016-04-11T15:10:08.392Z", + "new_balance":"5830.45", + "value":"-31.32" + } + }, + { + "id":"ce307af6-399b-4510-b7ff-e81c20253d41", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T17:58:43.246Z", + "completed":"2016-04-11T17:58:43.246Z", + "new_balance":"5777.27", + "value":"-53.18" + } + }, + { + "id":"e8368724-1ba9-48e7-be03-c3c23359860e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T18:34:19.722Z", + "completed":"2016-04-11T18:34:19.722Z", + "new_balance":"5716.09", + "value":"-61.18" + } + }, + { + "id":"3c9bd8b5-4f87-4b5b-9487-3b0e2b2e4ea9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T20:01:09.514Z", + "completed":"2016-04-11T20:01:09.514Z", + "new_balance":"5685.69", + "value":"-30.40" + } + }, + { + "id":"87c6a47f-2c3c-49ef-a777-9837c238dd92", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T12:11:19.293Z", + "completed":"2016-04-21T12:11:19.293Z", + "new_balance":"5632.51", + "value":"-53.18" + } + }, + { + "id":"58a8d304-f7b7-4852-9aeb-d272ac8a335a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T11:42:55.704Z", + "completed":"2016-04-23T11:42:55.704Z", + "new_balance":"5616.68", + "value":"-15.83" + } + }, + { + "id":"362fe145-35c9-42c3-8af4-a87e85bac2b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T11:41:07.313Z", + "completed":"2016-04-29T11:41:07.313Z", + "new_balance":"6805.19", + "value":"1188.51" + } + }, + { + "id":"155e982b-32e8-4072-ac4a-16f7d9b61932", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T17:38:18.913Z", + "completed":"2016-04-29T17:38:18.913Z", + "new_balance":"6746.71", + "value":"-58.48" + } + }, + { + "id":"aa9226bd-99dc-4ffa-af6b-689c172b803f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T22:04:43.561Z", + "completed":"2016-04-29T22:04:43.561Z", + "new_balance":"6712.28", + "value":"-34.43" + } + }, + { + "id":"30270dfa-6d1d-409b-a9e0-0453762eaf70", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T23:09:27.560Z", + "completed":"2016-04-30T23:09:27.560Z", + "new_balance":"6669.94", + "value":"-42.34" + } + }, + { + "id":"1fe95a2e-8208-431a-aa90-e03c05fe9ef6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T03:41:38.954Z", + "completed":"2016-05-02T03:41:38.954Z", + "new_balance":"6159.40", + "value":"-510.54" + } + }, + { + "id":"233bf8a5-3ac0-42e5-9628-c207e9232fca", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T04:17:54.768Z", + "completed":"2016-05-02T04:17:54.768Z", + "new_balance":"6097.53", + "value":"-61.87" + } + }, + { + "id":"fd6866f4-a2c3-4aa5-ab64-68b79ca0edb2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T15:45:55.948Z", + "completed":"2016-05-02T15:45:55.948Z", + "new_balance":"6072.97", + "value":"-24.56" + } + }, + { + "id":"c2ca0dd5-e093-4d04-a2e4-de6892855267", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T18:05:47.413Z", + "completed":"2016-05-02T18:05:47.413Z", + "new_balance":"5999.04", + "value":"-73.93" + } + }, + { + "id":"9f62f6c5-d9e5-4a89-b55b-8a1fca701747", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T01:14:39.380Z", + "completed":"2016-05-06T01:14:39.380Z", + "new_balance":"5955.06", + "value":"-43.98" + } + }, + { + "id":"9ad866e6-0e8f-4f7b-a424-a0ddfe382d3f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T11:01:17.524Z", + "completed":"2016-05-07T11:01:17.524Z", + "new_balance":"5944.15", + "value":"-10.91" + } + }, + { + "id":"a1f978cb-13e2-4b5f-9781-683f0f966bc5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T11:16:22.057Z", + "completed":"2016-05-07T11:16:22.057Z", + "new_balance":"5903.02", + "value":"-41.13" + } + }, + { + "id":"349a317f-21aa-4d9b-810d-11ba2c224675", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T14:25:31.688Z", + "completed":"2016-05-07T14:25:31.688Z", + "new_balance":"5875.17", + "value":"-27.85" + } + }, + { + "id":"6539a2d5-9097-42e2-b3a2-66ec4d86274f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T18:52:19.560Z", + "completed":"2016-05-07T18:52:19.560Z", + "new_balance":"5845.29", + "value":"-29.88" + } + }, + { + "id":"e0399441-4dbf-4bf9-9774-033f5dfbdcd1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T12:10:57.688Z", + "completed":"2016-05-08T12:10:57.688Z", + "new_balance":"5804.37", + "value":"-40.92" + } + }, + { + "id":"9d2b0c8f-9eba-49d3-96c2-4171463a6f9c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T03:06:48.977Z", + "completed":"2016-05-09T03:06:48.977Z", + "new_balance":"5769.94", + "value":"-34.43" + } + }, + { + "id":"6317f89c-0c33-420e-a903-dc2b072fa834", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T00:42:09.526Z", + "completed":"2016-05-13T00:42:09.526Z", + "new_balance":"5716.76", + "value":"-53.18" + } + }, + { + "id":"25121d65-fb00-48c5-8c5d-8fe1971f5d3f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T13:54:17.335Z", + "completed":"2016-05-26T13:54:17.335Z", + "new_balance":"5705.85", + "value":"-10.91" + } + }, + { + "id":"b18eaadf-ae16-4089-b2ad-a99fb2686334", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T23:24:26.301Z", + "completed":"2016-05-26T23:24:26.301Z", + "new_balance":"5652.67", + "value":"-53.18" + } + }, + { + "id":"607b5f42-90cf-4387-af79-28e79cea2992", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T12:53:00.795Z", + "completed":"2016-05-27T12:53:00.795Z", + "new_balance":"5635.93", + "value":"-16.74" + } + }, + { + "id":"4f6e3338-dbcb-4233-abe4-2652dea605bc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T21:28:12.368Z", + "completed":"2016-05-27T21:28:12.368Z", + "new_balance":"5577.45", + "value":"-58.48" + } + }, + { + "id":"40382147-d518-4e41-9161-7dd69435a3a2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T05:26:54.130Z", + "completed":"2016-05-30T05:26:54.130Z", + "new_balance":"6765.96", + "value":"1188.51" + } + }, + { + "id":"28a920c2-40a1-4f83-8344-38ef4e028861", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T08:03:53.418Z", + "completed":"2016-05-30T08:03:53.418Z", + "new_balance":"6723.62", + "value":"-42.34" + } + }, + { + "id":"8d3fd929-9106-4634-b8c2-c244e76a41ab", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T12:05:53.630Z", + "completed":"2016-05-30T12:05:53.630Z", + "new_balance":"6689.19", + "value":"-34.43" + } + }, + { + "id":"586e0344-4049-45e5-9033-59f05885d9fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T03:58:50.448Z", + "completed":"2016-06-01T03:58:50.448Z", + "new_balance":"6640.53", + "value":"-48.66" + } + }, + { + "id":"539d3fa8-170a-40aa-b632-741f58fee642", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T04:57:52.913Z", + "completed":"2016-06-01T04:57:52.913Z", + "new_balance":"6615.97", + "value":"-24.56" + } + }, + { + "id":"8e492daf-74c3-4ca1-b550-ae98156d9a5f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T06:10:46.535Z", + "completed":"2016-06-01T06:10:46.535Z", + "new_balance":"6105.43", + "value":"-510.54" + } + }, + { + "id":"dd6ab8e3-70e4-483b-aa44-67e29b805487", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:33:09.954Z", + "completed":"2016-06-01T06:33:09.954Z", + "new_balance":"6052.25", + "value":"-53.18" + } + }, + { + "id":"ee30cc09-6bd8-4e59-b18a-376c8993297b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T10:36:32.544Z", + "completed":"2016-06-01T10:36:32.544Z", + "new_balance":"6038.58", + "value":"-13.67" + } + }, + { + "id":"6da2b21a-b2e0-4b48-b455-ece1866ae667", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T12:44:00.980Z", + "completed":"2016-06-01T12:44:00.980Z", + "new_balance":"5976.71", + "value":"-61.87" + } + }, + { + "id":"82c9e0f8-7262-400f-a2ec-ba56442aed8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T18:11:43.663Z", + "completed":"2016-06-01T18:11:43.663Z", + "new_balance":"5942.28", + "value":"-34.43" + } + }, + { + "id":"fa722fa4-3e25-43d7-91c7-77a8bf988588", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T20:26:29.766Z", + "completed":"2016-06-01T20:26:29.766Z", + "new_balance":"5868.35", + "value":"-73.93" + } + }, + { + "id":"2faa2b7f-b86d-4bdc-8432-60233c5152b3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T21:36:32.842Z", + "completed":"2016-06-01T21:36:32.842Z", + "new_balance":"5815.17", + "value":"-53.18" + } + }, + { + "id":"7596a59b-0e07-43dc-bc81-b1ac127b1dc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T11:44:00.801Z", + "completed":"2016-06-02T11:44:00.801Z", + "new_balance":"5803.24", + "value":"-11.93" + } + }, + { + "id":"76eaf900-9be4-4a45-9c1d-8bcd24120da2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T12:08:56.493Z", + "completed":"2016-06-02T12:08:56.493Z", + "new_balance":"5745.56", + "value":"-57.68" + } + }, + { + "id":"2a6280f1-efaa-49a6-b92d-fef9b188ad9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T16:07:27.029Z", + "completed":"2016-06-02T16:07:27.029Z", + "new_balance":"5734.56", + "value":"-11.00" + } + }, + { + "id":"09eaa661-e863-4ab1-b017-e07e0d547174", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T05:29:06.893Z", + "completed":"2016-06-04T05:29:06.893Z", + "new_balance":"5709.19", + "value":"-25.37" + } + }, + { + "id":"64045621-ff90-4a28-b112-4ed59766ff84", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T11:31:19.791Z", + "completed":"2016-06-04T11:31:19.791Z", + "new_balance":"5666.85", + "value":"-42.34" + } + }, + { + "id":"361b342d-c5e0-422a-8eb5-fbd26b061e86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T14:42:55.144Z", + "completed":"2016-06-04T14:42:55.144Z", + "new_balance":"5619.92", + "value":"-46.93" + } + }, + { + "id":"974efde2-7a3a-42e3-8dd9-5ef134070c4a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T00:24:42.059Z", + "completed":"2016-06-05T00:24:42.059Z", + "new_balance":"5553.34", + "value":"-66.58" + } + }, + { + "id":"dd099aa2-de23-454b-bfea-a33f1d1eceec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T11:27:30.629Z", + "completed":"2016-06-05T11:27:30.629Z", + "new_balance":"5526.50", + "value":"-26.84" + } + }, + { + "id":"ec5a7adb-6132-41ee-bc19-3c30f9687f05", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T22:23:32.676Z", + "completed":"2016-06-18T22:23:32.676Z", + "new_balance":"5473.32", + "value":"-53.18" + } + }, + { + "id":"24f6e75f-685e-4d9c-8ac2-e7388c2f7336", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T03:00:14.753Z", + "completed":"2016-06-30T03:00:14.753Z", + "new_balance":"5438.89", + "value":"-34.43" + } + }, + { + "id":"50b2269d-57e8-47b0-8566-ec652a69f472", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:33:55.449Z", + "completed":"2016-06-30T19:33:55.449Z", + "new_balance":"5397.36", + "value":"-41.53" + } + }, + { + "id":"8a1fc850-2b2d-46b9-b5d7-302020b7633b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T21:23:40.976Z", + "completed":"2016-06-30T21:23:40.976Z", + "new_balance":"5355.02", + "value":"-42.34" + } + }, + { + "id":"694446fa-65f8-4c1d-81b5-b8d191204798", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T22:56:23.363Z", + "completed":"2016-06-30T22:56:23.363Z", + "new_balance":"6543.53", + "value":"1188.51" + } + }, + { + "id":"0084c234-31f2-4251-b1cc-9678609763f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T07:38:04.080Z", + "completed":"2016-07-01T07:38:04.080Z", + "new_balance":"6481.66", + "value":"-61.87" + } + }, + { + "id":"e0aa25e0-de7e-4c34-a06b-550488925dc7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T03:42:46.033Z", + "completed":"2016-07-03T03:42:46.033Z", + "new_balance":"6407.73", + "value":"-73.93" + } + }, + { + "id":"72a6a173-39a7-421d-80bb-e365130f15cf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T04:28:14.508Z", + "completed":"2016-07-03T04:28:14.508Z", + "new_balance":"6373.30", + "value":"-34.43" + } + }, + { + "id":"fd7790f0-79a0-48b8-abe9-10ff27f42d43", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T05:05:04.609Z", + "completed":"2016-07-03T05:05:04.609Z", + "new_balance":"6348.74", + "value":"-24.56" + } + }, + { + "id":"6743517f-7d45-401d-be89-8be6d5b05b16", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T22:44:44.270Z", + "completed":"2016-07-03T22:44:44.270Z", + "new_balance":"5838.20", + "value":"-510.54" + } + }, + { + "id":"5de25ee5-a79f-4638-9d63-be4dd4938219", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T00:50:03.928Z", + "completed":"2016-07-05T00:50:03.928Z", + "new_balance":"5785.02", + "value":"-53.18" + } + }, + { + "id":"bfc4095a-4aee-4103-915d-382fa25ff495", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T01:52:39.271Z", + "completed":"2016-07-05T01:52:39.271Z", + "new_balance":"5772.01", + "value":"-13.01" + } + }, + { + "id":"bf6583aa-0184-43ea-966b-d3fa87c71303", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:16:26.013Z", + "completed":"2016-07-05T15:16:26.013Z", + "new_balance":"5728.03", + "value":"-43.98" + } + }, + { + "id":"bcbe6347-4423-4266-a6f0-4ae2bc36fc55", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T05:41:06.367Z", + "completed":"2016-07-06T05:41:06.367Z", + "new_balance":"5705.34", + "value":"-22.69" + } + }, + { + "id":"de563c4c-c27d-47d2-be94-08ef2f106fbf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T20:16:49.159Z", + "completed":"2016-07-06T20:16:49.159Z", + "new_balance":"5675.46", + "value":"-29.88" + } + }, + { + "id":"6cf1847f-5487-4ef6-8cc8-baf32ecac7ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T03:19:45.834Z", + "completed":"2016-07-07T03:19:45.834Z", + "new_balance":"5636.29", + "value":"-39.17" + } + }, + { + "id":"caf99343-0636-4078-9f75-ed7552216acd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T04:55:54.836Z", + "completed":"2016-07-10T04:55:54.836Z", + "new_balance":"5583.11", + "value":"-53.18" + } + }, + { + "id":"8e235cb3-2a9d-4b4f-b323-190f969b1782", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T08:10:27.312Z", + "completed":"2016-07-10T08:10:27.312Z", + "new_balance":"5558.24", + "value":"-24.87" + } + }, + { + "id":"ec2388c2-fe18-4b21-be77-92b708512b28", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T08:20:42.469Z", + "completed":"2016-07-12T08:20:42.469Z", + "new_balance":"5519.07", + "value":"-39.17" + } + }, + { + "id":"9eba6437-620b-48bf-95a5-a9191d5b50aa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T12:10:12.670Z", + "completed":"2016-07-12T12:10:12.670Z", + "new_balance":"5499.00", + "value":"-20.07" + } + }, + { + "id":"750ad99a-e33d-44af-8a46-67ef6e8a6c71", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T17:50:10.720Z", + "completed":"2016-07-12T17:50:10.720Z", + "new_balance":"5474.44", + "value":"-24.56" + } + }, + { + "id":"f248948d-186a-4395-bbb5-5e327de1e830", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T15:53:19.134Z", + "completed":"2016-07-15T15:53:19.134Z", + "new_balance":"5458.04", + "value":"-16.40" + } + }, + { + "id":"55a33c80-69c8-4a81-a4f2-08d019ce4769", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T01:42:36.234Z", + "completed":"2016-07-16T01:42:36.234Z", + "new_balance":"5451.89", + "value":"-6.15" + } + }, + { + "id":"cc483628-d2dd-4dbd-b34f-7637d057f43d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T13:09:57.455Z", + "completed":"2016-07-16T13:09:57.455Z", + "new_balance":"5398.71", + "value":"-53.18" + } + }, + { + "id":"0f7466f5-f5c3-4ac5-86a2-4fe98029044f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T12:43:13.065Z", + "completed":"2016-07-17T12:43:13.065Z", + "new_balance":"5337.53", + "value":"-61.18" + } + }, + { + "id":"409a38cd-30b9-4327-8f64-82ff6efefb57", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T20:23:49.615Z", + "completed":"2016-07-17T20:23:49.615Z", + "new_balance":"5306.21", + "value":"-31.32" + } + }, + { + "id":"be42944d-d0e3-4cdc-99dd-9b778de9df5d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T01:33:21.667Z", + "completed":"2016-07-19T01:33:21.667Z", + "new_balance":"5275.81", + "value":"-30.40" + } + }, + { + "id":"1f32cee4-1b97-44de-b8b8-3ec56f96bdfd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T07:01:29.780Z", + "completed":"2016-07-20T07:01:29.780Z", + "new_balance":"5222.63", + "value":"-53.18" + } + }, + { + "id":"34a42b1b-5122-4647-a35e-9cf67120cee2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T16:51:08.132Z", + "completed":"2016-07-23T16:51:08.132Z", + "new_balance":"5206.80", + "value":"-15.83" + } + }, + { + "id":"d7e6e2ba-29db-4e21-9787-47e7ee021eeb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T12:37:04.373Z", + "completed":"2016-07-26T12:37:04.373Z", + "new_balance":"5148.32", + "value":"-58.48" + } + }, + { + "id":"896bd243-3fcb-437d-9474-7195164fe29d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T04:39:09.424Z", + "completed":"2016-07-27T04:39:09.424Z", + "new_balance":"6336.83", + "value":"1188.51" + } + }, + { + "id":"a8d1c538-6b0f-4563-aa41-e2e6a40bccd3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T01:03:08.120Z", + "completed":"2016-07-28T01:03:08.120Z", + "new_balance":"6302.40", + "value":"-34.43" + } + }, + { + "id":"2c28aeed-e131-40ea-a822-2e6d0140febc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T18:04:45.375Z", + "completed":"2016-07-30T18:04:45.375Z", + "new_balance":"6260.06", + "value":"-42.34" + } + }, + { + "id":"db52c61f-3258-4746-9d7c-997ca70e13b5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T09:16:09.760Z", + "completed":"2016-08-01T09:16:09.760Z", + "new_balance":"6198.19", + "value":"-61.87" + } + }, + { + "id":"1a62c8a1-69ef-4f63-a5b0-732fcf183df2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T03:12:01.901Z", + "completed":"2016-08-03T03:12:01.901Z", + "new_balance":"6163.76", + "value":"-34.43" + } + }, + { + "id":"6ff7567b-3e8e-429b-a2ab-4320d64c5c21", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T13:15:16.105Z", + "completed":"2016-08-03T13:15:16.105Z", + "new_balance":"6089.83", + "value":"-73.93" + } + }, + { + "id":"e51aafe4-d173-46a7-a12c-599ff97722f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T21:26:56.117Z", + "completed":"2016-08-03T21:26:56.117Z", + "new_balance":"6065.27", + "value":"-24.56" + } + }, + { + "id":"32f4c95f-fd4c-49a7-98ee-e2870b8d0076", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T23:57:58.142Z", + "completed":"2016-08-03T23:57:58.142Z", + "new_balance":"5554.73", + "value":"-510.54" + } + }, + { + "id":"eaa0301c-d5d1-4ab2-a399-af632b819769", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T00:11:06.816Z", + "completed":"2016-08-08T00:11:06.816Z", + "new_balance":"5510.75", + "value":"-43.98" + } + }, + { + "id":"52d37a6b-0f7c-4feb-a84a-a3b1d3c52bfd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T12:17:04.605Z", + "completed":"2016-08-08T12:17:04.605Z", + "new_balance":"5457.57", + "value":"-53.18" + } + }, + { + "id":"13bf06c8-17ce-451f-9e1e-ef92eee65e36", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T12:39:49.701Z", + "completed":"2016-08-11T12:39:49.701Z", + "new_balance":"5468.46", + "value":"10.89" + } + }, + { + "id":"84ae64c2-1986-4761-996f-1d4fe5ea18c2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T12:25:48.391Z", + "completed":"2016-08-13T12:25:48.391Z", + "new_balance":"5438.58", + "value":"-29.88" + } + }, + { + "id":"8a9697e8-64c7-4d45-a40c-311b057eafdb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:52:24.421Z", + "completed":"2016-08-14T09:52:24.421Z", + "new_balance":"5410.73", + "value":"-27.85" + } + }, + { + "id":"84a39262-1151-42e5-96d1-53bb04c80e4e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T13:40:32.201Z", + "completed":"2016-08-17T13:40:32.201Z", + "new_balance":"5399.82", + "value":"-10.91" + } + }, + { + "id":"825a1174-2c75-48df-a952-a8f53c410eb9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T07:21:27.808Z", + "completed":"2016-08-21T07:21:27.808Z", + "new_balance":"5358.69", + "value":"-41.13" + } + }, + { + "id":"08f01325-42d1-45e3-aaab-3cbad8e618a6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T09:50:28.437Z", + "completed":"2016-08-23T09:50:28.437Z", + "new_balance":"5305.51", + "value":"-53.18" + } + }, + { + "id":"1b18bcb5-16c3-4013-84e1-79e303cae477", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T16:55:22.111Z", + "completed":"2016-08-23T16:55:22.111Z", + "new_balance":"5264.59", + "value":"-40.92" + } + }, + { + "id":"f37771d6-b710-413d-ab8c-7c6807db295f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T18:00:51.823Z", + "completed":"2016-08-24T18:00:51.823Z", + "new_balance":"5253.68", + "value":"-10.91" + } + }, + { + "id":"57c0fa5d-b636-4c66-b24f-e2a3d742dab8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T09:58:00.852Z", + "completed":"2016-08-27T09:58:00.852Z", + "new_balance":"5195.20", + "value":"-58.48" + } + }, + { + "id":"06a084b9-1195-45d4-be4c-6f3fac731fa3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T17:01:58.971Z", + "completed":"2016-08-27T17:01:58.971Z", + "new_balance":"5178.46", + "value":"-16.74" + } + }, + { + "id":"82c6ab08-db5f-4169-981c-ce4e8f5eabba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T20:17:59.207Z", + "completed":"2016-08-27T20:17:59.207Z", + "new_balance":"6366.97", + "value":"1188.51" + } + }, + { + "id":"261707d8-4520-48cf-8791-6a5fdac9f33b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T19:47:25.950Z", + "completed":"2016-08-28T19:47:25.950Z", + "new_balance":"6332.54", + "value":"-34.43" + } + }, + { + "id":"1271a5ef-030b-422d-86f6-5fa2b88af951", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T20:17:24.781Z", + "completed":"2016-08-30T20:17:24.781Z", + "new_balance":"6290.20", + "value":"-42.34" + } + }, + { + "id":"1bf7467c-22e9-4b03-b93e-be0a10770c22", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T07:10:22.650Z", + "completed":"2016-09-01T07:10:22.650Z", + "new_balance":"6228.33", + "value":"-61.87" + } + }, + { + "id":"bbcd189a-6979-4e56-a13b-84de9b4694ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T00:32:50.307Z", + "completed":"2016-09-03T00:32:50.307Z", + "new_balance":"6193.90", + "value":"-34.43" + } + }, + { + "id":"d6bfca29-5e29-4b6a-b40e-4f02ba796567", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T05:38:58.368Z", + "completed":"2016-09-03T05:38:58.368Z", + "new_balance":"6119.97", + "value":"-73.93" + } + }, + { + "id":"794f8319-b371-49d5-8b61-333ef30a4009", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T12:47:08.025Z", + "completed":"2016-09-03T12:47:08.025Z", + "new_balance":"5609.43", + "value":"-510.54" + } + }, + { + "id":"248bfe41-6f73-44f6-8105-84a0b666286b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T18:23:21.258Z", + "completed":"2016-09-03T18:23:21.258Z", + "new_balance":"5584.87", + "value":"-24.56" + } + }, + { + "id":"7cc1de2e-bca1-4002-9ea3-37027b8eb479", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T00:52:31.149Z", + "completed":"2016-09-05T00:52:31.149Z", + "new_balance":"5531.69", + "value":"-53.18" + } + }, + { + "id":"6b2ece83-56a6-48f0-ac88-891ea3741a5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T01:48:52.388Z", + "completed":"2016-09-05T01:48:52.388Z", + "new_balance":"5483.03", + "value":"-48.66" + } + }, + { + "id":"e2418bbc-8735-4882-b71c-6062e6cecd0e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T07:16:10.749Z", + "completed":"2016-09-07T07:16:10.749Z", + "new_balance":"5469.36", + "value":"-13.67" + } + }, + { + "id":"0ac4d770-405f-45d3-a3e5-182eec5e989c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T14:49:23.108Z", + "completed":"2016-09-09T14:49:23.108Z", + "new_balance":"5416.18", + "value":"-53.18" + } + }, + { + "id":"52d26b35-754e-4642-bc14-e63f382cbd5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T10:53:10.693Z", + "completed":"2016-09-11T10:53:10.693Z", + "new_balance":"5405.18", + "value":"-11.00" + } + }, + { + "id":"32404f76-f5dd-4745-a33f-0d5c4e4001ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T22:49:53.794Z", + "completed":"2016-09-13T22:49:53.794Z", + "new_balance":"5347.50", + "value":"-57.68" + } + }, + { + "id":"f22b1c40-ceb1-4d87-8612-530bd2c4fdae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T01:17:37.816Z", + "completed":"2016-09-14T01:17:37.816Z", + "new_balance":"5410.86", + "value":"63.36" + } + }, + { + "id":"60ee33c8-41c1-4be3-afd2-2a1fc3aa6c02", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:36:03.763Z", + "completed":"2016-09-14T18:36:03.763Z", + "new_balance":"5398.93", + "value":"-11.93" + } + }, + { + "id":"bb36d0d0-2c97-4c15-b537-e466ca3ab3ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T04:58:10.110Z", + "completed":"2016-09-15T04:58:10.110Z", + "new_balance":"5356.59", + "value":"-42.34" + } + }, + { + "id":"26da4cdc-4edf-448f-90e9-d56faa077e0e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T10:29:56.729Z", + "completed":"2016-09-26T10:29:56.729Z", + "new_balance":"5309.66", + "value":"-46.93" + } + }, + { + "id":"2519fac5-5fbf-4716-a373-f2a23c83a736", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T13:51:16.149Z", + "completed":"2016-09-26T13:51:16.149Z", + "new_balance":"5282.82", + "value":"-26.84" + } + }, + { + "id":"428a8d11-087b-41de-a2e6-18e9e63d5dc3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T22:24:48.810Z", + "completed":"2016-09-26T22:24:48.810Z", + "new_balance":"5257.45", + "value":"-25.37" + } + }, + { + "id":"de30eb3c-fcd9-4dc2-8d8d-754c23758da8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T08:06:31.832Z", + "completed":"2016-09-27T08:06:31.832Z", + "new_balance":"6445.96", + "value":"1188.51" + } + }, + { + "id":"fb7ed8c5-11a6-49c0-917d-3d167efd850f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T09:47:50.843Z", + "completed":"2016-09-27T09:47:50.843Z", + "new_balance":"6379.38", + "value":"-66.58" + } + }, + { + "id":"2039114c-0f2d-4c9c-93ce-bb6df7a2f017", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T09:51:16.922Z", + "completed":"2016-09-27T09:51:16.922Z", + "new_balance":"6326.20", + "value":"-53.18" + } + }, + { + "id":"9a2b5566-558d-4cd1-921d-70707a8049e9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T16:50:34.969Z", + "completed":"2016-09-28T16:50:34.969Z", + "new_balance":"6291.77", + "value":"-34.43" + } + }, + { + "id":"6536a103-30b4-4c33-bf2b-835639faa05d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T17:09:24.150Z", + "completed":"2016-09-30T17:09:24.150Z", + "new_balance":"6249.43", + "value":"-42.34" + } + }, + { + "id":"d5efe149-66ec-43b9-bcaa-2956e78a5e1d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T01:43:26.830Z", + "completed":"2016-10-01T01:43:26.830Z", + "new_balance":"5738.89", + "value":"-510.54" + } + }, + { + "id":"154943cf-62bb-4ae7-a2bf-c7994d76136b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:30:01.232Z", + "completed":"2016-10-01T05:30:01.232Z", + "new_balance":"5677.02", + "value":"-61.87" + } + }, + { + "id":"0bed6998-80d1-4fa6-ad83-52671a004c18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T10:07:47.345Z", + "completed":"2016-10-01T10:07:47.345Z", + "new_balance":"5652.46", + "value":"-24.56" + } + }, + { + "id":"27897983-6a9f-4ebd-9f46-75543f9df8eb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T14:37:12.148Z", + "completed":"2016-10-01T14:37:12.148Z", + "new_balance":"5618.03", + "value":"-34.43" + } + }, + { + "id":"c19d41c2-1589-4e74-8842-4263d8808283", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T16:50:17.481Z", + "completed":"2016-10-01T16:50:17.481Z", + "new_balance":"5544.10", + "value":"-73.93" + } + }, + { + "id":"b6c36b04-b6b0-4ed0-9a65-aa1f99d28b2a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:28:01.935Z", + "completed":"2016-10-05T05:28:01.935Z", + "new_balance":"5531.09", + "value":"-13.01" + } + }, + { + "id":"ee6b5f73-8028-4b87-a0ca-40025897c81c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:29:45.856Z", + "completed":"2016-10-05T05:29:45.856Z", + "new_balance":"5487.11", + "value":"-43.98" + } + }, + { + "id":"7b4384d8-ee4a-447f-9400-ed7edb41f498", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T10:21:00.454Z", + "completed":"2016-10-05T10:21:00.454Z", + "new_balance":"5464.42", + "value":"-22.69" + } + }, + { + "id":"44880aa8-0cd6-4f10-a38c-6224bb1312da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T16:41:34.160Z", + "completed":"2016-10-05T16:41:34.160Z", + "new_balance":"5411.24", + "value":"-53.18" + } + }, + { + "id":"d929203c-baa5-4ec5-9d0e-c1a44a83633a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T04:53:21.736Z", + "completed":"2016-10-07T04:53:21.736Z", + "new_balance":"5381.36", + "value":"-29.88" + } + }, + { + "id":"a89f8fc2-4b58-4e2e-b836-6206fc5e3ada", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T01:05:03.892Z", + "completed":"2016-10-09T01:05:03.892Z", + "new_balance":"5356.49", + "value":"-24.87" + } + }, + { + "id":"caae81d7-9316-4f20-ade9-1c564cadf686", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T16:28:32.203Z", + "completed":"2016-10-09T16:28:32.203Z", + "new_balance":"5303.31", + "value":"-53.18" + } + }, + { + "id":"a3feab08-853c-47da-aa85-4ee879250d0b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T02:48:37.300Z", + "completed":"2016-10-10T02:48:37.300Z", + "new_balance":"5264.14", + "value":"-39.17" + } + }, + { + "id":"c21dc736-9453-4f8d-86fe-6846299f0756", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T09:27:02.636Z", + "completed":"2016-10-10T09:27:02.636Z", + "new_balance":"5247.74", + "value":"-16.40" + } + }, + { + "id":"48dd8cca-78a4-473c-800c-4cc765b3d2a1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T19:22:04.752Z", + "completed":"2016-10-10T19:22:04.752Z", + "new_balance":"5223.18", + "value":"-24.56" + } + }, + { + "id":"d959b9b9-29f9-4745-9647-3a2687d496ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T21:48:27.545Z", + "completed":"2016-10-10T21:48:27.545Z", + "new_balance":"5203.11", + "value":"-20.07" + } + }, + { + "id":"48894a68-3bd5-4f15-bbf3-6bf0316fb7eb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T00:15:08.328Z", + "completed":"2016-10-11T00:15:08.328Z", + "new_balance":"5149.93", + "value":"-53.18" + } + }, + { + "id":"6c2c92c4-f460-417b-aafb-285df22e7c8c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T01:06:03.740Z", + "completed":"2016-10-11T01:06:03.740Z", + "new_balance":"5088.75", + "value":"-61.18" + } + }, + { + "id":"a2a6a895-05f5-4009-b843-3eb970bd15c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T08:50:02.871Z", + "completed":"2016-10-11T08:50:02.871Z", + "new_balance":"5058.35", + "value":"-30.40" + } + }, + { + "id":"de587fc1-d3ea-469c-b4c2-052158d5a59a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T15:32:57.133Z", + "completed":"2016-10-11T15:32:57.133Z", + "new_balance":"5052.20", + "value":"-6.15" + } + }, + { + "id":"c61e4a94-c3c8-4209-976e-f6b427cc78ec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T23:25:29.446Z", + "completed":"2016-10-11T23:25:29.446Z", + "new_balance":"5020.88", + "value":"-31.32" + } + }, + { + "id":"64e9def4-de9b-465d-a6f6-e6d9294ed85e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T02:08:19.981Z", + "completed":"2016-10-21T02:08:19.981Z", + "new_balance":"4967.70", + "value":"-53.18" + } + }, + { + "id":"c174b9f1-8d1d-4c63-a365-fe8fb5e0a559", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T09:15:30.711Z", + "completed":"2016-10-23T09:15:30.711Z", + "new_balance":"4951.87", + "value":"-15.83" + } + }, + { + "id":"626a81b2-f1f9-44e5-9c4c-90fcd926b7a6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T05:21:56.216Z", + "completed":"2016-10-29T05:21:56.216Z", + "new_balance":"6140.38", + "value":"1188.51" + } + }, + { + "id":"eef7ab96-690a-4f03-a685-410019743a15", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T08:41:32.350Z", + "completed":"2016-10-29T08:41:32.350Z", + "new_balance":"6081.90", + "value":"-58.48" + } + }, + { + "id":"099a4de5-2fbb-4c60-8dcb-58d588a3ec01", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T09:57:31.296Z", + "completed":"2016-10-29T09:57:31.296Z", + "new_balance":"6047.47", + "value":"-34.43" + } + }, + { + "id":"6122c4a7-816b-47b2-9ffa-8245fc79afab", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T21:18:07.207Z", + "completed":"2016-10-30T21:18:07.207Z", + "new_balance":"6005.13", + "value":"-42.34" + } + }, + { + "id":"a91ad2e4-aef4-4c25-9555-01287a001187", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T03:25:53.368Z", + "completed":"2016-11-02T03:25:53.368Z", + "new_balance":"5494.59", + "value":"-510.54" + } + }, + { + "id":"61cf181e-a0b2-4980-8241-76c5c642686f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T07:49:31.856Z", + "completed":"2016-11-02T07:49:31.856Z", + "new_balance":"5420.66", + "value":"-73.93" + } + }, + { + "id":"4e05b94a-c38b-431b-a6fa-453e51509d9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T18:27:40.342Z", + "completed":"2016-11-02T18:27:40.342Z", + "new_balance":"5396.10", + "value":"-24.56" + } + }, + { + "id":"165e9007-ca4d-4fbb-aa4d-02e4fbd8d45e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T19:00:38.843Z", + "completed":"2016-11-02T19:00:38.843Z", + "new_balance":"5334.23", + "value":"-61.87" + } + }, + { + "id":"b57308f0-801a-4488-972f-28ef3f16ba88", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T19:38:14.007Z", + "completed":"2016-11-06T19:38:14.007Z", + "new_balance":"5290.25", + "value":"-43.98" + } + }, + { + "id":"6a54b1f5-a88f-47f3-8996-c3c04b8f6fcd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T03:12:17.935Z", + "completed":"2016-11-07T03:12:17.935Z", + "new_balance":"5279.34", + "value":"-10.91" + } + }, + { + "id":"51d5a46f-ee91-497a-a1ab-39b8b8420c50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T06:50:56.856Z", + "completed":"2016-11-07T06:50:56.856Z", + "new_balance":"5238.21", + "value":"-41.13" + } + }, + { + "id":"d546b95a-9aca-480d-a725-818d44f9b94b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T11:16:29.825Z", + "completed":"2016-11-07T11:16:29.825Z", + "new_balance":"5210.36", + "value":"-27.85" + } + }, + { + "id":"2813543e-cdef-459c-8fa2-10b21caac4b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:50:05.589Z", + "completed":"2016-11-07T17:50:05.589Z", + "new_balance":"5180.48", + "value":"-29.88" + } + }, + { + "id":"3ee4fbd7-7a9f-4fb6-8247-5062aad1523b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T11:13:12.650Z", + "completed":"2016-11-08T11:13:12.650Z", + "new_balance":"5139.56", + "value":"-40.92" + } + }, + { + "id":"f76245f4-8569-4a97-93e5-09815d502793", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T22:09:00.811Z", + "completed":"2016-11-09T22:09:00.811Z", + "new_balance":"5105.13", + "value":"-34.43" + } + }, + { + "id":"820bd963-469c-4a30-830b-ca0c615805c1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T19:47:15.990Z", + "completed":"2016-11-13T19:47:15.990Z", + "new_balance":"5051.95", + "value":"-53.18" + } + }, + { + "id":"0cc6f54c-d5ef-463a-8f2b-6376c5ede39e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T12:55:58.433Z", + "completed":"2016-11-26T12:55:58.433Z", + "new_balance":"5041.04", + "value":"-10.91" + } + }, + { + "id":"5dc82cbf-db67-450c-bc0f-edd5bd1735d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T14:15:26.465Z", + "completed":"2016-11-26T14:15:26.465Z", + "new_balance":"4987.86", + "value":"-53.18" + } + }, + { + "id":"7d6f6577-8a76-4641-a617-bd2d181ab04d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T07:54:38.567Z", + "completed":"2016-11-27T07:54:38.567Z", + "new_balance":"4929.38", + "value":"-58.48" + } + }, + { + "id":"937ab2c0-fb6d-4b33-9812-20c37cdc548a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T23:54:23.240Z", + "completed":"2016-11-27T23:54:23.240Z", + "new_balance":"4912.64", + "value":"-16.74" + } + }, + { + "id":"d2d282c1-69b1-44d7-8d2e-7aef42d2d467", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T01:51:05.088Z", + "completed":"2016-11-30T01:51:05.088Z", + "new_balance":"4878.21", + "value":"-34.43" + } + }, + { + "id":"d085c8ef-ce52-448a-95db-578457807835", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T06:20:43.077Z", + "completed":"2016-11-30T06:20:43.077Z", + "new_balance":"6066.72", + "value":"1188.51" + } + }, + { + "id":"b080fcc9-4c99-4019-8207-791e09c58fc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T18:44:17.234Z", + "completed":"2016-11-30T18:44:17.234Z", + "new_balance":"6024.38", + "value":"-42.34" + } + }, + { + "id":"476e7426-e1f8-4e05-a826-b5693928750c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T02:43:41.465Z", + "completed":"2016-12-01T02:43:41.465Z", + "new_balance":"5950.45", + "value":"-73.93" + } + }, + { + "id":"e39fc90e-106f-4603-baa1-6685aef26743", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:12:13.203Z", + "completed":"2016-12-01T04:12:13.203Z", + "new_balance":"5936.78", + "value":"-13.67" + } + }, + { + "id":"3509f151-9915-4853-9fc7-409e5c1977e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:08:31.956Z", + "completed":"2016-12-01T06:08:31.956Z", + "new_balance":"5902.35", + "value":"-34.43" + } + }, + { + "id":"1cb8a3e5-6149-4c4e-957d-23c51b786d9d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T07:45:42.565Z", + "completed":"2016-12-01T07:45:42.565Z", + "new_balance":"5877.79", + "value":"-24.56" + } + }, + { + "id":"fa489f0a-aaff-43dd-bc6b-26f15fa8c3b4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:46:07.065Z", + "completed":"2016-12-01T08:46:07.065Z", + "new_balance":"5815.92", + "value":"-61.87" + } + }, + { + "id":"b205900f-4071-4b42-8230-8132db704f23", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T09:21:54.487Z", + "completed":"2016-12-01T09:21:54.487Z", + "new_balance":"5305.38", + "value":"-510.54" + } + }, + { + "id":"a1850de9-c191-4115-a556-9d85c5c933c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T11:21:08.860Z", + "completed":"2016-12-01T11:21:08.860Z", + "new_balance":"5252.20", + "value":"-53.18" + } + }, + { + "id":"260cbc92-d2e5-4269-8e00-d2147ce37ab0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:51:40.015Z", + "completed":"2016-12-01T17:51:40.015Z", + "new_balance":"5203.54", + "value":"-48.66" + } + }, + { + "id":"8fe34a80-e771-4dc7-9beb-719e407b6661", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T23:58:34.569Z", + "completed":"2016-12-01T23:58:34.569Z", + "new_balance":"5150.36", + "value":"-53.18" + } + }, + { + "id":"97fb9268-3db3-4b0c-8d74-6c955f000b21", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T02:29:46.202Z", + "completed":"2016-12-02T02:29:46.202Z", + "new_balance":"5139.36", + "value":"-11.00" + } + }, + { + "id":"5dfadd3e-1df8-49a1-9cf2-aae8fb5a7b40", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T04:59:21.857Z", + "completed":"2016-12-02T04:59:21.857Z", + "new_balance":"5127.43", + "value":"-11.93" + } + }, + { + "id":"a6e13507-3d9e-480e-8e3a-726b7328f9fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:12:49.380Z", + "completed":"2016-12-02T20:12:49.380Z", + "new_balance":"5069.75", + "value":"-57.68" + } + }, + { + "id":"e6af90e0-e21c-4f47-95e1-3f9c5a0ae522", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T07:03:31.188Z", + "completed":"2016-12-04T07:03:31.188Z", + "new_balance":"5022.82", + "value":"-46.93" + } + }, + { + "id":"503939a3-4b6c-485e-a22b-f55698dc76cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T07:36:38.564Z", + "completed":"2016-12-04T07:36:38.564Z", + "new_balance":"4980.48", + "value":"-42.34" + } + }, + { + "id":"df20dc6b-1f96-4e77-9448-28a8689096e0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:26:07.178Z", + "completed":"2016-12-04T12:26:07.178Z", + "new_balance":"4955.11", + "value":"-25.37" + } + }, + { + "id":"8d1b34ff-af13-4bed-bf4b-c406a0d2484d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T01:58:25.146Z", + "completed":"2016-12-05T01:58:25.146Z", + "new_balance":"4888.53", + "value":"-66.58" + } + }, + { + "id":"6433b705-d500-43d0-a059-ca389f066f50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T19:00:25.403Z", + "completed":"2016-12-05T19:00:25.403Z", + "new_balance":"4861.69", + "value":"-26.84" + } + }, + { + "id":"90d0a821-f83c-4847-b93c-afb35cae39d0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T18:24:17.858Z", + "completed":"2016-12-18T18:24:17.858Z", + "new_balance":"4808.51", + "value":"-53.18" + } + }, + { + "id":"bb5b7a93-c20e-4e6c-a301-b8b97981e1ce", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T09:41:01.228Z", + "completed":"2016-12-30T09:41:01.228Z", + "new_balance":"4766.98", + "value":"-41.53" + } + }, + { + "id":"809071a2-dc86-4d8c-b93f-87c70be3a4a3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T14:10:30.456Z", + "completed":"2016-12-30T14:10:30.456Z", + "new_balance":"4732.55", + "value":"-34.43" + } + }, + { + "id":"2eb472ed-22b0-4e77-a972-8031e8dcd722", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T18:38:54.397Z", + "completed":"2016-12-30T18:38:54.397Z", + "new_balance":"4690.21", + "value":"-42.34" + } + }, + { + "id":"1e7f3bc4-a29f-4da6-9b5d-fb8de16ae084", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T19:38:52.126Z", + "completed":"2016-12-30T19:38:52.126Z", + "new_balance":"5878.72", + "value":"1188.51" + } + }, + { + "id":"dc739b03-d2a9-4b70-9de6-ccff8b19b049", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:35:40.772Z", + "completed":"2017-01-01T07:35:40.772Z", + "new_balance":"5816.85", + "value":"-61.87" + } + }, + { + "id":"997449eb-912f-4240-b1b9-8e98f480d7f0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T08:20:59.543Z", + "completed":"2017-01-01T08:20:59.543Z", + "new_balance":"5754.98", + "value":"-61.87" + } + }, + { + "id":"c44a43a6-8e27-4855-8248-8c986ccfda11", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T00:45:47.957Z", + "completed":"2017-01-03T00:45:47.957Z", + "new_balance":"5730.42", + "value":"-24.56" + } + }, + { + "id":"261efc01-db61-4e3f-9240-96b05f88abbb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T01:55:48.119Z", + "completed":"2017-01-03T01:55:48.119Z", + "new_balance":"5695.99", + "value":"-34.43" + } + }, + { + "id":"9c26a2a3-14d7-4828-9fa5-c191c621f838", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T10:19:59.292Z", + "completed":"2017-01-03T10:19:59.292Z", + "new_balance":"5185.45", + "value":"-510.54" + } + }, + { + "id":"9a8c2761-5b80-4c84-8888-998f5b25b672", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T19:46:10.007Z", + "completed":"2017-01-03T19:46:10.007Z", + "new_balance":"5111.52", + "value":"-73.93" + } + }, + { + "id":"c5ea263d-34da-4a9e-9cd0-bafe8ab24b70", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T05:39:41.751Z", + "completed":"2017-01-05T05:39:41.751Z", + "new_balance":"5058.34", + "value":"-53.18" + } + }, + { + "id":"e6a73bef-0e03-46e4-9301-725f7e46f15b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T09:11:53.252Z", + "completed":"2017-01-05T09:11:53.252Z", + "new_balance":"5014.36", + "value":"-43.98" + } + }, + { + "id":"de3e7f4d-7832-4654-8be5-38c5249a1ccf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:19:23.002Z", + "completed":"2017-01-05T15:19:23.002Z", + "new_balance":"5001.35", + "value":"-13.01" + } + }, + { + "id":"e6715080-efd3-4aa2-8d2c-ecd6e9d476fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T05:06:23.616Z", + "completed":"2017-01-06T05:06:23.616Z", + "new_balance":"4978.66", + "value":"-22.69" + } + }, + { + "id":"b23075ca-aecf-4338-8175-6aeed2fb3148", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T07:20:06.610Z", + "completed":"2017-01-06T07:20:06.610Z", + "new_balance":"4948.78", + "value":"-29.88" + } + }, + { + "id":"44d46f3e-e73d-4271-8b2a-d41bc31eb188", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T23:17:20.810Z", + "completed":"2017-01-07T23:17:20.810Z", + "new_balance":"4909.61", + "value":"-39.17" + } + }, + { + "id":"0505ba0f-c0c8-4bcb-a473-0df0e88847cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T08:29:20.112Z", + "completed":"2017-01-10T08:29:20.112Z", + "new_balance":"4856.43", + "value":"-53.18" + } + }, + { + "id":"6cc28442-d9ed-4e4c-8c10-de73d540fc93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T10:36:48.838Z", + "completed":"2017-01-10T10:36:48.838Z", + "new_balance":"4831.56", + "value":"-24.87" + } + }, + { + "id":"f8b767d8-c301-4598-b955-784db301fddf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T11:23:34.110Z", + "completed":"2017-01-12T11:23:34.110Z", + "new_balance":"4811.49", + "value":"-20.07" + } + }, + { + "id":"a6b13eb5-8a6a-444e-8bc7-244a596cef4c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T16:19:15.952Z", + "completed":"2017-01-12T16:19:15.952Z", + "new_balance":"4772.32", + "value":"-39.17" + } + }, + { + "id":"0b20f7f2-793c-4895-ac62-e0e6d8be3ead", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T21:51:02.973Z", + "completed":"2017-01-12T21:51:02.973Z", + "new_balance":"4747.76", + "value":"-24.56" + } + }, + { + "id":"87237ba8-d366-4bd1-99dc-3acaa1e268b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T08:18:43.736Z", + "completed":"2017-01-15T08:18:43.736Z", + "new_balance":"4731.36", + "value":"-16.40" + } + }, + { + "id":"b69ffb3d-a3ee-4453-aa7c-a2361b8fb131", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T12:17:39.350Z", + "completed":"2017-01-16T12:17:39.350Z", + "new_balance":"4678.18", + "value":"-53.18" + } + }, + { + "id":"e415abc1-36d0-48bc-b336-ff9a96dcf1f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T20:10:50.884Z", + "completed":"2017-01-16T20:10:50.884Z", + "new_balance":"4672.03", + "value":"-6.15" + } + }, + { + "id":"19ee7d80-ec7a-4df8-b726-dd5318d290fe", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T03:05:19.849Z", + "completed":"2017-01-17T03:05:19.849Z", + "new_balance":"4610.85", + "value":"-61.18" + } + }, + { + "id":"122b0e29-ee91-47ae-9b44-d0b61e3c0fbe", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T13:14:21.533Z", + "completed":"2017-01-17T13:14:21.533Z", + "new_balance":"4579.53", + "value":"-31.32" + } + }, + { + "id":"47e3a213-747b-4656-8df6-58035cd11778", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T19:26:28.500Z", + "completed":"2017-01-19T19:26:28.500Z", + "new_balance":"4549.13", + "value":"-30.40" + } + }, + { + "id":"3fca3af9-e248-46b1-ba36-8576ec17aa1a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:59:59.636Z", + "completed":"2017-01-20T19:59:59.636Z", + "new_balance":"4495.95", + "value":"-53.18" + } + }, + { + "id":"2272c09e-50c3-46a3-95fb-f943f0dce50e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T17:58:42.593Z", + "completed":"2017-01-23T17:58:42.593Z", + "new_balance":"4480.12", + "value":"-15.83" + } + }, + { + "id":"a2d6aacf-e4cb-441a-9362-acfd37655fad", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T07:01:11.723Z", + "completed":"2017-01-26T07:01:11.723Z", + "new_balance":"4421.64", + "value":"-58.48" + } + }, + { + "id":"16f11421-43aa-4871-ac41-4e2676953f72", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T21:03:56.944Z", + "completed":"2017-01-27T21:03:56.944Z", + "new_balance":"5610.15", + "value":"1188.51" + } + }, + { + "id":"a6b98c39-f06e-438c-a984-48fb0f683d2b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T12:10:02.997Z", + "completed":"2017-01-28T12:10:02.997Z", + "new_balance":"5575.72", + "value":"-34.43" + } + }, + { + "id":"a641ff78-06a3-4f0e-b822-ad0fc33c4937", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T00:31:31.879Z", + "completed":"2017-01-30T00:31:31.879Z", + "new_balance":"5533.38", + "value":"-42.34" + } + }, + { + "id":"3fce4150-b8a2-440a-a77f-626b4bf3c14a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T00:48:30.007Z", + "completed":"2017-02-03T00:48:30.007Z", + "new_balance":"5498.95", + "value":"-34.43" + } + }, + { + "id":"da2b1ff9-7ec1-47a4-9ba7-bbcb72bfb081", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T01:37:21.762Z", + "completed":"2017-02-03T01:37:21.762Z", + "new_balance":"4988.41", + "value":"-510.54" + } + }, + { + "id":"40fb4f11-cb71-4755-a0a9-6ff6bb0208b9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T04:48:16.077Z", + "completed":"2017-02-03T04:48:16.077Z", + "new_balance":"4914.48", + "value":"-73.93" + } + }, + { + "id":"6dbaa94a-59bc-4d23-a48c-f8dcabd591cf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T18:01:31.374Z", + "completed":"2017-02-03T18:01:31.374Z", + "new_balance":"4889.92", + "value":"-24.56" + } + }, + { + "id":"f81e3937-565c-4b96-a80a-dbb04af3c064", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T04:28:57.775Z", + "completed":"2017-02-08T04:28:57.775Z", + "new_balance":"4836.74", + "value":"-53.18" + } + }, + { + "id":"af515e3c-ed1e-4432-bdac-f8342e0f6b73", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:57:18.027Z", + "completed":"2017-02-08T07:57:18.027Z", + "new_balance":"4792.76", + "value":"-43.98" + } + }, + { + "id":"052289d3-0ff3-4405-b3fc-91fe0cd7dc80", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T22:22:32.988Z", + "completed":"2017-02-11T22:22:32.988Z", + "new_balance":"4803.65", + "value":"10.89" + } + }, + { + "id":"33c99e7c-1a74-40c7-a4c2-b5a06a3276c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T18:47:54.167Z", + "completed":"2017-02-13T18:47:54.167Z", + "new_balance":"4773.77", + "value":"-29.88" + } + }, + { + "id":"8bc1c335-6ead-454c-89d6-48ee03b6b07d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T23:14:49.113Z", + "completed":"2017-02-14T23:14:49.113Z", + "new_balance":"4745.92", + "value":"-27.85" + } + }, + { + "id":"8c728cb9-c638-4c3f-8792-422093054744", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T06:58:40.604Z", + "completed":"2017-02-17T06:58:40.604Z", + "new_balance":"4735.01", + "value":"-10.91" + } + }, + { + "id":"3281c143-997d-4b9b-a8f9-26a4fb5a12a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T06:03:22.687Z", + "completed":"2017-02-21T06:03:22.687Z", + "new_balance":"4693.88", + "value":"-41.13" + } + }, + { + "id":"a1914d7a-9112-4904-8ff2-de061038bc2e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T05:31:45.932Z", + "completed":"2017-02-23T05:31:45.932Z", + "new_balance":"4640.70", + "value":"-53.18" + } + }, + { + "id":"7b1224f1-ccbd-4af3-89a1-a882e8c37a12", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T19:08:35.770Z", + "completed":"2017-02-23T19:08:35.770Z", + "new_balance":"4599.78", + "value":"-40.92" + } + }, + { + "id":"cef888ae-855f-4b9d-b766-fbf97deba730", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T06:24:03.116Z", + "completed":"2017-02-24T06:24:03.116Z", + "new_balance":"4588.87", + "value":"-10.91" + } + }, + { + "id":"a8f436b6-4a45-4856-bc3a-6b235c2738f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T03:02:56.633Z", + "completed":"2017-02-27T03:02:56.633Z", + "new_balance":"4530.39", + "value":"-58.48" + } + }, + { + "id":"c11b0c1c-02d5-49ad-9c1f-4bf4af4aa36c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T18:52:37.158Z", + "completed":"2017-02-27T18:52:37.158Z", + "new_balance":"5718.90", + "value":"1188.51" + } + }, + { + "id":"5d7e2ee5-35f0-4790-b19a-7bc1c9a9c804", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T19:44:07.859Z", + "completed":"2017-02-27T19:44:07.859Z", + "new_balance":"5702.16", + "value":"-16.74" + } + }, + { + "id":"0adb75b1-9f1e-4565-81b9-9dd136a2cfe7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T10:24:18.926Z", + "completed":"2017-02-28T10:24:18.926Z", + "new_balance":"5667.73", + "value":"-34.43" + } + }, + { + "id":"463131ae-49ae-4ea1-a988-0b43d163a5ec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T21:25:02.464Z", + "completed":"2017-02-28T21:25:02.464Z", + "new_balance":"5625.39", + "value":"-42.34" + } + }, + { + "id":"d30ee914-1595-431f-b301-254dc7be718f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:53:56.844Z", + "completed":"2017-03-01T06:53:56.844Z", + "new_balance":"5563.52", + "value":"-61.87" + } + }, + { + "id":"3ff1426a-d6f9-456d-8ad8-686124ae72ef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T11:54:37.782Z", + "completed":"2017-03-03T11:54:37.782Z", + "new_balance":"5529.09", + "value":"-34.43" + } + }, + { + "id":"1382be5c-b095-4d75-b735-f4d5260c8fdf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T12:48:40.706Z", + "completed":"2017-03-03T12:48:40.706Z", + "new_balance":"5018.55", + "value":"-510.54" + } + }, + { + "id":"4ee8515d-0a32-4847-9c5b-46e15cebb7e3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T19:56:59.335Z", + "completed":"2017-03-03T19:56:59.335Z", + "new_balance":"4944.62", + "value":"-73.93" + } + }, + { + "id":"ac17e12f-5b78-43d9-a649-237b1e45cc33", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T22:41:40.405Z", + "completed":"2017-03-03T22:41:40.405Z", + "new_balance":"4920.06", + "value":"-24.56" + } + }, + { + "id":"e9702bd8-d79b-42b1-a079-487197e55c6b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T16:21:57.634Z", + "completed":"2017-03-05T16:21:57.634Z", + "new_balance":"4866.88", + "value":"-53.18" + } + }, + { + "id":"dc250a13-903b-4bd5-955f-8d7c3890b8bf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T22:23:07.431Z", + "completed":"2017-03-05T22:23:07.431Z", + "new_balance":"4818.22", + "value":"-48.66" + } + }, + { + "id":"4f8fdb51-272d-4fc6-8cd2-e86dd1a0cd7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T16:54:37.811Z", + "completed":"2017-03-07T16:54:37.811Z", + "new_balance":"4804.55", + "value":"-13.67" + } + }, + { + "id":"fb291276-3d93-4f30-bbff-1ca3cd34dc48", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:57:40.095Z", + "completed":"2017-03-09T10:57:40.095Z", + "new_balance":"4751.37", + "value":"-53.18" + } + }, + { + "id":"fab9c04c-cf18-4049-92e4-f70eb78fd5b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T03:29:39.633Z", + "completed":"2017-03-11T03:29:39.633Z", + "new_balance":"4740.37", + "value":"-11.00" + } + }, + { + "id":"4a251efd-a261-4361-9039-57f3f09844d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T22:26:02.505Z", + "completed":"2017-03-13T22:26:02.505Z", + "new_balance":"4682.69", + "value":"-57.68" + } + }, + { + "id":"bde34e04-d53d-4a38-9748-51d32ddfb61c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:13:36.583Z", + "completed":"2017-03-14T08:13:36.583Z", + "new_balance":"4670.76", + "value":"-11.93" + } + }, + { + "id":"2ae447f3-af3f-441d-9812-3aab94cc142a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T18:56:16.513Z", + "completed":"2017-03-14T18:56:16.513Z", + "new_balance":"4734.12", + "value":"63.36" + } + }, + { + "id":"48783686-f621-4bd7-959a-007526e134e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T19:32:06.409Z", + "completed":"2017-03-15T19:32:06.409Z", + "new_balance":"4691.78", + "value":"-42.34" + } + }, + { + "id":"a620e545-db45-4cb8-a479-e91c2c9e9e50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T03:17:19.287Z", + "completed":"2017-03-26T03:17:19.287Z", + "new_balance":"4664.94", + "value":"-26.84" + } + }, + { + "id":"de893111-d2af-4801-842a-a88321bdf79d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T11:54:41.230Z", + "completed":"2017-03-26T11:54:41.230Z", + "new_balance":"4618.01", + "value":"-46.93" + } + }, + { + "id":"f8de7ea3-9095-4ce6-aa4f-a4adbc17a757", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T16:07:19.401Z", + "completed":"2017-03-26T16:07:19.401Z", + "new_balance":"4592.64", + "value":"-25.37" + } + }, + { + "id":"72c7cdb7-1e4a-4741-9ceb-42bfa1580bb9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T08:25:59.919Z", + "completed":"2017-03-27T08:25:59.919Z", + "new_balance":"5781.15", + "value":"1188.51" + } + }, + { + "id":"35f91fae-ee44-47bf-8ffc-607c14074b2e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T10:50:47.226Z", + "completed":"2017-03-27T10:50:47.226Z", + "new_balance":"5727.97", + "value":"-53.18" + } + }, + { + "id":"d9490fa4-2376-45af-9cde-23403eab9c76", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T18:11:10.246Z", + "completed":"2017-03-27T18:11:10.246Z", + "new_balance":"5661.39", + "value":"-66.58" + } + }, + { + "id":"7a88f035-d45f-44ac-96d3-c2436df10315", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T15:27:30.427Z", + "completed":"2017-03-28T15:27:30.427Z", + "new_balance":"5626.96", + "value":"-34.43" + } + }, + { + "id":"0d604146-11ea-4c23-baee-282474502ae9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T06:47:22.024Z", + "completed":"2017-03-30T06:47:22.024Z", + "new_balance":"5584.62", + "value":"-42.34" + } + }, + { + "id":"0fbc3617-8c88-45b7-933d-53771256b89f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T04:15:42.924Z", + "completed":"2017-04-01T04:15:42.924Z", + "new_balance":"5560.06", + "value":"-24.56" + } + }, + { + "id":"d2032574-a1c6-4b86-b134-883857722066", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T08:21:50.169Z", + "completed":"2017-04-01T08:21:50.169Z", + "new_balance":"5486.13", + "value":"-73.93" + } + }, + { + "id":"8d131328-f321-4c0d-bc19-71e9ce93ddcb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T14:00:19.734Z", + "completed":"2017-04-01T14:00:19.734Z", + "new_balance":"4975.59", + "value":"-510.54" + } + }, + { + "id":"6f5e027c-595a-48f3-be25-fda8b1433813", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T16:50:52.840Z", + "completed":"2017-04-01T16:50:52.840Z", + "new_balance":"4941.16", + "value":"-34.43" + } + }, + { + "id":"e081c05e-0fdb-41b3-b38b-925dfcfc3438", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T18:24:06.435Z", + "completed":"2017-04-01T18:24:06.435Z", + "new_balance":"4879.29", + "value":"-61.87" + } + }, + { + "id":"75e38276-6d94-4c41-af7b-d370dd5b76a4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T01:17:57.708Z", + "completed":"2017-04-05T01:17:57.708Z", + "new_balance":"4826.11", + "value":"-53.18" + } + }, + { + "id":"4d12e138-767a-4d63-8d74-e4f570029f57", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T03:39:47.336Z", + "completed":"2017-04-05T03:39:47.336Z", + "new_balance":"4813.10", + "value":"-13.01" + } + }, + { + "id":"9f6c248b-f6a8-4c32-ad74-e5a2b40db6fd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T20:20:19.892Z", + "completed":"2017-04-05T20:20:19.892Z", + "new_balance":"4790.41", + "value":"-22.69" + } + }, + { + "id":"67e26d54-033a-4357-aba2-a8044fe296d5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T21:15:49.301Z", + "completed":"2017-04-05T21:15:49.301Z", + "new_balance":"4746.43", + "value":"-43.98" + } + }, + { + "id":"55cf31d6-830d-4928-a6fd-3658e1da3c4d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T03:52:06.408Z", + "completed":"2017-04-07T03:52:06.408Z", + "new_balance":"4716.55", + "value":"-29.88" + } + }, + { + "id":"1d09cac5-c20e-43c3-93cf-85662e3cab1d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T01:34:13.111Z", + "completed":"2017-04-09T01:34:13.111Z", + "new_balance":"4663.37", + "value":"-53.18" + } + }, + { + "id":"dff27c80-c425-4290-a4c5-73422b9bbaf0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T09:56:34.038Z", + "completed":"2017-04-09T09:56:34.038Z", + "new_balance":"4638.50", + "value":"-24.87" + } + }, + { + "id":"f28a843b-5f98-4268-b92c-a891093dbaf2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T01:35:29.723Z", + "completed":"2017-04-10T01:35:29.723Z", + "new_balance":"4618.43", + "value":"-20.07" + } + }, + { + "id":"787d803c-b217-46a6-9714-01abc585a13e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T10:24:21.998Z", + "completed":"2017-04-10T10:24:21.998Z", + "new_balance":"4602.03", + "value":"-16.40" + } + }, + { + "id":"2f09597e-0e1c-464d-b78c-5e5d4293b1b9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T16:57:21.640Z", + "completed":"2017-04-10T16:57:21.640Z", + "new_balance":"4577.47", + "value":"-24.56" + } + }, + { + "id":"20e10d96-9e7b-4f6b-921a-e9ffb4803490", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T18:43:17.211Z", + "completed":"2017-04-10T18:43:17.211Z", + "new_balance":"4538.30", + "value":"-39.17" + } + }, + { + "id":"43dfcc0f-2d7f-4f19-830c-e7f40c11c1f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T00:50:13.218Z", + "completed":"2017-04-11T00:50:13.218Z", + "new_balance":"4477.12", + "value":"-61.18" + } + }, + { + "id":"6d0a71f0-4237-4b93-99b0-83285ab31c91", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T02:57:41.088Z", + "completed":"2017-04-11T02:57:41.088Z", + "new_balance":"4446.72", + "value":"-30.40" + } + }, + { + "id":"d6afc1d7-e83c-4284-bfca-d7cae4bd5e49", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T11:14:58.203Z", + "completed":"2017-04-11T11:14:58.203Z", + "new_balance":"4440.57", + "value":"-6.15" + } + }, + { + "id":"5b72246f-0e1e-4177-b382-2433b6230f14", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T13:49:36.096Z", + "completed":"2017-04-11T13:49:36.096Z", + "new_balance":"4387.39", + "value":"-53.18" + } + }, + { + "id":"6579ce78-cb85-47c0-8c7c-e06c1dd347c5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T20:40:42.476Z", + "completed":"2017-04-11T20:40:42.476Z", + "new_balance":"4356.07", + "value":"-31.32" + } + }, + { + "id":"bb84244d-c268-45e4-a1e6-61b79c31f0fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T01:58:20.691Z", + "completed":"2017-04-21T01:58:20.691Z", + "new_balance":"4302.89", + "value":"-53.18" + } + }, + { + "id":"671f330c-e615-4267-b247-435de497ddd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T17:23:07.185Z", + "completed":"2017-04-23T17:23:07.185Z", + "new_balance":"4287.06", + "value":"-15.83" + } + }, + { + "id":"29fb909c-57f6-43e6-a9d2-f5289eafd3b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T10:02:28.275Z", + "completed":"2017-04-29T10:02:28.275Z", + "new_balance":"4252.63", + "value":"-34.43" + } + }, + { + "id":"02c075bc-2da2-49a4-851a-5e716ef8c5d2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T15:32:42.539Z", + "completed":"2017-04-29T15:32:42.539Z", + "new_balance":"4194.15", + "value":"-58.48" + } + }, + { + "id":"e689d81b-e5ce-446d-badf-45f916aeeb18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T20:48:05.058Z", + "completed":"2017-04-29T20:48:05.058Z", + "new_balance":"5382.66", + "value":"1188.51" + } + }, + { + "id":"9999ef01-da3c-471d-bcf8-36faa5218918", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T11:28:27.358Z", + "completed":"2017-04-30T11:28:27.358Z", + "new_balance":"5340.32", + "value":"-42.34" + } + }, + { + "id":"b9faff10-6b20-45e3-b44e-7ffc408e6a38", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T00:22:30.623Z", + "completed":"2017-05-02T00:22:30.623Z", + "new_balance":"5315.76", + "value":"-24.56" + } + }, + { + "id":"a56457a7-3a4e-4abc-81f4-8b8b0e7af881", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T11:51:18.899Z", + "completed":"2017-05-02T11:51:18.899Z", + "new_balance":"4805.22", + "value":"-510.54" + } + }, + { + "id":"2431219c-39f5-455f-8fa7-34c394363f67", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T17:35:18.907Z", + "completed":"2017-05-02T17:35:18.907Z", + "new_balance":"4743.35", + "value":"-61.87" + } + }, + { + "id":"60cb8a6c-7e95-4e1c-b54a-c87f6215e1cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:58:25.832Z", + "completed":"2017-05-02T23:58:25.832Z", + "new_balance":"4669.42", + "value":"-73.93" + } + }, + { + "id":"68b3a1c8-d239-4149-a6b4-690b58bf0929", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T05:57:29.696Z", + "completed":"2017-05-06T05:57:29.696Z", + "new_balance":"4625.44", + "value":"-43.98" + } + }, + { + "id":"53b086c2-5711-4246-83c3-58bf4bc00f5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:31:06.396Z", + "completed":"2017-05-07T02:31:06.396Z", + "new_balance":"4584.31", + "value":"-41.13" + } + }, + { + "id":"65a1d08e-42d1-4655-ad2c-e538e7d9f0c3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T06:12:21.822Z", + "completed":"2017-05-07T06:12:21.822Z", + "new_balance":"4573.40", + "value":"-10.91" + } + }, + { + "id":"c9e5aff1-85ad-417f-8d7b-a667803f8478", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T19:24:49.345Z", + "completed":"2017-05-07T19:24:49.345Z", + "new_balance":"4545.55", + "value":"-27.85" + } + }, + { + "id":"9d06dab5-d9e5-40e0-b42b-43942ad282d0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T19:58:12.090Z", + "completed":"2017-05-07T19:58:12.090Z", + "new_balance":"4515.67", + "value":"-29.88" + } + }, + { + "id":"a1f46357-9a00-4cb0-a3ea-091a0e20ef6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T04:20:14.654Z", + "completed":"2017-05-08T04:20:14.654Z", + "new_balance":"4474.75", + "value":"-40.92" + } + }, + { + "id":"8171f0d5-d442-4690-86c6-29eb1b66330a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T15:15:50.007Z", + "completed":"2017-05-09T15:15:50.007Z", + "new_balance":"4440.32", + "value":"-34.43" + } + }, + { + "id":"404ab1f7-8059-4b7a-8d30-1fb6289dac35", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T08:01:56.602Z", + "completed":"2017-05-13T08:01:56.602Z", + "new_balance":"4387.14", + "value":"-53.18" + } + }, + { + "id":"b8e541f8-0781-445d-82c4-29a37541d3d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T18:27:08.525Z", + "completed":"2017-05-26T18:27:08.525Z", + "new_balance":"4333.96", + "value":"-53.18" + } + }, + { + "id":"9e4f6eb8-f8ae-45c0-8271-b83412a196b8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:33:19.084Z", + "completed":"2017-05-26T19:33:19.084Z", + "new_balance":"4323.05", + "value":"-10.91" + } + }, + { + "id":"1831f90c-41d9-46ee-b3d4-6b8347024ab2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T08:04:11.123Z", + "completed":"2017-05-27T08:04:11.123Z", + "new_balance":"4306.31", + "value":"-16.74" + } + }, + { + "id":"772b3666-04a1-48e5-869d-39c39089d95f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T19:37:08.281Z", + "completed":"2017-05-27T19:37:08.281Z", + "new_balance":"4247.83", + "value":"-58.48" + } + }, + { + "id":"7c4f3e82-3cc5-40bb-90ba-087326231b9e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T03:03:05.867Z", + "completed":"2017-05-30T03:03:05.867Z", + "new_balance":"4213.40", + "value":"-34.43" + } + }, + { + "id":"c1f86742-01fa-43f5-ad13-dbb3d859dbc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T11:01:37.195Z", + "completed":"2017-05-30T11:01:37.195Z", + "new_balance":"4171.06", + "value":"-42.34" + } + }, + { + "id":"41e79ca9-4743-479f-9e2a-17691e712604", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T19:59:48.735Z", + "completed":"2017-05-30T19:59:48.735Z", + "new_balance":"5359.57", + "value":"1188.51" + } + }, + { + "id":"339f0dac-be6b-4de1-98a1-922c162ea926", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T02:57:17.378Z", + "completed":"2017-06-01T02:57:17.378Z", + "new_balance":"5306.39", + "value":"-53.18" + } + }, + { + "id":"ca6fabdb-e23f-4b76-babc-748813326974", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:22:28.465Z", + "completed":"2017-06-01T04:22:28.465Z", + "new_balance":"5232.46", + "value":"-73.93" + } + }, + { + "id":"d7809bd1-0608-4d1f-ad5e-b4eeaa235176", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T05:42:09.627Z", + "completed":"2017-06-01T05:42:09.627Z", + "new_balance":"5179.28", + "value":"-53.18" + } + }, + { + "id":"e75df02d-ec1b-4a28-b157-10f4bdebd979", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T08:00:30.051Z", + "completed":"2017-06-01T08:00:30.051Z", + "new_balance":"5154.72", + "value":"-24.56" + } + }, + { + "id":"96516ef2-62cb-4ae7-83e4-42ef5c76335e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T12:07:54.937Z", + "completed":"2017-06-01T12:07:54.937Z", + "new_balance":"5141.05", + "value":"-13.67" + } + }, + { + "id":"f6b098a5-5242-434f-b4bc-ded5ca8e197f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T15:22:37.445Z", + "completed":"2017-06-01T15:22:37.445Z", + "new_balance":"4630.51", + "value":"-510.54" + } + }, + { + "id":"b6fc180b-f09c-4641-803d-96853deaf2cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T17:22:02.017Z", + "completed":"2017-06-01T17:22:02.017Z", + "new_balance":"4568.64", + "value":"-61.87" + } + }, + { + "id":"04a4c4d0-1f85-4684-a948-9dd7f9f8fe3b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T20:58:50.285Z", + "completed":"2017-06-01T20:58:50.285Z", + "new_balance":"4519.98", + "value":"-48.66" + } + }, + { + "id":"ead43a05-2878-441b-b10f-8a28cdbb144c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T22:13:53.625Z", + "completed":"2017-06-01T22:13:53.625Z", + "new_balance":"4485.55", + "value":"-34.43" + } + }, + { + "id":"aefda03d-fd82-42aa-90ba-c92c4776adba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T08:38:50.328Z", + "completed":"2017-06-02T08:38:50.328Z", + "new_balance":"4427.87", + "value":"-57.68" + } + }, + { + "id":"59510d9e-3fd2-4cb1-827a-aeadcc71be2c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T23:19:33.561Z", + "completed":"2017-06-02T23:19:33.561Z", + "new_balance":"4416.87", + "value":"-11.00" + } + }, + { + "id":"b1ddb3f1-31b5-46a7-ad3f-454b48ae3a8a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:22:54.581Z", + "completed":"2017-06-02T23:22:54.581Z", + "new_balance":"4404.94", + "value":"-11.93" + } + }, + { + "id":"fbfa7ad8-a568-4e62-8aa8-e125258ff345", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T12:06:36.219Z", + "completed":"2017-06-04T12:06:36.219Z", + "new_balance":"4379.57", + "value":"-25.37" + } + }, + { + "id":"2bfd18cb-0263-498a-a00d-7b55736085cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T14:48:59.881Z", + "completed":"2017-06-04T14:48:59.881Z", + "new_balance":"4337.23", + "value":"-42.34" + } + }, + { + "id":"01f74e2d-69bf-4860-b08f-2e426e2c928f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T18:52:10.773Z", + "completed":"2017-06-04T18:52:10.773Z", + "new_balance":"4290.30", + "value":"-46.93" + } + }, + { + "id":"197aa29c-b0f7-4ab1-a5bb-993dd16b18cb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T02:27:17.645Z", + "completed":"2017-06-05T02:27:17.645Z", + "new_balance":"4263.46", + "value":"-26.84" + } + }, + { + "id":"423a3f76-8308-40d7-a7a3-77a265669b7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T13:30:29.823Z", + "completed":"2017-06-05T13:30:29.823Z", + "new_balance":"4196.88", + "value":"-66.58" + } + }, + { + "id":"d1672d9d-decc-4fcb-b9cd-b61799953acc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T19:50:04.236Z", + "completed":"2017-06-18T19:50:04.236Z", + "new_balance":"4143.70", + "value":"-53.18" + } + }, + { + "id":"2b5bb33d-f4f6-4520-b55e-2ae631150d9b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T06:10:22.419Z", + "completed":"2017-06-30T06:10:22.419Z", + "new_balance":"4101.36", + "value":"-42.34" + } + }, + { + "id":"71ca4608-b71d-4cd8-8057-e43a24bfc5f4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T13:17:12.535Z", + "completed":"2017-06-30T13:17:12.535Z", + "new_balance":"4059.83", + "value":"-41.53" + } + }, + { + "id":"e3819f53-5f64-4e8c-9aa8-d184077b03b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T16:33:13.157Z", + "completed":"2017-06-30T16:33:13.157Z", + "new_balance":"5248.34", + "value":"1188.51" + } + }, + { + "id":"e280aee4-ed5a-4f44-8e3b-f31d63fe150a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T18:41:15.667Z", + "completed":"2017-06-30T18:41:15.667Z", + "new_balance":"5213.91", + "value":"-34.43" + } + }, + { + "id":"1e550935-62ac-43ed-bd17-933e907430ba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T15:52:52.260Z", + "completed":"2017-07-01T15:52:52.260Z", + "new_balance":"5152.04", + "value":"-61.87" + } + }, + { + "id":"0e13dd97-e1c1-44e7-8cce-3eee28c37bd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T09:14:00.430Z", + "completed":"2017-07-03T09:14:00.430Z", + "new_balance":"4641.50", + "value":"-510.54" + } + }, + { + "id":"0d822288-985a-4927-a63f-c527a428e4a1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T10:59:06.063Z", + "completed":"2017-07-03T10:59:06.063Z", + "new_balance":"4616.94", + "value":"-24.56" + } + }, + { + "id":"e768ec4e-c5b1-4ba1-bde8-96ca18bbfcb1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T14:41:19.091Z", + "completed":"2017-07-03T14:41:19.091Z", + "new_balance":"4543.01", + "value":"-73.93" + } + }, + { + "id":"a8629dd1-311a-419a-90cc-027d2ebf5a0d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T19:32:14.414Z", + "completed":"2017-07-03T19:32:14.414Z", + "new_balance":"4508.58", + "value":"-34.43" + } + }, + { + "id":"ef741ff8-819e-46fe-a2b4-539a0e7d85d2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T10:32:43.636Z", + "completed":"2017-07-05T10:32:43.636Z", + "new_balance":"4455.40", + "value":"-53.18" + } + }, + { + "id":"b40bd944-e19c-448e-aeb3-1178ac76f50a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T12:05:52.225Z", + "completed":"2017-07-05T12:05:52.225Z", + "new_balance":"4411.42", + "value":"-43.98" + } + }, + { + "id":"a36b09d7-c60c-4520-9939-084148463251", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T20:01:32.146Z", + "completed":"2017-07-05T20:01:32.146Z", + "new_balance":"4398.41", + "value":"-13.01" + } + }, + { + "id":"66cd9a45-00f6-47f3-bb5d-5ad83a789642", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T00:01:11.066Z", + "completed":"2017-07-06T00:01:11.066Z", + "new_balance":"4368.53", + "value":"-29.88" + } + }, + { + "id":"d508db08-06f2-4f63-a24a-ed6d40bcd889", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T04:00:39.512Z", + "completed":"2017-07-06T04:00:39.512Z", + "new_balance":"4345.84", + "value":"-22.69" + } + }, + { + "id":"cdadbde5-ad75-44a0-9bbf-b3acd76d9d18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T08:52:49.348Z", + "completed":"2017-07-07T08:52:49.348Z", + "new_balance":"4306.67", + "value":"-39.17" + } + }, + { + "id":"a8dbdf07-99c7-4af0-bfbc-7a62c903bdd4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T10:35:37.725Z", + "completed":"2017-07-10T10:35:37.725Z", + "new_balance":"4253.49", + "value":"-53.18" + } + }, + { + "id":"1c145f7a-5b81-4b00-8b7a-0e9359a8bd87", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T10:49:38.709Z", + "completed":"2017-07-10T10:49:38.709Z", + "new_balance":"4228.62", + "value":"-24.87" + } + }, + { + "id":"e6aa1dd3-cd6c-4b99-a2d8-844a9b366ba3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T04:40:56.623Z", + "completed":"2017-07-12T04:40:56.623Z", + "new_balance":"4208.55", + "value":"-20.07" + } + }, + { + "id":"3303ef8a-e613-4cd9-bb9a-9d90db043eda", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T15:04:30.880Z", + "completed":"2017-07-12T15:04:30.880Z", + "new_balance":"4183.99", + "value":"-24.56" + } + }, + { + "id":"fb2b5782-013c-483c-b794-20ac5e2624e5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T17:29:20.868Z", + "completed":"2017-07-12T17:29:20.868Z", + "new_balance":"4144.82", + "value":"-39.17" + } + }, + { + "id":"3cf1349b-6618-4fd2-851d-2226e985f8f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T15:43:17.695Z", + "completed":"2017-07-15T15:43:17.695Z", + "new_balance":"4128.42", + "value":"-16.40" + } + }, + { + "id":"0bb89334-fdec-4166-85a4-2c7ae9a04ae7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T02:34:39.554Z", + "completed":"2017-07-16T02:34:39.554Z", + "new_balance":"4075.24", + "value":"-53.18" + } + }, + { + "id":"1c6e50d3-4495-4f7b-b394-1376766573e9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T14:06:35.769Z", + "completed":"2017-07-16T14:06:35.769Z", + "new_balance":"4069.09", + "value":"-6.15" + } + }, + { + "id":"c1613a24-18d0-43ce-874a-293567d02505", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T00:57:57.799Z", + "completed":"2017-07-17T00:57:57.799Z", + "new_balance":"4007.91", + "value":"-61.18" + } + }, + { + "id":"d8695d07-2cf2-424d-84b3-683de24d2af8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T16:44:02.403Z", + "completed":"2017-07-17T16:44:02.403Z", + "new_balance":"3976.59", + "value":"-31.32" + } + }, + { + "id":"d8aed5b1-895e-4799-ba14-6a6abd57b70d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T06:35:26.301Z", + "completed":"2017-07-19T06:35:26.301Z", + "new_balance":"3946.19", + "value":"-30.40" + } + }, + { + "id":"bc6b6e4d-454e-4751-a320-3912e26192fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T14:30:16.548Z", + "completed":"2017-07-20T14:30:16.548Z", + "new_balance":"3893.01", + "value":"-53.18" + } + }, + { + "id":"594b565d-e18b-4898-a224-36fd2089d139", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T01:30:35.309Z", + "completed":"2017-07-23T01:30:35.309Z", + "new_balance":"3877.18", + "value":"-15.83" + } + }, + { + "id":"5e44132e-7590-4681-80c9-ed5f8e7ef8f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T01:09:41.879Z", + "completed":"2017-07-26T01:09:41.879Z", + "new_balance":"3818.70", + "value":"-58.48" + } + }, + { + "id":"12e158e7-c3ac-4090-8a22-8a4cf21e08a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T03:19:21.430Z", + "completed":"2017-07-27T03:19:21.430Z", + "new_balance":"5007.21", + "value":"1188.51" + } + }, + { + "id":"12d2b9ad-93d1-42eb-8e49-327462fc807c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T15:09:45.125Z", + "completed":"2017-07-28T15:09:45.125Z", + "new_balance":"4972.78", + "value":"-34.43" + } + }, + { + "id":"78eca58c-863d-48f1-a3e6-2c71672d2d9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T18:43:06.754Z", + "completed":"2017-07-30T18:43:06.754Z", + "new_balance":"4930.44", + "value":"-42.34" + } + }, + { + "id":"ac6146c9-79e0-4fe8-8c78-ea1a08d0b453", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T15:53:38.257Z", + "completed":"2017-08-01T15:53:38.257Z", + "new_balance":"4868.57", + "value":"-61.87" + } + }, + { + "id":"84ffaaec-76cf-401b-9bb5-fab98ac4fab5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T00:25:10.744Z", + "completed":"2017-08-03T00:25:10.744Z", + "new_balance":"4834.14", + "value":"-34.43" + } + }, + { + "id":"a49c5c72-873f-436b-9a11-7b98cdc19682", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T02:07:57.118Z", + "completed":"2017-08-03T02:07:57.118Z", + "new_balance":"4323.60", + "value":"-510.54" + } + }, + { + "id":"e5c56209-d9af-453c-ab0e-1b70b07f5b09", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T11:37:57.261Z", + "completed":"2017-08-03T11:37:57.261Z", + "new_balance":"4249.67", + "value":"-73.93" + } + }, + { + "id":"cf22059c-56f2-4fb3-9fcf-22aa134947fd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T22:50:49.928Z", + "completed":"2017-08-03T22:50:49.928Z", + "new_balance":"4225.11", + "value":"-24.56" + } + }, + { + "id":"c12270fb-affd-4cb6-87da-d37bcc5f62fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T00:44:13.083Z", + "completed":"2017-08-08T00:44:13.083Z", + "new_balance":"4171.93", + "value":"-53.18" + } + }, + { + "id":"e9972e58-ef2e-4322-9e55-9487c377b9d4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:36:30.505Z", + "completed":"2017-08-08T16:36:30.505Z", + "new_balance":"4127.95", + "value":"-43.98" + } + }, + { + "id":"c172e3af-ca12-47ba-9e24-53f3d410b872", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T11:42:49.728Z", + "completed":"2017-08-11T11:42:49.728Z", + "new_balance":"4138.84", + "value":"10.89" + } + }, + { + "id":"7a54ca79-88fd-4b84-bf34-d395bff76bf6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T18:36:42.029Z", + "completed":"2017-08-13T18:36:42.029Z", + "new_balance":"4108.96", + "value":"-29.88" + } + }, + { + "id":"717ac98a-817e-4032-94c9-75f292f8c427", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T06:39:47.271Z", + "completed":"2017-08-14T06:39:47.271Z", + "new_balance":"4081.11", + "value":"-27.85" + } + }, + { + "id":"580e7dd8-24ea-4ffa-9b07-cc4e72255bef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:06:52.904Z", + "completed":"2017-08-17T15:06:52.904Z", + "new_balance":"4070.20", + "value":"-10.91" + } + }, + { + "id":"8b87fedb-b60a-45e6-850d-cf15b444b878", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T08:18:40.047Z", + "completed":"2017-08-21T08:18:40.047Z", + "new_balance":"4029.07", + "value":"-41.13" + } + }, + { + "id":"329967a4-29e0-4b20-a1ec-6e579aca4629", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T08:30:24.564Z", + "completed":"2017-08-23T08:30:24.564Z", + "new_balance":"3988.15", + "value":"-40.92" + } + }, + { + "id":"ae0b46be-f6c6-43c8-b5bb-f6e8b9b22c93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T09:10:58.178Z", + "completed":"2017-08-23T09:10:58.178Z", + "new_balance":"3934.97", + "value":"-53.18" + } + }, + { + "id":"e2df8523-7910-469d-b19d-64cdf0ef83bf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T00:02:23.227Z", + "completed":"2017-08-24T00:02:23.227Z", + "new_balance":"3924.06", + "value":"-10.91" + } + }, + { + "id":"7f19d94f-3eb3-4102-93ff-bddd76fd24ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T04:37:45.769Z", + "completed":"2017-08-27T04:37:45.769Z", + "new_balance":"5112.57", + "value":"1188.51" + } + }, + { + "id":"50c3f4f4-55ca-41dd-b7ab-7d1635a57de3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T19:52:55.779Z", + "completed":"2017-08-27T19:52:55.779Z", + "new_balance":"5095.83", + "value":"-16.74" + } + }, + { + "id":"84e77c41-7ec2-4a8a-88db-96acc9e75f2b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T22:58:34.772Z", + "completed":"2017-08-27T22:58:34.772Z", + "new_balance":"5037.35", + "value":"-58.48" + } + }, + { + "id":"6be3ed0b-31d5-4b89-a734-ca5b0cc20a53", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T01:40:20.185Z", + "completed":"2017-08-28T01:40:20.185Z", + "new_balance":"5002.92", + "value":"-34.43" + } + }, + { + "id":"d2c81a4c-2046-43c4-bd1a-3b60ce7da98e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T09:15:41.870Z", + "completed":"2017-08-30T09:15:41.870Z", + "new_balance":"4960.58", + "value":"-42.34" + } + }, + { + "id":"d176c018-e533-4b19-a195-e3516a50a475", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:56:59.655Z", + "completed":"2017-09-01T14:56:59.655Z", + "new_balance":"4898.71", + "value":"-61.87" + } + }, + { + "id":"d4536c43-3ba0-47ab-acdc-9fdb22d4ac89", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T04:28:39.636Z", + "completed":"2017-09-03T04:28:39.636Z", + "new_balance":"4824.78", + "value":"-73.93" + } + }, + { + "id":"909fe703-b77e-4b72-b937-eb6e3a0f257c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T09:41:51.260Z", + "completed":"2017-09-03T09:41:51.260Z", + "new_balance":"4790.35", + "value":"-34.43" + } + }, + { + "id":"0613cbbf-13f1-47cc-b5ad-38ed45f8f864", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T16:30:14.999Z", + "completed":"2017-09-03T16:30:14.999Z", + "new_balance":"4765.79", + "value":"-24.56" + } + }, + { + "id":"08e34e06-ca56-4ee7-a16d-ee8596874e6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T20:03:06.772Z", + "completed":"2017-09-03T20:03:06.772Z", + "new_balance":"4255.25", + "value":"-510.54" + } + }, + { + "id":"f7169388-0241-4df8-b502-65d7603bc977", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T03:48:23.057Z", + "completed":"2017-09-05T03:48:23.057Z", + "new_balance":"4202.07", + "value":"-53.18" + } + }, + { + "id":"49bda59e-ecea-4851-baa6-eda194317592", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T19:18:51.245Z", + "completed":"2017-09-05T19:18:51.245Z", + "new_balance":"4153.41", + "value":"-48.66" + } + }, + { + "id":"2afd45af-94c2-486a-a34e-5b5f355ae94f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T00:28:29.920Z", + "completed":"2017-09-07T00:28:29.920Z", + "new_balance":"4139.74", + "value":"-13.67" + } + }, + { + "id":"a71a3cc0-faa7-4970-b569-df31590bf448", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T10:31:06.607Z", + "completed":"2017-09-09T10:31:06.607Z", + "new_balance":"4086.56", + "value":"-53.18" + } + }, + { + "id":"e2e012cc-b365-4551-a904-f493d3222d63", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T21:23:08.545Z", + "completed":"2017-09-11T21:23:08.545Z", + "new_balance":"4075.56", + "value":"-11.00" + } + }, + { + "id":"b04178eb-a698-45c3-ad6c-c320c4d5ab9c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T19:24:42.620Z", + "completed":"2017-09-13T19:24:42.620Z", + "new_balance":"4017.88", + "value":"-57.68" + } + }, + { + "id":"366d96d1-373a-43b6-acbf-5d6c7f487e47", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T02:00:50.084Z", + "completed":"2017-09-14T02:00:50.084Z", + "new_balance":"4005.95", + "value":"-11.93" + } + }, + { + "id":"c3e798a7-73d3-4d83-802f-cf76635d6626", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:51:57.175Z", + "completed":"2017-09-14T17:51:57.175Z", + "new_balance":"4069.31", + "value":"63.36" + } + }, + { + "id":"45c5e0e5-f36d-42d6-913c-cc3baebd932e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T04:08:01.098Z", + "completed":"2017-09-15T04:08:01.098Z", + "new_balance":"4026.97", + "value":"-42.34" + } + }, + { + "id":"727dd1e1-52e6-442b-a028-8a2a5684c66e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T02:26:44.416Z", + "completed":"2017-09-26T02:26:44.416Z", + "new_balance":"4001.60", + "value":"-25.37" + } + }, + { + "id":"8574c528-b0ae-4370-bb7d-21fcda09ab9d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T02:26:57.571Z", + "completed":"2017-09-26T02:26:57.571Z", + "new_balance":"3954.67", + "value":"-46.93" + } + }, + { + "id":"406f9bc1-e9ee-4820-9a61-056c9312114d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T04:02:56.262Z", + "completed":"2017-09-26T04:02:56.262Z", + "new_balance":"3927.83", + "value":"-26.84" + } + }, + { + "id":"0c162fe7-08a9-4917-920f-057c0c164e06", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T02:20:42.585Z", + "completed":"2017-09-27T02:20:42.585Z", + "new_balance":"3874.65", + "value":"-53.18" + } + }, + { + "id":"a023e3bd-eeea-42c9-ab2a-72d0b33c8f47", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T06:26:54.783Z", + "completed":"2017-09-27T06:26:54.783Z", + "new_balance":"3808.07", + "value":"-66.58" + } + }, + { + "id":"16ed17af-5f69-4f48-93df-d7748a8b06fa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T21:29:37.168Z", + "completed":"2017-09-27T21:29:37.168Z", + "new_balance":"4996.58", + "value":"1188.51" + } + }, + { + "id":"420502a7-ee41-4c61-a92d-dfea01ad0d86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T03:01:05.680Z", + "completed":"2017-09-28T03:01:05.680Z", + "new_balance":"4962.15", + "value":"-34.43" + } + }, + { + "id":"577afdb8-3470-4d99-ae1c-6034e31005f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:34:58.971Z", + "completed":"2017-09-30T12:34:58.971Z", + "new_balance":"4919.81", + "value":"-42.34" + } + }, + { + "id":"6e65baad-c40b-4a60-91e2-b8369e7beb01", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T00:36:19.583Z", + "completed":"2017-10-01T00:36:19.583Z", + "new_balance":"4409.27", + "value":"-510.54" + } + }, + { + "id":"09edf4a1-535a-491d-a067-403414e4ec0f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T07:53:33.507Z", + "completed":"2017-10-01T07:53:33.507Z", + "new_balance":"4384.71", + "value":"-24.56" + } + }, + { + "id":"af718d53-6c51-45a0-ae3e-c29daf583fe4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T08:50:02.196Z", + "completed":"2017-10-01T08:50:02.196Z", + "new_balance":"4350.28", + "value":"-34.43" + } + }, + { + "id":"ae2049f7-d941-48b7-9acb-7ad4304b0c38", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T17:38:56.395Z", + "completed":"2017-10-01T17:38:56.395Z", + "new_balance":"4288.41", + "value":"-61.87" + } + }, + { + "id":"c78aae40-7707-4045-9268-aad647cf8427", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T20:02:09.381Z", + "completed":"2017-10-01T20:02:09.381Z", + "new_balance":"4214.48", + "value":"-73.93" + } + }, + { + "id":"fe480793-036c-4579-958e-74d49d6770a4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T06:42:45.210Z", + "completed":"2017-10-05T06:42:45.210Z", + "new_balance":"4191.79", + "value":"-22.69" + } + }, + { + "id":"56da0cf3-df96-44dd-b94d-24cd56161564", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T16:06:57.249Z", + "completed":"2017-10-05T16:06:57.249Z", + "new_balance":"4138.61", + "value":"-53.18" + } + }, + { + "id":"4cc4b7d0-d54f-4ab8-bbe6-d4b15a116dd5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T22:06:40.307Z", + "completed":"2017-10-05T22:06:40.307Z", + "new_balance":"4094.63", + "value":"-43.98" + } + }, + { + "id":"d364527c-a5ba-4757-9fe2-c32d4b1829ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T23:38:09.194Z", + "completed":"2017-10-05T23:38:09.194Z", + "new_balance":"4081.62", + "value":"-13.01" + } + }, + { + "id":"01aa10a9-82b5-457c-af65-99f50087a379", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T21:12:00.693Z", + "completed":"2017-10-07T21:12:00.693Z", + "new_balance":"4051.74", + "value":"-29.88" + } + }, + { + "id":"d1bbc135-6809-4d5d-b30b-e7ad7ff4e09b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T00:11:09.663Z", + "completed":"2017-10-09T00:11:09.663Z", + "new_balance":"4026.87", + "value":"-24.87" + } + }, + { + "id":"61c8f9d3-cd7d-429d-8bba-e4f4f7e30fae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T17:25:02.430Z", + "completed":"2017-10-09T17:25:02.430Z", + "new_balance":"3973.69", + "value":"-53.18" + } + }, + { + "id":"3d88d107-ea86-44da-ae48-434ced6b87ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T03:35:53.880Z", + "completed":"2017-10-10T03:35:53.880Z", + "new_balance":"3934.52", + "value":"-39.17" + } + }, + { + "id":"769939c9-16e0-42f5-9723-e6f867eb44c9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T12:24:27.423Z", + "completed":"2017-10-10T12:24:27.423Z", + "new_balance":"3909.96", + "value":"-24.56" + } + }, + { + "id":"a474012e-6349-441c-88a4-9ca3e044d8a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T15:56:03.203Z", + "completed":"2017-10-10T15:56:03.203Z", + "new_balance":"3889.89", + "value":"-20.07" + } + }, + { + "id":"469fa411-5b3e-4ce1-bd5e-5b920a75c0d5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:16:11.734Z", + "completed":"2017-10-10T23:16:11.734Z", + "new_balance":"3873.49", + "value":"-16.40" + } + }, + { + "id":"db16ceac-9431-4cad-aeea-9650e0448679", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T10:10:01.661Z", + "completed":"2017-10-11T10:10:01.661Z", + "new_balance":"3843.09", + "value":"-30.40" + } + }, + { + "id":"1779df86-8fbd-45c0-a4f2-b8f74ca557da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T13:22:44.803Z", + "completed":"2017-10-11T13:22:44.803Z", + "new_balance":"3789.91", + "value":"-53.18" + } + }, + { + "id":"d8161bdc-396e-47d6-95fd-52380531f294", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T18:14:11.143Z", + "completed":"2017-10-11T18:14:11.143Z", + "new_balance":"3783.76", + "value":"-6.15" + } + }, + { + "id":"aa2c8f22-17e9-4ef2-9b64-1d1a318ec143", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T23:05:09.409Z", + "completed":"2017-10-11T23:05:09.409Z", + "new_balance":"3752.44", + "value":"-31.32" + } + }, + { + "id":"e6814a2f-d87d-4289-98be-4abd34743b6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T23:25:50.030Z", + "completed":"2017-10-11T23:25:50.030Z", + "new_balance":"3691.26", + "value":"-61.18" + } + }, + { + "id":"300c5e2c-287a-4e8a-8990-3cba38bdb06b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T21:22:01.687Z", + "completed":"2017-10-21T21:22:01.687Z", + "new_balance":"3638.08", + "value":"-53.18" + } + }, + { + "id":"7fcacfb9-1f2d-4359-8868-e7f0c0f7fdb4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T20:56:40.222Z", + "completed":"2017-10-23T20:56:40.222Z", + "new_balance":"3622.25", + "value":"-15.83" + } + }, + { + "id":"597584bf-f52e-40f3-a67f-c81122226de9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T03:59:53.669Z", + "completed":"2017-10-29T03:59:53.669Z", + "new_balance":"3563.77", + "value":"-58.48" + } + }, + { + "id":"2b9e0d33-bdb4-4785-a307-556c7e458ef9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T20:43:17.417Z", + "completed":"2017-10-29T20:43:17.417Z", + "new_balance":"3529.34", + "value":"-34.43" + } + }, + { + "id":"1c114fe0-8101-46ba-b864-dea18755edd7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T21:04:39.003Z", + "completed":"2017-10-29T21:04:39.003Z", + "new_balance":"4717.85", + "value":"1188.51" + } + }, + { + "id":"4b67cd97-731e-4021-af08-d7e550bce53c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T06:33:04.775Z", + "completed":"2017-10-30T06:33:04.775Z", + "new_balance":"4675.51", + "value":"-42.34" + } + }, + { + "id":"e294ef15-45b3-4b07-9ee8-7842ab0a589a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T04:49:53.590Z", + "completed":"2017-11-02T04:49:53.590Z", + "new_balance":"4164.97", + "value":"-510.54" + } + }, + { + "id":"574df537-bf32-4fff-8689-77363f18ff29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T07:26:26.366Z", + "completed":"2017-11-02T07:26:26.366Z", + "new_balance":"4091.04", + "value":"-73.93" + } + }, + { + "id":"a59a0080-9f49-4c16-9bb5-ae7277f11e74", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T14:40:18.427Z", + "completed":"2017-11-02T14:40:18.427Z", + "new_balance":"4066.48", + "value":"-24.56" + } + }, + { + "id":"f81163fb-4287-4cde-b01a-1af993b57932", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T22:06:20.106Z", + "completed":"2017-11-02T22:06:20.106Z", + "new_balance":"4004.61", + "value":"-61.87" + } + }, + { + "id":"03af86e5-7e8e-4e97-b204-86798681ae7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T22:04:53.865Z", + "completed":"2017-11-06T22:04:53.865Z", + "new_balance":"3960.63", + "value":"-43.98" + } + }, + { + "id":"f0278b76-54b1-400c-8a3d-faf5f2528c4f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T00:55:10.524Z", + "completed":"2017-11-07T00:55:10.524Z", + "new_balance":"3932.78", + "value":"-27.85" + } + }, + { + "id":"1695c23e-927a-4639-bac2-388ca1cf8273", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T07:10:18.011Z", + "completed":"2017-11-07T07:10:18.011Z", + "new_balance":"3921.87", + "value":"-10.91" + } + }, + { + "id":"ebbfd8d3-1f68-4ec5-9309-c4ed5018a32d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T18:09:39.039Z", + "completed":"2017-11-07T18:09:39.039Z", + "new_balance":"3880.74", + "value":"-41.13" + } + }, + { + "id":"9d0d9939-a5c1-4540-917e-5ac76ed910ca", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T18:39:58.314Z", + "completed":"2017-11-07T18:39:58.314Z", + "new_balance":"3850.86", + "value":"-29.88" + } + }, + { + "id":"4a2dc538-88dc-4b2f-bb02-969ae97d57e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T15:27:02.086Z", + "completed":"2017-11-08T15:27:02.086Z", + "new_balance":"3809.94", + "value":"-40.92" + } + }, + { + "id":"7514b4be-843d-4453-a004-88defe630f78", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T20:34:23.517Z", + "completed":"2017-11-09T20:34:23.517Z", + "new_balance":"3775.51", + "value":"-34.43" + } + }, + { + "id":"a3a62670-1616-42c4-b38c-1af3f7369cb5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T06:14:50.788Z", + "completed":"2017-11-13T06:14:50.788Z", + "new_balance":"3722.33", + "value":"-53.18" + } + }, + { + "id":"a6f0a0cb-f7fc-432c-b101-91c9988b6054", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T07:57:23.822Z", + "completed":"2017-11-26T07:57:23.822Z", + "new_balance":"3711.42", + "value":"-10.91" + } + }, + { + "id":"c73f7985-5403-4f1d-a2c1-6a5dbface66f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T20:07:21.145Z", + "completed":"2017-11-26T20:07:21.145Z", + "new_balance":"3658.24", + "value":"-53.18" + } + }, + { + "id":"def65613-0d0b-4558-aac0-7173a11fcb81", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T02:04:49.766Z", + "completed":"2017-11-27T02:04:49.766Z", + "new_balance":"3599.76", + "value":"-58.48" + } + }, + { + "id":"72c979f3-40fb-4960-bcf9-237b98fa273b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T12:55:54.317Z", + "completed":"2017-11-27T12:55:54.317Z", + "new_balance":"3583.02", + "value":"-16.74" + } + }, + { + "id":"4de461b8-c0b0-4ed0-8fcf-a80d1fec8cad", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T02:27:43.691Z", + "completed":"2017-11-30T02:27:43.691Z", + "new_balance":"3540.68", + "value":"-42.34" + } + }, + { + "id":"81030238-e511-4e2c-a60d-7974837b0325", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T08:33:39.025Z", + "completed":"2017-11-30T08:33:39.025Z", + "new_balance":"3506.25", + "value":"-34.43" + } + }, + { + "id":"2ff47163-0e52-4ffc-9db6-71ea65d9ad29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T16:37:05.973Z", + "completed":"2017-11-30T16:37:05.973Z", + "new_balance":"4694.76", + "value":"1188.51" + } + }, + { + "id":"139fe246-f882-4494-af40-a2f329508a80", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:23:09.505Z", + "completed":"2017-12-01T07:23:09.505Z", + "new_balance":"4184.22", + "value":"-510.54" + } + }, + { + "id":"a538a86d-4041-4440-ad58-194c0860f974", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T11:29:19.599Z", + "completed":"2017-12-01T11:29:19.599Z", + "new_balance":"4135.56", + "value":"-48.66" + } + }, + { + "id":"a8fa1701-6223-47b0-b5b1-c11b86200ea4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T11:43:06.436Z", + "completed":"2017-12-01T11:43:06.436Z", + "new_balance":"4101.13", + "value":"-34.43" + } + }, + { + "id":"33845968-bd0c-46e2-a2ee-50b35dbe9528", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T13:30:28.841Z", + "completed":"2017-12-01T13:30:28.841Z", + "new_balance":"4039.26", + "value":"-61.87" + } + }, + { + "id":"07573bca-e4d0-4efc-b77e-5247fed4dbef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T14:28:11.362Z", + "completed":"2017-12-01T14:28:11.362Z", + "new_balance":"4025.59", + "value":"-13.67" + } + }, + { + "id":"7a139fd9-225a-4f83-93eb-1c8363962413", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T14:47:49.447Z", + "completed":"2017-12-01T14:47:49.447Z", + "new_balance":"3972.41", + "value":"-53.18" + } + }, + { + "id":"c6957935-0388-4852-a40d-3e8a1592142b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T17:39:35.880Z", + "completed":"2017-12-01T17:39:35.880Z", + "new_balance":"3947.85", + "value":"-24.56" + } + }, + { + "id":"ee5416c8-4149-4b38-9145-a0cd0f6ccc5d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T19:50:49.465Z", + "completed":"2017-12-01T19:50:49.465Z", + "new_balance":"3894.67", + "value":"-53.18" + } + }, + { + "id":"45d5afd8-654b-47ed-98b1-4e1501cace9e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:39:18.045Z", + "completed":"2017-12-01T22:39:18.045Z", + "new_balance":"3820.74", + "value":"-73.93" + } + }, + { + "id":"d731b4ea-2f4f-4812-8ec1-db153c872cb7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T02:39:47.621Z", + "completed":"2017-12-02T02:39:47.621Z", + "new_balance":"3808.81", + "value":"-11.93" + } + }, + { + "id":"acb01ee2-400d-49c5-b585-587f25963aec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T09:49:22.725Z", + "completed":"2017-12-02T09:49:22.725Z", + "new_balance":"3797.81", + "value":"-11.00" + } + }, + { + "id":"c88f4a8f-787f-4318-9788-52520491fb06", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T11:43:17.134Z", + "completed":"2017-12-02T11:43:17.134Z", + "new_balance":"3740.13", + "value":"-57.68" + } + }, + { + "id":"a46a0c5a-2c5d-4b74-a44e-8fbc5d4da630", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:08:09.443Z", + "completed":"2017-12-04T07:08:09.443Z", + "new_balance":"3714.76", + "value":"-25.37" + } + }, + { + "id":"d730b8ac-aee3-4c45-9eec-6ea0177da7fa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T12:02:55.250Z", + "completed":"2017-12-04T12:02:55.250Z", + "new_balance":"3667.83", + "value":"-46.93" + } + }, + { + "id":"2d85e7d0-de46-4467-910e-b638d30f841a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T13:37:00.669Z", + "completed":"2017-12-04T13:37:00.669Z", + "new_balance":"3625.49", + "value":"-42.34" + } + }, + { + "id":"329be884-a77b-4d38-9181-42ef473faeda", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T07:26:35.397Z", + "completed":"2017-12-05T07:26:35.397Z", + "new_balance":"3598.65", + "value":"-26.84" + } + }, + { + "id":"7d7b3d27-0520-4974-88d4-808c3d703e19", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T16:54:10.363Z", + "completed":"2017-12-05T16:54:10.363Z", + "new_balance":"3532.07", + "value":"-66.58" + } + }, + { + "id":"46cff976-181d-444e-a737-4cac69b0d5f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T21:13:05.469Z", + "completed":"2017-12-18T21:13:05.469Z", + "new_balance":"3478.89", + "value":"-53.18" + } + }, + { + "id":"1d677cd8-edbe-4401-b0bb-1ab3a559c97a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T03:15:50.430Z", + "completed":"2017-12-30T03:15:50.430Z", + "new_balance":"3436.55", + "value":"-42.34" + } + }, + { + "id":"f5831df2-9cb3-4b6e-94bc-6bff18b16fd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T06:55:12.338Z", + "completed":"2017-12-30T06:55:12.338Z", + "new_balance":"3395.02", + "value":"-41.53" + } + }, + { + "id":"ac2a0e0b-f429-4d74-80d1-ecb4b3ecb075", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T14:24:04.986Z", + "completed":"2017-12-30T14:24:04.986Z", + "new_balance":"3360.59", + "value":"-34.43" + } + }, + { + "id":"44fa8286-89cf-4242-bce6-cae638e1b14a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T14:52:31.661Z", + "completed":"2017-12-30T14:52:31.661Z", + "new_balance":"4549.10", + "value":"1188.51" + } + }, + { + "id":"43b0e500-388c-43d0-85ea-702d482cee2e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:17:47.780Z", + "completed":"2016-01-01T12:17:47.780Z", + "new_balance":"5389.18", + "value":"1680.41" + } + }, + { + "id":"dc7b4c1e-104b-4ec4-b847-f91c5b07278c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:28:22.682Z", + "completed":"2016-01-01T12:28:22.682Z", + "new_balance":"6411.60", + "value":"1022.42" + } + }, + { + "id":"26e1c97b-1ec9-494d-8ecb-87707a091623", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T02:57:05.626Z", + "completed":"2016-01-02T02:57:05.626Z", + "new_balance":"6004.03", + "value":"-407.57" + } + }, + { + "id":"504eb7a3-d52a-4c43-adc1-e7d42b550dae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T01:33:43.771Z", + "completed":"2016-01-03T01:33:43.771Z", + "new_balance":"5957.23", + "value":"-46.80" + } + }, + { + "id":"15bc3a81-d1e1-46b4-a204-2388e8a35f44", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T01:53:21.427Z", + "completed":"2016-01-03T01:53:21.427Z", + "new_balance":"5939.61", + "value":"-17.62" + } + }, + { + "id":"8799076c-c90c-4f2c-a3fa-f60a225083c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T22:38:59.496Z", + "completed":"2016-01-03T22:38:59.496Z", + "new_balance":"5933.23", + "value":"-6.38" + } + }, + { + "id":"e9ec059c-a1b5-4aa1-b24a-b439c97bb78c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T04:53:03.913Z", + "completed":"2016-01-04T04:53:03.913Z", + "new_balance":"5922.32", + "value":"-10.91" + } + }, + { + "id":"158b060b-9c41-4abb-b81f-132e8fd9600a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T13:29:59.374Z", + "completed":"2016-01-05T13:29:59.374Z", + "new_balance":"5915.33", + "value":"-6.99" + } + }, + { + "id":"ca8c6e06-0fa3-429d-aab0-3fa1182eceec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T08:45:36.604Z", + "completed":"2016-01-07T08:45:36.604Z", + "new_balance":"5890.40", + "value":"-24.93" + } + }, + { + "id":"d2d627e0-61fe-496b-a8cd-1fda0195098e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T15:01:33.063Z", + "completed":"2016-01-07T15:01:33.063Z", + "new_balance":"5871.24", + "value":"-19.16" + } + }, + { + "id":"2841439c-2ec0-4163-b22e-8bb28264c43e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T05:28:29.893Z", + "completed":"2016-01-08T05:28:29.893Z", + "new_balance":"5856.25", + "value":"-14.99" + } + }, + { + "id":"79e60115-f33b-4e3f-a1b9-20d01cbc3df5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T21:56:48.052Z", + "completed":"2016-01-08T21:56:48.052Z", + "new_balance":"5840.24", + "value":"-16.01" + } + }, + { + "id":"550009b0-a16f-4e80-821b-12be31eaabb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T09:52:09.381Z", + "completed":"2016-01-09T09:52:09.381Z", + "new_balance":"5795.18", + "value":"-45.06" + } + }, + { + "id":"1ab6a1a7-d166-4d8e-a60a-7204b4745378", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T10:11:00.739Z", + "completed":"2016-01-09T10:11:00.739Z", + "new_balance":"5766.02", + "value":"-29.16" + } + }, + { + "id":"f299dbec-4aab-4126-b05a-f85c81963559", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T20:52:31.814Z", + "completed":"2016-01-10T20:52:31.814Z", + "new_balance":"5721.54", + "value":"-44.48" + } + }, + { + "id":"07c01899-a406-4c10-af85-8a395220e0e0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T23:30:45.553Z", + "completed":"2016-01-10T23:30:45.553Z", + "new_balance":"5616.82", + "value":"-104.72" + } + }, + { + "id":"6bcdae59-7293-40c9-b98f-691788cb3710", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T06:53:18.451Z", + "completed":"2016-01-11T06:53:18.451Z", + "new_balance":"5611.05", + "value":"-5.77" + } + }, + { + "id":"18511fae-4963-4009-aa9f-188137fc1ef6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T07:56:10.366Z", + "completed":"2016-01-11T07:56:10.366Z", + "new_balance":"5531.97", + "value":"-79.08" + } + }, + { + "id":"85bf93e1-d91f-4af7-8fe2-ded771e8f3f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T11:33:02.019Z", + "completed":"2016-01-11T11:33:02.019Z", + "new_balance":"5622.85", + "value":"90.88" + } + }, + { + "id":"3012b141-4ad3-4eb6-a95a-21d914b963c2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T14:23:12.310Z", + "completed":"2016-01-12T14:23:12.310Z", + "new_balance":"5612.78", + "value":"-10.07" + } + }, + { + "id":"eb3fbc50-fa54-4bcd-a91c-7438eb51bf3c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T10:07:37.430Z", + "completed":"2016-01-15T10:07:37.430Z", + "new_balance":"5587.38", + "value":"-25.40" + } + }, + { + "id":"21ae03e9-7254-4748-a72b-5877126cb1b8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T06:20:39.983Z", + "completed":"2016-01-16T06:20:39.983Z", + "new_balance":"5556.57", + "value":"-30.81" + } + }, + { + "id":"363d18e0-3e95-48b5-a46c-ca5c695f8358", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:40:08.420Z", + "completed":"2016-01-17T10:40:08.420Z", + "new_balance":"5541.74", + "value":"-14.83" + } + }, + { + "id":"fbf9945b-246f-4f3d-9a9b-ef64556dc3ff", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T18:57:24.625Z", + "completed":"2016-01-20T18:57:24.625Z", + "new_balance":"5534.75", + "value":"-6.99" + } + }, + { + "id":"c36ed901-09b4-4756-b761-3c7fd23b0861", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:39:38.559Z", + "completed":"2016-01-21T04:39:38.559Z", + "new_balance":"5485.97", + "value":"-48.78" + } + }, + { + "id":"ef253907-a5cf-47f2-bcc4-aeb9db6263f4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T10:42:01.228Z", + "completed":"2016-01-23T10:42:01.228Z", + "new_balance":"5288.06", + "value":"-197.91" + } + }, + { + "id":"5a93eab3-2700-4211-92a3-5a3bd5ccbe70", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T18:19:13.652Z", + "completed":"2016-02-01T18:19:13.652Z", + "new_balance":"6310.48", + "value":"1022.42" + } + }, + { + "id":"a6d8e12e-bdd2-46bb-a7b4-98d52ceaf14d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T01:24:52.135Z", + "completed":"2016-02-03T01:24:52.135Z", + "new_balance":"5902.91", + "value":"-407.57" + } + }, + { + "id":"6f90cac6-164b-41fe-b5b8-98d6b07655eb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T13:46:50.835Z", + "completed":"2016-02-03T13:46:50.835Z", + "new_balance":"5739.43", + "value":"-163.48" + } + }, + { + "id":"8abbc667-6830-4039-9702-1b726d2b73f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T00:45:40.937Z", + "completed":"2016-02-04T00:45:40.937Z", + "new_balance":"5724.92", + "value":"-14.51" + } + }, + { + "id":"d32c85a9-d750-4cd4-bc98-f7968c2882c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T12:20:34.885Z", + "completed":"2016-02-05T12:20:34.885Z", + "new_balance":"5718.43", + "value":"-6.49" + } + }, + { + "id":"7797dcfb-8f64-4c2e-8db3-3c2f5331cb97", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T05:12:23.507Z", + "completed":"2016-02-06T05:12:23.507Z", + "new_balance":"5693.63", + "value":"-24.80" + } + }, + { + "id":"d956ae67-baea-4b2e-b2fd-ea9033439d0a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T00:44:15.548Z", + "completed":"2016-02-07T00:44:15.548Z", + "new_balance":"5652.28", + "value":"-41.35" + } + }, + { + "id":"62dd8356-609a-4803-8b58-48c850a7a26f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T16:05:21.464Z", + "completed":"2016-02-07T16:05:21.464Z", + "new_balance":"5547.56", + "value":"-104.72" + } + }, + { + "id":"9d2d826b-e59d-498d-a1cb-a8c090776140", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T22:21:37.816Z", + "completed":"2016-02-07T22:21:37.816Z", + "new_balance":"5518.40", + "value":"-29.16" + } + }, + { + "id":"73385f84-9530-4b2d-9283-65f744bd7f2c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T07:28:53.438Z", + "completed":"2016-02-08T07:28:53.438Z", + "new_balance":"5467.84", + "value":"-50.56" + } + }, + { + "id":"535da05d-c380-450c-b7a7-587c78eb9227", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T15:33:45.729Z", + "completed":"2016-02-09T15:33:45.729Z", + "new_balance":"5442.04", + "value":"-25.80" + } + }, + { + "id":"b33fda0a-e5ac-4cfc-ba76-1c499ad91243", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T07:38:04.540Z", + "completed":"2016-02-10T07:38:04.540Z", + "new_balance":"5435.05", + "value":"-6.99" + } + }, + { + "id":"bfeabf89-7360-4683-9184-9455ac729282", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T22:27:51.560Z", + "completed":"2016-02-12T22:27:51.560Z", + "new_balance":"5399.86", + "value":"-35.19" + } + }, + { + "id":"6a3530bb-2440-4480-b374-8602bbd8fcf6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T18:35:59.037Z", + "completed":"2016-02-14T18:35:59.037Z", + "new_balance":"5370.70", + "value":"-29.16" + } + }, + { + "id":"01fc5d32-b5a6-4956-955b-c6b5ff567c42", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T18:47:20.807Z", + "completed":"2016-02-16T18:47:20.807Z", + "new_balance":"5364.93", + "value":"-5.77" + } + }, + { + "id":"d3fecb46-859f-4b72-b93d-ffe854d0af70", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T21:05:08.816Z", + "completed":"2016-02-16T21:05:08.816Z", + "new_balance":"5319.42", + "value":"-45.51" + } + }, + { + "id":"da669185-1a41-421a-8790-01ab0dd25604", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T00:14:30.223Z", + "completed":"2016-02-18T00:14:30.223Z", + "new_balance":"5311.02", + "value":"-8.40" + } + }, + { + "id":"dfebf7f8-7ce9-4365-9d35-121a6fcf9e36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T09:43:41.194Z", + "completed":"2016-02-21T09:43:41.194Z", + "new_balance":"5425.16", + "value":"114.14" + } + }, + { + "id":"7a109c9c-dbee-4014-981b-89f308c3e395", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T12:54:07.915Z", + "completed":"2016-02-21T12:54:07.915Z", + "new_balance":"5376.38", + "value":"-48.78" + } + }, + { + "id":"def6dc6c-4c6e-49ed-9b21-7491af911a8d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T19:24:47.581Z", + "completed":"2016-02-27T19:24:47.581Z", + "new_balance":"5178.47", + "value":"-197.91" + } + }, + { + "id":"95a14525-1a1f-45c6-91fe-4948dbd45ed1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:30:29.193Z", + "completed":"2016-03-01T03:30:29.193Z", + "new_balance":"6200.89", + "value":"1022.42" + } + }, + { + "id":"0a29f2d3-77ae-4676-8f52-570c018447c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T00:32:35.648Z", + "completed":"2016-03-03T00:32:35.648Z", + "new_balance":"5793.32", + "value":"-407.57" + } + }, + { + "id":"59976ddb-0ca4-4663-b188-591031458a29", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T07:55:13.623Z", + "completed":"2016-03-04T07:55:13.623Z", + "new_balance":"5776.32", + "value":"-17.00" + } + }, + { + "id":"249bf65e-5b66-47af-beba-b67ee3fe9e87", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T11:36:59.358Z", + "completed":"2016-03-04T11:36:59.358Z", + "new_balance":"5745.51", + "value":"-30.81" + } + }, + { + "id":"ac21ec75-c48c-48da-ab6e-c44288f855cd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T16:10:32.202Z", + "completed":"2016-03-04T16:10:32.202Z", + "new_balance":"5714.06", + "value":"-31.45" + } + }, + { + "id":"3fc40eea-9728-4875-b945-1d9434122e8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T19:35:15.566Z", + "completed":"2016-03-04T19:35:15.566Z", + "new_balance":"5668.55", + "value":"-45.51" + } + }, + { + "id":"3c0f66c8-81bc-4cc7-8b59-f5d7fc1f6e2d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T04:08:51.745Z", + "completed":"2016-03-05T04:08:51.745Z", + "new_balance":"5654.49", + "value":"-14.06" + } + }, + { + "id":"98b0833d-da08-44bd-b180-a3e770323730", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T09:09:11.140Z", + "completed":"2016-03-05T09:09:11.140Z", + "new_balance":"5648.72", + "value":"-5.77" + } + }, + { + "id":"38f111c3-fd77-4e1e-9527-a6f2b69b508c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T09:57:49.389Z", + "completed":"2016-03-05T09:57:49.389Z", + "new_balance":"5544.00", + "value":"-104.72" + } + }, + { + "id":"7a152867-699d-4f28-845d-b4ca03497eaf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T11:50:17.613Z", + "completed":"2016-03-05T11:50:17.613Z", + "new_balance":"5498.46", + "value":"-45.54" + } + }, + { + "id":"e5bffd52-f48d-403e-8c44-e2fb610f71f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T00:27:28.479Z", + "completed":"2016-03-06T00:27:28.479Z", + "new_balance":"5399.34", + "value":"-99.12" + } + }, + { + "id":"ff578e04-9f07-4c07-a6cb-ea5755b16769", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T01:22:36.653Z", + "completed":"2016-03-06T01:22:36.653Z", + "new_balance":"5317.55", + "value":"-81.79" + } + }, + { + "id":"4c8803a3-6363-457a-b23c-fa36eeeb2d22", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T08:39:17.547Z", + "completed":"2016-03-07T08:39:17.547Z", + "new_balance":"5311.78", + "value":"-5.77" + } + }, + { + "id":"a0bf62bb-de1b-47cf-8d61-27becc018298", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T09:26:10.729Z", + "completed":"2016-03-07T09:26:10.729Z", + "new_balance":"5304.17", + "value":"-7.61" + } + }, + { + "id":"9b6b079c-5b3b-471a-a52f-dee941198517", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T08:15:19.842Z", + "completed":"2016-03-08T08:15:19.842Z", + "new_balance":"5296.56", + "value":"-7.61" + } + }, + { + "id":"7e0d8358-1844-4f9c-a4a3-7b7a1f93cddc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T11:08:50.065Z", + "completed":"2016-03-08T11:08:50.065Z", + "new_balance":"5288.04", + "value":"-8.52" + } + }, + { + "id":"cd5ee411-6a7a-4b96-9472-885dd03fc99d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T21:52:56.840Z", + "completed":"2016-03-10T21:52:56.840Z", + "new_balance":"5255.70", + "value":"-32.34" + } + }, + { + "id":"360f46ed-e95a-4a36-a8b0-5076a65ff2ac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T04:28:39.755Z", + "completed":"2016-03-11T04:28:39.755Z", + "new_balance":"5231.40", + "value":"-24.30" + } + }, + { + "id":"185fd082-1ce2-4005-b6bc-e1cc4f975681", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T09:18:14.239Z", + "completed":"2016-03-11T09:18:14.239Z", + "new_balance":"5219.03", + "value":"-12.37" + } + }, + { + "id":"d23aa6e5-44b0-4dd8-be6c-c2c011fb464f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T20:06:10.726Z", + "completed":"2016-03-11T20:06:10.726Z", + "new_balance":"5213.26", + "value":"-5.77" + } + }, + { + "id":"4937fb9f-0070-47c9-bdf9-c60fad3bd904", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T06:27:44.682Z", + "completed":"2016-03-12T06:27:44.682Z", + "new_balance":"5194.10", + "value":"-19.16" + } + }, + { + "id":"5a959a8f-e802-46db-8b9a-70d183beefa0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T06:48:12.817Z", + "completed":"2016-03-12T06:48:12.817Z", + "new_balance":"5127.92", + "value":"-66.18" + } + }, + { + "id":"1a25ca66-a03a-48c1-bade-b98dfa5ab548", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T19:00:13.517Z", + "completed":"2016-03-12T19:00:13.517Z", + "new_balance":"5122.15", + "value":"-5.77" + } + }, + { + "id":"10bef1f6-459f-4b09-a7ef-7eedc38e53fc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T21:51:08.076Z", + "completed":"2016-03-12T21:51:08.076Z", + "new_balance":"5020.89", + "value":"-101.26" + } + }, + { + "id":"508d27a8-8ba5-48c2-942e-913d4f1acf37", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T14:23:52.235Z", + "completed":"2016-03-13T14:23:52.235Z", + "new_balance":"5015.12", + "value":"-5.77" + } + }, + { + "id":"067c5e7f-6261-45db-928e-1a3502d35261", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T22:49:23.591Z", + "completed":"2016-03-13T22:49:23.591Z", + "new_balance":"4972.63", + "value":"-42.49" + } + }, + { + "id":"22d9c466-3038-4ee5-8787-58564dabdc91", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T04:50:40.066Z", + "completed":"2016-03-15T04:50:40.066Z", + "new_balance":"4930.40", + "value":"-42.23" + } + }, + { + "id":"9f5321d5-6ff8-455f-8fe3-cce378921e6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T14:09:44.790Z", + "completed":"2016-03-15T14:09:44.790Z", + "new_balance":"4881.51", + "value":"-48.89" + } + }, + { + "id":"ebfbaae2-c734-42e1-a2ca-ebb449046c14", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T11:19:09.382Z", + "completed":"2016-03-17T11:19:09.382Z", + "new_balance":"4837.54", + "value":"-43.97" + } + }, + { + "id":"94f98ec6-57f0-4e00-875e-c6189c8cf433", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T15:45:00.944Z", + "completed":"2016-03-18T15:45:00.944Z", + "new_balance":"4740.04", + "value":"-97.50" + } + }, + { + "id":"bb56091b-d2d6-4032-9605-cff5eff3a544", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T00:30:24.032Z", + "completed":"2016-03-20T00:30:24.032Z", + "new_balance":"4635.72", + "value":"-104.32" + } + }, + { + "id":"bd893b0b-7064-45d0-8d16-95f099d8d131", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T22:19:01.268Z", + "completed":"2016-03-22T22:19:01.268Z", + "new_balance":"4595.40", + "value":"-40.32" + } + }, + { + "id":"8a7aa297-e78f-4df6-b833-9ae21174bc8e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T16:11:18.955Z", + "completed":"2016-03-25T16:11:18.955Z", + "new_balance":"4582.39", + "value":"-13.01" + } + }, + { + "id":"77470a03-9d37-4413-9a2e-fa3696b7902c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T23:36:58.509Z", + "completed":"2016-03-25T23:36:58.509Z", + "new_balance":"4576.62", + "value":"-5.77" + } + }, + { + "id":"ae540216-8237-4502-b044-5599e8738217", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T02:53:04.167Z", + "completed":"2016-03-26T02:53:04.167Z", + "new_balance":"4551.00", + "value":"-25.62" + } + }, + { + "id":"972d7118-b2af-44ca-bc1d-4100cf216462", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T13:27:32.542Z", + "completed":"2016-03-26T13:27:32.542Z", + "new_balance":"4538.21", + "value":"-12.79" + } + }, + { + "id":"38246fd9-dd6c-464b-82c0-c4ba5dcd3cef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T06:25:00.094Z", + "completed":"2016-03-27T06:25:00.094Z", + "new_balance":"4524.02", + "value":"-14.19" + } + }, + { + "id":"7f26ee39-8b56-47d9-a533-a2046178c1de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T16:41:15.665Z", + "completed":"2016-03-28T16:41:15.665Z", + "new_balance":"4475.24", + "value":"-48.78" + } + }, + { + "id":"a40ff053-f7a4-44ae-bfd9-83b88114dfa8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T14:12:24.035Z", + "completed":"2016-03-31T14:12:24.035Z", + "new_balance":"4277.33", + "value":"-197.91" + } + }, + { + "id":"9dd1e9a4-40c3-41d9-986e-c66974e21e7e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T12:39:25.390Z", + "completed":"2016-04-01T12:39:25.390Z", + "new_balance":"3869.76", + "value":"-407.57" + } + }, + { + "id":"d8344bd9-45fa-4623-a58e-8550d2eb3fa3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T20:27:56.616Z", + "completed":"2016-04-01T20:27:56.616Z", + "new_balance":"4892.18", + "value":"1022.42" + } + }, + { + "id":"d1006996-bd51-4ea8-a0af-bc7aafd5bf38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T22:45:05.638Z", + "completed":"2016-04-01T22:45:05.638Z", + "new_balance":"6572.59", + "value":"1680.41" + } + }, + { + "id":"c9e0bdfc-3406-44b3-92f7-b1ec1885aed4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T07:02:51.722Z", + "completed":"2016-04-03T07:02:51.722Z", + "new_balance":"6525.79", + "value":"-46.80" + } + }, + { + "id":"7f522e2b-e4e5-4228-921c-f872139e5b2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T07:43:16.259Z", + "completed":"2016-04-03T07:43:16.259Z", + "new_balance":"6508.17", + "value":"-17.62" + } + }, + { + "id":"537713a6-79d6-46b1-acac-915f27ff1607", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T21:26:24.216Z", + "completed":"2016-04-03T21:26:24.216Z", + "new_balance":"6501.79", + "value":"-6.38" + } + }, + { + "id":"3cc03ad2-8373-4501-b5a3-44a325ae901a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T05:21:03.235Z", + "completed":"2016-04-05T05:21:03.235Z", + "new_balance":"6490.88", + "value":"-10.91" + } + }, + { + "id":"a3cd3fea-e659-4dfd-8e83-a4c5e7bdc764", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:22:19.048Z", + "completed":"2016-04-05T15:22:19.048Z", + "new_balance":"6483.89", + "value":"-6.99" + } + }, + { + "id":"830aaafb-4e93-46c8-8290-4f6dd6095ec5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T03:56:05.881Z", + "completed":"2016-04-06T03:56:05.881Z", + "new_balance":"6458.96", + "value":"-24.93" + } + }, + { + "id":"d939c47e-909e-4239-83e6-57120bb9d9d4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T13:31:15.087Z", + "completed":"2016-04-09T13:31:15.087Z", + "new_balance":"6439.80", + "value":"-19.16" + } + }, + { + "id":"6bf52cbb-3766-4a06-9929-815d439d5418", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T12:05:53.704Z", + "completed":"2016-04-10T12:05:53.704Z", + "new_balance":"6424.81", + "value":"-14.99" + } + }, + { + "id":"01c2afe0-7be0-40f2-96be-0186c1453833", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T08:12:10.137Z", + "completed":"2016-04-11T08:12:10.137Z", + "new_balance":"6408.80", + "value":"-16.01" + } + }, + { + "id":"b6948c6e-3236-4b81-94ba-01ef26c5a1a1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T22:49:22.819Z", + "completed":"2016-04-11T22:49:22.819Z", + "new_balance":"6379.64", + "value":"-29.16" + } + }, + { + "id":"a3a17ec7-80e7-45fc-b032-7a3d932ff749", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T17:19:53.885Z", + "completed":"2016-04-13T17:19:53.885Z", + "new_balance":"6334.58", + "value":"-45.06" + } + }, + { + "id":"4c9dd1cc-9cd9-477b-9eb5-a10b56308757", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T19:14:55.570Z", + "completed":"2016-04-13T19:14:55.570Z", + "new_balance":"6229.86", + "value":"-104.72" + } + }, + { + "id":"9c198cb1-af4b-47a1-a02a-bb92516efc60", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T01:24:31.642Z", + "completed":"2016-04-15T01:24:31.642Z", + "new_balance":"6185.38", + "value":"-44.48" + } + }, + { + "id":"1413179a-d491-4bc5-a562-be731148d353", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T16:41:33.329Z", + "completed":"2016-04-16T16:41:33.329Z", + "new_balance":"6179.61", + "value":"-5.77" + } + }, + { + "id":"af3aa79a-9392-47d4-a9c2-0aa583796bf1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T23:53:31.674Z", + "completed":"2016-04-16T23:53:31.674Z", + "new_balance":"6169.54", + "value":"-10.07" + } + }, + { + "id":"2ae1bfea-3ed4-4082-ac09-6b63d57bd168", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T15:07:22.821Z", + "completed":"2016-04-18T15:07:22.821Z", + "new_balance":"6090.46", + "value":"-79.08" + } + }, + { + "id":"62f29434-9be3-4684-ae91-e61f12109ab6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T04:14:07.565Z", + "completed":"2016-04-23T04:14:07.565Z", + "new_balance":"6065.06", + "value":"-25.40" + } + }, + { + "id":"d65e34db-b4ca-4f0b-b140-a2f4e251fe36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T05:23:43.361Z", + "completed":"2016-04-24T05:23:43.361Z", + "new_balance":"6034.25", + "value":"-30.81" + } + }, + { + "id":"b71ca14e-c4af-4823-9949-d00333e43c7d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T23:26:31.447Z", + "completed":"2016-04-24T23:26:31.447Z", + "new_balance":"6019.42", + "value":"-14.83" + } + }, + { + "id":"acfa85cc-b84e-45b0-b40a-4c261c765ef8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T07:01:37.237Z", + "completed":"2016-04-26T07:01:37.237Z", + "new_balance":"6012.43", + "value":"-6.99" + } + }, + { + "id":"9fc46342-bb89-46f4-a358-7c868de6bce4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T16:48:57.394Z", + "completed":"2016-04-28T16:48:57.394Z", + "new_balance":"5963.65", + "value":"-48.78" + } + }, + { + "id":"fc81c09d-f4cc-4a14-88a1-46565c0b30db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T23:00:37.708Z", + "completed":"2016-04-28T23:00:37.708Z", + "new_balance":"5765.74", + "value":"-197.91" + } + }, + { + "id":"dc182d03-c177-48a0-a909-f9466a28b945", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T12:13:30.736Z", + "completed":"2016-05-02T12:13:30.736Z", + "new_balance":"5358.17", + "value":"-407.57" + } + }, + { + "id":"512b90a5-66c5-4058-9ac7-dacf517a2bb9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T12:34:52.998Z", + "completed":"2016-05-02T12:34:52.998Z", + "new_balance":"5194.69", + "value":"-163.48" + } + }, + { + "id":"9e222512-51a0-45d7-abc1-1d55f89ad16a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T18:13:07.863Z", + "completed":"2016-05-02T18:13:07.863Z", + "new_balance":"5180.18", + "value":"-14.51" + } + }, + { + "id":"3467f809-0db5-49f9-a284-4b8f8787e740", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T21:36:26.962Z", + "completed":"2016-05-02T21:36:26.962Z", + "new_balance":"5173.69", + "value":"-6.49" + } + }, + { + "id":"a5cefcb6-07a5-4880-9f6b-71b1655dadbd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T19:26:47.882Z", + "completed":"2016-05-06T19:26:47.882Z", + "new_balance":"5148.89", + "value":"-24.80" + } + }, + { + "id":"73995273-5e3f-4e23-a858-5f4aeab77d9b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T20:02:23.503Z", + "completed":"2016-05-06T20:02:23.503Z", + "new_balance":"5119.73", + "value":"-29.16" + } + }, + { + "id":"ef8a61d0-0cec-4af0-b3b5-20dbe79547d0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T00:32:26.600Z", + "completed":"2016-05-07T00:32:26.600Z", + "new_balance":"5015.01", + "value":"-104.72" + } + }, + { + "id":"404fdc4d-49e7-4f63-9a98-8d969792d856", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T04:59:32.275Z", + "completed":"2016-05-07T04:59:32.275Z", + "new_balance":"4973.66", + "value":"-41.35" + } + }, + { + "id":"339d6add-b0d1-49f6-81ad-823224b7220c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T00:12:07.376Z", + "completed":"2016-05-09T00:12:07.376Z", + "new_balance":"5996.08", + "value":"1022.42" + } + }, + { + "id":"1b8d377b-fb88-40ec-b4fd-97e073703609", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T02:10:45.891Z", + "completed":"2016-05-14T02:10:45.891Z", + "new_balance":"5970.28", + "value":"-25.80" + } + }, + { + "id":"543fe5a4-75da-4d9d-9373-ef336f507c9a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T07:31:45.219Z", + "completed":"2016-05-14T07:31:45.219Z", + "new_balance":"5919.72", + "value":"-50.56" + } + }, + { + "id":"1a7c28b1-f100-4ffb-b5ca-67590f11642f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T20:05:34.163Z", + "completed":"2016-05-16T20:05:34.163Z", + "new_balance":"5912.73", + "value":"-6.99" + } + }, + { + "id":"551c6502-bf09-4fd7-b0b9-2a921f72bf74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T00:18:53.762Z", + "completed":"2016-05-21T00:18:53.762Z", + "new_balance":"5877.54", + "value":"-35.19" + } + }, + { + "id":"f4993ba7-6afc-4bdc-b72d-02f0fe2e7e71", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T09:02:54.590Z", + "completed":"2016-05-23T09:02:54.590Z", + "new_balance":"5871.77", + "value":"-5.77" + } + }, + { + "id":"03031c41-0b74-421c-a6e2-4ea73b06c681", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T15:13:35.493Z", + "completed":"2016-05-23T15:13:35.493Z", + "new_balance":"5842.61", + "value":"-29.16" + } + }, + { + "id":"13f8f705-9e02-4dab-ab17-66f5f471b649", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T05:02:59.522Z", + "completed":"2016-05-24T05:02:59.522Z", + "new_balance":"5797.10", + "value":"-45.51" + } + }, + { + "id":"7abe4442-9812-4ebf-a0e0-08f84f8181a6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T10:13:20.451Z", + "completed":"2016-05-27T10:13:20.451Z", + "new_balance":"5788.70", + "value":"-8.40" + } + }, + { + "id":"b3bec993-49b5-4d0b-9b00-964d6ecd8453", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T00:31:06.311Z", + "completed":"2016-05-30T00:31:06.311Z", + "new_balance":"5590.79", + "value":"-197.91" + } + }, + { + "id":"3cf1e2e8-5fc6-4af8-b695-82d82eabb9fa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T21:04:45.451Z", + "completed":"2016-05-30T21:04:45.451Z", + "new_balance":"5542.01", + "value":"-48.78" + } + }, + { + "id":"e0a13fff-f47c-49f8-bd41-dbc8813731c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T07:24:08.566Z", + "completed":"2016-06-01T07:24:08.566Z", + "new_balance":"5134.44", + "value":"-407.57" + } + }, + { + "id":"c4e808f7-a089-4bb1-b7d9-e3d21fcfc4dd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T11:03:54.544Z", + "completed":"2016-06-01T11:03:54.544Z", + "new_balance":"6156.86", + "value":"1022.42" + } + }, + { + "id":"7347c4b4-9fda-48b5-9d68-ef1b503dc35f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:36:48.677Z", + "completed":"2016-06-04T01:36:48.677Z", + "new_balance":"6125.41", + "value":"-31.45" + } + }, + { + "id":"5a9ea4b2-99f9-4f5c-a502-df8996fa1dbf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T03:21:05.658Z", + "completed":"2016-06-04T03:21:05.658Z", + "new_balance":"6108.41", + "value":"-17.00" + } + }, + { + "id":"f83163f9-3604-461e-922f-fd7d554963ae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T01:46:20.419Z", + "completed":"2016-06-11T01:46:20.419Z", + "new_balance":"6077.60", + "value":"-30.81" + } + }, + { + "id":"8153bbb0-148b-4d62-b34b-7a824afbf91b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T09:41:49.122Z", + "completed":"2016-06-11T09:41:49.122Z", + "new_balance":"6032.09", + "value":"-45.51" + } + }, + { + "id":"d44bc601-67e8-4598-934f-d6be940a0d57", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T05:19:47.916Z", + "completed":"2016-06-12T05:19:47.916Z", + "new_balance":"6018.03", + "value":"-14.06" + } + }, + { + "id":"856d00fa-b2a2-439b-8be4-033e48933b48", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T09:05:25.644Z", + "completed":"2016-06-12T09:05:25.644Z", + "new_balance":"5913.31", + "value":"-104.72" + } + }, + { + "id":"949e3d5d-1f81-450f-b188-48899c6e3016", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T16:05:48.821Z", + "completed":"2016-06-12T16:05:48.821Z", + "new_balance":"5907.54", + "value":"-5.77" + } + }, + { + "id":"97775a1d-cff0-4407-93f4-7aef1d6bef32", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T09:09:09.052Z", + "completed":"2016-06-13T09:09:09.052Z", + "new_balance":"5808.42", + "value":"-99.12" + } + }, + { + "id":"c3ff6faa-a8e8-4362-9940-339a3b902a7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:16:31.443Z", + "completed":"2016-06-13T21:16:31.443Z", + "new_balance":"5762.88", + "value":"-45.54" + } + }, + { + "id":"72e0b271-0fb7-49c4-a7ae-4790ad4e82e7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T22:24:15.840Z", + "completed":"2016-06-13T22:24:15.840Z", + "new_balance":"5681.09", + "value":"-81.79" + } + }, + { + "id":"b7f5f60e-1be8-4b5b-a6f7-cadc970b292f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T09:42:53.836Z", + "completed":"2016-06-14T09:42:53.836Z", + "new_balance":"5675.32", + "value":"-5.77" + } + }, + { + "id":"d90de930-2b7d-4a1c-8a7f-318c049420c8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T12:41:48.685Z", + "completed":"2016-06-14T12:41:48.685Z", + "new_balance":"5667.71", + "value":"-7.61" + } + }, + { + "id":"88458267-55f2-470f-8786-3d604153cd1d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T13:17:37.413Z", + "completed":"2016-06-14T13:17:37.413Z", + "new_balance":"5660.10", + "value":"-7.61" + } + }, + { + "id":"4635f2dd-381f-4342-b6da-35a74b604e26", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T14:12:34.698Z", + "completed":"2016-06-15T14:12:34.698Z", + "new_balance":"5627.76", + "value":"-32.34" + } + }, + { + "id":"73f31a76-c9ae-4adc-bf67-e389243b8e24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T16:58:40.399Z", + "completed":"2016-06-15T16:58:40.399Z", + "new_balance":"5619.24", + "value":"-8.52" + } + }, + { + "id":"389c5ad8-f0aa-40f5-b509-2fb404a06069", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T18:31:56.637Z", + "completed":"2016-06-15T18:31:56.637Z", + "new_balance":"5613.47", + "value":"-5.77" + } + }, + { + "id":"74678d0b-b5b9-4d24-8fbc-da2a986d3e56", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T22:39:28.346Z", + "completed":"2016-06-16T22:39:28.346Z", + "new_balance":"5589.17", + "value":"-24.30" + } + }, + { + "id":"6aa5c050-a170-4697-b59f-4d4563baea50", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T08:55:03.009Z", + "completed":"2016-06-17T08:55:03.009Z", + "new_balance":"5576.80", + "value":"-12.37" + } + }, + { + "id":"cd6ab8b2-c66c-4a05-a65d-f39bdfb1be01", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T01:32:32.075Z", + "completed":"2016-06-18T01:32:32.075Z", + "new_balance":"5557.64", + "value":"-19.16" + } + }, + { + "id":"a45f2420-df64-48ea-b13c-a49c33c387c5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:45:38.738Z", + "completed":"2016-06-18T02:45:38.738Z", + "new_balance":"5551.87", + "value":"-5.77" + } + }, + { + "id":"b45655d7-13fc-4aed-ac17-a2c6c72bf431", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T09:40:16.026Z", + "completed":"2016-06-18T09:40:16.026Z", + "new_balance":"5450.61", + "value":"-101.26" + } + }, + { + "id":"c322e4c9-92a2-4612-82dc-7ce9b467acff", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T10:46:01.266Z", + "completed":"2016-06-18T10:46:01.266Z", + "new_balance":"5384.43", + "value":"-66.18" + } + }, + { + "id":"436c3929-b8ec-4814-ad49-0541e59aac5c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T13:52:16.362Z", + "completed":"2016-06-18T13:52:16.362Z", + "new_balance":"5341.94", + "value":"-42.49" + } + }, + { + "id":"209093f6-be98-4103-a169-c25b53d76379", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T20:19:08.090Z", + "completed":"2016-06-18T20:19:08.090Z", + "new_balance":"5336.17", + "value":"-5.77" + } + }, + { + "id":"9cc8bc96-5f43-4bb1-a683-74cd0765201d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:41:04.390Z", + "completed":"2016-06-19T03:41:04.390Z", + "new_balance":"5292.20", + "value":"-43.97" + } + }, + { + "id":"bfd56455-043e-4bca-a06f-6974e92496ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T14:48:12.983Z", + "completed":"2016-06-19T14:48:12.983Z", + "new_balance":"5249.97", + "value":"-42.23" + } + }, + { + "id":"94cb0069-2c59-4b00-b6a6-73c75ec5ab03", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T15:32:00.737Z", + "completed":"2016-06-19T15:32:00.737Z", + "new_balance":"5201.08", + "value":"-48.89" + } + }, + { + "id":"4a244c4c-9989-423b-b88a-30341e4fb323", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T00:28:56.277Z", + "completed":"2016-06-21T00:28:56.277Z", + "new_balance":"5103.58", + "value":"-97.50" + } + }, + { + "id":"4f347fc0-e28b-4f6c-bdd4-9f596663e218", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T22:26:28.453Z", + "completed":"2016-06-21T22:26:28.453Z", + "new_balance":"4999.26", + "value":"-104.32" + } + }, + { + "id":"c3e77a5c-26a4-43e5-bf89-4be732ea26c4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T10:51:42.557Z", + "completed":"2016-06-22T10:51:42.557Z", + "new_balance":"4993.49", + "value":"-5.77" + } + }, + { + "id":"c8946d6f-30e6-4323-89d8-6cd3c93a086e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T13:11:08.052Z", + "completed":"2016-06-22T13:11:08.052Z", + "new_balance":"4953.17", + "value":"-40.32" + } + }, + { + "id":"9991f50a-40a3-45c8-b6bd-119bb81115ce", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T15:50:41.491Z", + "completed":"2016-06-22T15:50:41.491Z", + "new_balance":"4940.16", + "value":"-13.01" + } + }, + { + "id":"5b64ad87-c51c-4714-b4db-f094e807e470", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T12:38:55.375Z", + "completed":"2016-06-23T12:38:55.375Z", + "new_balance":"4927.37", + "value":"-12.79" + } + }, + { + "id":"e5e4e777-1dc7-4bda-a14f-63f16c08d3c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T14:32:07.924Z", + "completed":"2016-06-24T14:32:07.924Z", + "new_balance":"4901.75", + "value":"-25.62" + } + }, + { + "id":"0ec188ef-101a-4112-8948-dc1aaafe26b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T11:01:33.440Z", + "completed":"2016-06-26T11:01:33.440Z", + "new_balance":"4887.56", + "value":"-14.19" + } + }, + { + "id":"e3946fe7-b51e-48a3-a30e-ba9ccb4d5550", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T01:06:25.289Z", + "completed":"2016-06-30T01:06:25.289Z", + "new_balance":"4838.78", + "value":"-48.78" + } + }, + { + "id":"05407fbc-3cfe-4d35-a261-73455ed4a081", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T19:40:03.451Z", + "completed":"2016-06-30T19:40:03.451Z", + "new_balance":"4640.87", + "value":"-197.91" + } + }, + { + "id":"103cd0a9-1644-4a19-a099-a351c551cf26", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T12:47:09.946Z", + "completed":"2016-07-01T12:47:09.946Z", + "new_balance":"5663.29", + "value":"1022.42" + } + }, + { + "id":"31181407-15ea-4f52-8a64-e4ffe6911c65", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T22:11:02.250Z", + "completed":"2016-07-01T22:11:02.250Z", + "new_balance":"7343.70", + "value":"1680.41" + } + }, + { + "id":"71c67965-e2e8-48ff-a85c-b47de58ceaed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T07:22:26.832Z", + "completed":"2016-07-03T07:22:26.832Z", + "new_balance":"6936.13", + "value":"-407.57" + } + }, + { + "id":"17524b19-b470-46e9-9663-ae6681bcdc3e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T12:09:44.273Z", + "completed":"2016-07-04T12:09:44.273Z", + "new_balance":"6918.51", + "value":"-17.62" + } + }, + { + "id":"b0d82c1d-5909-4eac-85a4-f84e8fec8da7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T14:05:29.384Z", + "completed":"2016-07-04T14:05:29.384Z", + "new_balance":"6871.71", + "value":"-46.80" + } + }, + { + "id":"14150640-2038-45b2-a8cb-9c1ca73ba5c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T15:25:31.068Z", + "completed":"2016-07-04T15:25:31.068Z", + "new_balance":"6865.33", + "value":"-6.38" + } + }, + { + "id":"ea527442-99f2-402b-a31d-bf6526d9483f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T08:48:18.698Z", + "completed":"2016-07-05T08:48:18.698Z", + "new_balance":"6854.42", + "value":"-10.91" + } + }, + { + "id":"c14bb3d6-df7e-4079-93e3-56465067d64f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T02:38:20.955Z", + "completed":"2016-07-07T02:38:20.955Z", + "new_balance":"6847.43", + "value":"-6.99" + } + }, + { + "id":"39974c08-d205-4026-97b6-a32c674133a0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:07:37.934Z", + "completed":"2016-07-11T10:07:37.934Z", + "new_balance":"6832.44", + "value":"-14.99" + } + }, + { + "id":"e1fe41bd-dcd1-4727-9d51-26e7e254153c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T12:11:24.488Z", + "completed":"2016-07-11T12:11:24.488Z", + "new_balance":"6813.28", + "value":"-19.16" + } + }, + { + "id":"db9e436f-3596-4ed9-9d98-80845ffc4281", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T14:13:55.200Z", + "completed":"2016-07-11T14:13:55.200Z", + "new_balance":"6784.12", + "value":"-29.16" + } + }, + { + "id":"a98300ec-f63a-4bd8-a914-3934b7f37f6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:18:36.708Z", + "completed":"2016-07-11T16:18:36.708Z", + "new_balance":"6759.19", + "value":"-24.93" + } + }, + { + "id":"9efe6d10-2569-44ac-9c8e-b58056f45f89", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:19:13.924Z", + "completed":"2016-07-11T16:19:13.924Z", + "new_balance":"6743.18", + "value":"-16.01" + } + }, + { + "id":"3a5606b0-cb3e-47bc-8791-a8e6a34223e4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T18:19:04.395Z", + "completed":"2016-07-13T18:19:04.395Z", + "new_balance":"6638.46", + "value":"-104.72" + } + }, + { + "id":"18550a81-6986-4a7f-bfa8-a2a60a9af9a0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T22:47:25.723Z", + "completed":"2016-07-13T22:47:25.723Z", + "new_balance":"6593.40", + "value":"-45.06" + } + }, + { + "id":"2d843315-3c94-4575-867c-2c547574ccbb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T18:39:30.357Z", + "completed":"2016-07-16T18:39:30.357Z", + "new_balance":"6548.92", + "value":"-44.48" + } + }, + { + "id":"993578d2-931e-4a16-a200-ab271e76cad2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T21:30:42.307Z", + "completed":"2016-07-16T21:30:42.307Z", + "new_balance":"6639.80", + "value":"90.88" + } + }, + { + "id":"f989be33-9545-473e-8682-e04204c21d20", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T08:30:13.179Z", + "completed":"2016-07-17T08:30:13.179Z", + "new_balance":"6634.03", + "value":"-5.77" + } + }, + { + "id":"71a02ac0-813e-4d4f-80fe-b85a15671c72", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:58:10.266Z", + "completed":"2016-07-17T16:58:10.266Z", + "new_balance":"6623.96", + "value":"-10.07" + } + }, + { + "id":"1be289a0-6b5f-4349-80b2-a2b8d68cdcfb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T11:16:08.607Z", + "completed":"2016-07-19T11:16:08.607Z", + "new_balance":"6544.88", + "value":"-79.08" + } + }, + { + "id":"fe1cdc70-41df-4413-afb3-72ff3b8c1006", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T04:53:07.000Z", + "completed":"2016-07-21T04:53:07.000Z", + "new_balance":"6519.48", + "value":"-25.40" + } + }, + { + "id":"4231a7af-c38a-47de-8323-e268e4ccc8cc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T11:25:08.606Z", + "completed":"2016-07-23T11:25:08.606Z", + "new_balance":"6488.67", + "value":"-30.81" + } + }, + { + "id":"bda52860-547e-41de-893c-2d193ad2dcef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T13:22:00.364Z", + "completed":"2016-07-25T13:22:00.364Z", + "new_balance":"6473.84", + "value":"-14.83" + } + }, + { + "id":"516dfd01-a951-4850-9058-42db743eab88", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T20:51:27.067Z", + "completed":"2016-07-27T20:51:27.067Z", + "new_balance":"6466.85", + "value":"-6.99" + } + }, + { + "id":"e370ee5d-5a58-4340-8a17-bdb89c70589f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T02:47:21.148Z", + "completed":"2016-07-28T02:47:21.148Z", + "new_balance":"6418.07", + "value":"-48.78" + } + }, + { + "id":"e1c9de01-4497-4421-8ac9-c44e50b50044", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T22:10:40.494Z", + "completed":"2016-07-28T22:10:40.494Z", + "new_balance":"6220.16", + "value":"-197.91" + } + }, + { + "id":"995847b6-1852-4ba9-982a-2570090f9e11", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T21:04:19.494Z", + "completed":"2016-08-01T21:04:19.494Z", + "new_balance":"7242.58", + "value":"1022.42" + } + }, + { + "id":"0a3b4cda-7df8-45c9-afe6-6967e5462cf4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T08:10:19.706Z", + "completed":"2016-08-03T08:10:19.706Z", + "new_balance":"7079.10", + "value":"-163.48" + } + }, + { + "id":"dd786974-689e-4f0a-aa78-790afedc8f6b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T14:44:20.152Z", + "completed":"2016-08-03T14:44:20.152Z", + "new_balance":"6671.53", + "value":"-407.57" + } + }, + { + "id":"7b241c6a-4249-4a9d-9618-b2dadefd3515", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T23:22:29.878Z", + "completed":"2016-08-04T23:22:29.878Z", + "new_balance":"6657.02", + "value":"-14.51" + } + }, + { + "id":"aff2c549-fc99-43b8-b270-375b98272026", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T03:26:00.530Z", + "completed":"2016-08-07T03:26:00.530Z", + "new_balance":"6650.53", + "value":"-6.49" + } + }, + { + "id":"ca35d7a2-5430-45e6-ac20-efe357af8177", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T03:41:47.222Z", + "completed":"2016-08-07T03:41:47.222Z", + "new_balance":"6625.73", + "value":"-24.80" + } + }, + { + "id":"55fe1d95-f0c8-4627-83f6-94ded74aed57", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T05:25:10.642Z", + "completed":"2016-08-07T05:25:10.642Z", + "new_balance":"6596.57", + "value":"-29.16" + } + }, + { + "id":"77775181-bfcf-4bf5-b7b7-c7550ad00de4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T07:31:48.435Z", + "completed":"2016-08-08T07:31:48.435Z", + "new_balance":"6555.22", + "value":"-41.35" + } + }, + { + "id":"ee580766-5544-4b95-885f-0750607ecc02", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T08:41:10.177Z", + "completed":"2016-08-08T08:41:10.177Z", + "new_balance":"6450.50", + "value":"-104.72" + } + }, + { + "id":"0f6ffd3d-e8a9-4a5c-a096-362f580788f3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T09:59:32.973Z", + "completed":"2016-08-08T09:59:32.973Z", + "new_balance":"6399.94", + "value":"-50.56" + } + }, + { + "id":"ad960567-a7da-4b42-b679-1a9297ac4e2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T15:43:17.522Z", + "completed":"2016-08-09T15:43:17.522Z", + "new_balance":"6374.14", + "value":"-25.80" + } + }, + { + "id":"e112f9f0-6ba2-4860-8850-bd8e9a810b23", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T18:14:33.914Z", + "completed":"2016-08-11T18:14:33.914Z", + "new_balance":"6367.15", + "value":"-6.99" + } + }, + { + "id":"491d0fcd-6a07-4486-ad2a-2d075f7a8109", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T12:04:40.420Z", + "completed":"2016-08-14T12:04:40.420Z", + "new_balance":"6331.96", + "value":"-35.19" + } + }, + { + "id":"749a0226-88e7-48ee-ac2d-698345caee9c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T12:36:18.458Z", + "completed":"2016-08-15T12:36:18.458Z", + "new_balance":"6302.80", + "value":"-29.16" + } + }, + { + "id":"ebecab43-647f-4bf5-8538-030120efb110", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T15:42:41.470Z", + "completed":"2016-08-17T15:42:41.470Z", + "new_balance":"6297.03", + "value":"-5.77" + } + }, + { + "id":"63f61a9a-7855-49a3-9582-2613bb504571", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T20:36:26.070Z", + "completed":"2016-08-17T20:36:26.070Z", + "new_balance":"6251.52", + "value":"-45.51" + } + }, + { + "id":"b7a9b57e-973e-411d-a8d6-9e9e5776fd03", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T10:28:18.983Z", + "completed":"2016-08-19T10:28:18.983Z", + "new_balance":"6243.12", + "value":"-8.40" + } + }, + { + "id":"83e485ab-a3e2-4698-8bc3-02b5e485f349", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T21:23:45.751Z", + "completed":"2016-08-25T21:23:45.751Z", + "new_balance":"6357.26", + "value":"114.14" + } + }, + { + "id":"e88052cc-e682-41bd-b51a-88d9f3cb8fa8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T05:46:10.194Z", + "completed":"2016-08-28T05:46:10.194Z", + "new_balance":"6308.48", + "value":"-48.78" + } + }, + { + "id":"2fd764c4-bc35-4171-9f40-31e93597d169", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T21:40:26.800Z", + "completed":"2016-08-28T21:40:26.800Z", + "new_balance":"6110.57", + "value":"-197.91" + } + }, + { + "id":"facc09e7-f736-4b49-9dbb-a071691b1392", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T15:10:00.654Z", + "completed":"2016-09-01T15:10:00.654Z", + "new_balance":"7132.99", + "value":"1022.42" + } + }, + { + "id":"f0c0f676-32f5-4e8e-9f6d-d0f03c2242d8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T23:50:44.457Z", + "completed":"2016-09-03T23:50:44.457Z", + "new_balance":"6725.42", + "value":"-407.57" + } + }, + { + "id":"367f9528-4191-417d-82ba-a63ae6ca6d04", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T06:37:34.860Z", + "completed":"2016-09-04T06:37:34.860Z", + "new_balance":"6679.91", + "value":"-45.51" + } + }, + { + "id":"a217b90e-f8d1-4a3a-8864-32c89c9a789a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T08:38:28.001Z", + "completed":"2016-09-04T08:38:28.001Z", + "new_balance":"6648.46", + "value":"-31.45" + } + }, + { + "id":"073f7d05-8d91-4b00-9a89-cce6d3c05323", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T10:55:36.289Z", + "completed":"2016-09-04T10:55:36.289Z", + "new_balance":"6631.46", + "value":"-17.00" + } + }, + { + "id":"9fd5a20f-5188-49bb-9201-7f990b97ff8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T19:23:10.857Z", + "completed":"2016-09-04T19:23:10.857Z", + "new_balance":"6600.65", + "value":"-30.81" + } + }, + { + "id":"254b55dc-6294-44e6-a20c-eec0ad66d3ee", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T00:10:07.205Z", + "completed":"2016-09-05T00:10:07.205Z", + "new_balance":"6518.86", + "value":"-81.79" + } + }, + { + "id":"9f48dfa1-f3d7-470e-a55c-52ab162d4561", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T01:28:03.850Z", + "completed":"2016-09-05T01:28:03.850Z", + "new_balance":"6504.80", + "value":"-14.06" + } + }, + { + "id":"17f7ddb6-fb76-4573-8fc5-6983376602b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T01:37:41.722Z", + "completed":"2016-09-05T01:37:41.722Z", + "new_balance":"6499.03", + "value":"-5.77" + } + }, + { + "id":"0ec1ec55-8540-4401-b4e7-410bb8047e7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T08:04:53.966Z", + "completed":"2016-09-05T08:04:53.966Z", + "new_balance":"6394.31", + "value":"-104.72" + } + }, + { + "id":"322c52f1-6d93-4095-a162-eedd654b1c2f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T11:30:39.589Z", + "completed":"2016-09-05T11:30:39.589Z", + "new_balance":"6295.19", + "value":"-99.12" + } + }, + { + "id":"760fd78f-8e31-488f-a7f7-3229ac2d2d92", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T22:29:53.903Z", + "completed":"2016-09-05T22:29:53.903Z", + "new_balance":"6249.65", + "value":"-45.54" + } + }, + { + "id":"21347e40-eba6-405a-90b0-303e32109918", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T02:38:32.359Z", + "completed":"2016-09-07T02:38:32.359Z", + "new_balance":"6241.13", + "value":"-8.52" + } + }, + { + "id":"40238ff1-c7c2-4452-acc5-18d34eb1c3c5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T04:47:13.766Z", + "completed":"2016-09-07T04:47:13.766Z", + "new_balance":"6233.52", + "value":"-7.61" + } + }, + { + "id":"34392706-ae54-460a-b326-6609608962ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T15:25:09.871Z", + "completed":"2016-09-07T15:25:09.871Z", + "new_balance":"6225.91", + "value":"-7.61" + } + }, + { + "id":"a60b52f8-15fb-49d0-aeaf-40a48f37feb4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T22:26:24.472Z", + "completed":"2016-09-07T22:26:24.472Z", + "new_balance":"6220.14", + "value":"-5.77" + } + }, + { + "id":"57f0dcfe-cf4a-4de8-a524-70fe10e77e9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:30:06.326Z", + "completed":"2016-09-10T22:30:06.326Z", + "new_balance":"6187.80", + "value":"-32.34" + } + }, + { + "id":"4ad16285-56e2-4f4b-b6b4-46cefdf76754", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T01:04:38.075Z", + "completed":"2016-09-11T01:04:38.075Z", + "new_balance":"6175.43", + "value":"-12.37" + } + }, + { + "id":"3326d720-a54f-4c03-819e-94a974712e87", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T01:32:50.534Z", + "completed":"2016-09-11T01:32:50.534Z", + "new_balance":"6151.13", + "value":"-24.30" + } + }, + { + "id":"0e4581b9-7a32-4cdc-a33f-626708f11627", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T12:07:38.669Z", + "completed":"2016-09-11T12:07:38.669Z", + "new_balance":"6145.36", + "value":"-5.77" + } + }, + { + "id":"abdd118b-73cc-42b4-8cb0-3d38f4c23fe8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T05:07:30.145Z", + "completed":"2016-09-12T05:07:30.145Z", + "new_balance":"6126.20", + "value":"-19.16" + } + }, + { + "id":"76a761ed-7b23-4158-8a78-016eae1122fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:31:12.089Z", + "completed":"2016-09-12T10:31:12.089Z", + "new_balance":"6060.02", + "value":"-66.18" + } + }, + { + "id":"910f376a-a4c4-401d-ad72-6a569360781e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T19:06:19.072Z", + "completed":"2016-09-12T19:06:19.072Z", + "new_balance":"5958.76", + "value":"-101.26" + } + }, + { + "id":"40328cae-0dba-4157-8340-e04ecc26075c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T19:44:27.799Z", + "completed":"2016-09-12T19:44:27.799Z", + "new_balance":"5952.99", + "value":"-5.77" + } + }, + { + "id":"1da51a5f-7039-41ee-a6c4-d647bbc28abc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T12:43:04.151Z", + "completed":"2016-09-13T12:43:04.151Z", + "new_balance":"5910.50", + "value":"-42.49" + } + }, + { + "id":"c7218cd1-a721-41aa-a36e-89f055faf59e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T05:43:13.238Z", + "completed":"2016-09-14T05:43:13.238Z", + "new_balance":"5868.27", + "value":"-42.23" + } + }, + { + "id":"3c4ef94b-7c3d-4b1a-b37d-9adc92d80f11", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T07:34:21.525Z", + "completed":"2016-09-14T07:34:21.525Z", + "new_balance":"5862.50", + "value":"-5.77" + } + }, + { + "id":"94221e9f-d1b2-4122-b05b-3ae71dcd7fe3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T15:31:59.265Z", + "completed":"2016-09-16T15:31:59.265Z", + "new_balance":"5813.61", + "value":"-48.89" + } + }, + { + "id":"1b07f8b6-4d6e-455e-95bf-443f32154d2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T18:58:41.661Z", + "completed":"2016-09-18T18:58:41.661Z", + "new_balance":"5769.64", + "value":"-43.97" + } + }, + { + "id":"4962cc9d-6cd5-4ccd-88b3-1f8e24bee602", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T06:14:00.069Z", + "completed":"2016-09-21T06:14:00.069Z", + "new_balance":"5665.32", + "value":"-104.32" + } + }, + { + "id":"b54ccaf9-422b-443f-9380-b43dc1b3b254", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T13:47:44.079Z", + "completed":"2016-09-21T13:47:44.079Z", + "new_balance":"5567.82", + "value":"-97.50" + } + }, + { + "id":"26c2d4c9-20d9-4703-924a-926772d198af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T07:23:11.709Z", + "completed":"2016-09-23T07:23:11.709Z", + "new_balance":"5527.50", + "value":"-40.32" + } + }, + { + "id":"47ec67e2-0f60-48b2-8fcc-eb1c4fbc1bcb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T00:39:46.865Z", + "completed":"2016-09-24T00:39:46.865Z", + "new_balance":"5521.73", + "value":"-5.77" + } + }, + { + "id":"af742212-3068-4856-b60d-f339bdcc6064", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T10:20:31.291Z", + "completed":"2016-09-26T10:20:31.291Z", + "new_balance":"5508.94", + "value":"-12.79" + } + }, + { + "id":"c7fd032f-2609-45f9-ad37-3485848826aa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T10:35:58.023Z", + "completed":"2016-09-26T10:35:58.023Z", + "new_balance":"5483.32", + "value":"-25.62" + } + }, + { + "id":"bb7591e2-dc6b-462e-b4c9-9bd42afe3680", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T17:36:40.877Z", + "completed":"2016-09-26T17:36:40.877Z", + "new_balance":"5470.31", + "value":"-13.01" + } + }, + { + "id":"de04f6f4-d471-45cd-b311-6d8268f9a30a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T08:36:33.431Z", + "completed":"2016-09-27T08:36:33.431Z", + "new_balance":"5456.12", + "value":"-14.19" + } + }, + { + "id":"7bc5c115-eb60-4889-a38d-127f07753886", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T08:04:50.091Z", + "completed":"2016-09-28T08:04:50.091Z", + "new_balance":"5407.34", + "value":"-48.78" + } + }, + { + "id":"e551c846-db2e-4c95-8951-8a36971189a8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T18:01:40.310Z", + "completed":"2016-09-28T18:01:40.310Z", + "new_balance":"5209.43", + "value":"-197.91" + } + }, + { + "id":"0d0d6ab7-0ea0-4bbc-8511-c50ae70482ec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T03:50:21.586Z", + "completed":"2016-10-01T03:50:21.586Z", + "new_balance":"6231.85", + "value":"1022.42" + } + }, + { + "id":"60e844a8-52f7-4b29-b1b1-b70055e12387", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T08:19:17.172Z", + "completed":"2016-10-01T08:19:17.172Z", + "new_balance":"5824.28", + "value":"-407.57" + } + }, + { + "id":"626870ea-34fb-4919-9410-64e5ef36b754", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T18:12:21.501Z", + "completed":"2016-10-01T18:12:21.501Z", + "new_balance":"7504.69", + "value":"1680.41" + } + }, + { + "id":"659ab2cd-97f7-4786-9a45-4389c54d3c31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T11:17:31.172Z", + "completed":"2016-10-03T11:17:31.172Z", + "new_balance":"7487.07", + "value":"-17.62" + } + }, + { + "id":"4258ab60-d2a2-48aa-9249-4e7349abad12", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T17:39:02.285Z", + "completed":"2016-10-03T17:39:02.285Z", + "new_balance":"7440.27", + "value":"-46.80" + } + }, + { + "id":"4f72b017-abb7-4c3f-b4cf-e7e1f3bee7f5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T22:40:09.494Z", + "completed":"2016-10-03T22:40:09.494Z", + "new_balance":"7433.89", + "value":"-6.38" + } + }, + { + "id":"9e49b3ee-d677-4415-b31e-644082cb3cf8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:55:35.436Z", + "completed":"2016-10-05T12:55:35.436Z", + "new_balance":"7426.90", + "value":"-6.99" + } + }, + { + "id":"2c73c18b-5735-4f27-b48b-d3d6108a6fc1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T20:14:17.322Z", + "completed":"2016-10-05T20:14:17.322Z", + "new_balance":"7415.99", + "value":"-10.91" + } + }, + { + "id":"b48841f7-5f9b-44c7-b090-b96e7fe82c5b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T02:24:22.534Z", + "completed":"2016-10-06T02:24:22.534Z", + "new_balance":"7391.06", + "value":"-24.93" + } + }, + { + "id":"26ca2a37-4ba7-41d9-9f8a-9f1929c42bf0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T12:15:16.404Z", + "completed":"2016-10-09T12:15:16.404Z", + "new_balance":"7371.90", + "value":"-19.16" + } + }, + { + "id":"95ecb97f-88dc-456e-b1ab-4b943ee953c7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T13:40:44.982Z", + "completed":"2016-10-10T13:40:44.982Z", + "new_balance":"7356.91", + "value":"-14.99" + } + }, + { + "id":"4b535354-5035-49e5-8dee-25149ef3af5f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T01:21:26.644Z", + "completed":"2016-10-11T01:21:26.644Z", + "new_balance":"7327.75", + "value":"-29.16" + } + }, + { + "id":"321f07f0-f31f-4603-b942-f610648822fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T22:51:13.751Z", + "completed":"2016-10-11T22:51:13.751Z", + "new_balance":"7311.74", + "value":"-16.01" + } + }, + { + "id":"0e970c60-1336-4c3e-bfa0-ca849962cd94", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T02:56:53.807Z", + "completed":"2016-10-14T02:56:53.807Z", + "new_balance":"7207.02", + "value":"-104.72" + } + }, + { + "id":"e32f1a0b-504c-42b1-bb4f-c31446944aab", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T18:34:46.738Z", + "completed":"2016-10-14T18:34:46.738Z", + "new_balance":"7161.96", + "value":"-45.06" + } + }, + { + "id":"92853609-7ab7-4def-8365-8af7f11dca6b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T12:25:37.105Z", + "completed":"2016-10-17T12:25:37.105Z", + "new_balance":"7117.48", + "value":"-44.48" + } + }, + { + "id":"8ddff9b1-6e14-4802-8010-80a56514fedb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T03:00:03.388Z", + "completed":"2016-10-18T03:00:03.388Z", + "new_balance":"7107.41", + "value":"-10.07" + } + }, + { + "id":"987eda76-39a7-47a7-921f-8960408e17af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T08:48:25.459Z", + "completed":"2016-10-18T08:48:25.459Z", + "new_balance":"7101.64", + "value":"-5.77" + } + }, + { + "id":"12ba898c-d020-4f3e-9e19-7c279a2223b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T17:23:07.632Z", + "completed":"2016-10-18T17:23:07.632Z", + "new_balance":"7022.56", + "value":"-79.08" + } + }, + { + "id":"cc78f51e-1021-42be-b253-427e2a339343", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T01:09:31.260Z", + "completed":"2016-10-23T01:09:31.260Z", + "new_balance":"6997.16", + "value":"-25.40" + } + }, + { + "id":"01a72c1b-f573-4dcd-bec3-51ae5933ed90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T04:45:32.370Z", + "completed":"2016-10-24T04:45:32.370Z", + "new_balance":"6982.33", + "value":"-14.83" + } + }, + { + "id":"c9c7cca1-c3cf-4623-a6bb-5a6929998eec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T08:44:18.316Z", + "completed":"2016-10-24T08:44:18.316Z", + "new_balance":"6951.52", + "value":"-30.81" + } + }, + { + "id":"1959f0d7-ce7d-41ee-8f33-54897236b917", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T19:52:13.121Z", + "completed":"2016-10-26T19:52:13.121Z", + "new_balance":"6944.53", + "value":"-6.99" + } + }, + { + "id":"fb69621a-8121-4a15-bedf-343fd238767e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T04:11:06.279Z", + "completed":"2016-10-30T04:11:06.279Z", + "new_balance":"6895.75", + "value":"-48.78" + } + }, + { + "id":"2ed9755b-3623-4562-aabd-162bb81ba01e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T22:38:42.471Z", + "completed":"2016-10-30T22:38:42.471Z", + "new_balance":"6697.84", + "value":"-197.91" + } + }, + { + "id":"cea3455c-5e08-4587-9600-a3c8a90413bf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T18:49:21.685Z", + "completed":"2016-11-02T18:49:21.685Z", + "new_balance":"6683.33", + "value":"-14.51" + } + }, + { + "id":"3e9f9f6b-513c-46ad-ba0e-647200bb059b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T21:56:33.728Z", + "completed":"2016-11-02T21:56:33.728Z", + "new_balance":"6275.76", + "value":"-407.57" + } + }, + { + "id":"69ec80d6-ed1c-4030-8d38-3ca82bfe27db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T22:49:45.780Z", + "completed":"2016-11-02T22:49:45.780Z", + "new_balance":"6112.28", + "value":"-163.48" + } + }, + { + "id":"bec73a66-a3b2-473c-8af1-f26e674b97ef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T23:27:24.131Z", + "completed":"2016-11-02T23:27:24.131Z", + "new_balance":"6105.79", + "value":"-6.49" + } + }, + { + "id":"cb1d6bce-0c78-424c-941d-defb1e31d86e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T11:35:21.494Z", + "completed":"2016-11-06T11:35:21.494Z", + "new_balance":"6076.63", + "value":"-29.16" + } + }, + { + "id":"9b641e38-7f01-4159-96be-35d2abd78047", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T23:37:51.847Z", + "completed":"2016-11-06T23:37:51.847Z", + "new_balance":"6051.83", + "value":"-24.80" + } + }, + { + "id":"ad5090c6-3312-4025-9506-1f9dd003bc08", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:01:33.414Z", + "completed":"2016-11-07T14:01:33.414Z", + "new_balance":"6010.48", + "value":"-41.35" + } + }, + { + "id":"d0f5cf9b-1b8a-4210-9bb8-d3d2f72daad3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T15:35:23.416Z", + "completed":"2016-11-07T15:35:23.416Z", + "new_balance":"5905.76", + "value":"-104.72" + } + }, + { + "id":"a4ff9966-db6e-4cf3-abaa-897e66687038", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T22:55:18.909Z", + "completed":"2016-11-09T22:55:18.909Z", + "new_balance":"6928.18", + "value":"1022.42" + } + }, + { + "id":"3353149f-6c91-4677-b58f-42de96d47722", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:29:32.516Z", + "completed":"2016-11-14T01:29:32.516Z", + "new_balance":"6902.38", + "value":"-25.80" + } + }, + { + "id":"586a9f9c-ff50-4f34-8764-ab3d8090ce9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T02:49:05.008Z", + "completed":"2016-11-14T02:49:05.008Z", + "new_balance":"6851.82", + "value":"-50.56" + } + }, + { + "id":"149948d2-b15d-4cc6-9274-0156fe9c1240", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T17:22:23.448Z", + "completed":"2016-11-16T17:22:23.448Z", + "new_balance":"6844.83", + "value":"-6.99" + } + }, + { + "id":"0d55e0a9-c2de-447f-b4bf-66568ce54fc1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T18:54:43.030Z", + "completed":"2016-11-20T18:54:43.030Z", + "new_balance":"6809.64", + "value":"-35.19" + } + }, + { + "id":"45b07525-5412-4d49-8f6b-7c2b91923cfd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T00:30:27.676Z", + "completed":"2016-11-23T00:30:27.676Z", + "new_balance":"6780.48", + "value":"-29.16" + } + }, + { + "id":"c4f56cb2-3291-42c0-b023-534d6272545f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T06:14:39.744Z", + "completed":"2016-11-23T06:14:39.744Z", + "new_balance":"6734.97", + "value":"-45.51" + } + }, + { + "id":"4e7707c7-345a-4815-9aaf-79f1e46160e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T11:22:27.797Z", + "completed":"2016-11-23T11:22:27.797Z", + "new_balance":"6729.20", + "value":"-5.77" + } + }, + { + "id":"99e276fc-95aa-4569-be37-f958d1451217", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T19:08:58.683Z", + "completed":"2016-11-28T19:08:58.683Z", + "new_balance":"6720.80", + "value":"-8.40" + } + }, + { + "id":"57f4fd0f-24d5-4ace-83cc-ca05b45eef7b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T10:29:55.497Z", + "completed":"2016-11-30T10:29:55.497Z", + "new_balance":"6672.02", + "value":"-48.78" + } + }, + { + "id":"6da6aa5b-566e-47f0-9a9b-3a39691dfaba", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T20:44:37.504Z", + "completed":"2016-11-30T20:44:37.504Z", + "new_balance":"6474.11", + "value":"-197.91" + } + }, + { + "id":"d8abd850-ec1c-4c99-8b8f-1128724b2694", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T04:37:43.659Z", + "completed":"2016-12-01T04:37:43.659Z", + "new_balance":"7496.53", + "value":"1022.42" + } + }, + { + "id":"8613d318-1133-4221-91e6-be4de1ba5622", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T13:06:38.083Z", + "completed":"2016-12-01T13:06:38.083Z", + "new_balance":"7088.96", + "value":"-407.57" + } + }, + { + "id":"f20dd421-5d28-4947-bfd4-672dc79e6d48", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T13:43:00.253Z", + "completed":"2016-12-04T13:43:00.253Z", + "new_balance":"7057.51", + "value":"-31.45" + } + }, + { + "id":"65963fea-02ef-4a91-af4f-88402a6bbe10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T22:27:40.404Z", + "completed":"2016-12-04T22:27:40.404Z", + "new_balance":"7040.51", + "value":"-17.00" + } + }, + { + "id":"2c5e8d9c-683d-4721-bc80-abd66797d414", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T09:29:57.719Z", + "completed":"2016-12-11T09:29:57.719Z", + "new_balance":"7009.70", + "value":"-30.81" + } + }, + { + "id":"63c0d31f-6095-47b3-94ee-a4ea7e215719", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T23:32:58.865Z", + "completed":"2016-12-11T23:32:58.865Z", + "new_balance":"6964.19", + "value":"-45.51" + } + }, + { + "id":"3a1e5f2a-8737-4d5c-b0e9-7ed033650980", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T02:41:53.739Z", + "completed":"2016-12-14T02:41:53.739Z", + "new_balance":"6950.13", + "value":"-14.06" + } + }, + { + "id":"19243dc1-fd06-40da-8dfb-25f11600238f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T03:38:04.711Z", + "completed":"2016-12-14T03:38:04.711Z", + "new_balance":"6942.52", + "value":"-7.61" + } + }, + { + "id":"01f82378-25bd-4fde-930e-7a69d43b04e1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T04:01:47.964Z", + "completed":"2016-12-14T04:01:47.964Z", + "new_balance":"6837.80", + "value":"-104.72" + } + }, + { + "id":"7ca5ed93-a1c7-4bcd-829d-ee636f9b7057", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T04:43:28.191Z", + "completed":"2016-12-14T04:43:28.191Z", + "new_balance":"6832.03", + "value":"-5.77" + } + }, + { + "id":"1b4262b8-094a-4442-85d4-91d2189d9df9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T07:34:48.408Z", + "completed":"2016-12-14T07:34:48.408Z", + "new_balance":"6732.91", + "value":"-99.12" + } + }, + { + "id":"590f28f8-e68d-4a3d-87bd-5dd10acbf395", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T10:54:24.819Z", + "completed":"2016-12-14T10:54:24.819Z", + "new_balance":"6687.37", + "value":"-45.54" + } + }, + { + "id":"6820fcc6-f3b7-47e7-a279-d152ee471eac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T15:06:06.573Z", + "completed":"2016-12-14T15:06:06.573Z", + "new_balance":"6679.76", + "value":"-7.61" + } + }, + { + "id":"0b5b4209-d5a9-4324-bfa3-5294916116af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T17:05:50.663Z", + "completed":"2016-12-14T17:05:50.663Z", + "new_balance":"6597.97", + "value":"-81.79" + } + }, + { + "id":"db9029fb-253c-431a-b3ea-202159df4840", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T22:48:12.414Z", + "completed":"2016-12-14T22:48:12.414Z", + "new_balance":"6592.20", + "value":"-5.77" + } + }, + { + "id":"f7e35f70-90a0-4985-b221-eb475f421f27", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T08:45:00.573Z", + "completed":"2016-12-15T08:45:00.573Z", + "new_balance":"6583.68", + "value":"-8.52" + } + }, + { + "id":"5dc47e26-5882-42fe-a340-10fe6a13038a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T14:12:37.658Z", + "completed":"2016-12-15T14:12:37.658Z", + "new_balance":"6551.34", + "value":"-32.34" + } + }, + { + "id":"b58efac6-d9c0-4624-9cfc-e264505f4562", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T20:07:34.199Z", + "completed":"2016-12-15T20:07:34.199Z", + "new_balance":"6545.57", + "value":"-5.77" + } + }, + { + "id":"a7ece894-cc30-4ec6-9640-46fce4df8253", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T03:43:00.809Z", + "completed":"2016-12-18T03:43:00.809Z", + "new_balance":"6444.31", + "value":"-101.26" + } + }, + { + "id":"73c900f9-711f-427d-bf61-748fd96b6850", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T05:13:07.872Z", + "completed":"2016-12-18T05:13:07.872Z", + "new_balance":"6420.01", + "value":"-24.30" + } + }, + { + "id":"3cec3911-5b73-41a1-acc5-b100efc6f738", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T08:51:28.687Z", + "completed":"2016-12-18T08:51:28.687Z", + "new_balance":"6414.24", + "value":"-5.77" + } + }, + { + "id":"891e0fb7-336f-4c25-86b9-18ccf22e30d0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T11:36:50.654Z", + "completed":"2016-12-18T11:36:50.654Z", + "new_balance":"6395.08", + "value":"-19.16" + } + }, + { + "id":"0a3e43a6-dd24-49e1-b99b-c335f5f2bdd3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T14:48:23.220Z", + "completed":"2016-12-18T14:48:23.220Z", + "new_balance":"6352.59", + "value":"-42.49" + } + }, + { + "id":"31bfc868-acea-417c-8d1f-9d206309dde2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T14:54:31.890Z", + "completed":"2016-12-18T14:54:31.890Z", + "new_balance":"6286.41", + "value":"-66.18" + } + }, + { + "id":"f99e0cfe-4557-4a57-9478-a123d8daa6d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T18:08:02.201Z", + "completed":"2016-12-18T18:08:02.201Z", + "new_balance":"6280.64", + "value":"-5.77" + } + }, + { + "id":"efe7acc3-d09d-484b-82aa-6f9daf9928ba", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T18:34:42.603Z", + "completed":"2016-12-18T18:34:42.603Z", + "new_balance":"6268.27", + "value":"-12.37" + } + }, + { + "id":"bbb4a0b1-583c-458d-b885-ea32ea2b4214", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T01:31:53.708Z", + "completed":"2016-12-19T01:31:53.708Z", + "new_balance":"6219.38", + "value":"-48.89" + } + }, + { + "id":"8eb7f369-e313-436c-a6bf-c823f9ed0437", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:36:47.262Z", + "completed":"2016-12-19T02:36:47.262Z", + "new_balance":"6177.15", + "value":"-42.23" + } + }, + { + "id":"9d4bb3e6-8cf6-4ab5-b64e-56ac36220abc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:44:00.863Z", + "completed":"2016-12-19T15:44:00.863Z", + "new_balance":"6133.18", + "value":"-43.97" + } + }, + { + "id":"8fe8e8e9-40de-4327-ba34-93d1404ec8f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T12:46:35.846Z", + "completed":"2016-12-21T12:46:35.846Z", + "new_balance":"6127.41", + "value":"-5.77" + } + }, + { + "id":"278bb0c6-c951-4f13-be24-48d1e9a56ca7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T14:21:30.414Z", + "completed":"2016-12-21T14:21:30.414Z", + "new_balance":"6114.40", + "value":"-13.01" + } + }, + { + "id":"b5524b33-2535-42a6-881f-af2ef7f75201", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T18:41:47.891Z", + "completed":"2016-12-21T18:41:47.891Z", + "new_balance":"6010.08", + "value":"-104.32" + } + }, + { + "id":"5a4b3820-89d8-4696-b99d-2f79cc7cc413", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T19:15:02.710Z", + "completed":"2016-12-21T19:15:02.710Z", + "new_balance":"5969.76", + "value":"-40.32" + } + }, + { + "id":"bb9c28f4-bf75-4dab-a430-a61df03618e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T19:40:56.545Z", + "completed":"2016-12-21T19:40:56.545Z", + "new_balance":"5872.26", + "value":"-97.50" + } + }, + { + "id":"2ace4295-3d4b-4610-919c-5689c57dc328", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T07:37:12.510Z", + "completed":"2016-12-24T07:37:12.510Z", + "new_balance":"5858.07", + "value":"-14.19" + } + }, + { + "id":"784caff0-8873-4bd0-8fd0-9965c763d5d2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T17:27:50.529Z", + "completed":"2016-12-24T17:27:50.529Z", + "new_balance":"5845.28", + "value":"-12.79" + } + }, + { + "id":"162548bf-026d-4738-9585-f016ca4d3712", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T21:52:38.002Z", + "completed":"2016-12-24T21:52:38.002Z", + "new_balance":"5819.66", + "value":"-25.62" + } + }, + { + "id":"3eb81abc-b29c-488d-b990-91e8164a70a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T05:00:28.039Z", + "completed":"2016-12-30T05:00:28.039Z", + "new_balance":"5770.88", + "value":"-48.78" + } + }, + { + "id":"4a829cba-0b73-43e1-b2fd-0f4d4f3fd944", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T16:07:48.085Z", + "completed":"2016-12-30T16:07:48.085Z", + "new_balance":"5572.97", + "value":"-197.91" + } + }, + { + "id":"9be0b02d-1e4d-4df6-b1db-00578f0f1dca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T12:07:10.783Z", + "completed":"2017-01-01T12:07:10.783Z", + "new_balance":"6595.39", + "value":"1022.42" + } + }, + { + "id":"0180dc78-4b17-403c-88ba-dee784b9c16b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T23:00:04.708Z", + "completed":"2017-01-01T23:00:04.708Z", + "new_balance":"8275.80", + "value":"1680.41" + } + }, + { + "id":"55779d12-1f13-4195-a6a3-be05a6ad7c31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T09:03:19.588Z", + "completed":"2017-01-02T09:03:19.588Z", + "new_balance":"7868.23", + "value":"-407.57" + } + }, + { + "id":"bf99b30c-6264-4163-9866-5e1308e2180d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T02:13:29.842Z", + "completed":"2017-01-03T02:13:29.842Z", + "new_balance":"7821.43", + "value":"-46.80" + } + }, + { + "id":"1c4f255a-a7d9-4244-ba6a-a0f51a3dec61", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T04:04:44.654Z", + "completed":"2017-01-03T04:04:44.654Z", + "new_balance":"7803.81", + "value":"-17.62" + } + }, + { + "id":"ec8feb86-affd-4a19-8640-bfb9e5a79fbc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T14:00:59.403Z", + "completed":"2017-01-03T14:00:59.403Z", + "new_balance":"7797.43", + "value":"-6.38" + } + }, + { + "id":"9c95629b-87e1-4692-acd4-d6e3797f4ed4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T21:01:59.067Z", + "completed":"2017-01-04T21:01:59.067Z", + "new_balance":"7786.52", + "value":"-10.91" + } + }, + { + "id":"681f8629-7f70-4f83-bd63-6e81a6bdf67f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T00:41:55.580Z", + "completed":"2017-01-05T00:41:55.580Z", + "new_balance":"7779.53", + "value":"-6.99" + } + }, + { + "id":"d6220eb2-17b7-430f-b97f-23db52d9e2f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T08:50:24.363Z", + "completed":"2017-01-07T08:50:24.363Z", + "new_balance":"7754.60", + "value":"-24.93" + } + }, + { + "id":"908c6cdf-335b-4406-b93f-6b1d898abc3a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T11:02:00.619Z", + "completed":"2017-01-07T11:02:00.619Z", + "new_balance":"7735.44", + "value":"-19.16" + } + }, + { + "id":"887fe8be-dd13-4c86-b007-4f5584099348", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T05:20:32.014Z", + "completed":"2017-01-08T05:20:32.014Z", + "new_balance":"7719.43", + "value":"-16.01" + } + }, + { + "id":"17d972f1-fd36-4e2e-b099-207a013f2b01", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T23:15:49.617Z", + "completed":"2017-01-08T23:15:49.617Z", + "new_balance":"7704.44", + "value":"-14.99" + } + }, + { + "id":"d61d5be2-7053-4b57-847f-b9a1903372b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T07:33:11.168Z", + "completed":"2017-01-09T07:33:11.168Z", + "new_balance":"7659.38", + "value":"-45.06" + } + }, + { + "id":"28d3b76f-09e3-4869-b173-3e62ebf25d49", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T21:03:13.350Z", + "completed":"2017-01-09T21:03:13.350Z", + "new_balance":"7630.22", + "value":"-29.16" + } + }, + { + "id":"f38aeb66-856d-4803-8c28-be71c70a8e59", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T11:29:37.488Z", + "completed":"2017-01-10T11:29:37.488Z", + "new_balance":"7525.50", + "value":"-104.72" + } + }, + { + "id":"3dec1dbc-00e2-4b0f-b668-25692d8e56f5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T17:29:58.899Z", + "completed":"2017-01-10T17:29:58.899Z", + "new_balance":"7481.02", + "value":"-44.48" + } + }, + { + "id":"bf7c231e-1095-4dca-a149-9d8f68810574", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T01:21:44.594Z", + "completed":"2017-01-11T01:21:44.594Z", + "new_balance":"7571.90", + "value":"90.88" + } + }, + { + "id":"a067a19f-8bfd-433a-aab0-b963af5fb3a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T02:50:06.605Z", + "completed":"2017-01-11T02:50:06.605Z", + "new_balance":"7566.13", + "value":"-5.77" + } + }, + { + "id":"f76a4385-c51a-4bd5-a223-97022ec51a93", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T03:09:51.290Z", + "completed":"2017-01-11T03:09:51.290Z", + "new_balance":"7487.05", + "value":"-79.08" + } + }, + { + "id":"a646e179-25a5-47a3-b4aa-2a2e55ee5882", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T21:52:03.345Z", + "completed":"2017-01-12T21:52:03.345Z", + "new_balance":"7476.98", + "value":"-10.07" + } + }, + { + "id":"19b9438a-56d7-41bf-a70f-47180b9dff23", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T20:49:16.448Z", + "completed":"2017-01-15T20:49:16.448Z", + "new_balance":"7451.58", + "value":"-25.40" + } + }, + { + "id":"c9d83f66-3b08-4a15-9b05-8bf9fc903fc9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T05:07:12.903Z", + "completed":"2017-01-16T05:07:12.903Z", + "new_balance":"7420.77", + "value":"-30.81" + } + }, + { + "id":"4cc345d6-9977-4290-be02-b4ee790c1ec0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T22:01:31.314Z", + "completed":"2017-01-17T22:01:31.314Z", + "new_balance":"7405.94", + "value":"-14.83" + } + }, + { + "id":"41679eaa-7e12-40c0-aecb-c600b9f51e3c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T23:55:21.127Z", + "completed":"2017-01-20T23:55:21.127Z", + "new_balance":"7398.95", + "value":"-6.99" + } + }, + { + "id":"bb495469-a32d-40b7-a3d6-18c96755a257", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T08:36:26.847Z", + "completed":"2017-01-21T08:36:26.847Z", + "new_balance":"7350.17", + "value":"-48.78" + } + }, + { + "id":"d842955b-0e1d-4e29-bb0c-75a5f2517f4e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T05:08:57.267Z", + "completed":"2017-01-23T05:08:57.267Z", + "new_balance":"7152.26", + "value":"-197.91" + } + }, + { + "id":"5679cc89-45cf-4d3f-8bb0-48132ab0fa16", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T13:18:11.411Z", + "completed":"2017-02-01T13:18:11.411Z", + "new_balance":"8174.68", + "value":"1022.42" + } + }, + { + "id":"3bd55340-d80b-48d2-bd5e-3cf02d130061", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T05:28:00.564Z", + "completed":"2017-02-03T05:28:00.564Z", + "new_balance":"8011.20", + "value":"-163.48" + } + }, + { + "id":"8e8c0615-c1ba-46f9-b2a5-1ec61bfdf92b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T23:58:23.186Z", + "completed":"2017-02-03T23:58:23.186Z", + "new_balance":"7603.63", + "value":"-407.57" + } + }, + { + "id":"bffc2520-25bf-47ac-952f-badbe0993889", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T18:19:55.676Z", + "completed":"2017-02-04T18:19:55.676Z", + "new_balance":"7589.12", + "value":"-14.51" + } + }, + { + "id":"6ef1030d-3bd8-4dfa-a4d6-371bfbb3cc0f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T18:50:32.260Z", + "completed":"2017-02-05T18:50:32.260Z", + "new_balance":"7582.63", + "value":"-6.49" + } + }, + { + "id":"9cf6ae37-d337-4576-8c71-2769daee4332", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T07:21:10.786Z", + "completed":"2017-02-06T07:21:10.786Z", + "new_balance":"7557.83", + "value":"-24.80" + } + }, + { + "id":"26c0798f-6aec-455c-9569-30c3bd29464f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T09:40:27.181Z", + "completed":"2017-02-07T09:40:27.181Z", + "new_balance":"7453.11", + "value":"-104.72" + } + }, + { + "id":"42481dff-373b-48d7-abb3-589edf19013a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T10:57:46.471Z", + "completed":"2017-02-07T10:57:46.471Z", + "new_balance":"7411.76", + "value":"-41.35" + } + }, + { + "id":"3326fefb-db24-4e02-af78-90af7d8eddd7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:35:48.705Z", + "completed":"2017-02-07T20:35:48.705Z", + "new_balance":"7382.60", + "value":"-29.16" + } + }, + { + "id":"bb1c094b-e377-419e-8e7f-22662514654c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T03:08:28.798Z", + "completed":"2017-02-08T03:08:28.798Z", + "new_balance":"7332.04", + "value":"-50.56" + } + }, + { + "id":"5458025d-ad85-43f3-b51e-bfa68f7b90de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T12:36:12.930Z", + "completed":"2017-02-09T12:36:12.930Z", + "new_balance":"7306.24", + "value":"-25.80" + } + }, + { + "id":"863d35b3-745f-407f-a565-a0d072d317ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T17:05:44.457Z", + "completed":"2017-02-10T17:05:44.457Z", + "new_balance":"7299.25", + "value":"-6.99" + } + }, + { + "id":"54ba7ffe-eeba-4436-aded-700fd1701271", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T17:49:49.318Z", + "completed":"2017-02-12T17:49:49.318Z", + "new_balance":"7264.06", + "value":"-35.19" + } + }, + { + "id":"8c20b184-623e-46a1-9792-f1d58dc0b509", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T10:36:17.568Z", + "completed":"2017-02-14T10:36:17.568Z", + "new_balance":"7234.90", + "value":"-29.16" + } + }, + { + "id":"cf13b36e-2fd4-4805-ae37-23361996433c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T13:25:42.995Z", + "completed":"2017-02-16T13:25:42.995Z", + "new_balance":"7229.13", + "value":"-5.77" + } + }, + { + "id":"37fc270c-a78c-484b-a487-e2b0f2d92033", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T19:37:30.457Z", + "completed":"2017-02-16T19:37:30.457Z", + "new_balance":"7183.62", + "value":"-45.51" + } + }, + { + "id":"43185c0c-99f0-4808-8b08-3f11f4af7d82", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T01:51:17.929Z", + "completed":"2017-02-18T01:51:17.929Z", + "new_balance":"7175.22", + "value":"-8.40" + } + }, + { + "id":"532d63f7-52c7-42d2-abd4-0d8663e5476e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T01:10:52.898Z", + "completed":"2017-02-21T01:10:52.898Z", + "new_balance":"7289.36", + "value":"114.14" + } + }, + { + "id":"20e9365d-6c19-4faa-8598-5fc947123f46", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T22:33:24.901Z", + "completed":"2017-02-21T22:33:24.901Z", + "new_balance":"7240.58", + "value":"-48.78" + } + }, + { + "id":"95b24f73-2d05-4026-8563-600826d7215b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T12:15:38.990Z", + "completed":"2017-02-27T12:15:38.990Z", + "new_balance":"7042.67", + "value":"-197.91" + } + }, + { + "id":"315e37fb-268c-426c-854c-6df35fb38ef0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T22:32:05.734Z", + "completed":"2017-03-01T22:32:05.734Z", + "new_balance":"8065.09", + "value":"1022.42" + } + }, + { + "id":"7a6593a4-8ebd-4600-9b7d-764e629a4ee3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T13:15:30.770Z", + "completed":"2017-03-03T13:15:30.770Z", + "new_balance":"7657.52", + "value":"-407.57" + } + }, + { + "id":"6268bd08-cc94-4b61-8713-0b92bc509881", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T04:03:46.459Z", + "completed":"2017-03-04T04:03:46.459Z", + "new_balance":"7612.01", + "value":"-45.51" + } + }, + { + "id":"8233f1db-e226-4ca6-8928-7fbab4640462", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T11:03:59.900Z", + "completed":"2017-03-04T11:03:59.900Z", + "new_balance":"7595.01", + "value":"-17.00" + } + }, + { + "id":"4b6955db-a680-4874-834b-31e60b6c5154", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:39:45.011Z", + "completed":"2017-03-04T11:39:45.011Z", + "new_balance":"7564.20", + "value":"-30.81" + } + }, + { + "id":"b535ce68-5065-42b6-b23f-8097d8e6c15f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T14:04:45.017Z", + "completed":"2017-03-04T14:04:45.017Z", + "new_balance":"7532.75", + "value":"-31.45" + } + }, + { + "id":"41fbfe7a-067c-47cb-ad67-ca559a4b3397", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T01:16:44.163Z", + "completed":"2017-03-05T01:16:44.163Z", + "new_balance":"7526.98", + "value":"-5.77" + } + }, + { + "id":"f349f049-7ba3-489b-9862-3f6d1aef3fc3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T01:22:42.371Z", + "completed":"2017-03-05T01:22:42.371Z", + "new_balance":"7512.92", + "value":"-14.06" + } + }, + { + "id":"76d811cc-2c16-4982-be05-515b59c40d90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T02:50:33.543Z", + "completed":"2017-03-05T02:50:33.543Z", + "new_balance":"7467.38", + "value":"-45.54" + } + }, + { + "id":"e5858b56-0161-4da1-b21b-3387bf6affb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T15:39:45.289Z", + "completed":"2017-03-05T15:39:45.289Z", + "new_balance":"7362.66", + "value":"-104.72" + } + }, + { + "id":"69c80096-7ec1-42d9-aec8-17adb8bc637e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T03:46:08.945Z", + "completed":"2017-03-06T03:46:08.945Z", + "new_balance":"7280.87", + "value":"-81.79" + } + }, + { + "id":"c36744ad-01ef-4aea-afe9-f47ba2ad2df6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T20:11:26.494Z", + "completed":"2017-03-06T20:11:26.494Z", + "new_balance":"7181.75", + "value":"-99.12" + } + }, + { + "id":"003aa67b-bcfa-4af4-8f91-78d755d4762d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T04:55:19.341Z", + "completed":"2017-03-07T04:55:19.341Z", + "new_balance":"7174.14", + "value":"-7.61" + } + }, + { + "id":"367c7996-9a33-4fde-b9d2-4a6e55871c17", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T07:06:51.535Z", + "completed":"2017-03-07T07:06:51.535Z", + "new_balance":"7168.37", + "value":"-5.77" + } + }, + { + "id":"eee95d43-8477-4e97-9110-4bfa1ee03b9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T11:51:21.429Z", + "completed":"2017-03-08T11:51:21.429Z", + "new_balance":"7159.85", + "value":"-8.52" + } + }, + { + "id":"76c5d20f-c7e9-482a-beb7-391ff47d22ad", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T16:43:10.689Z", + "completed":"2017-03-08T16:43:10.689Z", + "new_balance":"7152.24", + "value":"-7.61" + } + }, + { + "id":"12429c6d-3991-4415-8232-ce73a726a1fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T08:34:11.754Z", + "completed":"2017-03-10T08:34:11.754Z", + "new_balance":"7119.90", + "value":"-32.34" + } + }, + { + "id":"aefa4390-c813-4dcd-ab38-cf84d26b1534", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:06:46.362Z", + "completed":"2017-03-11T19:06:46.362Z", + "new_balance":"7107.53", + "value":"-12.37" + } + }, + { + "id":"e710b32d-6fc1-4eaf-a6d4-cbc3cdaa2d2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T21:51:11.248Z", + "completed":"2017-03-11T21:51:11.248Z", + "new_balance":"7083.23", + "value":"-24.30" + } + }, + { + "id":"f41b3fda-fc44-403d-9c12-2f24927dacb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T23:49:33.935Z", + "completed":"2017-03-11T23:49:33.935Z", + "new_balance":"7077.46", + "value":"-5.77" + } + }, + { + "id":"c51cbfea-2386-43ee-9828-af522bc6001e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T02:35:28.317Z", + "completed":"2017-03-12T02:35:28.317Z", + "new_balance":"7011.28", + "value":"-66.18" + } + }, + { + "id":"80a54643-94e5-4253-9ef9-62571126d145", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T15:48:33.937Z", + "completed":"2017-03-12T15:48:33.937Z", + "new_balance":"6992.12", + "value":"-19.16" + } + }, + { + "id":"a0b7dd90-6de5-4fe4-9af6-247d33a7f3f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T19:34:59.860Z", + "completed":"2017-03-12T19:34:59.860Z", + "new_balance":"6986.35", + "value":"-5.77" + } + }, + { + "id":"07ec7c83-26f3-4bb3-ae01-8d66c50ef34f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:47:24.015Z", + "completed":"2017-03-12T20:47:24.015Z", + "new_balance":"6885.09", + "value":"-101.26" + } + }, + { + "id":"f147b7d5-2e6e-4451-8539-022007ad2efc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T04:35:46.398Z", + "completed":"2017-03-13T04:35:46.398Z", + "new_balance":"6842.60", + "value":"-42.49" + } + }, + { + "id":"706b81b8-7648-4866-91f5-245392be9c94", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T14:11:16.454Z", + "completed":"2017-03-13T14:11:16.454Z", + "new_balance":"6836.83", + "value":"-5.77" + } + }, + { + "id":"9ee6d8ec-3c3a-47b9-9de5-f08f060b0afa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T13:14:26.747Z", + "completed":"2017-03-15T13:14:26.747Z", + "new_balance":"6787.94", + "value":"-48.89" + } + }, + { + "id":"5f2bd463-0fa7-4b33-b763-139eeb68359c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:21:01.857Z", + "completed":"2017-03-15T20:21:01.857Z", + "new_balance":"6745.71", + "value":"-42.23" + } + }, + { + "id":"24d2aeb6-e146-4188-b0c5-676560ebf524", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T10:43:16.152Z", + "completed":"2017-03-17T10:43:16.152Z", + "new_balance":"6701.74", + "value":"-43.97" + } + }, + { + "id":"d469f97a-0b16-46f2-86d9-7eaa97129599", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T12:18:22.873Z", + "completed":"2017-03-18T12:18:22.873Z", + "new_balance":"6604.24", + "value":"-97.50" + } + }, + { + "id":"3f613b92-9588-4bd1-86c2-9f7996a52583", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T23:19:50.593Z", + "completed":"2017-03-20T23:19:50.593Z", + "new_balance":"6499.92", + "value":"-104.32" + } + }, + { + "id":"1fe75d66-a984-47eb-8a6a-478746e352f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T12:24:46.044Z", + "completed":"2017-03-22T12:24:46.044Z", + "new_balance":"6459.60", + "value":"-40.32" + } + }, + { + "id":"8f41d664-bf77-4df3-ae4a-7791bde3de41", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T12:43:06.683Z", + "completed":"2017-03-25T12:43:06.683Z", + "new_balance":"6446.59", + "value":"-13.01" + } + }, + { + "id":"b802769b-03f5-4a13-a1ba-a607b7086ef4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T19:18:54.909Z", + "completed":"2017-03-25T19:18:54.909Z", + "new_balance":"6440.82", + "value":"-5.77" + } + }, + { + "id":"b47f007f-a705-47de-9832-216269f47629", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T14:23:40.365Z", + "completed":"2017-03-26T14:23:40.365Z", + "new_balance":"6428.03", + "value":"-12.79" + } + }, + { + "id":"5b18fd90-4d81-4632-a184-ef2693448789", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T00:21:44.324Z", + "completed":"2017-03-27T00:21:44.324Z", + "new_balance":"6413.84", + "value":"-14.19" + } + }, + { + "id":"d2a24ffe-97ec-4f57-b344-8ffc263d9a99", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-27T00:28:25.953Z", + "completed":"2017-03-27T00:28:25.953Z", + "new_balance":"6388.22", + "value":"-25.62" + } + }, + { + "id":"c623f067-f795-44e6-97f7-4db36ccd7595", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T16:12:53.363Z", + "completed":"2017-03-28T16:12:53.363Z", + "new_balance":"6339.44", + "value":"-48.78" + } + }, + { + "id":"25d24218-5563-4e6c-a425-5bf3f154fc9d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T05:21:17.878Z", + "completed":"2017-03-31T05:21:17.878Z", + "new_balance":"6141.53", + "value":"-197.91" + } + }, + { + "id":"1d63b223-001a-4524-bf94-39442e0fa933", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T09:28:48.952Z", + "completed":"2017-04-01T09:28:48.952Z", + "new_balance":"7821.94", + "value":"1680.41" + } + }, + { + "id":"5648658c-d1d6-4921-891c-0328e087a40f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T13:59:01.433Z", + "completed":"2017-04-01T13:59:01.433Z", + "new_balance":"8844.36", + "value":"1022.42" + } + }, + { + "id":"e4a32bab-5e5a-4b50-98c7-6bca95950c80", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T16:35:28.691Z", + "completed":"2017-04-01T16:35:28.691Z", + "new_balance":"8436.79", + "value":"-407.57" + } + }, + { + "id":"3fde720d-cca1-4660-9e8a-c3f4036a2652", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T06:23:27.325Z", + "completed":"2017-04-03T06:23:27.325Z", + "new_balance":"8430.41", + "value":"-6.38" + } + }, + { + "id":"0eda18d1-ecd8-495b-8b87-0f20ad21bd97", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T13:43:19.207Z", + "completed":"2017-04-03T13:43:19.207Z", + "new_balance":"8383.61", + "value":"-46.80" + } + }, + { + "id":"d036ec2d-69a8-4c13-85aa-37c55603c474", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T20:21:19.159Z", + "completed":"2017-04-03T20:21:19.159Z", + "new_balance":"8365.99", + "value":"-17.62" + } + }, + { + "id":"46f6791a-28e9-46ab-87e6-8532940069d8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T02:26:20.491Z", + "completed":"2017-04-05T02:26:20.491Z", + "new_balance":"8355.08", + "value":"-10.91" + } + }, + { + "id":"7c2b1b78-30e5-47af-b023-83a21f5190bc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T11:04:24.591Z", + "completed":"2017-04-05T11:04:24.591Z", + "new_balance":"8348.09", + "value":"-6.99" + } + }, + { + "id":"52500383-302e-4af1-b639-c8841bd3fcd0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T12:21:02.553Z", + "completed":"2017-04-06T12:21:02.553Z", + "new_balance":"8323.16", + "value":"-24.93" + } + }, + { + "id":"24270b59-d59d-46b1-be0f-074b8f464474", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T13:42:36.746Z", + "completed":"2017-04-09T13:42:36.746Z", + "new_balance":"8304.00", + "value":"-19.16" + } + }, + { + "id":"8ea264f8-1bc9-4b76-aff7-8040459c1b21", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T01:57:09.846Z", + "completed":"2017-04-10T01:57:09.846Z", + "new_balance":"8289.01", + "value":"-14.99" + } + }, + { + "id":"21725991-acff-4f11-ac61-14985358510b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T17:14:21.690Z", + "completed":"2017-04-11T17:14:21.690Z", + "new_balance":"8273.00", + "value":"-16.01" + } + }, + { + "id":"9c93085e-68f1-497e-bab5-a5ba2ccfa828", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T21:42:53.092Z", + "completed":"2017-04-11T21:42:53.092Z", + "new_balance":"8243.84", + "value":"-29.16" + } + }, + { + "id":"3cbcef49-1176-42dd-b901-15318b77dbbd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T13:39:06.522Z", + "completed":"2017-04-13T13:39:06.522Z", + "new_balance":"8198.78", + "value":"-45.06" + } + }, + { + "id":"5a641b33-4cce-4f60-9e1a-51d9a09484f1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T14:02:14.363Z", + "completed":"2017-04-13T14:02:14.363Z", + "new_balance":"8094.06", + "value":"-104.72" + } + }, + { + "id":"025e5c6a-269c-4ad0-920b-5c298b02192d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T19:45:06.260Z", + "completed":"2017-04-15T19:45:06.260Z", + "new_balance":"8049.58", + "value":"-44.48" + } + }, + { + "id":"8e6b0c5c-50a8-46e1-a662-a84860aad815", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T01:26:29.871Z", + "completed":"2017-04-16T01:26:29.871Z", + "new_balance":"8043.81", + "value":"-5.77" + } + }, + { + "id":"288aefec-320c-4a62-9731-4ea7977c1271", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T13:40:00.093Z", + "completed":"2017-04-16T13:40:00.093Z", + "new_balance":"8033.74", + "value":"-10.07" + } + }, + { + "id":"b554c99f-dd7a-478f-94f0-748c2de6e796", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T23:46:50.238Z", + "completed":"2017-04-18T23:46:50.238Z", + "new_balance":"7954.66", + "value":"-79.08" + } + }, + { + "id":"3235d7e7-c844-4c3e-981f-ce7ffb9603b3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T11:36:18.366Z", + "completed":"2017-04-23T11:36:18.366Z", + "new_balance":"7929.26", + "value":"-25.40" + } + }, + { + "id":"9d006489-c884-4cc0-b4d3-7e9ca93651f6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T18:36:07.110Z", + "completed":"2017-04-24T18:36:07.110Z", + "new_balance":"7914.43", + "value":"-14.83" + } + }, + { + "id":"6b4ef0be-8a95-46e7-bbab-ad287c124a89", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T20:46:27.970Z", + "completed":"2017-04-24T20:46:27.970Z", + "new_balance":"7883.62", + "value":"-30.81" + } + }, + { + "id":"df5a91fc-3d06-4ef2-be33-2d813ec1b71e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T22:21:45.299Z", + "completed":"2017-04-26T22:21:45.299Z", + "new_balance":"7876.63", + "value":"-6.99" + } + }, + { + "id":"a3ce3b47-7f1e-47cd-8a6f-01d351d16f64", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T02:10:09.370Z", + "completed":"2017-04-28T02:10:09.370Z", + "new_balance":"7827.85", + "value":"-48.78" + } + }, + { + "id":"9d8a515e-c533-470f-858f-f8a18d0d743c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T12:34:44.685Z", + "completed":"2017-04-28T12:34:44.685Z", + "new_balance":"7629.94", + "value":"-197.91" + } + }, + { + "id":"170e4ec1-4768-41ea-9f0b-bea83436d5d5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T02:11:57.043Z", + "completed":"2017-05-02T02:11:57.043Z", + "new_balance":"7615.43", + "value":"-14.51" + } + }, + { + "id":"37d6c78e-ed13-4aa5-9686-4980a892d969", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T07:40:58.756Z", + "completed":"2017-05-02T07:40:58.756Z", + "new_balance":"7608.94", + "value":"-6.49" + } + }, + { + "id":"f4d2aa18-3751-4623-889f-733ee107e0fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T10:29:58.223Z", + "completed":"2017-05-02T10:29:58.223Z", + "new_balance":"7445.46", + "value":"-163.48" + } + }, + { + "id":"24487c18-0e8c-452f-87ab-55cd2e1b8a39", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T20:50:03.681Z", + "completed":"2017-05-02T20:50:03.681Z", + "new_balance":"7037.89", + "value":"-407.57" + } + }, + { + "id":"ecec0e53-a36c-4a05-ac2f-17dd9217e3d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T02:38:06.245Z", + "completed":"2017-05-06T02:38:06.245Z", + "new_balance":"7013.09", + "value":"-24.80" + } + }, + { + "id":"86324113-1219-49aa-af76-6c2610ccbc17", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T12:45:04.565Z", + "completed":"2017-05-06T12:45:04.565Z", + "new_balance":"6983.93", + "value":"-29.16" + } + }, + { + "id":"bc21d991-0993-4ad2-b827-54eeffded3f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T10:11:02.551Z", + "completed":"2017-05-07T10:11:02.551Z", + "new_balance":"6942.58", + "value":"-41.35" + } + }, + { + "id":"44c67458-8acc-4ff4-92ba-7b71af01e78b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T10:27:20.925Z", + "completed":"2017-05-07T10:27:20.925Z", + "new_balance":"6837.86", + "value":"-104.72" + } + }, + { + "id":"806a9126-a52f-43e0-8501-73c7b37e3941", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T05:46:28.499Z", + "completed":"2017-05-09T05:46:28.499Z", + "new_balance":"7860.28", + "value":"1022.42" + } + }, + { + "id":"b9f5dff3-62a3-490d-baec-357b543e2946", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T10:01:50.782Z", + "completed":"2017-05-14T10:01:50.782Z", + "new_balance":"7809.72", + "value":"-50.56" + } + }, + { + "id":"26d0a929-3ccb-499e-87f0-e4f66a99d9b6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T22:08:42.374Z", + "completed":"2017-05-14T22:08:42.374Z", + "new_balance":"7783.92", + "value":"-25.80" + } + }, + { + "id":"d25668f9-e775-4ecf-8a86-02107bd9341d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T13:21:48.789Z", + "completed":"2017-05-16T13:21:48.789Z", + "new_balance":"7776.93", + "value":"-6.99" + } + }, + { + "id":"d151527b-4450-4f51-9b11-d3f28f3ce3b7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T10:53:32.842Z", + "completed":"2017-05-21T10:53:32.842Z", + "new_balance":"7741.74", + "value":"-35.19" + } + }, + { + "id":"39d1a333-6d99-41eb-b365-2b5a4e0b3c7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T02:21:14.509Z", + "completed":"2017-05-23T02:21:14.509Z", + "new_balance":"7735.97", + "value":"-5.77" + } + }, + { + "id":"fa58c356-12d2-4eea-8738-2b5db135800f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T03:54:45.483Z", + "completed":"2017-05-23T03:54:45.483Z", + "new_balance":"7706.81", + "value":"-29.16" + } + }, + { + "id":"4836a675-1a59-4ffa-873f-128f29388f8c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T02:43:24.707Z", + "completed":"2017-05-24T02:43:24.707Z", + "new_balance":"7661.30", + "value":"-45.51" + } + }, + { + "id":"c67cc3b5-4a67-407b-ba9a-7dd2c79ab8e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:38:56.219Z", + "completed":"2017-05-27T08:38:56.219Z", + "new_balance":"7652.90", + "value":"-8.40" + } + }, + { + "id":"a7f9590a-20fa-4391-8b1e-0d35778a7b6e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T02:16:40.444Z", + "completed":"2017-05-30T02:16:40.444Z", + "new_balance":"7604.12", + "value":"-48.78" + } + }, + { + "id":"8a6ec2f5-f64b-46b9-9026-49ae0ae1e7b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T12:08:13.521Z", + "completed":"2017-05-30T12:08:13.521Z", + "new_balance":"7406.21", + "value":"-197.91" + } + }, + { + "id":"9c588a35-6ff3-4641-8c1d-e86fb85d4d31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T06:49:01.221Z", + "completed":"2017-06-01T06:49:01.221Z", + "new_balance":"8428.63", + "value":"1022.42" + } + }, + { + "id":"5f7e7f5b-ee33-4fac-8e4e-58cd406c00db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T09:36:04.200Z", + "completed":"2017-06-01T09:36:04.200Z", + "new_balance":"8021.06", + "value":"-407.57" + } + }, + { + "id":"1cb5681f-00a0-403e-9a4b-4b4bb734f2f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:21:25.790Z", + "completed":"2017-06-04T06:21:25.790Z", + "new_balance":"7989.61", + "value":"-31.45" + } + }, + { + "id":"c2097a41-507e-4951-abd2-cfd1a6492534", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T19:10:48.202Z", + "completed":"2017-06-04T19:10:48.202Z", + "new_balance":"7972.61", + "value":"-17.00" + } + }, + { + "id":"04b50ea8-aca6-4691-8c83-fd99e49b4bc5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T04:38:50.659Z", + "completed":"2017-06-11T04:38:50.659Z", + "new_balance":"7927.10", + "value":"-45.51" + } + }, + { + "id":"da2c129d-b967-4f12-8390-f71555efd1b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:34:37.009Z", + "completed":"2017-06-11T22:34:37.009Z", + "new_balance":"7896.29", + "value":"-30.81" + } + }, + { + "id":"e1474c44-2801-4117-b940-eec5fd46c757", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T02:32:37.469Z", + "completed":"2017-06-12T02:32:37.469Z", + "new_balance":"7882.23", + "value":"-14.06" + } + }, + { + "id":"dfdeb7c3-0c1d-40c2-89b4-d417cdacb4a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T06:35:58.756Z", + "completed":"2017-06-12T06:35:58.756Z", + "new_balance":"7876.46", + "value":"-5.77" + } + }, + { + "id":"8d8df625-bb17-4137-a649-dfb595c1c35c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T18:09:28.887Z", + "completed":"2017-06-12T18:09:28.887Z", + "new_balance":"7771.74", + "value":"-104.72" + } + }, + { + "id":"55962e3d-54bc-49bf-9443-e90f0a12f19a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T10:46:35.841Z", + "completed":"2017-06-13T10:46:35.841Z", + "new_balance":"7689.95", + "value":"-81.79" + } + }, + { + "id":"f93bfa9a-e8cd-4de3-8225-73aa2ca5ac74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:51:48.079Z", + "completed":"2017-06-13T17:51:48.079Z", + "new_balance":"7644.41", + "value":"-45.54" + } + }, + { + "id":"a95e188c-8e08-478b-a87e-48053e0a1377", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T23:36:01.592Z", + "completed":"2017-06-13T23:36:01.592Z", + "new_balance":"7545.29", + "value":"-99.12" + } + }, + { + "id":"7e8c2abe-7bce-4ad1-b350-084e07a6ea38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:19:52.587Z", + "completed":"2017-06-14T06:19:52.587Z", + "new_balance":"7539.52", + "value":"-5.77" + } + }, + { + "id":"b675660e-8772-468b-b981-ce8e450546b3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T08:03:13.757Z", + "completed":"2017-06-14T08:03:13.757Z", + "new_balance":"7531.91", + "value":"-7.61" + } + }, + { + "id":"41fc02ba-5319-403c-956e-cda122c0cd8e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T20:58:22.322Z", + "completed":"2017-06-14T20:58:22.322Z", + "new_balance":"7524.30", + "value":"-7.61" + } + }, + { + "id":"dd3b7ba1-8397-4cbf-9e10-81566f6f8e31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T00:40:50.221Z", + "completed":"2017-06-15T00:40:50.221Z", + "new_balance":"7491.96", + "value":"-32.34" + } + }, + { + "id":"ef49e2f3-a840-42ea-ac20-834d481765a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T07:42:30.512Z", + "completed":"2017-06-15T07:42:30.512Z", + "new_balance":"7483.44", + "value":"-8.52" + } + }, + { + "id":"48aaa731-4859-4505-86c4-b211101daf24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T12:56:14.990Z", + "completed":"2017-06-15T12:56:14.990Z", + "new_balance":"7477.67", + "value":"-5.77" + } + }, + { + "id":"0c73ce42-ffb4-4252-b229-5dd8de559d8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T16:39:13.454Z", + "completed":"2017-06-16T16:39:13.454Z", + "new_balance":"7453.37", + "value":"-24.30" + } + }, + { + "id":"a771256e-8590-4bc7-9188-c6e0f23cef49", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T06:24:07.656Z", + "completed":"2017-06-17T06:24:07.656Z", + "new_balance":"7441.00", + "value":"-12.37" + } + }, + { + "id":"3bf851a4-a194-4083-be04-8b7cb3b3e43d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T07:13:21.120Z", + "completed":"2017-06-18T07:13:21.120Z", + "new_balance":"7398.51", + "value":"-42.49" + } + }, + { + "id":"ca506f6d-193a-4f89-a18d-b527d899ee75", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:15:51.833Z", + "completed":"2017-06-18T08:15:51.833Z", + "new_balance":"7392.74", + "value":"-5.77" + } + }, + { + "id":"3e9aad20-42ab-4109-a045-0bc1babf6aa5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T11:34:25.251Z", + "completed":"2017-06-18T11:34:25.251Z", + "new_balance":"7386.97", + "value":"-5.77" + } + }, + { + "id":"3d7dc943-6c31-44dd-bf40-5a522ddde2f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T11:46:34.769Z", + "completed":"2017-06-18T11:46:34.769Z", + "new_balance":"7367.81", + "value":"-19.16" + } + }, + { + "id":"b9e6938b-25e1-4c87-81dc-c6421b549296", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T16:59:31.320Z", + "completed":"2017-06-18T16:59:31.320Z", + "new_balance":"7301.63", + "value":"-66.18" + } + }, + { + "id":"580ef06d-5d93-46de-ac2b-a4770f12b49f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T23:30:33.073Z", + "completed":"2017-06-18T23:30:33.073Z", + "new_balance":"7200.37", + "value":"-101.26" + } + }, + { + "id":"fbabba86-3992-464e-85a7-6286b8dc37fd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:45:41.479Z", + "completed":"2017-06-19T06:45:41.479Z", + "new_balance":"7156.40", + "value":"-43.97" + } + }, + { + "id":"a866825b-c9c7-4c7a-ad77-27fe0716a904", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T08:45:22.641Z", + "completed":"2017-06-19T08:45:22.641Z", + "new_balance":"7107.51", + "value":"-48.89" + } + }, + { + "id":"e80ad3b0-382e-491a-9d55-15cfd66ba0f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T19:49:20.331Z", + "completed":"2017-06-19T19:49:20.331Z", + "new_balance":"7065.28", + "value":"-42.23" + } + }, + { + "id":"ed11a431-1a83-4d0a-8ad3-883d17da57d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T09:18:32.050Z", + "completed":"2017-06-21T09:18:32.050Z", + "new_balance":"6960.96", + "value":"-104.32" + } + }, + { + "id":"f0dbdaa4-6fe8-48a1-9b24-7837793979da", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T18:02:57.163Z", + "completed":"2017-06-21T18:02:57.163Z", + "new_balance":"6863.46", + "value":"-97.50" + } + }, + { + "id":"d983d174-7f00-4468-b232-4e82b1255850", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T07:31:36.057Z", + "completed":"2017-06-22T07:31:36.057Z", + "new_balance":"6823.14", + "value":"-40.32" + } + }, + { + "id":"a8b8542c-f234-45b6-9876-eca5639ef24f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T17:52:39.626Z", + "completed":"2017-06-22T17:52:39.626Z", + "new_balance":"6817.37", + "value":"-5.77" + } + }, + { + "id":"51e7b18c-7105-4f6a-aa4f-f7c6b3a7d8fc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T23:49:09.887Z", + "completed":"2017-06-22T23:49:09.887Z", + "new_balance":"6804.36", + "value":"-13.01" + } + }, + { + "id":"6aa9e8fe-2f80-4975-87f1-4f8e5601e806", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T17:37:29.646Z", + "completed":"2017-06-23T17:37:29.646Z", + "new_balance":"6791.57", + "value":"-12.79" + } + }, + { + "id":"5dae5db1-ace5-4f60-beee-4fd1b67676a8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T18:22:52.813Z", + "completed":"2017-06-24T18:22:52.813Z", + "new_balance":"6765.95", + "value":"-25.62" + } + }, + { + "id":"54c3ef20-f6af-404a-a756-c5efcb748fed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T09:08:02.564Z", + "completed":"2017-06-26T09:08:02.564Z", + "new_balance":"6751.76", + "value":"-14.19" + } + }, + { + "id":"b6a46804-ecb1-46b7-be56-fd17c5898500", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T00:55:10.250Z", + "completed":"2017-06-30T00:55:10.250Z", + "new_balance":"6553.85", + "value":"-197.91" + } + }, + { + "id":"a560f42b-7861-4357-af05-34bdbf30b4e0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T23:35:15.264Z", + "completed":"2017-06-30T23:35:15.264Z", + "new_balance":"6505.07", + "value":"-48.78" + } + }, + { + "id":"9b6ac343-be6e-4d07-b559-13dc789ef8fa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T01:36:33.005Z", + "completed":"2017-07-01T01:36:33.005Z", + "new_balance":"7527.49", + "value":"1022.42" + } + }, + { + "id":"bb842d28-eb94-43e6-980d-3e7b1de0ca34", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T12:27:44.915Z", + "completed":"2017-07-01T12:27:44.915Z", + "new_balance":"9207.90", + "value":"1680.41" + } + }, + { + "id":"8750e513-a865-45b0-a16b-9fb505174334", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T08:15:34.580Z", + "completed":"2017-07-03T08:15:34.580Z", + "new_balance":"8800.33", + "value":"-407.57" + } + }, + { + "id":"983b682c-c0ce-40bf-9615-f7e2c2ba910b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:24:24.983Z", + "completed":"2017-07-04T13:24:24.983Z", + "new_balance":"8793.95", + "value":"-6.38" + } + }, + { + "id":"5b310e34-a0f6-4eef-8f18-7c38d30a06e8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T16:37:57.612Z", + "completed":"2017-07-04T16:37:57.612Z", + "new_balance":"8776.33", + "value":"-17.62" + } + }, + { + "id":"f750a381-67d3-44b7-a2e6-4aaa5cd07d0d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T20:36:32.788Z", + "completed":"2017-07-04T20:36:32.788Z", + "new_balance":"8729.53", + "value":"-46.80" + } + }, + { + "id":"2450b39b-e94b-4efd-8387-8c28cf58555d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T17:19:41.564Z", + "completed":"2017-07-05T17:19:41.564Z", + "new_balance":"8718.62", + "value":"-10.91" + } + }, + { + "id":"05ec7f97-7e28-4bc0-9912-6e89a8fb5cb6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T05:55:49.881Z", + "completed":"2017-07-07T05:55:49.881Z", + "new_balance":"8711.63", + "value":"-6.99" + } + }, + { + "id":"372be686-5deb-4533-8563-b2eb6217291a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T01:38:58.636Z", + "completed":"2017-07-11T01:38:58.636Z", + "new_balance":"8682.47", + "value":"-29.16" + } + }, + { + "id":"b4550e34-ecbd-4a7a-85b8-7cd9acf7e7db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T02:28:22.708Z", + "completed":"2017-07-11T02:28:22.708Z", + "new_balance":"8667.48", + "value":"-14.99" + } + }, + { + "id":"027fcf9c-52bc-4e86-891e-590cac81dc36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T14:00:16.718Z", + "completed":"2017-07-11T14:00:16.718Z", + "new_balance":"8648.32", + "value":"-19.16" + } + }, + { + "id":"dfa974be-3ee9-4531-9bd5-8c7c2d615e66", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T20:35:24.173Z", + "completed":"2017-07-11T20:35:24.173Z", + "new_balance":"8623.39", + "value":"-24.93" + } + }, + { + "id":"29af4146-61c3-4254-b6b8-c5a16b7ae2c8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T21:33:20.338Z", + "completed":"2017-07-11T21:33:20.338Z", + "new_balance":"8607.38", + "value":"-16.01" + } + }, + { + "id":"6b2bc532-68f2-4415-a77e-67a5ce8ef229", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T12:19:41.235Z", + "completed":"2017-07-13T12:19:41.235Z", + "new_balance":"8562.32", + "value":"-45.06" + } + }, + { + "id":"0d6386e6-7d87-4fb4-805b-c15733ecdbe4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T17:04:30.376Z", + "completed":"2017-07-13T17:04:30.376Z", + "new_balance":"8457.60", + "value":"-104.72" + } + }, + { + "id":"d259864c-c648-423e-88eb-d41df08ac0f6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:38:03.740Z", + "completed":"2017-07-16T06:38:03.740Z", + "new_balance":"8548.48", + "value":"90.88" + } + }, + { + "id":"de07feea-f7f4-4d24-8cdc-b171c938e3bd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T20:24:14.684Z", + "completed":"2017-07-16T20:24:14.684Z", + "new_balance":"8504.00", + "value":"-44.48" + } + }, + { + "id":"2e42c474-58b6-4689-930d-49ad3f8c7173", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T20:26:07.309Z", + "completed":"2017-07-17T20:26:07.309Z", + "new_balance":"8493.93", + "value":"-10.07" + } + }, + { + "id":"6b60bd08-077e-4219-a9f0-065a24a78491", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T22:51:38.789Z", + "completed":"2017-07-17T22:51:38.789Z", + "new_balance":"8488.16", + "value":"-5.77" + } + }, + { + "id":"97729758-6ddc-4a3c-b0a2-382841124902", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T07:27:03.965Z", + "completed":"2017-07-19T07:27:03.965Z", + "new_balance":"8409.08", + "value":"-79.08" + } + }, + { + "id":"125a99ea-c6d2-43ff-88d6-432aee4ac0c7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T12:52:38.215Z", + "completed":"2017-07-21T12:52:38.215Z", + "new_balance":"8383.68", + "value":"-25.40" + } + }, + { + "id":"fa34ea9e-d50e-4b01-9e23-7c8a74082d92", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T11:45:16.596Z", + "completed":"2017-07-23T11:45:16.596Z", + "new_balance":"8352.87", + "value":"-30.81" + } + }, + { + "id":"30ac81e1-1e4e-4682-9406-ed6eb9b51007", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T02:34:13.993Z", + "completed":"2017-07-25T02:34:13.993Z", + "new_balance":"8338.04", + "value":"-14.83" + } + }, + { + "id":"0f4a8ddf-a5f9-4fba-a871-8883ca96e8e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T00:31:04.246Z", + "completed":"2017-07-27T00:31:04.246Z", + "new_balance":"8331.05", + "value":"-6.99" + } + }, + { + "id":"b696959e-6fc2-49dd-9cfc-67eab0478c7a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T09:49:45.103Z", + "completed":"2017-07-28T09:49:45.103Z", + "new_balance":"8282.27", + "value":"-48.78" + } + }, + { + "id":"409be5d4-2ca8-48e9-b5a2-f9ad64dc9fb0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T20:24:36.066Z", + "completed":"2017-07-28T20:24:36.066Z", + "new_balance":"8084.36", + "value":"-197.91" + } + }, + { + "id":"a93ce764-d12e-4f21-acb7-5837e493b594", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T09:10:48.234Z", + "completed":"2017-08-01T09:10:48.234Z", + "new_balance":"9106.78", + "value":"1022.42" + } + }, + { + "id":"888b356a-ba2f-4e52-a376-337722e3e842", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T05:37:15.320Z", + "completed":"2017-08-03T05:37:15.320Z", + "new_balance":"8699.21", + "value":"-407.57" + } + }, + { + "id":"2082a161-215b-4eff-8c46-3c0cdad01e38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T06:58:50.846Z", + "completed":"2017-08-03T06:58:50.846Z", + "new_balance":"8535.73", + "value":"-163.48" + } + }, + { + "id":"71bd4ac1-399c-4451-ba98-d229fccfdf24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T18:44:23.989Z", + "completed":"2017-08-04T18:44:23.989Z", + "new_balance":"8521.22", + "value":"-14.51" + } + }, + { + "id":"6d2d2ad0-e3d4-42d3-a503-5b97f76284a3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T04:59:51.148Z", + "completed":"2017-08-07T04:59:51.148Z", + "new_balance":"8514.73", + "value":"-6.49" + } + }, + { + "id":"d70dd0e5-d39f-4755-8b3c-7c513f417519", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T10:41:27.681Z", + "completed":"2017-08-07T10:41:27.681Z", + "new_balance":"8485.57", + "value":"-29.16" + } + }, + { + "id":"8e644f07-ed69-458f-a86f-5fac023c508b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T14:51:46.147Z", + "completed":"2017-08-07T14:51:46.147Z", + "new_balance":"8460.77", + "value":"-24.80" + } + }, + { + "id":"5300840a-f635-42fa-8d11-8d95d2000e6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T06:37:02.708Z", + "completed":"2017-08-08T06:37:02.708Z", + "new_balance":"8356.05", + "value":"-104.72" + } + }, + { + "id":"c63702f8-2816-48a4-80bb-f7197e91b2d2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T11:38:46.349Z", + "completed":"2017-08-08T11:38:46.349Z", + "new_balance":"8314.70", + "value":"-41.35" + } + }, + { + "id":"2f4d8ffc-c3f5-4ebb-9162-f820d9486344", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T15:21:09.703Z", + "completed":"2017-08-08T15:21:09.703Z", + "new_balance":"8264.14", + "value":"-50.56" + } + }, + { + "id":"12aad4c7-dd3b-4db3-bb9f-33bac26f2a4c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T00:24:41.908Z", + "completed":"2017-08-09T00:24:41.908Z", + "new_balance":"8238.34", + "value":"-25.80" + } + }, + { + "id":"23b322a0-1314-4c38-bb0f-cbd3ad2167d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T09:12:47.080Z", + "completed":"2017-08-11T09:12:47.080Z", + "new_balance":"8231.35", + "value":"-6.99" + } + }, + { + "id":"f288e7d7-750b-4849-b1e3-de9ef9bf8846", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T01:31:51.140Z", + "completed":"2017-08-14T01:31:51.140Z", + "new_balance":"8196.16", + "value":"-35.19" + } + }, + { + "id":"13e06809-3051-4e83-bcdf-4ae8e1b1d4f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T15:14:43.783Z", + "completed":"2017-08-15T15:14:43.783Z", + "new_balance":"8167.00", + "value":"-29.16" + } + }, + { + "id":"b1385136-ce66-4e28-8f89-ec5fc81745db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T12:05:35.410Z", + "completed":"2017-08-17T12:05:35.410Z", + "new_balance":"8161.23", + "value":"-5.77" + } + }, + { + "id":"889a440d-7e54-4f2a-b8ca-9e89b5c61367", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T22:05:58.454Z", + "completed":"2017-08-17T22:05:58.454Z", + "new_balance":"8115.72", + "value":"-45.51" + } + }, + { + "id":"075bfe92-5430-45c5-b63d-34d03fcf0f42", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T01:08:08.530Z", + "completed":"2017-08-19T01:08:08.530Z", + "new_balance":"8107.32", + "value":"-8.40" + } + }, + { + "id":"d5de725c-9399-4f0f-84b5-9bb841706792", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T13:25:04.947Z", + "completed":"2017-08-25T13:25:04.947Z", + "new_balance":"8221.46", + "value":"114.14" + } + }, + { + "id":"2fec3cd1-4d7b-4388-ac08-71e47e458bb9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T05:14:06.637Z", + "completed":"2017-08-28T05:14:06.637Z", + "new_balance":"8023.55", + "value":"-197.91" + } + }, + { + "id":"f258643d-32f4-4900-9053-c0e5d5a5c5e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T20:55:28.791Z", + "completed":"2017-08-28T20:55:28.791Z", + "new_balance":"7974.77", + "value":"-48.78" + } + }, + { + "id":"109f5c7f-291e-47eb-9550-bdd1b83dc224", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T23:38:40.358Z", + "completed":"2017-09-01T23:38:40.358Z", + "new_balance":"8997.19", + "value":"1022.42" + } + }, + { + "id":"6342506a-073d-4b8a-b1f9-a101ac213296", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T10:04:20.070Z", + "completed":"2017-09-03T10:04:20.070Z", + "new_balance":"8589.62", + "value":"-407.57" + } + }, + { + "id":"5009e9bd-135f-4b5c-b847-3ab3ae134bb4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T06:02:24.494Z", + "completed":"2017-09-04T06:02:24.494Z", + "new_balance":"8558.17", + "value":"-31.45" + } + }, + { + "id":"ae84db46-e012-4029-8627-6a9ceb38a66c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T06:35:07.286Z", + "completed":"2017-09-04T06:35:07.286Z", + "new_balance":"8541.17", + "value":"-17.00" + } + }, + { + "id":"97810931-bf43-44e3-8ebb-f7d6f41540de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T08:36:19.264Z", + "completed":"2017-09-04T08:36:19.264Z", + "new_balance":"8510.36", + "value":"-30.81" + } + }, + { + "id":"567be97a-66d6-441c-acab-1a4dbb6b8d74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T20:34:40.692Z", + "completed":"2017-09-04T20:34:40.692Z", + "new_balance":"8464.85", + "value":"-45.51" + } + }, + { + "id":"7aca5793-61aa-4c10-b3b3-5c900acc43ac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T08:41:58.384Z", + "completed":"2017-09-05T08:41:58.384Z", + "new_balance":"8365.73", + "value":"-99.12" + } + }, + { + "id":"2eedcf17-96e3-4c9a-88f9-af2095f57348", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T10:44:48.227Z", + "completed":"2017-09-05T10:44:48.227Z", + "new_balance":"8320.19", + "value":"-45.54" + } + }, + { + "id":"5d1c85da-3de6-43a9-9cff-51c6f9075c62", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T20:17:24.196Z", + "completed":"2017-09-05T20:17:24.196Z", + "new_balance":"8215.47", + "value":"-104.72" + } + }, + { + "id":"47790cc9-baa0-4750-89d4-0cca589ee8e8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T21:24:30.842Z", + "completed":"2017-09-05T21:24:30.842Z", + "new_balance":"8209.70", + "value":"-5.77" + } + }, + { + "id":"b97fdc29-3edb-40b2-9ef5-8828ba3551a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T23:05:48.945Z", + "completed":"2017-09-05T23:05:48.945Z", + "new_balance":"8127.91", + "value":"-81.79" + } + }, + { + "id":"f8a6996c-4af6-4cff-bd9b-0b8eb019fb1e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T23:11:31.215Z", + "completed":"2017-09-05T23:11:31.215Z", + "new_balance":"8113.85", + "value":"-14.06" + } + }, + { + "id":"38dd29eb-3d88-4962-ab60-2cc682492cf2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T01:36:11.989Z", + "completed":"2017-09-07T01:36:11.989Z", + "new_balance":"8106.24", + "value":"-7.61" + } + }, + { + "id":"8e1ef5e1-efa3-46b0-a5c9-eaf3d32e5f00", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T02:43:45.522Z", + "completed":"2017-09-07T02:43:45.522Z", + "new_balance":"8097.72", + "value":"-8.52" + } + }, + { + "id":"f9487b2a-b491-45b2-abed-aa7d94e86e68", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T19:39:53.170Z", + "completed":"2017-09-07T19:39:53.170Z", + "new_balance":"8091.95", + "value":"-5.77" + } + }, + { + "id":"56117a39-c75e-471e-bd60-ea79dd3e7f90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T23:01:14.079Z", + "completed":"2017-09-07T23:01:14.079Z", + "new_balance":"8084.34", + "value":"-7.61" + } + }, + { + "id":"88b52f21-ffa0-444a-bb2a-3252e787431c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T02:41:31.389Z", + "completed":"2017-09-10T02:41:31.389Z", + "new_balance":"8052.00", + "value":"-32.34" + } + }, + { + "id":"2b37e5bb-dcc1-47d2-8a0b-6eaea86033b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T04:16:23.054Z", + "completed":"2017-09-11T04:16:23.054Z", + "new_balance":"8039.63", + "value":"-12.37" + } + }, + { + "id":"2b3f53e4-81f0-4afa-b3ff-678039a8615e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:37:20.151Z", + "completed":"2017-09-11T08:37:20.151Z", + "new_balance":"8015.33", + "value":"-24.30" + } + }, + { + "id":"dd74a29f-f08a-4596-8c5a-189babe5da15", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T18:21:38.112Z", + "completed":"2017-09-11T18:21:38.112Z", + "new_balance":"8009.56", + "value":"-5.77" + } + }, + { + "id":"9ecd02f0-0bc4-4289-b64e-bde050feeb58", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T05:55:56.323Z", + "completed":"2017-09-12T05:55:56.323Z", + "new_balance":"7943.38", + "value":"-66.18" + } + }, + { + "id":"0833cfbe-dfe5-40a5-b5b2-6f5515ee974d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:06:10.108Z", + "completed":"2017-09-12T16:06:10.108Z", + "new_balance":"7924.22", + "value":"-19.16" + } + }, + { + "id":"2b47cb6a-0499-4c5d-8817-47d2d51f68e4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T19:14:35.986Z", + "completed":"2017-09-12T19:14:35.986Z", + "new_balance":"7918.45", + "value":"-5.77" + } + }, + { + "id":"a546d0e9-deaf-45eb-89b2-3852a0efdaae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T22:57:29.030Z", + "completed":"2017-09-12T22:57:29.030Z", + "new_balance":"7817.19", + "value":"-101.26" + } + }, + { + "id":"0afc6b1c-15b2-4a98-9dff-a582c4d1df0b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T03:40:37.650Z", + "completed":"2017-09-13T03:40:37.650Z", + "new_balance":"7774.70", + "value":"-42.49" + } + }, + { + "id":"b2d349ca-4e9d-491e-a5d7-95a23073a324", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T16:26:11.564Z", + "completed":"2017-09-14T16:26:11.564Z", + "new_balance":"7732.47", + "value":"-42.23" + } + }, + { + "id":"92f17d8c-2741-41c7-a45d-73dafa0e8ced", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T20:10:44.611Z", + "completed":"2017-09-14T20:10:44.611Z", + "new_balance":"7726.70", + "value":"-5.77" + } + }, + { + "id":"dccebe3f-6125-4477-a9d2-2ce5edfabe5d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T23:00:34.394Z", + "completed":"2017-09-16T23:00:34.394Z", + "new_balance":"7677.81", + "value":"-48.89" + } + }, + { + "id":"db728762-476a-4b31-88ed-fd172d00b0ed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T22:57:28.054Z", + "completed":"2017-09-18T22:57:28.054Z", + "new_balance":"7633.84", + "value":"-43.97" + } + }, + { + "id":"f80dabdf-c55c-4d5e-8eb5-fe08894eeb2b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T06:13:59.149Z", + "completed":"2017-09-21T06:13:59.149Z", + "new_balance":"7529.52", + "value":"-104.32" + } + }, + { + "id":"df20d87b-52f6-4db9-84db-d9fe8e7f2376", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T09:06:20.071Z", + "completed":"2017-09-21T09:06:20.071Z", + "new_balance":"7432.02", + "value":"-97.50" + } + }, + { + "id":"72c7e09a-d8c0-4db5-8f47-ab3c60fc3dda", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T16:43:20.551Z", + "completed":"2017-09-23T16:43:20.551Z", + "new_balance":"7391.70", + "value":"-40.32" + } + }, + { + "id":"a698ed00-bf87-4a6d-a697-689ff9374189", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T23:06:54.546Z", + "completed":"2017-09-24T23:06:54.546Z", + "new_balance":"7385.93", + "value":"-5.77" + } + }, + { + "id":"5b8c5329-3b21-4f0f-a164-6eb7bc7d8f16", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T14:33:57.996Z", + "completed":"2017-09-26T14:33:57.996Z", + "new_balance":"7373.14", + "value":"-12.79" + } + }, + { + "id":"54cb9f09-e5cb-4743-8902-5b028d9845fe", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T14:52:27.836Z", + "completed":"2017-09-26T14:52:27.836Z", + "new_balance":"7360.13", + "value":"-13.01" + } + }, + { + "id":"f55570ee-15f4-45d7-ba37-4fa6e0bf37d6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T21:05:33.135Z", + "completed":"2017-09-26T21:05:33.135Z", + "new_balance":"7334.51", + "value":"-25.62" + } + }, + { + "id":"4ff89cd3-0972-48e9-b2af-273f9df489a5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T04:47:23.940Z", + "completed":"2017-09-27T04:47:23.940Z", + "new_balance":"7320.32", + "value":"-14.19" + } + }, + { + "id":"c418165e-66d4-42b7-b1ab-643c226443b8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T00:39:49.991Z", + "completed":"2017-09-28T00:39:49.991Z", + "new_balance":"7122.41", + "value":"-197.91" + } + }, + { + "id":"66825a20-6444-4e84-b131-3e943f805a47", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T03:37:03.813Z", + "completed":"2017-09-28T03:37:03.813Z", + "new_balance":"7073.63", + "value":"-48.78" + } + }, + { + "id":"156481c7-86bc-49f1-b1ba-f52cd2bf1881", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T06:01:40.238Z", + "completed":"2017-10-01T06:01:40.238Z", + "new_balance":"8096.05", + "value":"1022.42" + } + }, + { + "id":"d16e4ff8-a518-4852-88a6-de6035a2c99a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T14:59:27.240Z", + "completed":"2017-10-01T14:59:27.240Z", + "new_balance":"9776.46", + "value":"1680.41" + } + }, + { + "id":"1ec4fdb2-8e74-46c1-bd47-4353b71b7857", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T21:00:12.940Z", + "completed":"2017-10-01T21:00:12.940Z", + "new_balance":"9368.89", + "value":"-407.57" + } + }, + { + "id":"e016fb8d-998f-4f20-8d0b-a7836d7d8f35", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T12:16:50.138Z", + "completed":"2017-10-03T12:16:50.138Z", + "new_balance":"9322.09", + "value":"-46.80" + } + }, + { + "id":"d38971e8-0c86-460e-bbe1-4fa5f169e756", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T17:32:48.344Z", + "completed":"2017-10-03T17:32:48.344Z", + "new_balance":"9304.47", + "value":"-17.62" + } + }, + { + "id":"f75f7116-99ea-4e11-95a0-8d2b37095ec8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T21:10:32.300Z", + "completed":"2017-10-03T21:10:32.300Z", + "new_balance":"9298.09", + "value":"-6.38" + } + }, + { + "id":"8f2d2811-597f-4fad-9522-880f735f1d96", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T17:31:19.147Z", + "completed":"2017-10-05T17:31:19.147Z", + "new_balance":"9291.10", + "value":"-6.99" + } + }, + { + "id":"70e84cfe-dc79-42f0-a8c1-8db2c0ee4fb7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T21:03:30.370Z", + "completed":"2017-10-05T21:03:30.370Z", + "new_balance":"9280.19", + "value":"-10.91" + } + }, + { + "id":"1125f938-3a9a-4635-9af4-3b0c88b0a435", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T15:53:28.155Z", + "completed":"2017-10-06T15:53:28.155Z", + "new_balance":"9255.26", + "value":"-24.93" + } + }, + { + "id":"ea5879eb-5455-4642-89ea-55aacea66ed8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T20:54:39.373Z", + "completed":"2017-10-09T20:54:39.373Z", + "new_balance":"9236.10", + "value":"-19.16" + } + }, + { + "id":"4371047c-e297-4d71-814d-3d7c49004e10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T11:28:53.504Z", + "completed":"2017-10-10T11:28:53.504Z", + "new_balance":"9221.11", + "value":"-14.99" + } + }, + { + "id":"676ef5d8-ef75-46e6-8195-79f3ffa828df", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T15:22:42.624Z", + "completed":"2017-10-11T15:22:42.624Z", + "new_balance":"9205.10", + "value":"-16.01" + } + }, + { + "id":"cf142dc8-a923-472f-a669-7259ee06943b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T19:38:17.123Z", + "completed":"2017-10-11T19:38:17.123Z", + "new_balance":"9175.94", + "value":"-29.16" + } + }, + { + "id":"673d2219-b1ef-4770-a137-445199f5077b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T01:40:53.103Z", + "completed":"2017-10-14T01:40:53.103Z", + "new_balance":"9130.88", + "value":"-45.06" + } + }, + { + "id":"265ef7a8-bd79-486c-98ff-a4247334edec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T13:22:34.594Z", + "completed":"2017-10-14T13:22:34.594Z", + "new_balance":"9026.16", + "value":"-104.72" + } + }, + { + "id":"d9deb330-a5f0-45db-af3d-2cbcd069a56b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T09:50:20.585Z", + "completed":"2017-10-17T09:50:20.585Z", + "new_balance":"8981.68", + "value":"-44.48" + } + }, + { + "id":"8aad0329-918e-4105-bc3a-8a8fabb0bce3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T00:55:36.918Z", + "completed":"2017-10-18T00:55:36.918Z", + "new_balance":"8975.91", + "value":"-5.77" + } + }, + { + "id":"734661ae-9bb5-4a11-8df2-80a30eeeccfe", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:29:11.621Z", + "completed":"2017-10-18T06:29:11.621Z", + "new_balance":"8896.83", + "value":"-79.08" + } + }, + { + "id":"ef3901c1-6106-416f-9004-22b1a99a9cc5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T10:46:25.781Z", + "completed":"2017-10-18T10:46:25.781Z", + "new_balance":"8886.76", + "value":"-10.07" + } + }, + { + "id":"fd752da0-dba9-4d05-8f9f-731e271600d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T20:11:36.690Z", + "completed":"2017-10-23T20:11:36.690Z", + "new_balance":"8861.36", + "value":"-25.40" + } + }, + { + "id":"26790545-0baa-466c-9bc6-f75b63c0ba5e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T13:41:37.019Z", + "completed":"2017-10-24T13:41:37.019Z", + "new_balance":"8846.53", + "value":"-14.83" + } + }, + { + "id":"d31168f0-e1e1-4a70-9f07-7292c0ac872e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:24:46.631Z", + "completed":"2017-10-24T15:24:46.631Z", + "new_balance":"8815.72", + "value":"-30.81" + } + }, + { + "id":"e37ce6aa-1dd4-4a4c-bd10-260de798ce5b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:13:54.264Z", + "completed":"2017-10-26T02:13:54.264Z", + "new_balance":"8808.73", + "value":"-6.99" + } + }, + { + "id":"6bc4fa40-947f-4b4b-abbe-e88ab2a42244", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T01:47:12.824Z", + "completed":"2017-10-30T01:47:12.824Z", + "new_balance":"8759.95", + "value":"-48.78" + } + }, + { + "id":"9b819664-7ab2-452e-8b44-58aba2be0499", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T09:49:58.750Z", + "completed":"2017-10-30T09:49:58.750Z", + "new_balance":"8562.04", + "value":"-197.91" + } + }, + { + "id":"d8c2ef82-2546-4ffd-88d3-4f41fa65edb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T01:19:25.079Z", + "completed":"2017-11-02T01:19:25.079Z", + "new_balance":"8547.53", + "value":"-14.51" + } + }, + { + "id":"320c281c-c1dc-411a-b0ed-d05711deb247", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T14:45:51.970Z", + "completed":"2017-11-02T14:45:51.970Z", + "new_balance":"8139.96", + "value":"-407.57" + } + }, + { + "id":"0a90f212-23dc-4945-ac92-0e1e32a72392", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T15:39:41.610Z", + "completed":"2017-11-02T15:39:41.610Z", + "new_balance":"8133.47", + "value":"-6.49" + } + }, + { + "id":"f01da370-ab88-4c55-a35c-3e84774515d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T16:18:53.286Z", + "completed":"2017-11-02T16:18:53.286Z", + "new_balance":"7969.99", + "value":"-163.48" + } + }, + { + "id":"b3feadd0-0e1b-4c9b-9c19-a89fff9a4ee4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T09:05:47.956Z", + "completed":"2017-11-06T09:05:47.956Z", + "new_balance":"7940.83", + "value":"-29.16" + } + }, + { + "id":"f9582f97-117d-4865-99bc-61c2c003d14b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T10:54:51.899Z", + "completed":"2017-11-06T10:54:51.899Z", + "new_balance":"7916.03", + "value":"-24.80" + } + }, + { + "id":"120bfa2f-d2ff-4dee-bab1-3355ef0a00bd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T09:04:39.760Z", + "completed":"2017-11-07T09:04:39.760Z", + "new_balance":"7811.31", + "value":"-104.72" + } + }, + { + "id":"2539242a-0c66-4fd6-8925-1805ca105fe4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T13:45:20.083Z", + "completed":"2017-11-07T13:45:20.083Z", + "new_balance":"7769.96", + "value":"-41.35" + } + }, + { + "id":"1db3aac5-a453-4073-948b-26c3c6b459ad", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T22:43:51.829Z", + "completed":"2017-11-09T22:43:51.829Z", + "new_balance":"8792.38", + "value":"1022.42" + } + }, + { + "id":"9399195b-4a9d-4d1b-a7f3-e17d4986615c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T09:50:30.575Z", + "completed":"2017-11-14T09:50:30.575Z", + "new_balance":"8741.82", + "value":"-50.56" + } + }, + { + "id":"e14df54a-0b4b-439a-875a-51c4c6daaa0b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T19:08:18.259Z", + "completed":"2017-11-14T19:08:18.259Z", + "new_balance":"8716.02", + "value":"-25.80" + } + }, + { + "id":"b3239a41-4983-4aff-a2fa-173deb172247", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T01:11:33.754Z", + "completed":"2017-11-16T01:11:33.754Z", + "new_balance":"8709.03", + "value":"-6.99" + } + }, + { + "id":"de728c92-4cd3-4936-87ff-009dee02a9ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T05:03:29.049Z", + "completed":"2017-11-20T05:03:29.049Z", + "new_balance":"8673.84", + "value":"-35.19" + } + }, + { + "id":"431dc45d-b6ba-45ea-9181-ea7f071cd049", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T00:06:23.206Z", + "completed":"2017-11-23T00:06:23.206Z", + "new_balance":"8668.07", + "value":"-5.77" + } + }, + { + "id":"446bf85a-36bd-408c-8b70-625b31c19af4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T12:28:14.927Z", + "completed":"2017-11-23T12:28:14.927Z", + "new_balance":"8622.56", + "value":"-45.51" + } + }, + { + "id":"77f07c0f-9945-438d-b406-79f3d0bca7d4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T17:38:27.627Z", + "completed":"2017-11-23T17:38:27.627Z", + "new_balance":"8593.40", + "value":"-29.16" + } + }, + { + "id":"7b6ef66e-e067-435f-aa31-006a2893d555", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T17:28:20.145Z", + "completed":"2017-11-28T17:28:20.145Z", + "new_balance":"8585.00", + "value":"-8.40" + } + }, + { + "id":"3a2c158c-a264-4281-b401-f11a474c06b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T00:02:22.668Z", + "completed":"2017-11-30T00:02:22.668Z", + "new_balance":"8536.22", + "value":"-48.78" + } + }, + { + "id":"8ea5f20e-25bb-4493-944d-0ef4735fe47b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T14:39:35.721Z", + "completed":"2017-11-30T14:39:35.721Z", + "new_balance":"8338.31", + "value":"-197.91" + } + }, + { + "id":"e33f4a17-6104-48f5-9bba-d6b869a29e9d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T07:51:20.547Z", + "completed":"2017-12-01T07:51:20.547Z", + "new_balance":"9360.73", + "value":"1022.42" + } + }, + { + "id":"6491e210-58bd-4fa0-a72b-dd82af48ad22", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T19:55:33.038Z", + "completed":"2017-12-01T19:55:33.038Z", + "new_balance":"8953.16", + "value":"-407.57" + } + }, + { + "id":"7ad8a723-6267-45bc-b30c-bbb166e7792a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T02:44:21.824Z", + "completed":"2017-12-04T02:44:21.824Z", + "new_balance":"8936.16", + "value":"-17.00" + } + }, + { + "id":"0917e920-e476-4f8f-bb20-eb6e0ccacbf3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:11:53.181Z", + "completed":"2017-12-04T10:11:53.181Z", + "new_balance":"8904.71", + "value":"-31.45" + } + }, + { + "id":"419e117b-e95e-4a2f-9055-3bce0981c8c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T04:29:26.465Z", + "completed":"2017-12-11T04:29:26.465Z", + "new_balance":"8873.90", + "value":"-30.81" + } + }, + { + "id":"aeda6c33-4eb0-49a8-8f01-1e099f37d8df", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T16:31:51.248Z", + "completed":"2017-12-11T16:31:51.248Z", + "new_balance":"8828.39", + "value":"-45.51" + } + }, + { + "id":"55d04c7d-2825-4a69-85eb-cc0dd5a72812", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T01:24:05.039Z", + "completed":"2017-12-14T01:24:05.039Z", + "new_balance":"8822.62", + "value":"-5.77" + } + }, + { + "id":"7e3add51-d5dd-425e-b89b-0a17cbd9b967", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T02:34:25.884Z", + "completed":"2017-12-14T02:34:25.884Z", + "new_balance":"8815.01", + "value":"-7.61" + } + }, + { + "id":"d8cee159-ffdf-4e5d-a1ff-66455f952b1f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T06:48:40.911Z", + "completed":"2017-12-14T06:48:40.911Z", + "new_balance":"8800.95", + "value":"-14.06" + } + }, + { + "id":"977ecc28-64f9-4fa8-9065-13c33f320cfc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T08:07:02.090Z", + "completed":"2017-12-14T08:07:02.090Z", + "new_balance":"8795.18", + "value":"-5.77" + } + }, + { + "id":"7d96fe96-aa83-4bae-9c29-81478fab8b84", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T12:33:01.248Z", + "completed":"2017-12-14T12:33:01.248Z", + "new_balance":"8690.46", + "value":"-104.72" + } + }, + { + "id":"fc29814f-5941-49ee-897a-16d77c250940", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T14:57:26.589Z", + "completed":"2017-12-14T14:57:26.589Z", + "new_balance":"8608.67", + "value":"-81.79" + } + }, + { + "id":"15a50d90-b91b-4500-a0c1-d3961164396a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T19:53:34.917Z", + "completed":"2017-12-14T19:53:34.917Z", + "new_balance":"8601.06", + "value":"-7.61" + } + }, + { + "id":"47b69058-84b1-4bb9-bf6f-3a6491a41438", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T21:06:21.636Z", + "completed":"2017-12-14T21:06:21.636Z", + "new_balance":"8555.52", + "value":"-45.54" + } + }, + { + "id":"9d4986c0-51f7-4c72-a2f5-3d5befec5c76", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T22:37:16.700Z", + "completed":"2017-12-14T22:37:16.700Z", + "new_balance":"8456.40", + "value":"-99.12" + } + }, + { + "id":"6681c985-6c2a-4d7b-b587-dc2fa70b30e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T03:32:39.959Z", + "completed":"2017-12-15T03:32:39.959Z", + "new_balance":"8450.63", + "value":"-5.77" + } + }, + { + "id":"22329006-e683-480b-a4af-4b12a15677b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:19:57.343Z", + "completed":"2017-12-15T04:19:57.343Z", + "new_balance":"8442.11", + "value":"-8.52" + } + }, + { + "id":"395487f7-b094-493d-931e-99ae09a508cf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T05:45:44.602Z", + "completed":"2017-12-15T05:45:44.602Z", + "new_balance":"8409.77", + "value":"-32.34" + } + }, + { + "id":"73d97ca4-5c26-4b21-a192-d6136fb890eb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T02:59:08.139Z", + "completed":"2017-12-18T02:59:08.139Z", + "new_balance":"8343.59", + "value":"-66.18" + } + }, + { + "id":"d1a9eeda-549b-463a-9026-131cf743d866", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T04:04:42.727Z", + "completed":"2017-12-18T04:04:42.727Z", + "new_balance":"8337.82", + "value":"-5.77" + } + }, + { + "id":"90afe726-361b-47bb-9c27-ae8bc2027a66", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T05:47:29.776Z", + "completed":"2017-12-18T05:47:29.776Z", + "new_balance":"8332.05", + "value":"-5.77" + } + }, + { + "id":"f226429e-bc9a-4e7a-8ebc-eb128783d674", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T07:28:27.202Z", + "completed":"2017-12-18T07:28:27.202Z", + "new_balance":"8312.89", + "value":"-19.16" + } + }, + { + "id":"ee003a21-bba8-425a-8d8c-545fe1bc1c10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T10:33:25.319Z", + "completed":"2017-12-18T10:33:25.319Z", + "new_balance":"8270.40", + "value":"-42.49" + } + }, + { + "id":"23c0aa29-1ec1-48d0-97c4-bcb5bd103ec7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T10:34:08.507Z", + "completed":"2017-12-18T10:34:08.507Z", + "new_balance":"8258.03", + "value":"-12.37" + } + }, + { + "id":"f35a195f-8750-47ea-9d61-1c1f3888f42d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T21:36:13.921Z", + "completed":"2017-12-18T21:36:13.921Z", + "new_balance":"8156.77", + "value":"-101.26" + } + }, + { + "id":"44cea079-461d-4148-a99f-27121a398560", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T21:36:19.296Z", + "completed":"2017-12-18T21:36:19.296Z", + "new_balance":"8132.47", + "value":"-24.30" + } + }, + { + "id":"162ce058-d429-4d5a-b9b8-6d8804ed2e46", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T00:12:35.457Z", + "completed":"2017-12-19T00:12:35.457Z", + "new_balance":"8083.58", + "value":"-48.89" + } + }, + { + "id":"fdf0c0f1-a22b-468c-a115-ccedc0694ddd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T03:46:35.402Z", + "completed":"2017-12-19T03:46:35.402Z", + "new_balance":"8039.61", + "value":"-43.97" + } + }, + { + "id":"71ca8c3b-9d57-4d20-8fd3-e6e241962c5d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T06:17:46.662Z", + "completed":"2017-12-19T06:17:46.662Z", + "new_balance":"7997.38", + "value":"-42.23" + } + }, + { + "id":"08b930cf-ca2f-420f-aa41-17690e648a5c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T02:10:38.823Z", + "completed":"2017-12-21T02:10:38.823Z", + "new_balance":"7991.61", + "value":"-5.77" + } + }, + { + "id":"d8ce6726-1438-4c43-ae9a-a49cd55c2821", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T06:15:47.278Z", + "completed":"2017-12-21T06:15:47.278Z", + "new_balance":"7894.11", + "value":"-97.50" + } + }, + { + "id":"c5ddc84c-9f3b-4def-a396-614de1e441ee", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T09:09:13.812Z", + "completed":"2017-12-21T09:09:13.812Z", + "new_balance":"7853.79", + "value":"-40.32" + } + }, + { + "id":"25a26dd3-aeae-42c9-ab3d-f2287512ea9f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T09:57:49.224Z", + "completed":"2017-12-21T09:57:49.224Z", + "new_balance":"7840.78", + "value":"-13.01" + } + }, + { + "id":"c72db10c-decd-4727-9db1-8cc45ba44c2e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T23:39:34.021Z", + "completed":"2017-12-21T23:39:34.021Z", + "new_balance":"7736.46", + "value":"-104.32" + } + }, + { + "id":"bdfdb00c-3d69-4a3b-82b6-599bfe17167a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T07:46:57.144Z", + "completed":"2017-12-24T07:46:57.144Z", + "new_balance":"7723.67", + "value":"-12.79" + } + }, + { + "id":"eb07ea3c-3df8-4080-9911-e2b1a9c0ea9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T09:41:17.501Z", + "completed":"2017-12-24T09:41:17.501Z", + "new_balance":"7698.05", + "value":"-25.62" + } + }, + { + "id":"a0914ea3-6352-4093-9e62-c2289ff29516", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T17:04:46.139Z", + "completed":"2017-12-24T17:04:46.139Z", + "new_balance":"7683.86", + "value":"-14.19" + } + }, + { + "id":"9e3f8519-0d13-4e09-af99-a7739773f90a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T00:35:54.037Z", + "completed":"2017-12-30T00:35:54.037Z", + "new_balance":"7485.95", + "value":"-197.91" + } + }, + { + "id":"d3d3f424-dfbc-428a-b5ff-0d099ecd356e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T03:48:13.674Z", + "completed":"2017-12-30T03:48:13.674Z", + "new_balance":"7437.17", + "value":"-48.78" + } + }, + { + "id":"4df4153a-3672-4d7d-a4e7-b2dfb932e58a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T17:54:45.482Z", + "completed":"2016-01-01T17:54:45.482Z", + "new_balance":"5418.71", + "value":"182.70" + } + }, + { + "id":"23b68965-b1af-4786-a207-9e8d3d58c797", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T23:51:28.524Z", + "completed":"2016-01-01T23:51:28.524Z", + "new_balance":"5559.69", + "value":"140.98" + } + }, + { + "id":"4331f811-64da-4718-b960-b145a164b0f6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T21:36:31.202Z", + "completed":"2016-01-02T21:36:31.202Z", + "new_balance":"5527.97", + "value":"-31.72" + } + }, + { + "id":"6ff9a4ee-53ba-49d5-9bbb-1127714532ca", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T04:50:11.932Z", + "completed":"2016-01-03T04:50:11.932Z", + "new_balance":"5527.30", + "value":"-0.67" + } + }, + { + "id":"95e4bc5a-2339-4b0e-9507-c2af907e7b1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T05:00:15.565Z", + "completed":"2016-01-03T05:00:15.565Z", + "new_balance":"5522.48", + "value":"-4.82" + } + }, + { + "id":"382bd2ea-ce4a-4a2b-8b5b-b384dd2dfb8c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T12:57:34.039Z", + "completed":"2016-01-03T12:57:34.039Z", + "new_balance":"5520.74", + "value":"-1.74" + } + }, + { + "id":"84edd877-95c7-43b9-a3a3-b822f9720dd8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T01:23:36.300Z", + "completed":"2016-01-04T01:23:36.300Z", + "new_balance":"5519.34", + "value":"-1.40" + } + }, + { + "id":"62624f71-cef3-42e5-8a42-5cc40fd08bb2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T16:53:27.205Z", + "completed":"2016-01-05T16:53:27.205Z", + "new_balance":"5518.82", + "value":"-0.52" + } + }, + { + "id":"b9eef1cc-b679-4325-8877-b16fcfaef95d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T07:32:46.254Z", + "completed":"2016-01-07T07:32:46.254Z", + "new_balance":"5517.22", + "value":"-1.60" + } + }, + { + "id":"552b9d42-ffd4-4289-be8a-fea93006e7b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T23:53:41.054Z", + "completed":"2016-01-07T23:53:41.054Z", + "new_balance":"5514.63", + "value":"-2.59" + } + }, + { + "id":"440dd4d8-002e-4ee5-b85e-ea39696b6166", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T07:19:06.370Z", + "completed":"2016-01-08T07:19:06.370Z", + "new_balance":"5512.95", + "value":"-1.68" + } + }, + { + "id":"51c82a0b-75a9-4949-bdc9-5df465f08e4e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T15:24:34.195Z", + "completed":"2016-01-08T15:24:34.195Z", + "new_balance":"5511.08", + "value":"-1.87" + } + }, + { + "id":"f8617daa-ec76-4e38-ab47-a5c7520a8086", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T16:09:09.738Z", + "completed":"2016-01-09T16:09:09.738Z", + "new_balance":"5504.95", + "value":"-6.13" + } + }, + { + "id":"f7a16e96-2ce3-488d-813c-8e025079a4f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T20:15:01.096Z", + "completed":"2016-01-09T20:15:01.096Z", + "new_balance":"5502.64", + "value":"-2.31" + } + }, + { + "id":"75fb208d-0c39-41ef-b7da-b94004c2431c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:03:47.081Z", + "completed":"2016-01-10T00:03:47.081Z", + "new_balance":"5494.94", + "value":"-7.70" + } + }, + { + "id":"79035c76-6de3-45e4-a439-e98ce1e387c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T07:28:40.988Z", + "completed":"2016-01-10T07:28:40.988Z", + "new_balance":"5490.41", + "value":"-4.53" + } + }, + { + "id":"f5c058d8-9a53-4b61-a5c6-a4511cd471c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T05:09:56.797Z", + "completed":"2016-01-11T05:09:56.797Z", + "new_balance":"5499.40", + "value":"8.99" + } + }, + { + "id":"c3b5aeb6-4309-451a-a009-c22a73b0a521", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T05:42:50.996Z", + "completed":"2016-01-11T05:42:50.996Z", + "new_balance":"5498.93", + "value":"-0.47" + } + }, + { + "id":"75920d3a-773c-452f-b431-561981da835d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T20:48:14.441Z", + "completed":"2016-01-11T20:48:14.441Z", + "new_balance":"5493.45", + "value":"-5.48" + } + }, + { + "id":"3930d9b7-0d88-4937-a64b-c575d204f868", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T12:16:43.194Z", + "completed":"2016-01-12T12:16:43.194Z", + "new_balance":"5492.64", + "value":"-0.81" + } + }, + { + "id":"ec2a8773-024d-46d6-9840-a7afa3bb464b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T13:47:30.593Z", + "completed":"2016-01-15T13:47:30.593Z", + "new_balance":"5490.21", + "value":"-2.43" + } + }, + { + "id":"05f46a9d-1d00-433b-b836-9ade3016e131", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T13:51:37.861Z", + "completed":"2016-01-16T13:51:37.861Z", + "new_balance":"5486.91", + "value":"-3.30" + } + }, + { + "id":"909f0421-b284-4bc9-8632-668371029fce", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T20:18:00.961Z", + "completed":"2016-01-17T20:18:00.961Z", + "new_balance":"5485.34", + "value":"-1.57" + } + }, + { + "id":"31703192-d05c-40f3-b469-937a952651b8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T08:07:27.996Z", + "completed":"2016-01-20T08:07:27.996Z", + "new_balance":"5484.82", + "value":"-0.52" + } + }, + { + "id":"f7448f03-ad3c-4c40-ae35-f16a3cc004fc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T08:34:03.497Z", + "completed":"2016-01-21T08:34:03.497Z", + "new_balance":"5481.10", + "value":"-3.72" + } + }, + { + "id":"d75b58f3-2512-42ed-82b1-eeaf392d123b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T22:58:42.006Z", + "completed":"2016-01-23T22:58:42.006Z", + "new_balance":"5458.74", + "value":"-22.36" + } + }, + { + "id":"84871a7d-b631-4f44-9760-82737960e89f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:00:30.132Z", + "completed":"2016-02-01T01:00:30.132Z", + "new_balance":"5599.72", + "value":"140.98" + } + }, + { + "id":"4869f14e-ed91-4a22-aee3-2e342dc60d20", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T18:11:10.872Z", + "completed":"2016-02-03T18:11:10.872Z", + "new_balance":"5586.62", + "value":"-13.10" + } + }, + { + "id":"3bbd6a81-a65f-4bdf-b8db-f0cb6be54656", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T23:46:52.329Z", + "completed":"2016-02-03T23:46:52.329Z", + "new_balance":"5554.90", + "value":"-31.72" + } + }, + { + "id":"0b1cf439-b6cd-4120-a676-f914ddd78ee5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T17:00:12.024Z", + "completed":"2016-02-04T17:00:12.024Z", + "new_balance":"5553.58", + "value":"-1.32" + } + }, + { + "id":"46884a51-bb00-44aa-89c6-6203e0792b0f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T19:45:18.011Z", + "completed":"2016-02-05T19:45:18.011Z", + "new_balance":"5552.91", + "value":"-0.67" + } + }, + { + "id":"d1446fc3-9495-4349-8b12-dc17509fc1e7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T13:41:11.458Z", + "completed":"2016-02-06T13:41:11.458Z", + "new_balance":"5550.72", + "value":"-2.19" + } + }, + { + "id":"1b70546e-05e8-46d0-90f8-b70a79660d68", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T11:51:18.456Z", + "completed":"2016-02-07T11:51:18.456Z", + "new_balance":"5546.15", + "value":"-4.57" + } + }, + { + "id":"75e4ca7d-75f4-4695-9e84-48db20ae7401", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T13:52:37.080Z", + "completed":"2016-02-07T13:52:37.080Z", + "new_balance":"5543.84", + "value":"-2.31" + } + }, + { + "id":"ba57ec64-2a46-4b24-bc79-682ea821dd92", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T23:58:39.656Z", + "completed":"2016-02-07T23:58:39.656Z", + "new_balance":"5536.14", + "value":"-7.70" + } + }, + { + "id":"4c9f0e8d-e19f-41e7-8592-83664ad4845f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T13:38:44.045Z", + "completed":"2016-02-08T13:38:44.045Z", + "new_balance":"5532.00", + "value":"-4.14" + } + }, + { + "id":"313ee104-a100-4778-a63d-ea51ebbe292f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T06:36:13.509Z", + "completed":"2016-02-09T06:36:13.509Z", + "new_balance":"5529.60", + "value":"-2.40" + } + }, + { + "id":"92bfb3d4-6fc5-4c68-b681-7771b9bf21eb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T11:55:30.538Z", + "completed":"2016-02-10T11:55:30.538Z", + "new_balance":"5529.08", + "value":"-0.52" + } + }, + { + "id":"5174d0b3-21c9-44cb-a71e-a26edac9176c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T20:03:58.092Z", + "completed":"2016-02-12T20:03:58.092Z", + "new_balance":"5526.20", + "value":"-2.88" + } + }, + { + "id":"fb30e4b4-3307-4812-a7dc-b92e974685b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T07:43:07.401Z", + "completed":"2016-02-14T07:43:07.401Z", + "new_balance":"5523.89", + "value":"-2.31" + } + }, + { + "id":"48aa0155-ebb6-4a43-8c42-4677d0fc0739", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T10:06:17.380Z", + "completed":"2016-02-16T10:06:17.380Z", + "new_balance":"5523.42", + "value":"-0.47" + } + }, + { + "id":"7b7bedab-e5d9-4336-a20b-41876c7ba07a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T15:35:29.307Z", + "completed":"2016-02-16T15:35:29.307Z", + "new_balance":"5518.81", + "value":"-4.61" + } + }, + { + "id":"86563f43-e756-451d-a4db-b5e3b4a2db8d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T13:49:47.113Z", + "completed":"2016-02-18T13:49:47.113Z", + "new_balance":"5518.22", + "value":"-0.59" + } + }, + { + "id":"4c8c754e-8a57-4a87-bcf3-c4ecec1e66d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T00:26:20.768Z", + "completed":"2016-02-21T00:26:20.768Z", + "new_balance":"5529.62", + "value":"11.40" + } + }, + { + "id":"13638795-cca6-4623-b9ac-9666d2a8549f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T06:35:22.210Z", + "completed":"2016-02-21T06:35:22.210Z", + "new_balance":"5525.90", + "value":"-3.72" + } + }, + { + "id":"bcb0dd7c-fd9b-42b5-8a09-5b4ea200a839", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T22:50:41.341Z", + "completed":"2016-02-27T22:50:41.341Z", + "new_balance":"5503.54", + "value":"-22.36" + } + }, + { + "id":"2f381bea-80de-49d2-b8bc-d72b5c346a7a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T08:13:34.963Z", + "completed":"2016-03-01T08:13:34.963Z", + "new_balance":"5644.52", + "value":"140.98" + } + }, + { + "id":"3d6ec481-07b1-4a65-8ff6-9e2aaf781052", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T13:10:20.572Z", + "completed":"2016-03-03T13:10:20.572Z", + "new_balance":"5612.80", + "value":"-31.72" + } + }, + { + "id":"c903ee3b-cfce-4824-b4a5-e5e44015da89", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T02:32:36.562Z", + "completed":"2016-03-04T02:32:36.562Z", + "new_balance":"5610.75", + "value":"-2.05" + } + }, + { + "id":"bf67713e-3284-407a-9815-662f0c805d61", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T08:04:57.907Z", + "completed":"2016-03-04T08:04:57.907Z", + "new_balance":"5607.45", + "value":"-3.30" + } + }, + { + "id":"1ea7a248-2848-4065-b419-4844662ea4b1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T12:52:49.022Z", + "completed":"2016-03-04T12:52:49.022Z", + "new_balance":"5603.99", + "value":"-3.46" + } + }, + { + "id":"fe3cc123-43e5-437d-93a4-432131095479", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T18:03:45.272Z", + "completed":"2016-03-04T18:03:45.272Z", + "new_balance":"5599.38", + "value":"-4.61" + } + }, + { + "id":"a8176d2a-444f-4bb0-b504-e9701759b0c3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T00:12:38.367Z", + "completed":"2016-03-05T00:12:38.367Z", + "new_balance":"5591.68", + "value":"-7.70" + } + }, + { + "id":"54b1b21a-96e8-4168-ad6d-726ccc45ebbe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T03:23:21.041Z", + "completed":"2016-03-05T03:23:21.041Z", + "new_balance":"5591.21", + "value":"-0.47" + } + }, + { + "id":"bef1aae5-b52d-4350-a4fb-453208e91868", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T04:06:19.505Z", + "completed":"2016-03-05T04:06:19.505Z", + "new_balance":"5589.91", + "value":"-1.30" + } + }, + { + "id":"148b7e24-58ce-4b81-ad16-7f15a382b7e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T13:51:27.347Z", + "completed":"2016-03-05T13:51:27.347Z", + "new_balance":"5583.16", + "value":"-6.75" + } + }, + { + "id":"8f8df357-0535-47f3-a905-ffc60e3d3256", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T02:24:46.557Z", + "completed":"2016-03-06T02:24:46.557Z", + "new_balance":"5576.52", + "value":"-6.64" + } + }, + { + "id":"612cd948-4414-4e32-a005-9c97eb6b61d5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T15:17:55.799Z", + "completed":"2016-03-06T15:17:55.799Z", + "new_balance":"5568.78", + "value":"-7.74" + } + }, + { + "id":"5f5206c7-8ed3-4c18-82ba-5e1d29641943", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T01:00:28.238Z", + "completed":"2016-03-07T01:00:28.238Z", + "new_balance":"5568.31", + "value":"-0.47" + } + }, + { + "id":"c40e9522-ec06-4df3-abe4-9a4c1ae28ad0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T09:23:32.662Z", + "completed":"2016-03-07T09:23:32.662Z", + "new_balance":"5567.51", + "value":"-0.80" + } + }, + { + "id":"7d96b445-1573-4dbb-8cf8-97ceed59b3af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T02:23:22.590Z", + "completed":"2016-03-08T02:23:22.590Z", + "new_balance":"5566.74", + "value":"-0.77" + } + }, + { + "id":"328447be-52f8-4c50-962c-17acacf4e8f3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T05:48:25.190Z", + "completed":"2016-03-08T05:48:25.190Z", + "new_balance":"5565.94", + "value":"-0.80" + } + }, + { + "id":"6cbb5f41-c765-461e-b1ab-6bc2badda531", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T02:21:25.367Z", + "completed":"2016-03-10T02:21:25.367Z", + "new_balance":"5563.23", + "value":"-2.71" + } + }, + { + "id":"d14c93e1-9657-42b9-800b-d4bbfe0af735", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T07:10:49.628Z", + "completed":"2016-03-11T07:10:49.628Z", + "new_balance":"5562.76", + "value":"-0.47" + } + }, + { + "id":"b84cd733-0d4d-4f1d-9f49-a7211a0b2117", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T13:56:44.920Z", + "completed":"2016-03-11T13:56:44.920Z", + "new_balance":"5561.16", + "value":"-1.60" + } + }, + { + "id":"f458543c-4b62-4472-9ff5-95aa7b683d11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T17:33:15.063Z", + "completed":"2016-03-11T17:33:15.063Z", + "new_balance":"5558.44", + "value":"-2.72" + } + }, + { + "id":"0f08fe2d-3a0e-452b-b6d5-4528860b6e1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T00:28:54.781Z", + "completed":"2016-03-12T00:28:54.781Z", + "new_balance":"5557.97", + "value":"-0.47" + } + }, + { + "id":"b94514e7-bf4d-4956-814e-68763654329d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T19:21:00.014Z", + "completed":"2016-03-12T19:21:00.014Z", + "new_balance":"5551.81", + "value":"-6.16" + } + }, + { + "id":"554705a5-f38a-4e59-aa9c-d49801a7af87", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T21:57:22.859Z", + "completed":"2016-03-12T21:57:22.859Z", + "new_balance":"5541.66", + "value":"-10.15" + } + }, + { + "id":"00ac7a43-91b3-49c1-a0f6-f9daa7f6ff57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:49:58.595Z", + "completed":"2016-03-12T22:49:58.595Z", + "new_balance":"5539.07", + "value":"-2.59" + } + }, + { + "id":"8af5498f-3f2f-436b-8d61-386c516d3df3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T00:49:59.259Z", + "completed":"2016-03-13T00:49:59.259Z", + "new_balance":"5536.49", + "value":"-2.58" + } + }, + { + "id":"8dc87db2-1337-4c4c-9fc7-c651a324e8e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T07:13:51.069Z", + "completed":"2016-03-13T07:13:51.069Z", + "new_balance":"5536.02", + "value":"-0.47" + } + }, + { + "id":"0c6c5d91-abf3-4e24-bef7-fac0342b7c15", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T09:53:09.790Z", + "completed":"2016-03-15T09:53:09.790Z", + "new_balance":"5531.90", + "value":"-4.12" + } + }, + { + "id":"82e03786-3d30-42ee-b9fa-abacce899db2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T18:31:05.402Z", + "completed":"2016-03-15T18:31:05.402Z", + "new_balance":"5526.98", + "value":"-4.92" + } + }, + { + "id":"905f7692-5ffe-4e6a-9c48-f4153f586ec7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T04:05:19.597Z", + "completed":"2016-03-17T04:05:19.597Z", + "new_balance":"5522.59", + "value":"-4.39" + } + }, + { + "id":"fd5d78cd-d2c2-436c-ab75-7885fabbf07e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T13:43:28.424Z", + "completed":"2016-03-18T13:43:28.424Z", + "new_balance":"5512.98", + "value":"-9.61" + } + }, + { + "id":"c3465576-d0c5-4216-9d00-8a0e2400c744", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T19:31:42.785Z", + "completed":"2016-03-20T19:31:42.785Z", + "new_balance":"5500.62", + "value":"-12.36" + } + }, + { + "id":"91a8ec18-1cc2-4c2d-b616-4beb6673a9d9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:57:50.129Z", + "completed":"2016-03-22T06:57:50.129Z", + "new_balance":"5497.15", + "value":"-3.47" + } + }, + { + "id":"b59e9b88-f77e-4388-9534-bd89ecef22f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T06:42:54.025Z", + "completed":"2016-03-25T06:42:54.025Z", + "new_balance":"5496.68", + "value":"-0.47" + } + }, + { + "id":"bcc82a29-a4e2-464d-ba2f-fb889d23175b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T17:50:41.629Z", + "completed":"2016-03-25T17:50:41.629Z", + "new_balance":"5495.53", + "value":"-1.15" + } + }, + { + "id":"eb337208-b002-4ac9-a214-b0ce3d780c18", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T08:45:42.825Z", + "completed":"2016-03-26T08:45:42.825Z", + "new_balance":"5494.18", + "value":"-1.35" + } + }, + { + "id":"4cb87e60-bf9f-4b09-8c0b-e94d6fdc16d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T10:48:07.332Z", + "completed":"2016-03-26T10:48:07.332Z", + "new_balance":"5491.79", + "value":"-2.39" + } + }, + { + "id":"21ab7d5a-0c57-4576-9658-09522cda233f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T21:02:16.756Z", + "completed":"2016-03-27T21:02:16.756Z", + "new_balance":"5490.59", + "value":"-1.20" + } + }, + { + "id":"5ecfc9f1-1bab-44fe-a5d1-e218b2aa2b26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T17:37:10.966Z", + "completed":"2016-03-28T17:37:10.966Z", + "new_balance":"5486.87", + "value":"-3.72" + } + }, + { + "id":"01816681-b874-4f51-be19-5d194fb52138", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T21:33:13.190Z", + "completed":"2016-03-31T21:33:13.190Z", + "new_balance":"5464.51", + "value":"-22.36" + } + }, + { + "id":"1b57682d-a9d6-47c8-b5d6-4f859f228513", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T05:00:49.246Z", + "completed":"2016-04-01T05:00:49.246Z", + "new_balance":"5432.79", + "value":"-31.72" + } + }, + { + "id":"4b2a5364-f8ef-4177-922a-f01a2923caca", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T16:56:41.649Z", + "completed":"2016-04-01T16:56:41.649Z", + "new_balance":"5615.49", + "value":"182.70" + } + }, + { + "id":"f12a8c17-dbdb-4354-9a43-65b54516711a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T20:46:08.841Z", + "completed":"2016-04-01T20:46:08.841Z", + "new_balance":"5756.47", + "value":"140.98" + } + }, + { + "id":"9604a8d0-b338-4bc6-b9d7-f03d61636811", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T07:05:00.528Z", + "completed":"2016-04-03T07:05:00.528Z", + "new_balance":"5751.65", + "value":"-4.82" + } + }, + { + "id":"97285fc5-7263-4787-8978-9de7bf6017ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T19:19:27.231Z", + "completed":"2016-04-03T19:19:27.231Z", + "new_balance":"5750.98", + "value":"-0.67" + } + }, + { + "id":"2a22238e-0c57-472a-8342-b0383af7c862", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T20:42:23.314Z", + "completed":"2016-04-03T20:42:23.314Z", + "new_balance":"5749.24", + "value":"-1.74" + } + }, + { + "id":"cacd7b00-c1ee-4a78-9498-28156e9b09a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T11:44:58.359Z", + "completed":"2016-04-05T11:44:58.359Z", + "new_balance":"5748.72", + "value":"-0.52" + } + }, + { + "id":"b6562125-6bb1-4e7d-b0d5-c79639cb9031", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T14:23:54.353Z", + "completed":"2016-04-05T14:23:54.353Z", + "new_balance":"5747.32", + "value":"-1.40" + } + }, + { + "id":"87f9c5c8-46b7-4ff9-a1c3-4dab3fe67d55", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T14:54:44.582Z", + "completed":"2016-04-06T14:54:44.582Z", + "new_balance":"5745.72", + "value":"-1.60" + } + }, + { + "id":"20ba67c7-c2c1-42c7-a258-243abcf09a35", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T06:11:09.644Z", + "completed":"2016-04-09T06:11:09.644Z", + "new_balance":"5743.13", + "value":"-2.59" + } + }, + { + "id":"eae76fd6-4471-47c9-8f3e-5ce443ad1e47", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T04:41:22.125Z", + "completed":"2016-04-10T04:41:22.125Z", + "new_balance":"5741.45", + "value":"-1.68" + } + }, + { + "id":"f7111210-bc3f-470f-8c83-4b9fff346b06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:27:14.270Z", + "completed":"2016-04-11T14:27:14.270Z", + "new_balance":"5739.58", + "value":"-1.87" + } + }, + { + "id":"73ed3582-584a-4c96-9876-c60ef761fa28", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T18:45:37.032Z", + "completed":"2016-04-11T18:45:37.032Z", + "new_balance":"5737.27", + "value":"-2.31" + } + }, + { + "id":"afa50773-c4c0-4012-b093-1852e3174691", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T03:45:04.946Z", + "completed":"2016-04-13T03:45:04.946Z", + "new_balance":"5729.57", + "value":"-7.70" + } + }, + { + "id":"316c290a-939d-4550-bd95-4b05b70661a8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T22:11:49.665Z", + "completed":"2016-04-13T22:11:49.665Z", + "new_balance":"5723.44", + "value":"-6.13" + } + }, + { + "id":"c98be94f-a14f-46f6-9d76-9ce8f5935dd7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T07:46:36.183Z", + "completed":"2016-04-15T07:46:36.183Z", + "new_balance":"5718.91", + "value":"-4.53" + } + }, + { + "id":"e847b612-7416-40e2-b277-20dd7fa9d80b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T04:43:41.877Z", + "completed":"2016-04-16T04:43:41.877Z", + "new_balance":"5718.10", + "value":"-0.81" + } + }, + { + "id":"5e0a848e-b546-40f1-8b9b-b21458315c3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T17:35:21.330Z", + "completed":"2016-04-16T17:35:21.330Z", + "new_balance":"5717.63", + "value":"-0.47" + } + }, + { + "id":"a61cc42b-90a2-4bcb-a193-ea0953b31428", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T11:47:59.709Z", + "completed":"2016-04-18T11:47:59.709Z", + "new_balance":"5712.15", + "value":"-5.48" + } + }, + { + "id":"d22056dd-3894-45fa-937d-78a3f1f573a7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T22:41:36.769Z", + "completed":"2016-04-23T22:41:36.769Z", + "new_balance":"5709.72", + "value":"-2.43" + } + }, + { + "id":"dcf9a2bc-c456-44fe-936c-906493f53a2d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T00:48:58.307Z", + "completed":"2016-04-24T00:48:58.307Z", + "new_balance":"5708.15", + "value":"-1.57" + } + }, + { + "id":"18c86f47-f2fa-464e-930f-fd86a465b3f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T04:33:38.570Z", + "completed":"2016-04-24T04:33:38.570Z", + "new_balance":"5704.85", + "value":"-3.30" + } + }, + { + "id":"afbcdcf4-2143-4396-b356-26e2bfccd802", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T11:24:36.401Z", + "completed":"2016-04-26T11:24:36.401Z", + "new_balance":"5704.33", + "value":"-0.52" + } + }, + { + "id":"9257297f-8324-4414-be41-85b955dc88a7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T03:09:56.141Z", + "completed":"2016-04-28T03:09:56.141Z", + "new_balance":"5700.61", + "value":"-3.72" + } + }, + { + "id":"c9c9bf3a-76f0-45c6-8572-efccdfe808d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T13:25:20.618Z", + "completed":"2016-04-28T13:25:20.618Z", + "new_balance":"5678.25", + "value":"-22.36" + } + }, + { + "id":"0fe4f3d7-cb83-4d12-bc2a-6295a9c56d3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T03:36:39.861Z", + "completed":"2016-05-02T03:36:39.861Z", + "new_balance":"5665.15", + "value":"-13.10" + } + }, + { + "id":"8d8894bd-d825-472e-8063-e9d5dc7ac281", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T03:54:50.040Z", + "completed":"2016-05-02T03:54:50.040Z", + "new_balance":"5664.48", + "value":"-0.67" + } + }, + { + "id":"be6bd602-a841-44a5-b639-7b149921a9e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T04:23:50.355Z", + "completed":"2016-05-02T04:23:50.355Z", + "new_balance":"5632.76", + "value":"-31.72" + } + }, + { + "id":"179f7ede-bf1e-4672-a2a4-7320d935241a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T23:29:05.083Z", + "completed":"2016-05-02T23:29:05.083Z", + "new_balance":"5631.44", + "value":"-1.32" + } + }, + { + "id":"4f0cd619-fa5e-467a-85ce-81915704bf51", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T11:20:36.591Z", + "completed":"2016-05-06T11:20:36.591Z", + "new_balance":"5629.25", + "value":"-2.19" + } + }, + { + "id":"23c8a324-8f47-4e24-905a-c72de4b35233", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T22:17:29.421Z", + "completed":"2016-05-06T22:17:29.421Z", + "new_balance":"5626.94", + "value":"-2.31" + } + }, + { + "id":"c9116fcc-2b95-4eeb-932a-8765a8598378", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T07:27:26.566Z", + "completed":"2016-05-07T07:27:26.566Z", + "new_balance":"5622.37", + "value":"-4.57" + } + }, + { + "id":"41055845-2e1f-4ee2-af02-b205124e8b9d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T20:54:22.124Z", + "completed":"2016-05-07T20:54:22.124Z", + "new_balance":"5614.67", + "value":"-7.70" + } + }, + { + "id":"75ed4151-0e10-419d-8e9d-661b6a0b971f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T17:40:53.542Z", + "completed":"2016-05-09T17:40:53.542Z", + "new_balance":"5755.65", + "value":"140.98" + } + }, + { + "id":"c91b58e3-8bc7-46af-b683-58427fb72d4a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T08:36:57.890Z", + "completed":"2016-05-14T08:36:57.890Z", + "new_balance":"5751.51", + "value":"-4.14" + } + }, + { + "id":"feb3f9bf-02a7-48ac-91f3-84c92614fd51", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T11:01:56.352Z", + "completed":"2016-05-14T11:01:56.352Z", + "new_balance":"5749.11", + "value":"-2.40" + } + }, + { + "id":"d5aa2e02-37d3-4127-9da0-7a04993cb28d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T22:50:08.417Z", + "completed":"2016-05-16T22:50:08.417Z", + "new_balance":"5748.59", + "value":"-0.52" + } + }, + { + "id":"25197b1d-b88e-400d-b910-e3cd20ea4846", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T09:37:16.867Z", + "completed":"2016-05-21T09:37:16.867Z", + "new_balance":"5745.71", + "value":"-2.88" + } + }, + { + "id":"ec5660fd-8665-46e2-a040-c9d64f9c8b31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T14:52:37.834Z", + "completed":"2016-05-23T14:52:37.834Z", + "new_balance":"5745.24", + "value":"-0.47" + } + }, + { + "id":"67a19ffa-bde2-463e-b352-fa7c3e07dd3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T19:42:56.421Z", + "completed":"2016-05-23T19:42:56.421Z", + "new_balance":"5742.93", + "value":"-2.31" + } + }, + { + "id":"9f055413-558a-465c-a60f-a28c3853be46", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T21:23:52.602Z", + "completed":"2016-05-24T21:23:52.602Z", + "new_balance":"5738.32", + "value":"-4.61" + } + }, + { + "id":"9258ae9f-e9ca-4ebb-bfe1-30cea383bcb3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T17:07:20.104Z", + "completed":"2016-05-27T17:07:20.104Z", + "new_balance":"5737.73", + "value":"-0.59" + } + }, + { + "id":"32e17b73-1fe8-4fd3-844e-27a2e064f1d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T14:46:12.431Z", + "completed":"2016-05-30T14:46:12.431Z", + "new_balance":"5734.01", + "value":"-3.72" + } + }, + { + "id":"53b4bfd9-7def-4f78-93dd-5cfa8d94640b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T19:17:47.838Z", + "completed":"2016-05-30T19:17:47.838Z", + "new_balance":"5711.65", + "value":"-22.36" + } + }, + { + "id":"f52118db-ef44-4d3b-9427-e546a345e45d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T20:08:20.705Z", + "completed":"2016-06-01T20:08:20.705Z", + "new_balance":"5679.93", + "value":"-31.72" + } + }, + { + "id":"45e588ee-8cd9-48a2-bd21-6f61837920e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T21:34:15.160Z", + "completed":"2016-06-01T21:34:15.160Z", + "new_balance":"5820.91", + "value":"140.98" + } + }, + { + "id":"e8b949b3-b295-4cd2-9b5d-a8c62336c5ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T07:55:51.639Z", + "completed":"2016-06-04T07:55:51.639Z", + "new_balance":"5817.45", + "value":"-3.46" + } + }, + { + "id":"6d5dabd6-a57c-4449-b8a9-8bf1c5d60181", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T10:03:06.790Z", + "completed":"2016-06-04T10:03:06.790Z", + "new_balance":"5815.40", + "value":"-2.05" + } + }, + { + "id":"d6b263a7-db61-413b-9bf3-e6be2b7e94fe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T14:25:34.841Z", + "completed":"2016-06-11T14:25:34.841Z", + "new_balance":"5810.79", + "value":"-4.61" + } + }, + { + "id":"7f6c7362-3921-4854-ad0e-b3ffd5cd0f06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T14:35:35.623Z", + "completed":"2016-06-11T14:35:35.623Z", + "new_balance":"5807.49", + "value":"-3.30" + } + }, + { + "id":"7cc4d31c-698a-46ce-a629-7a57eda3a655", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T13:25:35.260Z", + "completed":"2016-06-12T13:25:35.260Z", + "new_balance":"5807.02", + "value":"-0.47" + } + }, + { + "id":"d42c7790-4582-40c0-a58f-f8ed2650114a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T13:41:26.658Z", + "completed":"2016-06-12T13:41:26.658Z", + "new_balance":"5805.72", + "value":"-1.30" + } + }, + { + "id":"a2792106-36f5-4a33-a227-60867b3d5021", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T22:11:47.215Z", + "completed":"2016-06-12T22:11:47.215Z", + "new_balance":"5798.02", + "value":"-7.70" + } + }, + { + "id":"34bdeab3-2f5d-41c5-a3e7-c51ac0eaf38a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T03:02:45.885Z", + "completed":"2016-06-13T03:02:45.885Z", + "new_balance":"5790.28", + "value":"-7.74" + } + }, + { + "id":"6190b842-af1b-4b5b-80e7-bcf8e7e1bb5a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T13:19:48.815Z", + "completed":"2016-06-13T13:19:48.815Z", + "new_balance":"5783.53", + "value":"-6.75" + } + }, + { + "id":"0b781472-cb58-4762-8244-30dd1ec147e1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T17:56:14.668Z", + "completed":"2016-06-13T17:56:14.668Z", + "new_balance":"5776.89", + "value":"-6.64" + } + }, + { + "id":"dea07d1f-e825-49f8-8cc7-a9ae356e21c2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T09:45:04.259Z", + "completed":"2016-06-14T09:45:04.259Z", + "new_balance":"5776.42", + "value":"-0.47" + } + }, + { + "id":"f4f66a27-60fc-4215-9574-388052c2b788", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T12:37:29.771Z", + "completed":"2016-06-14T12:37:29.771Z", + "new_balance":"5775.62", + "value":"-0.80" + } + }, + { + "id":"97e363ad-a7c6-4c99-8967-3ca859490cd0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T22:24:25.758Z", + "completed":"2016-06-14T22:24:25.758Z", + "new_balance":"5774.82", + "value":"-0.80" + } + }, + { + "id":"f1e60c6c-be60-4d2d-baa5-140ca870ffe1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T00:11:13.189Z", + "completed":"2016-06-15T00:11:13.189Z", + "new_balance":"5774.05", + "value":"-0.77" + } + }, + { + "id":"2120f469-e9f2-429a-9319-d6660c0589de", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:22:42.730Z", + "completed":"2016-06-15T05:22:42.730Z", + "new_balance":"5771.34", + "value":"-2.71" + } + }, + { + "id":"2570c85c-220e-4073-8170-623026f3e33c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T09:25:02.772Z", + "completed":"2016-06-15T09:25:02.772Z", + "new_balance":"5770.87", + "value":"-0.47" + } + }, + { + "id":"6e3adb41-6715-4e09-a07a-abc5a7d724bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T21:27:11.870Z", + "completed":"2016-06-16T21:27:11.870Z", + "new_balance":"5768.15", + "value":"-2.72" + } + }, + { + "id":"1f75d09d-3618-491e-9f45-c86bbc657e26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T00:06:10.904Z", + "completed":"2016-06-17T00:06:10.904Z", + "new_balance":"5766.55", + "value":"-1.60" + } + }, + { + "id":"70563cf1-33f7-41f5-b133-fabf334c11ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T01:22:19.014Z", + "completed":"2016-06-18T01:22:19.014Z", + "new_balance":"5756.40", + "value":"-10.15" + } + }, + { + "id":"c137607b-38e7-433c-833c-e93157da2e69", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T01:57:06.556Z", + "completed":"2016-06-18T01:57:06.556Z", + "new_balance":"5753.82", + "value":"-2.58" + } + }, + { + "id":"e3dcdd75-f7e0-4ffe-b397-292b4bca3154", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:19:12.434Z", + "completed":"2016-06-18T02:19:12.434Z", + "new_balance":"5753.35", + "value":"-0.47" + } + }, + { + "id":"f10b126f-a70b-4ab8-9ee0-6a4a1d5846e2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T12:53:43.988Z", + "completed":"2016-06-18T12:53:43.988Z", + "new_balance":"5752.88", + "value":"-0.47" + } + }, + { + "id":"5b36da65-ba61-440a-a7f3-bace28deb445", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T14:48:20.518Z", + "completed":"2016-06-18T14:48:20.518Z", + "new_balance":"5750.29", + "value":"-2.59" + } + }, + { + "id":"3382a7f8-b9fd-4eed-9481-9c308817d38b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T15:28:54.114Z", + "completed":"2016-06-18T15:28:54.114Z", + "new_balance":"5744.13", + "value":"-6.16" + } + }, + { + "id":"6569313f-b6b4-43ba-ab01-3c592ab0e9f0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T00:58:41.122Z", + "completed":"2016-06-19T00:58:41.122Z", + "new_balance":"5739.74", + "value":"-4.39" + } + }, + { + "id":"0a439808-09d7-4c9e-872d-2c8bb764ee1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T09:14:25.105Z", + "completed":"2016-06-19T09:14:25.105Z", + "new_balance":"5734.82", + "value":"-4.92" + } + }, + { + "id":"7ca68f9c-d292-4c17-94d3-54c3175eeae8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T20:36:35.187Z", + "completed":"2016-06-19T20:36:35.187Z", + "new_balance":"5730.70", + "value":"-4.12" + } + }, + { + "id":"8c7ef798-ecbd-4f10-9192-241a98c1cc15", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T03:01:15.064Z", + "completed":"2016-06-21T03:01:15.064Z", + "new_balance":"5721.09", + "value":"-9.61" + } + }, + { + "id":"432358bf-0f2e-46aa-9872-73851f766245", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T10:18:46.651Z", + "completed":"2016-06-21T10:18:46.651Z", + "new_balance":"5708.73", + "value":"-12.36" + } + }, + { + "id":"5c61fba7-0b58-4cf3-8a9e-346477ccb0d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T01:55:40.779Z", + "completed":"2016-06-22T01:55:40.779Z", + "new_balance":"5708.26", + "value":"-0.47" + } + }, + { + "id":"5b65584f-4579-4bd3-bc44-a52232353f3f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T02:59:41.615Z", + "completed":"2016-06-22T02:59:41.615Z", + "new_balance":"5704.79", + "value":"-3.47" + } + }, + { + "id":"984ee61f-a6da-42c0-9e15-8c33d3ee4d45", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T07:27:42.782Z", + "completed":"2016-06-22T07:27:42.782Z", + "new_balance":"5703.64", + "value":"-1.15" + } + }, + { + "id":"55f43e43-3d03-42d2-b1ca-d75d174d4e22", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T18:22:51.843Z", + "completed":"2016-06-23T18:22:51.843Z", + "new_balance":"5702.29", + "value":"-1.35" + } + }, + { + "id":"fbed936f-075e-4bef-89a5-a4fd6b48c694", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T23:16:55.851Z", + "completed":"2016-06-24T23:16:55.851Z", + "new_balance":"5699.90", + "value":"-2.39" + } + }, + { + "id":"d334b98a-0c9b-4afa-9aec-4afd5752b390", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T09:04:37.871Z", + "completed":"2016-06-26T09:04:37.871Z", + "new_balance":"5698.70", + "value":"-1.20" + } + }, + { + "id":"12aca8d9-da38-48b9-bb8d-66179320aa58", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T08:19:54.167Z", + "completed":"2016-06-30T08:19:54.167Z", + "new_balance":"5694.98", + "value":"-3.72" + } + }, + { + "id":"cba7489a-49d9-45fe-a6f0-a3934f4235f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T14:56:53.764Z", + "completed":"2016-06-30T14:56:53.764Z", + "new_balance":"5672.62", + "value":"-22.36" + } + }, + { + "id":"55fd1035-86e6-46e2-aea9-d9a8f53860a9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:14:29.493Z", + "completed":"2016-07-01T18:14:29.493Z", + "new_balance":"5855.32", + "value":"182.70" + } + }, + { + "id":"013340c6-cfc5-4786-b5b0-56b84523e907", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:27:15.014Z", + "completed":"2016-07-01T18:27:15.014Z", + "new_balance":"5996.30", + "value":"140.98" + } + }, + { + "id":"d0485861-71ee-459a-b09b-6992876e49f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T13:31:42.631Z", + "completed":"2016-07-03T13:31:42.631Z", + "new_balance":"5964.58", + "value":"-31.72" + } + }, + { + "id":"0a94020e-b7d5-43d1-8deb-f52167971463", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T07:19:34.637Z", + "completed":"2016-07-04T07:19:34.637Z", + "new_balance":"5959.76", + "value":"-4.82" + } + }, + { + "id":"92d493bf-59a6-43bd-990e-e217cf04eb5f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T12:09:24.601Z", + "completed":"2016-07-04T12:09:24.601Z", + "new_balance":"5959.09", + "value":"-0.67" + } + }, + { + "id":"2405f984-3f79-42bd-b007-c2615ca72892", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T20:42:48.727Z", + "completed":"2016-07-04T20:42:48.727Z", + "new_balance":"5957.35", + "value":"-1.74" + } + }, + { + "id":"e61036db-dd17-4716-8be7-f6e91e6d91e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T03:10:24.579Z", + "completed":"2016-07-05T03:10:24.579Z", + "new_balance":"5955.95", + "value":"-1.40" + } + }, + { + "id":"574b7f57-0b64-4511-ace4-5e147f760da7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T03:42:25.727Z", + "completed":"2016-07-07T03:42:25.727Z", + "new_balance":"5955.43", + "value":"-0.52" + } + }, + { + "id":"0e65cfd3-a86b-45aa-8306-f8d60b817173", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T05:30:24.872Z", + "completed":"2016-07-11T05:30:24.872Z", + "new_balance":"5953.83", + "value":"-1.60" + } + }, + { + "id":"909755f6-c64f-44ce-aef1-dad7f28de49a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:20:07.249Z", + "completed":"2016-07-11T10:20:07.249Z", + "new_balance":"5952.15", + "value":"-1.68" + } + }, + { + "id":"3c35c8e2-304b-4c31-af04-cb8ead427733", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T11:28:51.355Z", + "completed":"2016-07-11T11:28:51.355Z", + "new_balance":"5949.56", + "value":"-2.59" + } + }, + { + "id":"d317052a-2de7-4fdc-b284-40333e34d0e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T19:41:27.527Z", + "completed":"2016-07-11T19:41:27.527Z", + "new_balance":"5947.25", + "value":"-2.31" + } + }, + { + "id":"11771867-ed33-47e6-a8aa-5e5ccf041b53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T21:09:55.454Z", + "completed":"2016-07-11T21:09:55.454Z", + "new_balance":"5945.38", + "value":"-1.87" + } + }, + { + "id":"b81895aa-6c6e-459c-bbe2-92f3e1512d29", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T11:09:07.208Z", + "completed":"2016-07-13T11:09:07.208Z", + "new_balance":"5939.25", + "value":"-6.13" + } + }, + { + "id":"75060213-597c-4923-bf6b-0f07b9c3c09b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T19:36:34.246Z", + "completed":"2016-07-13T19:36:34.246Z", + "new_balance":"5931.55", + "value":"-7.70" + } + }, + { + "id":"14a841be-6df7-458a-8685-1fa534464e79", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:42:02.790Z", + "completed":"2016-07-16T16:42:02.790Z", + "new_balance":"5940.54", + "value":"8.99" + } + }, + { + "id":"7110c9a2-5ed2-4607-8010-8db1b15cfb09", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T20:30:44.600Z", + "completed":"2016-07-16T20:30:44.600Z", + "new_balance":"5936.01", + "value":"-4.53" + } + }, + { + "id":"50e35a5a-cdf7-442a-8927-e2b019f15bfa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T03:22:24.722Z", + "completed":"2016-07-17T03:22:24.722Z", + "new_balance":"5935.20", + "value":"-0.81" + } + }, + { + "id":"fd3824fc-45e9-42a8-b2d3-6205c0ce54f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:39:30.988Z", + "completed":"2016-07-17T03:39:30.988Z", + "new_balance":"5934.73", + "value":"-0.47" + } + }, + { + "id":"5b80614a-52ff-439f-a484-34526e5c6c6f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T16:34:07.233Z", + "completed":"2016-07-19T16:34:07.233Z", + "new_balance":"5929.25", + "value":"-5.48" + } + }, + { + "id":"f98e8538-ec9d-4176-b278-43e6e90ea1e7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T02:34:18.468Z", + "completed":"2016-07-21T02:34:18.468Z", + "new_balance":"5926.82", + "value":"-2.43" + } + }, + { + "id":"586ddef2-0212-4ec0-91d4-e8f2e7f72beb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T18:11:19.644Z", + "completed":"2016-07-23T18:11:19.644Z", + "new_balance":"5923.52", + "value":"-3.30" + } + }, + { + "id":"d5954d97-5a23-470b-88f8-3965eb834611", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T17:25:59.173Z", + "completed":"2016-07-25T17:25:59.173Z", + "new_balance":"5921.95", + "value":"-1.57" + } + }, + { + "id":"f97abc7e-d59a-4e98-b068-54a467d42553", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T22:50:02.008Z", + "completed":"2016-07-27T22:50:02.008Z", + "new_balance":"5921.43", + "value":"-0.52" + } + }, + { + "id":"4540b816-ff3a-4093-adc5-47e26b6ea689", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T12:38:51.848Z", + "completed":"2016-07-28T12:38:51.848Z", + "new_balance":"5899.07", + "value":"-22.36" + } + }, + { + "id":"1e0fa58f-9ff3-4a5f-980c-d96bb0359f59", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T19:32:02.026Z", + "completed":"2016-07-28T19:32:02.026Z", + "new_balance":"5895.35", + "value":"-3.72" + } + }, + { + "id":"6a63f18a-bcda-4fb5-9719-847b8719c554", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T02:34:25.935Z", + "completed":"2016-08-01T02:34:25.935Z", + "new_balance":"6036.33", + "value":"140.98" + } + }, + { + "id":"b6aa5f7f-cb77-4229-9669-d1ce3802ea88", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:34:49.635Z", + "completed":"2016-08-03T09:34:49.635Z", + "new_balance":"6004.61", + "value":"-31.72" + } + }, + { + "id":"1926858c-1093-4c30-917b-9d0e46b92faa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T22:19:20.445Z", + "completed":"2016-08-03T22:19:20.445Z", + "new_balance":"5991.51", + "value":"-13.10" + } + }, + { + "id":"7db4c755-9d8d-4411-a0f7-f475d1e83730", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T02:09:59.742Z", + "completed":"2016-08-04T02:09:59.742Z", + "new_balance":"5990.19", + "value":"-1.32" + } + }, + { + "id":"9a13b799-78af-47b7-8889-72ab8a602eea", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T00:15:25.276Z", + "completed":"2016-08-07T00:15:25.276Z", + "new_balance":"5988.00", + "value":"-2.19" + } + }, + { + "id":"1e0ae56c-2e02-455a-bec1-e08ce0bff869", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T07:59:44.184Z", + "completed":"2016-08-07T07:59:44.184Z", + "new_balance":"5987.33", + "value":"-0.67" + } + }, + { + "id":"6f487c6c-42ad-4ecc-aa22-3ecc2494db37", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T21:44:50.368Z", + "completed":"2016-08-07T21:44:50.368Z", + "new_balance":"5985.02", + "value":"-2.31" + } + }, + { + "id":"11311f72-bf26-4227-afa2-3d7ebe0ba8ae", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T09:02:55.660Z", + "completed":"2016-08-08T09:02:55.660Z", + "new_balance":"5980.88", + "value":"-4.14" + } + }, + { + "id":"da40351b-1dcd-4f44-9cfe-f682c1614c02", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T09:53:17.341Z", + "completed":"2016-08-08T09:53:17.341Z", + "new_balance":"5976.31", + "value":"-4.57" + } + }, + { + "id":"f2111b16-69f4-44c3-8bba-63b961f67903", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T14:36:30.167Z", + "completed":"2016-08-08T14:36:30.167Z", + "new_balance":"5968.61", + "value":"-7.70" + } + }, + { + "id":"8cd33f3f-6147-4a2e-be2d-c56ffcf8162a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T02:57:34.660Z", + "completed":"2016-08-09T02:57:34.660Z", + "new_balance":"5966.21", + "value":"-2.40" + } + }, + { + "id":"b57197f5-175d-4cee-992a-7b84aae14017", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T09:32:48.138Z", + "completed":"2016-08-11T09:32:48.138Z", + "new_balance":"5965.69", + "value":"-0.52" + } + }, + { + "id":"92d351c0-0522-4cb6-bdeb-05edaa788a8e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T14:12:54.227Z", + "completed":"2016-08-14T14:12:54.227Z", + "new_balance":"5962.81", + "value":"-2.88" + } + }, + { + "id":"0078be9d-a294-4ddc-95b6-0429e7a48c5a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T03:14:13.570Z", + "completed":"2016-08-15T03:14:13.570Z", + "new_balance":"5960.50", + "value":"-2.31" + } + }, + { + "id":"fd24485e-d32e-418c-b4a4-8bfa0cdd9e26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T01:11:22.982Z", + "completed":"2016-08-17T01:11:22.982Z", + "new_balance":"5960.03", + "value":"-0.47" + } + }, + { + "id":"f6d83101-2323-4dc3-9ec0-715353c437d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T15:34:31.170Z", + "completed":"2016-08-17T15:34:31.170Z", + "new_balance":"5955.42", + "value":"-4.61" + } + }, + { + "id":"82c1b6e6-d58a-4872-88f2-ece1a4d731e9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T16:52:39.012Z", + "completed":"2016-08-19T16:52:39.012Z", + "new_balance":"5954.83", + "value":"-0.59" + } + }, + { + "id":"c4f9b323-2787-4973-b5fd-0bfad8683dfe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T12:26:22.097Z", + "completed":"2016-08-25T12:26:22.097Z", + "new_balance":"5966.23", + "value":"11.40" + } + }, + { + "id":"a66427c2-e198-4c76-a0a1-5a8e5ed3dfc9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T02:15:35.133Z", + "completed":"2016-08-28T02:15:35.133Z", + "new_balance":"5943.87", + "value":"-22.36" + } + }, + { + "id":"f7641473-963c-44bf-af91-25d7f1479a58", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T21:55:01.186Z", + "completed":"2016-08-28T21:55:01.186Z", + "new_balance":"5940.15", + "value":"-3.72" + } + }, + { + "id":"607793a0-a9b5-40dd-81c4-5ee3a565c13e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T21:11:19.835Z", + "completed":"2016-09-01T21:11:19.835Z", + "new_balance":"6081.13", + "value":"140.98" + } + }, + { + "id":"ff323ff4-60b5-4157-8ccf-fa7f53bdcde5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T08:45:14.061Z", + "completed":"2016-09-03T08:45:14.061Z", + "new_balance":"6049.41", + "value":"-31.72" + } + }, + { + "id":"f3c58040-5687-406a-92f5-2a77312b3f94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T03:05:11.671Z", + "completed":"2016-09-04T03:05:11.671Z", + "new_balance":"6046.11", + "value":"-3.30" + } + }, + { + "id":"ff83e1fc-5444-4870-96c2-0af34320a8ba", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T04:16:15.633Z", + "completed":"2016-09-04T04:16:15.633Z", + "new_balance":"6044.06", + "value":"-2.05" + } + }, + { + "id":"2ecea9d5-5908-4b0a-8b54-d6d1d91263e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:44:31.916Z", + "completed":"2016-09-04T10:44:31.916Z", + "new_balance":"6040.60", + "value":"-3.46" + } + }, + { + "id":"8715c9c9-d0bf-4854-8de7-7ba6655cc71e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T13:52:06.779Z", + "completed":"2016-09-04T13:52:06.779Z", + "new_balance":"6035.99", + "value":"-4.61" + } + }, + { + "id":"3b77a528-ce3e-49d8-9e6f-c312f9cdf0d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T02:25:09.376Z", + "completed":"2016-09-05T02:25:09.376Z", + "new_balance":"6029.35", + "value":"-6.64" + } + }, + { + "id":"5da7f250-3d0e-4e84-8a81-060324b0699c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T05:39:52.896Z", + "completed":"2016-09-05T05:39:52.896Z", + "new_balance":"6021.61", + "value":"-7.74" + } + }, + { + "id":"6a5ff0e3-3eb3-4fbc-aa6e-9e5cac4ffbd0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T07:02:29.958Z", + "completed":"2016-09-05T07:02:29.958Z", + "new_balance":"6014.86", + "value":"-6.75" + } + }, + { + "id":"e87b5c9e-23b2-4ba4-b989-e03097b19a57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T08:26:46.667Z", + "completed":"2016-09-05T08:26:46.667Z", + "new_balance":"6007.16", + "value":"-7.70" + } + }, + { + "id":"40665f09-bafd-4e20-bc62-62e03b504eea", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T13:36:57.664Z", + "completed":"2016-09-05T13:36:57.664Z", + "new_balance":"6005.86", + "value":"-1.30" + } + }, + { + "id":"8cd4633a-6ef2-4797-82ed-48bb87b7a5df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T17:19:03.166Z", + "completed":"2016-09-05T17:19:03.166Z", + "new_balance":"6005.39", + "value":"-0.47" + } + }, + { + "id":"df27263c-5dd9-4607-93dd-915f51b5b658", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T00:22:01.850Z", + "completed":"2016-09-07T00:22:01.850Z", + "new_balance":"6004.59", + "value":"-0.80" + } + }, + { + "id":"a70255f5-64e0-4385-8149-a05bfd2385de", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T08:06:41.356Z", + "completed":"2016-09-07T08:06:41.356Z", + "new_balance":"6003.79", + "value":"-0.80" + } + }, + { + "id":"f9c4ade5-8c87-4e2e-8bd7-b7eda73843a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T22:04:39.814Z", + "completed":"2016-09-07T22:04:39.814Z", + "new_balance":"6003.02", + "value":"-0.77" + } + }, + { + "id":"35c455f2-7de0-4bcc-8b7d-2cd31b70ae05", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T22:31:57.985Z", + "completed":"2016-09-07T22:31:57.985Z", + "new_balance":"6002.55", + "value":"-0.47" + } + }, + { + "id":"60a9ec41-e3f7-46d6-a0ac-a507c349019b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T03:03:14.662Z", + "completed":"2016-09-10T03:03:14.662Z", + "new_balance":"5999.84", + "value":"-2.71" + } + }, + { + "id":"90aa63e3-bf09-49d5-960f-4564ec928e82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T00:48:23.855Z", + "completed":"2016-09-11T00:48:23.855Z", + "new_balance":"5998.24", + "value":"-1.60" + } + }, + { + "id":"f341c17c-5a72-414a-ab62-4bf8137cda3d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T00:58:29.082Z", + "completed":"2016-09-11T00:58:29.082Z", + "new_balance":"5997.77", + "value":"-0.47" + } + }, + { + "id":"4c870574-d487-4759-b384-620b1b4e07d9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T23:40:35.929Z", + "completed":"2016-09-11T23:40:35.929Z", + "new_balance":"5995.05", + "value":"-2.72" + } + }, + { + "id":"1e9070a9-68fc-4810-b94e-b29eb0b779db", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:13:13.107Z", + "completed":"2016-09-12T10:13:13.107Z", + "new_balance":"5988.89", + "value":"-6.16" + } + }, + { + "id":"9803e43a-d7c1-4add-a758-30419540b26e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T16:15:40.233Z", + "completed":"2016-09-12T16:15:40.233Z", + "new_balance":"5978.74", + "value":"-10.15" + } + }, + { + "id":"76f77cf5-299d-4b16-98dd-1cb4840e60b8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T16:19:15.343Z", + "completed":"2016-09-12T16:19:15.343Z", + "new_balance":"5978.27", + "value":"-0.47" + } + }, + { + "id":"4a791b13-a266-4d71-90c1-c9a58646cebe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T23:13:43.324Z", + "completed":"2016-09-12T23:13:43.324Z", + "new_balance":"5975.68", + "value":"-2.59" + } + }, + { + "id":"9586e292-8ff0-4434-b8d9-2dd80997d1c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T00:26:25.830Z", + "completed":"2016-09-13T00:26:25.830Z", + "new_balance":"5973.10", + "value":"-2.58" + } + }, + { + "id":"aa4b4be8-5317-4c21-9ef4-5d1550f63239", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T06:43:27.115Z", + "completed":"2016-09-14T06:43:27.115Z", + "new_balance":"5972.63", + "value":"-0.47" + } + }, + { + "id":"454f4ffe-7ce7-4c62-8a21-859770ee2c83", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T14:54:41.240Z", + "completed":"2016-09-14T14:54:41.240Z", + "new_balance":"5967.71", + "value":"-4.92" + } + }, + { + "id":"515aa120-2652-4f05-aa71-8688a1e7bfad", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T13:30:50.691Z", + "completed":"2016-09-16T13:30:50.691Z", + "new_balance":"5963.59", + "value":"-4.12" + } + }, + { + "id":"eaf17d7c-90b2-4249-919b-8b7326743857", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T16:26:32.061Z", + "completed":"2016-09-18T16:26:32.061Z", + "new_balance":"5959.20", + "value":"-4.39" + } + }, + { + "id":"3a7eb43f-0cf2-4e10-9670-a82acaa8bb53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T02:09:05.973Z", + "completed":"2016-09-21T02:09:05.973Z", + "new_balance":"5946.84", + "value":"-12.36" + } + }, + { + "id":"9f59c822-e10b-4650-a497-6d72c6d58ca7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:29:03.428Z", + "completed":"2016-09-21T10:29:03.428Z", + "new_balance":"5937.23", + "value":"-9.61" + } + }, + { + "id":"e313b636-35cc-46c4-aa22-87d7f845f95c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T22:40:45.688Z", + "completed":"2016-09-23T22:40:45.688Z", + "new_balance":"5933.76", + "value":"-3.47" + } + }, + { + "id":"4006dd7a-ad6b-4859-8d1e-2aec23b6adb5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T12:07:08.790Z", + "completed":"2016-09-24T12:07:08.790Z", + "new_balance":"5933.29", + "value":"-0.47" + } + }, + { + "id":"67a73d26-b138-4940-90f0-47e93072064b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T05:17:44.476Z", + "completed":"2016-09-26T05:17:44.476Z", + "new_balance":"5932.14", + "value":"-1.15" + } + }, + { + "id":"ceb9523a-4d3a-4416-933d-aa98c487747e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T11:40:16.975Z", + "completed":"2016-09-26T11:40:16.975Z", + "new_balance":"5929.75", + "value":"-2.39" + } + }, + { + "id":"76272005-d3e8-43cf-a165-334e3908575e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:31:47.119Z", + "completed":"2016-09-26T15:31:47.119Z", + "new_balance":"5928.40", + "value":"-1.35" + } + }, + { + "id":"31297d6a-0a2b-47a4-bfae-ff413658533a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T13:42:46.135Z", + "completed":"2016-09-27T13:42:46.135Z", + "new_balance":"5927.20", + "value":"-1.20" + } + }, + { + "id":"6b61cd24-d169-4df2-be04-354fb516208e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:04:13.750Z", + "completed":"2016-09-28T06:04:13.750Z", + "new_balance":"5923.48", + "value":"-3.72" + } + }, + { + "id":"5967adc9-38a5-4a63-8f4d-735c793cfa07", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T22:09:56.498Z", + "completed":"2016-09-28T22:09:56.498Z", + "new_balance":"5901.12", + "value":"-22.36" + } + }, + { + "id":"a535a33e-0738-4ce2-8dc6-cae65817d797", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T12:37:28.974Z", + "completed":"2016-10-01T12:37:28.974Z", + "new_balance":"5869.40", + "value":"-31.72" + } + }, + { + "id":"e20bdcb2-b09f-4437-8333-c3c96f16c37c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T14:37:16.200Z", + "completed":"2016-10-01T14:37:16.200Z", + "new_balance":"6010.38", + "value":"140.98" + } + }, + { + "id":"bd05513f-858d-4fa1-aa4c-ee42c9cc48e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T16:35:51.911Z", + "completed":"2016-10-01T16:35:51.911Z", + "new_balance":"6193.08", + "value":"182.70" + } + }, + { + "id":"e3172ec0-454d-4ce3-9714-6dfb0f735509", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T01:25:42.371Z", + "completed":"2016-10-03T01:25:42.371Z", + "new_balance":"6192.41", + "value":"-0.67" + } + }, + { + "id":"1418498d-fa2a-4e88-b8cc-dd582c7c2320", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T02:35:52.787Z", + "completed":"2016-10-03T02:35:52.787Z", + "new_balance":"6190.67", + "value":"-1.74" + } + }, + { + "id":"aa0a0660-7ea1-4bb4-80a7-ba1309ccac97", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T13:17:01.273Z", + "completed":"2016-10-03T13:17:01.273Z", + "new_balance":"6185.85", + "value":"-4.82" + } + }, + { + "id":"1ed7a456-63ff-4021-9289-22ad7cc35452", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T08:21:46.043Z", + "completed":"2016-10-05T08:21:46.043Z", + "new_balance":"6185.33", + "value":"-0.52" + } + }, + { + "id":"b9af20fb-0a63-4a94-a14e-6df0abbcf98a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T18:02:58.920Z", + "completed":"2016-10-05T18:02:58.920Z", + "new_balance":"6183.93", + "value":"-1.40" + } + }, + { + "id":"a8b1d3c5-4cca-4ca6-890b-8b24da471287", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T00:30:23.540Z", + "completed":"2016-10-06T00:30:23.540Z", + "new_balance":"6182.33", + "value":"-1.60" + } + }, + { + "id":"ae50ba26-bbff-4598-bed3-ec567514f392", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T16:02:53.994Z", + "completed":"2016-10-09T16:02:53.994Z", + "new_balance":"6179.74", + "value":"-2.59" + } + }, + { + "id":"a48db152-7e1c-4b1c-95b4-e2188f9d6d8a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T22:21:31.571Z", + "completed":"2016-10-10T22:21:31.571Z", + "new_balance":"6178.06", + "value":"-1.68" + } + }, + { + "id":"fad8baf0-fab1-4834-8ff4-3c88beb7f35b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T08:08:55.971Z", + "completed":"2016-10-11T08:08:55.971Z", + "new_balance":"6175.75", + "value":"-2.31" + } + }, + { + "id":"572b88f8-19c4-421a-8386-ad28d3a5ff19", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:22:57.697Z", + "completed":"2016-10-11T17:22:57.697Z", + "new_balance":"6173.88", + "value":"-1.87" + } + }, + { + "id":"a92b9a98-acb0-4b17-a2fb-ad8cece0aa86", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T10:09:37.077Z", + "completed":"2016-10-14T10:09:37.077Z", + "new_balance":"6166.18", + "value":"-7.70" + } + }, + { + "id":"507e57b4-5ce2-44f6-8db5-fba47545a04e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T14:07:36.741Z", + "completed":"2016-10-14T14:07:36.741Z", + "new_balance":"6160.05", + "value":"-6.13" + } + }, + { + "id":"87528e4f-05d7-42fc-9f27-99f811719297", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T14:22:39.556Z", + "completed":"2016-10-17T14:22:39.556Z", + "new_balance":"6155.52", + "value":"-4.53" + } + }, + { + "id":"90e11b7d-bbdb-4ee1-84ca-08da343708e5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T01:00:58.240Z", + "completed":"2016-10-18T01:00:58.240Z", + "new_balance":"6154.71", + "value":"-0.81" + } + }, + { + "id":"e8ea4873-0c8f-4a89-8b2c-e631f13b5433", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T09:30:45.678Z", + "completed":"2016-10-18T09:30:45.678Z", + "new_balance":"6154.24", + "value":"-0.47" + } + }, + { + "id":"5ec362ed-a19d-4659-b573-dda47b39626f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T14:52:31.622Z", + "completed":"2016-10-18T14:52:31.622Z", + "new_balance":"6148.76", + "value":"-5.48" + } + }, + { + "id":"8a6b9eec-fb10-46cd-9f1e-ec89cce18379", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T03:25:29.409Z", + "completed":"2016-10-23T03:25:29.409Z", + "new_balance":"6146.33", + "value":"-2.43" + } + }, + { + "id":"44620eeb-c66f-4b80-8d00-61b54be33a53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T09:43:43.921Z", + "completed":"2016-10-24T09:43:43.921Z", + "new_balance":"6143.03", + "value":"-3.30" + } + }, + { + "id":"c2733d6d-61f6-4659-bde6-9be2205ed8c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T22:11:13.233Z", + "completed":"2016-10-24T22:11:13.233Z", + "new_balance":"6141.46", + "value":"-1.57" + } + }, + { + "id":"41b54e6e-78ca-4fdb-a219-42879810381f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T09:58:22.053Z", + "completed":"2016-10-26T09:58:22.053Z", + "new_balance":"6140.94", + "value":"-0.52" + } + }, + { + "id":"279acdfe-fccf-41a9-b231-89858bb32afa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T01:11:16.827Z", + "completed":"2016-10-30T01:11:16.827Z", + "new_balance":"6137.22", + "value":"-3.72" + } + }, + { + "id":"9068564d-ba4a-4e03-8144-1a06cf6cbb43", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T06:06:37.777Z", + "completed":"2016-10-30T06:06:37.777Z", + "new_balance":"6114.86", + "value":"-22.36" + } + }, + { + "id":"2699ff9f-de44-45b2-9756-5cbc302a6e6f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T03:12:03.242Z", + "completed":"2016-11-02T03:12:03.242Z", + "new_balance":"6113.54", + "value":"-1.32" + } + }, + { + "id":"47313011-af09-4080-9970-46ceef6a2549", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T03:43:26.874Z", + "completed":"2016-11-02T03:43:26.874Z", + "new_balance":"6112.87", + "value":"-0.67" + } + }, + { + "id":"318e25fa-c612-4cff-b023-e779fdb2f7e8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T07:14:33.469Z", + "completed":"2016-11-02T07:14:33.469Z", + "new_balance":"6099.77", + "value":"-13.10" + } + }, + { + "id":"73bedd82-6f67-43af-9472-e9d7885d2408", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T09:15:03.596Z", + "completed":"2016-11-02T09:15:03.596Z", + "new_balance":"6068.05", + "value":"-31.72" + } + }, + { + "id":"2dc33b95-59b1-496a-a2d8-8f9f75136ed3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T04:48:45.416Z", + "completed":"2016-11-06T04:48:45.416Z", + "new_balance":"6065.86", + "value":"-2.19" + } + }, + { + "id":"ffd957de-3c83-4ee7-97a1-d5e06d158e31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T15:11:15.625Z", + "completed":"2016-11-06T15:11:15.625Z", + "new_balance":"6063.55", + "value":"-2.31" + } + }, + { + "id":"4709c607-12e3-469b-ab69-e9cd4efb5f5d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T00:55:44.009Z", + "completed":"2016-11-07T00:55:44.009Z", + "new_balance":"6055.85", + "value":"-7.70" + } + }, + { + "id":"b66b9991-7ba7-4d9c-bd00-e292bab12a2f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T21:22:46.930Z", + "completed":"2016-11-07T21:22:46.930Z", + "new_balance":"6051.28", + "value":"-4.57" + } + }, + { + "id":"c00159b2-f1ab-43e1-982d-04518f4cd5e5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T10:08:26.797Z", + "completed":"2016-11-09T10:08:26.797Z", + "new_balance":"6192.26", + "value":"140.98" + } + }, + { + "id":"ef5cf459-f2ca-4da3-9c50-353334a89dc5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:42:16.722Z", + "completed":"2016-11-14T05:42:16.722Z", + "new_balance":"6188.12", + "value":"-4.14" + } + }, + { + "id":"d284b0f6-7350-4ea3-ae2d-b557bca6c307", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T15:19:21.301Z", + "completed":"2016-11-14T15:19:21.301Z", + "new_balance":"6185.72", + "value":"-2.40" + } + }, + { + "id":"afc1f669-e540-4a24-9bd9-3e0ab092ba91", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T07:06:07.798Z", + "completed":"2016-11-16T07:06:07.798Z", + "new_balance":"6185.20", + "value":"-0.52" + } + }, + { + "id":"5b856086-2d5f-4519-a216-8c54e81d1561", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T21:09:52.121Z", + "completed":"2016-11-20T21:09:52.121Z", + "new_balance":"6182.32", + "value":"-2.88" + } + }, + { + "id":"ebe7d3a2-bec7-45bf-8028-cd244f88cce4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T01:42:33.601Z", + "completed":"2016-11-23T01:42:33.601Z", + "new_balance":"6181.85", + "value":"-0.47" + } + }, + { + "id":"6f7d11a4-4e90-4a29-ab66-9ab4bc58f0fb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T15:46:03.635Z", + "completed":"2016-11-23T15:46:03.635Z", + "new_balance":"6177.24", + "value":"-4.61" + } + }, + { + "id":"3509454b-b7af-42ab-951d-5dd30b92cdc8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T20:46:20.865Z", + "completed":"2016-11-23T20:46:20.865Z", + "new_balance":"6174.93", + "value":"-2.31" + } + }, + { + "id":"fcd29af2-551d-4f23-b48b-bbb0145916d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T06:28:27.385Z", + "completed":"2016-11-28T06:28:27.385Z", + "new_balance":"6174.34", + "value":"-0.59" + } + }, + { + "id":"61816437-57ec-4194-b646-6b388eb7c66f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T06:55:12.167Z", + "completed":"2016-11-30T06:55:12.167Z", + "new_balance":"6151.98", + "value":"-22.36" + } + }, + { + "id":"4255e814-85d4-4785-9f0b-bb6629ac767e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T16:33:09.592Z", + "completed":"2016-11-30T16:33:09.592Z", + "new_balance":"6148.26", + "value":"-3.72" + } + }, + { + "id":"0d833de4-0ff5-475b-b938-ec07c9b160d4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T00:20:13.474Z", + "completed":"2016-12-01T00:20:13.474Z", + "new_balance":"6289.24", + "value":"140.98" + } + }, + { + "id":"bb090225-80f8-417f-81d2-45180ad618f5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T00:20:36.623Z", + "completed":"2016-12-01T00:20:36.623Z", + "new_balance":"6257.52", + "value":"-31.72" + } + }, + { + "id":"c87ae8c9-1611-46a8-88a9-5ee8514ea4d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:53:02.177Z", + "completed":"2016-12-04T14:53:02.177Z", + "new_balance":"6254.06", + "value":"-3.46" + } + }, + { + "id":"927315cc-cc8a-4ee1-8e08-d766186ee103", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T21:33:47.168Z", + "completed":"2016-12-04T21:33:47.168Z", + "new_balance":"6252.01", + "value":"-2.05" + } + }, + { + "id":"eea1ece4-447f-44d3-b948-7d3ec1e48c01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T09:03:43.676Z", + "completed":"2016-12-11T09:03:43.676Z", + "new_balance":"6248.71", + "value":"-3.30" + } + }, + { + "id":"2547008b-86d1-45c2-b52f-57e1480c5940", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T09:29:40.175Z", + "completed":"2016-12-11T09:29:40.175Z", + "new_balance":"6244.10", + "value":"-4.61" + } + }, + { + "id":"0c7ff0e6-3fa0-4224-ac52-d699e7e243c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T02:34:42.670Z", + "completed":"2016-12-14T02:34:42.670Z", + "new_balance":"6236.40", + "value":"-7.70" + } + }, + { + "id":"48ccdf20-eadc-4757-a66a-6f6cc669c29a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T04:12:05.324Z", + "completed":"2016-12-14T04:12:05.324Z", + "new_balance":"6229.65", + "value":"-6.75" + } + }, + { + "id":"4e5b8c74-9923-42c6-8364-b906af3aa2d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T06:50:17.585Z", + "completed":"2016-12-14T06:50:17.585Z", + "new_balance":"6223.01", + "value":"-6.64" + } + }, + { + "id":"00e94327-83db-4556-b310-68a75495fc5f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T11:20:30.425Z", + "completed":"2016-12-14T11:20:30.425Z", + "new_balance":"6222.21", + "value":"-0.80" + } + }, + { + "id":"27867202-d5fc-488f-9956-3b9f0901d622", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T13:08:05.638Z", + "completed":"2016-12-14T13:08:05.638Z", + "new_balance":"6220.91", + "value":"-1.30" + } + }, + { + "id":"533521b0-324f-41d4-bef0-469e34069632", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T14:05:05.641Z", + "completed":"2016-12-14T14:05:05.641Z", + "new_balance":"6220.44", + "value":"-0.47" + } + }, + { + "id":"121a1486-9ef8-4e4e-8b66-abe610093ace", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T18:26:38.414Z", + "completed":"2016-12-14T18:26:38.414Z", + "new_balance":"6219.64", + "value":"-0.80" + } + }, + { + "id":"a9dad7a3-8adc-44b8-becc-ab8b04df7419", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T20:40:52.319Z", + "completed":"2016-12-14T20:40:52.319Z", + "new_balance":"6211.90", + "value":"-7.74" + } + }, + { + "id":"e2c0a3da-8c0d-4d89-9a10-1aa1b95fe875", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T21:04:42.329Z", + "completed":"2016-12-14T21:04:42.329Z", + "new_balance":"6211.43", + "value":"-0.47" + } + }, + { + "id":"f7d2f79b-6182-4c95-b6c8-9742d7ac6f73", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T01:33:05.090Z", + "completed":"2016-12-15T01:33:05.090Z", + "new_balance":"6210.66", + "value":"-0.77" + } + }, + { + "id":"237bafc1-f3e7-4ad0-84c8-f30b575ca0f9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T05:33:55.929Z", + "completed":"2016-12-15T05:33:55.929Z", + "new_balance":"6210.19", + "value":"-0.47" + } + }, + { + "id":"adbb6c57-8e3d-4ff5-9669-3594e4b7555b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:13:45.809Z", + "completed":"2016-12-15T18:13:45.809Z", + "new_balance":"6207.48", + "value":"-2.71" + } + }, + { + "id":"c5c298b1-f950-44d3-8ccb-19117b2f6ac9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T00:08:40.561Z", + "completed":"2016-12-18T00:08:40.561Z", + "new_balance":"6204.89", + "value":"-2.59" + } + }, + { + "id":"2b8250c1-7b76-440d-a222-85e1e8940e2c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T03:51:40.854Z", + "completed":"2016-12-18T03:51:40.854Z", + "new_balance":"6204.42", + "value":"-0.47" + } + }, + { + "id":"aef63704-dedc-4e59-964b-de981bca6131", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T11:34:49.989Z", + "completed":"2016-12-18T11:34:49.989Z", + "new_balance":"6201.70", + "value":"-2.72" + } + }, + { + "id":"83513a42-2df4-4d41-aef9-beeebbbcdf4d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T11:44:00.183Z", + "completed":"2016-12-18T11:44:00.183Z", + "new_balance":"6191.55", + "value":"-10.15" + } + }, + { + "id":"91bc4100-8ac6-4e58-a28d-e39182cfd14d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T12:51:00.245Z", + "completed":"2016-12-18T12:51:00.245Z", + "new_balance":"6189.95", + "value":"-1.60" + } + }, + { + "id":"f2d4c2a3-42b3-499d-a4a0-9b6268de2784", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T18:39:04.642Z", + "completed":"2016-12-18T18:39:04.642Z", + "new_balance":"6187.37", + "value":"-2.58" + } + }, + { + "id":"67aa0c92-6e89-4e89-a6ae-d5ce9f65cb01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:13:57.186Z", + "completed":"2016-12-18T20:13:57.186Z", + "new_balance":"6181.21", + "value":"-6.16" + } + }, + { + "id":"49316af3-1876-4c06-8e8c-d9adfd85112b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T23:38:23.227Z", + "completed":"2016-12-18T23:38:23.227Z", + "new_balance":"6180.74", + "value":"-0.47" + } + }, + { + "id":"8300bbdb-a96c-43f1-9b6d-3f2d3caaf96b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T03:22:48.032Z", + "completed":"2016-12-19T03:22:48.032Z", + "new_balance":"6175.82", + "value":"-4.92" + } + }, + { + "id":"fc3d8710-9087-48f8-9714-0861a5bc0d94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T08:44:05.326Z", + "completed":"2016-12-19T08:44:05.326Z", + "new_balance":"6171.70", + "value":"-4.12" + } + }, + { + "id":"3db1d68f-395d-422b-994b-f137f4c0a940", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T10:50:06.737Z", + "completed":"2016-12-19T10:50:06.737Z", + "new_balance":"6167.31", + "value":"-4.39" + } + }, + { + "id":"5de81ab5-c79b-409f-aeaf-1d2f5562d0bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T11:03:40.969Z", + "completed":"2016-12-21T11:03:40.969Z", + "new_balance":"6166.16", + "value":"-1.15" + } + }, + { + "id":"a7d95921-298e-4dd8-a602-805f490b3fc1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T12:37:04.510Z", + "completed":"2016-12-21T12:37:04.510Z", + "new_balance":"6165.69", + "value":"-0.47" + } + }, + { + "id":"aaa439b9-b478-4ad8-a172-7b75b175eb8b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T16:41:44.528Z", + "completed":"2016-12-21T16:41:44.528Z", + "new_balance":"6162.22", + "value":"-3.47" + } + }, + { + "id":"f9c33b08-bee9-4e68-a9e6-4a2929f0bd82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T17:31:05.976Z", + "completed":"2016-12-21T17:31:05.976Z", + "new_balance":"6152.61", + "value":"-9.61" + } + }, + { + "id":"e7360154-5cb0-4899-a5fa-0d675d707646", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T22:13:21.223Z", + "completed":"2016-12-21T22:13:21.223Z", + "new_balance":"6140.25", + "value":"-12.36" + } + }, + { + "id":"9dacb40b-91ac-4448-9f98-207537110407", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T04:19:34.937Z", + "completed":"2016-12-24T04:19:34.937Z", + "new_balance":"6139.05", + "value":"-1.20" + } + }, + { + "id":"dfbfd9e5-1108-4dc5-8acb-65d7737e556c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T09:12:54.571Z", + "completed":"2016-12-24T09:12:54.571Z", + "new_balance":"6136.66", + "value":"-2.39" + } + }, + { + "id":"3ae26c59-f646-40e7-bb6b-2089cd753f1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T14:23:26.671Z", + "completed":"2016-12-24T14:23:26.671Z", + "new_balance":"6135.31", + "value":"-1.35" + } + }, + { + "id":"bff589b2-56ef-487b-b54f-9303bdb41ca3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T02:07:48.261Z", + "completed":"2016-12-30T02:07:48.261Z", + "new_balance":"6112.95", + "value":"-22.36" + } + }, + { + "id":"c49fcd8c-6d8c-47a3-8963-5d58d8d71dda", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T15:35:38.130Z", + "completed":"2016-12-30T15:35:38.130Z", + "new_balance":"6109.23", + "value":"-3.72" + } + }, + { + "id":"a7417e8a-2e6f-4cfc-ae80-0f719a6fb3cc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T19:51:49.884Z", + "completed":"2017-01-01T19:51:49.884Z", + "new_balance":"6250.21", + "value":"140.98" + } + }, + { + "id":"83c50699-d191-4e70-9501-840966b0e090", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T19:51:53.979Z", + "completed":"2017-01-01T19:51:53.979Z", + "new_balance":"6432.91", + "value":"182.70" + } + }, + { + "id":"f61b59d3-d560-4bca-b0e5-4981479119c1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T17:24:57.536Z", + "completed":"2017-01-02T17:24:57.536Z", + "new_balance":"6401.19", + "value":"-31.72" + } + }, + { + "id":"bfa3e99d-eb97-463e-9615-51db089245ad", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T05:58:10.215Z", + "completed":"2017-01-03T05:58:10.215Z", + "new_balance":"6400.52", + "value":"-0.67" + } + }, + { + "id":"2958b97d-76e9-4545-809d-47fe072ee6d1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T15:14:48.008Z", + "completed":"2017-01-03T15:14:48.008Z", + "new_balance":"6395.70", + "value":"-4.82" + } + }, + { + "id":"0f8fbc24-1799-412c-a7eb-f8fc3fea42d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T22:48:06.242Z", + "completed":"2017-01-03T22:48:06.242Z", + "new_balance":"6393.96", + "value":"-1.74" + } + }, + { + "id":"06dcd031-62c3-478e-bbb4-c739fb1cf0e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T17:53:27.345Z", + "completed":"2017-01-04T17:53:27.345Z", + "new_balance":"6392.56", + "value":"-1.40" + } + }, + { + "id":"9d7198a7-f7d6-4678-9ff5-652e3809e341", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:01:23.862Z", + "completed":"2017-01-05T19:01:23.862Z", + "new_balance":"6392.04", + "value":"-0.52" + } + }, + { + "id":"08c2678d-1464-4f2d-8887-a2a10673cb42", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T14:27:38.710Z", + "completed":"2017-01-07T14:27:38.710Z", + "new_balance":"6390.44", + "value":"-1.60" + } + }, + { + "id":"97b3a0a1-19ca-49ac-bb96-3db94fa0f2c4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T14:44:41.222Z", + "completed":"2017-01-07T14:44:41.222Z", + "new_balance":"6387.85", + "value":"-2.59" + } + }, + { + "id":"a2ebe0e3-a61c-4216-bd62-6744844cf954", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T01:03:43.673Z", + "completed":"2017-01-08T01:03:43.673Z", + "new_balance":"6386.17", + "value":"-1.68" + } + }, + { + "id":"63c5ec4d-f17c-498c-be88-ebce2fd4c151", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T11:27:08.421Z", + "completed":"2017-01-08T11:27:08.421Z", + "new_balance":"6384.30", + "value":"-1.87" + } + }, + { + "id":"af5683a3-36b8-42d9-989a-729e0cc2606b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T02:15:27.088Z", + "completed":"2017-01-09T02:15:27.088Z", + "new_balance":"6378.17", + "value":"-6.13" + } + }, + { + "id":"e7e867a5-48ad-4617-aa71-ce065fe88622", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T07:45:51.669Z", + "completed":"2017-01-09T07:45:51.669Z", + "new_balance":"6375.86", + "value":"-2.31" + } + }, + { + "id":"25e62d33-c0fd-4b27-8053-e10079a4510c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T03:33:56.303Z", + "completed":"2017-01-10T03:33:56.303Z", + "new_balance":"6368.16", + "value":"-7.70" + } + }, + { + "id":"05db0f58-6e5c-4af9-9988-1a2b235a0524", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T10:41:29.226Z", + "completed":"2017-01-10T10:41:29.226Z", + "new_balance":"6363.63", + "value":"-4.53" + } + }, + { + "id":"a9808a9d-5dd7-4c31-a179-604713abac63", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T04:10:07.169Z", + "completed":"2017-01-11T04:10:07.169Z", + "new_balance":"6363.16", + "value":"-0.47" + } + }, + { + "id":"2bb3f529-f269-48a8-9eda-c9bf518fa277", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T10:35:54.517Z", + "completed":"2017-01-11T10:35:54.517Z", + "new_balance":"6372.15", + "value":"8.99" + } + }, + { + "id":"5d9ac3a8-08ff-44a1-8ae8-dc9165276352", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T13:22:21.834Z", + "completed":"2017-01-11T13:22:21.834Z", + "new_balance":"6366.67", + "value":"-5.48" + } + }, + { + "id":"0313fd36-0666-40e2-ba69-530a2636086a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T12:37:57.648Z", + "completed":"2017-01-12T12:37:57.648Z", + "new_balance":"6365.86", + "value":"-0.81" + } + }, + { + "id":"ee968f96-124f-4120-a5f0-94b62cdba3f7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T07:05:59.190Z", + "completed":"2017-01-15T07:05:59.190Z", + "new_balance":"6363.43", + "value":"-2.43" + } + }, + { + "id":"0f376fbd-4b78-46c2-9ff8-aa20c94a8276", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T19:58:51.696Z", + "completed":"2017-01-16T19:58:51.696Z", + "new_balance":"6360.13", + "value":"-3.30" + } + }, + { + "id":"1fed7a10-3f22-4c9d-999d-54f616497639", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T23:54:09.853Z", + "completed":"2017-01-17T23:54:09.853Z", + "new_balance":"6358.56", + "value":"-1.57" + } + }, + { + "id":"afe1b4f2-4f79-4cf6-b51c-0d7100a3278f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T18:04:04.932Z", + "completed":"2017-01-20T18:04:04.932Z", + "new_balance":"6358.04", + "value":"-0.52" + } + }, + { + "id":"450e0bd7-32e5-4429-a600-460b4aa775df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T22:49:33.472Z", + "completed":"2017-01-21T22:49:33.472Z", + "new_balance":"6354.32", + "value":"-3.72" + } + }, + { + "id":"5fa6bad9-c0b7-4643-9f1f-0a5757354c4f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T21:41:17.704Z", + "completed":"2017-01-23T21:41:17.704Z", + "new_balance":"6331.96", + "value":"-22.36" + } + }, + { + "id":"764b1527-72a1-4b98-963d-a844435a3b20", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T20:43:35.800Z", + "completed":"2017-02-01T20:43:35.800Z", + "new_balance":"6472.94", + "value":"140.98" + } + }, + { + "id":"b26dce8a-73dd-431f-a004-613e8454e44c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T00:19:59.025Z", + "completed":"2017-02-03T00:19:59.025Z", + "new_balance":"6459.84", + "value":"-13.10" + } + }, + { + "id":"fda74a67-0bd5-4b20-b59a-7561d088d360", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T13:33:15.666Z", + "completed":"2017-02-03T13:33:15.666Z", + "new_balance":"6428.12", + "value":"-31.72" + } + }, + { + "id":"8f85c8cb-44f3-4b0b-845f-d8f67541a68b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T10:08:17.791Z", + "completed":"2017-02-04T10:08:17.791Z", + "new_balance":"6426.80", + "value":"-1.32" + } + }, + { + "id":"74700471-5dd7-41ba-b5b8-de4ce8b53feb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T00:16:44.771Z", + "completed":"2017-02-05T00:16:44.771Z", + "new_balance":"6426.13", + "value":"-0.67" + } + }, + { + "id":"186576a4-d0ab-45a1-b2f9-e3caa065a74c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:32:43.164Z", + "completed":"2017-02-06T14:32:43.164Z", + "new_balance":"6423.94", + "value":"-2.19" + } + }, + { + "id":"3a28f536-216f-4552-9a34-da4d7f28305d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T05:15:38.844Z", + "completed":"2017-02-07T05:15:38.844Z", + "new_balance":"6419.37", + "value":"-4.57" + } + }, + { + "id":"13e0335e-6b46-49f0-a994-e536b94c2618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T13:50:52.441Z", + "completed":"2017-02-07T13:50:52.441Z", + "new_balance":"6411.67", + "value":"-7.70" + } + }, + { + "id":"d9b27546-9122-420a-beb3-b7075e401bd4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:56:57.782Z", + "completed":"2017-02-07T20:56:57.782Z", + "new_balance":"6409.36", + "value":"-2.31" + } + }, + { + "id":"6f9f23ee-5c68-47ed-8297-0adaa92957e2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T12:31:36.273Z", + "completed":"2017-02-08T12:31:36.273Z", + "new_balance":"6405.22", + "value":"-4.14" + } + }, + { + "id":"9ff23716-ca0e-4ab0-a4dc-8b558354d358", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T23:36:45.374Z", + "completed":"2017-02-09T23:36:45.374Z", + "new_balance":"6402.82", + "value":"-2.40" + } + }, + { + "id":"7f2c93a5-c511-46d0-98a4-26467a8d90b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T23:32:39.990Z", + "completed":"2017-02-10T23:32:39.990Z", + "new_balance":"6402.30", + "value":"-0.52" + } + }, + { + "id":"b2fc6875-043f-494d-b84d-45d28c399f19", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T18:26:59.830Z", + "completed":"2017-02-12T18:26:59.830Z", + "new_balance":"6399.42", + "value":"-2.88" + } + }, + { + "id":"cda6fdc5-31b2-491f-b04e-9fff1d3cbc31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T10:44:41.341Z", + "completed":"2017-02-14T10:44:41.341Z", + "new_balance":"6397.11", + "value":"-2.31" + } + }, + { + "id":"aa96c582-ea96-42e4-ad04-94c0bdba9415", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T08:59:46.313Z", + "completed":"2017-02-16T08:59:46.313Z", + "new_balance":"6392.50", + "value":"-4.61" + } + }, + { + "id":"368b55d9-1b0a-43fc-ab98-32bf28bc14bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T15:15:23.695Z", + "completed":"2017-02-16T15:15:23.695Z", + "new_balance":"6392.03", + "value":"-0.47" + } + }, + { + "id":"8130c5e2-44cd-4f4d-b903-c2d1efcd3588", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T11:58:26.128Z", + "completed":"2017-02-18T11:58:26.128Z", + "new_balance":"6391.44", + "value":"-0.59" + } + }, + { + "id":"db7de792-fd36-4aa8-b7dc-7c2e674cfc0a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T16:01:09.489Z", + "completed":"2017-02-21T16:01:09.489Z", + "new_balance":"6402.84", + "value":"11.40" + } + }, + { + "id":"2bdb09ce-ce0f-4593-8c93-f7c2fd7d9d71", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T19:21:55.996Z", + "completed":"2017-02-21T19:21:55.996Z", + "new_balance":"6399.12", + "value":"-3.72" + } + }, + { + "id":"ea19f236-2a58-4b60-b81c-47844e26a6d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:38:45.216Z", + "completed":"2017-02-27T17:38:45.216Z", + "new_balance":"6376.76", + "value":"-22.36" + } + }, + { + "id":"409bc6ae-7305-43a9-87f8-1e4210659437", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T16:01:41.521Z", + "completed":"2017-03-01T16:01:41.521Z", + "new_balance":"6517.74", + "value":"140.98" + } + }, + { + "id":"9e90048d-7b9a-47e5-92ff-a7c3288baa2b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T19:13:15.602Z", + "completed":"2017-03-03T19:13:15.602Z", + "new_balance":"6486.02", + "value":"-31.72" + } + }, + { + "id":"5b672762-795e-4344-a2e4-41f74b1ec597", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:37:35.319Z", + "completed":"2017-03-04T11:37:35.319Z", + "new_balance":"6482.72", + "value":"-3.30" + } + }, + { + "id":"e6b9d15a-1338-4488-a3c3-6aed26aee596", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:01:35.199Z", + "completed":"2017-03-04T16:01:35.199Z", + "new_balance":"6480.67", + "value":"-2.05" + } + }, + { + "id":"1a91e73f-521e-40c6-9065-3ba84c2ef150", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T16:23:05.130Z", + "completed":"2017-03-04T16:23:05.130Z", + "new_balance":"6477.21", + "value":"-3.46" + } + }, + { + "id":"2a9cf6d8-ab57-41ad-bfd4-e5efc307f278", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T18:01:45.704Z", + "completed":"2017-03-04T18:01:45.704Z", + "new_balance":"6472.60", + "value":"-4.61" + } + }, + { + "id":"3f7cf21e-9d0e-4a9d-8b85-88f087011ddf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T02:24:08.780Z", + "completed":"2017-03-05T02:24:08.780Z", + "new_balance":"6471.30", + "value":"-1.30" + } + }, + { + "id":"e393c7d6-cd2b-412d-8fb4-8093ff108943", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T11:49:23.456Z", + "completed":"2017-03-05T11:49:23.456Z", + "new_balance":"6463.60", + "value":"-7.70" + } + }, + { + "id":"86db14ea-070b-45b5-90bd-bcd377a26ab4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T16:35:38.141Z", + "completed":"2017-03-05T16:35:38.141Z", + "new_balance":"6463.13", + "value":"-0.47" + } + }, + { + "id":"a779e694-49e6-48de-b6cf-15468c5e24f2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T18:25:01.252Z", + "completed":"2017-03-05T18:25:01.252Z", + "new_balance":"6456.38", + "value":"-6.75" + } + }, + { + "id":"e08cb510-7477-46ce-bc64-c6ffb34b56cb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T10:21:27.061Z", + "completed":"2017-03-06T10:21:27.061Z", + "new_balance":"6448.64", + "value":"-7.74" + } + }, + { + "id":"3704fd19-f9f9-4944-bad7-99e8329912af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T22:35:08.587Z", + "completed":"2017-03-06T22:35:08.587Z", + "new_balance":"6442.00", + "value":"-6.64" + } + }, + { + "id":"4d422175-d12e-42ab-a38f-1e122004632d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T06:57:11.057Z", + "completed":"2017-03-07T06:57:11.057Z", + "new_balance":"6441.20", + "value":"-0.80" + } + }, + { + "id":"89ac05d1-57d6-428f-afea-e85fc606b101", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T22:07:15.330Z", + "completed":"2017-03-07T22:07:15.330Z", + "new_balance":"6440.73", + "value":"-0.47" + } + }, + { + "id":"0acf8be8-de13-41a0-a791-181483b1b61c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T20:33:47.034Z", + "completed":"2017-03-08T20:33:47.034Z", + "new_balance":"6439.96", + "value":"-0.77" + } + }, + { + "id":"fe9909da-d9ea-4a7b-89be-ae4d6725bda5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T21:41:05.804Z", + "completed":"2017-03-08T21:41:05.804Z", + "new_balance":"6439.16", + "value":"-0.80" + } + }, + { + "id":"7c7deae4-0a52-4c50-8789-6a492cdb748f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T07:09:32.336Z", + "completed":"2017-03-10T07:09:32.336Z", + "new_balance":"6436.45", + "value":"-2.71" + } + }, + { + "id":"c5d60fed-2b19-4ad4-9190-67c3236ed07b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T00:42:58.453Z", + "completed":"2017-03-11T00:42:58.453Z", + "new_balance":"6434.85", + "value":"-1.60" + } + }, + { + "id":"915cbad5-7935-4614-acfc-0605a38ae80a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T14:53:40.630Z", + "completed":"2017-03-11T14:53:40.630Z", + "new_balance":"6434.38", + "value":"-0.47" + } + }, + { + "id":"66a613ff-ff13-4df7-bdb7-19385ce5fe53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T18:54:31.924Z", + "completed":"2017-03-11T18:54:31.924Z", + "new_balance":"6431.66", + "value":"-2.72" + } + }, + { + "id":"4992fd03-6151-4f3f-b3ef-8419a20c7213", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T02:34:02.287Z", + "completed":"2017-03-12T02:34:02.287Z", + "new_balance":"6425.50", + "value":"-6.16" + } + }, + { + "id":"7a7e6379-f7cc-4393-aec0-515b0fc84d06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T06:56:04.780Z", + "completed":"2017-03-12T06:56:04.780Z", + "new_balance":"6415.35", + "value":"-10.15" + } + }, + { + "id":"6f5a1ca4-1442-40e4-a572-c3a6b9bacced", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:12:12.242Z", + "completed":"2017-03-12T14:12:12.242Z", + "new_balance":"6412.76", + "value":"-2.59" + } + }, + { + "id":"ba6ca444-4a18-4f76-85e8-e01f0070332a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T15:49:03.045Z", + "completed":"2017-03-12T15:49:03.045Z", + "new_balance":"6412.29", + "value":"-0.47" + } + }, + { + "id":"338fa275-66b0-4cf9-9481-043422401058", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T11:36:37.681Z", + "completed":"2017-03-13T11:36:37.681Z", + "new_balance":"6409.71", + "value":"-2.58" + } + }, + { + "id":"7f898545-691a-426b-8e56-8f26d32fed2b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T20:48:43.480Z", + "completed":"2017-03-13T20:48:43.480Z", + "new_balance":"6409.24", + "value":"-0.47" + } + }, + { + "id":"a35973c4-5672-4fe1-9229-8e1e6826c5f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T03:11:39.138Z", + "completed":"2017-03-15T03:11:39.138Z", + "new_balance":"6405.12", + "value":"-4.12" + } + }, + { + "id":"457d829f-93b1-4a32-86b6-8732e2d894f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T23:48:44.850Z", + "completed":"2017-03-15T23:48:44.850Z", + "new_balance":"6400.20", + "value":"-4.92" + } + }, + { + "id":"12679808-b83b-4d0d-b464-d5510db29b24", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T06:26:16.916Z", + "completed":"2017-03-17T06:26:16.916Z", + "new_balance":"6395.81", + "value":"-4.39" + } + }, + { + "id":"6e9968ba-b4f6-404a-8344-350aed0a246a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T20:35:12.406Z", + "completed":"2017-03-18T20:35:12.406Z", + "new_balance":"6386.20", + "value":"-9.61" + } + }, + { + "id":"e7a90d60-8da1-4242-bf13-f1d1efd05df0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T00:07:41.038Z", + "completed":"2017-03-20T00:07:41.038Z", + "new_balance":"6373.84", + "value":"-12.36" + } + }, + { + "id":"a296208d-d760-49fe-8b1c-b10a528d1c87", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T09:02:51.390Z", + "completed":"2017-03-22T09:02:51.390Z", + "new_balance":"6370.37", + "value":"-3.47" + } + }, + { + "id":"59915253-3a39-42c2-8180-de656706b261", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T05:40:55.696Z", + "completed":"2017-03-25T05:40:55.696Z", + "new_balance":"6369.22", + "value":"-1.15" + } + }, + { + "id":"101d1d06-ebf4-47bd-a9c5-54ffabaade1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T22:50:49.483Z", + "completed":"2017-03-25T22:50:49.483Z", + "new_balance":"6368.75", + "value":"-0.47" + } + }, + { + "id":"921c88fc-20e9-4d75-b88f-6cacc6331619", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T10:02:28.916Z", + "completed":"2017-03-26T10:02:28.916Z", + "new_balance":"6367.40", + "value":"-1.35" + } + }, + { + "id":"8975a087-7b6f-49a2-93fc-2f4c25f5438a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T23:29:17.418Z", + "completed":"2017-03-26T23:29:17.418Z", + "new_balance":"6365.01", + "value":"-2.39" + } + }, + { + "id":"bba106b0-8af2-4cfe-b091-7b955b33b55d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T07:47:09.002Z", + "completed":"2017-03-27T07:47:09.002Z", + "new_balance":"6363.81", + "value":"-1.20" + } + }, + { + "id":"d37a5fe0-9833-457d-8c5a-bf261cf2a237", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T14:12:57.134Z", + "completed":"2017-03-28T14:12:57.134Z", + "new_balance":"6360.09", + "value":"-3.72" + } + }, + { + "id":"41d27c15-7786-4911-a742-a48662cf1526", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T09:42:57.688Z", + "completed":"2017-03-31T09:42:57.688Z", + "new_balance":"6337.73", + "value":"-22.36" + } + }, + { + "id":"4199334d-5d30-42da-bdca-7149304d9447", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T08:04:54.978Z", + "completed":"2017-04-01T08:04:54.978Z", + "new_balance":"6520.43", + "value":"182.70" + } + }, + { + "id":"5cc62ca2-2ef2-4a1f-9656-f480c3d95196", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T13:53:00.578Z", + "completed":"2017-04-01T13:53:00.578Z", + "new_balance":"6661.41", + "value":"140.98" + } + }, + { + "id":"d803a1fd-f2e7-4238-bcdb-7042aef51d17", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T16:16:10.960Z", + "completed":"2017-04-01T16:16:10.960Z", + "new_balance":"6629.69", + "value":"-31.72" + } + }, + { + "id":"8e986a15-a1e3-4858-a8c5-0597f93a260b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T01:04:58.552Z", + "completed":"2017-04-03T01:04:58.552Z", + "new_balance":"6629.02", + "value":"-0.67" + } + }, + { + "id":"bacaf0f8-6b0a-40eb-b848-a62b1827728b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T18:53:48.251Z", + "completed":"2017-04-03T18:53:48.251Z", + "new_balance":"6627.28", + "value":"-1.74" + } + }, + { + "id":"cf7c0669-f031-42a5-a6f3-37f02b69e952", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:28:11.807Z", + "completed":"2017-04-03T23:28:11.807Z", + "new_balance":"6622.46", + "value":"-4.82" + } + }, + { + "id":"0e83efb0-4afe-4211-81db-802e2e2070e9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:42:22.866Z", + "completed":"2017-04-05T17:42:22.866Z", + "new_balance":"6621.94", + "value":"-0.52" + } + }, + { + "id":"d1cc7077-7bf7-4981-906e-24ab82fc20df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T18:07:39.340Z", + "completed":"2017-04-05T18:07:39.340Z", + "new_balance":"6620.54", + "value":"-1.40" + } + }, + { + "id":"693ece2f-29f3-457c-b1f0-2fecbd7307c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T07:46:22.160Z", + "completed":"2017-04-06T07:46:22.160Z", + "new_balance":"6618.94", + "value":"-1.60" + } + }, + { + "id":"6391f530-5976-4dca-b04f-b796c1622304", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T02:23:39.490Z", + "completed":"2017-04-09T02:23:39.490Z", + "new_balance":"6616.35", + "value":"-2.59" + } + }, + { + "id":"e9c42513-e149-4687-b88d-4501fe90edbf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:26:09.929Z", + "completed":"2017-04-10T14:26:09.929Z", + "new_balance":"6614.67", + "value":"-1.68" + } + }, + { + "id":"b650e32d-d864-4475-9259-08c3e14aa73f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T12:22:07.277Z", + "completed":"2017-04-11T12:22:07.277Z", + "new_balance":"6612.36", + "value":"-2.31" + } + }, + { + "id":"fb824c74-b419-4343-b3eb-eabccbe3ce34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T20:56:48.745Z", + "completed":"2017-04-11T20:56:48.745Z", + "new_balance":"6610.49", + "value":"-1.87" + } + }, + { + "id":"628059a8-bdb4-49c2-bfe4-f9c194cc4618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T07:38:26.570Z", + "completed":"2017-04-13T07:38:26.570Z", + "new_balance":"6602.79", + "value":"-7.70" + } + }, + { + "id":"c9064e01-9eb9-49d7-b656-458e0c899b4c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T23:45:12.818Z", + "completed":"2017-04-13T23:45:12.818Z", + "new_balance":"6596.66", + "value":"-6.13" + } + }, + { + "id":"8d945ca3-46e4-4aae-a130-a11687d8c619", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T18:57:52.031Z", + "completed":"2017-04-15T18:57:52.031Z", + "new_balance":"6592.13", + "value":"-4.53" + } + }, + { + "id":"3c73d83c-7dac-4718-93b9-539962cac742", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T00:54:35.609Z", + "completed":"2017-04-16T00:54:35.609Z", + "new_balance":"6591.66", + "value":"-0.47" + } + }, + { + "id":"35483552-3a21-4e3f-aa12-7212abd67a0a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T15:25:21.854Z", + "completed":"2017-04-16T15:25:21.854Z", + "new_balance":"6590.85", + "value":"-0.81" + } + }, + { + "id":"78d6a0bf-97c8-43c5-8b85-0db571f0d1af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T04:03:35.720Z", + "completed":"2017-04-18T04:03:35.720Z", + "new_balance":"6585.37", + "value":"-5.48" + } + }, + { + "id":"f3797f6c-20ec-46a2-a305-78031a71d1e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T16:56:45.887Z", + "completed":"2017-04-23T16:56:45.887Z", + "new_balance":"6582.94", + "value":"-2.43" + } + }, + { + "id":"3c294513-b5e9-459c-99c1-57606ce243b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T10:57:49.421Z", + "completed":"2017-04-24T10:57:49.421Z", + "new_balance":"6581.37", + "value":"-1.57" + } + }, + { + "id":"e6c8627a-0dc0-49bc-8850-69198d458b1d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T23:58:22.369Z", + "completed":"2017-04-24T23:58:22.369Z", + "new_balance":"6578.07", + "value":"-3.30" + } + }, + { + "id":"09383295-69ad-4d3e-bfc6-87ea72d8e496", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T01:32:33.998Z", + "completed":"2017-04-26T01:32:33.998Z", + "new_balance":"6577.55", + "value":"-0.52" + } + }, + { + "id":"2a21bcfa-10c3-4c81-a1c8-0b7d890e3079", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T09:31:40.558Z", + "completed":"2017-04-28T09:31:40.558Z", + "new_balance":"6573.83", + "value":"-3.72" + } + }, + { + "id":"77877f25-acb6-4454-b6eb-8aed92bff391", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T18:47:20.550Z", + "completed":"2017-04-28T18:47:20.550Z", + "new_balance":"6551.47", + "value":"-22.36" + } + }, + { + "id":"e92254d8-6a33-4770-a137-c71a49f12c11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T07:12:01.859Z", + "completed":"2017-05-02T07:12:01.859Z", + "new_balance":"6550.15", + "value":"-1.32" + } + }, + { + "id":"9a0e6fa5-1340-47c1-b3e1-7c49b85c57f0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T14:20:27.311Z", + "completed":"2017-05-02T14:20:27.311Z", + "new_balance":"6537.05", + "value":"-13.10" + } + }, + { + "id":"93b806d5-92a1-43c2-a512-1ca8b75392c1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T21:04:37.290Z", + "completed":"2017-05-02T21:04:37.290Z", + "new_balance":"6505.33", + "value":"-31.72" + } + }, + { + "id":"63b43770-83dc-42fe-a38f-28db2e0528b6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T22:13:57.620Z", + "completed":"2017-05-02T22:13:57.620Z", + "new_balance":"6504.66", + "value":"-0.67" + } + }, + { + "id":"944f837f-271f-4fb5-9af3-4dc1284fb0a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T05:57:05.211Z", + "completed":"2017-05-06T05:57:05.211Z", + "new_balance":"6502.35", + "value":"-2.31" + } + }, + { + "id":"3d5eb40b-62c4-483d-96c4-8456e8aa954b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T06:36:36.100Z", + "completed":"2017-05-06T06:36:36.100Z", + "new_balance":"6500.16", + "value":"-2.19" + } + }, + { + "id":"fc711e8d-af2b-429a-a1fe-604a39067367", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T02:17:55.975Z", + "completed":"2017-05-07T02:17:55.975Z", + "new_balance":"6492.46", + "value":"-7.70" + } + }, + { + "id":"e4d974e1-ae13-46fc-8849-4d91564bbd21", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T09:13:56.802Z", + "completed":"2017-05-07T09:13:56.802Z", + "new_balance":"6487.89", + "value":"-4.57" + } + }, + { + "id":"d48d91b1-9928-4a20-b58d-b6a3008d09a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T15:33:54.751Z", + "completed":"2017-05-09T15:33:54.751Z", + "new_balance":"6628.87", + "value":"140.98" + } + }, + { + "id":"097de017-1d4e-41f7-a70a-821a93a34b64", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T13:09:30.182Z", + "completed":"2017-05-14T13:09:30.182Z", + "new_balance":"6626.47", + "value":"-2.40" + } + }, + { + "id":"3c38efe9-50c0-45c1-a6fe-ca6a50a92604", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T17:02:51.478Z", + "completed":"2017-05-14T17:02:51.478Z", + "new_balance":"6622.33", + "value":"-4.14" + } + }, + { + "id":"2b648cb1-5be8-4c64-8730-ed9238f12525", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T03:41:55.634Z", + "completed":"2017-05-16T03:41:55.634Z", + "new_balance":"6621.81", + "value":"-0.52" + } + }, + { + "id":"266e4fff-b6c2-48ff-9d63-b19b820b4887", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T23:14:31.197Z", + "completed":"2017-05-21T23:14:31.197Z", + "new_balance":"6618.93", + "value":"-2.88" + } + }, + { + "id":"ec6d28bd-ac50-4de1-832f-e0ae83e646b0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T18:45:27.770Z", + "completed":"2017-05-23T18:45:27.770Z", + "new_balance":"6616.62", + "value":"-2.31" + } + }, + { + "id":"915084e5-dbd9-4285-a8e4-3127646f0cb6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T19:25:11.645Z", + "completed":"2017-05-23T19:25:11.645Z", + "new_balance":"6616.15", + "value":"-0.47" + } + }, + { + "id":"6dea2eb6-93e0-4b72-844d-12b8a9c086f6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T01:04:38.636Z", + "completed":"2017-05-24T01:04:38.636Z", + "new_balance":"6611.54", + "value":"-4.61" + } + }, + { + "id":"084c0387-b6f8-4856-9cce-63bd8ddb06ef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T10:18:26.639Z", + "completed":"2017-05-27T10:18:26.639Z", + "new_balance":"6610.95", + "value":"-0.59" + } + }, + { + "id":"741520e0-aa9f-4d43-91ae-4517bd5a2840", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T18:22:07.098Z", + "completed":"2017-05-30T18:22:07.098Z", + "new_balance":"6607.23", + "value":"-3.72" + } + }, + { + "id":"d2491276-4936-4649-b158-325ed69498d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T19:27:45.084Z", + "completed":"2017-05-30T19:27:45.084Z", + "new_balance":"6584.87", + "value":"-22.36" + } + }, + { + "id":"4fed5f25-0b66-474e-a9b8-b80360131747", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T15:55:17.871Z", + "completed":"2017-06-01T15:55:17.871Z", + "new_balance":"6725.85", + "value":"140.98" + } + }, + { + "id":"955c81c1-8713-48a4-a13f-e2c583dfc9f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T23:12:54.850Z", + "completed":"2017-06-01T23:12:54.850Z", + "new_balance":"6694.13", + "value":"-31.72" + } + }, + { + "id":"5c089348-7490-4c3a-a444-b59905eb1eb9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:24:52.030Z", + "completed":"2017-06-04T19:24:52.030Z", + "new_balance":"6690.67", + "value":"-3.46" + } + }, + { + "id":"7cf74877-84bb-44ff-9344-ded8206ab04c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T23:57:54.102Z", + "completed":"2017-06-04T23:57:54.102Z", + "new_balance":"6688.62", + "value":"-2.05" + } + }, + { + "id":"fe4e6880-c4df-4f24-bd70-a8371e2f5d34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T14:31:18.103Z", + "completed":"2017-06-11T14:31:18.103Z", + "new_balance":"6684.01", + "value":"-4.61" + } + }, + { + "id":"839fdb47-4cd9-47d1-a95b-2bc8611fa857", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T21:18:09.461Z", + "completed":"2017-06-11T21:18:09.461Z", + "new_balance":"6680.71", + "value":"-3.30" + } + }, + { + "id":"ea475d9b-74d9-4f4c-b7a9-9ede238f4384", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T08:56:20.315Z", + "completed":"2017-06-12T08:56:20.315Z", + "new_balance":"6679.41", + "value":"-1.30" + } + }, + { + "id":"2c3a36a5-dd0d-444e-a160-5984608016b3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T09:19:13.733Z", + "completed":"2017-06-12T09:19:13.733Z", + "new_balance":"6678.94", + "value":"-0.47" + } + }, + { + "id":"a4f33022-7c8a-45a8-a19f-f81915810283", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T18:43:24.222Z", + "completed":"2017-06-12T18:43:24.222Z", + "new_balance":"6671.24", + "value":"-7.70" + } + }, + { + "id":"9b4f7cf3-ab3f-4eba-a395-14a8b80e6961", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T03:34:14.701Z", + "completed":"2017-06-13T03:34:14.701Z", + "new_balance":"6664.60", + "value":"-6.64" + } + }, + { + "id":"181a3e1c-7758-459d-ac59-ce1470c1f15a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T18:42:50.324Z", + "completed":"2017-06-13T18:42:50.324Z", + "new_balance":"6656.86", + "value":"-7.74" + } + }, + { + "id":"9db07a8f-25bb-496c-aa67-6347bd2b1a38", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T18:52:36.882Z", + "completed":"2017-06-13T18:52:36.882Z", + "new_balance":"6650.11", + "value":"-6.75" + } + }, + { + "id":"c40c1189-864a-42cd-9964-40acdc16ef8d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T07:55:10.451Z", + "completed":"2017-06-14T07:55:10.451Z", + "new_balance":"6649.31", + "value":"-0.80" + } + }, + { + "id":"0ca7c3f2-3d9a-4f6d-bc28-f06ff7758c4d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T15:10:09.412Z", + "completed":"2017-06-14T15:10:09.412Z", + "new_balance":"6648.51", + "value":"-0.80" + } + }, + { + "id":"9c3bd188-dbd5-41ad-8fa8-aa1973a58631", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T22:21:10.116Z", + "completed":"2017-06-14T22:21:10.116Z", + "new_balance":"6648.04", + "value":"-0.47" + } + }, + { + "id":"d97e78d9-b74f-4d52-8e09-286ea6128561", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T12:08:06.272Z", + "completed":"2017-06-15T12:08:06.272Z", + "new_balance":"6645.33", + "value":"-2.71" + } + }, + { + "id":"ca4e4a4d-6797-41b8-939f-ac6177238190", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T13:06:11.268Z", + "completed":"2017-06-15T13:06:11.268Z", + "new_balance":"6644.56", + "value":"-0.77" + } + }, + { + "id":"199110e1-0cea-40be-8610-53a5e0b8f65f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T18:40:33.914Z", + "completed":"2017-06-15T18:40:33.914Z", + "new_balance":"6644.09", + "value":"-0.47" + } + }, + { + "id":"38a5fe14-57e1-4351-adb3-725bef91e8e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T13:13:21.288Z", + "completed":"2017-06-16T13:13:21.288Z", + "new_balance":"6641.37", + "value":"-2.72" + } + }, + { + "id":"5779c60c-ab26-4d53-a7f0-1adddeb29ddc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T12:59:32.062Z", + "completed":"2017-06-17T12:59:32.062Z", + "new_balance":"6639.77", + "value":"-1.60" + } + }, + { + "id":"5ebc8dc8-da82-449f-8788-0546c094cf3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T00:29:58.919Z", + "completed":"2017-06-18T00:29:58.919Z", + "new_balance":"6637.19", + "value":"-2.58" + } + }, + { + "id":"3e895fb9-757f-4f4a-a2c4-ce6f5f53dd1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T01:38:38.145Z", + "completed":"2017-06-18T01:38:38.145Z", + "new_balance":"6634.60", + "value":"-2.59" + } + }, + { + "id":"5aa3cd2a-6356-4688-8c7d-4a4955cdd742", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T09:56:46.922Z", + "completed":"2017-06-18T09:56:46.922Z", + "new_balance":"6624.45", + "value":"-10.15" + } + }, + { + "id":"7f9d5e03-da20-45a4-be14-e7e8379c2c56", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T12:37:44.386Z", + "completed":"2017-06-18T12:37:44.386Z", + "new_balance":"6623.98", + "value":"-0.47" + } + }, + { + "id":"04342618-5a40-4d9d-a1d7-88e9ccd36a57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T15:11:04.144Z", + "completed":"2017-06-18T15:11:04.144Z", + "new_balance":"6623.51", + "value":"-0.47" + } + }, + { + "id":"d61e4ed6-ce0d-4cc4-8b90-0dd8ed5bd85e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:51:28.733Z", + "completed":"2017-06-18T19:51:28.733Z", + "new_balance":"6617.35", + "value":"-6.16" + } + }, + { + "id":"a9cc9054-e285-4dd4-aeab-92141d85c48c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T08:01:03.749Z", + "completed":"2017-06-19T08:01:03.749Z", + "new_balance":"6613.23", + "value":"-4.12" + } + }, + { + "id":"8ef25efe-c725-47c1-a3d7-ca691c2caf79", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T08:36:13.212Z", + "completed":"2017-06-19T08:36:13.212Z", + "new_balance":"6608.31", + "value":"-4.92" + } + }, + { + "id":"6b898d69-6abd-4f63-86f8-27a53f9a3ac9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T13:47:09.315Z", + "completed":"2017-06-19T13:47:09.315Z", + "new_balance":"6603.92", + "value":"-4.39" + } + }, + { + "id":"96316114-2b38-45e3-b9f1-585cb1cabd1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T04:10:54.003Z", + "completed":"2017-06-21T04:10:54.003Z", + "new_balance":"6591.56", + "value":"-12.36" + } + }, + { + "id":"6a15aca6-c568-4d25-a1d4-767057df9bab", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T21:23:33.537Z", + "completed":"2017-06-21T21:23:33.537Z", + "new_balance":"6581.95", + "value":"-9.61" + } + }, + { + "id":"3a8cc3b0-b40b-4da7-800c-894bdb3231ac", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T01:41:07.899Z", + "completed":"2017-06-22T01:41:07.899Z", + "new_balance":"6580.80", + "value":"-1.15" + } + }, + { + "id":"017657ae-ebe6-41cf-9352-d6103376436c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T21:55:29.141Z", + "completed":"2017-06-22T21:55:29.141Z", + "new_balance":"6577.33", + "value":"-3.47" + } + }, + { + "id":"77aa93ee-ac56-4422-95e8-1c662bbb8672", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T22:16:00.699Z", + "completed":"2017-06-22T22:16:00.699Z", + "new_balance":"6576.86", + "value":"-0.47" + } + }, + { + "id":"071d5ddc-56a0-4f41-9c10-6d3d58730300", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T20:58:44.833Z", + "completed":"2017-06-23T20:58:44.833Z", + "new_balance":"6575.51", + "value":"-1.35" + } + }, + { + "id":"b8ac8cf4-ca86-4d48-b618-5cd1f8eae946", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T02:15:56.653Z", + "completed":"2017-06-24T02:15:56.653Z", + "new_balance":"6573.12", + "value":"-2.39" + } + }, + { + "id":"6465e921-fc90-408a-88c3-8db7380856b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T05:53:59.767Z", + "completed":"2017-06-26T05:53:59.767Z", + "new_balance":"6571.92", + "value":"-1.20" + } + }, + { + "id":"b00786aa-9b30-44c7-b828-934efcaa7e82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T10:40:14.606Z", + "completed":"2017-06-30T10:40:14.606Z", + "new_balance":"6568.20", + "value":"-3.72" + } + }, + { + "id":"18a3ae94-b3aa-490b-a86c-723fe545e71a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T17:16:21.193Z", + "completed":"2017-06-30T17:16:21.193Z", + "new_balance":"6545.84", + "value":"-22.36" + } + }, + { + "id":"3c352bad-2b33-4c8d-9b19-c9ccc2b0a811", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T02:05:05.881Z", + "completed":"2017-07-01T02:05:05.881Z", + "new_balance":"6728.54", + "value":"182.70" + } + }, + { + "id":"8bf3b8e0-bc56-4dd7-92ab-a3beded72783", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T16:38:58.375Z", + "completed":"2017-07-01T16:38:58.375Z", + "new_balance":"6869.52", + "value":"140.98" + } + }, + { + "id":"ba68865f-9f1a-43f0-9dbd-f5d6d462a99d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T04:48:22.418Z", + "completed":"2017-07-03T04:48:22.418Z", + "new_balance":"6837.80", + "value":"-31.72" + } + }, + { + "id":"7289d4e9-d5fa-41da-b91a-19a4ebfa367a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T04:26:54.536Z", + "completed":"2017-07-04T04:26:54.536Z", + "new_balance":"6832.98", + "value":"-4.82" + } + }, + { + "id":"d88a02d6-890c-47b1-973f-2776679b8623", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T14:18:05.403Z", + "completed":"2017-07-04T14:18:05.403Z", + "new_balance":"6832.31", + "value":"-0.67" + } + }, + { + "id":"e3dd3a61-ca19-4de4-9b0a-bce84553a78c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T14:22:03.252Z", + "completed":"2017-07-04T14:22:03.252Z", + "new_balance":"6830.57", + "value":"-1.74" + } + }, + { + "id":"5f657787-5cdb-40e3-9610-358effec3a1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T17:33:27.646Z", + "completed":"2017-07-05T17:33:27.646Z", + "new_balance":"6829.17", + "value":"-1.40" + } + }, + { + "id":"37ba35b3-3b8b-44fd-aee1-ad1ff12ac049", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T11:19:18.584Z", + "completed":"2017-07-07T11:19:18.584Z", + "new_balance":"6828.65", + "value":"-0.52" + } + }, + { + "id":"a38041b1-e453-4e26-bfc0-325bdf07c3ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T06:15:42.585Z", + "completed":"2017-07-11T06:15:42.585Z", + "new_balance":"6826.97", + "value":"-1.68" + } + }, + { + "id":"6b822d78-09b3-48cb-aae9-a88c0f6077f5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T07:50:21.527Z", + "completed":"2017-07-11T07:50:21.527Z", + "new_balance":"6825.37", + "value":"-1.60" + } + }, + { + "id":"79c1ab0d-710e-415e-a354-c1bfe17bdd47", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T08:59:21.148Z", + "completed":"2017-07-11T08:59:21.148Z", + "new_balance":"6822.78", + "value":"-2.59" + } + }, + { + "id":"28aa3a9e-5e40-47a5-ba4d-bc130beaece9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T18:27:51.501Z", + "completed":"2017-07-11T18:27:51.501Z", + "new_balance":"6820.91", + "value":"-1.87" + } + }, + { + "id":"67e15dd9-b4b1-4119-ac84-05a3daaa177e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T19:03:48.227Z", + "completed":"2017-07-11T19:03:48.227Z", + "new_balance":"6818.60", + "value":"-2.31" + } + }, + { + "id":"29e42613-d712-41aa-91a6-30c2427772b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T08:37:45.362Z", + "completed":"2017-07-13T08:37:45.362Z", + "new_balance":"6812.47", + "value":"-6.13" + } + }, + { + "id":"d3873a8b-2423-45f2-8c37-16c8acb1a9cc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T19:49:06.707Z", + "completed":"2017-07-13T19:49:06.707Z", + "new_balance":"6804.77", + "value":"-7.70" + } + }, + { + "id":"3d5b6849-83ef-4b1f-9318-278d6a766405", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T11:11:11.038Z", + "completed":"2017-07-16T11:11:11.038Z", + "new_balance":"6813.76", + "value":"8.99" + } + }, + { + "id":"008a6a90-a5d5-45ef-9f6d-cdb6df93e4fd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T23:44:27.283Z", + "completed":"2017-07-16T23:44:27.283Z", + "new_balance":"6809.23", + "value":"-4.53" + } + }, + { + "id":"e98382a4-b213-4c07-8a5d-896bb439e9ed", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T18:46:11.632Z", + "completed":"2017-07-17T18:46:11.632Z", + "new_balance":"6808.76", + "value":"-0.47" + } + }, + { + "id":"c58c6ead-35e8-4cd2-b46e-3e4e73dd3a65", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T22:22:54.671Z", + "completed":"2017-07-17T22:22:54.671Z", + "new_balance":"6807.95", + "value":"-0.81" + } + }, + { + "id":"6b64922f-0809-44ea-b49c-b9819fa6edf3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T08:18:44.082Z", + "completed":"2017-07-19T08:18:44.082Z", + "new_balance":"6802.47", + "value":"-5.48" + } + }, + { + "id":"a39c0556-785f-4d1d-ba41-e212fdb8f084", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T04:22:16.459Z", + "completed":"2017-07-21T04:22:16.459Z", + "new_balance":"6800.04", + "value":"-2.43" + } + }, + { + "id":"31ed990a-1a42-4e4f-b951-a3db395b47d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T15:40:39.057Z", + "completed":"2017-07-23T15:40:39.057Z", + "new_balance":"6796.74", + "value":"-3.30" + } + }, + { + "id":"1f7e5391-3ca2-4284-99cf-4c24a0d2bb62", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T16:03:44.267Z", + "completed":"2017-07-25T16:03:44.267Z", + "new_balance":"6795.17", + "value":"-1.57" + } + }, + { + "id":"0bdba098-9e1c-4cfb-923d-91182ef8240b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T19:27:57.862Z", + "completed":"2017-07-27T19:27:57.862Z", + "new_balance":"6794.65", + "value":"-0.52" + } + }, + { + "id":"87b95b84-9458-4c55-a3a9-b35db69d326c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T12:37:08.024Z", + "completed":"2017-07-28T12:37:08.024Z", + "new_balance":"6790.93", + "value":"-3.72" + } + }, + { + "id":"ab671f86-9345-4600-99d6-5b77fdc3f3fa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T22:38:28.891Z", + "completed":"2017-07-28T22:38:28.891Z", + "new_balance":"6768.57", + "value":"-22.36" + } + }, + { + "id":"f7bce4a8-1cfb-4b46-adbb-260bc4dc96cd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T17:02:27.327Z", + "completed":"2017-08-01T17:02:27.327Z", + "new_balance":"6909.55", + "value":"140.98" + } + }, + { + "id":"9f3f15b4-2517-4a0b-aa79-b19a1a80a562", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T03:21:39.242Z", + "completed":"2017-08-03T03:21:39.242Z", + "new_balance":"6896.45", + "value":"-13.10" + } + }, + { + "id":"56d93a95-8b6c-4078-a7b2-e51eb0c0d618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T08:43:05.742Z", + "completed":"2017-08-03T08:43:05.742Z", + "new_balance":"6864.73", + "value":"-31.72" + } + }, + { + "id":"95639d5c-bad1-4b74-884d-b09b3bde52a4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T05:26:19.294Z", + "completed":"2017-08-04T05:26:19.294Z", + "new_balance":"6863.41", + "value":"-1.32" + } + }, + { + "id":"e6dc1485-eee0-4663-a9b3-044b26a33059", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T04:23:11.865Z", + "completed":"2017-08-07T04:23:11.865Z", + "new_balance":"6862.74", + "value":"-0.67" + } + }, + { + "id":"52602e9d-1269-46e1-ab02-75675026d4e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T04:54:59.135Z", + "completed":"2017-08-07T04:54:59.135Z", + "new_balance":"6860.55", + "value":"-2.19" + } + }, + { + "id":"3057a155-7454-4dbb-a75f-e9f6be1aaf8b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T08:15:18.329Z", + "completed":"2017-08-07T08:15:18.329Z", + "new_balance":"6858.24", + "value":"-2.31" + } + }, + { + "id":"fc522572-8135-405f-8b98-5a0725a2a7fd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T02:29:38.180Z", + "completed":"2017-08-08T02:29:38.180Z", + "new_balance":"6850.54", + "value":"-7.70" + } + }, + { + "id":"aa31807f-dff7-4aff-8dce-f62b278d8fc2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T03:27:45.357Z", + "completed":"2017-08-08T03:27:45.357Z", + "new_balance":"6845.97", + "value":"-4.57" + } + }, + { + "id":"87ed0a51-f7a8-481e-bbf2-6469f9b5de4b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T07:49:54.526Z", + "completed":"2017-08-08T07:49:54.526Z", + "new_balance":"6841.83", + "value":"-4.14" + } + }, + { + "id":"22f90811-6a2c-4068-91dc-4fbf289671d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T17:30:51.494Z", + "completed":"2017-08-09T17:30:51.494Z", + "new_balance":"6839.43", + "value":"-2.40" + } + }, + { + "id":"e140dd55-bfb0-4168-8aaf-e61804006207", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T01:01:54.591Z", + "completed":"2017-08-11T01:01:54.591Z", + "new_balance":"6838.91", + "value":"-0.52" + } + }, + { + "id":"3b9879d2-a615-472a-b643-8042851df495", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T05:24:34.941Z", + "completed":"2017-08-14T05:24:34.941Z", + "new_balance":"6836.03", + "value":"-2.88" + } + }, + { + "id":"6ff46270-5731-48b4-9a34-c447494798a8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T12:05:28.678Z", + "completed":"2017-08-15T12:05:28.678Z", + "new_balance":"6833.72", + "value":"-2.31" + } + }, + { + "id":"4c52113e-4ae4-4abd-a7ce-c6dcafc136f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T11:42:17.181Z", + "completed":"2017-08-17T11:42:17.181Z", + "new_balance":"6833.25", + "value":"-0.47" + } + }, + { + "id":"efdab4aa-f938-4b98-a84f-f71bac4575eb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T17:02:23.258Z", + "completed":"2017-08-17T17:02:23.258Z", + "new_balance":"6828.64", + "value":"-4.61" + } + }, + { + "id":"afd50f61-7eeb-4ae5-8049-673c021db46e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T04:47:13.918Z", + "completed":"2017-08-19T04:47:13.918Z", + "new_balance":"6828.05", + "value":"-0.59" + } + }, + { + "id":"e9b9eeff-026c-4fd6-8e45-417879091c3c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T21:54:50.962Z", + "completed":"2017-08-25T21:54:50.962Z", + "new_balance":"6839.45", + "value":"11.40" + } + }, + { + "id":"3d187adc-a3af-423d-9ce6-a763e9af4caa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T05:41:26.153Z", + "completed":"2017-08-28T05:41:26.153Z", + "new_balance":"6817.09", + "value":"-22.36" + } + }, + { + "id":"b6e5807d-4151-4c4a-b3b7-502ed06bca8f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T11:28:36.042Z", + "completed":"2017-08-28T11:28:36.042Z", + "new_balance":"6813.37", + "value":"-3.72" + } + }, + { + "id":"b5c7f864-e113-4942-b4e1-428437b0a04d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T10:25:39.452Z", + "completed":"2017-09-01T10:25:39.452Z", + "new_balance":"6954.35", + "value":"140.98" + } + }, + { + "id":"6ce20365-6a65-42e4-a08b-f1791a3697ff", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T09:52:50.031Z", + "completed":"2017-09-03T09:52:50.031Z", + "new_balance":"6922.63", + "value":"-31.72" + } + }, + { + "id":"3d5f1af8-7a67-49bc-bb30-39244ab417b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T03:05:40.220Z", + "completed":"2017-09-04T03:05:40.220Z", + "new_balance":"6919.33", + "value":"-3.30" + } + }, + { + "id":"5da97fae-337b-445e-8d2d-c8d06283810b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T16:56:03.764Z", + "completed":"2017-09-04T16:56:03.764Z", + "new_balance":"6917.28", + "value":"-2.05" + } + }, + { + "id":"3349d463-b483-408d-a695-bb5e19c0ab82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T18:06:19.760Z", + "completed":"2017-09-04T18:06:19.760Z", + "new_balance":"6913.82", + "value":"-3.46" + } + }, + { + "id":"49adc6c5-1794-4c9f-a6e5-591f06443fbd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T22:22:51.034Z", + "completed":"2017-09-04T22:22:51.034Z", + "new_balance":"6909.21", + "value":"-4.61" + } + }, + { + "id":"e4c5031f-333d-4158-8289-1e4cebc8d42f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T00:12:32.353Z", + "completed":"2017-09-05T00:12:32.353Z", + "new_balance":"6902.46", + "value":"-6.75" + } + }, + { + "id":"06cff00b-ac03-44cc-873b-35e141db0dbe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T03:49:18.381Z", + "completed":"2017-09-05T03:49:18.381Z", + "new_balance":"6901.16", + "value":"-1.30" + } + }, + { + "id":"b274b089-176e-4d1e-8357-ca53454bccd5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T04:38:04.312Z", + "completed":"2017-09-05T04:38:04.312Z", + "new_balance":"6893.42", + "value":"-7.74" + } + }, + { + "id":"195fac4f-847b-4c69-87d4-e479bbee715a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T06:58:42.855Z", + "completed":"2017-09-05T06:58:42.855Z", + "new_balance":"6886.78", + "value":"-6.64" + } + }, + { + "id":"70d0e8a2-f476-44a5-a059-2a019f3046ac", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T09:01:50.873Z", + "completed":"2017-09-05T09:01:50.873Z", + "new_balance":"6886.31", + "value":"-0.47" + } + }, + { + "id":"0f9c64e5-288b-4b40-823b-9f46b010b6da", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T16:20:48.972Z", + "completed":"2017-09-05T16:20:48.972Z", + "new_balance":"6878.61", + "value":"-7.70" + } + }, + { + "id":"a295b4d5-8987-453b-93af-800e06fd0a4a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T07:24:38.743Z", + "completed":"2017-09-07T07:24:38.743Z", + "new_balance":"6877.84", + "value":"-0.77" + } + }, + { + "id":"a3642818-0e2c-42fa-983c-5457ce3f0eae", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T08:18:11.243Z", + "completed":"2017-09-07T08:18:11.243Z", + "new_balance":"6877.04", + "value":"-0.80" + } + }, + { + "id":"a282518f-2e40-4747-8b53-d62080e55a08", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T10:48:57.049Z", + "completed":"2017-09-07T10:48:57.049Z", + "new_balance":"6876.24", + "value":"-0.80" + } + }, + { + "id":"57bfc413-c4f6-4756-82e8-82d157fd005c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T11:36:24.270Z", + "completed":"2017-09-07T11:36:24.270Z", + "new_balance":"6875.77", + "value":"-0.47" + } + }, + { + "id":"da379363-9141-426c-948c-8e907e16d31a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T11:13:39.006Z", + "completed":"2017-09-10T11:13:39.006Z", + "new_balance":"6873.06", + "value":"-2.71" + } + }, + { + "id":"6c604e59-cf8b-41ec-be8f-1febd1a87240", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:57:09.093Z", + "completed":"2017-09-11T00:57:09.093Z", + "new_balance":"6871.46", + "value":"-1.60" + } + }, + { + "id":"7ae7cfee-b66c-4e3d-ad2a-f877185560d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:17:40.445Z", + "completed":"2017-09-11T08:17:40.445Z", + "new_balance":"6868.74", + "value":"-2.72" + } + }, + { + "id":"4957dac4-59e4-4144-8263-7d7fc9f42110", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T15:19:52.569Z", + "completed":"2017-09-11T15:19:52.569Z", + "new_balance":"6868.27", + "value":"-0.47" + } + }, + { + "id":"b883ee52-a8e4-4f60-8855-0078f69c46d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T01:36:36.385Z", + "completed":"2017-09-12T01:36:36.385Z", + "new_balance":"6865.68", + "value":"-2.59" + } + }, + { + "id":"5c3591e7-fd7b-4ce8-9190-4e93e7aa09d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T17:06:17.170Z", + "completed":"2017-09-12T17:06:17.170Z", + "new_balance":"6859.52", + "value":"-6.16" + } + }, + { + "id":"9185043c-a6e7-4835-a303-7633d21eeac1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T21:27:26.354Z", + "completed":"2017-09-12T21:27:26.354Z", + "new_balance":"6849.37", + "value":"-10.15" + } + }, + { + "id":"80e68c52-a1da-484b-8531-685b02c2d051", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:28:02.702Z", + "completed":"2017-09-12T23:28:02.702Z", + "new_balance":"6848.90", + "value":"-0.47" + } + }, + { + "id":"9f0386cb-0134-4a19-af69-12a089d94206", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T03:33:36.926Z", + "completed":"2017-09-13T03:33:36.926Z", + "new_balance":"6846.32", + "value":"-2.58" + } + }, + { + "id":"56f7b5b4-c88d-40b7-ba40-3062d2dd42a4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T08:57:25.220Z", + "completed":"2017-09-14T08:57:25.220Z", + "new_balance":"6845.85", + "value":"-0.47" + } + }, + { + "id":"c5e19139-9238-44f2-afb6-537a7818bad9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:49:41.518Z", + "completed":"2017-09-14T17:49:41.518Z", + "new_balance":"6840.93", + "value":"-4.92" + } + }, + { + "id":"4abc0f02-a059-4e41-b151-89b881373c39", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T05:58:01.316Z", + "completed":"2017-09-16T05:58:01.316Z", + "new_balance":"6836.81", + "value":"-4.12" + } + }, + { + "id":"6bce5258-0b11-4840-abcb-de3c1d9a2b2a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T00:03:37.985Z", + "completed":"2017-09-18T00:03:37.985Z", + "new_balance":"6832.42", + "value":"-4.39" + } + }, + { + "id":"abc51b1e-8174-49b8-9d93-960980bfd47f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T10:17:56.772Z", + "completed":"2017-09-21T10:17:56.772Z", + "new_balance":"6822.81", + "value":"-9.61" + } + }, + { + "id":"cad86d92-0017-4de1-a9d7-feff87cb0a34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T19:59:11.765Z", + "completed":"2017-09-21T19:59:11.765Z", + "new_balance":"6810.45", + "value":"-12.36" + } + }, + { + "id":"6a382e1b-2690-4ab5-a559-3f72f4d264e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T09:13:26.336Z", + "completed":"2017-09-23T09:13:26.336Z", + "new_balance":"6806.98", + "value":"-3.47" + } + }, + { + "id":"ad38093c-9071-4b25-8c1b-f9ee7eb29021", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T03:08:42.174Z", + "completed":"2017-09-24T03:08:42.174Z", + "new_balance":"6806.51", + "value":"-0.47" + } + }, + { + "id":"dbb5e5e4-3172-4f23-9807-33d8e2217854", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T00:10:27.187Z", + "completed":"2017-09-26T00:10:27.187Z", + "new_balance":"6804.12", + "value":"-2.39" + } + }, + { + "id":"4f804a1c-0e0d-4a0a-ac79-dd8dbd6e23d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T17:12:04.178Z", + "completed":"2017-09-26T17:12:04.178Z", + "new_balance":"6802.97", + "value":"-1.15" + } + }, + { + "id":"09797ab4-fb2d-4e75-837e-15008d0adb4e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T22:36:49.308Z", + "completed":"2017-09-26T22:36:49.308Z", + "new_balance":"6801.62", + "value":"-1.35" + } + }, + { + "id":"ccbd7bf5-1a61-4601-bd9f-256711ae55b7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T10:20:32.050Z", + "completed":"2017-09-27T10:20:32.050Z", + "new_balance":"6800.42", + "value":"-1.20" + } + }, + { + "id":"c22d4075-a0e7-4153-9ae6-3c61fb510502", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T06:09:42.442Z", + "completed":"2017-09-28T06:09:42.442Z", + "new_balance":"6778.06", + "value":"-22.36" + } + }, + { + "id":"0e7b71cc-96df-4d8e-bfd9-d3695c1bfd3d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T13:33:47.035Z", + "completed":"2017-09-28T13:33:47.035Z", + "new_balance":"6774.34", + "value":"-3.72" + } + }, + { + "id":"c3036fcc-340f-42b3-96f0-d131b60a004a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T08:25:05.745Z", + "completed":"2017-10-01T08:25:05.745Z", + "new_balance":"6915.32", + "value":"140.98" + } + }, + { + "id":"18ec436a-51e7-4b79-ae69-5532ba87c39c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T16:08:36.754Z", + "completed":"2017-10-01T16:08:36.754Z", + "new_balance":"7098.02", + "value":"182.70" + } + }, + { + "id":"57948750-db11-4490-b04f-da89a700ec54", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T18:50:04.430Z", + "completed":"2017-10-01T18:50:04.430Z", + "new_balance":"7066.30", + "value":"-31.72" + } + }, + { + "id":"3f6ba088-8b40-4835-8425-2a54f498d5b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T04:17:36.478Z", + "completed":"2017-10-03T04:17:36.478Z", + "new_balance":"7065.63", + "value":"-0.67" + } + }, + { + "id":"7ee8fbb7-81b7-4e3a-a599-f6970d7b0a32", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T05:48:21.220Z", + "completed":"2017-10-03T05:48:21.220Z", + "new_balance":"7063.89", + "value":"-1.74" + } + }, + { + "id":"c94b87dc-b0c9-4cd4-9985-31fbcae24ffd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T18:13:17.671Z", + "completed":"2017-10-03T18:13:17.671Z", + "new_balance":"7059.07", + "value":"-4.82" + } + }, + { + "id":"a87284bb-95e5-45de-ae70-ca55c1174e0b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T00:51:10.267Z", + "completed":"2017-10-05T00:51:10.267Z", + "new_balance":"7058.55", + "value":"-0.52" + } + }, + { + "id":"9a86e741-2a25-46cd-86d4-0e51cf8d909c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T17:08:35.964Z", + "completed":"2017-10-05T17:08:35.964Z", + "new_balance":"7057.15", + "value":"-1.40" + } + }, + { + "id":"c4a1a896-ca60-4bdd-8ccf-ebb001444a98", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T09:21:08.038Z", + "completed":"2017-10-06T09:21:08.038Z", + "new_balance":"7055.55", + "value":"-1.60" + } + }, + { + "id":"422c54c6-afd2-4fa9-b6dc-0480fa26ea3e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T07:31:56.388Z", + "completed":"2017-10-09T07:31:56.388Z", + "new_balance":"7052.96", + "value":"-2.59" + } + }, + { + "id":"e21c5267-681c-4d6c-accf-53a5074a76e1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:18:54.262Z", + "completed":"2017-10-10T23:18:54.262Z", + "new_balance":"7051.28", + "value":"-1.68" + } + }, + { + "id":"3614ccb4-d737-434d-b726-bcbc095b9cf0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T09:32:27.100Z", + "completed":"2017-10-11T09:32:27.100Z", + "new_balance":"7049.41", + "value":"-1.87" + } + }, + { + "id":"7cc58c78-8233-4da1-beb2-cd1e8859e37e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T16:03:11.392Z", + "completed":"2017-10-11T16:03:11.392Z", + "new_balance":"7047.10", + "value":"-2.31" + } + }, + { + "id":"549a387e-6457-42c5-9ccd-b7af898c927d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T03:50:12.248Z", + "completed":"2017-10-14T03:50:12.248Z", + "new_balance":"7039.40", + "value":"-7.70" + } + }, + { + "id":"39f373c0-3af5-47a7-9270-aebf80b00a9d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T07:19:12.000Z", + "completed":"2017-10-14T07:19:12.000Z", + "new_balance":"7033.27", + "value":"-6.13" + } + }, + { + "id":"8b049a7f-f82e-42fb-b0a0-fd28402c9862", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T08:14:26.649Z", + "completed":"2017-10-17T08:14:26.649Z", + "new_balance":"7028.74", + "value":"-4.53" + } + }, + { + "id":"f284a925-b40b-46ca-b539-0691761490f2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T09:10:51.202Z", + "completed":"2017-10-18T09:10:51.202Z", + "new_balance":"7027.93", + "value":"-0.81" + } + }, + { + "id":"46c15dc8-70af-4e45-9468-5ec88d6e0d3b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T10:34:04.505Z", + "completed":"2017-10-18T10:34:04.505Z", + "new_balance":"7027.46", + "value":"-0.47" + } + }, + { + "id":"4ed373a9-97cf-48e6-b6e9-95a1a41f4c99", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T21:36:55.784Z", + "completed":"2017-10-18T21:36:55.784Z", + "new_balance":"7021.98", + "value":"-5.48" + } + }, + { + "id":"156e73f9-d5fd-4945-b5e8-571b38fd082e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T11:39:08.187Z", + "completed":"2017-10-23T11:39:08.187Z", + "new_balance":"7019.55", + "value":"-2.43" + } + }, + { + "id":"5bc387e9-bc76-4a1f-a469-4117fef54089", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T09:20:04.389Z", + "completed":"2017-10-24T09:20:04.389Z", + "new_balance":"7017.98", + "value":"-1.57" + } + }, + { + "id":"61121ac9-fc50-41b4-9296-3b7e9d6fccef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T21:53:20.355Z", + "completed":"2017-10-24T21:53:20.355Z", + "new_balance":"7014.68", + "value":"-3.30" + } + }, + { + "id":"91055bee-3647-4131-af18-9a30dcce0e0d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T04:47:46.743Z", + "completed":"2017-10-26T04:47:46.743Z", + "new_balance":"7014.16", + "value":"-0.52" + } + }, + { + "id":"78b1ebc9-6918-4c6d-a22f-cc16229a6085", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T04:25:43.124Z", + "completed":"2017-10-30T04:25:43.124Z", + "new_balance":"6991.80", + "value":"-22.36" + } + }, + { + "id":"bf303026-95f2-45b1-bc98-9e4dbc3761ef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T07:29:53.173Z", + "completed":"2017-10-30T07:29:53.173Z", + "new_balance":"6988.08", + "value":"-3.72" + } + }, + { + "id":"9c1280af-a7bc-40cf-8392-2f9daf4da47e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T10:26:20.065Z", + "completed":"2017-11-02T10:26:20.065Z", + "new_balance":"6956.36", + "value":"-31.72" + } + }, + { + "id":"a75b96ef-2b17-41dc-9364-1db7c4bb6859", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T11:48:06.432Z", + "completed":"2017-11-02T11:48:06.432Z", + "new_balance":"6943.26", + "value":"-13.10" + } + }, + { + "id":"0b308e22-0e4c-49a7-b318-0e1d0fe29e9b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T13:16:46.936Z", + "completed":"2017-11-02T13:16:46.936Z", + "new_balance":"6941.94", + "value":"-1.32" + } + }, + { + "id":"1a2d63a9-e2ed-4a38-9e13-b70eeaa7467b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T22:21:55.667Z", + "completed":"2017-11-02T22:21:55.667Z", + "new_balance":"6941.27", + "value":"-0.67" + } + }, + { + "id":"a650fb49-7d51-417e-bdd8-52c719f55512", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T08:29:55.141Z", + "completed":"2017-11-06T08:29:55.141Z", + "new_balance":"6939.08", + "value":"-2.19" + } + }, + { + "id":"83b399a3-87aa-453a-a761-68694f45b421", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T10:35:20.460Z", + "completed":"2017-11-06T10:35:20.460Z", + "new_balance":"6936.77", + "value":"-2.31" + } + }, + { + "id":"81ac74e3-c409-4825-b56c-3b3988c496b4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:06:42.995Z", + "completed":"2017-11-07T04:06:42.995Z", + "new_balance":"6932.20", + "value":"-4.57" + } + }, + { + "id":"f55032a1-e8e2-4e77-bf5a-8cb4d2fa407c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T12:48:34.883Z", + "completed":"2017-11-07T12:48:34.883Z", + "new_balance":"6924.50", + "value":"-7.70" + } + }, + { + "id":"aba07861-9078-4f07-b422-00b758b1fe5b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T01:37:14.218Z", + "completed":"2017-11-09T01:37:14.218Z", + "new_balance":"7065.48", + "value":"140.98" + } + }, + { + "id":"5c91dfe4-16ff-4019-8dfa-8b6c6f460980", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T20:51:37.167Z", + "completed":"2017-11-14T20:51:37.167Z", + "new_balance":"7061.34", + "value":"-4.14" + } + }, + { + "id":"20c87d62-816e-46c0-be84-485cd259ef94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T21:28:25.721Z", + "completed":"2017-11-14T21:28:25.721Z", + "new_balance":"7058.94", + "value":"-2.40" + } + }, + { + "id":"4e3374fa-1c31-44f9-b291-e91d2634960e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T07:00:35.650Z", + "completed":"2017-11-16T07:00:35.650Z", + "new_balance":"7058.42", + "value":"-0.52" + } + }, + { + "id":"f0e5e584-931b-4f19-a533-a1fa361c705e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T03:15:49.885Z", + "completed":"2017-11-20T03:15:49.885Z", + "new_balance":"7055.54", + "value":"-2.88" + } + }, + { + "id":"95ba9518-c20b-49ed-a06f-3c69d48a218f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T05:33:55.065Z", + "completed":"2017-11-23T05:33:55.065Z", + "new_balance":"7050.93", + "value":"-4.61" + } + }, + { + "id":"8e350f17-3f01-4952-b59c-8e08d39fe6f7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T06:54:39.074Z", + "completed":"2017-11-23T06:54:39.074Z", + "new_balance":"7050.46", + "value":"-0.47" + } + }, + { + "id":"02d9d070-58aa-421e-a7c0-c095d4e2035a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T09:09:31.713Z", + "completed":"2017-11-23T09:09:31.713Z", + "new_balance":"7048.15", + "value":"-2.31" + } + }, + { + "id":"7143a1ea-507e-48f9-bbdf-d7fdf8502211", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T00:45:43.157Z", + "completed":"2017-11-28T00:45:43.157Z", + "new_balance":"7047.56", + "value":"-0.59" + } + }, + { + "id":"86b70a24-94f6-4643-bf87-f53990a40cf6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T21:32:20.630Z", + "completed":"2017-11-30T21:32:20.630Z", + "new_balance":"7043.84", + "value":"-3.72" + } + }, + { + "id":"83de0c25-eb9e-4966-98c5-7bd72d5d91b4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T22:16:43.401Z", + "completed":"2017-11-30T22:16:43.401Z", + "new_balance":"7021.48", + "value":"-22.36" + } + }, + { + "id":"a4f0124d-5356-4a63-bcbc-0e7ef758ca01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T14:09:49.237Z", + "completed":"2017-12-01T14:09:49.237Z", + "new_balance":"6989.76", + "value":"-31.72" + } + }, + { + "id":"db467d97-17e5-4d39-a488-b135909dfa0d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T19:37:02.002Z", + "completed":"2017-12-01T19:37:02.002Z", + "new_balance":"7130.74", + "value":"140.98" + } + }, + { + "id":"006c86f8-3388-47a5-b37e-be5d0c523bf6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T00:33:09.941Z", + "completed":"2017-12-04T00:33:09.941Z", + "new_balance":"7128.69", + "value":"-2.05" + } + }, + { + "id":"08defa8a-87e0-4c9e-b37e-39a4f9152146", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T06:44:17.360Z", + "completed":"2017-12-04T06:44:17.360Z", + "new_balance":"7125.23", + "value":"-3.46" + } + }, + { + "id":"3b670f72-7907-46a2-9b3b-93bb54bafe23", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T00:41:19.733Z", + "completed":"2017-12-11T00:41:19.733Z", + "new_balance":"7121.93", + "value":"-3.30" + } + }, + { + "id":"caceb552-bff3-4fbc-b13d-9c1fc508253f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T23:26:15.606Z", + "completed":"2017-12-11T23:26:15.606Z", + "new_balance":"7117.32", + "value":"-4.61" + } + }, + { + "id":"18738f9f-ea34-459d-8e5d-86f7a5c32e11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T05:32:14.985Z", + "completed":"2017-12-14T05:32:14.985Z", + "new_balance":"7116.85", + "value":"-0.47" + } + }, + { + "id":"0e928fed-6d91-4428-9b69-0da64efcb0ba", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:51:53.312Z", + "completed":"2017-12-14T12:51:53.312Z", + "new_balance":"7110.21", + "value":"-6.64" + } + }, + { + "id":"6b6c5490-cd70-4ea5-aba0-9e3cc3974f69", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T13:56:17.843Z", + "completed":"2017-12-14T13:56:17.843Z", + "new_balance":"7109.41", + "value":"-0.80" + } + }, + { + "id":"6b6649d4-5015-4ee8-ba30-4e814145b241", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T14:33:40.676Z", + "completed":"2017-12-14T14:33:40.676Z", + "new_balance":"7108.61", + "value":"-0.80" + } + }, + { + "id":"f9a77074-654c-4e60-9ef5-bfbe54d979d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T17:49:52.244Z", + "completed":"2017-12-14T17:49:52.244Z", + "new_balance":"7107.31", + "value":"-1.30" + } + }, + { + "id":"c8e136d2-06fc-4033-b4cd-5f0090262396", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T18:08:37.622Z", + "completed":"2017-12-14T18:08:37.622Z", + "new_balance":"7099.57", + "value":"-7.74" + } + }, + { + "id":"2e019469-02cc-481c-a3d8-758cd6f02b05", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T18:16:51.292Z", + "completed":"2017-12-14T18:16:51.292Z", + "new_balance":"7091.87", + "value":"-7.70" + } + }, + { + "id":"72446b5d-2adc-4f64-979a-10647b9cc711", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:01:57.413Z", + "completed":"2017-12-14T20:01:57.413Z", + "new_balance":"7091.40", + "value":"-0.47" + } + }, + { + "id":"5031967e-20bb-4030-a619-0dc76c28fd77", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T20:16:43.146Z", + "completed":"2017-12-14T20:16:43.146Z", + "new_balance":"7084.65", + "value":"-6.75" + } + }, + { + "id":"02065d90-635c-485f-963a-123cb9c42d62", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T14:45:37.754Z", + "completed":"2017-12-15T14:45:37.754Z", + "new_balance":"7081.94", + "value":"-2.71" + } + }, + { + "id":"01ac004e-14b0-41c3-ba96-d593b16e812c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T15:10:33.755Z", + "completed":"2017-12-15T15:10:33.755Z", + "new_balance":"7081.47", + "value":"-0.47" + } + }, + { + "id":"11546c97-64af-48fe-b07c-05e6b10100d1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T20:04:44.636Z", + "completed":"2017-12-15T20:04:44.636Z", + "new_balance":"7080.70", + "value":"-0.77" + } + }, + { + "id":"42033275-e2db-4aa7-9a5a-0fb248dd87d0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T00:39:50.244Z", + "completed":"2017-12-18T00:39:50.244Z", + "new_balance":"7078.12", + "value":"-2.58" + } + }, + { + "id":"12fc7cb4-d0c0-4008-b18e-5273bd49e6bf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T05:03:53.963Z", + "completed":"2017-12-18T05:03:53.963Z", + "new_balance":"7077.65", + "value":"-0.47" + } + }, + { + "id":"63bd4504-992e-4c2d-81f0-3606d81b314e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T10:52:38.838Z", + "completed":"2017-12-18T10:52:38.838Z", + "new_balance":"7067.50", + "value":"-10.15" + } + }, + { + "id":"f270fe83-5f2e-4d0f-b40f-f77d47003772", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T12:19:56.721Z", + "completed":"2017-12-18T12:19:56.721Z", + "new_balance":"7064.91", + "value":"-2.59" + } + }, + { + "id":"c2ac883d-1096-418a-8590-aabe2c527d42", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T13:42:32.978Z", + "completed":"2017-12-18T13:42:32.978Z", + "new_balance":"7062.19", + "value":"-2.72" + } + }, + { + "id":"6c1aa8a2-167f-4369-b64a-ecd75c11b967", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T16:21:32.105Z", + "completed":"2017-12-18T16:21:32.105Z", + "new_balance":"7061.72", + "value":"-0.47" + } + }, + { + "id":"0c50482d-59f4-4391-9425-a84538bb20a9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T17:57:57.048Z", + "completed":"2017-12-18T17:57:57.048Z", + "new_balance":"7055.56", + "value":"-6.16" + } + }, + { + "id":"82fe3401-e0f9-4ad8-9c43-ed47de1ee437", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T18:34:48.415Z", + "completed":"2017-12-18T18:34:48.415Z", + "new_balance":"7053.96", + "value":"-1.60" + } + }, + { + "id":"7a6286e5-df16-4a6a-91e3-8d1f30db8ba9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T15:47:20.822Z", + "completed":"2017-12-19T15:47:20.822Z", + "new_balance":"7049.84", + "value":"-4.12" + } + }, + { + "id":"d8f32aad-8152-44ba-a08e-f6731ab5ffb7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T17:13:18.789Z", + "completed":"2017-12-19T17:13:18.789Z", + "new_balance":"7045.45", + "value":"-4.39" + } + }, + { + "id":"a6fa1e2c-b072-48d5-a203-b2f2d2c2dee3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T17:34:05.974Z", + "completed":"2017-12-19T17:34:05.974Z", + "new_balance":"7040.53", + "value":"-4.92" + } + }, + { + "id":"c0e3618b-5b98-4316-ab60-30d186150282", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T04:02:12.386Z", + "completed":"2017-12-21T04:02:12.386Z", + "new_balance":"7028.17", + "value":"-12.36" + } + }, + { + "id":"abf75224-0848-4659-8c77-54126d90ce1e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T10:36:10.916Z", + "completed":"2017-12-21T10:36:10.916Z", + "new_balance":"7018.56", + "value":"-9.61" + } + }, + { + "id":"ba0ee5b4-c173-46cd-abad-8ed2e5bbf1b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T17:09:24.573Z", + "completed":"2017-12-21T17:09:24.573Z", + "new_balance":"7017.41", + "value":"-1.15" + } + }, + { + "id":"142451d3-0f21-46d3-88d2-5185c4ae1792", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T17:30:19.397Z", + "completed":"2017-12-21T17:30:19.397Z", + "new_balance":"7016.94", + "value":"-0.47" + } + }, + { + "id":"a263c14e-d438-4967-ba59-862dc2ead490", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T18:14:02.716Z", + "completed":"2017-12-21T18:14:02.716Z", + "new_balance":"7013.47", + "value":"-3.47" + } + }, + { + "id":"e31a7e18-b334-4336-971f-485342a646c0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T08:32:55.408Z", + "completed":"2017-12-24T08:32:55.408Z", + "new_balance":"7012.27", + "value":"-1.20" + } + }, + { + "id":"17eab95e-00b7-48bb-851f-8a9bce77eccf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T10:00:02.131Z", + "completed":"2017-12-24T10:00:02.131Z", + "new_balance":"7009.88", + "value":"-2.39" + } + }, + { + "id":"626ad581-4591-42b3-90a3-6f6008d46222", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T14:48:37.857Z", + "completed":"2017-12-24T14:48:37.857Z", + "new_balance":"7008.53", + "value":"-1.35" + } + }, + { + "id":"a7ee65b1-d4aa-49d2-aa9f-e6af76c72a07", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T07:09:09.281Z", + "completed":"2017-12-30T07:09:09.281Z", + "new_balance":"6986.17", + "value":"-22.36" + } + }, + { + "id":"4c98223d-564f-4ce7-ab58-2dc044c6e411", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T13:18:44.515Z", + "completed":"2017-12-30T13:18:44.515Z", + "new_balance":"6982.45", + "value":"-3.72" + } + }, + { + "id":"eb418ca7-98ce-43d5-ab75-33324e932919", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T00:54:40.131Z", + "completed":"2016-01-01T00:54:40.131Z", + "new_balance":"5159.55", + "value":"-3.44" + } + }, + { + "id":"233fd63c-b357-4766-bda5-72c87bdf8691", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T05:29:19.068Z", + "completed":"2016-01-01T05:29:19.068Z", + "new_balance":"5156.11", + "value":"-3.44" + } + }, + { + "id":"575c5d5a-d32f-4b9d-b62e-ff95e00a1c3a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T08:00:58.576Z", + "completed":"2016-01-01T08:00:58.576Z", + "new_balance":"5151.93", + "value":"-4.18" + } + }, + { + "id":"433e9777-cb8d-46b0-a511-1381eb797d84", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T09:12:07.091Z", + "completed":"2016-01-01T09:12:07.091Z", + "new_balance":"5144.23", + "value":"-7.70" + } + }, + { + "id":"eb071491-6486-4c27-a859-8c5fb353b097", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T18:01:45.884Z", + "completed":"2016-01-05T18:01:45.884Z", + "new_balance":"5136.93", + "value":"-7.30" + } + }, + { + "id":"2a21566c-71b8-4594-a57d-1cc343693576", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T22:51:24.399Z", + "completed":"2016-01-05T22:51:24.399Z", + "new_balance":"5126.89", + "value":"-10.04" + } + }, + { + "id":"6f596a71-9e5c-4de5-a5f1-26714932a50d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T14:08:09.151Z", + "completed":"2016-01-08T14:08:09.151Z", + "new_balance":"5125.49", + "value":"-1.40" + } + }, + { + "id":"8666ff09-c0ac-4571-9cef-d4f9c913051c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T16:03:33.325Z", + "completed":"2016-01-10T16:03:33.325Z", + "new_balance":"5120.83", + "value":"-4.66" + } + }, + { + "id":"fbde3ca0-33a5-4684-b26e-48201de437c8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T09:05:46.774Z", + "completed":"2016-01-11T09:05:46.774Z", + "new_balance":"5115.42", + "value":"-5.41" + } + }, + { + "id":"21e86cad-c80d-446d-a2d0-35edea189d5b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T01:11:50.260Z", + "completed":"2016-01-12T01:11:50.260Z", + "new_balance":"5111.98", + "value":"-3.44" + } + }, + { + "id":"cfe606cc-379a-49e4-b4a5-8fbe2a7df3df", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T07:19:46.252Z", + "completed":"2016-01-13T07:19:46.252Z", + "new_balance":"5111.52", + "value":"-0.46" + } + }, + { + "id":"39a4bd30-3be3-4921-b556-81783c4b34b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T08:52:56.800Z", + "completed":"2016-01-13T08:52:56.800Z", + "new_balance":"5111.01", + "value":"-0.51" + } + }, + { + "id":"cc46372d-a2fd-43d7-b553-324576e10edb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T23:11:16.728Z", + "completed":"2016-01-16T23:11:16.728Z", + "new_balance":"5101.49", + "value":"-9.52" + } + }, + { + "id":"d1fc14b0-2572-4b6d-b8e3-7ce34966e1be", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T12:35:59.501Z", + "completed":"2016-01-19T12:35:59.501Z", + "new_balance":"5094.66", + "value":"-6.83" + } + }, + { + "id":"e53c4cf7-b3c4-443e-97a2-817962d4da16", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T15:01:24.826Z", + "completed":"2016-01-19T15:01:24.826Z", + "new_balance":"5087.36", + "value":"-7.30" + } + }, + { + "id":"634adf57-27f9-4e04-9db3-dcac078deb4a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T11:09:18.372Z", + "completed":"2016-01-24T11:09:18.372Z", + "new_balance":"5084.68", + "value":"-2.68" + } + }, + { + "id":"ea9652c2-09fb-45e3-b413-04787b402584", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T01:51:20.599Z", + "completed":"2016-01-27T01:51:20.599Z", + "new_balance":"5081.01", + "value":"-3.67" + } + }, + { + "id":"70356868-94f5-4fe1-b589-3b51d622da02", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T13:32:25.919Z", + "completed":"2016-01-27T13:32:25.919Z", + "new_balance":"5315.97", + "value":"234.96" + } + }, + { + "id":"0f492b02-f0ac-44c8-971f-f0ed4aaa7f1d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T14:08:00.588Z", + "completed":"2016-01-31T14:08:00.588Z", + "new_balance":"5292.73", + "value":"-23.24" + } + }, + { + "id":"fb2043dd-45b4-47d5-accb-9bbf0840913b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T02:50:41.782Z", + "completed":"2016-02-01T02:50:41.782Z", + "new_balance":"5289.29", + "value":"-3.44" + } + }, + { + "id":"cf60b7d3-41ff-48fa-8be1-bb8173a11f28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T15:51:02.447Z", + "completed":"2016-02-01T15:51:02.447Z", + "new_balance":"5281.59", + "value":"-7.70" + } + }, + { + "id":"b42fbc8a-b0c3-4b72-af4d-c139110f555f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T18:08:29.471Z", + "completed":"2016-02-01T18:08:29.471Z", + "new_balance":"5278.15", + "value":"-3.44" + } + }, + { + "id":"61c134cd-c8d1-42e4-9f67-e0ff36b1768d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T22:03:39.738Z", + "completed":"2016-02-01T22:03:39.738Z", + "new_balance":"5273.97", + "value":"-4.18" + } + }, + { + "id":"aed975c0-9760-4d1b-a839-915319566081", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T11:54:01.900Z", + "completed":"2016-02-03T11:54:01.900Z", + "new_balance":"5273.27", + "value":"-0.70" + } + }, + { + "id":"9fd3269f-d3e8-4bfe-b92c-da4b1a5a6b11", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T03:41:27.852Z", + "completed":"2016-02-04T03:41:27.852Z", + "new_balance":"5265.97", + "value":"-7.30" + } + }, + { + "id":"bee02504-97f4-4e6f-8978-c08a183cd6c6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T19:45:40.854Z", + "completed":"2016-02-06T19:45:40.854Z", + "new_balance":"5255.87", + "value":"-10.10" + } + }, + { + "id":"a76d4a7c-2c53-4ec0-b84f-ea6cad8120c7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T23:54:11.919Z", + "completed":"2016-02-06T23:54:11.919Z", + "new_balance":"5246.41", + "value":"-9.46" + } + }, + { + "id":"3eebc0c9-5400-48b0-b505-760b29edc603", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T07:46:22.193Z", + "completed":"2016-02-07T07:46:22.193Z", + "new_balance":"5242.61", + "value":"-3.80" + } + }, + { + "id":"c8875bc2-2fa0-4451-8eda-e9543879ba8e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T08:28:56.648Z", + "completed":"2016-02-08T08:28:56.648Z", + "new_balance":"5241.49", + "value":"-1.12" + } + }, + { + "id":"528f5faa-a13b-4f90-a727-ceabfae7d2e2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T04:15:25.933Z", + "completed":"2016-02-09T04:15:25.933Z", + "new_balance":"5236.90", + "value":"-4.59" + } + }, + { + "id":"491b32e9-2f3f-4c05-8f9a-4ddd1361073a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T12:50:40.582Z", + "completed":"2016-02-11T12:50:40.582Z", + "new_balance":"5234.50", + "value":"-2.40" + } + }, + { + "id":"d3590892-cf58-4900-8b80-d70ca6e96dca", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T15:13:44.652Z", + "completed":"2016-02-13T15:13:44.652Z", + "new_balance":"5231.62", + "value":"-2.88" + } + }, + { + "id":"0b475942-db1e-4e9f-99d5-3a975cb7d96c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T11:34:27.281Z", + "completed":"2016-02-17T11:34:27.281Z", + "new_balance":"5231.10", + "value":"-0.52" + } + }, + { + "id":"3a3f375a-bdfb-4bcc-bd85-feb2fc27a734", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T01:09:55.379Z", + "completed":"2016-02-19T01:09:55.379Z", + "new_balance":"5225.92", + "value":"-5.18" + } + }, + { + "id":"07a0cd36-3c16-40f8-8256-79a33c670f57", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T17:00:53.221Z", + "completed":"2016-02-21T17:00:53.221Z", + "new_balance":"5218.62", + "value":"-7.30" + } + }, + { + "id":"f4129865-aaad-47ba-b5ea-14c6f22c8231", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T15:46:24.925Z", + "completed":"2016-02-24T15:46:24.925Z", + "new_balance":"5214.95", + "value":"-3.67" + } + }, + { + "id":"60fee663-62f8-4fab-86e3-17d0cd86eb73", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T06:01:39.214Z", + "completed":"2016-02-26T06:01:39.214Z", + "new_balance":"5449.91", + "value":"234.96" + } + }, + { + "id":"27242b24-7ce4-4eb6-9268-f35f02162020", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T07:38:31.838Z", + "completed":"2016-03-01T07:38:31.838Z", + "new_balance":"5442.21", + "value":"-7.70" + } + }, + { + "id":"89196c0b-af6c-46e6-9ee1-c7def5dc7c4c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T08:58:05.065Z", + "completed":"2016-03-01T08:58:05.065Z", + "new_balance":"5438.77", + "value":"-3.44" + } + }, + { + "id":"e4b23a19-95f4-458e-a7a0-0e69a6bb6a2e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T14:45:30.924Z", + "completed":"2016-03-01T14:45:30.924Z", + "new_balance":"5434.59", + "value":"-4.18" + } + }, + { + "id":"dc8e4e0f-1ea3-4a68-a626-2cbe0fafa4fb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T19:05:20.237Z", + "completed":"2016-03-01T19:05:20.237Z", + "new_balance":"5431.15", + "value":"-3.44" + } + }, + { + "id":"f84330d7-852c-48d1-a5bb-fb99d0d68591", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T03:52:53.812Z", + "completed":"2016-03-09T03:52:53.812Z", + "new_balance":"5425.33", + "value":"-5.82" + } + }, + { + "id":"03142307-f8a9-477a-922e-aea25523c0f4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T07:59:05.335Z", + "completed":"2016-03-09T07:59:05.335Z", + "new_balance":"5418.07", + "value":"-7.26" + } + }, + { + "id":"21876efd-4dfe-41c8-9cdc-8fa913f5413a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T04:33:51.144Z", + "completed":"2016-03-17T04:33:51.144Z", + "new_balance":"5410.33", + "value":"-7.74" + } + }, + { + "id":"623b326b-5ebd-4c85-af09-066eafc9a12d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T00:45:05.435Z", + "completed":"2016-03-18T00:45:05.435Z", + "new_balance":"5409.72", + "value":"-0.61" + } + }, + { + "id":"18170700-9ddd-4715-ad0c-25a3a191f5ba", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T06:09:04.390Z", + "completed":"2016-03-18T06:09:04.390Z", + "new_balance":"5405.65", + "value":"-4.07" + } + }, + { + "id":"18cc37de-39d3-4bf2-bf3a-612c69e29b8e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T19:03:58.934Z", + "completed":"2016-03-18T19:03:58.934Z", + "new_balance":"5397.91", + "value":"-7.74" + } + }, + { + "id":"44ed1ba3-f3b9-4a72-b7f8-71b5c893b25d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T22:26:54.929Z", + "completed":"2016-03-18T22:26:54.929Z", + "new_balance":"5393.50", + "value":"-4.41" + } + }, + { + "id":"338126e9-3b3c-4e10-b34f-816617f2503a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T22:54:52.439Z", + "completed":"2016-03-22T22:54:52.439Z", + "new_balance":"5383.49", + "value":"-10.01" + } + }, + { + "id":"b684cf63-9f83-4471-926b-6a86264dd9c6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T06:50:29.483Z", + "completed":"2016-03-29T06:50:29.483Z", + "new_balance":"5618.45", + "value":"234.96" + } + }, + { + "id":"0e318044-b288-4c9d-a33e-26f0e156c3c0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T11:41:51.224Z", + "completed":"2016-03-29T11:41:51.224Z", + "new_balance":"5614.78", + "value":"-3.67" + } + }, + { + "id":"65a20dfd-fd63-4e29-be99-c4d1ba0f25ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T22:16:12.903Z", + "completed":"2016-03-31T22:16:12.903Z", + "new_balance":"5591.54", + "value":"-23.24" + } + }, + { + "id":"7063327d-13fe-4848-a93a-f1fceacae08f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T01:00:01.652Z", + "completed":"2016-04-01T01:00:01.652Z", + "new_balance":"5583.84", + "value":"-7.70" + } + }, + { + "id":"5a313eb1-50ed-45fc-b9bc-19d21d287ddc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T03:19:34.890Z", + "completed":"2016-04-01T03:19:34.890Z", + "new_balance":"5579.66", + "value":"-4.18" + } + }, + { + "id":"96880f0a-bbf8-4935-9b60-4fee7b75ca3c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T16:05:16.043Z", + "completed":"2016-04-01T16:05:16.043Z", + "new_balance":"5576.22", + "value":"-3.44" + } + }, + { + "id":"71416bad-528a-4d50-ad97-992f31149fd7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T23:29:55.230Z", + "completed":"2016-04-01T23:29:55.230Z", + "new_balance":"5572.78", + "value":"-3.44" + } + }, + { + "id":"78d93f66-83c3-478a-960f-8a118f143c3d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T08:20:17.918Z", + "completed":"2016-04-02T08:20:17.918Z", + "new_balance":"5565.22", + "value":"-7.56" + } + }, + { + "id":"c6ae12f5-174f-4845-a2b5-72fe6b9e1baf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T03:43:14.901Z", + "completed":"2016-04-05T03:43:14.901Z", + "new_balance":"5561.78", + "value":"-3.44" + } + }, + { + "id":"ef5e8796-abe2-42dd-af42-6f0cbbdb64f5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T08:45:01.927Z", + "completed":"2016-04-05T08:45:01.927Z", + "new_balance":"5561.08", + "value":"-0.70" + } + }, + { + "id":"3494f276-5f24-4697-9f63-72e0cf5da13e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T10:41:54.582Z", + "completed":"2016-04-05T10:41:54.582Z", + "new_balance":"5559.84", + "value":"-1.24" + } + }, + { + "id":"84c561dc-70d9-4053-bbfb-755ff4875776", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T14:40:00.483Z", + "completed":"2016-04-05T14:40:00.483Z", + "new_balance":"5559.25", + "value":"-0.59" + } + }, + { + "id":"a51b8f83-a28e-4fc6-97cb-d7d28426300c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T16:14:54.540Z", + "completed":"2016-04-05T16:14:54.540Z", + "new_balance":"5553.80", + "value":"-5.45" + } + }, + { + "id":"d729e788-2bcb-4239-b5fb-9b3c06b076b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T19:31:35.283Z", + "completed":"2016-04-05T19:31:35.283Z", + "new_balance":"5549.62", + "value":"-4.18" + } + }, + { + "id":"87de7b74-7913-4915-ac33-c58a701bdf9f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T23:03:08.725Z", + "completed":"2016-04-05T23:03:08.725Z", + "new_balance":"5542.32", + "value":"-7.30" + } + }, + { + "id":"808e111a-7f81-444a-997c-a3932ff73b95", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T23:35:22.186Z", + "completed":"2016-04-08T23:35:22.186Z", + "new_balance":"5534.23", + "value":"-8.09" + } + }, + { + "id":"9f773fa6-39e4-49ab-8ecd-2fc9e9d44303", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T03:01:31.161Z", + "completed":"2016-04-10T03:01:31.161Z", + "new_balance":"5528.11", + "value":"-6.12" + } + }, + { + "id":"eae0a292-1006-4dcc-9be5-11c6c449c743", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T14:13:34.903Z", + "completed":"2016-04-11T14:13:34.903Z", + "new_balance":"5520.81", + "value":"-7.30" + } + }, + { + "id":"53d3377e-8748-4add-97a9-0ee9ad4c324c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T20:13:09.794Z", + "completed":"2016-04-11T20:13:09.794Z", + "new_balance":"5518.13", + "value":"-2.68" + } + }, + { + "id":"0d66ac46-9c9e-4f04-8a0a-d22d06bdbcc8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:08:56.940Z", + "completed":"2016-04-13T06:08:56.940Z", + "new_balance":"5514.46", + "value":"-3.67" + } + }, + { + "id":"c43b356f-66a4-4fe2-9e58-4893c78ad34b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T00:12:28.330Z", + "completed":"2016-04-18T00:12:28.330Z", + "new_balance":"5749.42", + "value":"234.96" + } + }, + { + "id":"21202b77-375f-4911-81e4-c0cb482b0494", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T06:10:37.740Z", + "completed":"2016-04-25T06:10:37.740Z", + "new_balance":"5726.18", + "value":"-23.24" + } + }, + { + "id":"935833a4-3d81-4700-8a6b-dd609e8d247d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T08:21:46.225Z", + "completed":"2016-05-02T08:21:46.225Z", + "new_balance":"5722.74", + "value":"-3.44" + } + }, + { + "id":"575956a8-d336-40e6-b689-f03aa9fd8f53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T12:41:24.828Z", + "completed":"2016-05-02T12:41:24.828Z", + "new_balance":"5715.04", + "value":"-7.70" + } + }, + { + "id":"9050511f-9e06-45dc-b558-d069f15355dc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T14:57:22.757Z", + "completed":"2016-05-02T14:57:22.757Z", + "new_balance":"5711.60", + "value":"-3.44" + } + }, + { + "id":"4b74c353-1cd7-46d5-a892-07600d2cec8b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T20:49:24.641Z", + "completed":"2016-05-02T20:49:24.641Z", + "new_balance":"5707.42", + "value":"-4.18" + } + }, + { + "id":"27ee1b65-bba8-419c-ae2a-6b458bf29556", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T04:29:55.812Z", + "completed":"2016-05-04T04:29:55.812Z", + "new_balance":"5700.12", + "value":"-7.30" + } + }, + { + "id":"5f56b2ef-bbe7-46e3-893f-7883925f2d43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T18:56:27.178Z", + "completed":"2016-05-04T18:56:27.178Z", + "new_balance":"5699.42", + "value":"-0.70" + } + }, + { + "id":"14a45a56-615a-4c75-87c2-2bd6de15d490", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T06:04:28.403Z", + "completed":"2016-05-06T06:04:28.403Z", + "new_balance":"5691.98", + "value":"-7.44" + } + }, + { + "id":"49a50d89-edc4-4a13-9b42-d6b5ea881695", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T01:44:58.273Z", + "completed":"2016-05-07T01:44:58.273Z", + "new_balance":"5689.27", + "value":"-2.71" + } + }, + { + "id":"a217304f-fa69-4294-a9c0-daacdbcf8c49", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T04:59:54.520Z", + "completed":"2016-05-07T04:59:54.520Z", + "new_balance":"5681.71", + "value":"-7.56" + } + }, + { + "id":"72dbd704-0540-4dba-945a-73c2253b330f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T06:53:00.305Z", + "completed":"2016-05-09T06:53:00.305Z", + "new_balance":"5680.47", + "value":"-1.24" + } + }, + { + "id":"e4ecefa2-9da7-4b48-8849-100b9956d7de", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T18:05:12.858Z", + "completed":"2016-05-09T18:05:12.858Z", + "new_balance":"5675.88", + "value":"-4.59" + } + }, + { + "id":"9b1db0a2-7170-4575-b9cc-4e20da978b13", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T04:44:49.724Z", + "completed":"2016-05-13T04:44:49.724Z", + "new_balance":"5673.17", + "value":"-2.71" + } + }, + { + "id":"8f5915d9-eb2e-4441-bea9-7c1e5b16dd6b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T05:18:45.652Z", + "completed":"2016-05-13T05:18:45.652Z", + "new_balance":"5672.47", + "value":"-0.70" + } + }, + { + "id":"bb37b8bd-45c1-4e29-a6a2-d70dc84ee319", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T20:00:12.448Z", + "completed":"2016-05-13T20:00:12.448Z", + "new_balance":"5670.34", + "value":"-2.13" + } + }, + { + "id":"ccc90e71-dbaa-4716-900c-03c35c682de9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T00:34:37.085Z", + "completed":"2016-05-14T00:34:37.085Z", + "new_balance":"5663.04", + "value":"-7.30" + } + }, + { + "id":"55dfb9ed-64c1-4aea-a1c3-5162a1b6a896", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T23:57:47.069Z", + "completed":"2016-05-14T23:57:47.069Z", + "new_balance":"5658.58", + "value":"-4.46" + } + }, + { + "id":"799ee5b1-6e9d-482f-a8ba-71189a9d20a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T08:40:02.980Z", + "completed":"2016-05-15T08:40:02.980Z", + "new_balance":"5654.91", + "value":"-3.67" + } + }, + { + "id":"429fa195-db32-4a6f-ba4d-2dbef75a9021", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T02:57:37.746Z", + "completed":"2016-05-30T02:57:37.746Z", + "new_balance":"5631.67", + "value":"-23.24" + } + }, + { + "id":"32b402c0-6204-4ac5-a6cc-fefa189fa4ec", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T20:42:07.892Z", + "completed":"2016-05-30T20:42:07.892Z", + "new_balance":"5866.63", + "value":"234.96" + } + }, + { + "id":"da9d7504-4d3a-40e0-8fb4-6e74c010bdbf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T06:05:28.584Z", + "completed":"2016-06-01T06:05:28.584Z", + "new_balance":"5863.19", + "value":"-3.44" + } + }, + { + "id":"2f352939-aa47-48e7-8c26-e6486bcd3d96", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T09:55:47.114Z", + "completed":"2016-06-01T09:55:47.114Z", + "new_balance":"5859.01", + "value":"-4.18" + } + }, + { + "id":"d6b7e3f3-00d6-4bb5-afc0-5e0689749daf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:45:43.748Z", + "completed":"2016-06-01T16:45:43.748Z", + "new_balance":"5855.57", + "value":"-3.44" + } + }, + { + "id":"8fdb4047-6200-47f4-9f63-0501bd9b6b99", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T21:55:27.174Z", + "completed":"2016-06-01T21:55:27.174Z", + "new_balance":"5847.87", + "value":"-7.70" + } + }, + { + "id":"6cec06d5-d76a-4c0f-8f4f-44e86b94bc79", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T00:37:27.412Z", + "completed":"2016-06-04T00:37:27.412Z", + "new_balance":"5840.61", + "value":"-7.26" + } + }, + { + "id":"799ca103-a93e-4aa8-8952-ce59f363f91d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T19:40:32.040Z", + "completed":"2016-06-04T19:40:32.040Z", + "new_balance":"5834.79", + "value":"-5.82" + } + }, + { + "id":"82116638-d0ef-4f7f-9a5f-3ab23a1205f0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T14:56:29.666Z", + "completed":"2016-06-11T14:56:29.666Z", + "new_balance":"5827.05", + "value":"-7.74" + } + }, + { + "id":"242642c6-7085-4a65-a6b7-a67553a8e295", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T20:17:09.592Z", + "completed":"2016-06-11T20:17:09.592Z", + "new_balance":"5819.31", + "value":"-7.74" + } + }, + { + "id":"ed65893d-d720-4ef0-b6fe-afd6c180ee35", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T21:25:39.839Z", + "completed":"2016-06-11T21:25:39.839Z", + "new_balance":"5814.90", + "value":"-4.41" + } + }, + { + "id":"b87029fd-5a41-4646-b584-32534ced1dfa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T14:28:21.203Z", + "completed":"2016-06-12T14:28:21.203Z", + "new_balance":"5810.83", + "value":"-4.07" + } + }, + { + "id":"4430f718-8041-47c7-bb32-fe5e35f9d2ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T21:18:14.746Z", + "completed":"2016-06-12T21:18:14.746Z", + "new_balance":"5810.22", + "value":"-0.61" + } + }, + { + "id":"80792272-422a-44d8-9d00-56154aedaeb3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:05:22.555Z", + "completed":"2016-06-16T00:05:22.555Z", + "new_balance":"5800.21", + "value":"-10.01" + } + }, + { + "id":"a653552c-61a6-4a83-964a-fdd4d8663990", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T04:35:27.922Z", + "completed":"2016-06-29T04:35:27.922Z", + "new_balance":"5796.54", + "value":"-3.67" + } + }, + { + "id":"ca615ec8-2bb8-4876-af1a-6f2c795c3230", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T03:00:41.750Z", + "completed":"2016-06-30T03:00:41.750Z", + "new_balance":"6031.50", + "value":"234.96" + } + }, + { + "id":"5a785692-5920-4715-94ff-2ad2750d1927", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T09:34:16.473Z", + "completed":"2016-06-30T09:34:16.473Z", + "new_balance":"6008.26", + "value":"-23.24" + } + }, + { + "id":"6a3e974f-a586-40e7-83e0-27f3fbd71de9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T00:56:56.292Z", + "completed":"2016-07-01T00:56:56.292Z", + "new_balance":"6004.82", + "value":"-3.44" + } + }, + { + "id":"235148da-cb1c-49d9-b715-6bbbfae50f64", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T03:03:36.462Z", + "completed":"2016-07-01T03:03:36.462Z", + "new_balance":"6001.38", + "value":"-3.44" + } + }, + { + "id":"c813b9e6-ecbb-4521-96fc-098122cd8447", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T05:24:41.043Z", + "completed":"2016-07-01T05:24:41.043Z", + "new_balance":"5997.20", + "value":"-4.18" + } + }, + { + "id":"0f1c4b5d-ac8f-41b7-a848-f14817a05ec8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T19:46:25.545Z", + "completed":"2016-07-01T19:46:25.545Z", + "new_balance":"5989.50", + "value":"-7.70" + } + }, + { + "id":"0f19aca8-81e2-4ffb-9b9a-a112acdcd079", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T06:52:26.824Z", + "completed":"2016-07-05T06:52:26.824Z", + "new_balance":"5979.46", + "value":"-10.04" + } + }, + { + "id":"44020080-90b6-45d6-bfb3-903b987d4e18", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T22:38:35.983Z", + "completed":"2016-07-05T22:38:35.983Z", + "new_balance":"5972.16", + "value":"-7.30" + } + }, + { + "id":"5cab774c-3c95-40bd-a404-ec787fbc9a7c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T07:05:31.392Z", + "completed":"2016-07-08T07:05:31.392Z", + "new_balance":"5970.76", + "value":"-1.40" + } + }, + { + "id":"180eadbc-901d-4b1e-93ee-d262fc53b9f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T18:55:04.309Z", + "completed":"2016-07-10T18:55:04.309Z", + "new_balance":"5966.10", + "value":"-4.66" + } + }, + { + "id":"0548ae59-9378-4b14-b8b5-3af339b7812d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T08:36:19.949Z", + "completed":"2016-07-12T08:36:19.949Z", + "new_balance":"5962.66", + "value":"-3.44" + } + }, + { + "id":"2fd146dd-a6a9-4b7b-8c15-83a161e2657b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T16:32:49.378Z", + "completed":"2016-07-12T16:32:49.378Z", + "new_balance":"5957.25", + "value":"-5.41" + } + }, + { + "id":"d3eb343f-4ade-41e7-9e68-f0f48b8deef3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T00:54:21.298Z", + "completed":"2016-07-13T00:54:21.298Z", + "new_balance":"5956.79", + "value":"-0.46" + } + }, + { + "id":"4b77ebd5-920d-42b2-b984-35d6f9a2d09c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T07:04:48.139Z", + "completed":"2016-07-13T07:04:48.139Z", + "new_balance":"5956.28", + "value":"-0.51" + } + }, + { + "id":"79490475-b3f1-46e0-a0f3-1efec75e8d5d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T11:35:34.631Z", + "completed":"2016-07-18T11:35:34.631Z", + "new_balance":"5946.76", + "value":"-9.52" + } + }, + { + "id":"181dc3ec-9670-4979-b597-bbd5085838c8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T00:14:16.792Z", + "completed":"2016-07-20T00:14:16.792Z", + "new_balance":"5939.93", + "value":"-6.83" + } + }, + { + "id":"6b0f6f4e-6643-4e4f-8412-60399464af79", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T18:37:56.688Z", + "completed":"2016-07-20T18:37:56.688Z", + "new_balance":"5932.63", + "value":"-7.30" + } + }, + { + "id":"1252c3a2-d8b3-4162-a9e8-b39689488f6d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T22:54:43.184Z", + "completed":"2016-07-24T22:54:43.184Z", + "new_balance":"5929.95", + "value":"-2.68" + } + }, + { + "id":"ebd4dd67-0954-4205-8e53-d57d15ca6354", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T06:33:47.013Z", + "completed":"2016-07-29T06:33:47.013Z", + "new_balance":"6164.91", + "value":"234.96" + } + }, + { + "id":"8d46c38a-873f-4de9-aa31-3ea78c923e44", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T19:21:11.522Z", + "completed":"2016-07-29T19:21:11.522Z", + "new_balance":"6161.24", + "value":"-3.67" + } + }, + { + "id":"507efd82-c98c-4358-81e7-af14f0fbfed1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:50:22.461Z", + "completed":"2016-07-30T05:50:22.461Z", + "new_balance":"6138.00", + "value":"-23.24" + } + }, + { + "id":"e0393e5b-58e1-421e-95c3-af365b57fe26", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T02:58:56.092Z", + "completed":"2016-08-01T02:58:56.092Z", + "new_balance":"6133.82", + "value":"-4.18" + } + }, + { + "id":"ddc8fe9f-c2f8-4981-9246-e3c0598d2ddd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T06:48:53.414Z", + "completed":"2016-08-01T06:48:53.414Z", + "new_balance":"6130.38", + "value":"-3.44" + } + }, + { + "id":"e69331c8-5a0f-4f1e-8138-9c86713a2798", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T11:10:44.302Z", + "completed":"2016-08-01T11:10:44.302Z", + "new_balance":"6126.94", + "value":"-3.44" + } + }, + { + "id":"1c7db135-a6eb-4c8d-be75-5d62a41c1f47", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T20:12:08.531Z", + "completed":"2016-08-01T20:12:08.531Z", + "new_balance":"6119.24", + "value":"-7.70" + } + }, + { + "id":"bdf38d3a-89b8-41a1-8167-378ce3a64288", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T06:18:45.816Z", + "completed":"2016-08-03T06:18:45.816Z", + "new_balance":"6118.54", + "value":"-0.70" + } + }, + { + "id":"bc4e0abe-5f94-43f1-a4eb-b79d04624a63", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T06:29:55.064Z", + "completed":"2016-08-04T06:29:55.064Z", + "new_balance":"6111.24", + "value":"-7.30" + } + }, + { + "id":"08e9f844-9e07-4415-9088-43bb519e9f96", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:08:17.797Z", + "completed":"2016-08-08T03:08:17.797Z", + "new_balance":"6110.12", + "value":"-1.12" + } + }, + { + "id":"ae57a375-ae37-4d30-b1fb-967ad580938c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T07:29:24.744Z", + "completed":"2016-08-08T07:29:24.744Z", + "new_balance":"6100.66", + "value":"-9.46" + } + }, + { + "id":"daec86e4-9ed9-4d73-958a-63400b725907", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:16:20.495Z", + "completed":"2016-08-08T10:16:20.495Z", + "new_balance":"6096.86", + "value":"-3.80" + } + }, + { + "id":"fefd5c15-e8d3-4d03-a0ba-f651dd7052b9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T14:52:52.395Z", + "completed":"2016-08-08T14:52:52.395Z", + "new_balance":"6086.76", + "value":"-10.10" + } + }, + { + "id":"c8c9caac-e292-4dbf-9fcc-7a947bb93403", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:13:20.146Z", + "completed":"2016-08-09T16:13:20.146Z", + "new_balance":"6082.17", + "value":"-4.59" + } + }, + { + "id":"a9ca3fc0-de39-473d-9c34-ae5d4c64b5fd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T00:14:37.674Z", + "completed":"2016-08-14T00:14:37.674Z", + "new_balance":"6079.77", + "value":"-2.40" + } + }, + { + "id":"964f1bd2-cbd2-4f37-8e55-08aafb077135", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T13:31:41.514Z", + "completed":"2016-08-15T13:31:41.514Z", + "new_balance":"6076.89", + "value":"-2.88" + } + }, + { + "id":"3d749082-bee3-4f5a-a9e4-e0605bcf440a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T01:08:59.292Z", + "completed":"2016-08-19T01:08:59.292Z", + "new_balance":"6076.37", + "value":"-0.52" + } + }, + { + "id":"f6e6f705-11d6-40a4-b523-956e158a5e88", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T14:56:41.122Z", + "completed":"2016-08-22T14:56:41.122Z", + "new_balance":"6071.19", + "value":"-5.18" + } + }, + { + "id":"e6c008a2-95fe-481f-b866-e63305f0112b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T01:04:26.070Z", + "completed":"2016-08-26T01:04:26.070Z", + "new_balance":"6063.89", + "value":"-7.30" + } + }, + { + "id":"4bcf4f8d-9e02-464c-afd4-16a76421e2fb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T13:06:06.922Z", + "completed":"2016-08-28T13:06:06.922Z", + "new_balance":"6040.65", + "value":"-23.24" + } + }, + { + "id":"a37ee20e-7bc5-46bc-9a2a-9aaaf720f81f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T00:50:01.219Z", + "completed":"2016-08-29T00:50:01.219Z", + "new_balance":"6036.98", + "value":"-3.67" + } + }, + { + "id":"6d2fdcad-d95c-4ef3-999c-9d4ea3a9fa5d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T09:28:24.258Z", + "completed":"2016-08-29T09:28:24.258Z", + "new_balance":"6271.94", + "value":"234.96" + } + }, + { + "id":"9e6d5072-6b6f-4b07-bc95-504925d2f010", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T19:23:23.356Z", + "completed":"2016-08-30T19:23:23.356Z", + "new_balance":"6248.70", + "value":"-23.24" + } + }, + { + "id":"f0e91116-276c-4def-a1a6-36196d2624bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T10:17:54.579Z", + "completed":"2016-09-01T10:17:54.579Z", + "new_balance":"6241.00", + "value":"-7.70" + } + }, + { + "id":"78459e04-5ff8-4ec5-a503-c20ac2862717", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T11:40:57.330Z", + "completed":"2016-09-01T11:40:57.330Z", + "new_balance":"6236.82", + "value":"-4.18" + } + }, + { + "id":"66a5387a-0822-49ca-86e4-71fbaa485925", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:54:06.058Z", + "completed":"2016-09-01T16:54:06.058Z", + "new_balance":"6233.38", + "value":"-3.44" + } + }, + { + "id":"00d1448f-7337-4f5a-bbaa-83ee40512ee6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T22:35:30.908Z", + "completed":"2016-09-01T22:35:30.908Z", + "new_balance":"6229.94", + "value":"-3.44" + } + }, + { + "id":"131ce71e-9027-4af2-8bc2-3cb5c91eeebc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T13:37:10.477Z", + "completed":"2016-09-09T13:37:10.477Z", + "new_balance":"6222.68", + "value":"-7.26" + } + }, + { + "id":"7b15f7b2-5a7e-4bb9-99e2-719abecb5049", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T15:26:55.531Z", + "completed":"2016-09-09T15:26:55.531Z", + "new_balance":"6216.86", + "value":"-5.82" + } + }, + { + "id":"69542b87-a4f0-464e-b5eb-62d552d0f9c1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T19:27:04.669Z", + "completed":"2016-09-17T19:27:04.669Z", + "new_balance":"6209.12", + "value":"-7.74" + } + }, + { + "id":"130d9653-ca15-4fec-b522-90eedb53e7e5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T00:03:40.365Z", + "completed":"2016-09-18T00:03:40.365Z", + "new_balance":"6208.51", + "value":"-0.61" + } + }, + { + "id":"fb399b7a-4f1a-4fa3-b94a-e71b37dfeb2c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T03:39:44.709Z", + "completed":"2016-09-18T03:39:44.709Z", + "new_balance":"6204.10", + "value":"-4.41" + } + }, + { + "id":"ab1ddb05-f125-4892-99fc-ebb971911dd6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T17:25:00.933Z", + "completed":"2016-09-18T17:25:00.933Z", + "new_balance":"6196.36", + "value":"-7.74" + } + }, + { + "id":"cd7af34e-d44c-4f13-ab47-7451ff010ddb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T20:50:05.742Z", + "completed":"2016-09-18T20:50:05.742Z", + "new_balance":"6192.29", + "value":"-4.07" + } + }, + { + "id":"48b12b25-e119-4466-af12-1e079f9c2c43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T15:23:29.383Z", + "completed":"2016-09-22T15:23:29.383Z", + "new_balance":"6182.28", + "value":"-10.01" + } + }, + { + "id":"555288d1-a0e2-4c62-819c-7351a70a2905", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T21:29:43.851Z", + "completed":"2016-09-29T21:29:43.851Z", + "new_balance":"6178.61", + "value":"-3.67" + } + }, + { + "id":"433f8452-b0fb-4bb5-9805-5558c5ba126c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T23:42:09.742Z", + "completed":"2016-09-29T23:42:09.742Z", + "new_balance":"6413.57", + "value":"234.96" + } + }, + { + "id":"c88f30ea-a1a1-4dd6-a7d5-a440fd0cb1f5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T05:14:50.871Z", + "completed":"2016-09-30T05:14:50.871Z", + "new_balance":"6390.33", + "value":"-23.24" + } + }, + { + "id":"2245325b-2300-46d9-880a-b7256053561e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T00:07:05.870Z", + "completed":"2016-10-01T00:07:05.870Z", + "new_balance":"6382.63", + "value":"-7.70" + } + }, + { + "id":"0176e94a-4f45-4291-a4ca-483ec6f1b5d2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T11:34:16.572Z", + "completed":"2016-10-01T11:34:16.572Z", + "new_balance":"6379.19", + "value":"-3.44" + } + }, + { + "id":"b53d4ac2-6bb7-4583-b054-5e22add6dd19", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T19:39:40.953Z", + "completed":"2016-10-01T19:39:40.953Z", + "new_balance":"6375.01", + "value":"-4.18" + } + }, + { + "id":"f794b35d-f252-4ad0-bef2-868ee7002a43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T21:05:19.720Z", + "completed":"2016-10-01T21:05:19.720Z", + "new_balance":"6371.57", + "value":"-3.44" + } + }, + { + "id":"6862af1e-5185-4ce6-b00d-edd7349bfbc4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T19:52:59.567Z", + "completed":"2016-10-02T19:52:59.567Z", + "new_balance":"6364.01", + "value":"-7.56" + } + }, + { + "id":"aa2a4cf2-dc4e-4002-920f-f4450230a771", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T02:03:09.829Z", + "completed":"2016-10-05T02:03:09.829Z", + "new_balance":"6360.57", + "value":"-3.44" + } + }, + { + "id":"ee7e61c4-9550-40a0-abde-08f7cfc78aa6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T06:17:57.376Z", + "completed":"2016-10-05T06:17:57.376Z", + "new_balance":"6356.39", + "value":"-4.18" + } + }, + { + "id":"a24f66b0-9f00-4670-92bd-6bb3d3b62e01", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T09:11:45.026Z", + "completed":"2016-10-05T09:11:45.026Z", + "new_balance":"6350.94", + "value":"-5.45" + } + }, + { + "id":"581186ff-b290-46b9-b702-f6bd32c64c77", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:53:29.401Z", + "completed":"2016-10-05T14:53:29.401Z", + "new_balance":"6349.70", + "value":"-1.24" + } + }, + { + "id":"0809bf12-211b-405f-9b5d-150f8e3b085c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T15:41:26.682Z", + "completed":"2016-10-05T15:41:26.682Z", + "new_balance":"6349.11", + "value":"-0.59" + } + }, + { + "id":"8c1a5c91-2855-4392-bf30-2bfbee69775d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T17:38:32.647Z", + "completed":"2016-10-05T17:38:32.647Z", + "new_balance":"6341.81", + "value":"-7.30" + } + }, + { + "id":"4bd25554-8f8d-4414-80ab-7269fbe08778", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T21:56:18.715Z", + "completed":"2016-10-05T21:56:18.715Z", + "new_balance":"6341.11", + "value":"-0.70" + } + }, + { + "id":"5ffea325-8543-4eb3-afc9-424fa7686432", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T16:38:42.467Z", + "completed":"2016-10-09T16:38:42.467Z", + "new_balance":"6333.02", + "value":"-8.09" + } + }, + { + "id":"c76beeaf-91ad-4b81-8677-814d2473d0fc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T04:53:51.200Z", + "completed":"2016-10-11T04:53:51.200Z", + "new_balance":"6326.90", + "value":"-6.12" + } + }, + { + "id":"f4a605bf-25c4-4177-a5f7-88a50c84250e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T01:06:45.790Z", + "completed":"2016-10-12T01:06:45.790Z", + "new_balance":"6319.60", + "value":"-7.30" + } + }, + { + "id":"4e7580e9-3fab-4624-b265-b5615641954d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T15:48:47.904Z", + "completed":"2016-10-12T15:48:47.904Z", + "new_balance":"6316.92", + "value":"-2.68" + } + }, + { + "id":"53f46b8d-84d3-4f02-96a4-44ad40c07482", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T22:04:45.047Z", + "completed":"2016-10-20T22:04:45.047Z", + "new_balance":"6313.25", + "value":"-3.67" + } + }, + { + "id":"3e708ff8-76b4-4bd3-89ad-3294050fc98c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T04:06:34.428Z", + "completed":"2016-10-29T04:06:34.428Z", + "new_balance":"6548.21", + "value":"234.96" + } + }, + { + "id":"0f79f883-a67f-4b4a-bd83-b3f588799683", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T12:54:28.439Z", + "completed":"2016-10-30T12:54:28.439Z", + "new_balance":"6524.97", + "value":"-23.24" + } + }, + { + "id":"f7f08e15-2e7d-4e1c-91f7-ca03514d65f7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T03:30:31.496Z", + "completed":"2016-11-02T03:30:31.496Z", + "new_balance":"6521.53", + "value":"-3.44" + } + }, + { + "id":"ca713650-e2f5-4535-9037-b7d3c93abb69", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T08:00:32.407Z", + "completed":"2016-11-02T08:00:32.407Z", + "new_balance":"6513.83", + "value":"-7.70" + } + }, + { + "id":"4fa2777c-e84a-440d-9f49-37cc8aead6c1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T15:38:10.291Z", + "completed":"2016-11-02T15:38:10.291Z", + "new_balance":"6509.65", + "value":"-4.18" + } + }, + { + "id":"939d9dfc-dbc9-4a8c-884b-a21d18cd9772", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T20:56:30.035Z", + "completed":"2016-11-02T20:56:30.035Z", + "new_balance":"6506.21", + "value":"-3.44" + } + }, + { + "id":"9c9b159b-90fe-493d-b230-7ef1fb050233", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T02:18:55.810Z", + "completed":"2016-11-04T02:18:55.810Z", + "new_balance":"6498.91", + "value":"-7.30" + } + }, + { + "id":"2bd34da4-d650-4ea1-9daa-342b9d85a445", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T20:02:28.257Z", + "completed":"2016-11-04T20:02:28.257Z", + "new_balance":"6498.21", + "value":"-0.70" + } + }, + { + "id":"dc06575d-3628-4200-a1e6-3aefbb2afc6d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T02:37:42.037Z", + "completed":"2016-11-06T02:37:42.037Z", + "new_balance":"6490.77", + "value":"-7.44" + } + }, + { + "id":"01d9b596-d911-44d5-a49b-5cb342495804", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T05:10:19.276Z", + "completed":"2016-11-07T05:10:19.276Z", + "new_balance":"6483.21", + "value":"-7.56" + } + }, + { + "id":"47b6a2b1-03f1-4fab-a12d-614ef315c2ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T12:35:08.685Z", + "completed":"2016-11-07T12:35:08.685Z", + "new_balance":"6480.50", + "value":"-2.71" + } + }, + { + "id":"ef49bd2a-f040-4466-87b0-0dd0daed9119", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T18:13:14.329Z", + "completed":"2016-11-09T18:13:14.329Z", + "new_balance":"6475.91", + "value":"-4.59" + } + }, + { + "id":"509e16c7-2046-4e43-9333-e666726581f7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T19:08:47.342Z", + "completed":"2016-11-09T19:08:47.342Z", + "new_balance":"6474.67", + "value":"-1.24" + } + }, + { + "id":"7b383689-77dc-4cf6-985c-6ea1e6990f3b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T06:19:29.272Z", + "completed":"2016-11-13T06:19:29.272Z", + "new_balance":"6473.97", + "value":"-0.70" + } + }, + { + "id":"6e3b377f-cb1d-4230-97cf-b06b034216b6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T08:15:07.426Z", + "completed":"2016-11-13T08:15:07.426Z", + "new_balance":"6471.26", + "value":"-2.71" + } + }, + { + "id":"ea5abe42-a924-4e54-b48d-dbed7f72e807", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T23:07:40.084Z", + "completed":"2016-11-13T23:07:40.084Z", + "new_balance":"6469.13", + "value":"-2.13" + } + }, + { + "id":"28a42e9f-6d24-483b-a609-44977761c0ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T13:38:52.980Z", + "completed":"2016-11-14T13:38:52.980Z", + "new_balance":"6464.67", + "value":"-4.46" + } + }, + { + "id":"50a2eed9-66be-41c1-9345-c84625efd571", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:06:37.496Z", + "completed":"2016-11-14T17:06:37.496Z", + "new_balance":"6457.37", + "value":"-7.30" + } + }, + { + "id":"e16cd209-1844-4983-9b61-a508956e81ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T22:04:55.966Z", + "completed":"2016-11-15T22:04:55.966Z", + "new_balance":"6453.70", + "value":"-3.67" + } + }, + { + "id":"e2c7f8c0-2208-4259-8833-12a5dc978f74", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T17:34:47.993Z", + "completed":"2016-11-30T17:34:47.993Z", + "new_balance":"6688.66", + "value":"234.96" + } + }, + { + "id":"bc340d65-5321-4f94-9165-8a5bb04f6021", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T23:48:29.703Z", + "completed":"2016-11-30T23:48:29.703Z", + "new_balance":"6665.42", + "value":"-23.24" + } + }, + { + "id":"d3b52186-22ef-483f-9922-4a1831007ec6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T14:05:43.992Z", + "completed":"2016-12-01T14:05:43.992Z", + "new_balance":"6657.72", + "value":"-7.70" + } + }, + { + "id":"6a4cd923-dc8e-4801-8c90-d55e4d5ee273", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T19:26:02.636Z", + "completed":"2016-12-01T19:26:02.636Z", + "new_balance":"6654.28", + "value":"-3.44" + } + }, + { + "id":"954b5e0b-fbdc-4869-addd-04e9371d130a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T20:49:23.836Z", + "completed":"2016-12-01T20:49:23.836Z", + "new_balance":"6650.10", + "value":"-4.18" + } + }, + { + "id":"88057af8-4ad1-45aa-937c-24d8b1416216", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:48:34.253Z", + "completed":"2016-12-01T22:48:34.253Z", + "new_balance":"6646.66", + "value":"-3.44" + } + }, + { + "id":"fc93ccda-f41b-4b2f-a717-6951a27daea5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T20:06:17.144Z", + "completed":"2016-12-04T20:06:17.144Z", + "new_balance":"6639.40", + "value":"-7.26" + } + }, + { + "id":"ca69e582-2b72-4f2c-809b-9eb1094b209e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T23:12:54.917Z", + "completed":"2016-12-04T23:12:54.917Z", + "new_balance":"6633.58", + "value":"-5.82" + } + }, + { + "id":"2b98f838-64a6-4bb6-a5f6-c698e25c006c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T00:06:28.103Z", + "completed":"2016-12-11T00:06:28.103Z", + "new_balance":"6629.17", + "value":"-4.41" + } + }, + { + "id":"b7f7ca8b-1387-4568-a21e-9319f5b8d7df", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T19:01:18.604Z", + "completed":"2016-12-11T19:01:18.604Z", + "new_balance":"6621.43", + "value":"-7.74" + } + }, + { + "id":"f4cba316-6bd9-4618-8d69-9b8185f5525f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T22:25:05.496Z", + "completed":"2016-12-11T22:25:05.496Z", + "new_balance":"6613.69", + "value":"-7.74" + } + }, + { + "id":"1256a68f-e770-4d40-8a81-b7e95d633dfa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T00:31:14.908Z", + "completed":"2016-12-12T00:31:14.908Z", + "new_balance":"6613.08", + "value":"-0.61" + } + }, + { + "id":"58b10300-f453-4526-9527-fec270376dc7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T13:19:37.986Z", + "completed":"2016-12-12T13:19:37.986Z", + "new_balance":"6609.01", + "value":"-4.07" + } + }, + { + "id":"42c4c849-31e8-4bb9-bd05-030050e39e30", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:45:21.927Z", + "completed":"2016-12-16T16:45:21.927Z", + "new_balance":"6599.00", + "value":"-10.01" + } + }, + { + "id":"cfed46f6-a285-47f3-8264-1c61d53da9a8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T15:15:11.268Z", + "completed":"2016-12-29T15:15:11.268Z", + "new_balance":"6595.33", + "value":"-3.67" + } + }, + { + "id":"a35e9f7f-43c7-491c-9555-e708bc4c7e66", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T03:42:03.059Z", + "completed":"2016-12-30T03:42:03.059Z", + "new_balance":"6572.09", + "value":"-23.24" + } + }, + { + "id":"6fd3627b-1922-4749-aedd-d9aea589e48a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T06:28:40.574Z", + "completed":"2016-12-30T06:28:40.574Z", + "new_balance":"6807.05", + "value":"234.96" + } + }, + { + "id":"f924b8d3-f149-4aa0-b34a-24cb00eca5d4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T00:55:42.767Z", + "completed":"2017-01-01T00:55:42.767Z", + "new_balance":"6799.35", + "value":"-7.70" + } + }, + { + "id":"38015ff3-3f5d-4a7b-9b22-7b3ddb7f72b8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T08:14:17.787Z", + "completed":"2017-01-01T08:14:17.787Z", + "new_balance":"6795.17", + "value":"-4.18" + } + }, + { + "id":"4cd99774-b27f-4d57-ab1c-68fc3f9bd5de", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:46:16.757Z", + "completed":"2017-01-01T13:46:16.757Z", + "new_balance":"6791.73", + "value":"-3.44" + } + }, + { + "id":"3a82453e-c919-46f1-9dde-efa664df07bb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T23:21:42.321Z", + "completed":"2017-01-01T23:21:42.321Z", + "new_balance":"6788.29", + "value":"-3.44" + } + }, + { + "id":"c48761e9-b983-4494-85cd-b4781449f5bf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T10:26:23.336Z", + "completed":"2017-01-05T10:26:23.336Z", + "new_balance":"6780.99", + "value":"-7.30" + } + }, + { + "id":"6515e317-af62-4841-bb6f-a5f793e48855", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T13:13:01.291Z", + "completed":"2017-01-05T13:13:01.291Z", + "new_balance":"6770.95", + "value":"-10.04" + } + }, + { + "id":"9bf8bd5a-8527-4c15-8af7-56ff274705b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T21:52:04.454Z", + "completed":"2017-01-08T21:52:04.454Z", + "new_balance":"6769.55", + "value":"-1.40" + } + }, + { + "id":"a330f3aa-dfd4-4bf1-8fa7-3c9d8dc08162", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T07:42:44.967Z", + "completed":"2017-01-10T07:42:44.967Z", + "new_balance":"6764.89", + "value":"-4.66" + } + }, + { + "id":"1aa93b65-619d-47e0-b617-ec168c21dd38", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T14:08:51.655Z", + "completed":"2017-01-11T14:08:51.655Z", + "new_balance":"6759.48", + "value":"-5.41" + } + }, + { + "id":"5ce1172b-be5d-4da6-b622-426143d32921", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T23:19:31.189Z", + "completed":"2017-01-12T23:19:31.189Z", + "new_balance":"6756.04", + "value":"-3.44" + } + }, + { + "id":"a55de025-4d49-4220-93ed-ae89f605cfab", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T16:56:36.325Z", + "completed":"2017-01-13T16:56:36.325Z", + "new_balance":"6755.53", + "value":"-0.51" + } + }, + { + "id":"4d420969-e141-418a-b7e4-e67c5af80dc6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T23:13:22.105Z", + "completed":"2017-01-13T23:13:22.105Z", + "new_balance":"6755.07", + "value":"-0.46" + } + }, + { + "id":"4dfc4d89-651e-45f8-89fc-92da0480d0f2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T23:39:06.507Z", + "completed":"2017-01-16T23:39:06.507Z", + "new_balance":"6745.55", + "value":"-9.52" + } + }, + { + "id":"4265b694-9131-4392-848c-c3b8275520b6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T06:24:38.759Z", + "completed":"2017-01-19T06:24:38.759Z", + "new_balance":"6738.25", + "value":"-7.30" + } + }, + { + "id":"558a7718-9116-4c92-ab7e-9650dcb3a895", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T14:19:24.149Z", + "completed":"2017-01-19T14:19:24.149Z", + "new_balance":"6731.42", + "value":"-6.83" + } + }, + { + "id":"7ec8bdb7-8bee-4862-832b-302034e5b18d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:06:43.241Z", + "completed":"2017-01-24T23:06:43.241Z", + "new_balance":"6728.74", + "value":"-2.68" + } + }, + { + "id":"c90dad92-725e-4065-9be7-193744103d28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T00:00:17.689Z", + "completed":"2017-01-27T00:00:17.689Z", + "new_balance":"6963.70", + "value":"234.96" + } + }, + { + "id":"4bee9195-4a01-4b2f-86fa-1c1b774780be", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T09:40:25.216Z", + "completed":"2017-01-27T09:40:25.216Z", + "new_balance":"6960.03", + "value":"-3.67" + } + }, + { + "id":"3f366681-250a-4a2c-a225-554164a1239d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T04:07:44.814Z", + "completed":"2017-01-31T04:07:44.814Z", + "new_balance":"6936.79", + "value":"-23.24" + } + }, + { + "id":"3a6ed758-2d90-4d34-a161-0cb55a3be8b7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T07:46:23.108Z", + "completed":"2017-02-01T07:46:23.108Z", + "new_balance":"6933.35", + "value":"-3.44" + } + }, + { + "id":"0a8f6639-0e12-44e5-8506-c208248cb8f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T09:21:39.572Z", + "completed":"2017-02-01T09:21:39.572Z", + "new_balance":"6929.17", + "value":"-4.18" + } + }, + { + "id":"d4f9ba2a-47cc-4920-980d-750a97a7dc4b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T10:43:28.777Z", + "completed":"2017-02-01T10:43:28.777Z", + "new_balance":"6925.73", + "value":"-3.44" + } + }, + { + "id":"6e80ac23-479d-4aca-96bc-ad73a0253ac9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T19:29:41.503Z", + "completed":"2017-02-01T19:29:41.503Z", + "new_balance":"6918.03", + "value":"-7.70" + } + }, + { + "id":"5a42dd78-041d-4f6a-9d5b-1a8b6de77c2b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T23:29:07.150Z", + "completed":"2017-02-03T23:29:07.150Z", + "new_balance":"6917.33", + "value":"-0.70" + } + }, + { + "id":"aa46b747-1a81-40ee-aba8-3df39992be88", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T07:44:32.646Z", + "completed":"2017-02-04T07:44:32.646Z", + "new_balance":"6910.03", + "value":"-7.30" + } + }, + { + "id":"7db7a038-3fd4-4db2-be41-52354e83f140", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T03:35:02.058Z", + "completed":"2017-02-06T03:35:02.058Z", + "new_balance":"6899.93", + "value":"-10.10" + } + }, + { + "id":"e65d74ae-7df4-4ae5-8c9a-e37489244b3a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T17:21:18.663Z", + "completed":"2017-02-06T17:21:18.663Z", + "new_balance":"6890.47", + "value":"-9.46" + } + }, + { + "id":"230fedd5-be8b-43ed-826f-1cbfec64a272", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T20:49:58.990Z", + "completed":"2017-02-07T20:49:58.990Z", + "new_balance":"6886.67", + "value":"-3.80" + } + }, + { + "id":"85f39f4e-8c56-471c-aeea-83e9e6502ac5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T13:55:58.012Z", + "completed":"2017-02-08T13:55:58.012Z", + "new_balance":"6885.55", + "value":"-1.12" + } + }, + { + "id":"5987c480-d514-4b4c-a8d1-899ab131f0fe", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T20:48:41.085Z", + "completed":"2017-02-09T20:48:41.085Z", + "new_balance":"6880.96", + "value":"-4.59" + } + }, + { + "id":"f37285a0-ef92-492c-b773-793d165da47c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:09:15.689Z", + "completed":"2017-02-11T05:09:15.689Z", + "new_balance":"6878.56", + "value":"-2.40" + } + }, + { + "id":"0acd8f14-9891-4abe-bcc7-d7afdf4aab82", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T13:43:51.581Z", + "completed":"2017-02-13T13:43:51.581Z", + "new_balance":"6875.68", + "value":"-2.88" + } + }, + { + "id":"18d486d9-1eaa-4d60-8555-7afb9d05c401", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T20:17:57.183Z", + "completed":"2017-02-17T20:17:57.183Z", + "new_balance":"6875.16", + "value":"-0.52" + } + }, + { + "id":"356c0caa-83a6-465b-a0c5-f53263c2a5b9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T07:19:03.632Z", + "completed":"2017-02-19T07:19:03.632Z", + "new_balance":"6869.98", + "value":"-5.18" + } + }, + { + "id":"e815495c-d376-44c9-a74a-72e9182976aa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T00:24:06.114Z", + "completed":"2017-02-21T00:24:06.114Z", + "new_balance":"6862.68", + "value":"-7.30" + } + }, + { + "id":"c545ae92-610e-44c9-b4a7-33b7a5e703f6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T03:53:01.223Z", + "completed":"2017-02-24T03:53:01.223Z", + "new_balance":"6859.01", + "value":"-3.67" + } + }, + { + "id":"644f75b6-28a5-4abd-b6aa-a4d8d9019e0b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T23:10:15.115Z", + "completed":"2017-02-26T23:10:15.115Z", + "new_balance":"7093.97", + "value":"234.96" + } + }, + { + "id":"1a6e5288-1223-4e18-aaa0-044631016c33", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:13:55.878Z", + "completed":"2017-03-01T06:13:55.878Z", + "new_balance":"7090.53", + "value":"-3.44" + } + }, + { + "id":"ec07f776-6135-4f15-a106-404e18d94dbe", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T13:44:11.788Z", + "completed":"2017-03-01T13:44:11.788Z", + "new_balance":"7086.35", + "value":"-4.18" + } + }, + { + "id":"cc318bc5-5f2e-4c5a-97f3-227d08540ab4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T19:29:13.677Z", + "completed":"2017-03-01T19:29:13.677Z", + "new_balance":"7078.65", + "value":"-7.70" + } + }, + { + "id":"5a0ff38a-02d5-4831-b2ec-f6a3f92fd700", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T20:03:56.399Z", + "completed":"2017-03-01T20:03:56.399Z", + "new_balance":"7075.21", + "value":"-3.44" + } + }, + { + "id":"3c8a5349-0dc8-4630-b330-b8d0c7fd06ef", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:20:51.409Z", + "completed":"2017-03-09T10:20:51.409Z", + "new_balance":"7067.95", + "value":"-7.26" + } + }, + { + "id":"af87e944-5947-4fa8-b240-f2465442aa73", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T23:06:20.910Z", + "completed":"2017-03-09T23:06:20.910Z", + "new_balance":"7062.13", + "value":"-5.82" + } + }, + { + "id":"c6ec25e8-2bec-49c5-8559-a598cf5ff0c4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T22:57:22.307Z", + "completed":"2017-03-17T22:57:22.307Z", + "new_balance":"7054.39", + "value":"-7.74" + } + }, + { + "id":"8ae3619b-bba3-4ad9-979c-ea31f4d048bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T07:15:56.244Z", + "completed":"2017-03-18T07:15:56.244Z", + "new_balance":"7049.98", + "value":"-4.41" + } + }, + { + "id":"2a86d35c-136a-4aa6-917a-129dae1c3f6e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T09:19:44.731Z", + "completed":"2017-03-18T09:19:44.731Z", + "new_balance":"7049.37", + "value":"-0.61" + } + }, + { + "id":"f66962e4-42ce-4f63-a33b-7f887bc14576", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T15:49:21.664Z", + "completed":"2017-03-18T15:49:21.664Z", + "new_balance":"7041.63", + "value":"-7.74" + } + }, + { + "id":"ca827887-c2fe-47f8-af1c-757029cda3d0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T18:57:59.405Z", + "completed":"2017-03-18T18:57:59.405Z", + "new_balance":"7037.56", + "value":"-4.07" + } + }, + { + "id":"83afb955-db7d-49e9-9564-e7e78486433c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T20:40:34.928Z", + "completed":"2017-03-22T20:40:34.928Z", + "new_balance":"7027.55", + "value":"-10.01" + } + }, + { + "id":"974f0d3c-486c-4c19-a05e-cd59f1fa54a6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T13:15:20.222Z", + "completed":"2017-03-29T13:15:20.222Z", + "new_balance":"7262.51", + "value":"234.96" + } + }, + { + "id":"2c45bd70-ac80-48bd-85c0-5a209f030863", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T17:10:34.765Z", + "completed":"2017-03-29T17:10:34.765Z", + "new_balance":"7258.84", + "value":"-3.67" + } + }, + { + "id":"c3e8ee96-61da-4222-b318-2ae36bba2e26", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T18:27:31.397Z", + "completed":"2017-03-31T18:27:31.397Z", + "new_balance":"7235.60", + "value":"-23.24" + } + }, + { + "id":"2e010b09-6aa4-4698-84b8-1ca486d4a3a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T02:01:19.633Z", + "completed":"2017-04-01T02:01:19.633Z", + "new_balance":"7227.90", + "value":"-7.70" + } + }, + { + "id":"331b72d3-1b50-4c6c-95ea-e8f6bd417183", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T03:06:40.655Z", + "completed":"2017-04-01T03:06:40.655Z", + "new_balance":"7223.72", + "value":"-4.18" + } + }, + { + "id":"4a7f1973-afad-4513-9e21-d7f28403683a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T10:08:48.514Z", + "completed":"2017-04-01T10:08:48.514Z", + "new_balance":"7220.28", + "value":"-3.44" + } + }, + { + "id":"0f57796b-90c4-4319-8446-81ae200f2975", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T16:15:14.045Z", + "completed":"2017-04-01T16:15:14.045Z", + "new_balance":"7216.84", + "value":"-3.44" + } + }, + { + "id":"521b9d9c-c3ac-4c08-948d-a6bb7ab5d22b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T16:58:48.560Z", + "completed":"2017-04-02T16:58:48.560Z", + "new_balance":"7209.28", + "value":"-7.56" + } + }, + { + "id":"18d03c6b-f56e-4280-b9e9-c731ceea804f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T00:20:39.882Z", + "completed":"2017-04-05T00:20:39.882Z", + "new_balance":"7201.98", + "value":"-7.30" + } + }, + { + "id":"993bf0c3-1f90-45ef-8009-47a7a46cf590", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T06:41:21.548Z", + "completed":"2017-04-05T06:41:21.548Z", + "new_balance":"7198.54", + "value":"-3.44" + } + }, + { + "id":"4bf47427-6213-416e-935a-e06cfb2d456b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T11:52:08.642Z", + "completed":"2017-04-05T11:52:08.642Z", + "new_balance":"7197.95", + "value":"-0.59" + } + }, + { + "id":"62989b97-8f0f-474f-823d-18d3c8489ada", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T19:43:56.449Z", + "completed":"2017-04-05T19:43:56.449Z", + "new_balance":"7196.71", + "value":"-1.24" + } + }, + { + "id":"e1220910-de5d-4516-859f-3c1b81b53362", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T21:49:51.171Z", + "completed":"2017-04-05T21:49:51.171Z", + "new_balance":"7191.26", + "value":"-5.45" + } + }, + { + "id":"dfd0027e-3442-421d-94b9-3f00ecee71bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T22:04:19.705Z", + "completed":"2017-04-05T22:04:19.705Z", + "new_balance":"7187.08", + "value":"-4.18" + } + }, + { + "id":"8fde65f3-c3e6-409e-92c6-7b946859f456", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T23:47:44.260Z", + "completed":"2017-04-05T23:47:44.260Z", + "new_balance":"7186.38", + "value":"-0.70" + } + }, + { + "id":"926e1caf-19a7-4a90-bd91-365c9106edd8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T14:48:20.104Z", + "completed":"2017-04-08T14:48:20.104Z", + "new_balance":"7178.29", + "value":"-8.09" + } + }, + { + "id":"15cb5bf1-6b67-4db8-985b-db0f6dbd7100", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T00:07:17.504Z", + "completed":"2017-04-10T00:07:17.504Z", + "new_balance":"7172.17", + "value":"-6.12" + } + }, + { + "id":"abefd4ed-3e96-4417-8a33-de16bf95f291", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T01:08:05.884Z", + "completed":"2017-04-11T01:08:05.884Z", + "new_balance":"7169.49", + "value":"-2.68" + } + }, + { + "id":"ba69dc37-75ae-43fc-9d96-bb858a734aaf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T14:52:08.828Z", + "completed":"2017-04-11T14:52:08.828Z", + "new_balance":"7162.19", + "value":"-7.30" + } + }, + { + "id":"910e2276-483f-4154-819e-f2b4205c100a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T20:32:40.621Z", + "completed":"2017-04-13T20:32:40.621Z", + "new_balance":"7158.52", + "value":"-3.67" + } + }, + { + "id":"8bb860b7-1b03-4b7d-80cc-eae6aab2e650", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T08:20:07.228Z", + "completed":"2017-04-18T08:20:07.228Z", + "new_balance":"7393.48", + "value":"234.96" + } + }, + { + "id":"72fbc1ff-b3ec-4a09-99e3-3c78674bacd5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T16:15:49.215Z", + "completed":"2017-04-25T16:15:49.215Z", + "new_balance":"7370.24", + "value":"-23.24" + } + }, + { + "id":"ebc31bc0-95f8-4fb6-88e1-550d4266dcde", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T00:12:29.459Z", + "completed":"2017-05-02T00:12:29.459Z", + "new_balance":"7366.80", + "value":"-3.44" + } + }, + { + "id":"636ed0f5-ffd9-4009-8356-ecddcfd2bd53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T01:22:04.796Z", + "completed":"2017-05-02T01:22:04.796Z", + "new_balance":"7362.62", + "value":"-4.18" + } + }, + { + "id":"f845ee2d-e807-465a-8e22-cf7096416a82", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T09:05:38.505Z", + "completed":"2017-05-02T09:05:38.505Z", + "new_balance":"7354.92", + "value":"-7.70" + } + }, + { + "id":"a1444590-d7ca-4cd4-9dd2-56793a183a43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T12:32:55.740Z", + "completed":"2017-05-02T12:32:55.740Z", + "new_balance":"7351.48", + "value":"-3.44" + } + }, + { + "id":"69db8cd2-4b4a-4ddf-814b-ea969fc12aaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T01:26:35.105Z", + "completed":"2017-05-04T01:26:35.105Z", + "new_balance":"7344.18", + "value":"-7.30" + } + }, + { + "id":"4da3361e-e765-48a4-9a36-5a541b11de08", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T20:14:18.410Z", + "completed":"2017-05-04T20:14:18.410Z", + "new_balance":"7343.48", + "value":"-0.70" + } + }, + { + "id":"3a12d776-f2b7-4153-ba3b-9307c7abb752", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T01:22:54.076Z", + "completed":"2017-05-06T01:22:54.076Z", + "new_balance":"7336.04", + "value":"-7.44" + } + }, + { + "id":"4e3cc728-7566-4cbb-b468-533109a05d0f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T08:44:14.897Z", + "completed":"2017-05-07T08:44:14.897Z", + "new_balance":"7328.48", + "value":"-7.56" + } + }, + { + "id":"9e3a8eac-cd04-4fb4-a573-759bcaa77ac7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T22:38:14.060Z", + "completed":"2017-05-07T22:38:14.060Z", + "new_balance":"7325.77", + "value":"-2.71" + } + }, + { + "id":"fd7a0334-c06b-4db0-931c-6ded6ed18c5e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T01:46:05.283Z", + "completed":"2017-05-09T01:46:05.283Z", + "new_balance":"7324.53", + "value":"-1.24" + } + }, + { + "id":"484fef08-90b4-404a-b469-d6dc404f4268", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T11:34:11.488Z", + "completed":"2017-05-09T11:34:11.488Z", + "new_balance":"7319.94", + "value":"-4.59" + } + }, + { + "id":"421c82ef-997e-4435-ad10-bc7baf36d977", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T00:41:58.649Z", + "completed":"2017-05-13T00:41:58.649Z", + "new_balance":"7317.23", + "value":"-2.71" + } + }, + { + "id":"ddd49b77-59be-444c-b6f8-cf4d9ec92518", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T13:38:58.646Z", + "completed":"2017-05-13T13:38:58.646Z", + "new_balance":"7316.53", + "value":"-0.70" + } + }, + { + "id":"ae107540-0efc-49d4-a93c-d6ea9ff910d8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T20:33:47.049Z", + "completed":"2017-05-13T20:33:47.049Z", + "new_balance":"7314.40", + "value":"-2.13" + } + }, + { + "id":"8c99ed13-f6fb-4ad3-b498-3e8aafe5594d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T13:10:49.657Z", + "completed":"2017-05-14T13:10:49.657Z", + "new_balance":"7307.10", + "value":"-7.30" + } + }, + { + "id":"d2fc9252-2f9f-4ddb-a1d4-ba36f6065b5b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T17:16:10.984Z", + "completed":"2017-05-14T17:16:10.984Z", + "new_balance":"7302.64", + "value":"-4.46" + } + }, + { + "id":"421073cf-2fe0-4a85-8dbc-2af33d477814", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T03:40:29.667Z", + "completed":"2017-05-15T03:40:29.667Z", + "new_balance":"7298.97", + "value":"-3.67" + } + }, + { + "id":"f09074f8-6fdd-4b3b-b96e-004f43d4fb8c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T04:36:10.354Z", + "completed":"2017-05-30T04:36:10.354Z", + "new_balance":"7533.93", + "value":"234.96" + } + }, + { + "id":"2adc9103-2db2-4194-acfa-be067ad8d728", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T05:33:38.366Z", + "completed":"2017-05-30T05:33:38.366Z", + "new_balance":"7510.69", + "value":"-23.24" + } + }, + { + "id":"14b95d62-bd3e-460e-995a-747338a7895e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:43:11.673Z", + "completed":"2017-06-01T05:43:11.673Z", + "new_balance":"7507.25", + "value":"-3.44" + } + }, + { + "id":"f67eb33f-7eaa-4e59-b3c9-a76423732a72", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T09:08:10.399Z", + "completed":"2017-06-01T09:08:10.399Z", + "new_balance":"7499.55", + "value":"-7.70" + } + }, + { + "id":"9b326580-b56c-4c0d-b50b-8b63983294dd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T10:02:54.349Z", + "completed":"2017-06-01T10:02:54.349Z", + "new_balance":"7495.37", + "value":"-4.18" + } + }, + { + "id":"add6cf88-b9a5-47f2-baaa-8fc4bb5bfcd0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T12:38:41.763Z", + "completed":"2017-06-01T12:38:41.763Z", + "new_balance":"7491.93", + "value":"-3.44" + } + }, + { + "id":"3f39ae46-8300-41f6-8e55-d762251d5968", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T19:22:36.412Z", + "completed":"2017-06-04T19:22:36.412Z", + "new_balance":"7484.67", + "value":"-7.26" + } + }, + { + "id":"a1f2abbc-6484-4380-8136-0ffe75dc9904", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T21:49:23.318Z", + "completed":"2017-06-04T21:49:23.318Z", + "new_balance":"7478.85", + "value":"-5.82" + } + }, + { + "id":"2177cdd7-2a1e-467d-8f11-543087d16245", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T07:30:58.671Z", + "completed":"2017-06-11T07:30:58.671Z", + "new_balance":"7474.44", + "value":"-4.41" + } + }, + { + "id":"1131a4b8-9534-405f-a9e4-11c70deb4e68", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T19:49:11.679Z", + "completed":"2017-06-11T19:49:11.679Z", + "new_balance":"7466.70", + "value":"-7.74" + } + }, + { + "id":"0a019f9e-6875-4166-959c-5f5c5648a204", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T21:15:25.828Z", + "completed":"2017-06-11T21:15:25.828Z", + "new_balance":"7458.96", + "value":"-7.74" + } + }, + { + "id":"4404a14c-32cd-4368-b736-ed565f7fe205", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T06:19:58.024Z", + "completed":"2017-06-12T06:19:58.024Z", + "new_balance":"7458.35", + "value":"-0.61" + } + }, + { + "id":"3f1eea5c-532a-4b73-95a5-ca88a9297d41", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T06:26:58.727Z", + "completed":"2017-06-12T06:26:58.727Z", + "new_balance":"7454.28", + "value":"-4.07" + } + }, + { + "id":"ffec097a-62e7-4f8a-96d0-d2cada45caaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T21:15:26.565Z", + "completed":"2017-06-16T21:15:26.565Z", + "new_balance":"7444.27", + "value":"-10.01" + } + }, + { + "id":"0d8bede2-a837-4d39-b7ed-5a9617c465f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T00:22:12.659Z", + "completed":"2017-06-29T00:22:12.659Z", + "new_balance":"7440.60", + "value":"-3.67" + } + }, + { + "id":"67fc2796-803c-4904-bcc9-7b20a6cc7317", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:32:38.861Z", + "completed":"2017-06-30T01:32:38.861Z", + "new_balance":"7675.56", + "value":"234.96" + } + }, + { + "id":"b1a58169-98aa-4900-9cc5-4bded40f438d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T09:58:46.130Z", + "completed":"2017-06-30T09:58:46.130Z", + "new_balance":"7652.32", + "value":"-23.24" + } + }, + { + "id":"eb418421-4cfa-4998-a831-d973b1fb3fbc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T05:48:07.838Z", + "completed":"2017-07-01T05:48:07.838Z", + "new_balance":"7648.14", + "value":"-4.18" + } + }, + { + "id":"3c5ff8a7-28ef-4496-9cce-fd82c7bfd548", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T11:20:45.436Z", + "completed":"2017-07-01T11:20:45.436Z", + "new_balance":"7640.44", + "value":"-7.70" + } + }, + { + "id":"9cc13f1c-2758-483f-acb3-4d520c5ad39e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T15:01:32.541Z", + "completed":"2017-07-01T15:01:32.541Z", + "new_balance":"7637.00", + "value":"-3.44" + } + }, + { + "id":"7bf10692-aaba-4d48-9f2a-4a03119606ef", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T18:43:39.433Z", + "completed":"2017-07-01T18:43:39.433Z", + "new_balance":"7633.56", + "value":"-3.44" + } + }, + { + "id":"648279ef-24ad-42b5-a3c4-fb94207ae1ac", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T14:53:05.113Z", + "completed":"2017-07-05T14:53:05.113Z", + "new_balance":"7626.26", + "value":"-7.30" + } + }, + { + "id":"f4879dfe-6717-454a-8f95-9490162f82a4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T21:23:19.567Z", + "completed":"2017-07-05T21:23:19.567Z", + "new_balance":"7616.22", + "value":"-10.04" + } + }, + { + "id":"1de79c6f-d106-4c6e-9ed6-695c5a371793", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T19:04:59.259Z", + "completed":"2017-07-08T19:04:59.259Z", + "new_balance":"7614.82", + "value":"-1.40" + } + }, + { + "id":"0e7287f8-d304-4178-a849-27ccebe58203", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T03:49:45.548Z", + "completed":"2017-07-10T03:49:45.548Z", + "new_balance":"7610.16", + "value":"-4.66" + } + }, + { + "id":"237292e8-99f5-419e-ba33-269e2c5ddf31", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T05:00:05.870Z", + "completed":"2017-07-12T05:00:05.870Z", + "new_balance":"7604.75", + "value":"-5.41" + } + }, + { + "id":"2cd573c3-7de5-4941-98bb-3b1f2e662c72", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T22:38:27.602Z", + "completed":"2017-07-12T22:38:27.602Z", + "new_balance":"7601.31", + "value":"-3.44" + } + }, + { + "id":"81b6468f-2a74-4e5d-bb10-ebdae4833ee4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T14:31:26.482Z", + "completed":"2017-07-13T14:31:26.482Z", + "new_balance":"7600.80", + "value":"-0.51" + } + }, + { + "id":"a9b5d8ed-9438-49ed-8191-8e7502e79620", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T16:49:14.521Z", + "completed":"2017-07-13T16:49:14.521Z", + "new_balance":"7600.34", + "value":"-0.46" + } + }, + { + "id":"8186331b-cb21-40cf-9dd6-ac0669defe55", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T19:05:22.658Z", + "completed":"2017-07-18T19:05:22.658Z", + "new_balance":"7590.82", + "value":"-9.52" + } + }, + { + "id":"78b75bf1-b185-458d-a73e-f8614c008357", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T10:13:35.490Z", + "completed":"2017-07-20T10:13:35.490Z", + "new_balance":"7583.52", + "value":"-7.30" + } + }, + { + "id":"47fea274-28a2-46a3-93ef-333d079c28d1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T21:38:05.269Z", + "completed":"2017-07-20T21:38:05.269Z", + "new_balance":"7576.69", + "value":"-6.83" + } + }, + { + "id":"f8f68087-5860-4d19-9e38-3a0cc91618a6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T09:06:02.929Z", + "completed":"2017-07-24T09:06:02.929Z", + "new_balance":"7574.01", + "value":"-2.68" + } + }, + { + "id":"35a6a7f0-f489-44bd-9409-dcfedce3915e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T00:47:04.473Z", + "completed":"2017-07-29T00:47:04.473Z", + "new_balance":"7808.97", + "value":"234.96" + } + }, + { + "id":"bb331651-476a-4d3b-9289-e1b93dfd1516", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T04:31:04.715Z", + "completed":"2017-07-29T04:31:04.715Z", + "new_balance":"7805.30", + "value":"-3.67" + } + }, + { + "id":"e8190ce5-4e45-4f2b-b9ed-2cf3895330b2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T20:51:24.362Z", + "completed":"2017-07-30T20:51:24.362Z", + "new_balance":"7782.06", + "value":"-23.24" + } + }, + { + "id":"1ff4ab57-75d7-4aa3-9487-31f21b520f71", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:22:48.063Z", + "completed":"2017-08-01T00:22:48.063Z", + "new_balance":"7778.62", + "value":"-3.44" + } + }, + { + "id":"acd0ee60-d810-4045-8e3a-1f4a62bf513b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T05:32:27.505Z", + "completed":"2017-08-01T05:32:27.505Z", + "new_balance":"7774.44", + "value":"-4.18" + } + }, + { + "id":"c95db272-273f-45ee-b902-e42e620a65b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T10:33:31.131Z", + "completed":"2017-08-01T10:33:31.131Z", + "new_balance":"7766.74", + "value":"-7.70" + } + }, + { + "id":"7a82f0e2-410f-41d4-979e-365cf84cb536", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T15:35:06.883Z", + "completed":"2017-08-01T15:35:06.883Z", + "new_balance":"7763.30", + "value":"-3.44" + } + }, + { + "id":"0d953f76-125d-4ec6-a184-a1fccd167c53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T20:28:52.044Z", + "completed":"2017-08-03T20:28:52.044Z", + "new_balance":"7762.60", + "value":"-0.70" + } + }, + { + "id":"882474af-aad7-4082-ab2e-107b1a10cdcc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T14:21:54.154Z", + "completed":"2017-08-04T14:21:54.154Z", + "new_balance":"7755.30", + "value":"-7.30" + } + }, + { + "id":"c188f383-9c2c-4bb0-aeca-1acc5c31c437", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T00:49:37.539Z", + "completed":"2017-08-08T00:49:37.539Z", + "new_balance":"7751.50", + "value":"-3.80" + } + }, + { + "id":"0d481ff2-3770-4cf5-ab41-62615f99463f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T09:20:31.090Z", + "completed":"2017-08-08T09:20:31.090Z", + "new_balance":"7750.38", + "value":"-1.12" + } + }, + { + "id":"cc299b20-8c6f-4443-8bdb-1231c38871eb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T11:46:29.707Z", + "completed":"2017-08-08T11:46:29.707Z", + "new_balance":"7740.28", + "value":"-10.10" + } + }, + { + "id":"1562fc4f-018e-4f5c-920c-6b5f4260756a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T18:33:14.604Z", + "completed":"2017-08-08T18:33:14.604Z", + "new_balance":"7730.82", + "value":"-9.46" + } + }, + { + "id":"30653075-49dd-48ce-9a18-c20dec67b2e3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T10:34:42.543Z", + "completed":"2017-08-09T10:34:42.543Z", + "new_balance":"7726.23", + "value":"-4.59" + } + }, + { + "id":"a9750a67-53c3-4886-95aa-63da1223ab4f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T18:33:53.133Z", + "completed":"2017-08-14T18:33:53.133Z", + "new_balance":"7723.83", + "value":"-2.40" + } + }, + { + "id":"0b82d495-3503-4c57-8452-92bd02527781", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T16:46:01.719Z", + "completed":"2017-08-15T16:46:01.719Z", + "new_balance":"7720.95", + "value":"-2.88" + } + }, + { + "id":"666bd76a-7070-4d27-af9f-f4db4f656f03", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T12:02:27.214Z", + "completed":"2017-08-19T12:02:27.214Z", + "new_balance":"7720.43", + "value":"-0.52" + } + }, + { + "id":"7f87cb98-7249-4598-9259-17039695589a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T15:31:27.127Z", + "completed":"2017-08-22T15:31:27.127Z", + "new_balance":"7715.25", + "value":"-5.18" + } + }, + { + "id":"b3b2d51d-7f73-469d-b49b-a404f58623bb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T17:34:40.809Z", + "completed":"2017-08-26T17:34:40.809Z", + "new_balance":"7707.95", + "value":"-7.30" + } + }, + { + "id":"dd739848-14f4-4abd-8dbc-3b7bd104127c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T14:04:20.779Z", + "completed":"2017-08-28T14:04:20.779Z", + "new_balance":"7684.71", + "value":"-23.24" + } + }, + { + "id":"550a2f6b-d5d0-4968-8278-5a442e268bf0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T05:25:30.877Z", + "completed":"2017-08-29T05:25:30.877Z", + "new_balance":"7681.04", + "value":"-3.67" + } + }, + { + "id":"61f6fb9e-ca3d-4eae-bc42-c39e854e5a34", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T17:23:09.674Z", + "completed":"2017-08-29T17:23:09.674Z", + "new_balance":"7916.00", + "value":"234.96" + } + }, + { + "id":"6a1564a7-2961-4e79-add5-c9f201c9f0cb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T15:22:08.688Z", + "completed":"2017-08-30T15:22:08.688Z", + "new_balance":"7892.76", + "value":"-23.24" + } + }, + { + "id":"32dca9bd-c056-46c8-8780-c3e0fe3cc7b7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T09:57:19.436Z", + "completed":"2017-09-01T09:57:19.436Z", + "new_balance":"7888.58", + "value":"-4.18" + } + }, + { + "id":"1959dae7-f0ab-4074-97bf-615576691074", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T15:54:44.353Z", + "completed":"2017-09-01T15:54:44.353Z", + "new_balance":"7885.14", + "value":"-3.44" + } + }, + { + "id":"d3e42d94-8cbb-4e4e-ad63-35c90b6f44b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T17:08:51.795Z", + "completed":"2017-09-01T17:08:51.795Z", + "new_balance":"7881.70", + "value":"-3.44" + } + }, + { + "id":"d5429cab-a495-4f6f-9920-8a781570061e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T22:46:49.164Z", + "completed":"2017-09-01T22:46:49.164Z", + "new_balance":"7874.00", + "value":"-7.70" + } + }, + { + "id":"1406e89b-d90c-48da-b65e-f02aabdefb3e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T04:18:52.108Z", + "completed":"2017-09-09T04:18:52.108Z", + "new_balance":"7868.18", + "value":"-5.82" + } + }, + { + "id":"4a114281-8681-4e5a-8de4-3ff824176c9f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T17:56:45.531Z", + "completed":"2017-09-09T17:56:45.531Z", + "new_balance":"7860.92", + "value":"-7.26" + } + }, + { + "id":"daecada0-2a18-4680-812d-8958ee3d7cb8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:11:46.943Z", + "completed":"2017-09-17T13:11:46.943Z", + "new_balance":"7853.18", + "value":"-7.74" + } + }, + { + "id":"c25e84c9-24f4-4122-bf2c-5b67387d58f8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T05:39:58.854Z", + "completed":"2017-09-18T05:39:58.854Z", + "new_balance":"7845.44", + "value":"-7.74" + } + }, + { + "id":"f03ff820-293e-4a5d-93b2-d3732cb386a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:11:00.598Z", + "completed":"2017-09-18T07:11:00.598Z", + "new_balance":"7844.83", + "value":"-0.61" + } + }, + { + "id":"1a8df45e-b980-488a-a892-82d2e4133ae4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T12:01:08.142Z", + "completed":"2017-09-18T12:01:08.142Z", + "new_balance":"7840.76", + "value":"-4.07" + } + }, + { + "id":"0a4101b9-858f-4f99-a994-5a19d6ee218b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T18:04:51.433Z", + "completed":"2017-09-18T18:04:51.433Z", + "new_balance":"7836.35", + "value":"-4.41" + } + }, + { + "id":"6b42cc75-34c1-42ed-8130-605207b6c552", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T04:28:17.669Z", + "completed":"2017-09-22T04:28:17.669Z", + "new_balance":"7826.34", + "value":"-10.01" + } + }, + { + "id":"7dff2c74-5b4a-40d1-b58c-4f00709b6d7c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:47:29.981Z", + "completed":"2017-09-29T06:47:29.981Z", + "new_balance":"8061.30", + "value":"234.96" + } + }, + { + "id":"bffb8e4e-0963-43f3-a440-ca313a60c18c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T20:07:46.264Z", + "completed":"2017-09-29T20:07:46.264Z", + "new_balance":"8057.63", + "value":"-3.67" + } + }, + { + "id":"f8567bf8-50a2-47ff-b470-8861d729a5ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T07:59:10.645Z", + "completed":"2017-09-30T07:59:10.645Z", + "new_balance":"8034.39", + "value":"-23.24" + } + }, + { + "id":"304f4885-988b-4788-905a-9ca5bae660cd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T04:46:47.236Z", + "completed":"2017-10-01T04:46:47.236Z", + "new_balance":"8030.21", + "value":"-4.18" + } + }, + { + "id":"bef90efb-c2f7-4d13-bbd5-9683700ef6bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T08:46:07.945Z", + "completed":"2017-10-01T08:46:07.945Z", + "new_balance":"8026.77", + "value":"-3.44" + } + }, + { + "id":"040d63a6-dfb0-46ac-b08d-8c17a195b178", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T13:02:21.243Z", + "completed":"2017-10-01T13:02:21.243Z", + "new_balance":"8023.33", + "value":"-3.44" + } + }, + { + "id":"79c02875-2c9b-4144-bdab-69c0e103885a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T13:43:43.290Z", + "completed":"2017-10-01T13:43:43.290Z", + "new_balance":"8015.63", + "value":"-7.70" + } + }, + { + "id":"6b4b4034-8587-4bb4-ace8-9bb979ef7549", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T22:19:57.757Z", + "completed":"2017-10-02T22:19:57.757Z", + "new_balance":"8008.07", + "value":"-7.56" + } + }, + { + "id":"9a7f2c05-f5c3-472e-a0d7-222de9626f8d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T01:04:02.810Z", + "completed":"2017-10-05T01:04:02.810Z", + "new_balance":"8003.89", + "value":"-4.18" + } + }, + { + "id":"73c8d504-2372-480f-b19a-38380bcc2c24", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T03:50:55.986Z", + "completed":"2017-10-05T03:50:55.986Z", + "new_balance":"8002.65", + "value":"-1.24" + } + }, + { + "id":"30323131-62f4-467c-acce-29f514299298", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T11:14:18.820Z", + "completed":"2017-10-05T11:14:18.820Z", + "new_balance":"8002.06", + "value":"-0.59" + } + }, + { + "id":"1380a3e5-baf4-4ad8-9834-293153627faf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T13:03:04.792Z", + "completed":"2017-10-05T13:03:04.792Z", + "new_balance":"7994.76", + "value":"-7.30" + } + }, + { + "id":"ca6b812b-a3a5-41f3-b7f4-6a3465ca13b5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T13:24:09.748Z", + "completed":"2017-10-05T13:24:09.748Z", + "new_balance":"7989.31", + "value":"-5.45" + } + }, + { + "id":"8b6bde1e-279f-4419-9976-6cae80d3cc58", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T18:16:56.876Z", + "completed":"2017-10-05T18:16:56.876Z", + "new_balance":"7985.87", + "value":"-3.44" + } + }, + { + "id":"81bc1f73-d03c-4601-8d4b-d6cdd1eb1477", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T18:57:26.539Z", + "completed":"2017-10-05T18:57:26.539Z", + "new_balance":"7985.17", + "value":"-0.70" + } + }, + { + "id":"3dd278d3-49e2-41a7-9a34-bedc59b21a8a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T06:57:00.890Z", + "completed":"2017-10-09T06:57:00.890Z", + "new_balance":"7977.08", + "value":"-8.09" + } + }, + { + "id":"e5c0aa47-847f-45ce-8e9d-90b0905e700e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T17:18:43.837Z", + "completed":"2017-10-11T17:18:43.837Z", + "new_balance":"7970.96", + "value":"-6.12" + } + }, + { + "id":"cee4efd1-0309-48e3-b047-a1255f4fc867", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T02:59:48.754Z", + "completed":"2017-10-12T02:59:48.754Z", + "new_balance":"7968.28", + "value":"-2.68" + } + }, + { + "id":"2964452f-b32e-45ed-bd00-55be059f0631", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T15:13:13.770Z", + "completed":"2017-10-12T15:13:13.770Z", + "new_balance":"7960.98", + "value":"-7.30" + } + }, + { + "id":"7dc6bc64-3a94-48ce-aa7f-10ef812c21a1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T03:54:05.340Z", + "completed":"2017-10-20T03:54:05.340Z", + "new_balance":"7957.31", + "value":"-3.67" + } + }, + { + "id":"b128a70d-6057-4b2a-ae92-a47fa413a74c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T04:05:05.396Z", + "completed":"2017-10-29T04:05:05.396Z", + "new_balance":"8192.27", + "value":"234.96" + } + }, + { + "id":"46729256-f6b2-42c0-8bb7-c8a34778962a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T23:52:04.442Z", + "completed":"2017-10-30T23:52:04.442Z", + "new_balance":"8169.03", + "value":"-23.24" + } + }, + { + "id":"6cafebc2-2206-4988-88b6-57d8f9fd7deb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T04:30:19.311Z", + "completed":"2017-11-02T04:30:19.311Z", + "new_balance":"8161.33", + "value":"-7.70" + } + }, + { + "id":"6a0d6f1a-78b1-498c-acb6-d109e796a2b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T11:13:49.041Z", + "completed":"2017-11-02T11:13:49.041Z", + "new_balance":"8157.89", + "value":"-3.44" + } + }, + { + "id":"a16959d5-5381-47f4-8aec-aec334f28921", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T11:50:39.987Z", + "completed":"2017-11-02T11:50:39.987Z", + "new_balance":"8154.45", + "value":"-3.44" + } + }, + { + "id":"5fe65857-6ec5-48ef-9de8-b2fe492c8327", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T13:14:31.942Z", + "completed":"2017-11-02T13:14:31.942Z", + "new_balance":"8150.27", + "value":"-4.18" + } + }, + { + "id":"6937e42f-a719-4068-ab20-944b6b8fecaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T17:55:54.171Z", + "completed":"2017-11-04T17:55:54.171Z", + "new_balance":"8149.57", + "value":"-0.70" + } + }, + { + "id":"fa86c109-ba99-4fec-971d-3f62d4c2b862", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T18:17:12.173Z", + "completed":"2017-11-04T18:17:12.173Z", + "new_balance":"8142.27", + "value":"-7.30" + } + }, + { + "id":"5db0e534-7397-49fc-8740-5280340e795e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T06:49:24.113Z", + "completed":"2017-11-06T06:49:24.113Z", + "new_balance":"8134.83", + "value":"-7.44" + } + }, + { + "id":"e0a262a8-09cb-41ba-920c-d6208809d4f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T19:25:09.772Z", + "completed":"2017-11-07T19:25:09.772Z", + "new_balance":"8127.27", + "value":"-7.56" + } + }, + { + "id":"8b652a46-000e-41e0-b742-2568d712ceb4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T21:26:43.500Z", + "completed":"2017-11-07T21:26:43.500Z", + "new_balance":"8124.56", + "value":"-2.71" + } + }, + { + "id":"c90dc90f-6605-44b4-83ba-e132442bc9ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T00:09:02.458Z", + "completed":"2017-11-09T00:09:02.458Z", + "new_balance":"8119.97", + "value":"-4.59" + } + }, + { + "id":"ac81ef34-9601-4d1c-b195-900c30cab77d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T02:16:45.157Z", + "completed":"2017-11-09T02:16:45.157Z", + "new_balance":"8118.73", + "value":"-1.24" + } + }, + { + "id":"eef21fce-c866-4a42-80fa-c75012307676", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T02:49:54.412Z", + "completed":"2017-11-13T02:49:54.412Z", + "new_balance":"8116.60", + "value":"-2.13" + } + }, + { + "id":"d5fa1404-6703-4ef2-a3cd-44b429f1d552", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T14:39:22.734Z", + "completed":"2017-11-13T14:39:22.734Z", + "new_balance":"8113.89", + "value":"-2.71" + } + }, + { + "id":"5ebe4cd6-97b2-418f-8e70-86ca8e10d9b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T18:29:04.406Z", + "completed":"2017-11-13T18:29:04.406Z", + "new_balance":"8113.19", + "value":"-0.70" + } + }, + { + "id":"b587b8f7-1162-4c77-b8fa-b72b9b7f4777", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T03:19:08.593Z", + "completed":"2017-11-14T03:19:08.593Z", + "new_balance":"8108.73", + "value":"-4.46" + } + }, + { + "id":"da277045-c073-4ffe-b859-49dd7bb5c61f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T23:08:20.787Z", + "completed":"2017-11-14T23:08:20.787Z", + "new_balance":"8101.43", + "value":"-7.30" + } + }, + { + "id":"1681603c-b8bc-403a-8df0-022c7736144b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T08:28:27.083Z", + "completed":"2017-11-15T08:28:27.083Z", + "new_balance":"8097.76", + "value":"-3.67" + } + }, + { + "id":"95264b49-45a6-4348-b02e-9cc71b1f5064", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T14:32:21.475Z", + "completed":"2017-11-30T14:32:21.475Z", + "new_balance":"8074.52", + "value":"-23.24" + } + }, + { + "id":"7e450c10-2dd5-45f2-8ff7-3000782df132", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T23:25:28.950Z", + "completed":"2017-11-30T23:25:28.950Z", + "new_balance":"8309.48", + "value":"234.96" + } + }, + { + "id":"5986d581-692b-44ec-aad6-5e7f00a342d1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:16:37.655Z", + "completed":"2017-12-01T00:16:37.655Z", + "new_balance":"8306.04", + "value":"-3.44" + } + }, + { + "id":"f47abb23-16db-4416-a190-a82ac89e04c4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T01:57:01.423Z", + "completed":"2017-12-01T01:57:01.423Z", + "new_balance":"8301.86", + "value":"-4.18" + } + }, + { + "id":"5f6a833d-d8d2-4f27-988b-4270b7f11efc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T02:17:47.426Z", + "completed":"2017-12-01T02:17:47.426Z", + "new_balance":"8294.16", + "value":"-7.70" + } + }, + { + "id":"56dd38c6-45dd-41be-80d0-d1144dc07a5c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T19:33:32.155Z", + "completed":"2017-12-01T19:33:32.155Z", + "new_balance":"8290.72", + "value":"-3.44" + } + }, + { + "id":"34becefb-f90b-4eed-b1fd-edbbc25474d0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T17:30:17.762Z", + "completed":"2017-12-04T17:30:17.762Z", + "new_balance":"8283.46", + "value":"-7.26" + } + }, + { + "id":"5ffdab3e-9103-45da-b103-8636ef4cae2d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T22:15:13.177Z", + "completed":"2017-12-04T22:15:13.177Z", + "new_balance":"8277.64", + "value":"-5.82" + } + }, + { + "id":"7d69eaaa-01a2-4f67-aa71-703a9e44e75c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T01:20:40.479Z", + "completed":"2017-12-11T01:20:40.479Z", + "new_balance":"8269.90", + "value":"-7.74" + } + }, + { + "id":"6571c5b1-f9ea-4739-8ac5-ba13c65752a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T18:11:52.547Z", + "completed":"2017-12-11T18:11:52.547Z", + "new_balance":"8265.49", + "value":"-4.41" + } + }, + { + "id":"3491fb06-5379-4126-a818-b8fa2fec4213", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T20:13:36.058Z", + "completed":"2017-12-11T20:13:36.058Z", + "new_balance":"8257.75", + "value":"-7.74" + } + }, + { + "id":"b9d99beb-c150-4ab1-9268-423abe2ec1da", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T09:18:57.670Z", + "completed":"2017-12-12T09:18:57.670Z", + "new_balance":"8257.14", + "value":"-0.61" + } + }, + { + "id":"5faa01d1-5b02-401c-9d5b-b51ac523031c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T19:44:40.650Z", + "completed":"2017-12-12T19:44:40.650Z", + "new_balance":"8253.07", + "value":"-4.07" + } + }, + { + "id":"bcf2ad69-4c37-4f1f-baa0-14a12fbbdeff", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:29:09.597Z", + "completed":"2017-12-16T02:29:09.597Z", + "new_balance":"8243.06", + "value":"-10.01" + } + }, + { + "id":"e6e62a7d-7f3e-4674-9d10-e38b8a46bc28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T14:17:37.235Z", + "completed":"2017-12-29T14:17:37.235Z", + "new_balance":"8239.39", + "value":"-3.67" + } + }, + { + "id":"d7b0a0ed-26c7-4ddd-b617-e712ab3e517e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T04:05:33.048Z", + "completed":"2017-12-30T04:05:33.048Z", + "new_balance":"8216.15", + "value":"-23.24" + } + }, + { + "id":"84bdb121-e43d-4ab5-835d-f7ecb455cd62", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T13:24:04.516Z", + "completed":"2017-12-30T13:24:04.516Z", + "new_balance":"8451.11", + "value":"234.96" + } + }, + { + "id":"7db9156a-b171-41ec-8664-64eea5c59b1b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T21:28:27.505Z", + "completed":"2016-01-01T21:28:27.505Z", + "new_balance":"2921.99", + "value":"-6.40" + } + }, + { + "id":"9dfc87b0-e486-4659-857e-6c83e2d5d98b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T23:01:59.168Z", + "completed":"2016-01-01T23:01:59.168Z", + "new_balance":"2915.59", + "value":"-6.40" + } + }, + { + "id":"5b7dfbc4-6c29-465d-a70d-8c0bf0ac8eab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T04:27:36.159Z", + "completed":"2016-01-03T04:27:36.159Z", + "new_balance":"2913.13", + "value":"-2.46" + } + }, + { + "id":"891ec60c-ab72-48d9-9f1a-4e687275e38e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T12:45:07.089Z", + "completed":"2016-01-03T12:45:07.089Z", + "new_balance":"2905.94", + "value":"-7.19" + } + }, + { + "id":"c2f7e015-1a83-44b0-b78f-6b7fe3b6b904", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T14:51:03.287Z", + "completed":"2016-01-03T14:51:03.287Z", + "new_balance":"2902.50", + "value":"-3.44" + } + }, + { + "id":"84448978-a267-4256-89f7-808c073704b1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T18:30:21.512Z", + "completed":"2016-01-03T18:30:21.512Z", + "new_balance":"2844.27", + "value":"-58.23" + } + }, + { + "id":"6578c4da-920a-422a-9df2-03dd1d1e7376", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T04:28:02.180Z", + "completed":"2016-01-05T04:28:02.180Z", + "new_balance":"2843.12", + "value":"-1.15" + } + }, + { + "id":"ff805aa6-f695-490b-ab08-6b3e2f92fed3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T17:28:17.774Z", + "completed":"2016-01-05T17:28:17.774Z", + "new_balance":"2837.97", + "value":"-5.15" + } + }, + { + "id":"a614f2f4-8576-4011-91f1-6b7ef3ad4e45", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T17:48:26.366Z", + "completed":"2016-01-05T17:48:26.366Z", + "new_balance":"2833.55", + "value":"-4.42" + } + }, + { + "id":"46c3ab23-5bfa-4490-ad95-31c140775d2d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T02:39:53.331Z", + "completed":"2016-01-06T02:39:53.331Z", + "new_balance":"2829.88", + "value":"-3.67" + } + }, + { + "id":"41fcedb7-19e9-4dbe-941a-b3c934f071ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T23:14:55.690Z", + "completed":"2016-01-06T23:14:55.690Z", + "new_balance":"2827.56", + "value":"-2.32" + } + }, + { + "id":"6fa4cf39-d826-4cbf-b4c0-98e012f1425b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T16:16:04.793Z", + "completed":"2016-01-07T16:16:04.793Z", + "new_balance":"2823.09", + "value":"-4.47" + } + }, + { + "id":"f4575151-4b6c-4fed-8338-d0f2ec3dae71", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T16:59:26.083Z", + "completed":"2016-01-10T16:59:26.083Z", + "new_balance":"2817.94", + "value":"-5.15" + } + }, + { + "id":"39086317-db9d-40ca-bb1d-939448b99ecb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T20:55:07.418Z", + "completed":"2016-01-10T20:55:07.418Z", + "new_balance":"2815.56", + "value":"-2.38" + } + }, + { + "id":"e083f723-496e-41ab-b497-33132bc26de4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:15:59.754Z", + "completed":"2016-01-12T04:15:59.754Z", + "new_balance":"2812.83", + "value":"-2.73" + } + }, + { + "id":"ab7ed841-b6df-46c3-a180-a5ee0d2aa4cd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T12:14:22.173Z", + "completed":"2016-01-12T12:14:22.173Z", + "new_balance":"2808.36", + "value":"-4.47" + } + }, + { + "id":"427d546d-0319-40d9-b990-a7df0f478f08", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:21:30.135Z", + "completed":"2016-01-12T22:21:30.135Z", + "new_balance":"2805.90", + "value":"-2.46" + } + }, + { + "id":"3f1c5776-b4b5-4a68-8943-f3718f8f9430", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T10:15:37.614Z", + "completed":"2016-01-15T10:15:37.614Z", + "new_balance":"2803.27", + "value":"-2.63" + } + }, + { + "id":"be8f85a2-f7fa-49df-a965-9636268c6faf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T10:08:59.884Z", + "completed":"2016-01-16T10:08:59.884Z", + "new_balance":"2802.31", + "value":"-0.96" + } + }, + { + "id":"3f4dc069-1a7c-4e13-bf74-c9718b2b9357", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T19:25:20.104Z", + "completed":"2016-01-16T19:25:20.104Z", + "new_balance":"2797.16", + "value":"-5.15" + } + }, + { + "id":"0e53f089-29cf-4143-b295-547bad9dc365", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T00:58:45.110Z", + "completed":"2016-01-17T00:58:45.110Z", + "new_balance":"2794.57", + "value":"-2.59" + } + }, + { + "id":"8d3a697d-1a8c-4210-841e-098fc084595c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T01:25:15.743Z", + "completed":"2016-01-17T01:25:15.743Z", + "new_balance":"2787.82", + "value":"-6.75" + } + }, + { + "id":"5448ced4-07bc-40d3-8ab3-0d396938b43f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T09:25:47.050Z", + "completed":"2016-01-19T09:25:47.050Z", + "new_balance":"2785.40", + "value":"-2.42" + } + }, + { + "id":"b9aa9cdd-8d3d-4ec2-bc54-5375663b66aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T21:30:10.516Z", + "completed":"2016-01-20T21:30:10.516Z", + "new_balance":"2780.25", + "value":"-5.15" + } + }, + { + "id":"6f16981b-777d-48c0-93d3-0f7290581801", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:10:21.938Z", + "completed":"2016-01-23T22:10:21.938Z", + "new_balance":"2778.83", + "value":"-1.42" + } + }, + { + "id":"8b6c1ffc-4bd7-45d5-9c40-9d2d544787d2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T12:16:36.435Z", + "completed":"2016-01-26T12:16:36.435Z", + "new_balance":"2774.02", + "value":"-4.81" + } + }, + { + "id":"1eec3d66-9e35-4e8e-9f29-e1f3ac72675c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T13:52:12.007Z", + "completed":"2016-01-27T13:52:12.007Z", + "new_balance":"2879.65", + "value":"105.63" + } + }, + { + "id":"bd4d1f11-6be4-4462-b2d7-6875b9be7a07", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T05:13:12.677Z", + "completed":"2016-01-28T05:13:12.677Z", + "new_balance":"2876.21", + "value":"-3.44" + } + }, + { + "id":"d97c87f1-1406-49bf-82e8-2ce1d4a93b7d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T09:54:57.384Z", + "completed":"2016-01-30T09:54:57.384Z", + "new_balance":"2871.94", + "value":"-4.27" + } + }, + { + "id":"d075870c-0276-466e-87d8-8d776a85f6b7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T00:51:11.407Z", + "completed":"2016-02-03T00:51:11.407Z", + "new_balance":"2864.75", + "value":"-7.19" + } + }, + { + "id":"00a71472-9149-4b62-ac90-7b3adf65086f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T02:56:36.996Z", + "completed":"2016-02-03T02:56:36.996Z", + "new_balance":"2862.29", + "value":"-2.46" + } + }, + { + "id":"8f88114d-14b2-47d0-9218-b01cf45128cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T08:59:57.456Z", + "completed":"2016-02-03T08:59:57.456Z", + "new_balance":"2804.06", + "value":"-58.23" + } + }, + { + "id":"3d67e897-68c7-475c-a4ae-4e916eab61e3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T22:32:31.858Z", + "completed":"2016-02-03T22:32:31.858Z", + "new_balance":"2800.62", + "value":"-3.44" + } + }, + { + "id":"8c0b8637-967f-4bee-af37-870151766f68", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:27:26.676Z", + "completed":"2016-02-08T15:27:26.676Z", + "new_balance":"2796.20", + "value":"-4.42" + } + }, + { + "id":"71635d12-270a-4dfc-bb6a-f1632220627e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T16:14:08.125Z", + "completed":"2016-02-08T16:14:08.125Z", + "new_balance":"2791.05", + "value":"-5.15" + } + }, + { + "id":"5851b4c8-5de9-4d0f-b33a-f3aeb3d80a74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T15:08:43.813Z", + "completed":"2016-02-11T15:08:43.813Z", + "new_balance":"2792.16", + "value":"1.11" + } + }, + { + "id":"2bd7ed0f-c8a8-4d75-aff9-8f6f72a08582", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T05:06:22.871Z", + "completed":"2016-02-13T05:06:22.871Z", + "new_balance":"2789.84", + "value":"-2.32" + } + }, + { + "id":"a021aa39-1a59-42a0-895f-491b289c12ab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T00:33:24.898Z", + "completed":"2016-02-14T00:33:24.898Z", + "new_balance":"2786.81", + "value":"-3.03" + } + }, + { + "id":"de1b71cd-b413-478e-ad17-53ad58ff20df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T03:30:31.997Z", + "completed":"2016-02-17T03:30:31.997Z", + "new_balance":"2785.41", + "value":"-1.40" + } + }, + { + "id":"cdcb325b-dff9-4411-95e6-fe8b39ecdd61", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T03:55:34.866Z", + "completed":"2016-02-21T03:55:34.866Z", + "new_balance":"2780.92", + "value":"-4.49" + } + }, + { + "id":"9a13a24b-da63-4850-8062-b5e4600f232f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T01:25:53.293Z", + "completed":"2016-02-23T01:25:53.293Z", + "new_balance":"2775.77", + "value":"-5.15" + } + }, + { + "id":"bee7289d-45d1-4b3e-8cc4-416209cb8b7c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T09:11:28.968Z", + "completed":"2016-02-23T09:11:28.968Z", + "new_balance":"2771.53", + "value":"-4.24" + } + }, + { + "id":"5d6e1faa-12f9-44d0-8e73-93d2f7b7cea8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T00:05:22.804Z", + "completed":"2016-02-24T00:05:22.804Z", + "new_balance":"2770.13", + "value":"-1.40" + } + }, + { + "id":"cc4121be-0101-4e3c-98a7-9e7324bb70ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T00:18:19.813Z", + "completed":"2016-02-27T00:18:19.813Z", + "new_balance":"2875.76", + "value":"105.63" + } + }, + { + "id":"c1ec3c57-2a86-44d7-9733-901b8f64ed57", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T10:35:16.211Z", + "completed":"2016-02-27T10:35:16.211Z", + "new_balance":"2873.74", + "value":"-2.02" + } + }, + { + "id":"73fe46bb-55ee-4b30-8b94-1a8d758cca93", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T22:28:08.680Z", + "completed":"2016-02-27T22:28:08.680Z", + "new_balance":"2868.93", + "value":"-4.81" + } + }, + { + "id":"9be94a7e-7904-4d25-8200-6945855dfa43", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T09:21:41.589Z", + "completed":"2016-02-28T09:21:41.589Z", + "new_balance":"2865.49", + "value":"-3.44" + } + }, + { + "id":"465afeb0-0578-4a78-ab7b-f257daeaa04c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T09:27:15.000Z", + "completed":"2016-02-28T09:27:15.000Z", + "new_balance":"2861.22", + "value":"-4.27" + } + }, + { + "id":"b561015d-7d23-420e-abf4-817bec619dd6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T07:18:38.811Z", + "completed":"2016-03-01T07:18:38.811Z", + "new_balance":"2854.82", + "value":"-6.40" + } + }, + { + "id":"3b557447-e943-4949-9368-7d417b654dae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T06:52:18.859Z", + "completed":"2016-03-03T06:52:18.859Z", + "new_balance":"2796.59", + "value":"-58.23" + } + }, + { + "id":"a6a18074-4166-481a-b7d2-28f0f1596e2a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T08:21:59.961Z", + "completed":"2016-03-03T08:21:59.961Z", + "new_balance":"2789.40", + "value":"-7.19" + } + }, + { + "id":"e0431a88-8e17-43eb-8c68-bd36bc56f068", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T12:28:22.453Z", + "completed":"2016-03-03T12:28:22.453Z", + "new_balance":"2785.96", + "value":"-3.44" + } + }, + { + "id":"188c8a31-0a00-42e8-a2b0-b729ccda2991", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T19:22:16.505Z", + "completed":"2016-03-03T19:22:16.505Z", + "new_balance":"2783.50", + "value":"-2.46" + } + }, + { + "id":"dd59b85d-9d97-4b7e-9ff2-35c6c528919e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T19:55:20.522Z", + "completed":"2016-03-05T19:55:20.522Z", + "new_balance":"2778.35", + "value":"-5.15" + } + }, + { + "id":"c2c05a49-c85c-496c-a152-02e4d37db7a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T22:16:09.005Z", + "completed":"2016-03-05T22:16:09.005Z", + "new_balance":"2773.46", + "value":"-4.89" + } + }, + { + "id":"a537606b-cddb-43bf-918f-12bfe75b8d3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T01:50:44.738Z", + "completed":"2016-03-07T01:50:44.738Z", + "new_balance":"2771.59", + "value":"-1.87" + } + }, + { + "id":"d917ba96-cdcd-4849-9f42-4f75cdb15bd7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T04:18:24.224Z", + "completed":"2016-03-09T04:18:24.224Z", + "new_balance":"2766.44", + "value":"-5.15" + } + }, + { + "id":"a32c6571-d6ba-44a6-bfdb-f79204c106c3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T14:13:00.290Z", + "completed":"2016-03-11T14:13:00.290Z", + "new_balance":"2764.86", + "value":"-1.58" + } + }, + { + "id":"a73bc9df-28ba-401e-b6ba-b4645ea18f03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:10:41.780Z", + "completed":"2016-03-13T04:10:41.780Z", + "new_balance":"2757.94", + "value":"-6.92" + } + }, + { + "id":"f59ca50e-851a-48fd-9428-16bd993ae563", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T03:29:48.709Z", + "completed":"2016-03-14T03:29:48.709Z", + "new_balance":"2756.70", + "value":"-1.24" + } + }, + { + "id":"14c9e421-33a1-4ee4-88e1-7fb8969c0a0f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T17:25:51.461Z", + "completed":"2016-03-14T17:25:51.461Z", + "new_balance":"2764.99", + "value":"8.29" + } + }, + { + "id":"f9265ecd-1ea0-4277-a73f-e55c6d9df40f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T21:34:10.337Z", + "completed":"2016-03-15T21:34:10.337Z", + "new_balance":"2760.72", + "value":"-4.27" + } + }, + { + "id":"bdcf85f7-e241-49f5-a188-5864d971d63f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:16:05.574Z", + "completed":"2016-03-26T01:16:05.574Z", + "new_balance":"2758.58", + "value":"-2.14" + } + }, + { + "id":"dd651247-f7a5-4d37-91ee-6ecdeb8eb2fd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T07:29:58.236Z", + "completed":"2016-03-26T07:29:58.236Z", + "new_balance":"2753.89", + "value":"-4.69" + } + }, + { + "id":"bd878962-42d3-4059-b7fd-59523e7bfdb1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T21:56:33.024Z", + "completed":"2016-03-26T21:56:33.024Z", + "new_balance":"2751.90", + "value":"-1.99" + } + }, + { + "id":"eadd6fe0-4b65-4e32-8758-e36f751e5a87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T01:40:24.640Z", + "completed":"2016-03-27T01:40:24.640Z", + "new_balance":"2857.53", + "value":"105.63" + } + }, + { + "id":"be98446b-b8ca-42ae-b10f-2bacccbd42fd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T09:08:36.360Z", + "completed":"2016-03-27T09:08:36.360Z", + "new_balance":"2853.11", + "value":"-4.42" + } + }, + { + "id":"2511a6f1-92ec-47c8-a963-b436ba7740c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T11:24:16.042Z", + "completed":"2016-03-27T11:24:16.042Z", + "new_balance":"2847.96", + "value":"-5.15" + } + }, + { + "id":"2af501cb-c2da-4a34-a333-07e3e79029b9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T16:53:41.741Z", + "completed":"2016-03-28T16:53:41.741Z", + "new_balance":"2844.52", + "value":"-3.44" + } + }, + { + "id":"41bf1e95-ddc7-4f43-9b63-034503113e92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T00:00:55.689Z", + "completed":"2016-03-30T00:00:55.689Z", + "new_balance":"2840.25", + "value":"-4.27" + } + }, + { + "id":"f6d8b792-789b-46d5-a009-066537d348a0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T00:54:30.262Z", + "completed":"2016-04-01T00:54:30.262Z", + "new_balance":"2833.06", + "value":"-7.19" + } + }, + { + "id":"5675b866-39ac-4095-9325-cf4ae0b20cae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T02:59:47.545Z", + "completed":"2016-04-01T02:59:47.545Z", + "new_balance":"2829.62", + "value":"-3.44" + } + }, + { + "id":"d79c968f-d24c-4ce4-b0f0-d071bf5226f7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T04:20:56.869Z", + "completed":"2016-04-01T04:20:56.869Z", + "new_balance":"2771.39", + "value":"-58.23" + } + }, + { + "id":"1e6e3bdb-a5a2-40d1-b95e-ca1e0dfd6a7b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T06:59:22.477Z", + "completed":"2016-04-01T06:59:22.477Z", + "new_balance":"2764.99", + "value":"-6.40" + } + }, + { + "id":"3a175b5a-9359-45da-b386-91d205485b20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T20:58:36.024Z", + "completed":"2016-04-01T20:58:36.024Z", + "new_balance":"2762.53", + "value":"-2.46" + } + }, + { + "id":"3c4a1613-ebfc-456a-a3b7-4dba98ad6edb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T11:43:21.371Z", + "completed":"2016-04-05T11:43:21.371Z", + "new_balance":"2757.38", + "value":"-5.15" + } + }, + { + "id":"fb581163-3cb4-4d1b-8b50-8c24ba036e38", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T11:54:11.220Z", + "completed":"2016-04-05T11:54:11.220Z", + "new_balance":"2753.71", + "value":"-3.67" + } + }, + { + "id":"b0c2cdce-a0ad-4294-bcdc-292ba2abe011", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T16:04:25.420Z", + "completed":"2016-04-05T16:04:25.420Z", + "new_balance":"2752.56", + "value":"-1.15" + } + }, + { + "id":"a795cd58-0b22-4a06-b6ab-155602e3a9e4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T18:05:18.497Z", + "completed":"2016-04-05T18:05:18.497Z", + "new_balance":"2748.14", + "value":"-4.42" + } + }, + { + "id":"2931a9e8-b594-41b1-9c5a-034e2371a267", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T18:08:17.895Z", + "completed":"2016-04-07T18:08:17.895Z", + "new_balance":"2745.82", + "value":"-2.32" + } + }, + { + "id":"5dc48f5f-a245-4da1-aa78-9dfafdd167d3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T09:16:41.372Z", + "completed":"2016-04-09T09:16:41.372Z", + "new_balance":"2743.44", + "value":"-2.38" + } + }, + { + "id":"a970e804-9f50-4df4-9f0c-e915bbb7daff", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T11:50:47.913Z", + "completed":"2016-04-09T11:50:47.913Z", + "new_balance":"2738.29", + "value":"-5.15" + } + }, + { + "id":"553f9c45-cacd-4adb-8178-9f1d199b4130", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T00:15:26.725Z", + "completed":"2016-04-10T00:15:26.725Z", + "new_balance":"2735.56", + "value":"-2.73" + } + }, + { + "id":"2a5ddf97-56f0-4105-b685-f30d26eefeef", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T07:47:31.644Z", + "completed":"2016-04-10T07:47:31.644Z", + "new_balance":"2733.10", + "value":"-2.46" + } + }, + { + "id":"62938fe6-7333-47fa-bd77-fe5b543a1818", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T12:37:38.802Z", + "completed":"2016-04-10T12:37:38.802Z", + "new_balance":"2730.47", + "value":"-2.63" + } + }, + { + "id":"6df725b4-e959-45b3-b91a-647ded6934fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T20:03:14.188Z", + "completed":"2016-04-10T20:03:14.188Z", + "new_balance":"2726.00", + "value":"-4.47" + } + }, + { + "id":"0fb067cd-3610-49f4-8366-f01754d0f6b6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T03:13:37.860Z", + "completed":"2016-04-11T03:13:37.860Z", + "new_balance":"2723.58", + "value":"-2.42" + } + }, + { + "id":"6d45b519-bf9e-4157-aae1-e7577c47243c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T18:04:25.146Z", + "completed":"2016-04-11T18:04:25.146Z", + "new_balance":"2720.99", + "value":"-2.59" + } + }, + { + "id":"d077146d-23ae-4236-8803-c9d34d46ef8f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T19:25:07.624Z", + "completed":"2016-04-11T19:25:07.624Z", + "new_balance":"2715.84", + "value":"-5.15" + } + }, + { + "id":"e8855b32-332a-4434-9746-0018376d4e11", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T20:27:03.517Z", + "completed":"2016-04-11T20:27:03.517Z", + "new_balance":"2709.09", + "value":"-6.75" + } + }, + { + "id":"c7cf79ce-2706-4a37-9e05-82f1728f09f7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T23:44:08.290Z", + "completed":"2016-04-11T23:44:08.290Z", + "new_balance":"2708.13", + "value":"-0.96" + } + }, + { + "id":"a50e2d5c-cbbb-4546-b333-0f6203eb409b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T16:34:22.032Z", + "completed":"2016-04-21T16:34:22.032Z", + "new_balance":"2702.98", + "value":"-5.15" + } + }, + { + "id":"168993cb-0b23-4864-a846-4ca775eaa02c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T03:31:03.459Z", + "completed":"2016-04-23T03:31:03.459Z", + "new_balance":"2701.56", + "value":"-1.42" + } + }, + { + "id":"9391948b-0af8-401e-8037-e9e9417b4114", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T00:35:49.966Z", + "completed":"2016-04-29T00:35:49.966Z", + "new_balance":"2807.19", + "value":"105.63" + } + }, + { + "id":"b35d6b2f-37ca-4a2a-b4f7-4d24b67fb29f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T19:17:12.691Z", + "completed":"2016-04-29T19:17:12.691Z", + "new_balance":"2803.75", + "value":"-3.44" + } + }, + { + "id":"6e80ba92-b180-4a29-be40-201e865c7f9b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T23:22:22.782Z", + "completed":"2016-04-29T23:22:22.782Z", + "new_balance":"2798.94", + "value":"-4.81" + } + }, + { + "id":"55a4fb9e-8180-4da6-b227-d4656d0959ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T12:47:49.385Z", + "completed":"2016-04-30T12:47:49.385Z", + "new_balance":"2794.67", + "value":"-4.27" + } + }, + { + "id":"4c75937c-1060-4645-ad5a-a94451762617", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T02:59:11.459Z", + "completed":"2016-05-02T02:59:11.459Z", + "new_balance":"2736.44", + "value":"-58.23" + } + }, + { + "id":"05d414e1-c00e-45d8-8a06-00e9c9530a71", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T06:14:58.400Z", + "completed":"2016-05-02T06:14:58.400Z", + "new_balance":"2729.25", + "value":"-7.19" + } + }, + { + "id":"b33d7bab-2aea-42d7-8338-ca462a44bd20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T07:32:14.294Z", + "completed":"2016-05-02T07:32:14.294Z", + "new_balance":"2722.85", + "value":"-6.40" + } + }, + { + "id":"a11ab18e-d8bf-4c67-b4ea-f986690e2a15", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T07:46:39.698Z", + "completed":"2016-05-02T07:46:39.698Z", + "new_balance":"2720.39", + "value":"-2.46" + } + }, + { + "id":"ca33042f-0990-4e2d-9c51-1409a05c9be2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T08:04:29.425Z", + "completed":"2016-05-06T08:04:29.425Z", + "new_balance":"2715.97", + "value":"-4.42" + } + }, + { + "id":"66d98d15-a0aa-469b-84e7-2c8e2866a5a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T08:47:21.198Z", + "completed":"2016-05-07T08:47:21.198Z", + "new_balance":"2711.48", + "value":"-4.49" + } + }, + { + "id":"21595baf-b9db-4a6b-b7a6-ac8b3bc57a46", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T09:36:54.804Z", + "completed":"2016-05-07T09:36:54.804Z", + "new_balance":"2709.16", + "value":"-2.32" + } + }, + { + "id":"95260072-1bbb-4b70-9d89-bbd2052db810", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:24:13.056Z", + "completed":"2016-05-07T20:24:13.056Z", + "new_balance":"2707.76", + "value":"-1.40" + } + }, + { + "id":"f41ee8bd-fed6-4958-9ccb-bfb1975394f8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T23:04:24.545Z", + "completed":"2016-05-07T23:04:24.545Z", + "new_balance":"2704.73", + "value":"-3.03" + } + }, + { + "id":"2033ef2a-5602-4be7-8c48-33472b076618", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T02:08:14.912Z", + "completed":"2016-05-08T02:08:14.912Z", + "new_balance":"2700.49", + "value":"-4.24" + } + }, + { + "id":"51dfba83-fda1-4851-8980-ca739341c5e7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T17:07:11.484Z", + "completed":"2016-05-09T17:07:11.484Z", + "new_balance":"2697.05", + "value":"-3.44" + } + }, + { + "id":"d01a0c5d-fc3e-4fa1-9069-c869b2e19c94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T02:14:21.265Z", + "completed":"2016-05-13T02:14:21.265Z", + "new_balance":"2691.90", + "value":"-5.15" + } + }, + { + "id":"3d60cce5-b234-4dff-9026-7b293a815906", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T08:20:17.186Z", + "completed":"2016-05-26T08:20:17.186Z", + "new_balance":"2686.75", + "value":"-5.15" + } + }, + { + "id":"2162b448-39aa-440a-bdc7-80d0913a17bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T20:27:56.970Z", + "completed":"2016-05-26T20:27:56.970Z", + "new_balance":"2685.35", + "value":"-1.40" + } + }, + { + "id":"c3405cf9-e298-4937-abc9-fb70a2dfa6aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T14:59:10.361Z", + "completed":"2016-05-27T14:59:10.361Z", + "new_balance":"2680.54", + "value":"-4.81" + } + }, + { + "id":"fcb1a2ea-38fd-4d9f-8091-00a967d339a3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T22:13:01.295Z", + "completed":"2016-05-27T22:13:01.295Z", + "new_balance":"2678.52", + "value":"-2.02" + } + }, + { + "id":"a8faf270-6b0a-41ae-a769-da8773602dc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T00:46:43.658Z", + "completed":"2016-05-30T00:46:43.658Z", + "new_balance":"2675.08", + "value":"-3.44" + } + }, + { + "id":"8dd14e0c-8f7e-4f00-90df-04ff0708a6cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T10:10:24.004Z", + "completed":"2016-05-30T10:10:24.004Z", + "new_balance":"2670.81", + "value":"-4.27" + } + }, + { + "id":"7f254f64-7d5b-4318-89b7-34f49bb8c569", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T15:44:53.132Z", + "completed":"2016-05-30T15:44:53.132Z", + "new_balance":"2776.44", + "value":"105.63" + } + }, + { + "id":"4454b91e-4c6d-4b5c-aa34-5040d1fbc495", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T05:52:11.159Z", + "completed":"2016-06-01T05:52:11.159Z", + "new_balance":"2773.98", + "value":"-2.46" + } + }, + { + "id":"f08f1dd8-34d0-424e-85c4-f6a516d0f578", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T11:17:36.071Z", + "completed":"2016-06-01T11:17:36.071Z", + "new_balance":"2768.83", + "value":"-5.15" + } + }, + { + "id":"1d3aa412-719d-4b91-b57e-a281b66c180d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T13:48:20.449Z", + "completed":"2016-06-01T13:48:20.449Z", + "new_balance":"2763.94", + "value":"-4.89" + } + }, + { + "id":"20fb19c0-0f3e-432d-8b9b-7c489afe1d55", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T16:31:40.408Z", + "completed":"2016-06-01T16:31:40.408Z", + "new_balance":"2760.50", + "value":"-3.44" + } + }, + { + "id":"abad44d2-2829-4e0b-ae78-4c1603324f06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:43:53.064Z", + "completed":"2016-06-01T16:43:53.064Z", + "new_balance":"2753.31", + "value":"-7.19" + } + }, + { + "id":"223a1c1d-fe67-44cb-901a-51b049807869", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T17:50:58.447Z", + "completed":"2016-06-01T17:50:58.447Z", + "new_balance":"2695.08", + "value":"-58.23" + } + }, + { + "id":"a8ffa21b-8683-43e5-bece-be0ebd73faf5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T18:19:35.617Z", + "completed":"2016-06-01T18:19:35.617Z", + "new_balance":"2689.93", + "value":"-5.15" + } + }, + { + "id":"f37edee5-47be-4fbd-ab29-2ced73614b84", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:50:54.637Z", + "completed":"2016-06-01T18:50:54.637Z", + "new_balance":"2683.53", + "value":"-6.40" + } + }, + { + "id":"38a72e5e-82b4-4039-9b2e-403f1fb078e4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:00:06.009Z", + "completed":"2016-06-01T22:00:06.009Z", + "new_balance":"2681.66", + "value":"-1.87" + } + }, + { + "id":"8890856a-e980-4175-8537-066f7ee90f25", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T11:31:56.758Z", + "completed":"2016-06-02T11:31:56.758Z", + "new_balance":"2680.08", + "value":"-1.58" + } + }, + { + "id":"ded466e8-918c-42be-8f69-4be5e907cf94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T17:12:01.448Z", + "completed":"2016-06-02T17:12:01.448Z", + "new_balance":"2673.16", + "value":"-6.92" + } + }, + { + "id":"b1d4d015-37e2-482e-a536-d7a8eb31beb9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T17:59:28.957Z", + "completed":"2016-06-02T17:59:28.957Z", + "new_balance":"2671.92", + "value":"-1.24" + } + }, + { + "id":"6736bbe5-4933-47ea-8e1c-a45af979109b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T00:35:21.762Z", + "completed":"2016-06-04T00:35:21.762Z", + "new_balance":"2669.78", + "value":"-2.14" + } + }, + { + "id":"c52c2fd8-84e7-439d-9397-be576a00863a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T10:07:50.933Z", + "completed":"2016-06-04T10:07:50.933Z", + "new_balance":"2665.09", + "value":"-4.69" + } + }, + { + "id":"98e18c7f-da15-4971-9b3c-e278ffe8d83e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T16:17:10.856Z", + "completed":"2016-06-04T16:17:10.856Z", + "new_balance":"2660.82", + "value":"-4.27" + } + }, + { + "id":"aceb762f-81e2-4f43-b01e-fa5d3ed71314", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T04:59:28.273Z", + "completed":"2016-06-05T04:59:28.273Z", + "new_balance":"2656.40", + "value":"-4.42" + } + }, + { + "id":"3a5f7fd2-f5c3-4b72-8571-3040bab57c03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T14:16:59.957Z", + "completed":"2016-06-05T14:16:59.957Z", + "new_balance":"2654.41", + "value":"-1.99" + } + }, + { + "id":"fc1e4a85-8c0b-4d0e-b7e5-ceece260e02e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T10:51:43.853Z", + "completed":"2016-06-18T10:51:43.853Z", + "new_balance":"2649.26", + "value":"-5.15" + } + }, + { + "id":"04723bcd-dc46-42a2-a6d5-4a22c541dc58", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T02:06:20.300Z", + "completed":"2016-06-30T02:06:20.300Z", + "new_balance":"2646.15", + "value":"-3.11" + } + }, + { + "id":"d098c49f-d646-45cd-8e65-f91e2938bbea", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T02:13:14.764Z", + "completed":"2016-06-30T02:13:14.764Z", + "new_balance":"2642.71", + "value":"-3.44" + } + }, + { + "id":"18b62128-0409-4160-a8e5-3c7e872dd1ae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T17:41:16.992Z", + "completed":"2016-06-30T17:41:16.992Z", + "new_balance":"2638.44", + "value":"-4.27" + } + }, + { + "id":"b437eb79-9492-4b68-b7e5-add2a2b03d4e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T18:48:33.050Z", + "completed":"2016-06-30T18:48:33.050Z", + "new_balance":"2744.07", + "value":"105.63" + } + }, + { + "id":"3671caf4-d72e-4e77-8084-e5a4f3772cf6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T07:17:55.498Z", + "completed":"2016-07-01T07:17:55.498Z", + "new_balance":"2737.67", + "value":"-6.40" + } + }, + { + "id":"43879b21-dacc-4420-a1d8-0719537b816d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T02:44:37.584Z", + "completed":"2016-07-03T02:44:37.584Z", + "new_balance":"2679.44", + "value":"-58.23" + } + }, + { + "id":"e33dd371-0b8a-4116-9930-c0cfcbcdde5d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T04:36:47.826Z", + "completed":"2016-07-03T04:36:47.826Z", + "new_balance":"2676.98", + "value":"-2.46" + } + }, + { + "id":"26337bfa-8a52-44d3-92b6-4aabf9718b30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T08:31:34.784Z", + "completed":"2016-07-03T08:31:34.784Z", + "new_balance":"2669.79", + "value":"-7.19" + } + }, + { + "id":"fd362ff7-3dbd-459b-b4c5-fee09889d7cf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T12:23:58.021Z", + "completed":"2016-07-03T12:23:58.021Z", + "new_balance":"2666.35", + "value":"-3.44" + } + }, + { + "id":"f06bd032-3d75-49ab-b19a-31d7cfda2247", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T05:45:34.229Z", + "completed":"2016-07-05T05:45:34.229Z", + "new_balance":"2665.20", + "value":"-1.15" + } + }, + { + "id":"113b8c44-98f1-430e-93c9-84c6e9ccbbd8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T06:23:01.260Z", + "completed":"2016-07-05T06:23:01.260Z", + "new_balance":"2660.78", + "value":"-4.42" + } + }, + { + "id":"c0132230-44ac-48a3-b1d7-61185a57d89e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T20:16:37.566Z", + "completed":"2016-07-05T20:16:37.566Z", + "new_balance":"2655.63", + "value":"-5.15" + } + }, + { + "id":"511f8e62-5458-4f20-a007-be410d8b89cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T21:25:10.368Z", + "completed":"2016-07-06T21:25:10.368Z", + "new_balance":"2651.96", + "value":"-3.67" + } + }, + { + "id":"96a8b4b4-f94c-4b82-9f69-33daf81269e5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T22:09:13.667Z", + "completed":"2016-07-06T22:09:13.667Z", + "new_balance":"2649.64", + "value":"-2.32" + } + }, + { + "id":"b6d00e4b-89ac-4194-acc8-d9999c40d964", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T19:37:21.586Z", + "completed":"2016-07-07T19:37:21.586Z", + "new_balance":"2645.17", + "value":"-4.47" + } + }, + { + "id":"9d168130-179c-4fe5-871b-b23e356258e7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T12:29:52.162Z", + "completed":"2016-07-10T12:29:52.162Z", + "new_balance":"2642.79", + "value":"-2.38" + } + }, + { + "id":"7b728994-9194-41d4-ad21-9e47d7ffb490", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T21:38:08.963Z", + "completed":"2016-07-10T21:38:08.963Z", + "new_balance":"2637.64", + "value":"-5.15" + } + }, + { + "id":"18a16889-5b37-4e23-a83d-c487802b3953", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T01:54:25.541Z", + "completed":"2016-07-12T01:54:25.541Z", + "new_balance":"2634.91", + "value":"-2.73" + } + }, + { + "id":"0839b631-ef2f-4a0d-a194-6598e8bc9e0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T04:19:15.321Z", + "completed":"2016-07-12T04:19:15.321Z", + "new_balance":"2630.44", + "value":"-4.47" + } + }, + { + "id":"84665ae2-6579-4d5d-8c08-e49f1bd3ca64", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T23:47:30.345Z", + "completed":"2016-07-12T23:47:30.345Z", + "new_balance":"2627.98", + "value":"-2.46" + } + }, + { + "id":"4f9dd43c-d60e-4804-b51d-2b6ffc05954b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T08:04:31.949Z", + "completed":"2016-07-15T08:04:31.949Z", + "new_balance":"2625.35", + "value":"-2.63" + } + }, + { + "id":"a2b1b0c1-4cba-4d79-89d7-6505ec0c3237", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T12:45:54.479Z", + "completed":"2016-07-16T12:45:54.479Z", + "new_balance":"2620.20", + "value":"-5.15" + } + }, + { + "id":"41553ed9-b3f4-4340-8c42-da798a0edd30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:30:46.936Z", + "completed":"2016-07-16T16:30:46.936Z", + "new_balance":"2619.24", + "value":"-0.96" + } + }, + { + "id":"713cd11f-557e-43bb-b371-8469ccd9fe86", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T00:17:55.930Z", + "completed":"2016-07-17T00:17:55.930Z", + "new_balance":"2616.65", + "value":"-2.59" + } + }, + { + "id":"bdc0f585-e32f-4ce1-b0af-5a0f47d18454", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:21:03.218Z", + "completed":"2016-07-17T14:21:03.218Z", + "new_balance":"2609.90", + "value":"-6.75" + } + }, + { + "id":"465e1ab9-0723-4dc3-ac85-e9911c339b57", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T17:27:40.110Z", + "completed":"2016-07-19T17:27:40.110Z", + "new_balance":"2607.48", + "value":"-2.42" + } + }, + { + "id":"652bc886-2d51-418b-acbe-2a83423f216d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T02:59:57.724Z", + "completed":"2016-07-20T02:59:57.724Z", + "new_balance":"2602.33", + "value":"-5.15" + } + }, + { + "id":"fee1f2f5-b3b1-416b-9cd0-26657a648826", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T03:17:54.244Z", + "completed":"2016-07-23T03:17:54.244Z", + "new_balance":"2600.91", + "value":"-1.42" + } + }, + { + "id":"d65d90fb-cd0b-4262-afda-6e6e5b9c0df4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T13:48:30.526Z", + "completed":"2016-07-26T13:48:30.526Z", + "new_balance":"2596.10", + "value":"-4.81" + } + }, + { + "id":"f11a6caa-429d-4eb3-a785-b5635a27c8e6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T02:10:49.330Z", + "completed":"2016-07-27T02:10:49.330Z", + "new_balance":"2701.73", + "value":"105.63" + } + }, + { + "id":"0be4c1b8-5575-43a1-849a-9d7681a79fd4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T09:40:14.097Z", + "completed":"2016-07-28T09:40:14.097Z", + "new_balance":"2698.29", + "value":"-3.44" + } + }, + { + "id":"221e48d9-f804-4942-8062-4971997f8bae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T11:57:02.542Z", + "completed":"2016-07-30T11:57:02.542Z", + "new_balance":"2694.02", + "value":"-4.27" + } + }, + { + "id":"24c2eaa0-7430-494d-83a8-a912d0c73c61", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T06:53:11.350Z", + "completed":"2016-08-01T06:53:11.350Z", + "new_balance":"2687.62", + "value":"-6.40" + } + }, + { + "id":"fdd0b3bd-44ac-42f1-a368-83b6ac22171b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T09:40:05.356Z", + "completed":"2016-08-03T09:40:05.356Z", + "new_balance":"2685.16", + "value":"-2.46" + } + }, + { + "id":"a22f741c-e23a-4bc1-8f49-06305983af87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:02:36.423Z", + "completed":"2016-08-03T12:02:36.423Z", + "new_balance":"2677.97", + "value":"-7.19" + } + }, + { + "id":"047ff6eb-2c0e-464e-9169-d978cb5094a8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T16:35:35.771Z", + "completed":"2016-08-03T16:35:35.771Z", + "new_balance":"2674.53", + "value":"-3.44" + } + }, + { + "id":"7bd08742-506a-481f-a05e-7ac6ab295001", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T19:33:31.075Z", + "completed":"2016-08-03T19:33:31.075Z", + "new_balance":"2616.30", + "value":"-58.23" + } + }, + { + "id":"df9083d9-e42d-4467-9303-14876f6b4bb0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T01:25:29.568Z", + "completed":"2016-08-08T01:25:29.568Z", + "new_balance":"2611.15", + "value":"-5.15" + } + }, + { + "id":"6dd71f90-e171-4f79-97b1-2c49b935d977", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T04:54:22.404Z", + "completed":"2016-08-08T04:54:22.404Z", + "new_balance":"2606.73", + "value":"-4.42" + } + }, + { + "id":"5636665d-704f-43ae-acf0-8934f1b02f09", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T19:50:00.749Z", + "completed":"2016-08-11T19:50:00.749Z", + "new_balance":"2607.84", + "value":"1.11" + } + }, + { + "id":"1f41bb9c-ccd8-4f46-856c-7820d6b1efcb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T10:10:01.770Z", + "completed":"2016-08-13T10:10:01.770Z", + "new_balance":"2605.52", + "value":"-2.32" + } + }, + { + "id":"044ffddb-ea4b-4e4e-a621-16800afd15fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T18:49:06.188Z", + "completed":"2016-08-14T18:49:06.188Z", + "new_balance":"2602.49", + "value":"-3.03" + } + }, + { + "id":"e28472c8-d032-4fb9-803a-a8c07252cddd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T11:13:36.820Z", + "completed":"2016-08-17T11:13:36.820Z", + "new_balance":"2601.09", + "value":"-1.40" + } + }, + { + "id":"3c9f0024-25be-48c9-8a75-2ac95b0e1b92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T15:07:36.834Z", + "completed":"2016-08-21T15:07:36.834Z", + "new_balance":"2596.60", + "value":"-4.49" + } + }, + { + "id":"3469311f-b110-4790-9ede-20431f0a80d5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T01:51:41.409Z", + "completed":"2016-08-23T01:51:41.409Z", + "new_balance":"2592.36", + "value":"-4.24" + } + }, + { + "id":"3118aec0-ab6f-4115-b59a-d7463eead306", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T09:04:24.638Z", + "completed":"2016-08-23T09:04:24.638Z", + "new_balance":"2587.21", + "value":"-5.15" + } + }, + { + "id":"65624204-0401-477a-9af5-11ad735f7e9c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T05:05:47.717Z", + "completed":"2016-08-24T05:05:47.717Z", + "new_balance":"2585.81", + "value":"-1.40" + } + }, + { + "id":"b2d9ffd9-c2ec-400e-8f83-8077204ea946", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T02:00:13.686Z", + "completed":"2016-08-27T02:00:13.686Z", + "new_balance":"2581.00", + "value":"-4.81" + } + }, + { + "id":"422efa3a-2508-4f41-b6b7-482fb245df04", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T12:14:51.135Z", + "completed":"2016-08-27T12:14:51.135Z", + "new_balance":"2578.98", + "value":"-2.02" + } + }, + { + "id":"cbca38f6-95bd-4b70-b964-16926ec6760b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T16:38:46.708Z", + "completed":"2016-08-27T16:38:46.708Z", + "new_balance":"2684.61", + "value":"105.63" + } + }, + { + "id":"39ae1ef1-aa02-4e28-8e6a-de2d09a88f29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T01:00:33.415Z", + "completed":"2016-08-28T01:00:33.415Z", + "new_balance":"2681.17", + "value":"-3.44" + } + }, + { + "id":"a7f69189-a759-437f-89ae-19f8ae47c9de", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T02:44:40.688Z", + "completed":"2016-08-30T02:44:40.688Z", + "new_balance":"2676.90", + "value":"-4.27" + } + }, + { + "id":"03580386-6d7a-46fa-8092-a9d914e474f1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:15:53.114Z", + "completed":"2016-09-01T17:15:53.114Z", + "new_balance":"2670.50", + "value":"-6.40" + } + }, + { + "id":"e856931a-8fd1-41c7-82ed-6ce2a0067348", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:21:38.925Z", + "completed":"2016-09-03T01:21:38.925Z", + "new_balance":"2667.06", + "value":"-3.44" + } + }, + { + "id":"92fbe8bf-bc2f-45b1-a016-faaaefc1b8a6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T03:22:42.897Z", + "completed":"2016-09-03T03:22:42.897Z", + "new_balance":"2608.83", + "value":"-58.23" + } + }, + { + "id":"c60ceb2b-083a-482b-a359-d9c5d393ed0a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T07:23:52.378Z", + "completed":"2016-09-03T07:23:52.378Z", + "new_balance":"2601.64", + "value":"-7.19" + } + }, + { + "id":"7ff7d6df-8a2b-44dc-92eb-b5341d143ffb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T10:17:29.350Z", + "completed":"2016-09-03T10:17:29.350Z", + "new_balance":"2599.18", + "value":"-2.46" + } + }, + { + "id":"be10cc63-e963-44b3-a615-461bf321c185", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T02:18:13.138Z", + "completed":"2016-09-05T02:18:13.138Z", + "new_balance":"2594.29", + "value":"-4.89" + } + }, + { + "id":"9cad5fd6-1f48-45ea-8d2f-d81289206ef9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T13:25:52.248Z", + "completed":"2016-09-05T13:25:52.248Z", + "new_balance":"2589.14", + "value":"-5.15" + } + }, + { + "id":"3932f607-8842-4393-8eb5-f9c36f1fcbb7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T08:55:59.347Z", + "completed":"2016-09-07T08:55:59.347Z", + "new_balance":"2587.27", + "value":"-1.87" + } + }, + { + "id":"16ce7e5b-ad56-49d1-9606-b6a6c159f8c9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T12:22:30.309Z", + "completed":"2016-09-09T12:22:30.309Z", + "new_balance":"2582.12", + "value":"-5.15" + } + }, + { + "id":"a137dfa2-3311-46af-82d7-76d0b09d675d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T08:48:47.780Z", + "completed":"2016-09-11T08:48:47.780Z", + "new_balance":"2580.54", + "value":"-1.58" + } + }, + { + "id":"2ec4fa92-8f16-4c7d-9e69-17a3bd5297bc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:08:45.167Z", + "completed":"2016-09-13T09:08:45.167Z", + "new_balance":"2573.62", + "value":"-6.92" + } + }, + { + "id":"349a519f-71fe-42b7-bc29-622323b33a19", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:10:23.491Z", + "completed":"2016-09-14T00:10:23.491Z", + "new_balance":"2572.38", + "value":"-1.24" + } + }, + { + "id":"e9d3c0d4-fc7d-4586-b21a-bdd3f15c53e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T11:40:49.520Z", + "completed":"2016-09-14T11:40:49.520Z", + "new_balance":"2580.67", + "value":"8.29" + } + }, + { + "id":"ed9b1842-423a-4c1c-9f27-8a9b49a91f52", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T12:37:24.697Z", + "completed":"2016-09-15T12:37:24.697Z", + "new_balance":"2576.40", + "value":"-4.27" + } + }, + { + "id":"d42003a0-4071-40c0-b894-34ba6d3b3377", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T07:58:34.268Z", + "completed":"2016-09-26T07:58:34.268Z", + "new_balance":"2574.41", + "value":"-1.99" + } + }, + { + "id":"b46eede4-a4ef-4cba-969e-d8214c7d2673", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T09:07:04.732Z", + "completed":"2016-09-26T09:07:04.732Z", + "new_balance":"2572.27", + "value":"-2.14" + } + }, + { + "id":"bd514859-b74f-4177-bb33-f0375ea290b5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T21:49:20.751Z", + "completed":"2016-09-26T21:49:20.751Z", + "new_balance":"2567.58", + "value":"-4.69" + } + }, + { + "id":"6dfe9dd8-4507-4872-b9ee-8d7ec688e8a8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T03:49:26.689Z", + "completed":"2016-09-27T03:49:26.689Z", + "new_balance":"2563.16", + "value":"-4.42" + } + }, + { + "id":"d081f16b-a39f-4c41-b249-39842dd3cbc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T18:27:43.687Z", + "completed":"2016-09-27T18:27:43.687Z", + "new_balance":"2668.79", + "value":"105.63" + } + }, + { + "id":"a5a9cf95-a273-42d9-8978-9c3b456fbbd9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T22:13:29.399Z", + "completed":"2016-09-27T22:13:29.399Z", + "new_balance":"2663.64", + "value":"-5.15" + } + }, + { + "id":"6781b60a-b58c-422e-a0c3-e2deee544471", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T12:42:03.175Z", + "completed":"2016-09-28T12:42:03.175Z", + "new_balance":"2660.20", + "value":"-3.44" + } + }, + { + "id":"9292788d-ed22-4d99-9e5e-8c2fda99b800", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T10:23:14.995Z", + "completed":"2016-09-30T10:23:14.995Z", + "new_balance":"2655.93", + "value":"-4.27" + } + }, + { + "id":"a4cfef41-9047-4d1e-bb98-081bf93dcf49", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T00:26:01.195Z", + "completed":"2016-10-01T00:26:01.195Z", + "new_balance":"2597.70", + "value":"-58.23" + } + }, + { + "id":"525e6d0f-11f4-4101-9be3-9348b165e82e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T01:14:50.660Z", + "completed":"2016-10-01T01:14:50.660Z", + "new_balance":"2591.30", + "value":"-6.40" + } + }, + { + "id":"914899ea-35bc-4f06-9b13-510d15d96705", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T02:31:37.386Z", + "completed":"2016-10-01T02:31:37.386Z", + "new_balance":"2588.84", + "value":"-2.46" + } + }, + { + "id":"ea806ae3-af7c-454e-8815-f988500e7e17", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T09:34:41.026Z", + "completed":"2016-10-01T09:34:41.026Z", + "new_balance":"2585.40", + "value":"-3.44" + } + }, + { + "id":"d2f8d39f-8c8b-4ed4-b8c8-4c9ebfa92386", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:37:57.264Z", + "completed":"2016-10-01T23:37:57.264Z", + "new_balance":"2578.21", + "value":"-7.19" + } + }, + { + "id":"520d98c6-c55e-4fc7-b2cb-cf06e6b43920", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T06:12:33.312Z", + "completed":"2016-10-05T06:12:33.312Z", + "new_balance":"2577.06", + "value":"-1.15" + } + }, + { + "id":"ba1a015e-438f-419e-89b4-05d0fdec211e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T07:05:07.909Z", + "completed":"2016-10-05T07:05:07.909Z", + "new_balance":"2572.64", + "value":"-4.42" + } + }, + { + "id":"e9eb726c-9002-41ab-8bc2-c22e5b5d534e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T20:13:08.786Z", + "completed":"2016-10-05T20:13:08.786Z", + "new_balance":"2568.97", + "value":"-3.67" + } + }, + { + "id":"b226acd4-ef75-4a22-84cd-6f0d4ffa34e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T22:29:39.904Z", + "completed":"2016-10-05T22:29:39.904Z", + "new_balance":"2563.82", + "value":"-5.15" + } + }, + { + "id":"c8ed33f4-095f-43ec-9381-2c17a9032755", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T12:11:34.160Z", + "completed":"2016-10-07T12:11:34.160Z", + "new_balance":"2561.50", + "value":"-2.32" + } + }, + { + "id":"ad2e5ce6-3845-4737-8342-e2334d7f9677", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T16:13:43.914Z", + "completed":"2016-10-09T16:13:43.914Z", + "new_balance":"2559.12", + "value":"-2.38" + } + }, + { + "id":"4badce0e-80b9-483c-86ec-3c6f07be3627", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T21:31:55.955Z", + "completed":"2016-10-09T21:31:55.955Z", + "new_balance":"2553.97", + "value":"-5.15" + } + }, + { + "id":"70ff4c67-f900-4746-b413-319f9883a431", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T06:20:55.164Z", + "completed":"2016-10-10T06:20:55.164Z", + "new_balance":"2551.51", + "value":"-2.46" + } + }, + { + "id":"193ba9cb-4ef5-4ade-b332-7e5e6589c629", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T08:44:47.280Z", + "completed":"2016-10-10T08:44:47.280Z", + "new_balance":"2547.04", + "value":"-4.47" + } + }, + { + "id":"3fc377de-9eb2-4abd-95e2-2b42fa52fd63", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T13:46:32.560Z", + "completed":"2016-10-10T13:46:32.560Z", + "new_balance":"2544.41", + "value":"-2.63" + } + }, + { + "id":"3fc2281c-63fb-4647-b805-18d954d1d694", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T23:52:33.911Z", + "completed":"2016-10-10T23:52:33.911Z", + "new_balance":"2541.68", + "value":"-2.73" + } + }, + { + "id":"c76b69f3-41e8-4072-a639-a7e5999a4bd5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T02:49:19.135Z", + "completed":"2016-10-11T02:49:19.135Z", + "new_balance":"2536.53", + "value":"-5.15" + } + }, + { + "id":"7656aed3-6771-47c1-a2a8-ae1eaf642062", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T06:47:05.401Z", + "completed":"2016-10-11T06:47:05.401Z", + "new_balance":"2533.94", + "value":"-2.59" + } + }, + { + "id":"0048fa4f-11bd-45a3-8a42-c66c59d884af", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:43:19.079Z", + "completed":"2016-10-11T14:43:19.079Z", + "new_balance":"2532.98", + "value":"-0.96" + } + }, + { + "id":"2698f0e5-7bd9-41d1-aece-d8eac8343c14", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:32:02.488Z", + "completed":"2016-10-11T17:32:02.488Z", + "new_balance":"2526.23", + "value":"-6.75" + } + }, + { + "id":"c768c1d8-0959-4b42-a99b-4066a69bef05", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T18:36:08.089Z", + "completed":"2016-10-11T18:36:08.089Z", + "new_balance":"2523.81", + "value":"-2.42" + } + }, + { + "id":"667a7652-1b68-4d5c-8b43-3451c85644f3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T12:52:46.168Z", + "completed":"2016-10-21T12:52:46.168Z", + "new_balance":"2518.66", + "value":"-5.15" + } + }, + { + "id":"ee5c8a3a-e756-4a13-90b5-5a90d344972e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T14:55:19.573Z", + "completed":"2016-10-23T14:55:19.573Z", + "new_balance":"2517.24", + "value":"-1.42" + } + }, + { + "id":"7ba19bbb-8e81-4b35-a7d5-918b7fdb5e15", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T02:15:10.674Z", + "completed":"2016-10-29T02:15:10.674Z", + "new_balance":"2622.87", + "value":"105.63" + } + }, + { + "id":"5cbdafd3-fa3a-4f43-8adc-45ae24c8457d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T04:57:11.738Z", + "completed":"2016-10-29T04:57:11.738Z", + "new_balance":"2618.06", + "value":"-4.81" + } + }, + { + "id":"6e84d8b5-65bb-44b9-90df-7f078ca16276", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T09:01:14.176Z", + "completed":"2016-10-29T09:01:14.176Z", + "new_balance":"2614.62", + "value":"-3.44" + } + }, + { + "id":"2f5fb3ab-aff5-42c4-9d11-86c14ba09076", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T05:02:42.837Z", + "completed":"2016-10-30T05:02:42.837Z", + "new_balance":"2610.35", + "value":"-4.27" + } + }, + { + "id":"da0950c0-7e21-49a5-9eed-ecfda7b27bf0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T00:02:40.751Z", + "completed":"2016-11-02T00:02:40.751Z", + "new_balance":"2603.16", + "value":"-7.19" + } + }, + { + "id":"84c9d82f-12bc-438f-bd18-1b7e4a1d38d6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T05:49:54.009Z", + "completed":"2016-11-02T05:49:54.009Z", + "new_balance":"2544.93", + "value":"-58.23" + } + }, + { + "id":"d50a6636-1319-4bf1-b162-6ffd6eea183b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T12:58:32.301Z", + "completed":"2016-11-02T12:58:32.301Z", + "new_balance":"2538.53", + "value":"-6.40" + } + }, + { + "id":"4486f91f-445d-4fd1-8a91-96a8c01f0a03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T21:19:42.467Z", + "completed":"2016-11-02T21:19:42.467Z", + "new_balance":"2536.07", + "value":"-2.46" + } + }, + { + "id":"39abd94e-2a2f-4c08-8306-e6e123dc46a4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T16:47:14.368Z", + "completed":"2016-11-06T16:47:14.368Z", + "new_balance":"2531.65", + "value":"-4.42" + } + }, + { + "id":"936d6f1b-e3f2-49d2-9c13-71d1a4e50f87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T00:12:46.481Z", + "completed":"2016-11-07T00:12:46.481Z", + "new_balance":"2527.16", + "value":"-4.49" + } + }, + { + "id":"69a0742b-f025-442f-bd13-bd6639c46746", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T03:22:15.562Z", + "completed":"2016-11-07T03:22:15.562Z", + "new_balance":"2525.76", + "value":"-1.40" + } + }, + { + "id":"df381ca8-9e99-4b56-b608-aa83472d183a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T03:32:16.610Z", + "completed":"2016-11-07T03:32:16.610Z", + "new_balance":"2523.44", + "value":"-2.32" + } + }, + { + "id":"b66b6cd2-777c-4fc7-89d0-904f74c560fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T09:30:56.930Z", + "completed":"2016-11-07T09:30:56.930Z", + "new_balance":"2520.41", + "value":"-3.03" + } + }, + { + "id":"43e6d8f5-54c8-4015-9c70-447bc8168496", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T13:10:33.155Z", + "completed":"2016-11-08T13:10:33.155Z", + "new_balance":"2516.17", + "value":"-4.24" + } + }, + { + "id":"66be1992-fff5-40d0-8719-a00636fdfd80", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T05:11:05.575Z", + "completed":"2016-11-09T05:11:05.575Z", + "new_balance":"2512.73", + "value":"-3.44" + } + }, + { + "id":"5c634363-82d1-4322-adcc-e120e7dd2ead", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T06:52:11.145Z", + "completed":"2016-11-13T06:52:11.145Z", + "new_balance":"2507.58", + "value":"-5.15" + } + }, + { + "id":"3ac4ffae-a1dd-4e91-be96-527a142832cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T01:07:11.731Z", + "completed":"2016-11-26T01:07:11.731Z", + "new_balance":"2506.18", + "value":"-1.40" + } + }, + { + "id":"c905f724-54aa-4abd-9162-701818e58973", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T13:24:02.950Z", + "completed":"2016-11-26T13:24:02.950Z", + "new_balance":"2501.03", + "value":"-5.15" + } + }, + { + "id":"dfceeb87-c95e-4834-b92d-f8faa0d8b912", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T11:12:12.336Z", + "completed":"2016-11-27T11:12:12.336Z", + "new_balance":"2496.22", + "value":"-4.81" + } + }, + { + "id":"3b8d38f5-781d-4e82-b418-6fa8722bbf7b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T19:00:52.240Z", + "completed":"2016-11-27T19:00:52.240Z", + "new_balance":"2494.20", + "value":"-2.02" + } + }, + { + "id":"3ecc9416-71dc-453a-8959-04fbe13406b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T02:43:00.966Z", + "completed":"2016-11-30T02:43:00.966Z", + "new_balance":"2490.76", + "value":"-3.44" + } + }, + { + "id":"7ab0edea-4ae2-4552-8dda-c2284100cb9d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T08:42:58.265Z", + "completed":"2016-11-30T08:42:58.265Z", + "new_balance":"2486.49", + "value":"-4.27" + } + }, + { + "id":"0a7c67ad-af79-4d30-94fb-972338c0eef5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T17:20:01.041Z", + "completed":"2016-11-30T17:20:01.041Z", + "new_balance":"2592.12", + "value":"105.63" + } + }, + { + "id":"8a10e65d-e0f2-426d-9e5c-edb616214ba2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:03:57.497Z", + "completed":"2016-12-01T04:03:57.497Z", + "new_balance":"2590.25", + "value":"-1.87" + } + }, + { + "id":"ecaf6cce-43b3-4cf7-a9ed-86c07e8d3bdb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T07:55:06.761Z", + "completed":"2016-12-01T07:55:06.761Z", + "new_balance":"2587.79", + "value":"-2.46" + } + }, + { + "id":"b037ec9d-8480-4b52-8fe1-e6e9ae03fd50", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T08:13:21.307Z", + "completed":"2016-12-01T08:13:21.307Z", + "new_balance":"2582.64", + "value":"-5.15" + } + }, + { + "id":"70614c23-3cc5-4eac-bace-d4e183d16593", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T10:03:15.828Z", + "completed":"2016-12-01T10:03:15.828Z", + "new_balance":"2579.20", + "value":"-3.44" + } + }, + { + "id":"59af4e2a-8bed-4dbd-a852-bc85ebcfc80c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T14:10:31.208Z", + "completed":"2016-12-01T14:10:31.208Z", + "new_balance":"2520.97", + "value":"-58.23" + } + }, + { + "id":"4ded006e-800b-4a06-80c2-a811cee31b59", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T15:13:10.057Z", + "completed":"2016-12-01T15:13:10.057Z", + "new_balance":"2514.57", + "value":"-6.40" + } + }, + { + "id":"4d6bfd7b-15ff-464f-afe2-c2bb0c64396b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T16:44:11.329Z", + "completed":"2016-12-01T16:44:11.329Z", + "new_balance":"2509.68", + "value":"-4.89" + } + }, + { + "id":"a8793d4b-0095-4b62-a6ef-4b0a4f1974c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T16:53:38.262Z", + "completed":"2016-12-01T16:53:38.262Z", + "new_balance":"2504.53", + "value":"-5.15" + } + }, + { + "id":"dc884d60-ef6f-43cb-a4d6-3171df8bcf3a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T18:51:13.630Z", + "completed":"2016-12-01T18:51:13.630Z", + "new_balance":"2497.34", + "value":"-7.19" + } + }, + { + "id":"b2525632-61b0-40c9-865e-b134ea327a93", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T04:04:17.238Z", + "completed":"2016-12-02T04:04:17.238Z", + "new_balance":"2490.42", + "value":"-6.92" + } + }, + { + "id":"00aefa28-b70b-4e40-ac6b-c720be874526", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T17:49:42.382Z", + "completed":"2016-12-02T17:49:42.382Z", + "new_balance":"2488.84", + "value":"-1.58" + } + }, + { + "id":"119edad4-45ef-4551-90c7-085cc5c95e56", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T19:56:45.760Z", + "completed":"2016-12-02T19:56:45.760Z", + "new_balance":"2487.60", + "value":"-1.24" + } + }, + { + "id":"9e8ec3e3-293d-4ebf-8116-a05bfa54163f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T04:01:50.873Z", + "completed":"2016-12-04T04:01:50.873Z", + "new_balance":"2485.46", + "value":"-2.14" + } + }, + { + "id":"ba9236a9-43ed-4df4-876f-eedf75a7cc79", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T04:22:51.384Z", + "completed":"2016-12-04T04:22:51.384Z", + "new_balance":"2481.19", + "value":"-4.27" + } + }, + { + "id":"363272cb-5427-45ee-809c-72864db9ea20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T15:05:33.192Z", + "completed":"2016-12-04T15:05:33.192Z", + "new_balance":"2476.50", + "value":"-4.69" + } + }, + { + "id":"3e218866-7b69-4370-9052-2202f1caed9e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T10:27:51.143Z", + "completed":"2016-12-05T10:27:51.143Z", + "new_balance":"2472.08", + "value":"-4.42" + } + }, + { + "id":"fcf406b8-49e7-4008-9410-57a804871a99", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T14:35:53.361Z", + "completed":"2016-12-05T14:35:53.361Z", + "new_balance":"2470.09", + "value":"-1.99" + } + }, + { + "id":"9b4320d7-36b1-487f-b792-45b473ce8dac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T11:41:51.179Z", + "completed":"2016-12-18T11:41:51.179Z", + "new_balance":"2464.94", + "value":"-5.15" + } + }, + { + "id":"28f910a3-d93e-4d6d-8989-76aeec483e16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T02:26:55.592Z", + "completed":"2016-12-30T02:26:55.592Z", + "new_balance":"2570.57", + "value":"105.63" + } + }, + { + "id":"4c2fa95e-675f-494d-981e-7d47572abc40", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T03:08:05.579Z", + "completed":"2016-12-30T03:08:05.579Z", + "new_balance":"2567.46", + "value":"-3.11" + } + }, + { + "id":"a34adcba-ea95-45fa-adf1-2cc91efa144b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T05:23:14.434Z", + "completed":"2016-12-30T05:23:14.434Z", + "new_balance":"2563.19", + "value":"-4.27" + } + }, + { + "id":"88ed7598-37fb-4ea3-88fb-342a649090be", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T07:39:03.345Z", + "completed":"2016-12-30T07:39:03.345Z", + "new_balance":"2559.75", + "value":"-3.44" + } + }, + { + "id":"b81e7d47-9d5a-46d0-9e62-fd6ef2046a78", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:45:31.577Z", + "completed":"2017-01-01T05:45:31.577Z", + "new_balance":"2553.35", + "value":"-6.40" + } + }, + { + "id":"f423daee-c82d-4fe5-84f1-6a469730a58f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T19:50:50.260Z", + "completed":"2017-01-01T19:50:50.260Z", + "new_balance":"2546.95", + "value":"-6.40" + } + }, + { + "id":"b8a62ef5-ea21-4567-b718-a13a800902d7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T07:56:30.719Z", + "completed":"2017-01-03T07:56:30.719Z", + "new_balance":"2544.49", + "value":"-2.46" + } + }, + { + "id":"8b2bb1f2-7ad2-4cbc-93de-0466b9cb3612", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T11:35:34.727Z", + "completed":"2017-01-03T11:35:34.727Z", + "new_balance":"2541.05", + "value":"-3.44" + } + }, + { + "id":"7ed8688e-ca78-4c09-b8f3-98047c1c100f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T11:48:43.691Z", + "completed":"2017-01-03T11:48:43.691Z", + "new_balance":"2533.86", + "value":"-7.19" + } + }, + { + "id":"b8399db9-afdb-4947-a7d6-da35c47c5411", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T20:44:45.878Z", + "completed":"2017-01-03T20:44:45.878Z", + "new_balance":"2475.63", + "value":"-58.23" + } + }, + { + "id":"6baa6fd4-b5c8-41f1-8b8e-f31eb5a02c70", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:02:59.127Z", + "completed":"2017-01-05T14:02:59.127Z", + "new_balance":"2474.48", + "value":"-1.15" + } + }, + { + "id":"3519d85c-f7b7-4354-8c3b-314414003ba4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:51:30.652Z", + "completed":"2017-01-05T14:51:30.652Z", + "new_balance":"2470.06", + "value":"-4.42" + } + }, + { + "id":"b615f469-e690-48b5-ac46-be6a7998b077", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T18:40:59.703Z", + "completed":"2017-01-05T18:40:59.703Z", + "new_balance":"2464.91", + "value":"-5.15" + } + }, + { + "id":"94fe712b-8995-47c0-91fb-3a0e086ae569", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T05:00:44.036Z", + "completed":"2017-01-06T05:00:44.036Z", + "new_balance":"2461.24", + "value":"-3.67" + } + }, + { + "id":"16e0bb2a-cac8-46c9-89fb-96da5e010c50", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T22:53:48.585Z", + "completed":"2017-01-06T22:53:48.585Z", + "new_balance":"2458.92", + "value":"-2.32" + } + }, + { + "id":"34f47c00-d6df-48ae-841a-497f69567004", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T21:43:44.962Z", + "completed":"2017-01-07T21:43:44.962Z", + "new_balance":"2454.45", + "value":"-4.47" + } + }, + { + "id":"c325f8e6-cd1c-49ec-913a-a53d224f2dd0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T06:45:51.838Z", + "completed":"2017-01-10T06:45:51.838Z", + "new_balance":"2452.07", + "value":"-2.38" + } + }, + { + "id":"d211b057-1d8d-4bed-bb8a-464af0ad6374", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T16:14:39.410Z", + "completed":"2017-01-10T16:14:39.410Z", + "new_balance":"2446.92", + "value":"-5.15" + } + }, + { + "id":"ef4b8ef2-a1e2-4391-ae8e-66ae7f823ed2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T06:20:24.518Z", + "completed":"2017-01-12T06:20:24.518Z", + "new_balance":"2444.46", + "value":"-2.46" + } + }, + { + "id":"67ac562c-82f3-40c3-880c-cbf6c62ef1ca", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T15:12:37.410Z", + "completed":"2017-01-12T15:12:37.410Z", + "new_balance":"2439.99", + "value":"-4.47" + } + }, + { + "id":"bc58303e-44ac-4343-8756-b7a28b910984", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:50:02.154Z", + "completed":"2017-01-12T23:50:02.154Z", + "new_balance":"2437.26", + "value":"-2.73" + } + }, + { + "id":"c3d0ce83-af98-4c96-846c-475de31f2220", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T15:37:35.298Z", + "completed":"2017-01-15T15:37:35.298Z", + "new_balance":"2434.63", + "value":"-2.63" + } + }, + { + "id":"628f7e8a-08e3-4a0c-aa48-416198d8a337", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T08:36:15.091Z", + "completed":"2017-01-16T08:36:15.091Z", + "new_balance":"2433.67", + "value":"-0.96" + } + }, + { + "id":"03caf9fe-8d8b-4d99-addb-356ac01f0488", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T12:01:52.559Z", + "completed":"2017-01-16T12:01:52.559Z", + "new_balance":"2428.52", + "value":"-5.15" + } + }, + { + "id":"8d7b6d16-1627-473b-a6fd-1b4bc85587b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T01:06:35.677Z", + "completed":"2017-01-17T01:06:35.677Z", + "new_balance":"2421.77", + "value":"-6.75" + } + }, + { + "id":"ff3428f9-f049-498b-90c8-35836e17445f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T17:13:09.344Z", + "completed":"2017-01-17T17:13:09.344Z", + "new_balance":"2419.18", + "value":"-2.59" + } + }, + { + "id":"3569af1c-239b-4c47-b422-4cd1404235bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T15:21:20.153Z", + "completed":"2017-01-19T15:21:20.153Z", + "new_balance":"2416.76", + "value":"-2.42" + } + }, + { + "id":"9db313cd-e93c-4f98-8666-5d69e88342ff", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T15:33:22.299Z", + "completed":"2017-01-20T15:33:22.299Z", + "new_balance":"2411.61", + "value":"-5.15" + } + }, + { + "id":"5ad277b3-43bc-4672-b4f3-81d1f978548b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T00:48:03.408Z", + "completed":"2017-01-23T00:48:03.408Z", + "new_balance":"2410.19", + "value":"-1.42" + } + }, + { + "id":"447f6132-0c13-424d-a9b9-c10bc8afa959", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T02:34:09.302Z", + "completed":"2017-01-26T02:34:09.302Z", + "new_balance":"2405.38", + "value":"-4.81" + } + }, + { + "id":"4e7cc211-85e8-4183-8a58-e12577854c94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T13:00:46.778Z", + "completed":"2017-01-27T13:00:46.778Z", + "new_balance":"2511.01", + "value":"105.63" + } + }, + { + "id":"2f81ba82-4da9-415f-a63c-f1bb18b0563b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T08:41:33.066Z", + "completed":"2017-01-28T08:41:33.066Z", + "new_balance":"2507.57", + "value":"-3.44" + } + }, + { + "id":"4405ace9-a71f-44f7-962a-7acfa9b1c9bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T03:25:15.254Z", + "completed":"2017-01-30T03:25:15.254Z", + "new_balance":"2503.30", + "value":"-4.27" + } + }, + { + "id":"5a26337f-39bc-4eb1-90c5-57b40ef9a9e1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T05:24:03.795Z", + "completed":"2017-02-03T05:24:03.795Z", + "new_balance":"2500.84", + "value":"-2.46" + } + }, + { + "id":"b6b46e3e-e5fc-435e-91db-4bc9326df623", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T07:39:34.219Z", + "completed":"2017-02-03T07:39:34.219Z", + "new_balance":"2493.65", + "value":"-7.19" + } + }, + { + "id":"084a435e-d991-4dc6-9afd-f6a6f1192b83", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T18:36:34.663Z", + "completed":"2017-02-03T18:36:34.663Z", + "new_balance":"2490.21", + "value":"-3.44" + } + }, + { + "id":"fdd6212f-d4ed-4961-876f-63d171f756d9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T18:57:46.712Z", + "completed":"2017-02-03T18:57:46.712Z", + "new_balance":"2431.98", + "value":"-58.23" + } + }, + { + "id":"58482cde-6e41-4e27-8690-e7fcc4902d94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T00:27:59.571Z", + "completed":"2017-02-08T00:27:59.571Z", + "new_balance":"2426.83", + "value":"-5.15" + } + }, + { + "id":"e3ae8558-500b-4c5b-b2ad-ec326d25104c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T19:20:48.174Z", + "completed":"2017-02-08T19:20:48.174Z", + "new_balance":"2422.41", + "value":"-4.42" + } + }, + { + "id":"2171c3bf-a399-44b2-b6f2-53709d6f3dfc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T07:58:44.384Z", + "completed":"2017-02-11T07:58:44.384Z", + "new_balance":"2423.52", + "value":"1.11" + } + }, + { + "id":"6e239c09-5746-450d-bcda-2043097f5d98", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T14:10:32.579Z", + "completed":"2017-02-13T14:10:32.579Z", + "new_balance":"2421.20", + "value":"-2.32" + } + }, + { + "id":"e8c22e5a-9ead-48d1-acb6-639b0427d6bb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T03:34:47.312Z", + "completed":"2017-02-14T03:34:47.312Z", + "new_balance":"2418.17", + "value":"-3.03" + } + }, + { + "id":"2e08495d-faad-4d5f-b75b-184164acbf55", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T08:01:26.350Z", + "completed":"2017-02-17T08:01:26.350Z", + "new_balance":"2416.77", + "value":"-1.40" + } + }, + { + "id":"03847573-a9ce-4258-9ced-d077f2fe218a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T08:03:14.758Z", + "completed":"2017-02-21T08:03:14.758Z", + "new_balance":"2412.28", + "value":"-4.49" + } + }, + { + "id":"8b8fc088-73fb-41c2-9540-3c48ab968602", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T00:22:00.637Z", + "completed":"2017-02-23T00:22:00.637Z", + "new_balance":"2408.04", + "value":"-4.24" + } + }, + { + "id":"798fdbd2-8a12-4976-9b7e-61155b022b7c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T13:27:09.817Z", + "completed":"2017-02-23T13:27:09.817Z", + "new_balance":"2402.89", + "value":"-5.15" + } + }, + { + "id":"00186033-fe48-42ea-a436-15a03b4f8678", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T16:41:34.310Z", + "completed":"2017-02-24T16:41:34.310Z", + "new_balance":"2401.49", + "value":"-1.40" + } + }, + { + "id":"302c27ae-7f34-4be3-890f-f4f0047aaf04", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T02:11:18.910Z", + "completed":"2017-02-27T02:11:18.910Z", + "new_balance":"2399.47", + "value":"-2.02" + } + }, + { + "id":"55e089f2-ae11-4d4e-ae63-864fd4293410", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T15:45:47.711Z", + "completed":"2017-02-27T15:45:47.711Z", + "new_balance":"2394.66", + "value":"-4.81" + } + }, + { + "id":"e19834f7-882b-43a8-a61f-a763aecd46a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T19:00:28.004Z", + "completed":"2017-02-27T19:00:28.004Z", + "new_balance":"2500.29", + "value":"105.63" + } + }, + { + "id":"d2f7f73f-19bb-407e-92a0-d0308a00ccd2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T10:53:08.204Z", + "completed":"2017-02-28T10:53:08.204Z", + "new_balance":"2496.85", + "value":"-3.44" + } + }, + { + "id":"4c376caf-5133-4210-8c08-9d1168ecc837", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T21:03:28.380Z", + "completed":"2017-02-28T21:03:28.380Z", + "new_balance":"2492.58", + "value":"-4.27" + } + }, + { + "id":"bcdcdbce-0621-441f-a23b-d0e4ab899d3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T21:03:20.628Z", + "completed":"2017-03-01T21:03:20.628Z", + "new_balance":"2486.18", + "value":"-6.40" + } + }, + { + "id":"45506508-cb6a-4335-be40-19b523922c8c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T01:22:42.211Z", + "completed":"2017-03-03T01:22:42.211Z", + "new_balance":"2482.74", + "value":"-3.44" + } + }, + { + "id":"52fab5bc-4294-4fc6-baa6-1713da054865", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T10:01:54.865Z", + "completed":"2017-03-03T10:01:54.865Z", + "new_balance":"2475.55", + "value":"-7.19" + } + }, + { + "id":"6608af9e-dc3e-4266-9fc0-da3470a70c09", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T10:20:43.508Z", + "completed":"2017-03-03T10:20:43.508Z", + "new_balance":"2417.32", + "value":"-58.23" + } + }, + { + "id":"1c8f9903-e9b0-46fd-a2f4-0d84558fade5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T13:54:30.288Z", + "completed":"2017-03-03T13:54:30.288Z", + "new_balance":"2414.86", + "value":"-2.46" + } + }, + { + "id":"faf2ee2f-2cbc-44cd-a45b-d979012e7b92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:41:04.955Z", + "completed":"2017-03-05T19:41:04.955Z", + "new_balance":"2409.97", + "value":"-4.89" + } + }, + { + "id":"6c5c9a0a-0067-48c3-aacc-93cb0298c069", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T19:51:24.438Z", + "completed":"2017-03-05T19:51:24.438Z", + "new_balance":"2404.82", + "value":"-5.15" + } + }, + { + "id":"dbdcd503-3631-4dd5-9b43-a99dcb1d67b2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T09:19:44.173Z", + "completed":"2017-03-07T09:19:44.173Z", + "new_balance":"2402.95", + "value":"-1.87" + } + }, + { + "id":"8a85ca64-5ee3-4e39-a337-3638a305ae5e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T05:50:02.702Z", + "completed":"2017-03-09T05:50:02.702Z", + "new_balance":"2397.80", + "value":"-5.15" + } + }, + { + "id":"72cbafb9-63b0-49c8-9044-38618066cf7d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:44:36.460Z", + "completed":"2017-03-11T19:44:36.460Z", + "new_balance":"2396.22", + "value":"-1.58" + } + }, + { + "id":"35c4621c-5f6b-406b-86a4-851618a3b9df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T20:22:54.192Z", + "completed":"2017-03-13T20:22:54.192Z", + "new_balance":"2389.30", + "value":"-6.92" + } + }, + { + "id":"d48e2605-a953-4bdc-a367-70b46fc7a9d7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T15:35:52.334Z", + "completed":"2017-03-14T15:35:52.334Z", + "new_balance":"2388.06", + "value":"-1.24" + } + }, + { + "id":"194bb910-6065-4046-ac6c-5b3b4d108622", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T20:43:24.703Z", + "completed":"2017-03-14T20:43:24.703Z", + "new_balance":"2396.35", + "value":"8.29" + } + }, + { + "id":"29122689-f7bc-46eb-b08a-5bd2691e122a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T20:07:34.040Z", + "completed":"2017-03-15T20:07:34.040Z", + "new_balance":"2392.08", + "value":"-4.27" + } + }, + { + "id":"ba05b379-bc1e-4880-a3e9-98c604e33b45", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T08:06:52.738Z", + "completed":"2017-03-26T08:06:52.738Z", + "new_balance":"2389.94", + "value":"-2.14" + } + }, + { + "id":"3f460eb4-d93f-4afa-828f-d366b12d520e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T11:09:29.520Z", + "completed":"2017-03-26T11:09:29.520Z", + "new_balance":"2385.25", + "value":"-4.69" + } + }, + { + "id":"8e0aba1b-34c4-45ef-a687-6c8265bf8a05", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T17:08:48.850Z", + "completed":"2017-03-26T17:08:48.850Z", + "new_balance":"2383.26", + "value":"-1.99" + } + }, + { + "id":"4a82a6dd-9e20-4337-8f34-adba376d3137", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T02:40:43.971Z", + "completed":"2017-03-27T02:40:43.971Z", + "new_balance":"2378.84", + "value":"-4.42" + } + }, + { + "id":"1f6d161e-44a3-4476-a59a-18d6896ed94c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T13:52:34.773Z", + "completed":"2017-03-27T13:52:34.773Z", + "new_balance":"2484.47", + "value":"105.63" + } + }, + { + "id":"ffcd7f80-8a52-43c3-ac64-03453f23dd74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T21:50:45.546Z", + "completed":"2017-03-27T21:50:45.546Z", + "new_balance":"2479.32", + "value":"-5.15" + } + }, + { + "id":"fa86a197-4486-4bf3-abdc-5e410ab317cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T19:03:56.748Z", + "completed":"2017-03-28T19:03:56.748Z", + "new_balance":"2475.88", + "value":"-3.44" + } + }, + { + "id":"be918c04-521c-466f-9d43-83b7636bae87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T18:37:21.857Z", + "completed":"2017-03-30T18:37:21.857Z", + "new_balance":"2471.61", + "value":"-4.27" + } + }, + { + "id":"c8184ecd-ac5e-4be4-a15b-7dca43cb8847", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T03:20:32.736Z", + "completed":"2017-04-01T03:20:32.736Z", + "new_balance":"2464.42", + "value":"-7.19" + } + }, + { + "id":"ce6f89d2-3a52-4ac5-8dbd-010c24f016b6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T08:49:33.702Z", + "completed":"2017-04-01T08:49:33.702Z", + "new_balance":"2461.96", + "value":"-2.46" + } + }, + { + "id":"15571fd5-5e4f-4a1a-8fd9-409426ee7b96", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T12:06:45.923Z", + "completed":"2017-04-01T12:06:45.923Z", + "new_balance":"2458.52", + "value":"-3.44" + } + }, + { + "id":"4e10bd9d-f6f8-41c3-b35f-f13e73653511", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T21:00:28.606Z", + "completed":"2017-04-01T21:00:28.606Z", + "new_balance":"2400.29", + "value":"-58.23" + } + }, + { + "id":"799ddad4-f784-4ca5-9b26-aacc59a66409", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T21:11:06.292Z", + "completed":"2017-04-01T21:11:06.292Z", + "new_balance":"2393.89", + "value":"-6.40" + } + }, + { + "id":"abce850b-8827-45bc-a037-df32519bd7d5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T01:28:14.687Z", + "completed":"2017-04-05T01:28:14.687Z", + "new_balance":"2389.47", + "value":"-4.42" + } + }, + { + "id":"48b82a39-2706-467a-be64-70f961dafc37", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T09:47:23.284Z", + "completed":"2017-04-05T09:47:23.284Z", + "new_balance":"2388.32", + "value":"-1.15" + } + }, + { + "id":"f56185b2-28ec-40d9-a2a8-81431f73e660", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T12:35:05.612Z", + "completed":"2017-04-05T12:35:05.612Z", + "new_balance":"2384.65", + "value":"-3.67" + } + }, + { + "id":"407fd5b0-ff63-470c-8660-aa716398319c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T15:43:38.622Z", + "completed":"2017-04-05T15:43:38.622Z", + "new_balance":"2379.50", + "value":"-5.15" + } + }, + { + "id":"126fd0ca-bbd2-429b-9c26-a0aa62a182ce", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T04:00:35.704Z", + "completed":"2017-04-07T04:00:35.704Z", + "new_balance":"2377.18", + "value":"-2.32" + } + }, + { + "id":"b88668c7-77cc-4fd0-9e23-6634ef8f1b01", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T08:06:54.364Z", + "completed":"2017-04-09T08:06:54.364Z", + "new_balance":"2372.03", + "value":"-5.15" + } + }, + { + "id":"5efb8c73-4686-4b24-8446-55c8f1f5374f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T17:30:29.350Z", + "completed":"2017-04-09T17:30:29.350Z", + "new_balance":"2369.65", + "value":"-2.38" + } + }, + { + "id":"b670eade-1139-4a67-9fd8-97b894a19fa4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T03:03:34.920Z", + "completed":"2017-04-10T03:03:34.920Z", + "new_balance":"2367.19", + "value":"-2.46" + } + }, + { + "id":"f18eed45-7462-47e8-8a12-1d098f687ae8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T05:22:55.125Z", + "completed":"2017-04-10T05:22:55.125Z", + "new_balance":"2364.56", + "value":"-2.63" + } + }, + { + "id":"706da075-93ba-47d4-9b43-101a197749db", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T12:36:43.009Z", + "completed":"2017-04-10T12:36:43.009Z", + "new_balance":"2360.09", + "value":"-4.47" + } + }, + { + "id":"f36b4394-d6b9-403c-bb6d-45ad1de82718", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:49:40.372Z", + "completed":"2017-04-10T19:49:40.372Z", + "new_balance":"2357.36", + "value":"-2.73" + } + }, + { + "id":"20c7b122-9809-4652-be06-ca2b4f33db16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T00:14:09.099Z", + "completed":"2017-04-11T00:14:09.099Z", + "new_balance":"2354.77", + "value":"-2.59" + } + }, + { + "id":"a0d23704-0e2b-4648-ba59-641412202933", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T06:36:01.976Z", + "completed":"2017-04-11T06:36:01.976Z", + "new_balance":"2348.02", + "value":"-6.75" + } + }, + { + "id":"4cb98bcb-7c17-4f01-a440-fc3438e63e06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T09:34:23.753Z", + "completed":"2017-04-11T09:34:23.753Z", + "new_balance":"2342.87", + "value":"-5.15" + } + }, + { + "id":"00f2bea6-ae5e-4cb2-92af-849a03821d0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:36:08.850Z", + "completed":"2017-04-11T17:36:08.850Z", + "new_balance":"2340.45", + "value":"-2.42" + } + }, + { + "id":"db48f1e0-0daf-4ff7-a7e7-dd7dc6421a98", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:59:30.080Z", + "completed":"2017-04-11T23:59:30.080Z", + "new_balance":"2339.49", + "value":"-0.96" + } + }, + { + "id":"280098ed-fe2e-442c-b372-7db4e915c9a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:52:22.022Z", + "completed":"2017-04-21T23:52:22.022Z", + "new_balance":"2334.34", + "value":"-5.15" + } + }, + { + "id":"036b1243-da5b-45cc-9ee7-936639d5dc4d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:29:05.710Z", + "completed":"2017-04-23T07:29:05.710Z", + "new_balance":"2332.92", + "value":"-1.42" + } + }, + { + "id":"2896407f-c7ae-48cb-b391-c5fa0fd660b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T03:06:25.205Z", + "completed":"2017-04-29T03:06:25.205Z", + "new_balance":"2329.48", + "value":"-3.44" + } + }, + { + "id":"74c1c9e6-1b68-4cac-a5ac-0d64a73838f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T06:19:47.285Z", + "completed":"2017-04-29T06:19:47.285Z", + "new_balance":"2324.67", + "value":"-4.81" + } + }, + { + "id":"13c37b5d-3f48-4f43-9a4b-0e7203e7cacd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T17:24:05.716Z", + "completed":"2017-04-29T17:24:05.716Z", + "new_balance":"2430.30", + "value":"105.63" + } + }, + { + "id":"bf9408e0-052d-4885-9ae8-20ba20f7f140", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T16:54:28.031Z", + "completed":"2017-04-30T16:54:28.031Z", + "new_balance":"2426.03", + "value":"-4.27" + } + }, + { + "id":"bb7aeb0d-6f80-4f64-b33c-caf2cdf9d26d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T02:24:18.826Z", + "completed":"2017-05-02T02:24:18.826Z", + "new_balance":"2419.63", + "value":"-6.40" + } + }, + { + "id":"9e4ddd74-d330-47c8-92e3-780a7806ffbc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T03:51:12.208Z", + "completed":"2017-05-02T03:51:12.208Z", + "new_balance":"2361.40", + "value":"-58.23" + } + }, + { + "id":"93e23338-ce71-4aef-913a-80af2cfddeb8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T09:02:28.139Z", + "completed":"2017-05-02T09:02:28.139Z", + "new_balance":"2358.94", + "value":"-2.46" + } + }, + { + "id":"7129a956-ffad-498f-8ae6-0773953018b5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T11:35:21.421Z", + "completed":"2017-05-02T11:35:21.421Z", + "new_balance":"2351.75", + "value":"-7.19" + } + }, + { + "id":"3092ec9b-0de0-466c-aadc-f223b287a302", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T00:23:40.889Z", + "completed":"2017-05-06T00:23:40.889Z", + "new_balance":"2347.33", + "value":"-4.42" + } + }, + { + "id":"1aa42837-03a7-415d-9f33-618cecff88fa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:37:34.520Z", + "completed":"2017-05-07T02:37:34.520Z", + "new_balance":"2342.84", + "value":"-4.49" + } + }, + { + "id":"ce3d07db-c203-4602-88ec-2ecc83514cb8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T03:59:31.754Z", + "completed":"2017-05-07T03:59:31.754Z", + "new_balance":"2340.52", + "value":"-2.32" + } + }, + { + "id":"2b14bac8-a776-4c4d-b547-376e0f70d030", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T18:57:46.205Z", + "completed":"2017-05-07T18:57:46.205Z", + "new_balance":"2339.12", + "value":"-1.40" + } + }, + { + "id":"b9054cea-439e-42ba-bdb1-8f0a422329f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T20:13:28.051Z", + "completed":"2017-05-07T20:13:28.051Z", + "new_balance":"2336.09", + "value":"-3.03" + } + }, + { + "id":"4404e5bb-a8fc-4de8-8fdf-a825f2ff1094", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T21:07:54.308Z", + "completed":"2017-05-08T21:07:54.308Z", + "new_balance":"2331.85", + "value":"-4.24" + } + }, + { + "id":"ba881a1a-2bde-46fb-9e09-d3ef345bd135", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T08:33:08.298Z", + "completed":"2017-05-09T08:33:08.298Z", + "new_balance":"2328.41", + "value":"-3.44" + } + }, + { + "id":"3102569e-c8b6-4d0b-a206-68d8cfa94697", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T18:34:27.161Z", + "completed":"2017-05-13T18:34:27.161Z", + "new_balance":"2323.26", + "value":"-5.15" + } + }, + { + "id":"c0f3b91f-4b04-4365-9632-14e04a55f712", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T12:58:35.614Z", + "completed":"2017-05-26T12:58:35.614Z", + "new_balance":"2318.11", + "value":"-5.15" + } + }, + { + "id":"c8b970df-7763-4f6f-8f8c-23a37eb0fca8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T18:28:25.129Z", + "completed":"2017-05-26T18:28:25.129Z", + "new_balance":"2316.71", + "value":"-1.40" + } + }, + { + "id":"943da9d1-1aa0-479a-8608-dbffc5031cb7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:00:29.923Z", + "completed":"2017-05-27T02:00:29.923Z", + "new_balance":"2311.90", + "value":"-4.81" + } + }, + { + "id":"b0cd1f2a-1959-4259-a3ba-218d3953cb82", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T23:37:32.478Z", + "completed":"2017-05-27T23:37:32.478Z", + "new_balance":"2309.88", + "value":"-2.02" + } + }, + { + "id":"53ebfae8-d8dc-4aea-a9c2-89de9c2d46ed", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T07:10:09.839Z", + "completed":"2017-05-30T07:10:09.839Z", + "new_balance":"2305.61", + "value":"-4.27" + } + }, + { + "id":"834d50e6-1f66-4e18-8f01-53812f108631", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T12:34:08.599Z", + "completed":"2017-05-30T12:34:08.599Z", + "new_balance":"2302.17", + "value":"-3.44" + } + }, + { + "id":"657f8031-80be-4bb9-9468-0244e2d5c683", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T21:08:16.526Z", + "completed":"2017-05-30T21:08:16.526Z", + "new_balance":"2407.80", + "value":"105.63" + } + }, + { + "id":"47a57683-e9fd-4e18-b89f-efff12236f0f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T00:30:52.013Z", + "completed":"2017-06-01T00:30:52.013Z", + "new_balance":"2402.91", + "value":"-4.89" + } + }, + { + "id":"f241a437-ff13-403f-888c-516afb291475", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T04:35:08.007Z", + "completed":"2017-06-01T04:35:08.007Z", + "new_balance":"2401.04", + "value":"-1.87" + } + }, + { + "id":"4769d755-a08c-4869-a37c-78dd929c9c25", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:58:06.931Z", + "completed":"2017-06-01T05:58:06.931Z", + "new_balance":"2394.64", + "value":"-6.40" + } + }, + { + "id":"7188a258-8e05-4ab5-be16-d42100ab11da", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T06:36:04.509Z", + "completed":"2017-06-01T06:36:04.509Z", + "new_balance":"2392.18", + "value":"-2.46" + } + }, + { + "id":"da9c16b6-9abd-4a4a-96ad-047297dd4ab2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:03:20.422Z", + "completed":"2017-06-01T07:03:20.422Z", + "new_balance":"2387.03", + "value":"-5.15" + } + }, + { + "id":"3df00f2f-7294-4ec3-955a-c02cfb1422a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T08:12:52.456Z", + "completed":"2017-06-01T08:12:52.456Z", + "new_balance":"2379.84", + "value":"-7.19" + } + }, + { + "id":"4568b4ad-50ea-4db9-9517-8f619e1370f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T08:23:53.325Z", + "completed":"2017-06-01T08:23:53.325Z", + "new_balance":"2376.40", + "value":"-3.44" + } + }, + { + "id":"a5687672-74f3-4eed-a76a-0989e1dd0ac1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T12:16:45.874Z", + "completed":"2017-06-01T12:16:45.874Z", + "new_balance":"2318.17", + "value":"-58.23" + } + }, + { + "id":"cd25a9d9-55dc-4212-af28-fc2b1144f561", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:30:08.824Z", + "completed":"2017-06-01T15:30:08.824Z", + "new_balance":"2313.02", + "value":"-5.15" + } + }, + { + "id":"91cd865b-b987-40b0-9bb5-d904fe642920", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T12:21:05.410Z", + "completed":"2017-06-02T12:21:05.410Z", + "new_balance":"2311.78", + "value":"-1.24" + } + }, + { + "id":"aac34c9c-0889-4749-9a8e-86c909cce437", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T20:51:44.233Z", + "completed":"2017-06-02T20:51:44.233Z", + "new_balance":"2304.86", + "value":"-6.92" + } + }, + { + "id":"35b0f4b3-1e65-4ed9-abba-a6984ab50aea", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T23:41:28.413Z", + "completed":"2017-06-02T23:41:28.413Z", + "new_balance":"2303.28", + "value":"-1.58" + } + }, + { + "id":"b97cfdfa-f8c4-4e01-8afd-70da35d63eac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T00:25:39.193Z", + "completed":"2017-06-04T00:25:39.193Z", + "new_balance":"2299.01", + "value":"-4.27" + } + }, + { + "id":"9532a32e-51a1-4a95-9e07-11e23a09051e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T05:01:10.765Z", + "completed":"2017-06-04T05:01:10.765Z", + "new_balance":"2294.32", + "value":"-4.69" + } + }, + { + "id":"61071c92-4b1e-486e-9340-eb9c96ec9dce", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:42:12.971Z", + "completed":"2017-06-04T13:42:12.971Z", + "new_balance":"2292.18", + "value":"-2.14" + } + }, + { + "id":"d6e208db-471a-4acf-b9c3-035f2464d9ab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T07:18:13.159Z", + "completed":"2017-06-05T07:18:13.159Z", + "new_balance":"2290.19", + "value":"-1.99" + } + }, + { + "id":"a9c01e8c-fa7d-4d04-9904-d3ad1f1e6f43", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:43:11.776Z", + "completed":"2017-06-05T12:43:11.776Z", + "new_balance":"2285.77", + "value":"-4.42" + } + }, + { + "id":"caca59f9-c29a-4628-b414-17ea55934267", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T08:37:06.248Z", + "completed":"2017-06-18T08:37:06.248Z", + "new_balance":"2280.62", + "value":"-5.15" + } + }, + { + "id":"58d4d4cb-251b-4bab-97b0-fa4522e8880a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T02:55:51.517Z", + "completed":"2017-06-30T02:55:51.517Z", + "new_balance":"2276.35", + "value":"-4.27" + } + }, + { + "id":"8cdaba00-2226-4cf6-b8e0-5707e04eeda6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T05:21:13.259Z", + "completed":"2017-06-30T05:21:13.259Z", + "new_balance":"2272.91", + "value":"-3.44" + } + }, + { + "id":"9b187414-2765-48d6-bee0-27f836b2d729", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T10:16:30.073Z", + "completed":"2017-06-30T10:16:30.073Z", + "new_balance":"2378.54", + "value":"105.63" + } + }, + { + "id":"f3143fdf-2bba-4700-b051-b4ae422cead6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T13:42:44.885Z", + "completed":"2017-06-30T13:42:44.885Z", + "new_balance":"2375.43", + "value":"-3.11" + } + }, + { + "id":"ba112eb6-6273-47a1-84cd-635b9ab021c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T19:52:34.465Z", + "completed":"2017-07-01T19:52:34.465Z", + "new_balance":"2369.03", + "value":"-6.40" + } + }, + { + "id":"2596565a-4ee6-4ffb-be67-2b22fedf02a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T01:33:36.056Z", + "completed":"2017-07-03T01:33:36.056Z", + "new_balance":"2366.57", + "value":"-2.46" + } + }, + { + "id":"4d4cb1d8-934e-4301-987b-aa2b5a055fbd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T01:54:00.701Z", + "completed":"2017-07-03T01:54:00.701Z", + "new_balance":"2359.38", + "value":"-7.19" + } + }, + { + "id":"cea412a2-20ac-4821-aca9-acda1e57e51b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T09:03:43.308Z", + "completed":"2017-07-03T09:03:43.308Z", + "new_balance":"2301.15", + "value":"-58.23" + } + }, + { + "id":"b842e6a9-9822-4987-bac3-50458fbd6400", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T11:58:02.726Z", + "completed":"2017-07-03T11:58:02.726Z", + "new_balance":"2297.71", + "value":"-3.44" + } + }, + { + "id":"84f037b1-d1b3-4dd7-b568-85feda50e7e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:02:07.069Z", + "completed":"2017-07-05T07:02:07.069Z", + "new_balance":"2293.29", + "value":"-4.42" + } + }, + { + "id":"36bbab5f-3a37-4b72-a5b4-4d9e2dc8b7b1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T10:55:52.921Z", + "completed":"2017-07-05T10:55:52.921Z", + "new_balance":"2292.14", + "value":"-1.15" + } + }, + { + "id":"237e3f73-0260-4f32-bf71-8c2e1bed01f6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T15:12:39.569Z", + "completed":"2017-07-05T15:12:39.569Z", + "new_balance":"2286.99", + "value":"-5.15" + } + }, + { + "id":"71736f05-842c-45cf-beab-5b75b5f01ca7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T20:29:42.009Z", + "completed":"2017-07-06T20:29:42.009Z", + "new_balance":"2283.32", + "value":"-3.67" + } + }, + { + "id":"bd3b2db3-6b14-4dc0-978d-d772b2de1559", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T22:11:04.274Z", + "completed":"2017-07-06T22:11:04.274Z", + "new_balance":"2281.00", + "value":"-2.32" + } + }, + { + "id":"dbd5be50-cee0-4a21-afd6-90c20f91ed0a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T17:49:45.540Z", + "completed":"2017-07-07T17:49:45.540Z", + "new_balance":"2276.53", + "value":"-4.47" + } + }, + { + "id":"7b05cb39-1218-40db-b224-9ae67e1633fa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T03:56:46.558Z", + "completed":"2017-07-10T03:56:46.558Z", + "new_balance":"2274.15", + "value":"-2.38" + } + }, + { + "id":"7e483e7b-abb9-44fb-9ded-3d2848202339", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T17:56:27.861Z", + "completed":"2017-07-10T17:56:27.861Z", + "new_balance":"2269.00", + "value":"-5.15" + } + }, + { + "id":"5a085108-16bf-4086-a685-11084d505f9d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T10:08:08.297Z", + "completed":"2017-07-12T10:08:08.297Z", + "new_balance":"2264.53", + "value":"-4.47" + } + }, + { + "id":"a6cbe330-09c4-4d20-b6da-ae31bc0ba23b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:32:11.584Z", + "completed":"2017-07-12T19:32:11.584Z", + "new_balance":"2262.07", + "value":"-2.46" + } + }, + { + "id":"e574518b-8ba2-46b3-975a-0a9aed86c03f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T23:02:03.022Z", + "completed":"2017-07-12T23:02:03.022Z", + "new_balance":"2259.34", + "value":"-2.73" + } + }, + { + "id":"a7ac91b0-07b0-42d0-aa5f-7aeb215f8c74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T21:19:42.673Z", + "completed":"2017-07-15T21:19:42.673Z", + "new_balance":"2256.71", + "value":"-2.63" + } + }, + { + "id":"a9fd59ab-8498-4458-8889-0e11578a9ca1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:56:34.420Z", + "completed":"2017-07-16T06:56:34.420Z", + "new_balance":"2255.75", + "value":"-0.96" + } + }, + { + "id":"20e5bf0b-b4e0-4221-8005-4fe05458c780", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T13:57:34.984Z", + "completed":"2017-07-16T13:57:34.984Z", + "new_balance":"2250.60", + "value":"-5.15" + } + }, + { + "id":"0bf1020f-87e8-4fce-aa16-b8515cff0dc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T04:14:40.553Z", + "completed":"2017-07-17T04:14:40.553Z", + "new_balance":"2243.85", + "value":"-6.75" + } + }, + { + "id":"24c1f910-e805-418c-b483-8d0f8eb9abbc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T14:42:32.795Z", + "completed":"2017-07-17T14:42:32.795Z", + "new_balance":"2241.26", + "value":"-2.59" + } + }, + { + "id":"d3c5c032-b495-427b-84b4-83f8ab5352c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T11:18:57.129Z", + "completed":"2017-07-19T11:18:57.129Z", + "new_balance":"2238.84", + "value":"-2.42" + } + }, + { + "id":"0fdc6457-c7ea-417c-b391-5bee2201ada6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T11:01:49.720Z", + "completed":"2017-07-20T11:01:49.720Z", + "new_balance":"2233.69", + "value":"-5.15" + } + }, + { + "id":"f8e398fb-616a-48a3-8cc0-5951c6f58042", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T10:28:45.015Z", + "completed":"2017-07-23T10:28:45.015Z", + "new_balance":"2232.27", + "value":"-1.42" + } + }, + { + "id":"7b60d8e6-9c84-4342-9f67-7eb343f3a4aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T03:24:18.409Z", + "completed":"2017-07-26T03:24:18.409Z", + "new_balance":"2227.46", + "value":"-4.81" + } + }, + { + "id":"db896067-93f8-4d57-9150-06512e4b1991", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T11:47:29.276Z", + "completed":"2017-07-27T11:47:29.276Z", + "new_balance":"2333.09", + "value":"105.63" + } + }, + { + "id":"b132f707-207e-4910-8050-1d0c7d5d491e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T05:11:39.888Z", + "completed":"2017-07-28T05:11:39.888Z", + "new_balance":"2329.65", + "value":"-3.44" + } + }, + { + "id":"cdec48a8-9948-44f0-bd04-c4efd61bf962", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T19:19:20.023Z", + "completed":"2017-07-30T19:19:20.023Z", + "new_balance":"2325.38", + "value":"-4.27" + } + }, + { + "id":"93891e18-88f8-42a5-a443-c5933ea5f347", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T04:49:54.778Z", + "completed":"2017-08-01T04:49:54.778Z", + "new_balance":"2318.98", + "value":"-6.40" + } + }, + { + "id":"f7d54cac-4b2f-4b71-80bb-4441b698af44", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T01:45:45.948Z", + "completed":"2017-08-03T01:45:45.948Z", + "new_balance":"2311.79", + "value":"-7.19" + } + }, + { + "id":"48a9de42-c2c3-493a-b869-91015129c938", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T10:51:50.768Z", + "completed":"2017-08-03T10:51:50.768Z", + "new_balance":"2309.33", + "value":"-2.46" + } + }, + { + "id":"9f3b0d76-b086-4fe8-86c7-d699d9fce282", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T17:42:52.239Z", + "completed":"2017-08-03T17:42:52.239Z", + "new_balance":"2251.10", + "value":"-58.23" + } + }, + { + "id":"1cd02fe3-787a-4e19-b22f-25060bc69eca", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T21:10:09.433Z", + "completed":"2017-08-03T21:10:09.433Z", + "new_balance":"2247.66", + "value":"-3.44" + } + }, + { + "id":"3e298c68-0884-445d-8061-69350f486ac2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T09:06:45.524Z", + "completed":"2017-08-08T09:06:45.524Z", + "new_balance":"2242.51", + "value":"-5.15" + } + }, + { + "id":"e54468d7-8410-4334-a73f-c20f4c457f29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T19:09:17.497Z", + "completed":"2017-08-08T19:09:17.497Z", + "new_balance":"2238.09", + "value":"-4.42" + } + }, + { + "id":"df3fce3f-7895-47e6-8711-9390018d5a00", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T11:57:39.476Z", + "completed":"2017-08-11T11:57:39.476Z", + "new_balance":"2239.20", + "value":"1.11" + } + }, + { + "id":"fbe8e450-ffd8-47af-b4cc-fbb586dd299c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T07:48:31.868Z", + "completed":"2017-08-13T07:48:31.868Z", + "new_balance":"2236.88", + "value":"-2.32" + } + }, + { + "id":"b8ba71b9-0eae-47a2-85bf-b8118f082b0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T13:52:05.335Z", + "completed":"2017-08-14T13:52:05.335Z", + "new_balance":"2233.85", + "value":"-3.03" + } + }, + { + "id":"00fa410f-2bb3-4e27-af07-47c0bc2d545a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T01:43:53.156Z", + "completed":"2017-08-17T01:43:53.156Z", + "new_balance":"2232.45", + "value":"-1.40" + } + }, + { + "id":"d8a3edeb-337b-4656-8b0e-285c0acd0c30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T15:01:51.403Z", + "completed":"2017-08-21T15:01:51.403Z", + "new_balance":"2227.96", + "value":"-4.49" + } + }, + { + "id":"46b19053-d0d0-47b6-aafc-0230c54c5d52", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T14:28:46.322Z", + "completed":"2017-08-23T14:28:46.322Z", + "new_balance":"2222.81", + "value":"-5.15" + } + }, + { + "id":"43dd0f3e-f34a-4332-8605-8181887b8186", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T22:01:11.154Z", + "completed":"2017-08-23T22:01:11.154Z", + "new_balance":"2218.57", + "value":"-4.24" + } + }, + { + "id":"7fb094dc-798b-4d3c-b3ec-2e757adf2487", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T13:09:19.988Z", + "completed":"2017-08-24T13:09:19.988Z", + "new_balance":"2217.17", + "value":"-1.40" + } + }, + { + "id":"743f06e3-47bf-44b6-8880-6a672b214a67", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T09:25:59.626Z", + "completed":"2017-08-27T09:25:59.626Z", + "new_balance":"2322.80", + "value":"105.63" + } + }, + { + "id":"bada29dc-a0e2-4efd-bde9-ea9aa5e8b1f8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T16:28:12.195Z", + "completed":"2017-08-27T16:28:12.195Z", + "new_balance":"2320.78", + "value":"-2.02" + } + }, + { + "id":"e6aa8b6a-fb60-44c3-a1a2-932b3e648542", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T23:33:11.777Z", + "completed":"2017-08-27T23:33:11.777Z", + "new_balance":"2315.97", + "value":"-4.81" + } + }, + { + "id":"386da31c-4608-486f-a2bb-be11ae2572d9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T17:51:51.762Z", + "completed":"2017-08-28T17:51:51.762Z", + "new_balance":"2312.53", + "value":"-3.44" + } + }, + { + "id":"f94af37d-1ed0-4f3b-aba3-6affc26628a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T09:51:56.125Z", + "completed":"2017-08-30T09:51:56.125Z", + "new_balance":"2308.26", + "value":"-4.27" + } + }, + { + "id":"42bbf956-13a1-4dc3-8ade-1662575aecf9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T12:13:04.924Z", + "completed":"2017-09-01T12:13:04.924Z", + "new_balance":"2301.86", + "value":"-6.40" + } + }, + { + "id":"8de82751-e723-433a-a501-4ce798344b65", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T09:01:49.998Z", + "completed":"2017-09-03T09:01:49.998Z", + "new_balance":"2299.40", + "value":"-2.46" + } + }, + { + "id":"7290b78e-cc73-4501-b53b-5021fb84cbba", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T13:34:07.773Z", + "completed":"2017-09-03T13:34:07.773Z", + "new_balance":"2292.21", + "value":"-7.19" + } + }, + { + "id":"552bee69-96b1-4c7c-880d-5afb52d7fe23", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T14:04:28.706Z", + "completed":"2017-09-03T14:04:28.706Z", + "new_balance":"2233.98", + "value":"-58.23" + } + }, + { + "id":"3ae38d2b-2b79-428b-8160-794cd1c67b24", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T17:19:01.702Z", + "completed":"2017-09-03T17:19:01.702Z", + "new_balance":"2230.54", + "value":"-3.44" + } + }, + { + "id":"badcac58-326e-4d41-b887-2de49694a0af", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T06:41:53.822Z", + "completed":"2017-09-05T06:41:53.822Z", + "new_balance":"2225.65", + "value":"-4.89" + } + }, + { + "id":"d4e040be-ea52-4de0-b7e6-94200915748b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T23:23:44.744Z", + "completed":"2017-09-05T23:23:44.744Z", + "new_balance":"2220.50", + "value":"-5.15" + } + }, + { + "id":"0170552e-857b-4944-ac56-fc3fc07faa6c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T11:44:37.386Z", + "completed":"2017-09-07T11:44:37.386Z", + "new_balance":"2218.63", + "value":"-1.87" + } + }, + { + "id":"c272bdcb-61f7-4849-a4b5-f8623902f0f0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T17:54:13.900Z", + "completed":"2017-09-09T17:54:13.900Z", + "new_balance":"2213.48", + "value":"-5.15" + } + }, + { + "id":"1a4e2e9b-2cca-4835-a922-4551a08b0dc0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T19:48:16.676Z", + "completed":"2017-09-11T19:48:16.676Z", + "new_balance":"2211.90", + "value":"-1.58" + } + }, + { + "id":"46cf5d37-31a9-4224-aea1-6ec93cd9c5b3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T07:41:53.760Z", + "completed":"2017-09-13T07:41:53.760Z", + "new_balance":"2204.98", + "value":"-6.92" + } + }, + { + "id":"da9b68c3-1a9b-4d98-8137-e61d31aaf33e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T18:33:22.718Z", + "completed":"2017-09-14T18:33:22.718Z", + "new_balance":"2203.74", + "value":"-1.24" + } + }, + { + "id":"b59989cb-155f-468f-b98f-b817fcaa5a60", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T22:35:26.385Z", + "completed":"2017-09-14T22:35:26.385Z", + "new_balance":"2212.03", + "value":"8.29" + } + }, + { + "id":"ebc442a3-eb20-46df-a497-9b0c57d8af89", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T15:50:37.119Z", + "completed":"2017-09-15T15:50:37.119Z", + "new_balance":"2207.76", + "value":"-4.27" + } + }, + { + "id":"d0302075-d214-4a69-a496-ec426621b82c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T10:25:12.186Z", + "completed":"2017-09-26T10:25:12.186Z", + "new_balance":"2205.77", + "value":"-1.99" + } + }, + { + "id":"c909af27-80bd-4ce3-8eb9-eca3287343f3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T12:02:24.502Z", + "completed":"2017-09-26T12:02:24.502Z", + "new_balance":"2201.08", + "value":"-4.69" + } + }, + { + "id":"7cb65797-6763-43d3-bcd2-a1a171f58fec", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T23:59:00.159Z", + "completed":"2017-09-26T23:59:00.159Z", + "new_balance":"2198.94", + "value":"-2.14" + } + }, + { + "id":"18576f34-19cb-487a-ac35-ed2e257be704", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T11:35:12.154Z", + "completed":"2017-09-27T11:35:12.154Z", + "new_balance":"2193.79", + "value":"-5.15" + } + }, + { + "id":"e6d95080-7d59-481a-8c56-ecc147567250", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T20:25:54.215Z", + "completed":"2017-09-27T20:25:54.215Z", + "new_balance":"2299.42", + "value":"105.63" + } + }, + { + "id":"9fc15cd6-9130-4d72-80ed-d07925cdd714", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T23:55:31.359Z", + "completed":"2017-09-27T23:55:31.359Z", + "new_balance":"2295.00", + "value":"-4.42" + } + }, + { + "id":"7b6283b6-6ea0-47b1-be43-2969f994837e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T05:52:47.521Z", + "completed":"2017-09-28T05:52:47.521Z", + "new_balance":"2291.56", + "value":"-3.44" + } + }, + { + "id":"3eae8a41-afe5-45e0-bfed-7f381ff661bb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:14:32.579Z", + "completed":"2017-09-30T12:14:32.579Z", + "new_balance":"2287.29", + "value":"-4.27" + } + }, + { + "id":"9190d673-18aa-482d-b122-4353e06dd722", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T05:17:12.321Z", + "completed":"2017-10-01T05:17:12.321Z", + "new_balance":"2284.83", + "value":"-2.46" + } + }, + { + "id":"226d7968-2e1c-4e5e-b028-1c24dc9fe6d2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T12:15:47.709Z", + "completed":"2017-10-01T12:15:47.709Z", + "new_balance":"2278.43", + "value":"-6.40" + } + }, + { + "id":"0cb133ff-4250-4b7f-a8b0-70765bc67908", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T16:52:46.421Z", + "completed":"2017-10-01T16:52:46.421Z", + "new_balance":"2274.99", + "value":"-3.44" + } + }, + { + "id":"034123e4-51ea-4b62-8b52-ef73347a23dd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T18:06:53.764Z", + "completed":"2017-10-01T18:06:53.764Z", + "new_balance":"2216.76", + "value":"-58.23" + } + }, + { + "id":"dfdd1c96-681f-476f-881a-3381df510ea5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T19:57:58.200Z", + "completed":"2017-10-01T19:57:58.200Z", + "new_balance":"2209.57", + "value":"-7.19" + } + }, + { + "id":"e9d97b2a-2883-418e-91a3-249806eb73a4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T02:08:49.846Z", + "completed":"2017-10-05T02:08:49.846Z", + "new_balance":"2205.90", + "value":"-3.67" + } + }, + { + "id":"a1471bfc-9ef9-4a1b-be3a-d7c6d0b682a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T09:49:15.314Z", + "completed":"2017-10-05T09:49:15.314Z", + "new_balance":"2204.75", + "value":"-1.15" + } + }, + { + "id":"93d005e4-e520-4195-9050-f1eb6dbbdafc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:47:23.759Z", + "completed":"2017-10-05T13:47:23.759Z", + "new_balance":"2200.33", + "value":"-4.42" + } + }, + { + "id":"ea75d4ab-736b-4fae-ae8d-44b034385542", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T14:00:18.370Z", + "completed":"2017-10-05T14:00:18.370Z", + "new_balance":"2195.18", + "value":"-5.15" + } + }, + { + "id":"3198b279-5c87-4881-96d4-a945e86f1545", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T22:16:16.340Z", + "completed":"2017-10-07T22:16:16.340Z", + "new_balance":"2192.86", + "value":"-2.32" + } + }, + { + "id":"322b0c40-6011-49b9-85d1-2e3cb8750d06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T02:15:06.604Z", + "completed":"2017-10-09T02:15:06.604Z", + "new_balance":"2190.48", + "value":"-2.38" + } + }, + { + "id":"e7dfd161-eead-47bd-9b48-ed70d092a280", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T03:45:21.375Z", + "completed":"2017-10-09T03:45:21.375Z", + "new_balance":"2185.33", + "value":"-5.15" + } + }, + { + "id":"9585c85f-4d07-4494-aefe-bfaf1a461e41", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T10:01:08.424Z", + "completed":"2017-10-10T10:01:08.424Z", + "new_balance":"2182.60", + "value":"-2.73" + } + }, + { + "id":"6aa06a18-5aa7-4f2b-8656-2bd14c07724d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T11:46:59.375Z", + "completed":"2017-10-10T11:46:59.375Z", + "new_balance":"2179.97", + "value":"-2.63" + } + }, + { + "id":"0b49233e-bca9-4e34-a343-cbd40741f7ee", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:24:08.033Z", + "completed":"2017-10-10T18:24:08.033Z", + "new_balance":"2177.51", + "value":"-2.46" + } + }, + { + "id":"917f3406-a490-4a67-8a0a-d41c123f4c1f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:13:16.310Z", + "completed":"2017-10-10T23:13:16.310Z", + "new_balance":"2173.04", + "value":"-4.47" + } + }, + { + "id":"0bf6fea0-7a64-4aba-8edc-b216f68aa35d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T03:53:18.659Z", + "completed":"2017-10-11T03:53:18.659Z", + "new_balance":"2170.45", + "value":"-2.59" + } + }, + { + "id":"3df3637c-b10c-47a4-9a7a-5a013dbdc10d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T12:09:46.548Z", + "completed":"2017-10-11T12:09:46.548Z", + "new_balance":"2169.49", + "value":"-0.96" + } + }, + { + "id":"6d894f40-cbd4-41aa-83d9-da7105f1cd28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T15:20:52.107Z", + "completed":"2017-10-11T15:20:52.107Z", + "new_balance":"2162.74", + "value":"-6.75" + } + }, + { + "id":"0f70effb-02d8-4e0b-b2f0-374cdb1deb28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T17:06:29.738Z", + "completed":"2017-10-11T17:06:29.738Z", + "new_balance":"2157.59", + "value":"-5.15" + } + }, + { + "id":"5a12938b-5031-4c2c-8a66-77c57c97a45b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T17:08:28.536Z", + "completed":"2017-10-11T17:08:28.536Z", + "new_balance":"2155.17", + "value":"-2.42" + } + }, + { + "id":"858cb0f5-6e83-407f-b4e2-1b86c2618285", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T03:39:45.207Z", + "completed":"2017-10-21T03:39:45.207Z", + "new_balance":"2150.02", + "value":"-5.15" + } + }, + { + "id":"6f106527-3788-4b3f-b73f-7c7213bc80cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T03:41:44.605Z", + "completed":"2017-10-23T03:41:44.605Z", + "new_balance":"2148.60", + "value":"-1.42" + } + }, + { + "id":"e7664f8a-4cb6-49fa-90b6-2a4fe166f3c3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T16:56:13.968Z", + "completed":"2017-10-29T16:56:13.968Z", + "new_balance":"2143.79", + "value":"-4.81" + } + }, + { + "id":"e1cb4757-83c0-4525-b74b-bbc1a4c84f0c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T21:17:49.102Z", + "completed":"2017-10-29T21:17:49.102Z", + "new_balance":"2249.42", + "value":"105.63" + } + }, + { + "id":"e3439a48-bce7-449b-b9bb-9b87c1b38dbd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T22:00:13.883Z", + "completed":"2017-10-29T22:00:13.883Z", + "new_balance":"2245.98", + "value":"-3.44" + } + }, + { + "id":"8ca872fe-bb7d-4010-85cf-84b6ad6061a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T12:28:14.974Z", + "completed":"2017-10-30T12:28:14.974Z", + "new_balance":"2241.71", + "value":"-4.27" + } + }, + { + "id":"0fea0fba-36a1-47b4-af14-4abb2685b6e3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T00:12:48.401Z", + "completed":"2017-11-02T00:12:48.401Z", + "new_balance":"2183.48", + "value":"-58.23" + } + }, + { + "id":"92a0fc23-aeed-4bda-886c-d7ef990af8ee", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T04:14:05.171Z", + "completed":"2017-11-02T04:14:05.171Z", + "new_balance":"2176.29", + "value":"-7.19" + } + }, + { + "id":"fcbe20f5-5d49-4ffe-b4eb-ebb9990618c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T07:56:27.319Z", + "completed":"2017-11-02T07:56:27.319Z", + "new_balance":"2169.89", + "value":"-6.40" + } + }, + { + "id":"106f93db-9a38-4b69-80d3-133864a9d5c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T08:10:03.664Z", + "completed":"2017-11-02T08:10:03.664Z", + "new_balance":"2167.43", + "value":"-2.46" + } + }, + { + "id":"15f22cf8-2833-4728-942d-a907b3dbe44f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T01:45:42.134Z", + "completed":"2017-11-06T01:45:42.134Z", + "new_balance":"2163.01", + "value":"-4.42" + } + }, + { + "id":"47418b6f-dbc6-4597-a254-434298799d29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T03:01:27.053Z", + "completed":"2017-11-07T03:01:27.053Z", + "new_balance":"2160.69", + "value":"-2.32" + } + }, + { + "id":"def77785-0f9b-49f8-848c-8486270c5809", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T08:08:35.420Z", + "completed":"2017-11-07T08:08:35.420Z", + "new_balance":"2159.29", + "value":"-1.40" + } + }, + { + "id":"fde323c1-9f66-4598-99d7-60b70953c8fb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T18:04:18.345Z", + "completed":"2017-11-07T18:04:18.345Z", + "new_balance":"2154.80", + "value":"-4.49" + } + }, + { + "id":"e92c777b-def5-445a-beed-e962ab3c5c3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T21:56:11.165Z", + "completed":"2017-11-07T21:56:11.165Z", + "new_balance":"2151.77", + "value":"-3.03" + } + }, + { + "id":"4867e99b-2fcd-4fbe-8c56-825d595142df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T13:49:54.439Z", + "completed":"2017-11-08T13:49:54.439Z", + "new_balance":"2147.53", + "value":"-4.24" + } + }, + { + "id":"7d2a1ae3-855c-47ec-ad28-00f8560093a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T22:47:40.626Z", + "completed":"2017-11-09T22:47:40.626Z", + "new_balance":"2144.09", + "value":"-3.44" + } + }, + { + "id":"5b7c5a36-d904-410a-b7e2-2391244c3269", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T07:52:30.949Z", + "completed":"2017-11-13T07:52:30.949Z", + "new_balance":"2138.94", + "value":"-5.15" + } + }, + { + "id":"599f6fba-dc5b-47fa-92c2-22479aa622f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T07:43:54.385Z", + "completed":"2017-11-26T07:43:54.385Z", + "new_balance":"2137.54", + "value":"-1.40" + } + }, + { + "id":"d3e1c591-1f4e-492d-8bb8-a89ed317ff28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T14:18:18.791Z", + "completed":"2017-11-26T14:18:18.791Z", + "new_balance":"2132.39", + "value":"-5.15" + } + }, + { + "id":"375688a0-a449-443f-9aa8-927f5a2efb62", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T00:14:23.939Z", + "completed":"2017-11-27T00:14:23.939Z", + "new_balance":"2130.37", + "value":"-2.02" + } + }, + { + "id":"f42cb244-d532-4240-aab4-7744ad94aa9f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T23:56:36.555Z", + "completed":"2017-11-27T23:56:36.555Z", + "new_balance":"2125.56", + "value":"-4.81" + } + }, + { + "id":"b3b22480-3af2-434a-a3bb-ac34725fc403", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T08:09:56.765Z", + "completed":"2017-11-30T08:09:56.765Z", + "new_balance":"2121.29", + "value":"-4.27" + } + }, + { + "id":"021425bd-eba2-41d4-ac5b-e631b83c4729", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T17:23:57.365Z", + "completed":"2017-11-30T17:23:57.365Z", + "new_balance":"2226.92", + "value":"105.63" + } + }, + { + "id":"5c0d5d9a-110c-443c-9371-1022736b4149", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T19:47:35.471Z", + "completed":"2017-11-30T19:47:35.471Z", + "new_balance":"2223.48", + "value":"-3.44" + } + }, + { + "id":"7b4a7364-7eae-450b-92ff-571bef815650", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T01:57:06.081Z", + "completed":"2017-12-01T01:57:06.081Z", + "new_balance":"2218.33", + "value":"-5.15" + } + }, + { + "id":"2f40868e-abea-4bac-8955-9a439d6f842c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T02:10:00.524Z", + "completed":"2017-12-01T02:10:00.524Z", + "new_balance":"2211.14", + "value":"-7.19" + } + }, + { + "id":"56165898-23a6-4ece-9ab0-d14ea91d9a32", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T09:19:43.521Z", + "completed":"2017-12-01T09:19:43.521Z", + "new_balance":"2207.70", + "value":"-3.44" + } + }, + { + "id":"49c179b5-c5f8-49d2-b9d3-ae3f1df19ead", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T09:34:50.699Z", + "completed":"2017-12-01T09:34:50.699Z", + "new_balance":"2201.30", + "value":"-6.40" + } + }, + { + "id":"983ed0af-e5d0-4a41-84de-160f65d8d66e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T09:57:22.563Z", + "completed":"2017-12-01T09:57:22.563Z", + "new_balance":"2198.84", + "value":"-2.46" + } + }, + { + "id":"69aa3acd-90eb-448c-9d46-bc3ce051a6df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T17:10:16.030Z", + "completed":"2017-12-01T17:10:16.030Z", + "new_balance":"2193.95", + "value":"-4.89" + } + }, + { + "id":"d4183abb-6e9c-4925-a532-125d78dda4f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T18:12:26.920Z", + "completed":"2017-12-01T18:12:26.920Z", + "new_balance":"2135.72", + "value":"-58.23" + } + }, + { + "id":"8370a7c5-c7fa-452c-8b43-4e4e7a9f97f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T22:19:25.236Z", + "completed":"2017-12-01T22:19:25.236Z", + "new_balance":"2130.57", + "value":"-5.15" + } + }, + { + "id":"32c74d72-027d-4ee8-b3c0-e8af3fe8f573", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T23:57:58.625Z", + "completed":"2017-12-01T23:57:58.625Z", + "new_balance":"2128.70", + "value":"-1.87" + } + }, + { + "id":"57923408-0a66-4fde-9e4e-a285c014ff16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T12:59:19.673Z", + "completed":"2017-12-02T12:59:19.673Z", + "new_balance":"2127.12", + "value":"-1.58" + } + }, + { + "id":"ebd97812-b8b5-4036-ab73-840863881098", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T15:52:12.946Z", + "completed":"2017-12-02T15:52:12.946Z", + "new_balance":"2120.20", + "value":"-6.92" + } + }, + { + "id":"8f9020f5-f1f8-4604-b968-befdd8819af3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T19:31:47.425Z", + "completed":"2017-12-02T19:31:47.425Z", + "new_balance":"2118.96", + "value":"-1.24" + } + }, + { + "id":"f8624168-0d41-4aae-b3e0-9dd90781dc3d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T08:50:55.672Z", + "completed":"2017-12-04T08:50:55.672Z", + "new_balance":"2114.69", + "value":"-4.27" + } + }, + { + "id":"1c3ca0a8-891b-4a04-8427-fb75df8b76bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T20:29:53.643Z", + "completed":"2017-12-04T20:29:53.643Z", + "new_balance":"2110.00", + "value":"-4.69" + } + }, + { + "id":"74ee1935-193e-4202-99c4-ed789ee0ac79", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:31:02.677Z", + "completed":"2017-12-04T21:31:02.677Z", + "new_balance":"2107.86", + "value":"-2.14" + } + }, + { + "id":"901d0ae1-49bb-4595-a3d7-037219d56cd1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T01:28:57.236Z", + "completed":"2017-12-05T01:28:57.236Z", + "new_balance":"2105.87", + "value":"-1.99" + } + }, + { + "id":"3b59f99d-6c27-43b1-a6a1-5046c6b0f927", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T09:23:14.557Z", + "completed":"2017-12-05T09:23:14.557Z", + "new_balance":"2101.45", + "value":"-4.42" + } + }, + { + "id":"b98116d4-a1b1-4405-a401-8a9eb6c4dc95", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T17:23:32.994Z", + "completed":"2017-12-18T17:23:32.994Z", + "new_balance":"2096.30", + "value":"-5.15" + } + }, + { + "id":"bd3778fa-df5f-4ec4-86c5-c2d1f89251b2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T10:41:45.503Z", + "completed":"2017-12-30T10:41:45.503Z", + "new_balance":"2092.03", + "value":"-4.27" + } + }, + { + "id":"8709ec2c-fbe5-4fd8-b413-f30a8013efc7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T10:45:02.884Z", + "completed":"2017-12-30T10:45:02.884Z", + "new_balance":"2088.92", + "value":"-3.11" + } + }, + { + "id":"71eb2907-cec5-41ce-a617-617796fea91f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T17:14:07.099Z", + "completed":"2017-12-30T17:14:07.099Z", + "new_balance":"2194.55", + "value":"105.63" + } + }, + { + "id":"d27e7017-59d7-4117-ae57-5d4137b656e1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T18:17:34.975Z", + "completed":"2017-12-30T18:17:34.975Z", + "new_balance":"2191.11", + "value":"-3.44" + } + }, + { + "id":"fd789fe7-0f70-442b-8a1d-2c518b71255d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:38:50.294Z", + "completed":"2016-01-01T02:38:50.294Z", + "new_balance":"8095.12", + "value":"-3.44" + } + }, + { + "id":"41c155e0-30aa-4af2-9200-65f205d3458e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:51:28.206Z", + "completed":"2016-01-01T02:51:28.206Z", + "new_balance":"8091.68", + "value":"-3.44" + } + }, + { + "id":"2b3be2f5-e18c-4c68-93c5-fa16a1b115df", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T10:04:23.227Z", + "completed":"2016-01-01T10:04:23.227Z", + "new_balance":"8033.45", + "value":"-58.23" + } + }, + { + "id":"8f8bf40e-b600-497a-adcb-aaa5eec571f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T10:44:52.117Z", + "completed":"2016-01-01T10:44:52.117Z", + "new_balance":"8031.13", + "value":"-2.32" + } + }, + { + "id":"38a2f816-75b4-4cf9-8be7-e9672d3654b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T12:45:10.511Z", + "completed":"2016-01-01T12:45:10.511Z", + "new_balance":"8025.98", + "value":"-5.15" + } + }, + { + "id":"81767b64-545f-4878-a5d7-ee2867a0914b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T22:39:06.944Z", + "completed":"2016-01-01T22:39:06.944Z", + "new_balance":"8010.73", + "value":"-15.25" + } + }, + { + "id":"e33cb9bf-d87f-41ae-a861-d95bb4098cf7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T03:07:05.758Z", + "completed":"2016-01-02T03:07:05.758Z", + "new_balance":"8003.63", + "value":"-7.10" + } + }, + { + "id":"f181368e-cc6b-4810-bd0c-c5be381706ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T23:47:27.271Z", + "completed":"2016-01-02T23:47:27.271Z", + "new_balance":"7993.94", + "value":"-9.69" + } + }, + { + "id":"b83ca910-203b-4d56-a882-1c85749eaacd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:22:43.300Z", + "completed":"2016-01-04T04:22:43.300Z", + "new_balance":"7990.16", + "value":"-3.78" + } + }, + { + "id":"11e4d36a-759c-46bd-b4c6-c6a99621efed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T06:21:36.888Z", + "completed":"2016-01-04T06:21:36.888Z", + "new_balance":"7987.25", + "value":"-2.91" + } + }, + { + "id":"75069669-657d-4bc5-9e7a-c0c9c9fe119f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T11:31:42.273Z", + "completed":"2016-01-07T11:31:42.273Z", + "new_balance":"7980.06", + "value":"-7.19" + } + }, + { + "id":"c7b2bc96-bd9c-4c8a-8653-aeb2d4c69175", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T17:18:26.859Z", + "completed":"2016-01-09T17:18:26.859Z", + "new_balance":"7979.60", + "value":"-0.46" + } + }, + { + "id":"68de1227-4722-4220-83a4-f50a6da675f8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T17:09:52.716Z", + "completed":"2016-01-10T17:09:52.716Z", + "new_balance":"7976.92", + "value":"-2.68" + } + }, + { + "id":"482d33e0-8adb-416e-806f-2ff4a5d09bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T08:22:25.190Z", + "completed":"2016-01-12T08:22:25.190Z", + "new_balance":"7973.70", + "value":"-3.22" + } + }, + { + "id":"586596c4-e6a4-4d93-873b-b8aed3d6309c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T07:54:29.804Z", + "completed":"2016-01-15T07:54:29.804Z", + "new_balance":"7972.17", + "value":"-1.53" + } + }, + { + "id":"3cc7534c-5192-42ac-99da-c8e0eb2d2000", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T18:50:22.113Z", + "completed":"2016-01-15T18:50:22.113Z", + "new_balance":"7971.27", + "value":"-0.90" + } + }, + { + "id":"ec5b4b26-7047-41f5-ac3b-63318b25bc24", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T04:40:38.283Z", + "completed":"2016-01-17T04:40:38.283Z", + "new_balance":"7969.16", + "value":"-2.11" + } + }, + { + "id":"938b7b74-14a3-4cba-ba85-6f348bb461cf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T15:42:55.625Z", + "completed":"2016-01-19T15:42:55.625Z", + "new_balance":"7941.66", + "value":"-27.50" + } + }, + { + "id":"81e05466-429c-4489-ad54-b1096cf6979e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T05:16:51.709Z", + "completed":"2016-01-20T05:16:51.709Z", + "new_balance":"7941.22", + "value":"-0.44" + } + }, + { + "id":"f4f74ec9-83d4-49f8-816f-9aa66c9007e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T09:56:19.127Z", + "completed":"2016-01-22T09:56:19.127Z", + "new_balance":"7936.74", + "value":"-4.48" + } + }, + { + "id":"619f21b9-28ab-49bf-b747-4b727c899af0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T20:45:44.701Z", + "completed":"2016-01-22T20:45:44.701Z", + "new_balance":"7935.63", + "value":"-1.11" + } + }, + { + "id":"789973c0-f4f0-44dd-9504-9ea414266118", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T06:51:59.509Z", + "completed":"2016-01-24T06:51:59.509Z", + "new_balance":"7932.82", + "value":"-2.81" + } + }, + { + "id":"c12a5fa4-7aeb-4fde-9da2-0192f5cc3b5d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T02:09:57.651Z", + "completed":"2016-01-25T02:09:57.651Z", + "new_balance":"7927.42", + "value":"-5.40" + } + }, + { + "id":"05f1164f-18d8-4585-bf8f-15abf2660d39", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T02:37:09.221Z", + "completed":"2016-01-25T02:37:09.221Z", + "new_balance":"7926.98", + "value":"-0.44" + } + }, + { + "id":"dbb8a888-4f15-4b17-aba0-67f5ca109149", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T17:27:28.531Z", + "completed":"2016-01-26T17:27:28.531Z", + "new_balance":"7921.16", + "value":"-5.82" + } + }, + { + "id":"ab63741c-6723-4dc9-a56b-1829b28ca37d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:46:11.405Z", + "completed":"2016-02-01T01:46:11.405Z", + "new_balance":"8103.86", + "value":"182.70" + } + }, + { + "id":"4956ae76-2e4a-4a1d-b6a0-bacdc6b7e80e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T06:45:41.176Z", + "completed":"2016-02-01T06:45:41.176Z", + "new_balance":"8098.71", + "value":"-5.15" + } + }, + { + "id":"20c2d674-fbbd-4271-bd1a-5139c4df3401", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T06:54:54.332Z", + "completed":"2016-02-01T06:54:54.332Z", + "new_balance":"8096.39", + "value":"-2.32" + } + }, + { + "id":"045e00d7-dd44-489f-b195-62011c71db93", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T11:00:42.193Z", + "completed":"2016-02-01T11:00:42.193Z", + "new_balance":"8038.16", + "value":"-58.23" + } + }, + { + "id":"257db04a-123d-47bd-a84c-d7d2714bee6a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T12:46:38.362Z", + "completed":"2016-02-01T12:46:38.362Z", + "new_balance":"8034.72", + "value":"-3.44" + } + }, + { + "id":"a7e1ef03-3fb2-4a76-a999-7ffb3c169ca0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T21:07:07.228Z", + "completed":"2016-02-01T21:07:07.228Z", + "new_balance":"8019.47", + "value":"-15.25" + } + }, + { + "id":"fb986b4a-6ae4-433c-b502-3b621e56039b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T00:07:58.770Z", + "completed":"2016-02-02T00:07:58.770Z", + "new_balance":"8012.37", + "value":"-7.10" + } + }, + { + "id":"2a8ff39c-3294-40ba-89ae-124e7fa52ee5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T04:31:20.278Z", + "completed":"2016-02-02T04:31:20.278Z", + "new_balance":"8011.22", + "value":"-1.15" + } + }, + { + "id":"db7801c7-bd7e-448b-b391-c5f45d0b003e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T09:19:57.864Z", + "completed":"2016-02-02T09:19:57.864Z", + "new_balance":"8009.12", + "value":"-2.10" + } + }, + { + "id":"c690218f-388f-4990-b2a8-2b5033cd4799", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:09:11.154Z", + "completed":"2016-02-03T02:09:11.154Z", + "new_balance":"8006.72", + "value":"-2.40" + } + }, + { + "id":"615814c4-f3c8-4417-bfa6-1a3787f9964b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T12:39:56.223Z", + "completed":"2016-02-03T12:39:56.223Z", + "new_balance":"8004.22", + "value":"-2.50" + } + }, + { + "id":"3fa61e39-5ee8-4755-96df-97eda5aa4446", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T19:26:26.575Z", + "completed":"2016-02-03T19:26:26.575Z", + "new_balance":"8000.89", + "value":"-3.33" + } + }, + { + "id":"cdafee8f-9629-4a0f-b787-4e43fb169de3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T12:37:46.154Z", + "completed":"2016-02-06T12:37:46.154Z", + "new_balance":"7993.70", + "value":"-7.19" + } + }, + { + "id":"963daca0-5f9a-4205-90dc-cbc0d9382125", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T09:37:42.001Z", + "completed":"2016-02-08T09:37:42.001Z", + "new_balance":"7991.25", + "value":"-2.45" + } + }, + { + "id":"7421a5e8-4966-4379-b68e-7bbe26ff7b14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T12:56:28.228Z", + "completed":"2016-02-08T12:56:28.228Z", + "new_balance":"7990.77", + "value":"-0.48" + } + }, + { + "id":"f892ffa3-abac-483e-8769-681c53cce2df", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T13:31:00.818Z", + "completed":"2016-02-08T13:31:00.818Z", + "new_balance":"7987.74", + "value":"-3.03" + } + }, + { + "id":"e9a96e3f-179b-40f6-a63d-8a95f2bfff77", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T16:21:02.864Z", + "completed":"2016-02-09T16:21:02.864Z", + "new_balance":"7984.60", + "value":"-3.14" + } + }, + { + "id":"f1751a41-f362-40a0-b186-af2ce0156662", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T23:20:44.464Z", + "completed":"2016-02-09T23:20:44.464Z", + "new_balance":"7981.12", + "value":"-3.48" + } + }, + { + "id":"441ae9b0-bb70-402e-9e26-ce34d14a38c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T03:51:14.741Z", + "completed":"2016-02-12T03:51:14.741Z", + "new_balance":"7980.65", + "value":"-0.47" + } + }, + { + "id":"5dbd6a4a-2be0-440b-8d9a-e76baa04a01c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T15:05:20.598Z", + "completed":"2016-02-13T15:05:20.598Z", + "new_balance":"7974.22", + "value":"-6.43" + } + }, + { + "id":"0043f507-e2bb-41e2-9c6d-0b4258990278", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T17:00:36.681Z", + "completed":"2016-02-13T17:00:36.681Z", + "new_balance":"7973.45", + "value":"-0.77" + } + }, + { + "id":"dadfd117-f4cb-4b1f-ba0a-a32f7ddbd68f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T19:11:52.235Z", + "completed":"2016-02-13T19:11:52.235Z", + "new_balance":"7977.53", + "value":"4.08" + } + }, + { + "id":"f43e0624-962f-4bd4-9d8f-f32de73dca1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:10:51.536Z", + "completed":"2016-02-14T04:10:51.536Z", + "new_balance":"7973.41", + "value":"-4.12" + } + }, + { + "id":"1e233cd1-215e-4849-8fa3-69ad8f98ea96", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T20:13:56.889Z", + "completed":"2016-02-15T20:13:56.889Z", + "new_balance":"7970.86", + "value":"-2.55" + } + }, + { + "id":"5793fc17-e2e8-4245-a555-5425c38f5afb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T14:03:23.562Z", + "completed":"2016-02-28T14:03:23.562Z", + "new_balance":"7967.92", + "value":"-2.94" + } + }, + { + "id":"d5b2caaa-82cf-424f-8275-f47a43868362", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T01:18:54.609Z", + "completed":"2016-03-01T01:18:54.609Z", + "new_balance":"7965.60", + "value":"-2.32" + } + }, + { + "id":"966d9e4d-862c-4d9d-9d81-3a6fdf35b4fb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T02:06:22.319Z", + "completed":"2016-03-01T02:06:22.319Z", + "new_balance":"7960.45", + "value":"-5.15" + } + }, + { + "id":"9cbd38e1-a1c6-4f60-8610-9a417922a29e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T02:56:41.560Z", + "completed":"2016-03-01T02:56:41.560Z", + "new_balance":"7902.22", + "value":"-58.23" + } + }, + { + "id":"8a84d952-2a50-43e2-927f-aada6e7e277c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T09:37:51.305Z", + "completed":"2016-03-01T09:37:51.305Z", + "new_balance":"7886.97", + "value":"-15.25" + } + }, + { + "id":"4201023c-bf49-4b69-bb08-78c56a7974b7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T14:57:06.518Z", + "completed":"2016-03-01T14:57:06.518Z", + "new_balance":"7883.53", + "value":"-3.44" + } + }, + { + "id":"8840e743-8e2e-42de-8d8f-45b8e83c6c43", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T15:28:39.208Z", + "completed":"2016-03-01T15:28:39.208Z", + "new_balance":"8066.23", + "value":"182.70" + } + }, + { + "id":"75fbd6f4-b082-4dec-b1c8-d55ee2625cd6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T17:47:31.138Z", + "completed":"2016-03-02T17:47:31.138Z", + "new_balance":"8059.13", + "value":"-7.10" + } + }, + { + "id":"e0e993e4-c824-4a56-b183-46ec461e69fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T09:18:41.978Z", + "completed":"2016-03-04T09:18:41.978Z", + "new_balance":"8051.83", + "value":"-7.30" + } + }, + { + "id":"b86666f5-1ea3-4a46-87d6-57ae3d160a3d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T19:39:34.565Z", + "completed":"2016-03-04T19:39:34.565Z", + "new_balance":"8051.07", + "value":"-0.76" + } + }, + { + "id":"3b0966ad-4d9b-4f80-b929-e5e462d1ff0b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T20:11:12.769Z", + "completed":"2016-03-04T20:11:12.769Z", + "new_balance":"8047.77", + "value":"-3.30" + } + }, + { + "id":"a6242f58-782e-49a3-820a-27bc5ba25cf1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T20:27:47.844Z", + "completed":"2016-03-04T20:27:47.844Z", + "new_balance":"8046.52", + "value":"-1.25" + } + }, + { + "id":"d279636b-14f3-4ee2-b246-1ca754a4d2f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T13:04:18.581Z", + "completed":"2016-03-05T13:04:18.581Z", + "new_balance":"8046.12", + "value":"-0.40" + } + }, + { + "id":"c9e84501-d186-408c-a253-82f64f42fd40", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T19:55:44.607Z", + "completed":"2016-03-05T19:55:44.607Z", + "new_balance":"8042.08", + "value":"-4.04" + } + }, + { + "id":"009a0217-ee29-48e9-b581-65f7b5b9e70e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T00:29:23.329Z", + "completed":"2016-03-06T00:29:23.329Z", + "new_balance":"8034.78", + "value":"-7.30" + } + }, + { + "id":"ec051e17-ef06-4881-8d63-d2f48928d42f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T07:17:59.827Z", + "completed":"2016-03-06T07:17:59.827Z", + "new_balance":"8029.51", + "value":"-5.27" + } + }, + { + "id":"9b96004d-8135-4313-b323-532e8ed6e699", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T09:33:50.092Z", + "completed":"2016-03-07T09:33:50.092Z", + "new_balance":"8025.24", + "value":"-4.27" + } + }, + { + "id":"04de1a84-6852-4338-ae2c-98c40729ffe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T22:54:20.206Z", + "completed":"2016-03-08T22:54:20.206Z", + "new_balance":"8019.97", + "value":"-5.27" + } + }, + { + "id":"a8853c5d-9858-4ca7-b9d1-36c256b3de3f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T13:38:56.904Z", + "completed":"2016-03-09T13:38:56.904Z", + "new_balance":"8019.43", + "value":"-0.54" + } + }, + { + "id":"35f849ce-1bb2-482e-8b5c-562f33605947", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T19:22:43.913Z", + "completed":"2016-03-10T19:22:43.913Z", + "new_balance":"8013.11", + "value":"-6.32" + } + }, + { + "id":"f2156b0f-7fec-4d10-9d89-5a47931e9e80", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:54:47.924Z", + "completed":"2016-03-11T08:54:47.924Z", + "new_balance":"8012.34", + "value":"-0.77" + } + }, + { + "id":"5d62e278-4783-44d4-aa5c-6ed5018f2719", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T05:59:16.521Z", + "completed":"2016-03-12T05:59:16.521Z", + "new_balance":"8011.29", + "value":"-1.05" + } + }, + { + "id":"12abe5c6-b35d-4353-af52-85c36506a132", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T09:26:38.056Z", + "completed":"2016-03-12T09:26:38.056Z", + "new_balance":"8009.04", + "value":"-2.25" + } + }, + { + "id":"716c8e5a-4d33-45e0-8523-37a61272481a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T06:15:28.855Z", + "completed":"2016-03-13T06:15:28.855Z", + "new_balance":"8004.78", + "value":"-4.26" + } + }, + { + "id":"2e5c5e3b-ac97-4a61-b135-f5f678d03b61", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T10:31:59.940Z", + "completed":"2016-03-14T10:31:59.940Z", + "new_balance":"8004.26", + "value":"-0.52" + } + }, + { + "id":"2af2b807-eb7b-49c7-96a0-65daa0c9defe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T11:10:07.585Z", + "completed":"2016-03-16T11:10:07.585Z", + "new_balance":"7999.44", + "value":"-4.82" + } + }, + { + "id":"1bc2ce77-ace1-425b-9bec-adc8fc95c79b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T20:57:07.801Z", + "completed":"2016-03-16T20:57:07.801Z", + "new_balance":"7989.65", + "value":"-9.79" + } + }, + { + "id":"9d03b02c-0bd9-4d22-a074-5d5338142a09", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T16:55:42.695Z", + "completed":"2016-03-18T16:55:42.695Z", + "new_balance":"7989.13", + "value":"-0.52" + } + }, + { + "id":"58e6174e-fd44-427b-a4b9-9c9e2a8c242c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T07:52:10.418Z", + "completed":"2016-03-19T07:52:10.418Z", + "new_balance":"7984.84", + "value":"-4.29" + } + }, + { + "id":"e3cea88a-255e-4571-8ef9-1a0aecf2696b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T15:04:33.448Z", + "completed":"2016-03-19T15:04:33.448Z", + "new_balance":"7978.52", + "value":"-6.32" + } + }, + { + "id":"093e9548-08ed-4845-96e8-28e088d60687", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T18:17:12.691Z", + "completed":"2016-03-19T18:17:12.691Z", + "new_balance":"7974.37", + "value":"-4.15" + } + }, + { + "id":"1830f4ce-5d86-4118-81c1-e69bb310d504", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T14:24:12.895Z", + "completed":"2016-03-20T14:24:12.895Z", + "new_balance":"7967.41", + "value":"-6.96" + } + }, + { + "id":"56450c00-475e-445e-a88d-ddc1b9447edb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T22:27:13.179Z", + "completed":"2016-03-20T22:27:13.179Z", + "new_balance":"7962.25", + "value":"-5.16" + } + }, + { + "id":"21639e89-c814-441c-8466-dd92a988fcb7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T11:13:36.445Z", + "completed":"2016-03-21T11:13:36.445Z", + "new_balance":"7961.66", + "value":"-0.59" + } + }, + { + "id":"d1aa1712-c357-4a7d-ac2e-24edce365d12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T19:13:34.430Z", + "completed":"2016-03-21T19:13:34.430Z", + "new_balance":"7960.90", + "value":"-0.76" + } + }, + { + "id":"6602ca2f-cac0-46a4-93da-c1f653f5336c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T11:21:43.002Z", + "completed":"2016-03-23T11:21:43.002Z", + "new_balance":"7959.99", + "value":"-0.91" + } + }, + { + "id":"e79dc971-fecb-43e9-83f7-40626cfd66c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T15:34:41.125Z", + "completed":"2016-03-23T15:34:41.125Z", + "new_balance":"7955.38", + "value":"-4.61" + } + }, + { + "id":"2f7a090a-f2bf-4ead-b6b9-874fef53790e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T12:26:21.725Z", + "completed":"2016-03-24T12:26:21.725Z", + "new_balance":"7951.83", + "value":"-3.55" + } + }, + { + "id":"0e6cf457-c1de-41ca-97eb-0e71a84929b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T03:34:13.123Z", + "completed":"2016-03-25T03:34:13.123Z", + "new_balance":"7950.52", + "value":"-1.31" + } + }, + { + "id":"1fe08df4-5654-43c9-9025-74ba3172644f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T11:31:04.241Z", + "completed":"2016-03-25T11:31:04.241Z", + "new_balance":"7947.46", + "value":"-3.06" + } + }, + { + "id":"968c48e8-44a8-40e4-91fc-7ddbf7c013b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T21:53:55.337Z", + "completed":"2016-03-27T21:53:55.337Z", + "new_balance":"7919.96", + "value":"-27.50" + } + }, + { + "id":"0d94282b-a9c9-4aad-b33b-f0af0e9a61ff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T16:32:02.217Z", + "completed":"2016-03-28T16:32:02.217Z", + "new_balance":"7917.22", + "value":"-2.74" + } + }, + { + "id":"6184e84f-3330-4ed9-8fa7-05baa0e51f2e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T02:23:56.824Z", + "completed":"2016-04-01T02:23:56.824Z", + "new_balance":"7858.99", + "value":"-58.23" + } + }, + { + "id":"75e0b803-5b18-4cc3-ac9c-f1f767e8384a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T08:19:32.949Z", + "completed":"2016-04-01T08:19:32.949Z", + "new_balance":"7856.67", + "value":"-2.32" + } + }, + { + "id":"736c07be-5c5e-4999-821f-345268b7163e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T18:46:34.517Z", + "completed":"2016-04-01T18:46:34.517Z", + "new_balance":"7841.42", + "value":"-15.25" + } + }, + { + "id":"efb55b10-ff2b-47e4-8b9b-003ed09f0a6e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T22:12:07.380Z", + "completed":"2016-04-01T22:12:07.380Z", + "new_balance":"7836.27", + "value":"-5.15" + } + }, + { + "id":"7419839d-c130-4baa-b919-53318982554a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T00:23:03.006Z", + "completed":"2016-04-02T00:23:03.006Z", + "new_balance":"7826.58", + "value":"-9.69" + } + }, + { + "id":"d60339e0-82a6-4e92-8740-0e4482d063b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T10:59:42.020Z", + "completed":"2016-04-02T10:59:42.020Z", + "new_balance":"7819.48", + "value":"-7.10" + } + }, + { + "id":"aaf88047-6847-4b14-80a7-5229142fde5f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:12:54.559Z", + "completed":"2016-04-03T02:12:54.559Z", + "new_balance":"7827.42", + "value":"7.94" + } + }, + { + "id":"f0469249-fd36-405d-a65c-198fbb38ffa1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T03:29:53.136Z", + "completed":"2016-04-03T03:29:53.136Z", + "new_balance":"7824.51", + "value":"-2.91" + } + }, + { + "id":"4627b1f1-0f36-4679-9485-b8f2e6920184", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T04:59:21.070Z", + "completed":"2016-04-03T04:59:21.070Z", + "new_balance":"7836.85", + "value":"12.34" + } + }, + { + "id":"0e5a36c1-42f2-4a1a-861c-0bdad86e2afb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:02:56.657Z", + "completed":"2016-04-03T08:02:56.657Z", + "new_balance":"7833.07", + "value":"-3.78" + } + }, + { + "id":"f10c1d58-6767-44f2-800c-85296e1f61cd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:14:40.971Z", + "completed":"2016-04-03T19:14:40.971Z", + "new_balance":"7829.29", + "value":"-3.78" + } + }, + { + "id":"1d50d406-3b27-46e4-84bc-01f06ab1eca3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T03:49:06.173Z", + "completed":"2016-04-04T03:49:06.173Z", + "new_balance":"7822.10", + "value":"-7.19" + } + }, + { + "id":"34cccd32-1fb4-4500-a19d-c1da0a1d5c5a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T15:59:55.396Z", + "completed":"2016-04-05T15:59:55.396Z", + "new_balance":"7819.42", + "value":"-2.68" + } + }, + { + "id":"8d05dd23-e4e3-402e-ac9f-6ae7d212b114", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T21:47:35.990Z", + "completed":"2016-04-05T21:47:35.990Z", + "new_balance":"7818.96", + "value":"-0.46" + } + }, + { + "id":"34ce46ab-10da-4b00-82e3-d3dd89445b12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T07:49:08.788Z", + "completed":"2016-04-07T07:49:08.788Z", + "new_balance":"7815.74", + "value":"-3.22" + } + }, + { + "id":"15c165ba-af6e-4165-9948-beeaa1f6fb4a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T20:48:32.491Z", + "completed":"2016-04-07T20:48:32.491Z", + "new_balance":"7814.21", + "value":"-1.53" + } + }, + { + "id":"1e170ecd-0e07-4a65-b8ee-192f7b6224fa", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T10:28:59.989Z", + "completed":"2016-04-08T10:28:59.989Z", + "new_balance":"7813.31", + "value":"-0.90" + } + }, + { + "id":"2c064590-09e5-4ccf-baba-900252202342", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T03:17:08.113Z", + "completed":"2016-04-09T03:17:08.113Z", + "new_balance":"7811.20", + "value":"-2.11" + } + }, + { + "id":"ff04cc5b-fa94-4df1-8fec-f6e51c3d431c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T09:42:40.405Z", + "completed":"2016-04-09T09:42:40.405Z", + "new_balance":"7810.76", + "value":"-0.44" + } + }, + { + "id":"54c34610-2008-42f4-8536-ef36bd3d7268", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T13:39:59.305Z", + "completed":"2016-04-09T13:39:59.305Z", + "new_balance":"7783.26", + "value":"-27.50" + } + }, + { + "id":"95ba799b-5db6-4789-9d30-6f79349edae6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T00:25:12.667Z", + "completed":"2016-04-10T00:25:12.667Z", + "new_balance":"7778.78", + "value":"-4.48" + } + }, + { + "id":"913a5185-ca81-4e9e-86c7-128a7831c2e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T06:30:17.618Z", + "completed":"2016-04-17T06:30:17.618Z", + "new_balance":"7777.67", + "value":"-1.11" + } + }, + { + "id":"64fb9613-0869-47d7-acd3-ebe9e092eeab", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T17:51:21.140Z", + "completed":"2016-04-18T17:51:21.140Z", + "new_balance":"7774.86", + "value":"-2.81" + } + }, + { + "id":"3707bae3-e4ff-4c3f-80a0-d40520d30478", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T21:22:54.109Z", + "completed":"2016-04-25T21:22:54.109Z", + "new_balance":"7769.46", + "value":"-5.40" + } + }, + { + "id":"f8005793-1fe3-4a45-9820-9af979d98b38", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T14:27:25.278Z", + "completed":"2016-04-26T14:27:25.278Z", + "new_balance":"7763.64", + "value":"-5.82" + } + }, + { + "id":"f39af54c-4952-4cc0-971f-b9ec21b3e04f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T22:35:59.329Z", + "completed":"2016-04-26T22:35:59.329Z", + "new_balance":"7763.20", + "value":"-0.44" + } + }, + { + "id":"23386970-b29b-40d7-8148-0e685ed36234", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T00:55:34.948Z", + "completed":"2016-05-02T00:55:34.948Z", + "new_balance":"7747.95", + "value":"-15.25" + } + }, + { + "id":"7c9b7875-536d-41f6-8bde-845b10824af3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T03:04:12.522Z", + "completed":"2016-05-02T03:04:12.522Z", + "new_balance":"7740.85", + "value":"-7.10" + } + }, + { + "id":"cc5d50c2-ca9b-4ac4-810c-a3ec562d4629", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T05:17:21.749Z", + "completed":"2016-05-02T05:17:21.749Z", + "new_balance":"7923.55", + "value":"182.70" + } + }, + { + "id":"08642f89-9ff2-42e3-a704-13a42bcbf20f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T10:52:19.100Z", + "completed":"2016-05-02T10:52:19.100Z", + "new_balance":"7865.32", + "value":"-58.23" + } + }, + { + "id":"8aa944d9-2e9a-4b0d-98e8-eee2e305779b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T13:43:17.186Z", + "completed":"2016-05-02T13:43:17.186Z", + "new_balance":"7861.88", + "value":"-3.44" + } + }, + { + "id":"530f1d67-8799-461f-b224-c1cc46926c4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T20:17:44.785Z", + "completed":"2016-05-02T20:17:44.785Z", + "new_balance":"7859.56", + "value":"-2.32" + } + }, + { + "id":"22bf5eed-816b-494c-8383-8225a3ad3d1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T20:30:23.173Z", + "completed":"2016-05-02T20:30:23.173Z", + "new_balance":"7858.41", + "value":"-1.15" + } + }, + { + "id":"d5c5c4a4-dbe5-4c03-ace8-d76c4c4588f3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T23:14:06.998Z", + "completed":"2016-05-02T23:14:06.998Z", + "new_balance":"7853.26", + "value":"-5.15" + } + }, + { + "id":"46b66c72-3c0d-4300-8a58-ac4f9d89ff5e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T16:05:47.708Z", + "completed":"2016-05-03T16:05:47.708Z", + "new_balance":"7851.16", + "value":"-2.10" + } + }, + { + "id":"7efb14e1-5a6a-4d19-bf0c-b5592e1dfee7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T23:08:48.805Z", + "completed":"2016-05-03T23:08:48.805Z", + "new_balance":"7848.66", + "value":"-2.50" + } + }, + { + "id":"baea8f74-418b-46ae-9045-4b77318afd82", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T19:59:31.566Z", + "completed":"2016-05-04T19:59:31.566Z", + "new_balance":"7846.26", + "value":"-2.40" + } + }, + { + "id":"157e16dc-91ee-4146-88d0-c4e6f3c88236", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T20:52:01.799Z", + "completed":"2016-05-04T20:52:01.799Z", + "new_balance":"7842.93", + "value":"-3.33" + } + }, + { + "id":"29beca00-8757-424b-8ed9-a34e420a5286", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T11:10:38.561Z", + "completed":"2016-05-05T11:10:38.561Z", + "new_balance":"7835.74", + "value":"-7.19" + } + }, + { + "id":"5b48f01e-502a-4cf5-b6bd-41ba353fdc1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T03:38:22.778Z", + "completed":"2016-05-07T03:38:22.778Z", + "new_balance":"7835.26", + "value":"-0.48" + } + }, + { + "id":"6e9ddead-69be-4413-bd39-7134b022e34e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T12:10:17.919Z", + "completed":"2016-05-07T12:10:17.919Z", + "new_balance":"7832.23", + "value":"-3.03" + } + }, + { + "id":"dce2f85d-bbd4-4fee-b615-57ea2119af6b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T11:54:00.727Z", + "completed":"2016-05-12T11:54:00.727Z", + "new_balance":"7829.78", + "value":"-2.45" + } + }, + { + "id":"a4b06233-89e2-4a8a-8a99-34ae0adbf561", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T17:41:01.695Z", + "completed":"2016-05-12T17:41:01.695Z", + "new_balance":"7826.64", + "value":"-3.14" + } + }, + { + "id":"4f3de982-c155-42c0-9594-fa89e609e9d5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T17:09:40.862Z", + "completed":"2016-05-14T17:09:40.862Z", + "new_balance":"7823.16", + "value":"-3.48" + } + }, + { + "id":"0cbf6fc2-1c57-4610-97ce-ab872beecd85", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T16:22:46.661Z", + "completed":"2016-05-16T16:22:46.661Z", + "new_balance":"7822.69", + "value":"-0.47" + } + }, + { + "id":"f55a2439-d692-44b7-8352-d088c890ef9b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T09:41:26.584Z", + "completed":"2016-05-18T09:41:26.584Z", + "new_balance":"7821.92", + "value":"-0.77" + } + }, + { + "id":"ede52688-7c16-4011-a922-ef866f8af825", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T20:53:04.632Z", + "completed":"2016-05-20T20:53:04.632Z", + "new_balance":"7826.00", + "value":"4.08" + } + }, + { + "id":"e452df76-44a6-45a1-8ac6-83dee6527b4e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T04:36:41.710Z", + "completed":"2016-05-21T04:36:41.710Z", + "new_balance":"7821.88", + "value":"-4.12" + } + }, + { + "id":"846974dc-e1c6-460e-b8a4-67b097403813", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T07:21:56.945Z", + "completed":"2016-05-21T07:21:56.945Z", + "new_balance":"7815.45", + "value":"-6.43" + } + }, + { + "id":"d5347c2c-db6c-4dce-a4df-1fea34f97d21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:16.480Z", + "completed":"2016-05-27T06:27:16.480Z", + "new_balance":"7812.90", + "value":"-2.55" + } + }, + { + "id":"fd0d4ae6-4a04-4518-99e5-ebb2c03a5920", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T08:11:32.298Z", + "completed":"2016-05-27T08:11:32.298Z", + "new_balance":"7809.96", + "value":"-2.94" + } + }, + { + "id":"af9d1957-9f5a-40f4-a12d-d95464501b4a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T00:58:28.867Z", + "completed":"2016-06-01T00:58:28.867Z", + "new_balance":"7751.73", + "value":"-58.23" + } + }, + { + "id":"5cef8a29-4b08-4209-b354-51646c92bc7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T02:54:14.784Z", + "completed":"2016-06-01T02:54:14.784Z", + "new_balance":"7934.43", + "value":"182.70" + } + }, + { + "id":"ce9e1fba-e701-4e45-934a-f43795a6f90f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T05:51:32.970Z", + "completed":"2016-06-01T05:51:32.970Z", + "new_balance":"7932.11", + "value":"-2.32" + } + }, + { + "id":"59ab8aa5-a3e8-4a00-a34e-e24fab613924", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T14:43:59.671Z", + "completed":"2016-06-01T14:43:59.671Z", + "new_balance":"7928.67", + "value":"-3.44" + } + }, + { + "id":"0e93529b-2f20-4631-85e8-62434add86cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:38:06.287Z", + "completed":"2016-06-01T16:38:06.287Z", + "new_balance":"7913.42", + "value":"-15.25" + } + }, + { + "id":"49724337-7626-4ccd-8f39-25d0b8c82347", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T17:42:10.569Z", + "completed":"2016-06-01T17:42:10.569Z", + "new_balance":"7908.27", + "value":"-5.15" + } + }, + { + "id":"68221512-9ad3-4fc5-8269-e2af281748bc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T12:02:38.216Z", + "completed":"2016-06-04T12:02:38.216Z", + "new_balance":"7901.17", + "value":"-7.10" + } + }, + { + "id":"84fe5004-ecd3-49ea-b1f3-986762d0b59e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T17:34:24.818Z", + "completed":"2016-06-04T17:34:24.818Z", + "new_balance":"7889.21", + "value":"-11.96" + } + }, + { + "id":"3fa55aa5-39d0-49ce-8c1d-20187a7b0836", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:26:32.109Z", + "completed":"2016-06-11T11:26:32.109Z", + "new_balance":"7885.91", + "value":"-3.30" + } + }, + { + "id":"76a7621d-3221-4c8c-9dd2-56a9edd0fd79", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T02:05:28.952Z", + "completed":"2016-06-12T02:05:28.952Z", + "new_balance":"7884.66", + "value":"-1.25" + } + }, + { + "id":"5d360259-df27-4562-88fa-515ed250cb72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T12:59:21.202Z", + "completed":"2016-06-13T12:59:21.202Z", + "new_balance":"7877.36", + "value":"-7.30" + } + }, + { + "id":"9cae4892-16ff-478c-9ba1-e046b99502e7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T13:46:18.661Z", + "completed":"2016-06-13T13:46:18.661Z", + "new_balance":"7876.60", + "value":"-0.76" + } + }, + { + "id":"754d9932-14d3-45bb-b2ad-8e1cb234e706", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:05:48.891Z", + "completed":"2016-06-16T17:05:48.891Z", + "new_balance":"7872.56", + "value":"-4.04" + } + }, + { + "id":"f1a60792-a7ea-4b87-9708-6c76c1b5efb9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T02:33:31.225Z", + "completed":"2016-06-17T02:33:31.225Z", + "new_balance":"7865.26", + "value":"-7.30" + } + }, + { + "id":"dbd287f8-941b-453c-9a11-4937af675f3d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T23:58:42.252Z", + "completed":"2016-06-17T23:58:42.252Z", + "new_balance":"7864.86", + "value":"-0.40" + } + }, + { + "id":"d5ef5000-6fb7-4f3e-98c9-74c913ee7f12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T07:20:31.042Z", + "completed":"2016-06-18T07:20:31.042Z", + "new_balance":"7859.59", + "value":"-5.27" + } + }, + { + "id":"95cde4d3-daea-4a25-9ec6-16575df9fc6a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T06:03:22.732Z", + "completed":"2016-06-19T06:03:22.732Z", + "new_balance":"7855.32", + "value":"-4.27" + } + }, + { + "id":"7ea5b2cf-70d7-4841-8110-1f17eb123d45", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T19:28:54.420Z", + "completed":"2016-06-19T19:28:54.420Z", + "new_balance":"7850.05", + "value":"-5.27" + } + }, + { + "id":"1cd7e6ec-d994-4b22-b646-68433bca998d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T00:05:49.001Z", + "completed":"2016-06-21T00:05:49.001Z", + "new_balance":"7849.51", + "value":"-0.54" + } + }, + { + "id":"b9fedf18-cbb9-407b-a81a-aeb069794c89", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T12:43:21.414Z", + "completed":"2016-06-21T12:43:21.414Z", + "new_balance":"7843.19", + "value":"-6.32" + } + }, + { + "id":"b77e5914-8bbf-4a00-92a8-bb20da02e327", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T07:03:59.997Z", + "completed":"2016-06-23T07:03:59.997Z", + "new_balance":"7842.42", + "value":"-0.77" + } + }, + { + "id":"6b7567c2-b9ed-4314-afb7-b23fc631bd21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T20:16:18.598Z", + "completed":"2016-06-23T20:16:18.598Z", + "new_balance":"7840.17", + "value":"-2.25" + } + }, + { + "id":"8ad1e1d2-1212-41ec-b50c-67fd492fe64e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T11:50:34.352Z", + "completed":"2016-06-24T11:50:34.352Z", + "new_balance":"7839.12", + "value":"-1.05" + } + }, + { + "id":"fe631050-5395-4f90-a4b2-5985db051f8f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T15:51:10.531Z", + "completed":"2016-06-24T15:51:10.531Z", + "new_balance":"7834.86", + "value":"-4.26" + } + }, + { + "id":"40b4a0cb-d35d-453d-9385-a1afbcfdd12a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:12:20.326Z", + "completed":"2016-06-28T06:12:20.326Z", + "new_balance":"7834.34", + "value":"-0.52" + } + }, + { + "id":"069c36fa-db74-4af4-aeb0-a129440f6535", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T09:36:25.931Z", + "completed":"2016-06-28T09:36:25.931Z", + "new_balance":"7833.82", + "value":"-0.52" + } + }, + { + "id":"0445066b-8811-42c1-b767-6a2ba8b52707", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T13:05:45.981Z", + "completed":"2016-06-28T13:05:45.981Z", + "new_balance":"7829.00", + "value":"-4.82" + } + }, + { + "id":"afa50d16-ae6c-46ff-b3db-3a242f7faef4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T15:09:48.971Z", + "completed":"2016-06-28T15:09:48.971Z", + "new_balance":"7819.21", + "value":"-9.79" + } + }, + { + "id":"f78fd436-f1f6-43da-8f0a-a65b2695cb71", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T14:50:32.664Z", + "completed":"2016-06-29T14:50:32.664Z", + "new_balance":"7814.92", + "value":"-4.29" + } + }, + { + "id":"79202517-0c0e-4d7a-8db8-74a7044c9af0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T15:33:50.249Z", + "completed":"2016-06-29T15:33:50.249Z", + "new_balance":"7808.60", + "value":"-6.32" + } + }, + { + "id":"18bf5c75-5051-40ae-ae4f-944b0c0d9641", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T16:29:15.913Z", + "completed":"2016-06-29T16:29:15.913Z", + "new_balance":"7803.44", + "value":"-5.16" + } + }, + { + "id":"37d04b49-16b5-4f87-b13e-89034b747d63", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T19:47:07.401Z", + "completed":"2016-06-29T19:47:07.401Z", + "new_balance":"7799.29", + "value":"-4.15" + } + }, + { + "id":"da6199c7-4634-4d56-97f6-9f052c7f2986", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T20:12:57.819Z", + "completed":"2016-06-29T20:12:57.819Z", + "new_balance":"7798.53", + "value":"-0.76" + } + }, + { + "id":"21d885c5-a612-4fc7-8160-3e3ca8ade952", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:25:23.714Z", + "completed":"2016-06-29T23:25:23.714Z", + "new_balance":"7791.57", + "value":"-6.96" + } + }, + { + "id":"adb56cde-ada6-4e55-9a1f-9a14976681ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T06:54:40.364Z", + "completed":"2016-06-30T06:54:40.364Z", + "new_balance":"7790.66", + "value":"-0.91" + } + }, + { + "id":"6b65e34e-1b25-447e-9647-46f2ccec9824", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T15:17:08.328Z", + "completed":"2016-06-30T15:17:08.328Z", + "new_balance":"7787.11", + "value":"-3.55" + } + }, + { + "id":"ec6ad25a-6bc2-4b16-bc9e-0c86ac42b4bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T17:46:51.693Z", + "completed":"2016-06-30T17:46:51.693Z", + "new_balance":"7786.52", + "value":"-0.59" + } + }, + { + "id":"c89a5404-585f-438b-ad88-9db449e9ba21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T17:52:49.073Z", + "completed":"2016-06-30T17:52:49.073Z", + "new_balance":"7781.91", + "value":"-4.61" + } + }, + { + "id":"eaac7adb-0dbf-4a9f-82d3-01c9c55df0b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T02:02:08.757Z", + "completed":"2016-07-01T02:02:08.757Z", + "new_balance":"7779.17", + "value":"-2.74" + } + }, + { + "id":"1e4839f9-48e4-4b0e-9ac7-fcc0250fade0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T06:29:50.489Z", + "completed":"2016-07-01T06:29:50.489Z", + "new_balance":"7775.73", + "value":"-3.44" + } + }, + { + "id":"6866f1d1-f48c-4829-a9a2-dd705fde71e9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T10:17:13.188Z", + "completed":"2016-07-01T10:17:13.188Z", + "new_balance":"7748.23", + "value":"-27.50" + } + }, + { + "id":"de4c9fdb-ab41-4f48-ae73-ff2f390727d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T14:48:15.104Z", + "completed":"2016-07-01T14:48:15.104Z", + "new_balance":"7745.17", + "value":"-3.06" + } + }, + { + "id":"19e68676-2148-4dd6-83bb-fa76400a8184", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T16:27:19.905Z", + "completed":"2016-07-01T16:27:19.905Z", + "new_balance":"7740.02", + "value":"-5.15" + } + }, + { + "id":"26f43f61-9e21-4ec1-b46e-31920a0c0a59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T18:25:20.865Z", + "completed":"2016-07-01T18:25:20.865Z", + "new_balance":"7681.79", + "value":"-58.23" + } + }, + { + "id":"e404ba1d-4cc7-4088-a5c5-37d8c97dffe1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T18:53:14.095Z", + "completed":"2016-07-01T18:53:14.095Z", + "new_balance":"7666.54", + "value":"-15.25" + } + }, + { + "id":"1142890a-4b2a-4a99-a780-284a4a3e8e76", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:07:57.390Z", + "completed":"2016-07-01T21:07:57.390Z", + "new_balance":"7663.10", + "value":"-3.44" + } + }, + { + "id":"9a334423-652c-4761-8853-a1b6e15fe995", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T21:12:56.520Z", + "completed":"2016-07-01T21:12:56.520Z", + "new_balance":"7660.78", + "value":"-2.32" + } + }, + { + "id":"c79bba1f-03b7-4d04-a832-2d01f45bf304", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T22:23:48.445Z", + "completed":"2016-07-01T22:23:48.445Z", + "new_balance":"7659.47", + "value":"-1.31" + } + }, + { + "id":"708448a7-d798-4ad2-9ffb-ce168be14aa7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T05:26:46.803Z", + "completed":"2016-07-02T05:26:46.803Z", + "new_balance":"7652.37", + "value":"-7.10" + } + }, + { + "id":"cea993ea-5340-438a-9894-34fdde768a75", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T19:45:07.977Z", + "completed":"2016-07-03T19:45:07.977Z", + "new_balance":"7641.90", + "value":"-10.47" + } + }, + { + "id":"c2be0ee6-b503-4181-93c1-d76e55812159", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T01:49:33.026Z", + "completed":"2016-07-04T01:49:33.026Z", + "new_balance":"7640.12", + "value":"-1.78" + } + }, + { + "id":"f6f19595-6268-4d33-83f7-6fff61e7c5e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:09:19.315Z", + "completed":"2016-07-05T15:09:19.315Z", + "new_balance":"7630.48", + "value":"-9.64" + } + }, + { + "id":"ae158e59-e8b3-4d37-93fd-dedce8d82b23", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T23:33:29.164Z", + "completed":"2016-07-05T23:33:29.164Z", + "new_balance":"7623.29", + "value":"-7.19" + } + }, + { + "id":"120d8379-2870-4c36-9e8d-cc82675ff38d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T18:17:22.346Z", + "completed":"2016-07-06T18:17:22.346Z", + "new_balance":"7622.83", + "value":"-0.46" + } + }, + { + "id":"50d7b9b9-b690-408d-a7af-3cf6cfab1842", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T14:11:09.161Z", + "completed":"2016-07-11T14:11:09.161Z", + "new_balance":"7620.15", + "value":"-2.68" + } + }, + { + "id":"9c7d7b71-ec56-45ad-abfe-f27d47489321", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T07:11:36.537Z", + "completed":"2016-07-12T07:11:36.537Z", + "new_balance":"7616.93", + "value":"-3.22" + } + }, + { + "id":"69f6eef3-b968-4858-9cfb-dc17242dc259", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T18:00:06.619Z", + "completed":"2016-07-14T18:00:06.619Z", + "new_balance":"7615.40", + "value":"-1.53" + } + }, + { + "id":"63da4655-e534-413e-ad5f-370f35633fd3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T00:56:52.124Z", + "completed":"2016-07-16T00:56:52.124Z", + "new_balance":"7614.50", + "value":"-0.90" + } + }, + { + "id":"e5191867-ddf2-4348-bb85-33bb32fffef4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T05:52:40.996Z", + "completed":"2016-07-18T05:52:40.996Z", + "new_balance":"7612.39", + "value":"-2.11" + } + }, + { + "id":"27da2b6b-5063-412d-a865-1a8385081a59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T09:24:11.502Z", + "completed":"2016-07-20T09:24:11.502Z", + "new_balance":"7611.95", + "value":"-0.44" + } + }, + { + "id":"cd5dc281-e5f8-4341-863b-5008712f3a7d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T21:18:22.279Z", + "completed":"2016-07-20T21:18:22.279Z", + "new_balance":"7584.45", + "value":"-27.50" + } + }, + { + "id":"fc0fb70d-1652-4a35-b50c-5550a223b9e8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T05:39:54.632Z", + "completed":"2016-07-24T05:39:54.632Z", + "new_balance":"7583.34", + "value":"-1.11" + } + }, + { + "id":"13c028bd-209b-492b-99f2-f729200351dd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T17:38:30.450Z", + "completed":"2016-07-24T17:38:30.450Z", + "new_balance":"7578.86", + "value":"-4.48" + } + }, + { + "id":"48e2dfa0-c6ae-418d-b6d9-93a06b014e00", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T02:59:13.265Z", + "completed":"2016-07-25T02:59:13.265Z", + "new_balance":"7573.46", + "value":"-5.40" + } + }, + { + "id":"09963b53-0563-445a-802e-81777a8de911", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T07:59:40.014Z", + "completed":"2016-07-25T07:59:40.014Z", + "new_balance":"7570.65", + "value":"-2.81" + } + }, + { + "id":"55c00925-8aad-4c90-87da-493ef013f160", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T20:25:34.031Z", + "completed":"2016-07-26T20:25:34.031Z", + "new_balance":"7564.83", + "value":"-5.82" + } + }, + { + "id":"51443538-3bbf-4972-8c82-0735791bbe8b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T19:54:02.591Z", + "completed":"2016-07-27T19:54:02.591Z", + "new_balance":"7564.39", + "value":"-0.44" + } + }, + { + "id":"b49d48db-b15e-4a86-aa4c-9362827af88b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T06:13:46.664Z", + "completed":"2016-08-01T06:13:46.664Z", + "new_balance":"7562.07", + "value":"-2.32" + } + }, + { + "id":"cf845d8c-8d1b-496f-ae2d-386eb5bce4ab", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T08:50:01.929Z", + "completed":"2016-08-01T08:50:01.929Z", + "new_balance":"7744.77", + "value":"182.70" + } + }, + { + "id":"3994f07b-171f-4e7b-abf3-b933f733c14a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T09:11:55.434Z", + "completed":"2016-08-01T09:11:55.434Z", + "new_balance":"7739.62", + "value":"-5.15" + } + }, + { + "id":"82a6533f-456c-416a-9cb7-e360c0902056", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T09:38:43.284Z", + "completed":"2016-08-01T09:38:43.284Z", + "new_balance":"7724.37", + "value":"-15.25" + } + }, + { + "id":"c0c848f4-a5b0-4bb6-a973-303121d718b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T13:06:14.266Z", + "completed":"2016-08-01T13:06:14.266Z", + "new_balance":"7666.14", + "value":"-58.23" + } + }, + { + "id":"6194233d-db5d-463d-b78a-6915ba3e692e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T21:27:34.975Z", + "completed":"2016-08-01T21:27:34.975Z", + "new_balance":"7662.70", + "value":"-3.44" + } + }, + { + "id":"273770e0-cdd2-4897-bcef-b1c3881c8cee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T21:14:55.113Z", + "completed":"2016-08-02T21:14:55.113Z", + "new_balance":"7655.60", + "value":"-7.10" + } + }, + { + "id":"3412e9fe-6338-4c7e-b9cd-5c6e5ea7b411", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T19:08:02.368Z", + "completed":"2016-08-03T19:08:02.368Z", + "new_balance":"7655.14", + "value":"-0.46" + } + }, + { + "id":"e6c70a93-7086-46d1-8cc6-44b99d97cd5a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T21:30:11.221Z", + "completed":"2016-08-04T21:30:11.221Z", + "new_balance":"7652.22", + "value":"-2.92" + } + }, + { + "id":"5cfbf55d-4a7e-4181-b4e2-336bcf02788b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T12:13:10.908Z", + "completed":"2016-08-07T12:13:10.908Z", + "new_balance":"7649.72", + "value":"-2.50" + } + }, + { + "id":"78022670-5fc6-49f2-b913-c94505b1308e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T18:46:36.948Z", + "completed":"2016-08-09T18:46:36.948Z", + "new_balance":"7646.39", + "value":"-3.33" + } + }, + { + "id":"c1347768-34bd-431f-ad40-9841b6449fd8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T23:05:50.523Z", + "completed":"2016-08-09T23:05:50.523Z", + "new_balance":"7643.99", + "value":"-2.40" + } + }, + { + "id":"ea224af5-af3a-43a5-87ee-0d5b9e0181ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T12:50:28.706Z", + "completed":"2016-08-10T12:50:28.706Z", + "new_balance":"7636.80", + "value":"-7.19" + } + }, + { + "id":"43a67b93-46bb-4b75-8da3-2a47c735171e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T10:01:17.842Z", + "completed":"2016-08-14T10:01:17.842Z", + "new_balance":"7636.32", + "value":"-0.48" + } + }, + { + "id":"6ed38f19-1c70-4550-ad9b-c2017bf28773", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T07:44:13.923Z", + "completed":"2016-08-15T07:44:13.923Z", + "new_balance":"7633.29", + "value":"-3.03" + } + }, + { + "id":"e8420723-1e37-45d3-bec1-59e2dd1ca4a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T10:47:53.696Z", + "completed":"2016-08-15T10:47:53.696Z", + "new_balance":"7630.07", + "value":"-3.22" + } + }, + { + "id":"5582b6cc-6de2-44fc-aeef-c8c79ae17d51", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T12:41:55.898Z", + "completed":"2016-08-16T12:41:55.898Z", + "new_balance":"7626.93", + "value":"-3.14" + } + }, + { + "id":"0763971f-7c46-4365-b38e-54a317bd1d50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T07:17:03.621Z", + "completed":"2016-08-17T07:17:03.621Z", + "new_balance":"7623.45", + "value":"-3.48" + } + }, + { + "id":"46756f88-bef0-4124-8ab8-d2c3f8ef7cc4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T03:19:04.627Z", + "completed":"2016-08-20T03:19:04.627Z", + "new_balance":"7622.68", + "value":"-0.77" + } + }, + { + "id":"e4ff833b-235d-42d1-9b8d-da950058ff01", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T16:13:30.294Z", + "completed":"2016-08-20T16:13:30.294Z", + "new_balance":"7622.21", + "value":"-0.47" + } + }, + { + "id":"ba27b449-ef61-4a51-911d-deb8c3fa3501", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T10:49:03.394Z", + "completed":"2016-08-22T10:49:03.394Z", + "new_balance":"7626.29", + "value":"4.08" + } + }, + { + "id":"cf979252-39fc-49f3-b621-1de3218eb9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T03:15:30.802Z", + "completed":"2016-08-23T03:15:30.802Z", + "new_balance":"7619.86", + "value":"-6.43" + } + }, + { + "id":"968a60b5-19e6-4741-b69c-b7b098b23136", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T18:08:45.178Z", + "completed":"2016-08-23T18:08:45.178Z", + "new_balance":"7615.74", + "value":"-4.12" + } + }, + { + "id":"71a92cc8-7e4d-47c7-af41-731fada4d10e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T13:42:04.002Z", + "completed":"2016-08-28T13:42:04.002Z", + "new_balance":"7613.19", + "value":"-2.55" + } + }, + { + "id":"55f6616c-18f5-418a-a247-65985e4d0b54", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T14:03:09.382Z", + "completed":"2016-08-28T14:03:09.382Z", + "new_balance":"7610.25", + "value":"-2.94" + } + }, + { + "id":"06ad096a-a3bc-4eb6-a170-f5525988f3fc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T09:12:23.910Z", + "completed":"2016-09-01T09:12:23.910Z", + "new_balance":"7605.10", + "value":"-5.15" + } + }, + { + "id":"d361dc9b-da46-4da1-bdab-78954c23e39e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T17:37:01.878Z", + "completed":"2016-09-01T17:37:01.878Z", + "new_balance":"7601.66", + "value":"-3.44" + } + }, + { + "id":"15d33177-ba46-44ae-ae68-81e68805c546", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T17:41:20.189Z", + "completed":"2016-09-01T17:41:20.189Z", + "new_balance":"7784.36", + "value":"182.70" + } + }, + { + "id":"ed398ca7-e1bc-4b02-8d41-6423cba3078f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T21:50:04.948Z", + "completed":"2016-09-01T21:50:04.948Z", + "new_balance":"7726.13", + "value":"-58.23" + } + }, + { + "id":"71f446cf-dce3-4312-be0b-727bdc60cb52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T23:02:17.475Z", + "completed":"2016-09-01T23:02:17.475Z", + "new_balance":"7710.88", + "value":"-15.25" + } + }, + { + "id":"04d3efd9-1d05-4289-b35c-423bd51241ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T23:07:40.495Z", + "completed":"2016-09-01T23:07:40.495Z", + "new_balance":"7708.56", + "value":"-2.32" + } + }, + { + "id":"dbc2fac6-30aa-4ea9-94af-882390702186", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T10:30:43.366Z", + "completed":"2016-09-02T10:30:43.366Z", + "new_balance":"7701.46", + "value":"-7.10" + } + }, + { + "id":"c0b8fd67-cb08-47e0-a129-9dbed0ab98e2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T05:55:22.618Z", + "completed":"2016-09-04T05:55:22.618Z", + "new_balance":"7698.16", + "value":"-3.30" + } + }, + { + "id":"dd9814a5-e6cc-4c7e-86d4-560926ffae7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T11:07:03.552Z", + "completed":"2016-09-04T11:07:03.552Z", + "new_balance":"7696.91", + "value":"-1.25" + } + }, + { + "id":"5e337e1a-5f34-498f-8742-2fc9c56dc91e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T12:05:16.893Z", + "completed":"2016-09-04T12:05:16.893Z", + "new_balance":"7689.61", + "value":"-7.30" + } + }, + { + "id":"0cddff3a-2e69-4f15-bced-fd6c65c30e68", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T22:38:11.149Z", + "completed":"2016-09-04T22:38:11.149Z", + "new_balance":"7688.85", + "value":"-0.76" + } + }, + { + "id":"c08e43f7-cbad-4f23-8c17-78c3a4a8b3fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:47:45.499Z", + "completed":"2016-09-05T06:47:45.499Z", + "new_balance":"7688.45", + "value":"-0.40" + } + }, + { + "id":"ee4b4cca-43cd-434f-877a-7d3a33ac27ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T22:24:53.725Z", + "completed":"2016-09-05T22:24:53.725Z", + "new_balance":"7684.41", + "value":"-4.04" + } + }, + { + "id":"48a53e43-2bae-41b9-bc95-222d9c2f743e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T01:21:05.658Z", + "completed":"2016-09-06T01:21:05.658Z", + "new_balance":"7677.11", + "value":"-7.30" + } + }, + { + "id":"fe2b7b9a-e2bd-4d25-b034-4ff153312dbe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T22:49:41.011Z", + "completed":"2016-09-06T22:49:41.011Z", + "new_balance":"7671.84", + "value":"-5.27" + } + }, + { + "id":"5600306e-6491-4629-b8d0-7ce811055177", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T10:24:53.184Z", + "completed":"2016-09-08T10:24:53.184Z", + "new_balance":"7667.57", + "value":"-4.27" + } + }, + { + "id":"b1dd9ad4-3848-43a0-981b-e435890f1765", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T21:32:55.312Z", + "completed":"2016-09-08T21:32:55.312Z", + "new_balance":"7662.30", + "value":"-5.27" + } + }, + { + "id":"71b4ae4b-917a-4d37-9c5e-e76d24e61596", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T06:45:51.525Z", + "completed":"2016-09-10T06:45:51.525Z", + "new_balance":"7655.98", + "value":"-6.32" + } + }, + { + "id":"d8b81fe4-f2c1-450e-acf0-20bc036ceace", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T23:08:45.187Z", + "completed":"2016-09-10T23:08:45.187Z", + "new_balance":"7655.44", + "value":"-0.54" + } + }, + { + "id":"8da8efc0-a605-498b-85c2-735deeda4aa0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T15:34:00.615Z", + "completed":"2016-09-11T15:34:00.615Z", + "new_balance":"7654.67", + "value":"-0.77" + } + }, + { + "id":"bfb340d3-90c6-45ce-8d78-95559e1f062e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T05:04:27.617Z", + "completed":"2016-09-12T05:04:27.617Z", + "new_balance":"7652.42", + "value":"-2.25" + } + }, + { + "id":"eeb6d34c-abf0-4e1a-b9df-a717dea0723c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T05:45:15.099Z", + "completed":"2016-09-12T05:45:15.099Z", + "new_balance":"7651.37", + "value":"-1.05" + } + }, + { + "id":"e1f906fc-58a3-4ccb-9aef-231999118d8e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:58:20.132Z", + "completed":"2016-09-13T16:58:20.132Z", + "new_balance":"7647.11", + "value":"-4.26" + } + }, + { + "id":"7e116801-94e3-45a8-9d63-daa934663e3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T20:40:03.750Z", + "completed":"2016-09-16T20:40:03.750Z", + "new_balance":"7646.59", + "value":"-0.52" + } + }, + { + "id":"62422b11-cec4-4fe2-ab25-4bd5398c8060", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T01:07:53.242Z", + "completed":"2016-09-17T01:07:53.242Z", + "new_balance":"7641.77", + "value":"-4.82" + } + }, + { + "id":"463c5e9e-9270-468a-b23c-a1b112cca6a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T02:22:09.104Z", + "completed":"2016-09-17T02:22:09.104Z", + "new_balance":"7631.98", + "value":"-9.79" + } + }, + { + "id":"18ff01ea-a7af-4379-a203-ba28b827beed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T15:50:32.607Z", + "completed":"2016-09-18T15:50:32.607Z", + "new_balance":"7631.46", + "value":"-0.52" + } + }, + { + "id":"f45b4184-8427-486f-b57a-1054e9edd842", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T10:34:29.630Z", + "completed":"2016-09-19T10:34:29.630Z", + "new_balance":"7625.14", + "value":"-6.32" + } + }, + { + "id":"648ed131-9c59-494c-8992-426a94fe483b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T10:46:50.660Z", + "completed":"2016-09-19T10:46:50.660Z", + "new_balance":"7620.99", + "value":"-4.15" + } + }, + { + "id":"546b4799-4b1a-4a7e-943a-d98d5605f312", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T20:22:53.499Z", + "completed":"2016-09-19T20:22:53.499Z", + "new_balance":"7616.70", + "value":"-4.29" + } + }, + { + "id":"1b31b2ad-9736-4968-a73e-16092d485fe4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T08:37:23.921Z", + "completed":"2016-09-20T08:37:23.921Z", + "new_balance":"7611.54", + "value":"-5.16" + } + }, + { + "id":"4e6f52f7-c49e-457b-8010-e4cd59ce5cfc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T22:54:24.296Z", + "completed":"2016-09-20T22:54:24.296Z", + "new_balance":"7604.58", + "value":"-6.96" + } + }, + { + "id":"6cf107f1-d3d9-4b53-bd8e-38263041969c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T05:01:19.017Z", + "completed":"2016-09-21T05:01:19.017Z", + "new_balance":"7603.99", + "value":"-0.59" + } + }, + { + "id":"bfbf93b8-076c-4211-b1e6-303282802056", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T06:49:52.264Z", + "completed":"2016-09-21T06:49:52.264Z", + "new_balance":"7603.23", + "value":"-0.76" + } + }, + { + "id":"88b66e4c-854e-4054-ad27-53641ea30904", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T07:41:18.837Z", + "completed":"2016-09-23T07:41:18.837Z", + "new_balance":"7602.32", + "value":"-0.91" + } + }, + { + "id":"d32eef75-5985-4c9d-8cfb-c568f7df32a4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T09:20:04.115Z", + "completed":"2016-09-23T09:20:04.115Z", + "new_balance":"7597.71", + "value":"-4.61" + } + }, + { + "id":"41c50041-5df3-4f67-abee-b5c3c4f50a30", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T23:20:05.276Z", + "completed":"2016-09-24T23:20:05.276Z", + "new_balance":"7594.16", + "value":"-3.55" + } + }, + { + "id":"e30b1f18-5bba-4e45-8b3e-38ea55db5abf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T02:47:41.370Z", + "completed":"2016-09-25T02:47:41.370Z", + "new_balance":"7592.85", + "value":"-1.31" + } + }, + { + "id":"4965864f-7915-4f74-8595-663cd3edd6e8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T10:29:06.798Z", + "completed":"2016-09-25T10:29:06.798Z", + "new_balance":"7589.79", + "value":"-3.06" + } + }, + { + "id":"69781df9-fb46-4d83-bf69-0f0375039aff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T07:28:28.112Z", + "completed":"2016-09-27T07:28:28.112Z", + "new_balance":"7562.29", + "value":"-27.50" + } + }, + { + "id":"a477bed1-0882-44e3-9cab-2cfa75bcfcd9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T21:22:53.521Z", + "completed":"2016-09-29T21:22:53.521Z", + "new_balance":"7559.55", + "value":"-2.74" + } + }, + { + "id":"d73cf687-7840-4dfd-80c3-70216cf2b8cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T04:15:01.909Z", + "completed":"2016-10-01T04:15:01.909Z", + "new_balance":"7544.30", + "value":"-15.25" + } + }, + { + "id":"fcf93d71-ccf8-4400-91c9-41403f6b0210", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T11:26:22.317Z", + "completed":"2016-10-01T11:26:22.317Z", + "new_balance":"7539.15", + "value":"-5.15" + } + }, + { + "id":"13485383-796c-48d6-8262-3e6910e7f4a7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T11:27:46.238Z", + "completed":"2016-10-01T11:27:46.238Z", + "new_balance":"7480.92", + "value":"-58.23" + } + }, + { + "id":"ce3883f5-73a0-4543-afb4-87dce1add819", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T20:30:48.137Z", + "completed":"2016-10-01T20:30:48.137Z", + "new_balance":"7478.60", + "value":"-2.32" + } + }, + { + "id":"0d10ecbf-7815-451e-8f18-546862aaa7e1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T12:07:42.475Z", + "completed":"2016-10-02T12:07:42.475Z", + "new_balance":"7468.91", + "value":"-9.69" + } + }, + { + "id":"b0059dd4-7c65-4159-890c-d630637426a6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T15:01:23.105Z", + "completed":"2016-10-02T15:01:23.105Z", + "new_balance":"7461.81", + "value":"-7.10" + } + }, + { + "id":"cadc265b-9966-48aa-a926-c47a04840181", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T00:04:58.893Z", + "completed":"2016-10-03T00:04:58.893Z", + "new_balance":"7458.90", + "value":"-2.91" + } + }, + { + "id":"6c92bf92-4c47-44f2-add4-3bbf3e5a1301", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T00:23:12.014Z", + "completed":"2016-10-03T00:23:12.014Z", + "new_balance":"7445.80", + "value":"-13.10" + } + }, + { + "id":"548d67ca-1c9f-4c16-a43a-21efd7e069f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T06:54:03.616Z", + "completed":"2016-10-03T06:54:03.616Z", + "new_balance":"7388.99", + "value":"-56.81" + } + }, + { + "id":"a95824e0-8d6d-4cf1-acb8-601c4dd51196", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:59:55.884Z", + "completed":"2016-10-03T08:59:55.884Z", + "new_balance":"7385.21", + "value":"-3.78" + } + }, + { + "id":"04d7854d-67d1-4731-9585-947579f9560a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T16:11:05.921Z", + "completed":"2016-10-03T16:11:05.921Z", + "new_balance":"7357.71", + "value":"-27.50" + } + }, + { + "id":"94f6b5dc-5269-4f1c-8491-518b2d48277d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T02:43:00.722Z", + "completed":"2016-10-04T02:43:00.722Z", + "new_balance":"7350.52", + "value":"-7.19" + } + }, + { + "id":"7cc1251e-621c-4f58-a59d-749e01211856", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:14:15.820Z", + "completed":"2016-10-05T03:14:15.820Z", + "new_balance":"7347.84", + "value":"-2.68" + } + }, + { + "id":"7e82dea2-7df9-4923-8188-4266f8135d2c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T18:29:38.012Z", + "completed":"2016-10-05T18:29:38.012Z", + "new_balance":"7347.38", + "value":"-0.46" + } + }, + { + "id":"1a0d8847-fdc0-4b6c-91ea-47fef0cdd651", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T07:11:57.767Z", + "completed":"2016-10-07T07:11:57.767Z", + "new_balance":"7344.16", + "value":"-3.22" + } + }, + { + "id":"222c3420-1692-46c9-a238-9a097d78be55", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T08:25:26.680Z", + "completed":"2016-10-07T08:25:26.680Z", + "new_balance":"7342.63", + "value":"-1.53" + } + }, + { + "id":"39a89e8d-f9c3-4bfc-a648-66cd6bf5efa6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T14:35:47.682Z", + "completed":"2016-10-08T14:35:47.682Z", + "new_balance":"7341.73", + "value":"-0.90" + } + }, + { + "id":"e27a3ae2-76b4-45bb-be3d-1387e9c2433a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T10:29:38.362Z", + "completed":"2016-10-09T10:29:38.362Z", + "new_balance":"7339.62", + "value":"-2.11" + } + }, + { + "id":"9eed99dd-b799-417a-99a4-bb009c04bfba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T20:43:26.385Z", + "completed":"2016-10-09T20:43:26.385Z", + "new_balance":"7339.18", + "value":"-0.44" + } + }, + { + "id":"5cfe1473-6b8d-4d26-bbed-eecfcd224397", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T20:45:26.863Z", + "completed":"2016-10-09T20:45:26.863Z", + "new_balance":"7311.68", + "value":"-27.50" + } + }, + { + "id":"ec77aa4d-2ae2-4b3c-9e45-988f4a37dd70", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T14:26:38.962Z", + "completed":"2016-10-10T14:26:38.962Z", + "new_balance":"7307.20", + "value":"-4.48" + } + }, + { + "id":"de6dd4ec-ef35-4876-ad6f-35bcf8b2ea41", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:50:03.559Z", + "completed":"2016-10-17T06:50:03.559Z", + "new_balance":"7306.09", + "value":"-1.11" + } + }, + { + "id":"d0cd8d6e-6d0d-4645-a6f9-1464a42dbdaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T19:03:48.811Z", + "completed":"2016-10-18T19:03:48.811Z", + "new_balance":"7303.28", + "value":"-2.81" + } + }, + { + "id":"1de540a8-fa12-41fb-8020-24e1931598da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T11:58:57.135Z", + "completed":"2016-10-25T11:58:57.135Z", + "new_balance":"7297.88", + "value":"-5.40" + } + }, + { + "id":"6728a898-f734-47bf-a5be-16c12ef596c0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T07:03:31.927Z", + "completed":"2016-10-26T07:03:31.927Z", + "new_balance":"7297.44", + "value":"-0.44" + } + }, + { + "id":"fd15886e-c032-44b9-9233-5fc993ac27cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T16:02:34.126Z", + "completed":"2016-10-26T16:02:34.126Z", + "new_balance":"7291.62", + "value":"-5.82" + } + }, + { + "id":"256cf6d9-f28c-4acf-8a65-8bb299b769ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T00:02:58.687Z", + "completed":"2016-11-02T00:02:58.687Z", + "new_balance":"7289.30", + "value":"-2.32" + } + }, + { + "id":"4e32cda3-e460-4841-83a9-f0f5dfc057a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T03:43:15.231Z", + "completed":"2016-11-02T03:43:15.231Z", + "new_balance":"7282.20", + "value":"-7.10" + } + }, + { + "id":"10507ab0-8888-474e-88b8-35adf0229072", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T10:16:02.662Z", + "completed":"2016-11-02T10:16:02.662Z", + "new_balance":"7464.90", + "value":"182.70" + } + }, + { + "id":"66efa6cc-b952-437d-bd32-dfa44bfbda0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T14:11:12.689Z", + "completed":"2016-11-02T14:11:12.689Z", + "new_balance":"7406.67", + "value":"-58.23" + } + }, + { + "id":"691e289b-5c4d-40b4-8f00-e199e4dacfec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:41:33.147Z", + "completed":"2016-11-02T14:41:33.147Z", + "new_balance":"7401.52", + "value":"-5.15" + } + }, + { + "id":"179d0276-c292-4d80-953a-7cbb41805fb6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T14:55:50.486Z", + "completed":"2016-11-02T14:55:50.486Z", + "new_balance":"7400.37", + "value":"-1.15" + } + }, + { + "id":"03978c8c-6157-43d2-8c3e-44854f9f0d45", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T23:01:51.976Z", + "completed":"2016-11-02T23:01:51.976Z", + "new_balance":"7385.12", + "value":"-15.25" + } + }, + { + "id":"f89b2451-684d-42b4-96f9-e0341a0f6f32", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T23:05:35.456Z", + "completed":"2016-11-02T23:05:35.456Z", + "new_balance":"7381.68", + "value":"-3.44" + } + }, + { + "id":"6c4471a9-67cf-49b1-a320-81b2a6f484ec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T11:36:10.660Z", + "completed":"2016-11-06T11:36:10.660Z", + "new_balance":"7379.58", + "value":"-2.10" + } + }, + { + "id":"93c581b0-af5d-4f76-96a8-982db8daee4c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T02:14:13.132Z", + "completed":"2016-11-07T02:14:13.132Z", + "new_balance":"7376.25", + "value":"-3.33" + } + }, + { + "id":"e9acd6a0-9da8-45b2-b853-600d3b9c4e10", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:09:42.138Z", + "completed":"2016-11-07T07:09:42.138Z", + "new_balance":"7373.75", + "value":"-2.50" + } + }, + { + "id":"8e976d24-e3bd-46c5-946c-320fe8120d90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T10:23:04.483Z", + "completed":"2016-11-07T10:23:04.483Z", + "new_balance":"7371.35", + "value":"-2.40" + } + }, + { + "id":"887f320f-257b-477c-aaed-33e7d0b191a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T03:19:49.652Z", + "completed":"2016-11-09T03:19:49.652Z", + "new_balance":"7364.16", + "value":"-7.19" + } + }, + { + "id":"69769344-ce93-4b4f-b305-0a058551c243", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T04:05:08.498Z", + "completed":"2016-11-09T04:05:08.498Z", + "new_balance":"7363.68", + "value":"-0.48" + } + }, + { + "id":"6d6f5a28-9c12-489c-b673-5e112027a09c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T12:54:52.716Z", + "completed":"2016-11-12T12:54:52.716Z", + "new_balance":"7360.65", + "value":"-3.03" + } + }, + { + "id":"0c472c7a-c245-4562-841a-fa08e232ad26", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T22:49:51.276Z", + "completed":"2016-11-12T22:49:51.276Z", + "new_balance":"7358.20", + "value":"-2.45" + } + }, + { + "id":"536d484f-3fd1-44ad-b8dc-061da554bedd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T07:42:22.746Z", + "completed":"2016-11-14T07:42:22.746Z", + "new_balance":"7354.72", + "value":"-3.48" + } + }, + { + "id":"e97cdb1d-18c8-4d75-abbb-b3405d1bbac7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T10:29:55.933Z", + "completed":"2016-11-14T10:29:55.933Z", + "new_balance":"7351.58", + "value":"-3.14" + } + }, + { + "id":"7155a0ec-23d8-4234-8ba3-583cf395f0db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T17:06:57.418Z", + "completed":"2016-11-16T17:06:57.418Z", + "new_balance":"7351.11", + "value":"-0.47" + } + }, + { + "id":"e950e14b-2989-4af7-9ca0-d963f5b3edaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T10:59:48.933Z", + "completed":"2016-11-18T10:59:48.933Z", + "new_balance":"7350.34", + "value":"-0.77" + } + }, + { + "id":"9232f68f-8a38-42d0-8d07-42a103f98c68", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T00:08:26.785Z", + "completed":"2016-11-20T00:08:26.785Z", + "new_balance":"7354.42", + "value":"4.08" + } + }, + { + "id":"0f032d0c-db07-4965-9a1c-bdaf70b3c5a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T02:23:50.440Z", + "completed":"2016-11-21T02:23:50.440Z", + "new_balance":"7347.99", + "value":"-6.43" + } + }, + { + "id":"df899707-f1e4-4dea-8f08-4cdc8863d244", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T17:17:49.064Z", + "completed":"2016-11-21T17:17:49.064Z", + "new_balance":"7343.87", + "value":"-4.12" + } + }, + { + "id":"95aa1e82-22e4-406c-a900-f4c82351e156", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T09:32:17.848Z", + "completed":"2016-11-27T09:32:17.848Z", + "new_balance":"7341.32", + "value":"-2.55" + } + }, + { + "id":"aca67b3c-5b03-49d4-b293-d86cf021fe99", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T19:53:00.853Z", + "completed":"2016-11-27T19:53:00.853Z", + "new_balance":"7338.38", + "value":"-2.94" + } + }, + { + "id":"441bf241-0a7c-4e3e-8ec3-e6f6fcfabcdd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T00:35:08.586Z", + "completed":"2016-12-01T00:35:08.586Z", + "new_balance":"7336.06", + "value":"-2.32" + } + }, + { + "id":"239e5bd6-3f7d-4fb5-ad2d-68dd8b9dddf1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T01:42:11.692Z", + "completed":"2016-12-01T01:42:11.692Z", + "new_balance":"7277.83", + "value":"-58.23" + } + }, + { + "id":"544822c0-b6fd-4153-b401-719845af0192", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:54:39.334Z", + "completed":"2016-12-01T01:54:39.334Z", + "new_balance":"7274.39", + "value":"-3.44" + } + }, + { + "id":"adc9227d-334a-428a-b596-bea49e91fbde", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T12:10:37.297Z", + "completed":"2016-12-01T12:10:37.297Z", + "new_balance":"7269.24", + "value":"-5.15" + } + }, + { + "id":"18983bf6-b246-48dc-918b-d117b2e27c90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T12:41:47.204Z", + "completed":"2016-12-01T12:41:47.204Z", + "new_balance":"7253.99", + "value":"-15.25" + } + }, + { + "id":"ea3743fe-85d2-4ef5-8e08-4ee37a25f254", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T22:54:27.755Z", + "completed":"2016-12-01T22:54:27.755Z", + "new_balance":"7436.69", + "value":"182.70" + } + }, + { + "id":"eb9cfd6d-9672-4854-99c3-dae5fac21aff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T22:46:54.908Z", + "completed":"2016-12-04T22:46:54.908Z", + "new_balance":"7429.59", + "value":"-7.10" + } + }, + { + "id":"9c60fa66-c1cc-4097-a2ae-e086120efb17", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T23:36:40.393Z", + "completed":"2016-12-04T23:36:40.393Z", + "new_balance":"7417.63", + "value":"-11.96" + } + }, + { + "id":"000bc186-57de-446c-add1-8a3e5d9099c6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T06:08:21.155Z", + "completed":"2016-12-12T06:08:21.155Z", + "new_balance":"7414.33", + "value":"-3.30" + } + }, + { + "id":"0e68da8e-f543-4a60-8eac-b8a0b7f976eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T12:36:55.678Z", + "completed":"2016-12-12T12:36:55.678Z", + "new_balance":"7413.08", + "value":"-1.25" + } + }, + { + "id":"4b7458d9-e751-4d8f-894d-e8fed828bd59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T05:46:28.168Z", + "completed":"2016-12-13T05:46:28.168Z", + "new_balance":"7405.78", + "value":"-7.30" + } + }, + { + "id":"dc7140f2-7635-4586-9aec-0548bf934017", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T18:40:44.633Z", + "completed":"2016-12-13T18:40:44.633Z", + "new_balance":"7405.02", + "value":"-0.76" + } + }, + { + "id":"2d3e56fe-c9af-467c-b518-5f0f8ee4207b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T23:11:08.325Z", + "completed":"2016-12-16T23:11:08.325Z", + "new_balance":"7400.98", + "value":"-4.04" + } + }, + { + "id":"19590733-c7c1-4076-9875-03de18176255", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T07:15:05.104Z", + "completed":"2016-12-18T07:15:05.104Z", + "new_balance":"7400.58", + "value":"-0.40" + } + }, + { + "id":"5e55208f-9171-40c0-834d-cdfaee2dd9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:40:26.578Z", + "completed":"2016-12-19T05:40:26.578Z", + "new_balance":"7395.31", + "value":"-5.27" + } + }, + { + "id":"d8af9ad1-9fff-4c11-b6a1-c698b0d016f1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T14:57:04.586Z", + "completed":"2016-12-19T14:57:04.586Z", + "new_balance":"7388.01", + "value":"-7.30" + } + }, + { + "id":"b76463c2-a63f-4311-a636-815429ac4664", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T07:48:07.835Z", + "completed":"2016-12-20T07:48:07.835Z", + "new_balance":"7383.74", + "value":"-4.27" + } + }, + { + "id":"3b75a53d-78ae-4485-a4c2-45dc6ee0581c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T06:03:35.346Z", + "completed":"2016-12-21T06:03:35.346Z", + "new_balance":"7378.47", + "value":"-5.27" + } + }, + { + "id":"fdb7e797-61c5-45d3-b8f9-da0f35f3351b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T00:13:00.807Z", + "completed":"2016-12-24T00:13:00.807Z", + "new_balance":"7374.21", + "value":"-4.26" + } + }, + { + "id":"2b1ecf2f-5131-4988-97ff-f76f035a6793", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T00:43:53.135Z", + "completed":"2016-12-24T00:43:53.135Z", + "new_balance":"7373.67", + "value":"-0.54" + } + }, + { + "id":"ec6c979a-0fab-4eec-8620-1b993a2aec7d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T07:07:21.381Z", + "completed":"2016-12-24T07:07:21.381Z", + "new_balance":"7372.90", + "value":"-0.77" + } + }, + { + "id":"f5d400d3-b72c-4f1a-92ec-59accab6e7e0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T10:19:10.011Z", + "completed":"2016-12-24T10:19:10.011Z", + "new_balance":"7371.85", + "value":"-1.05" + } + }, + { + "id":"a353bc4c-f031-4d48-aadf-dbcb7ed056c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T13:38:16.172Z", + "completed":"2016-12-24T13:38:16.172Z", + "new_balance":"7369.60", + "value":"-2.25" + } + }, + { + "id":"96aeaa0c-d338-4330-a201-85e68f12ab3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T22:52:08.288Z", + "completed":"2016-12-24T22:52:08.288Z", + "new_balance":"7363.28", + "value":"-6.32" + } + }, + { + "id":"f015bf6d-01b0-48f8-b4da-3d11c4f86d74", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T00:54:03.433Z", + "completed":"2016-12-28T00:54:03.433Z", + "new_balance":"7358.46", + "value":"-4.82" + } + }, + { + "id":"83b85d7d-5bcd-49c0-a9e7-e7e9a5210d69", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T01:38:49.852Z", + "completed":"2016-12-28T01:38:49.852Z", + "new_balance":"7357.94", + "value":"-0.52" + } + }, + { + "id":"588b5c64-4e58-4b0d-b4c9-77f37d3bbb2b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T18:40:58.268Z", + "completed":"2016-12-28T18:40:58.268Z", + "new_balance":"7348.15", + "value":"-9.79" + } + }, + { + "id":"08dff5c5-844d-4dfc-8e14-70aa89e3fb0e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T22:35:56.819Z", + "completed":"2016-12-28T22:35:56.819Z", + "new_balance":"7347.63", + "value":"-0.52" + } + }, + { + "id":"a31b589d-a8a4-4c3a-95eb-86d2611724db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T00:10:44.763Z", + "completed":"2016-12-29T00:10:44.763Z", + "new_balance":"7341.31", + "value":"-6.32" + } + }, + { + "id":"3435827e-ca50-4c88-8f71-5694b06e70db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T00:57:57.891Z", + "completed":"2016-12-29T00:57:57.891Z", + "new_balance":"7336.15", + "value":"-5.16" + } + }, + { + "id":"859a8405-d1ac-4bc7-bb88-2c04c3d93a64", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T08:19:15.016Z", + "completed":"2016-12-29T08:19:15.016Z", + "new_balance":"7331.86", + "value":"-4.29" + } + }, + { + "id":"2cd81f52-379b-43f5-8d5b-820743fb1713", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T20:30:50.509Z", + "completed":"2016-12-29T20:30:50.509Z", + "new_balance":"7324.90", + "value":"-6.96" + } + }, + { + "id":"a57684a2-91d4-4a28-b017-079e1b806473", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T21:06:53.408Z", + "completed":"2016-12-29T21:06:53.408Z", + "new_balance":"7320.75", + "value":"-4.15" + } + }, + { + "id":"4b95f8d0-56a3-46c7-9546-dc5485b87947", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T21:33:21.357Z", + "completed":"2016-12-29T21:33:21.357Z", + "new_balance":"7319.99", + "value":"-0.76" + } + }, + { + "id":"5adae228-6c69-484b-ae75-1b0bfa618240", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T01:34:39.783Z", + "completed":"2016-12-30T01:34:39.783Z", + "new_balance":"7319.08", + "value":"-0.91" + } + }, + { + "id":"826cbefe-49a1-4367-bd31-95085fddc9a4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T11:13:09.413Z", + "completed":"2016-12-30T11:13:09.413Z", + "new_balance":"7314.47", + "value":"-4.61" + } + }, + { + "id":"771f6395-3ab8-4534-ab5d-3a00f9e47bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T15:23:54.190Z", + "completed":"2016-12-30T15:23:54.190Z", + "new_balance":"7310.92", + "value":"-3.55" + } + }, + { + "id":"1c754f01-a9d7-452e-84ad-1be44de9b3fb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T17:55:32.841Z", + "completed":"2016-12-30T17:55:32.841Z", + "new_balance":"7310.33", + "value":"-0.59" + } + }, + { + "id":"cfa63cd5-1f96-4609-97f6-425cf95ae068", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T06:34:12.340Z", + "completed":"2016-12-31T06:34:12.340Z", + "new_balance":"7307.59", + "value":"-2.74" + } + }, + { + "id":"ce30d4a2-d196-4244-b34d-411f5041d99b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T14:48:39.827Z", + "completed":"2016-12-31T14:48:39.827Z", + "new_balance":"7280.09", + "value":"-27.50" + } + }, + { + "id":"bab2c45d-d39d-4818-beeb-cae25b6af491", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T16:06:57.305Z", + "completed":"2016-12-31T16:06:57.305Z", + "new_balance":"7277.03", + "value":"-3.06" + } + }, + { + "id":"353429eb-2375-4dde-a9f1-7792f21fdbbc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T22:43:36.738Z", + "completed":"2016-12-31T22:43:36.738Z", + "new_balance":"7275.72", + "value":"-1.31" + } + }, + { + "id":"078de3eb-b179-46c1-80a9-b25e14f34cc3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T06:21:28.074Z", + "completed":"2017-01-01T06:21:28.074Z", + "new_balance":"7260.47", + "value":"-15.25" + } + }, + { + "id":"88c92f86-7173-41f9-b101-b5e6ee01173f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T10:32:20.789Z", + "completed":"2017-01-01T10:32:20.789Z", + "new_balance":"7257.03", + "value":"-3.44" + } + }, + { + "id":"6ce7d943-227d-4ac5-94b5-39a2724951f7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T19:03:03.321Z", + "completed":"2017-01-01T19:03:03.321Z", + "new_balance":"7254.71", + "value":"-2.32" + } + }, + { + "id":"2293b624-6786-48cc-b34e-22d923f20507", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T19:13:17.969Z", + "completed":"2017-01-01T19:13:17.969Z", + "new_balance":"7249.56", + "value":"-5.15" + } + }, + { + "id":"57b927c7-4294-4154-9f7a-f28aac29fa3b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:02:58.420Z", + "completed":"2017-01-01T21:02:58.420Z", + "new_balance":"7246.12", + "value":"-3.44" + } + }, + { + "id":"66a31c2b-f634-4d51-b057-a2066f5a407b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T21:41:23.743Z", + "completed":"2017-01-01T21:41:23.743Z", + "new_balance":"7187.89", + "value":"-58.23" + } + }, + { + "id":"b53091c0-6804-4d15-ab8b-51e03ffac01e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T03:44:46.527Z", + "completed":"2017-01-02T03:44:46.527Z", + "new_balance":"7178.20", + "value":"-9.69" + } + }, + { + "id":"2fa5171f-091f-4ba0-b948-817fb6a0258f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T12:02:02.823Z", + "completed":"2017-01-02T12:02:02.823Z", + "new_balance":"7171.10", + "value":"-7.10" + } + }, + { + "id":"7939a5ec-e09e-4fd0-bbbe-8f2ea30df64f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T12:52:27.487Z", + "completed":"2017-01-04T12:52:27.487Z", + "new_balance":"7168.19", + "value":"-2.91" + } + }, + { + "id":"5c5282be-0bf3-4182-848d-beb2bd748926", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T17:40:41.766Z", + "completed":"2017-01-04T17:40:41.766Z", + "new_balance":"7164.41", + "value":"-3.78" + } + }, + { + "id":"a7575776-a8a7-405c-a3e4-2c8e9da29a88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T11:50:39.240Z", + "completed":"2017-01-07T11:50:39.240Z", + "new_balance":"7157.22", + "value":"-7.19" + } + }, + { + "id":"d3306d4c-a8db-44eb-a9bf-52ea069c5a36", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T07:38:47.407Z", + "completed":"2017-01-09T07:38:47.407Z", + "new_balance":"7156.76", + "value":"-0.46" + } + }, + { + "id":"89f8b108-0bf3-4386-8fd0-649fe8071cb9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T09:54:41.681Z", + "completed":"2017-01-10T09:54:41.681Z", + "new_balance":"7154.08", + "value":"-2.68" + } + }, + { + "id":"c588254a-aa48-4417-8f10-ec711a630c88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T00:48:34.528Z", + "completed":"2017-01-12T00:48:34.528Z", + "new_balance":"7150.86", + "value":"-3.22" + } + }, + { + "id":"2c9c4756-6cbd-4db7-b370-1f6eb7b69bef", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T16:12:58.866Z", + "completed":"2017-01-15T16:12:58.866Z", + "new_balance":"7149.33", + "value":"-1.53" + } + }, + { + "id":"93cd51f0-67fa-41a3-b8c2-999a1f91eeca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T23:19:48.712Z", + "completed":"2017-01-15T23:19:48.712Z", + "new_balance":"7148.43", + "value":"-0.90" + } + }, + { + "id":"9adc4038-3b3e-493f-98c2-2a90d94ce1bc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T01:01:21.035Z", + "completed":"2017-01-17T01:01:21.035Z", + "new_balance":"7146.32", + "value":"-2.11" + } + }, + { + "id":"b2fd340f-fcb1-4a68-b87d-98bcaf5fab8a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T14:11:10.910Z", + "completed":"2017-01-19T14:11:10.910Z", + "new_balance":"7118.82", + "value":"-27.50" + } + }, + { + "id":"3b44dc5f-6675-465a-9dc1-c3feef19e0b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T16:34:07.225Z", + "completed":"2017-01-20T16:34:07.225Z", + "new_balance":"7118.38", + "value":"-0.44" + } + }, + { + "id":"dcd2233a-7d1f-48bc-9678-8d264ba2f7ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T20:59:34.112Z", + "completed":"2017-01-22T20:59:34.112Z", + "new_balance":"7113.90", + "value":"-4.48" + } + }, + { + "id":"49736e32-38e4-437e-b651-f2ea31a822f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T23:59:15.130Z", + "completed":"2017-01-22T23:59:15.130Z", + "new_balance":"7112.79", + "value":"-1.11" + } + }, + { + "id":"10038142-8cdf-4577-81ad-c21814076adf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T13:28:18.079Z", + "completed":"2017-01-24T13:28:18.079Z", + "new_balance":"7109.98", + "value":"-2.81" + } + }, + { + "id":"d5623972-d810-4ad3-8e3e-6e968d16d482", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T04:42:32.043Z", + "completed":"2017-01-25T04:42:32.043Z", + "new_balance":"7109.54", + "value":"-0.44" + } + }, + { + "id":"f588423e-8b08-45da-bdce-588be4a5d9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T22:39:50.120Z", + "completed":"2017-01-25T22:39:50.120Z", + "new_balance":"7104.14", + "value":"-5.40" + } + }, + { + "id":"86cb9314-f731-4894-b042-27defa516124", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T18:46:40.936Z", + "completed":"2017-01-26T18:46:40.936Z", + "new_balance":"7098.32", + "value":"-5.82" + } + }, + { + "id":"ef8d72c4-d2b2-46aa-9aea-ff9ea5683785", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T02:13:58.816Z", + "completed":"2017-02-01T02:13:58.816Z", + "new_balance":"7094.88", + "value":"-3.44" + } + }, + { + "id":"ded4e167-df25-47a3-b389-6c1f42c090f5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T10:40:01.494Z", + "completed":"2017-02-01T10:40:01.494Z", + "new_balance":"7036.65", + "value":"-58.23" + } + }, + { + "id":"f8711618-6d66-44a0-82e1-befdb2883d61", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:16:03.868Z", + "completed":"2017-02-01T15:16:03.868Z", + "new_balance":"7219.35", + "value":"182.70" + } + }, + { + "id":"d3ee0c89-4db4-4b77-a61b-c71cfc77dbbf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T17:11:18.552Z", + "completed":"2017-02-01T17:11:18.552Z", + "new_balance":"7217.03", + "value":"-2.32" + } + }, + { + "id":"05648091-489d-4e4c-b1ac-78e2185e2fe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T19:34:06.013Z", + "completed":"2017-02-01T19:34:06.013Z", + "new_balance":"7201.78", + "value":"-15.25" + } + }, + { + "id":"0a7c1266-5c8a-43d8-a089-e84fc586e5a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T20:57:15.473Z", + "completed":"2017-02-01T20:57:15.473Z", + "new_balance":"7196.63", + "value":"-5.15" + } + }, + { + "id":"ac723c03-41e4-4020-ab6e-03a4df862894", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T11:41:59.276Z", + "completed":"2017-02-02T11:41:59.276Z", + "new_balance":"7195.48", + "value":"-1.15" + } + }, + { + "id":"5607cd1c-9b60-42b3-bffc-e5e5428885f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T12:30:27.290Z", + "completed":"2017-02-02T12:30:27.290Z", + "new_balance":"7188.38", + "value":"-7.10" + } + }, + { + "id":"7b574c8a-4885-4afe-b8fb-c783d44d3c02", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T17:02:59.555Z", + "completed":"2017-02-02T17:02:59.555Z", + "new_balance":"7186.28", + "value":"-2.10" + } + }, + { + "id":"f2aa69da-bec9-413a-8b5b-26667e8dea7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T11:58:35.247Z", + "completed":"2017-02-03T11:58:35.247Z", + "new_balance":"7183.88", + "value":"-2.40" + } + }, + { + "id":"f6706dea-be30-4d05-a787-a8db2398f29c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T12:10:08.550Z", + "completed":"2017-02-03T12:10:08.550Z", + "new_balance":"7181.38", + "value":"-2.50" + } + }, + { + "id":"b688875d-574b-444e-bb1b-11aae3cba4cf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T17:22:45.314Z", + "completed":"2017-02-03T17:22:45.314Z", + "new_balance":"7178.05", + "value":"-3.33" + } + }, + { + "id":"80eab2a4-5254-406c-9f71-674043436e52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T20:53:01.338Z", + "completed":"2017-02-06T20:53:01.338Z", + "new_balance":"7170.86", + "value":"-7.19" + } + }, + { + "id":"ad92b63f-a5c6-4838-9bd4-07f88fd70b41", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T16:03:04.175Z", + "completed":"2017-02-08T16:03:04.175Z", + "new_balance":"7168.41", + "value":"-2.45" + } + }, + { + "id":"d054dec3-30fd-4ed9-847c-2e1efd662597", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T18:56:13.523Z", + "completed":"2017-02-08T18:56:13.523Z", + "new_balance":"7167.93", + "value":"-0.48" + } + }, + { + "id":"c090c268-df1d-4580-b701-72d3712e6627", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T20:43:21.120Z", + "completed":"2017-02-08T20:43:21.120Z", + "new_balance":"7164.90", + "value":"-3.03" + } + }, + { + "id":"5169ad71-40ff-4b8d-93e5-f6eff6306533", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T06:11:41.002Z", + "completed":"2017-02-09T06:11:41.002Z", + "new_balance":"7161.42", + "value":"-3.48" + } + }, + { + "id":"d1daaac8-033f-4c44-93de-d013c783058a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T07:26:02.794Z", + "completed":"2017-02-09T07:26:02.794Z", + "new_balance":"7158.28", + "value":"-3.14" + } + }, + { + "id":"5475d9ef-741d-45ef-a6cc-f014b4533c59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T03:34:22.554Z", + "completed":"2017-02-12T03:34:22.554Z", + "new_balance":"7157.81", + "value":"-0.47" + } + }, + { + "id":"5a9ab683-ce91-4c4a-bbc3-b3f11362af3e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T00:08:43.694Z", + "completed":"2017-02-13T00:08:43.694Z", + "new_balance":"7161.89", + "value":"4.08" + } + }, + { + "id":"32b427a8-75f2-4f7d-9002-7350bc96a6de", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T10:46:08.638Z", + "completed":"2017-02-13T10:46:08.638Z", + "new_balance":"7155.46", + "value":"-6.43" + } + }, + { + "id":"ae1f6276-d70f-4ba2-a1dd-07c6dba03a50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T21:50:54.532Z", + "completed":"2017-02-13T21:50:54.532Z", + "new_balance":"7154.69", + "value":"-0.77" + } + }, + { + "id":"ff3f4945-020d-404e-b1dd-7b40f01f6ff0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T07:15:41.436Z", + "completed":"2017-02-14T07:15:41.436Z", + "new_balance":"7150.57", + "value":"-4.12" + } + }, + { + "id":"9ab92454-95ef-4437-9920-08d6c59943ef", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T10:51:39.897Z", + "completed":"2017-02-15T10:51:39.897Z", + "new_balance":"7148.02", + "value":"-2.55" + } + }, + { + "id":"01cece56-59ba-440a-8074-990e1d1d0f9e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T18:02:15.258Z", + "completed":"2017-02-28T18:02:15.258Z", + "new_balance":"7145.08", + "value":"-2.94" + } + }, + { + "id":"e4fc545c-394c-4763-b385-6a60a874a83d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T01:19:49.255Z", + "completed":"2017-03-01T01:19:49.255Z", + "new_balance":"7142.76", + "value":"-2.32" + } + }, + { + "id":"fdbecd97-13f8-49e1-8949-b195513e96d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T08:46:03.196Z", + "completed":"2017-03-01T08:46:03.196Z", + "new_balance":"7084.53", + "value":"-58.23" + } + }, + { + "id":"1d434c0f-a6d0-4f4d-acfe-466e1409e030", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T09:54:14.329Z", + "completed":"2017-03-01T09:54:14.329Z", + "new_balance":"7081.09", + "value":"-3.44" + } + }, + { + "id":"e2a54a89-989b-4135-839e-b2254f09b41a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T14:18:33.296Z", + "completed":"2017-03-01T14:18:33.296Z", + "new_balance":"7075.94", + "value":"-5.15" + } + }, + { + "id":"5828a9ea-88ca-47f3-a807-7ea3ba00ff32", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T14:39:30.483Z", + "completed":"2017-03-01T14:39:30.483Z", + "new_balance":"7258.64", + "value":"182.70" + } + }, + { + "id":"1a7249d7-7f15-452d-ad4b-2d49966882e6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T23:37:08.954Z", + "completed":"2017-03-01T23:37:08.954Z", + "new_balance":"7243.39", + "value":"-15.25" + } + }, + { + "id":"d91697c6-a4ad-4e74-a3f7-2ec7b8828ac6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T09:30:29.044Z", + "completed":"2017-03-02T09:30:29.044Z", + "new_balance":"7236.29", + "value":"-7.10" + } + }, + { + "id":"fa005273-346f-41f6-9ba3-9b4d951d76b8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T03:28:20.703Z", + "completed":"2017-03-04T03:28:20.703Z", + "new_balance":"7235.53", + "value":"-0.76" + } + }, + { + "id":"049f764c-31ae-443d-aa5d-379dbaf95741", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T05:37:17.815Z", + "completed":"2017-03-04T05:37:17.815Z", + "new_balance":"7234.28", + "value":"-1.25" + } + }, + { + "id":"ea989a00-32e3-439b-aac0-73e6337c7d72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T11:13:25.129Z", + "completed":"2017-03-04T11:13:25.129Z", + "new_balance":"7230.98", + "value":"-3.30" + } + }, + { + "id":"0184f146-4999-4001-b74e-1cc945f9b490", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:41:38.583Z", + "completed":"2017-03-04T23:41:38.583Z", + "new_balance":"7223.68", + "value":"-7.30" + } + }, + { + "id":"24652dfd-8fd6-4ec2-ab53-54ebf93664eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T08:39:04.377Z", + "completed":"2017-03-05T08:39:04.377Z", + "new_balance":"7219.64", + "value":"-4.04" + } + }, + { + "id":"5a71140b-f1a8-4234-b6da-cc4def127082", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T12:01:30.180Z", + "completed":"2017-03-05T12:01:30.180Z", + "new_balance":"7219.24", + "value":"-0.40" + } + }, + { + "id":"27d20915-96d8-4dd8-8c8e-a2543fe41c7b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T02:43:28.667Z", + "completed":"2017-03-06T02:43:28.667Z", + "new_balance":"7213.97", + "value":"-5.27" + } + }, + { + "id":"6f351476-1542-4cb0-9c8c-f2ae4ace980b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:53:40.186Z", + "completed":"2017-03-06T03:53:40.186Z", + "new_balance":"7206.67", + "value":"-7.30" + } + }, + { + "id":"97c869a2-1397-490f-873b-4d660707f44b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T16:07:43.023Z", + "completed":"2017-03-07T16:07:43.023Z", + "new_balance":"7202.40", + "value":"-4.27" + } + }, + { + "id":"61679b7c-f7da-43c4-a161-6fa8c26e0f13", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T07:02:05.350Z", + "completed":"2017-03-08T07:02:05.350Z", + "new_balance":"7197.13", + "value":"-5.27" + } + }, + { + "id":"e997163d-da4d-4b6e-a759-21f1a8ab89c2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T00:58:54.835Z", + "completed":"2017-03-09T00:58:54.835Z", + "new_balance":"7196.59", + "value":"-0.54" + } + }, + { + "id":"bce04cc2-d2f6-4e28-9cd2-d82ef2ba62bd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T01:33:37.746Z", + "completed":"2017-03-10T01:33:37.746Z", + "new_balance":"7190.27", + "value":"-6.32" + } + }, + { + "id":"735a4af5-a454-4023-8c82-7d8ff6b34e52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:08:05.391Z", + "completed":"2017-03-11T16:08:05.391Z", + "new_balance":"7189.50", + "value":"-0.77" + } + }, + { + "id":"72428666-57f3-4816-8129-9bf87e397fe2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T11:11:26.470Z", + "completed":"2017-03-12T11:11:26.470Z", + "new_balance":"7187.25", + "value":"-2.25" + } + }, + { + "id":"c5762b6d-a251-4a05-9f43-58ed5c61e0c0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T23:34:03.931Z", + "completed":"2017-03-12T23:34:03.931Z", + "new_balance":"7186.20", + "value":"-1.05" + } + }, + { + "id":"0e64b9f2-b4d7-42fb-9f22-b734cb581b1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T12:47:32.963Z", + "completed":"2017-03-13T12:47:32.963Z", + "new_balance":"7181.94", + "value":"-4.26" + } + }, + { + "id":"0f21a27e-5915-4239-8074-555036c5de5d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T19:56:51.211Z", + "completed":"2017-03-14T19:56:51.211Z", + "new_balance":"7181.42", + "value":"-0.52" + } + }, + { + "id":"7e13ceb1-d2e3-4fc4-898c-6d6a068ec04a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T04:49:42.509Z", + "completed":"2017-03-16T04:49:42.509Z", + "new_balance":"7171.63", + "value":"-9.79" + } + }, + { + "id":"35a7954b-655e-47a7-b9b0-ae15a804edf4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T19:30:53.937Z", + "completed":"2017-03-16T19:30:53.937Z", + "new_balance":"7166.81", + "value":"-4.82" + } + }, + { + "id":"5f262a26-fab5-4506-bfac-f7e2047f990f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T10:00:38.639Z", + "completed":"2017-03-18T10:00:38.639Z", + "new_balance":"7166.29", + "value":"-0.52" + } + }, + { + "id":"1221e646-e390-4c07-a968-47bca6f28230", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T00:19:12.492Z", + "completed":"2017-03-19T00:19:12.492Z", + "new_balance":"7159.97", + "value":"-6.32" + } + }, + { + "id":"e029d462-544f-4a42-b620-a619c0e1f226", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:25:31.405Z", + "completed":"2017-03-19T14:25:31.405Z", + "new_balance":"7155.82", + "value":"-4.15" + } + }, + { + "id":"11681196-f630-4797-be39-5c9497dcc4e1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T21:21:12.049Z", + "completed":"2017-03-19T21:21:12.049Z", + "new_balance":"7151.53", + "value":"-4.29" + } + }, + { + "id":"d879e5bf-bd12-49c5-adb0-d47184f5c3d3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T03:15:12.730Z", + "completed":"2017-03-20T03:15:12.730Z", + "new_balance":"7144.57", + "value":"-6.96" + } + }, + { + "id":"58b76fb7-1c59-4ddc-8b1d-f4c59a2b5369", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T15:04:45.417Z", + "completed":"2017-03-20T15:04:45.417Z", + "new_balance":"7139.41", + "value":"-5.16" + } + }, + { + "id":"9386e55c-2498-492e-9610-8d8b34a5fc4d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:16:10.105Z", + "completed":"2017-03-21T07:16:10.105Z", + "new_balance":"7138.82", + "value":"-0.59" + } + }, + { + "id":"ce37cb6f-57ff-41ce-beac-2c0ebd7eb13a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T14:42:50.811Z", + "completed":"2017-03-21T14:42:50.811Z", + "new_balance":"7138.06", + "value":"-0.76" + } + }, + { + "id":"8e48b38d-8f3e-42df-a432-cbcbb390e91d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:18:28.359Z", + "completed":"2017-03-23T04:18:28.359Z", + "new_balance":"7133.45", + "value":"-4.61" + } + }, + { + "id":"d2b4b824-40bf-4a09-8368-2b7000585fa5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T11:33:51.823Z", + "completed":"2017-03-23T11:33:51.823Z", + "new_balance":"7132.54", + "value":"-0.91" + } + }, + { + "id":"53b48417-552d-419e-ab7d-3c01dca452c2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T14:56:15.781Z", + "completed":"2017-03-24T14:56:15.781Z", + "new_balance":"7128.99", + "value":"-3.55" + } + }, + { + "id":"fbfd233f-6a47-4529-81df-eb32f07b5d9f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T12:28:32.627Z", + "completed":"2017-03-25T12:28:32.627Z", + "new_balance":"7127.68", + "value":"-1.31" + } + }, + { + "id":"af41ef97-e2b3-4b6f-aaee-fe402bd40046", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T23:56:24.717Z", + "completed":"2017-03-25T23:56:24.717Z", + "new_balance":"7124.62", + "value":"-3.06" + } + }, + { + "id":"8fa1b75b-8419-4fe8-b22c-c8a3320ba03e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T14:46:52.962Z", + "completed":"2017-03-27T14:46:52.962Z", + "new_balance":"7097.12", + "value":"-27.50" + } + }, + { + "id":"1127fe80-79f3-4a7f-a6d3-6c5a7f305002", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T07:33:07.680Z", + "completed":"2017-03-28T07:33:07.680Z", + "new_balance":"7094.38", + "value":"-2.74" + } + }, + { + "id":"5830cc09-7208-42d8-bada-ff6a168cbedb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T00:33:16.731Z", + "completed":"2017-04-01T00:33:16.731Z", + "new_balance":"7089.23", + "value":"-5.15" + } + }, + { + "id":"fab077bd-3810-41cd-9c7f-e0d2f921d96a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T01:10:05.109Z", + "completed":"2017-04-01T01:10:05.109Z", + "new_balance":"7086.91", + "value":"-2.32" + } + }, + { + "id":"d404d1ff-4370-4447-b32f-ab7c594d7e0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T02:55:04.749Z", + "completed":"2017-04-01T02:55:04.749Z", + "new_balance":"7028.68", + "value":"-58.23" + } + }, + { + "id":"a05445bc-b1e0-4abf-97ba-68e15f8eb658", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T07:02:37.931Z", + "completed":"2017-04-01T07:02:37.931Z", + "new_balance":"7013.43", + "value":"-15.25" + } + }, + { + "id":"e46b1781-f30c-4b96-90b3-64510f48311c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T16:30:52.705Z", + "completed":"2017-04-02T16:30:52.705Z", + "new_balance":"7006.33", + "value":"-7.10" + } + }, + { + "id":"6b1f0631-3d62-42ec-b67d-36f19a50748c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T19:33:19.025Z", + "completed":"2017-04-02T19:33:19.025Z", + "new_balance":"6996.64", + "value":"-9.69" + } + }, + { + "id":"df35bf09-b86c-4782-ae23-d2a823227a6f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T01:59:32.779Z", + "completed":"2017-04-03T01:59:32.779Z", + "new_balance":"7004.58", + "value":"7.94" + } + }, + { + "id":"33f1fff4-bc69-489d-95d5-065a41598fe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:02:26.476Z", + "completed":"2017-04-03T08:02:26.476Z", + "new_balance":"7000.80", + "value":"-3.78" + } + }, + { + "id":"edd280d7-ac58-45ec-8c61-535ec9a9760c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T10:06:07.553Z", + "completed":"2017-04-03T10:06:07.553Z", + "new_balance":"6997.89", + "value":"-2.91" + } + }, + { + "id":"ffdaaef9-e86a-4b52-b369-690d3b7c5954", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T12:44:49.740Z", + "completed":"2017-04-03T12:44:49.740Z", + "new_balance":"6994.11", + "value":"-3.78" + } + }, + { + "id":"83bd58ef-6e40-4ba3-8fc0-34631e60c469", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:55:22.809Z", + "completed":"2017-04-03T14:55:22.809Z", + "new_balance":"7006.45", + "value":"12.34" + } + }, + { + "id":"e3606919-519e-44f9-825f-a67422257a3a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T01:36:27.686Z", + "completed":"2017-04-04T01:36:27.686Z", + "new_balance":"6999.26", + "value":"-7.19" + } + }, + { + "id":"8c4a879d-2c5b-4097-9faa-dc71706ff3d7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T11:46:31.112Z", + "completed":"2017-04-05T11:46:31.112Z", + "new_balance":"6996.58", + "value":"-2.68" + } + }, + { + "id":"27b20fa6-68cb-403c-9956-253847b36ead", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T13:24:55.066Z", + "completed":"2017-04-05T13:24:55.066Z", + "new_balance":"6996.12", + "value":"-0.46" + } + }, + { + "id":"3558accb-bf72-4238-892b-09fdab019309", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T12:07:45.388Z", + "completed":"2017-04-07T12:07:45.388Z", + "new_balance":"6994.59", + "value":"-1.53" + } + }, + { + "id":"9f02d6b4-52b2-4de0-b1a7-4cc024ab0839", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T23:41:14.569Z", + "completed":"2017-04-07T23:41:14.569Z", + "new_balance":"6991.37", + "value":"-3.22" + } + }, + { + "id":"27af3f39-29ec-494f-9fbe-516a5e3a171e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T03:52:22.862Z", + "completed":"2017-04-08T03:52:22.862Z", + "new_balance":"6990.47", + "value":"-0.90" + } + }, + { + "id":"0ffd3ee3-3552-4476-bacc-54097c515aa0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T05:56:33.633Z", + "completed":"2017-04-09T05:56:33.633Z", + "new_balance":"6962.97", + "value":"-27.50" + } + }, + { + "id":"ca44c355-52fd-4477-b8b8-a970336fe71d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T07:05:46.211Z", + "completed":"2017-04-09T07:05:46.211Z", + "new_balance":"6962.53", + "value":"-0.44" + } + }, + { + "id":"efe92207-b102-426e-bf90-96e7762c50b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T12:11:20.935Z", + "completed":"2017-04-09T12:11:20.935Z", + "new_balance":"6960.42", + "value":"-2.11" + } + }, + { + "id":"00332e78-6b1d-40dd-84b0-5b0866b015ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T23:37:54.762Z", + "completed":"2017-04-10T23:37:54.762Z", + "new_balance":"6955.94", + "value":"-4.48" + } + }, + { + "id":"6427e4d3-a31d-448d-8fa3-b6984ff9202d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T21:46:58.646Z", + "completed":"2017-04-17T21:46:58.646Z", + "new_balance":"6954.83", + "value":"-1.11" + } + }, + { + "id":"feaaefd7-4927-4551-a71a-e48fd185f56f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T07:17:52.370Z", + "completed":"2017-04-18T07:17:52.370Z", + "new_balance":"6952.02", + "value":"-2.81" + } + }, + { + "id":"305c2f18-b1a6-4905-b713-e0fb153f756d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T16:37:07.651Z", + "completed":"2017-04-25T16:37:07.651Z", + "new_balance":"6946.62", + "value":"-5.40" + } + }, + { + "id":"0a6916ff-c08a-4bc5-9ecc-0e42e631d729", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T06:01:34.773Z", + "completed":"2017-04-26T06:01:34.773Z", + "new_balance":"6946.18", + "value":"-0.44" + } + }, + { + "id":"2feec103-d6e6-4ff4-9516-89ece82c0d66", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T12:20:41.328Z", + "completed":"2017-04-26T12:20:41.328Z", + "new_balance":"6940.36", + "value":"-5.82" + } + }, + { + "id":"bf9824fe-82ac-4a95-a45d-89ebbffdf7c6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T06:04:40.806Z", + "completed":"2017-05-02T06:04:40.806Z", + "new_balance":"6936.92", + "value":"-3.44" + } + }, + { + "id":"91ffee34-0eff-4c2a-a8d6-528c880761c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T07:30:34.990Z", + "completed":"2017-05-02T07:30:34.990Z", + "new_balance":"6921.67", + "value":"-15.25" + } + }, + { + "id":"2502dc02-9a2a-4d4e-b8ae-b342b97a2d31", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T08:40:33.523Z", + "completed":"2017-05-02T08:40:33.523Z", + "new_balance":"6919.35", + "value":"-2.32" + } + }, + { + "id":"eac651bb-6c6d-4135-84d2-ec1fc0264a1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T09:08:03.555Z", + "completed":"2017-05-02T09:08:03.555Z", + "new_balance":"6912.25", + "value":"-7.10" + } + }, + { + "id":"0a535dd7-a81a-4270-b7ef-9f9356feaf5b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T09:50:47.235Z", + "completed":"2017-05-02T09:50:47.235Z", + "new_balance":"6911.10", + "value":"-1.15" + } + }, + { + "id":"30548b38-a63d-4909-919b-8a1de9956972", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:49:35.794Z", + "completed":"2017-05-02T14:49:35.794Z", + "new_balance":"6852.87", + "value":"-58.23" + } + }, + { + "id":"89f3504e-73a9-4338-90e7-5fbfb09abb2b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T18:05:55.168Z", + "completed":"2017-05-02T18:05:55.168Z", + "new_balance":"6847.72", + "value":"-5.15" + } + }, + { + "id":"7d1b98e1-3844-46fa-861c-cac38a233d93", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T23:46:30.280Z", + "completed":"2017-05-02T23:46:30.280Z", + "new_balance":"7030.42", + "value":"182.70" + } + }, + { + "id":"d09adff0-fcec-4d21-a5bd-58987c7985c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:23:17.977Z", + "completed":"2017-05-03T05:23:17.977Z", + "new_balance":"7027.92", + "value":"-2.50" + } + }, + { + "id":"58e266c0-2794-4660-a45a-eef8ba6ef8a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T13:06:52.924Z", + "completed":"2017-05-03T13:06:52.924Z", + "new_balance":"7025.82", + "value":"-2.10" + } + }, + { + "id":"e352cc41-94b6-4a1c-a25a-3b1dafdaf587", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T01:31:24.107Z", + "completed":"2017-05-04T01:31:24.107Z", + "new_balance":"7022.49", + "value":"-3.33" + } + }, + { + "id":"bba30b06-4906-4041-b5e9-c6b28049423e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T11:57:21.662Z", + "completed":"2017-05-04T11:57:21.662Z", + "new_balance":"7020.09", + "value":"-2.40" + } + }, + { + "id":"7babe7c5-b20d-4de5-a160-bb0730715a72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T16:07:06.344Z", + "completed":"2017-05-05T16:07:06.344Z", + "new_balance":"7012.90", + "value":"-7.19" + } + }, + { + "id":"848210af-4625-42d1-991c-1b89d1337d50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T13:50:32.119Z", + "completed":"2017-05-07T13:50:32.119Z", + "new_balance":"7012.42", + "value":"-0.48" + } + }, + { + "id":"d7c85e04-aa72-477e-a002-c83ece6c7b88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:19:22.552Z", + "completed":"2017-05-07T14:19:22.552Z", + "new_balance":"7009.39", + "value":"-3.03" + } + }, + { + "id":"8c442bf1-5431-4e65-bef4-495ac8461792", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:15:20.627Z", + "completed":"2017-05-12T21:15:20.627Z", + "new_balance":"7006.25", + "value":"-3.14" + } + }, + { + "id":"c359ca7a-f0d7-49d9-9612-582ac0d91da5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T23:48:38.795Z", + "completed":"2017-05-12T23:48:38.795Z", + "new_balance":"7003.80", + "value":"-2.45" + } + }, + { + "id":"4f3178b3-980c-4971-a807-1b17ea14f560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T09:04:14.417Z", + "completed":"2017-05-14T09:04:14.417Z", + "new_balance":"7000.32", + "value":"-3.48" + } + }, + { + "id":"073fe20f-e3c0-4f8a-88b5-2fe865f1655e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T02:25:35.597Z", + "completed":"2017-05-16T02:25:35.597Z", + "new_balance":"6999.85", + "value":"-0.47" + } + }, + { + "id":"bf0bbfcb-381d-4b1f-a1a5-ac66398a3e7f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:31:33.359Z", + "completed":"2017-05-18T18:31:33.359Z", + "new_balance":"6999.08", + "value":"-0.77" + } + }, + { + "id":"845d9443-a544-410f-a299-b61b8a7a62d3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:48:01.553Z", + "completed":"2017-05-20T06:48:01.553Z", + "new_balance":"7003.16", + "value":"4.08" + } + }, + { + "id":"1c6bf97e-2fb7-4b5a-a3f8-79b3c9af2cc5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T09:56:56.601Z", + "completed":"2017-05-21T09:56:56.601Z", + "new_balance":"6996.73", + "value":"-6.43" + } + }, + { + "id":"c99ffad5-2af4-4949-90d8-12cd2559f6f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T10:32:21.359Z", + "completed":"2017-05-21T10:32:21.359Z", + "new_balance":"6992.61", + "value":"-4.12" + } + }, + { + "id":"4a4199c1-58e2-4334-9ee8-c95322aa4b50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T07:30:46.131Z", + "completed":"2017-05-27T07:30:46.131Z", + "new_balance":"6990.06", + "value":"-2.55" + } + }, + { + "id":"fb4074cf-c1c5-45c9-9260-2b933e7fe491", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T08:01:08.064Z", + "completed":"2017-05-27T08:01:08.064Z", + "new_balance":"6987.12", + "value":"-2.94" + } + }, + { + "id":"152762fb-01c4-47d2-9b14-c64f405a6216", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T01:11:07.206Z", + "completed":"2017-06-01T01:11:07.206Z", + "new_balance":"6928.89", + "value":"-58.23" + } + }, + { + "id":"19d4a774-c39f-41ba-a41b-693c3d843a11", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T01:48:59.324Z", + "completed":"2017-06-01T01:48:59.324Z", + "new_balance":"6926.57", + "value":"-2.32" + } + }, + { + "id":"7f039a25-3e5c-4ff6-97ae-339dc970fc34", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T07:30:00.978Z", + "completed":"2017-06-01T07:30:00.978Z", + "new_balance":"7109.27", + "value":"182.70" + } + }, + { + "id":"e2ec6ebc-40c8-42ef-a459-ba3297af369e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T10:25:47.332Z", + "completed":"2017-06-01T10:25:47.332Z", + "new_balance":"7094.02", + "value":"-15.25" + } + }, + { + "id":"373574f9-82ce-4ed4-bb6f-f67ddb2e299a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T17:11:39.374Z", + "completed":"2017-06-01T17:11:39.374Z", + "new_balance":"7090.58", + "value":"-3.44" + } + }, + { + "id":"fed063ad-c045-4ba5-a9db-6c7ab1935956", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T19:18:55.550Z", + "completed":"2017-06-01T19:18:55.550Z", + "new_balance":"7085.43", + "value":"-5.15" + } + }, + { + "id":"466f6915-eb59-498d-9f2a-0c5008d2ac89", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T03:43:14.702Z", + "completed":"2017-06-04T03:43:14.702Z", + "new_balance":"7073.47", + "value":"-11.96" + } + }, + { + "id":"f0f08ca9-0fec-411c-b8f9-8ca34e4a480e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T09:54:35.394Z", + "completed":"2017-06-04T09:54:35.394Z", + "new_balance":"7066.37", + "value":"-7.10" + } + }, + { + "id":"2184e1bd-d712-4ef0-ba52-8253b4062f95", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T14:19:36.667Z", + "completed":"2017-06-11T14:19:36.667Z", + "new_balance":"7063.07", + "value":"-3.30" + } + }, + { + "id":"58a70368-8630-4f2f-8f58-6dda143ef032", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T03:56:52.333Z", + "completed":"2017-06-12T03:56:52.333Z", + "new_balance":"7061.82", + "value":"-1.25" + } + }, + { + "id":"260e5211-9f33-4904-9a2f-020896263e7c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T05:51:44.337Z", + "completed":"2017-06-13T05:51:44.337Z", + "new_balance":"7054.52", + "value":"-7.30" + } + }, + { + "id":"eaa8bfbe-df95-4bd6-9abc-b4ab1b2fa2b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T23:38:18.970Z", + "completed":"2017-06-13T23:38:18.970Z", + "new_balance":"7053.76", + "value":"-0.76" + } + }, + { + "id":"56c4cc73-ef96-4dcf-a56c-8539d651f21a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T04:30:49.386Z", + "completed":"2017-06-16T04:30:49.386Z", + "new_balance":"7049.72", + "value":"-4.04" + } + }, + { + "id":"9adaf7e7-096f-4be5-b4ce-9d14617c4c96", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T17:02:34.818Z", + "completed":"2017-06-17T17:02:34.818Z", + "new_balance":"7049.32", + "value":"-0.40" + } + }, + { + "id":"f74e4432-78b3-41fc-a541-2a3e888b4b04", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T19:44:34.556Z", + "completed":"2017-06-17T19:44:34.556Z", + "new_balance":"7042.02", + "value":"-7.30" + } + }, + { + "id":"4ba93136-e03b-4dc5-97ff-43dfaa776a51", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T13:17:57.703Z", + "completed":"2017-06-18T13:17:57.703Z", + "new_balance":"7036.75", + "value":"-5.27" + } + }, + { + "id":"97f544f5-a941-4640-ad1f-f4a183739b6b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T07:04:09.722Z", + "completed":"2017-06-19T07:04:09.722Z", + "new_balance":"7031.48", + "value":"-5.27" + } + }, + { + "id":"c3e20d80-de04-4f1b-b270-5c1fe6820b4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T11:24:45.242Z", + "completed":"2017-06-19T11:24:45.242Z", + "new_balance":"7027.21", + "value":"-4.27" + } + }, + { + "id":"185e259d-538b-47ad-a7b4-37ea35308a6e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T02:56:38.803Z", + "completed":"2017-06-21T02:56:38.803Z", + "new_balance":"7020.89", + "value":"-6.32" + } + }, + { + "id":"c8e916aa-4775-4bc7-91bb-ba704d0e4374", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T15:21:54.588Z", + "completed":"2017-06-21T15:21:54.588Z", + "new_balance":"7020.35", + "value":"-0.54" + } + }, + { + "id":"e1c78c54-4824-47ca-93c3-4de076450c04", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T04:25:53.777Z", + "completed":"2017-06-23T04:25:53.777Z", + "new_balance":"7018.10", + "value":"-2.25" + } + }, + { + "id":"54ea2bbd-b9e2-44ba-92d0-249f9ccc6497", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T09:41:33.062Z", + "completed":"2017-06-23T09:41:33.062Z", + "new_balance":"7017.33", + "value":"-0.77" + } + }, + { + "id":"32043233-3e45-4620-aa7a-9b5b63c224c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T08:20:42.245Z", + "completed":"2017-06-24T08:20:42.245Z", + "new_balance":"7016.28", + "value":"-1.05" + } + }, + { + "id":"a3edcbf7-6714-4396-9b25-b2353a60f934", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T17:09:48.307Z", + "completed":"2017-06-24T17:09:48.307Z", + "new_balance":"7012.02", + "value":"-4.26" + } + }, + { + "id":"d6d20282-6a37-4ecf-84c8-3f278872de08", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:13:55.627Z", + "completed":"2017-06-28T01:13:55.627Z", + "new_balance":"7002.23", + "value":"-9.79" + } + }, + { + "id":"6cc0fbd1-07ce-4902-a15c-26c2a4345d11", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T05:13:10.999Z", + "completed":"2017-06-28T05:13:10.999Z", + "new_balance":"7001.71", + "value":"-0.52" + } + }, + { + "id":"77543773-7b20-4e90-a662-8ea193e092be", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T16:11:17.584Z", + "completed":"2017-06-28T16:11:17.584Z", + "new_balance":"6996.89", + "value":"-4.82" + } + }, + { + "id":"2cde46f2-51e2-449c-8220-3fe052fede95", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T18:47:45.483Z", + "completed":"2017-06-28T18:47:45.483Z", + "new_balance":"6996.37", + "value":"-0.52" + } + }, + { + "id":"0a46ca3e-7d44-4e5d-b595-cd839634bd1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T00:25:55.015Z", + "completed":"2017-06-29T00:25:55.015Z", + "new_balance":"6989.41", + "value":"-6.96" + } + }, + { + "id":"c2cc001a-3b23-438e-8601-a3c9c4287a05", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T04:18:25.780Z", + "completed":"2017-06-29T04:18:25.780Z", + "new_balance":"6984.25", + "value":"-5.16" + } + }, + { + "id":"13da1d2a-6093-4a0e-b651-25ea76316203", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T04:27:44.547Z", + "completed":"2017-06-29T04:27:44.547Z", + "new_balance":"6983.49", + "value":"-0.76" + } + }, + { + "id":"b9af0340-4001-4815-b319-056513d03c62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T06:20:38.161Z", + "completed":"2017-06-29T06:20:38.161Z", + "new_balance":"6979.34", + "value":"-4.15" + } + }, + { + "id":"37c138db-fdf8-4d9c-bbf1-0b97d9762dd2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T11:55:17.258Z", + "completed":"2017-06-29T11:55:17.258Z", + "new_balance":"6975.05", + "value":"-4.29" + } + }, + { + "id":"fb19a5ef-2a06-43b6-9a88-b942ec406eaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T18:13:18.226Z", + "completed":"2017-06-29T18:13:18.226Z", + "new_balance":"6968.73", + "value":"-6.32" + } + }, + { + "id":"61b087f8-59a0-46b7-89f8-f3c7ffb8b39a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T02:00:26.916Z", + "completed":"2017-06-30T02:00:26.916Z", + "new_balance":"6968.14", + "value":"-0.59" + } + }, + { + "id":"11975381-53ac-45b4-a471-1d80bccc9012", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T04:01:34.529Z", + "completed":"2017-06-30T04:01:34.529Z", + "new_balance":"6967.23", + "value":"-0.91" + } + }, + { + "id":"1a3a2c3f-baff-4a79-8b31-af8b2d7a4684", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T09:32:08.045Z", + "completed":"2017-06-30T09:32:08.045Z", + "new_balance":"6962.62", + "value":"-4.61" + } + }, + { + "id":"2e66d5b8-9977-43e5-bb7d-bca22b8bc9ed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T12:29:09.491Z", + "completed":"2017-06-30T12:29:09.491Z", + "new_balance":"6959.07", + "value":"-3.55" + } + }, + { + "id":"575465cb-55f2-45ff-babe-7c26f0823520", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T01:43:21.537Z", + "completed":"2017-07-01T01:43:21.537Z", + "new_balance":"6957.76", + "value":"-1.31" + } + }, + { + "id":"b4fdd156-caa8-4fc5-9279-0c58478bc97d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T01:55:09.239Z", + "completed":"2017-07-01T01:55:09.239Z", + "new_balance":"6942.51", + "value":"-15.25" + } + }, + { + "id":"57e2c4eb-e9b0-4a4e-892b-773d43321b81", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T04:47:14.819Z", + "completed":"2017-07-01T04:47:14.819Z", + "new_balance":"6884.28", + "value":"-58.23" + } + }, + { + "id":"7d485336-5184-4d50-86aa-711af0467452", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T06:59:34.755Z", + "completed":"2017-07-01T06:59:34.755Z", + "new_balance":"6881.54", + "value":"-2.74" + } + }, + { + "id":"7eb4b2b7-d14b-4fb1-80be-d94e07fb30e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:21:27.047Z", + "completed":"2017-07-01T13:21:27.047Z", + "new_balance":"6876.39", + "value":"-5.15" + } + }, + { + "id":"7881ba6d-5a32-4ce2-b2b5-205b29cfc09c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T13:28:43.593Z", + "completed":"2017-07-01T13:28:43.593Z", + "new_balance":"6874.07", + "value":"-2.32" + } + }, + { + "id":"5301aacf-18e8-48bc-ba73-979a3890e17d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T13:55:24.143Z", + "completed":"2017-07-01T13:55:24.143Z", + "new_balance":"6871.01", + "value":"-3.06" + } + }, + { + "id":"94f13df3-fb77-4833-9910-1b75d4234337", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T17:58:25.647Z", + "completed":"2017-07-01T17:58:25.647Z", + "new_balance":"6867.57", + "value":"-3.44" + } + }, + { + "id":"46ced700-5930-4595-9f1f-397eb9ada6f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T19:30:16.733Z", + "completed":"2017-07-01T19:30:16.733Z", + "new_balance":"6864.13", + "value":"-3.44" + } + }, + { + "id":"30833a6e-79f9-4b8e-865d-5ef22a5b541d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T22:49:01.467Z", + "completed":"2017-07-01T22:49:01.467Z", + "new_balance":"6836.63", + "value":"-27.50" + } + }, + { + "id":"af425680-aa35-48dc-835a-31aec945e461", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T18:06:27.281Z", + "completed":"2017-07-02T18:06:27.281Z", + "new_balance":"6829.53", + "value":"-7.10" + } + }, + { + "id":"7d6a7f34-41e1-42ef-9719-b8405e4cad0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T19:14:19.321Z", + "completed":"2017-07-03T19:14:19.321Z", + "new_balance":"6819.06", + "value":"-10.47" + } + }, + { + "id":"5cfbb480-9aa0-4ce3-a630-a1e21a2888cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:26:51.960Z", + "completed":"2017-07-04T08:26:51.960Z", + "new_balance":"6817.28", + "value":"-1.78" + } + }, + { + "id":"d841444e-114f-4430-b567-8994194802ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T12:16:15.032Z", + "completed":"2017-07-05T12:16:15.032Z", + "new_balance":"6810.09", + "value":"-7.19" + } + }, + { + "id":"1407c31a-eb32-4ccc-ba89-2e2c3c9445fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T23:24:31.081Z", + "completed":"2017-07-05T23:24:31.081Z", + "new_balance":"6800.45", + "value":"-9.64" + } + }, + { + "id":"0391a36d-b607-4f86-b7c2-169a3b8a8220", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T07:58:57.459Z", + "completed":"2017-07-06T07:58:57.459Z", + "new_balance":"6799.99", + "value":"-0.46" + } + }, + { + "id":"b0900586-9bdb-4f7c-a795-042480ccf0da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T14:04:16.332Z", + "completed":"2017-07-11T14:04:16.332Z", + "new_balance":"6797.31", + "value":"-2.68" + } + }, + { + "id":"1281d177-d587-49b0-9c59-7bd151ddb04b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T16:38:11.316Z", + "completed":"2017-07-12T16:38:11.316Z", + "new_balance":"6794.09", + "value":"-3.22" + } + }, + { + "id":"d53eeec3-e146-4531-9724-b5a8f82d38b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T09:43:02.987Z", + "completed":"2017-07-14T09:43:02.987Z", + "new_balance":"6792.56", + "value":"-1.53" + } + }, + { + "id":"bd4dee14-3ff9-41e2-a2ab-5dc5c8213cb6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T01:15:53.659Z", + "completed":"2017-07-16T01:15:53.659Z", + "new_balance":"6791.66", + "value":"-0.90" + } + }, + { + "id":"eeb6977c-9635-4a70-9a4b-46079989ee19", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T07:29:57.244Z", + "completed":"2017-07-18T07:29:57.244Z", + "new_balance":"6789.55", + "value":"-2.11" + } + }, + { + "id":"03d42dc3-51c7-41db-8fc0-72c54e5e4f1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T18:18:13.402Z", + "completed":"2017-07-20T18:18:13.402Z", + "new_balance":"6789.11", + "value":"-0.44" + } + }, + { + "id":"8d09f272-1328-404a-82fc-6ec4f20647ee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T20:40:54.592Z", + "completed":"2017-07-20T20:40:54.592Z", + "new_balance":"6761.61", + "value":"-27.50" + } + }, + { + "id":"3b1a51ff-82ea-4197-a600-c60b34642f76", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T06:25:48.491Z", + "completed":"2017-07-24T06:25:48.491Z", + "new_balance":"6757.13", + "value":"-4.48" + } + }, + { + "id":"a7ffdf64-7d93-4632-8fbd-e0e700c633f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T12:38:07.272Z", + "completed":"2017-07-24T12:38:07.272Z", + "new_balance":"6756.02", + "value":"-1.11" + } + }, + { + "id":"d2e6d960-4b88-4490-802d-ad2658d1b9b7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T08:50:13.924Z", + "completed":"2017-07-25T08:50:13.924Z", + "new_balance":"6750.62", + "value":"-5.40" + } + }, + { + "id":"7ddac4a3-b1f2-4d9b-82b4-dd8ecf581538", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T14:49:51.374Z", + "completed":"2017-07-25T14:49:51.374Z", + "new_balance":"6747.81", + "value":"-2.81" + } + }, + { + "id":"477d7ac9-14be-4149-8f0d-2b18c21cf6cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T01:06:55.657Z", + "completed":"2017-07-26T01:06:55.657Z", + "new_balance":"6741.99", + "value":"-5.82" + } + }, + { + "id":"4c1329b2-1d7f-4921-82c1-ac50a651d01e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T16:30:04.935Z", + "completed":"2017-07-27T16:30:04.935Z", + "new_balance":"6741.55", + "value":"-0.44" + } + }, + { + "id":"8160a6d0-2688-46c1-aa6b-444f45280560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T07:22:24.722Z", + "completed":"2017-08-01T07:22:24.722Z", + "new_balance":"6736.40", + "value":"-5.15" + } + }, + { + "id":"8a191c7b-6769-4ba7-bed7-a5fcb44beff2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T09:01:58.739Z", + "completed":"2017-08-01T09:01:58.739Z", + "new_balance":"6678.17", + "value":"-58.23" + } + }, + { + "id":"8dd8e5e3-5290-4b57-998c-8825f75d2640", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T14:51:46.883Z", + "completed":"2017-08-01T14:51:46.883Z", + "new_balance":"6674.73", + "value":"-3.44" + } + }, + { + "id":"0751ff10-4061-4553-95f9-b927b013c085", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:10:15.473Z", + "completed":"2017-08-01T21:10:15.473Z", + "new_balance":"6659.48", + "value":"-15.25" + } + }, + { + "id":"b4232984-45dc-415e-803a-679a87b4f9a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T21:23:56.742Z", + "completed":"2017-08-01T21:23:56.742Z", + "new_balance":"6657.16", + "value":"-2.32" + } + }, + { + "id":"10350251-30dc-4623-91fb-a121d9703bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T22:40:57.480Z", + "completed":"2017-08-01T22:40:57.480Z", + "new_balance":"6839.86", + "value":"182.70" + } + }, + { + "id":"298fecf0-0c4e-48f1-af24-130344f0d84b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T12:23:12.660Z", + "completed":"2017-08-02T12:23:12.660Z", + "new_balance":"6832.76", + "value":"-7.10" + } + }, + { + "id":"fb3920d8-4bf2-4130-9643-9b271bf9739a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T22:03:04.353Z", + "completed":"2017-08-03T22:03:04.353Z", + "new_balance":"6832.30", + "value":"-0.46" + } + }, + { + "id":"943bc7d5-b49c-4568-92a9-2565435fcd7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T02:58:41.939Z", + "completed":"2017-08-04T02:58:41.939Z", + "new_balance":"6829.38", + "value":"-2.92" + } + }, + { + "id":"957c342a-bee2-45c2-a88f-e811a34a64b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:33:49.260Z", + "completed":"2017-08-07T09:33:49.260Z", + "new_balance":"6826.88", + "value":"-2.50" + } + }, + { + "id":"cb8bb8fa-796a-4f36-8edb-646394ddae4c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T16:35:30.297Z", + "completed":"2017-08-09T16:35:30.297Z", + "new_balance":"6823.55", + "value":"-3.33" + } + }, + { + "id":"6416d04d-7d25-4871-96be-82400d250aee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T22:06:26.399Z", + "completed":"2017-08-09T22:06:26.399Z", + "new_balance":"6821.15", + "value":"-2.40" + } + }, + { + "id":"c155c401-87e2-4b89-aaad-5a9c02dc4b13", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T00:24:11.355Z", + "completed":"2017-08-10T00:24:11.355Z", + "new_balance":"6813.96", + "value":"-7.19" + } + }, + { + "id":"30156742-2a90-4e80-a27a-715540ba4def", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T06:48:00.478Z", + "completed":"2017-08-14T06:48:00.478Z", + "new_balance":"6813.48", + "value":"-0.48" + } + }, + { + "id":"2907a7c5-bbce-439b-8268-b3041a3e4780", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T04:19:20.798Z", + "completed":"2017-08-15T04:19:20.798Z", + "new_balance":"6810.26", + "value":"-3.22" + } + }, + { + "id":"61bcab40-169c-43da-a806-a4f3fc7b7ac1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T07:59:36.097Z", + "completed":"2017-08-15T07:59:36.097Z", + "new_balance":"6807.23", + "value":"-3.03" + } + }, + { + "id":"58c692e2-71a1-4083-a45b-e0da870a5e91", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T09:08:08.948Z", + "completed":"2017-08-16T09:08:08.948Z", + "new_balance":"6804.09", + "value":"-3.14" + } + }, + { + "id":"294cc349-2c36-4c49-a0c6-e5a5f230e9b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T12:18:05.277Z", + "completed":"2017-08-17T12:18:05.277Z", + "new_balance":"6800.61", + "value":"-3.48" + } + }, + { + "id":"1a2806f5-b55e-4d8c-9f5b-6bf6667986a3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T00:18:21.045Z", + "completed":"2017-08-20T00:18:21.045Z", + "new_balance":"6799.84", + "value":"-0.77" + } + }, + { + "id":"774bca44-c0bb-4a76-83b1-3ebc773b0d9d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T15:15:36.240Z", + "completed":"2017-08-20T15:15:36.240Z", + "new_balance":"6799.37", + "value":"-0.47" + } + }, + { + "id":"964bbea6-69ff-4fa9-870c-705ce6e11e4e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T14:28:34.411Z", + "completed":"2017-08-22T14:28:34.411Z", + "new_balance":"6803.45", + "value":"4.08" + } + }, + { + "id":"bad261df-759c-4f80-8853-01e27b161987", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T10:53:03.075Z", + "completed":"2017-08-23T10:53:03.075Z", + "new_balance":"6799.33", + "value":"-4.12" + } + }, + { + "id":"96d6f721-c4a6-4641-b239-3a5f3bb35071", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T17:10:21.843Z", + "completed":"2017-08-23T17:10:21.843Z", + "new_balance":"6792.90", + "value":"-6.43" + } + }, + { + "id":"ef8eba0b-db24-4ac3-8e31-a47aa2eff17b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T02:29:50.348Z", + "completed":"2017-08-28T02:29:50.348Z", + "new_balance":"6790.35", + "value":"-2.55" + } + }, + { + "id":"e20d18e8-4406-4222-bb6a-a01e0ca80d19", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T14:34:32.343Z", + "completed":"2017-08-28T14:34:32.343Z", + "new_balance":"6787.41", + "value":"-2.94" + } + }, + { + "id":"412c5f58-e1c5-4cd2-8efe-861be0671b14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T02:47:08.260Z", + "completed":"2017-09-01T02:47:08.260Z", + "new_balance":"6785.09", + "value":"-2.32" + } + }, + { + "id":"3293542d-3b02-40db-817f-8c4b8f52d571", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T05:09:00.390Z", + "completed":"2017-09-01T05:09:00.390Z", + "new_balance":"6779.94", + "value":"-5.15" + } + }, + { + "id":"3d8b00f8-7c90-4b2f-a556-77d5d43f2626", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:08:47.040Z", + "completed":"2017-09-01T14:08:47.040Z", + "new_balance":"6764.69", + "value":"-15.25" + } + }, + { + "id":"34136809-58bd-499f-9c2a-5b0ee6c59dd6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T19:49:10.916Z", + "completed":"2017-09-01T19:49:10.916Z", + "new_balance":"6947.39", + "value":"182.70" + } + }, + { + "id":"80afac8a-34e2-4dc7-82dd-364b2f0c04b1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T22:19:35.918Z", + "completed":"2017-09-01T22:19:35.918Z", + "new_balance":"6943.95", + "value":"-3.44" + } + }, + { + "id":"9ceddecd-32ff-4173-bc6f-177c83b5e057", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T22:57:05.879Z", + "completed":"2017-09-01T22:57:05.879Z", + "new_balance":"6885.72", + "value":"-58.23" + } + }, + { + "id":"1acb7155-8145-4b18-84b3-fc9ba2c18c9b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T20:54:26.117Z", + "completed":"2017-09-02T20:54:26.117Z", + "new_balance":"6878.62", + "value":"-7.10" + } + }, + { + "id":"fde9016a-a138-4a0c-a749-4b469b3c5971", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T01:45:07.605Z", + "completed":"2017-09-04T01:45:07.605Z", + "new_balance":"6871.32", + "value":"-7.30" + } + }, + { + "id":"20805d82-e2ee-4a86-8f4d-8e62e40ec5a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:03:04.458Z", + "completed":"2017-09-04T02:03:04.458Z", + "new_balance":"6870.56", + "value":"-0.76" + } + }, + { + "id":"74fc5592-69f6-4ff9-a581-763d299354da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T10:06:45.899Z", + "completed":"2017-09-04T10:06:45.899Z", + "new_balance":"6867.26", + "value":"-3.30" + } + }, + { + "id":"1f749ab4-da6e-4535-a4ce-4741956c687d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T14:04:37.007Z", + "completed":"2017-09-04T14:04:37.007Z", + "new_balance":"6866.01", + "value":"-1.25" + } + }, + { + "id":"e19b55a8-a133-4108-834a-889d46406e72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T04:03:23.141Z", + "completed":"2017-09-05T04:03:23.141Z", + "new_balance":"6865.61", + "value":"-0.40" + } + }, + { + "id":"f21c4e43-77b9-46d8-a1e5-560a56ca11ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T07:53:13.576Z", + "completed":"2017-09-05T07:53:13.576Z", + "new_balance":"6861.57", + "value":"-4.04" + } + }, + { + "id":"8f222c0f-e5f3-4c9b-bed2-2635baf877bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T13:27:25.631Z", + "completed":"2017-09-06T13:27:25.631Z", + "new_balance":"6854.27", + "value":"-7.30" + } + }, + { + "id":"cf65e930-16e3-4336-bd97-c8d10c264b3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T13:45:34.827Z", + "completed":"2017-09-06T13:45:34.827Z", + "new_balance":"6849.00", + "value":"-5.27" + } + }, + { + "id":"13bba013-b74c-4605-880b-8ca9875baf20", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T12:21:03.069Z", + "completed":"2017-09-08T12:21:03.069Z", + "new_balance":"6844.73", + "value":"-4.27" + } + }, + { + "id":"d1513f4a-1816-4789-b1e8-fd897773f506", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:30:27.622Z", + "completed":"2017-09-08T22:30:27.622Z", + "new_balance":"6839.46", + "value":"-5.27" + } + }, + { + "id":"d23224a0-4296-4895-8693-68c23cefccf0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T06:06:33.261Z", + "completed":"2017-09-10T06:06:33.261Z", + "new_balance":"6838.92", + "value":"-0.54" + } + }, + { + "id":"f9db5d86-d909-4a51-9e56-d5bc44fab995", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T22:52:09.895Z", + "completed":"2017-09-10T22:52:09.895Z", + "new_balance":"6832.60", + "value":"-6.32" + } + }, + { + "id":"98618ff8-4b6d-45f8-91de-5a3c8c1e32fd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T10:51:30.002Z", + "completed":"2017-09-11T10:51:30.002Z", + "new_balance":"6831.83", + "value":"-0.77" + } + }, + { + "id":"6f1aff69-7bc6-42fe-b8e0-13b58f640fcf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T15:46:50.211Z", + "completed":"2017-09-12T15:46:50.211Z", + "new_balance":"6829.58", + "value":"-2.25" + } + }, + { + "id":"1aa74b1d-4576-4845-93c7-b7b60a90b167", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T16:29:22.357Z", + "completed":"2017-09-12T16:29:22.357Z", + "new_balance":"6828.53", + "value":"-1.05" + } + }, + { + "id":"4ee9d640-c166-45ed-a9ac-0c0c4a22a997", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T09:43:04.505Z", + "completed":"2017-09-13T09:43:04.505Z", + "new_balance":"6824.27", + "value":"-4.26" + } + }, + { + "id":"3a3a5e85-cb3a-4035-b3fb-8c5829b8838a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T07:16:10.808Z", + "completed":"2017-09-16T07:16:10.808Z", + "new_balance":"6823.75", + "value":"-0.52" + } + }, + { + "id":"a13cf347-6960-4ddc-934f-d96523ceb87f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T02:49:07.946Z", + "completed":"2017-09-17T02:49:07.946Z", + "new_balance":"6818.93", + "value":"-4.82" + } + }, + { + "id":"76dd1f0c-99d7-4176-be2a-13b209c90c9f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T22:27:39.009Z", + "completed":"2017-09-17T22:27:39.009Z", + "new_balance":"6809.14", + "value":"-9.79" + } + }, + { + "id":"89e387e6-b88d-4d34-b7aa-5aeeaa9bfff0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T13:55:07.898Z", + "completed":"2017-09-18T13:55:07.898Z", + "new_balance":"6808.62", + "value":"-0.52" + } + }, + { + "id":"c04ffd73-9097-4cb0-afcf-afb189e3c42b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T05:43:09.622Z", + "completed":"2017-09-19T05:43:09.622Z", + "new_balance":"6804.47", + "value":"-4.15" + } + }, + { + "id":"d3dc66a4-d444-4ecc-982b-b67952afb713", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T07:17:31.445Z", + "completed":"2017-09-19T07:17:31.445Z", + "new_balance":"6798.15", + "value":"-6.32" + } + }, + { + "id":"50be1b89-9b14-420f-a95b-4ccfadbb88f9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T19:05:50.594Z", + "completed":"2017-09-19T19:05:50.594Z", + "new_balance":"6793.86", + "value":"-4.29" + } + }, + { + "id":"a5061817-78bf-4996-987c-d15a32b2000b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T07:05:09.323Z", + "completed":"2017-09-20T07:05:09.323Z", + "new_balance":"6788.70", + "value":"-5.16" + } + }, + { + "id":"07fdacc2-ad57-4f7e-b2f4-e186e135c166", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T23:30:05.415Z", + "completed":"2017-09-20T23:30:05.415Z", + "new_balance":"6781.74", + "value":"-6.96" + } + }, + { + "id":"176ecdc1-0326-46f0-9a46-cb9a96888922", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T19:55:14.316Z", + "completed":"2017-09-21T19:55:14.316Z", + "new_balance":"6780.98", + "value":"-0.76" + } + }, + { + "id":"cd5f1f91-760c-4d59-852c-574773378420", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T20:50:19.776Z", + "completed":"2017-09-21T20:50:19.776Z", + "new_balance":"6780.39", + "value":"-0.59" + } + }, + { + "id":"4c90321e-d639-4504-9a9a-125fd4833fa5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T17:25:54.476Z", + "completed":"2017-09-23T17:25:54.476Z", + "new_balance":"6779.48", + "value":"-0.91" + } + }, + { + "id":"b69fe351-a719-4eb5-863f-c813adfc6e98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T21:06:55.547Z", + "completed":"2017-09-23T21:06:55.547Z", + "new_balance":"6774.87", + "value":"-4.61" + } + }, + { + "id":"00de62e8-ec1a-4d0e-8077-1496fed0b479", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T16:19:17.033Z", + "completed":"2017-09-24T16:19:17.033Z", + "new_balance":"6771.32", + "value":"-3.55" + } + }, + { + "id":"9dd23a0c-4075-4a4b-b445-6f53f909f5ae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T05:57:27.313Z", + "completed":"2017-09-25T05:57:27.313Z", + "new_balance":"6770.01", + "value":"-1.31" + } + }, + { + "id":"f90b12a5-9852-4e2a-bac2-fc31c783c8ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T13:44:09.548Z", + "completed":"2017-09-25T13:44:09.548Z", + "new_balance":"6766.95", + "value":"-3.06" + } + }, + { + "id":"c48fb4e4-5851-470e-a233-b8bf27e64a17", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T17:32:11.923Z", + "completed":"2017-09-27T17:32:11.923Z", + "new_balance":"6739.45", + "value":"-27.50" + } + }, + { + "id":"afefd3c7-8b7f-4caf-8c9d-bd793d2337bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T08:45:53.812Z", + "completed":"2017-09-29T08:45:53.812Z", + "new_balance":"6736.71", + "value":"-2.74" + } + }, + { + "id":"a23573fd-65ce-4097-bd10-77b25e67ca02", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T12:46:15.440Z", + "completed":"2017-10-01T12:46:15.440Z", + "new_balance":"6678.48", + "value":"-58.23" + } + }, + { + "id":"65c6a0d3-f7b2-4b9d-b90c-08a568392318", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T17:37:35.377Z", + "completed":"2017-10-01T17:37:35.377Z", + "new_balance":"6673.33", + "value":"-5.15" + } + }, + { + "id":"87cad3e4-642c-4a8f-9c13-1fc39b3be237", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T21:39:38.641Z", + "completed":"2017-10-01T21:39:38.641Z", + "new_balance":"6671.01", + "value":"-2.32" + } + }, + { + "id":"f566a318-656f-4943-9ec6-3de14456b0d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T22:45:22.661Z", + "completed":"2017-10-01T22:45:22.661Z", + "new_balance":"6655.76", + "value":"-15.25" + } + }, + { + "id":"c61be948-3ceb-4a82-b96b-555e4cfa01bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T20:02:05.529Z", + "completed":"2017-10-02T20:02:05.529Z", + "new_balance":"6648.66", + "value":"-7.10" + } + }, + { + "id":"2eed07d8-215a-45a2-86a5-ededc35cd119", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T21:59:27.050Z", + "completed":"2017-10-02T21:59:27.050Z", + "new_balance":"6638.97", + "value":"-9.69" + } + }, + { + "id":"77611052-7c0b-4d8b-9ef1-8a85661d3560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T00:05:13.194Z", + "completed":"2017-10-03T00:05:13.194Z", + "new_balance":"6582.16", + "value":"-56.81" + } + }, + { + "id":"4bd53a13-807d-499f-b85c-734bcbc4d24a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T04:45:34.385Z", + "completed":"2017-10-03T04:45:34.385Z", + "new_balance":"6569.06", + "value":"-13.10" + } + }, + { + "id":"fb10a82f-0137-4eb3-a18c-f2e11be9ad2c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T12:27:54.054Z", + "completed":"2017-10-03T12:27:54.054Z", + "new_balance":"6565.28", + "value":"-3.78" + } + }, + { + "id":"16e0240b-2797-4d4b-a4d1-22db6018b9fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T21:42:20.362Z", + "completed":"2017-10-03T21:42:20.362Z", + "new_balance":"6562.37", + "value":"-2.91" + } + }, + { + "id":"c7428589-3137-434a-93d2-a7964a41bbb4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T21:51:45.893Z", + "completed":"2017-10-03T21:51:45.893Z", + "new_balance":"6534.87", + "value":"-27.50" + } + }, + { + "id":"e68a4d31-f5dd-4bd7-a888-c3364cae487e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T06:10:49.777Z", + "completed":"2017-10-04T06:10:49.777Z", + "new_balance":"6527.68", + "value":"-7.19" + } + }, + { + "id":"f3908183-3eb2-4b95-95fe-4f2135445469", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T08:36:16.653Z", + "completed":"2017-10-05T08:36:16.653Z", + "new_balance":"6525.00", + "value":"-2.68" + } + }, + { + "id":"fa2a7ddf-bd53-4d64-bc69-cd782e914516", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T20:36:14.143Z", + "completed":"2017-10-05T20:36:14.143Z", + "new_balance":"6524.54", + "value":"-0.46" + } + }, + { + "id":"a553100f-dfb7-4c4b-8167-0a3f91c5e5ae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T02:57:58.514Z", + "completed":"2017-10-07T02:57:58.514Z", + "new_balance":"6523.01", + "value":"-1.53" + } + }, + { + "id":"8202dce5-b6ad-426c-8d6b-8b1ec4a7e9dd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T09:46:06.286Z", + "completed":"2017-10-07T09:46:06.286Z", + "new_balance":"6519.79", + "value":"-3.22" + } + }, + { + "id":"4ad2cd68-ebbf-4b4c-bdef-2ad134506a0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T07:44:18.762Z", + "completed":"2017-10-08T07:44:18.762Z", + "new_balance":"6518.89", + "value":"-0.90" + } + }, + { + "id":"6d70773d-c7cb-4e02-98cc-255d61107f14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T16:05:13.058Z", + "completed":"2017-10-09T16:05:13.058Z", + "new_balance":"6516.78", + "value":"-2.11" + } + }, + { + "id":"18e927a8-7418-4cc5-8b38-ca47bc4b3a62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T23:09:41.067Z", + "completed":"2017-10-09T23:09:41.067Z", + "new_balance":"6489.28", + "value":"-27.50" + } + }, + { + "id":"48469904-f8b0-4057-be3f-accdd55371e9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T23:10:45.958Z", + "completed":"2017-10-09T23:10:45.958Z", + "new_balance":"6488.84", + "value":"-0.44" + } + }, + { + "id":"9f1fbd1a-e6da-4769-9d7b-2e3bc6ada00c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T04:16:01.739Z", + "completed":"2017-10-10T04:16:01.739Z", + "new_balance":"6484.36", + "value":"-4.48" + } + }, + { + "id":"3af51668-8057-45f3-91d0-456ddab01149", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T21:07:47.890Z", + "completed":"2017-10-17T21:07:47.890Z", + "new_balance":"6483.25", + "value":"-1.11" + } + }, + { + "id":"208f65ba-84c2-427e-a995-16039c486a62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:33:49.858Z", + "completed":"2017-10-18T01:33:49.858Z", + "new_balance":"6480.44", + "value":"-2.81" + } + }, + { + "id":"a03b5398-1cb4-4e9a-ac06-996c0615df98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T11:04:29.920Z", + "completed":"2017-10-25T11:04:29.920Z", + "new_balance":"6475.04", + "value":"-5.40" + } + }, + { + "id":"e0ec7a41-cb98-4163-9918-27774d8c1e98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T19:08:14.582Z", + "completed":"2017-10-26T19:08:14.582Z", + "new_balance":"6474.60", + "value":"-0.44" + } + }, + { + "id":"41f5bc6e-ee73-49a3-9251-ae3fd13cb1e0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T21:25:38.097Z", + "completed":"2017-10-26T21:25:38.097Z", + "new_balance":"6468.78", + "value":"-5.82" + } + }, + { + "id":"4c7b5085-3f5d-466f-a890-0023a7d0f86c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T03:43:24.071Z", + "completed":"2017-11-02T03:43:24.071Z", + "new_balance":"6651.48", + "value":"182.70" + } + }, + { + "id":"2c9543da-f6e7-4e76-978c-c7a58fadb652", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T13:20:54.464Z", + "completed":"2017-11-02T13:20:54.464Z", + "new_balance":"6593.25", + "value":"-58.23" + } + }, + { + "id":"64ceff19-7430-47db-b31c-42b8e95fdab4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T15:07:15.299Z", + "completed":"2017-11-02T15:07:15.299Z", + "new_balance":"6589.81", + "value":"-3.44" + } + }, + { + "id":"0ef53c09-adba-422d-940c-fe8c909ada92", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T17:26:35.996Z", + "completed":"2017-11-02T17:26:35.996Z", + "new_balance":"6574.56", + "value":"-15.25" + } + }, + { + "id":"035f28eb-ef74-48dc-84a0-41e9c9992d4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T17:36:40.377Z", + "completed":"2017-11-02T17:36:40.377Z", + "new_balance":"6573.41", + "value":"-1.15" + } + }, + { + "id":"922ad11c-69d7-4199-9e2a-655803d2ca14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T20:19:58.732Z", + "completed":"2017-11-02T20:19:58.732Z", + "new_balance":"6566.31", + "value":"-7.10" + } + }, + { + "id":"45612b3a-87f9-4594-8bdb-4642ccb309c3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T21:16:52.731Z", + "completed":"2017-11-02T21:16:52.731Z", + "new_balance":"6563.99", + "value":"-2.32" + } + }, + { + "id":"6574dd90-c2a9-468a-a1c6-3f0025845be4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T22:00:59.311Z", + "completed":"2017-11-02T22:00:59.311Z", + "new_balance":"6558.84", + "value":"-5.15" + } + }, + { + "id":"c503068a-a1a6-4009-8aa5-757aa742254c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T11:50:27.797Z", + "completed":"2017-11-06T11:50:27.797Z", + "new_balance":"6556.74", + "value":"-2.10" + } + }, + { + "id":"3960e815-d472-4d3c-af46-5c5fac535e94", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T05:07:24.759Z", + "completed":"2017-11-07T05:07:24.759Z", + "new_balance":"6554.34", + "value":"-2.40" + } + }, + { + "id":"9af535ea-20ee-49c2-ba11-861912e4989f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T07:57:29.367Z", + "completed":"2017-11-07T07:57:29.367Z", + "new_balance":"6551.01", + "value":"-3.33" + } + }, + { + "id":"5eade63c-3ca3-4411-95bc-4ade570a99a1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T11:43:35.698Z", + "completed":"2017-11-07T11:43:35.698Z", + "new_balance":"6548.51", + "value":"-2.50" + } + }, + { + "id":"475f1ba3-788c-4283-afae-6babe74f8a12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T06:44:08.773Z", + "completed":"2017-11-09T06:44:08.773Z", + "new_balance":"6541.32", + "value":"-7.19" + } + }, + { + "id":"516c3011-d560-4ea2-b957-fd9e506d3170", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T20:13:10.221Z", + "completed":"2017-11-09T20:13:10.221Z", + "new_balance":"6540.84", + "value":"-0.48" + } + }, + { + "id":"6b82de8f-3a74-48c3-8fe3-3bb41d6ff0ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T17:44:42.383Z", + "completed":"2017-11-12T17:44:42.383Z", + "new_balance":"6538.39", + "value":"-2.45" + } + }, + { + "id":"11f098ca-22e9-42c0-b60b-7249733387ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T20:40:06.823Z", + "completed":"2017-11-12T20:40:06.823Z", + "new_balance":"6535.36", + "value":"-3.03" + } + }, + { + "id":"ba542f40-b5dd-4b28-9da4-7f72ac73fd7c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T10:02:06.989Z", + "completed":"2017-11-14T10:02:06.989Z", + "new_balance":"6532.22", + "value":"-3.14" + } + }, + { + "id":"1d286db0-31b9-46b8-afdf-20d7f60b8014", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T14:53:12.404Z", + "completed":"2017-11-14T14:53:12.404Z", + "new_balance":"6528.74", + "value":"-3.48" + } + }, + { + "id":"0b052f81-3e3a-4162-8c16-c0ab64f325d5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T12:36:27.203Z", + "completed":"2017-11-16T12:36:27.203Z", + "new_balance":"6528.27", + "value":"-0.47" + } + }, + { + "id":"a320cb8a-5814-4248-831a-37a41d2cb5eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T23:13:34.240Z", + "completed":"2017-11-18T23:13:34.240Z", + "new_balance":"6527.50", + "value":"-0.77" + } + }, + { + "id":"a34c4200-c75f-458c-a6f8-e7dc2a1d931f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T14:08:50.079Z", + "completed":"2017-11-20T14:08:50.079Z", + "new_balance":"6531.58", + "value":"4.08" + } + }, + { + "id":"9cd98b1e-96d6-456b-8e5a-44049e3be72d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T00:35:49.020Z", + "completed":"2017-11-21T00:35:49.020Z", + "new_balance":"6525.15", + "value":"-6.43" + } + }, + { + "id":"22b44cdf-6ec5-4b01-8ebc-0c97666d1b03", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T18:54:30.446Z", + "completed":"2017-11-21T18:54:30.446Z", + "new_balance":"6521.03", + "value":"-4.12" + } + }, + { + "id":"15d277ff-4508-4327-9237-aa5b49acc9ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T02:42:10.694Z", + "completed":"2017-11-27T02:42:10.694Z", + "new_balance":"6518.48", + "value":"-2.55" + } + }, + { + "id":"a7a108fd-ba48-45b7-8abe-bd6bac313c28", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T09:15:36.039Z", + "completed":"2017-11-27T09:15:36.039Z", + "new_balance":"6515.54", + "value":"-2.94" + } + }, + { + "id":"13dfb8af-79c0-4039-a160-3fea08eb9e40", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:23:37.976Z", + "completed":"2017-12-01T02:23:37.976Z", + "new_balance":"6500.29", + "value":"-15.25" + } + }, + { + "id":"d8f69426-d682-4aae-a53a-7bc515d5f4c1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T04:36:42.323Z", + "completed":"2017-12-01T04:36:42.323Z", + "new_balance":"6496.85", + "value":"-3.44" + } + }, + { + "id":"28d45a80-abbe-47d4-9c43-a45feaf90c24", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T18:14:09.989Z", + "completed":"2017-12-01T18:14:09.989Z", + "new_balance":"6438.62", + "value":"-58.23" + } + }, + { + "id":"54fc0921-c717-4e06-bf17-d93ec3e822f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T18:46:04.642Z", + "completed":"2017-12-01T18:46:04.642Z", + "new_balance":"6621.32", + "value":"182.70" + } + }, + { + "id":"29e5c440-d6dc-47be-a861-8185d560f7e3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T19:35:37.081Z", + "completed":"2017-12-01T19:35:37.081Z", + "new_balance":"6616.17", + "value":"-5.15" + } + }, + { + "id":"c091668e-fa59-4df7-b5de-7ffaa79840d4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:56:12.838Z", + "completed":"2017-12-01T19:56:12.838Z", + "new_balance":"6613.85", + "value":"-2.32" + } + }, + { + "id":"39fb85be-6a3e-4e88-828e-51f9e72cb3a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T09:18:55.555Z", + "completed":"2017-12-04T09:18:55.555Z", + "new_balance":"6606.75", + "value":"-7.10" + } + }, + { + "id":"38d621f5-ad1d-4b93-a7a0-24111bfb0355", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:13:33.569Z", + "completed":"2017-12-04T17:13:33.569Z", + "new_balance":"6594.79", + "value":"-11.96" + } + }, + { + "id":"015946e5-f857-48d2-995e-718ced5f34ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T01:01:11.661Z", + "completed":"2017-12-12T01:01:11.661Z", + "new_balance":"6591.49", + "value":"-3.30" + } + }, + { + "id":"c0c1cf9a-74f2-4250-979f-6190514f1150", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T01:44:58.268Z", + "completed":"2017-12-12T01:44:58.268Z", + "new_balance":"6590.24", + "value":"-1.25" + } + }, + { + "id":"23581d24-d4b6-4527-a6c0-d1f7b9b54294", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T17:03:44.615Z", + "completed":"2017-12-13T17:03:44.615Z", + "new_balance":"6589.48", + "value":"-0.76" + } + }, + { + "id":"91369792-b11e-47e8-b49a-e8dce97b5fae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T22:51:18.814Z", + "completed":"2017-12-13T22:51:18.814Z", + "new_balance":"6582.18", + "value":"-7.30" + } + }, + { + "id":"158c2c52-d1a3-4027-ad6a-962c807d877f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T06:21:17.432Z", + "completed":"2017-12-16T06:21:17.432Z", + "new_balance":"6578.14", + "value":"-4.04" + } + }, + { + "id":"479bcaab-4502-4bce-82a4-15e6f21714a1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T16:23:28.567Z", + "completed":"2017-12-18T16:23:28.567Z", + "new_balance":"6577.74", + "value":"-0.40" + } + }, + { + "id":"25cb7337-0aaa-4319-9508-5e9206c86cec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:34:33.885Z", + "completed":"2017-12-19T08:34:33.885Z", + "new_balance":"6570.44", + "value":"-7.30" + } + }, + { + "id":"c22a70ea-320d-4275-b2e1-1a4b642d5310", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T13:04:27.611Z", + "completed":"2017-12-19T13:04:27.611Z", + "new_balance":"6565.17", + "value":"-5.27" + } + }, + { + "id":"9444cf6f-fcac-40c0-999f-18bc4c3a9d90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T23:33:27.734Z", + "completed":"2017-12-20T23:33:27.734Z", + "new_balance":"6560.90", + "value":"-4.27" + } + }, + { + "id":"c8f83292-9b6d-49f3-a8a0-77c1a3201a0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T17:42:29.108Z", + "completed":"2017-12-21T17:42:29.108Z", + "new_balance":"6555.63", + "value":"-5.27" + } + }, + { + "id":"90999d01-3cc3-43d1-848d-2a7ec84d367c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T03:28:38.171Z", + "completed":"2017-12-24T03:28:38.171Z", + "new_balance":"6549.31", + "value":"-6.32" + } + }, + { + "id":"f418b97f-29be-451e-bdc3-88a2fc8fc5b4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T03:29:20.159Z", + "completed":"2017-12-24T03:29:20.159Z", + "new_balance":"6548.26", + "value":"-1.05" + } + }, + { + "id":"cdfb5c16-4506-4c5a-b1cc-9a361ea33d8c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T14:07:56.322Z", + "completed":"2017-12-24T14:07:56.322Z", + "new_balance":"6544.00", + "value":"-4.26" + } + }, + { + "id":"e185cf41-425e-45f5-8198-48a1ec425323", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T14:13:57.990Z", + "completed":"2017-12-24T14:13:57.990Z", + "new_balance":"6541.75", + "value":"-2.25" + } + }, + { + "id":"dc1f74ec-9fc5-44d2-9bd8-75567360bc85", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T17:41:56.785Z", + "completed":"2017-12-24T17:41:56.785Z", + "new_balance":"6540.98", + "value":"-0.77" + } + }, + { + "id":"a97bb0d4-6a73-49be-be63-82c375eeee07", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T20:24:00.506Z", + "completed":"2017-12-24T20:24:00.506Z", + "new_balance":"6540.44", + "value":"-0.54" + } + }, + { + "id":"33bec6e9-8d03-4967-bca3-b261627f17f9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T04:21:30.065Z", + "completed":"2017-12-28T04:21:30.065Z", + "new_balance":"6530.65", + "value":"-9.79" + } + }, + { + "id":"80a6fe45-b2fe-4331-8f71-b00a15713031", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T04:37:00.107Z", + "completed":"2017-12-28T04:37:00.107Z", + "new_balance":"6530.13", + "value":"-0.52" + } + }, + { + "id":"16e303b0-97c3-4a3c-84b8-13a4d0a1e95d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T07:38:33.244Z", + "completed":"2017-12-28T07:38:33.244Z", + "new_balance":"6529.61", + "value":"-0.52" + } + }, + { + "id":"68bc384e-aa2c-4dbd-9ea0-810ca71e547d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T16:06:15.374Z", + "completed":"2017-12-28T16:06:15.374Z", + "new_balance":"6524.79", + "value":"-4.82" + } + }, + { + "id":"da4fda81-0fff-4249-b246-36b57025f922", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T00:37:56.436Z", + "completed":"2017-12-29T00:37:56.436Z", + "new_balance":"6517.83", + "value":"-6.96" + } + }, + { + "id":"e8b8797f-c38a-4bda-81d4-308c55a0fa7b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T01:49:46.916Z", + "completed":"2017-12-29T01:49:46.916Z", + "new_balance":"6513.68", + "value":"-4.15" + } + }, + { + "id":"28482841-2c8f-4ad0-8acb-6c5220e3c725", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T02:28:30.473Z", + "completed":"2017-12-29T02:28:30.473Z", + "new_balance":"6508.52", + "value":"-5.16" + } + }, + { + "id":"286b45b9-7d72-4f0a-928e-83a2d733ff0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T03:39:52.241Z", + "completed":"2017-12-29T03:39:52.241Z", + "new_balance":"6507.76", + "value":"-0.76" + } + }, + { + "id":"1186f9e5-9541-4f6e-9500-ae9783ea655f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T05:15:18.620Z", + "completed":"2017-12-29T05:15:18.620Z", + "new_balance":"6503.47", + "value":"-4.29" + } + }, + { + "id":"cff6bdea-7363-4bf6-bd3a-78f9510f3a90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T13:01:07.316Z", + "completed":"2017-12-29T13:01:07.316Z", + "new_balance":"6497.15", + "value":"-6.32" + } + }, + { + "id":"92614ab1-9358-4126-96b0-8ef71f88db22", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T00:19:28.820Z", + "completed":"2017-12-30T00:19:28.820Z", + "new_balance":"6493.60", + "value":"-3.55" + } + }, + { + "id":"fdb52cdb-32b8-48eb-9b6b-2480db879527", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T02:58:31.276Z", + "completed":"2017-12-30T02:58:31.276Z", + "new_balance":"6492.69", + "value":"-0.91" + } + }, + { + "id":"7d60eba1-8f9e-44e2-a673-2b8a60d7e0bd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T05:45:46.189Z", + "completed":"2017-12-30T05:45:46.189Z", + "new_balance":"6492.10", + "value":"-0.59" + } + }, + { + "id":"454ac18e-8b75-4c10-a672-78857c56e307", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T11:08:24.103Z", + "completed":"2017-12-30T11:08:24.103Z", + "new_balance":"6487.49", + "value":"-4.61" + } + }, + { + "id":"a13b9d89-977d-4683-befe-5a86faeebff4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:30:52.221Z", + "completed":"2017-12-31T00:30:52.221Z", + "new_balance":"6459.99", + "value":"-27.50" + } + }, + { + "id":"2653716c-5350-46bf-a12e-e61518ee2bdb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T07:21:00.930Z", + "completed":"2017-12-31T07:21:00.930Z", + "new_balance":"6457.25", + "value":"-2.74" + } + }, + { + "id":"a6b3f9ab-0bb6-47fb-b3df-ac6312ccbb79", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T13:27:06.318Z", + "completed":"2017-12-31T13:27:06.318Z", + "new_balance":"6455.94", + "value":"-1.31" + } + }, + { + "id":"0671b6c5-22fb-4f96-b252-460a1ec1a239", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T17:06:16.276Z", + "completed":"2017-12-31T17:06:16.276Z", + "new_balance":"6452.88", + "value":"-3.06" + } + }, + { + "id":"a096ff44-bfee-446a-b001-bc02710e5e05", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T10:42:31.847Z", + "completed":"2016-03-02T10:42:31.847Z", + "new_balance":"15492.99", + "value":"-118.32" + } + }, + { + "id":"0ef773df-fa0b-47d9-9ac0-434565221b99", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:31:43.815Z", + "completed":"2016-03-02T14:31:43.815Z", + "new_balance":"15464.12", + "value":"-28.87" + } + }, + { + "id":"caf9b265-98fb-4bbf-a3ad-c62e281fc80e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T09:47:32.585Z", + "completed":"2016-03-03T09:47:32.585Z", + "new_balance":"15456.93", + "value":"-7.19" + } + }, + { + "id":"1b4007a2-bc17-47bf-be2d-f0d31951812f", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T12:10:50.416Z", + "completed":"2016-03-03T12:10:50.416Z", + "new_balance":"15007.22", + "value":"-449.71" + } + }, + { + "id":"3481c810-6fc0-4c65-8935-8351bef5d108", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T09:12:45.923Z", + "completed":"2016-03-04T09:12:45.923Z", + "new_balance":"15000.12", + "value":"-7.10" + } + }, + { + "id":"2fd1d635-13ca-45c7-b3e6-8916de1c952b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T12:46:25.588Z", + "completed":"2016-03-04T12:46:25.588Z", + "new_balance":"14967.91", + "value":"-32.21" + } + }, + { + "id":"5ee3d3b5-6bd8-4d5f-96ed-9db903d1620b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T18:50:03.414Z", + "completed":"2016-03-07T18:50:03.414Z", + "new_balance":"14962.76", + "value":"-5.15" + } + }, + { + "id":"da86e26b-aaed-4870-b824-ef2c85750f54", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T13:14:48.656Z", + "completed":"2016-03-09T13:14:48.656Z", + "new_balance":"14844.44", + "value":"-118.32" + } + }, + { + "id":"24648071-d983-488e-8edf-6edf4e693b91", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T12:00:14.914Z", + "completed":"2016-03-16T12:00:14.914Z", + "new_balance":"14759.52", + "value":"-84.92" + } + }, + { + "id":"52ca9b00-9bc3-437c-8bcf-ac6cb050cd44", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T12:24:49.474Z", + "completed":"2016-03-25T12:24:49.474Z", + "new_balance":"14674.60", + "value":"-84.92" + } + }, + { + "id":"d074cf5a-0afc-4aaf-92cd-8c0a7b1127c3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T20:48:34.577Z", + "completed":"2016-03-30T20:48:34.577Z", + "new_balance":"14397.12", + "value":"-277.48" + } + }, + { + "id":"4789d90f-9e7e-4071-ba39-0ad620d80c63", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T16:03:10.623Z", + "completed":"2016-06-07T16:03:10.623Z", + "new_balance":"14368.25", + "value":"-28.87" + } + }, + { + "id":"cbad2b53-22dc-4b24-85eb-c517bed9b921", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:08:56.895Z", + "completed":"2016-06-07T18:08:56.895Z", + "new_balance":"14249.93", + "value":"-118.32" + } + }, + { + "id":"f97d85e1-169b-409c-bfe5-40a47afde59c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:16:17.840Z", + "completed":"2016-06-07T18:16:17.840Z", + "new_balance":"13800.22", + "value":"-449.71" + } + }, + { + "id":"1536a0b3-f372-4e4c-ac78-5420fc3f0b80", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T04:13:22.410Z", + "completed":"2016-06-10T04:13:22.410Z", + "new_balance":"13793.12", + "value":"-7.10" + } + }, + { + "id":"a9d8e086-e278-472e-a4fb-439db6e42c6c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T20:01:29.405Z", + "completed":"2016-06-14T20:01:29.405Z", + "new_balance":"13760.91", + "value":"-32.21" + } + }, + { + "id":"1a271346-8afa-4276-a5df-620775c05aca", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T05:28:19.852Z", + "completed":"2016-06-19T05:28:19.852Z", + "new_balance":"13753.72", + "value":"-7.19" + } + }, + { + "id":"768b3b34-8d1e-47b9-b44f-92eefb0e2308", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T08:40:17.281Z", + "completed":"2016-06-19T08:40:17.281Z", + "new_balance":"13748.57", + "value":"-5.15" + } + }, + { + "id":"7ad81241-4e41-446f-8633-086c7db2d4b0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T00:18:41.783Z", + "completed":"2016-06-20T00:18:41.783Z", + "new_balance":"13630.25", + "value":"-118.32" + } + }, + { + "id":"489e5144-54a5-4973-bb2f-69f5319e48f0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T07:42:50.482Z", + "completed":"2016-06-28T07:42:50.482Z", + "new_balance":"13545.33", + "value":"-84.92" + } + }, + { + "id":"f4295d22-a77c-4455-bc7e-b99e6e6c7b0e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T01:22:53.618Z", + "completed":"2016-07-01T01:22:53.618Z", + "new_balance":"13267.85", + "value":"-277.48" + } + }, + { + "id":"6fedafee-f622-4db9-9f34-ad3ba2223d4b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T18:22:45.531Z", + "completed":"2016-07-01T18:22:45.531Z", + "new_balance":"13182.93", + "value":"-84.92" + } + }, + { + "id":"558d473b-1627-4c37-866e-95a277c14d49", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T07:57:47.362Z", + "completed":"2016-09-02T07:57:47.362Z", + "new_balance":"13154.06", + "value":"-28.87" + } + }, + { + "id":"0a5464f5-3a7a-4142-b167-215c8a120ae1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T17:35:33.414Z", + "completed":"2016-09-02T17:35:33.414Z", + "new_balance":"13035.74", + "value":"-118.32" + } + }, + { + "id":"d463e9e3-ae5b-498f-88f8-172a845b4c44", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T19:11:30.820Z", + "completed":"2016-09-03T19:11:30.820Z", + "new_balance":"13028.55", + "value":"-7.19" + } + }, + { + "id":"71cd7223-b084-4b13-994e-d174d813d886", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T19:20:18.783Z", + "completed":"2016-09-03T19:20:18.783Z", + "new_balance":"13024.37", + "value":"-4.18" + } + }, + { + "id":"10ef14bd-0ed9-4257-9488-cd62959733fc", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T22:55:43.934Z", + "completed":"2016-09-03T22:55:43.934Z", + "new_balance":"12574.66", + "value":"-449.71" + } + }, + { + "id":"413d0b50-aa3a-45ba-be32-4e3f5a205cd7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T17:29:11.119Z", + "completed":"2016-09-04T17:29:11.119Z", + "new_balance":"12542.45", + "value":"-32.21" + } + }, + { + "id":"d5ad306f-0090-4f66-bb69-ff2a96275399", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T05:54:36.949Z", + "completed":"2016-09-07T05:54:36.949Z", + "new_balance":"12537.30", + "value":"-5.15" + } + }, + { + "id":"9f520f65-c033-4be6-93ba-c92ccc73c5e7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T07:05:19.995Z", + "completed":"2016-09-09T07:05:19.995Z", + "new_balance":"12418.98", + "value":"-118.32" + } + }, + { + "id":"0954420a-ccce-407b-8b99-ef212637a48d", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T07:55:47.270Z", + "completed":"2016-09-16T07:55:47.270Z", + "new_balance":"12334.06", + "value":"-84.92" + } + }, + { + "id":"dde0f99f-1550-4e4f-a58f-134ecc13d136", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T09:56:56.596Z", + "completed":"2016-09-25T09:56:56.596Z", + "new_balance":"12249.14", + "value":"-84.92" + } + }, + { + "id":"27602cf2-e1a5-47bc-adf5-d4424523fac5", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T12:10:27.741Z", + "completed":"2016-09-30T12:10:27.741Z", + "new_balance":"11971.66", + "value":"-277.48" + } + }, + { + "id":"6dfd93a4-d570-4339-9bb8-0248c3fd75d6", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T10:32:51.778Z", + "completed":"2016-12-07T10:32:51.778Z", + "new_balance":"11521.95", + "value":"-449.71" + } + }, + { + "id":"e8ab3a71-2a9d-4854-87c4-f617fe8423d1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T13:12:08.564Z", + "completed":"2016-12-07T13:12:08.564Z", + "new_balance":"11403.63", + "value":"-118.32" + } + }, + { + "id":"4259c628-695b-416c-93c9-b87585839b0a", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T16:23:24.092Z", + "completed":"2016-12-07T16:23:24.092Z", + "new_balance":"11374.76", + "value":"-28.87" + } + }, + { + "id":"79f31f37-956f-4acf-968a-f646b7a43c75", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T11:20:01.549Z", + "completed":"2016-12-11T11:20:01.549Z", + "new_balance":"11367.57", + "value":"-7.19" + } + }, + { + "id":"b2f1e511-cbaa-4af8-8725-12dfcb927220", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T22:43:27.404Z", + "completed":"2016-12-11T22:43:27.404Z", + "new_balance":"11360.47", + "value":"-7.10" + } + }, + { + "id":"05c1d67b-b274-4f3f-acb3-ccb745d18cc3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T04:49:44.082Z", + "completed":"2016-12-14T04:49:44.082Z", + "new_balance":"11328.26", + "value":"-32.21" + } + }, + { + "id":"68809598-6dfd-4232-84e0-ba161aae3eb1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T01:37:57.998Z", + "completed":"2016-12-20T01:37:57.998Z", + "new_balance":"11323.11", + "value":"-5.15" + } + }, + { + "id":"6984a86e-1693-4532-a9d1-04c727a1c44a", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T08:00:57.190Z", + "completed":"2016-12-22T08:00:57.190Z", + "new_balance":"11204.79", + "value":"-118.32" + } + }, + { + "id":"bb52cdd3-5515-4d07-b523-24d78dd4f517", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T11:27:07.185Z", + "completed":"2016-12-28T11:27:07.185Z", + "new_balance":"11119.87", + "value":"-84.92" + } + }, + { + "id":"9e40e44e-bac7-4a96-be9c-c89e7eb3b6bd", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T07:48:09.906Z", + "completed":"2016-12-31T07:48:09.906Z", + "new_balance":"11034.95", + "value":"-84.92" + } + }, + { + "id":"928b697c-2290-4182-ac6e-fb3b04698895", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T13:04:06.958Z", + "completed":"2016-12-31T13:04:06.958Z", + "new_balance":"10757.47", + "value":"-277.48" + } + }, + { + "id":"a92462f9-e2a5-4c82-b26d-b8ab91c771eb", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T11:26:07.189Z", + "completed":"2017-03-02T11:26:07.189Z", + "new_balance":"10639.15", + "value":"-118.32" + } + }, + { + "id":"6e2f6203-b097-45cc-a7b4-62398947ef3e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T16:04:42.760Z", + "completed":"2017-03-02T16:04:42.760Z", + "new_balance":"10610.28", + "value":"-28.87" + } + }, + { + "id":"56856d9c-a2c1-4932-95be-65ac339aa296", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T02:50:10.563Z", + "completed":"2017-03-03T02:50:10.563Z", + "new_balance":"10160.57", + "value":"-449.71" + } + }, + { + "id":"9953f0fe-1fb9-45e3-baa6-b400326f73c0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T20:47:37.722Z", + "completed":"2017-03-03T20:47:37.722Z", + "new_balance":"10153.38", + "value":"-7.19" + } + }, + { + "id":"db966633-aec8-40ad-9068-01d9de98df40", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T12:48:52.392Z", + "completed":"2017-03-04T12:48:52.392Z", + "new_balance":"10121.17", + "value":"-32.21" + } + }, + { + "id":"96cf7d50-71c3-4761-8f70-5fdad51de571", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T15:15:38.391Z", + "completed":"2017-03-04T15:15:38.391Z", + "new_balance":"10114.07", + "value":"-7.10" + } + }, + { + "id":"063974b1-c11d-4ed1-bae6-d63dfe48245f", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T17:49:19.469Z", + "completed":"2017-03-07T17:49:19.469Z", + "new_balance":"10108.92", + "value":"-5.15" + } + }, + { + "id":"9e15e6f2-7b77-43de-9282-d339832e0b90", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T05:28:02.940Z", + "completed":"2017-03-09T05:28:02.940Z", + "new_balance":"9990.60", + "value":"-118.32" + } + }, + { + "id":"5fb3627d-f902-4444-b021-b788ec1a04d8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T18:42:48.649Z", + "completed":"2017-03-16T18:42:48.649Z", + "new_balance":"9905.68", + "value":"-84.92" + } + }, + { + "id":"5aecc601-a0b2-4f4c-add6-9ab253e82060", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T18:56:46.815Z", + "completed":"2017-03-25T18:56:46.815Z", + "new_balance":"9820.76", + "value":"-84.92" + } + }, + { + "id":"6699754f-3df4-4036-a723-dee04856d7a5", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T01:40:40.027Z", + "completed":"2017-03-30T01:40:40.027Z", + "new_balance":"9543.28", + "value":"-277.48" + } + }, + { + "id":"b8c9b55a-69e9-4e4a-b4dd-63643dfdf005", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T08:49:44.663Z", + "completed":"2017-06-07T08:49:44.663Z", + "new_balance":"9424.96", + "value":"-118.32" + } + }, + { + "id":"e2601952-7550-4593-88c1-3da998af68b2", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T10:39:27.043Z", + "completed":"2017-06-07T10:39:27.043Z", + "new_balance":"9396.09", + "value":"-28.87" + } + }, + { + "id":"1dbaba9f-8d20-4409-b7d1-2fe5ce52f2f4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T18:21:17.398Z", + "completed":"2017-06-07T18:21:17.398Z", + "new_balance":"8946.38", + "value":"-449.71" + } + }, + { + "id":"bb36177f-6f23-489d-aeb7-fdcf705f35e4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T21:47:22.794Z", + "completed":"2017-06-10T21:47:22.794Z", + "new_balance":"8939.28", + "value":"-7.10" + } + }, + { + "id":"ef328c3f-5da6-45b8-b10c-f04800250b2c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T18:03:46.041Z", + "completed":"2017-06-14T18:03:46.041Z", + "new_balance":"8907.07", + "value":"-32.21" + } + }, + { + "id":"6d82b3d5-196a-4464-a4f8-59855b30d348", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T08:27:39.050Z", + "completed":"2017-06-19T08:27:39.050Z", + "new_balance":"8899.88", + "value":"-7.19" + } + }, + { + "id":"92f80765-3f27-4892-b267-1bdb7bbc241d", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T15:04:20.536Z", + "completed":"2017-06-19T15:04:20.536Z", + "new_balance":"8894.73", + "value":"-5.15" + } + }, + { + "id":"32c4bf41-07ce-4cfb-8346-f66b3ac3a2a7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T19:10:29.568Z", + "completed":"2017-06-20T19:10:29.568Z", + "new_balance":"8776.41", + "value":"-118.32" + } + }, + { + "id":"c2c6ec47-7499-4786-971b-273e204806ef", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T17:50:04.645Z", + "completed":"2017-06-28T17:50:04.645Z", + "new_balance":"8691.49", + "value":"-84.92" + } + }, + { + "id":"84f6e572-c796-41e9-930b-bc1ad4a7336c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:05:05.157Z", + "completed":"2017-07-01T17:05:05.157Z", + "new_balance":"8606.57", + "value":"-84.92" + } + }, + { + "id":"63ea2f7f-97e1-4d82-a0ab-c4c4802a1ea3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T18:02:31.117Z", + "completed":"2017-07-01T18:02:31.117Z", + "new_balance":"8329.09", + "value":"-277.48" + } + }, + { + "id":"a9d2cdee-21d9-4e9f-b578-68d24d0b9073", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T03:50:38.556Z", + "completed":"2017-09-02T03:50:38.556Z", + "new_balance":"8300.22", + "value":"-28.87" + } + }, + { + "id":"f746ad35-4e87-4915-b04e-a01f068d678e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T06:01:03.138Z", + "completed":"2017-09-02T06:01:03.138Z", + "new_balance":"8181.90", + "value":"-118.32" + } + }, + { + "id":"3baf4cfd-bb87-432b-b03c-f3c3e1e13b6b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T01:30:52.382Z", + "completed":"2017-09-03T01:30:52.382Z", + "new_balance":"7732.19", + "value":"-449.71" + } + }, + { + "id":"b206490a-ee66-4a90-987f-f0faf4242ffa", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T07:28:17.691Z", + "completed":"2017-09-03T07:28:17.691Z", + "new_balance":"7728.01", + "value":"-4.18" + } + }, + { + "id":"86810ff2-0e1f-4fdc-aa0e-aa0780a8e325", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T16:25:30.568Z", + "completed":"2017-09-03T16:25:30.568Z", + "new_balance":"7720.82", + "value":"-7.19" + } + }, + { + "id":"0eec4bd0-8f79-4257-b83a-6b3fcf72bac6", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T17:39:37.435Z", + "completed":"2017-09-04T17:39:37.435Z", + "new_balance":"7688.61", + "value":"-32.21" + } + }, + { + "id":"16eec5a9-f390-427b-a00b-238ca410d939", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T09:52:51.176Z", + "completed":"2017-09-07T09:52:51.176Z", + "new_balance":"7683.46", + "value":"-5.15" + } + }, + { + "id":"6cab3483-3a21-47b4-9e4e-c7c7cf91f604", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T14:17:16.057Z", + "completed":"2017-09-09T14:17:16.057Z", + "new_balance":"7565.14", + "value":"-118.32" + } + }, + { + "id":"f55170e3-e422-4de0-81ee-d7d40723328b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T09:26:03.254Z", + "completed":"2017-09-16T09:26:03.254Z", + "new_balance":"7480.22", + "value":"-84.92" + } + }, + { + "id":"df5f6c2c-92b8-4fc2-93c8-f70592399cc7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T04:21:29.847Z", + "completed":"2017-09-25T04:21:29.847Z", + "new_balance":"7395.30", + "value":"-84.92" + } + }, + { + "id":"c37ffda0-109d-49f8-9ecc-49b024c11b3c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T02:16:21.534Z", + "completed":"2017-09-30T02:16:21.534Z", + "new_balance":"7117.82", + "value":"-277.48" + } + }, + { + "id":"bb56fa16-b53a-4afa-83db-79ae0bdebfbf", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T19:43:37.002Z", + "completed":"2017-12-07T19:43:37.002Z", + "new_balance":"6668.11", + "value":"-449.71" + } + }, + { + "id":"4f9c0a08-0d72-4cc2-92e0-fe9189bc77c4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T22:13:56.981Z", + "completed":"2017-12-07T22:13:56.981Z", + "new_balance":"6639.24", + "value":"-28.87" + } + }, + { + "id":"3c48a2c7-db16-4348-a24e-67e06fc72329", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T23:41:34.385Z", + "completed":"2017-12-07T23:41:34.385Z", + "new_balance":"6520.92", + "value":"-118.32" + } + }, + { + "id":"1150610d-4984-442b-8506-296b8faf42d7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T19:38:16.111Z", + "completed":"2017-12-11T19:38:16.111Z", + "new_balance":"6513.73", + "value":"-7.19" + } + }, + { + "id":"a4c2b86f-209b-4767-b5ed-ebce4b1c6cb8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T23:24:02.321Z", + "completed":"2017-12-11T23:24:02.321Z", + "new_balance":"6506.63", + "value":"-7.10" + } + }, + { + "id":"765c472a-ef53-47e2-aedd-9738beb6aca8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T11:00:33.516Z", + "completed":"2017-12-14T11:00:33.516Z", + "new_balance":"6474.42", + "value":"-32.21" + } + }, + { + "id":"0295afde-bb13-406b-9464-d83a89d274a0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T10:07:40.903Z", + "completed":"2017-12-20T10:07:40.903Z", + "new_balance":"6469.27", + "value":"-5.15" + } + }, + { + "id":"0d66adbe-b080-478b-88c9-01da9c1dbc5c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T15:41:04.585Z", + "completed":"2017-12-22T15:41:04.585Z", + "new_balance":"6350.95", + "value":"-118.32" + } + }, + { + "id":"71273505-f1de-4244-9988-69ac02d5fa3c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T17:23:06.953Z", + "completed":"2017-12-28T17:23:06.953Z", + "new_balance":"6266.03", + "value":"-84.92" + } + }, + { + "id":"73f954b3-30a1-4702-88bb-3ad12f881510", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T00:47:11.622Z", + "completed":"2017-12-31T00:47:11.622Z", + "new_balance":"5988.55", + "value":"-277.48" + } + }, + { + "id":"fb613c7e-f687-431e-b30a-374bfa3b17a4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T22:14:34.655Z", + "completed":"2017-12-31T22:14:34.655Z", + "new_balance":"5903.63", + "value":"-84.92" + } + }, + { + "id":"be80a5e7-9868-4d30-9697-fa318f319d0e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T17:53:31.301Z", + "completed":"2016-01-01T17:53:31.301Z", + "new_balance":"4118.45", + "value":"140.98" + } + }, + { + "id":"ec17fa5a-c2dc-46a4-a187-130fd30cced2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T22:56:33.710Z", + "completed":"2016-01-01T22:56:33.710Z", + "new_balance":"4301.15", + "value":"182.70" + } + }, + { + "id":"40f44175-288a-41bb-a293-db5fcd24d807", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T03:30:48.069Z", + "completed":"2016-01-02T03:30:48.069Z", + "new_balance":"4269.43", + "value":"-31.72" + } + }, + { + "id":"53870e62-6d9b-4f9d-9d66-d78da331e6ef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T06:05:20.047Z", + "completed":"2016-01-03T06:05:20.047Z", + "new_balance":"4264.61", + "value":"-4.82" + } + }, + { + "id":"980d44d0-ceb2-46d2-acbd-6ce0a4a4cb76", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T16:08:13.045Z", + "completed":"2016-01-03T16:08:13.045Z", + "new_balance":"4263.94", + "value":"-0.67" + } + }, + { + "id":"56ab6b13-b23e-4a04-b6e4-ee318921cd05", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T20:09:09.535Z", + "completed":"2016-01-03T20:09:09.535Z", + "new_balance":"4262.20", + "value":"-1.74" + } + }, + { + "id":"c443edf4-c060-4649-986b-735c15b72c8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T15:29:51.529Z", + "completed":"2016-01-04T15:29:51.529Z", + "new_balance":"4260.80", + "value":"-1.40" + } + }, + { + "id":"70a5afd9-bc67-4025-b603-a74d041163a9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T22:24:23.590Z", + "completed":"2016-01-05T22:24:23.590Z", + "new_balance":"4260.28", + "value":"-0.52" + } + }, + { + "id":"673b8592-23d7-48aa-88c1-26da848e6cf8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T03:34:23.469Z", + "completed":"2016-01-07T03:34:23.469Z", + "new_balance":"4257.69", + "value":"-2.59" + } + }, + { + "id":"c544f142-5347-40d7-9d2b-59d213118b5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T13:56:21.994Z", + "completed":"2016-01-07T13:56:21.994Z", + "new_balance":"4256.09", + "value":"-1.60" + } + }, + { + "id":"bee88f94-9629-4c5d-b51c-e2dc0b8f475e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T07:09:27.932Z", + "completed":"2016-01-08T07:09:27.932Z", + "new_balance":"4254.22", + "value":"-1.87" + } + }, + { + "id":"42dbc82c-16c9-4a5d-9f58-b9fa0db76707", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T14:11:22.733Z", + "completed":"2016-01-08T14:11:22.733Z", + "new_balance":"4252.54", + "value":"-1.68" + } + }, + { + "id":"b4c3b83c-0f29-4f66-8a00-a9bbcb44e14b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:45:10.530Z", + "completed":"2016-01-09T07:45:10.530Z", + "new_balance":"4250.23", + "value":"-2.31" + } + }, + { + "id":"9a89c8ff-fb90-4a09-bf6f-b2ce8fbfd57c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T22:17:17.862Z", + "completed":"2016-01-09T22:17:17.862Z", + "new_balance":"4244.10", + "value":"-6.13" + } + }, + { + "id":"d59e4b7a-ca96-44da-b61f-d20232455b03", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:14:37.292Z", + "completed":"2016-01-10T00:14:37.292Z", + "new_balance":"4236.40", + "value":"-7.70" + } + }, + { + "id":"d5c67da0-2d8c-40ed-8d7f-505f4c76a1a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T06:47:21.117Z", + "completed":"2016-01-10T06:47:21.117Z", + "new_balance":"4231.87", + "value":"-4.53" + } + }, + { + "id":"14bb55f4-8b92-4c0c-91ce-d78abbdfdcfb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T05:17:53.566Z", + "completed":"2016-01-11T05:17:53.566Z", + "new_balance":"4240.86", + "value":"8.99" + } + }, + { + "id":"2b94e10c-014c-4404-8dd8-ed501d7bf7c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T09:46:12.261Z", + "completed":"2016-01-11T09:46:12.261Z", + "new_balance":"4240.39", + "value":"-0.47" + } + }, + { + "id":"c739fb74-3fea-46a7-b6d5-3d7f1cc85a3f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T10:26:36.029Z", + "completed":"2016-01-11T10:26:36.029Z", + "new_balance":"4234.91", + "value":"-5.48" + } + }, + { + "id":"24c3ac7e-53ad-46b6-946e-867b4794d4ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:09:42.731Z", + "completed":"2016-01-12T04:09:42.731Z", + "new_balance":"4234.10", + "value":"-0.81" + } + }, + { + "id":"fbfac57d-20ff-4ead-b26d-57017a5c13ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T02:02:50.324Z", + "completed":"2016-01-15T02:02:50.324Z", + "new_balance":"4231.67", + "value":"-2.43" + } + }, + { + "id":"22a94dd1-0bc6-4495-b7d8-5e08f6428870", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T20:31:14.332Z", + "completed":"2016-01-16T20:31:14.332Z", + "new_balance":"4228.37", + "value":"-3.30" + } + }, + { + "id":"a10f7ba8-f171-4748-b98e-0661c937e4c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T22:31:50.318Z", + "completed":"2016-01-17T22:31:50.318Z", + "new_balance":"4226.80", + "value":"-1.57" + } + }, + { + "id":"6063b1a3-6c29-44d6-8bfa-4a7a25181725", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T07:01:41.755Z", + "completed":"2016-01-20T07:01:41.755Z", + "new_balance":"4226.28", + "value":"-0.52" + } + }, + { + "id":"9e2b5353-3a33-47d0-b682-c091b55caed4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T05:56:05.086Z", + "completed":"2016-01-21T05:56:05.086Z", + "new_balance":"4222.56", + "value":"-3.72" + } + }, + { + "id":"7f2899fd-c653-4a9d-8171-458f29ad522a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T15:16:28.684Z", + "completed":"2016-01-23T15:16:28.684Z", + "new_balance":"4200.20", + "value":"-22.36" + } + }, + { + "id":"b90e3c18-dfcd-4031-8e5d-37022d700e77", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:01:14.117Z", + "completed":"2016-02-01T02:01:14.117Z", + "new_balance":"4341.18", + "value":"140.98" + } + }, + { + "id":"a0a192bf-cccb-4bfc-944d-be7947c36352", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T19:04:06.118Z", + "completed":"2016-02-03T19:04:06.118Z", + "new_balance":"4309.46", + "value":"-31.72" + } + }, + { + "id":"6e58aa62-7c1b-43ca-93c8-2d4fd287d542", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T22:13:01.694Z", + "completed":"2016-02-03T22:13:01.694Z", + "new_balance":"4296.36", + "value":"-13.10" + } + }, + { + "id":"f668c9dc-061e-4a1b-af5b-0a325ca429fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T15:56:16.749Z", + "completed":"2016-02-04T15:56:16.749Z", + "new_balance":"4295.04", + "value":"-1.32" + } + }, + { + "id":"3e520267-2524-43f5-a80e-a68889bb64c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T14:20:20.497Z", + "completed":"2016-02-05T14:20:20.497Z", + "new_balance":"4294.37", + "value":"-0.67" + } + }, + { + "id":"21740375-7132-4bf0-8aa3-ad7d83f3e4ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T22:52:35.028Z", + "completed":"2016-02-06T22:52:35.028Z", + "new_balance":"4292.18", + "value":"-2.19" + } + }, + { + "id":"0ce90d1f-29d6-4ac3-9db1-6d2b89405889", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T04:17:12.267Z", + "completed":"2016-02-07T04:17:12.267Z", + "new_balance":"4287.61", + "value":"-4.57" + } + }, + { + "id":"2598f054-0ffe-43ad-8bdc-7163a1b19063", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T15:11:48.266Z", + "completed":"2016-02-07T15:11:48.266Z", + "new_balance":"4285.30", + "value":"-2.31" + } + }, + { + "id":"1ce6350b-b03b-46a6-976b-dea7dd1f217c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T16:42:52.501Z", + "completed":"2016-02-07T16:42:52.501Z", + "new_balance":"4277.60", + "value":"-7.70" + } + }, + { + "id":"a4d4557b-47cc-4f91-827d-601264bbdcd7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T08:22:44.229Z", + "completed":"2016-02-08T08:22:44.229Z", + "new_balance":"4273.46", + "value":"-4.14" + } + }, + { + "id":"da2dc289-a72a-41c6-8bf1-2a784d0cebca", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T18:56:06.432Z", + "completed":"2016-02-09T18:56:06.432Z", + "new_balance":"4271.06", + "value":"-2.40" + } + }, + { + "id":"2d4527a0-b5a9-453e-98dc-0fc2fa254e5d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T02:16:53.764Z", + "completed":"2016-02-10T02:16:53.764Z", + "new_balance":"4270.54", + "value":"-0.52" + } + }, + { + "id":"ed640df0-364e-451b-999b-b257eafeb5c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T06:03:05.640Z", + "completed":"2016-02-12T06:03:05.640Z", + "new_balance":"4267.66", + "value":"-2.88" + } + }, + { + "id":"fafbf3e0-632d-45c4-ab0f-b90fbe021290", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:47:18.693Z", + "completed":"2016-02-14T14:47:18.693Z", + "new_balance":"4265.35", + "value":"-2.31" + } + }, + { + "id":"10bb8a82-ebf2-4e3e-8e78-4dced17dfcae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T11:13:47.288Z", + "completed":"2016-02-16T11:13:47.288Z", + "new_balance":"4260.74", + "value":"-4.61" + } + }, + { + "id":"869c8fd4-5b97-4fec-9566-0f07017642ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T13:30:40.345Z", + "completed":"2016-02-16T13:30:40.345Z", + "new_balance":"4260.27", + "value":"-0.47" + } + }, + { + "id":"350aa440-16f4-4c59-9eba-8319c5bb3391", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T11:47:28.652Z", + "completed":"2016-02-18T11:47:28.652Z", + "new_balance":"4259.68", + "value":"-0.59" + } + }, + { + "id":"fe47ee9e-b246-4114-a430-74567bd4483d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T07:34:54.126Z", + "completed":"2016-02-21T07:34:54.126Z", + "new_balance":"4255.96", + "value":"-3.72" + } + }, + { + "id":"8c523c46-3c2f-446e-bfa9-31420b3bd167", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T19:10:54.607Z", + "completed":"2016-02-21T19:10:54.607Z", + "new_balance":"4267.36", + "value":"11.40" + } + }, + { + "id":"20d48455-30b5-4d23-8ee0-7e47495e214b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T21:24:54.473Z", + "completed":"2016-02-27T21:24:54.473Z", + "new_balance":"4245.00", + "value":"-22.36" + } + }, + { + "id":"b0b5944b-52b7-49e1-b734-8a4326070ce4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T18:39:17.599Z", + "completed":"2016-03-01T18:39:17.599Z", + "new_balance":"4385.98", + "value":"140.98" + } + }, + { + "id":"4a8eb5eb-6cea-4437-9a28-0bf58c7d64d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T01:43:46.812Z", + "completed":"2016-03-03T01:43:46.812Z", + "new_balance":"4354.26", + "value":"-31.72" + } + }, + { + "id":"54d43d5c-d384-430f-be6b-6dbacc097cc9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T07:26:02.055Z", + "completed":"2016-03-04T07:26:02.055Z", + "new_balance":"4349.65", + "value":"-4.61" + } + }, + { + "id":"3490a3ac-bf66-49ad-927d-1fa5d0e88036", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T07:46:41.072Z", + "completed":"2016-03-04T07:46:41.072Z", + "new_balance":"4346.35", + "value":"-3.30" + } + }, + { + "id":"48fad873-3394-4311-9aab-27940d668185", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T15:46:32.999Z", + "completed":"2016-03-04T15:46:32.999Z", + "new_balance":"4342.89", + "value":"-3.46" + } + }, + { + "id":"e5e9585d-a5ee-456d-ba2c-91c2b178633e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T16:17:30.898Z", + "completed":"2016-03-04T16:17:30.898Z", + "new_balance":"4340.84", + "value":"-2.05" + } + }, + { + "id":"2e329fbc-55e2-4089-8a02-1fba554b5945", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T01:58:21.130Z", + "completed":"2016-03-05T01:58:21.130Z", + "new_balance":"4340.37", + "value":"-0.47" + } + }, + { + "id":"2ba6b635-f651-456a-b103-643e5cdba490", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T02:43:44.064Z", + "completed":"2016-03-05T02:43:44.064Z", + "new_balance":"4339.07", + "value":"-1.30" + } + }, + { + "id":"95f0bdee-8731-49a5-9328-1bc1f8a3e817", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T13:48:13.388Z", + "completed":"2016-03-05T13:48:13.388Z", + "new_balance":"4331.37", + "value":"-7.70" + } + }, + { + "id":"14672a94-21f6-43df-b9a4-4a67671cbce5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T17:42:09.230Z", + "completed":"2016-03-05T17:42:09.230Z", + "new_balance":"4324.62", + "value":"-6.75" + } + }, + { + "id":"14b995b3-ebb8-4480-87e9-48fe82f5adbb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T13:03:54.723Z", + "completed":"2016-03-06T13:03:54.723Z", + "new_balance":"4317.98", + "value":"-6.64" + } + }, + { + "id":"c8ad5d5a-af3b-4e9e-97e4-d08228f0ba3c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T15:16:52.306Z", + "completed":"2016-03-06T15:16:52.306Z", + "new_balance":"4310.24", + "value":"-7.74" + } + }, + { + "id":"e18f6384-1553-464f-bbeb-fd880d137b02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T05:36:45.640Z", + "completed":"2016-03-07T05:36:45.640Z", + "new_balance":"4309.77", + "value":"-0.47" + } + }, + { + "id":"70f5b331-9952-4a63-b413-76a3484ee257", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T21:36:31.341Z", + "completed":"2016-03-07T21:36:31.341Z", + "new_balance":"4308.97", + "value":"-0.80" + } + }, + { + "id":"a16302ef-700c-4fec-895c-9868c0c7d98d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T03:08:56.772Z", + "completed":"2016-03-08T03:08:56.772Z", + "new_balance":"4308.17", + "value":"-0.80" + } + }, + { + "id":"7e1786d8-fd97-46ec-8e83-5e7d8f8e9de1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T19:54:29.971Z", + "completed":"2016-03-08T19:54:29.971Z", + "new_balance":"4307.40", + "value":"-0.77" + } + }, + { + "id":"fc32c44f-8fba-41a6-906e-b3d57ad3d5c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T18:19:19.676Z", + "completed":"2016-03-10T18:19:19.676Z", + "new_balance":"4304.69", + "value":"-2.71" + } + }, + { + "id":"a0a68a2d-0130-4a70-ae08-06e6ddb5d3cb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T09:19:35.096Z", + "completed":"2016-03-11T09:19:35.096Z", + "new_balance":"4303.09", + "value":"-1.60" + } + }, + { + "id":"3de0d818-9655-4cfe-b832-9e7343eaa42c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T13:46:10.211Z", + "completed":"2016-03-11T13:46:10.211Z", + "new_balance":"4300.37", + "value":"-2.72" + } + }, + { + "id":"b88ec9f0-ed11-4825-8bbd-471eeb134919", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T21:24:52.977Z", + "completed":"2016-03-11T21:24:52.977Z", + "new_balance":"4299.90", + "value":"-0.47" + } + }, + { + "id":"e059f249-babc-4b26-b5c6-103209b09268", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T03:37:56.616Z", + "completed":"2016-03-12T03:37:56.616Z", + "new_balance":"4293.74", + "value":"-6.16" + } + }, + { + "id":"034a70ec-891a-4397-ac4c-2d097e1dc9e9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T14:09:14.957Z", + "completed":"2016-03-12T14:09:14.957Z", + "new_balance":"4293.27", + "value":"-0.47" + } + }, + { + "id":"99fdd46a-985a-4498-9d65-2c78bdfaaa64", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T14:56:23.819Z", + "completed":"2016-03-12T14:56:23.819Z", + "new_balance":"4283.12", + "value":"-10.15" + } + }, + { + "id":"de84a75e-be1e-447b-8f11-db334e6ec640", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:24:26.843Z", + "completed":"2016-03-12T16:24:26.843Z", + "new_balance":"4280.53", + "value":"-2.59" + } + }, + { + "id":"b85c4718-0ba3-47a5-a9c3-4f7bff97c6f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T12:13:07.460Z", + "completed":"2016-03-13T12:13:07.460Z", + "new_balance":"4277.95", + "value":"-2.58" + } + }, + { + "id":"5e6708c4-f0d2-4cf0-9517-e3452ec118bc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T15:29:27.050Z", + "completed":"2016-03-13T15:29:27.050Z", + "new_balance":"4277.48", + "value":"-0.47" + } + }, + { + "id":"be469003-a1e9-485e-bf08-f079863d06bd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T04:53:25.891Z", + "completed":"2016-03-15T04:53:25.891Z", + "new_balance":"4272.56", + "value":"-4.92" + } + }, + { + "id":"2f04644e-fdef-43df-b3ce-06439866f0f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T06:42:44.586Z", + "completed":"2016-03-15T06:42:44.586Z", + "new_balance":"4268.44", + "value":"-4.12" + } + }, + { + "id":"99e270a9-379e-4769-afb8-a3b56751d307", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T14:23:53.870Z", + "completed":"2016-03-17T14:23:53.870Z", + "new_balance":"4264.05", + "value":"-4.39" + } + }, + { + "id":"e225bf70-c983-4fe6-a0ad-def73f7ed2ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T05:45:04.657Z", + "completed":"2016-03-18T05:45:04.657Z", + "new_balance":"4254.44", + "value":"-9.61" + } + }, + { + "id":"a54b4d47-cae0-454b-9e88-6b0853742107", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T04:49:47.376Z", + "completed":"2016-03-20T04:49:47.376Z", + "new_balance":"4242.08", + "value":"-12.36" + } + }, + { + "id":"1a8bf80c-69a6-418b-b662-6d444754aca2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:27:40.022Z", + "completed":"2016-03-22T06:27:40.022Z", + "new_balance":"4238.61", + "value":"-3.47" + } + }, + { + "id":"64a0ab82-c9fe-412a-84cb-f979ea20a3f3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T05:31:49.784Z", + "completed":"2016-03-25T05:31:49.784Z", + "new_balance":"4238.14", + "value":"-0.47" + } + }, + { + "id":"45f90d1c-7f85-424e-a6af-98a9ccee4d97", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T16:27:59.768Z", + "completed":"2016-03-25T16:27:59.768Z", + "new_balance":"4236.99", + "value":"-1.15" + } + }, + { + "id":"9c19d334-a7c6-4e97-8e37-e80c0f7a2c86", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T15:33:31.467Z", + "completed":"2016-03-26T15:33:31.467Z", + "new_balance":"4234.60", + "value":"-2.39" + } + }, + { + "id":"773c8bbd-2b1c-4140-8b04-790b4bb94c25", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T19:48:19.531Z", + "completed":"2016-03-26T19:48:19.531Z", + "new_balance":"4233.25", + "value":"-1.35" + } + }, + { + "id":"e9c9c692-31a2-4335-8fae-db40e686c495", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:14:03.023Z", + "completed":"2016-03-27T22:14:03.023Z", + "new_balance":"4232.05", + "value":"-1.20" + } + }, + { + "id":"49c2915b-35e5-4c67-a28b-f9aeb6cd53f9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T11:34:40.306Z", + "completed":"2016-03-28T11:34:40.306Z", + "new_balance":"4228.33", + "value":"-3.72" + } + }, + { + "id":"0a8afe7a-058d-4398-9145-c7613d6334cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T11:20:04.158Z", + "completed":"2016-03-31T11:20:04.158Z", + "new_balance":"4205.97", + "value":"-22.36" + } + }, + { + "id":"688765c8-9cb3-4f0d-963d-baf786f12e7b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T01:37:42.015Z", + "completed":"2016-04-01T01:37:42.015Z", + "new_balance":"4346.95", + "value":"140.98" + } + }, + { + "id":"4e9dae3d-2408-4478-be2a-b91dbaa67899", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T06:54:59.362Z", + "completed":"2016-04-01T06:54:59.362Z", + "new_balance":"4315.23", + "value":"-31.72" + } + }, + { + "id":"e1520a33-c5ae-4079-b3b5-25338e9f9196", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T21:37:36.987Z", + "completed":"2016-04-01T21:37:36.987Z", + "new_balance":"4497.93", + "value":"182.70" + } + }, + { + "id":"4212d544-7125-4d26-9765-aac59359db7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T01:47:11.899Z", + "completed":"2016-04-03T01:47:11.899Z", + "new_balance":"4497.26", + "value":"-0.67" + } + }, + { + "id":"8eae3507-ab3b-47ab-a262-8d78991726b0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T14:14:10.937Z", + "completed":"2016-04-03T14:14:10.937Z", + "new_balance":"4495.52", + "value":"-1.74" + } + }, + { + "id":"a94bd2d6-0755-4d9f-9e08-7395d1422cc7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T14:21:56.698Z", + "completed":"2016-04-03T14:21:56.698Z", + "new_balance":"4490.70", + "value":"-4.82" + } + }, + { + "id":"125465f0-1e6f-424f-b8fa-09316cb61dd1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T19:09:41.537Z", + "completed":"2016-04-05T19:09:41.537Z", + "new_balance":"4490.18", + "value":"-0.52" + } + }, + { + "id":"36b90da8-f277-4247-80d2-0a1f6ad8ba2a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T20:41:57.297Z", + "completed":"2016-04-05T20:41:57.297Z", + "new_balance":"4488.78", + "value":"-1.40" + } + }, + { + "id":"0b17d6b2-01b1-460d-a782-f3c5f969c221", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T04:37:02.532Z", + "completed":"2016-04-06T04:37:02.532Z", + "new_balance":"4487.18", + "value":"-1.60" + } + }, + { + "id":"8d0a23d7-2cf6-4d9d-af9c-e909fe4b7a8b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T10:22:16.359Z", + "completed":"2016-04-09T10:22:16.359Z", + "new_balance":"4484.59", + "value":"-2.59" + } + }, + { + "id":"1b461e34-3f30-4606-bd6f-093cc05339b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T18:15:41.837Z", + "completed":"2016-04-10T18:15:41.837Z", + "new_balance":"4482.91", + "value":"-1.68" + } + }, + { + "id":"f660c43e-decb-440a-8d8b-6a80a170f6fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T19:25:52.503Z", + "completed":"2016-04-11T19:25:52.503Z", + "new_balance":"4480.60", + "value":"-2.31" + } + }, + { + "id":"05d3a25b-a254-4e35-b4ad-dcd5c235f136", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T22:20:10.995Z", + "completed":"2016-04-11T22:20:10.995Z", + "new_balance":"4478.73", + "value":"-1.87" + } + }, + { + "id":"ac726dc6-a48d-4094-aa05-753ccfd0bf5c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T16:01:59.139Z", + "completed":"2016-04-13T16:01:59.139Z", + "new_balance":"4472.60", + "value":"-6.13" + } + }, + { + "id":"abb3bf3f-f732-4c45-9dd9-18931e441e26", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T23:26:39.088Z", + "completed":"2016-04-13T23:26:39.088Z", + "new_balance":"4464.90", + "value":"-7.70" + } + }, + { + "id":"4dc8bb03-ee4b-45ba-b45d-6c97f8bf4f93", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T20:36:17.750Z", + "completed":"2016-04-15T20:36:17.750Z", + "new_balance":"4460.37", + "value":"-4.53" + } + }, + { + "id":"990bcaf8-b855-40fa-b5fd-78bb692ff678", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T00:22:01.390Z", + "completed":"2016-04-16T00:22:01.390Z", + "new_balance":"4459.56", + "value":"-0.81" + } + }, + { + "id":"781d0008-182e-45d5-bb96-46bbcb89f1ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T12:48:55.688Z", + "completed":"2016-04-16T12:48:55.688Z", + "new_balance":"4459.09", + "value":"-0.47" + } + }, + { + "id":"731ef7ff-c742-4103-a34e-0a5c8107cd0d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T23:51:50.185Z", + "completed":"2016-04-18T23:51:50.185Z", + "new_balance":"4453.61", + "value":"-5.48" + } + }, + { + "id":"7b555dee-59a5-4e42-8ed9-e6697dc9ec4b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T18:24:18.669Z", + "completed":"2016-04-23T18:24:18.669Z", + "new_balance":"4451.18", + "value":"-2.43" + } + }, + { + "id":"1f8518a5-093b-4ffd-bb5d-fa94fafca7d3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T13:55:35.577Z", + "completed":"2016-04-24T13:55:35.577Z", + "new_balance":"4449.61", + "value":"-1.57" + } + }, + { + "id":"240f679f-de80-49af-a6fb-761468e1025e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T20:46:35.575Z", + "completed":"2016-04-24T20:46:35.575Z", + "new_balance":"4446.31", + "value":"-3.30" + } + }, + { + "id":"fbb06ef1-b115-483b-a163-660e964b99aa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T23:31:26.644Z", + "completed":"2016-04-26T23:31:26.644Z", + "new_balance":"4445.79", + "value":"-0.52" + } + }, + { + "id":"c4cf8aeb-1dde-42c3-89fd-272a2a61864b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T01:42:20.719Z", + "completed":"2016-04-28T01:42:20.719Z", + "new_balance":"4442.07", + "value":"-3.72" + } + }, + { + "id":"110f1b1a-5921-43ca-af53-6e27b10b7b23", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T17:55:52.293Z", + "completed":"2016-04-28T17:55:52.293Z", + "new_balance":"4419.71", + "value":"-22.36" + } + }, + { + "id":"1271273f-4ae3-4799-88b3-1384009f4b81", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T11:23:23.678Z", + "completed":"2016-05-02T11:23:23.678Z", + "new_balance":"4418.39", + "value":"-1.32" + } + }, + { + "id":"72ca61c4-aff9-4478-ba1b-82458296e8e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T16:29:10.247Z", + "completed":"2016-05-02T16:29:10.247Z", + "new_balance":"4386.67", + "value":"-31.72" + } + }, + { + "id":"0e0fc165-5960-4bb4-bae0-5baf83334c90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T17:01:15.642Z", + "completed":"2016-05-02T17:01:15.642Z", + "new_balance":"4373.57", + "value":"-13.10" + } + }, + { + "id":"f3dba25f-0876-4c58-9e38-9345a9513074", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T23:21:08.054Z", + "completed":"2016-05-02T23:21:08.054Z", + "new_balance":"4372.90", + "value":"-0.67" + } + }, + { + "id":"a1a1771f-1bfe-4611-9597-d5cccf2a559a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T09:03:00.387Z", + "completed":"2016-05-06T09:03:00.387Z", + "new_balance":"4370.59", + "value":"-2.31" + } + }, + { + "id":"fa1cc692-f20a-402c-b022-6730a2316b8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T17:59:00.598Z", + "completed":"2016-05-06T17:59:00.598Z", + "new_balance":"4368.40", + "value":"-2.19" + } + }, + { + "id":"6c5a6c7c-a10e-4e52-b1d9-6cfc055d501f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T00:20:39.887Z", + "completed":"2016-05-07T00:20:39.887Z", + "new_balance":"4360.70", + "value":"-7.70" + } + }, + { + "id":"99f0dcfd-b25e-4839-950f-7eafd8a6c9a2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:13:01.073Z", + "completed":"2016-05-07T14:13:01.073Z", + "new_balance":"4356.13", + "value":"-4.57" + } + }, + { + "id":"5eb3c959-8296-437b-abd8-7bd301ae091a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T01:10:17.626Z", + "completed":"2016-05-09T01:10:17.626Z", + "new_balance":"4497.11", + "value":"140.98" + } + }, + { + "id":"64c8e879-96c8-41a1-9cba-7886008f03ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T16:43:24.179Z", + "completed":"2016-05-14T16:43:24.179Z", + "new_balance":"4492.97", + "value":"-4.14" + } + }, + { + "id":"d807c065-c808-43e8-a79f-c8735f79c538", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T18:29:40.831Z", + "completed":"2016-05-14T18:29:40.831Z", + "new_balance":"4490.57", + "value":"-2.40" + } + }, + { + "id":"88f17cbb-7a5a-4b32-abc1-c261728cf46d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T19:07:40.586Z", + "completed":"2016-05-16T19:07:40.586Z", + "new_balance":"4490.05", + "value":"-0.52" + } + }, + { + "id":"61344078-5456-42a1-8929-05495d0c0b1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T06:12:14.434Z", + "completed":"2016-05-21T06:12:14.434Z", + "new_balance":"4487.17", + "value":"-2.88" + } + }, + { + "id":"1fe380e4-f5fa-4ccf-a198-daa33537556a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T01:42:07.677Z", + "completed":"2016-05-23T01:42:07.677Z", + "new_balance":"4486.70", + "value":"-0.47" + } + }, + { + "id":"1d42e03f-7cad-4180-954d-d4d07b201826", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T07:19:24.555Z", + "completed":"2016-05-23T07:19:24.555Z", + "new_balance":"4484.39", + "value":"-2.31" + } + }, + { + "id":"00b26ef0-07f0-4091-99d8-97186adf2f7a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T12:47:02.585Z", + "completed":"2016-05-24T12:47:02.585Z", + "new_balance":"4479.78", + "value":"-4.61" + } + }, + { + "id":"fbea9e7d-feac-41c8-beb1-df864d003e63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T09:30:53.118Z", + "completed":"2016-05-27T09:30:53.118Z", + "new_balance":"4479.19", + "value":"-0.59" + } + }, + { + "id":"421954fd-ca49-4aa6-8ca6-3382e79c2dd8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T06:55:44.586Z", + "completed":"2016-05-30T06:55:44.586Z", + "new_balance":"4456.83", + "value":"-22.36" + } + }, + { + "id":"2575bddb-da14-4d1a-977a-f318d3f494d3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T08:49:28.645Z", + "completed":"2016-05-30T08:49:28.645Z", + "new_balance":"4453.11", + "value":"-3.72" + } + }, + { + "id":"34929484-be67-4527-9611-ed62bfbcf339", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T02:43:07.060Z", + "completed":"2016-06-01T02:43:07.060Z", + "new_balance":"4421.39", + "value":"-31.72" + } + }, + { + "id":"3e2dfd24-7d1c-4422-b849-d1a78e8a76cb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T16:31:56.816Z", + "completed":"2016-06-01T16:31:56.816Z", + "new_balance":"4562.37", + "value":"140.98" + } + }, + { + "id":"4470bf34-fc40-4db4-b5bd-d218a28f2e37", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:31:16.273Z", + "completed":"2016-06-04T01:31:16.273Z", + "new_balance":"4558.91", + "value":"-3.46" + } + }, + { + "id":"de12daed-a44d-4fa6-b065-54290a66cdea", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T09:45:21.509Z", + "completed":"2016-06-04T09:45:21.509Z", + "new_balance":"4556.86", + "value":"-2.05" + } + }, + { + "id":"4b6dd24e-4534-491f-b15e-1469d63bb694", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T06:08:18.659Z", + "completed":"2016-06-11T06:08:18.659Z", + "new_balance":"4552.25", + "value":"-4.61" + } + }, + { + "id":"ea806a4f-1974-487b-857a-4ec652b980ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T23:27:02.097Z", + "completed":"2016-06-11T23:27:02.097Z", + "new_balance":"4548.95", + "value":"-3.30" + } + }, + { + "id":"8d5b8daa-bd62-478d-a558-e635edab8ac3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T10:37:20.825Z", + "completed":"2016-06-12T10:37:20.825Z", + "new_balance":"4547.65", + "value":"-1.30" + } + }, + { + "id":"db26c4a5-1a7c-4f27-8343-2366a88c7477", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T22:41:21.048Z", + "completed":"2016-06-12T22:41:21.048Z", + "new_balance":"4539.95", + "value":"-7.70" + } + }, + { + "id":"4afea8ee-c302-42ff-a0cb-a54f7a8667dd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T22:50:14.194Z", + "completed":"2016-06-12T22:50:14.194Z", + "new_balance":"4539.48", + "value":"-0.47" + } + }, + { + "id":"1dfe96e9-65f8-439f-9aa7-3ed79ee40901", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T05:32:31.409Z", + "completed":"2016-06-13T05:32:31.409Z", + "new_balance":"4531.74", + "value":"-7.74" + } + }, + { + "id":"ef8412f3-7004-434e-bb80-a80e11a4f8b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T13:42:23.316Z", + "completed":"2016-06-13T13:42:23.316Z", + "new_balance":"4525.10", + "value":"-6.64" + } + }, + { + "id":"a99b9289-c696-4f2f-a691-266fdd561fea", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:26:23.850Z", + "completed":"2016-06-13T21:26:23.850Z", + "new_balance":"4518.35", + "value":"-6.75" + } + }, + { + "id":"d6628ef9-575b-4112-af88-84ae3df5c2e3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T01:21:10.602Z", + "completed":"2016-06-14T01:21:10.602Z", + "new_balance":"4517.55", + "value":"-0.80" + } + }, + { + "id":"fbae7900-0ca4-473b-8880-953862cdc9b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T07:34:08.909Z", + "completed":"2016-06-14T07:34:08.909Z", + "new_balance":"4517.08", + "value":"-0.47" + } + }, + { + "id":"ab4485e2-7c8e-4328-926c-e52c83c3742c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T21:47:53.191Z", + "completed":"2016-06-14T21:47:53.191Z", + "new_balance":"4516.28", + "value":"-0.80" + } + }, + { + "id":"ab6f7e8f-03a4-4def-9e6a-b692efb040ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T00:35:16.691Z", + "completed":"2016-06-15T00:35:16.691Z", + "new_balance":"4515.81", + "value":"-0.47" + } + }, + { + "id":"1c92cff7-a8c8-439e-a274-e57fb29568f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:32:38.791Z", + "completed":"2016-06-15T05:32:38.791Z", + "new_balance":"4515.04", + "value":"-0.77" + } + }, + { + "id":"0b8452c0-6e24-47b0-bff2-5f82dff517c9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T14:10:30.224Z", + "completed":"2016-06-15T14:10:30.224Z", + "new_balance":"4512.33", + "value":"-2.71" + } + }, + { + "id":"a9cdb571-2a9c-4d54-bc88-5c30629b4675", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T15:17:38.518Z", + "completed":"2016-06-16T15:17:38.518Z", + "new_balance":"4509.61", + "value":"-2.72" + } + }, + { + "id":"17e435a0-33c6-4bec-93df-1b4ad9b3b0a4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T08:07:50.705Z", + "completed":"2016-06-17T08:07:50.705Z", + "new_balance":"4508.01", + "value":"-1.60" + } + }, + { + "id":"b6eeaac5-8cce-4658-9df1-ca602628368b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:11:51.155Z", + "completed":"2016-06-18T02:11:51.155Z", + "new_balance":"4507.54", + "value":"-0.47" + } + }, + { + "id":"7b37cfb9-9321-4c85-b274-6c5f807f2137", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T02:44:47.858Z", + "completed":"2016-06-18T02:44:47.858Z", + "new_balance":"4501.38", + "value":"-6.16" + } + }, + { + "id":"69ed925f-a691-4a98-b443-bc8e0ef8e011", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T09:48:16.563Z", + "completed":"2016-06-18T09:48:16.563Z", + "new_balance":"4500.91", + "value":"-0.47" + } + }, + { + "id":"a9d15ff4-b863-4128-bc12-87d2dc90bf24", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T18:41:06.812Z", + "completed":"2016-06-18T18:41:06.812Z", + "new_balance":"4498.32", + "value":"-2.59" + } + }, + { + "id":"e5d6cc04-42dc-489f-9be8-c27ec7c75177", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T19:02:17.548Z", + "completed":"2016-06-18T19:02:17.548Z", + "new_balance":"4495.74", + "value":"-2.58" + } + }, + { + "id":"f4cd6745-6928-4822-8753-64d9ede5a1da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T22:42:13.307Z", + "completed":"2016-06-18T22:42:13.307Z", + "new_balance":"4485.59", + "value":"-10.15" + } + }, + { + "id":"5fda56f6-7dc4-434c-88ff-4fc7f4bd756c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T09:44:10.554Z", + "completed":"2016-06-19T09:44:10.554Z", + "new_balance":"4481.20", + "value":"-4.39" + } + }, + { + "id":"b5a6004f-b112-4695-80b5-8cbff26720fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:16:59.098Z", + "completed":"2016-06-19T17:16:59.098Z", + "new_balance":"4476.28", + "value":"-4.92" + } + }, + { + "id":"d1b82a3a-38bc-49c2-85a4-6e9f21117809", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T19:06:13.235Z", + "completed":"2016-06-19T19:06:13.235Z", + "new_balance":"4472.16", + "value":"-4.12" + } + }, + { + "id":"e5e39e1c-7744-4380-a973-8dccb2074f55", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T14:21:00.010Z", + "completed":"2016-06-21T14:21:00.010Z", + "new_balance":"4462.55", + "value":"-9.61" + } + }, + { + "id":"fe7439b5-1512-4544-a47b-d8cf1c9cf0cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T22:44:43.402Z", + "completed":"2016-06-21T22:44:43.402Z", + "new_balance":"4450.19", + "value":"-12.36" + } + }, + { + "id":"92cb7d70-0801-44f2-a11d-9d3ac1383067", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T19:34:04.888Z", + "completed":"2016-06-22T19:34:04.888Z", + "new_balance":"4446.72", + "value":"-3.47" + } + }, + { + "id":"a1e06f01-7405-4784-a86f-7bf9fd807b2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T22:14:55.703Z", + "completed":"2016-06-22T22:14:55.703Z", + "new_balance":"4445.57", + "value":"-1.15" + } + }, + { + "id":"56e161d5-f762-43d5-aa09-535399f575ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T22:41:05.991Z", + "completed":"2016-06-22T22:41:05.991Z", + "new_balance":"4445.10", + "value":"-0.47" + } + }, + { + "id":"19531021-21ab-4a12-9519-4ca3e5c40c9b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T07:05:49.144Z", + "completed":"2016-06-23T07:05:49.144Z", + "new_balance":"4443.75", + "value":"-1.35" + } + }, + { + "id":"3c36eadb-5d9e-4dd7-9aad-a615081f9f4a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T01:31:28.804Z", + "completed":"2016-06-24T01:31:28.804Z", + "new_balance":"4441.36", + "value":"-2.39" + } + }, + { + "id":"08da4d4e-c662-4fde-8610-aef0394727c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T04:20:25.803Z", + "completed":"2016-06-26T04:20:25.803Z", + "new_balance":"4440.16", + "value":"-1.20" + } + }, + { + "id":"85387950-3f80-4997-8124-8564873f41ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T06:05:35.316Z", + "completed":"2016-06-30T06:05:35.316Z", + "new_balance":"4436.44", + "value":"-3.72" + } + }, + { + "id":"4e734377-c119-43a9-8e22-a0ea0d189f7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T23:49:53.500Z", + "completed":"2016-06-30T23:49:53.500Z", + "new_balance":"4414.08", + "value":"-22.36" + } + }, + { + "id":"6275dbec-0d38-4f78-9b68-a0a7047b9f3e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T00:36:26.394Z", + "completed":"2016-07-01T00:36:26.394Z", + "new_balance":"4555.06", + "value":"140.98" + } + }, + { + "id":"508916cb-6caa-4945-a96d-155ecf875120", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T01:08:59.123Z", + "completed":"2016-07-01T01:08:59.123Z", + "new_balance":"4737.76", + "value":"182.70" + } + }, + { + "id":"ee3ccf88-f974-4139-aed5-3abc83aa4b62", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T16:23:23.818Z", + "completed":"2016-07-03T16:23:23.818Z", + "new_balance":"4706.04", + "value":"-31.72" + } + }, + { + "id":"2612f46b-148c-404c-bbc6-197a49bb35af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T15:20:00.396Z", + "completed":"2016-07-04T15:20:00.396Z", + "new_balance":"4701.22", + "value":"-4.82" + } + }, + { + "id":"084df0df-4b10-4d58-bc46-cf3095d8e57f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T18:14:40.732Z", + "completed":"2016-07-04T18:14:40.732Z", + "new_balance":"4699.48", + "value":"-1.74" + } + }, + { + "id":"b09a0dde-f21f-48d3-8e63-0138594c1cfe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T20:18:00.047Z", + "completed":"2016-07-04T20:18:00.047Z", + "new_balance":"4698.81", + "value":"-0.67" + } + }, + { + "id":"af12c63a-345c-4177-95cc-f1e6283e54f8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T06:21:07.558Z", + "completed":"2016-07-05T06:21:07.558Z", + "new_balance":"4697.41", + "value":"-1.40" + } + }, + { + "id":"b1936e8b-4a61-4b95-b271-7f252202db0e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T19:14:57.672Z", + "completed":"2016-07-07T19:14:57.672Z", + "new_balance":"4696.89", + "value":"-0.52" + } + }, + { + "id":"b7db6408-8ea8-48ce-a4dc-ac0775441c6e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T06:47:50.644Z", + "completed":"2016-07-11T06:47:50.644Z", + "new_balance":"4694.58", + "value":"-2.31" + } + }, + { + "id":"f6d8fc65-ba09-403f-9d69-c955dda3be8e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T12:40:10.976Z", + "completed":"2016-07-11T12:40:10.976Z", + "new_balance":"4692.98", + "value":"-1.60" + } + }, + { + "id":"f10170f0-0207-4af9-855c-f040f4e82658", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T18:12:05.504Z", + "completed":"2016-07-11T18:12:05.504Z", + "new_balance":"4691.11", + "value":"-1.87" + } + }, + { + "id":"ac0d262a-9e76-4448-8bf3-ec81cd999130", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T19:11:59.927Z", + "completed":"2016-07-11T19:11:59.927Z", + "new_balance":"4688.52", + "value":"-2.59" + } + }, + { + "id":"72d95a85-cf68-4369-8ac9-da045f80857f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T19:46:49.899Z", + "completed":"2016-07-11T19:46:49.899Z", + "new_balance":"4686.84", + "value":"-1.68" + } + }, + { + "id":"ee30517d-c1f0-419a-8258-18d576ead04a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T04:35:48.493Z", + "completed":"2016-07-13T04:35:48.493Z", + "new_balance":"4680.71", + "value":"-6.13" + } + }, + { + "id":"fed9b65e-f583-456a-af67-9622e93cfc79", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T10:32:44.100Z", + "completed":"2016-07-13T10:32:44.100Z", + "new_balance":"4673.01", + "value":"-7.70" + } + }, + { + "id":"a92e6296-b762-46d0-9eae-6ea3c0afbdd0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T03:48:20.365Z", + "completed":"2016-07-16T03:48:20.365Z", + "new_balance":"4668.48", + "value":"-4.53" + } + }, + { + "id":"bcf285b0-827d-41e0-86e5-b8cf6165bc4d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:07:45.259Z", + "completed":"2016-07-16T15:07:45.259Z", + "new_balance":"4677.47", + "value":"8.99" + } + }, + { + "id":"fc03edc8-e104-4010-978d-b0fcc6dce770", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T17:03:24.415Z", + "completed":"2016-07-17T17:03:24.415Z", + "new_balance":"4676.66", + "value":"-0.81" + } + }, + { + "id":"19168bf3-2ab2-4735-9a62-bec2c89f2705", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T17:24:04.687Z", + "completed":"2016-07-17T17:24:04.687Z", + "new_balance":"4676.19", + "value":"-0.47" + } + }, + { + "id":"a8431a54-b646-45b9-ba90-52986e939bfb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T21:22:14.800Z", + "completed":"2016-07-19T21:22:14.800Z", + "new_balance":"4670.71", + "value":"-5.48" + } + }, + { + "id":"ac2ef412-b3ca-444b-94da-13b3796131ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T10:34:09.850Z", + "completed":"2016-07-21T10:34:09.850Z", + "new_balance":"4668.28", + "value":"-2.43" + } + }, + { + "id":"78466148-8d0c-4488-93da-8fea74823db0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T04:14:20.429Z", + "completed":"2016-07-23T04:14:20.429Z", + "new_balance":"4664.98", + "value":"-3.30" + } + }, + { + "id":"a39f8cc3-e926-4462-9cb6-c23c8ab7d3bc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T10:51:46.829Z", + "completed":"2016-07-25T10:51:46.829Z", + "new_balance":"4663.41", + "value":"-1.57" + } + }, + { + "id":"4aeefa24-049b-447d-8d49-b193411d70b8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T08:44:26.400Z", + "completed":"2016-07-27T08:44:26.400Z", + "new_balance":"4662.89", + "value":"-0.52" + } + }, + { + "id":"e5680ef6-42e1-437c-960a-025a766144a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T06:01:15.435Z", + "completed":"2016-07-28T06:01:15.435Z", + "new_balance":"4659.17", + "value":"-3.72" + } + }, + { + "id":"766de80e-b443-4ed2-b273-79c934e75721", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T20:04:31.211Z", + "completed":"2016-07-28T20:04:31.211Z", + "new_balance":"4636.81", + "value":"-22.36" + } + }, + { + "id":"82caac18-0dbd-409f-a03b-dde3dca966f0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T07:57:50.668Z", + "completed":"2016-08-01T07:57:50.668Z", + "new_balance":"4777.79", + "value":"140.98" + } + }, + { + "id":"9a6de1fc-89aa-4e40-b2f8-8e1cfccc6126", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T06:05:02.562Z", + "completed":"2016-08-03T06:05:02.562Z", + "new_balance":"4764.69", + "value":"-13.10" + } + }, + { + "id":"fbd704ec-c00e-42da-9f18-cf30371c8e82", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:08:24.058Z", + "completed":"2016-08-03T09:08:24.058Z", + "new_balance":"4732.97", + "value":"-31.72" + } + }, + { + "id":"d18d5e6f-beca-489c-8903-b809c9f60de6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T03:30:50.466Z", + "completed":"2016-08-04T03:30:50.466Z", + "new_balance":"4731.65", + "value":"-1.32" + } + }, + { + "id":"970a9131-17eb-4ea1-a13b-59485bd27f99", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T01:16:34.292Z", + "completed":"2016-08-07T01:16:34.292Z", + "new_balance":"4729.34", + "value":"-2.31" + } + }, + { + "id":"6421d235-5876-47db-a434-1c6ef905b66d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T19:45:53.614Z", + "completed":"2016-08-07T19:45:53.614Z", + "new_balance":"4727.15", + "value":"-2.19" + } + }, + { + "id":"37b4f211-a4cc-40b2-bef7-e65492c08e8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T20:13:04.838Z", + "completed":"2016-08-07T20:13:04.838Z", + "new_balance":"4726.48", + "value":"-0.67" + } + }, + { + "id":"5c9277ff-653b-4e3c-a3f1-e0584cb01d18", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T04:07:56.124Z", + "completed":"2016-08-08T04:07:56.124Z", + "new_balance":"4722.34", + "value":"-4.14" + } + }, + { + "id":"d910cfa9-5dd0-4e2d-a516-3f0109f559c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T22:08:11.996Z", + "completed":"2016-08-08T22:08:11.996Z", + "new_balance":"4714.64", + "value":"-7.70" + } + }, + { + "id":"9a41ca54-ab68-4c9a-8ca8-d27661639e02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T22:39:50.101Z", + "completed":"2016-08-08T22:39:50.101Z", + "new_balance":"4710.07", + "value":"-4.57" + } + }, + { + "id":"f2b1315e-1b1e-43fe-8e58-b6e9cf73af31", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T04:50:57.612Z", + "completed":"2016-08-09T04:50:57.612Z", + "new_balance":"4707.67", + "value":"-2.40" + } + }, + { + "id":"5d1d3d5a-eb0f-4565-835b-e52bd1eb1d67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T05:51:42.666Z", + "completed":"2016-08-11T05:51:42.666Z", + "new_balance":"4707.15", + "value":"-0.52" + } + }, + { + "id":"640c059d-1f60-4714-ab02-f382983ea778", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T16:50:49.493Z", + "completed":"2016-08-14T16:50:49.493Z", + "new_balance":"4704.27", + "value":"-2.88" + } + }, + { + "id":"3cd732b1-ee86-46ce-ae09-3700994bafe2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T12:43:08.333Z", + "completed":"2016-08-15T12:43:08.333Z", + "new_balance":"4701.96", + "value":"-2.31" + } + }, + { + "id":"9a3513a5-024a-40ff-8d6d-0d87c7b2fd0b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T02:10:10.263Z", + "completed":"2016-08-17T02:10:10.263Z", + "new_balance":"4701.49", + "value":"-0.47" + } + }, + { + "id":"1ffc92c3-2d29-4cc0-9ecb-a9f61bffa7d8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T03:48:38.937Z", + "completed":"2016-08-17T03:48:38.937Z", + "new_balance":"4696.88", + "value":"-4.61" + } + }, + { + "id":"ba8ceec2-1036-412d-a8a9-2862e9f88c7e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T15:47:21.354Z", + "completed":"2016-08-19T15:47:21.354Z", + "new_balance":"4696.29", + "value":"-0.59" + } + }, + { + "id":"991f7254-da12-4a9c-aaa0-eb084ed8d7a7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T11:30:17.748Z", + "completed":"2016-08-25T11:30:17.748Z", + "new_balance":"4707.69", + "value":"11.40" + } + }, + { + "id":"053fa5c0-dffc-41a8-b2dc-780c207cb26f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T09:07:32.940Z", + "completed":"2016-08-28T09:07:32.940Z", + "new_balance":"4703.97", + "value":"-3.72" + } + }, + { + "id":"81832e79-7215-431e-9deb-e8f60701c84c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T18:48:35.674Z", + "completed":"2016-08-28T18:48:35.674Z", + "new_balance":"4681.61", + "value":"-22.36" + } + }, + { + "id":"4afbfe47-2a48-4335-87b7-d36785884043", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T01:41:37.862Z", + "completed":"2016-09-01T01:41:37.862Z", + "new_balance":"4822.59", + "value":"140.98" + } + }, + { + "id":"ad1c507c-189c-4f6e-9c10-6b8a195bb82c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T16:17:24.547Z", + "completed":"2016-09-03T16:17:24.547Z", + "new_balance":"4790.87", + "value":"-31.72" + } + }, + { + "id":"b3f5f550-e3db-4f7c-9263-7b66055b7a5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T05:16:37.880Z", + "completed":"2016-09-04T05:16:37.880Z", + "new_balance":"4787.57", + "value":"-3.30" + } + }, + { + "id":"0318359a-bb55-41d2-be0f-9c6ba33de03d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T08:58:48.268Z", + "completed":"2016-09-04T08:58:48.268Z", + "new_balance":"4785.52", + "value":"-2.05" + } + }, + { + "id":"6d17f370-f522-4ec2-ae08-b059e06700ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T09:39:34.671Z", + "completed":"2016-09-04T09:39:34.671Z", + "new_balance":"4780.91", + "value":"-4.61" + } + }, + { + "id":"261963e6-ac0e-4b67-92ff-6736e13f4316", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T23:20:12.903Z", + "completed":"2016-09-04T23:20:12.903Z", + "new_balance":"4777.45", + "value":"-3.46" + } + }, + { + "id":"970add05-23cd-4b71-8a54-b4dc3fe99009", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T00:38:10.398Z", + "completed":"2016-09-05T00:38:10.398Z", + "new_balance":"4769.71", + "value":"-7.74" + } + }, + { + "id":"2bcf46d1-17c1-49c1-87de-63fc7b5e8703", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T07:49:21.461Z", + "completed":"2016-09-05T07:49:21.461Z", + "new_balance":"4762.96", + "value":"-6.75" + } + }, + { + "id":"6a5d4adf-55fc-458d-8ab6-58624e3f1deb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T11:03:38.448Z", + "completed":"2016-09-05T11:03:38.448Z", + "new_balance":"4755.26", + "value":"-7.70" + } + }, + { + "id":"7a6b02f7-6c2e-446c-b628-4061e62f4197", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T12:05:08.435Z", + "completed":"2016-09-05T12:05:08.435Z", + "new_balance":"4748.62", + "value":"-6.64" + } + }, + { + "id":"2baf56e7-749f-4d32-b3c5-aa0d2cf2eddc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T12:49:35.078Z", + "completed":"2016-09-05T12:49:35.078Z", + "new_balance":"4748.15", + "value":"-0.47" + } + }, + { + "id":"f67d7e16-949c-4298-9b7f-000d0e1995f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T23:48:22.728Z", + "completed":"2016-09-05T23:48:22.728Z", + "new_balance":"4746.85", + "value":"-1.30" + } + }, + { + "id":"34f2ba16-3a0b-4a1f-9ac8-fbe98f3c2fa3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T07:19:08.312Z", + "completed":"2016-09-07T07:19:08.312Z", + "new_balance":"4746.08", + "value":"-0.77" + } + }, + { + "id":"5c051eea-626f-45ea-9ff1-25c38db25944", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T11:24:04.620Z", + "completed":"2016-09-07T11:24:04.620Z", + "new_balance":"4745.61", + "value":"-0.47" + } + }, + { + "id":"67fda072-5846-4a35-bd78-fb077dd2d842", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T13:31:11.782Z", + "completed":"2016-09-07T13:31:11.782Z", + "new_balance":"4744.81", + "value":"-0.80" + } + }, + { + "id":"bcd25efa-effe-472e-a6f3-00e4d1d9bd38", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T23:11:40.149Z", + "completed":"2016-09-07T23:11:40.149Z", + "new_balance":"4744.01", + "value":"-0.80" + } + }, + { + "id":"95a28e87-1f57-478a-9e54-d4b1e0ecd367", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T10:46:54.529Z", + "completed":"2016-09-10T10:46:54.529Z", + "new_balance":"4741.30", + "value":"-2.71" + } + }, + { + "id":"2602c74b-177c-422e-a76c-c4deb4c0376a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T06:34:18.460Z", + "completed":"2016-09-11T06:34:18.460Z", + "new_balance":"4738.58", + "value":"-2.72" + } + }, + { + "id":"42358ce6-31aa-42a8-b857-6fbc7e72401d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T14:10:57.095Z", + "completed":"2016-09-11T14:10:57.095Z", + "new_balance":"4736.98", + "value":"-1.60" + } + }, + { + "id":"a44f0326-0542-42de-8c1f-1d13d95e92b5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T21:42:14.254Z", + "completed":"2016-09-11T21:42:14.254Z", + "new_balance":"4736.51", + "value":"-0.47" + } + }, + { + "id":"2af82069-14ad-46aa-a9bb-6662d59f9dd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T03:02:54.812Z", + "completed":"2016-09-12T03:02:54.812Z", + "new_balance":"4733.92", + "value":"-2.59" + } + }, + { + "id":"f83170ba-c1ab-4444-a8e9-7b141b9e1738", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:16:09.141Z", + "completed":"2016-09-12T04:16:09.141Z", + "new_balance":"4723.77", + "value":"-10.15" + } + }, + { + "id":"8d1d0387-a3a9-420c-b1d2-39a23b41d235", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T17:27:19.595Z", + "completed":"2016-09-12T17:27:19.595Z", + "new_balance":"4723.30", + "value":"-0.47" + } + }, + { + "id":"47b883d2-932d-4174-83d2-2aee186a1565", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T23:09:07.810Z", + "completed":"2016-09-12T23:09:07.810Z", + "new_balance":"4717.14", + "value":"-6.16" + } + }, + { + "id":"af017eb3-d9f7-4564-9839-ffdfdecfd077", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T08:01:40.618Z", + "completed":"2016-09-13T08:01:40.618Z", + "new_balance":"4714.56", + "value":"-2.58" + } + }, + { + "id":"12c89e2d-143a-409a-90ad-7f5aff310c16", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T02:10:57.117Z", + "completed":"2016-09-14T02:10:57.117Z", + "new_balance":"4714.09", + "value":"-0.47" + } + }, + { + "id":"2cc117a0-48a6-43bf-bb17-b898eaebc8c2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T14:11:10.493Z", + "completed":"2016-09-14T14:11:10.493Z", + "new_balance":"4709.17", + "value":"-4.92" + } + }, + { + "id":"ca60c990-edd9-424c-ae3f-4210d06794a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T17:19:37.102Z", + "completed":"2016-09-16T17:19:37.102Z", + "new_balance":"4705.05", + "value":"-4.12" + } + }, + { + "id":"64ac9da7-dcbb-46d0-a232-da17c4a06ebe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T06:09:10.043Z", + "completed":"2016-09-18T06:09:10.043Z", + "new_balance":"4700.66", + "value":"-4.39" + } + }, + { + "id":"f01fe135-7e85-4660-9a7e-0738b35d5084", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T16:34:19.930Z", + "completed":"2016-09-21T16:34:19.930Z", + "new_balance":"4688.30", + "value":"-12.36" + } + }, + { + "id":"905d347e-2f7a-4f13-850f-428ca3b378cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T23:49:33.364Z", + "completed":"2016-09-21T23:49:33.364Z", + "new_balance":"4678.69", + "value":"-9.61" + } + }, + { + "id":"9043bf02-1971-48b4-9466-fac52aa56792", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T22:59:55.477Z", + "completed":"2016-09-23T22:59:55.477Z", + "new_balance":"4675.22", + "value":"-3.47" + } + }, + { + "id":"608aa1a7-b466-473e-a808-7f32507aec5f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T14:00:31.336Z", + "completed":"2016-09-24T14:00:31.336Z", + "new_balance":"4674.75", + "value":"-0.47" + } + }, + { + "id":"482e2e7a-2719-44b0-b219-edb53531bf26", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T06:51:45.192Z", + "completed":"2016-09-26T06:51:45.192Z", + "new_balance":"4673.60", + "value":"-1.15" + } + }, + { + "id":"3983124a-fb80-4940-937f-ce4131ce94e1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:16:21.331Z", + "completed":"2016-09-26T15:16:21.331Z", + "new_balance":"4672.25", + "value":"-1.35" + } + }, + { + "id":"94c27cb5-a80b-4643-b780-b034700a0fb2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T22:47:05.323Z", + "completed":"2016-09-26T22:47:05.323Z", + "new_balance":"4669.86", + "value":"-2.39" + } + }, + { + "id":"0072e7fe-1293-464d-af3d-925eec9b68be", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T14:59:23.848Z", + "completed":"2016-09-27T14:59:23.848Z", + "new_balance":"4668.66", + "value":"-1.20" + } + }, + { + "id":"c144b1c7-c50f-4430-851f-2c2bd185de10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T04:43:28.155Z", + "completed":"2016-09-28T04:43:28.155Z", + "new_balance":"4664.94", + "value":"-3.72" + } + }, + { + "id":"968127cd-0b07-4cd2-91ec-d3a7a85e9737", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T10:11:53.956Z", + "completed":"2016-09-28T10:11:53.956Z", + "new_balance":"4642.58", + "value":"-22.36" + } + }, + { + "id":"4d22e99c-0beb-45c3-b120-f96576da9cae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T05:21:53.068Z", + "completed":"2016-10-01T05:21:53.068Z", + "new_balance":"4610.86", + "value":"-31.72" + } + }, + { + "id":"7d023dcc-f432-4842-b011-3e773ecaf3d8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T11:36:58.643Z", + "completed":"2016-10-01T11:36:58.643Z", + "new_balance":"4793.56", + "value":"182.70" + } + }, + { + "id":"ad540433-5ea3-41f4-bb53-dffe54f17468", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T13:54:10.795Z", + "completed":"2016-10-01T13:54:10.795Z", + "new_balance":"4934.54", + "value":"140.98" + } + }, + { + "id":"b6745ee7-9699-4fba-b0bb-cc0a9c0f0d14", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T02:41:17.793Z", + "completed":"2016-10-03T02:41:17.793Z", + "new_balance":"4932.80", + "value":"-1.74" + } + }, + { + "id":"20e5b86e-e07d-425d-b9f2-ed6f347e93f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T03:47:51.330Z", + "completed":"2016-10-03T03:47:51.330Z", + "new_balance":"4932.13", + "value":"-0.67" + } + }, + { + "id":"7d89b0ac-98b0-4036-ba72-bedd9b420092", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T21:05:34.321Z", + "completed":"2016-10-03T21:05:34.321Z", + "new_balance":"4927.31", + "value":"-4.82" + } + }, + { + "id":"a77efe2e-a72d-46e2-b187-497352df2e62", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T17:01:08.705Z", + "completed":"2016-10-05T17:01:08.705Z", + "new_balance":"4926.79", + "value":"-0.52" + } + }, + { + "id":"c1807e71-7b18-4314-8be3-d044a9c8a963", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T23:29:36.631Z", + "completed":"2016-10-05T23:29:36.631Z", + "new_balance":"4925.39", + "value":"-1.40" + } + }, + { + "id":"509b92dc-58d0-4641-81b3-70be2c5e6619", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T11:49:12.876Z", + "completed":"2016-10-06T11:49:12.876Z", + "new_balance":"4923.79", + "value":"-1.60" + } + }, + { + "id":"a5e8e5ee-15ac-4c1c-a0c1-01e40f706ea7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T04:51:07.318Z", + "completed":"2016-10-09T04:51:07.318Z", + "new_balance":"4921.20", + "value":"-2.59" + } + }, + { + "id":"210f1223-cd6e-42eb-8148-6393bd808dec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T12:15:35.593Z", + "completed":"2016-10-10T12:15:35.593Z", + "new_balance":"4919.52", + "value":"-1.68" + } + }, + { + "id":"5cfeabdf-a4ae-45d9-9bb9-3ac6df8ebeeb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T09:50:35.676Z", + "completed":"2016-10-11T09:50:35.676Z", + "new_balance":"4917.21", + "value":"-2.31" + } + }, + { + "id":"7c677b4d-2b63-4f4c-ac27-38dfa6b5fe36", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:19:25.277Z", + "completed":"2016-10-11T13:19:25.277Z", + "new_balance":"4915.34", + "value":"-1.87" + } + }, + { + "id":"bc78441f-898d-4151-8194-eb9d4c9f4c63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T01:27:09.584Z", + "completed":"2016-10-14T01:27:09.584Z", + "new_balance":"4909.21", + "value":"-6.13" + } + }, + { + "id":"de837360-30d0-452e-8caa-1a76165a7922", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T01:45:41.947Z", + "completed":"2016-10-14T01:45:41.947Z", + "new_balance":"4901.51", + "value":"-7.70" + } + }, + { + "id":"9e0c9688-2aa1-4407-92bf-20173cba3d23", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T22:20:41.504Z", + "completed":"2016-10-17T22:20:41.504Z", + "new_balance":"4896.98", + "value":"-4.53" + } + }, + { + "id":"b252fddb-ebf8-4d91-b64f-603dc0d7ab07", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T01:17:26.959Z", + "completed":"2016-10-18T01:17:26.959Z", + "new_balance":"4896.51", + "value":"-0.47" + } + }, + { + "id":"43443261-9239-433f-807c-4601d9c71791", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T14:15:14.307Z", + "completed":"2016-10-18T14:15:14.307Z", + "new_balance":"4891.03", + "value":"-5.48" + } + }, + { + "id":"31bcb48c-53ac-4ce0-af3f-9e411d02b3ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T17:38:28.426Z", + "completed":"2016-10-18T17:38:28.426Z", + "new_balance":"4890.22", + "value":"-0.81" + } + }, + { + "id":"2d06b1da-28c6-479a-9e6a-14f21135f2ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T09:32:00.381Z", + "completed":"2016-10-23T09:32:00.381Z", + "new_balance":"4887.79", + "value":"-2.43" + } + }, + { + "id":"ecdbee3c-604a-4e45-a157-97323cbc5ed4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T02:05:48.218Z", + "completed":"2016-10-24T02:05:48.218Z", + "new_balance":"4884.49", + "value":"-3.30" + } + }, + { + "id":"53cd3b81-a3f1-4e30-a953-948e9592affa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T06:02:52.608Z", + "completed":"2016-10-24T06:02:52.608Z", + "new_balance":"4882.92", + "value":"-1.57" + } + }, + { + "id":"f4df3179-b97e-434b-b23b-6368934e40e6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T01:33:39.017Z", + "completed":"2016-10-26T01:33:39.017Z", + "new_balance":"4882.40", + "value":"-0.52" + } + }, + { + "id":"d845391b-25c1-4d00-95f6-7f045ea93689", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T11:45:04.309Z", + "completed":"2016-10-30T11:45:04.309Z", + "new_balance":"4860.04", + "value":"-22.36" + } + }, + { + "id":"b918777e-b8e7-49e6-87d9-c819a83eb2d1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T18:50:36.381Z", + "completed":"2016-10-30T18:50:36.381Z", + "new_balance":"4856.32", + "value":"-3.72" + } + }, + { + "id":"66b601b0-748a-4eab-8c13-2feeae0bcb3f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T01:34:03.330Z", + "completed":"2016-11-02T01:34:03.330Z", + "new_balance":"4843.22", + "value":"-13.10" + } + }, + { + "id":"5e784815-5075-4173-afae-3a74980ce9be", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T07:45:15.370Z", + "completed":"2016-11-02T07:45:15.370Z", + "new_balance":"4842.55", + "value":"-0.67" + } + }, + { + "id":"fde5af1e-5aa4-48df-8d16-2045de9c954d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T08:56:46.271Z", + "completed":"2016-11-02T08:56:46.271Z", + "new_balance":"4810.83", + "value":"-31.72" + } + }, + { + "id":"afd646ca-4bba-4d1d-b4d1-65332158e147", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T19:22:28.017Z", + "completed":"2016-11-02T19:22:28.017Z", + "new_balance":"4809.51", + "value":"-1.32" + } + }, + { + "id":"d01268de-c63d-4e1a-b9db-2e10ecdb8bad", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T00:39:47.511Z", + "completed":"2016-11-06T00:39:47.511Z", + "new_balance":"4807.20", + "value":"-2.31" + } + }, + { + "id":"529b53ec-3f5b-4e7f-b299-b3d8c2020a0f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T20:16:55.375Z", + "completed":"2016-11-06T20:16:55.375Z", + "new_balance":"4805.01", + "value":"-2.19" + } + }, + { + "id":"3cd4f026-e899-405a-8c45-93acb8ddb462", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:46:29.649Z", + "completed":"2016-11-07T07:46:29.649Z", + "new_balance":"4800.44", + "value":"-4.57" + } + }, + { + "id":"26778518-486b-4f09-8aa7-71001ab4a525", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T16:20:17.582Z", + "completed":"2016-11-07T16:20:17.582Z", + "new_balance":"4792.74", + "value":"-7.70" + } + }, + { + "id":"7dbd09b4-389f-446b-9553-d01fff3ef2a4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T06:26:10.569Z", + "completed":"2016-11-09T06:26:10.569Z", + "new_balance":"4933.72", + "value":"140.98" + } + }, + { + "id":"0eaccb29-dd32-42e0-9ea7-9bbd0681e786", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:45:46.966Z", + "completed":"2016-11-14T05:45:46.966Z", + "new_balance":"4931.32", + "value":"-2.40" + } + }, + { + "id":"e0ce7d47-18e5-4199-802a-4e496194fcbc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T12:24:54.347Z", + "completed":"2016-11-14T12:24:54.347Z", + "new_balance":"4927.18", + "value":"-4.14" + } + }, + { + "id":"e4c67b35-dd57-4eeb-b37b-df28f754cd44", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T22:12:26.654Z", + "completed":"2016-11-16T22:12:26.654Z", + "new_balance":"4926.66", + "value":"-0.52" + } + }, + { + "id":"77971c77-56a0-4305-944d-42d8fee3dc20", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T10:16:30.310Z", + "completed":"2016-11-20T10:16:30.310Z", + "new_balance":"4923.78", + "value":"-2.88" + } + }, + { + "id":"1ad2cc19-4c47-4edd-8fa3-cea8c1047750", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T02:18:23.939Z", + "completed":"2016-11-23T02:18:23.939Z", + "new_balance":"4919.17", + "value":"-4.61" + } + }, + { + "id":"bbbf01bd-bdad-45e0-ab4b-6ddd89a697c4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T08:11:06.122Z", + "completed":"2016-11-23T08:11:06.122Z", + "new_balance":"4916.86", + "value":"-2.31" + } + }, + { + "id":"68e825bc-137a-4271-b1ac-bedbddbd817a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T14:43:50.284Z", + "completed":"2016-11-23T14:43:50.284Z", + "new_balance":"4916.39", + "value":"-0.47" + } + }, + { + "id":"a4c2e131-2b1b-4dd7-a77a-49b6e3c317fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T18:14:00.343Z", + "completed":"2016-11-28T18:14:00.343Z", + "new_balance":"4915.80", + "value":"-0.59" + } + }, + { + "id":"9bb9c6b6-dc8d-4708-a0a1-afd92ee21f7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T10:23:40.998Z", + "completed":"2016-11-30T10:23:40.998Z", + "new_balance":"4893.44", + "value":"-22.36" + } + }, + { + "id":"f7adacff-55f9-452b-aa2b-5e5c973efce4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T15:58:43.785Z", + "completed":"2016-11-30T15:58:43.785Z", + "new_balance":"4889.72", + "value":"-3.72" + } + }, + { + "id":"2016b7d5-d3c7-46b5-8427-cefa9c0307c5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T05:36:02.360Z", + "completed":"2016-12-01T05:36:02.360Z", + "new_balance":"4858.00", + "value":"-31.72" + } + }, + { + "id":"1fa3fc4d-79ef-4318-b86c-d06d7fe62cb2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:36:57.125Z", + "completed":"2016-12-01T16:36:57.125Z", + "new_balance":"4998.98", + "value":"140.98" + } + }, + { + "id":"d2945e13-95b3-4106-9e0c-b47e4095111c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T15:09:45.677Z", + "completed":"2016-12-04T15:09:45.677Z", + "new_balance":"4996.93", + "value":"-2.05" + } + }, + { + "id":"b4cc5089-4162-4e31-9baf-127625a70277", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:47:09.727Z", + "completed":"2016-12-04T18:47:09.727Z", + "new_balance":"4993.47", + "value":"-3.46" + } + }, + { + "id":"64880132-9550-432d-8878-5ce182bd6608", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T03:04:08.168Z", + "completed":"2016-12-11T03:04:08.168Z", + "new_balance":"4990.17", + "value":"-3.30" + } + }, + { + "id":"a0825cf8-c62d-484d-ada2-b7c743db915d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T07:29:24.093Z", + "completed":"2016-12-11T07:29:24.093Z", + "new_balance":"4985.56", + "value":"-4.61" + } + }, + { + "id":"c21b14c0-1777-475c-b062-ad415fffe809", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T00:21:01.189Z", + "completed":"2016-12-14T00:21:01.189Z", + "new_balance":"4978.92", + "value":"-6.64" + } + }, + { + "id":"2c616667-040e-4e88-b410-29a8a825fc90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T02:47:07.578Z", + "completed":"2016-12-14T02:47:07.578Z", + "new_balance":"4971.18", + "value":"-7.74" + } + }, + { + "id":"c5dddc1d-10dd-4acc-b48e-17df2d4a427f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:40:38.522Z", + "completed":"2016-12-14T03:40:38.522Z", + "new_balance":"4970.71", + "value":"-0.47" + } + }, + { + "id":"74ed1bf1-636e-4d0e-b2ec-8ef9402077cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T07:03:36.281Z", + "completed":"2016-12-14T07:03:36.281Z", + "new_balance":"4969.91", + "value":"-0.80" + } + }, + { + "id":"57ae3f11-0ee9-4e10-ace7-4943ee72b52d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T09:21:26.075Z", + "completed":"2016-12-14T09:21:26.075Z", + "new_balance":"4968.61", + "value":"-1.30" + } + }, + { + "id":"8ef34031-ca6b-4cad-a68c-c92d34e49ab5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T10:34:31.245Z", + "completed":"2016-12-14T10:34:31.245Z", + "new_balance":"4968.14", + "value":"-0.47" + } + }, + { + "id":"78b76b75-9b49-42a4-8162-6731579291c8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T14:39:32.877Z", + "completed":"2016-12-14T14:39:32.877Z", + "new_balance":"4961.39", + "value":"-6.75" + } + }, + { + "id":"0ef2ea05-c609-4334-b178-ecac7478e716", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T16:12:52.099Z", + "completed":"2016-12-14T16:12:52.099Z", + "new_balance":"4960.59", + "value":"-0.80" + } + }, + { + "id":"89936a62-14ae-421e-b927-dd1d5cb884a5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T16:27:03.815Z", + "completed":"2016-12-14T16:27:03.815Z", + "new_balance":"4952.89", + "value":"-7.70" + } + }, + { + "id":"5c4d8204-f3c7-42e9-ba2e-db51e9f24045", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T04:14:50.845Z", + "completed":"2016-12-15T04:14:50.845Z", + "new_balance":"4950.18", + "value":"-2.71" + } + }, + { + "id":"353b9b81-1486-44a3-8ece-375f0b1dcfb1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T11:50:22.858Z", + "completed":"2016-12-15T11:50:22.858Z", + "new_balance":"4949.71", + "value":"-0.47" + } + }, + { + "id":"511049b0-691e-465e-a8be-15d23bf397f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T22:04:31.630Z", + "completed":"2016-12-15T22:04:31.630Z", + "new_balance":"4948.94", + "value":"-0.77" + } + }, + { + "id":"70c8e57c-6183-4533-a6a0-4a28f924c720", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T06:10:40.673Z", + "completed":"2016-12-18T06:10:40.673Z", + "new_balance":"4946.35", + "value":"-2.59" + } + }, + { + "id":"268bf36b-e6cb-4105-b7b8-4b593a7b27b5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T07:26:53.292Z", + "completed":"2016-12-18T07:26:53.292Z", + "new_balance":"4936.20", + "value":"-10.15" + } + }, + { + "id":"582c419f-85c8-4a3f-9819-063e50ed5f2e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T07:35:02.141Z", + "completed":"2016-12-18T07:35:02.141Z", + "new_balance":"4933.62", + "value":"-2.58" + } + }, + { + "id":"dce84cb8-c7a6-4e0a-8e5b-878879e7374f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T10:22:55.874Z", + "completed":"2016-12-18T10:22:55.874Z", + "new_balance":"4933.15", + "value":"-0.47" + } + }, + { + "id":"ed4a63c2-8595-4754-9370-0210c26da5da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T10:56:20.416Z", + "completed":"2016-12-18T10:56:20.416Z", + "new_balance":"4932.68", + "value":"-0.47" + } + }, + { + "id":"ca5014c1-d4d7-43f5-8ca7-d33b501319f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T17:11:07.891Z", + "completed":"2016-12-18T17:11:07.891Z", + "new_balance":"4929.96", + "value":"-2.72" + } + }, + { + "id":"1ea3f09a-f31a-44e7-ab8a-2ce43667bfc1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T22:21:04.573Z", + "completed":"2016-12-18T22:21:04.573Z", + "new_balance":"4923.80", + "value":"-6.16" + } + }, + { + "id":"92a0b735-5a52-4fd0-9b84-c3b6d373a403", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T23:27:22.572Z", + "completed":"2016-12-18T23:27:22.572Z", + "new_balance":"4922.20", + "value":"-1.60" + } + }, + { + "id":"b620bf38-078a-4b79-84d4-6e857009f59c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T04:55:20.234Z", + "completed":"2016-12-19T04:55:20.234Z", + "new_balance":"4917.81", + "value":"-4.39" + } + }, + { + "id":"d4d26df4-e84e-47c6-8d8d-ff7ed2d416c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:42:33.587Z", + "completed":"2016-12-19T05:42:33.587Z", + "new_balance":"4912.89", + "value":"-4.92" + } + }, + { + "id":"61ff2b1e-b9bf-4396-8655-fae97a0fa9c3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T07:18:19.977Z", + "completed":"2016-12-19T07:18:19.977Z", + "new_balance":"4908.77", + "value":"-4.12" + } + }, + { + "id":"5ef6f80b-3c5b-4191-8d4b-0a7864a26462", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T07:35:49.820Z", + "completed":"2016-12-21T07:35:49.820Z", + "new_balance":"4908.30", + "value":"-0.47" + } + }, + { + "id":"667a5971-4842-4f1d-8d77-061868e11987", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T14:11:01.908Z", + "completed":"2016-12-21T14:11:01.908Z", + "new_balance":"4904.83", + "value":"-3.47" + } + }, + { + "id":"dff3ec64-20c8-4602-a85f-ab4d16cc464b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T15:24:11.440Z", + "completed":"2016-12-21T15:24:11.440Z", + "new_balance":"4892.47", + "value":"-12.36" + } + }, + { + "id":"e1595687-d5a6-4af5-a51c-9ed63322b6ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T15:51:31.715Z", + "completed":"2016-12-21T15:51:31.715Z", + "new_balance":"4891.32", + "value":"-1.15" + } + }, + { + "id":"53248c17-c3ad-4c5e-94a2-6787f8226423", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T16:09:59.708Z", + "completed":"2016-12-21T16:09:59.708Z", + "new_balance":"4881.71", + "value":"-9.61" + } + }, + { + "id":"84abd0f9-d3ec-458a-babb-4c6b569c9b6a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T00:24:04.794Z", + "completed":"2016-12-24T00:24:04.794Z", + "new_balance":"4880.51", + "value":"-1.20" + } + }, + { + "id":"4b9b67cf-46d7-4d21-821b-3bd955cc149c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T09:33:07.178Z", + "completed":"2016-12-24T09:33:07.178Z", + "new_balance":"4878.12", + "value":"-2.39" + } + }, + { + "id":"f5e1a5b7-f281-4fda-9b9f-76736ed9f74b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T11:57:34.851Z", + "completed":"2016-12-24T11:57:34.851Z", + "new_balance":"4876.77", + "value":"-1.35" + } + }, + { + "id":"41c14b08-d4cb-47f5-8957-0d0549292d73", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T08:53:29.973Z", + "completed":"2016-12-30T08:53:29.973Z", + "new_balance":"4854.41", + "value":"-22.36" + } + }, + { + "id":"86706251-569f-4e5b-a017-5b654192bfb3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T10:17:47.069Z", + "completed":"2016-12-30T10:17:47.069Z", + "new_balance":"4850.69", + "value":"-3.72" + } + }, + { + "id":"925a0992-cfc7-4c1b-9d8c-a81183f9900a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T06:00:25.798Z", + "completed":"2017-01-01T06:00:25.798Z", + "new_balance":"5033.39", + "value":"182.70" + } + }, + { + "id":"94f0ad55-c2ea-40f2-8f7d-8de16712e081", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T22:32:30.649Z", + "completed":"2017-01-01T22:32:30.649Z", + "new_balance":"5174.37", + "value":"140.98" + } + }, + { + "id":"e01ad1a7-5a36-4065-a3a2-f744e395df00", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T13:53:30.875Z", + "completed":"2017-01-02T13:53:30.875Z", + "new_balance":"5142.65", + "value":"-31.72" + } + }, + { + "id":"36c5d3a4-f23e-4aea-9526-99a86f43db1b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T01:23:52.230Z", + "completed":"2017-01-03T01:23:52.230Z", + "new_balance":"5140.91", + "value":"-1.74" + } + }, + { + "id":"ffa2b05d-630d-4902-8cf8-659bded51306", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T14:57:50.960Z", + "completed":"2017-01-03T14:57:50.960Z", + "new_balance":"5136.09", + "value":"-4.82" + } + }, + { + "id":"b1ba98c7-949b-47dd-9ccd-024e212509c5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T23:10:53.251Z", + "completed":"2017-01-03T23:10:53.251Z", + "new_balance":"5135.42", + "value":"-0.67" + } + }, + { + "id":"c2c102a6-120c-4f23-bdaa-7e619288097b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T15:14:41.535Z", + "completed":"2017-01-04T15:14:41.535Z", + "new_balance":"5134.02", + "value":"-1.40" + } + }, + { + "id":"e0b59e5a-a44e-4692-a29b-cfe44edb7f6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T10:31:09.397Z", + "completed":"2017-01-05T10:31:09.397Z", + "new_balance":"5133.50", + "value":"-0.52" + } + }, + { + "id":"9ade3bbb-e725-40f6-8417-4f64b62d96dc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T04:46:17.659Z", + "completed":"2017-01-07T04:46:17.659Z", + "new_balance":"5130.91", + "value":"-2.59" + } + }, + { + "id":"cd57f0af-8412-46df-a38d-b0bda70ac569", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T10:35:09.066Z", + "completed":"2017-01-07T10:35:09.066Z", + "new_balance":"5129.31", + "value":"-1.60" + } + }, + { + "id":"5f17e7ec-db44-444d-839c-b581501d6432", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T07:08:01.717Z", + "completed":"2017-01-08T07:08:01.717Z", + "new_balance":"5127.44", + "value":"-1.87" + } + }, + { + "id":"52784af8-09d9-4995-b99e-1e4dd769a7fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T23:50:26.697Z", + "completed":"2017-01-08T23:50:26.697Z", + "new_balance":"5125.76", + "value":"-1.68" + } + }, + { + "id":"cbc1d523-830e-4460-9e8d-8ba67e71993a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T03:02:50.184Z", + "completed":"2017-01-09T03:02:50.184Z", + "new_balance":"5119.63", + "value":"-6.13" + } + }, + { + "id":"e427ae84-f231-43d0-a22e-77306007f24c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T23:20:51.479Z", + "completed":"2017-01-09T23:20:51.479Z", + "new_balance":"5117.32", + "value":"-2.31" + } + }, + { + "id":"adee00d4-ce42-4941-b6d4-cfb2285926a2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T01:29:25.514Z", + "completed":"2017-01-10T01:29:25.514Z", + "new_balance":"5112.79", + "value":"-4.53" + } + }, + { + "id":"009705bf-95ea-4d2f-95df-559b087b069d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T03:10:10.342Z", + "completed":"2017-01-10T03:10:10.342Z", + "new_balance":"5105.09", + "value":"-7.70" + } + }, + { + "id":"b92b7a2f-74f9-47e2-ab5a-9a5c9ce74fe4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T06:35:24.940Z", + "completed":"2017-01-11T06:35:24.940Z", + "new_balance":"5099.61", + "value":"-5.48" + } + }, + { + "id":"b41845ab-1d34-47ca-bcf5-2b0dfafc9f4e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T10:19:20.637Z", + "completed":"2017-01-11T10:19:20.637Z", + "new_balance":"5108.60", + "value":"8.99" + } + }, + { + "id":"878c490b-1711-479b-ad6d-bda7a01901c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T16:56:41.593Z", + "completed":"2017-01-11T16:56:41.593Z", + "new_balance":"5108.13", + "value":"-0.47" + } + }, + { + "id":"60a9cb38-ba56-427c-815d-0f46fab2fa2c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T00:03:52.720Z", + "completed":"2017-01-12T00:03:52.720Z", + "new_balance":"5107.32", + "value":"-0.81" + } + }, + { + "id":"deb2b8dc-04bf-4a4c-b16f-644cbb7b5587", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T01:56:59.901Z", + "completed":"2017-01-15T01:56:59.901Z", + "new_balance":"5104.89", + "value":"-2.43" + } + }, + { + "id":"23715cd3-9f74-44f4-9f82-c2c4cc29de2e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T15:38:57.622Z", + "completed":"2017-01-16T15:38:57.622Z", + "new_balance":"5101.59", + "value":"-3.30" + } + }, + { + "id":"0baa8f61-dbda-4ab4-a517-392c7703ab97", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:00:14.652Z", + "completed":"2017-01-17T18:00:14.652Z", + "new_balance":"5100.02", + "value":"-1.57" + } + }, + { + "id":"a5be6033-0a09-4a44-a609-03dc70448d42", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T16:53:14.286Z", + "completed":"2017-01-20T16:53:14.286Z", + "new_balance":"5099.50", + "value":"-0.52" + } + }, + { + "id":"76fb3c7d-f59d-43ee-b051-cdc9a19970d2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T04:07:02.912Z", + "completed":"2017-01-21T04:07:02.912Z", + "new_balance":"5095.78", + "value":"-3.72" + } + }, + { + "id":"22ece904-ab23-44f6-af73-1996cf1667d4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T06:27:07.251Z", + "completed":"2017-01-23T06:27:07.251Z", + "new_balance":"5073.42", + "value":"-22.36" + } + }, + { + "id":"9f5737c5-1500-4293-b369-b802f02dc583", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T07:22:14.315Z", + "completed":"2017-02-01T07:22:14.315Z", + "new_balance":"5214.40", + "value":"140.98" + } + }, + { + "id":"cc241631-d6b1-4afb-bb6b-0aee90308190", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T01:25:08.035Z", + "completed":"2017-02-03T01:25:08.035Z", + "new_balance":"5182.68", + "value":"-31.72" + } + }, + { + "id":"d3c85346-95f2-4a45-956b-13c9bd931c98", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T20:15:47.210Z", + "completed":"2017-02-03T20:15:47.210Z", + "new_balance":"5169.58", + "value":"-13.10" + } + }, + { + "id":"f0ce6322-71ca-4142-9144-abd02be9cc99", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T06:26:06.571Z", + "completed":"2017-02-04T06:26:06.571Z", + "new_balance":"5168.26", + "value":"-1.32" + } + }, + { + "id":"a9034661-0920-41af-b602-1d67dae7d650", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T01:02:37.860Z", + "completed":"2017-02-05T01:02:37.860Z", + "new_balance":"5167.59", + "value":"-0.67" + } + }, + { + "id":"c848cedd-a84c-4750-b6b7-64d7cd90b48d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T06:18:47.519Z", + "completed":"2017-02-06T06:18:47.519Z", + "new_balance":"5165.40", + "value":"-2.19" + } + }, + { + "id":"63430782-7954-4e97-bdc8-bd8534fb442d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T00:19:21.504Z", + "completed":"2017-02-07T00:19:21.504Z", + "new_balance":"5160.83", + "value":"-4.57" + } + }, + { + "id":"5b19e609-3268-47c4-a0de-27f33d40cf6b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T05:38:20.522Z", + "completed":"2017-02-07T05:38:20.522Z", + "new_balance":"5158.52", + "value":"-2.31" + } + }, + { + "id":"ac352cf6-1f85-4306-9893-b166281b6119", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T12:30:06.767Z", + "completed":"2017-02-07T12:30:06.767Z", + "new_balance":"5150.82", + "value":"-7.70" + } + }, + { + "id":"037eb72b-1ec2-4e5a-898d-88525878bc44", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T04:11:19.856Z", + "completed":"2017-02-08T04:11:19.856Z", + "new_balance":"5146.68", + "value":"-4.14" + } + }, + { + "id":"b0c73c93-bc45-4e72-b06c-5882ff86b1b1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T01:30:24.843Z", + "completed":"2017-02-09T01:30:24.843Z", + "new_balance":"5144.28", + "value":"-2.40" + } + }, + { + "id":"b9a5d94f-de60-44ac-8b66-4ca40c3a8e13", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T22:01:33.220Z", + "completed":"2017-02-10T22:01:33.220Z", + "new_balance":"5143.76", + "value":"-0.52" + } + }, + { + "id":"36a0e48a-9071-45a3-99c1-c77c217f6818", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T12:57:36.368Z", + "completed":"2017-02-12T12:57:36.368Z", + "new_balance":"5140.88", + "value":"-2.88" + } + }, + { + "id":"6e28751b-e548-4b7e-a55c-80cb5a6b080c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:15:44.669Z", + "completed":"2017-02-14T20:15:44.669Z", + "new_balance":"5138.57", + "value":"-2.31" + } + }, + { + "id":"e1b8643a-130c-4a5a-b670-7b77ce812c67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T16:15:43.110Z", + "completed":"2017-02-16T16:15:43.110Z", + "new_balance":"5133.96", + "value":"-4.61" + } + }, + { + "id":"ebe341bf-3d15-4b69-9a29-712564ffa064", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T22:12:08.817Z", + "completed":"2017-02-16T22:12:08.817Z", + "new_balance":"5133.49", + "value":"-0.47" + } + }, + { + "id":"59069a5b-28ff-4e89-bf96-18e577f53381", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T08:05:29.783Z", + "completed":"2017-02-18T08:05:29.783Z", + "new_balance":"5132.90", + "value":"-0.59" + } + }, + { + "id":"d0283996-5498-4052-9dcb-1d8e8d84a6ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T03:02:59.686Z", + "completed":"2017-02-21T03:02:59.686Z", + "new_balance":"5129.18", + "value":"-3.72" + } + }, + { + "id":"cf647e4e-db3c-4e3e-8c0a-2143c48db4fa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T18:33:09.970Z", + "completed":"2017-02-21T18:33:09.970Z", + "new_balance":"5140.58", + "value":"11.40" + } + }, + { + "id":"3e6117e7-a2f4-4666-aa7b-fed69e08ae81", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T21:18:16.314Z", + "completed":"2017-02-27T21:18:16.314Z", + "new_balance":"5118.22", + "value":"-22.36" + } + }, + { + "id":"325a92e7-ef14-409d-b92a-bf245b468a65", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T20:48:17.411Z", + "completed":"2017-03-01T20:48:17.411Z", + "new_balance":"5259.20", + "value":"140.98" + } + }, + { + "id":"e27f9f35-e01f-4c98-a477-4f555a43f389", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T17:19:29.302Z", + "completed":"2017-03-03T17:19:29.302Z", + "new_balance":"5227.48", + "value":"-31.72" + } + }, + { + "id":"e583b9ff-d346-4b6f-9df9-4b221536a8fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T08:07:46.204Z", + "completed":"2017-03-04T08:07:46.204Z", + "new_balance":"5224.02", + "value":"-3.46" + } + }, + { + "id":"2cd55ea6-a894-48ab-b4c7-bf138d480060", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T08:34:50.657Z", + "completed":"2017-03-04T08:34:50.657Z", + "new_balance":"5219.41", + "value":"-4.61" + } + }, + { + "id":"9ee7f978-e89b-4395-933b-cb07cb246792", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:35:25.727Z", + "completed":"2017-03-04T16:35:25.727Z", + "new_balance":"5217.36", + "value":"-2.05" + } + }, + { + "id":"a0674eb3-c3c7-498d-98de-0bf653c06877", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T20:36:56.227Z", + "completed":"2017-03-04T20:36:56.227Z", + "new_balance":"5214.06", + "value":"-3.30" + } + }, + { + "id":"abd97d74-94c7-44b3-b0c3-021867851153", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T04:16:04.389Z", + "completed":"2017-03-05T04:16:04.389Z", + "new_balance":"5206.36", + "value":"-7.70" + } + }, + { + "id":"e1bdbba9-498d-42b5-a155-08cf547fdb52", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:57:02.457Z", + "completed":"2017-03-05T11:57:02.457Z", + "new_balance":"5205.06", + "value":"-1.30" + } + }, + { + "id":"6fa407d6-9874-4f52-8dfc-d54e6ba60322", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T15:10:14.782Z", + "completed":"2017-03-05T15:10:14.782Z", + "new_balance":"5198.31", + "value":"-6.75" + } + }, + { + "id":"d398d06f-f638-4423-8566-5660f5334309", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T21:05:41.097Z", + "completed":"2017-03-05T21:05:41.097Z", + "new_balance":"5197.84", + "value":"-0.47" + } + }, + { + "id":"33b78b05-99b1-4da0-98db-487dd2d614c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T02:02:41.296Z", + "completed":"2017-03-06T02:02:41.296Z", + "new_balance":"5191.20", + "value":"-6.64" + } + }, + { + "id":"2d528579-46ec-4623-852a-dd4ee07634e0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T06:11:11.101Z", + "completed":"2017-03-06T06:11:11.101Z", + "new_balance":"5183.46", + "value":"-7.74" + } + }, + { + "id":"02b15f0f-9496-420e-ae78-9c9e4713aded", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T04:32:27.622Z", + "completed":"2017-03-07T04:32:27.622Z", + "new_balance":"5182.99", + "value":"-0.47" + } + }, + { + "id":"0ebbf941-254c-4cc0-aae6-975b86a7ac8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T20:51:08.206Z", + "completed":"2017-03-07T20:51:08.206Z", + "new_balance":"5182.19", + "value":"-0.80" + } + }, + { + "id":"ae16ff9a-eeab-45b4-adcd-8b477877ff89", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T05:47:13.621Z", + "completed":"2017-03-08T05:47:13.621Z", + "new_balance":"5181.39", + "value":"-0.80" + } + }, + { + "id":"ec5960fa-0f29-402d-9ba1-e47fee6936b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T13:40:12.152Z", + "completed":"2017-03-08T13:40:12.152Z", + "new_balance":"5180.62", + "value":"-0.77" + } + }, + { + "id":"b92bb9d6-3263-4e88-8704-3003fc2b9456", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T21:33:55.921Z", + "completed":"2017-03-10T21:33:55.921Z", + "new_balance":"5177.91", + "value":"-2.71" + } + }, + { + "id":"dd4bf8e5-3105-4bc4-b053-a47489c83009", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T00:35:49.980Z", + "completed":"2017-03-11T00:35:49.980Z", + "new_balance":"5175.19", + "value":"-2.72" + } + }, + { + "id":"60628d35-8ea0-475c-bd53-c0deec5a0b8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T06:28:35.256Z", + "completed":"2017-03-11T06:28:35.256Z", + "new_balance":"5174.72", + "value":"-0.47" + } + }, + { + "id":"5b1a84b5-a981-4cbe-aaca-4ab0faa7556b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:46:46.564Z", + "completed":"2017-03-11T16:46:46.564Z", + "new_balance":"5173.12", + "value":"-1.60" + } + }, + { + "id":"20c4cd7d-1b63-47e4-8ffe-b70bc1442e28", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T06:20:24.831Z", + "completed":"2017-03-12T06:20:24.831Z", + "new_balance":"5170.53", + "value":"-2.59" + } + }, + { + "id":"67420538-9347-4d2b-9cc6-ff433612f0f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T09:27:56.926Z", + "completed":"2017-03-12T09:27:56.926Z", + "new_balance":"5170.06", + "value":"-0.47" + } + }, + { + "id":"ef8c9751-1bd3-4aeb-8afd-11c0daaab685", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T15:53:52.800Z", + "completed":"2017-03-12T15:53:52.800Z", + "new_balance":"5159.91", + "value":"-10.15" + } + }, + { + "id":"1ba89eaa-ec09-41c5-ba3d-8c76adeacdcf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T21:59:56.144Z", + "completed":"2017-03-12T21:59:56.144Z", + "new_balance":"5153.75", + "value":"-6.16" + } + }, + { + "id":"e72531c3-e691-45c1-9982-ceb0d47d5d6a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T04:26:44.572Z", + "completed":"2017-03-13T04:26:44.572Z", + "new_balance":"5153.28", + "value":"-0.47" + } + }, + { + "id":"26b2f566-3923-4c20-ad85-4d1ed4282689", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T06:36:31.163Z", + "completed":"2017-03-13T06:36:31.163Z", + "new_balance":"5150.70", + "value":"-2.58" + } + }, + { + "id":"4e412470-3ecb-4d3d-b06f-1adf09f98a10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T13:19:45.523Z", + "completed":"2017-03-15T13:19:45.523Z", + "new_balance":"5145.78", + "value":"-4.92" + } + }, + { + "id":"3d7d82ee-c4e5-4f1b-98cb-dac36876925f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T20:36:40.511Z", + "completed":"2017-03-15T20:36:40.511Z", + "new_balance":"5141.66", + "value":"-4.12" + } + }, + { + "id":"86011f75-f062-49c0-8ab6-d8a70a96f7a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T02:24:29.367Z", + "completed":"2017-03-17T02:24:29.367Z", + "new_balance":"5137.27", + "value":"-4.39" + } + }, + { + "id":"aa06b056-7266-47df-a5c4-3863cb9dfcd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T15:06:57.872Z", + "completed":"2017-03-18T15:06:57.872Z", + "new_balance":"5127.66", + "value":"-9.61" + } + }, + { + "id":"61fcc58f-3d2e-44d8-b03b-f99b0103c5fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T13:09:38.163Z", + "completed":"2017-03-20T13:09:38.163Z", + "new_balance":"5115.30", + "value":"-12.36" + } + }, + { + "id":"f295d8e1-c438-47b3-8093-3860bdf9dc4a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T22:24:18.046Z", + "completed":"2017-03-22T22:24:18.046Z", + "new_balance":"5111.83", + "value":"-3.47" + } + }, + { + "id":"bf4473fd-bd38-459f-a8f0-17562c55cb59", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T03:34:57.987Z", + "completed":"2017-03-25T03:34:57.987Z", + "new_balance":"5110.68", + "value":"-1.15" + } + }, + { + "id":"ca00da72-48b2-41a8-ab39-860da6ed1686", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T07:42:02.200Z", + "completed":"2017-03-25T07:42:02.200Z", + "new_balance":"5110.21", + "value":"-0.47" + } + }, + { + "id":"afb5b70e-1909-4bfc-abbf-befa0424517a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T12:51:24.586Z", + "completed":"2017-03-26T12:51:24.586Z", + "new_balance":"5108.86", + "value":"-1.35" + } + }, + { + "id":"40ccff40-b435-4dcc-b45c-cd359754aa00", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T13:56:37.391Z", + "completed":"2017-03-26T13:56:37.391Z", + "new_balance":"5106.47", + "value":"-2.39" + } + }, + { + "id":"bc70c5d3-d18e-4eeb-a54e-8ce4d71c2756", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T02:01:29.248Z", + "completed":"2017-03-27T02:01:29.248Z", + "new_balance":"5105.27", + "value":"-1.20" + } + }, + { + "id":"6e4280ee-d499-4195-bf11-8116d707cbdb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T05:07:46.878Z", + "completed":"2017-03-28T05:07:46.878Z", + "new_balance":"5101.55", + "value":"-3.72" + } + }, + { + "id":"845ccd5e-4754-4f11-8270-e0377e57e42b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T20:14:02.780Z", + "completed":"2017-03-31T20:14:02.780Z", + "new_balance":"5079.19", + "value":"-22.36" + } + }, + { + "id":"767576a3-f43f-47e9-8ca9-22322b422e3b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T17:53:16.324Z", + "completed":"2017-04-01T17:53:16.324Z", + "new_balance":"5261.89", + "value":"182.70" + } + }, + { + "id":"35d1d6ea-d900-4eaf-958d-60cca39ee902", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T18:13:40.386Z", + "completed":"2017-04-01T18:13:40.386Z", + "new_balance":"5230.17", + "value":"-31.72" + } + }, + { + "id":"8b778b01-e6fd-4f69-bcb1-9bfee3fcde02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T20:49:23.853Z", + "completed":"2017-04-01T20:49:23.853Z", + "new_balance":"5371.15", + "value":"140.98" + } + }, + { + "id":"7c8c004d-c899-4844-ab01-8f6536f2f756", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T08:26:04.122Z", + "completed":"2017-04-03T08:26:04.122Z", + "new_balance":"5370.48", + "value":"-0.67" + } + }, + { + "id":"478a49b9-99c4-4b9b-a81f-3a6e883fd310", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T19:54:20.855Z", + "completed":"2017-04-03T19:54:20.855Z", + "new_balance":"5365.66", + "value":"-4.82" + } + }, + { + "id":"7f3638a4-b981-4107-964c-461f31c025da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T23:11:46.006Z", + "completed":"2017-04-03T23:11:46.006Z", + "new_balance":"5363.92", + "value":"-1.74" + } + }, + { + "id":"668b1af8-cf6b-4945-a93e-b2f2cea58cce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T06:43:55.729Z", + "completed":"2017-04-05T06:43:55.729Z", + "new_balance":"5363.40", + "value":"-0.52" + } + }, + { + "id":"b2fd306a-5e75-4170-966c-72e05c25e254", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T13:43:24.660Z", + "completed":"2017-04-05T13:43:24.660Z", + "new_balance":"5362.00", + "value":"-1.40" + } + }, + { + "id":"73682ad1-2bb1-4844-a662-933b5a318631", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T12:44:59.765Z", + "completed":"2017-04-06T12:44:59.765Z", + "new_balance":"5360.40", + "value":"-1.60" + } + }, + { + "id":"4d54bd95-59f0-4cb2-b581-1628af1c5bd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T13:43:46.439Z", + "completed":"2017-04-09T13:43:46.439Z", + "new_balance":"5357.81", + "value":"-2.59" + } + }, + { + "id":"72c515a5-4d80-4a99-875f-06e45f5e9cfd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:23:14.132Z", + "completed":"2017-04-10T00:23:14.132Z", + "new_balance":"5356.13", + "value":"-1.68" + } + }, + { + "id":"2262e81e-29e8-4334-8e4a-f97407634d6b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T10:02:28.577Z", + "completed":"2017-04-11T10:02:28.577Z", + "new_balance":"5354.26", + "value":"-1.87" + } + }, + { + "id":"46e2875f-ca59-4afe-8f9a-8e24b5583b47", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:03:17.552Z", + "completed":"2017-04-11T17:03:17.552Z", + "new_balance":"5351.95", + "value":"-2.31" + } + }, + { + "id":"ccc05c73-f0ff-442e-9ecf-b5b05cc669df", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T08:07:08.772Z", + "completed":"2017-04-13T08:07:08.772Z", + "new_balance":"5345.82", + "value":"-6.13" + } + }, + { + "id":"fa9e56a9-3499-4d97-9d88-77ac4776b0fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T12:14:38.302Z", + "completed":"2017-04-13T12:14:38.302Z", + "new_balance":"5338.12", + "value":"-7.70" + } + }, + { + "id":"ab73d671-f878-423c-95eb-dbbbcd5717b8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T15:26:21.127Z", + "completed":"2017-04-15T15:26:21.127Z", + "new_balance":"5333.59", + "value":"-4.53" + } + }, + { + "id":"547c6306-af21-414c-8e5c-2135e0cd87f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T18:35:22.556Z", + "completed":"2017-04-16T18:35:22.556Z", + "new_balance":"5332.78", + "value":"-0.81" + } + }, + { + "id":"d4c578f0-a023-4903-9522-a054c72fb1d1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T23:09:29.137Z", + "completed":"2017-04-16T23:09:29.137Z", + "new_balance":"5332.31", + "value":"-0.47" + } + }, + { + "id":"4aec68d4-a6d5-4914-82d9-45453cbb4f7d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T06:17:57.685Z", + "completed":"2017-04-18T06:17:57.685Z", + "new_balance":"5326.83", + "value":"-5.48" + } + }, + { + "id":"2b37cddd-a6ce-48c1-9ca6-09360c44b487", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T14:04:07.138Z", + "completed":"2017-04-23T14:04:07.138Z", + "new_balance":"5324.40", + "value":"-2.43" + } + }, + { + "id":"b8227e8b-101c-42b1-bc9a-b12583df7cac", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T05:08:35.223Z", + "completed":"2017-04-24T05:08:35.223Z", + "new_balance":"5322.83", + "value":"-1.57" + } + }, + { + "id":"bfb4f0d5-8fdd-41e7-a7d1-be5f68ab7d6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T07:09:13.282Z", + "completed":"2017-04-24T07:09:13.282Z", + "new_balance":"5319.53", + "value":"-3.30" + } + }, + { + "id":"b8fc5a00-f53e-4fca-9565-1a791142d0df", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T12:54:25.977Z", + "completed":"2017-04-26T12:54:25.977Z", + "new_balance":"5319.01", + "value":"-0.52" + } + }, + { + "id":"ebadbd7d-f40e-45e0-9a16-62d0a175c860", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T10:56:05.664Z", + "completed":"2017-04-28T10:56:05.664Z", + "new_balance":"5315.29", + "value":"-3.72" + } + }, + { + "id":"1016c794-80ad-491a-bdd8-c61a26b32aec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T12:21:16.404Z", + "completed":"2017-04-28T12:21:16.404Z", + "new_balance":"5292.93", + "value":"-22.36" + } + }, + { + "id":"3bc118b9-6246-40f7-96d4-f076681dbd4c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T00:39:16.219Z", + "completed":"2017-05-02T00:39:16.219Z", + "new_balance":"5279.83", + "value":"-13.10" + } + }, + { + "id":"cb645d5f-af3d-4846-8e44-06aa38c8d023", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T03:54:25.146Z", + "completed":"2017-05-02T03:54:25.146Z", + "new_balance":"5279.16", + "value":"-0.67" + } + }, + { + "id":"dac2cb99-55e8-4e8c-b80a-b2407afe08ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T08:27:24.400Z", + "completed":"2017-05-02T08:27:24.400Z", + "new_balance":"5247.44", + "value":"-31.72" + } + }, + { + "id":"098ecbc0-4c12-4528-aeea-2a5e20868e1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T11:51:26.170Z", + "completed":"2017-05-02T11:51:26.170Z", + "new_balance":"5246.12", + "value":"-1.32" + } + }, + { + "id":"5af91ccb-af2d-4232-8a8f-98ed16b1432c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T02:59:58.182Z", + "completed":"2017-05-06T02:59:58.182Z", + "new_balance":"5243.81", + "value":"-2.31" + } + }, + { + "id":"4f06d12c-a71c-4994-88c5-8177b6d59f2c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T19:55:42.339Z", + "completed":"2017-05-06T19:55:42.339Z", + "new_balance":"5241.62", + "value":"-2.19" + } + }, + { + "id":"a89b7982-a730-4df8-98a9-bb096fdffba9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T03:21:49.977Z", + "completed":"2017-05-07T03:21:49.977Z", + "new_balance":"5237.05", + "value":"-4.57" + } + }, + { + "id":"ad7381c2-07e2-48da-8909-4f9ddd06eba1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T11:28:47.292Z", + "completed":"2017-05-07T11:28:47.292Z", + "new_balance":"5229.35", + "value":"-7.70" + } + }, + { + "id":"ef3f346c-ca54-4c2b-99a1-b8e8a8f196ab", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T14:46:19.321Z", + "completed":"2017-05-09T14:46:19.321Z", + "new_balance":"5370.33", + "value":"140.98" + } + }, + { + "id":"da45799e-2b31-4159-9946-720a13448407", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T07:55:27.109Z", + "completed":"2017-05-14T07:55:27.109Z", + "new_balance":"5367.93", + "value":"-2.40" + } + }, + { + "id":"34e7974e-e84f-420f-b184-5b09ad34d5e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T15:32:32.302Z", + "completed":"2017-05-14T15:32:32.302Z", + "new_balance":"5363.79", + "value":"-4.14" + } + }, + { + "id":"0f8e26bd-9021-4f45-bf5f-f2835cb58514", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T10:25:44.876Z", + "completed":"2017-05-16T10:25:44.876Z", + "new_balance":"5363.27", + "value":"-0.52" + } + }, + { + "id":"fbca1968-fed6-4601-bb0b-099216c4d516", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T03:28:04.701Z", + "completed":"2017-05-21T03:28:04.701Z", + "new_balance":"5360.39", + "value":"-2.88" + } + }, + { + "id":"67a5b964-503b-438c-b6af-dc34c6136901", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T17:01:56.456Z", + "completed":"2017-05-23T17:01:56.456Z", + "new_balance":"5359.92", + "value":"-0.47" + } + }, + { + "id":"aa4840f1-967d-472f-a677-18441d74ec7c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T21:03:44.933Z", + "completed":"2017-05-23T21:03:44.933Z", + "new_balance":"5357.61", + "value":"-2.31" + } + }, + { + "id":"2543e888-799e-4aa0-aa5a-94718afe4d2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T19:16:37.020Z", + "completed":"2017-05-24T19:16:37.020Z", + "new_balance":"5353.00", + "value":"-4.61" + } + }, + { + "id":"00fe7a36-288a-4281-b80d-86525e5e21ab", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T18:32:33.788Z", + "completed":"2017-05-27T18:32:33.788Z", + "new_balance":"5352.41", + "value":"-0.59" + } + }, + { + "id":"34821b69-42db-484d-968c-4330ef72cf85", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T03:17:08.232Z", + "completed":"2017-05-30T03:17:08.232Z", + "new_balance":"5330.05", + "value":"-22.36" + } + }, + { + "id":"f3f70614-ef52-44e6-afd6-7c25f461af34", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T20:01:44.410Z", + "completed":"2017-05-30T20:01:44.410Z", + "new_balance":"5326.33", + "value":"-3.72" + } + }, + { + "id":"ec97adc1-ecf6-4929-a61e-059b20cc66fb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T00:57:28.130Z", + "completed":"2017-06-01T00:57:28.130Z", + "new_balance":"5294.61", + "value":"-31.72" + } + }, + { + "id":"9371a644-bf3f-4526-9f93-34cb5aa7ea87", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T01:44:28.990Z", + "completed":"2017-06-01T01:44:28.990Z", + "new_balance":"5435.59", + "value":"140.98" + } + }, + { + "id":"99573c06-ce51-491d-927b-72672fac3733", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T09:28:35.399Z", + "completed":"2017-06-04T09:28:35.399Z", + "new_balance":"5433.54", + "value":"-2.05" + } + }, + { + "id":"a19b6839-e91d-4136-bac7-d8f93aecb908", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:07:42.383Z", + "completed":"2017-06-04T13:07:42.383Z", + "new_balance":"5430.08", + "value":"-3.46" + } + }, + { + "id":"1efd169d-1ea2-4c08-99ab-c7ec3d820605", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T03:08:02.846Z", + "completed":"2017-06-11T03:08:02.846Z", + "new_balance":"5426.78", + "value":"-3.30" + } + }, + { + "id":"21a9c9bf-13d6-4133-8218-6a78488da2da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T12:36:44.254Z", + "completed":"2017-06-11T12:36:44.254Z", + "new_balance":"5422.17", + "value":"-4.61" + } + }, + { + "id":"5d20e387-d557-405c-9516-4908ff2bd1e1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T07:38:21.893Z", + "completed":"2017-06-12T07:38:21.893Z", + "new_balance":"5420.87", + "value":"-1.30" + } + }, + { + "id":"9f0e57b6-4629-4b0b-a628-f4df7575bccd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T12:16:17.449Z", + "completed":"2017-06-12T12:16:17.449Z", + "new_balance":"5413.17", + "value":"-7.70" + } + }, + { + "id":"7fbf76d2-cca3-439a-a908-6942cb321248", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T21:50:21.978Z", + "completed":"2017-06-12T21:50:21.978Z", + "new_balance":"5412.70", + "value":"-0.47" + } + }, + { + "id":"d0093848-0389-4e03-9724-605da8f806fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T06:12:16.103Z", + "completed":"2017-06-13T06:12:16.103Z", + "new_balance":"5405.95", + "value":"-6.75" + } + }, + { + "id":"11a1ae61-b0b0-4176-a9d2-58222f7bb8b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T17:58:58.698Z", + "completed":"2017-06-13T17:58:58.698Z", + "new_balance":"5399.31", + "value":"-6.64" + } + }, + { + "id":"7dafd5d0-dc6a-4b8e-a5c2-69c74d1e9220", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T19:25:04.272Z", + "completed":"2017-06-13T19:25:04.272Z", + "new_balance":"5391.57", + "value":"-7.74" + } + }, + { + "id":"dc30f79d-b9bd-4668-92af-12b43b87a9ad", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T05:04:17.368Z", + "completed":"2017-06-14T05:04:17.368Z", + "new_balance":"5390.77", + "value":"-0.80" + } + }, + { + "id":"b71439a1-ddc7-4d31-855d-63148edfa631", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:25:04.643Z", + "completed":"2017-06-14T06:25:04.643Z", + "new_balance":"5390.30", + "value":"-0.47" + } + }, + { + "id":"96bc9513-f1e2-4551-99f5-2582e8132dcb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T13:24:17.550Z", + "completed":"2017-06-14T13:24:17.550Z", + "new_balance":"5389.50", + "value":"-0.80" + } + }, + { + "id":"1ab48bd5-6554-40bb-8c6c-051759e257ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T16:20:06.548Z", + "completed":"2017-06-15T16:20:06.548Z", + "new_balance":"5389.03", + "value":"-0.47" + } + }, + { + "id":"2cf97e53-283a-4c02-8746-39cf50cfe662", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T19:51:26.949Z", + "completed":"2017-06-15T19:51:26.949Z", + "new_balance":"5388.26", + "value":"-0.77" + } + }, + { + "id":"041fd6a0-67a3-471f-b7bb-8e474e376765", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T21:27:39.682Z", + "completed":"2017-06-15T21:27:39.682Z", + "new_balance":"5385.55", + "value":"-2.71" + } + }, + { + "id":"0ab9d866-66d5-4064-9a5a-4476daa0950c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T09:17:29.570Z", + "completed":"2017-06-16T09:17:29.570Z", + "new_balance":"5382.83", + "value":"-2.72" + } + }, + { + "id":"a84c3dea-b831-4991-9540-d7127b285595", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T20:36:31.869Z", + "completed":"2017-06-17T20:36:31.869Z", + "new_balance":"5381.23", + "value":"-1.60" + } + }, + { + "id":"5b8a7126-9ed1-4b88-b34f-8c622df3bb45", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T09:04:16.320Z", + "completed":"2017-06-18T09:04:16.320Z", + "new_balance":"5378.64", + "value":"-2.59" + } + }, + { + "id":"3b90108f-9aa4-4824-b9b4-a9285e94153e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T14:00:11.332Z", + "completed":"2017-06-18T14:00:11.332Z", + "new_balance":"5378.17", + "value":"-0.47" + } + }, + { + "id":"2b1641f1-15c4-4905-a685-dee5ab5b43c3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T17:38:30.165Z", + "completed":"2017-06-18T17:38:30.165Z", + "new_balance":"5372.01", + "value":"-6.16" + } + }, + { + "id":"93ce598c-5829-49d3-b6be-ae901abfe330", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:39:30.586Z", + "completed":"2017-06-18T19:39:30.586Z", + "new_balance":"5361.86", + "value":"-10.15" + } + }, + { + "id":"ef612e75-da0b-4156-adfe-560ac0d9893b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T20:48:14.107Z", + "completed":"2017-06-18T20:48:14.107Z", + "new_balance":"5361.39", + "value":"-0.47" + } + }, + { + "id":"5a3f1ae3-7dfd-406a-b5ea-f9d4e75c8f8c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T21:07:59.300Z", + "completed":"2017-06-18T21:07:59.300Z", + "new_balance":"5358.81", + "value":"-2.58" + } + }, + { + "id":"73dd4f4b-6b6b-45ea-9016-847f3bbc04d9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T06:03:39.671Z", + "completed":"2017-06-19T06:03:39.671Z", + "new_balance":"5354.69", + "value":"-4.12" + } + }, + { + "id":"63d38ddb-251b-46f3-93ec-00ce7b569e90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T15:28:56.203Z", + "completed":"2017-06-19T15:28:56.203Z", + "new_balance":"5350.30", + "value":"-4.39" + } + }, + { + "id":"bb5a2034-f961-4e3e-b64c-2e4700c64ed3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T23:54:03.731Z", + "completed":"2017-06-19T23:54:03.731Z", + "new_balance":"5345.38", + "value":"-4.92" + } + }, + { + "id":"ce21b5d5-d716-429f-b391-948e5fab9640", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T11:35:55.618Z", + "completed":"2017-06-21T11:35:55.618Z", + "new_balance":"5333.02", + "value":"-12.36" + } + }, + { + "id":"9660e750-8b60-4ecf-92d5-d029ecaa37f6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T23:50:30.375Z", + "completed":"2017-06-21T23:50:30.375Z", + "new_balance":"5323.41", + "value":"-9.61" + } + }, + { + "id":"700d58e2-aa2c-4cdb-9a74-ecf4c7462539", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T06:29:19.171Z", + "completed":"2017-06-22T06:29:19.171Z", + "new_balance":"5322.26", + "value":"-1.15" + } + }, + { + "id":"94a8e04b-5d74-4eea-bf8d-87aac98252ed", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T06:58:37.488Z", + "completed":"2017-06-22T06:58:37.488Z", + "new_balance":"5318.79", + "value":"-3.47" + } + }, + { + "id":"e208ca06-83f8-4656-ba26-9b3f581d770f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T18:56:19.051Z", + "completed":"2017-06-22T18:56:19.051Z", + "new_balance":"5318.32", + "value":"-0.47" + } + }, + { + "id":"cff998a7-6f84-459e-a58e-a3d6e98640f9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T15:18:03.332Z", + "completed":"2017-06-23T15:18:03.332Z", + "new_balance":"5316.97", + "value":"-1.35" + } + }, + { + "id":"e35fcf41-a755-4230-b3db-278b26e09dc5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T20:49:42.548Z", + "completed":"2017-06-24T20:49:42.548Z", + "new_balance":"5314.58", + "value":"-2.39" + } + }, + { + "id":"17fdde56-fe71-4cd3-b83a-2cea59ab5bf9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T20:17:31.992Z", + "completed":"2017-06-26T20:17:31.992Z", + "new_balance":"5313.38", + "value":"-1.20" + } + }, + { + "id":"6d764841-a8ca-4748-8e39-cda5d497489a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T13:12:26.686Z", + "completed":"2017-06-30T13:12:26.686Z", + "new_balance":"5291.02", + "value":"-22.36" + } + }, + { + "id":"8b4ed808-1bd3-47a2-b48f-d59c3a77d931", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:02:12.233Z", + "completed":"2017-06-30T20:02:12.233Z", + "new_balance":"5287.30", + "value":"-3.72" + } + }, + { + "id":"2fe332b0-a995-4191-94b6-9dbeb8b8b5cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T11:28:04.746Z", + "completed":"2017-07-01T11:28:04.746Z", + "new_balance":"5470.00", + "value":"182.70" + } + }, + { + "id":"120e97a4-7e5e-4961-8cf7-234edad7e041", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T23:33:40.371Z", + "completed":"2017-07-01T23:33:40.371Z", + "new_balance":"5610.98", + "value":"140.98" + } + }, + { + "id":"ea1c92e5-b02f-4005-bfea-c3c6237d6f84", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T19:36:01.758Z", + "completed":"2017-07-03T19:36:01.758Z", + "new_balance":"5579.26", + "value":"-31.72" + } + }, + { + "id":"037e8e36-4b70-4e54-96b0-e0286a23ff80", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T09:19:21.488Z", + "completed":"2017-07-04T09:19:21.488Z", + "new_balance":"5574.44", + "value":"-4.82" + } + }, + { + "id":"af4fcc3e-2815-42bc-86eb-f666a1fab609", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:48:48.786Z", + "completed":"2017-07-04T13:48:48.786Z", + "new_balance":"5573.77", + "value":"-0.67" + } + }, + { + "id":"cd6484ce-d119-4097-bc7e-7fd4114b4821", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T18:50:43.777Z", + "completed":"2017-07-04T18:50:43.777Z", + "new_balance":"5572.03", + "value":"-1.74" + } + }, + { + "id":"4cf10850-a05c-4acc-aab4-b7760ffdba56", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T23:49:40.950Z", + "completed":"2017-07-05T23:49:40.950Z", + "new_balance":"5570.63", + "value":"-1.40" + } + }, + { + "id":"d65b3a00-628c-40a9-b9dd-02e05e78c8cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T16:24:10.510Z", + "completed":"2017-07-07T16:24:10.510Z", + "new_balance":"5570.11", + "value":"-0.52" + } + }, + { + "id":"864f45f8-1e8a-4305-b0fd-07c630aee22f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T02:54:48.272Z", + "completed":"2017-07-11T02:54:48.272Z", + "new_balance":"5568.51", + "value":"-1.60" + } + }, + { + "id":"2b547820-4b15-47b2-82c0-d61cd78d0a8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T08:39:41.816Z", + "completed":"2017-07-11T08:39:41.816Z", + "new_balance":"5566.20", + "value":"-2.31" + } + }, + { + "id":"69147f12-b957-4ef4-a02e-8cce29e4d1e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T12:14:28.155Z", + "completed":"2017-07-11T12:14:28.155Z", + "new_balance":"5564.33", + "value":"-1.87" + } + }, + { + "id":"4117523e-a126-4132-86ac-5054eaacbc0c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T15:59:44.003Z", + "completed":"2017-07-11T15:59:44.003Z", + "new_balance":"5561.74", + "value":"-2.59" + } + }, + { + "id":"415a508e-99f5-4a5e-b8c5-e4437cb95741", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T19:05:10.865Z", + "completed":"2017-07-11T19:05:10.865Z", + "new_balance":"5560.06", + "value":"-1.68" + } + }, + { + "id":"d28f774d-787c-450a-ac8a-980dcf028d9e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T00:38:09.127Z", + "completed":"2017-07-13T00:38:09.127Z", + "new_balance":"5553.93", + "value":"-6.13" + } + }, + { + "id":"fe6c0d03-f846-4342-b6b2-88b6c494a564", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T01:53:31.787Z", + "completed":"2017-07-13T01:53:31.787Z", + "new_balance":"5546.23", + "value":"-7.70" + } + }, + { + "id":"4fb062da-dbc7-4fa5-a56c-62d4423e52f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T04:42:52.918Z", + "completed":"2017-07-16T04:42:52.918Z", + "new_balance":"5541.70", + "value":"-4.53" + } + }, + { + "id":"b45ad0de-e0e9-44aa-a1e6-4c1683d1dfc0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T23:17:22.487Z", + "completed":"2017-07-16T23:17:22.487Z", + "new_balance":"5550.69", + "value":"8.99" + } + }, + { + "id":"38e732a7-d960-4291-beb4-3d7ef206b858", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T06:28:24.923Z", + "completed":"2017-07-17T06:28:24.923Z", + "new_balance":"5549.88", + "value":"-0.81" + } + }, + { + "id":"9b05d5c3-545f-4605-9d92-e1c449b216f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T16:39:31.166Z", + "completed":"2017-07-17T16:39:31.166Z", + "new_balance":"5549.41", + "value":"-0.47" + } + }, + { + "id":"d68e3243-3838-43ab-9523-bb5d4e42d48c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T23:12:09.724Z", + "completed":"2017-07-19T23:12:09.724Z", + "new_balance":"5543.93", + "value":"-5.48" + } + }, + { + "id":"6e1a2037-c461-4b8d-b880-8cd3c1172b69", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T23:19:58.354Z", + "completed":"2017-07-21T23:19:58.354Z", + "new_balance":"5541.50", + "value":"-2.43" + } + }, + { + "id":"7f9cfe09-b12d-4bcc-b083-f1142f1a6714", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T16:55:34.166Z", + "completed":"2017-07-23T16:55:34.166Z", + "new_balance":"5538.20", + "value":"-3.30" + } + }, + { + "id":"a3c7f366-8c09-4a4d-bf3a-40c0c534ad10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T19:39:59.918Z", + "completed":"2017-07-25T19:39:59.918Z", + "new_balance":"5536.63", + "value":"-1.57" + } + }, + { + "id":"bbc697ac-fffc-4ac2-ba30-9c85a9dd0fb1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T06:35:15.398Z", + "completed":"2017-07-27T06:35:15.398Z", + "new_balance":"5536.11", + "value":"-0.52" + } + }, + { + "id":"39054879-950c-464a-8c2d-eea7559ae29d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T11:19:42.509Z", + "completed":"2017-07-28T11:19:42.509Z", + "new_balance":"5532.39", + "value":"-3.72" + } + }, + { + "id":"d3847a5f-cb24-43fa-ba1d-639de3e5a3ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T12:16:16.673Z", + "completed":"2017-07-28T12:16:16.673Z", + "new_balance":"5510.03", + "value":"-22.36" + } + }, + { + "id":"f5b65b92-fcdc-456b-8844-f7cc125a3aef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:54:40.126Z", + "completed":"2017-08-01T03:54:40.126Z", + "new_balance":"5651.01", + "value":"140.98" + } + }, + { + "id":"0b3ea970-3168-42e2-8b62-d8e9717889d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T14:39:15.656Z", + "completed":"2017-08-03T14:39:15.656Z", + "new_balance":"5637.91", + "value":"-13.10" + } + }, + { + "id":"d5274b2d-acc2-4118-8214-0090aeaad80d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T21:29:43.157Z", + "completed":"2017-08-03T21:29:43.157Z", + "new_balance":"5606.19", + "value":"-31.72" + } + }, + { + "id":"0ce10df0-3e52-445b-b853-9c49b5b06c31", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T16:14:34.804Z", + "completed":"2017-08-04T16:14:34.804Z", + "new_balance":"5604.87", + "value":"-1.32" + } + }, + { + "id":"38d4f1d8-73c7-4570-99ab-8cdae14f5da9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T01:20:11.654Z", + "completed":"2017-08-07T01:20:11.654Z", + "new_balance":"5602.68", + "value":"-2.19" + } + }, + { + "id":"3fdec350-279a-4162-b024-b477c7810099", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T12:27:34.738Z", + "completed":"2017-08-07T12:27:34.738Z", + "new_balance":"5602.01", + "value":"-0.67" + } + }, + { + "id":"2ba0c305-42ef-42c7-9484-8d2619ba40d9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T21:34:15.835Z", + "completed":"2017-08-07T21:34:15.835Z", + "new_balance":"5599.70", + "value":"-2.31" + } + }, + { + "id":"82ceee04-e7c3-4688-b2f6-0c0e4d1f288b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T05:52:09.486Z", + "completed":"2017-08-08T05:52:09.486Z", + "new_balance":"5595.13", + "value":"-4.57" + } + }, + { + "id":"d7348bf9-9376-478b-8be0-668d9842815e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T12:37:50.729Z", + "completed":"2017-08-08T12:37:50.729Z", + "new_balance":"5590.99", + "value":"-4.14" + } + }, + { + "id":"efb8562f-e85d-4e1b-a9f1-3e905a6db43d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T18:09:04.810Z", + "completed":"2017-08-08T18:09:04.810Z", + "new_balance":"5583.29", + "value":"-7.70" + } + }, + { + "id":"6384b670-7ec1-48b6-b0d9-f0de3fd99305", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T03:28:45.784Z", + "completed":"2017-08-09T03:28:45.784Z", + "new_balance":"5580.89", + "value":"-2.40" + } + }, + { + "id":"27b73404-1260-4518-8e02-98ffed8f00b3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T00:10:37.202Z", + "completed":"2017-08-11T00:10:37.202Z", + "new_balance":"5580.37", + "value":"-0.52" + } + }, + { + "id":"701ac415-fd23-47be-a473-9e5aed728bd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T03:55:38.095Z", + "completed":"2017-08-14T03:55:38.095Z", + "new_balance":"5577.49", + "value":"-2.88" + } + }, + { + "id":"1b4fef9f-da2b-4da5-b8f3-ed36fdf27d29", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T05:56:00.524Z", + "completed":"2017-08-15T05:56:00.524Z", + "new_balance":"5575.18", + "value":"-2.31" + } + }, + { + "id":"340b90ee-9759-40b2-b485-7fa98074b438", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T16:38:23.931Z", + "completed":"2017-08-17T16:38:23.931Z", + "new_balance":"5574.71", + "value":"-0.47" + } + }, + { + "id":"0b6c79a8-abba-4b46-a4f3-8d974eb8aa61", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T23:51:19.333Z", + "completed":"2017-08-17T23:51:19.333Z", + "new_balance":"5570.10", + "value":"-4.61" + } + }, + { + "id":"02b60c0d-0f81-4efd-a039-b44cf3bfd6c9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T18:02:29.659Z", + "completed":"2017-08-19T18:02:29.659Z", + "new_balance":"5569.51", + "value":"-0.59" + } + }, + { + "id":"1d678ff4-9809-491b-891d-ffe52ad35eb9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T22:31:08.470Z", + "completed":"2017-08-25T22:31:08.470Z", + "new_balance":"5580.91", + "value":"11.40" + } + }, + { + "id":"70269e6e-79b6-4a37-bd3a-7521938233d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T20:31:42.352Z", + "completed":"2017-08-28T20:31:42.352Z", + "new_balance":"5558.55", + "value":"-22.36" + } + }, + { + "id":"867f2453-d994-4873-b5d0-36044a7172ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T22:06:36.619Z", + "completed":"2017-08-28T22:06:36.619Z", + "new_balance":"5554.83", + "value":"-3.72" + } + }, + { + "id":"2af0b3ed-9adc-427e-8328-9173e28d3ea5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T12:27:49.564Z", + "completed":"2017-09-01T12:27:49.564Z", + "new_balance":"5695.81", + "value":"140.98" + } + }, + { + "id":"6540f0a4-e1f7-49bb-90d6-40cbee3a4b5a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T02:51:42.625Z", + "completed":"2017-09-03T02:51:42.625Z", + "new_balance":"5664.09", + "value":"-31.72" + } + }, + { + "id":"a8e6224d-4653-483a-ae04-4f2399152735", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T04:15:02.411Z", + "completed":"2017-09-04T04:15:02.411Z", + "new_balance":"5662.04", + "value":"-2.05" + } + }, + { + "id":"d2c92e1e-4e03-478b-b545-ef39de4fbe63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T12:42:00.384Z", + "completed":"2017-09-04T12:42:00.384Z", + "new_balance":"5658.74", + "value":"-3.30" + } + }, + { + "id":"a6c49726-6f05-4745-9dd7-a0ee1edfe982", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:43:09.563Z", + "completed":"2017-09-04T19:43:09.563Z", + "new_balance":"5655.28", + "value":"-3.46" + } + }, + { + "id":"d8383091-7eab-45dc-aa5b-e261d05edff5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T23:25:14.069Z", + "completed":"2017-09-04T23:25:14.069Z", + "new_balance":"5650.67", + "value":"-4.61" + } + }, + { + "id":"89a4af7f-e824-4c4f-bcf9-cc8ae9675f5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T07:29:22.804Z", + "completed":"2017-09-05T07:29:22.804Z", + "new_balance":"5650.20", + "value":"-0.47" + } + }, + { + "id":"ca89a33f-d747-4987-ba97-607cdc1d8cd9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T07:31:43.884Z", + "completed":"2017-09-05T07:31:43.884Z", + "new_balance":"5642.46", + "value":"-7.74" + } + }, + { + "id":"fb24c28c-45c8-4ea2-8609-697a26b66d33", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T09:10:42.053Z", + "completed":"2017-09-05T09:10:42.053Z", + "new_balance":"5641.16", + "value":"-1.30" + } + }, + { + "id":"3a5fcb03-d88e-4789-839b-710305903741", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T13:14:05.859Z", + "completed":"2017-09-05T13:14:05.859Z", + "new_balance":"5634.52", + "value":"-6.64" + } + }, + { + "id":"4d2c5039-9a8a-4089-b4ec-c130fb066eb7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T18:06:25.652Z", + "completed":"2017-09-05T18:06:25.652Z", + "new_balance":"5626.82", + "value":"-7.70" + } + }, + { + "id":"8279ff1a-332f-43b6-aeea-ca2d073e518c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T22:16:26.372Z", + "completed":"2017-09-05T22:16:26.372Z", + "new_balance":"5620.07", + "value":"-6.75" + } + }, + { + "id":"604d86d1-9992-4b48-8957-0d273400f0af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T00:38:30.848Z", + "completed":"2017-09-07T00:38:30.848Z", + "new_balance":"5619.30", + "value":"-0.77" + } + }, + { + "id":"44835a97-21e7-415e-a937-4abc4d8febc6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:12:05.007Z", + "completed":"2017-09-07T03:12:05.007Z", + "new_balance":"5618.50", + "value":"-0.80" + } + }, + { + "id":"596097ea-e022-4bd8-9884-39ca15b8ea82", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T05:18:12.166Z", + "completed":"2017-09-07T05:18:12.166Z", + "new_balance":"5618.03", + "value":"-0.47" + } + }, + { + "id":"bc9da5e0-b882-48ad-b069-5f6bfb186f56", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T21:35:23.269Z", + "completed":"2017-09-07T21:35:23.269Z", + "new_balance":"5617.23", + "value":"-0.80" + } + }, + { + "id":"e6fb27c1-a719-4461-a706-9b690eb2e561", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T19:51:59.514Z", + "completed":"2017-09-10T19:51:59.514Z", + "new_balance":"5614.52", + "value":"-2.71" + } + }, + { + "id":"91e3d7e7-33a8-499c-bfa4-477d77037edb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T11:19:45.482Z", + "completed":"2017-09-11T11:19:45.482Z", + "new_balance":"5611.80", + "value":"-2.72" + } + }, + { + "id":"4f21783d-4420-4fbd-ad60-f38739c2c74e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T17:05:57.928Z", + "completed":"2017-09-11T17:05:57.928Z", + "new_balance":"5611.33", + "value":"-0.47" + } + }, + { + "id":"4fb767bf-9773-4cd8-85ef-17531493ec8c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T19:36:22.984Z", + "completed":"2017-09-11T19:36:22.984Z", + "new_balance":"5609.73", + "value":"-1.60" + } + }, + { + "id":"515ab76f-a853-44d6-a93c-20cc38dd7be1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T06:59:06.915Z", + "completed":"2017-09-12T06:59:06.915Z", + "new_balance":"5603.57", + "value":"-6.16" + } + }, + { + "id":"f45836d7-8da8-402a-8a98-29357a8bff5f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T08:25:26.092Z", + "completed":"2017-09-12T08:25:26.092Z", + "new_balance":"5603.10", + "value":"-0.47" + } + }, + { + "id":"43063a97-22a3-4512-9e6c-c56f6c2299f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T08:59:48.462Z", + "completed":"2017-09-12T08:59:48.462Z", + "new_balance":"5600.51", + "value":"-2.59" + } + }, + { + "id":"9c1b9412-85c0-4fb3-a04a-f861e86b3947", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T13:26:50.892Z", + "completed":"2017-09-12T13:26:50.892Z", + "new_balance":"5590.36", + "value":"-10.15" + } + }, + { + "id":"7fbe3ea6-609a-4964-bd2f-def9174869c7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T13:52:21.602Z", + "completed":"2017-09-13T13:52:21.602Z", + "new_balance":"5587.78", + "value":"-2.58" + } + }, + { + "id":"0e59e97e-bed1-4962-8bde-461b9849da64", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T13:24:58.781Z", + "completed":"2017-09-14T13:24:58.781Z", + "new_balance":"5587.31", + "value":"-0.47" + } + }, + { + "id":"3773cbfa-6a62-446c-bfee-72c994332c2a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T13:27:40.108Z", + "completed":"2017-09-14T13:27:40.108Z", + "new_balance":"5582.39", + "value":"-4.92" + } + }, + { + "id":"a8c420f1-beec-4322-a7c3-19b936135f10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T07:09:48.848Z", + "completed":"2017-09-16T07:09:48.848Z", + "new_balance":"5578.27", + "value":"-4.12" + } + }, + { + "id":"e0395d33-55b5-4e09-a0ff-3e9b665c12f8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T10:05:11.085Z", + "completed":"2017-09-18T10:05:11.085Z", + "new_balance":"5573.88", + "value":"-4.39" + } + }, + { + "id":"72987446-e519-4ddc-bbc4-d79036f8f9a6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T12:08:15.309Z", + "completed":"2017-09-21T12:08:15.309Z", + "new_balance":"5561.52", + "value":"-12.36" + } + }, + { + "id":"6c5bdab8-ed03-4d9f-94bf-423482bfc372", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T20:46:54.262Z", + "completed":"2017-09-21T20:46:54.262Z", + "new_balance":"5551.91", + "value":"-9.61" + } + }, + { + "id":"c26ee3df-b41f-484d-a863-7d8f5348b705", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T23:40:35.405Z", + "completed":"2017-09-23T23:40:35.405Z", + "new_balance":"5548.44", + "value":"-3.47" + } + }, + { + "id":"ae0d3c1a-2cae-470c-b7b3-8e7277820126", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T09:15:00.645Z", + "completed":"2017-09-24T09:15:00.645Z", + "new_balance":"5547.97", + "value":"-0.47" + } + }, + { + "id":"8743d8d5-ea50-41d4-a104-af84b571c01d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:19:31.957Z", + "completed":"2017-09-26T07:19:31.957Z", + "new_balance":"5546.82", + "value":"-1.15" + } + }, + { + "id":"2d85bf99-b8bc-4e44-bb06-722647652998", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T10:48:08.779Z", + "completed":"2017-09-26T10:48:08.779Z", + "new_balance":"5544.43", + "value":"-2.39" + } + }, + { + "id":"f4084f15-5ab2-4364-8aa6-794b026426d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T21:07:34.175Z", + "completed":"2017-09-26T21:07:34.175Z", + "new_balance":"5543.08", + "value":"-1.35" + } + }, + { + "id":"50b125ab-a7df-4461-a591-5db29dc81099", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T10:45:35.763Z", + "completed":"2017-09-27T10:45:35.763Z", + "new_balance":"5541.88", + "value":"-1.20" + } + }, + { + "id":"051c5e7e-6ffa-4278-aa6c-508303694db3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T05:58:03.071Z", + "completed":"2017-09-28T05:58:03.071Z", + "new_balance":"5538.16", + "value":"-3.72" + } + }, + { + "id":"f3253f89-e6fb-4158-b48e-bcbe1e33aa8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T21:16:39.738Z", + "completed":"2017-09-28T21:16:39.738Z", + "new_balance":"5515.80", + "value":"-22.36" + } + }, + { + "id":"6131e229-ec45-4c3e-8dd4-46b73919d9da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T08:02:54.998Z", + "completed":"2017-10-01T08:02:54.998Z", + "new_balance":"5656.78", + "value":"140.98" + } + }, + { + "id":"5df4d4aa-76cd-4c87-87bb-93e49fd88ae3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T10:05:47.937Z", + "completed":"2017-10-01T10:05:47.937Z", + "new_balance":"5839.48", + "value":"182.70" + } + }, + { + "id":"285c3e16-b556-47bb-832e-c191c83086b7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T12:29:38.453Z", + "completed":"2017-10-01T12:29:38.453Z", + "new_balance":"5807.76", + "value":"-31.72" + } + }, + { + "id":"c7574579-0757-444a-b323-808cbf33dd4f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T00:11:57.812Z", + "completed":"2017-10-03T00:11:57.812Z", + "new_balance":"5802.94", + "value":"-4.82" + } + }, + { + "id":"f3513764-0db6-48aa-9eaa-475a02a5e1e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:42:41.471Z", + "completed":"2017-10-03T11:42:41.471Z", + "new_balance":"5801.20", + "value":"-1.74" + } + }, + { + "id":"4fe3e700-f717-4364-9419-7164a2af6fd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T19:40:00.892Z", + "completed":"2017-10-03T19:40:00.892Z", + "new_balance":"5800.53", + "value":"-0.67" + } + }, + { + "id":"85140134-6fe1-43e0-8f23-46adaf07c13f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T16:06:44.744Z", + "completed":"2017-10-05T16:06:44.744Z", + "new_balance":"5799.13", + "value":"-1.40" + } + }, + { + "id":"160d4205-3d5d-45d2-9255-5cddde0ec5f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:53:32.452Z", + "completed":"2017-10-05T20:53:32.452Z", + "new_balance":"5798.61", + "value":"-0.52" + } + }, + { + "id":"b9425f81-2b64-4019-bf7a-4813e87fe5e8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T17:49:32.811Z", + "completed":"2017-10-06T17:49:32.811Z", + "new_balance":"5797.01", + "value":"-1.60" + } + }, + { + "id":"3afb9bd8-92da-4226-9c8f-8431783b8a83", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T04:56:12.464Z", + "completed":"2017-10-09T04:56:12.464Z", + "new_balance":"5794.42", + "value":"-2.59" + } + }, + { + "id":"c941e630-8cac-49c6-80d5-f5d9c1dc3e1b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:26:44.156Z", + "completed":"2017-10-10T23:26:44.156Z", + "new_balance":"5792.74", + "value":"-1.68" + } + }, + { + "id":"86dd8691-089e-4615-8559-bc44ed7469c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T07:18:45.342Z", + "completed":"2017-10-11T07:18:45.342Z", + "new_balance":"5790.87", + "value":"-1.87" + } + }, + { + "id":"e730d5ab-d5ea-4b1b-b1c0-dc4a0632dfef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T18:06:55.779Z", + "completed":"2017-10-11T18:06:55.779Z", + "new_balance":"5788.56", + "value":"-2.31" + } + }, + { + "id":"ecfee757-f18f-467d-ae8a-636986c845a5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T06:03:42.247Z", + "completed":"2017-10-14T06:03:42.247Z", + "new_balance":"5782.43", + "value":"-6.13" + } + }, + { + "id":"91c0f79e-58a2-4463-b87f-5d098de60c1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T22:53:49.832Z", + "completed":"2017-10-14T22:53:49.832Z", + "new_balance":"5774.73", + "value":"-7.70" + } + }, + { + "id":"49a4c79e-825f-405e-b744-a596d7eee2b4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T02:20:58.647Z", + "completed":"2017-10-17T02:20:58.647Z", + "new_balance":"5770.20", + "value":"-4.53" + } + }, + { + "id":"97a513c1-a128-45b9-807f-ce0e79f17e14", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:03:16.592Z", + "completed":"2017-10-18T06:03:16.592Z", + "new_balance":"5764.72", + "value":"-5.48" + } + }, + { + "id":"f2d0b2ff-4a32-402e-acc2-548f30d1867a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T09:02:43.170Z", + "completed":"2017-10-18T09:02:43.170Z", + "new_balance":"5764.25", + "value":"-0.47" + } + }, + { + "id":"8b8148d1-f655-420d-892b-c07db2a6f75d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T09:59:23.455Z", + "completed":"2017-10-18T09:59:23.455Z", + "new_balance":"5763.44", + "value":"-0.81" + } + }, + { + "id":"963c2c16-6a86-45cf-b78e-88e2a4104cdd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T14:32:58.412Z", + "completed":"2017-10-23T14:32:58.412Z", + "new_balance":"5761.01", + "value":"-2.43" + } + }, + { + "id":"0b8b80f8-d4c5-42b9-8ab2-f254e7b3fa72", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T16:00:12.290Z", + "completed":"2017-10-24T16:00:12.290Z", + "new_balance":"5759.44", + "value":"-1.57" + } + }, + { + "id":"dbb43908-6726-4394-960c-e1ce02bdea28", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T19:03:40.969Z", + "completed":"2017-10-24T19:03:40.969Z", + "new_balance":"5756.14", + "value":"-3.30" + } + }, + { + "id":"7ada0ac0-2fd7-4d44-a2df-9c8da289c71d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T10:17:33.713Z", + "completed":"2017-10-26T10:17:33.713Z", + "new_balance":"5755.62", + "value":"-0.52" + } + }, + { + "id":"9d2415c3-80da-4e25-be0c-3a24ac05a1ef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T21:20:07.379Z", + "completed":"2017-10-30T21:20:07.379Z", + "new_balance":"5733.26", + "value":"-22.36" + } + }, + { + "id":"599bbf69-dc57-4b54-9db1-d250f113ffe1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T23:01:08.601Z", + "completed":"2017-10-30T23:01:08.601Z", + "new_balance":"5729.54", + "value":"-3.72" + } + }, + { + "id":"d7bb0483-2966-41a6-a2dd-827b4e871956", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T00:37:34.458Z", + "completed":"2017-11-02T00:37:34.458Z", + "new_balance":"5716.44", + "value":"-13.10" + } + }, + { + "id":"e82ab21a-3569-4dd6-a57d-ccd6abf0e26d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:45:02.891Z", + "completed":"2017-11-02T02:45:02.891Z", + "new_balance":"5715.77", + "value":"-0.67" + } + }, + { + "id":"d712a237-685e-4af7-bfbc-91cbe1c50da6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T12:25:42.392Z", + "completed":"2017-11-02T12:25:42.392Z", + "new_balance":"5714.45", + "value":"-1.32" + } + }, + { + "id":"88b91a53-77d1-4e3a-989e-3fb1a572285f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T21:03:48.540Z", + "completed":"2017-11-02T21:03:48.540Z", + "new_balance":"5682.73", + "value":"-31.72" + } + }, + { + "id":"52f80e2f-59f4-43a5-8912-313c0b08a8f0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T12:13:04.540Z", + "completed":"2017-11-06T12:13:04.540Z", + "new_balance":"5680.54", + "value":"-2.19" + } + }, + { + "id":"f430a559-dfa9-45ec-8e6a-bdbd7e20b295", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T14:28:09.328Z", + "completed":"2017-11-06T14:28:09.328Z", + "new_balance":"5678.23", + "value":"-2.31" + } + }, + { + "id":"8c1d1dd3-169c-4dbc-8ea5-bd747836e17f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T01:15:38.085Z", + "completed":"2017-11-07T01:15:38.085Z", + "new_balance":"5670.53", + "value":"-7.70" + } + }, + { + "id":"20be0591-6d90-4f2c-9ebc-489e043c5cb7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T06:42:58.289Z", + "completed":"2017-11-07T06:42:58.289Z", + "new_balance":"5665.96", + "value":"-4.57" + } + }, + { + "id":"8e5654e5-8cae-44bd-b97b-1cbb3c1c6077", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T15:43:51.144Z", + "completed":"2017-11-09T15:43:51.144Z", + "new_balance":"5806.94", + "value":"140.98" + } + }, + { + "id":"e29fbab8-fee7-4d19-a0fb-fce4762da45d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T13:30:06.966Z", + "completed":"2017-11-14T13:30:06.966Z", + "new_balance":"5804.54", + "value":"-2.40" + } + }, + { + "id":"3c65b234-0ede-4071-a46a-a7ce9cd398a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T14:15:42.404Z", + "completed":"2017-11-14T14:15:42.404Z", + "new_balance":"5800.40", + "value":"-4.14" + } + }, + { + "id":"8520cdc5-0f0d-4b7f-ba85-5e896ca85f08", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T22:58:34.865Z", + "completed":"2017-11-16T22:58:34.865Z", + "new_balance":"5799.88", + "value":"-0.52" + } + }, + { + "id":"f70db6fd-6c09-4403-963c-fa0dd24d7c4d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T11:18:54.175Z", + "completed":"2017-11-20T11:18:54.175Z", + "new_balance":"5797.00", + "value":"-2.88" + } + }, + { + "id":"7f468f18-4ae0-4d77-b62e-1f195292c7f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T08:32:16.561Z", + "completed":"2017-11-23T08:32:16.561Z", + "new_balance":"5796.53", + "value":"-0.47" + } + }, + { + "id":"c84e8fd3-765c-4d5d-991a-9160df007b10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T18:30:43.297Z", + "completed":"2017-11-23T18:30:43.297Z", + "new_balance":"5794.22", + "value":"-2.31" + } + }, + { + "id":"ee6de5b6-d066-4767-8641-caa4b37ec0c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T23:59:04.033Z", + "completed":"2017-11-23T23:59:04.033Z", + "new_balance":"5789.61", + "value":"-4.61" + } + }, + { + "id":"3ab14920-ab86-4ee3-ba40-18a25d122b7d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T13:15:22.770Z", + "completed":"2017-11-28T13:15:22.770Z", + "new_balance":"5789.02", + "value":"-0.59" + } + }, + { + "id":"149bbd20-1c5a-43a7-a55d-022aee59fc03", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T00:59:37.461Z", + "completed":"2017-11-30T00:59:37.461Z", + "new_balance":"5785.30", + "value":"-3.72" + } + }, + { + "id":"481fcb2f-cf21-4b7c-b506-1a0bb8b6e3c7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T17:33:55.349Z", + "completed":"2017-11-30T17:33:55.349Z", + "new_balance":"5762.94", + "value":"-22.36" + } + }, + { + "id":"de7bab73-70bd-401b-91fb-8c56b831de07", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T05:35:56.230Z", + "completed":"2017-12-01T05:35:56.230Z", + "new_balance":"5731.22", + "value":"-31.72" + } + }, + { + "id":"cd424692-5465-4d32-8594-11e0dccae900", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:23:40.026Z", + "completed":"2017-12-01T16:23:40.026Z", + "new_balance":"5872.20", + "value":"140.98" + } + }, + { + "id":"52a3134d-a815-4a75-a12b-755f010752f1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T09:30:54.418Z", + "completed":"2017-12-04T09:30:54.418Z", + "new_balance":"5870.15", + "value":"-2.05" + } + }, + { + "id":"56c9193f-6ea2-4bb7-a81f-a68337a2ec3b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:33:10.577Z", + "completed":"2017-12-04T10:33:10.577Z", + "new_balance":"5866.69", + "value":"-3.46" + } + }, + { + "id":"82d23327-e35d-4b9e-ab17-fead025b4860", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T05:52:05.783Z", + "completed":"2017-12-11T05:52:05.783Z", + "new_balance":"5862.08", + "value":"-4.61" + } + }, + { + "id":"8e745d19-4bee-4075-b23d-edb145884f2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T16:32:06.069Z", + "completed":"2017-12-11T16:32:06.069Z", + "new_balance":"5858.78", + "value":"-3.30" + } + }, + { + "id":"3ac54e06-95ef-41bc-8c27-32e25c95cc61", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T02:36:15.420Z", + "completed":"2017-12-14T02:36:15.420Z", + "new_balance":"5852.14", + "value":"-6.64" + } + }, + { + "id":"77740ef6-50fd-40ea-8028-a5557a436a67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:44:11.867Z", + "completed":"2017-12-14T03:44:11.867Z", + "new_balance":"5851.34", + "value":"-0.80" + } + }, + { + "id":"d634ddbc-5d24-47ae-81a4-ec027e70f327", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T07:02:39.787Z", + "completed":"2017-12-14T07:02:39.787Z", + "new_balance":"5843.60", + "value":"-7.74" + } + }, + { + "id":"63f38bc2-473e-4c97-a54a-0cb44bb7b0a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T07:31:58.703Z", + "completed":"2017-12-14T07:31:58.703Z", + "new_balance":"5842.80", + "value":"-0.80" + } + }, + { + "id":"07bbdb4f-46c0-4fd5-af1e-5c51b66566bd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T10:29:23.408Z", + "completed":"2017-12-14T10:29:23.408Z", + "new_balance":"5842.33", + "value":"-0.47" + } + }, + { + "id":"72215af6-d018-41be-884d-d25acff3e309", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T15:39:38.257Z", + "completed":"2017-12-14T15:39:38.257Z", + "new_balance":"5835.58", + "value":"-6.75" + } + }, + { + "id":"134057cc-e69d-485d-bb48-da993f11a3a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T16:54:46.471Z", + "completed":"2017-12-14T16:54:46.471Z", + "new_balance":"5834.28", + "value":"-1.30" + } + }, + { + "id":"b7a35287-7d6b-400c-8f26-b139b9f9fe69", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T17:48:29.698Z", + "completed":"2017-12-14T17:48:29.698Z", + "new_balance":"5826.58", + "value":"-7.70" + } + }, + { + "id":"e2efb7d4-845c-4f37-82c7-1791c3de7b39", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:27:15.080Z", + "completed":"2017-12-14T20:27:15.080Z", + "new_balance":"5826.11", + "value":"-0.47" + } + }, + { + "id":"169cd824-b79a-4d2c-aaa1-03e7bbd18194", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:08:48.361Z", + "completed":"2017-12-15T04:08:48.361Z", + "new_balance":"5825.34", + "value":"-0.77" + } + }, + { + "id":"00cf02a8-ba05-493e-909e-c10d146f996b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:45:10.442Z", + "completed":"2017-12-15T04:45:10.442Z", + "new_balance":"5822.63", + "value":"-2.71" + } + }, + { + "id":"3904b393-94fe-4da1-84bf-831fc32b14af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T09:42:47.630Z", + "completed":"2017-12-15T09:42:47.630Z", + "new_balance":"5822.16", + "value":"-0.47" + } + }, + { + "id":"a2c046a6-4637-450a-b1a1-e8f29aeaf0fa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T00:54:36.810Z", + "completed":"2017-12-18T00:54:36.810Z", + "new_balance":"5819.44", + "value":"-2.72" + } + }, + { + "id":"5b279026-e277-43e7-9541-57d1f8e70cbd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T02:54:41.119Z", + "completed":"2017-12-18T02:54:41.119Z", + "new_balance":"5809.29", + "value":"-10.15" + } + }, + { + "id":"7a3100f3-0cfa-40e9-b278-0f82db796764", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T07:16:02.499Z", + "completed":"2017-12-18T07:16:02.499Z", + "new_balance":"5808.82", + "value":"-0.47" + } + }, + { + "id":"09e3c9a9-691a-4c4b-9e00-b0712d05b5d6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T12:03:14.822Z", + "completed":"2017-12-18T12:03:14.822Z", + "new_balance":"5808.35", + "value":"-0.47" + } + }, + { + "id":"45c86f6d-ae3a-492d-9d1f-24c542e4ab9f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T15:21:25.840Z", + "completed":"2017-12-18T15:21:25.840Z", + "new_balance":"5802.19", + "value":"-6.16" + } + }, + { + "id":"852acefa-7532-4089-88e7-38c808addd7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T17:13:39.893Z", + "completed":"2017-12-18T17:13:39.893Z", + "new_balance":"5800.59", + "value":"-1.60" + } + }, + { + "id":"4c78ae81-efce-48e5-8ed0-b964d2bfa7d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T20:04:15.719Z", + "completed":"2017-12-18T20:04:15.719Z", + "new_balance":"5798.00", + "value":"-2.59" + } + }, + { + "id":"6b6e70f7-4ea0-4028-9de0-8d0533821581", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T23:51:34.608Z", + "completed":"2017-12-18T23:51:34.608Z", + "new_balance":"5795.42", + "value":"-2.58" + } + }, + { + "id":"3bd02938-90b5-4854-ae23-4c989559e754", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T09:45:54.612Z", + "completed":"2017-12-19T09:45:54.612Z", + "new_balance":"5791.03", + "value":"-4.39" + } + }, + { + "id":"42c88dda-62ad-4e79-b1be-a4d79f00f548", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T09:47:57.731Z", + "completed":"2017-12-19T09:47:57.731Z", + "new_balance":"5786.11", + "value":"-4.92" + } + }, + { + "id":"a15d8ef5-9a32-4469-b641-1121a5761a3a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T15:38:18.578Z", + "completed":"2017-12-19T15:38:18.578Z", + "new_balance":"5781.99", + "value":"-4.12" + } + }, + { + "id":"81dad466-ef77-4cb0-9317-66efb5d3505d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T05:49:43.866Z", + "completed":"2017-12-21T05:49:43.866Z", + "new_balance":"5778.52", + "value":"-3.47" + } + }, + { + "id":"e926af8c-42a5-4b06-86be-f1ce40157e42", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T11:58:03.498Z", + "completed":"2017-12-21T11:58:03.498Z", + "new_balance":"5766.16", + "value":"-12.36" + } + }, + { + "id":"b20b4585-ed48-4b44-a438-743a5cb404b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T15:01:20.725Z", + "completed":"2017-12-21T15:01:20.725Z", + "new_balance":"5756.55", + "value":"-9.61" + } + }, + { + "id":"b7bcff83-fbdd-46ab-964f-09b1d351afd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T16:19:46.530Z", + "completed":"2017-12-21T16:19:46.530Z", + "new_balance":"5755.40", + "value":"-1.15" + } + }, + { + "id":"aebd8a40-da17-4b3d-b0c1-a92119be5fed", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T22:17:31.012Z", + "completed":"2017-12-21T22:17:31.012Z", + "new_balance":"5754.93", + "value":"-0.47" + } + }, + { + "id":"9c91fe81-8b82-4000-a8b8-e6dc97bd78d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T03:33:52.268Z", + "completed":"2017-12-24T03:33:52.268Z", + "new_balance":"5753.73", + "value":"-1.20" + } + }, + { + "id":"7b3e3839-781b-4284-a11c-de4f594cd02b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:34:39.134Z", + "completed":"2017-12-24T05:34:39.134Z", + "new_balance":"5751.34", + "value":"-2.39" + } + }, + { + "id":"8f3a2706-f464-41cf-aeda-7f416692962d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T09:21:52.619Z", + "completed":"2017-12-24T09:21:52.619Z", + "new_balance":"5749.99", + "value":"-1.35" + } + }, + { + "id":"461caccf-6e1d-44a6-88a0-c54405893e6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T22:13:28.918Z", + "completed":"2017-12-30T22:13:28.918Z", + "new_balance":"5727.63", + "value":"-22.36" + } + }, + { + "id":"d082fa4e-d65e-4ed7-be0a-243dd0f358e5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T23:31:16.218Z", + "completed":"2017-12-30T23:31:16.218Z", + "new_balance":"5723.91", + "value":"-3.72" + } + }, + { + "id":"c599b8b1-8ead-4924-b7f3-812bce87ef0b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:12:54.392Z", + "completed":"2016-03-02T07:12:54.392Z", + "new_balance":"90344.31", + "value":"-832.36" + } + }, + { + "id":"8e6b2292-4369-45ed-b699-a41929c3b2a6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:21:38.839Z", + "completed":"2016-03-02T14:21:38.839Z", + "new_balance":"89965.98", + "value":"-378.33" + } + }, + { + "id":"42cfe933-1eb9-444b-a0fa-b6b3e3730a4f", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T05:16:39.604Z", + "completed":"2016-03-03T05:16:39.604Z", + "new_balance":"85380.82", + "value":"-4585.16" + } + }, + { + "id":"acd345cf-9042-48e7-8774-9e232630ee10", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T09:25:47.522Z", + "completed":"2016-03-03T09:25:47.522Z", + "new_balance":"85306.89", + "value":"-73.93" + } + }, + { + "id":"72e97ede-c74f-4a7d-8300-ed88c194ecde", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T00:25:36.859Z", + "completed":"2016-03-04T00:25:36.859Z", + "new_balance":"84942.60", + "value":"-364.29" + } + }, + { + "id":"dc6e1760-cbc3-4e81-9367-e53b27fd9028", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T13:13:44.378Z", + "completed":"2016-03-04T13:13:44.378Z", + "new_balance":"84856.04", + "value":"-86.56" + } + }, + { + "id":"6248d329-b979-4fda-a346-ed014df2f472", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T15:53:31.388Z", + "completed":"2016-03-07T15:53:31.388Z", + "new_balance":"84802.86", + "value":"-53.18" + } + }, + { + "id":"8618523a-87ee-4578-bfb3-667c2c1caec3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T00:34:41.258Z", + "completed":"2016-03-09T00:34:41.258Z", + "new_balance":"83970.50", + "value":"-832.36" + } + }, + { + "id":"489d6619-1e2c-4455-b198-09169ee351ef", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T21:51:53.542Z", + "completed":"2016-03-16T21:51:53.542Z", + "new_balance":"83425.34", + "value":"-545.16" + } + }, + { + "id":"16ab7a69-8565-46be-b277-708cab477dcd", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T15:37:18.592Z", + "completed":"2016-03-25T15:37:18.592Z", + "new_balance":"82880.18", + "value":"-545.16" + } + }, + { + "id":"502ccf6a-c637-4697-a329-604e5579f73a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T05:23:40.843Z", + "completed":"2016-03-30T05:23:40.843Z", + "new_balance":"80248.97", + "value":"-2631.21" + } + }, + { + "id":"98def093-59b0-4b1f-b9d6-38319357e094", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T04:41:01.029Z", + "completed":"2016-06-07T04:41:01.029Z", + "new_balance":"75663.81", + "value":"-4585.16" + } + }, + { + "id":"32f9188c-97f8-4488-9151-383c8cc819d4", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T19:43:48.403Z", + "completed":"2016-06-07T19:43:48.403Z", + "new_balance":"74831.45", + "value":"-832.36" + } + }, + { + "id":"b0cffa49-66e9-4517-9548-bf3e772c4f9e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T20:13:04.852Z", + "completed":"2016-06-07T20:13:04.852Z", + "new_balance":"74453.12", + "value":"-378.33" + } + }, + { + "id":"9c1f08d0-a565-497d-8a86-43198627d827", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:47:13.729Z", + "completed":"2016-06-10T12:47:13.729Z", + "new_balance":"74366.56", + "value":"-86.56" + } + }, + { + "id":"9db211fd-98cc-4718-b809-1de914976387", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T20:37:34.575Z", + "completed":"2016-06-14T20:37:34.575Z", + "new_balance":"74002.27", + "value":"-364.29" + } + }, + { + "id":"dcc5de62-1168-4172-b113-43545909fce1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T04:52:17.617Z", + "completed":"2016-06-19T04:52:17.617Z", + "new_balance":"73928.34", + "value":"-73.93" + } + }, + { + "id":"b8536fd9-dd4b-4910-a567-66573616352e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T21:34:42.236Z", + "completed":"2016-06-19T21:34:42.236Z", + "new_balance":"73875.16", + "value":"-53.18" + } + }, + { + "id":"c8349810-74ae-4607-a2e4-d1dde724c5be", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T07:36:33.875Z", + "completed":"2016-06-20T07:36:33.875Z", + "new_balance":"73042.80", + "value":"-832.36" + } + }, + { + "id":"443adaa7-5584-464d-9897-bf4178ced4b6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T14:40:10.674Z", + "completed":"2016-06-28T14:40:10.674Z", + "new_balance":"72497.64", + "value":"-545.16" + } + }, + { + "id":"7e01f312-3f0a-404f-b850-0ed8f52351d3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T12:26:27.725Z", + "completed":"2016-07-01T12:26:27.725Z", + "new_balance":"69866.43", + "value":"-2631.21" + } + }, + { + "id":"91d8f631-ee70-4f6b-b1a3-5a3fc2cc6912", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T16:59:14.640Z", + "completed":"2016-07-01T16:59:14.640Z", + "new_balance":"69321.27", + "value":"-545.16" + } + }, + { + "id":"685ce513-82ef-4798-88fc-c75d0b3f0395", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T00:10:24.931Z", + "completed":"2016-09-02T00:10:24.931Z", + "new_balance":"68942.94", + "value":"-378.33" + } + }, + { + "id":"971fe2fc-689c-48fc-86a5-4f540838a272", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T16:33:06.087Z", + "completed":"2016-09-02T16:33:06.087Z", + "new_balance":"68110.58", + "value":"-832.36" + } + }, + { + "id":"394772d3-588b-4022-a4dc-9a84443a3211", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:23:02.047Z", + "completed":"2016-09-03T02:23:02.047Z", + "new_balance":"68036.65", + "value":"-73.93" + } + }, + { + "id":"57cb6df1-ce9b-4d8d-83df-1911c4256eec", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T21:08:57.098Z", + "completed":"2016-09-03T21:08:57.098Z", + "new_balance":"63451.49", + "value":"-4585.16" + } + }, + { + "id":"29a65ee1-52eb-4131-bd0b-ec53c430242a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T21:50:49.261Z", + "completed":"2016-09-03T21:50:49.261Z", + "new_balance":"63404.59", + "value":"-46.90" + } + }, + { + "id":"29bb4ab1-35eb-4ef3-973f-bc7f6dda6ced", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T22:53:58.419Z", + "completed":"2016-09-04T22:53:58.419Z", + "new_balance":"63040.30", + "value":"-364.29" + } + }, + { + "id":"02075c41-7970-479b-bb38-535833482d05", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T09:20:47.288Z", + "completed":"2016-09-07T09:20:47.288Z", + "new_balance":"62987.12", + "value":"-53.18" + } + }, + { + "id":"a3b7f6c9-7930-4537-9c52-6171fae839d2", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T13:50:33.547Z", + "completed":"2016-09-09T13:50:33.547Z", + "new_balance":"62154.76", + "value":"-832.36" + } + }, + { + "id":"0dc56329-84d1-4f34-bbbb-0fa556496989", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T15:52:37.535Z", + "completed":"2016-09-16T15:52:37.535Z", + "new_balance":"61609.60", + "value":"-545.16" + } + }, + { + "id":"cfc24dc0-990b-484c-89ed-d0610f811511", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T12:15:55.381Z", + "completed":"2016-09-25T12:15:55.381Z", + "new_balance":"61064.44", + "value":"-545.16" + } + }, + { + "id":"a11dfc14-277f-495a-b57a-1c2559fe2f12", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T17:14:05.339Z", + "completed":"2016-09-30T17:14:05.339Z", + "new_balance":"58433.23", + "value":"-2631.21" + } + }, + { + "id":"1a9ea7a5-4bc4-489f-9fee-c6b3e1921943", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T03:47:08.415Z", + "completed":"2016-12-07T03:47:08.415Z", + "new_balance":"58054.90", + "value":"-378.33" + } + }, + { + "id":"3940c248-1de5-46de-be14-dcc60faac0bc", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T06:19:13.687Z", + "completed":"2016-12-07T06:19:13.687Z", + "new_balance":"57222.54", + "value":"-832.36" + } + }, + { + "id":"19449cc2-464b-4594-8666-5c0adfebbf72", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T09:32:45.553Z", + "completed":"2016-12-07T09:32:45.553Z", + "new_balance":"52637.38", + "value":"-4585.16" + } + }, + { + "id":"6464e249-878b-4d4f-a5c4-b3846e889669", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T13:13:24.544Z", + "completed":"2016-12-11T13:13:24.544Z", + "new_balance":"52563.45", + "value":"-73.93" + } + }, + { + "id":"3146f91e-2a79-4a7b-8a33-ad29c418c2a3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T13:29:06.440Z", + "completed":"2016-12-11T13:29:06.440Z", + "new_balance":"52476.89", + "value":"-86.56" + } + }, + { + "id":"26279d7b-8de9-4056-b158-5ee876e8050b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T15:37:38.352Z", + "completed":"2016-12-14T15:37:38.352Z", + "new_balance":"52112.60", + "value":"-364.29" + } + }, + { + "id":"6ff47768-2537-4439-bb69-46abeacc6345", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T02:52:50.533Z", + "completed":"2016-12-20T02:52:50.533Z", + "new_balance":"52059.42", + "value":"-53.18" + } + }, + { + "id":"c8b36ba2-5174-4591-b32f-7b3d52a02ff0", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T06:32:55.577Z", + "completed":"2016-12-22T06:32:55.577Z", + "new_balance":"51227.06", + "value":"-832.36" + } + }, + { + "id":"dd9ddb56-7731-4740-ab2f-b0ce526b8150", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T07:23:54.243Z", + "completed":"2016-12-28T07:23:54.243Z", + "new_balance":"50681.90", + "value":"-545.16" + } + }, + { + "id":"7409d9cb-d473-459e-bf5e-b49efc018a55", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T05:47:03.021Z", + "completed":"2016-12-31T05:47:03.021Z", + "new_balance":"50136.74", + "value":"-545.16" + } + }, + { + "id":"c412d495-9a0d-49ba-9ecb-57fcfae92e98", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T20:01:47.241Z", + "completed":"2016-12-31T20:01:47.241Z", + "new_balance":"47505.53", + "value":"-2631.21" + } + }, + { + "id":"4a1a9206-543d-4fa5-90ba-a07e3e85b654", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T18:55:06.724Z", + "completed":"2017-03-02T18:55:06.724Z", + "new_balance":"46673.17", + "value":"-832.36" + } + }, + { + "id":"78f2de38-9506-49fd-bf01-40d25d80ac3b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T20:54:59.208Z", + "completed":"2017-03-02T20:54:59.208Z", + "new_balance":"46294.84", + "value":"-378.33" + } + }, + { + "id":"549b319e-cd2f-49c8-b278-579309a63c3a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T06:21:53.457Z", + "completed":"2017-03-03T06:21:53.457Z", + "new_balance":"41709.68", + "value":"-4585.16" + } + }, + { + "id":"f023a572-afcb-4df5-97c8-ba18d27b264c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T17:47:06.474Z", + "completed":"2017-03-03T17:47:06.474Z", + "new_balance":"41635.75", + "value":"-73.93" + } + }, + { + "id":"708a57be-6294-462d-a966-43b7804d2d8b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T01:12:09.890Z", + "completed":"2017-03-04T01:12:09.890Z", + "new_balance":"41271.46", + "value":"-364.29" + } + }, + { + "id":"ab41f899-0549-4351-b032-1de07480db79", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:03:03.400Z", + "completed":"2017-03-04T23:03:03.400Z", + "new_balance":"41184.90", + "value":"-86.56" + } + }, + { + "id":"c53bd319-af64-4164-87b6-da20081cc2dd", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T22:38:25.822Z", + "completed":"2017-03-07T22:38:25.822Z", + "new_balance":"41131.72", + "value":"-53.18" + } + }, + { + "id":"08d60068-8c06-445d-87cc-5fc1879e3430", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T17:56:57.343Z", + "completed":"2017-03-09T17:56:57.343Z", + "new_balance":"40299.36", + "value":"-832.36" + } + }, + { + "id":"ab2cd18a-56bf-44d2-8658-2c30a92729ef", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T10:28:39.745Z", + "completed":"2017-03-16T10:28:39.745Z", + "new_balance":"39754.20", + "value":"-545.16" + } + }, + { + "id":"e4effb14-1dd3-4a48-a1fe-141ed5daffa8", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:45:24.651Z", + "completed":"2017-03-25T14:45:24.651Z", + "new_balance":"39209.04", + "value":"-545.16" + } + }, + { + "id":"f13c9058-b854-410c-ad2c-422de2ee3f74", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T19:26:06.807Z", + "completed":"2017-03-30T19:26:06.807Z", + "new_balance":"36577.83", + "value":"-2631.21" + } + }, + { + "id":"a989b9db-8dfc-45a4-afd5-7f93d849296c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T05:36:26.870Z", + "completed":"2017-06-07T05:36:26.870Z", + "new_balance":"36199.50", + "value":"-378.33" + } + }, + { + "id":"d1b570b3-fef3-4c5a-97a5-614e32bd4ee0", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T13:05:54.068Z", + "completed":"2017-06-07T13:05:54.068Z", + "new_balance":"31614.34", + "value":"-4585.16" + } + }, + { + "id":"916eabe8-7867-49ec-88d9-8aebc7c427c1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T15:33:22.711Z", + "completed":"2017-06-07T15:33:22.711Z", + "new_balance":"30781.98", + "value":"-832.36" + } + }, + { + "id":"e238e2f1-0a6f-4aae-a1a6-8741b1b6cec1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T19:12:51.482Z", + "completed":"2017-06-10T19:12:51.482Z", + "new_balance":"30695.42", + "value":"-86.56" + } + }, + { + "id":"4d77ab61-a856-43ab-b5e5-3a7742686ead", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T17:59:20.974Z", + "completed":"2017-06-14T17:59:20.974Z", + "new_balance":"30331.13", + "value":"-364.29" + } + }, + { + "id":"bbea602a-c5bd-4b80-9e49-ad38d71c8c08", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T15:09:12.481Z", + "completed":"2017-06-19T15:09:12.481Z", + "new_balance":"30257.20", + "value":"-73.93" + } + }, + { + "id":"85694ebd-f461-43db-89b6-dc6cf360e1cb", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T19:57:51.427Z", + "completed":"2017-06-19T19:57:51.427Z", + "new_balance":"30204.02", + "value":"-53.18" + } + }, + { + "id":"b0b18d67-29bc-4edd-8ca7-63ce5ce28332", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T19:14:52.252Z", + "completed":"2017-06-20T19:14:52.252Z", + "new_balance":"29371.66", + "value":"-832.36" + } + }, + { + "id":"f946b360-48fa-4fb2-ae77-45efece054b6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T20:53:17.765Z", + "completed":"2017-06-28T20:53:17.765Z", + "new_balance":"28826.50", + "value":"-545.16" + } + }, + { + "id":"0cad7bdb-419f-44d4-bb30-5e9f95dae45e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T03:00:52.464Z", + "completed":"2017-07-01T03:00:52.464Z", + "new_balance":"28281.34", + "value":"-545.16" + } + }, + { + "id":"ed173991-dff7-4f00-ac1e-a742378414a8", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T07:10:34.787Z", + "completed":"2017-07-01T07:10:34.787Z", + "new_balance":"25650.13", + "value":"-2631.21" + } + }, + { + "id":"d95d010b-6f7b-46df-a606-a915df4d615c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:20:50.064Z", + "completed":"2017-09-02T08:20:50.064Z", + "new_balance":"24817.77", + "value":"-832.36" + } + }, + { + "id":"541efa27-dc38-48ab-84f1-7fc9dacb13f7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T14:36:41.993Z", + "completed":"2017-09-02T14:36:41.993Z", + "new_balance":"24439.44", + "value":"-378.33" + } + }, + { + "id":"f4c7e80a-9a89-4d2b-887a-3356b5a664f7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T13:32:11.608Z", + "completed":"2017-09-03T13:32:11.608Z", + "new_balance":"24365.51", + "value":"-73.93" + } + }, + { + "id":"13392d3d-c112-4288-8499-15319c83cc98", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T14:06:51.778Z", + "completed":"2017-09-03T14:06:51.778Z", + "new_balance":"19780.35", + "value":"-4585.16" + } + }, + { + "id":"89f20832-1181-4d62-8197-2814ce389d59", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T17:34:07.270Z", + "completed":"2017-09-03T17:34:07.270Z", + "new_balance":"19733.45", + "value":"-46.90" + } + }, + { + "id":"d9dff8bc-2f8d-4f26-8176-6ea2b727b553", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T18:48:37.014Z", + "completed":"2017-09-04T18:48:37.014Z", + "new_balance":"19369.16", + "value":"-364.29" + } + }, + { + "id":"fee00f5b-e26b-4759-86df-460ddcb4db89", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T07:22:53.255Z", + "completed":"2017-09-07T07:22:53.255Z", + "new_balance":"19315.98", + "value":"-53.18" + } + }, + { + "id":"54b50d2f-bfd1-486d-95ec-b71c20597013", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T16:31:42.364Z", + "completed":"2017-09-09T16:31:42.364Z", + "new_balance":"18483.62", + "value":"-832.36" + } + }, + { + "id":"4f467f05-3d29-4fae-bf2b-abf79b0776ca", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T15:08:00.677Z", + "completed":"2017-09-16T15:08:00.677Z", + "new_balance":"17938.46", + "value":"-545.16" + } + }, + { + "id":"baf2213c-c23e-40ae-81e6-f0808a627e3a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T14:16:42.852Z", + "completed":"2017-09-25T14:16:42.852Z", + "new_balance":"17393.30", + "value":"-545.16" + } + }, + { + "id":"8c199b84-f998-4ce6-b4ed-f8253a492b64", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T05:56:31.741Z", + "completed":"2017-09-30T05:56:31.741Z", + "new_balance":"14762.09", + "value":"-2631.21" + } + }, + { + "id":"e57c2a81-0d07-4246-857d-b2cd0f9a12e7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T07:16:28.859Z", + "completed":"2017-12-07T07:16:28.859Z", + "new_balance":"10176.93", + "value":"-4585.16" + } + }, + { + "id":"672f2151-8820-4dd6-8ed0-eefe7bb86ca2", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:10:43.228Z", + "completed":"2017-12-07T12:10:43.228Z", + "new_balance":"9798.60", + "value":"-378.33" + } + }, + { + "id":"cdfecceb-85cd-49f1-b7ce-91bd8915dcdf", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:46:51.879Z", + "completed":"2017-12-07T12:46:51.879Z", + "new_balance":"8966.24", + "value":"-832.36" + } + }, + { + "id":"74c887d0-01b1-4629-99ad-f0f1f18a1352", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T11:57:23.375Z", + "completed":"2017-12-11T11:57:23.375Z", + "new_balance":"8879.68", + "value":"-86.56" + } + }, + { + "id":"78623d58-6c06-4558-9f7f-742e0eb0f50a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T23:24:43.793Z", + "completed":"2017-12-11T23:24:43.793Z", + "new_balance":"8805.75", + "value":"-73.93" + } + }, + { + "id":"1b3cda2f-d7f7-4262-a6cf-8db98eb8fcc6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T13:45:07.445Z", + "completed":"2017-12-14T13:45:07.445Z", + "new_balance":"8441.46", + "value":"-364.29" + } + }, + { + "id":"94949457-8d0a-4cf0-961d-a0f6b1d5a044", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T19:54:06.473Z", + "completed":"2017-12-20T19:54:06.473Z", + "new_balance":"8388.28", + "value":"-53.18" + } + }, + { + "id":"91ff128f-14a4-4561-a030-b94193a6eb21", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T08:55:04.709Z", + "completed":"2017-12-22T08:55:04.709Z", + "new_balance":"7555.92", + "value":"-832.36" + } + }, + { + "id":"8dd30380-1eb0-4b59-9467-8c2434f93683", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:33:33.132Z", + "completed":"2017-12-28T01:33:33.132Z", + "new_balance":"7010.76", + "value":"-545.16" + } + }, + { + "id":"4a01b208-895d-4953-9cb2-1156c62c4c84", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T21:36:20.576Z", + "completed":"2017-12-31T21:36:20.576Z", + "new_balance":"4379.55", + "value":"-2631.21" + } + }, + { + "id":"498e5f4b-0bb7-4906-a9d4-039bd2dc13b4", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T21:47:19.434Z", + "completed":"2017-12-31T21:47:19.434Z", + "new_balance":"3834.39", + "value":"-545.16" + } + }, + { + "id":"b366f395-2458-4340-9b99-d5798efc7691", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T06:51:44.683Z", + "completed":"2016-03-01T06:51:44.683Z", + "new_balance":"10075.98", + "value":"-45.51" + } + }, + { + "id":"44bff993-f29f-4a12-9dc0-6dba3c2194cc", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T09:35:16.185Z", + "completed":"2016-03-02T09:35:16.185Z", + "new_balance":"10002.05", + "value":"-73.93" + } + }, + { + "id":"b64d612d-1585-48ec-a8cc-961a0c33ef5b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T06:56:01.058Z", + "completed":"2016-03-06T06:56:01.058Z", + "new_balance":"9950.95", + "value":"-51.10" + } + }, + { + "id":"b694e521-1427-4bef-967a-524991277146", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T10:15:40.210Z", + "completed":"2016-03-11T10:15:40.210Z", + "new_balance":"9944.26", + "value":"-6.69" + } + }, + { + "id":"2e60f7a9-e0a3-4eb1-bfc7-b676772bbabf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T20:09:36.416Z", + "completed":"2016-03-13T20:09:36.416Z", + "new_balance":"9940.56", + "value":"-3.70" + } + }, + { + "id":"2526b843-2105-4032-b5d2-ce8ab22c675f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T10:53:18.835Z", + "completed":"2016-03-16T10:53:18.835Z", + "new_balance":"9623.35", + "value":"-317.21" + } + }, + { + "id":"fce70e82-9f6f-414b-b5c3-bd5cee0c2a8d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T14:17:51.164Z", + "completed":"2016-03-17T14:17:51.164Z", + "new_balance":"9581.01", + "value":"-42.34" + } + }, + { + "id":"e02ebc96-aeaa-4ff3-a256-f2c027434584", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T18:07:16.608Z", + "completed":"2016-03-17T18:07:16.608Z", + "new_balance":"9417.53", + "value":"-163.48" + } + }, + { + "id":"7b0553bf-6371-40cb-8ae4-e8050adef94e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T22:46:22.224Z", + "completed":"2016-03-19T22:46:22.224Z", + "new_balance":"9413.83", + "value":"-3.70" + } + }, + { + "id":"2f9a9f59-6109-435e-8a4c-035b2e9b0b0a", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T00:36:30.041Z", + "completed":"2016-03-21T00:36:30.041Z", + "new_balance":"9394.25", + "value":"-19.58" + } + }, + { + "id":"ab1a18ef-33fc-4759-82a5-0338052df0bc", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T17:48:09.916Z", + "completed":"2016-03-23T17:48:09.916Z", + "new_balance":"9348.74", + "value":"-45.51" + } + }, + { + "id":"2756a0ae-e0e5-4f53-808c-c7a3f5370895", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T23:46:20.036Z", + "completed":"2016-03-24T23:46:20.036Z", + "new_balance":"9342.05", + "value":"-6.69" + } + }, + { + "id":"8bc95fb9-f7e6-4bff-930c-5f7996312b31", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T00:24:34.554Z", + "completed":"2016-03-26T00:24:34.554Z", + "new_balance":"9329.04", + "value":"-13.01" + } + }, + { + "id":"0c9b5872-bf00-48c6-907f-a4d6343e0192", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T00:42:37.175Z", + "completed":"2016-04-01T00:42:37.175Z", + "new_balance":"9316.03", + "value":"-13.01" + } + }, + { + "id":"9d75699d-d3cb-40b7-a963-78340edc426c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T13:15:03.846Z", + "completed":"2016-06-01T13:15:03.846Z", + "new_balance":"9270.52", + "value":"-45.51" + } + }, + { + "id":"e93eeab1-81ad-478e-939d-b3b9c16c6eaa", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T09:12:34.183Z", + "completed":"2016-06-04T09:12:34.183Z", + "new_balance":"9196.59", + "value":"-73.93" + } + }, + { + "id":"cfd574f7-7b0f-48aa-8344-180e4d78d61d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T08:46:39.012Z", + "completed":"2016-06-19T08:46:39.012Z", + "new_balance":"9145.49", + "value":"-51.10" + } + }, + { + "id":"b16907ac-76d6-41f6-965b-05ca415a3d4d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T10:35:57.324Z", + "completed":"2016-06-21T10:35:57.324Z", + "new_balance":"9138.80", + "value":"-6.69" + } + }, + { + "id":"cbf4f23e-d2ca-4efc-8e23-859bcca70445", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T06:08:03.097Z", + "completed":"2016-06-24T06:08:03.097Z", + "new_balance":"9135.10", + "value":"-3.70" + } + }, + { + "id":"8074d2f3-d8bf-43d7-93b2-a202570c4393", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T05:20:13.975Z", + "completed":"2016-06-28T05:20:13.975Z", + "new_balance":"8817.89", + "value":"-317.21" + } + }, + { + "id":"bfe3d36e-48e7-48f5-ba28-45d5951445c1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T06:51:02.510Z", + "completed":"2016-06-28T06:51:02.510Z", + "new_balance":"8654.41", + "value":"-163.48" + } + }, + { + "id":"1fb91939-0d44-454f-ba22-e0eed28a322d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T09:43:51.733Z", + "completed":"2016-06-28T09:43:51.733Z", + "new_balance":"8612.07", + "value":"-42.34" + } + }, + { + "id":"9fd09127-74d7-4453-b08c-e417a67418d4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T23:58:13.792Z", + "completed":"2016-06-29T23:58:13.792Z", + "new_balance":"8608.37", + "value":"-3.70" + } + }, + { + "id":"4798b264-9825-49fb-bc61-4c8131feebed", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T04:09:51.704Z", + "completed":"2016-06-30T04:09:51.704Z", + "new_balance":"8562.86", + "value":"-45.51" + } + }, + { + "id":"1589cd55-3fa0-416f-b2a4-89f6f9881322", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T15:12:09.961Z", + "completed":"2016-06-30T15:12:09.961Z", + "new_balance":"8543.28", + "value":"-19.58" + } + }, + { + "id":"7b96f98f-3209-49df-9ca4-e61343e77ef3", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T19:04:49.693Z", + "completed":"2016-06-30T19:04:49.693Z", + "new_balance":"8536.59", + "value":"-6.69" + } + }, + { + "id":"8b7bdc0e-f422-442b-abfc-04db7990c4c4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T07:03:48.004Z", + "completed":"2016-09-01T07:03:48.004Z", + "new_balance":"8512.73", + "value":"-23.86" + } + }, + { + "id":"db214bc0-52ee-430c-bdb8-399a20cc9895", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T11:11:24.835Z", + "completed":"2016-09-02T11:11:24.835Z", + "new_balance":"8438.80", + "value":"-73.93" + } + }, + { + "id":"7c71d199-0f8e-4049-a10d-f856f85b6d6b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T00:49:44.985Z", + "completed":"2016-09-07T00:49:44.985Z", + "new_balance":"8387.70", + "value":"-51.10" + } + }, + { + "id":"f277a4d4-179a-4385-9b15-475aca20ae8e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T06:59:22.814Z", + "completed":"2016-09-11T06:59:22.814Z", + "new_balance":"8381.01", + "value":"-6.69" + } + }, + { + "id":"a17e3ecd-1a16-46c4-9c6e-2b6d825b9929", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T03:48:18.602Z", + "completed":"2016-09-15T03:48:18.602Z", + "new_balance":"8370.10", + "value":"-10.91" + } + }, + { + "id":"8d2f9bb1-f2f1-4b65-9625-5082502c3736", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T12:16:09.855Z", + "completed":"2016-09-17T12:16:09.855Z", + "new_balance":"8327.76", + "value":"-42.34" + } + }, + { + "id":"c3fb1dc8-0820-461b-bca0-759215a1fefb", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T14:17:35.274Z", + "completed":"2016-09-17T14:17:35.274Z", + "new_balance":"8164.28", + "value":"-163.48" + } + }, + { + "id":"c7fc9346-e0d3-46c4-a98a-b1e1e15a25e2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T21:20:08.637Z", + "completed":"2016-09-17T21:20:08.637Z", + "new_balance":"7847.07", + "value":"-317.21" + } + }, + { + "id":"c5b29fb1-d3a5-44a4-8cc5-623f208233a2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T01:54:24.095Z", + "completed":"2016-09-19T01:54:24.095Z", + "new_balance":"7843.37", + "value":"-3.70" + } + }, + { + "id":"dc6ee7cc-6968-4ba7-829b-311f4c6ddec1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T00:52:06.735Z", + "completed":"2016-09-21T00:52:06.735Z", + "new_balance":"7823.79", + "value":"-19.58" + } + }, + { + "id":"3b986e19-1f30-4802-b176-536065e0ee5c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T12:37:24.088Z", + "completed":"2016-09-23T12:37:24.088Z", + "new_balance":"7778.28", + "value":"-45.51" + } + }, + { + "id":"4ecb9563-3171-4299-a51e-45565f46942d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T14:13:13.634Z", + "completed":"2016-09-24T14:13:13.634Z", + "new_balance":"7771.59", + "value":"-6.69" + } + }, + { + "id":"f53523d7-8ed1-49a4-9a7a-fc4bf51bac7d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T13:55:46.179Z", + "completed":"2016-09-27T13:55:46.179Z", + "new_balance":"7758.58", + "value":"-13.01" + } + }, + { + "id":"61e6699c-cc17-401c-9fba-4fa5bc182940", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T02:07:17.478Z", + "completed":"2016-10-01T02:07:17.478Z", + "new_balance":"7745.57", + "value":"-13.01" + } + }, + { + "id":"c9fcdf8a-7b02-47b8-96cf-addfd678b802", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T00:18:29.940Z", + "completed":"2016-12-01T00:18:29.940Z", + "new_balance":"7700.06", + "value":"-45.51" + } + }, + { + "id":"73c32535-5a69-4eca-b65f-026ab7dbf5b4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T19:54:08.847Z", + "completed":"2016-12-04T19:54:08.847Z", + "new_balance":"7626.13", + "value":"-73.93" + } + }, + { + "id":"f6253610-0214-4d2f-9284-260c7fbbfe37", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T17:49:46.605Z", + "completed":"2016-12-19T17:49:46.605Z", + "new_balance":"7575.03", + "value":"-51.10" + } + }, + { + "id":"e9fe7120-eab8-4405-ae02-eb3716fada4a", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T00:09:59.140Z", + "completed":"2016-12-24T00:09:59.140Z", + "new_balance":"7571.33", + "value":"-3.70" + } + }, + { + "id":"7cd0edf2-fa96-4a13-8d51-f43cff874095", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T20:57:53.887Z", + "completed":"2016-12-24T20:57:53.887Z", + "new_balance":"7564.64", + "value":"-6.69" + } + }, + { + "id":"8ce9c2c4-6378-4b3c-9da1-7878a1dad2d9", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T04:07:45.818Z", + "completed":"2016-12-28T04:07:45.818Z", + "new_balance":"7522.30", + "value":"-42.34" + } + }, + { + "id":"67e19631-fd36-48e7-bb50-37334061a96e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T13:48:04.563Z", + "completed":"2016-12-28T13:48:04.563Z", + "new_balance":"7205.09", + "value":"-317.21" + } + }, + { + "id":"96305a69-b624-48c6-9c33-194059c2130e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T15:15:15.173Z", + "completed":"2016-12-28T15:15:15.173Z", + "new_balance":"7041.61", + "value":"-163.48" + } + }, + { + "id":"635e8ddd-edf2-4195-84fe-3466b75a6396", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T17:52:04.139Z", + "completed":"2016-12-29T17:52:04.139Z", + "new_balance":"7037.91", + "value":"-3.70" + } + }, + { + "id":"fc80010c-d641-4931-b16c-00a52d278765", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T05:43:16.945Z", + "completed":"2016-12-30T05:43:16.945Z", + "new_balance":"6992.40", + "value":"-45.51" + } + }, + { + "id":"9b9a021d-0766-4262-99f3-5913703f0aa0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T11:07:09.332Z", + "completed":"2016-12-30T11:07:09.332Z", + "new_balance":"6985.71", + "value":"-6.69" + } + }, + { + "id":"1d17fca9-a5c5-4312-95d3-0390fe0a527e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T21:10:32.030Z", + "completed":"2016-12-30T21:10:32.030Z", + "new_balance":"6966.13", + "value":"-19.58" + } + }, + { + "id":"e8b2a3b6-f885-4673-9d6a-e1bca5d88f25", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T07:19:46.457Z", + "completed":"2017-03-01T07:19:46.457Z", + "new_balance":"6920.62", + "value":"-45.51" + } + }, + { + "id":"a6bb67df-e8f0-4f31-847b-b1e9dd222e14", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T10:36:10.662Z", + "completed":"2017-03-02T10:36:10.662Z", + "new_balance":"6846.69", + "value":"-73.93" + } + }, + { + "id":"02719642-4644-451b-8014-a6a41b46e593", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T12:34:25.028Z", + "completed":"2017-03-06T12:34:25.028Z", + "new_balance":"6795.59", + "value":"-51.10" + } + }, + { + "id":"c0531cb3-b809-49e2-805c-1de309a00faf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T04:55:22.622Z", + "completed":"2017-03-11T04:55:22.622Z", + "new_balance":"6788.90", + "value":"-6.69" + } + }, + { + "id":"5dca850e-1d30-40f2-888c-977221174c23", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T02:41:55.336Z", + "completed":"2017-03-13T02:41:55.336Z", + "new_balance":"6785.20", + "value":"-3.70" + } + }, + { + "id":"bd830949-e73b-480f-9284-19181996d1ad", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T18:20:30.798Z", + "completed":"2017-03-16T18:20:30.798Z", + "new_balance":"6467.99", + "value":"-317.21" + } + }, + { + "id":"7d02a482-03a3-4708-a4ab-043f4170a76f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T08:53:33.823Z", + "completed":"2017-03-17T08:53:33.823Z", + "new_balance":"6304.51", + "value":"-163.48" + } + }, + { + "id":"72029c1c-ccc5-4a08-8144-8d5c88fa1f94", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T12:01:35.268Z", + "completed":"2017-03-17T12:01:35.268Z", + "new_balance":"6262.17", + "value":"-42.34" + } + }, + { + "id":"e1a067e3-aa9b-4811-b565-3688defb7794", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T20:33:24.757Z", + "completed":"2017-03-19T20:33:24.757Z", + "new_balance":"6258.47", + "value":"-3.70" + } + }, + { + "id":"54934289-3cf1-48eb-8149-f1c6579599d5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T14:45:34.714Z", + "completed":"2017-03-21T14:45:34.714Z", + "new_balance":"6238.89", + "value":"-19.58" + } + }, + { + "id":"3ff4725f-1318-411b-8366-194f6d3088f5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T21:36:51.776Z", + "completed":"2017-03-23T21:36:51.776Z", + "new_balance":"6193.38", + "value":"-45.51" + } + }, + { + "id":"e62cb39f-049e-443b-bd32-038d7287fa48", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T13:02:52.481Z", + "completed":"2017-03-24T13:02:52.481Z", + "new_balance":"6186.69", + "value":"-6.69" + } + }, + { + "id":"351284ae-9164-4a23-95a1-ec1638d975da", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T08:40:40.719Z", + "completed":"2017-03-26T08:40:40.719Z", + "new_balance":"6173.68", + "value":"-13.01" + } + }, + { + "id":"51495bed-95ad-41d6-b952-f2b34c7b4c6f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T12:41:35.734Z", + "completed":"2017-04-01T12:41:35.734Z", + "new_balance":"6160.67", + "value":"-13.01" + } + }, + { + "id":"7ee6d545-26bf-4ee1-8d59-730a9ee23858", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T03:41:48.373Z", + "completed":"2017-06-01T03:41:48.373Z", + "new_balance":"6115.16", + "value":"-45.51" + } + }, + { + "id":"f87d35dd-e719-4822-989c-1fa5f52bd798", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T05:14:43.857Z", + "completed":"2017-06-04T05:14:43.857Z", + "new_balance":"6041.23", + "value":"-73.93" + } + }, + { + "id":"2001cd3c-6a73-4af7-9f41-910c79849c94", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T01:52:07.319Z", + "completed":"2017-06-19T01:52:07.319Z", + "new_balance":"5990.13", + "value":"-51.10" + } + }, + { + "id":"513598fb-250f-41cf-85ca-32eaadf252e3", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T21:23:41.431Z", + "completed":"2017-06-21T21:23:41.431Z", + "new_balance":"5983.44", + "value":"-6.69" + } + }, + { + "id":"f0e0a338-4a9c-4a26-a3e7-8e86b650b6eb", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T08:55:45.086Z", + "completed":"2017-06-24T08:55:45.086Z", + "new_balance":"5979.74", + "value":"-3.70" + } + }, + { + "id":"df03d7c1-f900-447a-bf19-1d8abe87e387", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T05:25:53.796Z", + "completed":"2017-06-28T05:25:53.796Z", + "new_balance":"5937.40", + "value":"-42.34" + } + }, + { + "id":"8e098c7b-6962-4c32-9f64-f3e1083e6cab", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T15:25:13.887Z", + "completed":"2017-06-28T15:25:13.887Z", + "new_balance":"5620.19", + "value":"-317.21" + } + }, + { + "id":"f91b89e2-fd02-4927-9651-d02415cbd339", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T16:34:28.812Z", + "completed":"2017-06-28T16:34:28.812Z", + "new_balance":"5456.71", + "value":"-163.48" + } + }, + { + "id":"dee30225-9414-4596-8907-159566b78eb6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T03:15:10.041Z", + "completed":"2017-06-29T03:15:10.041Z", + "new_balance":"5453.01", + "value":"-3.70" + } + }, + { + "id":"2af5a488-3062-4992-8151-e102efb8177c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T00:57:26.666Z", + "completed":"2017-06-30T00:57:26.666Z", + "new_balance":"5433.43", + "value":"-19.58" + } + }, + { + "id":"a31d6d16-f610-4bc3-9238-15d42f8379d2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T02:06:18.117Z", + "completed":"2017-06-30T02:06:18.117Z", + "new_balance":"5426.74", + "value":"-6.69" + } + }, + { + "id":"1d5efcba-b967-44a9-bd53-0e44529102c6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T15:34:59.856Z", + "completed":"2017-06-30T15:34:59.856Z", + "new_balance":"5381.23", + "value":"-45.51" + } + }, + { + "id":"c9e0f390-5318-4342-8146-33b02dc5a057", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T15:40:11.163Z", + "completed":"2017-09-01T15:40:11.163Z", + "new_balance":"5357.37", + "value":"-23.86" + } + }, + { + "id":"f6be8421-7cd2-44d1-884a-a60c9321f982", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T14:55:15.064Z", + "completed":"2017-09-02T14:55:15.064Z", + "new_balance":"5283.44", + "value":"-73.93" + } + }, + { + "id":"99403486-b214-4f1a-922d-d96e57f8db31", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T15:49:51.019Z", + "completed":"2017-09-07T15:49:51.019Z", + "new_balance":"5232.34", + "value":"-51.10" + } + }, + { + "id":"ffddbe15-5812-4053-a36b-59b18a4ff533", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T03:08:57.853Z", + "completed":"2017-09-11T03:08:57.853Z", + "new_balance":"5225.65", + "value":"-6.69" + } + }, + { + "id":"801a4442-7fa3-40e6-a862-8716faae01e5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T03:23:53.362Z", + "completed":"2017-09-15T03:23:53.362Z", + "new_balance":"5214.74", + "value":"-10.91" + } + }, + { + "id":"97e83548-704e-4a30-9959-134bf3b3c6d1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T04:34:04.479Z", + "completed":"2017-09-17T04:34:04.479Z", + "new_balance":"5051.26", + "value":"-163.48" + } + }, + { + "id":"ef54fa9b-fb0a-4a2e-be3c-2e63c0652b25", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T10:01:30.782Z", + "completed":"2017-09-17T10:01:30.782Z", + "new_balance":"5008.92", + "value":"-42.34" + } + }, + { + "id":"52292d20-3a4b-413f-a6d9-08ed8ceb8e7e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T15:11:15.880Z", + "completed":"2017-09-17T15:11:15.880Z", + "new_balance":"4691.71", + "value":"-317.21" + } + }, + { + "id":"d29fe752-9da8-4847-9487-c7202efaebcf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T02:06:57.588Z", + "completed":"2017-09-19T02:06:57.588Z", + "new_balance":"4688.01", + "value":"-3.70" + } + }, + { + "id":"936f0ebe-4eca-4229-8922-e668a76cacff", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T19:41:24.919Z", + "completed":"2017-09-21T19:41:24.919Z", + "new_balance":"4668.43", + "value":"-19.58" + } + }, + { + "id":"71256525-8e91-43b3-8cd6-35e2ff7af449", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T19:57:50.574Z", + "completed":"2017-09-23T19:57:50.574Z", + "new_balance":"4622.92", + "value":"-45.51" + } + }, + { + "id":"3d832e62-b55c-494a-b1c5-0c1dada89b7b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T08:54:44.614Z", + "completed":"2017-09-24T08:54:44.614Z", + "new_balance":"4616.23", + "value":"-6.69" + } + }, + { + "id":"75a88165-907b-42ba-ab1a-f5d6ef79f517", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:49:38.239Z", + "completed":"2017-09-27T21:49:38.239Z", + "new_balance":"4603.22", + "value":"-13.01" + } + }, + { + "id":"c264b5aa-59f9-4eef-b05b-265f9497bff7", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T05:07:14.655Z", + "completed":"2017-10-01T05:07:14.655Z", + "new_balance":"4590.21", + "value":"-13.01" + } + }, + { + "id":"1fbb69d6-22c6-4f50-92b2-451e2317c4f5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T00:03:44.992Z", + "completed":"2017-12-01T00:03:44.992Z", + "new_balance":"4544.70", + "value":"-45.51" + } + }, + { + "id":"cb7b9058-2ffb-4661-a0ee-f100c9f6e23f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T17:31:54.848Z", + "completed":"2017-12-04T17:31:54.848Z", + "new_balance":"4470.77", + "value":"-73.93" + } + }, + { + "id":"4659d340-852f-4014-be3d-0670bcb46e03", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:41:58.819Z", + "completed":"2017-12-19T10:41:58.819Z", + "new_balance":"4419.67", + "value":"-51.10" + } + }, + { + "id":"b2273076-4356-4ba5-862f-8d761ebc8a78", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T06:55:58.643Z", + "completed":"2017-12-24T06:55:58.643Z", + "new_balance":"4412.98", + "value":"-6.69" + } + }, + { + "id":"17cdc65e-cc47-4b34-80fc-16fe37ea39e0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T12:02:41.136Z", + "completed":"2017-12-24T12:02:41.136Z", + "new_balance":"4409.28", + "value":"-3.70" + } + }, + { + "id":"ad3f560e-efca-42af-acbb-eed3d8e3bfc4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T03:35:04.578Z", + "completed":"2017-12-28T03:35:04.578Z", + "new_balance":"4092.07", + "value":"-317.21" + } + }, + { + "id":"809bc1fc-87b0-4b17-b018-527de86bf432", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T15:15:09.580Z", + "completed":"2017-12-28T15:15:09.580Z", + "new_balance":"4049.73", + "value":"-42.34" + } + }, + { + "id":"67326419-ce71-49f6-83ed-429cdaa0e9c5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T18:32:32.959Z", + "completed":"2017-12-28T18:32:32.959Z", + "new_balance":"3886.25", + "value":"-163.48" + } + }, + { + "id":"d8846d7b-5841-4e6f-b95b-4e0b835545f7", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T15:21:25.987Z", + "completed":"2017-12-29T15:21:25.987Z", + "new_balance":"3882.55", + "value":"-3.70" + } + }, + { + "id":"e18910c9-e6b2-4b1c-88b5-e74c3f9cf4c0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T07:14:37.760Z", + "completed":"2017-12-30T07:14:37.760Z", + "new_balance":"3837.04", + "value":"-45.51" + } + }, + { + "id":"e98e4168-7662-49b0-a6c9-b595df0acbf6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T08:47:00.960Z", + "completed":"2017-12-30T08:47:00.960Z", + "new_balance":"3817.46", + "value":"-19.58" + } + }, + { + "id":"aa924c0a-e671-4b9d-be76-fff73af7507c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T18:27:23.370Z", + "completed":"2017-12-30T18:27:23.370Z", + "new_balance":"3810.77", + "value":"-6.69" + } + }, + { + "id":"e1cac2f3-0b8b-46f8-af16-1978d25434bd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:55:08.486Z", + "completed":"2016-01-01T02:55:08.486Z", + "new_balance":"2899.72", + "value":"-3.44" + } + }, + { + "id":"fe55c120-ab52-4913-8e53-f55da023a32b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T13:47:23.669Z", + "completed":"2016-01-01T13:47:23.669Z", + "new_balance":"2896.28", + "value":"-3.44" + } + }, + { + "id":"fcf6b56f-d00a-4bd4-8401-63d380f52c87", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T13:57:29.555Z", + "completed":"2016-01-01T13:57:29.555Z", + "new_balance":"2892.10", + "value":"-4.18" + } + }, + { + "id":"39bfc7a2-4138-4419-9109-018e1dfd5d45", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T17:48:34.087Z", + "completed":"2016-01-01T17:48:34.087Z", + "new_balance":"2884.40", + "value":"-7.70" + } + }, + { + "id":"4976ce70-590b-4afd-9247-8857844e1174", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T00:58:49.982Z", + "completed":"2016-01-05T00:58:49.982Z", + "new_balance":"2877.10", + "value":"-7.30" + } + }, + { + "id":"c0c5f459-90da-412d-9fe3-5840e20819b6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T13:06:23.336Z", + "completed":"2016-01-05T13:06:23.336Z", + "new_balance":"2867.06", + "value":"-10.04" + } + }, + { + "id":"e0b8136d-b40c-4ee3-a3d0-b13ec0772eea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T19:59:50.567Z", + "completed":"2016-01-08T19:59:50.567Z", + "new_balance":"2865.66", + "value":"-1.40" + } + }, + { + "id":"cb85ca04-7c38-48ec-bd64-227c89df9516", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T13:50:11.606Z", + "completed":"2016-01-10T13:50:11.606Z", + "new_balance":"2861.00", + "value":"-4.66" + } + }, + { + "id":"d1d990b9-cfa5-4605-997f-94ce68e0a1fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T12:01:03.309Z", + "completed":"2016-01-11T12:01:03.309Z", + "new_balance":"2855.59", + "value":"-5.41" + } + }, + { + "id":"bc9cb52f-30e3-460f-aec2-e0c634104baa", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T00:11:59.153Z", + "completed":"2016-01-12T00:11:59.153Z", + "new_balance":"2852.15", + "value":"-3.44" + } + }, + { + "id":"643fb809-1411-49c7-9feb-0377cdf89cbf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T15:06:52.343Z", + "completed":"2016-01-13T15:06:52.343Z", + "new_balance":"2851.64", + "value":"-0.51" + } + }, + { + "id":"1f11dd91-85fc-41ee-bb83-3e86f712a885", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T15:52:33.157Z", + "completed":"2016-01-13T15:52:33.157Z", + "new_balance":"2851.18", + "value":"-0.46" + } + }, + { + "id":"63e9ce2b-582a-48a3-aa7a-24612c7ab586", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T02:37:29.210Z", + "completed":"2016-01-16T02:37:29.210Z", + "new_balance":"2841.66", + "value":"-9.52" + } + }, + { + "id":"96657b6b-ff5f-471e-9de8-5e5f9922b3e4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T09:33:24.214Z", + "completed":"2016-01-19T09:33:24.214Z", + "new_balance":"2834.36", + "value":"-7.30" + } + }, + { + "id":"42061771-1446-449d-b61b-19a4ffb66b38", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T10:25:42.407Z", + "completed":"2016-01-19T10:25:42.407Z", + "new_balance":"2827.53", + "value":"-6.83" + } + }, + { + "id":"5cfa7edb-d851-42f6-b3af-6cbf09f4c64f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T01:57:03.853Z", + "completed":"2016-01-24T01:57:03.853Z", + "new_balance":"2824.85", + "value":"-2.68" + } + }, + { + "id":"56b6166d-283e-4925-9227-078f7f404e0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T04:50:46.205Z", + "completed":"2016-01-27T04:50:46.205Z", + "new_balance":"2821.18", + "value":"-3.67" + } + }, + { + "id":"8d4c4e22-daf3-4aaa-903f-8274b8b4b529", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T14:21:09.390Z", + "completed":"2016-01-27T14:21:09.390Z", + "new_balance":"3056.14", + "value":"234.96" + } + }, + { + "id":"edbb7d5f-013f-404e-8e49-78569036359c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T18:24:59.933Z", + "completed":"2016-01-31T18:24:59.933Z", + "new_balance":"3032.90", + "value":"-23.24" + } + }, + { + "id":"635b5372-0615-4418-bd5f-a192392045c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T13:04:40.040Z", + "completed":"2016-02-01T13:04:40.040Z", + "new_balance":"3029.46", + "value":"-3.44" + } + }, + { + "id":"cf4fbd02-53f9-46bf-8e6e-9071bde2b578", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T17:58:25.442Z", + "completed":"2016-02-01T17:58:25.442Z", + "new_balance":"3021.76", + "value":"-7.70" + } + }, + { + "id":"63aadeab-e5a2-44dd-ace4-bfddfa866da0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T20:42:47.246Z", + "completed":"2016-02-01T20:42:47.246Z", + "new_balance":"3018.32", + "value":"-3.44" + } + }, + { + "id":"e5f2fba4-8347-4186-b157-7beb12d4ec56", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T21:57:20.264Z", + "completed":"2016-02-01T21:57:20.264Z", + "new_balance":"3014.14", + "value":"-4.18" + } + }, + { + "id":"1857e176-5f29-4991-a841-a175da4b248e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T07:20:12.720Z", + "completed":"2016-02-03T07:20:12.720Z", + "new_balance":"3013.44", + "value":"-0.70" + } + }, + { + "id":"e1cb6bd4-8467-4740-a8dc-8a6cbf008468", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T02:49:29.134Z", + "completed":"2016-02-04T02:49:29.134Z", + "new_balance":"3006.14", + "value":"-7.30" + } + }, + { + "id":"302248f7-3750-48c8-b993-ac68ebcf5689", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T03:35:56.227Z", + "completed":"2016-02-06T03:35:56.227Z", + "new_balance":"2996.04", + "value":"-10.10" + } + }, + { + "id":"f095c98f-1a50-4a29-bf95-e5fac2a5260c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T20:50:19.424Z", + "completed":"2016-02-06T20:50:19.424Z", + "new_balance":"2986.58", + "value":"-9.46" + } + }, + { + "id":"cbe4a1e5-d8a3-4d71-b734-f54378a11b04", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T10:13:22.054Z", + "completed":"2016-02-07T10:13:22.054Z", + "new_balance":"2982.78", + "value":"-3.80" + } + }, + { + "id":"66157d6a-5e5d-406c-baef-95be2b825310", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T23:43:02.026Z", + "completed":"2016-02-08T23:43:02.026Z", + "new_balance":"2981.66", + "value":"-1.12" + } + }, + { + "id":"6aa0e2c8-5a6b-4c72-a72a-995f1ff11869", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:55:09.632Z", + "completed":"2016-02-09T00:55:09.632Z", + "new_balance":"2977.07", + "value":"-4.59" + } + }, + { + "id":"63675a52-6d33-4d44-b5f5-85022845ed9e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T09:50:17.839Z", + "completed":"2016-02-11T09:50:17.839Z", + "new_balance":"2974.67", + "value":"-2.40" + } + }, + { + "id":"36b9a2c1-fc72-4836-9add-842995a9da9e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T07:39:23.668Z", + "completed":"2016-02-13T07:39:23.668Z", + "new_balance":"2971.79", + "value":"-2.88" + } + }, + { + "id":"f38e4dfc-e1be-445d-807c-af805d0ff447", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T22:59:50.983Z", + "completed":"2016-02-17T22:59:50.983Z", + "new_balance":"2971.27", + "value":"-0.52" + } + }, + { + "id":"3490614d-3de6-4a81-8168-cee4ccc99cfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T02:40:31.470Z", + "completed":"2016-02-19T02:40:31.470Z", + "new_balance":"2966.09", + "value":"-5.18" + } + }, + { + "id":"d07a0eeb-ad1a-4422-b39e-b07970ce039d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T02:19:21.064Z", + "completed":"2016-02-21T02:19:21.064Z", + "new_balance":"2958.79", + "value":"-7.30" + } + }, + { + "id":"92afe7a0-700d-4c80-b436-8d45035c1adc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T21:35:55.407Z", + "completed":"2016-02-24T21:35:55.407Z", + "new_balance":"2955.12", + "value":"-3.67" + } + }, + { + "id":"c3fea72d-328b-4f39-b133-a6dfb853fc7b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T02:04:34.765Z", + "completed":"2016-02-26T02:04:34.765Z", + "new_balance":"3190.08", + "value":"234.96" + } + }, + { + "id":"b64afd0a-a802-4ff6-8154-eec25840ca6c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T03:32:16.095Z", + "completed":"2016-03-01T03:32:16.095Z", + "new_balance":"3186.64", + "value":"-3.44" + } + }, + { + "id":"938e70a8-b560-467c-b213-ba4e154e854d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T15:14:21.260Z", + "completed":"2016-03-01T15:14:21.260Z", + "new_balance":"3182.46", + "value":"-4.18" + } + }, + { + "id":"999427c1-26e5-43f0-aba2-aa227ff75a97", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T16:48:18.595Z", + "completed":"2016-03-01T16:48:18.595Z", + "new_balance":"3174.76", + "value":"-7.70" + } + }, + { + "id":"b3c5db30-c365-4fab-b9ac-c5ad27cf6430", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T22:34:05.555Z", + "completed":"2016-03-01T22:34:05.555Z", + "new_balance":"3171.32", + "value":"-3.44" + } + }, + { + "id":"524dbead-a10c-4a6c-a84f-40873e4b7ec4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T13:09:17.275Z", + "completed":"2016-03-09T13:09:17.275Z", + "new_balance":"3165.50", + "value":"-5.82" + } + }, + { + "id":"474e3d01-bd48-4bf3-8097-3b675cb8f2cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T23:10:26.287Z", + "completed":"2016-03-09T23:10:26.287Z", + "new_balance":"3158.24", + "value":"-7.26" + } + }, + { + "id":"37d2a00f-3c27-46b2-9475-e5c5bcdbf7a6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T03:58:14.730Z", + "completed":"2016-03-17T03:58:14.730Z", + "new_balance":"3150.50", + "value":"-7.74" + } + }, + { + "id":"7478a0af-b600-4ecc-95de-277c64311025", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T00:00:28.145Z", + "completed":"2016-03-18T00:00:28.145Z", + "new_balance":"3146.43", + "value":"-4.07" + } + }, + { + "id":"4efc7a8f-950e-4286-b77f-c3daf9a88744", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T14:28:22.321Z", + "completed":"2016-03-18T14:28:22.321Z", + "new_balance":"3142.02", + "value":"-4.41" + } + }, + { + "id":"f219b5de-0f6e-464c-8237-1306a7850b1c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T18:56:17.969Z", + "completed":"2016-03-18T18:56:17.969Z", + "new_balance":"3141.41", + "value":"-0.61" + } + }, + { + "id":"37c1fe1a-195b-4508-8c7b-9f89a76e29b6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T22:59:57.143Z", + "completed":"2016-03-18T22:59:57.143Z", + "new_balance":"3133.67", + "value":"-7.74" + } + }, + { + "id":"512003ae-88ed-44d8-97d3-5f01c8c9a4a5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T14:26:51.079Z", + "completed":"2016-03-22T14:26:51.079Z", + "new_balance":"3123.66", + "value":"-10.01" + } + }, + { + "id":"7e35e363-1f88-42c9-b73e-f3bea11513b2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T05:15:25.367Z", + "completed":"2016-03-29T05:15:25.367Z", + "new_balance":"3358.62", + "value":"234.96" + } + }, + { + "id":"c562de02-e9a0-4ac4-9407-5ab10510f213", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T21:17:19.580Z", + "completed":"2016-03-29T21:17:19.580Z", + "new_balance":"3354.95", + "value":"-3.67" + } + }, + { + "id":"4eae278c-21b8-4c49-a41a-4109d7a0025a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T18:36:45.830Z", + "completed":"2016-03-31T18:36:45.830Z", + "new_balance":"3331.71", + "value":"-23.24" + } + }, + { + "id":"fac4b816-fc8e-4ce5-a6aa-96a38bff14e0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T00:56:12.170Z", + "completed":"2016-04-01T00:56:12.170Z", + "new_balance":"3324.01", + "value":"-7.70" + } + }, + { + "id":"bb2cbfbd-012a-424a-84ce-6262ead241ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T09:49:55.746Z", + "completed":"2016-04-01T09:49:55.746Z", + "new_balance":"3320.57", + "value":"-3.44" + } + }, + { + "id":"cbc74686-9843-411d-9890-1fab36f95190", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T13:39:08.282Z", + "completed":"2016-04-01T13:39:08.282Z", + "new_balance":"3317.13", + "value":"-3.44" + } + }, + { + "id":"62246a86-4e74-4f7c-a0f3-6ac1c74b9c50", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T16:34:24.904Z", + "completed":"2016-04-01T16:34:24.904Z", + "new_balance":"3312.95", + "value":"-4.18" + } + }, + { + "id":"e9edf816-d396-467d-a68a-c8dcce50fe68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T01:35:03.321Z", + "completed":"2016-04-02T01:35:03.321Z", + "new_balance":"3305.39", + "value":"-7.56" + } + }, + { + "id":"70a99746-6489-451d-b328-14b94f5988f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T03:27:44.885Z", + "completed":"2016-04-05T03:27:44.885Z", + "new_balance":"3304.80", + "value":"-0.59" + } + }, + { + "id":"05bd572b-10a6-42a5-9afc-12042f22d99b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T03:40:05.689Z", + "completed":"2016-04-05T03:40:05.689Z", + "new_balance":"3301.36", + "value":"-3.44" + } + }, + { + "id":"3e9aab86-65d0-4a4f-83fa-06262d4838ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T08:16:39.226Z", + "completed":"2016-04-05T08:16:39.226Z", + "new_balance":"3297.18", + "value":"-4.18" + } + }, + { + "id":"82cba2e1-7e54-4be3-b13e-ad7b2d8393d4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T13:01:38.188Z", + "completed":"2016-04-05T13:01:38.188Z", + "new_balance":"3295.94", + "value":"-1.24" + } + }, + { + "id":"19b9f918-5466-4db7-b31e-6c3401496a35", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T13:13:21.503Z", + "completed":"2016-04-05T13:13:21.503Z", + "new_balance":"3295.24", + "value":"-0.70" + } + }, + { + "id":"9ecc060c-1f3f-4021-81ee-5c470be98ba2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T21:46:32.461Z", + "completed":"2016-04-05T21:46:32.461Z", + "new_balance":"3289.79", + "value":"-5.45" + } + }, + { + "id":"90130053-dff4-4650-a9b7-be21ffd86ff2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T22:48:17.310Z", + "completed":"2016-04-05T22:48:17.310Z", + "new_balance":"3282.49", + "value":"-7.30" + } + }, + { + "id":"b5ad4a5c-c447-431d-a4f0-1eafc091b5d4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T04:34:25.524Z", + "completed":"2016-04-08T04:34:25.524Z", + "new_balance":"3274.40", + "value":"-8.09" + } + }, + { + "id":"6c7850bc-45d2-40a5-8de2-89a46b0ed297", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T13:21:52.737Z", + "completed":"2016-04-10T13:21:52.737Z", + "new_balance":"3268.28", + "value":"-6.12" + } + }, + { + "id":"07d10221-1361-49fd-bc2f-3f81882c1faf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T15:19:10.648Z", + "completed":"2016-04-11T15:19:10.648Z", + "new_balance":"3265.60", + "value":"-2.68" + } + }, + { + "id":"d21fbb11-4ef5-4881-8f21-a75c6e956d60", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T23:49:43.933Z", + "completed":"2016-04-11T23:49:43.933Z", + "new_balance":"3258.30", + "value":"-7.30" + } + }, + { + "id":"e2237841-5e01-4fbb-87f3-8955195f02c5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:18:26.495Z", + "completed":"2016-04-13T06:18:26.495Z", + "new_balance":"3254.63", + "value":"-3.67" + } + }, + { + "id":"ee0a0a56-cfca-4a85-9ee5-697d40fb5aba", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T12:30:07.780Z", + "completed":"2016-04-18T12:30:07.780Z", + "new_balance":"3489.59", + "value":"234.96" + } + }, + { + "id":"35c2b1e2-628a-4ca6-beee-b2074ca842a7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:05:03.340Z", + "completed":"2016-04-25T19:05:03.340Z", + "new_balance":"3466.35", + "value":"-23.24" + } + }, + { + "id":"5f72ef8b-c723-4827-8bd7-d9e38fe15cdb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T01:38:44.907Z", + "completed":"2016-05-02T01:38:44.907Z", + "new_balance":"3462.17", + "value":"-4.18" + } + }, + { + "id":"48215603-0dc0-4904-ae4f-180bcdb6934b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T05:01:09.992Z", + "completed":"2016-05-02T05:01:09.992Z", + "new_balance":"3458.73", + "value":"-3.44" + } + }, + { + "id":"6f3b5337-8af2-4e50-b1ca-0ce9d59c2cbe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T05:35:00.909Z", + "completed":"2016-05-02T05:35:00.909Z", + "new_balance":"3451.03", + "value":"-7.70" + } + }, + { + "id":"58d0b1b5-9259-4e46-997e-63b54b2504a1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T17:37:56.046Z", + "completed":"2016-05-02T17:37:56.046Z", + "new_balance":"3447.59", + "value":"-3.44" + } + }, + { + "id":"ea15e32c-f207-4768-9db4-86cd87463a7f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T01:56:03.361Z", + "completed":"2016-05-04T01:56:03.361Z", + "new_balance":"3446.89", + "value":"-0.70" + } + }, + { + "id":"36f73527-e579-44d4-8653-8ba7e73c3649", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T06:33:35.784Z", + "completed":"2016-05-04T06:33:35.784Z", + "new_balance":"3439.59", + "value":"-7.30" + } + }, + { + "id":"e91b6809-82f4-44bd-a565-b175753a684f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T10:18:57.571Z", + "completed":"2016-05-06T10:18:57.571Z", + "new_balance":"3432.15", + "value":"-7.44" + } + }, + { + "id":"36284f91-0a74-4ddc-8888-c1acc1765d09", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T20:49:45.789Z", + "completed":"2016-05-07T20:49:45.789Z", + "new_balance":"3429.44", + "value":"-2.71" + } + }, + { + "id":"9fdb3978-7b71-4a43-82b5-bfb8ba24111f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T21:25:28.767Z", + "completed":"2016-05-07T21:25:28.767Z", + "new_balance":"3421.88", + "value":"-7.56" + } + }, + { + "id":"7dcdafcb-21c8-44d1-925e-458827da337f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T05:46:55.195Z", + "completed":"2016-05-09T05:46:55.195Z", + "new_balance":"3417.29", + "value":"-4.59" + } + }, + { + "id":"977a9630-50cf-4093-9c11-2ec622c175bf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T18:02:07.370Z", + "completed":"2016-05-09T18:02:07.370Z", + "new_balance":"3416.05", + "value":"-1.24" + } + }, + { + "id":"7cc354ea-31a8-4dcc-941c-da10dcb62bbb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T02:44:11.316Z", + "completed":"2016-05-13T02:44:11.316Z", + "new_balance":"3413.92", + "value":"-2.13" + } + }, + { + "id":"f9c0d1aa-38a7-4f10-a492-0d624089441c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T16:18:33.832Z", + "completed":"2016-05-13T16:18:33.832Z", + "new_balance":"3411.21", + "value":"-2.71" + } + }, + { + "id":"f90f7d89-b648-4ed8-80c3-e5b4f3637da6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T17:12:14.291Z", + "completed":"2016-05-13T17:12:14.291Z", + "new_balance":"3410.51", + "value":"-0.70" + } + }, + { + "id":"0fd19779-9533-41f2-af1e-3787caee8068", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T03:39:00.796Z", + "completed":"2016-05-14T03:39:00.796Z", + "new_balance":"3406.05", + "value":"-4.46" + } + }, + { + "id":"63975c1d-b7fa-45ee-9bfe-27c9966cf3f7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T04:13:16.684Z", + "completed":"2016-05-14T04:13:16.684Z", + "new_balance":"3398.75", + "value":"-7.30" + } + }, + { + "id":"2c61538a-7721-4003-8dfc-89d26e3d2cfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T14:43:53.393Z", + "completed":"2016-05-15T14:43:53.393Z", + "new_balance":"3395.08", + "value":"-3.67" + } + }, + { + "id":"ffc1f02f-7ea4-4be8-aeef-6d1d2fb35763", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T18:26:29.399Z", + "completed":"2016-05-30T18:26:29.399Z", + "new_balance":"3630.04", + "value":"234.96" + } + }, + { + "id":"7180b3ff-d7f3-44ff-9062-c5454a6cfa8c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T20:10:07.997Z", + "completed":"2016-05-30T20:10:07.997Z", + "new_balance":"3606.80", + "value":"-23.24" + } + }, + { + "id":"014a305e-721c-4183-a52d-1d6605e47e1a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:14:13.164Z", + "completed":"2016-06-01T00:14:13.164Z", + "new_balance":"3603.36", + "value":"-3.44" + } + }, + { + "id":"f21e2c34-9e16-44a0-a2e7-91c01e763b11", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T03:31:51.290Z", + "completed":"2016-06-01T03:31:51.290Z", + "new_balance":"3599.92", + "value":"-3.44" + } + }, + { + "id":"5ea1aa0c-20a9-4a57-a2b9-c519972ce719", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T19:34:18.819Z", + "completed":"2016-06-01T19:34:18.819Z", + "new_balance":"3592.22", + "value":"-7.70" + } + }, + { + "id":"be8b7e83-3a2b-4ace-b69d-1aa92633491a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T23:30:02.298Z", + "completed":"2016-06-01T23:30:02.298Z", + "new_balance":"3588.04", + "value":"-4.18" + } + }, + { + "id":"a6b90e88-97a7-4669-9b82-b39ce88c4738", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T01:39:29.428Z", + "completed":"2016-06-04T01:39:29.428Z", + "new_balance":"3582.22", + "value":"-5.82" + } + }, + { + "id":"645c9f9d-c096-4479-9bff-ce0b5e84f18c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T06:18:28.189Z", + "completed":"2016-06-04T06:18:28.189Z", + "new_balance":"3574.96", + "value":"-7.26" + } + }, + { + "id":"10fc5b56-b063-4084-8b39-8aa6f9ff4a8b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T07:48:22.993Z", + "completed":"2016-06-11T07:48:22.993Z", + "new_balance":"3567.22", + "value":"-7.74" + } + }, + { + "id":"335daa4c-138e-425f-8d41-a9b81b675147", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T11:00:24.335Z", + "completed":"2016-06-11T11:00:24.335Z", + "new_balance":"3562.81", + "value":"-4.41" + } + }, + { + "id":"546ec627-0087-456e-b3fb-be779c4b87ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T21:40:22.719Z", + "completed":"2016-06-11T21:40:22.719Z", + "new_balance":"3555.07", + "value":"-7.74" + } + }, + { + "id":"c34f4466-3515-4d50-a3bb-9faa17e9e710", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T10:16:33.640Z", + "completed":"2016-06-12T10:16:33.640Z", + "new_balance":"3551.00", + "value":"-4.07" + } + }, + { + "id":"d04be3b3-e83d-4bff-868f-c249f8246ca5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T23:04:17.987Z", + "completed":"2016-06-12T23:04:17.987Z", + "new_balance":"3550.39", + "value":"-0.61" + } + }, + { + "id":"94a4d282-4dd8-47e7-8f5d-d872ce215cbb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T09:11:57.262Z", + "completed":"2016-06-16T09:11:57.262Z", + "new_balance":"3540.38", + "value":"-10.01" + } + }, + { + "id":"3b570b6a-8a03-4426-bc80-c155420d158c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T13:00:56.086Z", + "completed":"2016-06-29T13:00:56.086Z", + "new_balance":"3536.71", + "value":"-3.67" + } + }, + { + "id":"17971304-bae6-4aa9-8f49-0825616281ce", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T12:07:44.194Z", + "completed":"2016-06-30T12:07:44.194Z", + "new_balance":"3513.47", + "value":"-23.24" + } + }, + { + "id":"94d6527f-72fd-4419-9ff4-5f7b29da5f72", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T14:28:02.679Z", + "completed":"2016-06-30T14:28:02.679Z", + "new_balance":"3748.43", + "value":"234.96" + } + }, + { + "id":"a193949c-7e9a-4eb3-96c7-f0641cbee4cf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:35:23.669Z", + "completed":"2016-07-01T02:35:23.669Z", + "new_balance":"3744.25", + "value":"-4.18" + } + }, + { + "id":"0a972c8d-a0ee-4986-a223-6584250d991c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T06:32:55.392Z", + "completed":"2016-07-01T06:32:55.392Z", + "new_balance":"3740.81", + "value":"-3.44" + } + }, + { + "id":"3b549988-014a-4e7e-8de7-c70ea2c541a9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T08:47:50.193Z", + "completed":"2016-07-01T08:47:50.193Z", + "new_balance":"3733.11", + "value":"-7.70" + } + }, + { + "id":"0d453e61-dc81-4e82-b366-94d9ce2fa462", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T16:45:33.639Z", + "completed":"2016-07-01T16:45:33.639Z", + "new_balance":"3729.67", + "value":"-3.44" + } + }, + { + "id":"6dd9a134-6830-40c8-81b4-628bcd48a260", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T01:17:38.805Z", + "completed":"2016-07-05T01:17:38.805Z", + "new_balance":"3722.37", + "value":"-7.30" + } + }, + { + "id":"cffa2f04-fcb1-4e7a-8052-cc43b50a7865", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T14:57:36.134Z", + "completed":"2016-07-05T14:57:36.134Z", + "new_balance":"3712.33", + "value":"-10.04" + } + }, + { + "id":"d3c10a83-a53e-494c-bdd6-02538ab59227", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T09:53:24.460Z", + "completed":"2016-07-08T09:53:24.460Z", + "new_balance":"3710.93", + "value":"-1.40" + } + }, + { + "id":"ecefbf5e-2442-421e-90d3-8842be9eb10c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T02:41:59.596Z", + "completed":"2016-07-10T02:41:59.596Z", + "new_balance":"3706.27", + "value":"-4.66" + } + }, + { + "id":"9b9bb8dc-ea0f-4c76-b883-0617082b4983", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T01:41:49.160Z", + "completed":"2016-07-12T01:41:49.160Z", + "new_balance":"3702.83", + "value":"-3.44" + } + }, + { + "id":"d9d419a1-899d-4e41-b4b9-33c7306256c7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T22:37:26.347Z", + "completed":"2016-07-12T22:37:26.347Z", + "new_balance":"3697.42", + "value":"-5.41" + } + }, + { + "id":"c7247eba-1ceb-4bc3-9af8-acfc1cbac481", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T16:11:19.964Z", + "completed":"2016-07-13T16:11:19.964Z", + "new_balance":"3696.96", + "value":"-0.46" + } + }, + { + "id":"2c2b291b-2844-4e80-9ddb-1026a826c192", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T19:25:57.384Z", + "completed":"2016-07-13T19:25:57.384Z", + "new_balance":"3696.45", + "value":"-0.51" + } + }, + { + "id":"3604e2bd-ae42-4360-a074-5fa15fa6a803", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T03:53:06.736Z", + "completed":"2016-07-18T03:53:06.736Z", + "new_balance":"3686.93", + "value":"-9.52" + } + }, + { + "id":"76f8fb57-c94f-4936-a316-093610602df6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T19:49:10.883Z", + "completed":"2016-07-20T19:49:10.883Z", + "new_balance":"3679.63", + "value":"-7.30" + } + }, + { + "id":"9eaddc60-f33a-4bbc-80de-f944dd9f1ee2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T21:10:12.830Z", + "completed":"2016-07-20T21:10:12.830Z", + "new_balance":"3672.80", + "value":"-6.83" + } + }, + { + "id":"f647b770-2d3a-40da-92c3-07a31ff7389f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T06:30:19.170Z", + "completed":"2016-07-24T06:30:19.170Z", + "new_balance":"3670.12", + "value":"-2.68" + } + }, + { + "id":"a27741c3-3ef7-488a-a4bb-e5659b630ff6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T06:59:44.370Z", + "completed":"2016-07-29T06:59:44.370Z", + "new_balance":"3905.08", + "value":"234.96" + } + }, + { + "id":"96f61f8a-db03-4d53-b57b-1012d97ae139", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T09:46:14.711Z", + "completed":"2016-07-29T09:46:14.711Z", + "new_balance":"3901.41", + "value":"-3.67" + } + }, + { + "id":"18641b54-a1d3-430e-ad74-10cc6d2f5547", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T21:42:02.092Z", + "completed":"2016-07-30T21:42:02.092Z", + "new_balance":"3878.17", + "value":"-23.24" + } + }, + { + "id":"6dc729f9-2487-4ce9-98ad-ceceebc8fc23", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T04:55:43.492Z", + "completed":"2016-08-01T04:55:43.492Z", + "new_balance":"3873.99", + "value":"-4.18" + } + }, + { + "id":"255ed06a-ef8c-44b9-bf8d-5d005d1187cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T11:02:21.044Z", + "completed":"2016-08-01T11:02:21.044Z", + "new_balance":"3866.29", + "value":"-7.70" + } + }, + { + "id":"485f8671-4f30-440f-9fba-97476fd5f0c4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T16:47:49.888Z", + "completed":"2016-08-01T16:47:49.888Z", + "new_balance":"3862.85", + "value":"-3.44" + } + }, + { + "id":"e223b2c0-e8a9-4cc7-9778-5d83b38f78ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T17:21:52.930Z", + "completed":"2016-08-01T17:21:52.930Z", + "new_balance":"3859.41", + "value":"-3.44" + } + }, + { + "id":"dd0af698-1af6-4605-a533-0d810e0f09e7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T13:44:49.807Z", + "completed":"2016-08-03T13:44:49.807Z", + "new_balance":"3858.71", + "value":"-0.70" + } + }, + { + "id":"e22bd4b5-83c2-4fe0-9ab8-ebea03cad4b9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T18:11:52.542Z", + "completed":"2016-08-04T18:11:52.542Z", + "new_balance":"3851.41", + "value":"-7.30" + } + }, + { + "id":"7fcab05a-30d3-4c15-b297-b62f1dcd05cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T02:28:48.099Z", + "completed":"2016-08-08T02:28:48.099Z", + "new_balance":"3850.29", + "value":"-1.12" + } + }, + { + "id":"d7083b20-ebd0-4624-9349-23f78446b74b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T03:55:26.141Z", + "completed":"2016-08-08T03:55:26.141Z", + "new_balance":"3840.83", + "value":"-9.46" + } + }, + { + "id":"4ee753db-5b86-430e-8cb4-a376601bd986", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T12:52:17.269Z", + "completed":"2016-08-08T12:52:17.269Z", + "new_balance":"3837.03", + "value":"-3.80" + } + }, + { + "id":"6ec5f716-e8fb-4148-a614-4d883f8ee0ae", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:03:40.847Z", + "completed":"2016-08-08T22:03:40.847Z", + "new_balance":"3826.93", + "value":"-10.10" + } + }, + { + "id":"fbb9af87-26be-419b-b510-8142fc578829", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T23:01:39.713Z", + "completed":"2016-08-09T23:01:39.713Z", + "new_balance":"3822.34", + "value":"-4.59" + } + }, + { + "id":"19397f77-3ce6-451c-9329-799e900b2a35", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T22:44:31.971Z", + "completed":"2016-08-14T22:44:31.971Z", + "new_balance":"3819.94", + "value":"-2.40" + } + }, + { + "id":"d8ec9940-39db-41b9-bb94-a4b42c4db24b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T07:33:16.162Z", + "completed":"2016-08-15T07:33:16.162Z", + "new_balance":"3817.06", + "value":"-2.88" + } + }, + { + "id":"870552c6-6ff0-435a-b438-0360eea63dfa", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T17:08:49.949Z", + "completed":"2016-08-19T17:08:49.949Z", + "new_balance":"3816.54", + "value":"-0.52" + } + }, + { + "id":"0584348a-caa0-4908-8666-5c69251cff3d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T22:29:42.440Z", + "completed":"2016-08-22T22:29:42.440Z", + "new_balance":"3811.36", + "value":"-5.18" + } + }, + { + "id":"94ecc867-b42b-4dbf-b5e6-5b3fb5fd8a1a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T12:26:12.829Z", + "completed":"2016-08-26T12:26:12.829Z", + "new_balance":"3804.06", + "value":"-7.30" + } + }, + { + "id":"e9a70c81-67d4-4504-870f-8fe067e00326", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T17:11:03.035Z", + "completed":"2016-08-28T17:11:03.035Z", + "new_balance":"3780.82", + "value":"-23.24" + } + }, + { + "id":"9bd0ca6d-f058-4e7b-b324-3db3a49600c5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T07:31:44.425Z", + "completed":"2016-08-29T07:31:44.425Z", + "new_balance":"4015.78", + "value":"234.96" + } + }, + { + "id":"4052b894-1b59-4d4f-b9b6-ef1df2d21aca", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T23:44:39.298Z", + "completed":"2016-08-29T23:44:39.298Z", + "new_balance":"4012.11", + "value":"-3.67" + } + }, + { + "id":"9b5fa07d-b84d-4bcd-ad16-68152aaa539a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T04:32:38.731Z", + "completed":"2016-08-30T04:32:38.731Z", + "new_balance":"3988.87", + "value":"-23.24" + } + }, + { + "id":"7bb588d4-62dd-49cd-9049-71642d0d9197", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T08:14:47.222Z", + "completed":"2016-09-01T08:14:47.222Z", + "new_balance":"3985.43", + "value":"-3.44" + } + }, + { + "id":"f5477bac-1877-436b-b756-554607a51a41", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T08:18:15.744Z", + "completed":"2016-09-01T08:18:15.744Z", + "new_balance":"3981.25", + "value":"-4.18" + } + }, + { + "id":"8db5721e-aa05-4abe-99b6-cfebee1898c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T20:24:28.750Z", + "completed":"2016-09-01T20:24:28.750Z", + "new_balance":"3977.81", + "value":"-3.44" + } + }, + { + "id":"ccde8598-b16f-4be2-a1aa-78bdd6c434ad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T21:33:11.384Z", + "completed":"2016-09-01T21:33:11.384Z", + "new_balance":"3970.11", + "value":"-7.70" + } + }, + { + "id":"1963408c-2434-4c5a-839a-798fc6852f36", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T14:59:51.184Z", + "completed":"2016-09-09T14:59:51.184Z", + "new_balance":"3962.85", + "value":"-7.26" + } + }, + { + "id":"2906af7b-b8b2-4521-bd72-d7442e947aa2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T20:01:13.638Z", + "completed":"2016-09-09T20:01:13.638Z", + "new_balance":"3957.03", + "value":"-5.82" + } + }, + { + "id":"46e05752-af2d-43b7-adb2-658641666d0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T11:31:22.342Z", + "completed":"2016-09-17T11:31:22.342Z", + "new_balance":"3949.29", + "value":"-7.74" + } + }, + { + "id":"b5974ca6-e95c-471d-9ca3-2e061479101f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T08:25:35.476Z", + "completed":"2016-09-18T08:25:35.476Z", + "new_balance":"3948.68", + "value":"-0.61" + } + }, + { + "id":"094841a6-280a-4063-8552-f9ced549a317", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T13:16:34.001Z", + "completed":"2016-09-18T13:16:34.001Z", + "new_balance":"3944.27", + "value":"-4.41" + } + }, + { + "id":"95bd5e28-72d7-4cfb-bfde-2bfb1b0eb6d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T20:32:44.161Z", + "completed":"2016-09-18T20:32:44.161Z", + "new_balance":"3936.53", + "value":"-7.74" + } + }, + { + "id":"3225def4-2a25-4344-ad89-8fef2abec58e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T21:20:12.491Z", + "completed":"2016-09-18T21:20:12.491Z", + "new_balance":"3932.46", + "value":"-4.07" + } + }, + { + "id":"20c42cab-c7f9-49e9-81b1-89f3ad29fa9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T20:32:56.326Z", + "completed":"2016-09-22T20:32:56.326Z", + "new_balance":"3922.45", + "value":"-10.01" + } + }, + { + "id":"0757cbc0-5231-47d4-827a-6906a6cdfe68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T01:15:44.785Z", + "completed":"2016-09-29T01:15:44.785Z", + "new_balance":"4157.41", + "value":"234.96" + } + }, + { + "id":"6b4cf1f5-0930-432c-9cba-9a051e16ec94", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T02:46:00.380Z", + "completed":"2016-09-29T02:46:00.380Z", + "new_balance":"4153.74", + "value":"-3.67" + } + }, + { + "id":"283c0f57-ab27-4473-b7fc-085ee1d33588", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T17:03:59.166Z", + "completed":"2016-09-30T17:03:59.166Z", + "new_balance":"4130.50", + "value":"-23.24" + } + }, + { + "id":"a2d6cf7a-97ec-46ae-8cc2-7f66c421c104", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T03:36:40.900Z", + "completed":"2016-10-01T03:36:40.900Z", + "new_balance":"4127.06", + "value":"-3.44" + } + }, + { + "id":"6756cec3-1f2b-4c7c-851f-ea40c038c26f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T10:13:56.914Z", + "completed":"2016-10-01T10:13:56.914Z", + "new_balance":"4122.88", + "value":"-4.18" + } + }, + { + "id":"effaf5fe-5160-4020-8dc1-2fb3d096f9f8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T18:32:57.340Z", + "completed":"2016-10-01T18:32:57.340Z", + "new_balance":"4115.18", + "value":"-7.70" + } + }, + { + "id":"e9d36d9a-a7f2-494e-8427-14737f475c1d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T19:19:29.728Z", + "completed":"2016-10-01T19:19:29.728Z", + "new_balance":"4111.74", + "value":"-3.44" + } + }, + { + "id":"6aa1b1b0-3ed2-4da2-a6f5-9eb9b5323cf3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T18:20:40.015Z", + "completed":"2016-10-02T18:20:40.015Z", + "new_balance":"4104.18", + "value":"-7.56" + } + }, + { + "id":"ca8818f3-fe58-4e59-94ca-59ae9a92ab72", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T06:59:25.707Z", + "completed":"2016-10-05T06:59:25.707Z", + "new_balance":"4098.73", + "value":"-5.45" + } + }, + { + "id":"fc961a02-96f3-4efa-8d4e-7abd765e1747", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T10:38:22.495Z", + "completed":"2016-10-05T10:38:22.495Z", + "new_balance":"4098.03", + "value":"-0.70" + } + }, + { + "id":"45eab23f-b37e-4d68-a9bc-47feb752218e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T13:27:23.008Z", + "completed":"2016-10-05T13:27:23.008Z", + "new_balance":"4090.73", + "value":"-7.30" + } + }, + { + "id":"d7f1c63a-6045-4300-a189-72eeb7ee3c9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:11:33.764Z", + "completed":"2016-10-05T18:11:33.764Z", + "new_balance":"4087.29", + "value":"-3.44" + } + }, + { + "id":"133d3618-8449-4128-9c83-f5497b8ce344", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T19:09:05.636Z", + "completed":"2016-10-05T19:09:05.636Z", + "new_balance":"4086.05", + "value":"-1.24" + } + }, + { + "id":"886e9dc6-4fef-46cb-8003-e28b74228e16", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T22:03:30.959Z", + "completed":"2016-10-05T22:03:30.959Z", + "new_balance":"4081.87", + "value":"-4.18" + } + }, + { + "id":"ef88811e-077f-4002-a349-ff1d460c4ea6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T22:53:01.974Z", + "completed":"2016-10-05T22:53:01.974Z", + "new_balance":"4081.28", + "value":"-0.59" + } + }, + { + "id":"089ac018-606b-464d-957c-15a6ad18ddd9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T04:12:48.387Z", + "completed":"2016-10-09T04:12:48.387Z", + "new_balance":"4073.19", + "value":"-8.09" + } + }, + { + "id":"056a9c41-b7a0-4d62-8b5c-adc506219b44", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T23:39:05.225Z", + "completed":"2016-10-11T23:39:05.225Z", + "new_balance":"4067.07", + "value":"-6.12" + } + }, + { + "id":"bcf670ce-e215-47ad-ae69-93441a7be666", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T17:17:26.880Z", + "completed":"2016-10-12T17:17:26.880Z", + "new_balance":"4059.77", + "value":"-7.30" + } + }, + { + "id":"a0d103ef-68a2-4133-bec4-d4b0b4132249", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T20:25:02.068Z", + "completed":"2016-10-12T20:25:02.068Z", + "new_balance":"4057.09", + "value":"-2.68" + } + }, + { + "id":"5397f544-1122-43b9-9a8d-d6028ec20d2a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T21:31:59.453Z", + "completed":"2016-10-20T21:31:59.453Z", + "new_balance":"4053.42", + "value":"-3.67" + } + }, + { + "id":"79219bcc-00b5-45da-b374-f7a734428236", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T10:16:51.192Z", + "completed":"2016-10-29T10:16:51.192Z", + "new_balance":"4288.38", + "value":"234.96" + } + }, + { + "id":"778d8cdb-ac30-4c01-9661-e16b6e0c56df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:31:44.259Z", + "completed":"2016-10-30T05:31:44.259Z", + "new_balance":"4265.14", + "value":"-23.24" + } + }, + { + "id":"ea6eb73d-465d-41cb-8b69-6193758def76", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T04:21:48.114Z", + "completed":"2016-11-02T04:21:48.114Z", + "new_balance":"4257.44", + "value":"-7.70" + } + }, + { + "id":"4d133f32-26f5-4d91-bd38-45d47a87ef83", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T04:22:54.706Z", + "completed":"2016-11-02T04:22:54.706Z", + "new_balance":"4254.00", + "value":"-3.44" + } + }, + { + "id":"023abed9-e1bc-457b-ab8b-b262eb750332", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T20:08:08.408Z", + "completed":"2016-11-02T20:08:08.408Z", + "new_balance":"4250.56", + "value":"-3.44" + } + }, + { + "id":"fc92b08f-78f7-494c-9fce-d836323cac5c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T20:39:10.949Z", + "completed":"2016-11-02T20:39:10.949Z", + "new_balance":"4246.38", + "value":"-4.18" + } + }, + { + "id":"62946ddb-2583-47e2-a228-4d97a55931f6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T09:56:29.218Z", + "completed":"2016-11-04T09:56:29.218Z", + "new_balance":"4239.08", + "value":"-7.30" + } + }, + { + "id":"681fcd93-3f4d-4c97-b59f-9073b0b55337", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T14:25:27.404Z", + "completed":"2016-11-04T14:25:27.404Z", + "new_balance":"4238.38", + "value":"-0.70" + } + }, + { + "id":"3bca7b7b-be86-4726-a4ee-5908c5cb67fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T18:16:19.732Z", + "completed":"2016-11-06T18:16:19.732Z", + "new_balance":"4230.94", + "value":"-7.44" + } + }, + { + "id":"47b79532-bc2b-4450-945f-5b1a664bb200", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T00:03:14.415Z", + "completed":"2016-11-07T00:03:14.415Z", + "new_balance":"4228.23", + "value":"-2.71" + } + }, + { + "id":"2297435b-a92a-45ef-b85d-878f7c010ac3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T10:13:08.323Z", + "completed":"2016-11-07T10:13:08.323Z", + "new_balance":"4220.67", + "value":"-7.56" + } + }, + { + "id":"94c27bde-e83b-49d0-8d34-75cfa7e75ce7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T01:25:52.247Z", + "completed":"2016-11-09T01:25:52.247Z", + "new_balance":"4216.08", + "value":"-4.59" + } + }, + { + "id":"e6cc5963-7a7b-458d-adb8-0a7e2085cf8b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T18:07:50.717Z", + "completed":"2016-11-09T18:07:50.717Z", + "new_balance":"4214.84", + "value":"-1.24" + } + }, + { + "id":"14c4e5c6-2d10-48f7-ab60-51f73234ebdc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T00:15:13.434Z", + "completed":"2016-11-13T00:15:13.434Z", + "new_balance":"4212.71", + "value":"-2.13" + } + }, + { + "id":"33d18a9b-2ef7-4cc8-910a-c089a30247d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T12:04:10.673Z", + "completed":"2016-11-13T12:04:10.673Z", + "new_balance":"4212.01", + "value":"-0.70" + } + }, + { + "id":"5546f12d-f033-4680-b6a0-96c978fdfec4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T21:03:16.561Z", + "completed":"2016-11-13T21:03:16.561Z", + "new_balance":"4209.30", + "value":"-2.71" + } + }, + { + "id":"de61fc2c-c101-4f52-b966-fbfeede766d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T04:03:00.878Z", + "completed":"2016-11-14T04:03:00.878Z", + "new_balance":"4204.84", + "value":"-4.46" + } + }, + { + "id":"78a00008-dd91-4e86-9011-acea462682a7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:36:45.377Z", + "completed":"2016-11-14T17:36:45.377Z", + "new_balance":"4197.54", + "value":"-7.30" + } + }, + { + "id":"54c4283e-1f23-4e5e-94b9-e2302f1f6101", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T21:15:35.017Z", + "completed":"2016-11-15T21:15:35.017Z", + "new_balance":"4193.87", + "value":"-3.67" + } + }, + { + "id":"f4b7048c-b554-4a5a-9d28-04b269668437", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T05:09:26.777Z", + "completed":"2016-11-30T05:09:26.777Z", + "new_balance":"4428.83", + "value":"234.96" + } + }, + { + "id":"71b4c596-293b-4001-9215-0bb59143c4cf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T08:35:43.120Z", + "completed":"2016-11-30T08:35:43.120Z", + "new_balance":"4405.59", + "value":"-23.24" + } + }, + { + "id":"94a65c83-ddcb-4be0-863b-4ada05002be4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T10:53:57.496Z", + "completed":"2016-12-01T10:53:57.496Z", + "new_balance":"4402.15", + "value":"-3.44" + } + }, + { + "id":"d3b1592c-3a32-4128-9aea-eddd88006c33", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T11:01:26.637Z", + "completed":"2016-12-01T11:01:26.637Z", + "new_balance":"4398.71", + "value":"-3.44" + } + }, + { + "id":"5c3357b9-6089-459e-a094-94e164b9d428", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T12:03:21.893Z", + "completed":"2016-12-01T12:03:21.893Z", + "new_balance":"4394.53", + "value":"-4.18" + } + }, + { + "id":"b974c716-062f-45ab-a277-2a6afd343003", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T16:23:06.547Z", + "completed":"2016-12-01T16:23:06.547Z", + "new_balance":"4386.83", + "value":"-7.70" + } + }, + { + "id":"707a87e9-d208-4bf9-a2a1-1d2a068c8797", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T05:17:06.112Z", + "completed":"2016-12-04T05:17:06.112Z", + "new_balance":"4381.01", + "value":"-5.82" + } + }, + { + "id":"f1500432-993e-4844-941f-ec50c6f97b87", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T07:04:13.051Z", + "completed":"2016-12-04T07:04:13.051Z", + "new_balance":"4373.75", + "value":"-7.26" + } + }, + { + "id":"022882ba-f825-43ed-bbff-9220695ecee6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T00:21:09.860Z", + "completed":"2016-12-11T00:21:09.860Z", + "new_balance":"4366.01", + "value":"-7.74" + } + }, + { + "id":"fcac5b73-411b-4194-ae76-ea859d72eea9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:13:22.946Z", + "completed":"2016-12-11T06:13:22.946Z", + "new_balance":"4361.60", + "value":"-4.41" + } + }, + { + "id":"4248a6d1-953b-4a4c-a08b-6b69af3596c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T18:33:36.858Z", + "completed":"2016-12-11T18:33:36.858Z", + "new_balance":"4353.86", + "value":"-7.74" + } + }, + { + "id":"f3dbae59-78ec-4dd5-ac6c-b5d65cb2f02a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T01:49:34.811Z", + "completed":"2016-12-12T01:49:34.811Z", + "new_balance":"4353.25", + "value":"-0.61" + } + }, + { + "id":"52a2b01f-a5b5-47be-b079-f4ca242422ac", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T13:12:45.528Z", + "completed":"2016-12-12T13:12:45.528Z", + "new_balance":"4349.18", + "value":"-4.07" + } + }, + { + "id":"0579e48d-9aae-4187-b0fb-40340c297b06", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:58:02.617Z", + "completed":"2016-12-16T16:58:02.617Z", + "new_balance":"4339.17", + "value":"-10.01" + } + }, + { + "id":"d2b04d37-b015-48c3-9cd0-6f1e5c743f81", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T14:50:49.101Z", + "completed":"2016-12-29T14:50:49.101Z", + "new_balance":"4335.50", + "value":"-3.67" + } + }, + { + "id":"354eca51-5228-498a-a94e-f151eb8d23a0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T08:16:17.991Z", + "completed":"2016-12-30T08:16:17.991Z", + "new_balance":"4312.26", + "value":"-23.24" + } + }, + { + "id":"20a68099-4f99-4c98-8a7a-c5c7b8aa7dab", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T21:50:10.151Z", + "completed":"2016-12-30T21:50:10.151Z", + "new_balance":"4547.22", + "value":"234.96" + } + }, + { + "id":"3a7810a5-e28e-42cb-bc1b-38e99a31784f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T01:36:29.293Z", + "completed":"2017-01-01T01:36:29.293Z", + "new_balance":"4539.52", + "value":"-7.70" + } + }, + { + "id":"e3919abe-7b44-49b7-bbe3-897cd1a81192", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T08:02:21.518Z", + "completed":"2017-01-01T08:02:21.518Z", + "new_balance":"4536.08", + "value":"-3.44" + } + }, + { + "id":"bae443b4-ca6a-4751-8d51-3b70a50d7fa6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T13:46:43.446Z", + "completed":"2017-01-01T13:46:43.446Z", + "new_balance":"4531.90", + "value":"-4.18" + } + }, + { + "id":"1d14ec75-c5e0-4cd8-b63e-3822df89b344", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T18:14:55.853Z", + "completed":"2017-01-01T18:14:55.853Z", + "new_balance":"4528.46", + "value":"-3.44" + } + }, + { + "id":"44b1d715-9c84-487e-ae54-d6608c24ee61", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T04:34:27.603Z", + "completed":"2017-01-05T04:34:27.603Z", + "new_balance":"4518.42", + "value":"-10.04" + } + }, + { + "id":"adc08e68-b273-4772-9f8e-0607b5d7acae", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T11:37:17.968Z", + "completed":"2017-01-05T11:37:17.968Z", + "new_balance":"4511.12", + "value":"-7.30" + } + }, + { + "id":"ab40a059-4bd4-42b4-af6b-3a87b4924bc0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T13:18:18.469Z", + "completed":"2017-01-08T13:18:18.469Z", + "new_balance":"4509.72", + "value":"-1.40" + } + }, + { + "id":"34c9cce2-1cb3-4e1e-95a5-5122ef44070d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T18:49:41.500Z", + "completed":"2017-01-10T18:49:41.500Z", + "new_balance":"4505.06", + "value":"-4.66" + } + }, + { + "id":"db7bf131-85a6-4480-9e2d-957e192223f4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T04:12:50.873Z", + "completed":"2017-01-11T04:12:50.873Z", + "new_balance":"4499.65", + "value":"-5.41" + } + }, + { + "id":"2932140b-2555-4385-9789-20ef45de8e88", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T08:59:28.314Z", + "completed":"2017-01-12T08:59:28.314Z", + "new_balance":"4496.21", + "value":"-3.44" + } + }, + { + "id":"826d0ef5-37e8-4ff6-8066-1be5e12dde60", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:33:20.027Z", + "completed":"2017-01-13T05:33:20.027Z", + "new_balance":"4495.75", + "value":"-0.46" + } + }, + { + "id":"a2ac408d-83f6-48a1-86f5-e65c1632c3c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T23:07:18.343Z", + "completed":"2017-01-13T23:07:18.343Z", + "new_balance":"4495.24", + "value":"-0.51" + } + }, + { + "id":"07b5a0dc-a253-448c-888a-7bae28e8a7a1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T17:57:07.464Z", + "completed":"2017-01-16T17:57:07.464Z", + "new_balance":"4485.72", + "value":"-9.52" + } + }, + { + "id":"e9dcd7e6-86a8-4d37-a631-bd0630d290f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T07:15:07.391Z", + "completed":"2017-01-19T07:15:07.391Z", + "new_balance":"4478.42", + "value":"-7.30" + } + }, + { + "id":"46c4b406-3115-4fba-b709-3aedcab5df2d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T14:18:31.959Z", + "completed":"2017-01-19T14:18:31.959Z", + "new_balance":"4471.59", + "value":"-6.83" + } + }, + { + "id":"7d31d9b5-f9bd-44c0-9320-55633e623095", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T04:16:06.576Z", + "completed":"2017-01-24T04:16:06.576Z", + "new_balance":"4468.91", + "value":"-2.68" + } + }, + { + "id":"31c55f53-0807-4555-93a8-e1e7d3d311d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T03:46:59.750Z", + "completed":"2017-01-27T03:46:59.750Z", + "new_balance":"4703.87", + "value":"234.96" + } + }, + { + "id":"c6191600-d8f1-4246-907e-5483c0cef0a9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T23:25:55.237Z", + "completed":"2017-01-27T23:25:55.237Z", + "new_balance":"4700.20", + "value":"-3.67" + } + }, + { + "id":"28c46df9-09fa-49dc-9129-364ef5dda6c0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T22:15:38.132Z", + "completed":"2017-01-31T22:15:38.132Z", + "new_balance":"4676.96", + "value":"-23.24" + } + }, + { + "id":"4fb9b411-528d-49ab-b5df-ed4557c6e0b5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T06:43:09.865Z", + "completed":"2017-02-01T06:43:09.865Z", + "new_balance":"4673.52", + "value":"-3.44" + } + }, + { + "id":"f48bf975-de5f-4bae-a329-d530798503eb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T17:46:15.258Z", + "completed":"2017-02-01T17:46:15.258Z", + "new_balance":"4670.08", + "value":"-3.44" + } + }, + { + "id":"956eb525-f9d5-4d68-b960-13ae28711d42", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T18:27:18.749Z", + "completed":"2017-02-01T18:27:18.749Z", + "new_balance":"4662.38", + "value":"-7.70" + } + }, + { + "id":"2eb8df16-2d4a-4bfa-864a-88ab72f30a10", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T23:04:04.667Z", + "completed":"2017-02-01T23:04:04.667Z", + "new_balance":"4658.20", + "value":"-4.18" + } + }, + { + "id":"2e4df989-382c-441e-b0e3-19be053dc8a6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T05:53:59.722Z", + "completed":"2017-02-03T05:53:59.722Z", + "new_balance":"4657.50", + "value":"-0.70" + } + }, + { + "id":"1c2ee687-0033-4a11-b360-f14197dfda41", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T08:52:52.873Z", + "completed":"2017-02-04T08:52:52.873Z", + "new_balance":"4650.20", + "value":"-7.30" + } + }, + { + "id":"9b3bf091-484e-4325-aef3-cfc2a85d8ee5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T15:42:38.848Z", + "completed":"2017-02-06T15:42:38.848Z", + "new_balance":"4640.74", + "value":"-9.46" + } + }, + { + "id":"81ace29b-17b6-461f-b9d0-2b6306f2e4d0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T20:37:20.253Z", + "completed":"2017-02-06T20:37:20.253Z", + "new_balance":"4630.64", + "value":"-10.10" + } + }, + { + "id":"6273d3a6-75ad-4316-983e-c14c95ff7885", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T05:55:48.467Z", + "completed":"2017-02-07T05:55:48.467Z", + "new_balance":"4626.84", + "value":"-3.80" + } + }, + { + "id":"439c963c-b848-432f-9e7b-f6b96732a160", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T20:53:54.908Z", + "completed":"2017-02-08T20:53:54.908Z", + "new_balance":"4625.72", + "value":"-1.12" + } + }, + { + "id":"66fc1715-886f-4e0f-b7e1-de95a9703189", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T17:39:20.973Z", + "completed":"2017-02-09T17:39:20.973Z", + "new_balance":"4621.13", + "value":"-4.59" + } + }, + { + "id":"3c3c0a61-8e65-40f0-9cd2-f6b0c7a1723c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T03:16:39.672Z", + "completed":"2017-02-11T03:16:39.672Z", + "new_balance":"4618.73", + "value":"-2.40" + } + }, + { + "id":"9fdc00f6-90e9-40f9-9d4d-b2fba5b677e6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T04:28:17.149Z", + "completed":"2017-02-13T04:28:17.149Z", + "new_balance":"4615.85", + "value":"-2.88" + } + }, + { + "id":"86b207f0-7811-45f2-8ed4-157110920f73", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T14:48:25.963Z", + "completed":"2017-02-17T14:48:25.963Z", + "new_balance":"4615.33", + "value":"-0.52" + } + }, + { + "id":"49a1b6ea-b7af-4ac1-90c3-9f6bb7847b7a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T05:21:57.184Z", + "completed":"2017-02-19T05:21:57.184Z", + "new_balance":"4610.15", + "value":"-5.18" + } + }, + { + "id":"ba2ff55e-614a-4c46-88bd-527c5cf34584", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T01:41:08.476Z", + "completed":"2017-02-21T01:41:08.476Z", + "new_balance":"4602.85", + "value":"-7.30" + } + }, + { + "id":"e7d42600-7755-4fb9-a07d-b038f37272b1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T07:53:16.745Z", + "completed":"2017-02-24T07:53:16.745Z", + "new_balance":"4599.18", + "value":"-3.67" + } + }, + { + "id":"5d899741-24db-4480-88b8-42f4632a7aa9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T21:50:39.475Z", + "completed":"2017-02-26T21:50:39.475Z", + "new_balance":"4834.14", + "value":"234.96" + } + }, + { + "id":"ae1e0c02-0127-4ecf-a173-d82749a5ca23", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T04:01:25.832Z", + "completed":"2017-03-01T04:01:25.832Z", + "new_balance":"4830.70", + "value":"-3.44" + } + }, + { + "id":"2a586ac5-0ef5-49b6-9818-4a9ddb5fd358", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T08:04:30.120Z", + "completed":"2017-03-01T08:04:30.120Z", + "new_balance":"4827.26", + "value":"-3.44" + } + }, + { + "id":"4ae25fa6-d610-415b-ba9b-f098f8aeb9bf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T18:36:41.284Z", + "completed":"2017-03-01T18:36:41.284Z", + "new_balance":"4819.56", + "value":"-7.70" + } + }, + { + "id":"77ef9406-783d-4d12-a97a-67daa281c9f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T23:50:43.901Z", + "completed":"2017-03-01T23:50:43.901Z", + "new_balance":"4815.38", + "value":"-4.18" + } + }, + { + "id":"99c6e058-d810-4129-8f3b-59040197b7a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T02:39:54.584Z", + "completed":"2017-03-09T02:39:54.584Z", + "new_balance":"4809.56", + "value":"-5.82" + } + }, + { + "id":"7019a516-74bf-43de-82b7-6f39332bdbd8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T12:56:59.827Z", + "completed":"2017-03-09T12:56:59.827Z", + "new_balance":"4802.30", + "value":"-7.26" + } + }, + { + "id":"b0a0ecd7-61df-4f0c-a5b6-e4680da8665a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T15:31:26.538Z", + "completed":"2017-03-17T15:31:26.538Z", + "new_balance":"4794.56", + "value":"-7.74" + } + }, + { + "id":"1b256c6d-8a63-4140-a3af-bf2c4ee84db4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T00:02:36.018Z", + "completed":"2017-03-18T00:02:36.018Z", + "new_balance":"4793.95", + "value":"-0.61" + } + }, + { + "id":"89721cda-1ffc-42bd-90c2-1e06227d606a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T05:59:10.273Z", + "completed":"2017-03-18T05:59:10.273Z", + "new_balance":"4789.88", + "value":"-4.07" + } + }, + { + "id":"48d0c832-acbb-4acb-858a-f42beb2206f0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T09:01:36.484Z", + "completed":"2017-03-18T09:01:36.484Z", + "new_balance":"4782.14", + "value":"-7.74" + } + }, + { + "id":"d791d514-5856-4aaa-a150-531a9a2381d0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T18:08:48.995Z", + "completed":"2017-03-18T18:08:48.995Z", + "new_balance":"4777.73", + "value":"-4.41" + } + }, + { + "id":"4c5a23a9-a907-4605-9400-6bacaf7cb2d7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T21:34:43.867Z", + "completed":"2017-03-22T21:34:43.867Z", + "new_balance":"4767.72", + "value":"-10.01" + } + }, + { + "id":"2833bf56-1ca6-4cd0-bf41-53fc4c361494", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T00:25:52.924Z", + "completed":"2017-03-29T00:25:52.924Z", + "new_balance":"5002.68", + "value":"234.96" + } + }, + { + "id":"2b7a792b-863d-4c26-a3f7-664b60c24184", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T01:56:31.396Z", + "completed":"2017-03-29T01:56:31.396Z", + "new_balance":"4999.01", + "value":"-3.67" + } + }, + { + "id":"8588ac40-8323-428d-96f2-b98022498b04", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T03:45:47.472Z", + "completed":"2017-03-31T03:45:47.472Z", + "new_balance":"4975.77", + "value":"-23.24" + } + }, + { + "id":"79a2c68b-7274-4397-ad7b-f57b6e3df9c7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T06:15:34.596Z", + "completed":"2017-04-01T06:15:34.596Z", + "new_balance":"4971.59", + "value":"-4.18" + } + }, + { + "id":"b502e752-9772-4623-8d24-7df28ee86e2a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T08:10:26.827Z", + "completed":"2017-04-01T08:10:26.827Z", + "new_balance":"4968.15", + "value":"-3.44" + } + }, + { + "id":"cac41b51-00af-4171-ae9e-e6a4b7966813", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T17:21:59.223Z", + "completed":"2017-04-01T17:21:59.223Z", + "new_balance":"4960.45", + "value":"-7.70" + } + }, + { + "id":"fc38fee6-4581-4b5a-afd5-f1ca6dfd81a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T21:39:35.673Z", + "completed":"2017-04-01T21:39:35.673Z", + "new_balance":"4957.01", + "value":"-3.44" + } + }, + { + "id":"83c8292b-c94d-43e1-9fec-577fe62eb0a2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T21:25:09.065Z", + "completed":"2017-04-02T21:25:09.065Z", + "new_balance":"4949.45", + "value":"-7.56" + } + }, + { + "id":"b268f5c8-0da6-4c97-a0bb-abf2dc596297", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T01:57:12.569Z", + "completed":"2017-04-05T01:57:12.569Z", + "new_balance":"4945.27", + "value":"-4.18" + } + }, + { + "id":"b14ebdb6-b2c8-407d-babc-65413cdf1108", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T02:58:25.467Z", + "completed":"2017-04-05T02:58:25.467Z", + "new_balance":"4941.83", + "value":"-3.44" + } + }, + { + "id":"1e8918dd-3fb6-40e9-81d4-93f862a89b13", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T05:02:54.263Z", + "completed":"2017-04-05T05:02:54.263Z", + "new_balance":"4941.24", + "value":"-0.59" + } + }, + { + "id":"5021086b-8859-425e-b5d6-e60191cb52ad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T09:21:08.957Z", + "completed":"2017-04-05T09:21:08.957Z", + "new_balance":"4940.00", + "value":"-1.24" + } + }, + { + "id":"6d093de1-37c0-4d7e-ac41-818406b1f73c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:17:55.875Z", + "completed":"2017-04-05T10:17:55.875Z", + "new_balance":"4939.30", + "value":"-0.70" + } + }, + { + "id":"6639a89e-50e9-4580-a494-c96bde88d831", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T11:33:01.780Z", + "completed":"2017-04-05T11:33:01.780Z", + "new_balance":"4933.85", + "value":"-5.45" + } + }, + { + "id":"b10e0d5b-fb65-4143-890c-4a2398ad54df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T13:14:03.854Z", + "completed":"2017-04-05T13:14:03.854Z", + "new_balance":"4926.55", + "value":"-7.30" + } + }, + { + "id":"292003e4-76d4-41fc-aa71-f87c3cdb759a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T18:47:06.668Z", + "completed":"2017-04-08T18:47:06.668Z", + "new_balance":"4918.46", + "value":"-8.09" + } + }, + { + "id":"c95ff207-3009-4e08-82cb-f109419216fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T09:30:49.247Z", + "completed":"2017-04-10T09:30:49.247Z", + "new_balance":"4912.34", + "value":"-6.12" + } + }, + { + "id":"fa183c43-b701-4cb4-9623-e923bb91c597", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T09:56:35.563Z", + "completed":"2017-04-11T09:56:35.563Z", + "new_balance":"4905.04", + "value":"-7.30" + } + }, + { + "id":"97d4c726-5218-46ea-b8c0-5d45a58fe17a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T16:57:34.131Z", + "completed":"2017-04-11T16:57:34.131Z", + "new_balance":"4902.36", + "value":"-2.68" + } + }, + { + "id":"4aa2f281-0c94-481f-aed5-5e2f5d0afb38", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T03:45:16.454Z", + "completed":"2017-04-13T03:45:16.454Z", + "new_balance":"4898.69", + "value":"-3.67" + } + }, + { + "id":"ba244b57-3520-4eba-8ada-441320bca909", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T11:59:57.095Z", + "completed":"2017-04-18T11:59:57.095Z", + "new_balance":"5133.65", + "value":"234.96" + } + }, + { + "id":"2eef8bac-8f55-4540-b45c-be34e310e009", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T01:24:50.323Z", + "completed":"2017-04-25T01:24:50.323Z", + "new_balance":"5110.41", + "value":"-23.24" + } + }, + { + "id":"6e54bd73-497a-4c39-8992-e8840df2415f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T03:46:13.416Z", + "completed":"2017-05-02T03:46:13.416Z", + "new_balance":"5106.97", + "value":"-3.44" + } + }, + { + "id":"5ca20678-162e-47bc-936c-493a04cf77d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T03:52:01.989Z", + "completed":"2017-05-02T03:52:01.989Z", + "new_balance":"5102.79", + "value":"-4.18" + } + }, + { + "id":"498ccc13-d1ae-4bf0-a61b-e6f00ee7ef59", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T08:01:50.303Z", + "completed":"2017-05-02T08:01:50.303Z", + "new_balance":"5099.35", + "value":"-3.44" + } + }, + { + "id":"555c3b09-799e-47a0-8e73-0283bf22b161", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T20:45:35.279Z", + "completed":"2017-05-02T20:45:35.279Z", + "new_balance":"5091.65", + "value":"-7.70" + } + }, + { + "id":"d4ddd23d-a643-47fe-a6d5-0ee866a345fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T02:01:21.595Z", + "completed":"2017-05-04T02:01:21.595Z", + "new_balance":"5090.95", + "value":"-0.70" + } + }, + { + "id":"a3fa5446-017d-475c-a4a6-1d397da51eda", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:25:31.132Z", + "completed":"2017-05-04T09:25:31.132Z", + "new_balance":"5083.65", + "value":"-7.30" + } + }, + { + "id":"f113c045-096e-4a2f-830f-f456f82d71f9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T06:51:44.238Z", + "completed":"2017-05-06T06:51:44.238Z", + "new_balance":"5076.21", + "value":"-7.44" + } + }, + { + "id":"c0bfbf14-62ae-4fd6-bf84-2f7291b7752f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T04:57:20.667Z", + "completed":"2017-05-07T04:57:20.667Z", + "new_balance":"5073.50", + "value":"-2.71" + } + }, + { + "id":"8230a892-bc77-48ff-9c20-e167c65a6f4c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T06:07:19.011Z", + "completed":"2017-05-07T06:07:19.011Z", + "new_balance":"5065.94", + "value":"-7.56" + } + }, + { + "id":"1ab2965e-0baf-48c8-b075-17bb8fa12bf2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T01:53:51.664Z", + "completed":"2017-05-09T01:53:51.664Z", + "new_balance":"5064.70", + "value":"-1.24" + } + }, + { + "id":"cba45e12-03fe-4913-a0e6-a559753d7c2f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T05:30:44.307Z", + "completed":"2017-05-09T05:30:44.307Z", + "new_balance":"5060.11", + "value":"-4.59" + } + }, + { + "id":"ebaf6dd3-5427-420a-a21f-5e23275b8a17", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T05:11:34.162Z", + "completed":"2017-05-13T05:11:34.162Z", + "new_balance":"5057.98", + "value":"-2.13" + } + }, + { + "id":"92d5917a-e767-4f2b-a9b1-6e7135d42690", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T18:45:09.915Z", + "completed":"2017-05-13T18:45:09.915Z", + "new_balance":"5055.27", + "value":"-2.71" + } + }, + { + "id":"616cd0df-1194-469e-8ba8-af8f8c846d43", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T23:59:47.690Z", + "completed":"2017-05-13T23:59:47.690Z", + "new_balance":"5054.57", + "value":"-0.70" + } + }, + { + "id":"d1d8b260-b285-45dd-8afd-6dc53ce66f7c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T02:06:42.223Z", + "completed":"2017-05-14T02:06:42.223Z", + "new_balance":"5047.27", + "value":"-7.30" + } + }, + { + "id":"d05afb2f-4b2f-4890-9f16-e20add19fb15", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T14:57:41.033Z", + "completed":"2017-05-14T14:57:41.033Z", + "new_balance":"5042.81", + "value":"-4.46" + } + }, + { + "id":"06418ca4-47c5-47f2-8d8f-3a72543593d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T01:25:08.539Z", + "completed":"2017-05-15T01:25:08.539Z", + "new_balance":"5039.14", + "value":"-3.67" + } + }, + { + "id":"0b860592-a89e-43d1-80db-6b6ee16c0493", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T12:02:40.789Z", + "completed":"2017-05-30T12:02:40.789Z", + "new_balance":"5274.10", + "value":"234.96" + } + }, + { + "id":"46811fcf-153a-4e35-9c42-df1a3b5e0e2e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T16:36:52.739Z", + "completed":"2017-05-30T16:36:52.739Z", + "new_balance":"5250.86", + "value":"-23.24" + } + }, + { + "id":"ef2f2387-d1c2-4d04-9a9a-277356767533", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T09:30:15.380Z", + "completed":"2017-06-01T09:30:15.380Z", + "new_balance":"5247.42", + "value":"-3.44" + } + }, + { + "id":"17a18a40-3991-4a59-934f-dd1747da7f1e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T09:33:42.045Z", + "completed":"2017-06-01T09:33:42.045Z", + "new_balance":"5239.72", + "value":"-7.70" + } + }, + { + "id":"d5cbf0f1-06c9-4e0f-aa7f-c0faa27db5f9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T11:35:29.925Z", + "completed":"2017-06-01T11:35:29.925Z", + "new_balance":"5235.54", + "value":"-4.18" + } + }, + { + "id":"6a345187-216f-423b-b0ea-715995899acd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T19:33:26.582Z", + "completed":"2017-06-01T19:33:26.582Z", + "new_balance":"5232.10", + "value":"-3.44" + } + }, + { + "id":"e14ed44d-09f8-4c69-be67-18c502e0f08b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T01:35:08.576Z", + "completed":"2017-06-04T01:35:08.576Z", + "new_balance":"5226.28", + "value":"-5.82" + } + }, + { + "id":"7abdbf4f-12ae-4338-9dff-299d6a591796", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T08:28:35.386Z", + "completed":"2017-06-04T08:28:35.386Z", + "new_balance":"5219.02", + "value":"-7.26" + } + }, + { + "id":"6f175bbb-6aa0-4c42-aeef-92cc22145d98", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T01:11:59.400Z", + "completed":"2017-06-11T01:11:59.400Z", + "new_balance":"5211.28", + "value":"-7.74" + } + }, + { + "id":"358ffe75-bd98-4fc0-95ea-bf3fd693b233", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T05:37:39.807Z", + "completed":"2017-06-11T05:37:39.807Z", + "new_balance":"5203.54", + "value":"-7.74" + } + }, + { + "id":"98c2db02-3e3a-4886-8403-37275270b086", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T16:58:32.223Z", + "completed":"2017-06-11T16:58:32.223Z", + "new_balance":"5199.13", + "value":"-4.41" + } + }, + { + "id":"85f13f67-99e5-4afa-a28d-437b17fb356e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T10:26:05.629Z", + "completed":"2017-06-12T10:26:05.629Z", + "new_balance":"5198.52", + "value":"-0.61" + } + }, + { + "id":"eea9c626-a649-4c23-b6a8-d1f291310e2d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T22:55:58.024Z", + "completed":"2017-06-12T22:55:58.024Z", + "new_balance":"5194.45", + "value":"-4.07" + } + }, + { + "id":"8e783fdb-695f-43e1-819e-0ce19057b244", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T11:08:29.783Z", + "completed":"2017-06-16T11:08:29.783Z", + "new_balance":"5184.44", + "value":"-10.01" + } + }, + { + "id":"e285214a-5a0b-4ac2-9382-abb585749972", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T17:35:43.041Z", + "completed":"2017-06-29T17:35:43.041Z", + "new_balance":"5180.77", + "value":"-3.67" + } + }, + { + "id":"6ad88b2a-f401-4517-a319-45185bf7f536", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:54:15.687Z", + "completed":"2017-06-30T01:54:15.687Z", + "new_balance":"5415.73", + "value":"234.96" + } + }, + { + "id":"72f79662-f431-4dc7-b4f5-054227c78e7c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T18:03:42.500Z", + "completed":"2017-06-30T18:03:42.500Z", + "new_balance":"5392.49", + "value":"-23.24" + } + }, + { + "id":"c0b6dfe7-d32a-4b35-bf2f-ba6464cf9e9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T11:06:58.062Z", + "completed":"2017-07-01T11:06:58.062Z", + "new_balance":"5388.31", + "value":"-4.18" + } + }, + { + "id":"0bf45645-6545-4059-aa16-6c4ac9d6b9cb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T13:53:29.258Z", + "completed":"2017-07-01T13:53:29.258Z", + "new_balance":"5384.87", + "value":"-3.44" + } + }, + { + "id":"f3f8ec27-f3e6-4842-9330-1a7331d46952", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T22:41:06.300Z", + "completed":"2017-07-01T22:41:06.300Z", + "new_balance":"5381.43", + "value":"-3.44" + } + }, + { + "id":"6a279b49-3bfe-476e-838d-52ef42fd288c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T23:30:14.029Z", + "completed":"2017-07-01T23:30:14.029Z", + "new_balance":"5373.73", + "value":"-7.70" + } + }, + { + "id":"042e2056-ce8c-4e1c-a21d-4ab51da1d7da", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T00:56:16.518Z", + "completed":"2017-07-05T00:56:16.518Z", + "new_balance":"5366.43", + "value":"-7.30" + } + }, + { + "id":"6221e136-ff5e-47c9-ad20-1b87860a0c56", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T22:54:18.082Z", + "completed":"2017-07-05T22:54:18.082Z", + "new_balance":"5356.39", + "value":"-10.04" + } + }, + { + "id":"551c0f95-50d6-4c16-bda5-cb6ad2845723", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T00:57:07.516Z", + "completed":"2017-07-08T00:57:07.516Z", + "new_balance":"5354.99", + "value":"-1.40" + } + }, + { + "id":"14dbd04b-2829-4a44-9c71-9f9479bc997f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T00:49:43.318Z", + "completed":"2017-07-10T00:49:43.318Z", + "new_balance":"5350.33", + "value":"-4.66" + } + }, + { + "id":"eb3dc46a-1856-4a71-8c64-f401f5514db3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T11:10:16.768Z", + "completed":"2017-07-12T11:10:16.768Z", + "new_balance":"5346.89", + "value":"-3.44" + } + }, + { + "id":"e432a7c8-2540-4a7e-8783-76d5b7172cb8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T19:37:51.458Z", + "completed":"2017-07-12T19:37:51.458Z", + "new_balance":"5341.48", + "value":"-5.41" + } + }, + { + "id":"78d095cb-3485-478b-b6ba-106b8ed51e06", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T16:02:16.582Z", + "completed":"2017-07-13T16:02:16.582Z", + "new_balance":"5340.97", + "value":"-0.51" + } + }, + { + "id":"46c95c7a-d6d0-46a9-83b3-86940e6566ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T19:51:33.298Z", + "completed":"2017-07-13T19:51:33.298Z", + "new_balance":"5340.51", + "value":"-0.46" + } + }, + { + "id":"af4f62fc-4362-43dd-8c8f-0afeeafb4bad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T00:39:53.331Z", + "completed":"2017-07-18T00:39:53.331Z", + "new_balance":"5330.99", + "value":"-9.52" + } + }, + { + "id":"95261a36-a9af-4170-acad-284de4fc8820", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T00:18:04.449Z", + "completed":"2017-07-20T00:18:04.449Z", + "new_balance":"5324.16", + "value":"-6.83" + } + }, + { + "id":"dca5d08e-1a99-4c54-971c-a76e268035fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T17:26:46.173Z", + "completed":"2017-07-20T17:26:46.173Z", + "new_balance":"5316.86", + "value":"-7.30" + } + }, + { + "id":"b521804c-575c-4744-a955-da2dba9a8411", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T06:32:04.508Z", + "completed":"2017-07-24T06:32:04.508Z", + "new_balance":"5314.18", + "value":"-2.68" + } + }, + { + "id":"671f4386-2ad7-46e7-9857-f169250804d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T15:50:54.906Z", + "completed":"2017-07-29T15:50:54.906Z", + "new_balance":"5549.14", + "value":"234.96" + } + }, + { + "id":"5dde64e7-3d0a-4c3b-a878-bbc83c69a049", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T21:21:59.541Z", + "completed":"2017-07-29T21:21:59.541Z", + "new_balance":"5545.47", + "value":"-3.67" + } + }, + { + "id":"79f13f4d-1d22-42cf-8f0c-9ec4d845edd0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T13:07:46.784Z", + "completed":"2017-07-30T13:07:46.784Z", + "new_balance":"5522.23", + "value":"-23.24" + } + }, + { + "id":"58101bb0-4073-4217-8cb6-96a879af5452", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T06:53:50.233Z", + "completed":"2017-08-01T06:53:50.233Z", + "new_balance":"5518.79", + "value":"-3.44" + } + }, + { + "id":"44406eb5-07a6-4a21-b386-faf441bb4a20", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T11:31:07.190Z", + "completed":"2017-08-01T11:31:07.190Z", + "new_balance":"5514.61", + "value":"-4.18" + } + }, + { + "id":"dff171fc-4bf6-4e56-af94-a53cb2a9d83f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T12:44:21.571Z", + "completed":"2017-08-01T12:44:21.571Z", + "new_balance":"5511.17", + "value":"-3.44" + } + }, + { + "id":"bcb12372-03eb-4e76-ab52-d68339e43838", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T20:41:56.414Z", + "completed":"2017-08-01T20:41:56.414Z", + "new_balance":"5503.47", + "value":"-7.70" + } + }, + { + "id":"533d8c11-44de-4c6a-b1eb-bcc73ff529c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T03:39:19.338Z", + "completed":"2017-08-03T03:39:19.338Z", + "new_balance":"5502.77", + "value":"-0.70" + } + }, + { + "id":"5f338c36-d8bf-4005-acee-12e4d799b065", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T09:24:23.066Z", + "completed":"2017-08-04T09:24:23.066Z", + "new_balance":"5495.47", + "value":"-7.30" + } + }, + { + "id":"4be9e92f-f2ce-4578-aa68-522ae2338565", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T01:56:48.902Z", + "completed":"2017-08-08T01:56:48.902Z", + "new_balance":"5494.35", + "value":"-1.12" + } + }, + { + "id":"9c10adcc-493a-460a-9dfa-b0b2833b1d8f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T05:28:53.075Z", + "completed":"2017-08-08T05:28:53.075Z", + "new_balance":"5490.55", + "value":"-3.80" + } + }, + { + "id":"079ddece-a04d-47b9-b29c-e45eb9c851ca", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T08:43:43.559Z", + "completed":"2017-08-08T08:43:43.559Z", + "new_balance":"5480.45", + "value":"-10.10" + } + }, + { + "id":"88d43c72-af8c-4666-804f-a7083abe1018", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T15:13:16.208Z", + "completed":"2017-08-08T15:13:16.208Z", + "new_balance":"5470.99", + "value":"-9.46" + } + }, + { + "id":"d0e7f54a-a8ba-45d6-a15c-f6e54a464bc1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T06:46:05.730Z", + "completed":"2017-08-09T06:46:05.730Z", + "new_balance":"5466.40", + "value":"-4.59" + } + }, + { + "id":"2ba15ec8-6a7b-4c5a-86c6-241857beff15", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T06:52:08.166Z", + "completed":"2017-08-14T06:52:08.166Z", + "new_balance":"5464.00", + "value":"-2.40" + } + }, + { + "id":"e95a9bc0-7627-49ea-899a-7239c4b7e891", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T02:43:14.002Z", + "completed":"2017-08-15T02:43:14.002Z", + "new_balance":"5461.12", + "value":"-2.88" + } + }, + { + "id":"0ad53887-2395-42d1-b071-f24c4abd8bd6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T14:30:36.849Z", + "completed":"2017-08-19T14:30:36.849Z", + "new_balance":"5460.60", + "value":"-0.52" + } + }, + { + "id":"c6870b86-3da6-46e5-b423-8f4a0aa39334", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T14:18:38.348Z", + "completed":"2017-08-22T14:18:38.348Z", + "new_balance":"5455.42", + "value":"-5.18" + } + }, + { + "id":"951cc5fc-7f90-4d5c-9657-6bb1519755f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T03:56:56.892Z", + "completed":"2017-08-26T03:56:56.892Z", + "new_balance":"5448.12", + "value":"-7.30" + } + }, + { + "id":"686cbe59-9370-41e0-9329-8cacf4f0f1d1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T23:08:46.144Z", + "completed":"2017-08-28T23:08:46.144Z", + "new_balance":"5424.88", + "value":"-23.24" + } + }, + { + "id":"2c0a8d86-ba06-4b52-8c82-0ca502861b1b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T12:09:51.072Z", + "completed":"2017-08-29T12:09:51.072Z", + "new_balance":"5659.84", + "value":"234.96" + } + }, + { + "id":"9dfcf876-c1e0-42d9-acbf-9fb9ded950cd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T15:33:29.199Z", + "completed":"2017-08-29T15:33:29.199Z", + "new_balance":"5656.17", + "value":"-3.67" + } + }, + { + "id":"27b0b3a6-ca04-4fc8-b70b-14ed006ebe47", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T14:27:22.048Z", + "completed":"2017-08-30T14:27:22.048Z", + "new_balance":"5632.93", + "value":"-23.24" + } + }, + { + "id":"63e1e5da-d834-4386-8349-fc2d7e81d106", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T04:22:59.030Z", + "completed":"2017-09-01T04:22:59.030Z", + "new_balance":"5629.49", + "value":"-3.44" + } + }, + { + "id":"f6b4a8d9-ce46-4267-b783-e0acfa37f0e9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T11:17:20.789Z", + "completed":"2017-09-01T11:17:20.789Z", + "new_balance":"5625.31", + "value":"-4.18" + } + }, + { + "id":"d5f38b2e-537c-4501-96cc-fe89655b3bfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T14:12:50.466Z", + "completed":"2017-09-01T14:12:50.466Z", + "new_balance":"5617.61", + "value":"-7.70" + } + }, + { + "id":"ef4c732b-d83a-4135-9954-d9b40e61961a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T23:47:54.252Z", + "completed":"2017-09-01T23:47:54.252Z", + "new_balance":"5614.17", + "value":"-3.44" + } + }, + { + "id":"bb6b0917-5635-477a-b359-130251955f73", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T11:00:40.088Z", + "completed":"2017-09-09T11:00:40.088Z", + "new_balance":"5606.91", + "value":"-7.26" + } + }, + { + "id":"52a83b13-ea6c-4645-8b39-82cf7866dd46", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T22:31:41.230Z", + "completed":"2017-09-09T22:31:41.230Z", + "new_balance":"5601.09", + "value":"-5.82" + } + }, + { + "id":"a62acf08-77bf-4c35-9f29-9d67efc9dc68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:26:14.095Z", + "completed":"2017-09-17T13:26:14.095Z", + "new_balance":"5593.35", + "value":"-7.74" + } + }, + { + "id":"1164ddd0-609b-4019-b28d-f841c35ec8ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T07:01:56.868Z", + "completed":"2017-09-18T07:01:56.868Z", + "new_balance":"5589.28", + "value":"-4.07" + } + }, + { + "id":"3031c83a-8b63-4905-b8ff-713e0ff7bdc2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T19:32:47.798Z", + "completed":"2017-09-18T19:32:47.798Z", + "new_balance":"5588.67", + "value":"-0.61" + } + }, + { + "id":"18ce0aea-8c18-48cd-8cfa-10cfefefe206", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T23:31:50.469Z", + "completed":"2017-09-18T23:31:50.469Z", + "new_balance":"5580.93", + "value":"-7.74" + } + }, + { + "id":"d90ce69c-74f2-4317-83ec-0ea9f79e6906", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T23:36:59.185Z", + "completed":"2017-09-18T23:36:59.185Z", + "new_balance":"5576.52", + "value":"-4.41" + } + }, + { + "id":"12c7b943-0c3d-454b-acdc-9bb4e3b77b95", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T12:42:25.888Z", + "completed":"2017-09-22T12:42:25.888Z", + "new_balance":"5566.51", + "value":"-10.01" + } + }, + { + "id":"ac450bc5-f776-4eb5-a12f-453fc028e1b2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T03:09:20.056Z", + "completed":"2017-09-29T03:09:20.056Z", + "new_balance":"5801.47", + "value":"234.96" + } + }, + { + "id":"aecd0ce8-4f78-49a0-9c8e-38401ea1c15b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T11:57:35.046Z", + "completed":"2017-09-29T11:57:35.046Z", + "new_balance":"5797.80", + "value":"-3.67" + } + }, + { + "id":"1b21c05b-7e86-4645-a24b-aa83831bba31", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T15:47:43.633Z", + "completed":"2017-09-30T15:47:43.633Z", + "new_balance":"5774.56", + "value":"-23.24" + } + }, + { + "id":"d40a1bde-5ddc-44f3-adef-7b12cf3603a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T02:47:23.736Z", + "completed":"2017-10-01T02:47:23.736Z", + "new_balance":"5766.86", + "value":"-7.70" + } + }, + { + "id":"e0e52bea-b475-4ebd-a0b5-7b441ab10c10", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T03:39:14.958Z", + "completed":"2017-10-01T03:39:14.958Z", + "new_balance":"5763.42", + "value":"-3.44" + } + }, + { + "id":"6b86d0f6-5013-4b97-afb0-77ebe66786a8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T11:24:00.392Z", + "completed":"2017-10-01T11:24:00.392Z", + "new_balance":"5759.98", + "value":"-3.44" + } + }, + { + "id":"1e2a993d-1bd1-489e-bd99-29c676341c08", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T12:42:11.029Z", + "completed":"2017-10-01T12:42:11.029Z", + "new_balance":"5755.80", + "value":"-4.18" + } + }, + { + "id":"a2f00dce-91d3-4cec-bb2e-6412cb5b04cb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T15:58:06.127Z", + "completed":"2017-10-02T15:58:06.127Z", + "new_balance":"5748.24", + "value":"-7.56" + } + }, + { + "id":"b269bfee-9cf4-4153-9063-ec2f0dcb2529", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T00:50:52.896Z", + "completed":"2017-10-05T00:50:52.896Z", + "new_balance":"5742.79", + "value":"-5.45" + } + }, + { + "id":"25362b57-a2f4-49b4-b812-6361e058d2c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T01:45:57.201Z", + "completed":"2017-10-05T01:45:57.201Z", + "new_balance":"5739.35", + "value":"-3.44" + } + }, + { + "id":"ebfe7823-6c58-4706-97ac-19ba98845a5b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T04:27:01.870Z", + "completed":"2017-10-05T04:27:01.870Z", + "new_balance":"5735.17", + "value":"-4.18" + } + }, + { + "id":"23086323-3a1a-4058-a004-8e31793e6a61", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T07:01:46.527Z", + "completed":"2017-10-05T07:01:46.527Z", + "new_balance":"5734.58", + "value":"-0.59" + } + }, + { + "id":"331f4f99-3116-4dbc-83ca-a620cbda8007", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T08:06:53.607Z", + "completed":"2017-10-05T08:06:53.607Z", + "new_balance":"5733.34", + "value":"-1.24" + } + }, + { + "id":"a0bd4a34-2aea-4fd7-a25b-856a88542db0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:58:58.437Z", + "completed":"2017-10-05T10:58:58.437Z", + "new_balance":"5726.04", + "value":"-7.30" + } + }, + { + "id":"dd26a41b-3f2c-416d-b421-a8b04c368fd0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T23:24:50.752Z", + "completed":"2017-10-05T23:24:50.752Z", + "new_balance":"5725.34", + "value":"-0.70" + } + }, + { + "id":"b73bbf59-26d6-4489-8037-824735297b8f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T00:43:16.847Z", + "completed":"2017-10-09T00:43:16.847Z", + "new_balance":"5717.25", + "value":"-8.09" + } + }, + { + "id":"81cba52a-36da-4be4-b3ff-78c6fd9a5094", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T11:41:53.603Z", + "completed":"2017-10-11T11:41:53.603Z", + "new_balance":"5711.13", + "value":"-6.12" + } + }, + { + "id":"4883d2b7-648e-4e97-8baf-1c6b629294a0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T04:16:57.000Z", + "completed":"2017-10-12T04:16:57.000Z", + "new_balance":"5708.45", + "value":"-2.68" + } + }, + { + "id":"ea942a5f-f88c-4dd1-81a2-b3dc44491471", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T12:07:43.019Z", + "completed":"2017-10-12T12:07:43.019Z", + "new_balance":"5701.15", + "value":"-7.30" + } + }, + { + "id":"41a7b7b7-5958-4edf-9636-e52d5c9a45ec", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T18:02:54.168Z", + "completed":"2017-10-20T18:02:54.168Z", + "new_balance":"5697.48", + "value":"-3.67" + } + }, + { + "id":"12fb21ef-f39a-46ef-9cdd-000b9995a0b7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T21:23:29.573Z", + "completed":"2017-10-29T21:23:29.573Z", + "new_balance":"5932.44", + "value":"234.96" + } + }, + { + "id":"f9a47f61-a7ed-49ea-8754-764cd0e6a2c6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T12:49:39.013Z", + "completed":"2017-10-30T12:49:39.013Z", + "new_balance":"5909.20", + "value":"-23.24" + } + }, + { + "id":"55aa9126-312c-4d5a-bee4-a462041c04df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T01:18:26.306Z", + "completed":"2017-11-02T01:18:26.306Z", + "new_balance":"5905.02", + "value":"-4.18" + } + }, + { + "id":"8bbc39b2-b610-41c6-bf36-5fd2d864232a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T14:48:07.993Z", + "completed":"2017-11-02T14:48:07.993Z", + "new_balance":"5901.58", + "value":"-3.44" + } + }, + { + "id":"d00eb4e1-ddfa-4198-aef0-5ef3797a639b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T16:01:48.193Z", + "completed":"2017-11-02T16:01:48.193Z", + "new_balance":"5898.14", + "value":"-3.44" + } + }, + { + "id":"9479951d-5513-4d52-8700-c3029cb8498b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T19:13:50.118Z", + "completed":"2017-11-02T19:13:50.118Z", + "new_balance":"5890.44", + "value":"-7.70" + } + }, + { + "id":"2a89602b-526f-4de5-a445-0ab074143c5e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T08:15:36.633Z", + "completed":"2017-11-04T08:15:36.633Z", + "new_balance":"5883.14", + "value":"-7.30" + } + }, + { + "id":"a97f6db6-af57-44c4-8a10-8b13ff70ad76", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T23:26:48.514Z", + "completed":"2017-11-04T23:26:48.514Z", + "new_balance":"5882.44", + "value":"-0.70" + } + }, + { + "id":"83bd8420-14c3-4d4b-ab8b-0ee397897594", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T12:50:27.094Z", + "completed":"2017-11-06T12:50:27.094Z", + "new_balance":"5875.00", + "value":"-7.44" + } + }, + { + "id":"39ff4672-387b-479a-8d08-51d0e2a34d74", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T04:07:00.806Z", + "completed":"2017-11-07T04:07:00.806Z", + "new_balance":"5872.29", + "value":"-2.71" + } + }, + { + "id":"9fdded5e-f5df-43de-a5d1-b69f9c5efd93", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T05:01:38.374Z", + "completed":"2017-11-07T05:01:38.374Z", + "new_balance":"5864.73", + "value":"-7.56" + } + }, + { + "id":"919448dc-0155-400e-881d-0e26ec386ac1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T06:20:01.437Z", + "completed":"2017-11-09T06:20:01.437Z", + "new_balance":"5860.14", + "value":"-4.59" + } + }, + { + "id":"98edbd36-e926-4fde-90e0-2f52a5d273bb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T15:24:52.780Z", + "completed":"2017-11-09T15:24:52.780Z", + "new_balance":"5858.90", + "value":"-1.24" + } + }, + { + "id":"b0bd52d4-4cb1-4023-b4bc-fd91c7afa6e7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T03:59:41.906Z", + "completed":"2017-11-13T03:59:41.906Z", + "new_balance":"5858.20", + "value":"-0.70" + } + }, + { + "id":"520fb729-4347-456c-b820-7f21ac9ba08a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T07:58:58.703Z", + "completed":"2017-11-13T07:58:58.703Z", + "new_balance":"5856.07", + "value":"-2.13" + } + }, + { + "id":"0ff5c233-fa07-4685-9196-5e23db53cde7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T12:46:10.598Z", + "completed":"2017-11-13T12:46:10.598Z", + "new_balance":"5853.36", + "value":"-2.71" + } + }, + { + "id":"f8a2032f-1a64-4a42-9eb6-7cd488c9ff95", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T04:36:17.930Z", + "completed":"2017-11-14T04:36:17.930Z", + "new_balance":"5848.90", + "value":"-4.46" + } + }, + { + "id":"a8739fe8-25ab-438a-b91a-df4e470bd18c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T23:31:15.852Z", + "completed":"2017-11-14T23:31:15.852Z", + "new_balance":"5841.60", + "value":"-7.30" + } + }, + { + "id":"dc638497-2d85-482c-a4db-163bc32db0fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T11:10:21.037Z", + "completed":"2017-11-15T11:10:21.037Z", + "new_balance":"5837.93", + "value":"-3.67" + } + }, + { + "id":"9ae0beb9-ffef-44a9-8b65-4185b699b1a3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:20:18.744Z", + "completed":"2017-11-30T00:20:18.744Z", + "new_balance":"5814.69", + "value":"-23.24" + } + }, + { + "id":"de274e3e-e622-4741-98f6-5c7e3441bdb3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T03:52:57.770Z", + "completed":"2017-11-30T03:52:57.770Z", + "new_balance":"6049.65", + "value":"234.96" + } + }, + { + "id":"3bbd0e1f-22b3-40d6-bf11-d29e6938d8d9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T05:36:39.102Z", + "completed":"2017-12-01T05:36:39.102Z", + "new_balance":"6041.95", + "value":"-7.70" + } + }, + { + "id":"6a578bb5-b54f-44a8-b6b3-ccdc436e8a57", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T06:49:47.138Z", + "completed":"2017-12-01T06:49:47.138Z", + "new_balance":"6037.77", + "value":"-4.18" + } + }, + { + "id":"511399bc-c1c3-4e81-85cc-ed821696842f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:57:31.372Z", + "completed":"2017-12-01T06:57:31.372Z", + "new_balance":"6034.33", + "value":"-3.44" + } + }, + { + "id":"3ab9068c-6aea-4060-b9ba-2d71493a0504", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:36:57.067Z", + "completed":"2017-12-01T19:36:57.067Z", + "new_balance":"6030.89", + "value":"-3.44" + } + }, + { + "id":"3ce8199d-e436-442f-88f7-f9f3238447ff", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T05:23:34.961Z", + "completed":"2017-12-04T05:23:34.961Z", + "new_balance":"6023.63", + "value":"-7.26" + } + }, + { + "id":"bee4b516-21ff-4651-958b-18eaeb3fee7a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T15:59:28.731Z", + "completed":"2017-12-04T15:59:28.731Z", + "new_balance":"6017.81", + "value":"-5.82" + } + }, + { + "id":"c756e854-8d1b-43cd-b608-cfe41b8c74ba", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T07:01:11.155Z", + "completed":"2017-12-11T07:01:11.155Z", + "new_balance":"6013.40", + "value":"-4.41" + } + }, + { + "id":"84d8fc7a-4ed5-4012-b46f-a292a0b1bc39", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T10:50:53.349Z", + "completed":"2017-12-11T10:50:53.349Z", + "new_balance":"6005.66", + "value":"-7.74" + } + }, + { + "id":"0f8229c3-77d5-4c8a-8527-0f11c5c30cc2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T18:05:16.642Z", + "completed":"2017-12-11T18:05:16.642Z", + "new_balance":"5997.92", + "value":"-7.74" + } + }, + { + "id":"a6bf4548-0447-4738-85e1-0ea3f7900cd9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T17:36:24.877Z", + "completed":"2017-12-12T17:36:24.877Z", + "new_balance":"5997.31", + "value":"-0.61" + } + }, + { + "id":"31c884f9-e828-4ff8-a298-0a3bdcc2ad65", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T23:15:27.720Z", + "completed":"2017-12-12T23:15:27.720Z", + "new_balance":"5993.24", + "value":"-4.07" + } + }, + { + "id":"4f157c12-39a5-4d25-a35c-1ccad9704479", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T07:23:32.837Z", + "completed":"2017-12-16T07:23:32.837Z", + "new_balance":"5983.23", + "value":"-10.01" + } + }, + { + "id":"7151fd00-1bc6-4555-89d4-3a3fd4f69016", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T06:48:40.354Z", + "completed":"2017-12-29T06:48:40.354Z", + "new_balance":"5979.56", + "value":"-3.67" + } + }, + { + "id":"7b597735-4050-4547-b987-62dbfcb01481", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T00:14:33.394Z", + "completed":"2017-12-30T00:14:33.394Z", + "new_balance":"5956.32", + "value":"-23.24" + } + }, + { + "id":"4239fa3c-5fbb-4b8f-b603-8f1882d69c0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T06:03:00.441Z", + "completed":"2017-12-30T06:03:00.441Z", + "new_balance":"6191.28", + "value":"234.96" + } + }, + { + "id":"a0a30811-f8c2-406d-a3f2-6a6a0d47077b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T20:17:18.263Z", + "completed":"2016-03-01T20:17:18.263Z", + "new_balance":"3477.45", + "value":"-4.61" + } + }, + { + "id":"2355c7b5-ee2e-4b27-96a7-c9ba75cd8c82", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T01:15:31.908Z", + "completed":"2016-03-02T01:15:31.908Z", + "new_balance":"3470.26", + "value":"-7.19" + } + }, + { + "id":"70cd5e45-f540-43fa-8d15-e04d1d11102c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T12:15:10.315Z", + "completed":"2016-03-06T12:15:10.315Z", + "new_balance":"3463.73", + "value":"-6.53" + } + }, + { + "id":"4209221a-17df-4af7-972b-4c86f50947e8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T05:08:33.218Z", + "completed":"2016-03-11T05:08:33.218Z", + "new_balance":"3463.08", + "value":"-0.65" + } + }, + { + "id":"94e64556-0032-4ca5-9aa3-3e79e9bd856f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T09:17:03.099Z", + "completed":"2016-03-13T09:17:03.099Z", + "new_balance":"3462.74", + "value":"-0.34" + } + }, + { + "id":"c870e074-6572-44f9-8934-234a78b258bb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T13:38:19.375Z", + "completed":"2016-03-16T13:38:19.375Z", + "new_balance":"3439.50", + "value":"-23.24" + } + }, + { + "id":"c85bbeae-1cb6-45ca-a325-27847b93fe0f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T01:37:09.742Z", + "completed":"2016-03-17T01:37:09.742Z", + "new_balance":"3435.23", + "value":"-4.27" + } + }, + { + "id":"f37aecd4-b47d-41e9-a5fe-5d187cde62cb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T01:55:10.628Z", + "completed":"2016-03-17T01:55:10.628Z", + "new_balance":"3422.13", + "value":"-13.10" + } + }, + { + "id":"794d6431-366a-4008-95ce-f689f0012bee", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T03:20:29.562Z", + "completed":"2016-03-19T03:20:29.562Z", + "new_balance":"3421.79", + "value":"-0.34" + } + }, + { + "id":"ecf8c65d-53a8-4b66-a2a7-d616a6c47ad4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T00:33:00.718Z", + "completed":"2016-03-21T00:33:00.718Z", + "new_balance":"3419.47", + "value":"-2.32" + } + }, + { + "id":"dd10738c-d31e-404a-add5-1690771e5895", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T01:15:43.797Z", + "completed":"2016-03-23T01:15:43.797Z", + "new_balance":"3414.86", + "value":"-4.61" + } + }, + { + "id":"67dbad43-6e72-481d-ab97-d50c075e267a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T03:45:01.232Z", + "completed":"2016-03-24T03:45:01.232Z", + "new_balance":"3414.21", + "value":"-0.65" + } + }, + { + "id":"f6a8196b-2531-4ed2-8508-aa55c4b6f03e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T20:19:26.458Z", + "completed":"2016-03-26T20:19:26.458Z", + "new_balance":"3413.06", + "value":"-1.15" + } + }, + { + "id":"73c15c89-cd43-45f6-a2f1-a0f8d75075c6", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T08:18:01.498Z", + "completed":"2016-04-01T08:18:01.498Z", + "new_balance":"3411.91", + "value":"-1.15" + } + }, + { + "id":"7bba8061-e95e-458f-a5b4-4e3759093baa", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T17:39:13.767Z", + "completed":"2016-06-01T17:39:13.767Z", + "new_balance":"3407.30", + "value":"-4.61" + } + }, + { + "id":"6ebd398c-b937-4378-8b85-fcddc1f5ddc6", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T09:05:18.607Z", + "completed":"2016-06-04T09:05:18.607Z", + "new_balance":"3400.11", + "value":"-7.19" + } + }, + { + "id":"d7685d3d-3380-4e5b-b7af-1331ed3a02a4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T18:31:00.950Z", + "completed":"2016-06-19T18:31:00.950Z", + "new_balance":"3393.58", + "value":"-6.53" + } + }, + { + "id":"c376dd53-fc14-4dc0-b1a7-373950cc1efe", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T03:36:14.325Z", + "completed":"2016-06-21T03:36:14.325Z", + "new_balance":"3392.93", + "value":"-0.65" + } + }, + { + "id":"461ee224-c0f9-4ee7-9b35-d1c7b657035c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T20:07:09.278Z", + "completed":"2016-06-24T20:07:09.278Z", + "new_balance":"3392.59", + "value":"-0.34" + } + }, + { + "id":"8d1e0615-074f-4193-8b56-567a18a2de82", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T03:20:49.218Z", + "completed":"2016-06-28T03:20:49.218Z", + "new_balance":"3369.35", + "value":"-23.24" + } + }, + { + "id":"c6b5090c-ec40-40e1-a65f-2e5cd5b007fc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T06:20:06.969Z", + "completed":"2016-06-28T06:20:06.969Z", + "new_balance":"3356.25", + "value":"-13.10" + } + }, + { + "id":"ce1ba1f4-23ae-46ef-949d-a67e0bb50c0d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T13:47:51.615Z", + "completed":"2016-06-28T13:47:51.615Z", + "new_balance":"3351.98", + "value":"-4.27" + } + }, + { + "id":"0924bbe8-fc3f-4e06-9f4d-98ecd60c4c78", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T16:21:40.297Z", + "completed":"2016-06-29T16:21:40.297Z", + "new_balance":"3351.64", + "value":"-0.34" + } + }, + { + "id":"d3c0be3d-6e80-4413-a638-ebf7038ebedf", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T03:55:25.429Z", + "completed":"2016-06-30T03:55:25.429Z", + "new_balance":"3347.03", + "value":"-4.61" + } + }, + { + "id":"126bca6c-04c3-4b0d-8078-a053cbcad43e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T06:37:02.654Z", + "completed":"2016-06-30T06:37:02.654Z", + "new_balance":"3346.38", + "value":"-0.65" + } + }, + { + "id":"046e8606-e8f4-4528-a429-21c20aad6b25", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T14:24:54.639Z", + "completed":"2016-06-30T14:24:54.639Z", + "new_balance":"3344.06", + "value":"-2.32" + } + }, + { + "id":"0453a424-56a3-4abd-9763-7c3a6818c4ce", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T13:01:47.489Z", + "completed":"2016-09-01T13:01:47.489Z", + "new_balance":"3342.21", + "value":"-1.85" + } + }, + { + "id":"6014ac72-45db-4cf4-ab32-36493cfecbd3", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T04:41:58.434Z", + "completed":"2016-09-02T04:41:58.434Z", + "new_balance":"3335.02", + "value":"-7.19" + } + }, + { + "id":"74dc0f7c-ff50-4334-a4f8-8fa727f9e95b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T01:44:43.465Z", + "completed":"2016-09-07T01:44:43.465Z", + "new_balance":"3328.49", + "value":"-6.53" + } + }, + { + "id":"cbe8eb01-396f-4b71-ad54-c63bb8eeef73", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T05:49:30.898Z", + "completed":"2016-09-11T05:49:30.898Z", + "new_balance":"3327.84", + "value":"-0.65" + } + }, + { + "id":"b4a06bc3-d22a-4512-b836-6cc589c4bf4d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T20:44:15.972Z", + "completed":"2016-09-15T20:44:15.972Z", + "new_balance":"3326.44", + "value":"-1.40" + } + }, + { + "id":"b45efb47-04e4-49bd-bdc7-a33d08907dcb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T03:39:41.278Z", + "completed":"2016-09-17T03:39:41.278Z", + "new_balance":"3313.34", + "value":"-13.10" + } + }, + { + "id":"9149cad0-c6ad-4468-baa6-08f1f42c000c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T05:02:46.781Z", + "completed":"2016-09-17T05:02:46.781Z", + "new_balance":"3290.10", + "value":"-23.24" + } + }, + { + "id":"72edd15a-8209-4ab8-8279-a736605c3d11", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T21:51:31.360Z", + "completed":"2016-09-17T21:51:31.360Z", + "new_balance":"3285.83", + "value":"-4.27" + } + }, + { + "id":"b7283fcd-ba9c-4296-a3aa-b549f7bd893c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T08:34:56.860Z", + "completed":"2016-09-19T08:34:56.860Z", + "new_balance":"3285.49", + "value":"-0.34" + } + }, + { + "id":"7d650da5-fa9d-4937-919c-c39f3b1267c2", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T06:34:48.054Z", + "completed":"2016-09-21T06:34:48.054Z", + "new_balance":"3283.17", + "value":"-2.32" + } + }, + { + "id":"e989d199-16b4-45b1-8570-5858b427c162", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T12:07:15.647Z", + "completed":"2016-09-23T12:07:15.647Z", + "new_balance":"3278.56", + "value":"-4.61" + } + }, + { + "id":"a9fe50eb-db6f-4d75-919f-69856d62a1b7", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T09:49:30.240Z", + "completed":"2016-09-24T09:49:30.240Z", + "new_balance":"3277.91", + "value":"-0.65" + } + }, + { + "id":"9a15f9b1-0803-48f1-94ed-fd9750b20b23", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T15:08:30.541Z", + "completed":"2016-09-27T15:08:30.541Z", + "new_balance":"3276.76", + "value":"-1.15" + } + }, + { + "id":"845330ed-10ca-4b7c-a752-001dcbc7d870", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T23:55:16.919Z", + "completed":"2016-10-01T23:55:16.919Z", + "new_balance":"3275.61", + "value":"-1.15" + } + }, + { + "id":"18a02b33-04a3-43f8-bdbe-ae2726651eac", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:51:56.944Z", + "completed":"2016-12-01T15:51:56.944Z", + "new_balance":"3271.00", + "value":"-4.61" + } + }, + { + "id":"29e42167-f129-4e74-9c66-ea2765769ec1", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T01:32:17.207Z", + "completed":"2016-12-04T01:32:17.207Z", + "new_balance":"3263.81", + "value":"-7.19" + } + }, + { + "id":"4441f122-e710-45cb-8cc0-0c1fd1177d60", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T17:20:05.510Z", + "completed":"2016-12-19T17:20:05.510Z", + "new_balance":"3257.28", + "value":"-6.53" + } + }, + { + "id":"29b98dce-74bd-41cb-a771-eab6b5c3f42a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T06:33:24.949Z", + "completed":"2016-12-24T06:33:24.949Z", + "new_balance":"3256.94", + "value":"-0.34" + } + }, + { + "id":"a1370d85-7fd3-4056-a20b-0befdf047f7a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T09:02:59.528Z", + "completed":"2016-12-24T09:02:59.528Z", + "new_balance":"3256.29", + "value":"-0.65" + } + }, + { + "id":"1395995f-1b3b-4cc9-9d33-89398b0de44d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T02:18:19.914Z", + "completed":"2016-12-28T02:18:19.914Z", + "new_balance":"3243.19", + "value":"-13.10" + } + }, + { + "id":"ca6d8bd6-4160-46e1-ac50-1f1f0af95ad2", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T10:49:59.800Z", + "completed":"2016-12-28T10:49:59.800Z", + "new_balance":"3238.92", + "value":"-4.27" + } + }, + { + "id":"3903486e-7ed4-40ed-ab01-1f8fd38797cc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T18:01:53.823Z", + "completed":"2016-12-28T18:01:53.823Z", + "new_balance":"3215.68", + "value":"-23.24" + } + }, + { + "id":"5d87a071-a37d-47ea-8f4d-b26317be6a73", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T22:26:23.761Z", + "completed":"2016-12-29T22:26:23.761Z", + "new_balance":"3215.34", + "value":"-0.34" + } + }, + { + "id":"68ea5006-23dd-4fa8-ba7d-23eb07cfb747", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T15:02:38.428Z", + "completed":"2016-12-30T15:02:38.428Z", + "new_balance":"3210.73", + "value":"-4.61" + } + }, + { + "id":"d25cc5e0-2441-46b9-9e03-2b0b449898dc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T18:55:50.320Z", + "completed":"2016-12-30T18:55:50.320Z", + "new_balance":"3208.41", + "value":"-2.32" + } + }, + { + "id":"116305f0-f19a-415b-9ef8-76d5162b62eb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T22:49:03.815Z", + "completed":"2016-12-30T22:49:03.815Z", + "new_balance":"3207.76", + "value":"-0.65" + } + }, + { + "id":"517fed56-5499-4cbe-9e66-42d828e4f855", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T11:32:03.257Z", + "completed":"2017-03-01T11:32:03.257Z", + "new_balance":"3203.15", + "value":"-4.61" + } + }, + { + "id":"30601a5d-cc07-44f9-b26e-1d6c501f53f5", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T19:32:22.601Z", + "completed":"2017-03-02T19:32:22.601Z", + "new_balance":"3195.96", + "value":"-7.19" + } + }, + { + "id":"afb503d6-d049-447e-9f91-f2a2b929fdf5", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T10:47:21.521Z", + "completed":"2017-03-06T10:47:21.521Z", + "new_balance":"3189.43", + "value":"-6.53" + } + }, + { + "id":"456904b6-0ad3-40c8-8839-91a302a08b59", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T07:07:54.457Z", + "completed":"2017-03-11T07:07:54.457Z", + "new_balance":"3188.78", + "value":"-0.65" + } + }, + { + "id":"d95f8856-5037-4a6f-a24e-e1271c40c0f0", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T13:55:56.712Z", + "completed":"2017-03-13T13:55:56.712Z", + "new_balance":"3188.44", + "value":"-0.34" + } + }, + { + "id":"0df3445b-bb33-4711-8c4b-dfddd663e894", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T17:08:38.902Z", + "completed":"2017-03-16T17:08:38.902Z", + "new_balance":"3165.20", + "value":"-23.24" + } + }, + { + "id":"4a0ccef3-ca33-4503-b300-999f75f4e018", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T02:34:59.313Z", + "completed":"2017-03-17T02:34:59.313Z", + "new_balance":"3160.93", + "value":"-4.27" + } + }, + { + "id":"167d0972-eb13-4bfe-a383-e3c7fa2d53f9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T20:02:19.320Z", + "completed":"2017-03-17T20:02:19.320Z", + "new_balance":"3147.83", + "value":"-13.10" + } + }, + { + "id":"049666e0-baf7-49ba-a756-350ae0cf694b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T07:21:27.458Z", + "completed":"2017-03-19T07:21:27.458Z", + "new_balance":"3147.49", + "value":"-0.34" + } + }, + { + "id":"cf005bbc-ed14-4a8a-8b46-45444e4639af", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T08:36:47.635Z", + "completed":"2017-03-21T08:36:47.635Z", + "new_balance":"3145.17", + "value":"-2.32" + } + }, + { + "id":"7a82dd2c-c8ef-4b07-a106-4cfae78e9aa1", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T04:38:51.415Z", + "completed":"2017-03-23T04:38:51.415Z", + "new_balance":"3140.56", + "value":"-4.61" + } + }, + { + "id":"c3ab56b8-c289-45fe-949f-b39faf013226", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T16:35:31.760Z", + "completed":"2017-03-24T16:35:31.760Z", + "new_balance":"3139.91", + "value":"-0.65" + } + }, + { + "id":"c7accdcc-6a48-4e13-9ccf-45f223453a8e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T15:08:52.419Z", + "completed":"2017-03-26T15:08:52.419Z", + "new_balance":"3138.76", + "value":"-1.15" + } + }, + { + "id":"a3105b5a-e41d-4d00-88fe-fe19afd29c28", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T00:23:01.470Z", + "completed":"2017-04-01T00:23:01.470Z", + "new_balance":"3137.61", + "value":"-1.15" + } + }, + { + "id":"7887b118-7768-4a2d-9298-67555fe385a8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T16:04:12.577Z", + "completed":"2017-06-01T16:04:12.577Z", + "new_balance":"3133.00", + "value":"-4.61" + } + }, + { + "id":"13464fad-8d48-4130-9cb9-5ffbd732f367", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T10:54:35.980Z", + "completed":"2017-06-04T10:54:35.980Z", + "new_balance":"3125.81", + "value":"-7.19" + } + }, + { + "id":"2ec1f173-6261-41ac-aeda-6867fc49ae3e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T15:04:46.132Z", + "completed":"2017-06-19T15:04:46.132Z", + "new_balance":"3119.28", + "value":"-6.53" + } + }, + { + "id":"073a2cf7-c156-44d4-8627-84b18eaf455e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T02:57:54.602Z", + "completed":"2017-06-21T02:57:54.602Z", + "new_balance":"3118.63", + "value":"-0.65" + } + }, + { + "id":"b38b182f-4133-4a73-9213-f3586a29879b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T01:35:02.986Z", + "completed":"2017-06-24T01:35:02.986Z", + "new_balance":"3118.29", + "value":"-0.34" + } + }, + { + "id":"76d1f32e-98c6-4db6-8870-99721093d15d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T02:30:05.592Z", + "completed":"2017-06-28T02:30:05.592Z", + "new_balance":"3105.19", + "value":"-13.10" + } + }, + { + "id":"f929dc05-fda2-4484-a5ca-34280cf06739", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T02:52:59.327Z", + "completed":"2017-06-28T02:52:59.327Z", + "new_balance":"3081.95", + "value":"-23.24" + } + }, + { + "id":"85d5ff3c-e227-4f94-b1a4-a02c88e3ba2c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T18:59:12.878Z", + "completed":"2017-06-28T18:59:12.878Z", + "new_balance":"3077.68", + "value":"-4.27" + } + }, + { + "id":"12feff7d-49fb-471d-a2e8-ae004d098937", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T05:20:32.714Z", + "completed":"2017-06-29T05:20:32.714Z", + "new_balance":"3077.34", + "value":"-0.34" + } + }, + { + "id":"d099d1c0-d927-45a9-92ae-37b714e77452", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T02:11:17.201Z", + "completed":"2017-06-30T02:11:17.201Z", + "new_balance":"3072.73", + "value":"-4.61" + } + }, + { + "id":"114d2d29-78d0-4ee1-a922-935cb2787de8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T07:29:32.988Z", + "completed":"2017-06-30T07:29:32.988Z", + "new_balance":"3070.41", + "value":"-2.32" + } + }, + { + "id":"4fbd2e8f-6dd2-4a4c-a03f-0e39108dd003", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:25:17.431Z", + "completed":"2017-06-30T10:25:17.431Z", + "new_balance":"3069.76", + "value":"-0.65" + } + }, + { + "id":"52ae9e08-5291-4f6f-b53d-14f33280764d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T06:14:32.732Z", + "completed":"2017-09-01T06:14:32.732Z", + "new_balance":"3067.91", + "value":"-1.85" + } + }, + { + "id":"3a63f199-bbbc-4ccb-af70-e931f293332c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T10:24:12.210Z", + "completed":"2017-09-02T10:24:12.210Z", + "new_balance":"3060.72", + "value":"-7.19" + } + }, + { + "id":"7715e1fb-d637-428b-b0b3-595273f9f76a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T15:41:43.270Z", + "completed":"2017-09-07T15:41:43.270Z", + "new_balance":"3054.19", + "value":"-6.53" + } + }, + { + "id":"05805600-edcd-47b2-bb73-db360b09c0ec", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T17:45:52.299Z", + "completed":"2017-09-11T17:45:52.299Z", + "new_balance":"3053.54", + "value":"-0.65" + } + }, + { + "id":"1c2ba59b-c2c6-4adc-8239-b9df4dcde49f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T10:51:25.366Z", + "completed":"2017-09-15T10:51:25.366Z", + "new_balance":"3052.14", + "value":"-1.40" + } + }, + { + "id":"ccf203f8-e46b-4606-b43e-d90408f27c9c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T00:45:39.378Z", + "completed":"2017-09-17T00:45:39.378Z", + "new_balance":"3028.90", + "value":"-23.24" + } + }, + { + "id":"fd7231d6-b3a5-4998-9d5b-b2ccb74a751f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T03:05:15.310Z", + "completed":"2017-09-17T03:05:15.310Z", + "new_balance":"3024.63", + "value":"-4.27" + } + }, + { + "id":"baf801ad-3bf0-48d4-a8f4-842670d7b8b9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T18:14:09.343Z", + "completed":"2017-09-17T18:14:09.343Z", + "new_balance":"3011.53", + "value":"-13.10" + } + }, + { + "id":"b3ce4d20-9c1b-461e-ba48-819dc90d074d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T08:34:25.880Z", + "completed":"2017-09-19T08:34:25.880Z", + "new_balance":"3011.19", + "value":"-0.34" + } + }, + { + "id":"8a256f95-91ae-4e3c-91e2-4dc462174a3a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T23:14:04.182Z", + "completed":"2017-09-21T23:14:04.182Z", + "new_balance":"3008.87", + "value":"-2.32" + } + }, + { + "id":"4adf984f-db5e-46bf-8327-8cc476749435", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T06:14:53.120Z", + "completed":"2017-09-23T06:14:53.120Z", + "new_balance":"3004.26", + "value":"-4.61" + } + }, + { + "id":"90cfd557-e2fc-4942-a807-f2fe722e31f7", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T14:35:32.877Z", + "completed":"2017-09-24T14:35:32.877Z", + "new_balance":"3003.61", + "value":"-0.65" + } + }, + { + "id":"c91243c3-3334-4628-b2ff-6861ee186129", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T06:04:09.239Z", + "completed":"2017-09-27T06:04:09.239Z", + "new_balance":"3002.46", + "value":"-1.15" + } + }, + { + "id":"11f94bd7-1b39-4a90-adbc-876c0a8328df", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T20:30:01.228Z", + "completed":"2017-10-01T20:30:01.228Z", + "new_balance":"3001.31", + "value":"-1.15" + } + }, + { + "id":"1482258c-854e-4fc2-b87f-04bb522aeb5d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T21:03:39.027Z", + "completed":"2017-12-01T21:03:39.027Z", + "new_balance":"2996.70", + "value":"-4.61" + } + }, + { + "id":"4d9c356f-3011-4dfd-92cc-5441350a555a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T02:41:44.939Z", + "completed":"2017-12-04T02:41:44.939Z", + "new_balance":"2989.51", + "value":"-7.19" + } + }, + { + "id":"cb153063-4f5d-4940-ab9d-1e3ea122dc85", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T14:25:26.387Z", + "completed":"2017-12-19T14:25:26.387Z", + "new_balance":"2982.98", + "value":"-6.53" + } + }, + { + "id":"431244d3-f7be-43bf-b560-41c90303fbf9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T09:53:18.615Z", + "completed":"2017-12-24T09:53:18.615Z", + "new_balance":"2982.33", + "value":"-0.65" + } + }, + { + "id":"0beb8198-0594-4ac6-a969-765970ca02c4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T20:48:52.751Z", + "completed":"2017-12-24T20:48:52.751Z", + "new_balance":"2981.99", + "value":"-0.34" + } + }, + { + "id":"fac26d50-fa84-4c35-8b3d-7ff7d428d789", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T05:46:36.821Z", + "completed":"2017-12-28T05:46:36.821Z", + "new_balance":"2968.89", + "value":"-13.10" + } + }, + { + "id":"68819a63-b612-43f6-a47e-1ecae8820dea", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T06:25:34.410Z", + "completed":"2017-12-28T06:25:34.410Z", + "new_balance":"2964.62", + "value":"-4.27" + } + }, + { + "id":"5771f81f-a2c3-4c95-a891-e905e4ce0bf0", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T13:59:14.749Z", + "completed":"2017-12-28T13:59:14.749Z", + "new_balance":"2941.38", + "value":"-23.24" + } + }, + { + "id":"ac2ff83a-f611-4bf3-a60b-26c738f2caeb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T06:58:03.343Z", + "completed":"2017-12-29T06:58:03.343Z", + "new_balance":"2941.04", + "value":"-0.34" + } + }, + { + "id":"7b37273e-0a8b-4c64-b56c-d3dbe0f00270", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T00:42:18.079Z", + "completed":"2017-12-30T00:42:18.079Z", + "new_balance":"2936.43", + "value":"-4.61" + } + }, + { + "id":"09004df3-ed8f-4744-901e-530e22ac9bf9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T02:48:03.632Z", + "completed":"2017-12-30T02:48:03.632Z", + "new_balance":"2934.11", + "value":"-2.32" + } + }, + { + "id":"c94b60e6-a977-499a-9f8d-442dcb783252", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T23:57:00.059Z", + "completed":"2017-12-30T23:57:00.059Z", + "new_balance":"2933.46", + "value":"-0.65" + } + }, + { + "id":"b6d7b137-9f1d-493c-b0bd-454ce199cc41", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T04:43:56.513Z", + "completed":"2016-01-01T04:43:56.513Z", + "new_balance":"6883.51", + "value":"-34.43" + } + }, + { + "id":"49866480-6b4a-4337-ac4f-732f4f535901", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T06:55:58.158Z", + "completed":"2016-01-01T06:55:58.158Z", + "new_balance":"6778.79", + "value":"-104.72" + } + }, + { + "id":"e99d9eaf-527b-4d2e-974e-42c8bd35710f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T07:35:17.844Z", + "completed":"2016-01-01T07:35:17.844Z", + "new_balance":"6731.89", + "value":"-46.90" + } + }, + { + "id":"d7d06696-bc3d-40ab-a4d7-c5b21d36b206", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T18:32:34.929Z", + "completed":"2016-01-01T18:32:34.929Z", + "new_balance":"6697.46", + "value":"-34.43" + } + }, + { + "id":"c99fead2-5bf3-4a0e-aea3-313b7518b030", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T21:01:05.629Z", + "completed":"2016-01-05T21:01:05.629Z", + "new_balance":"6630.01", + "value":"-67.45" + } + }, + { + "id":"f52bbab7-736a-4add-b40d-8378f31050fc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T21:02:07.154Z", + "completed":"2016-01-05T21:02:07.154Z", + "new_balance":"6548.80", + "value":"-81.21" + } + }, + { + "id":"9732d88f-8873-461e-88a2-b0063ef19a03", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T06:47:42.496Z", + "completed":"2016-01-08T06:47:42.496Z", + "new_balance":"6537.89", + "value":"-10.91" + } + }, + { + "id":"18eeda5d-4450-4626-8966-3cca772fb3c2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T14:19:35.496Z", + "completed":"2016-01-10T14:19:35.496Z", + "new_balance":"6491.43", + "value":"-46.46" + } + }, + { + "id":"bcac5d8d-0320-4e16-a426-aad74ca83467", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T17:14:56.108Z", + "completed":"2016-01-11T17:14:56.108Z", + "new_balance":"6434.79", + "value":"-56.64" + } + }, + { + "id":"e2c17371-7d47-431b-8c60-ea566ec6d73a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T18:28:43.261Z", + "completed":"2016-01-12T18:28:43.261Z", + "new_balance":"6400.36", + "value":"-34.43" + } + }, + { + "id":"ebff61c3-8850-4ad5-ad54-42ade7cceec6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T01:26:20.816Z", + "completed":"2016-01-13T01:26:20.816Z", + "new_balance":"6394.71", + "value":"-5.65" + } + }, + { + "id":"e0a4a5f2-b63d-457a-b44b-04bd2a3ca2a2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:20:34.740Z", + "completed":"2016-01-13T03:20:34.740Z", + "new_balance":"6391.12", + "value":"-3.59" + } + }, + { + "id":"c194c154-b744-4a92-86f7-a438dad52037", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T07:31:57.794Z", + "completed":"2016-01-16T07:31:57.794Z", + "new_balance":"6308.03", + "value":"-83.09" + } + }, + { + "id":"771e16a6-a410-4ee9-890e-8986fbe12130", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T01:28:15.188Z", + "completed":"2016-01-19T01:28:15.188Z", + "new_balance":"6226.59", + "value":"-81.44" + } + }, + { + "id":"281af7ca-384b-40c8-a406-a3f772e38914", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T01:59:01.453Z", + "completed":"2016-01-19T01:59:01.453Z", + "new_balance":"6145.38", + "value":"-81.21" + } + }, + { + "id":"138cef4f-c5e8-43ed-a7fe-45f36aeb0a05", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T04:46:48.881Z", + "completed":"2016-01-24T04:46:48.881Z", + "new_balance":"6117.93", + "value":"-27.45" + } + }, + { + "id":"86378136-5dfe-47d8-9337-9b9ecbae0ea7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T08:14:45.838Z", + "completed":"2016-01-27T08:14:45.838Z", + "new_balance":"8468.14", + "value":"2350.21" + } + }, + { + "id":"89621808-89b3-41d0-939b-3a5802097d35", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T21:39:52.478Z", + "completed":"2016-01-27T21:39:52.478Z", + "new_balance":"8440.16", + "value":"-27.98" + } + }, + { + "id":"3b3bcc85-e85f-4b76-8bf7-160709c609cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T02:19:03.299Z", + "completed":"2016-01-31T02:19:03.299Z", + "new_balance":"8122.95", + "value":"-317.21" + } + }, + { + "id":"17c544f4-4360-459e-b421-1ed7dc006467", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T00:48:08.832Z", + "completed":"2016-02-01T00:48:08.832Z", + "new_balance":"8088.52", + "value":"-34.43" + } + }, + { + "id":"f5ad9152-b7bb-48a6-bd9c-e6e38b2596b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T02:39:00.797Z", + "completed":"2016-02-01T02:39:00.797Z", + "new_balance":"7983.80", + "value":"-104.72" + } + }, + { + "id":"19747e31-b109-4503-8628-1b4f452315ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T17:40:45.398Z", + "completed":"2016-02-01T17:40:45.398Z", + "new_balance":"7949.37", + "value":"-34.43" + } + }, + { + "id":"037c8f11-08e0-4533-a5e5-f9a751a5a3b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T23:01:08.262Z", + "completed":"2016-02-01T23:01:08.262Z", + "new_balance":"7902.47", + "value":"-46.90" + } + }, + { + "id":"2630e24d-89d8-43eb-b867-aa11bf971b79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T01:31:30.199Z", + "completed":"2016-02-03T01:31:30.199Z", + "new_balance":"7895.75", + "value":"-6.72" + } + }, + { + "id":"2d890411-2913-4e72-a0cd-a117ea6f5cf6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T00:46:49.888Z", + "completed":"2016-02-04T00:46:49.888Z", + "new_balance":"7814.54", + "value":"-81.21" + } + }, + { + "id":"d9174f77-3790-4b5d-8267-b3efd86425d5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T01:49:02.182Z", + "completed":"2016-02-06T01:49:02.182Z", + "new_balance":"7707.73", + "value":"-106.81" + } + }, + { + "id":"6c09c9b2-c997-42cb-a43b-67d5f65911f2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T14:24:17.296Z", + "completed":"2016-02-06T14:24:17.296Z", + "new_balance":"7626.56", + "value":"-81.17" + } + }, + { + "id":"56d892da-8ff2-4ec9-829e-3e3631dabdb4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T15:15:35.059Z", + "completed":"2016-02-07T15:15:35.059Z", + "new_balance":"7598.53", + "value":"-28.03" + } + }, + { + "id":"937fbbae-69dd-4c5b-9f51-69c80f50560a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T23:30:49.851Z", + "completed":"2016-02-08T23:30:49.851Z", + "new_balance":"7583.24", + "value":"-15.29" + } + }, + { + "id":"98ae2c7f-76b8-4252-b4fc-d56b4e25e58b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:49:09.530Z", + "completed":"2016-02-09T00:49:09.530Z", + "new_balance":"7540.29", + "value":"-42.95" + } + }, + { + "id":"a4169a68-dd30-4325-afaa-8cbdfb5210fc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T07:38:51.482Z", + "completed":"2016-02-11T07:38:51.482Z", + "new_balance":"7513.56", + "value":"-26.73" + } + }, + { + "id":"b4657e3a-0018-447d-9f4b-b7a515dc67ef", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T12:06:38.700Z", + "completed":"2016-02-13T12:06:38.700Z", + "new_balance":"7472.02", + "value":"-41.54" + } + }, + { + "id":"fabcda1e-7e2a-4ae4-95b1-92710b8b5b3d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T11:02:26.626Z", + "completed":"2016-02-17T11:02:26.626Z", + "new_balance":"7465.03", + "value":"-6.99" + } + }, + { + "id":"c1cb54b9-20be-448c-bf80-ac61562fd8eb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T06:09:31.124Z", + "completed":"2016-02-19T06:09:31.124Z", + "new_balance":"7415.09", + "value":"-49.94" + } + }, + { + "id":"8a3d8df1-18c3-42bf-a5c4-b2072f987ae7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T01:39:55.619Z", + "completed":"2016-02-21T01:39:55.619Z", + "new_balance":"7333.88", + "value":"-81.21" + } + }, + { + "id":"6af8b91c-affd-4423-b558-7d1d42e33768", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T20:04:57.787Z", + "completed":"2016-02-24T20:04:57.787Z", + "new_balance":"7305.90", + "value":"-27.98" + } + }, + { + "id":"21c2d14c-f31c-4df3-ab6b-648a37bfb424", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T17:37:59.476Z", + "completed":"2016-02-26T17:37:59.476Z", + "new_balance":"9656.11", + "value":"2350.21" + } + }, + { + "id":"b2656c5b-f170-4e4f-836d-0e86a933276d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T01:59:32.891Z", + "completed":"2016-03-01T01:59:32.891Z", + "new_balance":"9551.39", + "value":"-104.72" + } + }, + { + "id":"5ce79078-0914-4ae9-9229-3805b19b1f38", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T07:19:41.061Z", + "completed":"2016-03-01T07:19:41.061Z", + "new_balance":"9504.49", + "value":"-46.90" + } + }, + { + "id":"bc30df38-584c-4bdf-996f-dda73b594e43", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T15:48:04.576Z", + "completed":"2016-03-01T15:48:04.576Z", + "new_balance":"9470.06", + "value":"-34.43" + } + }, + { + "id":"3eb706a1-5611-4459-b81c-2cfb3b946344", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T18:02:23.887Z", + "completed":"2016-03-01T18:02:23.887Z", + "new_balance":"9435.63", + "value":"-34.43" + } + }, + { + "id":"20f89258-2fba-43b8-8cdc-3dfe0f06b1b8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T00:43:29.689Z", + "completed":"2016-03-09T00:43:29.689Z", + "new_balance":"9372.06", + "value":"-63.57" + } + }, + { + "id":"749037e5-d6c8-414a-be1f-eb98733280a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T20:35:20.428Z", + "completed":"2016-03-09T20:35:20.428Z", + "new_balance":"9310.69", + "value":"-61.37" + } + }, + { + "id":"612d799f-1998-4757-b034-f1ec8c8a4345", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T13:48:17.093Z", + "completed":"2016-03-17T13:48:17.093Z", + "new_balance":"9222.20", + "value":"-88.49" + } + }, + { + "id":"90ae9d2e-bc28-4a9c-bcb8-0ac9f725a4df", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T10:52:44.975Z", + "completed":"2016-03-18T10:52:44.975Z", + "new_balance":"9215.43", + "value":"-6.77" + } + }, + { + "id":"780dbc6a-ed8f-47ee-bc45-bf1c5b9136ea", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T12:24:28.034Z", + "completed":"2016-03-18T12:24:28.034Z", + "new_balance":"9169.96", + "value":"-45.47" + } + }, + { + "id":"028ff427-834a-452b-b055-54aa18181556", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T13:26:48.925Z", + "completed":"2016-03-18T13:26:48.925Z", + "new_balance":"9088.17", + "value":"-81.79" + } + }, + { + "id":"533cd08c-adfa-42f3-ae30-a01033a984e2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T13:57:48.468Z", + "completed":"2016-03-18T13:57:48.468Z", + "new_balance":"9048.53", + "value":"-39.64" + } + }, + { + "id":"30b8e2b0-095a-45c2-b3f1-a3e80ad4c91b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T02:34:09.705Z", + "completed":"2016-03-22T02:34:09.705Z", + "new_balance":"8944.34", + "value":"-104.19" + } + }, + { + "id":"98510c07-ee83-4f57-9449-4dfa17a68771", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T14:09:40.167Z", + "completed":"2016-03-29T14:09:40.167Z", + "new_balance":"11294.55", + "value":"2350.21" + } + }, + { + "id":"13707018-666c-430c-bd4d-21f29f01655a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T23:18:41.325Z", + "completed":"2016-03-29T23:18:41.325Z", + "new_balance":"11266.57", + "value":"-27.98" + } + }, + { + "id":"ecdde746-0bbc-4b7b-b054-25f5e5a0c896", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T16:26:49.709Z", + "completed":"2016-03-31T16:26:49.709Z", + "new_balance":"10949.36", + "value":"-317.21" + } + }, + { + "id":"8845850a-b289-4a63-87a1-a0c822e07f19", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T08:06:49.863Z", + "completed":"2016-04-01T08:06:49.863Z", + "new_balance":"10844.64", + "value":"-104.72" + } + }, + { + "id":"dd769f56-7692-4251-b107-990ca597ab43", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T09:16:55.938Z", + "completed":"2016-04-01T09:16:55.938Z", + "new_balance":"10810.21", + "value":"-34.43" + } + }, + { + "id":"a80afd8a-3fce-4d56-a525-39161ee7df4b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:37:39.160Z", + "completed":"2016-04-01T11:37:39.160Z", + "new_balance":"10775.78", + "value":"-34.43" + } + }, + { + "id":"df9fa39e-d6ca-4353-93e8-62e4e5b1b571", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T13:03:57.433Z", + "completed":"2016-04-01T13:03:57.433Z", + "new_balance":"10728.88", + "value":"-46.90" + } + }, + { + "id":"1d8f56bb-33c4-4e08-b15e-5b65d7b17375", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T18:18:46.718Z", + "completed":"2016-04-02T18:18:46.718Z", + "new_balance":"10634.55", + "value":"-94.33" + } + }, + { + "id":"3f06e14d-44ec-4e73-aa89-cb632404d8f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T00:49:38.427Z", + "completed":"2016-04-05T00:49:38.427Z", + "new_balance":"10629.91", + "value":"-4.64" + } + }, + { + "id":"2ff824ea-38bc-4bf0-bf94-d816782acb51", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T04:33:50.361Z", + "completed":"2016-04-05T04:33:50.361Z", + "new_balance":"10548.70", + "value":"-81.21" + } + }, + { + "id":"b4b21591-8986-498c-9546-06a39c1dd4e3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T07:33:43.804Z", + "completed":"2016-04-05T07:33:43.804Z", + "new_balance":"10514.27", + "value":"-34.43" + } + }, + { + "id":"d36ef3e1-9b0e-4bc7-84fb-15e0a0217e91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T12:02:26.735Z", + "completed":"2016-04-05T12:02:26.735Z", + "new_balance":"10459.43", + "value":"-54.84" + } + }, + { + "id":"39c821e0-9c98-4f33-af93-3770e63de895", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T18:30:00.490Z", + "completed":"2016-04-05T18:30:00.490Z", + "new_balance":"10452.85", + "value":"-6.58" + } + }, + { + "id":"a4b78625-903f-42b9-936b-5befffe6a475", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T20:22:19.170Z", + "completed":"2016-04-05T20:22:19.170Z", + "new_balance":"10440.92", + "value":"-11.93" + } + }, + { + "id":"9624f687-1f9e-4833-a937-ba5fd0050968", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T20:50:56.143Z", + "completed":"2016-04-05T20:50:56.143Z", + "new_balance":"10399.49", + "value":"-41.43" + } + }, + { + "id":"69d9cd13-b38b-4333-a0d0-ae15f881ea86", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T00:11:36.359Z", + "completed":"2016-04-08T00:11:36.359Z", + "new_balance":"10301.57", + "value":"-97.92" + } + }, + { + "id":"f5acc49c-f58c-439c-aea6-2886932052ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T11:05:44.133Z", + "completed":"2016-04-10T11:05:44.133Z", + "new_balance":"10245.44", + "value":"-56.13" + } + }, + { + "id":"10f62234-da94-4f0e-8873-a3e523591008", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T03:44:38.627Z", + "completed":"2016-04-11T03:44:38.627Z", + "new_balance":"10217.99", + "value":"-27.45" + } + }, + { + "id":"be0f7171-69ba-4a70-a507-83c4e9f75e24", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T23:23:44.247Z", + "completed":"2016-04-11T23:23:44.247Z", + "new_balance":"10136.78", + "value":"-81.21" + } + }, + { + "id":"9f3a7ddb-9f64-45d1-ae68-e6ce07e3393c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T18:48:21.331Z", + "completed":"2016-04-13T18:48:21.331Z", + "new_balance":"10108.80", + "value":"-27.98" + } + }, + { + "id":"af9a8c34-03e8-42a7-8982-01fd2313e309", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T20:36:05.166Z", + "completed":"2016-04-18T20:36:05.166Z", + "new_balance":"12459.01", + "value":"2350.21" + } + }, + { + "id":"a95e9f57-06ad-4f3e-ad9a-0d19bb6fa86e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:51:25.524Z", + "completed":"2016-04-25T19:51:25.524Z", + "new_balance":"12141.80", + "value":"-317.21" + } + }, + { + "id":"62b81400-1055-4d7e-a87e-f1d16dc144d8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T03:36:02.401Z", + "completed":"2016-05-02T03:36:02.401Z", + "new_balance":"12037.08", + "value":"-104.72" + } + }, + { + "id":"bf6829c3-2fc3-4d34-8e1c-2c02b4f41c04", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T08:10:39.427Z", + "completed":"2016-05-02T08:10:39.427Z", + "new_balance":"12002.65", + "value":"-34.43" + } + }, + { + "id":"480bae28-2030-4fcd-a557-e8875b1be664", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T15:41:18.762Z", + "completed":"2016-05-02T15:41:18.762Z", + "new_balance":"11955.75", + "value":"-46.90" + } + }, + { + "id":"95074e99-22f1-425f-8d23-aa63a4da36e4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:56:42.286Z", + "completed":"2016-05-02T21:56:42.286Z", + "new_balance":"11921.32", + "value":"-34.43" + } + }, + { + "id":"55e5cdc8-1399-40ea-920e-406bd732aa50", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T11:52:47.533Z", + "completed":"2016-05-04T11:52:47.533Z", + "new_balance":"11840.11", + "value":"-81.21" + } + }, + { + "id":"23bd543f-d90a-4647-82c2-4d644ca359b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T20:38:53.811Z", + "completed":"2016-05-04T20:38:53.811Z", + "new_balance":"11833.53", + "value":"-6.58" + } + }, + { + "id":"a75ddba7-b16e-4455-8393-3092a095cce0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T17:10:20.056Z", + "completed":"2016-05-06T17:10:20.056Z", + "new_balance":"11753.32", + "value":"-80.21" + } + }, + { + "id":"6f0fad49-8946-448c-b468-bbe8477a7225", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T16:11:40.703Z", + "completed":"2016-05-07T16:11:40.703Z", + "new_balance":"11718.81", + "value":"-34.51" + } + }, + { + "id":"2a133ac2-44f8-4ebf-90ec-192e0847ba2e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T21:37:19.624Z", + "completed":"2016-05-07T21:37:19.624Z", + "new_balance":"11624.48", + "value":"-94.33" + } + }, + { + "id":"21d6cc98-e9a8-486f-ba6f-76c060c78fff", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T07:16:01.864Z", + "completed":"2016-05-09T07:16:01.864Z", + "new_balance":"11612.55", + "value":"-11.93" + } + }, + { + "id":"040b2924-fb5f-4f58-bee2-76fdb800ca0f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T14:54:17.776Z", + "completed":"2016-05-09T14:54:17.776Z", + "new_balance":"11569.60", + "value":"-42.95" + } + }, + { + "id":"4c7b81c6-fc73-4433-919a-f40bcd79172b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T06:45:06.921Z", + "completed":"2016-05-13T06:45:06.921Z", + "new_balance":"11563.02", + "value":"-6.58" + } + }, + { + "id":"3ef18ac7-7361-4328-a3c3-11f5f4448190", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T07:02:01.297Z", + "completed":"2016-05-13T07:02:01.297Z", + "new_balance":"11528.51", + "value":"-34.51" + } + }, + { + "id":"a5004cfc-1578-4289-bd29-6fbbd85a0979", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T12:30:09.182Z", + "completed":"2016-05-13T12:30:09.182Z", + "new_balance":"11500.32", + "value":"-28.19" + } + }, + { + "id":"dc2de99e-e2c6-4bbc-bbcb-53f8adf1b79c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T12:34:57.509Z", + "completed":"2016-05-14T12:34:57.509Z", + "new_balance":"11419.11", + "value":"-81.21" + } + }, + { + "id":"07fdc5d7-a2e2-4a35-a9dd-c7ca3a2867fe", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T13:50:45.426Z", + "completed":"2016-05-14T13:50:45.426Z", + "new_balance":"11353.88", + "value":"-65.23" + } + }, + { + "id":"e3cd1738-aebe-4daa-9a88-5a8982d29d4e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T14:29:34.110Z", + "completed":"2016-05-15T14:29:34.110Z", + "new_balance":"11325.90", + "value":"-27.98" + } + }, + { + "id":"1e370205-1459-4f95-8026-168560fd3f1c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T11:42:41.039Z", + "completed":"2016-05-30T11:42:41.039Z", + "new_balance":"13676.11", + "value":"2350.21" + } + }, + { + "id":"a300ba0f-e25e-4c2b-aaf8-3e3138f1f62b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T12:14:17.597Z", + "completed":"2016-05-30T12:14:17.597Z", + "new_balance":"13358.90", + "value":"-317.21" + } + }, + { + "id":"7b325c7c-e121-4474-aff2-68d35d0156c3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T00:01:45.128Z", + "completed":"2016-06-01T00:01:45.128Z", + "new_balance":"13254.18", + "value":"-104.72" + } + }, + { + "id":"af1292c8-a118-4c7c-b4dc-5188881b9dcb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T06:00:28.919Z", + "completed":"2016-06-01T06:00:28.919Z", + "new_balance":"13219.75", + "value":"-34.43" + } + }, + { + "id":"6820aa38-334b-44f5-82e7-ad34b4a3cfca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T10:57:01.443Z", + "completed":"2016-06-01T10:57:01.443Z", + "new_balance":"13172.85", + "value":"-46.90" + } + }, + { + "id":"6170ef98-3de0-4a15-b05d-2eb9873b75d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T22:59:03.229Z", + "completed":"2016-06-01T22:59:03.229Z", + "new_balance":"13138.42", + "value":"-34.43" + } + }, + { + "id":"385f689b-a5a3-424f-a19a-ae7820632bc1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T02:02:28.901Z", + "completed":"2016-06-04T02:02:28.901Z", + "new_balance":"13074.85", + "value":"-63.57" + } + }, + { + "id":"982c30e6-0083-4ff8-8d3b-768033fdd99b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T03:33:31.021Z", + "completed":"2016-06-04T03:33:31.021Z", + "new_balance":"13013.48", + "value":"-61.37" + } + }, + { + "id":"fb50f5e9-fb52-4460-bc6d-7057ce4fee91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T03:34:39.210Z", + "completed":"2016-06-11T03:34:39.210Z", + "new_balance":"12924.99", + "value":"-88.49" + } + }, + { + "id":"dfc073d4-3522-4caa-a2fa-eeae7a8574df", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T07:48:46.964Z", + "completed":"2016-06-11T07:48:46.964Z", + "new_balance":"12843.20", + "value":"-81.79" + } + }, + { + "id":"44e27686-9d09-4ff3-829e-597c5485e847", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T18:25:56.698Z", + "completed":"2016-06-11T18:25:56.698Z", + "new_balance":"12797.73", + "value":"-45.47" + } + }, + { + "id":"9e78f82e-e35a-4233-ab92-597264879709", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T05:44:46.832Z", + "completed":"2016-06-12T05:44:46.832Z", + "new_balance":"12758.09", + "value":"-39.64" + } + }, + { + "id":"569fc4f1-200b-4a79-8ce1-1e253f8fca7d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T18:37:50.926Z", + "completed":"2016-06-12T18:37:50.926Z", + "new_balance":"12751.32", + "value":"-6.77" + } + }, + { + "id":"609e7c03-1420-4f05-b555-78a5cb30b24d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T05:45:15.150Z", + "completed":"2016-06-16T05:45:15.150Z", + "new_balance":"12647.13", + "value":"-104.19" + } + }, + { + "id":"46482488-fc2e-4dca-a654-bdd0791dcd7c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T00:27:20.771Z", + "completed":"2016-06-29T00:27:20.771Z", + "new_balance":"12619.15", + "value":"-27.98" + } + }, + { + "id":"f0f449a1-4cfe-4752-bf3c-669002989068", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T03:50:06.485Z", + "completed":"2016-06-30T03:50:06.485Z", + "new_balance":"12301.94", + "value":"-317.21" + } + }, + { + "id":"8df3b3a1-857d-4934-8d76-6955300fbb71", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T17:05:12.212Z", + "completed":"2016-06-30T17:05:12.212Z", + "new_balance":"14652.15", + "value":"2350.21" + } + }, + { + "id":"26dc97a4-9073-40c2-bc1e-34b60478a835", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T00:23:38.810Z", + "completed":"2016-07-01T00:23:38.810Z", + "new_balance":"14617.72", + "value":"-34.43" + } + }, + { + "id":"5cdeafb4-50cc-47ed-9092-fa3a74438073", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:26:10.027Z", + "completed":"2016-07-01T02:26:10.027Z", + "new_balance":"14570.82", + "value":"-46.90" + } + }, + { + "id":"826c6cb2-a9f0-4b4a-9418-93599958abd8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T08:15:26.811Z", + "completed":"2016-07-01T08:15:26.811Z", + "new_balance":"14536.39", + "value":"-34.43" + } + }, + { + "id":"66c1c9c3-917a-4aab-ad85-e4a71a650ce0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T11:42:20.662Z", + "completed":"2016-07-01T11:42:20.662Z", + "new_balance":"14431.67", + "value":"-104.72" + } + }, + { + "id":"e4058346-d2c9-4da2-891e-ebb57685b632", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T08:23:43.063Z", + "completed":"2016-07-05T08:23:43.063Z", + "new_balance":"14350.46", + "value":"-81.21" + } + }, + { + "id":"97ac3825-9b4f-4b45-8e76-993ea408a26c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T16:17:37.310Z", + "completed":"2016-07-05T16:17:37.310Z", + "new_balance":"14283.01", + "value":"-67.45" + } + }, + { + "id":"89e590f9-ae19-474a-b4d5-418f42d710d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T14:54:45.858Z", + "completed":"2016-07-08T14:54:45.858Z", + "new_balance":"14272.10", + "value":"-10.91" + } + }, + { + "id":"e71eb620-1379-4519-82c3-51fd0652b869", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T02:45:39.437Z", + "completed":"2016-07-10T02:45:39.437Z", + "new_balance":"14225.64", + "value":"-46.46" + } + }, + { + "id":"f225995e-d164-48c4-b9e1-3eb42810e7f7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T07:07:01.582Z", + "completed":"2016-07-12T07:07:01.582Z", + "new_balance":"14191.21", + "value":"-34.43" + } + }, + { + "id":"4ebe1288-54fb-4e33-92c0-3b29c3dfbd9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T23:20:57.248Z", + "completed":"2016-07-12T23:20:57.248Z", + "new_balance":"14134.57", + "value":"-56.64" + } + }, + { + "id":"c67c2518-f065-4a5f-a1fb-148a7473a6ac", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T13:58:23.910Z", + "completed":"2016-07-13T13:58:23.910Z", + "new_balance":"14128.92", + "value":"-5.65" + } + }, + { + "id":"80567d8a-1d28-459d-84b8-356cf017fbb3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T22:18:34.024Z", + "completed":"2016-07-13T22:18:34.024Z", + "new_balance":"14125.33", + "value":"-3.59" + } + }, + { + "id":"eaaa37aa-4459-49d1-859c-a93458eb5f2c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T02:39:33.685Z", + "completed":"2016-07-18T02:39:33.685Z", + "new_balance":"14042.24", + "value":"-83.09" + } + }, + { + "id":"1213abdc-372d-4be3-a20c-08c9866db3bb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T04:06:43.602Z", + "completed":"2016-07-20T04:06:43.602Z", + "new_balance":"13961.03", + "value":"-81.21" + } + }, + { + "id":"5e3122a6-b416-4ce0-b497-593b3c254361", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T05:42:46.344Z", + "completed":"2016-07-20T05:42:46.344Z", + "new_balance":"13879.59", + "value":"-81.44" + } + }, + { + "id":"9b87b976-b7f9-441b-9d15-767b409d5231", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T17:19:54.819Z", + "completed":"2016-07-24T17:19:54.819Z", + "new_balance":"13852.14", + "value":"-27.45" + } + }, + { + "id":"95a3fb0f-d8db-4c9d-8d2a-73907ba74b9f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T09:08:19.871Z", + "completed":"2016-07-29T09:08:19.871Z", + "new_balance":"13824.16", + "value":"-27.98" + } + }, + { + "id":"f5111b96-436e-4507-ade8-d2a57c679ba4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T21:11:43.682Z", + "completed":"2016-07-29T21:11:43.682Z", + "new_balance":"16174.37", + "value":"2350.21" + } + }, + { + "id":"8eeb5c5c-7f69-436d-82a0-d9a947412771", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T23:21:36.809Z", + "completed":"2016-07-30T23:21:36.809Z", + "new_balance":"15857.16", + "value":"-317.21" + } + }, + { + "id":"51871960-4a44-49ac-843c-f6a2db48cc1c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T05:53:56.320Z", + "completed":"2016-08-01T05:53:56.320Z", + "new_balance":"15752.44", + "value":"-104.72" + } + }, + { + "id":"67069a46-e206-4431-aa0f-4c18c74a2e79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T11:37:11.530Z", + "completed":"2016-08-01T11:37:11.530Z", + "new_balance":"15718.01", + "value":"-34.43" + } + }, + { + "id":"7ea5eb2b-2fed-410d-9273-7f09e4e39e9d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T14:19:07.220Z", + "completed":"2016-08-01T14:19:07.220Z", + "new_balance":"15683.58", + "value":"-34.43" + } + }, + { + "id":"d08dc5bb-a26c-428c-a27e-77370d90137d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T23:06:47.583Z", + "completed":"2016-08-01T23:06:47.583Z", + "new_balance":"15636.68", + "value":"-46.90" + } + }, + { + "id":"07b19b1b-dc7c-4dad-aba4-a0716528baa1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T20:15:18.156Z", + "completed":"2016-08-03T20:15:18.156Z", + "new_balance":"15629.96", + "value":"-6.72" + } + }, + { + "id":"afda4999-a3c1-4c51-8610-dd9b80e5df30", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T22:53:19.040Z", + "completed":"2016-08-04T22:53:19.040Z", + "new_balance":"15548.75", + "value":"-81.21" + } + }, + { + "id":"70705233-de84-40a2-a10d-1116d55d37f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T03:24:59.469Z", + "completed":"2016-08-08T03:24:59.469Z", + "new_balance":"15441.94", + "value":"-106.81" + } + }, + { + "id":"590fa6a7-dacf-470d-b8d4-9a35c23295d6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T06:43:01.040Z", + "completed":"2016-08-08T06:43:01.040Z", + "new_balance":"15360.77", + "value":"-81.17" + } + }, + { + "id":"bf0d6b1a-02a3-480c-adea-3bbefdafc26e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T07:33:33.612Z", + "completed":"2016-08-08T07:33:33.612Z", + "new_balance":"15332.74", + "value":"-28.03" + } + }, + { + "id":"e7e31e43-c19f-4189-b21d-105de915c0c1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T12:07:02.812Z", + "completed":"2016-08-08T12:07:02.812Z", + "new_balance":"15317.45", + "value":"-15.29" + } + }, + { + "id":"d67d0465-1839-49ee-b355-55678e3f28fe", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:26:51.912Z", + "completed":"2016-08-09T16:26:51.912Z", + "new_balance":"15274.50", + "value":"-42.95" + } + }, + { + "id":"89dae5eb-dce3-4fd2-8a9b-0461ef15f9cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T19:01:34.866Z", + "completed":"2016-08-14T19:01:34.866Z", + "new_balance":"15247.77", + "value":"-26.73" + } + }, + { + "id":"e1ac68a1-005e-4cbe-a5ea-74217b76b6ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T22:47:36.998Z", + "completed":"2016-08-15T22:47:36.998Z", + "new_balance":"15206.23", + "value":"-41.54" + } + }, + { + "id":"42f6ff29-6c66-4e1f-91e8-c314af4b318c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T19:01:23.855Z", + "completed":"2016-08-19T19:01:23.855Z", + "new_balance":"15199.24", + "value":"-6.99" + } + }, + { + "id":"19bf1439-830b-458c-8654-3167df018e79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T18:44:17.949Z", + "completed":"2016-08-22T18:44:17.949Z", + "new_balance":"15149.30", + "value":"-49.94" + } + }, + { + "id":"144e0480-df82-45be-83b2-4aa54410a25b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T03:28:05.651Z", + "completed":"2016-08-26T03:28:05.651Z", + "new_balance":"15068.09", + "value":"-81.21" + } + }, + { + "id":"cf07bdc9-a351-4be3-a9e8-fcf63ae6f206", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T01:57:35.095Z", + "completed":"2016-08-28T01:57:35.095Z", + "new_balance":"14750.88", + "value":"-317.21" + } + }, + { + "id":"f4323321-5c23-4590-9da6-a77ab3b26d86", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T06:20:57.755Z", + "completed":"2016-08-29T06:20:57.755Z", + "new_balance":"17101.09", + "value":"2350.21" + } + }, + { + "id":"110763d9-9bc1-420c-b595-bb3edf43324e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T13:38:38.409Z", + "completed":"2016-08-29T13:38:38.409Z", + "new_balance":"17073.11", + "value":"-27.98" + } + }, + { + "id":"910b03e9-4eca-4201-9ee5-4645183b4b96", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T21:26:01.458Z", + "completed":"2016-08-30T21:26:01.458Z", + "new_balance":"16755.90", + "value":"-317.21" + } + }, + { + "id":"ced92a06-9ca5-4729-b369-9a02d9ec11fa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T03:11:18.523Z", + "completed":"2016-09-01T03:11:18.523Z", + "new_balance":"16709.00", + "value":"-46.90" + } + }, + { + "id":"e7b4ad17-46dc-42ea-8ac8-065174aeeadb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:38:28.260Z", + "completed":"2016-09-01T06:38:28.260Z", + "new_balance":"16674.57", + "value":"-34.43" + } + }, + { + "id":"73722d8d-353c-4bfa-993b-b25f9223f327", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T13:06:54.874Z", + "completed":"2016-09-01T13:06:54.874Z", + "new_balance":"16640.14", + "value":"-34.43" + } + }, + { + "id":"c18e205c-3fdb-4f6c-9b4d-55010de35b4c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T16:39:30.590Z", + "completed":"2016-09-01T16:39:30.590Z", + "new_balance":"16535.42", + "value":"-104.72" + } + }, + { + "id":"e9351168-08e0-454e-9bc7-23587a1c3ed5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T15:09:18.924Z", + "completed":"2016-09-09T15:09:18.924Z", + "new_balance":"16471.85", + "value":"-63.57" + } + }, + { + "id":"b54d50db-487d-4f27-a37b-5c1fbcdbd327", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T19:57:59.343Z", + "completed":"2016-09-09T19:57:59.343Z", + "new_balance":"16410.48", + "value":"-61.37" + } + }, + { + "id":"59b1e664-4972-4b07-91f0-2ae0a498ffe9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T19:44:02.196Z", + "completed":"2016-09-17T19:44:02.196Z", + "new_balance":"16321.99", + "value":"-88.49" + } + }, + { + "id":"edb8a1a2-e8e0-4028-8aba-7b78b8a741a2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T02:19:55.337Z", + "completed":"2016-09-18T02:19:55.337Z", + "new_balance":"16282.35", + "value":"-39.64" + } + }, + { + "id":"2fa3831e-f5ec-430c-8a5d-9add172a7e9c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T05:00:03.532Z", + "completed":"2016-09-18T05:00:03.532Z", + "new_balance":"16200.56", + "value":"-81.79" + } + }, + { + "id":"a8cd99d1-2fb4-41c3-b3ad-25ac2acee1ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T20:16:37.380Z", + "completed":"2016-09-18T20:16:37.380Z", + "new_balance":"16193.79", + "value":"-6.77" + } + }, + { + "id":"0be24a05-21c6-463e-8321-9ed327dde980", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T21:45:01.425Z", + "completed":"2016-09-18T21:45:01.425Z", + "new_balance":"16148.32", + "value":"-45.47" + } + }, + { + "id":"3797f1d3-b1c5-4536-bec4-893cfd6f22ad", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T04:02:37.391Z", + "completed":"2016-09-22T04:02:37.391Z", + "new_balance":"16044.13", + "value":"-104.19" + } + }, + { + "id":"ccc107c0-3d8c-4ab3-8738-d972865faa99", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T08:24:12.406Z", + "completed":"2016-09-29T08:24:12.406Z", + "new_balance":"18394.34", + "value":"2350.21" + } + }, + { + "id":"b7f257df-0964-438f-8897-185002d26671", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T12:04:17.065Z", + "completed":"2016-09-29T12:04:17.065Z", + "new_balance":"18366.36", + "value":"-27.98" + } + }, + { + "id":"5738c55a-9ded-4d9f-a422-df42d3f0bfde", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T22:14:16.384Z", + "completed":"2016-09-30T22:14:16.384Z", + "new_balance":"18049.15", + "value":"-317.21" + } + }, + { + "id":"856563c3-2254-4af7-bd39-08cdc734c9f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T06:49:53.673Z", + "completed":"2016-10-01T06:49:53.673Z", + "new_balance":"18002.25", + "value":"-46.90" + } + }, + { + "id":"9fec0e3a-dcd8-49da-b8d2-4bf369079e64", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T10:51:54.484Z", + "completed":"2016-10-01T10:51:54.484Z", + "new_balance":"17897.53", + "value":"-104.72" + } + }, + { + "id":"2a2ed831-4ada-40c5-ad20-410c69e4249a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T11:22:19.217Z", + "completed":"2016-10-01T11:22:19.217Z", + "new_balance":"17863.10", + "value":"-34.43" + } + }, + { + "id":"5febc097-d7fd-4cd5-9189-a2ab3f13af2a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T20:29:45.177Z", + "completed":"2016-10-01T20:29:45.177Z", + "new_balance":"17828.67", + "value":"-34.43" + } + }, + { + "id":"dec58972-8a3f-4787-9082-92b1e97211f7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T13:11:16.070Z", + "completed":"2016-10-02T13:11:16.070Z", + "new_balance":"17734.34", + "value":"-94.33" + } + }, + { + "id":"8e424902-2f89-40ab-95b3-c337365ad1ae", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T01:41:21.241Z", + "completed":"2016-10-05T01:41:21.241Z", + "new_balance":"17679.50", + "value":"-54.84" + } + }, + { + "id":"520dc8b3-9fe7-4fd3-a92f-8e56486e5908", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T02:04:26.261Z", + "completed":"2016-10-05T02:04:26.261Z", + "new_balance":"17667.57", + "value":"-11.93" + } + }, + { + "id":"44320814-493c-413d-bf37-1f473c90b8b9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T02:52:35.729Z", + "completed":"2016-10-05T02:52:35.729Z", + "new_balance":"17586.36", + "value":"-81.21" + } + }, + { + "id":"a102136e-9170-4fa4-8d8d-d4b7728ff291", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T07:57:52.820Z", + "completed":"2016-10-05T07:57:52.820Z", + "new_balance":"17581.72", + "value":"-4.64" + } + }, + { + "id":"ed2465ab-e6e2-455e-ae28-945b06d85b01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T12:36:05.713Z", + "completed":"2016-10-05T12:36:05.713Z", + "new_balance":"17547.29", + "value":"-34.43" + } + }, + { + "id":"7dc1baf4-5e1c-4fa6-bf49-21c9b8e8b127", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T19:34:43.898Z", + "completed":"2016-10-05T19:34:43.898Z", + "new_balance":"17540.71", + "value":"-6.58" + } + }, + { + "id":"e2436c8e-3226-4d7f-90d9-4a937af63a14", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T20:34:24.141Z", + "completed":"2016-10-05T20:34:24.141Z", + "new_balance":"17499.28", + "value":"-41.43" + } + }, + { + "id":"9823c326-e8ba-4ddb-8588-a04d9c107acf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T09:34:28.448Z", + "completed":"2016-10-09T09:34:28.448Z", + "new_balance":"17401.36", + "value":"-97.92" + } + }, + { + "id":"0dfa390e-ea13-4028-a7d1-3e9683dee56d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T13:49:11.157Z", + "completed":"2016-10-11T13:49:11.157Z", + "new_balance":"17345.23", + "value":"-56.13" + } + }, + { + "id":"869c95cb-b96d-41c6-bb5e-812f21556a1e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T00:06:48.140Z", + "completed":"2016-10-12T00:06:48.140Z", + "new_balance":"17264.02", + "value":"-81.21" + } + }, + { + "id":"14f3ce7d-cf34-4efc-8488-66f44ff52a01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T10:51:38.888Z", + "completed":"2016-10-12T10:51:38.888Z", + "new_balance":"17236.57", + "value":"-27.45" + } + }, + { + "id":"98cdaaab-c4a4-4daf-a530-b542feacdecb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T12:37:12.127Z", + "completed":"2016-10-20T12:37:12.127Z", + "new_balance":"17208.59", + "value":"-27.98" + } + }, + { + "id":"16b499df-ebe6-4092-8952-490cab8351bb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T14:38:13.790Z", + "completed":"2016-10-29T14:38:13.790Z", + "new_balance":"19558.80", + "value":"2350.21" + } + }, + { + "id":"0c6f7359-25bc-46a0-b6b4-86303511cb7f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:25:04.566Z", + "completed":"2016-10-30T05:25:04.566Z", + "new_balance":"19241.59", + "value":"-317.21" + } + }, + { + "id":"cfa29920-82c6-4d40-a7c2-8d52a9ef5354", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T08:53:59.358Z", + "completed":"2016-11-02T08:53:59.358Z", + "new_balance":"19194.69", + "value":"-46.90" + } + }, + { + "id":"c1f1f12e-ec2a-47b4-b136-58c152e8806b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T15:01:49.818Z", + "completed":"2016-11-02T15:01:49.818Z", + "new_balance":"19160.26", + "value":"-34.43" + } + }, + { + "id":"54dcb279-1b3a-4a88-a6a0-88fa5066cfb0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T18:43:09.951Z", + "completed":"2016-11-02T18:43:09.951Z", + "new_balance":"19055.54", + "value":"-104.72" + } + }, + { + "id":"9a582755-d9d4-412d-b106-642d710cfc03", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T20:38:06.752Z", + "completed":"2016-11-02T20:38:06.752Z", + "new_balance":"19021.11", + "value":"-34.43" + } + }, + { + "id":"7f8f8929-129f-414d-8661-c75df47e1c66", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T01:49:55.667Z", + "completed":"2016-11-04T01:49:55.667Z", + "new_balance":"19014.53", + "value":"-6.58" + } + }, + { + "id":"a87104cd-211a-4057-9399-5cc6ef9d3314", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T08:14:34.068Z", + "completed":"2016-11-04T08:14:34.068Z", + "new_balance":"18933.32", + "value":"-81.21" + } + }, + { + "id":"091b04fc-bf0c-4053-82aa-5083caf2932a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T15:35:24.748Z", + "completed":"2016-11-06T15:35:24.748Z", + "new_balance":"18853.11", + "value":"-80.21" + } + }, + { + "id":"1aa0e78f-51b8-4dac-910c-193840f9bd73", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T13:54:56.075Z", + "completed":"2016-11-07T13:54:56.075Z", + "new_balance":"18818.60", + "value":"-34.51" + } + }, + { + "id":"12948e33-55f5-41b3-af7f-16057a1ce4ec", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T19:02:46.441Z", + "completed":"2016-11-07T19:02:46.441Z", + "new_balance":"18724.27", + "value":"-94.33" + } + }, + { + "id":"8d2c7d90-a696-4fc9-9449-3e8b079c8eec", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T03:15:24.899Z", + "completed":"2016-11-09T03:15:24.899Z", + "new_balance":"18681.32", + "value":"-42.95" + } + }, + { + "id":"d890e8d3-6f9b-4575-a3a2-3b968ee5e8f0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T09:09:33.124Z", + "completed":"2016-11-09T09:09:33.124Z", + "new_balance":"18669.39", + "value":"-11.93" + } + }, + { + "id":"c1bfc370-f599-4231-a438-05763e080544", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T17:55:38.084Z", + "completed":"2016-11-13T17:55:38.084Z", + "new_balance":"18634.88", + "value":"-34.51" + } + }, + { + "id":"cf02dbf9-de49-4d8d-b62f-fc48efdbbcf4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T20:31:15.783Z", + "completed":"2016-11-13T20:31:15.783Z", + "new_balance":"18606.69", + "value":"-28.19" + } + }, + { + "id":"2c37d5eb-5e36-4ead-8bda-22e4a6c13ded", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T21:32:42.686Z", + "completed":"2016-11-13T21:32:42.686Z", + "new_balance":"18600.11", + "value":"-6.58" + } + }, + { + "id":"d0750e94-682b-4d62-aa54-113edd3b2ae3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T07:08:07.688Z", + "completed":"2016-11-14T07:08:07.688Z", + "new_balance":"18518.90", + "value":"-81.21" + } + }, + { + "id":"ed0b3fc9-04e1-4927-adc7-524ec38cd00c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T10:43:47.390Z", + "completed":"2016-11-14T10:43:47.390Z", + "new_balance":"18453.67", + "value":"-65.23" + } + }, + { + "id":"4c9f7403-2bd3-4f5b-bbf2-517fde3bfd9e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T04:48:22.473Z", + "completed":"2016-11-15T04:48:22.473Z", + "new_balance":"18425.69", + "value":"-27.98" + } + }, + { + "id":"cf8c046b-f5d1-4b58-94c8-d77cce21b9e4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T06:52:00.433Z", + "completed":"2016-11-30T06:52:00.433Z", + "new_balance":"18108.48", + "value":"-317.21" + } + }, + { + "id":"938f73ab-a290-4eb1-b52d-c96d4063d10c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T11:08:47.290Z", + "completed":"2016-11-30T11:08:47.290Z", + "new_balance":"20458.69", + "value":"2350.21" + } + }, + { + "id":"ee826c54-9320-497d-aeb4-0774b553c6d3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T00:12:59.691Z", + "completed":"2016-12-01T00:12:59.691Z", + "new_balance":"20411.79", + "value":"-46.90" + } + }, + { + "id":"ccd062ed-0695-4252-b3e8-8ada956bcf65", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T13:49:04.245Z", + "completed":"2016-12-01T13:49:04.245Z", + "new_balance":"20307.07", + "value":"-104.72" + } + }, + { + "id":"ed67811a-0637-49b9-a531-adbc2024a32b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T18:42:50.818Z", + "completed":"2016-12-01T18:42:50.818Z", + "new_balance":"20272.64", + "value":"-34.43" + } + }, + { + "id":"dacbbe51-036a-4346-a834-241cb9546800", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T20:03:09.651Z", + "completed":"2016-12-01T20:03:09.651Z", + "new_balance":"20238.21", + "value":"-34.43" + } + }, + { + "id":"3e842a98-cec2-4abc-a665-8b0092778148", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T00:29:11.219Z", + "completed":"2016-12-04T00:29:11.219Z", + "new_balance":"20174.64", + "value":"-63.57" + } + }, + { + "id":"b4f6ed1b-9406-4da1-a701-3cf293ee280a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T03:34:28.894Z", + "completed":"2016-12-04T03:34:28.894Z", + "new_balance":"20113.27", + "value":"-61.37" + } + }, + { + "id":"d3d68ccb-2eef-4b87-a788-fed3200c4677", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T00:13:19.659Z", + "completed":"2016-12-11T00:13:19.659Z", + "new_balance":"20024.78", + "value":"-88.49" + } + }, + { + "id":"30d2facf-4c1c-4fd0-9870-66eb3a8b7840", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T01:03:14.534Z", + "completed":"2016-12-11T01:03:14.534Z", + "new_balance":"19942.99", + "value":"-81.79" + } + }, + { + "id":"08cbecb6-2e1e-4bd7-8eaa-fc0edd9c42d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T02:41:14.443Z", + "completed":"2016-12-11T02:41:14.443Z", + "new_balance":"19897.52", + "value":"-45.47" + } + }, + { + "id":"fafbe85b-9d14-492a-90d4-f731acdd2a3c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T05:21:24.167Z", + "completed":"2016-12-12T05:21:24.167Z", + "new_balance":"19890.75", + "value":"-6.77" + } + }, + { + "id":"25ba857d-fc11-497f-b0ca-57eec111b907", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T19:14:45.244Z", + "completed":"2016-12-12T19:14:45.244Z", + "new_balance":"19851.11", + "value":"-39.64" + } + }, + { + "id":"8951b8ad-09c7-489b-b3ff-7bb5abc4e9a3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:55:02.332Z", + "completed":"2016-12-16T16:55:02.332Z", + "new_balance":"19746.92", + "value":"-104.19" + } + }, + { + "id":"f3e86812-d9d5-4500-8044-eb79dca4ea15", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T01:28:26.636Z", + "completed":"2016-12-29T01:28:26.636Z", + "new_balance":"19718.94", + "value":"-27.98" + } + }, + { + "id":"ced296c0-fe5e-4b84-9fbe-001da0a9e70d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T07:28:58.578Z", + "completed":"2016-12-30T07:28:58.578Z", + "new_balance":"19401.73", + "value":"-317.21" + } + }, + { + "id":"dd2f3b32-5917-4db7-b1ed-817809ad2e7a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T15:59:38.777Z", + "completed":"2016-12-30T15:59:38.777Z", + "new_balance":"21751.94", + "value":"2350.21" + } + }, + { + "id":"967ad821-a017-4fc1-8685-e12d72358917", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T05:28:37.160Z", + "completed":"2017-01-01T05:28:37.160Z", + "new_balance":"21717.51", + "value":"-34.43" + } + }, + { + "id":"4298e2a0-2f4d-4a52-b54c-b822e519f40b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T18:03:34.852Z", + "completed":"2017-01-01T18:03:34.852Z", + "new_balance":"21670.61", + "value":"-46.90" + } + }, + { + "id":"1e44e199-cf6a-4170-a8e5-b811a13a58b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T21:54:25.339Z", + "completed":"2017-01-01T21:54:25.339Z", + "new_balance":"21636.18", + "value":"-34.43" + } + }, + { + "id":"649ac9b9-4b55-4ee1-a7ee-fd7421ec5062", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T23:09:42.387Z", + "completed":"2017-01-01T23:09:42.387Z", + "new_balance":"21531.46", + "value":"-104.72" + } + }, + { + "id":"8ca44442-8f5d-45e3-be43-617f2d497bfa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T01:36:43.547Z", + "completed":"2017-01-05T01:36:43.547Z", + "new_balance":"21464.01", + "value":"-67.45" + } + }, + { + "id":"0f0343ff-5118-43fb-80d6-27d00a7c64fb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T01:54:43.901Z", + "completed":"2017-01-05T01:54:43.901Z", + "new_balance":"21382.80", + "value":"-81.21" + } + }, + { + "id":"51373823-f6d4-48e0-804b-050c62461a90", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T09:59:25.983Z", + "completed":"2017-01-08T09:59:25.983Z", + "new_balance":"21371.89", + "value":"-10.91" + } + }, + { + "id":"e508a8a4-b9c0-4196-ab15-0d56518e7dd2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T21:43:28.421Z", + "completed":"2017-01-10T21:43:28.421Z", + "new_balance":"21325.43", + "value":"-46.46" + } + }, + { + "id":"7df7fa8c-1468-4b34-8aea-ba0c43e1a97e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T02:49:42.784Z", + "completed":"2017-01-11T02:49:42.784Z", + "new_balance":"21268.79", + "value":"-56.64" + } + }, + { + "id":"b1dd029c-71f3-4023-92ec-e8a8704f11f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T23:38:07.461Z", + "completed":"2017-01-12T23:38:07.461Z", + "new_balance":"21234.36", + "value":"-34.43" + } + }, + { + "id":"a9cc1bb6-13b4-4e27-a45b-0a30e26a5950", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:32:50.357Z", + "completed":"2017-01-13T05:32:50.357Z", + "new_balance":"21230.77", + "value":"-3.59" + } + }, + { + "id":"3969eb70-794d-43c2-9db1-a72795c3bae3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T08:33:38.477Z", + "completed":"2017-01-13T08:33:38.477Z", + "new_balance":"21225.12", + "value":"-5.65" + } + }, + { + "id":"44281d10-1e84-4349-a308-db2ae844e2a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T03:24:38.138Z", + "completed":"2017-01-16T03:24:38.138Z", + "new_balance":"21142.03", + "value":"-83.09" + } + }, + { + "id":"0c8642f9-d5ef-40c1-8761-5db22f107692", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T00:13:52.118Z", + "completed":"2017-01-19T00:13:52.118Z", + "new_balance":"21060.82", + "value":"-81.21" + } + }, + { + "id":"12b78ca6-294c-4c0f-8b99-f46add38b1a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T12:58:50.828Z", + "completed":"2017-01-19T12:58:50.828Z", + "new_balance":"20979.38", + "value":"-81.44" + } + }, + { + "id":"f37e459e-897f-49a6-82db-c6cf807421b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:44:34.197Z", + "completed":"2017-01-24T23:44:34.197Z", + "new_balance":"20951.93", + "value":"-27.45" + } + }, + { + "id":"7bd93fbe-cd06-442b-b712-1a1a8dfb3eaa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T03:26:57.464Z", + "completed":"2017-01-27T03:26:57.464Z", + "new_balance":"23302.14", + "value":"2350.21" + } + }, + { + "id":"7167c70f-84d9-43f9-a330-842dab14bfa1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T09:10:10.568Z", + "completed":"2017-01-27T09:10:10.568Z", + "new_balance":"23274.16", + "value":"-27.98" + } + }, + { + "id":"dfe39b26-55a0-4da4-a60a-25a8781d3d75", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T19:26:05.313Z", + "completed":"2017-01-31T19:26:05.313Z", + "new_balance":"22956.95", + "value":"-317.21" + } + }, + { + "id":"b03094ab-46a6-483f-9b6e-8ed63ef07b30", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T00:51:38.647Z", + "completed":"2017-02-01T00:51:38.647Z", + "new_balance":"22910.05", + "value":"-46.90" + } + }, + { + "id":"2bf919d6-6d3e-4fa4-9aba-185a9092058e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T12:54:58.443Z", + "completed":"2017-02-01T12:54:58.443Z", + "new_balance":"22875.62", + "value":"-34.43" + } + }, + { + "id":"de9f2032-6d85-4ba6-8dc8-ad9cba30150c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T14:21:33.491Z", + "completed":"2017-02-01T14:21:33.491Z", + "new_balance":"22770.90", + "value":"-104.72" + } + }, + { + "id":"cb8ab8a3-ce54-4a79-9e9c-0936d4470217", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T23:25:37.755Z", + "completed":"2017-02-01T23:25:37.755Z", + "new_balance":"22736.47", + "value":"-34.43" + } + }, + { + "id":"6d7c0bbf-ec3d-4698-aa9b-e009b80743fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T13:40:04.265Z", + "completed":"2017-02-03T13:40:04.265Z", + "new_balance":"22729.75", + "value":"-6.72" + } + }, + { + "id":"8819d223-cfae-4793-b84c-1286b92be30c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T17:18:00.570Z", + "completed":"2017-02-04T17:18:00.570Z", + "new_balance":"22648.54", + "value":"-81.21" + } + }, + { + "id":"98c05b10-a882-4d78-9db9-460e5c0e88b8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T06:32:17.628Z", + "completed":"2017-02-06T06:32:17.628Z", + "new_balance":"22541.73", + "value":"-106.81" + } + }, + { + "id":"b7850292-44d1-49de-96de-396c23ad00e7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T08:03:19.483Z", + "completed":"2017-02-06T08:03:19.483Z", + "new_balance":"22460.56", + "value":"-81.17" + } + }, + { + "id":"61c14895-17d6-4bb5-b971-ef6293682c15", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T16:44:42.711Z", + "completed":"2017-02-07T16:44:42.711Z", + "new_balance":"22432.53", + "value":"-28.03" + } + }, + { + "id":"af3bc7f6-bd7e-4084-bbd4-2fa2d6762c20", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T04:56:10.536Z", + "completed":"2017-02-08T04:56:10.536Z", + "new_balance":"22417.24", + "value":"-15.29" + } + }, + { + "id":"388697b8-a998-4ad5-acb1-b231d5c93f28", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T05:41:40.419Z", + "completed":"2017-02-09T05:41:40.419Z", + "new_balance":"22374.29", + "value":"-42.95" + } + }, + { + "id":"e3115642-d5d9-471b-919a-fdaed2534770", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T19:19:56.524Z", + "completed":"2017-02-11T19:19:56.524Z", + "new_balance":"22347.56", + "value":"-26.73" + } + }, + { + "id":"ad98b73d-9acf-451f-8874-332ca0c74f32", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T07:43:21.616Z", + "completed":"2017-02-13T07:43:21.616Z", + "new_balance":"22306.02", + "value":"-41.54" + } + }, + { + "id":"fe6d9438-4cd1-4a6f-a273-2a019e1be38f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T03:56:25.319Z", + "completed":"2017-02-17T03:56:25.319Z", + "new_balance":"22299.03", + "value":"-6.99" + } + }, + { + "id":"c11400bf-bc2e-4719-8fb2-9762aa639426", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T15:40:15.934Z", + "completed":"2017-02-19T15:40:15.934Z", + "new_balance":"22249.09", + "value":"-49.94" + } + }, + { + "id":"58e97b13-4960-4a69-90f7-d895bc03d6c2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T18:15:46.823Z", + "completed":"2017-02-21T18:15:46.823Z", + "new_balance":"22167.88", + "value":"-81.21" + } + }, + { + "id":"8b6bd957-e30d-49fe-b492-2470cf6c39c8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T23:13:51.498Z", + "completed":"2017-02-24T23:13:51.498Z", + "new_balance":"22139.90", + "value":"-27.98" + } + }, + { + "id":"11a9ee8a-542e-41b0-ac15-de2eb9e04097", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T15:06:37.421Z", + "completed":"2017-02-26T15:06:37.421Z", + "new_balance":"24490.11", + "value":"2350.21" + } + }, + { + "id":"96d4ba7a-9be7-4cb9-b865-fd3c135e58ea", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T10:11:10.886Z", + "completed":"2017-03-01T10:11:10.886Z", + "new_balance":"24443.21", + "value":"-46.90" + } + }, + { + "id":"aca9c57e-f5a6-4f19-bcd5-e9b03bddbb6d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T12:30:06.023Z", + "completed":"2017-03-01T12:30:06.023Z", + "new_balance":"24408.78", + "value":"-34.43" + } + }, + { + "id":"ae73867b-1349-4910-8918-ff191241cbd8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T18:34:28.681Z", + "completed":"2017-03-01T18:34:28.681Z", + "new_balance":"24374.35", + "value":"-34.43" + } + }, + { + "id":"c3a7d0d8-9d67-40dd-a430-09a1320eeee6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T21:50:05.653Z", + "completed":"2017-03-01T21:50:05.653Z", + "new_balance":"24269.63", + "value":"-104.72" + } + }, + { + "id":"c52ab963-4a0d-45d4-918d-1ed15afbd19a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T10:03:57.442Z", + "completed":"2017-03-09T10:03:57.442Z", + "new_balance":"24206.06", + "value":"-63.57" + } + }, + { + "id":"b2486187-48c4-4c29-b93d-c1f32e3af187", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T19:33:56.446Z", + "completed":"2017-03-09T19:33:56.446Z", + "new_balance":"24144.69", + "value":"-61.37" + } + }, + { + "id":"010b4cd6-6a29-4598-998c-91cf47b4a5c9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T05:49:59.474Z", + "completed":"2017-03-17T05:49:59.474Z", + "new_balance":"24056.20", + "value":"-88.49" + } + }, + { + "id":"be5cbf16-702c-40cf-bf67-1372a5362c26", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T01:26:17.462Z", + "completed":"2017-03-18T01:26:17.462Z", + "new_balance":"23974.41", + "value":"-81.79" + } + }, + { + "id":"06a2b875-ccb5-4501-b72a-f410e4861caf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T02:58:22.520Z", + "completed":"2017-03-18T02:58:22.520Z", + "new_balance":"23967.64", + "value":"-6.77" + } + }, + { + "id":"2f050621-f94f-416d-8c9c-d01e15f8ce01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T15:46:44.790Z", + "completed":"2017-03-18T15:46:44.790Z", + "new_balance":"23922.17", + "value":"-45.47" + } + }, + { + "id":"611863c5-be6f-491d-bbcb-f233b553ddf9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T21:08:31.851Z", + "completed":"2017-03-18T21:08:31.851Z", + "new_balance":"23882.53", + "value":"-39.64" + } + }, + { + "id":"a53f9a7e-022d-4ab8-bbe6-ab9b205a084c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T04:21:21.457Z", + "completed":"2017-03-22T04:21:21.457Z", + "new_balance":"23778.34", + "value":"-104.19" + } + }, + { + "id":"e65384fe-9a96-4fd1-a4b4-511daf5401d0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T12:35:43.545Z", + "completed":"2017-03-29T12:35:43.545Z", + "new_balance":"23750.36", + "value":"-27.98" + } + }, + { + "id":"f3f2bb2c-0ba3-4719-b526-109b9e7dc764", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T16:59:00.336Z", + "completed":"2017-03-29T16:59:00.336Z", + "new_balance":"26100.57", + "value":"2350.21" + } + }, + { + "id":"b0f7bb0b-bedd-476f-9743-62a84a40c3ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T00:39:15.215Z", + "completed":"2017-03-31T00:39:15.215Z", + "new_balance":"25783.36", + "value":"-317.21" + } + }, + { + "id":"837bf623-7901-4f1b-a745-d96c91966cdf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T09:34:15.885Z", + "completed":"2017-04-01T09:34:15.885Z", + "new_balance":"25748.93", + "value":"-34.43" + } + }, + { + "id":"28e9c17d-4d86-44f0-b017-d30878a151d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T11:22:27.508Z", + "completed":"2017-04-01T11:22:27.508Z", + "new_balance":"25714.50", + "value":"-34.43" + } + }, + { + "id":"09f1e6da-726e-4850-ad3f-91d2aab11b26", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T17:43:01.791Z", + "completed":"2017-04-01T17:43:01.791Z", + "new_balance":"25609.78", + "value":"-104.72" + } + }, + { + "id":"9adfcda6-672b-45df-92b7-12343fb2b617", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T18:29:53.546Z", + "completed":"2017-04-01T18:29:53.546Z", + "new_balance":"25562.88", + "value":"-46.90" + } + }, + { + "id":"f27f6d22-c8fd-4f30-9957-4fc710263b6b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T06:59:29.128Z", + "completed":"2017-04-02T06:59:29.128Z", + "new_balance":"25468.55", + "value":"-94.33" + } + }, + { + "id":"b330fe95-a2c5-4de6-8dca-a6a6b4e75d9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T00:49:19.521Z", + "completed":"2017-04-05T00:49:19.521Z", + "new_balance":"25461.97", + "value":"-6.58" + } + }, + { + "id":"c7dc1fd8-eb66-4b6b-8b73-73094d05dece", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T04:36:37.834Z", + "completed":"2017-04-05T04:36:37.834Z", + "new_balance":"25407.13", + "value":"-54.84" + } + }, + { + "id":"6ab8f789-0d6c-4aab-935e-3f51e776464f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T12:19:55.398Z", + "completed":"2017-04-05T12:19:55.398Z", + "new_balance":"25365.70", + "value":"-41.43" + } + }, + { + "id":"b25e8214-5ddb-4178-a600-3061a3efe1e6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T12:54:54.664Z", + "completed":"2017-04-05T12:54:54.664Z", + "new_balance":"25361.06", + "value":"-4.64" + } + }, + { + "id":"04f0d223-462b-4005-b893-d6b1ad953cd3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T13:17:42.254Z", + "completed":"2017-04-05T13:17:42.254Z", + "new_balance":"25349.13", + "value":"-11.93" + } + }, + { + "id":"3f15931a-dbc8-4314-b0fa-a9c3b2f9dbb1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T23:01:39.485Z", + "completed":"2017-04-05T23:01:39.485Z", + "new_balance":"25314.70", + "value":"-34.43" + } + }, + { + "id":"b36a77f3-1481-425e-8d40-b8c7f64dba36", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T23:55:21.578Z", + "completed":"2017-04-05T23:55:21.578Z", + "new_balance":"25233.49", + "value":"-81.21" + } + }, + { + "id":"6fd9fb82-d4e2-431c-840c-e8f686ca44cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T09:33:26.363Z", + "completed":"2017-04-08T09:33:26.363Z", + "new_balance":"25135.57", + "value":"-97.92" + } + }, + { + "id":"770f4c35-985d-4a41-977a-3f5e6069b670", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T13:53:41.405Z", + "completed":"2017-04-10T13:53:41.405Z", + "new_balance":"25079.44", + "value":"-56.13" + } + }, + { + "id":"a5cf85be-64c5-42e9-a8e3-d663e4056183", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T05:08:40.206Z", + "completed":"2017-04-11T05:08:40.206Z", + "new_balance":"24998.23", + "value":"-81.21" + } + }, + { + "id":"f88fff26-b348-448a-bc76-6b5e29dde3ca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T23:42:44.787Z", + "completed":"2017-04-11T23:42:44.787Z", + "new_balance":"24970.78", + "value":"-27.45" + } + }, + { + "id":"8656ca2a-2de4-458f-9837-8b1340a7200c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T19:00:41.758Z", + "completed":"2017-04-13T19:00:41.758Z", + "new_balance":"24942.80", + "value":"-27.98" + } + }, + { + "id":"b5165850-f891-4cbc-afc2-c198a6f8b8d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T10:57:20.343Z", + "completed":"2017-04-18T10:57:20.343Z", + "new_balance":"27293.01", + "value":"2350.21" + } + }, + { + "id":"2c474f99-08a5-4cf2-a018-a0d6ba132d64", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T18:58:57.099Z", + "completed":"2017-04-25T18:58:57.099Z", + "new_balance":"26975.80", + "value":"-317.21" + } + }, + { + "id":"c8dfd054-751a-4717-9d8f-7b7ef983786d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T03:01:57.411Z", + "completed":"2017-05-02T03:01:57.411Z", + "new_balance":"26928.90", + "value":"-46.90" + } + }, + { + "id":"d269942b-bdea-449b-ac04-b53dae40cbc6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T03:19:04.377Z", + "completed":"2017-05-02T03:19:04.377Z", + "new_balance":"26894.47", + "value":"-34.43" + } + }, + { + "id":"d90fb004-b069-4e7f-845f-c68488daaef2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:15:44.532Z", + "completed":"2017-05-02T10:15:44.532Z", + "new_balance":"26860.04", + "value":"-34.43" + } + }, + { + "id":"8806b293-2b4a-43bc-bf91-ea9da17eebe5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T19:34:45.501Z", + "completed":"2017-05-02T19:34:45.501Z", + "new_balance":"26755.32", + "value":"-104.72" + } + }, + { + "id":"3d910e91-3106-4435-8ad1-760550b2075f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T15:24:27.400Z", + "completed":"2017-05-04T15:24:27.400Z", + "new_balance":"26674.11", + "value":"-81.21" + } + }, + { + "id":"3c432bbb-4ff0-4bda-a602-37fb14541e91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T17:12:18.679Z", + "completed":"2017-05-04T17:12:18.679Z", + "new_balance":"26667.53", + "value":"-6.58" + } + }, + { + "id":"28bc8fc0-3e5b-4b05-b973-e8be7ffbeae0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T13:10:05.358Z", + "completed":"2017-05-06T13:10:05.358Z", + "new_balance":"26587.32", + "value":"-80.21" + } + }, + { + "id":"0c0e0e36-1e53-4dcc-94c3-1fa163f5b901", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T12:56:41.924Z", + "completed":"2017-05-07T12:56:41.924Z", + "new_balance":"26492.99", + "value":"-94.33" + } + }, + { + "id":"50b7e7bd-2ac6-4f84-bf78-b0de18e9452a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T13:23:52.356Z", + "completed":"2017-05-07T13:23:52.356Z", + "new_balance":"26458.48", + "value":"-34.51" + } + }, + { + "id":"68659b75-63cb-4503-b6a5-c77a5af060ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T06:56:56.354Z", + "completed":"2017-05-09T06:56:56.354Z", + "new_balance":"26446.55", + "value":"-11.93" + } + }, + { + "id":"0873bf9d-30e4-40de-a727-9de5e8a24947", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T22:29:26.768Z", + "completed":"2017-05-09T22:29:26.768Z", + "new_balance":"26403.60", + "value":"-42.95" + } + }, + { + "id":"2df0452a-0466-4699-a483-9837645ee19f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T00:31:01.615Z", + "completed":"2017-05-13T00:31:01.615Z", + "new_balance":"26375.41", + "value":"-28.19" + } + }, + { + "id":"eddd6d30-66ad-4ac2-a646-37a567cda7c4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T05:17:16.140Z", + "completed":"2017-05-13T05:17:16.140Z", + "new_balance":"26340.90", + "value":"-34.51" + } + }, + { + "id":"5f604b1e-71e6-431f-b376-1909e859bcfc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T17:00:27.163Z", + "completed":"2017-05-13T17:00:27.163Z", + "new_balance":"26334.32", + "value":"-6.58" + } + }, + { + "id":"4792c20c-cb8a-47d6-b246-4403741d003e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T09:35:50.692Z", + "completed":"2017-05-14T09:35:50.692Z", + "new_balance":"26269.09", + "value":"-65.23" + } + }, + { + "id":"449e29be-8cdd-4d77-87bc-93f9b8eca94d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T18:51:21.477Z", + "completed":"2017-05-14T18:51:21.477Z", + "new_balance":"26187.88", + "value":"-81.21" + } + }, + { + "id":"0cc9604f-654f-4b4e-8cd0-1b99d8a55c82", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T02:56:19.060Z", + "completed":"2017-05-15T02:56:19.060Z", + "new_balance":"26159.90", + "value":"-27.98" + } + }, + { + "id":"22042dee-0535-412a-a303-e9e0609ecee6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T04:47:10.645Z", + "completed":"2017-05-30T04:47:10.645Z", + "new_balance":"28510.11", + "value":"2350.21" + } + }, + { + "id":"2d987cae-bb2e-43f7-867d-6be5482249c8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T09:18:55.521Z", + "completed":"2017-05-30T09:18:55.521Z", + "new_balance":"28192.90", + "value":"-317.21" + } + }, + { + "id":"35546b8c-a880-4614-972a-c310c6b42af6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T08:38:45.181Z", + "completed":"2017-06-01T08:38:45.181Z", + "new_balance":"28146.00", + "value":"-46.90" + } + }, + { + "id":"936403be-a13e-44d9-86f0-5782271b3126", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T16:07:35.618Z", + "completed":"2017-06-01T16:07:35.618Z", + "new_balance":"28041.28", + "value":"-104.72" + } + }, + { + "id":"b932b199-6d9e-4723-af78-684ec18b452e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T17:59:39.887Z", + "completed":"2017-06-01T17:59:39.887Z", + "new_balance":"28006.85", + "value":"-34.43" + } + }, + { + "id":"e190dd12-130f-4249-ae4f-1a915dd54669", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T19:53:33.833Z", + "completed":"2017-06-01T19:53:33.833Z", + "new_balance":"27972.42", + "value":"-34.43" + } + }, + { + "id":"c217c8dd-5b2c-48fe-b8b9-7a7507534c3e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T05:05:23.506Z", + "completed":"2017-06-04T05:05:23.506Z", + "new_balance":"27908.85", + "value":"-63.57" + } + }, + { + "id":"709acfca-a43e-4b89-b39a-7e8770d9d2a8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T22:05:00.256Z", + "completed":"2017-06-04T22:05:00.256Z", + "new_balance":"27847.48", + "value":"-61.37" + } + }, + { + "id":"3a25f64b-fb3f-4db5-83e8-b3c6d2680c19", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T08:29:40.538Z", + "completed":"2017-06-11T08:29:40.538Z", + "new_balance":"27802.01", + "value":"-45.47" + } + }, + { + "id":"41ee6aa2-ffef-4898-b1a3-d0b160777fb9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:02:32.659Z", + "completed":"2017-06-11T14:02:32.659Z", + "new_balance":"27713.52", + "value":"-88.49" + } + }, + { + "id":"50ede450-fed3-47f8-9f6f-8f4b19d2d4a5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T20:03:45.397Z", + "completed":"2017-06-11T20:03:45.397Z", + "new_balance":"27631.73", + "value":"-81.79" + } + }, + { + "id":"667519fe-90cd-478c-8d47-d3fb152440ca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T09:06:22.248Z", + "completed":"2017-06-12T09:06:22.248Z", + "new_balance":"27592.09", + "value":"-39.64" + } + }, + { + "id":"c520fa3d-cf44-41d3-8584-90e1377144d2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T11:17:46.560Z", + "completed":"2017-06-12T11:17:46.560Z", + "new_balance":"27585.32", + "value":"-6.77" + } + }, + { + "id":"1af71c61-43aa-4b1c-a59f-0f7c1412361b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T04:26:16.905Z", + "completed":"2017-06-16T04:26:16.905Z", + "new_balance":"27481.13", + "value":"-104.19" + } + }, + { + "id":"da9e0e14-f1b0-4958-9a38-dbd6af098d06", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T06:39:07.431Z", + "completed":"2017-06-29T06:39:07.431Z", + "new_balance":"27453.15", + "value":"-27.98" + } + }, + { + "id":"0ef30d41-90bc-4cac-a57b-ddf8c13fbcdb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T11:38:07.862Z", + "completed":"2017-06-30T11:38:07.862Z", + "new_balance":"27135.94", + "value":"-317.21" + } + }, + { + "id":"7931fecb-ebfb-4648-93d5-38c08b3a26c9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T14:33:59.172Z", + "completed":"2017-06-30T14:33:59.172Z", + "new_balance":"29486.15", + "value":"2350.21" + } + }, + { + "id":"378fc3b9-469e-46ab-9d35-8644e26a4c8f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T00:13:47.734Z", + "completed":"2017-07-01T00:13:47.734Z", + "new_balance":"29439.25", + "value":"-46.90" + } + }, + { + "id":"73d34686-d5b7-42f9-86dd-9dfddc577478", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T04:08:54.565Z", + "completed":"2017-07-01T04:08:54.565Z", + "new_balance":"29404.82", + "value":"-34.43" + } + }, + { + "id":"2adcace5-4df5-47f1-a051-83798f8090f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T04:28:53.874Z", + "completed":"2017-07-01T04:28:53.874Z", + "new_balance":"29370.39", + "value":"-34.43" + } + }, + { + "id":"769d96bc-f9fd-458d-9850-6c273de0d14f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T13:18:17.675Z", + "completed":"2017-07-01T13:18:17.675Z", + "new_balance":"29265.67", + "value":"-104.72" + } + }, + { + "id":"e2ed58b2-668a-497f-956a-e3be35f70746", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T05:47:34.736Z", + "completed":"2017-07-05T05:47:34.736Z", + "new_balance":"29198.22", + "value":"-67.45" + } + }, + { + "id":"4062cde0-e237-4706-aa3d-81cb69f626f5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T17:15:48.903Z", + "completed":"2017-07-05T17:15:48.903Z", + "new_balance":"29117.01", + "value":"-81.21" + } + }, + { + "id":"98be30b6-a0fc-4496-af1e-f55bd4b20dbd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T17:38:41.966Z", + "completed":"2017-07-08T17:38:41.966Z", + "new_balance":"29106.10", + "value":"-10.91" + } + }, + { + "id":"9615e8e8-bf5b-4eb5-872e-bbf22c3ffcf9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T17:17:29.175Z", + "completed":"2017-07-10T17:17:29.175Z", + "new_balance":"29059.64", + "value":"-46.46" + } + }, + { + "id":"5a9da2a1-68af-400f-8a25-1e452e9a5062", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T08:40:54.359Z", + "completed":"2017-07-12T08:40:54.359Z", + "new_balance":"29025.21", + "value":"-34.43" + } + }, + { + "id":"e860491a-1d39-452b-972e-1bee3c3be427", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T12:19:04.077Z", + "completed":"2017-07-12T12:19:04.077Z", + "new_balance":"28968.57", + "value":"-56.64" + } + }, + { + "id":"588f874b-e475-4857-92d0-50950531206d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T13:18:01.894Z", + "completed":"2017-07-13T13:18:01.894Z", + "new_balance":"28964.98", + "value":"-3.59" + } + }, + { + "id":"69bdf2b5-743e-4fd7-8c15-dc81c3da69b9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T20:28:06.118Z", + "completed":"2017-07-13T20:28:06.118Z", + "new_balance":"28959.33", + "value":"-5.65" + } + }, + { + "id":"8210a2ce-e5c0-4c34-b60e-b2a1a053a834", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T02:26:02.846Z", + "completed":"2017-07-18T02:26:02.846Z", + "new_balance":"28876.24", + "value":"-83.09" + } + }, + { + "id":"e71b67a9-7bdd-4f55-81e8-a4397cdda155", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T18:58:34.665Z", + "completed":"2017-07-20T18:58:34.665Z", + "new_balance":"28794.80", + "value":"-81.44" + } + }, + { + "id":"e67cb1f5-a39b-4d96-8229-745984cb3ce2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T21:21:48.892Z", + "completed":"2017-07-20T21:21:48.892Z", + "new_balance":"28713.59", + "value":"-81.21" + } + }, + { + "id":"16282c7b-c4a5-4225-a319-ba60243342b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T18:46:47.798Z", + "completed":"2017-07-24T18:46:47.798Z", + "new_balance":"28686.14", + "value":"-27.45" + } + }, + { + "id":"c09bfc96-8b00-4e47-903f-9480e7c9117a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T17:27:46.134Z", + "completed":"2017-07-29T17:27:46.134Z", + "new_balance":"31036.35", + "value":"2350.21" + } + }, + { + "id":"0e543e86-9aad-4244-a8c8-d26427540044", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T21:49:12.893Z", + "completed":"2017-07-29T21:49:12.893Z", + "new_balance":"31008.37", + "value":"-27.98" + } + }, + { + "id":"f6934d51-5c8f-4819-a88d-6d6e11f4b6de", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T06:31:52.912Z", + "completed":"2017-07-30T06:31:52.912Z", + "new_balance":"30691.16", + "value":"-317.21" + } + }, + { + "id":"afcbf03f-45c2-4ec1-85f1-57eebd4c9d9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:40:27.406Z", + "completed":"2017-08-01T09:40:27.406Z", + "new_balance":"30644.26", + "value":"-46.90" + } + }, + { + "id":"665d4a5d-9585-4c7d-aabe-ad97b1883959", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T11:30:22.628Z", + "completed":"2017-08-01T11:30:22.628Z", + "new_balance":"30609.83", + "value":"-34.43" + } + }, + { + "id":"365e854e-5ba6-4e25-bfe4-9c0b286280f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:05:51.999Z", + "completed":"2017-08-01T21:05:51.999Z", + "new_balance":"30575.40", + "value":"-34.43" + } + }, + { + "id":"586ef854-8f54-4e90-9bd2-252e7eaea308", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T23:10:38.310Z", + "completed":"2017-08-01T23:10:38.310Z", + "new_balance":"30470.68", + "value":"-104.72" + } + }, + { + "id":"9c42f176-2679-4baa-a88c-dbe1e8db70d6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T22:23:34.801Z", + "completed":"2017-08-03T22:23:34.801Z", + "new_balance":"30463.96", + "value":"-6.72" + } + }, + { + "id":"5417ad96-3364-4ab9-9ee8-66f44f534a18", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T18:14:15.934Z", + "completed":"2017-08-04T18:14:15.934Z", + "new_balance":"30382.75", + "value":"-81.21" + } + }, + { + "id":"d2910ba7-c9d2-4600-b237-4bfcd4bff9fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T01:23:56.127Z", + "completed":"2017-08-08T01:23:56.127Z", + "new_balance":"30275.94", + "value":"-106.81" + } + }, + { + "id":"12e71e4c-b411-4f3a-981e-bc794ffb54fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T10:49:22.333Z", + "completed":"2017-08-08T10:49:22.333Z", + "new_balance":"30194.77", + "value":"-81.17" + } + }, + { + "id":"20fbcd31-2147-40d2-b575-c34eb2fd2995", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T15:58:22.719Z", + "completed":"2017-08-08T15:58:22.719Z", + "new_balance":"30179.48", + "value":"-15.29" + } + }, + { + "id":"60abf04d-bfa0-4976-bfe0-a946a6408cb7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T19:21:34.297Z", + "completed":"2017-08-08T19:21:34.297Z", + "new_balance":"30151.45", + "value":"-28.03" + } + }, + { + "id":"e9c6ada3-9b8c-46ab-9579-f789fde26091", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T00:10:43.665Z", + "completed":"2017-08-09T00:10:43.665Z", + "new_balance":"30108.50", + "value":"-42.95" + } + }, + { + "id":"a754981a-c86c-44b6-9820-9b08e7769b37", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T22:32:48.694Z", + "completed":"2017-08-14T22:32:48.694Z", + "new_balance":"30081.77", + "value":"-26.73" + } + }, + { + "id":"0c3b2e38-d5dd-4cba-9c8f-2b4967de5867", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T20:56:30.882Z", + "completed":"2017-08-15T20:56:30.882Z", + "new_balance":"30040.23", + "value":"-41.54" + } + }, + { + "id":"0df50b9a-0072-4b4e-9e47-f6696b0aa1f8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T00:20:02.237Z", + "completed":"2017-08-19T00:20:02.237Z", + "new_balance":"30033.24", + "value":"-6.99" + } + }, + { + "id":"d9d69e3a-f4cc-475f-8d66-84f7e973d12d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T18:09:54.046Z", + "completed":"2017-08-22T18:09:54.046Z", + "new_balance":"29983.30", + "value":"-49.94" + } + }, + { + "id":"0917bdde-6d13-4b63-981e-0e9be8fc2395", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T21:06:27.795Z", + "completed":"2017-08-26T21:06:27.795Z", + "new_balance":"29902.09", + "value":"-81.21" + } + }, + { + "id":"766513a0-dc65-4e53-8013-bfeeb95e5ed7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T08:26:19.496Z", + "completed":"2017-08-28T08:26:19.496Z", + "new_balance":"29584.88", + "value":"-317.21" + } + }, + { + "id":"e47421a7-155a-4c15-bffe-9e99d36f73a7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T04:20:29.193Z", + "completed":"2017-08-29T04:20:29.193Z", + "new_balance":"31935.09", + "value":"2350.21" + } + }, + { + "id":"958bc7d1-ee8e-4a53-8be1-090ab338c449", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T07:28:25.326Z", + "completed":"2017-08-29T07:28:25.326Z", + "new_balance":"31907.11", + "value":"-27.98" + } + }, + { + "id":"1c25ee04-5add-41a2-80f2-dd3e1f32187c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T15:07:20.060Z", + "completed":"2017-08-30T15:07:20.060Z", + "new_balance":"31589.90", + "value":"-317.21" + } + }, + { + "id":"fcb89318-6d5d-406b-b383-afc65d5cea4f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T04:35:58.891Z", + "completed":"2017-09-01T04:35:58.891Z", + "new_balance":"31555.47", + "value":"-34.43" + } + }, + { + "id":"95e9e523-064a-478f-8994-61e912c287b0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T05:44:32.277Z", + "completed":"2017-09-01T05:44:32.277Z", + "new_balance":"31508.57", + "value":"-46.90" + } + }, + { + "id":"ce550b9e-ea4c-4f6c-bb54-631d3f541bfc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T11:10:53.491Z", + "completed":"2017-09-01T11:10:53.491Z", + "new_balance":"31403.85", + "value":"-104.72" + } + }, + { + "id":"743ac99c-6a03-4429-87dc-b9826845051e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:35:17.222Z", + "completed":"2017-09-01T21:35:17.222Z", + "new_balance":"31369.42", + "value":"-34.43" + } + }, + { + "id":"71ac1ba0-141b-44b6-8ff1-fc88239f5f31", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T20:46:46.811Z", + "completed":"2017-09-09T20:46:46.811Z", + "new_balance":"31305.85", + "value":"-63.57" + } + }, + { + "id":"1a8e8190-51bf-47c9-a893-62423fdc98b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T22:40:22.904Z", + "completed":"2017-09-09T22:40:22.904Z", + "new_balance":"31244.48", + "value":"-61.37" + } + }, + { + "id":"8e9442eb-76db-4eeb-bf65-aa13e0d65132", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T21:15:36.764Z", + "completed":"2017-09-17T21:15:36.764Z", + "new_balance":"31155.99", + "value":"-88.49" + } + }, + { + "id":"aaaa9dca-8d14-47c2-b535-5122e8984e2b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T03:22:30.958Z", + "completed":"2017-09-18T03:22:30.958Z", + "new_balance":"31116.35", + "value":"-39.64" + } + }, + { + "id":"e132bc3d-67a1-4641-a7d7-79cc315df465", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:15:10.585Z", + "completed":"2017-09-18T07:15:10.585Z", + "new_balance":"31109.58", + "value":"-6.77" + } + }, + { + "id":"d71c4430-9124-49e2-8280-083c361f0422", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:10:22.308Z", + "completed":"2017-09-18T10:10:22.308Z", + "new_balance":"31064.11", + "value":"-45.47" + } + }, + { + "id":"9ef920c0-c91d-4e4e-b540-1f1f766105c3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T16:46:39.723Z", + "completed":"2017-09-18T16:46:39.723Z", + "new_balance":"30982.32", + "value":"-81.79" + } + }, + { + "id":"65d1c906-62c9-48fc-a5fa-093c1d61c6e8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T23:26:32.942Z", + "completed":"2017-09-22T23:26:32.942Z", + "new_balance":"30878.13", + "value":"-104.19" + } + }, + { + "id":"65c50c9a-a38c-4fb9-b3a9-bd516bd8d4fb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T02:42:22.583Z", + "completed":"2017-09-29T02:42:22.583Z", + "new_balance":"33228.34", + "value":"2350.21" + } + }, + { + "id":"d37aae81-798f-446e-b5c8-ca51d873f6e3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T14:15:20.602Z", + "completed":"2017-09-29T14:15:20.602Z", + "new_balance":"33200.36", + "value":"-27.98" + } + }, + { + "id":"812e9de4-6eb0-4c9f-96cc-2453d88e9809", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T05:11:13.147Z", + "completed":"2017-09-30T05:11:13.147Z", + "new_balance":"32883.15", + "value":"-317.21" + } + }, + { + "id":"2a857baf-8786-4764-90df-fbbb8d2f735f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T12:03:02.168Z", + "completed":"2017-10-01T12:03:02.168Z", + "new_balance":"32848.72", + "value":"-34.43" + } + }, + { + "id":"0ac15b37-2f1b-421c-9bed-dbdcc3eddb21", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T13:13:11.524Z", + "completed":"2017-10-01T13:13:11.524Z", + "new_balance":"32744.00", + "value":"-104.72" + } + }, + { + "id":"6e1d25e0-afa5-4928-bc01-7ceba1dbb3de", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T21:01:41.461Z", + "completed":"2017-10-01T21:01:41.461Z", + "new_balance":"32709.57", + "value":"-34.43" + } + }, + { + "id":"37fb71df-91ee-4d2f-99b2-c677689c7877", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T23:42:53.080Z", + "completed":"2017-10-01T23:42:53.080Z", + "new_balance":"32662.67", + "value":"-46.90" + } + }, + { + "id":"e6ade84e-70ea-48f9-9ff5-7b35c633a035", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T13:51:42.637Z", + "completed":"2017-10-02T13:51:42.637Z", + "new_balance":"32568.34", + "value":"-94.33" + } + }, + { + "id":"d67b9ff5-6854-4e4b-af81-059180dd1e00", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T00:45:43.230Z", + "completed":"2017-10-05T00:45:43.230Z", + "new_balance":"32533.91", + "value":"-34.43" + } + }, + { + "id":"251c42e1-73dd-46e6-9b01-47925ae68d77", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T02:08:37.532Z", + "completed":"2017-10-05T02:08:37.532Z", + "new_balance":"32452.70", + "value":"-81.21" + } + }, + { + "id":"17ad08c5-a6cc-404b-b3f3-043531aab7f8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T03:30:16.413Z", + "completed":"2017-10-05T03:30:16.413Z", + "new_balance":"32411.27", + "value":"-41.43" + } + }, + { + "id":"68dd2490-ed9d-42e3-b80b-d17afe425f71", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T04:52:03.981Z", + "completed":"2017-10-05T04:52:03.981Z", + "new_balance":"32399.34", + "value":"-11.93" + } + }, + { + "id":"3ab040e4-c97b-4a2d-bc36-df7911dbd2ed", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T08:03:04.892Z", + "completed":"2017-10-05T08:03:04.892Z", + "new_balance":"32344.50", + "value":"-54.84" + } + }, + { + "id":"e98138bb-5207-46e9-8a53-8f0111ed5ece", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T15:39:54.872Z", + "completed":"2017-10-05T15:39:54.872Z", + "new_balance":"32337.92", + "value":"-6.58" + } + }, + { + "id":"6408a264-221a-4006-a111-a951d7c0c30a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T19:35:11.314Z", + "completed":"2017-10-05T19:35:11.314Z", + "new_balance":"32333.28", + "value":"-4.64" + } + }, + { + "id":"e5fc1aab-d62c-45e1-b5b6-eaf1559aae59", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T10:11:59.277Z", + "completed":"2017-10-09T10:11:59.277Z", + "new_balance":"32235.36", + "value":"-97.92" + } + }, + { + "id":"f333ea25-9de2-4da1-9e8a-44c0b5972b5c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T23:21:19.123Z", + "completed":"2017-10-11T23:21:19.123Z", + "new_balance":"32179.23", + "value":"-56.13" + } + }, + { + "id":"5aa90db8-b9b9-4c00-9447-30ffd9f31698", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T07:21:49.493Z", + "completed":"2017-10-12T07:21:49.493Z", + "new_balance":"32151.78", + "value":"-27.45" + } + }, + { + "id":"47a23a35-1cb0-4975-8b04-bfe979975e9c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T08:27:20.498Z", + "completed":"2017-10-12T08:27:20.498Z", + "new_balance":"32070.57", + "value":"-81.21" + } + }, + { + "id":"5f8ccb91-bb77-439a-9d0a-5cb97ec895da", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T04:29:51.741Z", + "completed":"2017-10-20T04:29:51.741Z", + "new_balance":"32042.59", + "value":"-27.98" + } + }, + { + "id":"69b4972f-e608-40e4-85f7-aa0fba3ea072", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T06:20:50.946Z", + "completed":"2017-10-29T06:20:50.946Z", + "new_balance":"34392.80", + "value":"2350.21" + } + }, + { + "id":"164362d7-7b99-4e5d-a2a7-92ea4075cae6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T12:00:15.372Z", + "completed":"2017-10-30T12:00:15.372Z", + "new_balance":"34075.59", + "value":"-317.21" + } + }, + { + "id":"82e131d9-4008-4a69-98ec-514c247d3580", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T07:07:14.211Z", + "completed":"2017-11-02T07:07:14.211Z", + "new_balance":"34041.16", + "value":"-34.43" + } + }, + { + "id":"df3a4aa4-09e2-4f55-94a1-da43c37d610d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T11:36:53.291Z", + "completed":"2017-11-02T11:36:53.291Z", + "new_balance":"33936.44", + "value":"-104.72" + } + }, + { + "id":"7703e03a-94bb-4dd6-8d88-878f22a24666", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T17:04:17.286Z", + "completed":"2017-11-02T17:04:17.286Z", + "new_balance":"33889.54", + "value":"-46.90" + } + }, + { + "id":"bf9ec2cd-da8c-496c-ad71-f07bcb155cbc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T23:47:06.780Z", + "completed":"2017-11-02T23:47:06.780Z", + "new_balance":"33855.11", + "value":"-34.43" + } + }, + { + "id":"2ae7d60b-a0c5-48f4-bb23-f10f728eaef3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T12:28:12.755Z", + "completed":"2017-11-04T12:28:12.755Z", + "new_balance":"33848.53", + "value":"-6.58" + } + }, + { + "id":"98aff984-668a-4cfe-817f-38b1764dbe05", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T20:38:42.318Z", + "completed":"2017-11-04T20:38:42.318Z", + "new_balance":"33767.32", + "value":"-81.21" + } + }, + { + "id":"660f60ba-bd0a-4d15-846a-310aa0964c2f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T16:40:19.189Z", + "completed":"2017-11-06T16:40:19.189Z", + "new_balance":"33687.11", + "value":"-80.21" + } + }, + { + "id":"45146d2d-4f0b-41f5-8e84-4d9344a34249", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T12:57:28.250Z", + "completed":"2017-11-07T12:57:28.250Z", + "new_balance":"33592.78", + "value":"-94.33" + } + }, + { + "id":"077232a4-9d80-4293-85f9-c824c13e399f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T16:53:05.703Z", + "completed":"2017-11-07T16:53:05.703Z", + "new_balance":"33558.27", + "value":"-34.51" + } + }, + { + "id":"7195ed1d-7863-4a49-a7ad-ee10221aed22", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T01:02:45.467Z", + "completed":"2017-11-09T01:02:45.467Z", + "new_balance":"33546.34", + "value":"-11.93" + } + }, + { + "id":"af781639-f409-457e-a479-cb74221313e2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T12:40:21.766Z", + "completed":"2017-11-09T12:40:21.766Z", + "new_balance":"33503.39", + "value":"-42.95" + } + }, + { + "id":"5a819fcb-921e-42ed-80bf-a38ef635676e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T07:37:40.571Z", + "completed":"2017-11-13T07:37:40.571Z", + "new_balance":"33496.81", + "value":"-6.58" + } + }, + { + "id":"0e952f90-57ab-46d2-80e1-c27737edb407", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T14:50:47.163Z", + "completed":"2017-11-13T14:50:47.163Z", + "new_balance":"33462.30", + "value":"-34.51" + } + }, + { + "id":"289b46b0-14da-43b4-b622-438a0c970748", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T23:49:09.612Z", + "completed":"2017-11-13T23:49:09.612Z", + "new_balance":"33434.11", + "value":"-28.19" + } + }, + { + "id":"f0b7b75e-d876-41a7-aabd-9ea4af3ba89a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T13:33:34.135Z", + "completed":"2017-11-14T13:33:34.135Z", + "new_balance":"33368.88", + "value":"-65.23" + } + }, + { + "id":"e570f38d-a892-4b66-8903-05e4bf2bfd23", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T20:52:42.833Z", + "completed":"2017-11-14T20:52:42.833Z", + "new_balance":"33287.67", + "value":"-81.21" + } + }, + { + "id":"42d87be4-f4cd-4065-9325-5fd78b9a7c3f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T17:52:50.861Z", + "completed":"2017-11-15T17:52:50.861Z", + "new_balance":"33259.69", + "value":"-27.98" + } + }, + { + "id":"b961fbba-44f2-48cd-a822-07a411ab368f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T12:07:25.467Z", + "completed":"2017-11-30T12:07:25.467Z", + "new_balance":"32942.48", + "value":"-317.21" + } + }, + { + "id":"a4d5d607-1c3f-40b0-87f2-dc2142ea15b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T21:20:48.681Z", + "completed":"2017-11-30T21:20:48.681Z", + "new_balance":"35292.69", + "value":"2350.21" + } + }, + { + "id":"5ffece79-817f-4f0d-b560-20866f7dd98e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T02:14:22.306Z", + "completed":"2017-12-01T02:14:22.306Z", + "new_balance":"35258.26", + "value":"-34.43" + } + }, + { + "id":"13e84fac-bf01-47a3-a99b-d3bfaaa9fd62", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:17:57.104Z", + "completed":"2017-12-01T02:17:57.104Z", + "new_balance":"35223.83", + "value":"-34.43" + } + }, + { + "id":"9bfe51a1-1d91-4ace-8152-2908f2b04b5f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T03:42:22.724Z", + "completed":"2017-12-01T03:42:22.724Z", + "new_balance":"35119.11", + "value":"-104.72" + } + }, + { + "id":"2f4c0cb7-526c-4f70-907a-ef116f0b87ad", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T14:17:18.104Z", + "completed":"2017-12-01T14:17:18.104Z", + "new_balance":"35072.21", + "value":"-46.90" + } + }, + { + "id":"21a05ff9-70fd-41f9-883b-bb4dcf826346", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T00:22:36.794Z", + "completed":"2017-12-04T00:22:36.794Z", + "new_balance":"35010.84", + "value":"-61.37" + } + }, + { + "id":"019a6a2a-2ca2-46fe-8415-ad720fe2444a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T08:07:02.565Z", + "completed":"2017-12-04T08:07:02.565Z", + "new_balance":"34947.27", + "value":"-63.57" + } + }, + { + "id":"7fe5c842-e72f-41ef-91ee-51c54b9f3492", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:37:43.367Z", + "completed":"2017-12-11T06:37:43.367Z", + "new_balance":"34865.48", + "value":"-81.79" + } + }, + { + "id":"df8ed218-c66c-4e82-bd1d-142346fdaa78", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T07:08:50.638Z", + "completed":"2017-12-11T07:08:50.638Z", + "new_balance":"34776.99", + "value":"-88.49" + } + }, + { + "id":"df819cdd-5a71-4a39-9942-82d9b96ac0bd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T23:55:25.653Z", + "completed":"2017-12-11T23:55:25.653Z", + "new_balance":"34731.52", + "value":"-45.47" + } + }, + { + "id":"da168281-610b-4f3c-aa1f-b96bdc9700f1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T12:25:50.873Z", + "completed":"2017-12-12T12:25:50.873Z", + "new_balance":"34724.75", + "value":"-6.77" + } + }, + { + "id":"9f91281f-dd11-4634-be18-9e1f714d83b5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T13:23:46.222Z", + "completed":"2017-12-12T13:23:46.222Z", + "new_balance":"34685.11", + "value":"-39.64" + } + }, + { + "id":"321fa0b5-8550-4595-af00-4c07f5d5ade7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T15:19:24.665Z", + "completed":"2017-12-16T15:19:24.665Z", + "new_balance":"34580.92", + "value":"-104.19" + } + }, + { + "id":"15260ebf-496f-4330-a448-13c4cf15f027", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T18:38:32.412Z", + "completed":"2017-12-29T18:38:32.412Z", + "new_balance":"34552.94", + "value":"-27.98" + } + }, + { + "id":"a0fd59d1-11a2-4859-aff5-c45baf8c403c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T16:14:45.474Z", + "completed":"2017-12-30T16:14:45.474Z", + "new_balance":"34235.73", + "value":"-317.21" + } + }, + { + "id":"90873323-9a95-4e04-84be-2ffdabb6b59d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T20:36:47.790Z", + "completed":"2017-12-30T20:36:47.790Z", + "new_balance":"36585.94", + "value":"2350.21" + } + }, + { + "id":"9393338b-1332-4773-a36b-447490e0ca9e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T07:18:16.117Z", + "completed":"2016-01-01T07:18:16.117Z", + "new_balance":"2982.33", + "value":"140.98" + } + }, + { + "id":"b078ae62-4cd1-4e44-8a3d-a21252db44f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T13:41:56.213Z", + "completed":"2016-01-01T13:41:56.213Z", + "new_balance":"3165.03", + "value":"182.70" + } + }, + { + "id":"546f58ee-36e9-4ced-ac7e-f62f1c5bd379", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T18:06:15.766Z", + "completed":"2016-01-02T18:06:15.766Z", + "new_balance":"3133.31", + "value":"-31.72" + } + }, + { + "id":"d36c5274-b4fa-44f6-a56c-b07d9b04d436", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T01:29:32.204Z", + "completed":"2016-01-03T01:29:32.204Z", + "new_balance":"3132.64", + "value":"-0.67" + } + }, + { + "id":"4453cf64-669d-4979-a4e5-57ebae5c8edb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T09:53:39.152Z", + "completed":"2016-01-03T09:53:39.152Z", + "new_balance":"3127.82", + "value":"-4.82" + } + }, + { + "id":"0698692f-ce60-4b8a-9c5d-34c9c51bfc91", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T19:26:07.181Z", + "completed":"2016-01-03T19:26:07.181Z", + "new_balance":"3126.08", + "value":"-1.74" + } + }, + { + "id":"90191752-193c-4c16-b410-d8fa86c2625e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T09:52:53.176Z", + "completed":"2016-01-04T09:52:53.176Z", + "new_balance":"3124.68", + "value":"-1.40" + } + }, + { + "id":"ac651c16-8607-4ce2-ba78-74953babc11e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T10:56:56.411Z", + "completed":"2016-01-05T10:56:56.411Z", + "new_balance":"3124.16", + "value":"-0.52" + } + }, + { + "id":"f5709095-1c6b-41ff-9abd-f5b038650e14", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T04:25:45.929Z", + "completed":"2016-01-07T04:25:45.929Z", + "new_balance":"3122.56", + "value":"-1.60" + } + }, + { + "id":"7070b3c5-668f-4d3d-bccf-38e882f260e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T23:23:52.987Z", + "completed":"2016-01-07T23:23:52.987Z", + "new_balance":"3119.97", + "value":"-2.59" + } + }, + { + "id":"bae1bc26-903a-4f09-9f4e-347cb05f0d0b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T02:30:01.113Z", + "completed":"2016-01-08T02:30:01.113Z", + "new_balance":"3118.29", + "value":"-1.68" + } + }, + { + "id":"db47cf64-73e7-4074-998b-08bd2cccabb0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T20:42:15.480Z", + "completed":"2016-01-08T20:42:15.480Z", + "new_balance":"3116.42", + "value":"-1.87" + } + }, + { + "id":"6584f2b2-f80d-4889-aadc-0ad1d77dacb5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T04:16:45.023Z", + "completed":"2016-01-09T04:16:45.023Z", + "new_balance":"3110.29", + "value":"-6.13" + } + }, + { + "id":"a5015a68-3f9a-4a41-964f-a9de633eeb0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T18:40:27.269Z", + "completed":"2016-01-09T18:40:27.269Z", + "new_balance":"3107.98", + "value":"-2.31" + } + }, + { + "id":"d26a963d-228b-418b-b3cd-149b8dc4d382", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T01:52:51.432Z", + "completed":"2016-01-10T01:52:51.432Z", + "new_balance":"3100.28", + "value":"-7.70" + } + }, + { + "id":"5c7a276f-e1c8-4fdc-9e06-3a014b3896a1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T08:28:49.995Z", + "completed":"2016-01-10T08:28:49.995Z", + "new_balance":"3095.75", + "value":"-4.53" + } + }, + { + "id":"4da322cf-2915-4a5b-842b-5fd3351f40dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T07:45:13.019Z", + "completed":"2016-01-11T07:45:13.019Z", + "new_balance":"3095.28", + "value":"-0.47" + } + }, + { + "id":"c9a4b352-d688-4836-836e-e4dcb286d747", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T10:26:59.421Z", + "completed":"2016-01-11T10:26:59.421Z", + "new_balance":"3089.80", + "value":"-5.48" + } + }, + { + "id":"55c9330b-819d-4555-9da9-e3ca4899eba0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T11:47:33.887Z", + "completed":"2016-01-11T11:47:33.887Z", + "new_balance":"3098.79", + "value":"8.99" + } + }, + { + "id":"163581b7-b208-449b-97b9-94bd742b428d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T05:57:12.581Z", + "completed":"2016-01-12T05:57:12.581Z", + "new_balance":"3097.98", + "value":"-0.81" + } + }, + { + "id":"af8d67e9-00fb-4be0-b32e-c7faabd266f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T15:30:14.015Z", + "completed":"2016-01-15T15:30:14.015Z", + "new_balance":"3095.55", + "value":"-2.43" + } + }, + { + "id":"60893485-db35-43b4-b768-47b90d3f8d79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T05:28:51.507Z", + "completed":"2016-01-16T05:28:51.507Z", + "new_balance":"3092.25", + "value":"-3.30" + } + }, + { + "id":"b05179c0-2f1e-4a6c-8490-cd0708b8a0fd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T08:36:46.936Z", + "completed":"2016-01-17T08:36:46.936Z", + "new_balance":"3090.68", + "value":"-1.57" + } + }, + { + "id":"9661b9d9-8b6c-4797-9cf6-2b3cf1876acf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T14:23:51.824Z", + "completed":"2016-01-20T14:23:51.824Z", + "new_balance":"3090.16", + "value":"-0.52" + } + }, + { + "id":"c5a432a5-3355-40a4-81ce-8ab16b36a152", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T01:28:03.511Z", + "completed":"2016-01-21T01:28:03.511Z", + "new_balance":"3086.44", + "value":"-3.72" + } + }, + { + "id":"7497dfb1-ac4c-4f08-81c9-45854051c2d0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T22:40:32.593Z", + "completed":"2016-01-23T22:40:32.593Z", + "new_balance":"3064.08", + "value":"-22.36" + } + }, + { + "id":"69f40a52-6245-43f0-a83d-f51ad73600d7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T22:09:30.443Z", + "completed":"2016-02-01T22:09:30.443Z", + "new_balance":"3205.06", + "value":"140.98" + } + }, + { + "id":"633cf383-38c0-4f1b-9e58-39415d1528c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T01:07:23.623Z", + "completed":"2016-02-03T01:07:23.623Z", + "new_balance":"3191.96", + "value":"-13.10" + } + }, + { + "id":"9ad0be54-0c7b-424c-9568-f86e7dd07979", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T06:41:34.090Z", + "completed":"2016-02-03T06:41:34.090Z", + "new_balance":"3160.24", + "value":"-31.72" + } + }, + { + "id":"b59b8a95-0510-4014-8c8a-e7854ca670fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T16:33:07.859Z", + "completed":"2016-02-04T16:33:07.859Z", + "new_balance":"3158.92", + "value":"-1.32" + } + }, + { + "id":"0f3b71e3-8787-4cba-b3f1-4909c7279ddd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T17:42:19.776Z", + "completed":"2016-02-05T17:42:19.776Z", + "new_balance":"3158.25", + "value":"-0.67" + } + }, + { + "id":"4dde2d7b-2f7b-4c00-b8e0-f71c2d88587b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T19:35:06.443Z", + "completed":"2016-02-06T19:35:06.443Z", + "new_balance":"3156.06", + "value":"-2.19" + } + }, + { + "id":"3405fe14-8925-4cda-bb98-919651ef3df8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T08:33:37.610Z", + "completed":"2016-02-07T08:33:37.610Z", + "new_balance":"3148.36", + "value":"-7.70" + } + }, + { + "id":"1cd6c75b-dfdc-4505-bad8-ad34b731e91c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T20:06:56.455Z", + "completed":"2016-02-07T20:06:56.455Z", + "new_balance":"3146.05", + "value":"-2.31" + } + }, + { + "id":"2d52e995-a1fb-4a50-80eb-0cf7f01f588f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T21:01:07.090Z", + "completed":"2016-02-07T21:01:07.090Z", + "new_balance":"3141.48", + "value":"-4.57" + } + }, + { + "id":"cdb308fe-473f-4795-a599-d6544ad276bb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T08:40:50.386Z", + "completed":"2016-02-08T08:40:50.386Z", + "new_balance":"3137.34", + "value":"-4.14" + } + }, + { + "id":"6362a7be-6e99-4d26-bbf5-70bd882e2c30", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T14:55:26.448Z", + "completed":"2016-02-09T14:55:26.448Z", + "new_balance":"3134.94", + "value":"-2.40" + } + }, + { + "id":"6a67c31d-f641-45aa-b08f-b45e8313f488", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T19:49:26.334Z", + "completed":"2016-02-10T19:49:26.334Z", + "new_balance":"3134.42", + "value":"-0.52" + } + }, + { + "id":"9d590e17-09be-446f-aed4-0eeee440dd46", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T21:13:25.910Z", + "completed":"2016-02-12T21:13:25.910Z", + "new_balance":"3131.54", + "value":"-2.88" + } + }, + { + "id":"a26b95f7-d161-49d4-b0fa-caedad259901", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T02:10:49.181Z", + "completed":"2016-02-14T02:10:49.181Z", + "new_balance":"3129.23", + "value":"-2.31" + } + }, + { + "id":"16c56e16-22e5-4011-9378-5797a11807b1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T11:27:15.701Z", + "completed":"2016-02-16T11:27:15.701Z", + "new_balance":"3124.62", + "value":"-4.61" + } + }, + { + "id":"bfe022d5-4836-42f5-8354-b33ccd7126fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T21:18:36.606Z", + "completed":"2016-02-16T21:18:36.606Z", + "new_balance":"3124.15", + "value":"-0.47" + } + }, + { + "id":"ee00e0e5-e6e4-45b4-b5c7-1336ccf8242f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T07:03:40.273Z", + "completed":"2016-02-18T07:03:40.273Z", + "new_balance":"3123.56", + "value":"-0.59" + } + }, + { + "id":"c3b634e0-bcff-4ff6-aa43-7d4d955226b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T12:15:38.597Z", + "completed":"2016-02-21T12:15:38.597Z", + "new_balance":"3119.84", + "value":"-3.72" + } + }, + { + "id":"2fd54a51-1979-4185-8ddc-b7da88532146", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T16:23:30.364Z", + "completed":"2016-02-21T16:23:30.364Z", + "new_balance":"3131.24", + "value":"11.40" + } + }, + { + "id":"da8362d4-ebdd-42cb-b718-9c19b4330bd8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T19:30:54.433Z", + "completed":"2016-02-27T19:30:54.433Z", + "new_balance":"3108.88", + "value":"-22.36" + } + }, + { + "id":"9987c259-7f8d-4add-aeae-1c7cb6182cdf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T20:29:05.441Z", + "completed":"2016-03-01T20:29:05.441Z", + "new_balance":"3249.86", + "value":"140.98" + } + }, + { + "id":"e7067dd4-73e3-4b6d-aa5f-edddd195dfa3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T10:31:35.906Z", + "completed":"2016-03-03T10:31:35.906Z", + "new_balance":"3218.14", + "value":"-31.72" + } + }, + { + "id":"4a22c16e-069c-453a-bf85-bca7461b1bb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T00:52:39.385Z", + "completed":"2016-03-04T00:52:39.385Z", + "new_balance":"3214.68", + "value":"-3.46" + } + }, + { + "id":"db85f7f4-e967-4280-b226-5725b8068576", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T13:58:12.290Z", + "completed":"2016-03-04T13:58:12.290Z", + "new_balance":"3210.07", + "value":"-4.61" + } + }, + { + "id":"6fafd843-e579-420d-ba14-c7e1683a0dfd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T17:52:37.293Z", + "completed":"2016-03-04T17:52:37.293Z", + "new_balance":"3208.02", + "value":"-2.05" + } + }, + { + "id":"e442ac25-0989-4808-a20f-5ee74be65faa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T21:15:05.873Z", + "completed":"2016-03-04T21:15:05.873Z", + "new_balance":"3204.72", + "value":"-3.30" + } + }, + { + "id":"e2fd7a7b-9378-4aed-8c60-0fcb7af106d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T01:36:11.228Z", + "completed":"2016-03-05T01:36:11.228Z", + "new_balance":"3203.42", + "value":"-1.30" + } + }, + { + "id":"009c7c25-5754-4a5e-a35f-84b42e54906e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T07:45:40.996Z", + "completed":"2016-03-05T07:45:40.996Z", + "new_balance":"3196.67", + "value":"-6.75" + } + }, + { + "id":"f5db4ac1-8092-43a2-9e64-73cb39c0881d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T19:36:10.335Z", + "completed":"2016-03-05T19:36:10.335Z", + "new_balance":"3188.97", + "value":"-7.70" + } + }, + { + "id":"51b39b72-0191-41fd-82fb-bddc0b197a79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T23:51:55.788Z", + "completed":"2016-03-05T23:51:55.788Z", + "new_balance":"3188.50", + "value":"-0.47" + } + }, + { + "id":"00664825-7f0f-4e8c-96c1-d62cc3c3eaf6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T06:40:35.626Z", + "completed":"2016-03-06T06:40:35.626Z", + "new_balance":"3181.86", + "value":"-6.64" + } + }, + { + "id":"14bf87f6-b3a0-474e-9131-a381496a28c2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T12:21:30.405Z", + "completed":"2016-03-06T12:21:30.405Z", + "new_balance":"3174.12", + "value":"-7.74" + } + }, + { + "id":"765d66bf-f438-4318-866e-d34d83f28cec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T16:17:05.213Z", + "completed":"2016-03-07T16:17:05.213Z", + "new_balance":"3173.32", + "value":"-0.80" + } + }, + { + "id":"1c12d1b2-b93f-4510-8380-e4b53d949a26", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T22:15:59.619Z", + "completed":"2016-03-07T22:15:59.619Z", + "new_balance":"3172.85", + "value":"-0.47" + } + }, + { + "id":"d1e16ae9-86f7-4c57-b883-1118c879ecc3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T07:19:36.002Z", + "completed":"2016-03-08T07:19:36.002Z", + "new_balance":"3172.08", + "value":"-0.77" + } + }, + { + "id":"6d130a6d-217e-4706-a325-68bf702c7159", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T14:12:03.521Z", + "completed":"2016-03-08T14:12:03.521Z", + "new_balance":"3171.28", + "value":"-0.80" + } + }, + { + "id":"91423df4-712a-4f9e-8782-72c00fcc5710", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T16:10:06.241Z", + "completed":"2016-03-10T16:10:06.241Z", + "new_balance":"3168.57", + "value":"-2.71" + } + }, + { + "id":"bd7275f9-9e1d-486f-9b39-647e38c590ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T00:03:13.119Z", + "completed":"2016-03-11T00:03:13.119Z", + "new_balance":"3166.97", + "value":"-1.60" + } + }, + { + "id":"8b2f55f0-40cc-4e49-ac85-5cff5bf4bdbb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T11:15:57.713Z", + "completed":"2016-03-11T11:15:57.713Z", + "new_balance":"3166.50", + "value":"-0.47" + } + }, + { + "id":"dfb44747-e0df-4457-bc1d-78426d298d70", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T14:18:07.210Z", + "completed":"2016-03-11T14:18:07.210Z", + "new_balance":"3163.78", + "value":"-2.72" + } + }, + { + "id":"22b67dad-a098-49a8-a501-0b5049181855", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T02:48:13.349Z", + "completed":"2016-03-12T02:48:13.349Z", + "new_balance":"3157.62", + "value":"-6.16" + } + }, + { + "id":"e71a2089-a135-4f60-9543-a2af4f216689", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T09:50:57.632Z", + "completed":"2016-03-12T09:50:57.632Z", + "new_balance":"3147.47", + "value":"-10.15" + } + }, + { + "id":"8698945f-7db4-4a75-a604-afe8256ad55a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T12:25:53.899Z", + "completed":"2016-03-12T12:25:53.899Z", + "new_balance":"3147.00", + "value":"-0.47" + } + }, + { + "id":"1913814d-fbed-4dd6-818f-d58704eb6261", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:47:54.557Z", + "completed":"2016-03-12T22:47:54.557Z", + "new_balance":"3144.41", + "value":"-2.59" + } + }, + { + "id":"29e52d4e-b7e0-47f1-a09c-cb4f1b865002", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T09:07:50.419Z", + "completed":"2016-03-13T09:07:50.419Z", + "new_balance":"3141.83", + "value":"-2.58" + } + }, + { + "id":"74dfc48e-f476-41e0-9228-20bcf07e0ce7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T09:39:00.858Z", + "completed":"2016-03-13T09:39:00.858Z", + "new_balance":"3141.36", + "value":"-0.47" + } + }, + { + "id":"1caafd3e-da8f-4560-b4a8-c8734dc4e606", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T03:36:34.655Z", + "completed":"2016-03-15T03:36:34.655Z", + "new_balance":"3136.44", + "value":"-4.92" + } + }, + { + "id":"e730dd9e-6f73-4221-9319-963cd73bc64f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T21:25:52.170Z", + "completed":"2016-03-15T21:25:52.170Z", + "new_balance":"3132.32", + "value":"-4.12" + } + }, + { + "id":"60c9f8df-e7b5-4d07-a83f-8240295b1e5c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T06:28:26.749Z", + "completed":"2016-03-17T06:28:26.749Z", + "new_balance":"3127.93", + "value":"-4.39" + } + }, + { + "id":"39fb4ea9-1137-4522-8b68-2f82ff125b11", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T05:12:59.927Z", + "completed":"2016-03-18T05:12:59.927Z", + "new_balance":"3118.32", + "value":"-9.61" + } + }, + { + "id":"5676c9ab-850a-4bf9-86f7-6cff12e23716", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T20:07:07.423Z", + "completed":"2016-03-20T20:07:07.423Z", + "new_balance":"3105.96", + "value":"-12.36" + } + }, + { + "id":"7b9509f8-989d-49c2-9e30-0f9e46eb1891", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T00:05:47.821Z", + "completed":"2016-03-22T00:05:47.821Z", + "new_balance":"3102.49", + "value":"-3.47" + } + }, + { + "id":"44706eb0-ef0d-4b42-811b-432529a24751", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T02:36:56.034Z", + "completed":"2016-03-25T02:36:56.034Z", + "new_balance":"3101.34", + "value":"-1.15" + } + }, + { + "id":"a843bed1-46b3-411b-b7e4-5d2715a791eb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T11:41:11.853Z", + "completed":"2016-03-25T11:41:11.853Z", + "new_balance":"3100.87", + "value":"-0.47" + } + }, + { + "id":"8ddbb26e-eaea-4f49-9c75-1f2151abf602", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T05:49:46.936Z", + "completed":"2016-03-26T05:49:46.936Z", + "new_balance":"3099.52", + "value":"-1.35" + } + }, + { + "id":"1a096885-a777-44d8-b824-282574c563f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T10:44:54.033Z", + "completed":"2016-03-26T10:44:54.033Z", + "new_balance":"3097.13", + "value":"-2.39" + } + }, + { + "id":"6a901b92-97ec-44fd-89fa-082d5b3f6aca", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T11:36:10.210Z", + "completed":"2016-03-27T11:36:10.210Z", + "new_balance":"3095.93", + "value":"-1.20" + } + }, + { + "id":"d8c50666-ae4b-4c12-b782-0298c51d0818", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T23:26:32.363Z", + "completed":"2016-03-28T23:26:32.363Z", + "new_balance":"3092.21", + "value":"-3.72" + } + }, + { + "id":"2de544f1-6ba0-4464-a756-675e9f9f0d48", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T17:19:34.025Z", + "completed":"2016-03-31T17:19:34.025Z", + "new_balance":"3069.85", + "value":"-22.36" + } + }, + { + "id":"1562780d-b6c2-437e-9b37-0bab336b647a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T09:58:22.043Z", + "completed":"2016-04-01T09:58:22.043Z", + "new_balance":"3210.83", + "value":"140.98" + } + }, + { + "id":"80b5fa80-573b-4b39-8adc-feea48de56fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T16:19:56.347Z", + "completed":"2016-04-01T16:19:56.347Z", + "new_balance":"3393.53", + "value":"182.70" + } + }, + { + "id":"2c652554-858c-4ea3-aa54-307a9df9b73d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T20:12:54.821Z", + "completed":"2016-04-01T20:12:54.821Z", + "new_balance":"3361.81", + "value":"-31.72" + } + }, + { + "id":"5ac79682-c02a-4bad-8ef9-3141b716fb34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T04:56:27.655Z", + "completed":"2016-04-03T04:56:27.655Z", + "new_balance":"3356.99", + "value":"-4.82" + } + }, + { + "id":"5de616af-8454-4ce5-b0b1-4999d3fc66f3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T10:49:26.590Z", + "completed":"2016-04-03T10:49:26.590Z", + "new_balance":"3355.25", + "value":"-1.74" + } + }, + { + "id":"23526399-e351-4205-9399-50341d766dd2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T19:39:00.622Z", + "completed":"2016-04-03T19:39:00.622Z", + "new_balance":"3354.58", + "value":"-0.67" + } + }, + { + "id":"1db646c1-cabd-4973-a7fe-6cff6187879c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T06:50:26.640Z", + "completed":"2016-04-05T06:50:26.640Z", + "new_balance":"3353.18", + "value":"-1.40" + } + }, + { + "id":"17a76b13-d2ee-4372-ac69-36107393dc1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T07:41:46.122Z", + "completed":"2016-04-05T07:41:46.122Z", + "new_balance":"3352.66", + "value":"-0.52" + } + }, + { + "id":"05acfce0-f332-46ce-856f-3d8f549001b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T16:36:57.157Z", + "completed":"2016-04-06T16:36:57.157Z", + "new_balance":"3351.06", + "value":"-1.60" + } + }, + { + "id":"6cc033e6-7d0b-4202-a28e-afc53f496d34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T04:37:14.253Z", + "completed":"2016-04-09T04:37:14.253Z", + "new_balance":"3348.47", + "value":"-2.59" + } + }, + { + "id":"1d9e5c4f-0d07-4619-af0a-5e5dafc174dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T12:28:02.744Z", + "completed":"2016-04-10T12:28:02.744Z", + "new_balance":"3346.79", + "value":"-1.68" + } + }, + { + "id":"8af3f2d1-da06-45a3-9d8a-a156503244dd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T02:54:53.947Z", + "completed":"2016-04-11T02:54:53.947Z", + "new_balance":"3344.92", + "value":"-1.87" + } + }, + { + "id":"c35cb875-a3c3-42ad-a338-9074ebac327d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T13:18:54.348Z", + "completed":"2016-04-11T13:18:54.348Z", + "new_balance":"3342.61", + "value":"-2.31" + } + }, + { + "id":"f95d42e3-abd0-4ba3-9281-c3f997f8fa54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T07:58:18.411Z", + "completed":"2016-04-13T07:58:18.411Z", + "new_balance":"3336.48", + "value":"-6.13" + } + }, + { + "id":"7feed4fc-7f73-41a7-bc96-35491156b72c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T10:42:13.665Z", + "completed":"2016-04-13T10:42:13.665Z", + "new_balance":"3328.78", + "value":"-7.70" + } + }, + { + "id":"1e01ef79-0012-44f3-92a0-886cd2b17839", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T11:42:01.966Z", + "completed":"2016-04-15T11:42:01.966Z", + "new_balance":"3324.25", + "value":"-4.53" + } + }, + { + "id":"7c8ec387-1d59-4e1f-af6d-5670446e7c10", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T03:06:55.176Z", + "completed":"2016-04-16T03:06:55.176Z", + "new_balance":"3323.44", + "value":"-0.81" + } + }, + { + "id":"b8f3134f-f02d-4fe0-9894-184655646bdb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T09:00:40.586Z", + "completed":"2016-04-16T09:00:40.586Z", + "new_balance":"3322.97", + "value":"-0.47" + } + }, + { + "id":"66ee6760-eae6-4265-bf4d-599e9a28af7f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:36:18.623Z", + "completed":"2016-04-18T16:36:18.623Z", + "new_balance":"3317.49", + "value":"-5.48" + } + }, + { + "id":"07a1327c-ec53-46dd-b312-2e74a8639216", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T17:50:44.238Z", + "completed":"2016-04-23T17:50:44.238Z", + "new_balance":"3315.06", + "value":"-2.43" + } + }, + { + "id":"1a3b2253-0c09-4d0c-85ef-120eaee2584c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T07:22:30.985Z", + "completed":"2016-04-24T07:22:30.985Z", + "new_balance":"3313.49", + "value":"-1.57" + } + }, + { + "id":"80f27eb4-b3fb-4d5b-81b9-04898c848f2f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T21:15:22.984Z", + "completed":"2016-04-24T21:15:22.984Z", + "new_balance":"3310.19", + "value":"-3.30" + } + }, + { + "id":"e2a87e6e-6671-4a9c-9a84-adc68b456789", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T10:13:43.684Z", + "completed":"2016-04-26T10:13:43.684Z", + "new_balance":"3309.67", + "value":"-0.52" + } + }, + { + "id":"c12475ed-ce11-42f9-a446-faa999084f46", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T20:56:24.979Z", + "completed":"2016-04-28T20:56:24.979Z", + "new_balance":"3287.31", + "value":"-22.36" + } + }, + { + "id":"1fd4a605-2e02-4523-8a8a-1220411e0122", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T21:41:24.527Z", + "completed":"2016-04-28T21:41:24.527Z", + "new_balance":"3283.59", + "value":"-3.72" + } + }, + { + "id":"18e22a9b-c185-48a8-a1cf-c5d05cf864c6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T02:45:26.926Z", + "completed":"2016-05-02T02:45:26.926Z", + "new_balance":"3282.92", + "value":"-0.67" + } + }, + { + "id":"87d2cd35-0e26-4630-8e78-0ef59b423a52", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T04:10:18.420Z", + "completed":"2016-05-02T04:10:18.420Z", + "new_balance":"3251.20", + "value":"-31.72" + } + }, + { + "id":"4214d394-4889-4ac6-982b-aca71f1a6736", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T12:54:08.700Z", + "completed":"2016-05-02T12:54:08.700Z", + "new_balance":"3238.10", + "value":"-13.10" + } + }, + { + "id":"39bb765e-7644-457b-a8eb-07deb963ed2e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T19:07:06.654Z", + "completed":"2016-05-02T19:07:06.654Z", + "new_balance":"3236.78", + "value":"-1.32" + } + }, + { + "id":"ca1f1ca7-5555-4b4f-9d75-eabdfccf19e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T09:32:08.445Z", + "completed":"2016-05-06T09:32:08.445Z", + "new_balance":"3234.47", + "value":"-2.31" + } + }, + { + "id":"2a7f6470-dc24-4743-af85-810365d17b05", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T21:24:44.210Z", + "completed":"2016-05-06T21:24:44.210Z", + "new_balance":"3232.28", + "value":"-2.19" + } + }, + { + "id":"6b67ab7b-c831-4d8c-b7eb-ec6c53ec5666", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T09:24:01.954Z", + "completed":"2016-05-07T09:24:01.954Z", + "new_balance":"3227.71", + "value":"-4.57" + } + }, + { + "id":"3e5b81c0-7952-42ba-bf8e-30c19a2eae8f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T23:24:05.182Z", + "completed":"2016-05-07T23:24:05.182Z", + "new_balance":"3220.01", + "value":"-7.70" + } + }, + { + "id":"e1d931f6-4dc8-4e64-a8e8-ccf95458a22a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T14:12:02.761Z", + "completed":"2016-05-09T14:12:02.761Z", + "new_balance":"3360.99", + "value":"140.98" + } + }, + { + "id":"f200f1c6-7d80-4431-a6f1-25248806c819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T01:37:21.730Z", + "completed":"2016-05-14T01:37:21.730Z", + "new_balance":"3358.59", + "value":"-2.40" + } + }, + { + "id":"9531f45d-6f1b-4780-b9e7-40294acdd5fe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T14:22:44.040Z", + "completed":"2016-05-14T14:22:44.040Z", + "new_balance":"3354.45", + "value":"-4.14" + } + }, + { + "id":"20972116-f2f7-4e4a-b836-eafc62a267b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T02:15:53.821Z", + "completed":"2016-05-16T02:15:53.821Z", + "new_balance":"3353.93", + "value":"-0.52" + } + }, + { + "id":"a3cebc14-dad5-491b-b4be-6683b67dea74", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T16:47:02.072Z", + "completed":"2016-05-21T16:47:02.072Z", + "new_balance":"3351.05", + "value":"-2.88" + } + }, + { + "id":"dfb0ebba-b2e0-4691-a1d8-dc254835ae62", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T01:11:19.549Z", + "completed":"2016-05-23T01:11:19.549Z", + "new_balance":"3348.74", + "value":"-2.31" + } + }, + { + "id":"8b872ca8-229c-4269-8876-1f54295ac422", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T20:53:20.811Z", + "completed":"2016-05-23T20:53:20.811Z", + "new_balance":"3348.27", + "value":"-0.47" + } + }, + { + "id":"a7931734-d054-494b-8837-b032974787e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T22:21:09.244Z", + "completed":"2016-05-24T22:21:09.244Z", + "new_balance":"3343.66", + "value":"-4.61" + } + }, + { + "id":"301c32c1-43f6-4eab-b26e-918aae45060a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T12:30:36.451Z", + "completed":"2016-05-27T12:30:36.451Z", + "new_balance":"3343.07", + "value":"-0.59" + } + }, + { + "id":"f6d4e689-f321-446f-a752-1b8f6e9c8f8d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T10:23:16.557Z", + "completed":"2016-05-30T10:23:16.557Z", + "new_balance":"3339.35", + "value":"-3.72" + } + }, + { + "id":"3e701913-eeca-4d5f-9d89-1a16817f7d58", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T21:04:58.361Z", + "completed":"2016-05-30T21:04:58.361Z", + "new_balance":"3316.99", + "value":"-22.36" + } + }, + { + "id":"12c8676b-0c6e-406a-a0da-4d1ab66a1fa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T04:52:21.953Z", + "completed":"2016-06-01T04:52:21.953Z", + "new_balance":"3285.27", + "value":"-31.72" + } + }, + { + "id":"7559bd3f-4bce-4fa4-9d38-b6ea83b96129", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T11:05:22.809Z", + "completed":"2016-06-01T11:05:22.809Z", + "new_balance":"3426.25", + "value":"140.98" + } + }, + { + "id":"ad96741c-eb18-4f4d-86df-0228e09ea965", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:38:24.292Z", + "completed":"2016-06-04T04:38:24.292Z", + "new_balance":"3422.79", + "value":"-3.46" + } + }, + { + "id":"77af6cc4-1756-4b34-b9b1-3a08f725d8ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T05:38:57.393Z", + "completed":"2016-06-04T05:38:57.393Z", + "new_balance":"3420.74", + "value":"-2.05" + } + }, + { + "id":"f8731736-d198-4a7a-b912-303a8f610948", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T04:48:02.077Z", + "completed":"2016-06-11T04:48:02.077Z", + "new_balance":"3417.44", + "value":"-3.30" + } + }, + { + "id":"e7fda94c-fddc-41fd-ab80-5ede882bc422", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T18:29:21.567Z", + "completed":"2016-06-11T18:29:21.567Z", + "new_balance":"3412.83", + "value":"-4.61" + } + }, + { + "id":"872ca81c-637d-42bd-86ff-25377e1cf089", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T00:32:38.501Z", + "completed":"2016-06-12T00:32:38.501Z", + "new_balance":"3411.53", + "value":"-1.30" + } + }, + { + "id":"997219d3-5bad-4285-804b-dddbf6458a0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T18:20:20.650Z", + "completed":"2016-06-12T18:20:20.650Z", + "new_balance":"3403.83", + "value":"-7.70" + } + }, + { + "id":"a93fdfc1-01b2-452b-af23-01b13e3ecfa0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T21:54:38.461Z", + "completed":"2016-06-12T21:54:38.461Z", + "new_balance":"3403.36", + "value":"-0.47" + } + }, + { + "id":"532d7457-05a0-4611-a465-d5612c4d0dcb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T10:11:45.060Z", + "completed":"2016-06-13T10:11:45.060Z", + "new_balance":"3396.61", + "value":"-6.75" + } + }, + { + "id":"fdb17273-5ccc-4127-a85e-aa4619579351", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T16:16:25.873Z", + "completed":"2016-06-13T16:16:25.873Z", + "new_balance":"3388.87", + "value":"-7.74" + } + }, + { + "id":"ec53d464-f190-4338-8132-dddeac47762d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:25:50.608Z", + "completed":"2016-06-13T22:25:50.608Z", + "new_balance":"3382.23", + "value":"-6.64" + } + }, + { + "id":"8c395d74-ba8c-451b-ac72-c19d5c0f5a75", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T00:29:28.453Z", + "completed":"2016-06-14T00:29:28.453Z", + "new_balance":"3381.76", + "value":"-0.47" + } + }, + { + "id":"4710f96e-a474-4cd5-b10d-47a241c1b838", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T04:28:29.889Z", + "completed":"2016-06-14T04:28:29.889Z", + "new_balance":"3380.96", + "value":"-0.80" + } + }, + { + "id":"16cde4c3-ff49-4173-9156-12e474eb26c3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T23:38:46.326Z", + "completed":"2016-06-14T23:38:46.326Z", + "new_balance":"3380.16", + "value":"-0.80" + } + }, + { + "id":"8f987044-26de-453d-ad34-58970553be0f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T08:15:19.802Z", + "completed":"2016-06-15T08:15:19.802Z", + "new_balance":"3379.69", + "value":"-0.47" + } + }, + { + "id":"c9465a05-8234-4480-b1b2-9fe0b445e908", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T15:13:05.962Z", + "completed":"2016-06-15T15:13:05.962Z", + "new_balance":"3378.92", + "value":"-0.77" + } + }, + { + "id":"75d05ffb-03c8-44b3-b98c-c1ce25dc1131", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T20:16:04.345Z", + "completed":"2016-06-15T20:16:04.345Z", + "new_balance":"3376.21", + "value":"-2.71" + } + }, + { + "id":"b84e9e4e-08ee-434d-87cf-5b60104462fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T01:06:47.191Z", + "completed":"2016-06-16T01:06:47.191Z", + "new_balance":"3373.49", + "value":"-2.72" + } + }, + { + "id":"e26a4778-ebef-4b67-a73f-4bbd3855965c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T04:23:02.909Z", + "completed":"2016-06-17T04:23:02.909Z", + "new_balance":"3371.89", + "value":"-1.60" + } + }, + { + "id":"a58b8d68-0a87-4958-b43c-02f29a3d64d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T01:13:15.660Z", + "completed":"2016-06-18T01:13:15.660Z", + "new_balance":"3371.42", + "value":"-0.47" + } + }, + { + "id":"e68253bb-3214-4bed-9b92-840d4a7d49aa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T01:35:42.825Z", + "completed":"2016-06-18T01:35:42.825Z", + "new_balance":"3361.27", + "value":"-10.15" + } + }, + { + "id":"73b731b7-72e8-4983-9f25-b5ad5c15fbb8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T13:55:29.597Z", + "completed":"2016-06-18T13:55:29.597Z", + "new_balance":"3360.80", + "value":"-0.47" + } + }, + { + "id":"28c463a4-0da9-408c-b9b4-f35727dfa893", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T14:04:48.390Z", + "completed":"2016-06-18T14:04:48.390Z", + "new_balance":"3354.64", + "value":"-6.16" + } + }, + { + "id":"cb7a2667-51c6-42f2-914d-9207d5dc2c03", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T15:26:18.529Z", + "completed":"2016-06-18T15:26:18.529Z", + "new_balance":"3352.05", + "value":"-2.59" + } + }, + { + "id":"920b46ea-cfb4-42e2-97e9-46c5a1dc4520", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T20:25:58.644Z", + "completed":"2016-06-18T20:25:58.644Z", + "new_balance":"3349.47", + "value":"-2.58" + } + }, + { + "id":"60ac95ad-7e5d-4e0f-a99b-94daedf2c05f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:12:17.796Z", + "completed":"2016-06-19T03:12:17.796Z", + "new_balance":"3345.08", + "value":"-4.39" + } + }, + { + "id":"f199bcb1-752b-4883-ba11-da41a630cf42", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T10:17:20.111Z", + "completed":"2016-06-19T10:17:20.111Z", + "new_balance":"3340.96", + "value":"-4.12" + } + }, + { + "id":"eca5e87a-c5d9-45d2-876a-2bab28f98ca5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T18:04:20.734Z", + "completed":"2016-06-19T18:04:20.734Z", + "new_balance":"3336.04", + "value":"-4.92" + } + }, + { + "id":"0d8ad179-39c6-4e79-8014-07d3e3f2673e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T09:32:21.823Z", + "completed":"2016-06-21T09:32:21.823Z", + "new_balance":"3323.68", + "value":"-12.36" + } + }, + { + "id":"967f7d01-e38b-444a-b550-789b5abc6d5e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T22:06:29.040Z", + "completed":"2016-06-21T22:06:29.040Z", + "new_balance":"3314.07", + "value":"-9.61" + } + }, + { + "id":"00d587b2-6414-419c-a2a9-c09fc38c25af", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T05:03:19.569Z", + "completed":"2016-06-22T05:03:19.569Z", + "new_balance":"3310.60", + "value":"-3.47" + } + }, + { + "id":"fa41240a-24f5-47f7-9a58-acb5e2cd59da", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T09:47:20.712Z", + "completed":"2016-06-22T09:47:20.712Z", + "new_balance":"3310.13", + "value":"-0.47" + } + }, + { + "id":"ba64f874-515b-4d0b-857e-96834d66b88c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T14:51:33.586Z", + "completed":"2016-06-22T14:51:33.586Z", + "new_balance":"3308.98", + "value":"-1.15" + } + }, + { + "id":"af586e12-0db2-4116-9d51-bf75c93168fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T14:55:00.064Z", + "completed":"2016-06-23T14:55:00.064Z", + "new_balance":"3307.63", + "value":"-1.35" + } + }, + { + "id":"5e915ce0-b615-4baf-834e-041cc36c7f02", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T09:05:03.180Z", + "completed":"2016-06-24T09:05:03.180Z", + "new_balance":"3305.24", + "value":"-2.39" + } + }, + { + "id":"f25bcf32-33b3-4a98-998a-d5cdf51e4f52", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T06:38:57.078Z", + "completed":"2016-06-26T06:38:57.078Z", + "new_balance":"3304.04", + "value":"-1.20" + } + }, + { + "id":"bbf6161a-8662-4f64-a09b-982382a9f9d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T04:07:46.904Z", + "completed":"2016-06-30T04:07:46.904Z", + "new_balance":"3300.32", + "value":"-3.72" + } + }, + { + "id":"84234859-b2d3-4aa4-a10d-185d74e58032", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T17:03:29.805Z", + "completed":"2016-06-30T17:03:29.805Z", + "new_balance":"3277.96", + "value":"-22.36" + } + }, + { + "id":"fd1fe79a-a32a-4995-9131-c7ffaa6784ea", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T10:14:55.103Z", + "completed":"2016-07-01T10:14:55.103Z", + "new_balance":"3460.66", + "value":"182.70" + } + }, + { + "id":"5a55b14d-669d-4af1-be76-d82e7723f7ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:40:56.537Z", + "completed":"2016-07-01T18:40:56.537Z", + "new_balance":"3601.64", + "value":"140.98" + } + }, + { + "id":"5b9dba2b-8e02-4dcb-b21d-ba9bda2a84d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T23:51:12.722Z", + "completed":"2016-07-03T23:51:12.722Z", + "new_balance":"3569.92", + "value":"-31.72" + } + }, + { + "id":"c26013b5-62ff-44b8-91d7-fe8b57bea9ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T08:44:33.545Z", + "completed":"2016-07-04T08:44:33.545Z", + "new_balance":"3565.10", + "value":"-4.82" + } + }, + { + "id":"d813009a-287c-4186-b3e0-3bf18ca5405b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T17:27:08.006Z", + "completed":"2016-07-04T17:27:08.006Z", + "new_balance":"3564.43", + "value":"-0.67" + } + }, + { + "id":"edbb2747-c48c-483a-b6dd-ec3dd0159ae8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T22:39:39.614Z", + "completed":"2016-07-04T22:39:39.614Z", + "new_balance":"3562.69", + "value":"-1.74" + } + }, + { + "id":"0bd10b26-885d-4c60-9431-db5ad9803526", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T21:55:04.830Z", + "completed":"2016-07-05T21:55:04.830Z", + "new_balance":"3561.29", + "value":"-1.40" + } + }, + { + "id":"34d7aaae-c93e-4e9e-adfc-fb32d950be22", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T14:20:53.903Z", + "completed":"2016-07-07T14:20:53.903Z", + "new_balance":"3560.77", + "value":"-0.52" + } + }, + { + "id":"3923488d-981e-4aa2-83d1-ad227f5b4396", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T00:29:19.097Z", + "completed":"2016-07-11T00:29:19.097Z", + "new_balance":"3558.90", + "value":"-1.87" + } + }, + { + "id":"d1841b8b-e407-4088-9190-cae7f5ed5718", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T01:23:20.580Z", + "completed":"2016-07-11T01:23:20.580Z", + "new_balance":"3556.59", + "value":"-2.31" + } + }, + { + "id":"78442e0d-344c-4aed-a00c-0349807057ad", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T03:44:46.119Z", + "completed":"2016-07-11T03:44:46.119Z", + "new_balance":"3554.99", + "value":"-1.60" + } + }, + { + "id":"7d16cc10-f334-4bb9-a1b8-bfeb879220a5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T17:41:56.968Z", + "completed":"2016-07-11T17:41:56.968Z", + "new_balance":"3553.31", + "value":"-1.68" + } + }, + { + "id":"1ccf1128-4825-4e65-b4bc-3a753d4f7212", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T22:58:06.452Z", + "completed":"2016-07-11T22:58:06.452Z", + "new_balance":"3550.72", + "value":"-2.59" + } + }, + { + "id":"971774ad-a667-4fad-a33f-a0e94ea7bcaa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T14:16:29.747Z", + "completed":"2016-07-13T14:16:29.747Z", + "new_balance":"3544.59", + "value":"-6.13" + } + }, + { + "id":"233318f7-d2ec-45cb-a6d8-8cb006fb796f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T19:41:02.194Z", + "completed":"2016-07-13T19:41:02.194Z", + "new_balance":"3536.89", + "value":"-7.70" + } + }, + { + "id":"598af6b5-e733-4ecd-8ecc-6c44392a711b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T05:35:29.516Z", + "completed":"2016-07-16T05:35:29.516Z", + "new_balance":"3545.88", + "value":"8.99" + } + }, + { + "id":"c22bb594-5c9d-4eba-9354-1b720baf13d5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T12:23:18.242Z", + "completed":"2016-07-16T12:23:18.242Z", + "new_balance":"3541.35", + "value":"-4.53" + } + }, + { + "id":"d834da64-91c7-4384-a2dc-c0f93d02bab1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:22:06.284Z", + "completed":"2016-07-17T03:22:06.284Z", + "new_balance":"3540.88", + "value":"-0.47" + } + }, + { + "id":"f46e8fb2-e924-4f5a-b38b-a435d5c50292", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T20:48:52.760Z", + "completed":"2016-07-17T20:48:52.760Z", + "new_balance":"3540.07", + "value":"-0.81" + } + }, + { + "id":"2c5eed11-88d0-43d5-9f70-6f9c2f1c864b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T05:11:47.670Z", + "completed":"2016-07-19T05:11:47.670Z", + "new_balance":"3534.59", + "value":"-5.48" + } + }, + { + "id":"5352485d-5613-449b-b9ca-9ab90127623b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T07:14:56.052Z", + "completed":"2016-07-21T07:14:56.052Z", + "new_balance":"3532.16", + "value":"-2.43" + } + }, + { + "id":"752b3802-f7f7-4f92-a36b-adf5b34cf2c4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T06:39:43.442Z", + "completed":"2016-07-23T06:39:43.442Z", + "new_balance":"3528.86", + "value":"-3.30" + } + }, + { + "id":"b4d3aa7a-c5de-4126-9cff-0afb0974b67c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T05:18:22.615Z", + "completed":"2016-07-25T05:18:22.615Z", + "new_balance":"3527.29", + "value":"-1.57" + } + }, + { + "id":"addd4981-e017-4eb9-87b4-fc039e80fe86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T18:11:21.944Z", + "completed":"2016-07-27T18:11:21.944Z", + "new_balance":"3526.77", + "value":"-0.52" + } + }, + { + "id":"c87608a9-8c7d-4a90-992a-7ca233b7c2bc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T02:27:08.707Z", + "completed":"2016-07-28T02:27:08.707Z", + "new_balance":"3504.41", + "value":"-22.36" + } + }, + { + "id":"04c36388-97dd-41ce-acf7-e4929098597f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T10:06:03.760Z", + "completed":"2016-07-28T10:06:03.760Z", + "new_balance":"3500.69", + "value":"-3.72" + } + }, + { + "id":"8e335220-2828-4013-b48a-7fdc7b8609f4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T09:04:39.976Z", + "completed":"2016-08-01T09:04:39.976Z", + "new_balance":"3641.67", + "value":"140.98" + } + }, + { + "id":"98a25681-0697-4fca-b336-63be3e677613", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T18:40:07.416Z", + "completed":"2016-08-03T18:40:07.416Z", + "new_balance":"3609.95", + "value":"-31.72" + } + }, + { + "id":"c0d345e0-e4e1-4be3-88f1-3880815418d4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T23:49:46.871Z", + "completed":"2016-08-03T23:49:46.871Z", + "new_balance":"3596.85", + "value":"-13.10" + } + }, + { + "id":"a366cc49-5882-4b89-bdad-e27ca786cea1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T22:54:09.947Z", + "completed":"2016-08-04T22:54:09.947Z", + "new_balance":"3595.53", + "value":"-1.32" + } + }, + { + "id":"6698ba0d-d0b8-4408-809e-4c461d57d819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T00:54:36.846Z", + "completed":"2016-08-07T00:54:36.846Z", + "new_balance":"3594.86", + "value":"-0.67" + } + }, + { + "id":"c709e05a-7310-4903-809d-1e1e7ca27bdf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T03:53:55.256Z", + "completed":"2016-08-07T03:53:55.256Z", + "new_balance":"3592.55", + "value":"-2.31" + } + }, + { + "id":"0c6a12a2-5424-4a8e-b4d6-397d00497ef8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T10:42:33.397Z", + "completed":"2016-08-07T10:42:33.397Z", + "new_balance":"3590.36", + "value":"-2.19" + } + }, + { + "id":"ba83fd2e-34b7-4433-b3b2-3afdf24d287b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T07:12:28.650Z", + "completed":"2016-08-08T07:12:28.650Z", + "new_balance":"3582.66", + "value":"-7.70" + } + }, + { + "id":"278675d3-c699-4a75-a277-f3be1a36a378", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T17:41:42.621Z", + "completed":"2016-08-08T17:41:42.621Z", + "new_balance":"3578.09", + "value":"-4.57" + } + }, + { + "id":"84afac89-b334-41d5-8cc0-b068d67a4dd4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T20:36:24.637Z", + "completed":"2016-08-08T20:36:24.637Z", + "new_balance":"3573.95", + "value":"-4.14" + } + }, + { + "id":"d3616aab-52d1-468f-8095-502a3d78b0ea", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T16:43:04.072Z", + "completed":"2016-08-09T16:43:04.072Z", + "new_balance":"3571.55", + "value":"-2.40" + } + }, + { + "id":"f247d36a-4886-4b9f-8618-9212528bbe13", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T21:53:58.669Z", + "completed":"2016-08-11T21:53:58.669Z", + "new_balance":"3571.03", + "value":"-0.52" + } + }, + { + "id":"53de6dc8-e469-42bc-afdd-8b4bdabc59c4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T20:27:17.150Z", + "completed":"2016-08-14T20:27:17.150Z", + "new_balance":"3568.15", + "value":"-2.88" + } + }, + { + "id":"05d7c340-3286-45bd-99af-afd79300e61e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T11:46:41.091Z", + "completed":"2016-08-15T11:46:41.091Z", + "new_balance":"3565.84", + "value":"-2.31" + } + }, + { + "id":"e2e3e623-b440-4bb3-8cab-20c509b85721", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T05:09:31.207Z", + "completed":"2016-08-17T05:09:31.207Z", + "new_balance":"3561.23", + "value":"-4.61" + } + }, + { + "id":"ac9b7101-1c86-4f54-990e-21fe2b261bc1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T22:29:21.838Z", + "completed":"2016-08-17T22:29:21.838Z", + "new_balance":"3560.76", + "value":"-0.47" + } + }, + { + "id":"439aa398-5270-4f2b-8fd2-8899fc3aea5a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T13:37:18.928Z", + "completed":"2016-08-19T13:37:18.928Z", + "new_balance":"3560.17", + "value":"-0.59" + } + }, + { + "id":"02b34c2e-5f27-4954-bb43-83b40b7dd842", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T03:54:39.803Z", + "completed":"2016-08-25T03:54:39.803Z", + "new_balance":"3571.57", + "value":"11.40" + } + }, + { + "id":"17e54a67-eb08-410f-a5e1-1880b2e4b30b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T20:34:46.291Z", + "completed":"2016-08-28T20:34:46.291Z", + "new_balance":"3567.85", + "value":"-3.72" + } + }, + { + "id":"b76ba89a-1223-4c05-b036-07588dd4145f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T23:38:29.570Z", + "completed":"2016-08-28T23:38:29.570Z", + "new_balance":"3545.49", + "value":"-22.36" + } + }, + { + "id":"35c410cd-462e-467e-b6eb-96d96c1e9b28", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T08:00:51.704Z", + "completed":"2016-09-01T08:00:51.704Z", + "new_balance":"3686.47", + "value":"140.98" + } + }, + { + "id":"4caed8e9-7271-4d28-b12b-e396bae9b674", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T23:38:37.236Z", + "completed":"2016-09-03T23:38:37.236Z", + "new_balance":"3654.75", + "value":"-31.72" + } + }, + { + "id":"bb710c24-df26-4b05-b19d-11a65c720d7d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T04:35:28.403Z", + "completed":"2016-09-04T04:35:28.403Z", + "new_balance":"3650.14", + "value":"-4.61" + } + }, + { + "id":"c545f28c-fcac-461d-b9db-402bc40d2a85", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T07:39:56.302Z", + "completed":"2016-09-04T07:39:56.302Z", + "new_balance":"3648.09", + "value":"-2.05" + } + }, + { + "id":"905d7da4-b88e-4cba-8268-b4c05bbbec9b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T09:11:52.671Z", + "completed":"2016-09-04T09:11:52.671Z", + "new_balance":"3644.79", + "value":"-3.30" + } + }, + { + "id":"77e43a2a-19e8-427f-906c-fa20c77d9890", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T22:59:25.837Z", + "completed":"2016-09-04T22:59:25.837Z", + "new_balance":"3641.33", + "value":"-3.46" + } + }, + { + "id":"d95b2366-e1ff-4a26-a925-22cedeb23210", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T03:19:33.602Z", + "completed":"2016-09-05T03:19:33.602Z", + "new_balance":"3633.59", + "value":"-7.74" + } + }, + { + "id":"a231147b-5c0e-451d-8ff1-33e31db0c819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T04:35:34.269Z", + "completed":"2016-09-05T04:35:34.269Z", + "new_balance":"3626.84", + "value":"-6.75" + } + }, + { + "id":"f6b591ee-c2e4-4c6d-aeb2-8a058fed26ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T10:52:40.821Z", + "completed":"2016-09-05T10:52:40.821Z", + "new_balance":"3620.20", + "value":"-6.64" + } + }, + { + "id":"90dee5ee-aa37-42a8-8c7d-34f606e0705f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T11:45:13.118Z", + "completed":"2016-09-05T11:45:13.118Z", + "new_balance":"3612.50", + "value":"-7.70" + } + }, + { + "id":"9c458eb1-50ef-4692-81d0-7da6413bd37f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T14:41:11.524Z", + "completed":"2016-09-05T14:41:11.524Z", + "new_balance":"3612.03", + "value":"-0.47" + } + }, + { + "id":"6f2f43c3-c644-4abf-9b48-d4a734d63aac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T18:06:26.555Z", + "completed":"2016-09-05T18:06:26.555Z", + "new_balance":"3610.73", + "value":"-1.30" + } + }, + { + "id":"8d3339e4-2a4a-434b-b024-43121387ea0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T10:26:58.450Z", + "completed":"2016-09-07T10:26:58.450Z", + "new_balance":"3609.93", + "value":"-0.80" + } + }, + { + "id":"ebed72eb-f679-45f9-b2ff-8d133f7a7ade", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T12:51:53.510Z", + "completed":"2016-09-07T12:51:53.510Z", + "new_balance":"3609.13", + "value":"-0.80" + } + }, + { + "id":"4863eb15-209c-4fef-9b66-34cd7cf260f6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T14:42:57.443Z", + "completed":"2016-09-07T14:42:57.443Z", + "new_balance":"3608.36", + "value":"-0.77" + } + }, + { + "id":"a6d37d6a-7db6-455b-9ef0-fcd68e1e837a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T23:52:06.094Z", + "completed":"2016-09-07T23:52:06.094Z", + "new_balance":"3607.89", + "value":"-0.47" + } + }, + { + "id":"af86c81c-500d-4d70-b760-60015b19635c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T21:44:51.020Z", + "completed":"2016-09-10T21:44:51.020Z", + "new_balance":"3605.18", + "value":"-2.71" + } + }, + { + "id":"31d8fa12-020b-4d4e-b380-147c2c77a8e6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T00:13:52.032Z", + "completed":"2016-09-11T00:13:52.032Z", + "new_balance":"3604.71", + "value":"-0.47" + } + }, + { + "id":"ac9a0ba7-f6cc-417e-9698-2f04c544a5cb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T18:14:29.137Z", + "completed":"2016-09-11T18:14:29.137Z", + "new_balance":"3601.99", + "value":"-2.72" + } + }, + { + "id":"75d758e8-3d17-41dd-a470-8a5e16f3e45b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T21:47:30.510Z", + "completed":"2016-09-11T21:47:30.510Z", + "new_balance":"3600.39", + "value":"-1.60" + } + }, + { + "id":"0e76ba44-7eda-4a49-a37c-855df9cca5e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T01:44:27.071Z", + "completed":"2016-09-12T01:44:27.071Z", + "new_balance":"3597.80", + "value":"-2.59" + } + }, + { + "id":"41398ac1-346d-454e-8772-82035f95405a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T06:41:31.354Z", + "completed":"2016-09-12T06:41:31.354Z", + "new_balance":"3587.65", + "value":"-10.15" + } + }, + { + "id":"73903946-1c4c-4b00-a8ff-264106668c07", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:01:22.530Z", + "completed":"2016-09-12T10:01:22.530Z", + "new_balance":"3581.49", + "value":"-6.16" + } + }, + { + "id":"f2679933-531e-4d5f-8ebd-03a61be5239d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T23:56:32.768Z", + "completed":"2016-09-12T23:56:32.768Z", + "new_balance":"3581.02", + "value":"-0.47" + } + }, + { + "id":"666d43a9-c8ac-419b-a5f2-aa1b374ba54d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T23:22:55.979Z", + "completed":"2016-09-13T23:22:55.979Z", + "new_balance":"3578.44", + "value":"-2.58" + } + }, + { + "id":"d648df06-bccd-47e9-bf28-0db7396737ba", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:28:52.943Z", + "completed":"2016-09-14T00:28:52.943Z", + "new_balance":"3573.52", + "value":"-4.92" + } + }, + { + "id":"82bf44bf-7123-4cea-89bf-5845fbef5466", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T11:56:21.979Z", + "completed":"2016-09-14T11:56:21.979Z", + "new_balance":"3573.05", + "value":"-0.47" + } + }, + { + "id":"cf3ee024-a597-4cc5-89f4-501cb2225178", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T05:05:53.584Z", + "completed":"2016-09-16T05:05:53.584Z", + "new_balance":"3568.93", + "value":"-4.12" + } + }, + { + "id":"f98e0eba-c983-4b79-8961-ee03b9530094", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T19:32:45.461Z", + "completed":"2016-09-18T19:32:45.461Z", + "new_balance":"3564.54", + "value":"-4.39" + } + }, + { + "id":"60d4fce1-3799-4421-ae66-20f6ef6a1eb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T13:10:42.653Z", + "completed":"2016-09-21T13:10:42.653Z", + "new_balance":"3554.93", + "value":"-9.61" + } + }, + { + "id":"86712a19-2f51-4152-8ec5-c4ff2ed509b3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T19:02:08.361Z", + "completed":"2016-09-21T19:02:08.361Z", + "new_balance":"3542.57", + "value":"-12.36" + } + }, + { + "id":"2c5481b4-21e0-4428-9605-9b367d7be310", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T18:52:08.595Z", + "completed":"2016-09-23T18:52:08.595Z", + "new_balance":"3539.10", + "value":"-3.47" + } + }, + { + "id":"4d90dd6a-a62b-428e-aa32-ae2ee94fce2b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T11:29:44.812Z", + "completed":"2016-09-24T11:29:44.812Z", + "new_balance":"3538.63", + "value":"-0.47" + } + }, + { + "id":"95b8fc8a-362c-4536-9c03-febbc379f8b1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T04:54:19.219Z", + "completed":"2016-09-26T04:54:19.219Z", + "new_balance":"3537.28", + "value":"-1.35" + } + }, + { + "id":"650abecc-a6f5-49d7-8fcb-2b074fa72f82", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:06:21.758Z", + "completed":"2016-09-26T11:06:21.758Z", + "new_balance":"3536.13", + "value":"-1.15" + } + }, + { + "id":"2acaf7ee-bd3b-4aa0-b667-57742b55b2fe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:41:19.773Z", + "completed":"2016-09-26T15:41:19.773Z", + "new_balance":"3533.74", + "value":"-2.39" + } + }, + { + "id":"81f665b2-9a40-4016-a244-152f99a63e84", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T03:37:31.560Z", + "completed":"2016-09-27T03:37:31.560Z", + "new_balance":"3532.54", + "value":"-1.20" + } + }, + { + "id":"50d21fdd-b611-4ac6-91eb-0f22f6c1fbc8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:56:13.760Z", + "completed":"2016-09-28T06:56:13.760Z", + "new_balance":"3528.82", + "value":"-3.72" + } + }, + { + "id":"a40a6a6e-82d2-41c7-a5b5-4064cdf37029", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T22:32:01.929Z", + "completed":"2016-09-28T22:32:01.929Z", + "new_balance":"3506.46", + "value":"-22.36" + } + }, + { + "id":"38c210ad-42d7-4623-9f50-07a0d33f0c1d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T04:54:33.053Z", + "completed":"2016-10-01T04:54:33.053Z", + "new_balance":"3647.44", + "value":"140.98" + } + }, + { + "id":"93981822-36bb-4ddc-b85c-501b963ad6ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T08:26:05.533Z", + "completed":"2016-10-01T08:26:05.533Z", + "new_balance":"3615.72", + "value":"-31.72" + } + }, + { + "id":"655df67b-bcf5-4a5e-b4db-b287a895522d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:10:53.576Z", + "completed":"2016-10-01T19:10:53.576Z", + "new_balance":"3798.42", + "value":"182.70" + } + }, + { + "id":"1527646a-f4e6-44f0-bbfd-dd49ce66f7f8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T00:18:12.449Z", + "completed":"2016-10-03T00:18:12.449Z", + "new_balance":"3793.60", + "value":"-4.82" + } + }, + { + "id":"77e13e0c-adea-4346-851b-308b86164b3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T03:36:39.906Z", + "completed":"2016-10-03T03:36:39.906Z", + "new_balance":"3791.86", + "value":"-1.74" + } + }, + { + "id":"9e1b5830-c3c4-434d-a4b8-10dd70018a0f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T15:19:54.922Z", + "completed":"2016-10-03T15:19:54.922Z", + "new_balance":"3791.19", + "value":"-0.67" + } + }, + { + "id":"a7b03400-7518-4104-a732-01716d543233", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T02:25:58.927Z", + "completed":"2016-10-05T02:25:58.927Z", + "new_balance":"3790.67", + "value":"-0.52" + } + }, + { + "id":"3b74aa18-2066-435b-a8c6-3e8e134bba55", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T12:46:52.268Z", + "completed":"2016-10-05T12:46:52.268Z", + "new_balance":"3789.27", + "value":"-1.40" + } + }, + { + "id":"69fc4e4b-f741-4cd5-9f42-d7b1f0420173", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T19:28:34.172Z", + "completed":"2016-10-06T19:28:34.172Z", + "new_balance":"3787.67", + "value":"-1.60" + } + }, + { + "id":"cca827de-2376-4f9b-9369-7671084d48f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T15:26:10.752Z", + "completed":"2016-10-09T15:26:10.752Z", + "new_balance":"3785.08", + "value":"-2.59" + } + }, + { + "id":"9941d1ed-a61b-4cec-a9a8-e2dca0c726fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T06:26:47.007Z", + "completed":"2016-10-10T06:26:47.007Z", + "new_balance":"3783.40", + "value":"-1.68" + } + }, + { + "id":"966fe9a3-2bd3-4965-89e9-d444ebad81cd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T03:03:09.061Z", + "completed":"2016-10-11T03:03:09.061Z", + "new_balance":"3781.09", + "value":"-2.31" + } + }, + { + "id":"46801fec-9f6c-4879-879d-aff5609d8d98", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:51:06.400Z", + "completed":"2016-10-11T09:51:06.400Z", + "new_balance":"3779.22", + "value":"-1.87" + } + }, + { + "id":"c44b5620-f7fc-4bbb-91c1-4de3f1fb789a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T11:28:29.479Z", + "completed":"2016-10-14T11:28:29.479Z", + "new_balance":"3773.09", + "value":"-6.13" + } + }, + { + "id":"b4a65c97-8b47-4358-a258-d1305bae3e9b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T17:01:07.660Z", + "completed":"2016-10-14T17:01:07.660Z", + "new_balance":"3765.39", + "value":"-7.70" + } + }, + { + "id":"98b59200-a4c3-4483-ba7d-ac7cb5917887", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T10:48:54.195Z", + "completed":"2016-10-17T10:48:54.195Z", + "new_balance":"3760.86", + "value":"-4.53" + } + }, + { + "id":"e1cab16a-bbaf-4fd6-862e-456748522c08", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T01:42:30.951Z", + "completed":"2016-10-18T01:42:30.951Z", + "new_balance":"3755.38", + "value":"-5.48" + } + }, + { + "id":"83f0d2a1-12d9-4051-b6b2-fec0f6ad7f2a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T23:07:36.586Z", + "completed":"2016-10-18T23:07:36.586Z", + "new_balance":"3754.57", + "value":"-0.81" + } + }, + { + "id":"ba9afd41-fc94-4ec4-b545-f52c69f9aa16", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T23:50:48.865Z", + "completed":"2016-10-18T23:50:48.865Z", + "new_balance":"3754.10", + "value":"-0.47" + } + }, + { + "id":"41b7dc84-a232-4aaa-ad6d-fe8725517db0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T08:41:17.437Z", + "completed":"2016-10-23T08:41:17.437Z", + "new_balance":"3751.67", + "value":"-2.43" + } + }, + { + "id":"cd4aadc3-5d58-4901-a8d7-11b68b837cff", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T10:13:52.020Z", + "completed":"2016-10-24T10:13:52.020Z", + "new_balance":"3750.10", + "value":"-1.57" + } + }, + { + "id":"8b08b606-c552-46e0-99d3-e13f35ae0358", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:13:13.839Z", + "completed":"2016-10-24T18:13:13.839Z", + "new_balance":"3746.80", + "value":"-3.30" + } + }, + { + "id":"78185325-4688-4dc1-8ebc-ec9f31cb21d1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T18:24:02.778Z", + "completed":"2016-10-26T18:24:02.778Z", + "new_balance":"3746.28", + "value":"-0.52" + } + }, + { + "id":"74619c2d-1297-4689-b48e-71f43596e987", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T02:02:43.119Z", + "completed":"2016-10-30T02:02:43.119Z", + "new_balance":"3742.56", + "value":"-3.72" + } + }, + { + "id":"51202be7-bc81-4851-a814-5bf2931fc46a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T18:36:27.409Z", + "completed":"2016-10-30T18:36:27.409Z", + "new_balance":"3720.20", + "value":"-22.36" + } + }, + { + "id":"667810f4-844b-4f3b-9fa0-64116d96e734", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T03:08:05.103Z", + "completed":"2016-11-02T03:08:05.103Z", + "new_balance":"3688.48", + "value":"-31.72" + } + }, + { + "id":"4a52ffa9-dede-4d8a-8d53-7c9100486822", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T03:53:14.789Z", + "completed":"2016-11-02T03:53:14.789Z", + "new_balance":"3687.16", + "value":"-1.32" + } + }, + { + "id":"8bc3b26e-bfa4-476c-ae97-38a8045a9f5b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T13:41:32.202Z", + "completed":"2016-11-02T13:41:32.202Z", + "new_balance":"3686.49", + "value":"-0.67" + } + }, + { + "id":"bbc74758-cfb1-4efa-a414-e7bbc38bf97f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T16:57:32.258Z", + "completed":"2016-11-02T16:57:32.258Z", + "new_balance":"3673.39", + "value":"-13.10" + } + }, + { + "id":"b9a81c3b-9766-4272-87d8-eea0a294b491", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T04:06:46.068Z", + "completed":"2016-11-06T04:06:46.068Z", + "new_balance":"3671.08", + "value":"-2.31" + } + }, + { + "id":"5fc893fd-9a3d-4068-9902-621aa57fb022", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T14:36:43.930Z", + "completed":"2016-11-06T14:36:43.930Z", + "new_balance":"3668.89", + "value":"-2.19" + } + }, + { + "id":"3deeb102-5fda-4e9d-832e-6eab4f9e3ba6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T22:01:52.568Z", + "completed":"2016-11-07T22:01:52.568Z", + "new_balance":"3664.32", + "value":"-4.57" + } + }, + { + "id":"abeb4682-c853-4b98-a507-711ab7953a87", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T23:20:53.606Z", + "completed":"2016-11-07T23:20:53.606Z", + "new_balance":"3656.62", + "value":"-7.70" + } + }, + { + "id":"5fb37705-3e08-4b4e-a8c7-c071d5a2ed6b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T03:28:54.535Z", + "completed":"2016-11-09T03:28:54.535Z", + "new_balance":"3797.60", + "value":"140.98" + } + }, + { + "id":"1387e9a2-558b-4bfa-a9fd-77b8cca70ff6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T00:22:40.487Z", + "completed":"2016-11-14T00:22:40.487Z", + "new_balance":"3793.46", + "value":"-4.14" + } + }, + { + "id":"380ee1f5-0772-4ed3-a358-db32fe53157c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T08:01:58.119Z", + "completed":"2016-11-14T08:01:58.119Z", + "new_balance":"3791.06", + "value":"-2.40" + } + }, + { + "id":"33336545-7f5c-4ea0-b0e0-29b8c4b3ad1c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T11:35:00.576Z", + "completed":"2016-11-16T11:35:00.576Z", + "new_balance":"3790.54", + "value":"-0.52" + } + }, + { + "id":"7b8ae46e-b5a2-46f1-a814-cf6bf167cbe1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T19:18:24.346Z", + "completed":"2016-11-20T19:18:24.346Z", + "new_balance":"3787.66", + "value":"-2.88" + } + }, + { + "id":"ed7fc421-e462-4994-b2b7-772bb22461c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T06:56:07.089Z", + "completed":"2016-11-23T06:56:07.089Z", + "new_balance":"3785.35", + "value":"-2.31" + } + }, + { + "id":"7f26fa23-7d46-4020-84a7-6304fcc6ea28", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T11:16:11.850Z", + "completed":"2016-11-23T11:16:11.850Z", + "new_balance":"3784.88", + "value":"-0.47" + } + }, + { + "id":"2af371b8-5c8c-440c-900c-1f2cfcbfbe1a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T22:29:04.785Z", + "completed":"2016-11-23T22:29:04.785Z", + "new_balance":"3780.27", + "value":"-4.61" + } + }, + { + "id":"d019b483-378d-403e-94f9-f7a79d61b623", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:46:57.503Z", + "completed":"2016-11-28T01:46:57.503Z", + "new_balance":"3779.68", + "value":"-0.59" + } + }, + { + "id":"eca9c977-2ed6-42e2-a26f-cf92df6842f4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T00:23:43.096Z", + "completed":"2016-11-30T00:23:43.096Z", + "new_balance":"3757.32", + "value":"-22.36" + } + }, + { + "id":"0509d769-132a-433f-aee3-1acae6877ae0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T01:48:49.145Z", + "completed":"2016-11-30T01:48:49.145Z", + "new_balance":"3753.60", + "value":"-3.72" + } + }, + { + "id":"9c9c2400-77e9-4e48-9eae-20be64f6f98c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T07:50:45.239Z", + "completed":"2016-12-01T07:50:45.239Z", + "new_balance":"3721.88", + "value":"-31.72" + } + }, + { + "id":"a931c3fe-b8b0-4936-a661-1465c9c4e4b4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:33:17.388Z", + "completed":"2016-12-01T16:33:17.388Z", + "new_balance":"3862.86", + "value":"140.98" + } + }, + { + "id":"06d06c1e-ae8e-43b4-89e9-b715e1f37287", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:24:53.774Z", + "completed":"2016-12-04T18:24:53.774Z", + "new_balance":"3859.40", + "value":"-3.46" + } + }, + { + "id":"67575ed8-d7fc-4720-9fbf-23540270f377", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T19:44:22.982Z", + "completed":"2016-12-04T19:44:22.982Z", + "new_balance":"3857.35", + "value":"-2.05" + } + }, + { + "id":"3bf140bf-0cda-4bad-ab53-511ee1170a61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T02:21:55.639Z", + "completed":"2016-12-11T02:21:55.639Z", + "new_balance":"3852.74", + "value":"-4.61" + } + }, + { + "id":"834a1c90-10c1-4f10-8521-38faad8bdbfe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T18:24:10.505Z", + "completed":"2016-12-11T18:24:10.505Z", + "new_balance":"3849.44", + "value":"-3.30" + } + }, + { + "id":"717a16d9-6e2f-44f6-8d0d-54968fc94ea9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T00:58:30.826Z", + "completed":"2016-12-14T00:58:30.826Z", + "new_balance":"3848.97", + "value":"-0.47" + } + }, + { + "id":"3453be3b-7ac9-410a-86d5-a279090a79df", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T03:26:51.519Z", + "completed":"2016-12-14T03:26:51.519Z", + "new_balance":"3848.17", + "value":"-0.80" + } + }, + { + "id":"a912b8a0-ee7f-404f-b5b8-acd9e84fedf5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T04:51:53.630Z", + "completed":"2016-12-14T04:51:53.630Z", + "new_balance":"3840.43", + "value":"-7.74" + } + }, + { + "id":"80ef7c10-d23b-4fe9-a22b-791251b21307", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T06:44:33.319Z", + "completed":"2016-12-14T06:44:33.319Z", + "new_balance":"3839.63", + "value":"-0.80" + } + }, + { + "id":"52337140-3564-47cd-bd4d-be84ed8db983", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T13:01:32.203Z", + "completed":"2016-12-14T13:01:32.203Z", + "new_balance":"3832.88", + "value":"-6.75" + } + }, + { + "id":"f68525a2-9ea3-4a94-9ffe-7cf5ff372ef5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T13:11:05.538Z", + "completed":"2016-12-14T13:11:05.538Z", + "new_balance":"3832.41", + "value":"-0.47" + } + }, + { + "id":"c3adfdcf-e4aa-4156-b93c-6ae5bc0272b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T13:35:07.989Z", + "completed":"2016-12-14T13:35:07.989Z", + "new_balance":"3825.77", + "value":"-6.64" + } + }, + { + "id":"b74f1990-7542-4d39-a9f0-0fc980e59031", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T21:23:19.693Z", + "completed":"2016-12-14T21:23:19.693Z", + "new_balance":"3824.47", + "value":"-1.30" + } + }, + { + "id":"3d99b9f7-a1f5-48db-8a11-e11818561453", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T21:50:04.492Z", + "completed":"2016-12-14T21:50:04.492Z", + "new_balance":"3816.77", + "value":"-7.70" + } + }, + { + "id":"a266298f-bda4-4ba4-b1c2-e753b3f2cc59", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T03:55:05.011Z", + "completed":"2016-12-15T03:55:05.011Z", + "new_balance":"3814.06", + "value":"-2.71" + } + }, + { + "id":"04eb6035-f37a-4303-b069-20e44580815f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T12:46:21.150Z", + "completed":"2016-12-15T12:46:21.150Z", + "new_balance":"3813.59", + "value":"-0.47" + } + }, + { + "id":"c42dd25b-dfe2-4365-862e-99bc14d99a1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:39:22.417Z", + "completed":"2016-12-15T18:39:22.417Z", + "new_balance":"3812.82", + "value":"-0.77" + } + }, + { + "id":"656fbec8-de9b-4153-b8c5-2a76a7fdd94e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T00:06:14.030Z", + "completed":"2016-12-18T00:06:14.030Z", + "new_balance":"3812.35", + "value":"-0.47" + } + }, + { + "id":"33fb93a8-ccae-48b9-8f34-0c875862dc61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T05:30:06.363Z", + "completed":"2016-12-18T05:30:06.363Z", + "new_balance":"3802.20", + "value":"-10.15" + } + }, + { + "id":"3381908d-b880-4f2c-943b-7477757c08be", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T06:22:40.909Z", + "completed":"2016-12-18T06:22:40.909Z", + "new_balance":"3799.48", + "value":"-2.72" + } + }, + { + "id":"a7182496-54e2-4bee-9d25-6985e50451ff", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T10:55:13.056Z", + "completed":"2016-12-18T10:55:13.056Z", + "new_balance":"3796.90", + "value":"-2.58" + } + }, + { + "id":"a9562946-8fef-4d1f-8153-bc55ec796bd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T11:54:12.188Z", + "completed":"2016-12-18T11:54:12.188Z", + "new_balance":"3794.31", + "value":"-2.59" + } + }, + { + "id":"1d2d179b-af1c-4fdd-a71a-f1a1a930057b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T16:09:27.784Z", + "completed":"2016-12-18T16:09:27.784Z", + "new_balance":"3793.84", + "value":"-0.47" + } + }, + { + "id":"26ce9bbb-d329-497f-b6dc-a05af6b9ab6a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T18:19:31.560Z", + "completed":"2016-12-18T18:19:31.560Z", + "new_balance":"3787.68", + "value":"-6.16" + } + }, + { + "id":"f487b55a-f4b8-40ca-ad93-e049b04d1bb2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T20:09:48.394Z", + "completed":"2016-12-18T20:09:48.394Z", + "new_balance":"3786.08", + "value":"-1.60" + } + }, + { + "id":"1a40cb01-1206-4477-b90f-f1a8137f3cbe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:06:06.695Z", + "completed":"2016-12-19T02:06:06.695Z", + "new_balance":"3781.16", + "value":"-4.92" + } + }, + { + "id":"f76b6269-ce41-4b8b-873a-afa4eeebce3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T08:32:37.351Z", + "completed":"2016-12-19T08:32:37.351Z", + "new_balance":"3776.77", + "value":"-4.39" + } + }, + { + "id":"ca1c1bea-6246-4905-9ad6-da4b49fbfdde", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T18:37:31.261Z", + "completed":"2016-12-19T18:37:31.261Z", + "new_balance":"3772.65", + "value":"-4.12" + } + }, + { + "id":"7a9bd6e4-4def-4831-af60-11714355f0f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T00:33:35.833Z", + "completed":"2016-12-21T00:33:35.833Z", + "new_balance":"3760.29", + "value":"-12.36" + } + }, + { + "id":"b3d5c293-240f-4d4e-9248-6ff27a41b232", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T05:04:12.297Z", + "completed":"2016-12-21T05:04:12.297Z", + "new_balance":"3756.82", + "value":"-3.47" + } + }, + { + "id":"cb41ee71-3826-4d9c-a1ed-f9a9041f6ff9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T11:36:50.120Z", + "completed":"2016-12-21T11:36:50.120Z", + "new_balance":"3747.21", + "value":"-9.61" + } + }, + { + "id":"3f2ba060-2846-4d77-b132-e3c4bfc1acf4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T18:59:49.120Z", + "completed":"2016-12-21T18:59:49.120Z", + "new_balance":"3746.06", + "value":"-1.15" + } + }, + { + "id":"9a50cd61-27ea-4d95-b4c0-091da9fffcb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T21:42:23.256Z", + "completed":"2016-12-21T21:42:23.256Z", + "new_balance":"3745.59", + "value":"-0.47" + } + }, + { + "id":"3ce528e6-22c3-49ad-ab03-84061464bd2d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T16:10:32.236Z", + "completed":"2016-12-24T16:10:32.236Z", + "new_balance":"3744.24", + "value":"-1.35" + } + }, + { + "id":"55d42184-f148-4807-98b9-2284719cab8f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T18:14:40.908Z", + "completed":"2016-12-24T18:14:40.908Z", + "new_balance":"3741.85", + "value":"-2.39" + } + }, + { + "id":"156b72bb-29e3-49e5-8b8e-ee1975f31ac0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T23:34:02.522Z", + "completed":"2016-12-24T23:34:02.522Z", + "new_balance":"3740.65", + "value":"-1.20" + } + }, + { + "id":"96b6e9f5-08d9-4f17-842b-997068d5c823", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T01:38:16.534Z", + "completed":"2016-12-30T01:38:16.534Z", + "new_balance":"3736.93", + "value":"-3.72" + } + }, + { + "id":"9bcf46e2-f7dd-4137-b922-442d16c8a166", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T21:05:36.178Z", + "completed":"2016-12-30T21:05:36.178Z", + "new_balance":"3714.57", + "value":"-22.36" + } + }, + { + "id":"d079e907-48e8-4ab6-9854-0cad8238d072", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T02:23:37.427Z", + "completed":"2017-01-01T02:23:37.427Z", + "new_balance":"3855.55", + "value":"140.98" + } + }, + { + "id":"e057dd76-9567-43d9-889b-8f6cc6eaffbe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T03:02:43.350Z", + "completed":"2017-01-01T03:02:43.350Z", + "new_balance":"4038.25", + "value":"182.70" + } + }, + { + "id":"c8a5b1c8-b147-4038-af81-6ad8a10921f3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T20:53:34.946Z", + "completed":"2017-01-02T20:53:34.946Z", + "new_balance":"4006.53", + "value":"-31.72" + } + }, + { + "id":"ba190856-5218-4806-b64e-e3f498f6eded", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T00:17:42.016Z", + "completed":"2017-01-03T00:17:42.016Z", + "new_balance":"4001.71", + "value":"-4.82" + } + }, + { + "id":"7edd7772-5dbe-4eae-9eba-60a967facdcd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T09:25:04.459Z", + "completed":"2017-01-03T09:25:04.459Z", + "new_balance":"4001.04", + "value":"-0.67" + } + }, + { + "id":"35d4682c-b5a4-4c93-9f2d-45d78a183774", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T16:08:49.462Z", + "completed":"2017-01-03T16:08:49.462Z", + "new_balance":"3999.30", + "value":"-1.74" + } + }, + { + "id":"3c1abc8b-6891-4ae4-9c15-ff951e54ddb9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T06:54:08.394Z", + "completed":"2017-01-04T06:54:08.394Z", + "new_balance":"3997.90", + "value":"-1.40" + } + }, + { + "id":"93c8d6f4-d2d9-47d2-93ba-c5473713df6f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:49:16.634Z", + "completed":"2017-01-05T19:49:16.634Z", + "new_balance":"3997.38", + "value":"-0.52" + } + }, + { + "id":"6c363c81-527d-4d5b-9183-442fd5612dc2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T09:34:11.016Z", + "completed":"2017-01-07T09:34:11.016Z", + "new_balance":"3995.78", + "value":"-1.60" + } + }, + { + "id":"18ef8791-c8a6-4766-9561-ec3e81d33460", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T09:58:32.198Z", + "completed":"2017-01-07T09:58:32.198Z", + "new_balance":"3993.19", + "value":"-2.59" + } + }, + { + "id":"dc7f5c5f-4c72-4e14-a76a-8d645a51327f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T15:21:05.219Z", + "completed":"2017-01-08T15:21:05.219Z", + "new_balance":"3991.51", + "value":"-1.68" + } + }, + { + "id":"f46268d8-de05-4c49-bc71-12f269da9aa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T22:43:44.370Z", + "completed":"2017-01-08T22:43:44.370Z", + "new_balance":"3989.64", + "value":"-1.87" + } + }, + { + "id":"7d2551d9-17d4-4dc1-8496-ba8b65da4ecb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T06:29:32.914Z", + "completed":"2017-01-09T06:29:32.914Z", + "new_balance":"3987.33", + "value":"-2.31" + } + }, + { + "id":"d3a30cac-3da6-4405-9650-bbd495ef7c80", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T06:53:13.690Z", + "completed":"2017-01-09T06:53:13.690Z", + "new_balance":"3981.20", + "value":"-6.13" + } + }, + { + "id":"71a5bedb-383f-4059-ac75-0338095fabb2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T06:48:39.101Z", + "completed":"2017-01-10T06:48:39.101Z", + "new_balance":"3973.50", + "value":"-7.70" + } + }, + { + "id":"437d2bf1-71b6-43ef-a15e-7092504bade6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T14:11:26.723Z", + "completed":"2017-01-10T14:11:26.723Z", + "new_balance":"3968.97", + "value":"-4.53" + } + }, + { + "id":"95fc83e3-83e4-4fb6-acf6-ad119d8de3f9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T05:42:01.450Z", + "completed":"2017-01-11T05:42:01.450Z", + "new_balance":"3968.50", + "value":"-0.47" + } + }, + { + "id":"6e116c8e-0f98-4f8a-b74e-bd512aedc773", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T13:36:12.955Z", + "completed":"2017-01-11T13:36:12.955Z", + "new_balance":"3963.02", + "value":"-5.48" + } + }, + { + "id":"f069b743-304e-4ff9-ac2c-732503243fd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T17:03:24.109Z", + "completed":"2017-01-11T17:03:24.109Z", + "new_balance":"3972.01", + "value":"8.99" + } + }, + { + "id":"59cc1139-91a2-47f0-8d8f-e4335e639fe5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:04:46.697Z", + "completed":"2017-01-12T13:04:46.697Z", + "new_balance":"3971.20", + "value":"-0.81" + } + }, + { + "id":"f246bbd5-c6f7-4fe7-8588-bc08e0b92177", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T14:06:04.068Z", + "completed":"2017-01-15T14:06:04.068Z", + "new_balance":"3968.77", + "value":"-2.43" + } + }, + { + "id":"15c685cd-7d2e-4174-8b50-731e19a88ed4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T09:33:22.105Z", + "completed":"2017-01-16T09:33:22.105Z", + "new_balance":"3965.47", + "value":"-3.30" + } + }, + { + "id":"8cb3b4ef-f55c-40fb-b36a-ee0d240bfd93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T05:34:34.192Z", + "completed":"2017-01-17T05:34:34.192Z", + "new_balance":"3963.90", + "value":"-1.57" + } + }, + { + "id":"a8028bba-a0b5-4fc3-aaa3-1234d6942878", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T20:33:58.216Z", + "completed":"2017-01-20T20:33:58.216Z", + "new_balance":"3963.38", + "value":"-0.52" + } + }, + { + "id":"538da19b-76a6-44c1-a079-df9b4dde38dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T21:18:38.950Z", + "completed":"2017-01-21T21:18:38.950Z", + "new_balance":"3959.66", + "value":"-3.72" + } + }, + { + "id":"d61141d9-b57b-435b-a666-df667deed826", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T11:46:55.541Z", + "completed":"2017-01-23T11:46:55.541Z", + "new_balance":"3937.30", + "value":"-22.36" + } + }, + { + "id":"63924dd8-f20b-4ffc-bdfd-7a41539b3d7b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T14:47:58.688Z", + "completed":"2017-02-01T14:47:58.688Z", + "new_balance":"4078.28", + "value":"140.98" + } + }, + { + "id":"300f5f30-0972-4828-9ee8-f719a82ea852", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T06:04:26.733Z", + "completed":"2017-02-03T06:04:26.733Z", + "new_balance":"4065.18", + "value":"-13.10" + } + }, + { + "id":"57eeef8d-3cec-43ce-8bfc-7a73ab3912b2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T07:10:58.511Z", + "completed":"2017-02-03T07:10:58.511Z", + "new_balance":"4033.46", + "value":"-31.72" + } + }, + { + "id":"50120774-fd15-436a-bf96-4957c75a9a45", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T10:17:41.699Z", + "completed":"2017-02-04T10:17:41.699Z", + "new_balance":"4032.14", + "value":"-1.32" + } + }, + { + "id":"fae75d6b-c356-4048-b6c1-44acf1861f47", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T17:10:50.473Z", + "completed":"2017-02-05T17:10:50.473Z", + "new_balance":"4031.47", + "value":"-0.67" + } + }, + { + "id":"dcfef24f-d273-4124-8fc1-f4e2bd26ebb0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T16:38:18.093Z", + "completed":"2017-02-06T16:38:18.093Z", + "new_balance":"4029.28", + "value":"-2.19" + } + }, + { + "id":"110c0f2c-f2a4-4167-80be-7c867040897e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T13:33:58.654Z", + "completed":"2017-02-07T13:33:58.654Z", + "new_balance":"4026.97", + "value":"-2.31" + } + }, + { + "id":"75f6935e-06c8-4924-b460-2c13de2c82fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T16:49:27.080Z", + "completed":"2017-02-07T16:49:27.080Z", + "new_balance":"4019.27", + "value":"-7.70" + } + }, + { + "id":"56194510-6304-422d-8c7a-546a5c604c7e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T18:42:06.185Z", + "completed":"2017-02-07T18:42:06.185Z", + "new_balance":"4014.70", + "value":"-4.57" + } + }, + { + "id":"b3e98de3-7931-41b1-85a8-be2e7ad09522", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T08:56:29.973Z", + "completed":"2017-02-08T08:56:29.973Z", + "new_balance":"4010.56", + "value":"-4.14" + } + }, + { + "id":"3a3207d9-d700-4c86-9360-6bb8e29331f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T21:37:13.423Z", + "completed":"2017-02-09T21:37:13.423Z", + "new_balance":"4008.16", + "value":"-2.40" + } + }, + { + "id":"16dc0db5-171c-4473-9ecc-df76afac3613", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T23:24:24.996Z", + "completed":"2017-02-10T23:24:24.996Z", + "new_balance":"4007.64", + "value":"-0.52" + } + }, + { + "id":"239e50c9-6645-4fc9-955a-1c8c5317d980", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T15:34:11.633Z", + "completed":"2017-02-12T15:34:11.633Z", + "new_balance":"4004.76", + "value":"-2.88" + } + }, + { + "id":"a85511ce-8dd8-4505-8e6b-d51b76b3290e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T12:30:54.335Z", + "completed":"2017-02-14T12:30:54.335Z", + "new_balance":"4002.45", + "value":"-2.31" + } + }, + { + "id":"43d1cd34-129b-4021-ad20-e67754287014", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T15:22:52.301Z", + "completed":"2017-02-16T15:22:52.301Z", + "new_balance":"3997.84", + "value":"-4.61" + } + }, + { + "id":"e3d03b35-0592-4060-bf1e-79ad0592b6e7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T16:39:27.096Z", + "completed":"2017-02-16T16:39:27.096Z", + "new_balance":"3997.37", + "value":"-0.47" + } + }, + { + "id":"9624b97c-8930-458e-967f-ecdf4d5867d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T05:01:27.111Z", + "completed":"2017-02-18T05:01:27.111Z", + "new_balance":"3996.78", + "value":"-0.59" + } + }, + { + "id":"fa074d3a-cfd5-44e9-b8b1-a04a63e21208", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T04:49:23.507Z", + "completed":"2017-02-21T04:49:23.507Z", + "new_balance":"3993.06", + "value":"-3.72" + } + }, + { + "id":"cd1c53f8-d015-4103-904a-23bdd08b1b9e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T19:18:21.482Z", + "completed":"2017-02-21T19:18:21.482Z", + "new_balance":"4004.46", + "value":"11.40" + } + }, + { + "id":"50083879-81a3-452b-a274-864b4b8c9be4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T04:13:54.619Z", + "completed":"2017-02-27T04:13:54.619Z", + "new_balance":"3982.10", + "value":"-22.36" + } + }, + { + "id":"2e398aa8-4b3f-45bd-88a7-bc01505dfc4a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T12:44:26.073Z", + "completed":"2017-03-01T12:44:26.073Z", + "new_balance":"4123.08", + "value":"140.98" + } + }, + { + "id":"3b0e470b-8116-4633-9881-5766fba132f1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T03:22:00.647Z", + "completed":"2017-03-03T03:22:00.647Z", + "new_balance":"4091.36", + "value":"-31.72" + } + }, + { + "id":"fee8c7de-a646-491e-8d3a-3c8273552d4d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T09:11:50.108Z", + "completed":"2017-03-04T09:11:50.108Z", + "new_balance":"4089.31", + "value":"-2.05" + } + }, + { + "id":"5a4729e0-7f50-47a2-8470-197636100d60", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T11:44:40.481Z", + "completed":"2017-03-04T11:44:40.481Z", + "new_balance":"4084.70", + "value":"-4.61" + } + }, + { + "id":"974e7022-589a-4ecb-bfc5-51407023780a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T16:13:00.460Z", + "completed":"2017-03-04T16:13:00.460Z", + "new_balance":"4081.24", + "value":"-3.46" + } + }, + { + "id":"eaefdd71-24d9-4373-925d-00363463d582", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T17:27:12.497Z", + "completed":"2017-03-04T17:27:12.497Z", + "new_balance":"4077.94", + "value":"-3.30" + } + }, + { + "id":"604d4874-7333-4f39-8395-5a956198333e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T02:40:52.294Z", + "completed":"2017-03-05T02:40:52.294Z", + "new_balance":"4077.47", + "value":"-0.47" + } + }, + { + "id":"df97a88d-5447-47f4-8aaf-e4c8eac487b9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T07:00:05.939Z", + "completed":"2017-03-05T07:00:05.939Z", + "new_balance":"4070.72", + "value":"-6.75" + } + }, + { + "id":"be727b3d-c8e4-4761-ad8f-63e68ab15163", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:22:24.760Z", + "completed":"2017-03-05T11:22:24.760Z", + "new_balance":"4069.42", + "value":"-1.30" + } + }, + { + "id":"5e2b4254-85aa-4608-90be-64398bd3bcfc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T12:10:27.144Z", + "completed":"2017-03-05T12:10:27.144Z", + "new_balance":"4061.72", + "value":"-7.70" + } + }, + { + "id":"7f5dcc6e-9f05-4f6a-9d4e-e9e4fafe4cda", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T03:32:45.359Z", + "completed":"2017-03-06T03:32:45.359Z", + "new_balance":"4055.08", + "value":"-6.64" + } + }, + { + "id":"8cf81ed6-a47f-4473-b5df-989b95647a67", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T17:40:56.133Z", + "completed":"2017-03-06T17:40:56.133Z", + "new_balance":"4047.34", + "value":"-7.74" + } + }, + { + "id":"ef7f19d1-d1d3-4b81-a77b-945d47a65e86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T01:05:17.033Z", + "completed":"2017-03-07T01:05:17.033Z", + "new_balance":"4046.54", + "value":"-0.80" + } + }, + { + "id":"9e94111c-7d0a-49e8-9ea9-4dd74e01c50a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T11:02:03.592Z", + "completed":"2017-03-07T11:02:03.592Z", + "new_balance":"4046.07", + "value":"-0.47" + } + }, + { + "id":"e0a53a1c-acc8-43c8-8d0c-1ed281bbdbf4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T02:23:03.782Z", + "completed":"2017-03-08T02:23:03.782Z", + "new_balance":"4045.30", + "value":"-0.77" + } + }, + { + "id":"46615661-4104-4239-a275-6486a6121f9c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T02:30:46.510Z", + "completed":"2017-03-08T02:30:46.510Z", + "new_balance":"4044.50", + "value":"-0.80" + } + }, + { + "id":"f869188b-7eb9-464a-aad7-054086044766", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T03:04:32.483Z", + "completed":"2017-03-10T03:04:32.483Z", + "new_balance":"4041.79", + "value":"-2.71" + } + }, + { + "id":"f8e5de2e-f149-493d-8294-8119204eec68", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T09:35:20.018Z", + "completed":"2017-03-11T09:35:20.018Z", + "new_balance":"4040.19", + "value":"-1.60" + } + }, + { + "id":"eaa8feda-4cf6-4b9a-b413-1077d4905566", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T12:42:57.751Z", + "completed":"2017-03-11T12:42:57.751Z", + "new_balance":"4039.72", + "value":"-0.47" + } + }, + { + "id":"736a37e9-b93d-407d-bafa-729467ab3cd7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T20:35:58.274Z", + "completed":"2017-03-11T20:35:58.274Z", + "new_balance":"4037.00", + "value":"-2.72" + } + }, + { + "id":"25670cff-2b10-45e2-9003-1aea52e9952b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:14:54.194Z", + "completed":"2017-03-12T12:14:54.194Z", + "new_balance":"4030.84", + "value":"-6.16" + } + }, + { + "id":"68cda6ff-c4f0-4683-b77e-aebb457275ae", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T13:46:13.644Z", + "completed":"2017-03-12T13:46:13.644Z", + "new_balance":"4028.25", + "value":"-2.59" + } + }, + { + "id":"a3fe6654-baeb-4b2b-963d-b5182d5baced", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T17:45:49.051Z", + "completed":"2017-03-12T17:45:49.051Z", + "new_balance":"4027.78", + "value":"-0.47" + } + }, + { + "id":"d862b22f-85f5-4e52-8ac4-ca634e86f902", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:58:02.962Z", + "completed":"2017-03-12T20:58:02.962Z", + "new_balance":"4017.63", + "value":"-10.15" + } + }, + { + "id":"bf2816b9-a683-4e16-9c56-9ed1732b9af3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T02:40:31.918Z", + "completed":"2017-03-13T02:40:31.918Z", + "new_balance":"4015.05", + "value":"-2.58" + } + }, + { + "id":"b0d1a8b9-5644-428b-a65e-8841103367de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T10:57:32.359Z", + "completed":"2017-03-13T10:57:32.359Z", + "new_balance":"4014.58", + "value":"-0.47" + } + }, + { + "id":"8615fc8f-6358-450d-b9dc-91d9cb9c5d56", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T00:15:06.258Z", + "completed":"2017-03-15T00:15:06.258Z", + "new_balance":"4010.46", + "value":"-4.12" + } + }, + { + "id":"671d1286-fa6e-46cf-a233-a504d6c877fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:04:44.620Z", + "completed":"2017-03-15T20:04:44.620Z", + "new_balance":"4005.54", + "value":"-4.92" + } + }, + { + "id":"f5c17f7d-ccda-4e64-ac95-86e0c5d99fe8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T04:04:52.394Z", + "completed":"2017-03-17T04:04:52.394Z", + "new_balance":"4001.15", + "value":"-4.39" + } + }, + { + "id":"2fd2e0e7-397d-46fc-a5db-12f48d1023f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T20:50:00.188Z", + "completed":"2017-03-18T20:50:00.188Z", + "new_balance":"3991.54", + "value":"-9.61" + } + }, + { + "id":"4d06cacb-08f3-42ff-8267-ab7987b99b74", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T17:15:42.311Z", + "completed":"2017-03-20T17:15:42.311Z", + "new_balance":"3979.18", + "value":"-12.36" + } + }, + { + "id":"81404c38-fb8c-46ff-a32f-c007b08f0ce6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T07:25:34.854Z", + "completed":"2017-03-22T07:25:34.854Z", + "new_balance":"3975.71", + "value":"-3.47" + } + }, + { + "id":"dc80920d-cb17-448e-b4fc-44989b74b8f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T04:25:46.630Z", + "completed":"2017-03-25T04:25:46.630Z", + "new_balance":"3975.24", + "value":"-0.47" + } + }, + { + "id":"3e95d26f-ecb0-490d-be7d-0842a718dd93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T09:08:10.531Z", + "completed":"2017-03-25T09:08:10.531Z", + "new_balance":"3974.09", + "value":"-1.15" + } + }, + { + "id":"977e7814-3250-4f56-bdb1-3da3d2c2474f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T06:30:29.414Z", + "completed":"2017-03-26T06:30:29.414Z", + "new_balance":"3972.74", + "value":"-1.35" + } + }, + { + "id":"8defb221-adcf-450e-b9e9-7f0165bc20de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T19:23:11.193Z", + "completed":"2017-03-26T19:23:11.193Z", + "new_balance":"3970.35", + "value":"-2.39" + } + }, + { + "id":"d8f042e6-7a7e-4da7-9175-2ef9b86d5c71", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T03:40:24.375Z", + "completed":"2017-03-27T03:40:24.375Z", + "new_balance":"3969.15", + "value":"-1.20" + } + }, + { + "id":"f3bc44d9-66f4-4a6f-8356-6f62cc98257c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T15:27:56.036Z", + "completed":"2017-03-28T15:27:56.036Z", + "new_balance":"3965.43", + "value":"-3.72" + } + }, + { + "id":"9659a155-292c-4960-b840-a8ff6f4c57c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T14:37:46.178Z", + "completed":"2017-03-31T14:37:46.178Z", + "new_balance":"3943.07", + "value":"-22.36" + } + }, + { + "id":"0a2a9804-671a-4493-a05e-73704b90c650", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T15:13:33.342Z", + "completed":"2017-04-01T15:13:33.342Z", + "new_balance":"4125.77", + "value":"182.70" + } + }, + { + "id":"11252120-2adc-48df-81e7-bc781fb80723", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:50:52.358Z", + "completed":"2017-04-01T21:50:52.358Z", + "new_balance":"4266.75", + "value":"140.98" + } + }, + { + "id":"37a44025-8d3a-448d-af41-11d5b0f06677", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T22:39:00.605Z", + "completed":"2017-04-01T22:39:00.605Z", + "new_balance":"4235.03", + "value":"-31.72" + } + }, + { + "id":"0c2f00f9-9290-47d8-b30f-2467bebd4fa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T00:05:01.765Z", + "completed":"2017-04-03T00:05:01.765Z", + "new_balance":"4234.36", + "value":"-0.67" + } + }, + { + "id":"238f31ad-4107-4e24-aaa0-92c9b8ae9018", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T15:36:54.102Z", + "completed":"2017-04-03T15:36:54.102Z", + "new_balance":"4229.54", + "value":"-4.82" + } + }, + { + "id":"7cac3b97-8102-4be7-aef6-ea5de8e1f90a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T16:26:13.768Z", + "completed":"2017-04-03T16:26:13.768Z", + "new_balance":"4227.80", + "value":"-1.74" + } + }, + { + "id":"e284cdff-0c03-4f97-a132-70e5225326de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:30:13.222Z", + "completed":"2017-04-05T15:30:13.222Z", + "new_balance":"4226.40", + "value":"-1.40" + } + }, + { + "id":"2887a419-787e-45cf-b0c3-f8c1b976169e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T23:54:30.602Z", + "completed":"2017-04-05T23:54:30.602Z", + "new_balance":"4225.88", + "value":"-0.52" + } + }, + { + "id":"e1eb954f-d9cf-4e0d-b007-d319854efa61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T18:33:55.960Z", + "completed":"2017-04-06T18:33:55.960Z", + "new_balance":"4224.28", + "value":"-1.60" + } + }, + { + "id":"38fb1647-3734-4dff-8b8c-1bb9e238dfa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T23:31:47.334Z", + "completed":"2017-04-09T23:31:47.334Z", + "new_balance":"4221.69", + "value":"-2.59" + } + }, + { + "id":"70d1034c-a172-46e3-9023-1111d7bcf5df", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T22:15:33.293Z", + "completed":"2017-04-10T22:15:33.293Z", + "new_balance":"4220.01", + "value":"-1.68" + } + }, + { + "id":"64626dea-c911-42b7-a70c-55ad4232dfb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T04:45:31.966Z", + "completed":"2017-04-11T04:45:31.966Z", + "new_balance":"4217.70", + "value":"-2.31" + } + }, + { + "id":"362fec0b-1a38-41c5-ab0f-4a37abec1187", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:53:31.200Z", + "completed":"2017-04-11T23:53:31.200Z", + "new_balance":"4215.83", + "value":"-1.87" + } + }, + { + "id":"2a13cb74-88a6-45c0-a7c8-82dfa7aa5810", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T08:52:25.477Z", + "completed":"2017-04-13T08:52:25.477Z", + "new_balance":"4208.13", + "value":"-7.70" + } + }, + { + "id":"711f837d-1433-46eb-b2c4-8110ad31f776", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T09:12:07.001Z", + "completed":"2017-04-13T09:12:07.001Z", + "new_balance":"4202.00", + "value":"-6.13" + } + }, + { + "id":"e064b092-8a85-4102-873d-b8738fa116cd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T07:38:42.488Z", + "completed":"2017-04-15T07:38:42.488Z", + "new_balance":"4197.47", + "value":"-4.53" + } + }, + { + "id":"b4c8335f-c0de-4802-9e9a-31dfa501b293", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T02:04:59.213Z", + "completed":"2017-04-16T02:04:59.213Z", + "new_balance":"4197.00", + "value":"-0.47" + } + }, + { + "id":"b0c2d01a-5b54-4de7-8deb-1b8acbf76703", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T21:45:11.627Z", + "completed":"2017-04-16T21:45:11.627Z", + "new_balance":"4196.19", + "value":"-0.81" + } + }, + { + "id":"0cd9fefe-6aae-45e3-8fd0-af9959268417", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T03:23:21.122Z", + "completed":"2017-04-18T03:23:21.122Z", + "new_balance":"4190.71", + "value":"-5.48" + } + }, + { + "id":"5b803594-8c37-4ba1-a27d-219ae16177a8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T06:17:18.561Z", + "completed":"2017-04-23T06:17:18.561Z", + "new_balance":"4188.28", + "value":"-2.43" + } + }, + { + "id":"791fd869-e916-4387-9981-ed5af4f8d645", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T05:13:29.389Z", + "completed":"2017-04-24T05:13:29.389Z", + "new_balance":"4186.71", + "value":"-1.57" + } + }, + { + "id":"7b50d72b-5745-4cd1-b65c-07a230e09bd6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T12:44:42.965Z", + "completed":"2017-04-24T12:44:42.965Z", + "new_balance":"4183.41", + "value":"-3.30" + } + }, + { + "id":"c242310c-9317-40cf-a439-11ff28e53cc8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T02:04:38.603Z", + "completed":"2017-04-26T02:04:38.603Z", + "new_balance":"4182.89", + "value":"-0.52" + } + }, + { + "id":"105b764d-a32e-42c1-bd0a-19f93198a1c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T19:45:54.555Z", + "completed":"2017-04-28T19:45:54.555Z", + "new_balance":"4160.53", + "value":"-22.36" + } + }, + { + "id":"9a8d4aea-9c70-446e-bb3c-97861c017e7c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T21:50:40.540Z", + "completed":"2017-04-28T21:50:40.540Z", + "new_balance":"4156.81", + "value":"-3.72" + } + }, + { + "id":"45f702fa-7d84-42d5-9a8f-c16415b502f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T05:32:26.653Z", + "completed":"2017-05-02T05:32:26.653Z", + "new_balance":"4156.14", + "value":"-0.67" + } + }, + { + "id":"3b92ea2e-83f5-4078-b028-195caa859429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T18:11:03.778Z", + "completed":"2017-05-02T18:11:03.778Z", + "new_balance":"4143.04", + "value":"-13.10" + } + }, + { + "id":"005d913f-12fd-4f92-9835-54842d495d2e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T21:46:17.707Z", + "completed":"2017-05-02T21:46:17.707Z", + "new_balance":"4141.72", + "value":"-1.32" + } + }, + { + "id":"9b21b939-2342-440a-a18c-ada7a8b4e86c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T22:15:01.187Z", + "completed":"2017-05-02T22:15:01.187Z", + "new_balance":"4110.00", + "value":"-31.72" + } + }, + { + "id":"5ffc05bb-c173-4dbb-82b0-3c19e6b4a17f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T05:11:49.597Z", + "completed":"2017-05-06T05:11:49.597Z", + "new_balance":"4107.81", + "value":"-2.19" + } + }, + { + "id":"ed122034-acba-4a74-beaa-20cb8c8cd059", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T12:11:06.806Z", + "completed":"2017-05-06T12:11:06.806Z", + "new_balance":"4105.50", + "value":"-2.31" + } + }, + { + "id":"7065d893-0c80-4668-a61f-853a0216db53", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T03:26:35.771Z", + "completed":"2017-05-07T03:26:35.771Z", + "new_balance":"4097.80", + "value":"-7.70" + } + }, + { + "id":"b1f182ce-3de9-4b69-9c74-b5a3f8e28e4b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T10:55:16.658Z", + "completed":"2017-05-07T10:55:16.658Z", + "new_balance":"4093.23", + "value":"-4.57" + } + }, + { + "id":"bfe23ebf-01a8-480b-8a8a-3ca84e90bfb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T02:24:40.404Z", + "completed":"2017-05-09T02:24:40.404Z", + "new_balance":"4234.21", + "value":"140.98" + } + }, + { + "id":"00b31390-cc13-46c6-9f4d-af09e7f9e913", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T12:34:24.395Z", + "completed":"2017-05-14T12:34:24.395Z", + "new_balance":"4230.07", + "value":"-4.14" + } + }, + { + "id":"eed8e0e0-6219-4738-afe5-4d95b30dd16c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T22:22:47.560Z", + "completed":"2017-05-14T22:22:47.560Z", + "new_balance":"4227.67", + "value":"-2.40" + } + }, + { + "id":"6c9c5e34-dcfe-46bb-bf4b-378d74798db9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T17:56:51.374Z", + "completed":"2017-05-16T17:56:51.374Z", + "new_balance":"4227.15", + "value":"-0.52" + } + }, + { + "id":"f901573d-f030-49a0-bf80-ccd37b91f2f0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T08:54:39.795Z", + "completed":"2017-05-21T08:54:39.795Z", + "new_balance":"4224.27", + "value":"-2.88" + } + }, + { + "id":"7ce1cbff-3f85-4c71-9576-5676f3d514ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T04:22:21.577Z", + "completed":"2017-05-23T04:22:21.577Z", + "new_balance":"4221.96", + "value":"-2.31" + } + }, + { + "id":"7076e47b-43fd-4c2f-8138-db7f714ecdd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T16:00:45.406Z", + "completed":"2017-05-23T16:00:45.406Z", + "new_balance":"4221.49", + "value":"-0.47" + } + }, + { + "id":"9634603e-7c7a-445e-8847-23f2fbc01cc6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T07:09:16.846Z", + "completed":"2017-05-24T07:09:16.846Z", + "new_balance":"4216.88", + "value":"-4.61" + } + }, + { + "id":"bf4eb9ca-94c1-4a5c-b5b9-1170984a2c0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T13:46:29.537Z", + "completed":"2017-05-27T13:46:29.537Z", + "new_balance":"4216.29", + "value":"-0.59" + } + }, + { + "id":"3f836d0b-e1d9-403d-95ab-57a1ae771b4c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T00:55:17.262Z", + "completed":"2017-05-30T00:55:17.262Z", + "new_balance":"4193.93", + "value":"-22.36" + } + }, + { + "id":"70a31fec-e036-4a24-8607-4d6ebcbd06a4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T03:42:51.168Z", + "completed":"2017-05-30T03:42:51.168Z", + "new_balance":"4190.21", + "value":"-3.72" + } + }, + { + "id":"7adca890-e92a-49a5-9947-736b0083b3a1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T06:46:51.280Z", + "completed":"2017-06-01T06:46:51.280Z", + "new_balance":"4158.49", + "value":"-31.72" + } + }, + { + "id":"09972c82-e063-4801-87e0-42c80931f57e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T20:28:34.065Z", + "completed":"2017-06-01T20:28:34.065Z", + "new_balance":"4299.47", + "value":"140.98" + } + }, + { + "id":"60057fe5-6764-426f-8975-b86d7d0e24a8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T01:04:10.952Z", + "completed":"2017-06-04T01:04:10.952Z", + "new_balance":"4297.42", + "value":"-2.05" + } + }, + { + "id":"5aea79d0-06a6-4129-a2f1-cf2430a0647b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:37:53.452Z", + "completed":"2017-06-04T06:37:53.452Z", + "new_balance":"4293.96", + "value":"-3.46" + } + }, + { + "id":"39e549b9-a8c1-4e4d-9388-59ff9bb6a889", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T04:14:11.235Z", + "completed":"2017-06-11T04:14:11.235Z", + "new_balance":"4289.35", + "value":"-4.61" + } + }, + { + "id":"3f6ca275-9235-4288-80fd-b63f5be1360e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:12:31.991Z", + "completed":"2017-06-11T22:12:31.991Z", + "new_balance":"4286.05", + "value":"-3.30" + } + }, + { + "id":"860c38f7-7a4a-4a0d-83b5-b78e7b84944b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T03:23:46.892Z", + "completed":"2017-06-12T03:23:46.892Z", + "new_balance":"4284.75", + "value":"-1.30" + } + }, + { + "id":"2f8518e5-a44d-415c-928b-a3935c61840c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T09:48:45.975Z", + "completed":"2017-06-12T09:48:45.975Z", + "new_balance":"4277.05", + "value":"-7.70" + } + }, + { + "id":"20c94032-9c95-4bcb-94c3-cdbfa0885fd6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T15:20:22.984Z", + "completed":"2017-06-12T15:20:22.984Z", + "new_balance":"4276.58", + "value":"-0.47" + } + }, + { + "id":"809b2be4-1561-409f-96a5-301f4bd7e467", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T09:13:18.655Z", + "completed":"2017-06-13T09:13:18.655Z", + "new_balance":"4269.83", + "value":"-6.75" + } + }, + { + "id":"2a56b139-8816-403d-a8c5-edfd3778217e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T10:39:22.643Z", + "completed":"2017-06-13T10:39:22.643Z", + "new_balance":"4262.09", + "value":"-7.74" + } + }, + { + "id":"c76e1776-1b8b-4333-bf0a-21765f67297a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T15:06:03.395Z", + "completed":"2017-06-13T15:06:03.395Z", + "new_balance":"4255.45", + "value":"-6.64" + } + }, + { + "id":"98e76c53-4264-4fac-afb3-345ab2e41606", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T08:28:03.039Z", + "completed":"2017-06-14T08:28:03.039Z", + "new_balance":"4254.65", + "value":"-0.80" + } + }, + { + "id":"8527d616-c826-4f8c-afc5-1ca96e1cf51f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T13:00:01.492Z", + "completed":"2017-06-14T13:00:01.492Z", + "new_balance":"4253.85", + "value":"-0.80" + } + }, + { + "id":"32a7d953-cd9f-4bb7-b1e5-cf24aa5f95b3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T13:20:40.924Z", + "completed":"2017-06-14T13:20:40.924Z", + "new_balance":"4253.38", + "value":"-0.47" + } + }, + { + "id":"a5648738-9b81-452e-b8d4-f4ef2c54edf6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T03:50:55.168Z", + "completed":"2017-06-15T03:50:55.168Z", + "new_balance":"4250.67", + "value":"-2.71" + } + }, + { + "id":"bf75924a-eac3-4a1a-9767-a7dce0c11265", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T11:07:48.080Z", + "completed":"2017-06-15T11:07:48.080Z", + "new_balance":"4250.20", + "value":"-0.47" + } + }, + { + "id":"52432d4e-7f65-44ac-afbb-c66d97174f54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T13:06:42.554Z", + "completed":"2017-06-15T13:06:42.554Z", + "new_balance":"4249.43", + "value":"-0.77" + } + }, + { + "id":"e0811f6f-0a23-4712-b276-bffa525da42b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T08:10:08.876Z", + "completed":"2017-06-16T08:10:08.876Z", + "new_balance":"4246.71", + "value":"-2.72" + } + }, + { + "id":"4dc27e46-8051-4e45-aabc-7681e6c710ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T06:41:23.152Z", + "completed":"2017-06-17T06:41:23.152Z", + "new_balance":"4245.11", + "value":"-1.60" + } + }, + { + "id":"ceb380d0-e14d-48b4-83d3-4fd4d92827d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T03:37:19.728Z", + "completed":"2017-06-18T03:37:19.728Z", + "new_balance":"4234.96", + "value":"-10.15" + } + }, + { + "id":"c6e9d6e3-654f-4a38-bf0d-0e499b46f413", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T06:14:22.320Z", + "completed":"2017-06-18T06:14:22.320Z", + "new_balance":"4228.80", + "value":"-6.16" + } + }, + { + "id":"740f1e88-9bad-444f-aa4e-36b1464d1afd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:33:18.491Z", + "completed":"2017-06-18T08:33:18.491Z", + "new_balance":"4228.33", + "value":"-0.47" + } + }, + { + "id":"7b6408d0-eef1-46d6-a40f-dfcb0f240ea2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T11:55:44.000Z", + "completed":"2017-06-18T11:55:44.000Z", + "new_balance":"4225.74", + "value":"-2.59" + } + }, + { + "id":"c692cf59-0508-40ba-8805-96c75edf7b5c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T15:08:15.339Z", + "completed":"2017-06-18T15:08:15.339Z", + "new_balance":"4225.27", + "value":"-0.47" + } + }, + { + "id":"0ca7959d-a8ec-47a3-aa31-de0980b9f503", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T16:37:26.083Z", + "completed":"2017-06-18T16:37:26.083Z", + "new_balance":"4222.69", + "value":"-2.58" + } + }, + { + "id":"c45cc472-5a38-4245-b788-91d345044b3a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T00:17:06.226Z", + "completed":"2017-06-19T00:17:06.226Z", + "new_balance":"4218.57", + "value":"-4.12" + } + }, + { + "id":"47cd2ab9-072f-4ca8-9cf6-cfcce26f663d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:58:29.858Z", + "completed":"2017-06-19T00:58:29.858Z", + "new_balance":"4214.18", + "value":"-4.39" + } + }, + { + "id":"5026abe7-a882-4ecd-a589-24e59ad507c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T04:31:04.536Z", + "completed":"2017-06-19T04:31:04.536Z", + "new_balance":"4209.26", + "value":"-4.92" + } + }, + { + "id":"b164a041-e23d-4156-896f-8eec32d8492b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T07:01:09.651Z", + "completed":"2017-06-21T07:01:09.651Z", + "new_balance":"4199.65", + "value":"-9.61" + } + }, + { + "id":"5d88e71a-1b17-491e-99e5-8514fa573a31", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T20:11:01.349Z", + "completed":"2017-06-21T20:11:01.349Z", + "new_balance":"4187.29", + "value":"-12.36" + } + }, + { + "id":"9effd9de-43cd-46b3-98af-c73dbc44106e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T02:52:35.749Z", + "completed":"2017-06-22T02:52:35.749Z", + "new_balance":"4183.82", + "value":"-3.47" + } + }, + { + "id":"2edbde75-63be-4148-974e-9aaff5eb4dc5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T18:02:56.873Z", + "completed":"2017-06-22T18:02:56.873Z", + "new_balance":"4182.67", + "value":"-1.15" + } + }, + { + "id":"fc5ef6ce-67dd-4113-ba78-4f292005c680", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T22:53:53.025Z", + "completed":"2017-06-22T22:53:53.025Z", + "new_balance":"4182.20", + "value":"-0.47" + } + }, + { + "id":"03ec4090-5b38-45e1-8fab-3a0b029fb52d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T13:37:52.672Z", + "completed":"2017-06-23T13:37:52.672Z", + "new_balance":"4180.85", + "value":"-1.35" + } + }, + { + "id":"a8df0f34-8889-4f7b-93c0-8eef35d019b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T03:35:42.730Z", + "completed":"2017-06-24T03:35:42.730Z", + "new_balance":"4178.46", + "value":"-2.39" + } + }, + { + "id":"253e61f3-7f36-4793-8794-1bb85133b9ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T14:38:52.123Z", + "completed":"2017-06-26T14:38:52.123Z", + "new_balance":"4177.26", + "value":"-1.20" + } + }, + { + "id":"3ae3e239-937f-456e-84fb-23885170077f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T09:11:35.987Z", + "completed":"2017-06-30T09:11:35.987Z", + "new_balance":"4173.54", + "value":"-3.72" + } + }, + { + "id":"7bfddfa4-9fab-4b39-929f-248383bcb6a2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T17:00:21.954Z", + "completed":"2017-06-30T17:00:21.954Z", + "new_balance":"4151.18", + "value":"-22.36" + } + }, + { + "id":"0efe4ffd-b5dd-46da-8003-358b0f958d62", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T05:49:20.403Z", + "completed":"2017-07-01T05:49:20.403Z", + "new_balance":"4292.16", + "value":"140.98" + } + }, + { + "id":"8e3c14a2-5e09-48e0-8d20-9e867cd08592", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T12:29:36.396Z", + "completed":"2017-07-01T12:29:36.396Z", + "new_balance":"4474.86", + "value":"182.70" + } + }, + { + "id":"e4fa21bd-9d60-41ae-9c75-3c299e264ed9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T08:29:43.529Z", + "completed":"2017-07-03T08:29:43.529Z", + "new_balance":"4443.14", + "value":"-31.72" + } + }, + { + "id":"12d41663-f747-4ca5-b07a-c0bb5dfc0fcb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T05:14:25.216Z", + "completed":"2017-07-04T05:14:25.216Z", + "new_balance":"4438.32", + "value":"-4.82" + } + }, + { + "id":"c2ca00e8-daca-4e3c-a773-4d0e4856e616", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T07:49:28.072Z", + "completed":"2017-07-04T07:49:28.072Z", + "new_balance":"4436.58", + "value":"-1.74" + } + }, + { + "id":"f6abe4f7-6d43-48f4-8e13-e5feca6e2bb9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T10:03:18.330Z", + "completed":"2017-07-04T10:03:18.330Z", + "new_balance":"4435.91", + "value":"-0.67" + } + }, + { + "id":"e569ce71-f5f5-45ce-aac6-cafcf3b61f57", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T18:39:20.071Z", + "completed":"2017-07-05T18:39:20.071Z", + "new_balance":"4434.51", + "value":"-1.40" + } + }, + { + "id":"c3c3781a-6f91-470f-9f2c-3b1988658ccb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T01:56:32.081Z", + "completed":"2017-07-07T01:56:32.081Z", + "new_balance":"4433.99", + "value":"-0.52" + } + }, + { + "id":"1d1f2418-ef49-4ec3-8142-138159396d2d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T03:58:10.221Z", + "completed":"2017-07-11T03:58:10.221Z", + "new_balance":"4432.12", + "value":"-1.87" + } + }, + { + "id":"1aeae81e-0c2a-4d03-98fa-4c5061109033", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T12:27:03.742Z", + "completed":"2017-07-11T12:27:03.742Z", + "new_balance":"4429.81", + "value":"-2.31" + } + }, + { + "id":"9f3abbd1-5d46-400b-896d-cc664fbd87ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T13:21:54.387Z", + "completed":"2017-07-11T13:21:54.387Z", + "new_balance":"4427.22", + "value":"-2.59" + } + }, + { + "id":"166d1ace-5afe-41ee-91ea-5096f5126b84", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T22:08:57.434Z", + "completed":"2017-07-11T22:08:57.434Z", + "new_balance":"4425.62", + "value":"-1.60" + } + }, + { + "id":"6116e0ef-fc77-4ad5-b536-5de77602375b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T22:11:59.279Z", + "completed":"2017-07-11T22:11:59.279Z", + "new_balance":"4423.94", + "value":"-1.68" + } + }, + { + "id":"64e53bcf-f857-49dc-b20e-252a30db553f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T14:24:49.209Z", + "completed":"2017-07-13T14:24:49.209Z", + "new_balance":"4416.24", + "value":"-7.70" + } + }, + { + "id":"17ede34d-2cce-4f33-8399-1782b064a9fd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T15:53:12.538Z", + "completed":"2017-07-13T15:53:12.538Z", + "new_balance":"4410.11", + "value":"-6.13" + } + }, + { + "id":"38f93367-98dd-4c69-8762-cb141e210a63", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T18:37:43.690Z", + "completed":"2017-07-16T18:37:43.690Z", + "new_balance":"4405.58", + "value":"-4.53" + } + }, + { + "id":"eccbea91-f5f7-44f1-ac4b-fef193362777", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T19:44:23.467Z", + "completed":"2017-07-16T19:44:23.467Z", + "new_balance":"4414.57", + "value":"8.99" + } + }, + { + "id":"b0d09e06-e5e6-46d6-b088-9887b08b04e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T07:44:03.853Z", + "completed":"2017-07-17T07:44:03.853Z", + "new_balance":"4414.10", + "value":"-0.47" + } + }, + { + "id":"362779f1-6537-4f4d-aac4-725edfbb4cb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T15:38:25.882Z", + "completed":"2017-07-17T15:38:25.882Z", + "new_balance":"4413.29", + "value":"-0.81" + } + }, + { + "id":"e3f666b7-68ad-45c0-b8d0-6984150f728e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T13:03:49.983Z", + "completed":"2017-07-19T13:03:49.983Z", + "new_balance":"4407.81", + "value":"-5.48" + } + }, + { + "id":"ddd815f9-8f15-4020-9b7b-6e23d8e82ed8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T12:41:03.854Z", + "completed":"2017-07-21T12:41:03.854Z", + "new_balance":"4405.38", + "value":"-2.43" + } + }, + { + "id":"57444c81-b6f6-4c00-bd42-4a495de48ad5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T04:43:14.968Z", + "completed":"2017-07-23T04:43:14.968Z", + "new_balance":"4402.08", + "value":"-3.30" + } + }, + { + "id":"9f3816ce-67ec-476e-9548-aa039b1f8361", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T14:29:00.528Z", + "completed":"2017-07-25T14:29:00.528Z", + "new_balance":"4400.51", + "value":"-1.57" + } + }, + { + "id":"80cbdf6e-ac14-41a4-acf5-e39c22e00e21", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T14:47:40.561Z", + "completed":"2017-07-27T14:47:40.561Z", + "new_balance":"4399.99", + "value":"-0.52" + } + }, + { + "id":"e59a6486-685f-4f7f-a2e7-72a4618aba22", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T09:43:23.409Z", + "completed":"2017-07-28T09:43:23.409Z", + "new_balance":"4377.63", + "value":"-22.36" + } + }, + { + "id":"22147528-ee4a-4245-91ce-9c5e646bbb36", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T16:28:44.779Z", + "completed":"2017-07-28T16:28:44.779Z", + "new_balance":"4373.91", + "value":"-3.72" + } + }, + { + "id":"92284f7f-498a-46c7-b9f8-10769e4860e0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T05:42:57.112Z", + "completed":"2017-08-01T05:42:57.112Z", + "new_balance":"4514.89", + "value":"140.98" + } + }, + { + "id":"2b0845b0-d748-490f-bb33-057dbcc3a88e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T04:49:28.806Z", + "completed":"2017-08-03T04:49:28.806Z", + "new_balance":"4501.79", + "value":"-13.10" + } + }, + { + "id":"485f87a3-0d25-4268-9f53-4a65531e5160", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T10:35:18.985Z", + "completed":"2017-08-03T10:35:18.985Z", + "new_balance":"4470.07", + "value":"-31.72" + } + }, + { + "id":"70ee1748-1e51-448c-9237-cb5da480bda2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T05:17:05.751Z", + "completed":"2017-08-04T05:17:05.751Z", + "new_balance":"4468.75", + "value":"-1.32" + } + }, + { + "id":"c3ce9715-4b06-4cb4-aada-30546beb9827", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T07:59:42.462Z", + "completed":"2017-08-07T07:59:42.462Z", + "new_balance":"4466.44", + "value":"-2.31" + } + }, + { + "id":"d48d3695-9068-411f-93ff-8360c1862608", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T11:41:23.362Z", + "completed":"2017-08-07T11:41:23.362Z", + "new_balance":"4465.77", + "value":"-0.67" + } + }, + { + "id":"bb27e226-b0f9-4760-94fe-ce4b285ae51b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T20:38:55.681Z", + "completed":"2017-08-07T20:38:55.681Z", + "new_balance":"4463.58", + "value":"-2.19" + } + }, + { + "id":"4a984bf4-aa77-4545-8355-0cbfbadd0b90", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T03:56:34.357Z", + "completed":"2017-08-08T03:56:34.357Z", + "new_balance":"4459.01", + "value":"-4.57" + } + }, + { + "id":"596ac6ff-6720-41cc-97d5-07ad90fae5f6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:38:13.101Z", + "completed":"2017-08-08T16:38:13.101Z", + "new_balance":"4454.87", + "value":"-4.14" + } + }, + { + "id":"ca4698d1-843b-4d68-b9a8-51f3235c39dd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T21:30:29.254Z", + "completed":"2017-08-08T21:30:29.254Z", + "new_balance":"4447.17", + "value":"-7.70" + } + }, + { + "id":"24282eca-35b9-40c2-b32f-7f7449826b34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T06:01:05.412Z", + "completed":"2017-08-09T06:01:05.412Z", + "new_balance":"4444.77", + "value":"-2.40" + } + }, + { + "id":"3015b606-45a6-4a38-b040-2ac7a9df670a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T17:46:02.885Z", + "completed":"2017-08-11T17:46:02.885Z", + "new_balance":"4444.25", + "value":"-0.52" + } + }, + { + "id":"8d7ea94c-edad-480e-8da1-1bdfc7c896ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T05:08:29.951Z", + "completed":"2017-08-14T05:08:29.951Z", + "new_balance":"4441.37", + "value":"-2.88" + } + }, + { + "id":"b0d3fe4f-268c-4cbf-847c-358326241ed8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T17:41:51.272Z", + "completed":"2017-08-15T17:41:51.272Z", + "new_balance":"4439.06", + "value":"-2.31" + } + }, + { + "id":"9708cffb-864e-4e82-92b0-dfdbba85ae79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T10:45:26.736Z", + "completed":"2017-08-17T10:45:26.736Z", + "new_balance":"4434.45", + "value":"-4.61" + } + }, + { + "id":"a4edadd2-2e8d-4552-8787-b8f72202be54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T20:10:44.950Z", + "completed":"2017-08-17T20:10:44.950Z", + "new_balance":"4433.98", + "value":"-0.47" + } + }, + { + "id":"b423d07c-ad2c-4e67-a59e-dfff3b692253", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T21:19:07.588Z", + "completed":"2017-08-19T21:19:07.588Z", + "new_balance":"4433.39", + "value":"-0.59" + } + }, + { + "id":"500df5dc-fa37-4373-b505-ba44cd2611e9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T18:55:30.748Z", + "completed":"2017-08-25T18:55:30.748Z", + "new_balance":"4444.79", + "value":"11.40" + } + }, + { + "id":"527eb797-ec5d-4e4c-8b78-b9b8f19ed37c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T06:16:04.898Z", + "completed":"2017-08-28T06:16:04.898Z", + "new_balance":"4441.07", + "value":"-3.72" + } + }, + { + "id":"76ad9c35-9ea9-4aae-b65d-218d159fe591", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T15:35:23.788Z", + "completed":"2017-08-28T15:35:23.788Z", + "new_balance":"4418.71", + "value":"-22.36" + } + }, + { + "id":"93782f72-91e5-4826-95f4-f2a780c8d8f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T15:28:50.277Z", + "completed":"2017-09-01T15:28:50.277Z", + "new_balance":"4559.69", + "value":"140.98" + } + }, + { + "id":"989ac84d-2eec-4826-89de-97ea178787f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T10:07:50.259Z", + "completed":"2017-09-03T10:07:50.259Z", + "new_balance":"4527.97", + "value":"-31.72" + } + }, + { + "id":"8ba77485-6fcc-4bee-9884-20c6a5cf00ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T10:23:02.881Z", + "completed":"2017-09-04T10:23:02.881Z", + "new_balance":"4524.67", + "value":"-3.30" + } + }, + { + "id":"1db6a19b-f98b-4c42-96fd-f5ec136b4b4c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T10:59:54.042Z", + "completed":"2017-09-04T10:59:54.042Z", + "new_balance":"4520.06", + "value":"-4.61" + } + }, + { + "id":"a5cc5070-4538-4837-bef8-20f6fe2d782d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T15:35:13.584Z", + "completed":"2017-09-04T15:35:13.584Z", + "new_balance":"4516.60", + "value":"-3.46" + } + }, + { + "id":"8b5fcdd0-3e27-4b50-9f33-67cce055cd86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T18:33:16.708Z", + "completed":"2017-09-04T18:33:16.708Z", + "new_balance":"4514.55", + "value":"-2.05" + } + }, + { + "id":"6dc9780f-5f8c-4385-9a5c-66f1185c2691", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T01:09:48.932Z", + "completed":"2017-09-05T01:09:48.932Z", + "new_balance":"4506.81", + "value":"-7.74" + } + }, + { + "id":"48ab069c-1a27-4c84-a67b-924f25e1f84e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T09:19:43.453Z", + "completed":"2017-09-05T09:19:43.453Z", + "new_balance":"4500.17", + "value":"-6.64" + } + }, + { + "id":"21f929f1-f29e-4a2d-b6cf-146b9a443394", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T14:43:00.799Z", + "completed":"2017-09-05T14:43:00.799Z", + "new_balance":"4499.70", + "value":"-0.47" + } + }, + { + "id":"fa171609-6028-474f-bbd5-44440ebe289f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T16:56:19.129Z", + "completed":"2017-09-05T16:56:19.129Z", + "new_balance":"4498.40", + "value":"-1.30" + } + }, + { + "id":"10e316dd-721e-43cc-aa5a-11c18290a7ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T18:05:35.578Z", + "completed":"2017-09-05T18:05:35.578Z", + "new_balance":"4491.65", + "value":"-6.75" + } + }, + { + "id":"16cee330-ce2b-4657-b893-8163c5a3cae4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T23:26:32.780Z", + "completed":"2017-09-05T23:26:32.780Z", + "new_balance":"4483.95", + "value":"-7.70" + } + }, + { + "id":"486e36ab-0d5d-4b74-9686-d74bd4edb153", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T01:08:18.168Z", + "completed":"2017-09-07T01:08:18.168Z", + "new_balance":"4483.48", + "value":"-0.47" + } + }, + { + "id":"124db640-5c08-4bf6-b681-6a5833f711a6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T02:15:37.005Z", + "completed":"2017-09-07T02:15:37.005Z", + "new_balance":"4482.68", + "value":"-0.80" + } + }, + { + "id":"7488a363-af1c-48c3-8b42-22afa76d0460", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T08:48:27.557Z", + "completed":"2017-09-07T08:48:27.557Z", + "new_balance":"4481.91", + "value":"-0.77" + } + }, + { + "id":"9f0aa66b-a057-4b25-8344-8f9ce04ad6c9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T16:49:33.672Z", + "completed":"2017-09-07T16:49:33.672Z", + "new_balance":"4481.11", + "value":"-0.80" + } + }, + { + "id":"6efa5a1c-02f3-49a3-8086-1a89af1c9cf0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T20:37:39.088Z", + "completed":"2017-09-10T20:37:39.088Z", + "new_balance":"4478.40", + "value":"-2.71" + } + }, + { + "id":"4c3becca-b5dc-4c07-acec-13af45f5c54f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T04:47:02.596Z", + "completed":"2017-09-11T04:47:02.596Z", + "new_balance":"4477.93", + "value":"-0.47" + } + }, + { + "id":"33432e1f-0241-462c-842d-5c5007588719", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T12:24:53.675Z", + "completed":"2017-09-11T12:24:53.675Z", + "new_balance":"4476.33", + "value":"-1.60" + } + }, + { + "id":"028933a4-f292-4be2-bcb9-a33a55cfc96e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T16:13:38.752Z", + "completed":"2017-09-11T16:13:38.752Z", + "new_balance":"4473.61", + "value":"-2.72" + } + }, + { + "id":"c410514b-242a-4f22-a631-c3002c6fe0f0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T01:49:00.927Z", + "completed":"2017-09-12T01:49:00.927Z", + "new_balance":"4467.45", + "value":"-6.16" + } + }, + { + "id":"296574c0-2cce-4f82-8bad-f2eea8faf774", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T02:41:36.850Z", + "completed":"2017-09-12T02:41:36.850Z", + "new_balance":"4466.98", + "value":"-0.47" + } + }, + { + "id":"49208448-349a-48fa-86bb-dc37726424ef", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T11:07:03.743Z", + "completed":"2017-09-12T11:07:03.743Z", + "new_balance":"4464.39", + "value":"-2.59" + } + }, + { + "id":"1886a2be-c824-4577-8579-783692bdbf54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:55:52.983Z", + "completed":"2017-09-12T15:55:52.983Z", + "new_balance":"4454.24", + "value":"-10.15" + } + }, + { + "id":"ca793a4b-8947-46e9-a149-0f61f40a15ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T06:31:29.936Z", + "completed":"2017-09-13T06:31:29.936Z", + "new_balance":"4451.66", + "value":"-2.58" + } + }, + { + "id":"83420dea-e2d3-4fc4-b297-0dfe27bac695", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T08:17:17.015Z", + "completed":"2017-09-14T08:17:17.015Z", + "new_balance":"4451.19", + "value":"-0.47" + } + }, + { + "id":"1ee89df8-4bdf-4b81-8314-d98d733cd021", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T16:45:24.736Z", + "completed":"2017-09-14T16:45:24.736Z", + "new_balance":"4446.27", + "value":"-4.92" + } + }, + { + "id":"9155acf9-5dd7-4f88-9483-1f54e6717429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T23:34:01.240Z", + "completed":"2017-09-16T23:34:01.240Z", + "new_balance":"4442.15", + "value":"-4.12" + } + }, + { + "id":"2d825905-70ac-4a60-bda9-0e587bf352f9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T01:55:35.746Z", + "completed":"2017-09-18T01:55:35.746Z", + "new_balance":"4437.76", + "value":"-4.39" + } + }, + { + "id":"c73350a4-5bee-4321-a19e-1da633cf486a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T12:46:20.073Z", + "completed":"2017-09-21T12:46:20.073Z", + "new_balance":"4428.15", + "value":"-9.61" + } + }, + { + "id":"33f0ecf7-6792-48b5-8d8f-81d32631fd6d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T15:26:39.063Z", + "completed":"2017-09-21T15:26:39.063Z", + "new_balance":"4415.79", + "value":"-12.36" + } + }, + { + "id":"b219149a-cb80-4331-bfca-c933e70aad82", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T18:57:27.451Z", + "completed":"2017-09-23T18:57:27.451Z", + "new_balance":"4412.32", + "value":"-3.47" + } + }, + { + "id":"a78b8bef-2c14-4d0e-a14a-a73cbb08047a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T16:24:06.429Z", + "completed":"2017-09-24T16:24:06.429Z", + "new_balance":"4411.85", + "value":"-0.47" + } + }, + { + "id":"ae4ebc28-2d09-4885-b1d1-147227a55755", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:53:00.126Z", + "completed":"2017-09-26T07:53:00.126Z", + "new_balance":"4410.70", + "value":"-1.15" + } + }, + { + "id":"5e3782b2-dcc6-4c55-b6df-2e7449d47d4f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T17:19:48.217Z", + "completed":"2017-09-26T17:19:48.217Z", + "new_balance":"4408.31", + "value":"-2.39" + } + }, + { + "id":"02fd43ba-d4a9-4acf-91f7-67c8e260e929", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T17:50:02.020Z", + "completed":"2017-09-26T17:50:02.020Z", + "new_balance":"4406.96", + "value":"-1.35" + } + }, + { + "id":"9620f7e1-202d-4973-b528-390743fc3f1f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T20:45:44.147Z", + "completed":"2017-09-27T20:45:44.147Z", + "new_balance":"4405.76", + "value":"-1.20" + } + }, + { + "id":"03919135-a220-4de2-bfcf-a24c382d187b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T01:49:59.138Z", + "completed":"2017-09-28T01:49:59.138Z", + "new_balance":"4383.40", + "value":"-22.36" + } + }, + { + "id":"0cba52d7-0a92-4bec-b8f1-959ef56e0403", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T21:11:55.224Z", + "completed":"2017-09-28T21:11:55.224Z", + "new_balance":"4379.68", + "value":"-3.72" + } + }, + { + "id":"77ad0b71-472d-4bf0-9adb-cc5773475d1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T02:53:38.444Z", + "completed":"2017-10-01T02:53:38.444Z", + "new_balance":"4562.38", + "value":"182.70" + } + }, + { + "id":"c5be5d1a-6ecd-45ed-96db-497354479d12", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T09:44:40.471Z", + "completed":"2017-10-01T09:44:40.471Z", + "new_balance":"4703.36", + "value":"140.98" + } + }, + { + "id":"f94ddfd1-d8c1-48b2-ae3b-d377eba02429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T12:34:46.919Z", + "completed":"2017-10-01T12:34:46.919Z", + "new_balance":"4671.64", + "value":"-31.72" + } + }, + { + "id":"a462cb46-0581-4e04-a2b8-7a11258b4e97", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T04:58:20.178Z", + "completed":"2017-10-03T04:58:20.178Z", + "new_balance":"4670.97", + "value":"-0.67" + } + }, + { + "id":"91007e89-8441-45e8-8434-3782798640c1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T12:43:14.412Z", + "completed":"2017-10-03T12:43:14.412Z", + "new_balance":"4666.15", + "value":"-4.82" + } + }, + { + "id":"f2239319-56f7-4a26-87aa-bd7f0dd42bac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T14:23:24.812Z", + "completed":"2017-10-03T14:23:24.812Z", + "new_balance":"4664.41", + "value":"-1.74" + } + }, + { + "id":"f4fee677-4731-49ce-b917-d256a8eb5d6d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T03:18:36.435Z", + "completed":"2017-10-05T03:18:36.435Z", + "new_balance":"4663.01", + "value":"-1.40" + } + }, + { + "id":"c3617dd2-6227-43b6-8553-b55aaab9b775", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T21:20:12.614Z", + "completed":"2017-10-05T21:20:12.614Z", + "new_balance":"4662.49", + "value":"-0.52" + } + }, + { + "id":"afa719c2-f541-4532-8c7d-dce4876d37d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:48:47.868Z", + "completed":"2017-10-06T05:48:47.868Z", + "new_balance":"4660.89", + "value":"-1.60" + } + }, + { + "id":"093007ee-b0ac-406f-8f4a-1c302eadf631", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T23:58:33.431Z", + "completed":"2017-10-09T23:58:33.431Z", + "new_balance":"4658.30", + "value":"-2.59" + } + }, + { + "id":"7567460d-5a18-4bdf-ab13-4ccd667af4ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T06:46:19.051Z", + "completed":"2017-10-10T06:46:19.051Z", + "new_balance":"4656.62", + "value":"-1.68" + } + }, + { + "id":"ff1ef6e4-407f-4d95-8b71-535c25629467", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T05:27:55.940Z", + "completed":"2017-10-11T05:27:55.940Z", + "new_balance":"4654.31", + "value":"-2.31" + } + }, + { + "id":"52837503-3184-4986-99b5-f3975fb4f5e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T14:11:17.493Z", + "completed":"2017-10-11T14:11:17.493Z", + "new_balance":"4652.44", + "value":"-1.87" + } + }, + { + "id":"1d588d05-1843-4fde-876d-feecf8ff524d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T03:11:33.097Z", + "completed":"2017-10-14T03:11:33.097Z", + "new_balance":"4646.31", + "value":"-6.13" + } + }, + { + "id":"b4efcde5-f650-483c-9f5e-c142e14c0941", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T20:08:57.735Z", + "completed":"2017-10-14T20:08:57.735Z", + "new_balance":"4638.61", + "value":"-7.70" + } + }, + { + "id":"f089c4c7-b979-428a-b20f-d3a6912451a3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T23:56:59.504Z", + "completed":"2017-10-17T23:56:59.504Z", + "new_balance":"4634.08", + "value":"-4.53" + } + }, + { + "id":"90fff9e6-349a-4a18-ac81-29bd3b01ba61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T03:33:19.695Z", + "completed":"2017-10-18T03:33:19.695Z", + "new_balance":"4633.27", + "value":"-0.81" + } + }, + { + "id":"df927751-4372-49d1-8610-103b34e7d32d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:58:55.336Z", + "completed":"2017-10-18T06:58:55.336Z", + "new_balance":"4627.79", + "value":"-5.48" + } + }, + { + "id":"6826e9fd-732e-4095-9b20-46862d56e434", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T17:49:24.492Z", + "completed":"2017-10-18T17:49:24.492Z", + "new_balance":"4627.32", + "value":"-0.47" + } + }, + { + "id":"74cdd6d8-2c53-44a0-8b9d-f66760cd00b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T05:38:31.011Z", + "completed":"2017-10-23T05:38:31.011Z", + "new_balance":"4624.89", + "value":"-2.43" + } + }, + { + "id":"ea16cd73-b29c-4ee5-bcb0-39b37333607f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T09:10:52.889Z", + "completed":"2017-10-24T09:10:52.889Z", + "new_balance":"4623.32", + "value":"-1.57" + } + }, + { + "id":"be2369d3-f591-4aef-a7e0-ab937f3e3f17", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:17:58.857Z", + "completed":"2017-10-24T15:17:58.857Z", + "new_balance":"4620.02", + "value":"-3.30" + } + }, + { + "id":"34106015-3e10-4d24-829f-e84f0e9033c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T15:11:23.681Z", + "completed":"2017-10-26T15:11:23.681Z", + "new_balance":"4619.50", + "value":"-0.52" + } + }, + { + "id":"f9827b59-b64a-422c-bee4-58068f4f9663", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T11:02:46.637Z", + "completed":"2017-10-30T11:02:46.637Z", + "new_balance":"4615.78", + "value":"-3.72" + } + }, + { + "id":"2b8e7af0-1c90-43e5-a953-d9f117ddffe5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T11:49:21.805Z", + "completed":"2017-10-30T11:49:21.805Z", + "new_balance":"4593.42", + "value":"-22.36" + } + }, + { + "id":"32830bc2-2ff3-4788-a9a5-38d180b92398", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T01:36:51.288Z", + "completed":"2017-11-02T01:36:51.288Z", + "new_balance":"4561.70", + "value":"-31.72" + } + }, + { + "id":"faf16216-838e-4c1d-8118-c5360c3a2566", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T04:18:11.064Z", + "completed":"2017-11-02T04:18:11.064Z", + "new_balance":"4561.03", + "value":"-0.67" + } + }, + { + "id":"55e4818c-7c83-4e4c-a55e-23699df88f83", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T05:42:59.658Z", + "completed":"2017-11-02T05:42:59.658Z", + "new_balance":"4547.93", + "value":"-13.10" + } + }, + { + "id":"15d97dfc-1682-4dca-8023-59ac3c9ef70a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T18:49:06.300Z", + "completed":"2017-11-02T18:49:06.300Z", + "new_balance":"4546.61", + "value":"-1.32" + } + }, + { + "id":"8afac7f3-6eee-4774-acd3-f6a6f4e5876b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T14:51:48.919Z", + "completed":"2017-11-06T14:51:48.919Z", + "new_balance":"4544.42", + "value":"-2.19" + } + }, + { + "id":"db4eabbd-213f-4702-a278-bae50b358dd1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T21:26:28.958Z", + "completed":"2017-11-06T21:26:28.958Z", + "new_balance":"4542.11", + "value":"-2.31" + } + }, + { + "id":"6a66d5bb-e20d-411e-8bd3-f20296860d42", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T08:12:28.039Z", + "completed":"2017-11-07T08:12:28.039Z", + "new_balance":"4537.54", + "value":"-4.57" + } + }, + { + "id":"cb97ad61-7aaf-44cd-bd1b-14dfcf7a3b3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T13:37:05.703Z", + "completed":"2017-11-07T13:37:05.703Z", + "new_balance":"4529.84", + "value":"-7.70" + } + }, + { + "id":"db4274ac-b0f9-4e74-9903-f6e18570063a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T15:40:34.151Z", + "completed":"2017-11-09T15:40:34.151Z", + "new_balance":"4670.82", + "value":"140.98" + } + }, + { + "id":"5e6dc232-e729-4d0f-a534-e32657e70802", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T10:15:17.509Z", + "completed":"2017-11-14T10:15:17.509Z", + "new_balance":"4666.68", + "value":"-4.14" + } + }, + { + "id":"81ae2bc5-2ad6-432a-b538-784790b26a4b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T21:29:19.661Z", + "completed":"2017-11-14T21:29:19.661Z", + "new_balance":"4664.28", + "value":"-2.40" + } + }, + { + "id":"c7a65a1c-c64f-46d4-9739-70a935a2c80a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T16:34:13.854Z", + "completed":"2017-11-16T16:34:13.854Z", + "new_balance":"4663.76", + "value":"-0.52" + } + }, + { + "id":"e213238e-9074-4d8a-b340-2c6d97eb8d93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T13:15:45.805Z", + "completed":"2017-11-20T13:15:45.805Z", + "new_balance":"4660.88", + "value":"-2.88" + } + }, + { + "id":"b572a80a-3ffc-4e56-9784-1e7bc015790b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T10:37:12.869Z", + "completed":"2017-11-23T10:37:12.869Z", + "new_balance":"4658.57", + "value":"-2.31" + } + }, + { + "id":"29d81c9c-fc32-406b-82bb-ed6862e3030f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T13:59:51.245Z", + "completed":"2017-11-23T13:59:51.245Z", + "new_balance":"4653.96", + "value":"-4.61" + } + }, + { + "id":"16bacf6a-d67c-496b-8088-291c1e867459", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T23:13:09.914Z", + "completed":"2017-11-23T23:13:09.914Z", + "new_balance":"4653.49", + "value":"-0.47" + } + }, + { + "id":"510140f5-12b3-4b48-8f57-1c33e9720780", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T22:57:49.074Z", + "completed":"2017-11-28T22:57:49.074Z", + "new_balance":"4652.90", + "value":"-0.59" + } + }, + { + "id":"376951a7-4d30-4573-89c7-7d302508d58f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T02:35:02.162Z", + "completed":"2017-11-30T02:35:02.162Z", + "new_balance":"4630.54", + "value":"-22.36" + } + }, + { + "id":"c9e3618f-7b22-456b-9db5-abc1ba03465a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T08:54:25.598Z", + "completed":"2017-11-30T08:54:25.598Z", + "new_balance":"4626.82", + "value":"-3.72" + } + }, + { + "id":"454e37cb-f270-46c1-b784-e7b1f44f2828", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T02:19:04.574Z", + "completed":"2017-12-01T02:19:04.574Z", + "new_balance":"4595.10", + "value":"-31.72" + } + }, + { + "id":"2f539d1c-20f0-4510-a7fd-e300816e9eab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T13:55:20.264Z", + "completed":"2017-12-01T13:55:20.264Z", + "new_balance":"4736.08", + "value":"140.98" + } + }, + { + "id":"7fba6437-96d0-4158-8080-131ed8f143d9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T00:39:33.274Z", + "completed":"2017-12-04T00:39:33.274Z", + "new_balance":"4734.03", + "value":"-2.05" + } + }, + { + "id":"df1ad172-d933-4fd5-b7b1-8ed90d5ba7cb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T05:49:24.974Z", + "completed":"2017-12-04T05:49:24.974Z", + "new_balance":"4730.57", + "value":"-3.46" + } + }, + { + "id":"b3544d51-8ff5-4dd7-a7ea-90e3919ff52e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T15:34:49.652Z", + "completed":"2017-12-11T15:34:49.652Z", + "new_balance":"4727.27", + "value":"-3.30" + } + }, + { + "id":"5953d206-0faa-4f9b-a506-9257e34d8abd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T22:54:17.426Z", + "completed":"2017-12-11T22:54:17.426Z", + "new_balance":"4722.66", + "value":"-4.61" + } + }, + { + "id":"47073568-36bd-4b59-abf3-0054832fb01d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T04:08:08.374Z", + "completed":"2017-12-14T04:08:08.374Z", + "new_balance":"4722.19", + "value":"-0.47" + } + }, + { + "id":"6786d95c-dad0-495e-9551-8adffbacacad", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T04:10:48.951Z", + "completed":"2017-12-14T04:10:48.951Z", + "new_balance":"4721.39", + "value":"-0.80" + } + }, + { + "id":"aa4342b8-5f7b-4aa6-a5a1-875837db1c55", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T05:26:52.995Z", + "completed":"2017-12-14T05:26:52.995Z", + "new_balance":"4720.59", + "value":"-0.80" + } + }, + { + "id":"9870b881-3b74-4352-a41b-8fa7570d319d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T11:08:12.324Z", + "completed":"2017-12-14T11:08:12.324Z", + "new_balance":"4712.89", + "value":"-7.70" + } + }, + { + "id":"0713ee83-b6f8-47fc-bfe3-31bd020ad767", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:36:43.097Z", + "completed":"2017-12-14T12:36:43.097Z", + "new_balance":"4706.25", + "value":"-6.64" + } + }, + { + "id":"062dc898-9c2b-41ce-a211-a3be542647e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T13:55:17.241Z", + "completed":"2017-12-14T13:55:17.241Z", + "new_balance":"4704.95", + "value":"-1.30" + } + }, + { + "id":"63ba6b42-8642-402e-aaa6-e17b200de294", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T14:20:06.545Z", + "completed":"2017-12-14T14:20:06.545Z", + "new_balance":"4704.48", + "value":"-0.47" + } + }, + { + "id":"b0e986a5-ec0b-4e15-829a-3b952bb718ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T15:08:25.826Z", + "completed":"2017-12-14T15:08:25.826Z", + "new_balance":"4696.74", + "value":"-7.74" + } + }, + { + "id":"c65ac2c6-34d0-4b88-ad18-30897fee0835", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T22:07:15.376Z", + "completed":"2017-12-14T22:07:15.376Z", + "new_balance":"4689.99", + "value":"-6.75" + } + }, + { + "id":"da9f5598-044a-4913-b64e-47cab297a6e5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T06:02:17.988Z", + "completed":"2017-12-15T06:02:17.988Z", + "new_balance":"4689.52", + "value":"-0.47" + } + }, + { + "id":"73dc26a2-dd5d-4e01-af4d-80f741793cc1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T07:06:53.330Z", + "completed":"2017-12-15T07:06:53.330Z", + "new_balance":"4686.81", + "value":"-2.71" + } + }, + { + "id":"549ee854-3a5f-45b5-b0b1-a823835baf0e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T21:10:02.151Z", + "completed":"2017-12-15T21:10:02.151Z", + "new_balance":"4686.04", + "value":"-0.77" + } + }, + { + "id":"3aa4770c-7adb-424a-a94a-fe4f5093bd59", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T02:07:34.175Z", + "completed":"2017-12-18T02:07:34.175Z", + "new_balance":"4683.32", + "value":"-2.72" + } + }, + { + "id":"d6fc9dbc-0a9d-43bd-8468-51a6ef02bff2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T10:30:43.787Z", + "completed":"2017-12-18T10:30:43.787Z", + "new_balance":"4680.73", + "value":"-2.59" + } + }, + { + "id":"0b33edf9-0ede-4b91-b8b6-869decffc9c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T11:29:49.974Z", + "completed":"2017-12-18T11:29:49.974Z", + "new_balance":"4680.26", + "value":"-0.47" + } + }, + { + "id":"d051ed14-1a6c-4a32-b7a4-d97ee10c9f48", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T13:58:09.939Z", + "completed":"2017-12-18T13:58:09.939Z", + "new_balance":"4677.68", + "value":"-2.58" + } + }, + { + "id":"2f396acf-e034-4d78-801c-5bbd8d6ce558", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T16:52:06.976Z", + "completed":"2017-12-18T16:52:06.976Z", + "new_balance":"4671.52", + "value":"-6.16" + } + }, + { + "id":"2c9d3c92-6ee2-484f-9249-26aa6d2148f8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T17:59:53.995Z", + "completed":"2017-12-18T17:59:53.995Z", + "new_balance":"4661.37", + "value":"-10.15" + } + }, + { + "id":"17d48b45-3e09-44b9-9a91-97ed0e0d2728", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T21:15:34.511Z", + "completed":"2017-12-18T21:15:34.511Z", + "new_balance":"4659.77", + "value":"-1.60" + } + }, + { + "id":"8660ef6b-15d5-4ab3-b5a7-7ae84636e45f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T22:16:57.185Z", + "completed":"2017-12-18T22:16:57.185Z", + "new_balance":"4659.30", + "value":"-0.47" + } + }, + { + "id":"1dec8920-8b04-499c-9aea-922c9edd13d7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T01:09:00.333Z", + "completed":"2017-12-19T01:09:00.333Z", + "new_balance":"4655.18", + "value":"-4.12" + } + }, + { + "id":"b1e4eae8-94a0-4490-b709-f7a7a1dc7c16", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T10:49:50.794Z", + "completed":"2017-12-19T10:49:50.794Z", + "new_balance":"4650.79", + "value":"-4.39" + } + }, + { + "id":"f2ffb528-d86e-47d1-acec-e9237ab91c65", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:26:39.194Z", + "completed":"2017-12-19T14:26:39.194Z", + "new_balance":"4645.87", + "value":"-4.92" + } + }, + { + "id":"fdaabd92-d347-423d-8d4a-648c9ea3c17a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T10:49:59.882Z", + "completed":"2017-12-21T10:49:59.882Z", + "new_balance":"4642.40", + "value":"-3.47" + } + }, + { + "id":"ef51458d-8f5c-47e7-a0ed-f9dfb3b3fab4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T10:55:25.741Z", + "completed":"2017-12-21T10:55:25.741Z", + "new_balance":"4641.93", + "value":"-0.47" + } + }, + { + "id":"8e85a667-324d-4145-ac69-58eb02dd254d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T10:55:37.980Z", + "completed":"2017-12-21T10:55:37.980Z", + "new_balance":"4632.32", + "value":"-9.61" + } + }, + { + "id":"6120916a-c841-40e0-b731-45144ca2eb50", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T11:35:10.724Z", + "completed":"2017-12-21T11:35:10.724Z", + "new_balance":"4631.17", + "value":"-1.15" + } + }, + { + "id":"6c5f02b8-1033-4d5b-996d-4c14b23707b7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T13:10:19.233Z", + "completed":"2017-12-21T13:10:19.233Z", + "new_balance":"4618.81", + "value":"-12.36" + } + }, + { + "id":"aa0cae16-fa04-4e56-a1e6-a6a7848d6a6f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T07:31:28.298Z", + "completed":"2017-12-24T07:31:28.298Z", + "new_balance":"4616.42", + "value":"-2.39" + } + }, + { + "id":"28e2050d-b2fc-4117-b980-e33e26ab673f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T11:44:18.019Z", + "completed":"2017-12-24T11:44:18.019Z", + "new_balance":"4615.22", + "value":"-1.20" + } + }, + { + "id":"6a236bf5-dfab-4269-9804-a60f0bdc53e7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:35:49.209Z", + "completed":"2017-12-24T23:35:49.209Z", + "new_balance":"4613.87", + "value":"-1.35" + } + }, + { + "id":"bd67573d-7948-402d-b518-206418d67152", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T05:55:45.426Z", + "completed":"2017-12-30T05:55:45.426Z", + "new_balance":"4591.51", + "value":"-22.36" + } + }, + { + "id":"b2c055a2-b453-4417-8349-56390882a350", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:49:06.920Z", + "completed":"2017-12-30T14:49:06.920Z", + "new_balance":"4587.79", + "value":"-3.72" + } + }, + { + "id":"ee5716b1-a839-4def-91b9-4dd792289f34", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:39:08.472Z", + "completed":"2016-03-02T07:39:08.472Z", + "new_balance":"88783.08", + "value":"-832.36" + } + }, + { + "id":"ab2ec5db-f72d-43e2-8b3f-ea5cf9b039b8", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T12:18:24.191Z", + "completed":"2016-03-02T12:18:24.191Z", + "new_balance":"88404.75", + "value":"-378.33" + } + }, + { + "id":"8a136dbb-71f4-4ffd-9477-d0b8838a9ea3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T10:48:28.240Z", + "completed":"2016-03-03T10:48:28.240Z", + "new_balance":"83819.59", + "value":"-4585.16" + } + }, + { + "id":"ecf3c389-35f4-4b3e-a7d4-587c4d0d5e36", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T15:20:33.630Z", + "completed":"2016-03-03T15:20:33.630Z", + "new_balance":"83745.66", + "value":"-73.93" + } + }, + { + "id":"af24d608-70b2-4015-9ac0-df2263fb302a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T18:01:33.110Z", + "completed":"2016-03-04T18:01:33.110Z", + "new_balance":"83381.37", + "value":"-364.29" + } + }, + { + "id":"fcfda85d-ee82-4ba3-a122-164e519729ad", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T21:29:49.727Z", + "completed":"2016-03-04T21:29:49.727Z", + "new_balance":"83294.81", + "value":"-86.56" + } + }, + { + "id":"8a751ed1-27ed-46a5-8642-82979a4acaf5", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:15:21.037Z", + "completed":"2016-03-07T01:15:21.037Z", + "new_balance":"83241.63", + "value":"-53.18" + } + }, + { + "id":"1f954619-e5e4-4ec0-b783-acd34fb0ab27", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T00:16:47.879Z", + "completed":"2016-03-09T00:16:47.879Z", + "new_balance":"82409.27", + "value":"-832.36" + } + }, + { + "id":"f086582e-e5f5-4379-896d-66203461992f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T06:20:04.361Z", + "completed":"2016-03-16T06:20:04.361Z", + "new_balance":"81864.11", + "value":"-545.16" + } + }, + { + "id":"eb6acd24-d010-4552-9583-6b8d9b5621a1", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T23:00:15.847Z", + "completed":"2016-03-25T23:00:15.847Z", + "new_balance":"81318.95", + "value":"-545.16" + } + }, + { + "id":"921fe639-5f9b-43f7-a71a-fcf705c7f15a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T04:58:56.755Z", + "completed":"2016-03-30T04:58:56.755Z", + "new_balance":"78687.74", + "value":"-2631.21" + } + }, + { + "id":"4fc091ca-2b94-45c2-83b6-5b79b92a1c4b", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T10:06:36.908Z", + "completed":"2016-06-07T10:06:36.908Z", + "new_balance":"78309.41", + "value":"-378.33" + } + }, + { + "id":"a129b5a7-949b-416e-9910-c46ace43a8cf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:42:47.500Z", + "completed":"2016-06-07T13:42:47.500Z", + "new_balance":"73724.25", + "value":"-4585.16" + } + }, + { + "id":"7635e45b-7529-4da3-af3f-de1a837cb482", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T22:53:26.151Z", + "completed":"2016-06-07T22:53:26.151Z", + "new_balance":"72891.89", + "value":"-832.36" + } + }, + { + "id":"d3787f38-0693-4b76-9da1-848b8b685733", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:59:41.645Z", + "completed":"2016-06-10T12:59:41.645Z", + "new_balance":"72805.33", + "value":"-86.56" + } + }, + { + "id":"919cbf88-a9ba-4728-afaf-6ae843fb6584", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T00:21:38.923Z", + "completed":"2016-06-14T00:21:38.923Z", + "new_balance":"72441.04", + "value":"-364.29" + } + }, + { + "id":"1a88aa35-7ef3-4ec8-a4f3-9b3cad59406d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T16:39:11.297Z", + "completed":"2016-06-19T16:39:11.297Z", + "new_balance":"72387.86", + "value":"-53.18" + } + }, + { + "id":"796c5a88-a94c-42c4-88b5-7dbdac11f1be", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T21:09:58.509Z", + "completed":"2016-06-19T21:09:58.509Z", + "new_balance":"72313.93", + "value":"-73.93" + } + }, + { + "id":"7f91321f-53c4-4977-8afe-c975e28f2053", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T17:59:46.034Z", + "completed":"2016-06-20T17:59:46.034Z", + "new_balance":"71481.57", + "value":"-832.36" + } + }, + { + "id":"1a815827-e1a8-470e-b436-caac61dbf5e2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T00:29:07.756Z", + "completed":"2016-06-28T00:29:07.756Z", + "new_balance":"70936.41", + "value":"-545.16" + } + }, + { + "id":"08c55386-f01a-4f75-b1a0-324428ba6aba", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T07:51:08.209Z", + "completed":"2016-07-01T07:51:08.209Z", + "new_balance":"70391.25", + "value":"-545.16" + } + }, + { + "id":"1848115c-6611-42db-9676-0e8c95965540", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T11:48:16.538Z", + "completed":"2016-07-01T11:48:16.538Z", + "new_balance":"67760.04", + "value":"-2631.21" + } + }, + { + "id":"0cbaa3cf-9b7f-4962-a644-63f1a815bc86", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T12:07:58.259Z", + "completed":"2016-09-02T12:07:58.259Z", + "new_balance":"67381.71", + "value":"-378.33" + } + }, + { + "id":"34e2dc3a-9525-4a5f-8128-0b3ff9752be3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T19:53:23.659Z", + "completed":"2016-09-02T19:53:23.659Z", + "new_balance":"66549.35", + "value":"-832.36" + } + }, + { + "id":"92d5589d-5b6a-4dfa-9507-7d891340912c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:09:45.940Z", + "completed":"2016-09-03T02:09:45.940Z", + "new_balance":"66475.42", + "value":"-73.93" + } + }, + { + "id":"1f5de84d-1ff7-43fd-a989-6fe4cacf30d7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T04:11:06.913Z", + "completed":"2016-09-03T04:11:06.913Z", + "new_balance":"61890.26", + "value":"-4585.16" + } + }, + { + "id":"241096d6-e901-4390-a17f-05e3941e4137", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T06:18:01.194Z", + "completed":"2016-09-03T06:18:01.194Z", + "new_balance":"61843.36", + "value":"-46.90" + } + }, + { + "id":"6cd0391a-0bb4-4025-a12a-fc1a7680c4b0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T02:33:29.886Z", + "completed":"2016-09-04T02:33:29.886Z", + "new_balance":"61479.07", + "value":"-364.29" + } + }, + { + "id":"e4d3714d-2ff9-4b48-b2fd-53bf9b11f11a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T21:18:08.420Z", + "completed":"2016-09-07T21:18:08.420Z", + "new_balance":"61425.89", + "value":"-53.18" + } + }, + { + "id":"48d62427-55eb-4f22-aadc-f55f6a439cd7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T21:35:40.485Z", + "completed":"2016-09-09T21:35:40.485Z", + "new_balance":"60593.53", + "value":"-832.36" + } + }, + { + "id":"03c61afc-4ff8-4412-adcf-1223e42941d3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T18:01:36.871Z", + "completed":"2016-09-16T18:01:36.871Z", + "new_balance":"60048.37", + "value":"-545.16" + } + }, + { + "id":"270f7358-5951-41ec-9da5-e69a8a04b703", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T14:20:00.490Z", + "completed":"2016-09-25T14:20:00.490Z", + "new_balance":"59503.21", + "value":"-545.16" + } + }, + { + "id":"9cc60c88-c643-4a2e-8840-e9ea11e169c2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T06:16:35.451Z", + "completed":"2016-09-30T06:16:35.451Z", + "new_balance":"56872.00", + "value":"-2631.21" + } + }, + { + "id":"3d542d7e-698f-439a-8478-df942591bdb2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T00:42:16.201Z", + "completed":"2016-12-07T00:42:16.201Z", + "new_balance":"56493.67", + "value":"-378.33" + } + }, + { + "id":"14e75a26-9069-498e-a0c8-c2039b225521", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T03:54:26.520Z", + "completed":"2016-12-07T03:54:26.520Z", + "new_balance":"55661.31", + "value":"-832.36" + } + }, + { + "id":"e7377612-dce9-48fc-8bb2-82ee93ea3c1a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T15:10:16.702Z", + "completed":"2016-12-07T15:10:16.702Z", + "new_balance":"51076.15", + "value":"-4585.16" + } + }, + { + "id":"dceb7f4c-b540-4fe3-a281-672384de6caf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T06:49:20.154Z", + "completed":"2016-12-11T06:49:20.154Z", + "new_balance":"51002.22", + "value":"-73.93" + } + }, + { + "id":"318936d8-eeca-4427-80a6-fc469673cca2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T12:37:30.372Z", + "completed":"2016-12-11T12:37:30.372Z", + "new_balance":"50915.66", + "value":"-86.56" + } + }, + { + "id":"4684b973-251e-4874-aa19-e556e98b3fd4", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T08:07:54.699Z", + "completed":"2016-12-14T08:07:54.699Z", + "new_balance":"50551.37", + "value":"-364.29" + } + }, + { + "id":"b1c2da7e-372a-491c-8906-fee920a962bb", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:37:40.954Z", + "completed":"2016-12-20T17:37:40.954Z", + "new_balance":"50498.19", + "value":"-53.18" + } + }, + { + "id":"c159e20a-d054-4438-9207-16402cfe8b6c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T08:21:21.067Z", + "completed":"2016-12-22T08:21:21.067Z", + "new_balance":"49665.83", + "value":"-832.36" + } + }, + { + "id":"fba1dd4f-8ce4-4fbc-9133-73b789697cf2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T23:41:40.034Z", + "completed":"2016-12-28T23:41:40.034Z", + "new_balance":"49120.67", + "value":"-545.16" + } + }, + { + "id":"eb2ce9f7-4829-4609-917a-7b999f589a7c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T15:44:13.653Z", + "completed":"2016-12-31T15:44:13.653Z", + "new_balance":"48575.51", + "value":"-545.16" + } + }, + { + "id":"50bab8a6-80d6-4541-a71d-218ee402f65c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:15:51.065Z", + "completed":"2016-12-31T16:15:51.065Z", + "new_balance":"45944.30", + "value":"-2631.21" + } + }, + { + "id":"c8f21d2f-5b42-4357-9fc7-3d55d2797442", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T05:48:51.603Z", + "completed":"2017-03-02T05:48:51.603Z", + "new_balance":"45111.94", + "value":"-832.36" + } + }, + { + "id":"b7dd5330-07ab-4bf2-8bfa-0d60e1542675", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T08:47:57.187Z", + "completed":"2017-03-02T08:47:57.187Z", + "new_balance":"44733.61", + "value":"-378.33" + } + }, + { + "id":"f1eb05f2-ee16-4fef-ae7c-b26a9a7791c1", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T19:36:52.648Z", + "completed":"2017-03-03T19:36:52.648Z", + "new_balance":"44659.68", + "value":"-73.93" + } + }, + { + "id":"e94cb142-9d8f-4ffc-a88e-16c9c625f7e7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T20:01:06.277Z", + "completed":"2017-03-03T20:01:06.277Z", + "new_balance":"40074.52", + "value":"-4585.16" + } + }, + { + "id":"3734ef2a-3952-41dc-870d-d264b922da24", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T09:00:19.823Z", + "completed":"2017-03-04T09:00:19.823Z", + "new_balance":"39710.23", + "value":"-364.29" + } + }, + { + "id":"c02281f1-b71f-432b-b73d-e598a02cfb40", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T17:06:06.881Z", + "completed":"2017-03-04T17:06:06.881Z", + "new_balance":"39623.67", + "value":"-86.56" + } + }, + { + "id":"d5ea7a78-06cd-4654-b5cb-c551320d517f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T02:42:32.141Z", + "completed":"2017-03-07T02:42:32.141Z", + "new_balance":"39570.49", + "value":"-53.18" + } + }, + { + "id":"a3046ddb-33b8-4cca-972f-9ba6c67ae648", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T18:30:35.703Z", + "completed":"2017-03-09T18:30:35.703Z", + "new_balance":"38738.13", + "value":"-832.36" + } + }, + { + "id":"8d760df9-c2df-4b27-b7cc-2c721803538d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T15:51:54.734Z", + "completed":"2017-03-16T15:51:54.734Z", + "new_balance":"38192.97", + "value":"-545.16" + } + }, + { + "id":"a769749d-633a-4c1a-8ef8-5dd19d0cb9ac", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T10:20:31.617Z", + "completed":"2017-03-25T10:20:31.617Z", + "new_balance":"37647.81", + "value":"-545.16" + } + }, + { + "id":"9f65d8ab-9a0c-465b-8cc6-32d5fb8f4f7e", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T20:31:41.001Z", + "completed":"2017-03-30T20:31:41.001Z", + "new_balance":"35016.60", + "value":"-2631.21" + } + }, + { + "id":"75e3a2ef-c210-4260-bf8b-66f9f33a3211", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T02:17:07.183Z", + "completed":"2017-06-07T02:17:07.183Z", + "new_balance":"34638.27", + "value":"-378.33" + } + }, + { + "id":"9930ec70-58c5-4181-8bda-c3f1d1599618", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T12:11:58.912Z", + "completed":"2017-06-07T12:11:58.912Z", + "new_balance":"30053.11", + "value":"-4585.16" + } + }, + { + "id":"397845c4-8e75-4135-8317-c93f2e237ecc", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T14:30:38.063Z", + "completed":"2017-06-07T14:30:38.063Z", + "new_balance":"29220.75", + "value":"-832.36" + } + }, + { + "id":"3cc85953-ff44-4319-b8f8-9ac6531a6520", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T23:23:28.488Z", + "completed":"2017-06-10T23:23:28.488Z", + "new_balance":"29134.19", + "value":"-86.56" + } + }, + { + "id":"6f01f303-2ac4-4536-89e0-f343d737a493", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T23:59:41.609Z", + "completed":"2017-06-14T23:59:41.609Z", + "new_balance":"28769.90", + "value":"-364.29" + } + }, + { + "id":"ce628a72-6674-4ad2-a5c4-3e95869c9d1a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T06:14:16.530Z", + "completed":"2017-06-19T06:14:16.530Z", + "new_balance":"28695.97", + "value":"-73.93" + } + }, + { + "id":"4582b43c-6b28-4d82-bf7e-4eca52aaede0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T06:42:36.107Z", + "completed":"2017-06-19T06:42:36.107Z", + "new_balance":"28642.79", + "value":"-53.18" + } + }, + { + "id":"550c9f4a-4f77-4ab3-a27b-c73ed57efa83", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T20:43:57.706Z", + "completed":"2017-06-20T20:43:57.706Z", + "new_balance":"27810.43", + "value":"-832.36" + } + }, + { + "id":"f7567333-0931-4d51-8c32-9b334b26008e", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T05:16:25.384Z", + "completed":"2017-06-28T05:16:25.384Z", + "new_balance":"27265.27", + "value":"-545.16" + } + }, + { + "id":"41726f26-578e-4be5-af77-860bcccb24c9", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:05:12.571Z", + "completed":"2017-07-01T17:05:12.571Z", + "new_balance":"26720.11", + "value":"-545.16" + } + }, + { + "id":"e836ff22-a4fc-493d-afa6-aef5b90405bb", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T23:03:10.345Z", + "completed":"2017-07-01T23:03:10.345Z", + "new_balance":"24088.90", + "value":"-2631.21" + } + }, + { + "id":"c0f836bf-239e-4408-8a08-41849581b6ce", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:31:34.788Z", + "completed":"2017-09-02T08:31:34.788Z", + "new_balance":"23256.54", + "value":"-832.36" + } + }, + { + "id":"8b88f122-e972-4a9c-ba80-e9f4ef69b096", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T11:36:21.744Z", + "completed":"2017-09-02T11:36:21.744Z", + "new_balance":"22878.21", + "value":"-378.33" + } + }, + { + "id":"7291d7bc-3229-4196-a003-0a338b67c241", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T03:07:51.531Z", + "completed":"2017-09-03T03:07:51.531Z", + "new_balance":"22804.28", + "value":"-73.93" + } + }, + { + "id":"16e76f9b-f567-41d5-9d42-644c81c3e8cf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T05:31:20.597Z", + "completed":"2017-09-03T05:31:20.597Z", + "new_balance":"22757.38", + "value":"-46.90" + } + }, + { + "id":"7d6bbf18-17e0-4bd5-9a1d-921fa44f865d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T07:17:11.851Z", + "completed":"2017-09-03T07:17:11.851Z", + "new_balance":"18172.22", + "value":"-4585.16" + } + }, + { + "id":"e4b0c6b9-d6e3-4a3e-ab80-4bf260bd078f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T07:10:59.316Z", + "completed":"2017-09-04T07:10:59.316Z", + "new_balance":"17807.93", + "value":"-364.29" + } + }, + { + "id":"852821e1-6236-430f-9778-a1607cf79795", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T08:02:07.818Z", + "completed":"2017-09-07T08:02:07.818Z", + "new_balance":"17754.75", + "value":"-53.18" + } + }, + { + "id":"0d6c5e43-19f6-4f36-abee-7be17f251cb0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T11:51:49.924Z", + "completed":"2017-09-09T11:51:49.924Z", + "new_balance":"16922.39", + "value":"-832.36" + } + }, + { + "id":"392ea545-84b9-4852-b331-6fd081b5ae00", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T20:56:53.638Z", + "completed":"2017-09-16T20:56:53.638Z", + "new_balance":"16377.23", + "value":"-545.16" + } + }, + { + "id":"fd355bfc-cb26-4eec-ab01-fd503263b07f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T20:30:25.028Z", + "completed":"2017-09-25T20:30:25.028Z", + "new_balance":"15832.07", + "value":"-545.16" + } + }, + { + "id":"b0bd8128-91fb-4c31-bb5d-caa4599114ea", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T09:45:19.687Z", + "completed":"2017-09-30T09:45:19.687Z", + "new_balance":"13200.86", + "value":"-2631.21" + } + }, + { + "id":"3537bd9f-617c-494b-9dd8-b49fb27565a2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T11:24:38.346Z", + "completed":"2017-12-07T11:24:38.346Z", + "new_balance":"8615.70", + "value":"-4585.16" + } + }, + { + "id":"98d310fc-b787-42c9-a8cb-0cb254caf193", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T13:49:56.188Z", + "completed":"2017-12-07T13:49:56.188Z", + "new_balance":"8237.37", + "value":"-378.33" + } + }, + { + "id":"fd72657a-a809-4e43-a1cd-ff2d6ae6528d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T17:36:01.962Z", + "completed":"2017-12-07T17:36:01.962Z", + "new_balance":"7405.01", + "value":"-832.36" + } + }, + { + "id":"c5d8a4ef-a1ec-4c16-b4ee-952845ed2364", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T16:11:17.941Z", + "completed":"2017-12-11T16:11:17.941Z", + "new_balance":"7331.08", + "value":"-73.93" + } + }, + { + "id":"5e54977b-e583-4fad-aebc-b64cc926d360", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T19:27:58.953Z", + "completed":"2017-12-11T19:27:58.953Z", + "new_balance":"7244.52", + "value":"-86.56" + } + }, + { + "id":"5cbae9e6-a9a2-4730-ab9e-7953794d8bef", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T06:07:28.552Z", + "completed":"2017-12-14T06:07:28.552Z", + "new_balance":"6880.23", + "value":"-364.29" + } + }, + { + "id":"767a1de4-86f0-450b-904e-7c3d54684a56", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T18:12:32.901Z", + "completed":"2017-12-20T18:12:32.901Z", + "new_balance":"6827.05", + "value":"-53.18" + } + }, + { + "id":"90f70a3c-e386-43bc-88b1-710e765d6666", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T10:40:31.588Z", + "completed":"2017-12-22T10:40:31.588Z", + "new_balance":"5994.69", + "value":"-832.36" + } + }, + { + "id":"8f6dcc82-9e99-4483-9afb-eba20ab6e2c6", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T10:20:35.922Z", + "completed":"2017-12-28T10:20:35.922Z", + "new_balance":"5449.53", + "value":"-545.16" + } + }, + { + "id":"521fe42e-376e-40f6-b5b1-debed660e370", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T11:24:56.423Z", + "completed":"2017-12-31T11:24:56.423Z", + "new_balance":"2818.32", + "value":"-2631.21" + } + }, + { + "id":"e150b457-e326-4fa4-a295-8edad76a84f7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T18:14:54.619Z", + "completed":"2017-12-31T18:14:54.619Z", + "new_balance":"2273.16", + "value":"-545.16" + } + }, + { + "id":"0f271844-07c2-4e42-808c-675d473cca84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T06:13:31.115Z", + "completed":"2016-01-01T06:13:31.115Z", + "new_balance":"19385.00", + "value":"-53.18" + } + }, + { + "id":"a767359a-d1be-4ab6-9865-772af86bf037", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T12:04:30.507Z", + "completed":"2016-01-01T12:04:30.507Z", + "new_balance":"19250.52", + "value":"-134.48" + } + }, + { + "id":"ad5c20b8-82f6-4c38-938e-a194227f4c66", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T12:57:32.885Z", + "completed":"2016-01-01T12:57:32.885Z", + "new_balance":"19216.09", + "value":"-34.43" + } + }, + { + "id":"98bd6460-54c8-467f-a3f5-4ff1d3c066e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T15:40:26.992Z", + "completed":"2016-01-01T15:40:26.992Z", + "new_balance":"19186.21", + "value":"-29.88" + } + }, + { + "id":"41446a6b-4cdc-4f3d-b70e-c19dfd4b1ed0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T17:23:09.491Z", + "completed":"2016-01-01T17:23:09.491Z", + "new_balance":"18675.67", + "value":"-510.54" + } + }, + { + "id":"655fde92-8f6e-4938-9f28-847343d4319b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T18:19:13.761Z", + "completed":"2016-01-01T18:19:13.761Z", + "new_balance":"18641.24", + "value":"-34.43" + } + }, + { + "id":"0b104385-85a3-418b-8867-80d30e3da274", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T13:42:23.891Z", + "completed":"2016-01-02T13:42:23.891Z", + "new_balance":"18554.68", + "value":"-86.56" + } + }, + { + "id":"aa08e1af-f447-40f8-afbe-6d1b8e2e3fab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T19:12:08.544Z", + "completed":"2016-01-02T19:12:08.544Z", + "new_balance":"18482.69", + "value":"-71.99" + } + }, + { + "id":"e9ba6eb2-2116-435d-adce-4ddababbfe3c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T08:21:11.418Z", + "completed":"2016-01-04T08:21:11.418Z", + "new_balance":"18447.91", + "value":"-34.78" + } + }, + { + "id":"f9260170-b18f-4a7f-8c36-3a27e936efdd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T17:29:23.456Z", + "completed":"2016-01-04T17:29:23.456Z", + "new_balance":"18410.72", + "value":"-37.19" + } + }, + { + "id":"248389c6-c459-4629-870f-968a9444afb3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T21:35:03.463Z", + "completed":"2016-01-07T21:35:03.463Z", + "new_balance":"18336.79", + "value":"-73.93" + } + }, + { + "id":"db5d719b-5ad8-43c7-a7c5-b162cf3c8366", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T04:38:09.320Z", + "completed":"2016-01-09T04:38:09.320Z", + "new_balance":"18333.20", + "value":"-3.59" + } + }, + { + "id":"3c24d2cf-c0ef-4052-9055-d7b643fec465", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T13:41:32.240Z", + "completed":"2016-01-10T13:41:32.240Z", + "new_balance":"18305.75", + "value":"-27.45" + } + }, + { + "id":"cd40a589-45c8-47c2-985e-8d36efebb688", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T11:56:09.397Z", + "completed":"2016-01-12T11:56:09.397Z", + "new_balance":"18274.46", + "value":"-31.29" + } + }, + { + "id":"4686c02d-ca9a-44aa-aa6d-2551abfce483", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T15:46:05.054Z", + "completed":"2016-01-15T15:46:05.054Z", + "new_balance":"18267.30", + "value":"-7.16" + } + }, + { + "id":"e0f56fb4-8399-4e9d-92e8-2a387a7f6c71", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T20:24:06.517Z", + "completed":"2016-01-15T20:24:06.517Z", + "new_balance":"18252.48", + "value":"-14.82" + } + }, + { + "id":"c55a0c49-151e-4a98-8566-cd1a87fade19", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T06:44:35.567Z", + "completed":"2016-01-17T06:44:35.567Z", + "new_balance":"18230.23", + "value":"-22.25" + } + }, + { + "id":"72a57b86-548d-443e-8632-2fdaf5e20ea1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T04:56:54.284Z", + "completed":"2016-01-19T04:56:54.284Z", + "new_balance":"18040.96", + "value":"-189.27" + } + }, + { + "id":"92ecf6f4-6e24-4527-a55b-8b02f688cdf4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T06:36:16.502Z", + "completed":"2016-01-20T06:36:16.502Z", + "new_balance":"18034.25", + "value":"-6.71" + } + }, + { + "id":"91bfc01c-2a2a-4e43-bd5e-6fd14e747f19", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T05:45:34.647Z", + "completed":"2016-01-22T05:45:34.647Z", + "new_balance":"18024.55", + "value":"-9.70" + } + }, + { + "id":"425c6fc4-78d6-40a2-8115-0e5a77787139", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T22:53:29.430Z", + "completed":"2016-01-22T22:53:29.430Z", + "new_balance":"17979.31", + "value":"-45.24" + } + }, + { + "id":"f39e796a-558c-4543-b4e0-cbe95d636b46", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T14:35:01.396Z", + "completed":"2016-01-24T14:35:01.396Z", + "new_balance":"17947.03", + "value":"-32.28" + } + }, + { + "id":"1995e3ec-b204-48af-a85c-a0fc38cb300b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T03:57:24.287Z", + "completed":"2016-01-25T03:57:24.287Z", + "new_balance":"17904.51", + "value":"-42.52" + } + }, + { + "id":"9bbe7ca6-5e4d-4793-84a1-7d1e3be2df8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T05:12:33.457Z", + "completed":"2016-01-25T05:12:33.457Z", + "new_balance":"17897.80", + "value":"-6.71" + } + }, + { + "id":"85d0a296-2145-4d2d-82f5-6a565038fabe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T00:41:28.084Z", + "completed":"2016-01-26T00:41:28.084Z", + "new_balance":"17834.23", + "value":"-63.57" + } + }, + { + "id":"f8cf511f-7517-4a7f-9692-28909273da53", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T06:23:24.738Z", + "completed":"2016-02-01T06:23:24.738Z", + "new_balance":"17323.69", + "value":"-510.54" + } + }, + { + "id":"ab81f312-5538-4a64-bace-db5746557607", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T11:04:47.745Z", + "completed":"2016-02-01T11:04:47.745Z", + "new_balance":"17270.51", + "value":"-53.18" + } + }, + { + "id":"5097556c-0f12-43d8-ba00-d3135b575997", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T12:08:17.192Z", + "completed":"2016-02-01T12:08:17.192Z", + "new_balance":"17136.03", + "value":"-134.48" + } + }, + { + "id":"75dbeb36-8d68-4791-9786-63cf63aa9132", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T12:48:37.077Z", + "completed":"2016-02-01T12:48:37.077Z", + "new_balance":"17106.15", + "value":"-29.88" + } + }, + { + "id":"179cba63-1ab7-493f-a7f4-221f37b9b68a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T15:19:19.138Z", + "completed":"2016-02-01T15:19:19.138Z", + "new_balance":"18786.56", + "value":"1680.41" + } + }, + { + "id":"ef472fb2-6a94-4abb-9a5a-abca682ede79", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T20:56:39.705Z", + "completed":"2016-02-01T20:56:39.705Z", + "new_balance":"18752.13", + "value":"-34.43" + } + }, + { + "id":"12ebe7fa-97c3-446e-b0ba-07b5d477d246", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T02:25:18.012Z", + "completed":"2016-02-02T02:25:18.012Z", + "new_balance":"18737.49", + "value":"-14.64" + } + }, + { + "id":"47425b83-cbb2-4f5d-92f6-718ce524b39a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T18:02:16.465Z", + "completed":"2016-02-02T18:02:16.465Z", + "new_balance":"18650.93", + "value":"-86.56" + } + }, + { + "id":"91f9a264-72f6-405e-8fb7-fd5080c772b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T22:47:55.295Z", + "completed":"2016-02-02T22:47:55.295Z", + "new_balance":"18635.00", + "value":"-15.93" + } + }, + { + "id":"c8d8d2f4-1071-4265-b081-54f1537a1339", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T06:34:53.766Z", + "completed":"2016-02-03T06:34:53.766Z", + "new_balance":"18609.20", + "value":"-25.80" + } + }, + { + "id":"131bee7d-1042-45f2-85ee-c4d12225d21b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T19:27:59.816Z", + "completed":"2016-02-03T19:27:59.816Z", + "new_balance":"18581.19", + "value":"-28.01" + } + }, + { + "id":"4bc786fe-a579-4ce5-9d40-8a2c623987c5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T23:46:19.810Z", + "completed":"2016-02-03T23:46:19.810Z", + "new_balance":"18557.82", + "value":"-23.37" + } + }, + { + "id":"9d4e06cc-8a2a-4577-8377-971829086b4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T21:41:34.713Z", + "completed":"2016-02-06T21:41:34.713Z", + "new_balance":"18483.89", + "value":"-73.93" + } + }, + { + "id":"9863cd36-ac3e-4b50-90e5-f5a87d5c9c4d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T07:07:16.991Z", + "completed":"2016-02-08T07:07:16.991Z", + "new_balance":"18479.80", + "value":"-4.09" + } + }, + { + "id":"e2b15c7e-48a3-4351-a529-933153f1f022", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T17:52:59.636Z", + "completed":"2016-02-08T17:52:59.636Z", + "new_balance":"18451.95", + "value":"-27.85" + } + }, + { + "id":"c2d5cdec-7f41-4d5b-8c37-77f67e66760c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T19:07:24.433Z", + "completed":"2016-02-08T19:07:24.433Z", + "new_balance":"18430.85", + "value":"-21.10" + } + }, + { + "id":"57894110-569f-458c-a577-23dfb33df518", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T03:00:09.215Z", + "completed":"2016-02-09T03:00:09.215Z", + "new_balance":"18385.68", + "value":"-45.17" + } + }, + { + "id":"1f87d852-d729-41e3-a50b-84fbc275431f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T14:44:29.182Z", + "completed":"2016-02-09T14:44:29.182Z", + "new_balance":"18336.98", + "value":"-48.70" + } + }, + { + "id":"96aa908d-f86f-4ff4-9a8b-68c124fc24f3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T12:06:34.885Z", + "completed":"2016-02-12T12:06:34.885Z", + "new_balance":"18331.21", + "value":"-5.77" + } + }, + { + "id":"90dc93df-de51-48dc-9e90-0309e67a452f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T06:55:30.114Z", + "completed":"2016-02-13T06:55:30.114Z", + "new_balance":"18322.69", + "value":"-8.52" + } + }, + { + "id":"6b4cab13-2275-49d5-8f0f-ee5d03675cd4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T06:59:40.251Z", + "completed":"2016-02-13T06:59:40.251Z", + "new_balance":"18278.90", + "value":"-43.79" + } + }, + { + "id":"dc4a22af-7a1d-4c7f-ad27-e42c0c669f9d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T10:20:56.881Z", + "completed":"2016-02-13T10:20:56.881Z", + "new_balance":"18317.91", + "value":"39.01" + } + }, + { + "id":"69c49a7c-a941-49d1-a222-9c663b9c99e8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:50:18.404Z", + "completed":"2016-02-14T04:50:18.404Z", + "new_balance":"18272.28", + "value":"-45.63" + } + }, + { + "id":"5ad86188-a98a-4b1f-8b30-3cbfcd6c7ba5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T22:03:29.249Z", + "completed":"2016-02-15T22:03:29.249Z", + "new_balance":"18246.72", + "value":"-25.56" + } + }, + { + "id":"25980da3-34e7-4275-a0ef-ecbc0214a3a8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T17:25:52.494Z", + "completed":"2016-02-28T17:25:52.494Z", + "new_balance":"18213.19", + "value":"-33.53" + } + }, + { + "id":"341e20b9-d896-4b3e-9a9d-ba9a9f032083", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T06:46:25.538Z", + "completed":"2016-03-01T06:46:25.538Z", + "new_balance":"18160.01", + "value":"-53.18" + } + }, + { + "id":"68af49c4-3a31-4cb1-8bd3-c908516b3494", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T07:35:56.577Z", + "completed":"2016-03-01T07:35:56.577Z", + "new_balance":"17649.47", + "value":"-510.54" + } + }, + { + "id":"ed003185-1ede-4241-8f90-ff284a47273b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T09:38:25.079Z", + "completed":"2016-03-01T09:38:25.079Z", + "new_balance":"17619.59", + "value":"-29.88" + } + }, + { + "id":"e885f8c0-95cc-48b8-9540-2c97d5462a68", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T10:21:43.355Z", + "completed":"2016-03-01T10:21:43.355Z", + "new_balance":"17485.11", + "value":"-134.48" + } + }, + { + "id":"668deae1-498f-4284-b029-30484ce9d9ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T16:22:34.891Z", + "completed":"2016-03-01T16:22:34.891Z", + "new_balance":"19165.52", + "value":"1680.41" + } + }, + { + "id":"afebaf7e-eb3a-4b42-8ab6-963b25b6225c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T22:59:36.047Z", + "completed":"2016-03-01T22:59:36.047Z", + "new_balance":"19131.09", + "value":"-34.43" + } + }, + { + "id":"f53c5bd6-b92f-4f28-b7ba-39865e4d8e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T04:36:35.839Z", + "completed":"2016-03-02T04:36:35.839Z", + "new_balance":"19044.53", + "value":"-86.56" + } + }, + { + "id":"c791e699-3f4d-42b7-8ef1-5580e2a139e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T07:53:37.919Z", + "completed":"2016-03-04T07:53:37.919Z", + "new_balance":"19013.72", + "value":"-30.81" + } + }, + { + "id":"0b03f7e4-da22-458b-b278-11cef6f2f3ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T17:27:34.389Z", + "completed":"2016-03-04T17:27:34.389Z", + "new_balance":"19007.25", + "value":"-6.47" + } + }, + { + "id":"4c1b3f01-b533-48cc-8ab5-cb19947a7ca2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T17:40:25.587Z", + "completed":"2016-03-04T17:40:25.587Z", + "new_balance":"18926.04", + "value":"-81.21" + } + }, + { + "id":"7bdb0bab-ee30-40af-8a37-168a2ee689fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:09:00.345Z", + "completed":"2016-03-04T21:09:00.345Z", + "new_balance":"18915.51", + "value":"-10.53" + } + }, + { + "id":"b0389d04-edf0-4aaa-92b5-68c7922ae49b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T09:02:46.544Z", + "completed":"2016-03-05T09:02:46.544Z", + "new_balance":"18910.74", + "value":"-4.77" + } + }, + { + "id":"750e3bb7-60a4-4471-b81a-70f7431efacd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T20:15:16.100Z", + "completed":"2016-03-05T20:15:16.100Z", + "new_balance":"18869.51", + "value":"-41.23" + } + }, + { + "id":"e730cf26-6612-461a-8c81-da6a6fd4dd5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T03:43:27.416Z", + "completed":"2016-03-06T03:43:27.416Z", + "new_balance":"18788.30", + "value":"-81.21" + } + }, + { + "id":"31df54b9-ed05-4700-9c05-6aa610da68fc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T20:49:05.111Z", + "completed":"2016-03-06T20:49:05.111Z", + "new_balance":"18704.50", + "value":"-83.80" + } + }, + { + "id":"05e5f0cd-7099-4222-9ec1-9ee40b1d8c4f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T09:43:58.364Z", + "completed":"2016-03-07T09:43:58.364Z", + "new_balance":"18662.16", + "value":"-42.34" + } + }, + { + "id":"13352b01-e04b-4b3d-8c48-f9e9a7e584c2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:29:54.303Z", + "completed":"2016-03-08T05:29:54.303Z", + "new_balance":"18578.36", + "value":"-83.80" + } + }, + { + "id":"e4fe051a-77c6-4a76-9021-d23070d75e47", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T16:50:34.054Z", + "completed":"2016-03-09T16:50:34.054Z", + "new_balance":"18574.78", + "value":"-3.58" + } + }, + { + "id":"6c111db7-bbd6-4b8a-870c-cd069b644f73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T21:17:48.183Z", + "completed":"2016-03-10T21:17:48.183Z", + "new_balance":"18483.31", + "value":"-91.47" + } + }, + { + "id":"8944a2e8-bf68-43e8-9a6c-1fb4f9af82a0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T07:58:09.582Z", + "completed":"2016-03-11T07:58:09.582Z", + "new_balance":"18476.03", + "value":"-7.28" + } + }, + { + "id":"2d44117a-4237-4e78-97a1-8375e558b831", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T13:24:24.104Z", + "completed":"2016-03-12T13:24:24.104Z", + "new_balance":"18448.73", + "value":"-27.30" + } + }, + { + "id":"6c2fe01e-f7b0-42f2-a29b-8df691e579f5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T22:37:28.145Z", + "completed":"2016-03-12T22:37:28.145Z", + "new_balance":"18435.49", + "value":"-13.24" + } + }, + { + "id":"7931d310-8721-4451-a1d9-fdcea8423579", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T05:41:01.762Z", + "completed":"2016-03-13T05:41:01.762Z", + "new_balance":"18389.48", + "value":"-46.01" + } + }, + { + "id":"682dba4c-f57c-4586-91bb-6d62c72737ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T23:57:16.870Z", + "completed":"2016-03-14T23:57:16.870Z", + "new_balance":"18382.49", + "value":"-6.99" + } + }, + { + "id":"626feb46-9477-4166-a919-50f1c6f37bb9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T13:44:59.263Z", + "completed":"2016-03-16T13:44:59.263Z", + "new_balance":"18335.69", + "value":"-46.80" + } + }, + { + "id":"3a8a5f9a-bd04-434c-8acf-710f22c3c467", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:00:38.093Z", + "completed":"2016-03-16T16:00:38.093Z", + "new_balance":"18254.28", + "value":"-81.41" + } + }, + { + "id":"f1cf5081-b2be-40ee-81cf-335ab7cf029e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T19:12:26.772Z", + "completed":"2016-03-18T19:12:26.772Z", + "new_balance":"18247.29", + "value":"-6.99" + } + }, + { + "id":"c13ef0a9-4a55-4f01-8006-a3998cd197a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T14:12:10.732Z", + "completed":"2016-03-19T14:12:10.732Z", + "new_balance":"18210.34", + "value":"-36.95" + } + }, + { + "id":"3dcf3d60-77cc-4454-8d25-eae71e7bd37b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T14:12:21.296Z", + "completed":"2016-03-19T14:12:21.296Z", + "new_balance":"18159.33", + "value":"-51.01" + } + }, + { + "id":"745bf084-f685-4c4e-b47e-10f88ce8f88d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T23:38:28.094Z", + "completed":"2016-03-19T23:38:28.094Z", + "new_balance":"18125.42", + "value":"-33.91" + } + }, + { + "id":"3c2ed282-4328-46bf-af08-de7be2efead0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T08:36:31.310Z", + "completed":"2016-03-20T08:36:31.310Z", + "new_balance":"18051.91", + "value":"-73.51" + } + }, + { + "id":"d65df753-c02c-4874-a7d8-6c8ad6605db6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T14:45:58.451Z", + "completed":"2016-03-20T14:45:58.451Z", + "new_balance":"17993.01", + "value":"-58.90" + } + }, + { + "id":"a30fe249-6913-460b-8c89-faef664ed28b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T09:45:47.504Z", + "completed":"2016-03-21T09:45:47.504Z", + "new_balance":"17986.54", + "value":"-6.47" + } + }, + { + "id":"e2f958eb-a35e-4388-bcb1-21836bf46984", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T15:50:02.788Z", + "completed":"2016-03-21T15:50:02.788Z", + "new_balance":"17980.66", + "value":"-5.88" + } + }, + { + "id":"7ed4055d-5f66-4fb6-8f9f-5f4c70f1980f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T08:03:55.876Z", + "completed":"2016-03-23T08:03:55.876Z", + "new_balance":"17969.43", + "value":"-11.23" + } + }, + { + "id":"68601738-9375-4e28-bda1-bbb5a3db7e8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T21:12:06.664Z", + "completed":"2016-03-23T21:12:06.664Z", + "new_balance":"17923.92", + "value":"-45.51" + } + }, + { + "id":"016a3572-f01e-466e-b3bc-d08371ddf690", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T03:50:40.753Z", + "completed":"2016-03-24T03:50:40.753Z", + "new_balance":"17895.06", + "value":"-28.86" + } + }, + { + "id":"bd1367c6-85a3-4965-ac41-661555e2c73a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T08:47:04.557Z", + "completed":"2016-03-25T08:47:04.557Z", + "new_balance":"17878.98", + "value":"-16.08" + } + }, + { + "id":"e62ac250-d78b-4fc7-b25b-b4177133f107", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T16:18:00.106Z", + "completed":"2016-03-25T16:18:00.106Z", + "new_balance":"17844.95", + "value":"-34.03" + } + }, + { + "id":"7106e277-0786-4137-a3d8-de7e615bdc7f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T22:41:18.842Z", + "completed":"2016-03-27T22:41:18.842Z", + "new_balance":"17655.68", + "value":"-189.27" + } + }, + { + "id":"1ba567a1-7cba-48b8-9ab0-49799dc9e1a3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T08:42:48.352Z", + "completed":"2016-03-28T08:42:48.352Z", + "new_balance":"17628.71", + "value":"-26.97" + } + }, + { + "id":"d38879e7-9201-437d-855e-fefb0b1c8904", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T01:35:05.135Z", + "completed":"2016-04-01T01:35:05.135Z", + "new_balance":"17494.23", + "value":"-134.48" + } + }, + { + "id":"d605f98a-49e6-4713-8c62-6c5ef2f0f44d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T04:38:38.897Z", + "completed":"2016-04-01T04:38:38.897Z", + "new_balance":"17441.05", + "value":"-53.18" + } + }, + { + "id":"02026669-4969-4d1e-858e-b0b47da7f478", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T16:13:11.610Z", + "completed":"2016-04-01T16:13:11.610Z", + "new_balance":"16930.51", + "value":"-510.54" + } + }, + { + "id":"e2c13271-f5b0-4db1-aad3-8baea1ee2d11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T16:54:27.126Z", + "completed":"2016-04-01T16:54:27.126Z", + "new_balance":"16900.63", + "value":"-29.88" + } + }, + { + "id":"b8ff6442-eb52-43de-8c80-9a2ac14f2332", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T06:50:45.460Z", + "completed":"2016-04-02T06:50:45.460Z", + "new_balance":"16814.07", + "value":"-86.56" + } + }, + { + "id":"e41cf1a9-048d-4962-b833-94babc2d3d1e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T09:26:38.367Z", + "completed":"2016-04-02T09:26:38.367Z", + "new_balance":"16742.08", + "value":"-71.99" + } + }, + { + "id":"2b283c05-32b3-4030-9ddf-03ea4805a577", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T05:50:11.422Z", + "completed":"2016-04-03T05:50:11.422Z", + "new_balance":"16707.30", + "value":"-34.78" + } + }, + { + "id":"eadf2f4f-c779-4835-9316-b643356edad7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:35:07.323Z", + "completed":"2016-04-03T08:35:07.323Z", + "new_balance":"16670.11", + "value":"-37.19" + } + }, + { + "id":"9f196187-e0d2-466e-9a9a-ee60a58d1f25", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T11:25:44.100Z", + "completed":"2016-04-03T11:25:44.100Z", + "new_balance":"16632.92", + "value":"-37.19" + } + }, + { + "id":"974ba90c-38f0-40a7-b622-33f07b80cdbf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T17:13:06.969Z", + "completed":"2016-04-03T17:13:06.969Z", + "new_balance":"16705.75", + "value":"72.83" + } + }, + { + "id":"c739083e-2c5d-4d84-aa20-44ea1348c54a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T21:08:42.270Z", + "completed":"2016-04-03T21:08:42.270Z", + "new_balance":"16827.95", + "value":"122.20" + } + }, + { + "id":"5e8dbc91-667a-486c-966a-f9f2dc6debaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T02:54:15.382Z", + "completed":"2016-04-04T02:54:15.382Z", + "new_balance":"16754.02", + "value":"-73.93" + } + }, + { + "id":"92a5882f-93f5-44cb-b0e3-e5c71e22ddbc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T04:32:24.825Z", + "completed":"2016-04-05T04:32:24.825Z", + "new_balance":"16726.57", + "value":"-27.45" + } + }, + { + "id":"760d04d7-90d0-4620-b566-a5c8df079abb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T06:41:20.302Z", + "completed":"2016-04-05T06:41:20.302Z", + "new_balance":"16722.98", + "value":"-3.59" + } + }, + { + "id":"9103252a-7987-4f61-a54c-80a7f79b68d8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T12:25:40.236Z", + "completed":"2016-04-07T12:25:40.236Z", + "new_balance":"16691.69", + "value":"-31.29" + } + }, + { + "id":"1b5fafef-6831-41ed-9a14-7ff5295dd000", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T17:16:35.749Z", + "completed":"2016-04-07T17:16:35.749Z", + "new_balance":"16676.87", + "value":"-14.82" + } + }, + { + "id":"1a703948-38aa-4cb6-9971-128774b90ed6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T17:58:34.654Z", + "completed":"2016-04-08T17:58:34.654Z", + "new_balance":"16669.71", + "value":"-7.16" + } + }, + { + "id":"1b6d1efd-ed3e-408b-82fa-78adc6626d3d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T02:38:15.014Z", + "completed":"2016-04-09T02:38:15.014Z", + "new_balance":"16647.46", + "value":"-22.25" + } + }, + { + "id":"a562d04b-e257-42e3-9e1e-a1279d5f7f6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T04:44:54.603Z", + "completed":"2016-04-09T04:44:54.603Z", + "new_balance":"16640.75", + "value":"-6.71" + } + }, + { + "id":"9653e647-27d7-4291-a154-0a9a3c359ebe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T11:53:00.512Z", + "completed":"2016-04-09T11:53:00.512Z", + "new_balance":"16451.48", + "value":"-189.27" + } + }, + { + "id":"5268a8d4-e605-4b4b-9813-95441a8abf5a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T06:51:50.009Z", + "completed":"2016-04-10T06:51:50.009Z", + "new_balance":"16406.24", + "value":"-45.24" + } + }, + { + "id":"cf507913-6b5f-4fa5-bcd3-c1cc114a60e6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T00:20:02.044Z", + "completed":"2016-04-17T00:20:02.044Z", + "new_balance":"16396.54", + "value":"-9.70" + } + }, + { + "id":"bd1982ca-691d-4a1c-8ea5-b0685cfe210f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T01:03:08.165Z", + "completed":"2016-04-18T01:03:08.165Z", + "new_balance":"16364.26", + "value":"-32.28" + } + }, + { + "id":"49c86140-26df-4189-a4ec-8aa0cc25c82f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T07:30:33.488Z", + "completed":"2016-04-25T07:30:33.488Z", + "new_balance":"16321.74", + "value":"-42.52" + } + }, + { + "id":"13a32b81-f991-4415-898c-d562a14c6891", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T00:07:59.038Z", + "completed":"2016-04-26T00:07:59.038Z", + "new_balance":"16258.17", + "value":"-63.57" + } + }, + { + "id":"bb66c97a-2801-4c73-bec3-3d4b78ce672f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T22:54:12.425Z", + "completed":"2016-04-26T22:54:12.425Z", + "new_balance":"16251.46", + "value":"-6.71" + } + }, + { + "id":"bee37a7b-348f-46e3-a344-f305e941a41c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T05:19:22.574Z", + "completed":"2016-05-02T05:19:22.574Z", + "new_balance":"15740.92", + "value":"-510.54" + } + }, + { + "id":"29de1d22-aee6-442e-9aec-54365579d643", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T09:03:03.364Z", + "completed":"2016-05-02T09:03:03.364Z", + "new_balance":"15606.44", + "value":"-134.48" + } + }, + { + "id":"3ed6efa7-caca-4a8e-b9b9-a360c774f31e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T11:06:30.104Z", + "completed":"2016-05-02T11:06:30.104Z", + "new_balance":"17286.85", + "value":"1680.41" + } + }, + { + "id":"37952b50-d316-4351-b1db-240a6a32a857", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T11:11:13.934Z", + "completed":"2016-05-02T11:11:13.934Z", + "new_balance":"17200.29", + "value":"-86.56" + } + }, + { + "id":"7265df45-26fa-4f08-b18c-5f76797b2146", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T13:40:34.555Z", + "completed":"2016-05-02T13:40:34.555Z", + "new_balance":"17147.11", + "value":"-53.18" + } + }, + { + "id":"3888540b-0905-4c49-99c5-af1223fe3944", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T18:20:47.596Z", + "completed":"2016-05-02T18:20:47.596Z", + "new_balance":"17131.18", + "value":"-15.93" + } + }, + { + "id":"3a4a36c4-ffd8-4e87-a0a8-6a4800c1d628", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T21:42:40.748Z", + "completed":"2016-05-02T21:42:40.748Z", + "new_balance":"17096.75", + "value":"-34.43" + } + }, + { + "id":"105e29b7-d372-4f85-9813-a696e3f27989", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T22:56:28.202Z", + "completed":"2016-05-02T22:56:28.202Z", + "new_balance":"17066.87", + "value":"-29.88" + } + }, + { + "id":"b1fb6a57-a07a-4aef-9ef5-66a10187fdfb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T01:24:26.261Z", + "completed":"2016-05-03T01:24:26.261Z", + "new_balance":"17052.23", + "value":"-14.64" + } + }, + { + "id":"73204f63-8c9c-4a5c-ac58-bde454930458", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T22:05:41.276Z", + "completed":"2016-05-03T22:05:41.276Z", + "new_balance":"17028.86", + "value":"-23.37" + } + }, + { + "id":"e6794a4e-90aa-484b-a8b7-6447e42f25e8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T17:16:57.035Z", + "completed":"2016-05-04T17:16:57.035Z", + "new_balance":"17003.06", + "value":"-25.80" + } + }, + { + "id":"2e21fd54-8c20-48de-a82f-fa715c0e0b70", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T18:39:36.715Z", + "completed":"2016-05-04T18:39:36.715Z", + "new_balance":"16975.05", + "value":"-28.01" + } + }, + { + "id":"df26a817-dda1-4345-a8c4-e7bf60db9904", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T19:04:39.665Z", + "completed":"2016-05-05T19:04:39.665Z", + "new_balance":"16901.12", + "value":"-73.93" + } + }, + { + "id":"0f36ffde-7f50-4971-8bb7-323d9f7c7723", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T05:32:57.627Z", + "completed":"2016-05-07T05:32:57.627Z", + "new_balance":"16873.27", + "value":"-27.85" + } + }, + { + "id":"b4f4db87-e50b-4b2a-a65c-ed9d0c3e74e4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T22:28:29.002Z", + "completed":"2016-05-07T22:28:29.002Z", + "new_balance":"16869.18", + "value":"-4.09" + } + }, + { + "id":"1ec1728b-2e79-4d40-a799-86526cb094cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T17:09:16.530Z", + "completed":"2016-05-12T17:09:16.530Z", + "new_balance":"16848.08", + "value":"-21.10" + } + }, + { + "id":"169e8018-0f82-476e-adb0-a3bab91fabe4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T22:57:52.276Z", + "completed":"2016-05-12T22:57:52.276Z", + "new_balance":"16799.38", + "value":"-48.70" + } + }, + { + "id":"f5571cf2-0357-4139-8ca4-468a4d9a3502", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T20:12:47.235Z", + "completed":"2016-05-14T20:12:47.235Z", + "new_balance":"16754.21", + "value":"-45.17" + } + }, + { + "id":"7e181fe9-3de7-4cac-9d8c-daeb8d6decc0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T23:44:45.538Z", + "completed":"2016-05-16T23:44:45.538Z", + "new_balance":"16748.44", + "value":"-5.77" + } + }, + { + "id":"aed53aa2-0e7d-4140-894f-27792390ad77", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T03:29:57.708Z", + "completed":"2016-05-18T03:29:57.708Z", + "new_balance":"16739.92", + "value":"-8.52" + } + }, + { + "id":"06554a4d-0cf7-4325-8a46-62bcf1f4693a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T00:30:12.487Z", + "completed":"2016-05-20T00:30:12.487Z", + "new_balance":"16778.93", + "value":"39.01" + } + }, + { + "id":"56ab0790-bcd9-45af-ad9d-93517b3582f7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T00:57:54.216Z", + "completed":"2016-05-21T00:57:54.216Z", + "new_balance":"16733.30", + "value":"-45.63" + } + }, + { + "id":"063b9c1a-edd2-41d5-950a-5b47351448ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T22:10:45.241Z", + "completed":"2016-05-21T22:10:45.241Z", + "new_balance":"16689.51", + "value":"-43.79" + } + }, + { + "id":"993d7f65-f092-4a23-b3b8-6f6ce71df947", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:35:06.063Z", + "completed":"2016-05-27T06:35:06.063Z", + "new_balance":"16655.98", + "value":"-33.53" + } + }, + { + "id":"e897122b-0d84-4ead-8152-6bf6dbae94b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:24:45.020Z", + "completed":"2016-05-27T20:24:45.020Z", + "new_balance":"16630.42", + "value":"-25.56" + } + }, + { + "id":"c9aca1dd-aab4-4fb6-8d51-3e903c171619", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T01:03:39.382Z", + "completed":"2016-06-01T01:03:39.382Z", + "new_balance":"16119.88", + "value":"-510.54" + } + }, + { + "id":"cf94bd5e-6962-4a94-baa9-a61da5104c58", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T09:47:29.416Z", + "completed":"2016-06-01T09:47:29.416Z", + "new_balance":"15985.40", + "value":"-134.48" + } + }, + { + "id":"5accafe0-e929-4f70-bace-d5dd84b1896f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T11:12:33.041Z", + "completed":"2016-06-01T11:12:33.041Z", + "new_balance":"15955.52", + "value":"-29.88" + } + }, + { + "id":"2a36641c-fdc3-40e0-b16d-95f1f19f9faf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T15:05:39.123Z", + "completed":"2016-06-01T15:05:39.123Z", + "new_balance":"15902.34", + "value":"-53.18" + } + }, + { + "id":"011feed1-f531-4125-a984-f9205594379d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T18:46:44.894Z", + "completed":"2016-06-01T18:46:44.894Z", + "new_balance":"15867.91", + "value":"-34.43" + } + }, + { + "id":"2a9f0f7b-216e-4d77-b0f6-5eb83a638226", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T22:59:29.733Z", + "completed":"2016-06-01T22:59:29.733Z", + "new_balance":"17548.32", + "value":"1680.41" + } + }, + { + "id":"d7986715-9d00-4719-ab57-dc446dd006af", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:16:34.090Z", + "completed":"2016-06-04T10:16:34.090Z", + "new_balance":"17416.48", + "value":"-131.84" + } + }, + { + "id":"24a72c7c-1ef6-4efc-9fc5-04248341d449", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T23:27:51.511Z", + "completed":"2016-06-04T23:27:51.511Z", + "new_balance":"17329.92", + "value":"-86.56" + } + }, + { + "id":"3df861a0-c941-4077-bb3f-0394a62b08cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:17:40.070Z", + "completed":"2016-06-11T11:17:40.070Z", + "new_balance":"17299.11", + "value":"-30.81" + } + }, + { + "id":"0b6435a2-b7d2-4a35-9f75-6f415e1dff3b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T10:42:27.867Z", + "completed":"2016-06-12T10:42:27.867Z", + "new_balance":"17288.58", + "value":"-10.53" + } + }, + { + "id":"127ba557-b6a6-4857-81e1-35ef649a5ad1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T05:51:05.350Z", + "completed":"2016-06-13T05:51:05.350Z", + "new_balance":"17282.11", + "value":"-6.47" + } + }, + { + "id":"8d822003-79ca-4193-9057-b408f078d1d1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T18:25:15.110Z", + "completed":"2016-06-13T18:25:15.110Z", + "new_balance":"17200.90", + "value":"-81.21" + } + }, + { + "id":"0e115449-2379-469b-892e-5cb8479cb1e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T02:29:57.393Z", + "completed":"2016-06-16T02:29:57.393Z", + "new_balance":"17159.67", + "value":"-41.23" + } + }, + { + "id":"e22d1073-57ba-4d8e-9415-349f3ad5d59e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T07:48:07.103Z", + "completed":"2016-06-17T07:48:07.103Z", + "new_balance":"17078.46", + "value":"-81.21" + } + }, + { + "id":"03c1145d-45e9-4d20-8f98-d1d8331a33c6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T22:57:12.958Z", + "completed":"2016-06-17T22:57:12.958Z", + "new_balance":"17073.69", + "value":"-4.77" + } + }, + { + "id":"56f2ab11-a0b3-4295-bf8e-c1eb6d76e7aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T14:43:40.482Z", + "completed":"2016-06-18T14:43:40.482Z", + "new_balance":"16989.89", + "value":"-83.80" + } + }, + { + "id":"5470ebb5-e7ff-4fef-9fe6-a4944a6054bf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:16:04.344Z", + "completed":"2016-06-19T03:16:04.344Z", + "new_balance":"16906.09", + "value":"-83.80" + } + }, + { + "id":"04978b5e-3575-4a60-b303-a25e69a2491c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:45:15.416Z", + "completed":"2016-06-19T17:45:15.416Z", + "new_balance":"16863.75", + "value":"-42.34" + } + }, + { + "id":"c24fa61e-c8b1-4811-a765-bc35f6398a80", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T03:53:58.777Z", + "completed":"2016-06-21T03:53:58.777Z", + "new_balance":"16860.17", + "value":"-3.58" + } + }, + { + "id":"d99a4d55-520d-4348-91f1-ba2c3bcfebea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T21:49:19.393Z", + "completed":"2016-06-21T21:49:19.393Z", + "new_balance":"16768.70", + "value":"-91.47" + } + }, + { + "id":"e81cc0c3-dbc4-4e52-b28e-d429848eca6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T01:26:54.296Z", + "completed":"2016-06-23T01:26:54.296Z", + "new_balance":"16741.40", + "value":"-27.30" + } + }, + { + "id":"84b35659-3a2d-4da4-87bc-9a40dd9fca31", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T03:19:17.073Z", + "completed":"2016-06-23T03:19:17.073Z", + "new_balance":"16734.12", + "value":"-7.28" + } + }, + { + "id":"ceea1f05-b3a8-42cb-a3dd-f329150d7b25", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T01:52:13.332Z", + "completed":"2016-06-24T01:52:13.332Z", + "new_balance":"16720.88", + "value":"-13.24" + } + }, + { + "id":"17a9b1eb-7809-4dc2-8932-90d50bb5d976", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T10:34:21.821Z", + "completed":"2016-06-24T10:34:21.821Z", + "new_balance":"16674.87", + "value":"-46.01" + } + }, + { + "id":"a09e5f69-3f70-4e9c-af78-69a8c2968220", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T02:33:37.042Z", + "completed":"2016-06-28T02:33:37.042Z", + "new_balance":"16667.88", + "value":"-6.99" + } + }, + { + "id":"8aaffa57-5e8c-410c-aaa1-cf8c8d4cedd9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T05:50:53.934Z", + "completed":"2016-06-28T05:50:53.934Z", + "new_balance":"16660.89", + "value":"-6.99" + } + }, + { + "id":"44dd07c3-8ba4-4b2c-ab42-db621c667b86", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T08:07:07.176Z", + "completed":"2016-06-28T08:07:07.176Z", + "new_balance":"16579.48", + "value":"-81.41" + } + }, + { + "id":"4e52d1c0-d893-468c-b9a9-3a1f4cf605d3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T10:55:37.021Z", + "completed":"2016-06-28T10:55:37.021Z", + "new_balance":"16532.68", + "value":"-46.80" + } + }, + { + "id":"4c6ad62a-39e7-461a-aa52-c6f1f9160543", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T00:50:18.377Z", + "completed":"2016-06-29T00:50:18.377Z", + "new_balance":"16481.67", + "value":"-51.01" + } + }, + { + "id":"26efc1f9-9d15-47e7-a7ff-de65c7be64c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T04:41:03.991Z", + "completed":"2016-06-29T04:41:03.991Z", + "new_balance":"16447.76", + "value":"-33.91" + } + }, + { + "id":"85533a64-3917-4ffc-b8fa-8edaff9fba3c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T05:08:09.737Z", + "completed":"2016-06-29T05:08:09.737Z", + "new_balance":"16388.86", + "value":"-58.90" + } + }, + { + "id":"537033d5-308c-4439-a99c-f4263acd3ed1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T07:58:04.608Z", + "completed":"2016-06-29T07:58:04.608Z", + "new_balance":"16315.35", + "value":"-73.51" + } + }, + { + "id":"9934a842-71fd-49fc-a886-123716762b09", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T16:24:22.786Z", + "completed":"2016-06-29T16:24:22.786Z", + "new_balance":"16308.88", + "value":"-6.47" + } + }, + { + "id":"6e32bdf5-0d39-48e8-83ab-69cd6c31ef61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:00:45.319Z", + "completed":"2016-06-29T21:00:45.319Z", + "new_balance":"16271.93", + "value":"-36.95" + } + }, + { + "id":"eb0a3508-623f-492a-bd60-7dafacae84b3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T11:15:55.489Z", + "completed":"2016-06-30T11:15:55.489Z", + "new_balance":"16243.07", + "value":"-28.86" + } + }, + { + "id":"df5e1aa5-7da4-4b39-9fc7-a4b2fa476f2a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T16:15:38.846Z", + "completed":"2016-06-30T16:15:38.846Z", + "new_balance":"16237.19", + "value":"-5.88" + } + }, + { + "id":"a1ae8d70-f31c-4c74-960d-5172472b5902", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T22:35:46.902Z", + "completed":"2016-06-30T22:35:46.902Z", + "new_balance":"16191.68", + "value":"-45.51" + } + }, + { + "id":"5ae3e353-8405-40c0-9613-511447cb6d3f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T22:44:05.369Z", + "completed":"2016-06-30T22:44:05.369Z", + "new_balance":"16180.45", + "value":"-11.23" + } + }, + { + "id":"786d7743-3867-4dc9-9cc1-8ea4b49ca418", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T00:31:42.227Z", + "completed":"2016-07-01T00:31:42.227Z", + "new_balance":"15991.18", + "value":"-189.27" + } + }, + { + "id":"40d80a69-a275-46e1-a5f7-19a375307fa9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T08:50:02.669Z", + "completed":"2016-07-01T08:50:02.669Z", + "new_balance":"15480.64", + "value":"-510.54" + } + }, + { + "id":"105768e7-967d-4c61-9308-e8b5afd431cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:38:22.801Z", + "completed":"2016-07-01T11:38:22.801Z", + "new_balance":"15446.21", + "value":"-34.43" + } + }, + { + "id":"fc91951d-7e7b-444b-8c04-47fc70c801f8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T14:25:17.770Z", + "completed":"2016-07-01T14:25:17.770Z", + "new_balance":"15416.33", + "value":"-29.88" + } + }, + { + "id":"2e2cc988-54ec-4973-9048-20d9da484eaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T14:57:26.597Z", + "completed":"2016-07-01T14:57:26.597Z", + "new_balance":"15389.36", + "value":"-26.97" + } + }, + { + "id":"b44f98da-4f84-47e7-96ea-c968a937e8c1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T16:56:35.798Z", + "completed":"2016-07-01T16:56:35.798Z", + "new_balance":"15254.88", + "value":"-134.48" + } + }, + { + "id":"006e7f7a-f9c2-4e52-a52c-d3b4a2ecad98", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T17:22:06.608Z", + "completed":"2016-07-01T17:22:06.608Z", + "new_balance":"15238.80", + "value":"-16.08" + } + }, + { + "id":"8cab335e-ec86-4981-b7c5-2318021dcf4b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T18:08:31.797Z", + "completed":"2016-07-01T18:08:31.797Z", + "new_balance":"15204.37", + "value":"-34.43" + } + }, + { + "id":"94218ae3-73cc-4941-9e0a-eb3f223e2aca", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T20:05:52.304Z", + "completed":"2016-07-01T20:05:52.304Z", + "new_balance":"15170.34", + "value":"-34.03" + } + }, + { + "id":"8589de97-5631-470d-aa8e-28c0ee41ee49", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T21:50:35.306Z", + "completed":"2016-07-01T21:50:35.306Z", + "new_balance":"15117.16", + "value":"-53.18" + } + }, + { + "id":"0ab20dd1-cfc6-4311-b557-705ea97f837d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T21:57:03.704Z", + "completed":"2016-07-02T21:57:03.704Z", + "new_balance":"15030.60", + "value":"-86.56" + } + }, + { + "id":"71660bd3-0d50-47fb-965c-589fdcd7b875", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T04:14:02.408Z", + "completed":"2016-07-03T04:14:02.408Z", + "new_balance":"14935.17", + "value":"-95.43" + } + }, + { + "id":"488d2df0-b7ad-4ff5-9987-5f06c7a90a3f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T08:05:25.501Z", + "completed":"2016-07-04T08:05:25.501Z", + "new_balance":"14919.39", + "value":"-15.78" + } + }, + { + "id":"85adb160-c84f-486b-85cc-71a8977a1210", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T07:33:12.678Z", + "completed":"2016-07-05T07:33:12.678Z", + "new_balance":"14847.30", + "value":"-72.09" + } + }, + { + "id":"c8cb56a5-d22e-4b6e-8262-06c8b2e04319", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T21:12:40.943Z", + "completed":"2016-07-05T21:12:40.943Z", + "new_balance":"14773.37", + "value":"-73.93" + } + }, + { + "id":"7b27e39e-c15e-44b0-b0c5-a03fef42eda7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T17:03:15.733Z", + "completed":"2016-07-06T17:03:15.733Z", + "new_balance":"14769.78", + "value":"-3.59" + } + }, + { + "id":"c3cd5c7e-0873-44d1-93c5-f5345e5f49fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T18:28:11.069Z", + "completed":"2016-07-11T18:28:11.069Z", + "new_balance":"14742.33", + "value":"-27.45" + } + }, + { + "id":"2c3b9015-55d3-42dc-9534-3947280c8b73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T04:32:21.204Z", + "completed":"2016-07-12T04:32:21.204Z", + "new_balance":"14711.04", + "value":"-31.29" + } + }, + { + "id":"7fe41c52-4218-407a-93f0-b459c57573c2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T17:13:35.712Z", + "completed":"2016-07-14T17:13:35.712Z", + "new_balance":"14696.22", + "value":"-14.82" + } + }, + { + "id":"cf671f3e-495b-48bc-897e-d3c6231f761e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T04:38:48.480Z", + "completed":"2016-07-16T04:38:48.480Z", + "new_balance":"14689.06", + "value":"-7.16" + } + }, + { + "id":"d6b8b270-13dd-40fc-aaee-673a50a4d443", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T18:41:52.022Z", + "completed":"2016-07-18T18:41:52.022Z", + "new_balance":"14666.81", + "value":"-22.25" + } + }, + { + "id":"ef0c1334-27a4-4c37-bae3-e9ea20a04f1d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T06:24:14.897Z", + "completed":"2016-07-20T06:24:14.897Z", + "new_balance":"14660.10", + "value":"-6.71" + } + }, + { + "id":"f1d5276a-b3ff-44dc-9ee0-cd8ab0b5c42a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T22:06:44.614Z", + "completed":"2016-07-20T22:06:44.614Z", + "new_balance":"14470.83", + "value":"-189.27" + } + }, + { + "id":"c854a2a8-504f-4e0b-9d9e-1699e6082177", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T20:00:25.576Z", + "completed":"2016-07-24T20:00:25.576Z", + "new_balance":"14461.13", + "value":"-9.70" + } + }, + { + "id":"fb7597e1-0058-4950-99cc-190f98a13abf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T22:12:23.751Z", + "completed":"2016-07-24T22:12:23.751Z", + "new_balance":"14415.89", + "value":"-45.24" + } + }, + { + "id":"d058aa4f-74ca-4071-9808-f65b50a78602", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T07:08:58.303Z", + "completed":"2016-07-25T07:08:58.303Z", + "new_balance":"14373.37", + "value":"-42.52" + } + }, + { + "id":"ea06cc76-e879-4bb2-bf98-3b51a70a9c0a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T17:04:01.574Z", + "completed":"2016-07-25T17:04:01.574Z", + "new_balance":"14341.09", + "value":"-32.28" + } + }, + { + "id":"8ad3d92d-f936-4104-b7bc-dcbf3eae1754", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T00:29:21.607Z", + "completed":"2016-07-26T00:29:21.607Z", + "new_balance":"14277.52", + "value":"-63.57" + } + }, + { + "id":"a78ca485-9e0e-4212-8d83-2452eaa9bbbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T10:57:18.079Z", + "completed":"2016-07-27T10:57:18.079Z", + "new_balance":"14270.81", + "value":"-6.71" + } + }, + { + "id":"666e2089-6233-4094-acce-e9c658eec3a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T00:40:54.772Z", + "completed":"2016-08-01T00:40:54.772Z", + "new_balance":"15951.22", + "value":"1680.41" + } + }, + { + "id":"81b88e01-71b8-4673-baab-713e8cfb8b84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T00:45:57.631Z", + "completed":"2016-08-01T00:45:57.631Z", + "new_balance":"15440.68", + "value":"-510.54" + } + }, + { + "id":"0d970030-088b-4711-bc57-a1ae17bb7af4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T10:52:28.647Z", + "completed":"2016-08-01T10:52:28.647Z", + "new_balance":"15410.80", + "value":"-29.88" + } + }, + { + "id":"ad5da3a6-fc6d-4dc8-8236-9d2d4d952beb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T13:49:32.847Z", + "completed":"2016-08-01T13:49:32.847Z", + "new_balance":"15357.62", + "value":"-53.18" + } + }, + { + "id":"eda5dc9e-3fc5-4aa6-b798-0561905a39fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T14:45:56.619Z", + "completed":"2016-08-01T14:45:56.619Z", + "new_balance":"15323.19", + "value":"-34.43" + } + }, + { + "id":"21f73bb3-12a1-4fb3-a7e8-4456300acf61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T17:14:18.388Z", + "completed":"2016-08-01T17:14:18.388Z", + "new_balance":"15188.71", + "value":"-134.48" + } + }, + { + "id":"0ee5bfc0-7364-478f-ab19-ad1771b40cdc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T15:56:30.414Z", + "completed":"2016-08-02T15:56:30.414Z", + "new_balance":"15102.15", + "value":"-86.56" + } + }, + { + "id":"5300eca1-3947-46db-b9a5-41b063567ddc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T06:45:57.514Z", + "completed":"2016-08-03T06:45:57.514Z", + "new_balance":"15098.56", + "value":"-3.59" + } + }, + { + "id":"904daaac-4274-4664-8572-5fb4d23f7661", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T02:08:58.044Z", + "completed":"2016-08-04T02:08:58.044Z", + "new_balance":"15064.01", + "value":"-34.55" + } + }, + { + "id":"ad8f96d5-ac96-4464-81cc-14894a3d5b8d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T10:32:22.710Z", + "completed":"2016-08-07T10:32:22.710Z", + "new_balance":"15040.64", + "value":"-23.37" + } + }, + { + "id":"38cd2084-cadd-4dab-ad91-8cb352205ffe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T17:58:06.826Z", + "completed":"2016-08-09T17:58:06.826Z", + "new_balance":"15014.84", + "value":"-25.80" + } + }, + { + "id":"43db1648-09a4-4973-bc82-c563e8b51048", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:26:21.670Z", + "completed":"2016-08-09T23:26:21.670Z", + "new_balance":"14986.83", + "value":"-28.01" + } + }, + { + "id":"19b4bba6-3978-41a3-811e-0071ba2b1191", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T01:23:48.874Z", + "completed":"2016-08-10T01:23:48.874Z", + "new_balance":"14912.90", + "value":"-73.93" + } + }, + { + "id":"b4e0bb03-8769-4f78-9699-8844a8970250", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T19:02:35.752Z", + "completed":"2016-08-14T19:02:35.752Z", + "new_balance":"14908.81", + "value":"-4.09" + } + }, + { + "id":"7aaab62b-5165-47c0-8370-26bf7d7888a9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T04:22:43.001Z", + "completed":"2016-08-15T04:22:43.001Z", + "new_balance":"14880.96", + "value":"-27.85" + } + }, + { + "id":"25b23625-cd8b-4888-98d7-290f972eda0a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T11:46:12.586Z", + "completed":"2016-08-15T11:46:12.586Z", + "new_balance":"14845.03", + "value":"-35.93" + } + }, + { + "id":"877e2c40-6159-445a-9d8d-8975b43ba71d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T10:55:01.944Z", + "completed":"2016-08-16T10:55:01.944Z", + "new_balance":"14796.33", + "value":"-48.70" + } + }, + { + "id":"5d6238db-2deb-4e16-b39f-89c9a033ce14", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T01:40:38.737Z", + "completed":"2016-08-17T01:40:38.737Z", + "new_balance":"14751.16", + "value":"-45.17" + } + }, + { + "id":"e4d84338-3792-400e-833e-7b007864141d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T08:07:19.529Z", + "completed":"2016-08-20T08:07:19.529Z", + "new_balance":"14742.64", + "value":"-8.52" + } + }, + { + "id":"9c0aab1b-07e5-4f36-8122-f43e93996a88", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T09:02:19.246Z", + "completed":"2016-08-20T09:02:19.246Z", + "new_balance":"14736.87", + "value":"-5.77" + } + }, + { + "id":"27b3a660-3c44-41f6-8cf2-74750d2d8617", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T03:57:05.632Z", + "completed":"2016-08-22T03:57:05.632Z", + "new_balance":"14775.88", + "value":"39.01" + } + }, + { + "id":"41377bdf-8ad4-44b2-9b65-455dd1ea6910", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T00:27:52.282Z", + "completed":"2016-08-23T00:27:52.282Z", + "new_balance":"14732.09", + "value":"-43.79" + } + }, + { + "id":"698876f7-70b3-408f-9ab6-b4d00c0bfa89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T16:36:47.147Z", + "completed":"2016-08-23T16:36:47.147Z", + "new_balance":"14686.46", + "value":"-45.63" + } + }, + { + "id":"5a135bdc-dca2-4384-98c3-7d173ee37e45", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T01:08:34.941Z", + "completed":"2016-08-28T01:08:34.941Z", + "new_balance":"14660.90", + "value":"-25.56" + } + }, + { + "id":"e3be7517-e879-4de5-a3de-97ddd24a86de", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T19:18:48.115Z", + "completed":"2016-08-28T19:18:48.115Z", + "new_balance":"14627.37", + "value":"-33.53" + } + }, + { + "id":"f59cf602-62f8-4362-b5cd-ccdb141dfbbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T00:22:10.045Z", + "completed":"2016-09-01T00:22:10.045Z", + "new_balance":"14492.89", + "value":"-134.48" + } + }, + { + "id":"cddb8bcd-aa4c-44f5-9366-4c5e13c566ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T05:11:47.137Z", + "completed":"2016-09-01T05:11:47.137Z", + "new_balance":"14463.01", + "value":"-29.88" + } + }, + { + "id":"fa5a9761-6376-4df9-b94e-daf235afdfde", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T10:40:45.967Z", + "completed":"2016-09-01T10:40:45.967Z", + "new_balance":"16143.42", + "value":"1680.41" + } + }, + { + "id":"c573ec07-1145-4f0c-937e-ec14b70790ce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T11:33:13.614Z", + "completed":"2016-09-01T11:33:13.614Z", + "new_balance":"16108.99", + "value":"-34.43" + } + }, + { + "id":"481b48e3-c726-4ca5-9257-e03e2db48d41", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T12:45:22.236Z", + "completed":"2016-09-01T12:45:22.236Z", + "new_balance":"16055.81", + "value":"-53.18" + } + }, + { + "id":"3ef3af9d-6804-4d9b-af7b-860cf5a99fff", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T15:06:14.224Z", + "completed":"2016-09-01T15:06:14.224Z", + "new_balance":"15545.27", + "value":"-510.54" + } + }, + { + "id":"d65c52b9-0ef5-4836-8d36-7cf5b698bd2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T07:01:40.601Z", + "completed":"2016-09-02T07:01:40.601Z", + "new_balance":"15458.71", + "value":"-86.56" + } + }, + { + "id":"b0f6d329-f359-4941-8d6d-10f61d1e2ab9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T10:10:05.838Z", + "completed":"2016-09-04T10:10:05.838Z", + "new_balance":"15452.24", + "value":"-6.47" + } + }, + { + "id":"11799b1f-34cd-450b-b440-242d0e4b9a60", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T11:07:51.556Z", + "completed":"2016-09-04T11:07:51.556Z", + "new_balance":"15371.03", + "value":"-81.21" + } + }, + { + "id":"a08faca6-d796-4884-b630-a5cf114103f9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T18:55:25.384Z", + "completed":"2016-09-04T18:55:25.384Z", + "new_balance":"15360.50", + "value":"-10.53" + } + }, + { + "id":"afa8c827-970d-4ca8-bf53-7140fda240b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T22:17:04.530Z", + "completed":"2016-09-04T22:17:04.530Z", + "new_balance":"15329.69", + "value":"-30.81" + } + }, + { + "id":"c3336d48-291a-425c-9a48-938f378cfbdc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:31:41.223Z", + "completed":"2016-09-05T06:31:41.223Z", + "new_balance":"15324.92", + "value":"-4.77" + } + }, + { + "id":"62759213-963a-45a8-8028-bd56e1e89061", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T17:49:08.567Z", + "completed":"2016-09-05T17:49:08.567Z", + "new_balance":"15283.69", + "value":"-41.23" + } + }, + { + "id":"c5f19edd-176d-4532-8371-d09053a97f02", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T04:12:28.688Z", + "completed":"2016-09-06T04:12:28.688Z", + "new_balance":"15202.48", + "value":"-81.21" + } + }, + { + "id":"048daab2-1b8b-45b8-9d64-2512852ab960", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:11:44.178Z", + "completed":"2016-09-06T18:11:44.178Z", + "new_balance":"15118.68", + "value":"-83.80" + } + }, + { + "id":"cd052dc9-1f71-482d-b513-621862d4d472", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T06:52:02.336Z", + "completed":"2016-09-08T06:52:02.336Z", + "new_balance":"15076.34", + "value":"-42.34" + } + }, + { + "id":"46953184-a08c-49c1-a855-4dfed80e684f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T14:26:11.776Z", + "completed":"2016-09-08T14:26:11.776Z", + "new_balance":"14992.54", + "value":"-83.80" + } + }, + { + "id":"8d9281d9-6cfc-4c34-9419-abbc25ee96a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T09:48:20.027Z", + "completed":"2016-09-10T09:48:20.027Z", + "new_balance":"14901.07", + "value":"-91.47" + } + }, + { + "id":"1259d856-c722-4f45-b674-b581ff60c243", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T21:01:11.004Z", + "completed":"2016-09-10T21:01:11.004Z", + "new_balance":"14897.49", + "value":"-3.58" + } + }, + { + "id":"3653853f-9192-4810-9914-e91f41e6c10b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T03:44:25.212Z", + "completed":"2016-09-11T03:44:25.212Z", + "new_balance":"14890.21", + "value":"-7.28" + } + }, + { + "id":"bde7643a-8929-4d2b-9d5d-f230c067ab05", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T02:07:41.377Z", + "completed":"2016-09-12T02:07:41.377Z", + "new_balance":"14862.91", + "value":"-27.30" + } + }, + { + "id":"100ae450-2ced-458c-8788-d99cb7bcea9f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T19:54:12.474Z", + "completed":"2016-09-12T19:54:12.474Z", + "new_balance":"14849.67", + "value":"-13.24" + } + }, + { + "id":"04122aa5-d1b9-422e-a9d3-d230c35800f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:11:15.067Z", + "completed":"2016-09-13T09:11:15.067Z", + "new_balance":"14803.66", + "value":"-46.01" + } + }, + { + "id":"1a42a1d3-6b2e-4bb4-b54f-9f916f11866f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T07:12:37.144Z", + "completed":"2016-09-16T07:12:37.144Z", + "new_balance":"14796.67", + "value":"-6.99" + } + }, + { + "id":"26c6a4f2-7c51-495f-8bd7-eb39127fbacb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T09:09:47.763Z", + "completed":"2016-09-17T09:09:47.763Z", + "new_balance":"14715.26", + "value":"-81.41" + } + }, + { + "id":"6b760190-fcaa-494f-8815-a38237cb2e73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T15:00:39.990Z", + "completed":"2016-09-17T15:00:39.990Z", + "new_balance":"14668.46", + "value":"-46.80" + } + }, + { + "id":"c3bc1c53-023c-470e-8ba3-d6bf5375b2cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T01:35:41.281Z", + "completed":"2016-09-18T01:35:41.281Z", + "new_balance":"14661.47", + "value":"-6.99" + } + }, + { + "id":"d0c3f34c-3b6f-4697-b23b-419c78f5e5a1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T00:35:29.967Z", + "completed":"2016-09-19T00:35:29.967Z", + "new_balance":"14624.52", + "value":"-36.95" + } + }, + { + "id":"61115edf-8f64-4a6b-bcb5-75293cd00a15", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T07:46:30.184Z", + "completed":"2016-09-19T07:46:30.184Z", + "new_balance":"14590.61", + "value":"-33.91" + } + }, + { + "id":"316d033a-c3f3-4c7f-bff1-63e925cc5dbc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T18:48:32.076Z", + "completed":"2016-09-19T18:48:32.076Z", + "new_balance":"14539.60", + "value":"-51.01" + } + }, + { + "id":"9c3ad289-beb1-4fc6-85e5-463d10c73fdb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T00:42:19.688Z", + "completed":"2016-09-20T00:42:19.688Z", + "new_balance":"14466.09", + "value":"-73.51" + } + }, + { + "id":"0d732177-cbfe-4be8-bc6c-0999abfe1749", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T10:03:46.303Z", + "completed":"2016-09-20T10:03:46.303Z", + "new_balance":"14407.19", + "value":"-58.90" + } + }, + { + "id":"64fc8f3b-ad5f-4ba3-8679-d62b2fff665d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T04:21:01.379Z", + "completed":"2016-09-21T04:21:01.379Z", + "new_balance":"14400.72", + "value":"-6.47" + } + }, + { + "id":"3de001cb-58d6-4204-9511-9ea7136c642c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T13:02:54.281Z", + "completed":"2016-09-21T13:02:54.281Z", + "new_balance":"14394.84", + "value":"-5.88" + } + }, + { + "id":"76b404d6-d68e-4683-9d3c-2f13481c2b2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T01:36:42.286Z", + "completed":"2016-09-23T01:36:42.286Z", + "new_balance":"14349.33", + "value":"-45.51" + } + }, + { + "id":"45980f1f-53f8-4f59-98cd-5bcc62d8fafd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T20:59:57.331Z", + "completed":"2016-09-23T20:59:57.331Z", + "new_balance":"14338.10", + "value":"-11.23" + } + }, + { + "id":"95ee7b7b-8594-4396-88ed-489126831142", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T22:35:01.448Z", + "completed":"2016-09-24T22:35:01.448Z", + "new_balance":"14309.24", + "value":"-28.86" + } + }, + { + "id":"7e16fe43-77be-459b-b808-78dc633d005d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T02:23:48.459Z", + "completed":"2016-09-25T02:23:48.459Z", + "new_balance":"14275.21", + "value":"-34.03" + } + }, + { + "id":"cfc263ab-e76f-4a45-96a9-dd0b6faee3aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T20:58:26.815Z", + "completed":"2016-09-25T20:58:26.815Z", + "new_balance":"14259.13", + "value":"-16.08" + } + }, + { + "id":"fc207822-262e-4867-86fc-c7eccf78c478", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T01:56:43.863Z", + "completed":"2016-09-27T01:56:43.863Z", + "new_balance":"14069.86", + "value":"-189.27" + } + }, + { + "id":"4d648f37-944a-4f87-ba34-05a7f45ebfc2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T03:55:13.192Z", + "completed":"2016-09-29T03:55:13.192Z", + "new_balance":"14042.89", + "value":"-26.97" + } + }, + { + "id":"a3390e0e-bf9a-4363-967a-6dd767306dca", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T00:35:47.006Z", + "completed":"2016-10-01T00:35:47.006Z", + "new_balance":"13532.35", + "value":"-510.54" + } + }, + { + "id":"bdd45f32-52a8-4ab6-a9a5-ca74ad91df85", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T09:20:10.052Z", + "completed":"2016-10-01T09:20:10.052Z", + "new_balance":"13479.17", + "value":"-53.18" + } + }, + { + "id":"df38fade-06c3-4eca-984d-deba19b17220", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T13:09:52.004Z", + "completed":"2016-10-01T13:09:52.004Z", + "new_balance":"13449.29", + "value":"-29.88" + } + }, + { + "id":"f22f7251-9fee-4eb1-95d7-2aaf97ae91dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T22:19:52.793Z", + "completed":"2016-10-01T22:19:52.793Z", + "new_balance":"13314.81", + "value":"-134.48" + } + }, + { + "id":"f4807df9-f4d7-4e36-80e6-f873c6139ae5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T02:36:29.131Z", + "completed":"2016-10-02T02:36:29.131Z", + "new_balance":"13242.82", + "value":"-71.99" + } + }, + { + "id":"bb25c4a8-c1b6-4980-b8bd-9924dd00f928", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T03:24:42.337Z", + "completed":"2016-10-02T03:24:42.337Z", + "new_balance":"13156.26", + "value":"-86.56" + } + }, + { + "id":"1fe1c2dc-b398-43db-9d84-2728e7e71832", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T12:03:41.597Z", + "completed":"2016-10-03T12:03:41.597Z", + "new_balance":"13119.07", + "value":"-37.19" + } + }, + { + "id":"256b4eaa-993e-48ac-92ac-6fe723baaa62", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T12:07:01.595Z", + "completed":"2016-10-03T12:07:01.595Z", + "new_balance":"13084.29", + "value":"-34.78" + } + }, + { + "id":"a10b7524-81d5-4a7d-aa92-30cb8797afea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T13:30:29.850Z", + "completed":"2016-10-03T13:30:29.850Z", + "new_balance":"12920.81", + "value":"-163.48" + } + }, + { + "id":"0061fd5b-58ba-425c-8b15-055812220db6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T17:01:50.447Z", + "completed":"2016-10-03T17:01:50.447Z", + "new_balance":"12731.54", + "value":"-189.27" + } + }, + { + "id":"fa4df100-980c-4d50-80d1-31c97ff4b027", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T20:11:23.318Z", + "completed":"2016-10-03T20:11:23.318Z", + "new_balance":"11999.69", + "value":"-731.85" + } + }, + { + "id":"da7a8729-686b-4e9e-aad4-3490748eea39", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T10:44:07.080Z", + "completed":"2016-10-04T10:44:07.080Z", + "new_balance":"11925.76", + "value":"-73.93" + } + }, + { + "id":"7193dd0e-3ed6-4f54-bdbf-beb6ec90a950", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T18:23:34.303Z", + "completed":"2016-10-05T18:23:34.303Z", + "new_balance":"11922.17", + "value":"-3.59" + } + }, + { + "id":"1dbc6178-0bd8-4125-b9e7-3fb60ac791e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T23:09:19.623Z", + "completed":"2016-10-05T23:09:19.623Z", + "new_balance":"11894.72", + "value":"-27.45" + } + }, + { + "id":"8ce4c19d-5e1d-4983-a737-cd99fddaf816", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T22:12:34.427Z", + "completed":"2016-10-07T22:12:34.427Z", + "new_balance":"11863.43", + "value":"-31.29" + } + }, + { + "id":"02a8f030-ece8-4d75-8fcd-5b0792bf8f16", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T23:20:17.082Z", + "completed":"2016-10-07T23:20:17.082Z", + "new_balance":"11848.61", + "value":"-14.82" + } + }, + { + "id":"190ef315-092f-4dec-8f88-92508fc8742f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T00:59:21.078Z", + "completed":"2016-10-08T00:59:21.078Z", + "new_balance":"11841.45", + "value":"-7.16" + } + }, + { + "id":"0da1d077-38ae-4d18-b7c7-bfd13f7a640a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T10:29:07.271Z", + "completed":"2016-10-09T10:29:07.271Z", + "new_balance":"11819.20", + "value":"-22.25" + } + }, + { + "id":"367c9057-0850-46b5-8681-421ad16e6592", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T18:49:08.508Z", + "completed":"2016-10-09T18:49:08.508Z", + "new_balance":"11812.49", + "value":"-6.71" + } + }, + { + "id":"9c80c630-630c-4659-9ba1-a6e571ef4244", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T23:03:26.440Z", + "completed":"2016-10-09T23:03:26.440Z", + "new_balance":"11623.22", + "value":"-189.27" + } + }, + { + "id":"8e9462bc-7198-4bd0-b660-de5b4b3df4e9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T09:27:10.987Z", + "completed":"2016-10-10T09:27:10.987Z", + "new_balance":"11577.98", + "value":"-45.24" + } + }, + { + "id":"68f3fc4d-8e32-48ad-87e8-6b468735fa2f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:33:03.728Z", + "completed":"2016-10-17T06:33:03.728Z", + "new_balance":"11568.28", + "value":"-9.70" + } + }, + { + "id":"2f739e56-5a05-407d-8ab4-7400cc3cbb9e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T17:57:11.492Z", + "completed":"2016-10-18T17:57:11.492Z", + "new_balance":"11536.00", + "value":"-32.28" + } + }, + { + "id":"144e3d74-6759-4d37-a114-33f635d39f3a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T08:46:36.850Z", + "completed":"2016-10-25T08:46:36.850Z", + "new_balance":"11493.48", + "value":"-42.52" + } + }, + { + "id":"5e09e80a-d009-4551-a595-eaaba6899db3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T05:29:56.323Z", + "completed":"2016-10-26T05:29:56.323Z", + "new_balance":"11429.91", + "value":"-63.57" + } + }, + { + "id":"9d36759c-fa22-4a37-a8f5-581353690c65", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:51:19.494Z", + "completed":"2016-10-26T09:51:19.494Z", + "new_balance":"11423.20", + "value":"-6.71" + } + }, + { + "id":"63c24506-abe8-4153-978c-6b314b1e23eb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T03:11:08.664Z", + "completed":"2016-11-02T03:11:08.664Z", + "new_balance":"11388.77", + "value":"-34.43" + } + }, + { + "id":"a5ea52b0-2ac2-4542-aef5-1bc0d1e8c656", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T04:22:35.998Z", + "completed":"2016-11-02T04:22:35.998Z", + "new_balance":"11335.59", + "value":"-53.18" + } + }, + { + "id":"1622289f-48b6-46be-adfc-d79088df4020", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T04:35:58.557Z", + "completed":"2016-11-02T04:35:58.557Z", + "new_balance":"11249.03", + "value":"-86.56" + } + }, + { + "id":"02c9615d-e967-4d0d-bd87-7f9e5ac6f72b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T06:28:10.997Z", + "completed":"2016-11-02T06:28:10.997Z", + "new_balance":"11114.55", + "value":"-134.48" + } + }, + { + "id":"d98698d7-abd1-4ae5-9832-555e7cba751a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T11:28:46.190Z", + "completed":"2016-11-02T11:28:46.190Z", + "new_balance":"11084.67", + "value":"-29.88" + } + }, + { + "id":"f70a5d9c-ef8d-4a01-9ced-7bf50ff9a6cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T12:54:10.952Z", + "completed":"2016-11-02T12:54:10.952Z", + "new_balance":"12765.08", + "value":"1680.41" + } + }, + { + "id":"d082cea5-af1e-45b3-b1b1-d17de98fcc12", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T21:47:14.359Z", + "completed":"2016-11-02T21:47:14.359Z", + "new_balance":"12749.15", + "value":"-15.93" + } + }, + { + "id":"8f18b641-ea59-4bab-ba48-b3cfc1f41eb8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T23:05:53.665Z", + "completed":"2016-11-02T23:05:53.665Z", + "new_balance":"12238.61", + "value":"-510.54" + } + }, + { + "id":"b6e3b4b8-6b4b-4be0-ad7e-f1f520ea14f8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T07:09:54.719Z", + "completed":"2016-11-06T07:09:54.719Z", + "new_balance":"12223.97", + "value":"-14.64" + } + }, + { + "id":"c447bf85-09d8-4352-9f82-4be72dc2aaf5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T03:12:05.033Z", + "completed":"2016-11-07T03:12:05.033Z", + "new_balance":"12198.17", + "value":"-25.80" + } + }, + { + "id":"7b26f444-73f4-46c2-ad5b-b2e3a9d5c306", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T16:19:32.224Z", + "completed":"2016-11-07T16:19:32.224Z", + "new_balance":"12170.16", + "value":"-28.01" + } + }, + { + "id":"caf04690-7ba5-46b1-ab05-bb10c6b3d64a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T22:31:34.472Z", + "completed":"2016-11-07T22:31:34.472Z", + "new_balance":"12146.79", + "value":"-23.37" + } + }, + { + "id":"e80f5041-434b-434c-8609-2af8105e5a9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T13:40:22.659Z", + "completed":"2016-11-09T13:40:22.659Z", + "new_balance":"12072.86", + "value":"-73.93" + } + }, + { + "id":"0faf612f-4279-487e-bf67-abf1dd8c7d6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T18:52:30.768Z", + "completed":"2016-11-09T18:52:30.768Z", + "new_balance":"12068.77", + "value":"-4.09" + } + }, + { + "id":"e31f65ff-adda-4700-bd0e-2fe1fcc11438", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T16:22:07.778Z", + "completed":"2016-11-12T16:22:07.778Z", + "new_balance":"12040.92", + "value":"-27.85" + } + }, + { + "id":"31b59bc7-c25e-4204-a719-7cdcda32ec26", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T16:40:08.106Z", + "completed":"2016-11-12T16:40:08.106Z", + "new_balance":"12019.82", + "value":"-21.10" + } + }, + { + "id":"3c5a1641-da0f-4ced-8980-89947c731816", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T20:50:29.571Z", + "completed":"2016-11-14T20:50:29.571Z", + "new_balance":"11971.12", + "value":"-48.70" + } + }, + { + "id":"a7314877-ccbf-412e-8e76-55ef7d5736d5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T22:23:08.117Z", + "completed":"2016-11-14T22:23:08.117Z", + "new_balance":"11925.95", + "value":"-45.17" + } + }, + { + "id":"c1b10240-dc48-49b4-aa6a-bce2beb51626", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T02:11:27.587Z", + "completed":"2016-11-16T02:11:27.587Z", + "new_balance":"11920.18", + "value":"-5.77" + } + }, + { + "id":"d67cf54d-380e-4047-8e04-100c6d8c99c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T22:59:03.413Z", + "completed":"2016-11-18T22:59:03.413Z", + "new_balance":"11911.66", + "value":"-8.52" + } + }, + { + "id":"636afd32-fe86-45cc-9d60-976eb9d6abc3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T12:18:43.267Z", + "completed":"2016-11-20T12:18:43.267Z", + "new_balance":"11950.67", + "value":"39.01" + } + }, + { + "id":"958f2599-7a39-42d5-99f4-cffbf7f18f81", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T03:53:18.872Z", + "completed":"2016-11-21T03:53:18.872Z", + "new_balance":"11906.88", + "value":"-43.79" + } + }, + { + "id":"4109422f-5cdc-4d4a-b2f5-881a29d83c50", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T21:32:10.782Z", + "completed":"2016-11-21T21:32:10.782Z", + "new_balance":"11861.25", + "value":"-45.63" + } + }, + { + "id":"2c3e06fd-046c-42cc-98bb-49a4dfe58330", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T00:10:32.932Z", + "completed":"2016-11-27T00:10:32.932Z", + "new_balance":"11827.72", + "value":"-33.53" + } + }, + { + "id":"e892ec8a-d261-43f4-ba19-f02398177f1c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T14:04:01.833Z", + "completed":"2016-11-27T14:04:01.833Z", + "new_balance":"11802.16", + "value":"-25.56" + } + }, + { + "id":"faef2ee1-23cd-49a1-a571-dc03675f7baa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T04:11:52.201Z", + "completed":"2016-12-01T04:11:52.201Z", + "new_balance":"13482.57", + "value":"1680.41" + } + }, + { + "id":"055bf015-73ce-4258-83f7-eccd6224ffa6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T05:51:24.789Z", + "completed":"2016-12-01T05:51:24.789Z", + "new_balance":"13348.09", + "value":"-134.48" + } + }, + { + "id":"f927ae76-1874-4525-9bbd-4d5ac69e60ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T08:55:01.662Z", + "completed":"2016-12-01T08:55:01.662Z", + "new_balance":"13294.91", + "value":"-53.18" + } + }, + { + "id":"6e6a45e7-9a79-4cfc-9f19-9ea855a16e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T13:06:56.939Z", + "completed":"2016-12-01T13:06:56.939Z", + "new_balance":"13265.03", + "value":"-29.88" + } + }, + { + "id":"a39ae985-288c-41e3-ab9c-e5cf5459fd86", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T17:17:05.763Z", + "completed":"2016-12-01T17:17:05.763Z", + "new_balance":"13230.60", + "value":"-34.43" + } + }, + { + "id":"0bef77db-0675-47c1-a681-dfa6d19cb36b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T18:09:42.532Z", + "completed":"2016-12-01T18:09:42.532Z", + "new_balance":"12720.06", + "value":"-510.54" + } + }, + { + "id":"b1f03cee-9391-44fc-ac9a-e0dba0b7be2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T06:24:30.778Z", + "completed":"2016-12-04T06:24:30.778Z", + "new_balance":"12633.50", + "value":"-86.56" + } + }, + { + "id":"290e70ab-a830-49db-942c-beb21fd31c4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:38:33.739Z", + "completed":"2016-12-04T18:38:33.739Z", + "new_balance":"12501.66", + "value":"-131.84" + } + }, + { + "id":"ffdd1a34-9bba-4ca1-b946-5bbf7d37ec72", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T12:25:03.768Z", + "completed":"2016-12-12T12:25:03.768Z", + "new_balance":"12470.85", + "value":"-30.81" + } + }, + { + "id":"44f5c46d-da3c-4bc5-bcad-8a3f9e2f485a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T16:43:17.482Z", + "completed":"2016-12-12T16:43:17.482Z", + "new_balance":"12460.32", + "value":"-10.53" + } + }, + { + "id":"5c2996d3-e7b2-44e8-a062-5d88ce70d21d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T11:44:27.475Z", + "completed":"2016-12-13T11:44:27.475Z", + "new_balance":"12453.85", + "value":"-6.47" + } + }, + { + "id":"9cf09307-b06e-4872-9a43-7287f54ccc8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T22:58:56.201Z", + "completed":"2016-12-13T22:58:56.201Z", + "new_balance":"12372.64", + "value":"-81.21" + } + }, + { + "id":"e66e5bea-9591-4bf4-8def-68dd7a9caca3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T08:00:15.010Z", + "completed":"2016-12-16T08:00:15.010Z", + "new_balance":"12331.41", + "value":"-41.23" + } + }, + { + "id":"04f78327-4ce5-4db7-bb8f-b6c6f5f98abd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T09:08:29.767Z", + "completed":"2016-12-18T09:08:29.767Z", + "new_balance":"12326.64", + "value":"-4.77" + } + }, + { + "id":"4bafde7a-e195-4cd7-999b-15175132f93b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:53:23.670Z", + "completed":"2016-12-19T05:53:23.670Z", + "new_balance":"12245.43", + "value":"-81.21" + } + }, + { + "id":"b141a6c8-a8f5-4fa9-9a06-70198e4ed70b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:06:04.885Z", + "completed":"2016-12-19T06:06:04.885Z", + "new_balance":"12161.63", + "value":"-83.80" + } + }, + { + "id":"2d6a35a5-a4aa-46fd-b347-08b8318b2ad1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T23:38:34.743Z", + "completed":"2016-12-20T23:38:34.743Z", + "new_balance":"12119.29", + "value":"-42.34" + } + }, + { + "id":"bf4e61b3-8656-4eaa-938d-aaa196965c38", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:36:16.956Z", + "completed":"2016-12-21T23:36:16.956Z", + "new_balance":"12035.49", + "value":"-83.80" + } + }, + { + "id":"a0e95cec-c5a8-473e-915a-696e47d70e9a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T00:02:04.308Z", + "completed":"2016-12-24T00:02:04.308Z", + "new_balance":"12022.25", + "value":"-13.24" + } + }, + { + "id":"83b05dfc-8b9d-41ee-80ca-e60cfacd1127", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:15:42.568Z", + "completed":"2016-12-24T09:15:42.568Z", + "new_balance":"12014.97", + "value":"-7.28" + } + }, + { + "id":"85cb9be0-d698-436a-861f-f1b1d80403ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T12:14:11.917Z", + "completed":"2016-12-24T12:14:11.917Z", + "new_balance":"11987.67", + "value":"-27.30" + } + }, + { + "id":"610b7d6a-b75f-40c0-a66f-6bd9f76ffc87", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T18:42:47.904Z", + "completed":"2016-12-24T18:42:47.904Z", + "new_balance":"11984.09", + "value":"-3.58" + } + }, + { + "id":"cf55e437-4054-49d8-bae2-917dde795bce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T23:00:15.115Z", + "completed":"2016-12-24T23:00:15.115Z", + "new_balance":"11892.62", + "value":"-91.47" + } + }, + { + "id":"ad259b24-6f8e-44c7-8afc-f7c409d4d83b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T23:44:27.189Z", + "completed":"2016-12-24T23:44:27.189Z", + "new_balance":"11846.61", + "value":"-46.01" + } + }, + { + "id":"1bb02547-2c9a-4933-8c38-8cf9fd42d95a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T00:57:08.279Z", + "completed":"2016-12-28T00:57:08.279Z", + "new_balance":"11799.81", + "value":"-46.80" + } + }, + { + "id":"71ea0f94-c9e8-4a1d-8df8-e02be4000117", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T06:46:21.100Z", + "completed":"2016-12-28T06:46:21.100Z", + "new_balance":"11792.82", + "value":"-6.99" + } + }, + { + "id":"bfdac0d6-9ad9-4fa5-a8aa-393265dc9663", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T10:11:38.515Z", + "completed":"2016-12-28T10:11:38.515Z", + "new_balance":"11785.83", + "value":"-6.99" + } + }, + { + "id":"32dbd6fa-7415-4612-a6b4-d4280e480a32", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T22:30:57.162Z", + "completed":"2016-12-28T22:30:57.162Z", + "new_balance":"11704.42", + "value":"-81.41" + } + }, + { + "id":"4652b24c-033d-4794-9b30-4ebee42cfc3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T01:14:14.715Z", + "completed":"2016-12-29T01:14:14.715Z", + "new_balance":"11670.51", + "value":"-33.91" + } + }, + { + "id":"013766fe-5a67-452a-86a9-5ecdd14087d9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T02:36:59.245Z", + "completed":"2016-12-29T02:36:59.245Z", + "new_balance":"11633.56", + "value":"-36.95" + } + }, + { + "id":"74b872a0-f6cf-4a1b-b405-15ec110b7616", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T06:58:37.264Z", + "completed":"2016-12-29T06:58:37.264Z", + "new_balance":"11560.05", + "value":"-73.51" + } + }, + { + "id":"3f07c990-e6fb-4d31-9c3b-19329dec7aad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T09:38:35.600Z", + "completed":"2016-12-29T09:38:35.600Z", + "new_balance":"11501.15", + "value":"-58.90" + } + }, + { + "id":"46ad231f-1d88-432d-a2d1-9b532902c072", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T19:04:46.592Z", + "completed":"2016-12-29T19:04:46.592Z", + "new_balance":"11450.14", + "value":"-51.01" + } + }, + { + "id":"bdea41a3-aec1-4c45-ba5a-e773f6f0fc5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T21:38:07.222Z", + "completed":"2016-12-29T21:38:07.222Z", + "new_balance":"11443.67", + "value":"-6.47" + } + }, + { + "id":"501749cc-63d6-4ec9-a33b-0a51d17e3c4e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T03:13:29.915Z", + "completed":"2016-12-30T03:13:29.915Z", + "new_balance":"11398.16", + "value":"-45.51" + } + }, + { + "id":"6f39df25-6906-4b70-a49d-e613312ad17c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T13:04:43.587Z", + "completed":"2016-12-30T13:04:43.587Z", + "new_balance":"11386.93", + "value":"-11.23" + } + }, + { + "id":"55a4f916-dbc6-4481-90bf-4927f9ec24e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T15:32:21.449Z", + "completed":"2016-12-30T15:32:21.449Z", + "new_balance":"11358.07", + "value":"-28.86" + } + }, + { + "id":"c3f5bece-545f-45ff-8da8-d3f78833eeaf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T23:10:10.004Z", + "completed":"2016-12-30T23:10:10.004Z", + "new_balance":"11352.19", + "value":"-5.88" + } + }, + { + "id":"4c656ec5-99ca-4a05-8866-51c5d3377556", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T10:06:54.798Z", + "completed":"2016-12-31T10:06:54.798Z", + "new_balance":"11336.11", + "value":"-16.08" + } + }, + { + "id":"7bd39a45-4559-4fc3-b97a-556518f735cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T12:20:25.613Z", + "completed":"2016-12-31T12:20:25.613Z", + "new_balance":"11309.14", + "value":"-26.97" + } + }, + { + "id":"c0d7af33-73fe-46cf-a755-b8eee5ca336c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T23:28:20.763Z", + "completed":"2016-12-31T23:28:20.763Z", + "new_balance":"11275.11", + "value":"-34.03" + } + }, + { + "id":"87311d11-6c46-4a61-9c49-2368294bb8a4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T23:44:46.769Z", + "completed":"2016-12-31T23:44:46.769Z", + "new_balance":"11085.84", + "value":"-189.27" + } + }, + { + "id":"905ec33e-01c8-4fc0-b9cb-c0ac646d69de", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T01:38:43.206Z", + "completed":"2017-01-01T01:38:43.206Z", + "new_balance":"11051.41", + "value":"-34.43" + } + }, + { + "id":"a1019ec5-47b4-4a7e-be6c-530225f2e84b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:34:58.667Z", + "completed":"2017-01-01T07:34:58.667Z", + "new_balance":"10916.93", + "value":"-134.48" + } + }, + { + "id":"af0e0115-a627-4d58-9054-669fb5d4b20a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T12:14:47.144Z", + "completed":"2017-01-01T12:14:47.144Z", + "new_balance":"10887.05", + "value":"-29.88" + } + }, + { + "id":"38268439-8ca8-4901-9a75-4ec09a837e66", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T13:22:22.171Z", + "completed":"2017-01-01T13:22:22.171Z", + "new_balance":"10376.51", + "value":"-510.54" + } + }, + { + "id":"28e27c4a-6ee8-4c37-b9d2-2fbb9aba101a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T13:59:31.798Z", + "completed":"2017-01-01T13:59:31.798Z", + "new_balance":"10323.33", + "value":"-53.18" + } + }, + { + "id":"85d33663-f512-4bd9-86e7-4d2946b0ac84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T19:43:19.615Z", + "completed":"2017-01-01T19:43:19.615Z", + "new_balance":"10288.90", + "value":"-34.43" + } + }, + { + "id":"83c58fc3-9f48-408a-9fdb-0428fd128508", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T10:34:09.321Z", + "completed":"2017-01-02T10:34:09.321Z", + "new_balance":"10202.34", + "value":"-86.56" + } + }, + { + "id":"67277ad3-f7d1-45d8-8595-e7e12a3c1fc7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T22:49:35.762Z", + "completed":"2017-01-02T22:49:35.762Z", + "new_balance":"10130.35", + "value":"-71.99" + } + }, + { + "id":"11102e34-1eb9-418e-b87f-b06502d919a1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T11:33:13.059Z", + "completed":"2017-01-04T11:33:13.059Z", + "new_balance":"10093.16", + "value":"-37.19" + } + }, + { + "id":"91877c85-160b-43e9-99e7-732b2c924e84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T19:44:05.019Z", + "completed":"2017-01-04T19:44:05.019Z", + "new_balance":"10058.38", + "value":"-34.78" + } + }, + { + "id":"71d7fa19-69c1-4fdd-8ff9-90c05aa73c9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:31:45.602Z", + "completed":"2017-01-07T02:31:45.602Z", + "new_balance":"9984.45", + "value":"-73.93" + } + }, + { + "id":"7b18a127-5544-4b58-947d-6da40553fedc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T08:19:00.023Z", + "completed":"2017-01-09T08:19:00.023Z", + "new_balance":"9980.86", + "value":"-3.59" + } + }, + { + "id":"87e0c3cc-87c7-4313-ab9a-3235ae29afe3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T09:27:05.002Z", + "completed":"2017-01-10T09:27:05.002Z", + "new_balance":"9953.41", + "value":"-27.45" + } + }, + { + "id":"632e3eb7-1593-414a-a878-5399c6136721", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T14:03:21.015Z", + "completed":"2017-01-12T14:03:21.015Z", + "new_balance":"9922.12", + "value":"-31.29" + } + }, + { + "id":"be0a47c8-1183-4fd5-a313-e52addcc8e07", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T03:59:10.156Z", + "completed":"2017-01-15T03:59:10.156Z", + "new_balance":"9907.30", + "value":"-14.82" + } + }, + { + "id":"2306d749-293e-4b05-a6b3-92e70f8173d4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:14:37.637Z", + "completed":"2017-01-15T20:14:37.637Z", + "new_balance":"9900.14", + "value":"-7.16" + } + }, + { + "id":"72a02caa-b988-4740-ae90-e4911fb410bb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T18:21:32.278Z", + "completed":"2017-01-17T18:21:32.278Z", + "new_balance":"9877.89", + "value":"-22.25" + } + }, + { + "id":"5da1e993-b545-463d-92c9-173cdea71cdb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T00:25:15.077Z", + "completed":"2017-01-19T00:25:15.077Z", + "new_balance":"9688.62", + "value":"-189.27" + } + }, + { + "id":"016c8185-90ef-4c39-b2a1-20e13e0b4a7a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T15:45:23.503Z", + "completed":"2017-01-20T15:45:23.503Z", + "new_balance":"9681.91", + "value":"-6.71" + } + }, + { + "id":"11b280ea-b28f-44e8-872e-4ff73d0d269b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T06:52:39.405Z", + "completed":"2017-01-22T06:52:39.405Z", + "new_balance":"9672.21", + "value":"-9.70" + } + }, + { + "id":"2b7d55f3-0c92-48ab-85d5-677988562d96", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T16:56:14.111Z", + "completed":"2017-01-22T16:56:14.111Z", + "new_balance":"9626.97", + "value":"-45.24" + } + }, + { + "id":"c5b02140-6b38-4ea2-a565-5a023d799b8c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T01:19:31.427Z", + "completed":"2017-01-24T01:19:31.427Z", + "new_balance":"9594.69", + "value":"-32.28" + } + }, + { + "id":"ad06f839-8cc6-4c23-a793-efe3f8dd4c06", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T03:30:34.540Z", + "completed":"2017-01-25T03:30:34.540Z", + "new_balance":"9587.98", + "value":"-6.71" + } + }, + { + "id":"4022959e-0659-47cf-af1e-9c7252755ee8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T14:18:07.596Z", + "completed":"2017-01-25T14:18:07.596Z", + "new_balance":"9545.46", + "value":"-42.52" + } + }, + { + "id":"fc77bf53-1ac1-4e17-95fc-35dd51cd0fb0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T14:23:09.517Z", + "completed":"2017-01-26T14:23:09.517Z", + "new_balance":"9481.89", + "value":"-63.57" + } + }, + { + "id":"0d967ffe-146c-4a8c-bddc-78ffeb53f574", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T09:20:59.287Z", + "completed":"2017-02-01T09:20:59.287Z", + "new_balance":"11162.30", + "value":"1680.41" + } + }, + { + "id":"21acc50d-727a-43aa-be0f-85a59f5f2f5a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T10:05:36.400Z", + "completed":"2017-02-01T10:05:36.400Z", + "new_balance":"11132.42", + "value":"-29.88" + } + }, + { + "id":"0f34e9e9-ba82-499d-95a6-9ce2545a3c42", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T13:55:53.545Z", + "completed":"2017-02-01T13:55:53.545Z", + "new_balance":"11079.24", + "value":"-53.18" + } + }, + { + "id":"d0ab5d6c-d600-4660-a30d-1d8cf4941e6c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T15:04:32.696Z", + "completed":"2017-02-01T15:04:32.696Z", + "new_balance":"10568.70", + "value":"-510.54" + } + }, + { + "id":"4bedc532-d5cb-44e7-ba67-6c72c3f9d676", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T20:45:46.368Z", + "completed":"2017-02-01T20:45:46.368Z", + "new_balance":"10534.27", + "value":"-34.43" + } + }, + { + "id":"5d753440-409c-405a-be99-7dc06d9a1ca0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T21:30:32.198Z", + "completed":"2017-02-01T21:30:32.198Z", + "new_balance":"10399.79", + "value":"-134.48" + } + }, + { + "id":"b762a05c-8c86-4f9a-befe-dc16bfd6139f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T04:50:18.878Z", + "completed":"2017-02-02T04:50:18.878Z", + "new_balance":"10383.86", + "value":"-15.93" + } + }, + { + "id":"f7aca205-7d70-41f2-a96d-4765921ea5d2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T14:37:33.844Z", + "completed":"2017-02-02T14:37:33.844Z", + "new_balance":"10297.30", + "value":"-86.56" + } + }, + { + "id":"037eeabd-a5c9-4764-b374-b9a779201d6d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T16:09:28.057Z", + "completed":"2017-02-02T16:09:28.057Z", + "new_balance":"10282.66", + "value":"-14.64" + } + }, + { + "id":"0e549b37-9336-4f80-ab81-771344d4f105", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T05:12:59.791Z", + "completed":"2017-02-03T05:12:59.791Z", + "new_balance":"10256.86", + "value":"-25.80" + } + }, + { + "id":"cc3d662e-c97d-4592-883a-5f611ca2d294", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T14:49:25.466Z", + "completed":"2017-02-03T14:49:25.466Z", + "new_balance":"10228.85", + "value":"-28.01" + } + }, + { + "id":"a150c9d2-7e05-4683-86b4-21c42be755fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T18:20:49.737Z", + "completed":"2017-02-03T18:20:49.737Z", + "new_balance":"10205.48", + "value":"-23.37" + } + }, + { + "id":"abc20903-fa0e-4871-a281-743eabc33253", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T21:34:57.815Z", + "completed":"2017-02-06T21:34:57.815Z", + "new_balance":"10131.55", + "value":"-73.93" + } + }, + { + "id":"99c715be-9a6a-4f1c-8812-e7b0dfc68695", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T14:17:10.598Z", + "completed":"2017-02-08T14:17:10.598Z", + "new_balance":"10103.70", + "value":"-27.85" + } + }, + { + "id":"f0e64347-bb65-406f-9d0d-83b46eb80677", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T14:23:30.348Z", + "completed":"2017-02-08T14:23:30.348Z", + "new_balance":"10082.60", + "value":"-21.10" + } + }, + { + "id":"cc753bc0-c792-41d0-83e1-92c4f59dc236", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T16:52:47.553Z", + "completed":"2017-02-08T16:52:47.553Z", + "new_balance":"10078.51", + "value":"-4.09" + } + }, + { + "id":"350b42c0-396d-4c1b-a82f-318f54cc8e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T14:27:35.684Z", + "completed":"2017-02-09T14:27:35.684Z", + "new_balance":"10033.34", + "value":"-45.17" + } + }, + { + "id":"711b7c70-7be5-4860-8cae-70ec8dacd732", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T17:47:07.131Z", + "completed":"2017-02-09T17:47:07.131Z", + "new_balance":"9984.64", + "value":"-48.70" + } + }, + { + "id":"4297ab53-aafe-4047-850b-409cec3131bf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T19:43:55.861Z", + "completed":"2017-02-12T19:43:55.861Z", + "new_balance":"9978.87", + "value":"-5.77" + } + }, + { + "id":"e90e6bb7-3f69-4531-b9a8-35f27b7d1145", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T04:45:30.069Z", + "completed":"2017-02-13T04:45:30.069Z", + "new_balance":"10017.88", + "value":"39.01" + } + }, + { + "id":"d63322d9-4149-4087-98a6-1f95a08bdf6b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T06:42:15.762Z", + "completed":"2017-02-13T06:42:15.762Z", + "new_balance":"9974.09", + "value":"-43.79" + } + }, + { + "id":"4b827965-756d-4a29-843c-84bcade5e3c8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T09:10:47.459Z", + "completed":"2017-02-13T09:10:47.459Z", + "new_balance":"9965.57", + "value":"-8.52" + } + }, + { + "id":"44f9d67a-03ce-42ee-806a-2b751364241c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T13:21:09.039Z", + "completed":"2017-02-14T13:21:09.039Z", + "new_balance":"9919.94", + "value":"-45.63" + } + }, + { + "id":"581f0d09-d334-4ebb-a5f9-b9e8087f607f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T21:57:49.615Z", + "completed":"2017-02-15T21:57:49.615Z", + "new_balance":"9894.38", + "value":"-25.56" + } + }, + { + "id":"486ef4a0-f573-40c3-85b7-1e9540c4a6aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T11:17:52.383Z", + "completed":"2017-02-28T11:17:52.383Z", + "new_balance":"9860.85", + "value":"-33.53" + } + }, + { + "id":"32d0f4c4-34a0-41b7-a11f-9c567aa634db", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T04:47:20.154Z", + "completed":"2017-03-01T04:47:20.154Z", + "new_balance":"11541.26", + "value":"1680.41" + } + }, + { + "id":"196c7318-5886-47fc-b075-9c1be6bd23ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T10:27:02.815Z", + "completed":"2017-03-01T10:27:02.815Z", + "new_balance":"11030.72", + "value":"-510.54" + } + }, + { + "id":"6fc1596f-a80a-432d-9c74-7293534ff04d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T12:26:03.817Z", + "completed":"2017-03-01T12:26:03.817Z", + "new_balance":"11000.84", + "value":"-29.88" + } + }, + { + "id":"5c3456e5-81d6-4ebc-997d-2a10f74c86cf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T13:15:43.533Z", + "completed":"2017-03-01T13:15:43.533Z", + "new_balance":"10866.36", + "value":"-134.48" + } + }, + { + "id":"9d8d3393-aa51-4254-b6ba-fcef5662e6ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T19:45:14.389Z", + "completed":"2017-03-01T19:45:14.389Z", + "new_balance":"10831.93", + "value":"-34.43" + } + }, + { + "id":"657f0d62-bcce-47a7-b633-f180c380957d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T20:47:12.438Z", + "completed":"2017-03-01T20:47:12.438Z", + "new_balance":"10778.75", + "value":"-53.18" + } + }, + { + "id":"ec7d65f8-cfa5-454d-8bc9-03d6207a604d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T17:05:08.698Z", + "completed":"2017-03-02T17:05:08.698Z", + "new_balance":"10692.19", + "value":"-86.56" + } + }, + { + "id":"81ab8850-c18b-4a73-a699-feb8d037f68c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T03:46:43.874Z", + "completed":"2017-03-04T03:46:43.874Z", + "new_balance":"10685.72", + "value":"-6.47" + } + }, + { + "id":"e3a70d2b-62e2-491f-8fb9-46ef47282554", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T04:56:46.308Z", + "completed":"2017-03-04T04:56:46.308Z", + "new_balance":"10654.91", + "value":"-30.81" + } + }, + { + "id":"20912f2d-ed88-4bed-953a-25d9ef349b44", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T16:43:35.580Z", + "completed":"2017-03-04T16:43:35.580Z", + "new_balance":"10644.38", + "value":"-10.53" + } + }, + { + "id":"d5d5ba83-7cab-4a06-b592-69ccb40de4b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T21:03:56.734Z", + "completed":"2017-03-04T21:03:56.734Z", + "new_balance":"10563.17", + "value":"-81.21" + } + }, + { + "id":"f5916d9f-60df-441f-842f-54df95516632", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T04:29:50.010Z", + "completed":"2017-03-05T04:29:50.010Z", + "new_balance":"10558.40", + "value":"-4.77" + } + }, + { + "id":"eb830f5f-f42c-4f4f-8709-cd11f6c3c7db", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T06:48:18.799Z", + "completed":"2017-03-05T06:48:18.799Z", + "new_balance":"10517.17", + "value":"-41.23" + } + }, + { + "id":"7b032455-f1ec-46f4-a4ca-b66e1646749c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T12:21:09.774Z", + "completed":"2017-03-06T12:21:09.774Z", + "new_balance":"10435.96", + "value":"-81.21" + } + }, + { + "id":"e74fe302-9062-444a-a28c-dcfb5b497cbf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T14:32:39.154Z", + "completed":"2017-03-06T14:32:39.154Z", + "new_balance":"10352.16", + "value":"-83.80" + } + }, + { + "id":"5a85a901-8635-4fda-84e6-3e2da8151806", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T18:07:53.594Z", + "completed":"2017-03-07T18:07:53.594Z", + "new_balance":"10309.82", + "value":"-42.34" + } + }, + { + "id":"e9ac62a5-4454-4c50-87dc-e2d1a65623fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T01:09:12.882Z", + "completed":"2017-03-08T01:09:12.882Z", + "new_balance":"10226.02", + "value":"-83.80" + } + }, + { + "id":"aa671d29-0489-4212-bfe9-752ffe8fca32", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T16:08:22.279Z", + "completed":"2017-03-09T16:08:22.279Z", + "new_balance":"10222.44", + "value":"-3.58" + } + }, + { + "id":"dff69a1d-6016-4de4-bf4c-84d258ad1261", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T07:17:18.882Z", + "completed":"2017-03-10T07:17:18.882Z", + "new_balance":"10130.97", + "value":"-91.47" + } + }, + { + "id":"37d84038-724c-435f-828c-2a41c35283fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T02:47:05.343Z", + "completed":"2017-03-11T02:47:05.343Z", + "new_balance":"10123.69", + "value":"-7.28" + } + }, + { + "id":"dd1cb3fb-d19e-4349-951e-e4e64aa33074", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T15:02:16.556Z", + "completed":"2017-03-12T15:02:16.556Z", + "new_balance":"10110.45", + "value":"-13.24" + } + }, + { + "id":"de9ecf70-43ce-49de-b62e-115136819de1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T20:31:57.241Z", + "completed":"2017-03-12T20:31:57.241Z", + "new_balance":"10083.15", + "value":"-27.30" + } + }, + { + "id":"8b362383-b82c-4d84-ad47-b85fdf350c89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T14:46:53.794Z", + "completed":"2017-03-13T14:46:53.794Z", + "new_balance":"10037.14", + "value":"-46.01" + } + }, + { + "id":"c17a68ce-a644-40fa-861e-bd836b8d0aa4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T22:22:26.221Z", + "completed":"2017-03-14T22:22:26.221Z", + "new_balance":"10030.15", + "value":"-6.99" + } + }, + { + "id":"6ba53263-4ab1-411d-8bb2-84c03603967b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T04:01:36.558Z", + "completed":"2017-03-16T04:01:36.558Z", + "new_balance":"9948.74", + "value":"-81.41" + } + }, + { + "id":"be7286d7-052a-4154-ae3c-8fa185739f03", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T06:04:43.256Z", + "completed":"2017-03-16T06:04:43.256Z", + "new_balance":"9901.94", + "value":"-46.80" + } + }, + { + "id":"9d1fdd2b-18ce-48be-be69-05ca0932ad3a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T15:23:04.178Z", + "completed":"2017-03-18T15:23:04.178Z", + "new_balance":"9894.95", + "value":"-6.99" + } + }, + { + "id":"f315d9ba-92c6-4faa-8f2f-0e79b8593280", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T12:31:55.897Z", + "completed":"2017-03-19T12:31:55.897Z", + "new_balance":"9843.94", + "value":"-51.01" + } + }, + { + "id":"1a942d19-ed02-43bf-bee2-f8625d1d570b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T13:39:30.927Z", + "completed":"2017-03-19T13:39:30.927Z", + "new_balance":"9810.03", + "value":"-33.91" + } + }, + { + "id":"33b817cb-692d-4161-a16c-0a3d808f6397", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T18:37:19.527Z", + "completed":"2017-03-19T18:37:19.527Z", + "new_balance":"9773.08", + "value":"-36.95" + } + }, + { + "id":"375f2d39-b3c3-4ca6-95f4-ef0a834d8dd7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T02:15:11.119Z", + "completed":"2017-03-20T02:15:11.119Z", + "new_balance":"9699.57", + "value":"-73.51" + } + }, + { + "id":"f9590873-a132-435e-b845-14bf7aced8a7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T07:25:46.797Z", + "completed":"2017-03-20T07:25:46.797Z", + "new_balance":"9640.67", + "value":"-58.90" + } + }, + { + "id":"9caab162-48ce-4643-9a1f-1342da5e2f50", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:02:54.005Z", + "completed":"2017-03-21T07:02:54.005Z", + "new_balance":"9634.79", + "value":"-5.88" + } + }, + { + "id":"5fab4988-6ad4-40ad-98cd-0826c967b85c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T19:36:08.203Z", + "completed":"2017-03-21T19:36:08.203Z", + "new_balance":"9628.32", + "value":"-6.47" + } + }, + { + "id":"f22de046-103e-44c4-b5be-a487bfcb34e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:15:45.854Z", + "completed":"2017-03-23T04:15:45.854Z", + "new_balance":"9582.81", + "value":"-45.51" + } + }, + { + "id":"3ac2da10-e786-4134-9df8-76c651012cf6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T22:06:13.273Z", + "completed":"2017-03-23T22:06:13.273Z", + "new_balance":"9571.58", + "value":"-11.23" + } + }, + { + "id":"e7014b05-2100-4b3e-abac-836ecc4129e1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T12:17:34.218Z", + "completed":"2017-03-24T12:17:34.218Z", + "new_balance":"9542.72", + "value":"-28.86" + } + }, + { + "id":"ab60740f-cb58-43df-9969-87ef01846ef2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T02:24:07.368Z", + "completed":"2017-03-25T02:24:07.368Z", + "new_balance":"9508.69", + "value":"-34.03" + } + }, + { + "id":"621ce179-a2ca-49ee-842a-651da7c375f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T07:42:08.474Z", + "completed":"2017-03-25T07:42:08.474Z", + "new_balance":"9492.61", + "value":"-16.08" + } + }, + { + "id":"f5e5cf58-4acd-410c-b030-20663a265b4a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T23:10:56.228Z", + "completed":"2017-03-27T23:10:56.228Z", + "new_balance":"9303.34", + "value":"-189.27" + } + }, + { + "id":"d081072c-73cf-4833-9108-1af38d47252f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T01:04:17.792Z", + "completed":"2017-03-28T01:04:17.792Z", + "new_balance":"9276.37", + "value":"-26.97" + } + }, + { + "id":"73ebb699-b02f-4657-992b-d41f13bef6cf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T00:09:50.800Z", + "completed":"2017-04-01T00:09:50.800Z", + "new_balance":"8765.83", + "value":"-510.54" + } + }, + { + "id":"fb5dd55c-a327-458c-beed-c6d7be33f5a9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T09:42:30.235Z", + "completed":"2017-04-01T09:42:30.235Z", + "new_balance":"8631.35", + "value":"-134.48" + } + }, + { + "id":"aa0024c1-1eae-4c1d-9961-721bb3b8428a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T13:18:57.395Z", + "completed":"2017-04-01T13:18:57.395Z", + "new_balance":"8578.17", + "value":"-53.18" + } + }, + { + "id":"6443a12f-57a6-413d-b256-e1d1ace6d2be", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T17:31:10.106Z", + "completed":"2017-04-01T17:31:10.106Z", + "new_balance":"8548.29", + "value":"-29.88" + } + }, + { + "id":"324f8c1d-1c13-42be-85a8-5b480c9721ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T07:06:34.173Z", + "completed":"2017-04-02T07:06:34.173Z", + "new_balance":"8461.73", + "value":"-86.56" + } + }, + { + "id":"579c9bcc-a629-4a3e-ba84-07243bf91143", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T11:43:20.601Z", + "completed":"2017-04-02T11:43:20.601Z", + "new_balance":"8389.74", + "value":"-71.99" + } + }, + { + "id":"c487145f-2fb1-42f3-9e02-53b9a9e4dbc0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T01:27:15.666Z", + "completed":"2017-04-03T01:27:15.666Z", + "new_balance":"8352.55", + "value":"-37.19" + } + }, + { + "id":"556adcf0-92f7-4f85-936c-4125e5b2336e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T09:52:35.092Z", + "completed":"2017-04-03T09:52:35.092Z", + "new_balance":"8474.75", + "value":"122.20" + } + }, + { + "id":"82794320-eaca-4a0d-989d-4d56d2276c39", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:12:57.118Z", + "completed":"2017-04-03T16:12:57.118Z", + "new_balance":"8547.58", + "value":"72.83" + } + }, + { + "id":"5c548ebc-e22f-43d8-94dc-017f3a1b18f0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:21:02.375Z", + "completed":"2017-04-03T16:21:02.375Z", + "new_balance":"8510.39", + "value":"-37.19" + } + }, + { + "id":"ee811271-adf8-439c-bf76-8b717df2e994", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T19:57:25.600Z", + "completed":"2017-04-03T19:57:25.600Z", + "new_balance":"8475.61", + "value":"-34.78" + } + }, + { + "id":"9af4668d-81f6-424e-a5f7-33ea875ef1f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T08:26:34.365Z", + "completed":"2017-04-04T08:26:34.365Z", + "new_balance":"8401.68", + "value":"-73.93" + } + }, + { + "id":"0d9d4b33-8f16-46e9-bc80-c3ed5fab1793", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T09:44:16.961Z", + "completed":"2017-04-05T09:44:16.961Z", + "new_balance":"8374.23", + "value":"-27.45" + } + }, + { + "id":"9e348bc6-6058-4e4b-a2f7-a24686ab541d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T18:55:11.509Z", + "completed":"2017-04-05T18:55:11.509Z", + "new_balance":"8370.64", + "value":"-3.59" + } + }, + { + "id":"6b51891b-8a62-42bf-8b28-c5f5455bad7c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T12:01:01.125Z", + "completed":"2017-04-07T12:01:01.125Z", + "new_balance":"8355.82", + "value":"-14.82" + } + }, + { + "id":"40637285-9cb7-44e1-9af4-20faa3e1bb68", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T17:52:58.871Z", + "completed":"2017-04-07T17:52:58.871Z", + "new_balance":"8324.53", + "value":"-31.29" + } + }, + { + "id":"8ad03d9b-189a-49c0-8439-99c6053e1f98", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T13:52:15.780Z", + "completed":"2017-04-08T13:52:15.780Z", + "new_balance":"8317.37", + "value":"-7.16" + } + }, + { + "id":"2edfe466-9abf-41a9-a748-7201d4ff92f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T01:07:27.667Z", + "completed":"2017-04-09T01:07:27.667Z", + "new_balance":"8128.10", + "value":"-189.27" + } + }, + { + "id":"c4eca88d-cfca-4479-9322-317f8c099e5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T12:40:28.113Z", + "completed":"2017-04-09T12:40:28.113Z", + "new_balance":"8105.85", + "value":"-22.25" + } + }, + { + "id":"9d716988-0304-4faf-8a7b-35f9a88981fc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T19:31:46.745Z", + "completed":"2017-04-09T19:31:46.745Z", + "new_balance":"8099.14", + "value":"-6.71" + } + }, + { + "id":"cc5fab90-86fc-4f67-a6d5-936bba63bae6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T09:54:11.431Z", + "completed":"2017-04-10T09:54:11.431Z", + "new_balance":"8053.90", + "value":"-45.24" + } + }, + { + "id":"2cd2b2d1-ab71-4e24-abbc-16f4804550aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T23:21:01.903Z", + "completed":"2017-04-17T23:21:01.903Z", + "new_balance":"8044.20", + "value":"-9.70" + } + }, + { + "id":"bfa2041d-8126-4191-a5bd-a03fbb259efe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T21:39:31.123Z", + "completed":"2017-04-18T21:39:31.123Z", + "new_balance":"8011.92", + "value":"-32.28" + } + }, + { + "id":"b0ad76ce-f7c7-4689-81e8-6783aa0df313", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T12:12:22.492Z", + "completed":"2017-04-25T12:12:22.492Z", + "new_balance":"7969.40", + "value":"-42.52" + } + }, + { + "id":"83a9b0d1-6207-4f54-a757-bf340f5e93b2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T08:34:51.377Z", + "completed":"2017-04-26T08:34:51.377Z", + "new_balance":"7962.69", + "value":"-6.71" + } + }, + { + "id":"6a63e602-671e-4fd4-807e-0338ac125d76", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T20:15:34.245Z", + "completed":"2017-04-26T20:15:34.245Z", + "new_balance":"7899.12", + "value":"-63.57" + } + }, + { + "id":"3adf3dc7-dae7-40a7-8918-0d8915dbce9d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T04:42:02.805Z", + "completed":"2017-05-02T04:42:02.805Z", + "new_balance":"7869.24", + "value":"-29.88" + } + }, + { + "id":"7ddbb8c5-059d-4ed0-ab1e-d933917106c5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T06:33:21.277Z", + "completed":"2017-05-02T06:33:21.277Z", + "new_balance":"7834.81", + "value":"-34.43" + } + }, + { + "id":"95d4c47e-4459-49ae-a0ad-a8415784f477", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T07:20:52.638Z", + "completed":"2017-05-02T07:20:52.638Z", + "new_balance":"7700.33", + "value":"-134.48" + } + }, + { + "id":"8ef422b8-b0ba-487c-b54a-f4608b638ad7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T09:45:10.364Z", + "completed":"2017-05-02T09:45:10.364Z", + "new_balance":"7647.15", + "value":"-53.18" + } + }, + { + "id":"bd2c13b1-8194-422f-802a-2b4bd76e6559", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T12:19:31.366Z", + "completed":"2017-05-02T12:19:31.366Z", + "new_balance":"7631.22", + "value":"-15.93" + } + }, + { + "id":"6f99af02-c6f5-472d-8cfb-533f54e8d6e1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T12:20:47.074Z", + "completed":"2017-05-02T12:20:47.074Z", + "new_balance":"7544.66", + "value":"-86.56" + } + }, + { + "id":"d07c3cd1-64c2-43a7-bab2-ee9ce0f4b0ee", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T17:52:01.193Z", + "completed":"2017-05-02T17:52:01.193Z", + "new_balance":"9225.07", + "value":"1680.41" + } + }, + { + "id":"dec6030c-e584-4f6e-991d-55138dcfda62", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T18:04:21.580Z", + "completed":"2017-05-02T18:04:21.580Z", + "new_balance":"8714.53", + "value":"-510.54" + } + }, + { + "id":"6b91c208-741f-4efd-8b10-1ad15d2a5961", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:52:35.677Z", + "completed":"2017-05-03T05:52:35.677Z", + "new_balance":"8691.16", + "value":"-23.37" + } + }, + { + "id":"f156f6d8-df0a-41b5-8c74-e48b89fa6451", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T06:40:10.351Z", + "completed":"2017-05-03T06:40:10.351Z", + "new_balance":"8676.52", + "value":"-14.64" + } + }, + { + "id":"50cbe35b-a148-4736-a082-4dd6707393c0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T11:26:03.307Z", + "completed":"2017-05-04T11:26:03.307Z", + "new_balance":"8650.72", + "value":"-25.80" + } + }, + { + "id":"f095f0c0-dfec-4fd9-ad56-42d1fa96fd0c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T23:57:23.352Z", + "completed":"2017-05-04T23:57:23.352Z", + "new_balance":"8622.71", + "value":"-28.01" + } + }, + { + "id":"d54adf5c-7a50-40f1-88da-7080df4999bb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T12:52:35.236Z", + "completed":"2017-05-05T12:52:35.236Z", + "new_balance":"8548.78", + "value":"-73.93" + } + }, + { + "id":"fe9baba8-f525-4607-b088-0c02a52392c3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T09:46:42.247Z", + "completed":"2017-05-07T09:46:42.247Z", + "new_balance":"8544.69", + "value":"-4.09" + } + }, + { + "id":"656b0272-c657-4047-babc-12feaaa8b246", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T18:01:37.061Z", + "completed":"2017-05-07T18:01:37.061Z", + "new_balance":"8516.84", + "value":"-27.85" + } + }, + { + "id":"b66de544-5eaa-49c2-9ca9-217012f6c1fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T19:21:59.052Z", + "completed":"2017-05-12T19:21:59.052Z", + "new_balance":"8495.74", + "value":"-21.10" + } + }, + { + "id":"e9a8d653-fd19-41f2-b185-5b0827a3faef", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:47:24.704Z", + "completed":"2017-05-12T21:47:24.704Z", + "new_balance":"8447.04", + "value":"-48.70" + } + }, + { + "id":"a3ac7d82-9b7b-4dac-ab1f-7dc6faa2dd8d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T02:32:20.505Z", + "completed":"2017-05-14T02:32:20.505Z", + "new_balance":"8401.87", + "value":"-45.17" + } + }, + { + "id":"2810c0fe-d20f-4912-a7e0-426285a2dd2e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T02:20:33.198Z", + "completed":"2017-05-16T02:20:33.198Z", + "new_balance":"8396.10", + "value":"-5.77" + } + }, + { + "id":"48a649bc-c270-4adb-ad0e-b515eb0bb054", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T03:31:09.261Z", + "completed":"2017-05-18T03:31:09.261Z", + "new_balance":"8387.58", + "value":"-8.52" + } + }, + { + "id":"e9edbd0e-7d2e-4f9c-9648-e9a2d54c14dc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:12:07.489Z", + "completed":"2017-05-20T06:12:07.489Z", + "new_balance":"8426.59", + "value":"39.01" + } + }, + { + "id":"0955f102-ed0d-48e5-b6f3-6b8aff6b7d70", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T09:26:09.990Z", + "completed":"2017-05-21T09:26:09.990Z", + "new_balance":"8382.80", + "value":"-43.79" + } + }, + { + "id":"630acd7b-37e1-4bf4-9a1c-3156ad082f3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T16:33:09.436Z", + "completed":"2017-05-21T16:33:09.436Z", + "new_balance":"8337.17", + "value":"-45.63" + } + }, + { + "id":"3ad7c058-e94e-4551-a35b-dca0f6d98746", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T02:52:22.722Z", + "completed":"2017-05-27T02:52:22.722Z", + "new_balance":"8311.61", + "value":"-25.56" + } + }, + { + "id":"fa2ba94d-4d92-4c28-8d9b-8d17ede5155a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T10:35:47.255Z", + "completed":"2017-05-27T10:35:47.255Z", + "new_balance":"8278.08", + "value":"-33.53" + } + }, + { + "id":"4345d08b-6aad-436d-b867-2ebd10ac6698", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T00:31:38.308Z", + "completed":"2017-06-01T00:31:38.308Z", + "new_balance":"8248.20", + "value":"-29.88" + } + }, + { + "id":"2e128d48-1fbd-4eaf-a6d9-ce0978ac27fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T06:41:12.048Z", + "completed":"2017-06-01T06:41:12.048Z", + "new_balance":"9928.61", + "value":"1680.41" + } + }, + { + "id":"7ffd1919-40df-4e2a-94da-01d1b4dc6439", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T14:59:36.404Z", + "completed":"2017-06-01T14:59:36.404Z", + "new_balance":"9794.13", + "value":"-134.48" + } + }, + { + "id":"31ac6f78-29bd-4b7b-a1d4-c5283a65a7a0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T16:23:54.542Z", + "completed":"2017-06-01T16:23:54.542Z", + "new_balance":"9283.59", + "value":"-510.54" + } + }, + { + "id":"84c58132-8a9e-445f-a754-1bda7b60da91", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T17:37:09.872Z", + "completed":"2017-06-01T17:37:09.872Z", + "new_balance":"9230.41", + "value":"-53.18" + } + }, + { + "id":"fe876a82-19e8-4b8d-bdce-ed23e66e5446", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T21:52:55.885Z", + "completed":"2017-06-01T21:52:55.885Z", + "new_balance":"9195.98", + "value":"-34.43" + } + }, + { + "id":"bbe5bc7b-ad76-48b3-bd51-aa5ad10c0d00", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T08:38:51.435Z", + "completed":"2017-06-04T08:38:51.435Z", + "new_balance":"9064.14", + "value":"-131.84" + } + }, + { + "id":"281649d8-a1ea-4db6-baf6-0e107d02a39a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T09:25:54.713Z", + "completed":"2017-06-04T09:25:54.713Z", + "new_balance":"8977.58", + "value":"-86.56" + } + }, + { + "id":"a87db47a-8ea6-4685-ba13-4dd446d1e212", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T19:10:55.387Z", + "completed":"2017-06-11T19:10:55.387Z", + "new_balance":"8946.77", + "value":"-30.81" + } + }, + { + "id":"b6f304c5-20bb-4b74-9c5c-d91511b7d66f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T13:52:22.820Z", + "completed":"2017-06-12T13:52:22.820Z", + "new_balance":"8936.24", + "value":"-10.53" + } + }, + { + "id":"82129634-a607-493b-a446-85d66138bd28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T04:03:51.930Z", + "completed":"2017-06-13T04:03:51.930Z", + "new_balance":"8855.03", + "value":"-81.21" + } + }, + { + "id":"39745b7b-b746-4b1f-8218-30e56fee9409", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T19:51:27.872Z", + "completed":"2017-06-13T19:51:27.872Z", + "new_balance":"8848.56", + "value":"-6.47" + } + }, + { + "id":"0ab3b314-f24d-4efd-a904-c79b87e490b3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T03:48:53.812Z", + "completed":"2017-06-16T03:48:53.812Z", + "new_balance":"8807.33", + "value":"-41.23" + } + }, + { + "id":"5e9d83cd-739b-467f-8273-2783df5ca64e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T17:46:11.492Z", + "completed":"2017-06-17T17:46:11.492Z", + "new_balance":"8726.12", + "value":"-81.21" + } + }, + { + "id":"a4b3c35b-b593-4dd7-b4ca-6587f5554089", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T21:09:06.113Z", + "completed":"2017-06-17T21:09:06.113Z", + "new_balance":"8721.35", + "value":"-4.77" + } + }, + { + "id":"1cf69195-7444-4da0-8020-083b1a76f24c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T10:30:07.087Z", + "completed":"2017-06-18T10:30:07.087Z", + "new_balance":"8637.55", + "value":"-83.80" + } + }, + { + "id":"1bf46aab-9a26-451a-8d58-4c1c99281232", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T09:45:53.263Z", + "completed":"2017-06-19T09:45:53.263Z", + "new_balance":"8553.75", + "value":"-83.80" + } + }, + { + "id":"b42a0c16-9c54-409c-a985-7d3a420e84a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:22:48.692Z", + "completed":"2017-06-19T12:22:48.692Z", + "new_balance":"8511.41", + "value":"-42.34" + } + }, + { + "id":"cde871fd-867d-412d-8fa2-a91124f81013", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T06:39:32.248Z", + "completed":"2017-06-21T06:39:32.248Z", + "new_balance":"8419.94", + "value":"-91.47" + } + }, + { + "id":"43d65128-578f-4888-a72c-abdd34f5719d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T08:27:23.135Z", + "completed":"2017-06-21T08:27:23.135Z", + "new_balance":"8416.36", + "value":"-3.58" + } + }, + { + "id":"9f9ac56d-623a-4285-aed2-be31ef4f233e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T20:40:30.552Z", + "completed":"2017-06-23T20:40:30.552Z", + "new_balance":"8389.06", + "value":"-27.30" + } + }, + { + "id":"98f38a5e-b01d-49e1-be43-acde3fe31ca1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T21:51:02.192Z", + "completed":"2017-06-23T21:51:02.192Z", + "new_balance":"8381.78", + "value":"-7.28" + } + }, + { + "id":"c9e00be2-090e-4060-9d39-2d483025924d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T04:38:09.189Z", + "completed":"2017-06-24T04:38:09.189Z", + "new_balance":"8368.54", + "value":"-13.24" + } + }, + { + "id":"d0702986-28ea-4c99-98fe-8164480a992b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T16:42:09.766Z", + "completed":"2017-06-24T16:42:09.766Z", + "new_balance":"8322.53", + "value":"-46.01" + } + }, + { + "id":"27ad4e0e-a533-44fa-817d-0c70300ec8c8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T03:01:17.729Z", + "completed":"2017-06-28T03:01:17.729Z", + "new_balance":"8241.12", + "value":"-81.41" + } + }, + { + "id":"fa2f4fea-5a5e-4594-80f8-84fb0fa49840", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T13:50:26.890Z", + "completed":"2017-06-28T13:50:26.890Z", + "new_balance":"8234.13", + "value":"-6.99" + } + }, + { + "id":"d99d9cc0-01ad-4757-bb23-9dc65e082975", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T20:38:48.256Z", + "completed":"2017-06-28T20:38:48.256Z", + "new_balance":"8227.14", + "value":"-6.99" + } + }, + { + "id":"1dc2a4bf-658c-439f-aec2-5fc470bc2132", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T23:39:44.657Z", + "completed":"2017-06-28T23:39:44.657Z", + "new_balance":"8180.34", + "value":"-46.80" + } + }, + { + "id":"dd2469ec-732b-443f-8725-d8be10a6d4ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T01:08:27.245Z", + "completed":"2017-06-29T01:08:27.245Z", + "new_balance":"8121.44", + "value":"-58.90" + } + }, + { + "id":"4bb632fb-aa26-416c-8ce8-8331623d79b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T02:55:57.938Z", + "completed":"2017-06-29T02:55:57.938Z", + "new_balance":"8047.93", + "value":"-73.51" + } + }, + { + "id":"4d26ead8-3ca5-409f-9789-d0ebfdd52111", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T06:25:46.301Z", + "completed":"2017-06-29T06:25:46.301Z", + "new_balance":"8041.46", + "value":"-6.47" + } + }, + { + "id":"957ce7f5-9fae-4f1b-888d-9f4d61e04529", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T10:57:38.837Z", + "completed":"2017-06-29T10:57:38.837Z", + "new_balance":"7990.45", + "value":"-51.01" + } + }, + { + "id":"1157d046-286c-4f5b-89f5-dfc9a7af4efb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T19:18:53.460Z", + "completed":"2017-06-29T19:18:53.460Z", + "new_balance":"7953.50", + "value":"-36.95" + } + }, + { + "id":"58f1ea67-1c27-4318-8fe4-f432108ee498", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T23:38:33.965Z", + "completed":"2017-06-29T23:38:33.965Z", + "new_balance":"7919.59", + "value":"-33.91" + } + }, + { + "id":"418d7352-333b-4ee7-b7ae-0697017af1b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T06:22:35.096Z", + "completed":"2017-06-30T06:22:35.096Z", + "new_balance":"7874.08", + "value":"-45.51" + } + }, + { + "id":"d2c9cbfb-4df2-4c3a-9698-a4746c1d7ce7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T15:56:48.756Z", + "completed":"2017-06-30T15:56:48.756Z", + "new_balance":"7845.22", + "value":"-28.86" + } + }, + { + "id":"00d3d8c9-ea49-44bb-9d19-789d31cbc817", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T18:06:47.866Z", + "completed":"2017-06-30T18:06:47.866Z", + "new_balance":"7833.99", + "value":"-11.23" + } + }, + { + "id":"c906040c-0b0d-4609-83ff-55c999205950", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T22:49:46.626Z", + "completed":"2017-06-30T22:49:46.626Z", + "new_balance":"7828.11", + "value":"-5.88" + } + }, + { + "id":"3d12fad8-35dc-4533-9043-74a5e145860d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T00:32:32.904Z", + "completed":"2017-07-01T00:32:32.904Z", + "new_balance":"7693.63", + "value":"-134.48" + } + }, + { + "id":"97ceab90-ec58-449b-ae47-68a1acb1a10a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T02:04:27.131Z", + "completed":"2017-07-01T02:04:27.131Z", + "new_balance":"7504.36", + "value":"-189.27" + } + }, + { + "id":"1e221b03-acbf-4173-b484-f5e49c904d73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T05:22:39.590Z", + "completed":"2017-07-01T05:22:39.590Z", + "new_balance":"6993.82", + "value":"-510.54" + } + }, + { + "id":"a24f0c53-dd06-45fb-86de-132e35ce6337", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T10:25:17.271Z", + "completed":"2017-07-01T10:25:17.271Z", + "new_balance":"6959.79", + "value":"-34.03" + } + }, + { + "id":"7652a61e-ecc3-4810-aa06-2cf57d9cb1ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:31:21.529Z", + "completed":"2017-07-01T15:31:21.529Z", + "new_balance":"6925.36", + "value":"-34.43" + } + }, + { + "id":"f52fab65-f8ce-4bc9-aca3-124ebe785022", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:36:48.624Z", + "completed":"2017-07-01T17:36:48.624Z", + "new_balance":"6898.39", + "value":"-26.97" + } + }, + { + "id":"4b2c8868-98ea-4726-a69b-023a6bbbac6a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T18:51:34.898Z", + "completed":"2017-07-01T18:51:34.898Z", + "new_balance":"6882.31", + "value":"-16.08" + } + }, + { + "id":"16a5a035-8b39-4b50-a269-9e26334187d5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T21:25:34.303Z", + "completed":"2017-07-01T21:25:34.303Z", + "new_balance":"6829.13", + "value":"-53.18" + } + }, + { + "id":"3eb4b0dd-fbaf-496d-95f5-24407f3e9326", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T21:25:41.524Z", + "completed":"2017-07-01T21:25:41.524Z", + "new_balance":"6794.70", + "value":"-34.43" + } + }, + { + "id":"e0f26bf1-eb23-442d-8b71-0eef39e92bcd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T22:08:38.809Z", + "completed":"2017-07-01T22:08:38.809Z", + "new_balance":"6764.82", + "value":"-29.88" + } + }, + { + "id":"cea54bd9-88ea-4288-9100-9b8f5f0cd46f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T04:04:46.356Z", + "completed":"2017-07-02T04:04:46.356Z", + "new_balance":"6678.26", + "value":"-86.56" + } + }, + { + "id":"7976e1bf-95cb-4928-a5a0-1ac1786d6973", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T03:24:44.432Z", + "completed":"2017-07-03T03:24:44.432Z", + "new_balance":"6582.83", + "value":"-95.43" + } + }, + { + "id":"cbaee7b7-5540-4a1b-8cce-fb23844cbc03", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T23:09:25.559Z", + "completed":"2017-07-04T23:09:25.559Z", + "new_balance":"6567.05", + "value":"-15.78" + } + }, + { + "id":"a43abbc5-2976-4969-b0ce-a714b5b21f8b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T06:26:21.943Z", + "completed":"2017-07-05T06:26:21.943Z", + "new_balance":"6494.96", + "value":"-72.09" + } + }, + { + "id":"056fb48e-c36c-4fdb-a63a-a87a67b6015e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T13:05:02.618Z", + "completed":"2017-07-05T13:05:02.618Z", + "new_balance":"6421.03", + "value":"-73.93" + } + }, + { + "id":"2c090975-ad62-42c2-8e1d-acf971c9891e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T15:07:50.024Z", + "completed":"2017-07-06T15:07:50.024Z", + "new_balance":"6417.44", + "value":"-3.59" + } + }, + { + "id":"be343328-3c2b-4a9d-8814-5cfa7c205089", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T03:20:33.765Z", + "completed":"2017-07-11T03:20:33.765Z", + "new_balance":"6389.99", + "value":"-27.45" + } + }, + { + "id":"7ac60374-0644-4e46-b3c0-a4dcbc3f12f3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:27:58.130Z", + "completed":"2017-07-12T10:27:58.130Z", + "new_balance":"6358.70", + "value":"-31.29" + } + }, + { + "id":"d24d1bd5-455b-4193-af3b-2d0d038668cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T23:57:41.927Z", + "completed":"2017-07-14T23:57:41.927Z", + "new_balance":"6343.88", + "value":"-14.82" + } + }, + { + "id":"942ac1e0-48d7-47b8-ab6a-ff0f12192fbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T16:52:25.010Z", + "completed":"2017-07-16T16:52:25.010Z", + "new_balance":"6336.72", + "value":"-7.16" + } + }, + { + "id":"5ef8626a-c8b8-44dc-89ef-3e82fff6b782", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T01:33:21.315Z", + "completed":"2017-07-18T01:33:21.315Z", + "new_balance":"6314.47", + "value":"-22.25" + } + }, + { + "id":"a6cb80f7-59b6-440b-baa4-0e548293dd1a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T04:56:45.008Z", + "completed":"2017-07-20T04:56:45.008Z", + "new_balance":"6307.76", + "value":"-6.71" + } + }, + { + "id":"502f6a12-0866-490d-b766-f58f55da3477", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T08:36:45.784Z", + "completed":"2017-07-20T08:36:45.784Z", + "new_balance":"6118.49", + "value":"-189.27" + } + }, + { + "id":"16d6eeed-9767-4b43-9155-844f618b2769", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T07:26:21.139Z", + "completed":"2017-07-24T07:26:21.139Z", + "new_balance":"6108.79", + "value":"-9.70" + } + }, + { + "id":"d3ee3a4f-fa67-4937-b918-66b33e011292", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T14:45:14.990Z", + "completed":"2017-07-24T14:45:14.990Z", + "new_balance":"6063.55", + "value":"-45.24" + } + }, + { + "id":"406b0038-f874-4114-8fdc-1006a14af8b7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T21:04:42.728Z", + "completed":"2017-07-25T21:04:42.728Z", + "new_balance":"6021.03", + "value":"-42.52" + } + }, + { + "id":"0562f247-9b4a-4f07-a070-cb315a568370", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T23:51:15.542Z", + "completed":"2017-07-25T23:51:15.542Z", + "new_balance":"5988.75", + "value":"-32.28" + } + }, + { + "id":"fc303b4c-81de-4f9d-8fc5-aa1f6621156c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T12:58:25.985Z", + "completed":"2017-07-26T12:58:25.985Z", + "new_balance":"5925.18", + "value":"-63.57" + } + }, + { + "id":"ce67b540-f583-4141-8ce3-fd090c379fad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T09:53:42.406Z", + "completed":"2017-07-27T09:53:42.406Z", + "new_balance":"5918.47", + "value":"-6.71" + } + }, + { + "id":"3b3f2907-e84b-4b28-82b9-708e906080be", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T01:19:10.220Z", + "completed":"2017-08-01T01:19:10.220Z", + "new_balance":"5884.04", + "value":"-34.43" + } + }, + { + "id":"33058204-992b-463c-88df-9d4a876880fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T06:10:19.610Z", + "completed":"2017-08-01T06:10:19.610Z", + "new_balance":"5373.50", + "value":"-510.54" + } + }, + { + "id":"b21cdf29-c89d-4c57-82bf-559f0ec6b19a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T06:39:58.932Z", + "completed":"2017-08-01T06:39:58.932Z", + "new_balance":"7053.91", + "value":"1680.41" + } + }, + { + "id":"a27b516c-269f-4822-b739-0664aea1135b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T13:56:46.488Z", + "completed":"2017-08-01T13:56:46.488Z", + "new_balance":"7024.03", + "value":"-29.88" + } + }, + { + "id":"a46c5c51-1dda-4488-b68f-ec67d5526063", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T14:29:02.773Z", + "completed":"2017-08-01T14:29:02.773Z", + "new_balance":"6970.85", + "value":"-53.18" + } + }, + { + "id":"1d073e4b-885b-4a44-a2a6-7a9bc3b06e2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T17:11:26.144Z", + "completed":"2017-08-01T17:11:26.144Z", + "new_balance":"6836.37", + "value":"-134.48" + } + }, + { + "id":"a5d27b7b-9618-468a-aca3-578fe59c0792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T12:16:47.071Z", + "completed":"2017-08-02T12:16:47.071Z", + "new_balance":"6749.81", + "value":"-86.56" + } + }, + { + "id":"1df40c4e-22b6-418b-b19f-b216a6c92658", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T01:52:00.414Z", + "completed":"2017-08-03T01:52:00.414Z", + "new_balance":"6746.22", + "value":"-3.59" + } + }, + { + "id":"1a68d9bd-b8f3-42fd-bd22-66833e216cbe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T21:28:15.054Z", + "completed":"2017-08-04T21:28:15.054Z", + "new_balance":"6711.67", + "value":"-34.55" + } + }, + { + "id":"30baa440-0a10-4809-a8ac-a98466144e8b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T02:15:51.645Z", + "completed":"2017-08-07T02:15:51.645Z", + "new_balance":"6688.30", + "value":"-23.37" + } + }, + { + "id":"4fee73b7-2361-4e1b-aefb-35794a98e1d0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T02:03:47.709Z", + "completed":"2017-08-09T02:03:47.709Z", + "new_balance":"6660.29", + "value":"-28.01" + } + }, + { + "id":"5609d87a-4778-4b84-8dd9-06a6a7b5c47e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T10:54:56.997Z", + "completed":"2017-08-09T10:54:56.997Z", + "new_balance":"6634.49", + "value":"-25.80" + } + }, + { + "id":"f2840063-da98-4e25-82fa-fbe6046e2943", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T11:33:34.659Z", + "completed":"2017-08-10T11:33:34.659Z", + "new_balance":"6560.56", + "value":"-73.93" + } + }, + { + "id":"374d16c5-5d00-49ba-a3a5-2a0e26a737f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T01:20:48.955Z", + "completed":"2017-08-14T01:20:48.955Z", + "new_balance":"6556.47", + "value":"-4.09" + } + }, + { + "id":"db4d1f36-4d36-492f-946e-26f0b237ae07", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T10:21:24.461Z", + "completed":"2017-08-15T10:21:24.461Z", + "new_balance":"6520.54", + "value":"-35.93" + } + }, + { + "id":"744e8840-adf0-4a16-bfdb-e00ffc3c3459", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T17:48:37.640Z", + "completed":"2017-08-15T17:48:37.640Z", + "new_balance":"6492.69", + "value":"-27.85" + } + }, + { + "id":"7ac833e1-7149-4d3e-8702-521ed6d0a83a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T23:16:20.542Z", + "completed":"2017-08-16T23:16:20.542Z", + "new_balance":"6443.99", + "value":"-48.70" + } + }, + { + "id":"23177fa8-773a-4573-95f3-f4096520a9bc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T10:19:47.599Z", + "completed":"2017-08-17T10:19:47.599Z", + "new_balance":"6398.82", + "value":"-45.17" + } + }, + { + "id":"86303588-71fe-4f45-bd25-518609bfe1e3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T12:41:48.275Z", + "completed":"2017-08-20T12:41:48.275Z", + "new_balance":"6393.05", + "value":"-5.77" + } + }, + { + "id":"76f198c9-0305-4cf2-9871-ddf1f4afb9fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T23:52:37.997Z", + "completed":"2017-08-20T23:52:37.997Z", + "new_balance":"6384.53", + "value":"-8.52" + } + }, + { + "id":"f5f53b6e-00b0-409a-9163-6c3eed9a9f28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T18:25:16.340Z", + "completed":"2017-08-22T18:25:16.340Z", + "new_balance":"6423.54", + "value":"39.01" + } + }, + { + "id":"74327752-925e-4ebf-a61a-ce142729f244", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T00:00:39.912Z", + "completed":"2017-08-23T00:00:39.912Z", + "new_balance":"6379.75", + "value":"-43.79" + } + }, + { + "id":"b1deb462-eb4d-4cb6-929b-8151f3e73efc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T01:50:18.879Z", + "completed":"2017-08-23T01:50:18.879Z", + "new_balance":"6334.12", + "value":"-45.63" + } + }, + { + "id":"35d98fbb-c260-4014-bf07-b3632b02da30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T11:05:21.125Z", + "completed":"2017-08-28T11:05:21.125Z", + "new_balance":"6308.56", + "value":"-25.56" + } + }, + { + "id":"f2857f83-d681-485c-b755-c2e0c8a80a99", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T12:23:51.991Z", + "completed":"2017-08-28T12:23:51.991Z", + "new_balance":"6275.03", + "value":"-33.53" + } + }, + { + "id":"52969575-c1aa-4007-894e-d4591b93711d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T02:32:58.002Z", + "completed":"2017-09-01T02:32:58.002Z", + "new_balance":"6221.85", + "value":"-53.18" + } + }, + { + "id":"babfd1fb-e60e-4ba8-b771-a9540d97827e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T02:57:05.411Z", + "completed":"2017-09-01T02:57:05.411Z", + "new_balance":"6191.97", + "value":"-29.88" + } + }, + { + "id":"3724bdd1-1eff-408b-8fba-2f3d496af54a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T06:11:43.815Z", + "completed":"2017-09-01T06:11:43.815Z", + "new_balance":"6057.49", + "value":"-134.48" + } + }, + { + "id":"ca27ba7c-bbd5-4523-8401-d71b530c813f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T07:04:09.442Z", + "completed":"2017-09-01T07:04:09.442Z", + "new_balance":"7737.90", + "value":"1680.41" + } + }, + { + "id":"6ef131dd-2dd4-4943-9926-194efb42fae5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T13:13:20.851Z", + "completed":"2017-09-01T13:13:20.851Z", + "new_balance":"7703.47", + "value":"-34.43" + } + }, + { + "id":"8b986f8f-2e7e-4406-b028-370f3326ae9e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T23:44:15.624Z", + "completed":"2017-09-01T23:44:15.624Z", + "new_balance":"7192.93", + "value":"-510.54" + } + }, + { + "id":"6c46bf2a-5e9b-4232-b3a9-f984953b3e89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T13:21:15.165Z", + "completed":"2017-09-02T13:21:15.165Z", + "new_balance":"7106.37", + "value":"-86.56" + } + }, + { + "id":"bb22f849-3bf4-496d-9ea2-7c0e1565e6b9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T03:13:50.850Z", + "completed":"2017-09-04T03:13:50.850Z", + "new_balance":"7025.16", + "value":"-81.21" + } + }, + { + "id":"eef92550-0c7f-45dd-ac17-185ecba3dbce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T04:37:14.893Z", + "completed":"2017-09-04T04:37:14.893Z", + "new_balance":"7018.69", + "value":"-6.47" + } + }, + { + "id":"f5f1b8df-2a7c-4ea6-bf67-d5af2ce0e73a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T07:02:53.514Z", + "completed":"2017-09-04T07:02:53.514Z", + "new_balance":"7008.16", + "value":"-10.53" + } + }, + { + "id":"7564bea7-a228-4dbd-92e1-477d675ca792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T18:54:18.632Z", + "completed":"2017-09-04T18:54:18.632Z", + "new_balance":"6977.35", + "value":"-30.81" + } + }, + { + "id":"e3f97ab4-7b65-4096-8c35-0951713eb217", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T12:45:39.861Z", + "completed":"2017-09-05T12:45:39.861Z", + "new_balance":"6972.58", + "value":"-4.77" + } + }, + { + "id":"c0c7f3e2-0910-42a6-83d4-946255ddfd78", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T12:50:46.794Z", + "completed":"2017-09-05T12:50:46.794Z", + "new_balance":"6931.35", + "value":"-41.23" + } + }, + { + "id":"f4b92bf3-d12d-4cd0-a084-eb8b938d40dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T17:33:04.515Z", + "completed":"2017-09-06T17:33:04.515Z", + "new_balance":"6847.55", + "value":"-83.80" + } + }, + { + "id":"f8ffd157-eb13-4388-a47f-21565745245b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T22:25:51.786Z", + "completed":"2017-09-06T22:25:51.786Z", + "new_balance":"6766.34", + "value":"-81.21" + } + }, + { + "id":"2cd91e11-da37-493b-abb3-2e1290e47f0b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T01:13:49.034Z", + "completed":"2017-09-08T01:13:49.034Z", + "new_balance":"6724.00", + "value":"-42.34" + } + }, + { + "id":"8c286202-367f-4cbd-9e7f-d1fdabd8d1fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T14:08:42.436Z", + "completed":"2017-09-08T14:08:42.436Z", + "new_balance":"6640.20", + "value":"-83.80" + } + }, + { + "id":"83e7ce8d-c634-41e7-9598-9c293c350a0c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T08:59:29.672Z", + "completed":"2017-09-10T08:59:29.672Z", + "new_balance":"6548.73", + "value":"-91.47" + } + }, + { + "id":"d8d939a8-9f2e-45c7-bfdd-de40e76e2e38", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T19:39:45.936Z", + "completed":"2017-09-10T19:39:45.936Z", + "new_balance":"6545.15", + "value":"-3.58" + } + }, + { + "id":"57a6c83f-6023-43ca-98bc-e56fe8dda323", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:19:33.409Z", + "completed":"2017-09-11T00:19:33.409Z", + "new_balance":"6537.87", + "value":"-7.28" + } + }, + { + "id":"0b15efb5-1a5b-43eb-a859-6a3c9399bd9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:32:20.850Z", + "completed":"2017-09-12T01:32:20.850Z", + "new_balance":"6510.57", + "value":"-27.30" + } + }, + { + "id":"3a414cfd-b761-48f7-923d-5e890e049f48", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T15:18:13.611Z", + "completed":"2017-09-12T15:18:13.611Z", + "new_balance":"6497.33", + "value":"-13.24" + } + }, + { + "id":"782af4a3-c29d-4122-b3ca-587e11920bff", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T19:59:38.350Z", + "completed":"2017-09-13T19:59:38.350Z", + "new_balance":"6451.32", + "value":"-46.01" + } + }, + { + "id":"ae71c3b5-d1ac-4469-9c57-f0a364ba1e64", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T07:31:55.768Z", + "completed":"2017-09-16T07:31:55.768Z", + "new_balance":"6444.33", + "value":"-6.99" + } + }, + { + "id":"341da681-6f6c-43b0-8017-d541300d191f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T03:59:32.742Z", + "completed":"2017-09-17T03:59:32.742Z", + "new_balance":"6397.53", + "value":"-46.80" + } + }, + { + "id":"f4bf116f-3588-4056-8eb6-4636482a7773", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T05:18:48.594Z", + "completed":"2017-09-17T05:18:48.594Z", + "new_balance":"6316.12", + "value":"-81.41" + } + }, + { + "id":"6613e21b-0815-4c9a-9130-fc4085a66ae2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T18:42:08.933Z", + "completed":"2017-09-18T18:42:08.933Z", + "new_balance":"6309.13", + "value":"-6.99" + } + }, + { + "id":"e6ffdc50-1da8-451c-b572-0af6c594611a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T08:41:23.411Z", + "completed":"2017-09-19T08:41:23.411Z", + "new_balance":"6275.22", + "value":"-33.91" + } + }, + { + "id":"d27aef4c-48e9-4d97-b991-53a845817ec0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T16:45:57.032Z", + "completed":"2017-09-19T16:45:57.032Z", + "new_balance":"6238.27", + "value":"-36.95" + } + }, + { + "id":"cac0f548-ce9e-484e-b439-4162ad4b1326", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T21:50:35.023Z", + "completed":"2017-09-19T21:50:35.023Z", + "new_balance":"6187.26", + "value":"-51.01" + } + }, + { + "id":"320a8714-26f2-4e27-b266-18460b3e7774", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T12:33:26.244Z", + "completed":"2017-09-20T12:33:26.244Z", + "new_balance":"6128.36", + "value":"-58.90" + } + }, + { + "id":"4e484799-bc15-479a-84f3-fdccc0bdf941", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T18:35:05.765Z", + "completed":"2017-09-20T18:35:05.765Z", + "new_balance":"6054.85", + "value":"-73.51" + } + }, + { + "id":"552bddb6-6c8b-4a9a-890d-c4788ef40555", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T00:16:41.850Z", + "completed":"2017-09-21T00:16:41.850Z", + "new_balance":"6048.97", + "value":"-5.88" + } + }, + { + "id":"4bdb3101-c18d-4d04-9fa6-c07cffaa519e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T22:54:55.653Z", + "completed":"2017-09-21T22:54:55.653Z", + "new_balance":"6042.50", + "value":"-6.47" + } + }, + { + "id":"8c453786-3009-4383-8888-e6952a15d351", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T20:02:32.496Z", + "completed":"2017-09-23T20:02:32.496Z", + "new_balance":"5996.99", + "value":"-45.51" + } + }, + { + "id":"a30dc6a8-85ab-47d4-894c-d62ef73088ce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T20:17:34.436Z", + "completed":"2017-09-23T20:17:34.436Z", + "new_balance":"5985.76", + "value":"-11.23" + } + }, + { + "id":"f611b729-6a51-4d68-8e66-a3b83d529a4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T18:10:35.258Z", + "completed":"2017-09-24T18:10:35.258Z", + "new_balance":"5956.90", + "value":"-28.86" + } + }, + { + "id":"bfb55756-c40a-4895-b74a-48730db52d5b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T11:05:52.075Z", + "completed":"2017-09-25T11:05:52.075Z", + "new_balance":"5940.82", + "value":"-16.08" + } + }, + { + "id":"0b39b0b6-3838-48b7-8be8-56560ac90f20", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T15:34:30.800Z", + "completed":"2017-09-25T15:34:30.800Z", + "new_balance":"5906.79", + "value":"-34.03" + } + }, + { + "id":"2ebdb17d-0ee0-407b-a133-2d8d711284e9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T09:07:48.163Z", + "completed":"2017-09-27T09:07:48.163Z", + "new_balance":"5717.52", + "value":"-189.27" + } + }, + { + "id":"8ace5d94-3e28-4acd-9938-dc00ac318e2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T00:01:06.962Z", + "completed":"2017-09-29T00:01:06.962Z", + "new_balance":"5690.55", + "value":"-26.97" + } + }, + { + "id":"20c9f8c6-5b10-4719-8b9c-3b9632d29e11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T16:05:49.630Z", + "completed":"2017-10-01T16:05:49.630Z", + "new_balance":"5660.67", + "value":"-29.88" + } + }, + { + "id":"56f6d09c-0eaa-450c-8866-1f7871af52f4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T16:18:41.338Z", + "completed":"2017-10-01T16:18:41.338Z", + "new_balance":"5526.19", + "value":"-134.48" + } + }, + { + "id":"23247d3b-fcc6-42e8-86b5-38c0b9498518", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T18:46:46.856Z", + "completed":"2017-10-01T18:46:46.856Z", + "new_balance":"5015.65", + "value":"-510.54" + } + }, + { + "id":"a02f012d-fe43-4676-ace6-096709694069", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T18:52:45.396Z", + "completed":"2017-10-01T18:52:45.396Z", + "new_balance":"4962.47", + "value":"-53.18" + } + }, + { + "id":"a93856c8-f4fd-4bda-9358-076667c8c966", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T00:57:16.027Z", + "completed":"2017-10-02T00:57:16.027Z", + "new_balance":"4890.48", + "value":"-71.99" + } + }, + { + "id":"e8b85e7c-2d7e-4e45-b3ae-535813d1d139", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T17:30:59.395Z", + "completed":"2017-10-02T17:30:59.395Z", + "new_balance":"4803.92", + "value":"-86.56" + } + }, + { + "id":"fd6f7453-0dbc-44be-a39a-fc0599c4ae28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:34:04.464Z", + "completed":"2017-10-03T05:34:04.464Z", + "new_balance":"4614.65", + "value":"-189.27" + } + }, + { + "id":"2e25b5ee-fc7d-45a2-ab6b-c1503894abb6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T06:19:27.047Z", + "completed":"2017-10-03T06:19:27.047Z", + "new_balance":"3882.80", + "value":"-731.85" + } + }, + { + "id":"4d6777ae-c143-4555-ac06-e12a76c11bdd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:19:47.659Z", + "completed":"2017-10-03T08:19:47.659Z", + "new_balance":"3719.32", + "value":"-163.48" + } + }, + { + "id":"5ab916f5-02d6-48e3-aef9-ef805ee972e5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T13:23:48.888Z", + "completed":"2017-10-03T13:23:48.888Z", + "new_balance":"3682.13", + "value":"-37.19" + } + }, + { + "id":"e5e31517-8c21-4a00-87ea-26015de4823c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T16:50:46.961Z", + "completed":"2017-10-03T16:50:46.961Z", + "new_balance":"3647.35", + "value":"-34.78" + } + }, + { + "id":"6e2b729b-a5c5-438b-b37a-1b639a43a152", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T11:25:34.537Z", + "completed":"2017-10-04T11:25:34.537Z", + "new_balance":"3573.42", + "value":"-73.93" + } + }, + { + "id":"6f9d942a-f5d7-474a-b7a6-42edaf0f0b05", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T01:40:29.188Z", + "completed":"2017-10-05T01:40:29.188Z", + "new_balance":"3569.83", + "value":"-3.59" + } + }, + { + "id":"86aadda8-0ad2-4e2e-b97a-7a0bf842d8ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T15:43:34.079Z", + "completed":"2017-10-05T15:43:34.079Z", + "new_balance":"3542.38", + "value":"-27.45" + } + }, + { + "id":"a6c44da6-bf99-4d43-aca6-e195c992839d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T00:10:35.717Z", + "completed":"2017-10-07T00:10:35.717Z", + "new_balance":"3511.09", + "value":"-31.29" + } + }, + { + "id":"1c872a39-d70a-449c-a9e3-8e938ec81792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T06:47:59.879Z", + "completed":"2017-10-07T06:47:59.879Z", + "new_balance":"3496.27", + "value":"-14.82" + } + }, + { + "id":"7d052ec3-1b0c-4621-8e23-8d1e18f55f57", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T21:33:32.280Z", + "completed":"2017-10-08T21:33:32.280Z", + "new_balance":"3489.11", + "value":"-7.16" + } + }, + { + "id":"50ba76ed-87b0-4585-a123-48793af9dc0f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T05:51:54.802Z", + "completed":"2017-10-09T05:51:54.802Z", + "new_balance":"3482.40", + "value":"-6.71" + } + }, + { + "id":"c1f99dff-b6de-403a-b618-99596c4fc154", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T21:25:54.739Z", + "completed":"2017-10-09T21:25:54.739Z", + "new_balance":"3460.15", + "value":"-22.25" + } + }, + { + "id":"44a27ff1-20ad-4c18-a1f2-91a6ecf4e1f7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T23:00:32.921Z", + "completed":"2017-10-09T23:00:32.921Z", + "new_balance":"3270.88", + "value":"-189.27" + } + }, + { + "id":"e188c925-e1af-4087-9413-2cb09fe18470", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:12:51.695Z", + "completed":"2017-10-10T19:12:51.695Z", + "new_balance":"3225.64", + "value":"-45.24" + } + }, + { + "id":"781e36fb-ca3e-4e90-9adf-0e04c6b64135", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T07:59:35.096Z", + "completed":"2017-10-17T07:59:35.096Z", + "new_balance":"3215.94", + "value":"-9.70" + } + }, + { + "id":"c1c61357-0a66-4cce-a3bd-c8ed19b4372f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:35:49.840Z", + "completed":"2017-10-18T01:35:49.840Z", + "new_balance":"3183.66", + "value":"-32.28" + } + }, + { + "id":"eb3dacab-3a9d-428b-b802-b45a4f3f1617", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T07:22:01.477Z", + "completed":"2017-10-25T07:22:01.477Z", + "new_balance":"3141.14", + "value":"-42.52" + } + }, + { + "id":"4bc4c6f3-c447-433f-a02a-62613603f600", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T02:45:28.798Z", + "completed":"2017-10-26T02:45:28.798Z", + "new_balance":"3077.57", + "value":"-63.57" + } + }, + { + "id":"9b352066-8223-4b03-b115-caa1f29757a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T04:41:36.331Z", + "completed":"2017-10-26T04:41:36.331Z", + "new_balance":"3070.86", + "value":"-6.71" + } + }, + { + "id":"7ee74207-9159-4d36-997b-0f604ff0b8f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T01:46:42.376Z", + "completed":"2017-11-02T01:46:42.376Z", + "new_balance":"2984.30", + "value":"-86.56" + } + }, + { + "id":"450e2a84-33cf-4613-b8b3-83f48a54c711", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T04:25:11.661Z", + "completed":"2017-11-02T04:25:11.661Z", + "new_balance":"2968.37", + "value":"-15.93" + } + }, + { + "id":"596adf58-035a-4833-be77-4a14f3f986dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T09:04:33.748Z", + "completed":"2017-11-02T09:04:33.748Z", + "new_balance":"2915.19", + "value":"-53.18" + } + }, + { + "id":"7d927372-dc53-4b70-bf34-b74a28e28802", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T10:26:07.369Z", + "completed":"2017-11-02T10:26:07.369Z", + "new_balance":"2404.65", + "value":"-510.54" + } + }, + { + "id":"826495c3-f742-4fd1-923b-07215fff0d5c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T12:25:24.967Z", + "completed":"2017-11-02T12:25:24.967Z", + "new_balance":"4085.06", + "value":"1680.41" + } + }, + { + "id":"8d1ef8cb-d26c-426d-b180-d49c9040fd6c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T13:41:56.351Z", + "completed":"2017-11-02T13:41:56.351Z", + "new_balance":"3950.58", + "value":"-134.48" + } + }, + { + "id":"18bc8c6d-40df-48fd-800b-6ab55b89fdb3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T17:53:09.367Z", + "completed":"2017-11-02T17:53:09.367Z", + "new_balance":"3920.70", + "value":"-29.88" + } + }, + { + "id":"bad5a59a-c65e-485a-a8dc-a43f31767760", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T20:55:59.534Z", + "completed":"2017-11-02T20:55:59.534Z", + "new_balance":"3886.27", + "value":"-34.43" + } + }, + { + "id":"702216a4-71f5-4c1d-85ad-42188384fe5e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T23:11:28.792Z", + "completed":"2017-11-06T23:11:28.792Z", + "new_balance":"3871.63", + "value":"-14.64" + } + }, + { + "id":"91300f69-c089-4e5d-9f83-30bd54a832a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T01:36:56.268Z", + "completed":"2017-11-07T01:36:56.268Z", + "new_balance":"3845.83", + "value":"-25.80" + } + }, + { + "id":"843868a2-1b23-4275-bf6a-8018b5088d11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T15:02:45.730Z", + "completed":"2017-11-07T15:02:45.730Z", + "new_balance":"3822.46", + "value":"-23.37" + } + }, + { + "id":"d49569fc-976c-412f-a3ce-dcbc6e5c7e4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T22:27:50.440Z", + "completed":"2017-11-07T22:27:50.440Z", + "new_balance":"3794.45", + "value":"-28.01" + } + }, + { + "id":"13c2ecad-bdc1-4f55-9c31-8bf4f417ae61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T14:59:07.803Z", + "completed":"2017-11-09T14:59:07.803Z", + "new_balance":"3790.36", + "value":"-4.09" + } + }, + { + "id":"ad0ac427-4321-4ce8-b785-8fc6ce0d4c2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T22:34:17.327Z", + "completed":"2017-11-09T22:34:17.327Z", + "new_balance":"3716.43", + "value":"-73.93" + } + }, + { + "id":"e877d50c-b398-46bd-bc21-0c3e9a755802", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T15:58:57.079Z", + "completed":"2017-11-12T15:58:57.079Z", + "new_balance":"3688.58", + "value":"-27.85" + } + }, + { + "id":"c24f6ad5-868c-45ed-a7ae-bf9d3e51a0d0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T21:52:10.680Z", + "completed":"2017-11-12T21:52:10.680Z", + "new_balance":"3667.48", + "value":"-21.10" + } + }, + { + "id":"06cb7d3f-d6ab-4d40-b8d2-76bf863454ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:24:26.285Z", + "completed":"2017-11-14T05:24:26.285Z", + "new_balance":"3622.31", + "value":"-45.17" + } + }, + { + "id":"d9ec03ea-d22c-4192-b3d6-176e0385451e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T08:49:20.505Z", + "completed":"2017-11-14T08:49:20.505Z", + "new_balance":"3573.61", + "value":"-48.70" + } + }, + { + "id":"a950c30d-c874-4a7f-b5bc-2fddeb43e497", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T00:47:46.926Z", + "completed":"2017-11-16T00:47:46.926Z", + "new_balance":"3567.84", + "value":"-5.77" + } + }, + { + "id":"ab33b88e-4f61-42e6-8c6a-16d87cbc5a1a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T03:02:20.145Z", + "completed":"2017-11-18T03:02:20.145Z", + "new_balance":"3559.32", + "value":"-8.52" + } + }, + { + "id":"0d38530e-d291-44b0-a9e3-7ba47493fded", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T05:19:38.047Z", + "completed":"2017-11-20T05:19:38.047Z", + "new_balance":"3598.33", + "value":"39.01" + } + }, + { + "id":"d85a7c73-559d-40df-9cf4-06f20325f5ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T01:23:18.661Z", + "completed":"2017-11-21T01:23:18.661Z", + "new_balance":"3554.54", + "value":"-43.79" + } + }, + { + "id":"ce06a5ae-3ff0-4709-b4f6-ac444b891542", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T05:30:35.741Z", + "completed":"2017-11-21T05:30:35.741Z", + "new_balance":"3508.91", + "value":"-45.63" + } + }, + { + "id":"6a40846e-86da-4088-9653-4eccf06ff883", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T05:55:09.336Z", + "completed":"2017-11-27T05:55:09.336Z", + "new_balance":"3483.35", + "value":"-25.56" + } + }, + { + "id":"6e794025-de81-44fe-b524-c1e25f9103e6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T19:22:33.393Z", + "completed":"2017-11-27T19:22:33.393Z", + "new_balance":"3449.82", + "value":"-33.53" + } + }, + { + "id":"c69b7027-0685-414a-9ca2-b2e1ab12bc69", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T02:01:45.112Z", + "completed":"2017-12-01T02:01:45.112Z", + "new_balance":"3415.39", + "value":"-34.43" + } + }, + { + "id":"60c8eeb9-1a03-40c4-989f-b41569fc22cc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T09:25:40.753Z", + "completed":"2017-12-01T09:25:40.753Z", + "new_balance":"5095.80", + "value":"1680.41" + } + }, + { + "id":"94484d86-b21d-442e-8eb2-96d0fc495c48", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T11:18:18.017Z", + "completed":"2017-12-01T11:18:18.017Z", + "new_balance":"5042.62", + "value":"-53.18" + } + }, + { + "id":"b2aa6313-db00-467b-a1a6-0d6d31b1987d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T12:34:16.705Z", + "completed":"2017-12-01T12:34:16.705Z", + "new_balance":"4908.14", + "value":"-134.48" + } + }, + { + "id":"4b416265-bd2a-436a-af00-8c7b44ad686e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T14:35:04.781Z", + "completed":"2017-12-01T14:35:04.781Z", + "new_balance":"4878.26", + "value":"-29.88" + } + }, + { + "id":"3870f97b-d213-45fb-ae7f-25b256cd4aa6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T20:06:17.980Z", + "completed":"2017-12-01T20:06:17.980Z", + "new_balance":"4367.72", + "value":"-510.54" + } + }, + { + "id":"ada5a450-aca5-46dd-bece-a365c9f7c441", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T00:34:20.823Z", + "completed":"2017-12-04T00:34:20.823Z", + "new_balance":"4281.16", + "value":"-86.56" + } + }, + { + "id":"262ddb28-4a71-4b54-8c0e-7905430dec72", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T04:48:23.488Z", + "completed":"2017-12-04T04:48:23.488Z", + "new_balance":"4149.32", + "value":"-131.84" + } + }, + { + "id":"568263d2-6a02-49d5-afe2-0536ea2c6fe1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T00:46:52.633Z", + "completed":"2017-12-12T00:46:52.633Z", + "new_balance":"4118.51", + "value":"-30.81" + } + }, + { + "id":"6b4e8fcf-4381-4679-8bfb-08489260cefb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T22:18:46.082Z", + "completed":"2017-12-12T22:18:46.082Z", + "new_balance":"4107.98", + "value":"-10.53" + } + }, + { + "id":"06a02edb-7900-4b14-882d-2f633bd77d79", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T13:09:35.345Z", + "completed":"2017-12-13T13:09:35.345Z", + "new_balance":"4026.77", + "value":"-81.21" + } + }, + { + "id":"511aebe5-1df5-453a-987f-3b021e62f23d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T13:58:31.772Z", + "completed":"2017-12-13T13:58:31.772Z", + "new_balance":"4020.30", + "value":"-6.47" + } + }, + { + "id":"61ccb852-f1fb-40d8-bd2c-74d7f2ad10e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T11:34:27.043Z", + "completed":"2017-12-16T11:34:27.043Z", + "new_balance":"3979.07", + "value":"-41.23" + } + }, + { + "id":"27cadf79-29e0-4777-900f-8d8ceb73af49", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T01:29:20.927Z", + "completed":"2017-12-18T01:29:20.927Z", + "new_balance":"3974.30", + "value":"-4.77" + } + }, + { + "id":"25d508a8-67c8-4cff-9375-2bdd2eab4088", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T12:14:22.397Z", + "completed":"2017-12-19T12:14:22.397Z", + "new_balance":"3890.50", + "value":"-83.80" + } + }, + { + "id":"f96fd2f6-da14-4b30-9e15-f65d339d885c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T22:37:54.744Z", + "completed":"2017-12-19T22:37:54.744Z", + "new_balance":"3809.29", + "value":"-81.21" + } + }, + { + "id":"b121b061-66c7-450e-809f-c6e411b9eb2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T14:54:47.340Z", + "completed":"2017-12-20T14:54:47.340Z", + "new_balance":"3766.95", + "value":"-42.34" + } + }, + { + "id":"8f6b5a89-e2b9-4fd7-9749-c1d27c227f3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T02:08:07.248Z", + "completed":"2017-12-21T02:08:07.248Z", + "new_balance":"3683.15", + "value":"-83.80" + } + }, + { + "id":"0bfddde7-1bc4-4c01-90ac-fb25be3e64ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T07:27:26.737Z", + "completed":"2017-12-24T07:27:26.737Z", + "new_balance":"3679.57", + "value":"-3.58" + } + }, + { + "id":"8d3774a0-0bf2-4d23-9aa7-d8a566916866", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T11:18:24.992Z", + "completed":"2017-12-24T11:18:24.992Z", + "new_balance":"3633.56", + "value":"-46.01" + } + }, + { + "id":"082b1b11-5082-42fb-a101-f738be0ef295", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:32:15.003Z", + "completed":"2017-12-24T11:32:15.003Z", + "new_balance":"3606.26", + "value":"-27.30" + } + }, + { + "id":"7058b969-1674-4b95-ab8b-b690241b784b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T15:00:26.635Z", + "completed":"2017-12-24T15:00:26.635Z", + "new_balance":"3514.79", + "value":"-91.47" + } + }, + { + "id":"de17cbac-3087-448f-b18f-6636fd8aecaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T16:26:06.115Z", + "completed":"2017-12-24T16:26:06.115Z", + "new_balance":"3507.51", + "value":"-7.28" + } + }, + { + "id":"e353db75-34e2-49aa-9f83-7e4773d49575", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T19:51:53.128Z", + "completed":"2017-12-24T19:51:53.128Z", + "new_balance":"3494.27", + "value":"-13.24" + } + }, + { + "id":"79b5b644-9613-4314-bd4a-58222917e31c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T08:53:49.080Z", + "completed":"2017-12-28T08:53:49.080Z", + "new_balance":"3412.86", + "value":"-81.41" + } + }, + { + "id":"f90e0fcf-4885-4215-a088-10469ba1f312", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T15:30:02.626Z", + "completed":"2017-12-28T15:30:02.626Z", + "new_balance":"3405.87", + "value":"-6.99" + } + }, + { + "id":"a2fdcc4b-9c96-4964-a82c-d733610fff2e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:51:15.528Z", + "completed":"2017-12-28T16:51:15.528Z", + "new_balance":"3398.88", + "value":"-6.99" + } + }, + { + "id":"5c364cd4-d427-4279-bf9c-8d5ae61cebea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T19:22:43.711Z", + "completed":"2017-12-28T19:22:43.711Z", + "new_balance":"3352.08", + "value":"-46.80" + } + }, + { + "id":"be5443d1-31a3-4b7c-a0f8-be06eb8b17b1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T08:45:30.687Z", + "completed":"2017-12-29T08:45:30.687Z", + "new_balance":"3293.18", + "value":"-58.90" + } + }, + { + "id":"ce8d5cd8-82a5-4d70-b855-dcf1bf87deae", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T16:07:26.831Z", + "completed":"2017-12-29T16:07:26.831Z", + "new_balance":"3286.71", + "value":"-6.47" + } + }, + { + "id":"17e8a2a6-0473-40ea-98f1-99a3c85d1025", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T17:13:00.844Z", + "completed":"2017-12-29T17:13:00.844Z", + "new_balance":"3249.76", + "value":"-36.95" + } + }, + { + "id":"52833d31-c52b-42ff-a889-0101d4d6d8c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T17:38:04.906Z", + "completed":"2017-12-29T17:38:04.906Z", + "new_balance":"3198.75", + "value":"-51.01" + } + }, + { + "id":"29f8f053-6c3c-4b29-a3bf-fb741c955ab4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T20:23:17.331Z", + "completed":"2017-12-29T20:23:17.331Z", + "new_balance":"3164.84", + "value":"-33.91" + } + }, + { + "id":"b922c1c6-d9ad-413b-8892-eab2594eb5a4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T22:28:13.290Z", + "completed":"2017-12-29T22:28:13.290Z", + "new_balance":"3091.33", + "value":"-73.51" + } + }, + { + "id":"96adbc8e-0f5f-474d-9452-9dcff0c96aa0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T06:56:46.182Z", + "completed":"2017-12-30T06:56:46.182Z", + "new_balance":"3085.45", + "value":"-5.88" + } + }, + { + "id":"b699706b-e176-4197-bc7e-7b5ecb88588e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T16:02:47.798Z", + "completed":"2017-12-30T16:02:47.798Z", + "new_balance":"3039.94", + "value":"-45.51" + } + }, + { + "id":"5530480c-3628-40ba-a5cd-3b09407a3437", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T17:14:26.499Z", + "completed":"2017-12-30T17:14:26.499Z", + "new_balance":"3011.08", + "value":"-28.86" + } + }, + { + "id":"60d7a6e8-96eb-48f2-890e-8934ca0cf593", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T19:26:47.451Z", + "completed":"2017-12-30T19:26:47.451Z", + "new_balance":"2999.85", + "value":"-11.23" + } + }, + { + "id":"d7835e50-27d4-4233-abf8-5f4f14fe7889", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T01:23:26.315Z", + "completed":"2017-12-31T01:23:26.315Z", + "new_balance":"2810.58", + "value":"-189.27" + } + }, + { + "id":"cf411cb0-2399-46b9-8c20-4384df10538f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T04:45:28.786Z", + "completed":"2017-12-31T04:45:28.786Z", + "new_balance":"2776.55", + "value":"-34.03" + } + }, + { + "id":"afe44df5-e773-4e95-a53b-5fac4f275563", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T12:02:13.750Z", + "completed":"2017-12-31T12:02:13.750Z", + "new_balance":"2749.58", + "value":"-26.97" + } + }, + { + "id":"a5d7b81e-fcf4-4e29-9fca-5600777f86cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T12:40:40.076Z", + "completed":"2017-12-31T12:40:40.076Z", + "new_balance":"2733.50", + "value":"-16.08" + } + }, + { + "id":"9116d8ed-dc36-4b9e-bdb5-3bd1219cbf18", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T01:50:37.437Z", + "completed":"2016-01-01T01:50:37.437Z", + "new_balance":"4627.10", + "value":"-3.44" + } + }, + { + "id":"9f3f2543-fb58-4256-8535-67a935993052", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:52:51.601Z", + "completed":"2016-01-01T01:52:51.601Z", + "new_balance":"4611.85", + "value":"-15.25" + } + }, + { + "id":"82ae9653-b60b-47a1-a7fb-6e01ee22ab0c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T04:15:11.111Z", + "completed":"2016-01-01T04:15:11.111Z", + "new_balance":"4553.62", + "value":"-58.23" + } + }, + { + "id":"453217fd-fd18-4ad2-94a9-5fd997e5070a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T10:01:05.908Z", + "completed":"2016-01-01T10:01:05.908Z", + "new_balance":"4550.18", + "value":"-3.44" + } + }, + { + "id":"65c611a2-38dc-426a-b990-394b03c3a1a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T17:24:38.406Z", + "completed":"2016-01-01T17:24:38.406Z", + "new_balance":"4545.03", + "value":"-5.15" + } + }, + { + "id":"7c54c5b1-3811-4503-943a-deb180d66f50", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T22:34:22.434Z", + "completed":"2016-01-01T22:34:22.434Z", + "new_balance":"4542.71", + "value":"-2.32" + } + }, + { + "id":"3350ca5b-4ecd-477c-8401-cf0bb4c68d09", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T02:26:38.041Z", + "completed":"2016-01-02T02:26:38.041Z", + "new_balance":"4535.61", + "value":"-7.10" + } + }, + { + "id":"2a6ab2f0-0eb4-4175-a7c1-38449ef9c92f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T13:51:50.076Z", + "completed":"2016-01-02T13:51:50.076Z", + "new_balance":"4525.92", + "value":"-9.69" + } + }, + { + "id":"81883f82-a7ea-4246-986f-b152f97f3584", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T10:28:34.978Z", + "completed":"2016-01-04T10:28:34.978Z", + "new_balance":"4523.01", + "value":"-2.91" + } + }, + { + "id":"c12b0ae5-226c-4711-ad0e-ff313c98eabe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T11:14:28.935Z", + "completed":"2016-01-04T11:14:28.935Z", + "new_balance":"4519.23", + "value":"-3.78" + } + }, + { + "id":"53f767c0-a8d7-4b38-b5de-4737fe96c0eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T23:51:56.764Z", + "completed":"2016-01-07T23:51:56.764Z", + "new_balance":"4512.04", + "value":"-7.19" + } + }, + { + "id":"2a0e80ce-46f2-4bc1-9ef4-7c3934c42f07", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T14:04:01.397Z", + "completed":"2016-01-09T14:04:01.397Z", + "new_balance":"4511.58", + "value":"-0.46" + } + }, + { + "id":"1986e1d9-4673-4b27-ae57-a9bfd1445763", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T19:39:41.805Z", + "completed":"2016-01-10T19:39:41.805Z", + "new_balance":"4508.90", + "value":"-2.68" + } + }, + { + "id":"844a0176-3086-42f2-adcd-f29c450640ec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T16:26:27.094Z", + "completed":"2016-01-12T16:26:27.094Z", + "new_balance":"4505.68", + "value":"-3.22" + } + }, + { + "id":"9b2e110e-6367-4c00-b13d-f0d51511c685", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T15:37:57.415Z", + "completed":"2016-01-15T15:37:57.415Z", + "new_balance":"4504.15", + "value":"-1.53" + } + }, + { + "id":"aff4c767-0305-4d0e-88be-ffa1c69fde43", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T18:42:41.733Z", + "completed":"2016-01-15T18:42:41.733Z", + "new_balance":"4503.25", + "value":"-0.90" + } + }, + { + "id":"14463e38-c1ad-4151-8476-2f5ed1ddc534", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T10:42:10.445Z", + "completed":"2016-01-17T10:42:10.445Z", + "new_balance":"4501.14", + "value":"-2.11" + } + }, + { + "id":"b36d7c46-12aa-45e6-a6cd-b59d558b7f75", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T20:50:17.695Z", + "completed":"2016-01-19T20:50:17.695Z", + "new_balance":"4473.64", + "value":"-27.50" + } + }, + { + "id":"faf67b68-b3c6-44fa-a49d-f8370098fb08", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T12:59:55.589Z", + "completed":"2016-01-20T12:59:55.589Z", + "new_balance":"4473.20", + "value":"-0.44" + } + }, + { + "id":"7e0c2ad1-6482-4ab9-9831-4501a89bc14c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T10:12:09.888Z", + "completed":"2016-01-22T10:12:09.888Z", + "new_balance":"4468.72", + "value":"-4.48" + } + }, + { + "id":"4b4c45e2-acca-450b-be4a-3ec4eb491fa5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T19:00:08.715Z", + "completed":"2016-01-22T19:00:08.715Z", + "new_balance":"4467.61", + "value":"-1.11" + } + }, + { + "id":"ba1ab881-1cb5-4cb9-97c1-5addc0eeca95", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T10:44:50.710Z", + "completed":"2016-01-24T10:44:50.710Z", + "new_balance":"4464.80", + "value":"-2.81" + } + }, + { + "id":"725d3890-436a-4c88-bb31-7d5e9453e3be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T19:45:50.610Z", + "completed":"2016-01-25T19:45:50.610Z", + "new_balance":"4464.36", + "value":"-0.44" + } + }, + { + "id":"664a37c8-59b7-4314-b9d0-58bfbd1fc464", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T23:15:37.592Z", + "completed":"2016-01-25T23:15:37.592Z", + "new_balance":"4458.96", + "value":"-5.40" + } + }, + { + "id":"3b9525f3-6d0f-4c27-a2fa-e9c48254cb65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T13:33:32.282Z", + "completed":"2016-01-26T13:33:32.282Z", + "new_balance":"4453.14", + "value":"-5.82" + } + }, + { + "id":"90ff1d5e-b667-4a3f-b5e6-afee964483f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T02:15:21.327Z", + "completed":"2016-02-01T02:15:21.327Z", + "new_balance":"4449.70", + "value":"-3.44" + } + }, + { + "id":"3be3df38-5ffb-4225-895b-a1ee2fc40d5f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:38:16.904Z", + "completed":"2016-02-01T02:38:16.904Z", + "new_balance":"4632.40", + "value":"182.70" + } + }, + { + "id":"96e42e7a-43a4-45e7-84ca-8e540c07e349", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T12:27:32.582Z", + "completed":"2016-02-01T12:27:32.582Z", + "new_balance":"4617.15", + "value":"-15.25" + } + }, + { + "id":"92d80524-2aec-4a29-9b77-d8d61bd875d1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T16:12:13.392Z", + "completed":"2016-02-01T16:12:13.392Z", + "new_balance":"4558.92", + "value":"-58.23" + } + }, + { + "id":"44a90632-ce99-4436-8bdf-63549b102e1e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T17:32:18.896Z", + "completed":"2016-02-01T17:32:18.896Z", + "new_balance":"4553.77", + "value":"-5.15" + } + }, + { + "id":"02ecb43c-b975-4a0a-863c-2a11602a5b29", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T21:34:39.095Z", + "completed":"2016-02-01T21:34:39.095Z", + "new_balance":"4551.45", + "value":"-2.32" + } + }, + { + "id":"3027e545-a2ff-4003-9ed5-86be801405b7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T03:36:27.823Z", + "completed":"2016-02-02T03:36:27.823Z", + "new_balance":"4550.30", + "value":"-1.15" + } + }, + { + "id":"606f98a0-db26-4308-a330-b9d02ea0a601", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T08:40:07.655Z", + "completed":"2016-02-02T08:40:07.655Z", + "new_balance":"4543.20", + "value":"-7.10" + } + }, + { + "id":"37495f4d-b984-4ba9-a750-d585e5686eac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T17:57:32.455Z", + "completed":"2016-02-02T17:57:32.455Z", + "new_balance":"4541.10", + "value":"-2.10" + } + }, + { + "id":"759dda9f-c9d4-405b-bc0c-6469d4a6a4b5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T01:42:33.589Z", + "completed":"2016-02-03T01:42:33.589Z", + "new_balance":"4538.70", + "value":"-2.40" + } + }, + { + "id":"ff2e17d5-e7f4-4570-946a-8c60de5a9c91", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T11:18:58.241Z", + "completed":"2016-02-03T11:18:58.241Z", + "new_balance":"4536.20", + "value":"-2.50" + } + }, + { + "id":"ad183774-d842-4b75-8754-9c15ef79e0ab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T15:22:39.110Z", + "completed":"2016-02-03T15:22:39.110Z", + "new_balance":"4532.87", + "value":"-3.33" + } + }, + { + "id":"a959af4e-4a88-4262-b3af-697f7c6cfd6c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T14:16:41.137Z", + "completed":"2016-02-06T14:16:41.137Z", + "new_balance":"4525.68", + "value":"-7.19" + } + }, + { + "id":"22a656b0-4bf9-4563-8d2d-9e4aab7d2c64", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T09:01:30.344Z", + "completed":"2016-02-08T09:01:30.344Z", + "new_balance":"4522.65", + "value":"-3.03" + } + }, + { + "id":"9dbfd696-5523-479d-a128-a883c416be3a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T11:01:28.858Z", + "completed":"2016-02-08T11:01:28.858Z", + "new_balance":"4520.20", + "value":"-2.45" + } + }, + { + "id":"7bd879ad-e06d-420d-89d2-49806c112e3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T19:06:27.415Z", + "completed":"2016-02-08T19:06:27.415Z", + "new_balance":"4519.72", + "value":"-0.48" + } + }, + { + "id":"da06653b-c957-4c90-a6fc-d58fe82b1eec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T05:27:42.215Z", + "completed":"2016-02-09T05:27:42.215Z", + "new_balance":"4516.58", + "value":"-3.14" + } + }, + { + "id":"59259827-27a5-4868-b51b-3172a3770b96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T08:59:42.484Z", + "completed":"2016-02-09T08:59:42.484Z", + "new_balance":"4513.10", + "value":"-3.48" + } + }, + { + "id":"75c0b37f-266a-421e-9f52-4ed4d9856895", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T06:57:22.467Z", + "completed":"2016-02-12T06:57:22.467Z", + "new_balance":"4512.63", + "value":"-0.47" + } + }, + { + "id":"b0c693cb-2d5d-442b-ad1a-6ed59c65fb02", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T00:34:42.445Z", + "completed":"2016-02-13T00:34:42.445Z", + "new_balance":"4511.86", + "value":"-0.77" + } + }, + { + "id":"d995a575-b058-48e0-9ce2-cb1fe630596c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T16:11:08.424Z", + "completed":"2016-02-13T16:11:08.424Z", + "new_balance":"4505.43", + "value":"-6.43" + } + }, + { + "id":"743fb11e-29d1-48fa-b9ac-28507fc68364", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T17:39:51.871Z", + "completed":"2016-02-13T17:39:51.871Z", + "new_balance":"4509.51", + "value":"4.08" + } + }, + { + "id":"5db4c8df-1761-45f1-a8f0-d282a072b2a0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T22:21:09.201Z", + "completed":"2016-02-14T22:21:09.201Z", + "new_balance":"4505.39", + "value":"-4.12" + } + }, + { + "id":"6cd2aec1-dd36-45e7-a4f6-3cb7766fddf5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T09:46:42.364Z", + "completed":"2016-02-15T09:46:42.364Z", + "new_balance":"4502.84", + "value":"-2.55" + } + }, + { + "id":"f19397d6-f12a-486b-9eba-1d598c06f56d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T20:12:23.151Z", + "completed":"2016-02-28T20:12:23.151Z", + "new_balance":"4499.90", + "value":"-2.94" + } + }, + { + "id":"6decd66d-a84d-4657-ae6e-dbc9f488c955", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T14:22:08.537Z", + "completed":"2016-03-01T14:22:08.537Z", + "new_balance":"4496.46", + "value":"-3.44" + } + }, + { + "id":"8e9a8c41-2288-461d-ad26-134863362f6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T14:38:10.275Z", + "completed":"2016-03-01T14:38:10.275Z", + "new_balance":"4491.31", + "value":"-5.15" + } + }, + { + "id":"24fd6163-a6ba-4f40-a90e-b22e745e3fff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T15:20:36.566Z", + "completed":"2016-03-01T15:20:36.566Z", + "new_balance":"4488.99", + "value":"-2.32" + } + }, + { + "id":"3ba08b48-78b6-400b-adcb-7d7d58e7aa9c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T15:46:31.353Z", + "completed":"2016-03-01T15:46:31.353Z", + "new_balance":"4473.74", + "value":"-15.25" + } + }, + { + "id":"0e2aac31-46d5-40e7-a6fa-acb6f1a22df3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T17:47:21.614Z", + "completed":"2016-03-01T17:47:21.614Z", + "new_balance":"4656.44", + "value":"182.70" + } + }, + { + "id":"8a21ac75-347e-4423-b3e4-88ddebe92153", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T21:57:31.248Z", + "completed":"2016-03-01T21:57:31.248Z", + "new_balance":"4598.21", + "value":"-58.23" + } + }, + { + "id":"90391a2d-25b0-4e84-98dc-b1a1d9eba7d2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T11:25:30.455Z", + "completed":"2016-03-02T11:25:30.455Z", + "new_balance":"4591.11", + "value":"-7.10" + } + }, + { + "id":"48340e2c-7133-40eb-83b5-8cdd572410e4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T10:06:10.297Z", + "completed":"2016-03-04T10:06:10.297Z", + "new_balance":"4589.86", + "value":"-1.25" + } + }, + { + "id":"5893aea4-3f0d-4262-8f08-869fd40b29bb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T11:24:19.633Z", + "completed":"2016-03-04T11:24:19.633Z", + "new_balance":"4589.10", + "value":"-0.76" + } + }, + { + "id":"9d3577af-0b39-4999-a195-1427213426d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T21:16:12.781Z", + "completed":"2016-03-04T21:16:12.781Z", + "new_balance":"4585.80", + "value":"-3.30" + } + }, + { + "id":"2d8f196d-bb96-44c2-8a11-4a2b7d934025", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T23:13:25.366Z", + "completed":"2016-03-04T23:13:25.366Z", + "new_balance":"4578.50", + "value":"-7.30" + } + }, + { + "id":"3b8a743d-0b6a-46df-99d0-1f5e136b15b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T13:14:53.593Z", + "completed":"2016-03-05T13:14:53.593Z", + "new_balance":"4578.10", + "value":"-0.40" + } + }, + { + "id":"7112d6dc-fb49-4ff6-bccb-402973d2a039", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T16:31:10.666Z", + "completed":"2016-03-05T16:31:10.666Z", + "new_balance":"4574.06", + "value":"-4.04" + } + }, + { + "id":"37fcf5a7-281d-484e-b183-06879e77ed50", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T01:24:23.871Z", + "completed":"2016-03-06T01:24:23.871Z", + "new_balance":"4566.76", + "value":"-7.30" + } + }, + { + "id":"201d38c3-c002-464c-9d9c-c3b9f100800d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T12:17:06.876Z", + "completed":"2016-03-06T12:17:06.876Z", + "new_balance":"4561.49", + "value":"-5.27" + } + }, + { + "id":"907bc9c6-6aa8-4a81-a95d-be57b5cc6eac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T08:07:03.407Z", + "completed":"2016-03-07T08:07:03.407Z", + "new_balance":"4557.22", + "value":"-4.27" + } + }, + { + "id":"993f1bf4-756c-42ae-8bdd-263093939c22", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T22:46:13.859Z", + "completed":"2016-03-08T22:46:13.859Z", + "new_balance":"4551.95", + "value":"-5.27" + } + }, + { + "id":"fa489773-4c7f-4c0d-a484-b1b8173d536b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T01:52:22.395Z", + "completed":"2016-03-09T01:52:22.395Z", + "new_balance":"4551.41", + "value":"-0.54" + } + }, + { + "id":"d23a756c-be2a-4e15-ae89-b6a551d80872", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T11:36:33.940Z", + "completed":"2016-03-10T11:36:33.940Z", + "new_balance":"4545.09", + "value":"-6.32" + } + }, + { + "id":"d323e8a3-91b3-43db-9b8f-d03dec137d47", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T03:53:20.567Z", + "completed":"2016-03-11T03:53:20.567Z", + "new_balance":"4544.32", + "value":"-0.77" + } + }, + { + "id":"5314636d-9229-480b-b035-fdf0c9a68099", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T00:57:11.756Z", + "completed":"2016-03-12T00:57:11.756Z", + "new_balance":"4542.07", + "value":"-2.25" + } + }, + { + "id":"935f23e4-11f8-4084-8291-321047a25179", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T10:19:50.901Z", + "completed":"2016-03-12T10:19:50.901Z", + "new_balance":"4541.02", + "value":"-1.05" + } + }, + { + "id":"f79b9132-06ac-46ee-bd52-14d80a7c3baf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T08:57:12.829Z", + "completed":"2016-03-13T08:57:12.829Z", + "new_balance":"4536.76", + "value":"-4.26" + } + }, + { + "id":"7d0c89b1-239d-4a9f-9d34-3422947da8c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T06:53:16.753Z", + "completed":"2016-03-14T06:53:16.753Z", + "new_balance":"4536.24", + "value":"-0.52" + } + }, + { + "id":"5a96312e-ccbc-444d-981e-7d2a8be66e8e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T00:02:06.971Z", + "completed":"2016-03-16T00:02:06.971Z", + "new_balance":"4531.42", + "value":"-4.82" + } + }, + { + "id":"dd988fa1-c733-4ec3-9da4-c72897fb1fab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:43:44.130Z", + "completed":"2016-03-16T16:43:44.130Z", + "new_balance":"4521.63", + "value":"-9.79" + } + }, + { + "id":"66c2d325-301f-42b1-9623-653709afedf6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T02:40:07.727Z", + "completed":"2016-03-18T02:40:07.727Z", + "new_balance":"4521.11", + "value":"-0.52" + } + }, + { + "id":"d368e77b-b173-46b2-a947-7f893558901a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T13:48:14.181Z", + "completed":"2016-03-19T13:48:14.181Z", + "new_balance":"4516.96", + "value":"-4.15" + } + }, + { + "id":"2e88f19a-2101-437f-980a-4855577c99c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T15:09:23.132Z", + "completed":"2016-03-19T15:09:23.132Z", + "new_balance":"4510.64", + "value":"-6.32" + } + }, + { + "id":"801eff06-8758-43dc-9c57-fcf51851cf9d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T21:07:49.704Z", + "completed":"2016-03-19T21:07:49.704Z", + "new_balance":"4506.35", + "value":"-4.29" + } + }, + { + "id":"b0dcf818-7a1a-4902-b42a-aadc162b7830", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T07:44:24.205Z", + "completed":"2016-03-20T07:44:24.205Z", + "new_balance":"4499.39", + "value":"-6.96" + } + }, + { + "id":"333132b0-184b-4083-9b7a-75bbca5d21a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T23:30:35.593Z", + "completed":"2016-03-20T23:30:35.593Z", + "new_balance":"4494.23", + "value":"-5.16" + } + }, + { + "id":"07fcdcd5-03ee-487d-833e-f31afcf8506f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T17:56:39.208Z", + "completed":"2016-03-21T17:56:39.208Z", + "new_balance":"4493.47", + "value":"-0.76" + } + }, + { + "id":"ef36320a-c23d-4100-b3d7-eb1770a58dba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T22:37:22.948Z", + "completed":"2016-03-21T22:37:22.948Z", + "new_balance":"4492.88", + "value":"-0.59" + } + }, + { + "id":"8cb1543e-7113-4cc2-a563-0c71dcd973a3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T10:17:36.435Z", + "completed":"2016-03-23T10:17:36.435Z", + "new_balance":"4491.97", + "value":"-0.91" + } + }, + { + "id":"0b97af42-1b6a-417e-82eb-466aed6dafe6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T11:32:42.382Z", + "completed":"2016-03-23T11:32:42.382Z", + "new_balance":"4487.36", + "value":"-4.61" + } + }, + { + "id":"c33fa2d2-8a60-47df-a3c0-24ce67e3b2ad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T14:02:18.263Z", + "completed":"2016-03-24T14:02:18.263Z", + "new_balance":"4483.81", + "value":"-3.55" + } + }, + { + "id":"c4f2f283-664b-4c9f-adf9-c2dec559891d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T15:19:11.354Z", + "completed":"2016-03-25T15:19:11.354Z", + "new_balance":"4480.75", + "value":"-3.06" + } + }, + { + "id":"235fbb2d-6ca4-42d5-bfe9-676f49f25d45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:08:01.190Z", + "completed":"2016-03-25T23:08:01.190Z", + "new_balance":"4479.44", + "value":"-1.31" + } + }, + { + "id":"72ffc9fd-6014-41d9-860f-9564d78136ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T10:20:29.398Z", + "completed":"2016-03-27T10:20:29.398Z", + "new_balance":"4451.94", + "value":"-27.50" + } + }, + { + "id":"5df8fa26-de11-463b-92f0-ed3940db34c9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T18:32:57.566Z", + "completed":"2016-03-28T18:32:57.566Z", + "new_balance":"4449.20", + "value":"-2.74" + } + }, + { + "id":"7568205c-f069-4c98-8f5d-18b5dfd0c970", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T05:23:11.838Z", + "completed":"2016-04-01T05:23:11.838Z", + "new_balance":"4390.97", + "value":"-58.23" + } + }, + { + "id":"1973f17a-12f1-42f2-b044-efe25fe7e751", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T07:08:13.133Z", + "completed":"2016-04-01T07:08:13.133Z", + "new_balance":"4375.72", + "value":"-15.25" + } + }, + { + "id":"4397e513-80c6-429d-9e41-ac47a7001aca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T08:13:18.420Z", + "completed":"2016-04-01T08:13:18.420Z", + "new_balance":"4373.40", + "value":"-2.32" + } + }, + { + "id":"9f31b46b-1241-42dd-94bd-33e9ec9f4e6e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T19:52:37.782Z", + "completed":"2016-04-01T19:52:37.782Z", + "new_balance":"4368.25", + "value":"-5.15" + } + }, + { + "id":"7efb3abc-c493-424c-bf80-ae93fa89444e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T03:07:34.234Z", + "completed":"2016-04-02T03:07:34.234Z", + "new_balance":"4361.15", + "value":"-7.10" + } + }, + { + "id":"9d6e9064-3382-47a0-8a57-43aa62e74ed5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T19:09:58.834Z", + "completed":"2016-04-02T19:09:58.834Z", + "new_balance":"4351.46", + "value":"-9.69" + } + }, + { + "id":"6f9656c5-1278-41ee-9c57-ebba2fa5b264", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:30:37.308Z", + "completed":"2016-04-03T01:30:37.308Z", + "new_balance":"4359.40", + "value":"7.94" + } + }, + { + "id":"f1dcc775-0e21-49ca-a374-2a1cb5e83190", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T13:49:48.723Z", + "completed":"2016-04-03T13:49:48.723Z", + "new_balance":"4355.62", + "value":"-3.78" + } + }, + { + "id":"1af56314-318e-41ae-8064-5e64d973236f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T15:24:07.726Z", + "completed":"2016-04-03T15:24:07.726Z", + "new_balance":"4352.71", + "value":"-2.91" + } + }, + { + "id":"6f0066ed-c6d6-42e1-a093-4e76d8486127", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:17:48.846Z", + "completed":"2016-04-03T19:17:48.846Z", + "new_balance":"4365.05", + "value":"12.34" + } + }, + { + "id":"66205a53-a189-4d9d-ab10-b62335f6893b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:37:25.384Z", + "completed":"2016-04-03T19:37:25.384Z", + "new_balance":"4361.27", + "value":"-3.78" + } + }, + { + "id":"a7e8e5dc-dee4-4a39-bbf0-eaa937cbd236", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T12:36:32.724Z", + "completed":"2016-04-04T12:36:32.724Z", + "new_balance":"4354.08", + "value":"-7.19" + } + }, + { + "id":"76537bf1-6dac-4fe2-a24d-14b073c22e55", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T19:27:26.421Z", + "completed":"2016-04-05T19:27:26.421Z", + "new_balance":"4351.40", + "value":"-2.68" + } + }, + { + "id":"f1fa731f-8fe7-49c2-8bea-6d5f10cbd188", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T23:24:13.333Z", + "completed":"2016-04-05T23:24:13.333Z", + "new_balance":"4350.94", + "value":"-0.46" + } + }, + { + "id":"b62a0580-23a3-4732-9589-e9eaea916840", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T06:17:38.360Z", + "completed":"2016-04-07T06:17:38.360Z", + "new_balance":"4347.72", + "value":"-3.22" + } + }, + { + "id":"9922607e-31f0-45fb-9287-3fd1fa455c09", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T08:46:11.840Z", + "completed":"2016-04-07T08:46:11.840Z", + "new_balance":"4346.19", + "value":"-1.53" + } + }, + { + "id":"dd1b8d32-79ef-4274-aed8-c102fd44e56c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T07:23:45.547Z", + "completed":"2016-04-08T07:23:45.547Z", + "new_balance":"4345.29", + "value":"-0.90" + } + }, + { + "id":"356940e6-e8a1-4652-ac18-dd6c5e33eb5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T12:05:50.434Z", + "completed":"2016-04-09T12:05:50.434Z", + "new_balance":"4317.79", + "value":"-27.50" + } + }, + { + "id":"3df5e3bc-1975-4b1e-b987-f126c06fa324", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T13:56:54.653Z", + "completed":"2016-04-09T13:56:54.653Z", + "new_balance":"4317.35", + "value":"-0.44" + } + }, + { + "id":"af907227-3812-4394-8bae-6ff4b538a804", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T22:50:20.601Z", + "completed":"2016-04-09T22:50:20.601Z", + "new_balance":"4315.24", + "value":"-2.11" + } + }, + { + "id":"eeaa4ce4-ba35-4cf4-8ccb-dd8b66f26e6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T01:29:58.552Z", + "completed":"2016-04-10T01:29:58.552Z", + "new_balance":"4310.76", + "value":"-4.48" + } + }, + { + "id":"8f967935-14da-4ecd-824a-15ac86c60ba4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T06:47:13.026Z", + "completed":"2016-04-17T06:47:13.026Z", + "new_balance":"4309.65", + "value":"-1.11" + } + }, + { + "id":"408f34f3-8dac-4b8b-979d-2f8eadffed28", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T13:10:55.029Z", + "completed":"2016-04-18T13:10:55.029Z", + "new_balance":"4306.84", + "value":"-2.81" + } + }, + { + "id":"8965e0f9-eca2-48fb-8d8c-40270039ee2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T03:48:33.758Z", + "completed":"2016-04-25T03:48:33.758Z", + "new_balance":"4301.44", + "value":"-5.40" + } + }, + { + "id":"2a511d44-651c-44eb-a802-4102f33f0af9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T18:49:20.821Z", + "completed":"2016-04-26T18:49:20.821Z", + "new_balance":"4295.62", + "value":"-5.82" + } + }, + { + "id":"a7c65ca5-374b-4301-9af2-ac281374df8b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T19:05:12.804Z", + "completed":"2016-04-26T19:05:12.804Z", + "new_balance":"4295.18", + "value":"-0.44" + } + }, + { + "id":"332de2d6-1ddb-445e-8fdb-63ded0508d0c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T02:37:57.352Z", + "completed":"2016-05-02T02:37:57.352Z", + "new_balance":"4279.93", + "value":"-15.25" + } + }, + { + "id":"cbffc213-27ac-4f56-a1ed-25c2724a18f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:49:29.180Z", + "completed":"2016-05-02T03:49:29.180Z", + "new_balance":"4274.78", + "value":"-5.15" + } + }, + { + "id":"d8607443-265d-4e14-ab7d-9e93834e37ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T06:13:11.938Z", + "completed":"2016-05-02T06:13:11.938Z", + "new_balance":"4267.68", + "value":"-7.10" + } + }, + { + "id":"86737c57-1cec-464f-a143-b9b7f6564208", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T08:04:10.127Z", + "completed":"2016-05-02T08:04:10.127Z", + "new_balance":"4209.45", + "value":"-58.23" + } + }, + { + "id":"e9204b06-9196-4798-81f4-e026c370b8e8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T12:22:23.267Z", + "completed":"2016-05-02T12:22:23.267Z", + "new_balance":"4207.13", + "value":"-2.32" + } + }, + { + "id":"bb82d279-9920-427b-8ba0-07c75493aeb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T19:42:41.082Z", + "completed":"2016-05-02T19:42:41.082Z", + "new_balance":"4389.83", + "value":"182.70" + } + }, + { + "id":"70ae183a-dc43-48a3-ae63-51754d2be5ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T20:33:25.956Z", + "completed":"2016-05-02T20:33:25.956Z", + "new_balance":"4388.68", + "value":"-1.15" + } + }, + { + "id":"962e7f4f-e0c9-4647-804d-e6d2d8c98adf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T21:51:21.011Z", + "completed":"2016-05-02T21:51:21.011Z", + "new_balance":"4385.24", + "value":"-3.44" + } + }, + { + "id":"253c1edc-390d-4c5b-a108-ca732874c497", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T09:27:52.892Z", + "completed":"2016-05-03T09:27:52.892Z", + "new_balance":"4383.14", + "value":"-2.10" + } + }, + { + "id":"66099454-6b66-4a96-9245-b3d14aa75bf7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T13:39:03.598Z", + "completed":"2016-05-03T13:39:03.598Z", + "new_balance":"4380.64", + "value":"-2.50" + } + }, + { + "id":"1208332b-b58d-4405-bedd-0087ab98a398", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T05:32:41.449Z", + "completed":"2016-05-04T05:32:41.449Z", + "new_balance":"4378.24", + "value":"-2.40" + } + }, + { + "id":"3e2ae700-0d7b-4fdd-aa60-7d5b6b36194a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T11:54:21.117Z", + "completed":"2016-05-04T11:54:21.117Z", + "new_balance":"4374.91", + "value":"-3.33" + } + }, + { + "id":"c05a98fe-fc25-4b08-902d-41b214e9c5f6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T15:10:53.774Z", + "completed":"2016-05-05T15:10:53.774Z", + "new_balance":"4367.72", + "value":"-7.19" + } + }, + { + "id":"d95cf508-e7d9-4837-a24e-23221e80e54b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T06:05:17.505Z", + "completed":"2016-05-07T06:05:17.505Z", + "new_balance":"4364.69", + "value":"-3.03" + } + }, + { + "id":"04dc038b-d593-43e7-a36d-56cfb5014460", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T18:56:16.655Z", + "completed":"2016-05-07T18:56:16.655Z", + "new_balance":"4364.21", + "value":"-0.48" + } + }, + { + "id":"a8559b15-5f37-42a2-a113-c1c348c20035", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T09:05:02.904Z", + "completed":"2016-05-12T09:05:02.904Z", + "new_balance":"4361.76", + "value":"-2.45" + } + }, + { + "id":"472782c0-f848-4656-87c3-a4e945d22eb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T15:46:07.604Z", + "completed":"2016-05-12T15:46:07.604Z", + "new_balance":"4358.62", + "value":"-3.14" + } + }, + { + "id":"5eefc3fa-bbce-40de-a8e3-3327eb91573e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T00:52:45.471Z", + "completed":"2016-05-14T00:52:45.471Z", + "new_balance":"4355.14", + "value":"-3.48" + } + }, + { + "id":"d81cf60b-af33-4918-bde4-d2678afb6300", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T12:45:49.979Z", + "completed":"2016-05-16T12:45:49.979Z", + "new_balance":"4354.67", + "value":"-0.47" + } + }, + { + "id":"d3dc2c8a-52dd-470d-993d-159b36c5abba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T04:07:33.905Z", + "completed":"2016-05-18T04:07:33.905Z", + "new_balance":"4353.90", + "value":"-0.77" + } + }, + { + "id":"8a5c852e-3172-4d53-a273-42e29b760f45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T22:28:31.654Z", + "completed":"2016-05-20T22:28:31.654Z", + "new_balance":"4357.98", + "value":"4.08" + } + }, + { + "id":"838baacc-6b8e-4b8c-a063-79435a795f5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T10:20:27.581Z", + "completed":"2016-05-21T10:20:27.581Z", + "new_balance":"4351.55", + "value":"-6.43" + } + }, + { + "id":"568780ea-f50d-4224-800e-877d43c029c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T13:11:17.171Z", + "completed":"2016-05-21T13:11:17.171Z", + "new_balance":"4347.43", + "value":"-4.12" + } + }, + { + "id":"adfccccb-edee-4f5c-916f-d0292ee48a2c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T05:28:55.906Z", + "completed":"2016-05-27T05:28:55.906Z", + "new_balance":"4344.49", + "value":"-2.94" + } + }, + { + "id":"fbde5d17-64b0-485e-b312-82460f24f48e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:30:58.390Z", + "completed":"2016-05-27T15:30:58.390Z", + "new_balance":"4341.94", + "value":"-2.55" + } + }, + { + "id":"b117d8e9-b4a2-4349-b605-2cda7ce43028", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T05:17:38.023Z", + "completed":"2016-06-01T05:17:38.023Z", + "new_balance":"4338.50", + "value":"-3.44" + } + }, + { + "id":"d43287a1-480a-487c-b4b8-bad5d9a80975", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T08:56:45.435Z", + "completed":"2016-06-01T08:56:45.435Z", + "new_balance":"4280.27", + "value":"-58.23" + } + }, + { + "id":"98ee1c87-d637-4651-b32f-88c392c17620", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T09:29:18.892Z", + "completed":"2016-06-01T09:29:18.892Z", + "new_balance":"4275.12", + "value":"-5.15" + } + }, + { + "id":"7e998af1-bc51-49fb-81c2-60456dacca90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T16:02:58.333Z", + "completed":"2016-06-01T16:02:58.333Z", + "new_balance":"4457.82", + "value":"182.70" + } + }, + { + "id":"fd7fa2d4-5561-4c95-814e-3976a3b5edad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:39:03.772Z", + "completed":"2016-06-01T18:39:03.772Z", + "new_balance":"4442.57", + "value":"-15.25" + } + }, + { + "id":"c1aed9eb-860b-4a4f-9885-74aefcd2b4b1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T22:22:54.714Z", + "completed":"2016-06-01T22:22:54.714Z", + "new_balance":"4440.25", + "value":"-2.32" + } + }, + { + "id":"9e0564c9-1b6d-4462-a972-06ac3f047ffa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T06:45:41.971Z", + "completed":"2016-06-04T06:45:41.971Z", + "new_balance":"4433.15", + "value":"-7.10" + } + }, + { + "id":"d8aef822-26ff-415c-b26a-f26ba496b152", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T20:19:05.426Z", + "completed":"2016-06-04T20:19:05.426Z", + "new_balance":"4421.19", + "value":"-11.96" + } + }, + { + "id":"a210918c-cba9-40f3-b188-e92d060f00f0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T10:29:51.119Z", + "completed":"2016-06-11T10:29:51.119Z", + "new_balance":"4417.89", + "value":"-3.30" + } + }, + { + "id":"0f2ded31-76b3-4f5d-a33c-7dc9120f57aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T11:01:00.931Z", + "completed":"2016-06-12T11:01:00.931Z", + "new_balance":"4416.64", + "value":"-1.25" + } + }, + { + "id":"8a002e90-88f9-49ff-9767-ce338fc352de", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T06:09:25.244Z", + "completed":"2016-06-13T06:09:25.244Z", + "new_balance":"4409.34", + "value":"-7.30" + } + }, + { + "id":"b0513005-eb20-4449-b8c6-c8e8d1d6871f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T13:04:59.550Z", + "completed":"2016-06-13T13:04:59.550Z", + "new_balance":"4408.58", + "value":"-0.76" + } + }, + { + "id":"7c770673-8816-4f69-ab11-d122a0b7ffdb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T22:48:20.691Z", + "completed":"2016-06-16T22:48:20.691Z", + "new_balance":"4404.54", + "value":"-4.04" + } + }, + { + "id":"2e477ed1-490f-4a6c-898f-bcc28b956072", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T04:18:48.321Z", + "completed":"2016-06-17T04:18:48.321Z", + "new_balance":"4404.14", + "value":"-0.40" + } + }, + { + "id":"5f8eb652-d4e3-4533-9736-06547a51e994", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T15:38:46.730Z", + "completed":"2016-06-17T15:38:46.730Z", + "new_balance":"4396.84", + "value":"-7.30" + } + }, + { + "id":"a6256b2f-f6b3-4e9b-9b7c-bbe193c32d60", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T05:10:45.371Z", + "completed":"2016-06-18T05:10:45.371Z", + "new_balance":"4391.57", + "value":"-5.27" + } + }, + { + "id":"f7e6ab26-e95e-4792-ba34-ac8a84663c0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T01:19:39.548Z", + "completed":"2016-06-19T01:19:39.548Z", + "new_balance":"4386.30", + "value":"-5.27" + } + }, + { + "id":"6447971c-ce9c-4d1d-999a-6cfbac3b618b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T06:27:04.120Z", + "completed":"2016-06-19T06:27:04.120Z", + "new_balance":"4382.03", + "value":"-4.27" + } + }, + { + "id":"719eeec8-799d-418b-83f8-0a0bc84261ca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T11:50:57.320Z", + "completed":"2016-06-21T11:50:57.320Z", + "new_balance":"4375.71", + "value":"-6.32" + } + }, + { + "id":"563f4187-18fc-4e57-b356-83a9afc424fd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T18:03:23.101Z", + "completed":"2016-06-21T18:03:23.101Z", + "new_balance":"4375.17", + "value":"-0.54" + } + }, + { + "id":"da137011-1f12-4ab3-bd27-65aa090d576e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T17:59:32.741Z", + "completed":"2016-06-23T17:59:32.741Z", + "new_balance":"4374.40", + "value":"-0.77" + } + }, + { + "id":"b24004e3-2dc2-45bd-8aaa-c4eb9db81fa0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T20:12:42.368Z", + "completed":"2016-06-23T20:12:42.368Z", + "new_balance":"4372.15", + "value":"-2.25" + } + }, + { + "id":"d03f75ca-7fd9-4f2b-995f-997898505dc6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T19:46:40.897Z", + "completed":"2016-06-24T19:46:40.897Z", + "new_balance":"4367.89", + "value":"-4.26" + } + }, + { + "id":"46aa3d24-5b4d-40ec-9d0e-1285437cbcae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T20:54:09.750Z", + "completed":"2016-06-24T20:54:09.750Z", + "new_balance":"4366.84", + "value":"-1.05" + } + }, + { + "id":"1d3e8e8e-c442-4c50-bced-a0e9cdc380f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:48:16.565Z", + "completed":"2016-06-28T01:48:16.565Z", + "new_balance":"4366.32", + "value":"-0.52" + } + }, + { + "id":"76b68c1d-1545-4cec-a909-4a5f02ce2719", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T02:03:27.078Z", + "completed":"2016-06-28T02:03:27.078Z", + "new_balance":"4356.53", + "value":"-9.79" + } + }, + { + "id":"79338c8d-1166-4fb3-8038-13978590fdc2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T03:00:20.903Z", + "completed":"2016-06-28T03:00:20.903Z", + "new_balance":"4356.01", + "value":"-0.52" + } + }, + { + "id":"3886c706-a37e-4d21-9ec5-24c19c463dc0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T05:33:39.791Z", + "completed":"2016-06-28T05:33:39.791Z", + "new_balance":"4351.19", + "value":"-4.82" + } + }, + { + "id":"3a1c478d-e809-43fa-b1b4-f680781606fb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T04:09:25.562Z", + "completed":"2016-06-29T04:09:25.562Z", + "new_balance":"4346.03", + "value":"-5.16" + } + }, + { + "id":"8d01c690-626b-439c-94b7-f33eedd1f769", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T07:15:11.763Z", + "completed":"2016-06-29T07:15:11.763Z", + "new_balance":"4339.71", + "value":"-6.32" + } + }, + { + "id":"4bc9e84f-a78a-44c2-a638-92200d8b8ca1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T08:10:01.140Z", + "completed":"2016-06-29T08:10:01.140Z", + "new_balance":"4335.56", + "value":"-4.15" + } + }, + { + "id":"490d583f-5a4a-4b6b-916a-658fb4f2f8b2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T13:57:02.651Z", + "completed":"2016-06-29T13:57:02.651Z", + "new_balance":"4334.80", + "value":"-0.76" + } + }, + { + "id":"0f474c92-0f80-4688-a0cf-200c3f1c9ff1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T16:55:06.631Z", + "completed":"2016-06-29T16:55:06.631Z", + "new_balance":"4327.84", + "value":"-6.96" + } + }, + { + "id":"9c7cfd70-5dbd-44e3-9438-bc9b9dce89a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:11:11.321Z", + "completed":"2016-06-29T21:11:11.321Z", + "new_balance":"4323.55", + "value":"-4.29" + } + }, + { + "id":"efcd3d67-27b0-455d-ab51-040c946ef8d8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T06:57:37.284Z", + "completed":"2016-06-30T06:57:37.284Z", + "new_balance":"4320.00", + "value":"-3.55" + } + }, + { + "id":"7d090898-6156-409d-8fa9-df5c6f2b0443", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T11:05:01.543Z", + "completed":"2016-06-30T11:05:01.543Z", + "new_balance":"4319.09", + "value":"-0.91" + } + }, + { + "id":"87eb3f6a-68fb-4456-ad2b-4bd59da46cb8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T19:04:32.148Z", + "completed":"2016-06-30T19:04:32.148Z", + "new_balance":"4314.48", + "value":"-4.61" + } + }, + { + "id":"56be4f2f-e6ff-4b8f-8721-16a459c4e7c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T22:32:53.589Z", + "completed":"2016-06-30T22:32:53.589Z", + "new_balance":"4313.89", + "value":"-0.59" + } + }, + { + "id":"20222ae5-de98-4e39-9d3e-009e13346c41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T01:46:33.472Z", + "completed":"2016-07-01T01:46:33.472Z", + "new_balance":"4310.45", + "value":"-3.44" + } + }, + { + "id":"cf2429c5-9d8f-40ac-a6be-a12a8ac1b81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:50:30.154Z", + "completed":"2016-07-01T02:50:30.154Z", + "new_balance":"4282.95", + "value":"-27.50" + } + }, + { + "id":"45cae516-3a15-49a7-90de-ea7d94ffc2d8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:38:55.583Z", + "completed":"2016-07-01T05:38:55.583Z", + "new_balance":"4279.51", + "value":"-3.44" + } + }, + { + "id":"41e4132c-7ca6-4d91-9284-d04038e3d95c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T06:55:35.442Z", + "completed":"2016-07-01T06:55:35.442Z", + "new_balance":"4264.26", + "value":"-15.25" + } + }, + { + "id":"d62d7bbc-43ef-47bc-8e27-3facf63763e5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T07:30:40.058Z", + "completed":"2016-07-01T07:30:40.058Z", + "new_balance":"4206.03", + "value":"-58.23" + } + }, + { + "id":"174abdda-9475-4b6c-af85-27b1396208fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T09:30:30.110Z", + "completed":"2016-07-01T09:30:30.110Z", + "new_balance":"4204.72", + "value":"-1.31" + } + }, + { + "id":"5b8abdce-cf49-4034-bc0a-7310e4cdf2ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T11:41:22.391Z", + "completed":"2016-07-01T11:41:22.391Z", + "new_balance":"4201.66", + "value":"-3.06" + } + }, + { + "id":"c52c5127-b865-4327-b6dd-d12b511e480a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T15:20:07.037Z", + "completed":"2016-07-01T15:20:07.037Z", + "new_balance":"4196.51", + "value":"-5.15" + } + }, + { + "id":"7315bce3-1780-4f1c-811e-491697162a5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T16:52:47.278Z", + "completed":"2016-07-01T16:52:47.278Z", + "new_balance":"4193.77", + "value":"-2.74" + } + }, + { + "id":"0fb5e5bf-1aad-4084-b345-ea10bc84cac8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T23:18:17.030Z", + "completed":"2016-07-01T23:18:17.030Z", + "new_balance":"4191.45", + "value":"-2.32" + } + }, + { + "id":"9f22269f-34a7-4bfb-8334-85d64f4521e4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T00:28:26.133Z", + "completed":"2016-07-02T00:28:26.133Z", + "new_balance":"4184.35", + "value":"-7.10" + } + }, + { + "id":"481e6f07-351c-40f6-865f-2eec3ed2e667", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T09:10:38.125Z", + "completed":"2016-07-03T09:10:38.125Z", + "new_balance":"4173.88", + "value":"-10.47" + } + }, + { + "id":"c0d77c8b-d849-4c4e-96f6-3e1aef44c951", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T06:54:52.143Z", + "completed":"2016-07-04T06:54:52.143Z", + "new_balance":"4172.10", + "value":"-1.78" + } + }, + { + "id":"d23a041f-3ed5-458b-94cf-2b909f98ce83", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T13:47:51.844Z", + "completed":"2016-07-05T13:47:51.844Z", + "new_balance":"4164.91", + "value":"-7.19" + } + }, + { + "id":"11f04da2-a72d-4d06-beb0-dc467c9c3518", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T17:05:25.153Z", + "completed":"2016-07-05T17:05:25.153Z", + "new_balance":"4155.27", + "value":"-9.64" + } + }, + { + "id":"1bf310d8-549f-4c32-bd98-ed7d9f1148da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T22:44:15.834Z", + "completed":"2016-07-06T22:44:15.834Z", + "new_balance":"4154.81", + "value":"-0.46" + } + }, + { + "id":"c5526360-56e6-4d3c-9ee3-08352763f6b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T22:20:45.316Z", + "completed":"2016-07-11T22:20:45.316Z", + "new_balance":"4152.13", + "value":"-2.68" + } + }, + { + "id":"edff73fa-2873-4d54-b587-3c623cf9139a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T18:39:21.839Z", + "completed":"2016-07-12T18:39:21.839Z", + "new_balance":"4148.91", + "value":"-3.22" + } + }, + { + "id":"bec6a1ae-931f-448e-9793-a3be9bca0423", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T23:26:22.230Z", + "completed":"2016-07-14T23:26:22.230Z", + "new_balance":"4147.38", + "value":"-1.53" + } + }, + { + "id":"520a227a-d0b9-4e11-9b02-6095b5afd393", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T05:32:04.393Z", + "completed":"2016-07-16T05:32:04.393Z", + "new_balance":"4146.48", + "value":"-0.90" + } + }, + { + "id":"f6d3e3f2-99b2-4fd4-b115-393da97fa57b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T05:29:06.045Z", + "completed":"2016-07-18T05:29:06.045Z", + "new_balance":"4144.37", + "value":"-2.11" + } + }, + { + "id":"9c18f235-ceca-41f1-b36d-fb545f2a8a3d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T00:38:51.450Z", + "completed":"2016-07-20T00:38:51.450Z", + "new_balance":"4143.93", + "value":"-0.44" + } + }, + { + "id":"81c7c65d-dbf0-4643-9122-5f6cf5dcabd6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T19:43:13.985Z", + "completed":"2016-07-20T19:43:13.985Z", + "new_balance":"4116.43", + "value":"-27.50" + } + }, + { + "id":"a4fed92d-b47b-42f7-90ee-1ae46b6fbdb5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T18:10:49.531Z", + "completed":"2016-07-24T18:10:49.531Z", + "new_balance":"4115.32", + "value":"-1.11" + } + }, + { + "id":"b33f92f4-3438-4de0-9336-2667a137a81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T19:42:04.061Z", + "completed":"2016-07-24T19:42:04.061Z", + "new_balance":"4110.84", + "value":"-4.48" + } + }, + { + "id":"c9781c9f-bf10-4ca4-aec0-a7c84091bb53", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T23:36:39.712Z", + "completed":"2016-07-25T23:36:39.712Z", + "new_balance":"4108.03", + "value":"-2.81" + } + }, + { + "id":"c63d7e03-8de0-447b-b414-7d86d45eb92e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T23:45:46.684Z", + "completed":"2016-07-25T23:45:46.684Z", + "new_balance":"4102.63", + "value":"-5.40" + } + }, + { + "id":"0a9ffdae-fa9b-4f0f-a1d9-3e42c134a186", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T17:13:20.537Z", + "completed":"2016-07-26T17:13:20.537Z", + "new_balance":"4096.81", + "value":"-5.82" + } + }, + { + "id":"7c0b76b3-e428-42b8-810a-24910b974a97", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T05:23:54.961Z", + "completed":"2016-07-27T05:23:54.961Z", + "new_balance":"4096.37", + "value":"-0.44" + } + }, + { + "id":"00417909-a507-4562-a049-d64f555d0593", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T00:16:34.045Z", + "completed":"2016-08-01T00:16:34.045Z", + "new_balance":"4279.07", + "value":"182.70" + } + }, + { + "id":"fe98126d-26e4-4b09-a9e2-279699588a25", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T02:28:06.661Z", + "completed":"2016-08-01T02:28:06.661Z", + "new_balance":"4276.75", + "value":"-2.32" + } + }, + { + "id":"3458c90e-07bf-4f2d-af6d-3654672b6a6c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T15:28:49.699Z", + "completed":"2016-08-01T15:28:49.699Z", + "new_balance":"4271.60", + "value":"-5.15" + } + }, + { + "id":"8822de60-e807-434f-98cb-27b18f323ce5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T18:56:55.611Z", + "completed":"2016-08-01T18:56:55.611Z", + "new_balance":"4256.35", + "value":"-15.25" + } + }, + { + "id":"27458caf-5ffb-43f5-bce2-d5524fb0559c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T21:34:00.319Z", + "completed":"2016-08-01T21:34:00.319Z", + "new_balance":"4198.12", + "value":"-58.23" + } + }, + { + "id":"c9020247-ee93-4c19-bfc1-52cba0d070b3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T22:51:55.453Z", + "completed":"2016-08-01T22:51:55.453Z", + "new_balance":"4194.68", + "value":"-3.44" + } + }, + { + "id":"0957a2c4-ad53-4e11-959a-b864cfe9ce36", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T06:13:48.540Z", + "completed":"2016-08-02T06:13:48.540Z", + "new_balance":"4187.58", + "value":"-7.10" + } + }, + { + "id":"da51d4c2-e6e9-43a8-ae66-5159056d1630", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T20:19:25.847Z", + "completed":"2016-08-03T20:19:25.847Z", + "new_balance":"4187.12", + "value":"-0.46" + } + }, + { + "id":"79fb5b88-5c6e-4fc3-be85-8329bf453df9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T02:48:56.088Z", + "completed":"2016-08-04T02:48:56.088Z", + "new_balance":"4184.20", + "value":"-2.92" + } + }, + { + "id":"f11d4f84-5b8f-47fa-b40d-cfe5e518feef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T16:10:35.600Z", + "completed":"2016-08-07T16:10:35.600Z", + "new_balance":"4181.70", + "value":"-2.50" + } + }, + { + "id":"38515908-cce4-4fc8-8ef5-e5b34e34e8fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T14:38:14.502Z", + "completed":"2016-08-09T14:38:14.502Z", + "new_balance":"4178.37", + "value":"-3.33" + } + }, + { + "id":"dc281291-5db8-4d64-a1a3-357a9515cc96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T16:54:31.679Z", + "completed":"2016-08-09T16:54:31.679Z", + "new_balance":"4175.97", + "value":"-2.40" + } + }, + { + "id":"b062628a-b437-4a70-8c5c-7f9e749f6c5b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T17:10:35.211Z", + "completed":"2016-08-10T17:10:35.211Z", + "new_balance":"4168.78", + "value":"-7.19" + } + }, + { + "id":"cd578960-89fb-4bb8-9cb7-fb3a4f28cd55", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T23:32:06.219Z", + "completed":"2016-08-14T23:32:06.219Z", + "new_balance":"4168.30", + "value":"-0.48" + } + }, + { + "id":"ffdf762c-2809-40b5-afad-72fd358363f8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T02:22:11.222Z", + "completed":"2016-08-15T02:22:11.222Z", + "new_balance":"4165.08", + "value":"-3.22" + } + }, + { + "id":"44c644d8-6a4a-411a-92e9-f572344a01eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T12:45:47.932Z", + "completed":"2016-08-15T12:45:47.932Z", + "new_balance":"4162.05", + "value":"-3.03" + } + }, + { + "id":"d4821220-76b0-480c-b48a-fc73430176b9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T23:53:47.783Z", + "completed":"2016-08-16T23:53:47.783Z", + "new_balance":"4158.91", + "value":"-3.14" + } + }, + { + "id":"882a5f4b-d4fd-4a59-8fbc-4608fa932ab9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:11:28.058Z", + "completed":"2016-08-17T22:11:28.058Z", + "new_balance":"4155.43", + "value":"-3.48" + } + }, + { + "id":"6111bfe4-2a14-4486-b1cc-35c1b67d5521", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T19:43:44.127Z", + "completed":"2016-08-20T19:43:44.127Z", + "new_balance":"4154.66", + "value":"-0.77" + } + }, + { + "id":"3988d988-0148-4902-835a-40948056d12f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T19:53:17.121Z", + "completed":"2016-08-20T19:53:17.121Z", + "new_balance":"4154.19", + "value":"-0.47" + } + }, + { + "id":"c520594a-7019-4b3a-aaf6-8c8accb025b6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T13:52:28.812Z", + "completed":"2016-08-22T13:52:28.812Z", + "new_balance":"4158.27", + "value":"4.08" + } + }, + { + "id":"1cb77d6e-4823-4846-95a8-abe5225f1cc3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T03:37:23.902Z", + "completed":"2016-08-23T03:37:23.902Z", + "new_balance":"4151.84", + "value":"-6.43" + } + }, + { + "id":"8fc0b286-c7cc-4704-90f5-433e5e589690", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T07:18:46.497Z", + "completed":"2016-08-23T07:18:46.497Z", + "new_balance":"4147.72", + "value":"-4.12" + } + }, + { + "id":"39e07b73-930b-4da1-9210-ff18b357f8d5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T12:16:27.804Z", + "completed":"2016-08-28T12:16:27.804Z", + "new_balance":"4144.78", + "value":"-2.94" + } + }, + { + "id":"f6dd2504-2815-46df-b472-a86c59016b27", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T14:52:38.654Z", + "completed":"2016-08-28T14:52:38.654Z", + "new_balance":"4142.23", + "value":"-2.55" + } + }, + { + "id":"ea17e71e-e5cb-4745-abe8-ea3e030b8715", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T02:33:36.140Z", + "completed":"2016-09-01T02:33:36.140Z", + "new_balance":"4126.98", + "value":"-15.25" + } + }, + { + "id":"64b3b604-2268-4f19-b893-64f6f44cf4d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T04:21:21.197Z", + "completed":"2016-09-01T04:21:21.197Z", + "new_balance":"4068.75", + "value":"-58.23" + } + }, + { + "id":"d35d7655-bb09-43f3-ac08-b68fc534ce4d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:28:23.071Z", + "completed":"2016-09-01T04:28:23.071Z", + "new_balance":"4251.45", + "value":"182.70" + } + }, + { + "id":"f7a65141-4403-4f9a-87cc-0522ff4cb464", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T07:23:23.598Z", + "completed":"2016-09-01T07:23:23.598Z", + "new_balance":"4248.01", + "value":"-3.44" + } + }, + { + "id":"ac36de63-c27b-4284-b961-8a14a3907bbb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T11:11:45.734Z", + "completed":"2016-09-01T11:11:45.734Z", + "new_balance":"4242.86", + "value":"-5.15" + } + }, + { + "id":"9dcd3c5f-634d-4652-9817-f795abc37fe2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T15:57:14.741Z", + "completed":"2016-09-01T15:57:14.741Z", + "new_balance":"4240.54", + "value":"-2.32" + } + }, + { + "id":"ef6e0cce-baf6-4075-a6ec-ca5b319e3b59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T14:15:31.484Z", + "completed":"2016-09-02T14:15:31.484Z", + "new_balance":"4233.44", + "value":"-7.10" + } + }, + { + "id":"38814690-4f99-4709-8cea-c52fc878f521", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T08:53:10.117Z", + "completed":"2016-09-04T08:53:10.117Z", + "new_balance":"4226.14", + "value":"-7.30" + } + }, + { + "id":"a1185cdd-f7d9-4afd-8589-a3bd5b1ba6c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T09:32:20.567Z", + "completed":"2016-09-04T09:32:20.567Z", + "new_balance":"4224.89", + "value":"-1.25" + } + }, + { + "id":"be81777e-af4b-4138-ba57-c78b6dc2f157", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T10:16:12.423Z", + "completed":"2016-09-04T10:16:12.423Z", + "new_balance":"4221.59", + "value":"-3.30" + } + }, + { + "id":"5b9247f6-060e-4229-90bb-296e8a8936c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T14:01:50.788Z", + "completed":"2016-09-04T14:01:50.788Z", + "new_balance":"4220.83", + "value":"-0.76" + } + }, + { + "id":"9d5a30f5-20e8-4dfd-8aba-12e3364f227b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:31:41.602Z", + "completed":"2016-09-05T06:31:41.602Z", + "new_balance":"4220.43", + "value":"-0.40" + } + }, + { + "id":"08c17992-4b16-488e-bea4-bc2ae541d0f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T14:06:57.075Z", + "completed":"2016-09-05T14:06:57.075Z", + "new_balance":"4216.39", + "value":"-4.04" + } + }, + { + "id":"7b6047e1-01b1-4304-b1a5-ce3368531958", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T02:39:19.300Z", + "completed":"2016-09-06T02:39:19.300Z", + "new_balance":"4211.12", + "value":"-5.27" + } + }, + { + "id":"d6dbf2c6-a6d3-402d-b6a7-11b7e6679f7e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T15:41:47.858Z", + "completed":"2016-09-06T15:41:47.858Z", + "new_balance":"4203.82", + "value":"-7.30" + } + }, + { + "id":"875b1b8a-4518-465c-b694-fe0017f064ec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T05:07:06.371Z", + "completed":"2016-09-08T05:07:06.371Z", + "new_balance":"4199.55", + "value":"-4.27" + } + }, + { + "id":"f553811a-71d4-4d93-b35f-fadb6a35ef9e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T10:37:10.106Z", + "completed":"2016-09-08T10:37:10.106Z", + "new_balance":"4194.28", + "value":"-5.27" + } + }, + { + "id":"61104573-3007-44fc-9ada-e4e3a5765dfc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T06:46:31.225Z", + "completed":"2016-09-10T06:46:31.225Z", + "new_balance":"4193.74", + "value":"-0.54" + } + }, + { + "id":"ae7a6074-30e5-48f3-ae63-b5154124a413", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:38:21.641Z", + "completed":"2016-09-10T22:38:21.641Z", + "new_balance":"4187.42", + "value":"-6.32" + } + }, + { + "id":"f1a316af-aa88-4b1e-807e-a95b7f7d835d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T06:36:24.951Z", + "completed":"2016-09-11T06:36:24.951Z", + "new_balance":"4186.65", + "value":"-0.77" + } + }, + { + "id":"a8534f6f-a9ba-416f-b5d3-cd841c69f4fe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T10:16:50.364Z", + "completed":"2016-09-12T10:16:50.364Z", + "new_balance":"4184.40", + "value":"-2.25" + } + }, + { + "id":"2ad289a0-4fcf-4fa9-a8fd-277fcaaa7a61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T22:04:19.262Z", + "completed":"2016-09-12T22:04:19.262Z", + "new_balance":"4183.35", + "value":"-1.05" + } + }, + { + "id":"00036a71-4365-471d-a0dc-f54bc7837d92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T07:38:13.963Z", + "completed":"2016-09-13T07:38:13.963Z", + "new_balance":"4179.09", + "value":"-4.26" + } + }, + { + "id":"4e9d5afc-2100-4472-aacc-732f474a984b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T01:04:52.976Z", + "completed":"2016-09-16T01:04:52.976Z", + "new_balance":"4178.57", + "value":"-0.52" + } + }, + { + "id":"21aa0be0-e3a3-4c96-b4f7-689b2c70c89d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T13:37:29.894Z", + "completed":"2016-09-17T13:37:29.894Z", + "new_balance":"4168.78", + "value":"-9.79" + } + }, + { + "id":"b1b52c45-b26f-4305-815b-ca4093f499ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T19:52:34.749Z", + "completed":"2016-09-17T19:52:34.749Z", + "new_balance":"4163.96", + "value":"-4.82" + } + }, + { + "id":"c4765dc8-ac70-431c-ad70-ba3cc07c8de3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:31:39.237Z", + "completed":"2016-09-18T17:31:39.237Z", + "new_balance":"4163.44", + "value":"-0.52" + } + }, + { + "id":"6d12c92d-c753-4b73-8a28-7461de0b88df", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T13:10:45.686Z", + "completed":"2016-09-19T13:10:45.686Z", + "new_balance":"4159.15", + "value":"-4.29" + } + }, + { + "id":"0faeb45d-8e8b-42ac-8ef5-defdf5bbc387", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T18:36:17.944Z", + "completed":"2016-09-19T18:36:17.944Z", + "new_balance":"4155.00", + "value":"-4.15" + } + }, + { + "id":"f806b0e1-982a-47ef-9538-bad22885b402", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T21:50:00.483Z", + "completed":"2016-09-19T21:50:00.483Z", + "new_balance":"4148.68", + "value":"-6.32" + } + }, + { + "id":"eb323758-f664-4256-9fcc-865615ff1aee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T01:37:57.845Z", + "completed":"2016-09-20T01:37:57.845Z", + "new_balance":"4141.72", + "value":"-6.96" + } + }, + { + "id":"94ef2a40-9e7b-447c-956b-6bea268f2a88", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T07:44:18.377Z", + "completed":"2016-09-20T07:44:18.377Z", + "new_balance":"4136.56", + "value":"-5.16" + } + }, + { + "id":"7e0eedc3-b1e7-4df5-9425-a9b9811e5e79", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T08:26:35.448Z", + "completed":"2016-09-21T08:26:35.448Z", + "new_balance":"4135.97", + "value":"-0.59" + } + }, + { + "id":"ad551813-3bba-498c-bf8a-1b21ce73eca7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T20:21:08.873Z", + "completed":"2016-09-21T20:21:08.873Z", + "new_balance":"4135.21", + "value":"-0.76" + } + }, + { + "id":"6517ffa7-db28-42a6-872b-dbc8771e1dbe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T17:23:58.461Z", + "completed":"2016-09-23T17:23:58.461Z", + "new_balance":"4134.30", + "value":"-0.91" + } + }, + { + "id":"758848f5-56b1-48f3-96dd-11f0e15752aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T19:53:56.787Z", + "completed":"2016-09-23T19:53:56.787Z", + "new_balance":"4129.69", + "value":"-4.61" + } + }, + { + "id":"08b59a6f-314c-4117-a405-aba3c9df5fdf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T23:07:02.525Z", + "completed":"2016-09-24T23:07:02.525Z", + "new_balance":"4126.14", + "value":"-3.55" + } + }, + { + "id":"ac32c320-55af-42b3-84d5-b5eb568ac599", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T01:15:21.142Z", + "completed":"2016-09-25T01:15:21.142Z", + "new_balance":"4124.83", + "value":"-1.31" + } + }, + { + "id":"83e27070-13b5-4c90-aeb8-90dc813b460a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T13:21:13.816Z", + "completed":"2016-09-25T13:21:13.816Z", + "new_balance":"4121.77", + "value":"-3.06" + } + }, + { + "id":"40b536b8-00ae-41ed-bb71-c541bc66c621", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T17:35:21.790Z", + "completed":"2016-09-27T17:35:21.790Z", + "new_balance":"4094.27", + "value":"-27.50" + } + }, + { + "id":"59d695a9-ef23-4f2b-b82b-68af7cf0b19b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T15:56:26.683Z", + "completed":"2016-09-29T15:56:26.683Z", + "new_balance":"4091.53", + "value":"-2.74" + } + }, + { + "id":"955d336c-93b6-4146-b4e3-94fd4943fed9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T02:11:54.461Z", + "completed":"2016-10-01T02:11:54.461Z", + "new_balance":"4086.38", + "value":"-5.15" + } + }, + { + "id":"7f3ebb31-c67e-40e7-a5a1-f16707ad65c2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T05:38:58.878Z", + "completed":"2016-10-01T05:38:58.878Z", + "new_balance":"4028.15", + "value":"-58.23" + } + }, + { + "id":"94881e10-9639-48d5-922d-3c00600c81de", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T18:12:35.423Z", + "completed":"2016-10-01T18:12:35.423Z", + "new_balance":"4025.83", + "value":"-2.32" + } + }, + { + "id":"f09b661f-e632-4558-976c-21c6abb46ead", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T23:53:37.526Z", + "completed":"2016-10-01T23:53:37.526Z", + "new_balance":"4010.58", + "value":"-15.25" + } + }, + { + "id":"8abf9df5-a8d8-466d-95e2-a0d1c72f54f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T05:40:00.169Z", + "completed":"2016-10-02T05:40:00.169Z", + "new_balance":"4000.89", + "value":"-9.69" + } + }, + { + "id":"1f20e6dd-cb6a-4a5d-9f56-fa8c1c3d2b28", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T13:37:55.855Z", + "completed":"2016-10-02T13:37:55.855Z", + "new_balance":"3993.79", + "value":"-7.10" + } + }, + { + "id":"b2608774-79d4-4f63-a96a-c796745b1331", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T00:09:45.629Z", + "completed":"2016-10-03T00:09:45.629Z", + "new_balance":"3966.29", + "value":"-27.50" + } + }, + { + "id":"51b3ac38-0933-414a-b125-cec53243b37f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T06:06:48.589Z", + "completed":"2016-10-03T06:06:48.589Z", + "new_balance":"3909.48", + "value":"-56.81" + } + }, + { + "id":"1d330484-8560-442e-ac02-4e040904e9b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:52:50.973Z", + "completed":"2016-10-03T08:52:50.973Z", + "new_balance":"3905.70", + "value":"-3.78" + } + }, + { + "id":"f649df20-bf3d-4072-a69c-8464099eefec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T17:00:25.385Z", + "completed":"2016-10-03T17:00:25.385Z", + "new_balance":"3892.60", + "value":"-13.10" + } + }, + { + "id":"2e7d0fb4-d5c9-4405-9ce7-cd2345ae8021", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T21:13:30.453Z", + "completed":"2016-10-03T21:13:30.453Z", + "new_balance":"3889.69", + "value":"-2.91" + } + }, + { + "id":"2c5c03c4-e42f-4c88-a9e8-8ce78bd1a1fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T18:04:22.841Z", + "completed":"2016-10-04T18:04:22.841Z", + "new_balance":"3882.50", + "value":"-7.19" + } + }, + { + "id":"216ed46d-d3c3-4d1d-9b0c-92e333243253", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:47:06.535Z", + "completed":"2016-10-05T03:47:06.535Z", + "new_balance":"3879.82", + "value":"-2.68" + } + }, + { + "id":"c2fd23f9-ee6a-48b0-b597-3c97143e9210", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T21:56:15.153Z", + "completed":"2016-10-05T21:56:15.153Z", + "new_balance":"3879.36", + "value":"-0.46" + } + }, + { + "id":"8c2e9bb3-08d2-4738-b9da-bc8d2130bd8c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T05:23:04.228Z", + "completed":"2016-10-07T05:23:04.228Z", + "new_balance":"3877.83", + "value":"-1.53" + } + }, + { + "id":"20db1b99-d5c6-4b79-a9b5-98487314b24e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T09:16:44.831Z", + "completed":"2016-10-07T09:16:44.831Z", + "new_balance":"3874.61", + "value":"-3.22" + } + }, + { + "id":"cfe92550-11ae-449a-9aa5-d6eeb949b9ca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T17:37:50.292Z", + "completed":"2016-10-08T17:37:50.292Z", + "new_balance":"3873.71", + "value":"-0.90" + } + }, + { + "id":"b0fc0205-50a0-4b16-bb9c-41db57fb35be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T17:52:26.321Z", + "completed":"2016-10-09T17:52:26.321Z", + "new_balance":"3871.60", + "value":"-2.11" + } + }, + { + "id":"b588c642-ff5e-4853-9309-72b66163e48c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T18:41:59.520Z", + "completed":"2016-10-09T18:41:59.520Z", + "new_balance":"3844.10", + "value":"-27.50" + } + }, + { + "id":"1ad95331-cf7f-41c1-9cf2-6bbd4e6e6127", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T19:21:25.981Z", + "completed":"2016-10-09T19:21:25.981Z", + "new_balance":"3843.66", + "value":"-0.44" + } + }, + { + "id":"613327ae-a53f-4b02-8173-3eb654be19d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T19:09:29.357Z", + "completed":"2016-10-10T19:09:29.357Z", + "new_balance":"3839.18", + "value":"-4.48" + } + }, + { + "id":"5aebf025-e1bb-4e1d-b115-4fb8f921f549", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T01:05:54.730Z", + "completed":"2016-10-17T01:05:54.730Z", + "new_balance":"3838.07", + "value":"-1.11" + } + }, + { + "id":"3106e33e-869f-4467-86e8-4dbdfe72b92b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T03:16:12.648Z", + "completed":"2016-10-18T03:16:12.648Z", + "new_balance":"3835.26", + "value":"-2.81" + } + }, + { + "id":"a8b9da2a-23e7-4ee8-8bc1-7406bac61de4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T09:51:07.603Z", + "completed":"2016-10-25T09:51:07.603Z", + "new_balance":"3829.86", + "value":"-5.40" + } + }, + { + "id":"07f34749-6f74-4000-b116-9ab38bf744da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T01:00:33.283Z", + "completed":"2016-10-26T01:00:33.283Z", + "new_balance":"3824.04", + "value":"-5.82" + } + }, + { + "id":"5b9da2bd-f4a8-4f0f-9857-34cff1abab70", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T08:25:36.204Z", + "completed":"2016-10-26T08:25:36.204Z", + "new_balance":"3823.60", + "value":"-0.44" + } + }, + { + "id":"8aba8a42-1c43-47f6-bd7f-127b5f04cf17", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T01:06:31.055Z", + "completed":"2016-11-02T01:06:31.055Z", + "new_balance":"4006.30", + "value":"182.70" + } + }, + { + "id":"b7b36914-245d-4ab8-8a11-c3296f940833", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T04:52:44.530Z", + "completed":"2016-11-02T04:52:44.530Z", + "new_balance":"3948.07", + "value":"-58.23" + } + }, + { + "id":"029209a0-51d8-4200-b0d4-c220b34a2841", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T08:09:03.697Z", + "completed":"2016-11-02T08:09:03.697Z", + "new_balance":"3940.97", + "value":"-7.10" + } + }, + { + "id":"1ff200c7-0037-427a-a79d-34f8748ba666", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T09:57:16.028Z", + "completed":"2016-11-02T09:57:16.028Z", + "new_balance":"3938.65", + "value":"-2.32" + } + }, + { + "id":"214c06fb-145a-482a-aded-062ef9968d2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T11:50:25.903Z", + "completed":"2016-11-02T11:50:25.903Z", + "new_balance":"3935.21", + "value":"-3.44" + } + }, + { + "id":"90fb55e5-1806-471e-9bf6-7d87527d2d59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T11:52:42.170Z", + "completed":"2016-11-02T11:52:42.170Z", + "new_balance":"3934.06", + "value":"-1.15" + } + }, + { + "id":"19f38dde-2782-4627-b40b-12e7d1e074bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:07:51.914Z", + "completed":"2016-11-02T19:07:51.914Z", + "new_balance":"3928.91", + "value":"-5.15" + } + }, + { + "id":"a37a8899-8b4d-44b4-8926-b70a00d79b8f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T20:48:23.007Z", + "completed":"2016-11-02T20:48:23.007Z", + "new_balance":"3913.66", + "value":"-15.25" + } + }, + { + "id":"c3e7050d-c089-4935-81c7-9d0f583bfd5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T21:12:42.369Z", + "completed":"2016-11-06T21:12:42.369Z", + "new_balance":"3911.56", + "value":"-2.10" + } + }, + { + "id":"92e68a5e-d8df-44d3-a473-a92b1318907c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T00:17:38.721Z", + "completed":"2016-11-07T00:17:38.721Z", + "new_balance":"3909.06", + "value":"-2.50" + } + }, + { + "id":"70438f20-5fcf-44fc-a079-969aa46db855", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T01:41:51.468Z", + "completed":"2016-11-07T01:41:51.468Z", + "new_balance":"3906.66", + "value":"-2.40" + } + }, + { + "id":"6c2f3fbf-0d39-447b-8fff-e840fef740ad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T21:31:41.247Z", + "completed":"2016-11-07T21:31:41.247Z", + "new_balance":"3903.33", + "value":"-3.33" + } + }, + { + "id":"e67a2a43-ccdb-4383-aa39-3139a9bb660e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T04:43:06.950Z", + "completed":"2016-11-09T04:43:06.950Z", + "new_balance":"3896.14", + "value":"-7.19" + } + }, + { + "id":"118ab8bc-9204-4993-9fcf-46ad0ec62640", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T07:29:08.865Z", + "completed":"2016-11-09T07:29:08.865Z", + "new_balance":"3895.66", + "value":"-0.48" + } + }, + { + "id":"0a008a67-821a-4b7c-a4c5-a073cc92af00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T03:16:05.924Z", + "completed":"2016-11-12T03:16:05.924Z", + "new_balance":"3892.63", + "value":"-3.03" + } + }, + { + "id":"c6b88a11-09ce-4379-a05f-2b52f35f8b5c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T14:20:21.118Z", + "completed":"2016-11-12T14:20:21.118Z", + "new_balance":"3890.18", + "value":"-2.45" + } + }, + { + "id":"34318b37-8534-4eb0-befd-78a1c6557900", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T12:37:20.022Z", + "completed":"2016-11-14T12:37:20.022Z", + "new_balance":"3887.04", + "value":"-3.14" + } + }, + { + "id":"e584f3ca-5066-4d6b-810b-15af8c13cf98", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T14:30:42.152Z", + "completed":"2016-11-14T14:30:42.152Z", + "new_balance":"3883.56", + "value":"-3.48" + } + }, + { + "id":"f1a659f7-7322-4280-abc0-bc73c15183fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T13:08:43.562Z", + "completed":"2016-11-16T13:08:43.562Z", + "new_balance":"3883.09", + "value":"-0.47" + } + }, + { + "id":"5e4cea6c-aa96-435b-af7f-cb43a18843d6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T13:23:17.976Z", + "completed":"2016-11-18T13:23:17.976Z", + "new_balance":"3882.32", + "value":"-0.77" + } + }, + { + "id":"c4e70f3a-0d8a-4d55-be82-e1c904fc2540", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T10:40:11.364Z", + "completed":"2016-11-20T10:40:11.364Z", + "new_balance":"3886.40", + "value":"4.08" + } + }, + { + "id":"3aebc664-1c3f-405d-b355-804e8debe888", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T01:59:38.397Z", + "completed":"2016-11-21T01:59:38.397Z", + "new_balance":"3882.28", + "value":"-4.12" + } + }, + { + "id":"db43bfdd-9278-4cad-83d8-44a6c3e479d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T06:48:58.550Z", + "completed":"2016-11-21T06:48:58.550Z", + "new_balance":"3875.85", + "value":"-6.43" + } + }, + { + "id":"abc09c52-d94b-49c8-888a-49d164e0ec9f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T12:57:19.196Z", + "completed":"2016-11-27T12:57:19.196Z", + "new_balance":"3873.30", + "value":"-2.55" + } + }, + { + "id":"33314968-1ccb-4030-a453-3f58eb4ced73", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T17:56:05.185Z", + "completed":"2016-11-27T17:56:05.185Z", + "new_balance":"3870.36", + "value":"-2.94" + } + }, + { + "id":"26b7972b-16bc-48a4-82eb-44b8b8d0f662", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:16:33.550Z", + "completed":"2016-12-01T01:16:33.550Z", + "new_balance":"3866.92", + "value":"-3.44" + } + }, + { + "id":"903b4afa-15a6-45ec-9324-b7476b944303", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T07:56:54.490Z", + "completed":"2016-12-01T07:56:54.490Z", + "new_balance":"3864.60", + "value":"-2.32" + } + }, + { + "id":"51d1c932-c492-41c9-b653-3f85be625c45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T10:20:41.866Z", + "completed":"2016-12-01T10:20:41.866Z", + "new_balance":"3806.37", + "value":"-58.23" + } + }, + { + "id":"1f75804b-deb6-487a-8523-a84be339769e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T11:56:20.670Z", + "completed":"2016-12-01T11:56:20.670Z", + "new_balance":"3791.12", + "value":"-15.25" + } + }, + { + "id":"9b49b390-9340-44ef-8a11-d4ba4355bfc5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T14:55:00.419Z", + "completed":"2016-12-01T14:55:00.419Z", + "new_balance":"3785.97", + "value":"-5.15" + } + }, + { + "id":"364e1cef-bd90-4475-88f1-7a0ee7f8fe07", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T20:03:20.068Z", + "completed":"2016-12-01T20:03:20.068Z", + "new_balance":"3968.67", + "value":"182.70" + } + }, + { + "id":"396ec0b8-b7e3-478c-a016-7f127bd853eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T09:48:17.521Z", + "completed":"2016-12-04T09:48:17.521Z", + "new_balance":"3956.71", + "value":"-11.96" + } + }, + { + "id":"21c41596-8a8b-4999-a106-225adf22f599", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T23:30:38.723Z", + "completed":"2016-12-04T23:30:38.723Z", + "new_balance":"3949.61", + "value":"-7.10" + } + }, + { + "id":"02104443-7ecb-4f52-9bfc-536b6af125ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T05:43:34.748Z", + "completed":"2016-12-12T05:43:34.748Z", + "new_balance":"3948.36", + "value":"-1.25" + } + }, + { + "id":"4578046c-d241-4278-9664-57b9eb7202f1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T21:19:00.594Z", + "completed":"2016-12-12T21:19:00.594Z", + "new_balance":"3945.06", + "value":"-3.30" + } + }, + { + "id":"35b83819-c6f5-49a7-a340-f23c10f07baf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T18:35:16.467Z", + "completed":"2016-12-13T18:35:16.467Z", + "new_balance":"3937.76", + "value":"-7.30" + } + }, + { + "id":"6aa6fe47-afc0-470c-9505-f3b75a9bfd42", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T21:49:34.842Z", + "completed":"2016-12-13T21:49:34.842Z", + "new_balance":"3937.00", + "value":"-0.76" + } + }, + { + "id":"0c770f42-6afd-44bd-a606-d8b6c3da7495", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T13:14:01.070Z", + "completed":"2016-12-16T13:14:01.070Z", + "new_balance":"3932.96", + "value":"-4.04" + } + }, + { + "id":"623cb33f-dde7-40fa-8a0d-554ceeb0ba7a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T08:42:02.666Z", + "completed":"2016-12-18T08:42:02.666Z", + "new_balance":"3932.56", + "value":"-0.40" + } + }, + { + "id":"bbc9d60a-9f73-4310-b4e3-d1f4eb5f69ac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:10:29.276Z", + "completed":"2016-12-19T05:10:29.276Z", + "new_balance":"3927.29", + "value":"-5.27" + } + }, + { + "id":"51d71a27-d1fb-44c7-890c-bd694715257b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:54:20.765Z", + "completed":"2016-12-19T15:54:20.765Z", + "new_balance":"3919.99", + "value":"-7.30" + } + }, + { + "id":"aaf735b2-2dd3-4d53-af90-56f7438effc4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T02:18:48.321Z", + "completed":"2016-12-20T02:18:48.321Z", + "new_balance":"3915.72", + "value":"-4.27" + } + }, + { + "id":"a59fec4c-a107-4ddb-a058-a77cebb221d1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:23:25.916Z", + "completed":"2016-12-21T23:23:25.916Z", + "new_balance":"3910.45", + "value":"-5.27" + } + }, + { + "id":"5bad1c89-2609-4eb2-b197-c941bca20247", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T00:58:32.329Z", + "completed":"2016-12-24T00:58:32.329Z", + "new_balance":"3909.91", + "value":"-0.54" + } + }, + { + "id":"5b61393f-d3ef-493e-9c74-c6120345d22d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T01:03:35.644Z", + "completed":"2016-12-24T01:03:35.644Z", + "new_balance":"3908.86", + "value":"-1.05" + } + }, + { + "id":"566e1d5d-a54b-4874-a6d4-f8fa549500f4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T12:05:55.957Z", + "completed":"2016-12-24T12:05:55.957Z", + "new_balance":"3906.61", + "value":"-2.25" + } + }, + { + "id":"06cc15a3-5af7-4551-8b20-4e129ed729fb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T13:25:49.913Z", + "completed":"2016-12-24T13:25:49.913Z", + "new_balance":"3905.84", + "value":"-0.77" + } + }, + { + "id":"3376345e-e474-45a7-84c1-a25cbbaa2561", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T16:02:00.981Z", + "completed":"2016-12-24T16:02:00.981Z", + "new_balance":"3901.58", + "value":"-4.26" + } + }, + { + "id":"5f829460-3a99-481d-af6a-f48ca640010c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T18:27:14.268Z", + "completed":"2016-12-24T18:27:14.268Z", + "new_balance":"3895.26", + "value":"-6.32" + } + }, + { + "id":"2142f7ca-63b7-4d71-a721-aeedb2a1aed8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T09:03:00.198Z", + "completed":"2016-12-28T09:03:00.198Z", + "new_balance":"3890.44", + "value":"-4.82" + } + }, + { + "id":"0a8ab7bf-e040-4c99-abce-469a2548207d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T11:26:41.512Z", + "completed":"2016-12-28T11:26:41.512Z", + "new_balance":"3880.65", + "value":"-9.79" + } + }, + { + "id":"ee844ab7-2cc1-4d9e-a08e-ca6001d90744", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T12:59:46.345Z", + "completed":"2016-12-28T12:59:46.345Z", + "new_balance":"3880.13", + "value":"-0.52" + } + }, + { + "id":"d6d72694-d241-4370-a7ef-3976daabac8f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T16:21:06.138Z", + "completed":"2016-12-28T16:21:06.138Z", + "new_balance":"3879.61", + "value":"-0.52" + } + }, + { + "id":"12248496-999b-44c4-af9b-4038434d21c5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T06:21:51.765Z", + "completed":"2016-12-29T06:21:51.765Z", + "new_balance":"3873.29", + "value":"-6.32" + } + }, + { + "id":"836360d1-f6b0-4030-919c-3d0398b65533", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T07:27:16.882Z", + "completed":"2016-12-29T07:27:16.882Z", + "new_balance":"3869.14", + "value":"-4.15" + } + }, + { + "id":"1ed86882-05de-450f-9073-9a6d7a3b55d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T08:28:26.602Z", + "completed":"2016-12-29T08:28:26.602Z", + "new_balance":"3864.85", + "value":"-4.29" + } + }, + { + "id":"7da2c054-d214-4124-ac96-edd90f879ae2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T09:21:29.265Z", + "completed":"2016-12-29T09:21:29.265Z", + "new_balance":"3857.89", + "value":"-6.96" + } + }, + { + "id":"fdae64aa-124b-4174-b80b-9056b80f5158", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T19:08:15.236Z", + "completed":"2016-12-29T19:08:15.236Z", + "new_balance":"3857.13", + "value":"-0.76" + } + }, + { + "id":"93ee4541-670b-4f23-874b-49dc1c322d30", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T21:22:45.343Z", + "completed":"2016-12-29T21:22:45.343Z", + "new_balance":"3851.97", + "value":"-5.16" + } + }, + { + "id":"8da70651-dbd4-46c5-9bfd-d3ff12c5585c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T04:40:08.052Z", + "completed":"2016-12-30T04:40:08.052Z", + "new_balance":"3851.38", + "value":"-0.59" + } + }, + { + "id":"0b3e3e3c-fd86-4015-b582-4b25f03a7ff0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T14:12:54.351Z", + "completed":"2016-12-30T14:12:54.351Z", + "new_balance":"3850.47", + "value":"-0.91" + } + }, + { + "id":"151f7a31-4f7a-49ff-b89e-ef8b356e8d61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T18:23:34.093Z", + "completed":"2016-12-30T18:23:34.093Z", + "new_balance":"3846.92", + "value":"-3.55" + } + }, + { + "id":"c81a3671-6454-4687-bcc2-6e7af274399b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T21:31:02.238Z", + "completed":"2016-12-30T21:31:02.238Z", + "new_balance":"3842.31", + "value":"-4.61" + } + }, + { + "id":"c70f4ffb-752c-4f94-9288-ba93cd259b38", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T13:05:38.715Z", + "completed":"2016-12-31T13:05:38.715Z", + "new_balance":"3841.00", + "value":"-1.31" + } + }, + { + "id":"ae9486ae-9a39-4c0b-b8c2-1dbdc3fcd286", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T13:24:30.910Z", + "completed":"2016-12-31T13:24:30.910Z", + "new_balance":"3837.94", + "value":"-3.06" + } + }, + { + "id":"804ebb58-79b9-4222-9b12-c0d5a077f013", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T22:11:44.349Z", + "completed":"2016-12-31T22:11:44.349Z", + "new_balance":"3835.20", + "value":"-2.74" + } + }, + { + "id":"3b0eac30-512c-4bc0-b174-3d4e2474f594", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T23:16:04.943Z", + "completed":"2016-12-31T23:16:04.943Z", + "new_balance":"3807.70", + "value":"-27.50" + } + }, + { + "id":"5184663c-3b21-475c-bfa3-4ad21f82a970", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T02:24:05.585Z", + "completed":"2017-01-01T02:24:05.585Z", + "new_balance":"3804.26", + "value":"-3.44" + } + }, + { + "id":"1612a379-0c5e-4579-9e52-5b14bd3ca628", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T03:54:17.255Z", + "completed":"2017-01-01T03:54:17.255Z", + "new_balance":"3746.03", + "value":"-58.23" + } + }, + { + "id":"b7ea4436-0b99-44de-995b-fcc3202226c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T05:24:08.127Z", + "completed":"2017-01-01T05:24:08.127Z", + "new_balance":"3740.88", + "value":"-5.15" + } + }, + { + "id":"768d06d2-9afa-4273-be3c-058bb4d0b65d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T13:06:59.648Z", + "completed":"2017-01-01T13:06:59.648Z", + "new_balance":"3738.56", + "value":"-2.32" + } + }, + { + "id":"72975c15-f3db-413d-8870-8705c162ecd1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:51:50.865Z", + "completed":"2017-01-01T13:51:50.865Z", + "new_balance":"3723.31", + "value":"-15.25" + } + }, + { + "id":"6d05d94e-2382-4c41-bb14-80a40456f717", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T22:31:43.452Z", + "completed":"2017-01-01T22:31:43.452Z", + "new_balance":"3719.87", + "value":"-3.44" + } + }, + { + "id":"41eb88ce-d3f4-4cb6-881c-f8870baee50c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T19:33:24.015Z", + "completed":"2017-01-02T19:33:24.015Z", + "new_balance":"3710.18", + "value":"-9.69" + } + }, + { + "id":"099a7302-b923-4df4-9f00-8b28dcc88e7c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T22:07:05.781Z", + "completed":"2017-01-02T22:07:05.781Z", + "new_balance":"3703.08", + "value":"-7.10" + } + }, + { + "id":"f555cb3a-b579-4fd6-a335-5cb858a4c561", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T18:57:45.817Z", + "completed":"2017-01-04T18:57:45.817Z", + "new_balance":"3699.30", + "value":"-3.78" + } + }, + { + "id":"75e9278d-e388-4795-a63b-abf74049f9bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T22:26:43.086Z", + "completed":"2017-01-04T22:26:43.086Z", + "new_balance":"3696.39", + "value":"-2.91" + } + }, + { + "id":"fa6c63aa-2f74-43d2-86f7-fd47f569fa08", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T05:33:02.250Z", + "completed":"2017-01-07T05:33:02.250Z", + "new_balance":"3689.20", + "value":"-7.19" + } + }, + { + "id":"21a9b1a9-ae0a-49dd-973a-25bfeae77124", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T17:24:08.451Z", + "completed":"2017-01-09T17:24:08.451Z", + "new_balance":"3688.74", + "value":"-0.46" + } + }, + { + "id":"72c86fcf-729a-40fc-b6e3-f5495c73aa2c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T03:44:21.709Z", + "completed":"2017-01-10T03:44:21.709Z", + "new_balance":"3686.06", + "value":"-2.68" + } + }, + { + "id":"b2c322df-bf01-4a0c-8c4b-3db15e97c440", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T15:12:40.042Z", + "completed":"2017-01-12T15:12:40.042Z", + "new_balance":"3682.84", + "value":"-3.22" + } + }, + { + "id":"75ddd0e8-be3f-4cbf-a2a2-f1153a58deb9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T06:29:37.655Z", + "completed":"2017-01-15T06:29:37.655Z", + "new_balance":"3681.31", + "value":"-1.53" + } + }, + { + "id":"a4bd602e-fdd9-41c3-abe0-a72110d343a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:22:51.386Z", + "completed":"2017-01-15T20:22:51.386Z", + "new_balance":"3680.41", + "value":"-0.90" + } + }, + { + "id":"2fc6edeb-b4f7-4b3f-b415-9115964254ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T16:27:34.385Z", + "completed":"2017-01-17T16:27:34.385Z", + "new_balance":"3678.30", + "value":"-2.11" + } + }, + { + "id":"39ca07dd-4934-4d40-a1c3-2f27dcde6fb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T19:56:09.274Z", + "completed":"2017-01-19T19:56:09.274Z", + "new_balance":"3650.80", + "value":"-27.50" + } + }, + { + "id":"8f975694-9356-4292-b6d9-a26e90769550", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T06:38:43.534Z", + "completed":"2017-01-20T06:38:43.534Z", + "new_balance":"3650.36", + "value":"-0.44" + } + }, + { + "id":"194447fc-0d23-4802-809b-f5c9a2f82b37", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T05:21:44.925Z", + "completed":"2017-01-22T05:21:44.925Z", + "new_balance":"3649.25", + "value":"-1.11" + } + }, + { + "id":"371f7a62-36f2-4955-8735-87a6586752a1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T07:20:01.793Z", + "completed":"2017-01-22T07:20:01.793Z", + "new_balance":"3644.77", + "value":"-4.48" + } + }, + { + "id":"2dedfaf9-af48-4f96-af38-4a6d6c647ed4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T21:41:41.023Z", + "completed":"2017-01-24T21:41:41.023Z", + "new_balance":"3641.96", + "value":"-2.81" + } + }, + { + "id":"dddf86f6-20d5-4765-8a7c-e07bf56034d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T01:06:50.527Z", + "completed":"2017-01-25T01:06:50.527Z", + "new_balance":"3636.56", + "value":"-5.40" + } + }, + { + "id":"b0741667-27f1-4b4b-82d2-8ac2ef3b7c4a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T14:20:19.245Z", + "completed":"2017-01-25T14:20:19.245Z", + "new_balance":"3636.12", + "value":"-0.44" + } + }, + { + "id":"77f17113-7e6a-43a4-9df7-e2b8a61c7524", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T12:05:26.019Z", + "completed":"2017-01-26T12:05:26.019Z", + "new_balance":"3630.30", + "value":"-5.82" + } + }, + { + "id":"d693bda3-4066-4a94-8524-05217d8d2315", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T04:16:16.322Z", + "completed":"2017-02-01T04:16:16.322Z", + "new_balance":"3813.00", + "value":"182.70" + } + }, + { + "id":"fa9a8612-e1d3-4491-9e74-e0dcccca1f92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T11:58:17.245Z", + "completed":"2017-02-01T11:58:17.245Z", + "new_balance":"3754.77", + "value":"-58.23" + } + }, + { + "id":"e67cf76f-6b1f-4349-8ef6-d8c401a973c8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T13:06:54.289Z", + "completed":"2017-02-01T13:06:54.289Z", + "new_balance":"3751.33", + "value":"-3.44" + } + }, + { + "id":"a9913154-ee94-4884-a47c-a6c877537c02", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T15:39:12.475Z", + "completed":"2017-02-01T15:39:12.475Z", + "new_balance":"3746.18", + "value":"-5.15" + } + }, + { + "id":"aa27dbf2-cb99-41e8-86f6-3a36ff61cef8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:41:32.303Z", + "completed":"2017-02-01T15:41:32.303Z", + "new_balance":"3743.86", + "value":"-2.32" + } + }, + { + "id":"f70db5d8-eafc-49c7-ab53-c8ae0630f60d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T18:03:19.090Z", + "completed":"2017-02-01T18:03:19.090Z", + "new_balance":"3728.61", + "value":"-15.25" + } + }, + { + "id":"8b77dd4e-393d-4614-a017-c030b9c5249a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T08:36:07.801Z", + "completed":"2017-02-02T08:36:07.801Z", + "new_balance":"3726.51", + "value":"-2.10" + } + }, + { + "id":"ca9b0d6b-8289-442d-ab42-63677c5f3a88", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T16:07:23.986Z", + "completed":"2017-02-02T16:07:23.986Z", + "new_balance":"3719.41", + "value":"-7.10" + } + }, + { + "id":"f8d0bf73-8ea6-4b9f-977f-7d776302abb7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T17:59:00.212Z", + "completed":"2017-02-02T17:59:00.212Z", + "new_balance":"3718.26", + "value":"-1.15" + } + }, + { + "id":"b4884d73-690f-4f64-9d26-373e010d8726", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T08:26:01.712Z", + "completed":"2017-02-03T08:26:01.712Z", + "new_balance":"3715.76", + "value":"-2.50" + } + }, + { + "id":"d5372879-f16a-4c20-b46b-2380230872ac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T10:11:18.265Z", + "completed":"2017-02-03T10:11:18.265Z", + "new_balance":"3712.43", + "value":"-3.33" + } + }, + { + "id":"47f9cbc1-5511-4700-86d2-6f0140649491", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T11:43:15.947Z", + "completed":"2017-02-03T11:43:15.947Z", + "new_balance":"3710.03", + "value":"-2.40" + } + }, + { + "id":"0019d08b-a95c-4fea-a9f1-f842311a7eb2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T04:03:20.725Z", + "completed":"2017-02-06T04:03:20.725Z", + "new_balance":"3702.84", + "value":"-7.19" + } + }, + { + "id":"5783de2d-88d9-4404-a2ad-684ba5dedbee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T03:27:13.076Z", + "completed":"2017-02-08T03:27:13.076Z", + "new_balance":"3699.81", + "value":"-3.03" + } + }, + { + "id":"95b4b818-3c17-4e1c-ae1e-bdffd342d74a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T04:18:50.318Z", + "completed":"2017-02-08T04:18:50.318Z", + "new_balance":"3699.33", + "value":"-0.48" + } + }, + { + "id":"bb84db15-03a9-40b7-af38-f7bdb290d1d6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T06:03:43.013Z", + "completed":"2017-02-08T06:03:43.013Z", + "new_balance":"3696.88", + "value":"-2.45" + } + }, + { + "id":"b35bec30-c9d8-4e84-9f1b-bab92319c534", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T05:14:12.489Z", + "completed":"2017-02-09T05:14:12.489Z", + "new_balance":"3693.74", + "value":"-3.14" + } + }, + { + "id":"c00faa69-633e-4f1b-a7d7-2e1b890e30ab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T21:55:47.428Z", + "completed":"2017-02-09T21:55:47.428Z", + "new_balance":"3690.26", + "value":"-3.48" + } + }, + { + "id":"a3c840e2-8497-45a0-812c-38c6c39dee03", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T16:22:42.724Z", + "completed":"2017-02-12T16:22:42.724Z", + "new_balance":"3689.79", + "value":"-0.47" + } + }, + { + "id":"62b1d7ab-488e-4ab1-a8dd-dfd0d2d80e90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T06:34:03.951Z", + "completed":"2017-02-13T06:34:03.951Z", + "new_balance":"3683.36", + "value":"-6.43" + } + }, + { + "id":"403b8a21-4edc-438c-a32a-b548877e86ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T09:26:11.373Z", + "completed":"2017-02-13T09:26:11.373Z", + "new_balance":"3682.59", + "value":"-0.77" + } + }, + { + "id":"e2eeed5a-33ba-48d2-ac87-961bc693f24d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T11:25:17.946Z", + "completed":"2017-02-13T11:25:17.946Z", + "new_balance":"3686.67", + "value":"4.08" + } + }, + { + "id":"46a42a29-e1fc-436f-98d1-a8d7cb7ea216", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T08:18:30.730Z", + "completed":"2017-02-14T08:18:30.730Z", + "new_balance":"3682.55", + "value":"-4.12" + } + }, + { + "id":"699bf9a1-3a60-443a-8fd3-8442b83e2c65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T12:03:42.837Z", + "completed":"2017-02-15T12:03:42.837Z", + "new_balance":"3680.00", + "value":"-2.55" + } + }, + { + "id":"764e1baa-8f7f-4313-839b-e8265882cdca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T02:51:50.861Z", + "completed":"2017-02-28T02:51:50.861Z", + "new_balance":"3677.06", + "value":"-2.94" + } + }, + { + "id":"69087ff2-0136-46d9-8d89-8031bca68017", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T02:04:26.871Z", + "completed":"2017-03-01T02:04:26.871Z", + "new_balance":"3859.76", + "value":"182.70" + } + }, + { + "id":"6ca52d64-d132-4ca4-aaaf-d7ada85d44a4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T08:51:10.911Z", + "completed":"2017-03-01T08:51:10.911Z", + "new_balance":"3856.32", + "value":"-3.44" + } + }, + { + "id":"c7dcab89-fbdb-4b0e-b91e-15efeb3ea229", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T09:40:13.983Z", + "completed":"2017-03-01T09:40:13.983Z", + "new_balance":"3851.17", + "value":"-5.15" + } + }, + { + "id":"ca53666f-8b49-40af-8d3e-13ef9eb263fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T11:17:01.465Z", + "completed":"2017-03-01T11:17:01.465Z", + "new_balance":"3835.92", + "value":"-15.25" + } + }, + { + "id":"ba0c96b3-6454-460d-b93b-0de326706742", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T13:12:45.049Z", + "completed":"2017-03-01T13:12:45.049Z", + "new_balance":"3777.69", + "value":"-58.23" + } + }, + { + "id":"71c74e34-9e57-46c3-bc8a-c1b9ffc53acf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T23:37:44.397Z", + "completed":"2017-03-01T23:37:44.397Z", + "new_balance":"3775.37", + "value":"-2.32" + } + }, + { + "id":"9d4441b1-7a38-44d8-b6b7-98a4ff4f8f3c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T21:01:34.406Z", + "completed":"2017-03-02T21:01:34.406Z", + "new_balance":"3768.27", + "value":"-7.10" + } + }, + { + "id":"18b15875-78aa-4a67-8191-7ac355c00d86", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T01:19:44.495Z", + "completed":"2017-03-04T01:19:44.495Z", + "new_balance":"3767.02", + "value":"-1.25" + } + }, + { + "id":"f34fab4e-edc6-4af6-8d90-194f96f9b049", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T07:32:16.992Z", + "completed":"2017-03-04T07:32:16.992Z", + "new_balance":"3763.72", + "value":"-3.30" + } + }, + { + "id":"c1467e18-2fbe-4a9b-ae07-e536d1345bcf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T09:22:10.795Z", + "completed":"2017-03-04T09:22:10.795Z", + "new_balance":"3756.42", + "value":"-7.30" + } + }, + { + "id":"df169e70-6ec6-4833-9c03-142c9794ec7c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T22:38:29.074Z", + "completed":"2017-03-04T22:38:29.074Z", + "new_balance":"3755.66", + "value":"-0.76" + } + }, + { + "id":"3685691a-783e-4e58-92e9-c98cd5d5fdf0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T08:42:22.138Z", + "completed":"2017-03-05T08:42:22.138Z", + "new_balance":"3755.26", + "value":"-0.40" + } + }, + { + "id":"f64f246e-f89c-4823-9220-aff4abc123bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T22:19:40.903Z", + "completed":"2017-03-05T22:19:40.903Z", + "new_balance":"3751.22", + "value":"-4.04" + } + }, + { + "id":"c77dc60a-21f8-4a80-8f74-1338213cb0df", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T01:33:05.720Z", + "completed":"2017-03-06T01:33:05.720Z", + "new_balance":"3743.92", + "value":"-7.30" + } + }, + { + "id":"f638478d-89ae-4e2d-9602-f11d37557ba6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T19:05:02.916Z", + "completed":"2017-03-06T19:05:02.916Z", + "new_balance":"3738.65", + "value":"-5.27" + } + }, + { + "id":"fb9118ad-94dc-48b9-9e31-f27f49c537c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T21:40:03.491Z", + "completed":"2017-03-07T21:40:03.491Z", + "new_balance":"3734.38", + "value":"-4.27" + } + }, + { + "id":"b44b8d72-a302-4b43-abf5-717233fbe062", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T13:05:49.154Z", + "completed":"2017-03-08T13:05:49.154Z", + "new_balance":"3729.11", + "value":"-5.27" + } + }, + { + "id":"568595a7-53cf-4dfa-bb8a-5f8bc4a23ad3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T11:53:48.240Z", + "completed":"2017-03-09T11:53:48.240Z", + "new_balance":"3728.57", + "value":"-0.54" + } + }, + { + "id":"6d306570-68f0-4d06-bc51-8c9ce5f3c2cf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T05:15:43.689Z", + "completed":"2017-03-10T05:15:43.689Z", + "new_balance":"3722.25", + "value":"-6.32" + } + }, + { + "id":"fb6e8bc3-ca88-41ba-aeb6-ebac7c3c7115", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T09:15:03.205Z", + "completed":"2017-03-11T09:15:03.205Z", + "new_balance":"3721.48", + "value":"-0.77" + } + }, + { + "id":"4a89c733-0a03-4ff9-a226-1bc47b491bb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T14:18:53.510Z", + "completed":"2017-03-12T14:18:53.510Z", + "new_balance":"3719.23", + "value":"-2.25" + } + }, + { + "id":"d2bb68c2-34a5-4d7d-b985-badfd6065f03", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T18:03:45.779Z", + "completed":"2017-03-12T18:03:45.779Z", + "new_balance":"3718.18", + "value":"-1.05" + } + }, + { + "id":"abef7be0-dec1-404d-9673-ee800d37eb3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T07:37:32.776Z", + "completed":"2017-03-13T07:37:32.776Z", + "new_balance":"3713.92", + "value":"-4.26" + } + }, + { + "id":"35ad9096-b45c-4e36-9fa9-8add661e6253", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T01:26:21.420Z", + "completed":"2017-03-14T01:26:21.420Z", + "new_balance":"3713.40", + "value":"-0.52" + } + }, + { + "id":"2156055d-401c-42b1-8605-e52a03befebc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T02:56:40.373Z", + "completed":"2017-03-16T02:56:40.373Z", + "new_balance":"3708.58", + "value":"-4.82" + } + }, + { + "id":"65628c71-6e72-4a46-b4ef-2b8760e2ecfb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T11:16:00.665Z", + "completed":"2017-03-16T11:16:00.665Z", + "new_balance":"3698.79", + "value":"-9.79" + } + }, + { + "id":"c24eae5c-3476-4a84-b6d9-d0c3e2004db5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T12:03:08.531Z", + "completed":"2017-03-18T12:03:08.531Z", + "new_balance":"3698.27", + "value":"-0.52" + } + }, + { + "id":"3e328bc3-495e-4c25-ab42-1b026a246b00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:06:16.481Z", + "completed":"2017-03-19T05:06:16.481Z", + "new_balance":"3691.95", + "value":"-6.32" + } + }, + { + "id":"f8e80346-dfb4-4ddf-ad27-59046931cd71", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T06:31:36.593Z", + "completed":"2017-03-19T06:31:36.593Z", + "new_balance":"3687.80", + "value":"-4.15" + } + }, + { + "id":"2f42326f-87f1-40d7-b7c8-28dbcbfc1245", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T09:44:03.811Z", + "completed":"2017-03-19T09:44:03.811Z", + "new_balance":"3683.51", + "value":"-4.29" + } + }, + { + "id":"51569a32-ee49-4f77-a1c0-8f6a0674cb90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T05:52:58.588Z", + "completed":"2017-03-20T05:52:58.588Z", + "new_balance":"3678.35", + "value":"-5.16" + } + }, + { + "id":"56232a51-8f39-482a-b7a9-448d2136aa53", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T11:42:37.809Z", + "completed":"2017-03-20T11:42:37.809Z", + "new_balance":"3671.39", + "value":"-6.96" + } + }, + { + "id":"a92662d1-0f0a-4772-a353-2b236ff372c9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T09:13:54.714Z", + "completed":"2017-03-21T09:13:54.714Z", + "new_balance":"3670.80", + "value":"-0.59" + } + }, + { + "id":"4d999fc8-b151-48b4-801a-5248f16c340a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T12:55:49.749Z", + "completed":"2017-03-21T12:55:49.749Z", + "new_balance":"3670.04", + "value":"-0.76" + } + }, + { + "id":"1cee24a2-f271-49b6-9dfb-97efaf7321ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T04:42:06.796Z", + "completed":"2017-03-23T04:42:06.796Z", + "new_balance":"3669.13", + "value":"-0.91" + } + }, + { + "id":"30813700-b727-4c33-a2c3-41a30f6cf9a6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T08:15:41.410Z", + "completed":"2017-03-23T08:15:41.410Z", + "new_balance":"3664.52", + "value":"-4.61" + } + }, + { + "id":"671e22fa-dfba-456f-a59f-cfbc0da37730", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T01:15:14.916Z", + "completed":"2017-03-24T01:15:14.916Z", + "new_balance":"3660.97", + "value":"-3.55" + } + }, + { + "id":"1d6f9854-f744-420b-8d9c-3ed617533d6e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T11:52:06.562Z", + "completed":"2017-03-25T11:52:06.562Z", + "new_balance":"3657.91", + "value":"-3.06" + } + }, + { + "id":"54be45fe-7efd-4ea6-95b0-9f6d916dd6ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T15:21:52.674Z", + "completed":"2017-03-25T15:21:52.674Z", + "new_balance":"3656.60", + "value":"-1.31" + } + }, + { + "id":"cb738956-b288-416b-88ae-e40f286bc5a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T06:54:09.258Z", + "completed":"2017-03-27T06:54:09.258Z", + "new_balance":"3629.10", + "value":"-27.50" + } + }, + { + "id":"49f86ed7-db43-4d95-8004-41ed87d61f43", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T09:48:12.185Z", + "completed":"2017-03-28T09:48:12.185Z", + "new_balance":"3626.36", + "value":"-2.74" + } + }, + { + "id":"307971df-bb5b-43e2-b04c-6daaa582be31", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:21:40.730Z", + "completed":"2017-04-01T00:21:40.730Z", + "new_balance":"3611.11", + "value":"-15.25" + } + }, + { + "id":"688d401e-a69e-4683-aed7-e32a84092850", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T09:47:45.831Z", + "completed":"2017-04-01T09:47:45.831Z", + "new_balance":"3605.96", + "value":"-5.15" + } + }, + { + "id":"2d9e9a09-25c7-4bb3-aae6-0782fb68222b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:25:44.206Z", + "completed":"2017-04-01T10:25:44.206Z", + "new_balance":"3603.64", + "value":"-2.32" + } + }, + { + "id":"2165c331-4b2d-4e6f-ab39-cdbc54fcf5cd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T19:56:29.494Z", + "completed":"2017-04-01T19:56:29.494Z", + "new_balance":"3545.41", + "value":"-58.23" + } + }, + { + "id":"4ac37b6c-7af9-46cf-b4ac-f5a47ee5a037", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T10:10:43.633Z", + "completed":"2017-04-02T10:10:43.633Z", + "new_balance":"3535.72", + "value":"-9.69" + } + }, + { + "id":"b203f133-f4ef-49a3-9e3c-f6aa8127dd3c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T10:33:24.864Z", + "completed":"2017-04-02T10:33:24.864Z", + "new_balance":"3528.62", + "value":"-7.10" + } + }, + { + "id":"f7589d5e-ccc2-4c64-84bc-fe836d45f81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T06:41:01.152Z", + "completed":"2017-04-03T06:41:01.152Z", + "new_balance":"3525.71", + "value":"-2.91" + } + }, + { + "id":"e3fafc72-57f3-4c18-9dab-891049d89afb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T07:13:30.301Z", + "completed":"2017-04-03T07:13:30.301Z", + "new_balance":"3533.65", + "value":"7.94" + } + }, + { + "id":"d0e8c636-d620-4912-818f-91306278a677", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:21:23.530Z", + "completed":"2017-04-03T20:21:23.530Z", + "new_balance":"3529.87", + "value":"-3.78" + } + }, + { + "id":"164d57f4-f2c4-4852-a1c0-67a92aaf396d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:34:19.626Z", + "completed":"2017-04-03T20:34:19.626Z", + "new_balance":"3526.09", + "value":"-3.78" + } + }, + { + "id":"25d19354-d3bc-45f2-a34e-983f9da6064f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:10:38.556Z", + "completed":"2017-04-03T21:10:38.556Z", + "new_balance":"3538.43", + "value":"12.34" + } + }, + { + "id":"7ac54923-6591-4eed-ad7a-322e1b5183fd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T23:35:48.618Z", + "completed":"2017-04-04T23:35:48.618Z", + "new_balance":"3531.24", + "value":"-7.19" + } + }, + { + "id":"95e0c005-e431-4132-851e-346b0501a711", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T10:07:39.209Z", + "completed":"2017-04-05T10:07:39.209Z", + "new_balance":"3528.56", + "value":"-2.68" + } + }, + { + "id":"5b7902df-04e8-49d4-af2a-a61539b6ea1a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T15:30:56.184Z", + "completed":"2017-04-05T15:30:56.184Z", + "new_balance":"3528.10", + "value":"-0.46" + } + }, + { + "id":"ccaa7d54-251b-4653-a027-3fc9d61ceabd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T14:08:50.022Z", + "completed":"2017-04-07T14:08:50.022Z", + "new_balance":"3524.88", + "value":"-3.22" + } + }, + { + "id":"c2def9e1-5629-45ca-8ca2-c1b7fc5fc011", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T14:53:18.726Z", + "completed":"2017-04-07T14:53:18.726Z", + "new_balance":"3523.35", + "value":"-1.53" + } + }, + { + "id":"41029c39-dc33-4b9c-9a5e-008f8e792ff6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T21:03:27.582Z", + "completed":"2017-04-08T21:03:27.582Z", + "new_balance":"3522.45", + "value":"-0.90" + } + }, + { + "id":"cfab31e2-6d1a-422c-aab1-475844cb1eff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T12:09:00.517Z", + "completed":"2017-04-09T12:09:00.517Z", + "new_balance":"3494.95", + "value":"-27.50" + } + }, + { + "id":"53e29d92-2ee6-4811-aed1-076e8f0f3577", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T17:03:14.053Z", + "completed":"2017-04-09T17:03:14.053Z", + "new_balance":"3492.84", + "value":"-2.11" + } + }, + { + "id":"2ae638a6-ac29-47ed-afba-bf28677abab8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T20:09:06.514Z", + "completed":"2017-04-09T20:09:06.514Z", + "new_balance":"3492.40", + "value":"-0.44" + } + }, + { + "id":"557c20fe-a394-4471-b363-2c5925099b71", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:02:35.753Z", + "completed":"2017-04-10T00:02:35.753Z", + "new_balance":"3487.92", + "value":"-4.48" + } + }, + { + "id":"aa603ac8-e276-4a47-a174-48c7898832cc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T17:09:53.876Z", + "completed":"2017-04-17T17:09:53.876Z", + "new_balance":"3486.81", + "value":"-1.11" + } + }, + { + "id":"0e9a07fe-5a13-4e5b-92cf-30fe2b7c0467", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T19:01:53.612Z", + "completed":"2017-04-18T19:01:53.612Z", + "new_balance":"3484.00", + "value":"-2.81" + } + }, + { + "id":"df1a0cc6-7d6d-4f5d-985c-ba26ea9a38e1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T09:54:58.198Z", + "completed":"2017-04-25T09:54:58.198Z", + "new_balance":"3478.60", + "value":"-5.40" + } + }, + { + "id":"a226c450-82db-4906-9029-1025fe26ffb3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T00:28:49.356Z", + "completed":"2017-04-26T00:28:49.356Z", + "new_balance":"3472.78", + "value":"-5.82" + } + }, + { + "id":"41b7dc14-a662-4f6c-ab6f-8d73fda024c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T12:58:39.570Z", + "completed":"2017-04-26T12:58:39.570Z", + "new_balance":"3472.34", + "value":"-0.44" + } + }, + { + "id":"5ed6f217-b564-4b4f-aa03-3830e494c1c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T02:18:39.972Z", + "completed":"2017-05-02T02:18:39.972Z", + "new_balance":"3465.24", + "value":"-7.10" + } + }, + { + "id":"44e8d235-f14a-47e3-9f8c-8d9327ea61f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T10:13:52.455Z", + "completed":"2017-05-02T10:13:52.455Z", + "new_balance":"3460.09", + "value":"-5.15" + } + }, + { + "id":"839f5470-c2a6-41de-abe6-5d8c66328d70", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T13:20:57.075Z", + "completed":"2017-05-02T13:20:57.075Z", + "new_balance":"3456.65", + "value":"-3.44" + } + }, + { + "id":"7fb0e94a-5cd3-4a54-9b5d-c77d06bfa50c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T15:46:50.634Z", + "completed":"2017-05-02T15:46:50.634Z", + "new_balance":"3441.40", + "value":"-15.25" + } + }, + { + "id":"3d02474a-c6c6-4fef-932e-8e14adcc18f8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T16:07:57.198Z", + "completed":"2017-05-02T16:07:57.198Z", + "new_balance":"3440.25", + "value":"-1.15" + } + }, + { + "id":"0e846165-d0d5-4842-a39e-7193ef399704", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T16:14:58.136Z", + "completed":"2017-05-02T16:14:58.136Z", + "new_balance":"3622.95", + "value":"182.70" + } + }, + { + "id":"62ed4c04-29a9-41c4-ac36-96514cee1c2b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T18:34:34.705Z", + "completed":"2017-05-02T18:34:34.705Z", + "new_balance":"3620.63", + "value":"-2.32" + } + }, + { + "id":"ea732fa6-fee4-41ae-9e18-d9213b80d6e2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T18:44:41.954Z", + "completed":"2017-05-02T18:44:41.954Z", + "new_balance":"3562.40", + "value":"-58.23" + } + }, + { + "id":"3f58338d-b9aa-4543-b1db-be32393448c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T00:42:15.615Z", + "completed":"2017-05-03T00:42:15.615Z", + "new_balance":"3559.90", + "value":"-2.50" + } + }, + { + "id":"8f5e8df9-d5a0-49e3-88a8-4b16ff94e664", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T14:53:38.134Z", + "completed":"2017-05-03T14:53:38.134Z", + "new_balance":"3557.80", + "value":"-2.10" + } + }, + { + "id":"01f09ec6-8317-42f4-9266-0275f7ab7218", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T11:05:13.520Z", + "completed":"2017-05-04T11:05:13.520Z", + "new_balance":"3554.47", + "value":"-3.33" + } + }, + { + "id":"4c5eb99d-f74c-456e-beba-4dbb4adb599c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T12:37:41.446Z", + "completed":"2017-05-04T12:37:41.446Z", + "new_balance":"3552.07", + "value":"-2.40" + } + }, + { + "id":"cb5b8025-370d-4179-b3e6-0ef81c339e32", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T16:03:31.991Z", + "completed":"2017-05-05T16:03:31.991Z", + "new_balance":"3544.88", + "value":"-7.19" + } + }, + { + "id":"9196e546-9f4b-4387-be3f-43c4932ea9f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T03:14:58.606Z", + "completed":"2017-05-07T03:14:58.606Z", + "new_balance":"3544.40", + "value":"-0.48" + } + }, + { + "id":"9303a8bf-4af8-4263-b244-e3b513eceb9f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T05:38:27.791Z", + "completed":"2017-05-07T05:38:27.791Z", + "new_balance":"3541.37", + "value":"-3.03" + } + }, + { + "id":"51a025db-38b5-4292-a49c-8f82528ca14b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T03:29:55.650Z", + "completed":"2017-05-12T03:29:55.650Z", + "new_balance":"3538.23", + "value":"-3.14" + } + }, + { + "id":"2c9246e2-510d-4ffd-92a4-1aaf0d5d0ee9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T16:19:25.660Z", + "completed":"2017-05-12T16:19:25.660Z", + "new_balance":"3535.78", + "value":"-2.45" + } + }, + { + "id":"5b7a2c71-b9dc-4743-aac7-e5f827dfe427", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T16:35:30.536Z", + "completed":"2017-05-14T16:35:30.536Z", + "new_balance":"3532.30", + "value":"-3.48" + } + }, + { + "id":"bae03b73-ea0c-4055-99bb-c276aba09b20", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T08:56:15.087Z", + "completed":"2017-05-16T08:56:15.087Z", + "new_balance":"3531.83", + "value":"-0.47" + } + }, + { + "id":"14e9f112-3965-4b8c-8477-949c159767ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T06:55:02.346Z", + "completed":"2017-05-18T06:55:02.346Z", + "new_balance":"3531.06", + "value":"-0.77" + } + }, + { + "id":"8d01f049-a666-4ae3-a411-cc34a4056cc1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T12:39:08.562Z", + "completed":"2017-05-20T12:39:08.562Z", + "new_balance":"3535.14", + "value":"4.08" + } + }, + { + "id":"d78f3c6f-b004-4fa8-8476-4366402c4365", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T10:36:17.156Z", + "completed":"2017-05-21T10:36:17.156Z", + "new_balance":"3531.02", + "value":"-4.12" + } + }, + { + "id":"ea64e1d6-3635-4bda-a018-012473c74100", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T12:04:58.037Z", + "completed":"2017-05-21T12:04:58.037Z", + "new_balance":"3524.59", + "value":"-6.43" + } + }, + { + "id":"2398775e-28ca-4dd1-b325-70ce283aa4d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T01:15:23.957Z", + "completed":"2017-05-27T01:15:23.957Z", + "new_balance":"3521.65", + "value":"-2.94" + } + }, + { + "id":"58bb8e8b-3c6c-4df8-a9c4-d0e9df86caf2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T11:10:05.858Z", + "completed":"2017-05-27T11:10:05.858Z", + "new_balance":"3519.10", + "value":"-2.55" + } + }, + { + "id":"e145ec8f-2882-4623-a3b3-d2e66f5bdfde", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:32:38.603Z", + "completed":"2017-06-01T02:32:38.603Z", + "new_balance":"3503.85", + "value":"-15.25" + } + }, + { + "id":"f4a6ded7-3573-41dd-87c5-0eb8f4d826f5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T02:40:50.794Z", + "completed":"2017-06-01T02:40:50.794Z", + "new_balance":"3501.53", + "value":"-2.32" + } + }, + { + "id":"6bbcd9bb-c278-4976-ae5b-5614b20198f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T13:23:52.085Z", + "completed":"2017-06-01T13:23:52.085Z", + "new_balance":"3684.23", + "value":"182.70" + } + }, + { + "id":"fdd4362c-ff51-4e6c-9635-c4601cbd2c59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T13:24:47.049Z", + "completed":"2017-06-01T13:24:47.049Z", + "new_balance":"3626.00", + "value":"-58.23" + } + }, + { + "id":"d268ba39-6207-4d25-a096-2cb486a4d7e2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T14:35:17.750Z", + "completed":"2017-06-01T14:35:17.750Z", + "new_balance":"3620.85", + "value":"-5.15" + } + }, + { + "id":"d5f7195c-bec1-4eb9-b756-ec0e11a60f92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T19:44:07.277Z", + "completed":"2017-06-01T19:44:07.277Z", + "new_balance":"3617.41", + "value":"-3.44" + } + }, + { + "id":"a1786040-5ab3-4b19-bee2-7e588515e844", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T15:10:51.846Z", + "completed":"2017-06-04T15:10:51.846Z", + "new_balance":"3610.31", + "value":"-7.10" + } + }, + { + "id":"f715dcaf-4e9e-4b54-8ef1-7dde7ed83360", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T16:33:12.962Z", + "completed":"2017-06-04T16:33:12.962Z", + "new_balance":"3598.35", + "value":"-11.96" + } + }, + { + "id":"e2491e8c-23f7-44e7-a08a-d1ffc1680043", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T10:29:46.718Z", + "completed":"2017-06-11T10:29:46.718Z", + "new_balance":"3595.05", + "value":"-3.30" + } + }, + { + "id":"832ce387-7b2a-4660-b332-7c6007f6438f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T07:57:13.064Z", + "completed":"2017-06-12T07:57:13.064Z", + "new_balance":"3593.80", + "value":"-1.25" + } + }, + { + "id":"83dfaed8-c30c-4929-b836-6ce5f3f83a15", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T01:42:29.079Z", + "completed":"2017-06-13T01:42:29.079Z", + "new_balance":"3593.04", + "value":"-0.76" + } + }, + { + "id":"a63ef5c8-e5a4-491a-959a-8f0c66f8c01f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T09:12:50.136Z", + "completed":"2017-06-13T09:12:50.136Z", + "new_balance":"3585.74", + "value":"-7.30" + } + }, + { + "id":"16f2b31a-3cdf-4658-82e0-d0a4a1fad785", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T06:25:22.363Z", + "completed":"2017-06-16T06:25:22.363Z", + "new_balance":"3581.70", + "value":"-4.04" + } + }, + { + "id":"673196d9-0621-4229-aea3-6b87ecde7ff2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T12:09:02.570Z", + "completed":"2017-06-17T12:09:02.570Z", + "new_balance":"3581.30", + "value":"-0.40" + } + }, + { + "id":"a4b42250-c6d9-4a2c-91e8-7dfb7449ee1c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T21:57:32.661Z", + "completed":"2017-06-17T21:57:32.661Z", + "new_balance":"3574.00", + "value":"-7.30" + } + }, + { + "id":"6fe28bf7-7752-4fcf-ba14-98dab5b5cb2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:08:47.045Z", + "completed":"2017-06-18T05:08:47.045Z", + "new_balance":"3568.73", + "value":"-5.27" + } + }, + { + "id":"29e844a9-7f04-4a0b-a246-8dac386da014", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T17:19:12.104Z", + "completed":"2017-06-19T17:19:12.104Z", + "new_balance":"3563.46", + "value":"-5.27" + } + }, + { + "id":"87a9afd7-c3e8-4339-9f76-7b537f8ab09e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:25:49.868Z", + "completed":"2017-06-19T21:25:49.868Z", + "new_balance":"3559.19", + "value":"-4.27" + } + }, + { + "id":"a2b18238-b639-478d-9839-4044fd8babfc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T12:44:07.427Z", + "completed":"2017-06-21T12:44:07.427Z", + "new_balance":"3552.87", + "value":"-6.32" + } + }, + { + "id":"a0926dd2-d27a-4e95-a219-a7c5cad3c986", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T21:13:49.023Z", + "completed":"2017-06-21T21:13:49.023Z", + "new_balance":"3552.33", + "value":"-0.54" + } + }, + { + "id":"17e79b83-6536-4c60-9f68-dcb49c02767f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T03:32:18.505Z", + "completed":"2017-06-23T03:32:18.505Z", + "new_balance":"3551.56", + "value":"-0.77" + } + }, + { + "id":"8202ed91-2315-4871-bc37-199363bef0db", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T23:29:59.443Z", + "completed":"2017-06-23T23:29:59.443Z", + "new_balance":"3549.31", + "value":"-2.25" + } + }, + { + "id":"2762e3cf-3469-43f0-ae36-49dcddf0dcb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T03:56:13.207Z", + "completed":"2017-06-24T03:56:13.207Z", + "new_balance":"3545.05", + "value":"-4.26" + } + }, + { + "id":"541eefb9-3ea1-4828-923a-f2f55b2c61da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T07:51:49.115Z", + "completed":"2017-06-24T07:51:49.115Z", + "new_balance":"3544.00", + "value":"-1.05" + } + }, + { + "id":"dc50b8c5-aeb6-4515-bfc8-383211887756", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T00:07:15.665Z", + "completed":"2017-06-28T00:07:15.665Z", + "new_balance":"3543.48", + "value":"-0.52" + } + }, + { + "id":"16e3b0a7-871d-4d0f-aea4-c9c7396716e1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T10:55:25.123Z", + "completed":"2017-06-28T10:55:25.123Z", + "new_balance":"3538.66", + "value":"-4.82" + } + }, + { + "id":"ff9dbf00-6805-49f1-9449-0960a77cc7a8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T12:24:25.761Z", + "completed":"2017-06-28T12:24:25.761Z", + "new_balance":"3538.14", + "value":"-0.52" + } + }, + { + "id":"016a4019-a663-4a39-af15-658baaee2be9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T15:14:14.888Z", + "completed":"2017-06-28T15:14:14.888Z", + "new_balance":"3528.35", + "value":"-9.79" + } + }, + { + "id":"6611b404-85c0-4bd1-a87e-cb56d5327ba2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T02:56:20.947Z", + "completed":"2017-06-29T02:56:20.947Z", + "new_balance":"3523.19", + "value":"-5.16" + } + }, + { + "id":"e62adb7d-dc1e-45a2-87df-10afebeddabc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T10:54:22.683Z", + "completed":"2017-06-29T10:54:22.683Z", + "new_balance":"3516.23", + "value":"-6.96" + } + }, + { + "id":"0d1f8a0f-712f-457d-a9fd-cfc95c2f4c49", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T13:30:02.851Z", + "completed":"2017-06-29T13:30:02.851Z", + "new_balance":"3509.91", + "value":"-6.32" + } + }, + { + "id":"37b97557-19ef-4972-9167-b13a2a1d5040", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T13:30:29.791Z", + "completed":"2017-06-29T13:30:29.791Z", + "new_balance":"3509.15", + "value":"-0.76" + } + }, + { + "id":"dd92c816-853e-41a9-bf38-fc39e9765a6f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T15:28:29.466Z", + "completed":"2017-06-29T15:28:29.466Z", + "new_balance":"3504.86", + "value":"-4.29" + } + }, + { + "id":"2815f163-b589-4b36-92d5-01911eb32ca2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T18:11:20.028Z", + "completed":"2017-06-29T18:11:20.028Z", + "new_balance":"3500.71", + "value":"-4.15" + } + }, + { + "id":"d3483fc8-2e19-41d7-b059-3331c17cefb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T06:45:16.274Z", + "completed":"2017-06-30T06:45:16.274Z", + "new_balance":"3499.80", + "value":"-0.91" + } + }, + { + "id":"1534dc12-a166-4210-887c-67c077c36cf9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T10:49:21.075Z", + "completed":"2017-06-30T10:49:21.075Z", + "new_balance":"3499.21", + "value":"-0.59" + } + }, + { + "id":"99e0c39f-5150-4dc8-a40a-aa10f40ded13", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T15:25:21.037Z", + "completed":"2017-06-30T15:25:21.037Z", + "new_balance":"3494.60", + "value":"-4.61" + } + }, + { + "id":"dd5d6e4c-ef83-405c-96bb-017dbe5ff2a6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T19:19:44.596Z", + "completed":"2017-06-30T19:19:44.596Z", + "new_balance":"3491.05", + "value":"-3.55" + } + }, + { + "id":"baf16daf-a189-40c5-ba87-17af0f8703fe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T04:01:34.551Z", + "completed":"2017-07-01T04:01:34.551Z", + "new_balance":"3432.82", + "value":"-58.23" + } + }, + { + "id":"251122c9-472d-47ce-8424-b67cb1cae2d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T07:00:18.672Z", + "completed":"2017-07-01T07:00:18.672Z", + "new_balance":"3405.32", + "value":"-27.50" + } + }, + { + "id":"f43443e8-724c-45e5-84c6-ed98f781145e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T10:14:22.096Z", + "completed":"2017-07-01T10:14:22.096Z", + "new_balance":"3402.26", + "value":"-3.06" + } + }, + { + "id":"a7e961b7-1d7a-44a6-a13a-a1a4b77b4b41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:40:33.745Z", + "completed":"2017-07-01T15:40:33.745Z", + "new_balance":"3398.82", + "value":"-3.44" + } + }, + { + "id":"4e692440-fbb9-4ad5-87bb-2ed900af3a65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T16:33:21.171Z", + "completed":"2017-07-01T16:33:21.171Z", + "new_balance":"3393.67", + "value":"-5.15" + } + }, + { + "id":"3cebf3b8-22aa-4e31-9a49-52ddcbc35d77", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T19:17:06.007Z", + "completed":"2017-07-01T19:17:06.007Z", + "new_balance":"3390.23", + "value":"-3.44" + } + }, + { + "id":"4e91df4d-2ab5-4539-a1d0-2932ea5137d9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T19:19:53.019Z", + "completed":"2017-07-01T19:19:53.019Z", + "new_balance":"3374.98", + "value":"-15.25" + } + }, + { + "id":"6d9f54c1-94b8-4e98-8179-1ba30ca02e3a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T19:32:48.903Z", + "completed":"2017-07-01T19:32:48.903Z", + "new_balance":"3372.24", + "value":"-2.74" + } + }, + { + "id":"e46ee306-70dd-46a4-a071-13a4b14c431c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T19:46:36.013Z", + "completed":"2017-07-01T19:46:36.013Z", + "new_balance":"3369.92", + "value":"-2.32" + } + }, + { + "id":"abc26bbb-c556-48b9-b067-0abb82773e19", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T20:53:11.381Z", + "completed":"2017-07-01T20:53:11.381Z", + "new_balance":"3368.61", + "value":"-1.31" + } + }, + { + "id":"50e009ac-a66d-47a8-9b94-45feaeae450e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T19:50:43.218Z", + "completed":"2017-07-02T19:50:43.218Z", + "new_balance":"3361.51", + "value":"-7.10" + } + }, + { + "id":"86b6944a-0c49-4464-b0f9-fbec0a0d1091", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T12:13:57.280Z", + "completed":"2017-07-03T12:13:57.280Z", + "new_balance":"3351.04", + "value":"-10.47" + } + }, + { + "id":"d77a1c88-e4c3-42f7-9141-4ebf76e6261e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:30:44.997Z", + "completed":"2017-07-04T08:30:44.997Z", + "new_balance":"3349.26", + "value":"-1.78" + } + }, + { + "id":"c7b6be66-cd29-4ab8-be0e-e3fe70e71caa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T21:05:05.171Z", + "completed":"2017-07-05T21:05:05.171Z", + "new_balance":"3339.62", + "value":"-9.64" + } + }, + { + "id":"971159f7-692c-4b75-b7eb-c0c2718e1743", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T23:46:19.981Z", + "completed":"2017-07-05T23:46:19.981Z", + "new_balance":"3332.43", + "value":"-7.19" + } + }, + { + "id":"4e1e312c-48b0-450c-8d33-d889a3b28bce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T18:12:32.373Z", + "completed":"2017-07-06T18:12:32.373Z", + "new_balance":"3331.97", + "value":"-0.46" + } + }, + { + "id":"3475b34f-51a1-43bc-aea0-c6236a69d3b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T06:11:20.836Z", + "completed":"2017-07-11T06:11:20.836Z", + "new_balance":"3329.29", + "value":"-2.68" + } + }, + { + "id":"8278a87a-fdc2-4f8e-9933-f13f9ed5e36d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T12:48:24.023Z", + "completed":"2017-07-12T12:48:24.023Z", + "new_balance":"3326.07", + "value":"-3.22" + } + }, + { + "id":"e88688b4-e563-4813-b11a-d81cbe02b170", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T05:39:35.644Z", + "completed":"2017-07-14T05:39:35.644Z", + "new_balance":"3324.54", + "value":"-1.53" + } + }, + { + "id":"e2a2b76b-e4ab-4311-9cb6-bf9e12fbc983", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T20:38:09.178Z", + "completed":"2017-07-16T20:38:09.178Z", + "new_balance":"3323.64", + "value":"-0.90" + } + }, + { + "id":"f48bb4e4-e74f-4c85-ac16-e3ba87bef5c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T13:28:37.947Z", + "completed":"2017-07-18T13:28:37.947Z", + "new_balance":"3321.53", + "value":"-2.11" + } + }, + { + "id":"c7e2f959-3970-4602-953f-1de2cc35263e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T00:42:08.054Z", + "completed":"2017-07-20T00:42:08.054Z", + "new_balance":"3294.03", + "value":"-27.50" + } + }, + { + "id":"091e7873-c872-4db7-94ec-d40dde05386e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T04:05:42.729Z", + "completed":"2017-07-20T04:05:42.729Z", + "new_balance":"3293.59", + "value":"-0.44" + } + }, + { + "id":"26aa02d6-7364-447e-8b80-28ecf6bdca1e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T10:20:59.642Z", + "completed":"2017-07-24T10:20:59.642Z", + "new_balance":"3289.11", + "value":"-4.48" + } + }, + { + "id":"674b179f-3129-4003-9b1d-aece1a35cfe6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T18:56:14.183Z", + "completed":"2017-07-24T18:56:14.183Z", + "new_balance":"3288.00", + "value":"-1.11" + } + }, + { + "id":"6d4d80c2-224a-4704-9461-d2e6a1dfc242", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T09:49:44.999Z", + "completed":"2017-07-25T09:49:44.999Z", + "new_balance":"3285.19", + "value":"-2.81" + } + }, + { + "id":"1e8cf555-c6b9-45e5-b21a-2d4b8101664a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T19:31:10.690Z", + "completed":"2017-07-25T19:31:10.690Z", + "new_balance":"3279.79", + "value":"-5.40" + } + }, + { + "id":"f8284f7c-1257-4f50-853e-321b3d0e1fb6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T23:58:53.893Z", + "completed":"2017-07-26T23:58:53.893Z", + "new_balance":"3273.97", + "value":"-5.82" + } + }, + { + "id":"43838b61-bee0-44e5-8987-0ba998440493", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T01:50:45.689Z", + "completed":"2017-07-27T01:50:45.689Z", + "new_balance":"3273.53", + "value":"-0.44" + } + }, + { + "id":"776a588a-ca2b-425c-94d2-db2eda3b8bfe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T01:23:49.610Z", + "completed":"2017-08-01T01:23:49.610Z", + "new_balance":"3270.09", + "value":"-3.44" + } + }, + { + "id":"0e7b3491-619d-4f84-8695-477af1b5f02f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T13:52:55.729Z", + "completed":"2017-08-01T13:52:55.729Z", + "new_balance":"3267.77", + "value":"-2.32" + } + }, + { + "id":"58e1aca6-6bf2-4126-be31-3e02b4fa6de9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T14:02:28.502Z", + "completed":"2017-08-01T14:02:28.502Z", + "new_balance":"3262.62", + "value":"-5.15" + } + }, + { + "id":"11873886-936d-4a03-922e-1a5595590ded", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T14:19:41.669Z", + "completed":"2017-08-01T14:19:41.669Z", + "new_balance":"3247.37", + "value":"-15.25" + } + }, + { + "id":"be0be728-2fb7-4995-ba16-de30575ab4c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T15:44:23.692Z", + "completed":"2017-08-01T15:44:23.692Z", + "new_balance":"3189.14", + "value":"-58.23" + } + }, + { + "id":"60bda243-d205-4f6a-add6-619854ed0cf7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T17:47:04.833Z", + "completed":"2017-08-01T17:47:04.833Z", + "new_balance":"3371.84", + "value":"182.70" + } + }, + { + "id":"70efc8c0-fbeb-4d2e-80e9-0d1feedab6f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T18:33:17.514Z", + "completed":"2017-08-02T18:33:17.514Z", + "new_balance":"3364.74", + "value":"-7.10" + } + }, + { + "id":"313060ae-7027-491e-8542-0225e528e724", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T17:30:46.577Z", + "completed":"2017-08-03T17:30:46.577Z", + "new_balance":"3364.28", + "value":"-0.46" + } + }, + { + "id":"6251d01c-4d43-42c1-b5c4-2eff4081d1dd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T14:50:38.966Z", + "completed":"2017-08-04T14:50:38.966Z", + "new_balance":"3361.36", + "value":"-2.92" + } + }, + { + "id":"bf703940-dd45-4ed2-9458-b9ec133c4a0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T17:47:36.666Z", + "completed":"2017-08-07T17:47:36.666Z", + "new_balance":"3358.86", + "value":"-2.50" + } + }, + { + "id":"6f279699-0863-4b05-b86c-ba87c71bd29f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T05:18:14.881Z", + "completed":"2017-08-09T05:18:14.881Z", + "new_balance":"3356.46", + "value":"-2.40" + } + }, + { + "id":"2d635288-860f-4bdd-b385-659297ed57b3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T18:26:43.784Z", + "completed":"2017-08-09T18:26:43.784Z", + "new_balance":"3353.13", + "value":"-3.33" + } + }, + { + "id":"1099849e-0349-440e-b2d0-7bb80b11bfe5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T06:17:43.560Z", + "completed":"2017-08-10T06:17:43.560Z", + "new_balance":"3345.94", + "value":"-7.19" + } + }, + { + "id":"1bbd7c62-5c7c-4d04-b6e5-5f738e623cf0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T21:10:53.271Z", + "completed":"2017-08-14T21:10:53.271Z", + "new_balance":"3345.46", + "value":"-0.48" + } + }, + { + "id":"ea6d36cb-3e02-438b-b4a9-eb962eb6c3b1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T09:22:06.120Z", + "completed":"2017-08-15T09:22:06.120Z", + "new_balance":"3342.43", + "value":"-3.03" + } + }, + { + "id":"0b3c114f-6d8e-4628-b760-9b4d70085443", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T22:55:25.522Z", + "completed":"2017-08-15T22:55:25.522Z", + "new_balance":"3339.21", + "value":"-3.22" + } + }, + { + "id":"1ec6c94c-bdd2-41cc-9114-38cfff302486", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T06:34:01.007Z", + "completed":"2017-08-16T06:34:01.007Z", + "new_balance":"3336.07", + "value":"-3.14" + } + }, + { + "id":"baec0703-4a37-4761-8c65-7347b3c9323b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:23:09.960Z", + "completed":"2017-08-17T15:23:09.960Z", + "new_balance":"3332.59", + "value":"-3.48" + } + }, + { + "id":"167fa9af-e05f-4049-854f-76cafbea7396", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T18:32:38.564Z", + "completed":"2017-08-20T18:32:38.564Z", + "new_balance":"3331.82", + "value":"-0.77" + } + }, + { + "id":"c3683296-d1ab-4265-b9f4-7ab349d9691c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T19:22:38.074Z", + "completed":"2017-08-20T19:22:38.074Z", + "new_balance":"3331.35", + "value":"-0.47" + } + }, + { + "id":"cb5d9929-0f20-4467-82fc-cb5e657f165c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T07:50:18.344Z", + "completed":"2017-08-22T07:50:18.344Z", + "new_balance":"3335.43", + "value":"4.08" + } + }, + { + "id":"6b23d7d1-024b-4d8b-abc1-a5c31f413c0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T17:01:39.692Z", + "completed":"2017-08-23T17:01:39.692Z", + "new_balance":"3329.00", + "value":"-6.43" + } + }, + { + "id":"da7fb102-37db-403a-9220-b331a2642054", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T22:15:47.972Z", + "completed":"2017-08-23T22:15:47.972Z", + "new_balance":"3324.88", + "value":"-4.12" + } + }, + { + "id":"740ab50a-e618-4ad6-943a-ce39d9d13b87", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T12:50:52.103Z", + "completed":"2017-08-28T12:50:52.103Z", + "new_balance":"3322.33", + "value":"-2.55" + } + }, + { + "id":"bf16c908-9a20-4647-8d42-8fafa2357461", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T19:16:16.496Z", + "completed":"2017-08-28T19:16:16.496Z", + "new_balance":"3319.39", + "value":"-2.94" + } + }, + { + "id":"488b19f2-0bea-4669-9dae-9ca537630ca4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T09:33:55.636Z", + "completed":"2017-09-01T09:33:55.636Z", + "new_balance":"3315.95", + "value":"-3.44" + } + }, + { + "id":"d7b3ddc2-fda6-4579-8f81-4cfe203f87d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T14:19:18.510Z", + "completed":"2017-09-01T14:19:18.510Z", + "new_balance":"3310.80", + "value":"-5.15" + } + }, + { + "id":"944e25b1-4644-4cf2-9818-a94e4ef37f74", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:51:50.064Z", + "completed":"2017-09-01T14:51:50.064Z", + "new_balance":"3252.57", + "value":"-58.23" + } + }, + { + "id":"eb3f11aa-af49-4016-b1d4-8da1b10c4c8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T15:18:22.372Z", + "completed":"2017-09-01T15:18:22.372Z", + "new_balance":"3250.25", + "value":"-2.32" + } + }, + { + "id":"9dca89e2-c6cb-4bc3-96e4-4b6bef095283", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:30:24.628Z", + "completed":"2017-09-01T17:30:24.628Z", + "new_balance":"3432.95", + "value":"182.70" + } + }, + { + "id":"e28bc9b4-c392-434e-be0b-e0d269c0af63", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T20:57:56.905Z", + "completed":"2017-09-01T20:57:56.905Z", + "new_balance":"3417.70", + "value":"-15.25" + } + }, + { + "id":"e218e1fb-6c35-4920-8d32-f95d04f6b54b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T17:41:01.414Z", + "completed":"2017-09-02T17:41:01.414Z", + "new_balance":"3410.60", + "value":"-7.10" + } + }, + { + "id":"c6167c9e-aaf0-4da1-a19b-cf993cebb9e9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T03:22:46.538Z", + "completed":"2017-09-04T03:22:46.538Z", + "new_balance":"3409.35", + "value":"-1.25" + } + }, + { + "id":"8fc3f345-d4b0-47a6-9294-7feeb9624002", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T09:01:47.613Z", + "completed":"2017-09-04T09:01:47.613Z", + "new_balance":"3408.59", + "value":"-0.76" + } + }, + { + "id":"1ec2e946-177f-4abe-a6a2-36a6c4e1c9b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T17:41:40.083Z", + "completed":"2017-09-04T17:41:40.083Z", + "new_balance":"3405.29", + "value":"-3.30" + } + }, + { + "id":"a1f5ee80-c241-4e9b-a84a-59f3677337fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T20:32:30.231Z", + "completed":"2017-09-04T20:32:30.231Z", + "new_balance":"3397.99", + "value":"-7.30" + } + }, + { + "id":"ae39960e-ab5d-4b5a-bab7-ed1bc17845ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T02:43:15.588Z", + "completed":"2017-09-05T02:43:15.588Z", + "new_balance":"3393.95", + "value":"-4.04" + } + }, + { + "id":"9058547a-5dc6-49b4-813e-5ca762e5eec9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T23:35:47.596Z", + "completed":"2017-09-05T23:35:47.596Z", + "new_balance":"3393.55", + "value":"-0.40" + } + }, + { + "id":"6924a1c2-d4c1-4dc7-85af-190e86afebd3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T05:41:14.390Z", + "completed":"2017-09-06T05:41:14.390Z", + "new_balance":"3386.25", + "value":"-7.30" + } + }, + { + "id":"c9f4ceea-3df1-4ea9-ba3d-0605de17799c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T20:43:52.060Z", + "completed":"2017-09-06T20:43:52.060Z", + "new_balance":"3380.98", + "value":"-5.27" + } + }, + { + "id":"4edfebdd-00e8-482a-b244-adf744c7eee3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T05:46:46.412Z", + "completed":"2017-09-08T05:46:46.412Z", + "new_balance":"3375.71", + "value":"-5.27" + } + }, + { + "id":"d3e3e2f8-c164-440d-8dbb-46f6b5fc7fd6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T13:10:02.392Z", + "completed":"2017-09-08T13:10:02.392Z", + "new_balance":"3371.44", + "value":"-4.27" + } + }, + { + "id":"9e592068-327a-4d36-9123-648c6d5221d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T10:04:48.965Z", + "completed":"2017-09-10T10:04:48.965Z", + "new_balance":"3365.12", + "value":"-6.32" + } + }, + { + "id":"d3925db7-a9e1-4659-bf6e-9a10644321a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T16:55:51.643Z", + "completed":"2017-09-10T16:55:51.643Z", + "new_balance":"3364.58", + "value":"-0.54" + } + }, + { + "id":"1a52f76d-1866-4ef4-9259-9c520ca6861d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T18:46:17.004Z", + "completed":"2017-09-11T18:46:17.004Z", + "new_balance":"3363.81", + "value":"-0.77" + } + }, + { + "id":"3e799817-a665-4517-9032-0a3cbe2f48ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T19:19:23.409Z", + "completed":"2017-09-12T19:19:23.409Z", + "new_balance":"3362.76", + "value":"-1.05" + } + }, + { + "id":"93d57cca-d741-4c4f-93bf-120661beeed1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T20:23:35.939Z", + "completed":"2017-09-12T20:23:35.939Z", + "new_balance":"3360.51", + "value":"-2.25" + } + }, + { + "id":"a2c9e655-cb6d-4247-b63c-577b0492c09c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T16:06:42.160Z", + "completed":"2017-09-13T16:06:42.160Z", + "new_balance":"3356.25", + "value":"-4.26" + } + }, + { + "id":"e4861850-3dcf-4022-9862-7354af9eadb8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T11:33:50.372Z", + "completed":"2017-09-16T11:33:50.372Z", + "new_balance":"3355.73", + "value":"-0.52" + } + }, + { + "id":"ad7ef2e3-fd05-4c44-9af4-d163ece093c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T07:27:01.613Z", + "completed":"2017-09-17T07:27:01.613Z", + "new_balance":"3350.91", + "value":"-4.82" + } + }, + { + "id":"a3881701-3498-4672-a26f-409539ec7a72", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T14:40:47.979Z", + "completed":"2017-09-17T14:40:47.979Z", + "new_balance":"3341.12", + "value":"-9.79" + } + }, + { + "id":"95c1c3f2-39e2-4989-bd4b-56224e549117", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T23:45:31.167Z", + "completed":"2017-09-18T23:45:31.167Z", + "new_balance":"3340.60", + "value":"-0.52" + } + }, + { + "id":"b9edf9b4-4fc7-45b0-bff6-cfaa834003ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T06:09:57.959Z", + "completed":"2017-09-19T06:09:57.959Z", + "new_balance":"3336.31", + "value":"-4.29" + } + }, + { + "id":"e53b5242-38d4-455d-909a-41f9de0cd1ea", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T09:08:07.844Z", + "completed":"2017-09-19T09:08:07.844Z", + "new_balance":"3329.99", + "value":"-6.32" + } + }, + { + "id":"de3a5034-7118-4c93-8616-fb00cbb85fcc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T14:34:58.347Z", + "completed":"2017-09-19T14:34:58.347Z", + "new_balance":"3325.84", + "value":"-4.15" + } + }, + { + "id":"f4e7aaa4-da9f-4030-82ca-bfbc5a537a41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T13:33:38.456Z", + "completed":"2017-09-20T13:33:38.456Z", + "new_balance":"3318.88", + "value":"-6.96" + } + }, + { + "id":"c54719c4-c7d2-4c03-8cf2-d2b45f2aa795", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T20:47:25.228Z", + "completed":"2017-09-20T20:47:25.228Z", + "new_balance":"3313.72", + "value":"-5.16" + } + }, + { + "id":"2d832d95-ec54-4f73-bfc3-4d5b05831483", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T09:54:24.838Z", + "completed":"2017-09-21T09:54:24.838Z", + "new_balance":"3313.13", + "value":"-0.59" + } + }, + { + "id":"83df9e79-b37f-4546-9ac3-1b0a6b7d014e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T13:05:34.507Z", + "completed":"2017-09-21T13:05:34.507Z", + "new_balance":"3312.37", + "value":"-0.76" + } + }, + { + "id":"daa565a1-de53-49bc-9170-aa15538d761e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T02:57:21.197Z", + "completed":"2017-09-23T02:57:21.197Z", + "new_balance":"3307.76", + "value":"-4.61" + } + }, + { + "id":"868d528c-537a-4b9d-8b66-0c5673063453", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T07:06:11.294Z", + "completed":"2017-09-23T07:06:11.294Z", + "new_balance":"3306.85", + "value":"-0.91" + } + }, + { + "id":"8021c7a2-6ad4-4139-a746-daa7210dd893", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T04:19:36.955Z", + "completed":"2017-09-24T04:19:36.955Z", + "new_balance":"3303.30", + "value":"-3.55" + } + }, + { + "id":"fa0fcd64-d467-4e04-be32-0eba40b0a336", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T01:45:50.690Z", + "completed":"2017-09-25T01:45:50.690Z", + "new_balance":"3301.99", + "value":"-1.31" + } + }, + { + "id":"2a598d9e-1ee8-49bb-a11b-c53ed4f2770d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T09:27:17.555Z", + "completed":"2017-09-25T09:27:17.555Z", + "new_balance":"3298.93", + "value":"-3.06" + } + }, + { + "id":"6bd6d671-2ce6-4841-b497-51719e8d4bba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T04:48:49.792Z", + "completed":"2017-09-27T04:48:49.792Z", + "new_balance":"3271.43", + "value":"-27.50" + } + }, + { + "id":"cf6fcfc5-69b7-4275-aee7-3c435f6cf18c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T19:26:49.929Z", + "completed":"2017-09-29T19:26:49.929Z", + "new_balance":"3268.69", + "value":"-2.74" + } + }, + { + "id":"9bb840e3-05b4-4f60-9d94-244be04233ea", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T09:18:40.721Z", + "completed":"2017-10-01T09:18:40.721Z", + "new_balance":"3253.44", + "value":"-15.25" + } + }, + { + "id":"b9eb7eac-dbb3-430a-ad86-3973d0c19a8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T18:40:57.359Z", + "completed":"2017-10-01T18:40:57.359Z", + "new_balance":"3195.21", + "value":"-58.23" + } + }, + { + "id":"b34458d4-3cc6-4fa2-b202-e27a5d3f5996", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T21:19:36.536Z", + "completed":"2017-10-01T21:19:36.536Z", + "new_balance":"3192.89", + "value":"-2.32" + } + }, + { + "id":"7e7223fd-6a02-4a30-b580-5500e8c0e822", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T22:06:22.803Z", + "completed":"2017-10-01T22:06:22.803Z", + "new_balance":"3187.74", + "value":"-5.15" + } + }, + { + "id":"043260e2-5b8b-4224-a1d7-a4e3146db41d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T02:36:15.293Z", + "completed":"2017-10-02T02:36:15.293Z", + "new_balance":"3180.64", + "value":"-7.10" + } + }, + { + "id":"baf3fa16-9785-4e9f-a8c4-a9fff4162411", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T09:56:59.437Z", + "completed":"2017-10-02T09:56:59.437Z", + "new_balance":"3170.95", + "value":"-9.69" + } + }, + { + "id":"144438db-f54e-4f2e-ad5d-89cdf402d3f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T09:07:08.389Z", + "completed":"2017-10-03T09:07:08.389Z", + "new_balance":"3143.45", + "value":"-27.50" + } + }, + { + "id":"00efcb7f-3b61-48c5-a79c-7db6fe156616", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T13:18:07.840Z", + "completed":"2017-10-03T13:18:07.840Z", + "new_balance":"3086.64", + "value":"-56.81" + } + }, + { + "id":"73c492da-72e9-42b0-adb4-523f58c8fdb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T17:49:01.068Z", + "completed":"2017-10-03T17:49:01.068Z", + "new_balance":"3073.54", + "value":"-13.10" + } + }, + { + "id":"de950c94-5fa4-4b01-90f6-6ed3028b1082", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T22:45:11.964Z", + "completed":"2017-10-03T22:45:11.964Z", + "new_balance":"3069.76", + "value":"-3.78" + } + }, + { + "id":"cb3b840b-6219-46a6-9070-5681f3b27b9d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T23:46:38.214Z", + "completed":"2017-10-03T23:46:38.214Z", + "new_balance":"3066.85", + "value":"-2.91" + } + }, + { + "id":"647bb0d9-3360-43dc-8674-a04cd5976cee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T18:44:57.616Z", + "completed":"2017-10-04T18:44:57.616Z", + "new_balance":"3059.66", + "value":"-7.19" + } + }, + { + "id":"021395f9-471c-40d9-9e91-2f3443ba937c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T19:55:07.004Z", + "completed":"2017-10-05T19:55:07.004Z", + "new_balance":"3059.20", + "value":"-0.46" + } + }, + { + "id":"e17817db-d0df-4fd1-aeda-40323e40c595", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T21:38:25.842Z", + "completed":"2017-10-05T21:38:25.842Z", + "new_balance":"3056.52", + "value":"-2.68" + } + }, + { + "id":"546c8f1a-59e5-4d7a-8c8e-978a2e09fdb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T14:14:47.932Z", + "completed":"2017-10-07T14:14:47.932Z", + "new_balance":"3053.30", + "value":"-3.22" + } + }, + { + "id":"bd4c79ad-4d6d-4949-963e-0294c484959f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T15:43:36.389Z", + "completed":"2017-10-07T15:43:36.389Z", + "new_balance":"3051.77", + "value":"-1.53" + } + }, + { + "id":"93aede2a-b808-4bc7-9b09-d40597b0ccd2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T11:07:51.558Z", + "completed":"2017-10-08T11:07:51.558Z", + "new_balance":"3050.87", + "value":"-0.90" + } + }, + { + "id":"e297f2ba-9486-4873-bac2-226cbff77000", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T04:11:51.441Z", + "completed":"2017-10-09T04:11:51.441Z", + "new_balance":"3048.76", + "value":"-2.11" + } + }, + { + "id":"fd7bf363-4511-4377-a381-845da7d44075", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T04:25:27.471Z", + "completed":"2017-10-09T04:25:27.471Z", + "new_balance":"3021.26", + "value":"-27.50" + } + }, + { + "id":"278f3419-6a9a-46b1-a825-2d1f5c773b99", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T22:51:37.027Z", + "completed":"2017-10-09T22:51:37.027Z", + "new_balance":"3020.82", + "value":"-0.44" + } + }, + { + "id":"f6b39282-cf63-4488-9c00-0f078ed46e90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:29:37.970Z", + "completed":"2017-10-10T23:29:37.970Z", + "new_balance":"3016.34", + "value":"-4.48" + } + }, + { + "id":"8d782e27-f862-4357-b5e5-e5a47190bde5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T02:03:43.022Z", + "completed":"2017-10-17T02:03:43.022Z", + "new_balance":"3015.23", + "value":"-1.11" + } + }, + { + "id":"6c34ad2f-a829-43da-a237-496c51869ec7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T16:51:32.415Z", + "completed":"2017-10-18T16:51:32.415Z", + "new_balance":"3012.42", + "value":"-2.81" + } + }, + { + "id":"fdc9687d-c800-4c7a-9d47-dcc219d3840d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T07:12:24.150Z", + "completed":"2017-10-25T07:12:24.150Z", + "new_balance":"3007.02", + "value":"-5.40" + } + }, + { + "id":"10c7e2b1-993e-4961-9e85-3df5072c584e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T03:40:50.459Z", + "completed":"2017-10-26T03:40:50.459Z", + "new_balance":"3006.58", + "value":"-0.44" + } + }, + { + "id":"de4468fd-5ee8-4827-9f22-e3eebc0bf983", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T04:01:44.282Z", + "completed":"2017-10-26T04:01:44.282Z", + "new_balance":"3000.76", + "value":"-5.82" + } + }, + { + "id":"017d2f37-d465-4eec-8d0c-42757b23978d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T01:16:34.468Z", + "completed":"2017-11-02T01:16:34.468Z", + "new_balance":"2993.66", + "value":"-7.10" + } + }, + { + "id":"c66640f8-3c97-4800-af7d-d6ce8d4e8257", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T02:59:15.026Z", + "completed":"2017-11-02T02:59:15.026Z", + "new_balance":"2990.22", + "value":"-3.44" + } + }, + { + "id":"16268bb3-96e6-41ff-9bd2-3702ab1a1415", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T03:24:26.830Z", + "completed":"2017-11-02T03:24:26.830Z", + "new_balance":"2989.07", + "value":"-1.15" + } + }, + { + "id":"5abf97c9-280b-4132-8e37-a0b0437719f4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T06:47:48.074Z", + "completed":"2017-11-02T06:47:48.074Z", + "new_balance":"2986.75", + "value":"-2.32" + } + }, + { + "id":"f92b08c8-0982-4aa4-9421-ad340acfbf75", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T15:44:50.661Z", + "completed":"2017-11-02T15:44:50.661Z", + "new_balance":"2971.50", + "value":"-15.25" + } + }, + { + "id":"da8781c7-3e93-47d9-bf1f-9af1c7ab0dfa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T15:55:00.252Z", + "completed":"2017-11-02T15:55:00.252Z", + "new_balance":"2966.35", + "value":"-5.15" + } + }, + { + "id":"cbe01303-5f85-40a4-99c1-ca6c99341ffd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T17:36:58.499Z", + "completed":"2017-11-02T17:36:58.499Z", + "new_balance":"2908.12", + "value":"-58.23" + } + }, + { + "id":"8bc333b4-2d18-412e-9b49-5c3f4d5346ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T18:35:42.745Z", + "completed":"2017-11-02T18:35:42.745Z", + "new_balance":"3090.82", + "value":"182.70" + } + }, + { + "id":"5e1d07d0-5ce3-46cf-b629-3cd814353d6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T18:45:16.022Z", + "completed":"2017-11-06T18:45:16.022Z", + "new_balance":"3088.72", + "value":"-2.10" + } + }, + { + "id":"ebbcc9fe-056b-4e57-a1ed-e0092323c3ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T05:17:55.882Z", + "completed":"2017-11-07T05:17:55.882Z", + "new_balance":"3086.22", + "value":"-2.50" + } + }, + { + "id":"be078fea-b0d0-4e1e-9f7f-ed58b5fbff45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T05:55:40.028Z", + "completed":"2017-11-07T05:55:40.028Z", + "new_balance":"3083.82", + "value":"-2.40" + } + }, + { + "id":"059ac5a3-5e05-40e9-9c68-febcbc06d29c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T07:47:04.985Z", + "completed":"2017-11-07T07:47:04.985Z", + "new_balance":"3080.49", + "value":"-3.33" + } + }, + { + "id":"e2f537d1-1932-43fb-9320-c915369e4338", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T07:01:52.860Z", + "completed":"2017-11-09T07:01:52.860Z", + "new_balance":"3073.30", + "value":"-7.19" + } + }, + { + "id":"eea4f167-5004-4773-9e1c-f54ae1f5b37f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T10:55:05.446Z", + "completed":"2017-11-09T10:55:05.446Z", + "new_balance":"3072.82", + "value":"-0.48" + } + }, + { + "id":"35cca304-353e-4489-b0b0-f6dc9b580867", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T09:48:45.237Z", + "completed":"2017-11-12T09:48:45.237Z", + "new_balance":"3070.37", + "value":"-2.45" + } + }, + { + "id":"d0ce6a3f-5630-4137-abff-e91b3998a228", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T17:57:29.500Z", + "completed":"2017-11-12T17:57:29.500Z", + "new_balance":"3067.34", + "value":"-3.03" + } + }, + { + "id":"ef6a34d1-e7f9-4fe5-9034-6d4b3233eefa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T04:51:05.171Z", + "completed":"2017-11-14T04:51:05.171Z", + "new_balance":"3063.86", + "value":"-3.48" + } + }, + { + "id":"734369dc-ee19-4212-a39f-46f1102f260a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T19:19:41.260Z", + "completed":"2017-11-14T19:19:41.260Z", + "new_balance":"3060.72", + "value":"-3.14" + } + }, + { + "id":"14f0cd8c-088d-46fc-848e-c53826ab0b00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T19:25:10.288Z", + "completed":"2017-11-16T19:25:10.288Z", + "new_balance":"3060.25", + "value":"-0.47" + } + }, + { + "id":"cb206c0e-8885-4cd5-9331-fb3e184493b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T17:42:23.204Z", + "completed":"2017-11-18T17:42:23.204Z", + "new_balance":"3059.48", + "value":"-0.77" + } + }, + { + "id":"ed3a4bac-7bf7-4e5a-b3a9-c03318242be1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T04:44:03.553Z", + "completed":"2017-11-20T04:44:03.553Z", + "new_balance":"3063.56", + "value":"4.08" + } + }, + { + "id":"74953f22-6173-418e-a6fe-b509c6cd1656", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T13:31:34.600Z", + "completed":"2017-11-21T13:31:34.600Z", + "new_balance":"3059.44", + "value":"-4.12" + } + }, + { + "id":"c5b23872-3cbd-4f61-b470-01d69c343e2b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T16:50:03.703Z", + "completed":"2017-11-21T16:50:03.703Z", + "new_balance":"3053.01", + "value":"-6.43" + } + }, + { + "id":"94243799-37b7-4cb3-98b1-44a8b43411af", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T05:36:48.651Z", + "completed":"2017-11-27T05:36:48.651Z", + "new_balance":"3050.46", + "value":"-2.55" + } + }, + { + "id":"9eb41258-2533-4c81-b0b7-d27e1947ac61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T08:07:13.673Z", + "completed":"2017-11-27T08:07:13.673Z", + "new_balance":"3047.52", + "value":"-2.94" + } + }, + { + "id":"4c6b024a-2b7c-43f2-a462-479ac97c7952", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:07:57.658Z", + "completed":"2017-12-01T01:07:57.658Z", + "new_balance":"2989.29", + "value":"-58.23" + } + }, + { + "id":"d46cbaac-5720-40ab-a836-d7196813b644", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T07:14:05.104Z", + "completed":"2017-12-01T07:14:05.104Z", + "new_balance":"2985.85", + "value":"-3.44" + } + }, + { + "id":"eaa8bbb1-0d89-4750-9e59-06b5f236502e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T12:59:13.656Z", + "completed":"2017-12-01T12:59:13.656Z", + "new_balance":"3168.55", + "value":"182.70" + } + }, + { + "id":"a55a49ee-0bda-418c-94d0-05c83857e945", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T14:09:50.477Z", + "completed":"2017-12-01T14:09:50.477Z", + "new_balance":"3153.30", + "value":"-15.25" + } + }, + { + "id":"1c6fc079-cd71-4790-a555-a2ed0bbedb72", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T16:29:50.716Z", + "completed":"2017-12-01T16:29:50.716Z", + "new_balance":"3150.98", + "value":"-2.32" + } + }, + { + "id":"f7805372-51a8-4ae8-9da2-496268a6796a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T20:58:55.977Z", + "completed":"2017-12-01T20:58:55.977Z", + "new_balance":"3145.83", + "value":"-5.15" + } + }, + { + "id":"cbd0a1e2-77d3-46ff-ba38-b1a014c0ac81", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T02:45:10.799Z", + "completed":"2017-12-04T02:45:10.799Z", + "new_balance":"3133.87", + "value":"-11.96" + } + }, + { + "id":"d31686bd-811f-44bf-9fa5-ee87dd8f39d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T15:50:51.218Z", + "completed":"2017-12-04T15:50:51.218Z", + "new_balance":"3126.77", + "value":"-7.10" + } + }, + { + "id":"dd27fda6-e044-43f7-b35e-8bf6803a59fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T03:09:20.433Z", + "completed":"2017-12-12T03:09:20.433Z", + "new_balance":"3123.47", + "value":"-3.30" + } + }, + { + "id":"a64ace7c-bb2f-4b0b-b487-131a8f1b71f1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T21:58:57.955Z", + "completed":"2017-12-12T21:58:57.955Z", + "new_balance":"3122.22", + "value":"-1.25" + } + }, + { + "id":"776baa01-c35d-4a64-a1d1-59e3dd07f68a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T06:40:17.973Z", + "completed":"2017-12-13T06:40:17.973Z", + "new_balance":"3121.46", + "value":"-0.76" + } + }, + { + "id":"e6449740-e999-4a2d-a2bb-e4008cfc98d0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T11:52:42.001Z", + "completed":"2017-12-13T11:52:42.001Z", + "new_balance":"3114.16", + "value":"-7.30" + } + }, + { + "id":"8cde22ee-5345-4df3-bf6e-b6b2b3e2cfdf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T09:31:22.220Z", + "completed":"2017-12-16T09:31:22.220Z", + "new_balance":"3110.12", + "value":"-4.04" + } + }, + { + "id":"e4f7aa6e-bdc8-4c5b-8fb3-7476756902f0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T14:12:40.941Z", + "completed":"2017-12-18T14:12:40.941Z", + "new_balance":"3109.72", + "value":"-0.40" + } + }, + { + "id":"bf8c3ffb-41d5-44ee-9611-79a55d621c68", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T19:31:55.327Z", + "completed":"2017-12-19T19:31:55.327Z", + "new_balance":"3104.45", + "value":"-5.27" + } + }, + { + "id":"2844685d-2d4b-4f0b-9d84-271cb37a3369", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T22:04:31.460Z", + "completed":"2017-12-19T22:04:31.460Z", + "new_balance":"3097.15", + "value":"-7.30" + } + }, + { + "id":"c2bd2ee9-9461-47ac-bd6e-36cf6f8122bf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T10:33:25.845Z", + "completed":"2017-12-20T10:33:25.845Z", + "new_balance":"3092.88", + "value":"-4.27" + } + }, + { + "id":"4dc5f0b8-7a9d-4475-8e2c-7a3fe50b5b15", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T21:51:09.449Z", + "completed":"2017-12-21T21:51:09.449Z", + "new_balance":"3087.61", + "value":"-5.27" + } + }, + { + "id":"e7870b39-776d-4930-a4dc-bf212795cb8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:11:55.350Z", + "completed":"2017-12-24T05:11:55.350Z", + "new_balance":"3085.36", + "value":"-2.25" + } + }, + { + "id":"65ab4921-7996-49dc-a07a-3fac6f66dfb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T09:48:20.862Z", + "completed":"2017-12-24T09:48:20.862Z", + "new_balance":"3084.82", + "value":"-0.54" + } + }, + { + "id":"fb83128b-b177-45ba-aa75-e6bd06726206", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T13:17:11.981Z", + "completed":"2017-12-24T13:17:11.981Z", + "new_balance":"3080.56", + "value":"-4.26" + } + }, + { + "id":"1cfc8b45-6089-438e-8acd-1d5454d7431b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T13:39:45.084Z", + "completed":"2017-12-24T13:39:45.084Z", + "new_balance":"3079.51", + "value":"-1.05" + } + }, + { + "id":"87170433-f902-450b-a4f9-c60de9f05b3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T14:25:07.381Z", + "completed":"2017-12-24T14:25:07.381Z", + "new_balance":"3073.19", + "value":"-6.32" + } + }, + { + "id":"b4d460b0-cebc-43e1-94f1-df855b15ee12", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T23:41:28.591Z", + "completed":"2017-12-24T23:41:28.591Z", + "new_balance":"3072.42", + "value":"-0.77" + } + }, + { + "id":"bedf48f7-3dc1-45c2-a90e-90f1834357aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T17:02:11.191Z", + "completed":"2017-12-28T17:02:11.191Z", + "new_balance":"3071.90", + "value":"-0.52" + } + }, + { + "id":"f5a904e1-a733-4250-a7e7-ae0eed6e64a1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T19:21:40.024Z", + "completed":"2017-12-28T19:21:40.024Z", + "new_balance":"3067.08", + "value":"-4.82" + } + }, + { + "id":"d975f63b-6a72-4fb2-a240-c80922f01863", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T21:38:24.245Z", + "completed":"2017-12-28T21:38:24.245Z", + "new_balance":"3066.56", + "value":"-0.52" + } + }, + { + "id":"9098d00e-1203-4f89-8667-b16e44c4a310", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T22:35:40.201Z", + "completed":"2017-12-28T22:35:40.201Z", + "new_balance":"3056.77", + "value":"-9.79" + } + }, + { + "id":"ca657d8e-3f90-439d-a66e-dc65105145a8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T03:23:33.134Z", + "completed":"2017-12-29T03:23:33.134Z", + "new_balance":"3051.61", + "value":"-5.16" + } + }, + { + "id":"7de662c0-4a75-45db-bc0b-784240080071", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T05:14:58.936Z", + "completed":"2017-12-29T05:14:58.936Z", + "new_balance":"3047.46", + "value":"-4.15" + } + }, + { + "id":"a356e752-ccbf-4fb3-9728-96f768a27aa0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T05:35:47.322Z", + "completed":"2017-12-29T05:35:47.322Z", + "new_balance":"3041.14", + "value":"-6.32" + } + }, + { + "id":"715c6c42-b926-4934-b46a-a4c91f8adc31", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T05:47:37.704Z", + "completed":"2017-12-29T05:47:37.704Z", + "new_balance":"3034.18", + "value":"-6.96" + } + }, + { + "id":"9e443a63-e4bc-40e9-8dfb-5145ff4139c5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T07:39:41.817Z", + "completed":"2017-12-29T07:39:41.817Z", + "new_balance":"3033.42", + "value":"-0.76" + } + }, + { + "id":"a2f42c10-ce7b-4b03-bc98-a197c8514819", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T16:57:51.150Z", + "completed":"2017-12-29T16:57:51.150Z", + "new_balance":"3029.13", + "value":"-4.29" + } + }, + { + "id":"13f310a1-8587-47b1-89fa-ab2d412a126f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T01:11:57.835Z", + "completed":"2017-12-30T01:11:57.835Z", + "new_balance":"3025.58", + "value":"-3.55" + } + }, + { + "id":"5997f606-6673-4f32-9eb8-d491b5538c57", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T04:55:03.718Z", + "completed":"2017-12-30T04:55:03.718Z", + "new_balance":"3024.99", + "value":"-0.59" + } + }, + { + "id":"2c08dba1-d032-4053-80eb-32ddd329b5be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T16:41:04.257Z", + "completed":"2017-12-30T16:41:04.257Z", + "new_balance":"3024.08", + "value":"-0.91" + } + }, + { + "id":"e8e90171-4e11-48ef-a9a0-a9db63ae4fe5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T23:38:25.626Z", + "completed":"2017-12-30T23:38:25.626Z", + "new_balance":"3019.47", + "value":"-4.61" + } + }, + { + "id":"098841bb-7bf6-46e5-930c-e849c7f5fd3b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T04:39:20.590Z", + "completed":"2017-12-31T04:39:20.590Z", + "new_balance":"3016.73", + "value":"-2.74" + } + }, + { + "id":"faf05df9-4abe-47ea-be55-335c697d7b91", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T13:21:16.203Z", + "completed":"2017-12-31T13:21:16.203Z", + "new_balance":"2989.23", + "value":"-27.50" + } + }, + { + "id":"a86530da-777f-4a5f-bf1a-cf30c152d821", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T16:00:59.047Z", + "completed":"2017-12-31T16:00:59.047Z", + "new_balance":"2987.92", + "value":"-1.31" + } + }, + { + "id":"c221c24a-48b1-4aa4-9be4-5f81e36daf96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T21:10:52.014Z", + "completed":"2017-12-31T21:10:52.014Z", + "new_balance":"2984.86", + "value":"-3.06" + } + }, + { + "id":"f589786e-e709-4c7f-8f08-226d716ec253", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:13:09.579Z", + "completed":"2016-03-02T14:13:09.579Z", + "new_balance":"91408.15", + "value":"-832.36" + } + }, + { + "id":"311ab82c-80b7-41d9-899c-054cb509d7b9", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T18:26:19.442Z", + "completed":"2016-03-02T18:26:19.442Z", + "new_balance":"91029.82", + "value":"-378.33" + } + }, + { + "id":"7ae7af75-1d00-4e8b-95a3-981372987c6c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T18:59:16.600Z", + "completed":"2016-03-03T18:59:16.600Z", + "new_balance":"90955.89", + "value":"-73.93" + } + }, + { + "id":"cbeaaad4-a024-4115-b4b3-6331ab0f6de0", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T20:10:40.753Z", + "completed":"2016-03-03T20:10:40.753Z", + "new_balance":"86370.73", + "value":"-4585.16" + } + }, + { + "id":"7c5e6c2b-224d-412c-8a9a-7dc6774a5c61", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T02:49:53.567Z", + "completed":"2016-03-04T02:49:53.567Z", + "new_balance":"86006.44", + "value":"-364.29" + } + }, + { + "id":"dee93caa-e7aa-4f59-889d-7f30a26df1cd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T11:59:52.313Z", + "completed":"2016-03-04T11:59:52.313Z", + "new_balance":"85919.88", + "value":"-86.56" + } + }, + { + "id":"4c46b710-a20e-4b45-be12-4f4c157b075c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T08:47:00.060Z", + "completed":"2016-03-07T08:47:00.060Z", + "new_balance":"85866.70", + "value":"-53.18" + } + }, + { + "id":"6d18fba6-e30e-4979-9a25-6d9d586dee98", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T08:42:56.993Z", + "completed":"2016-03-09T08:42:56.993Z", + "new_balance":"85034.34", + "value":"-832.36" + } + }, + { + "id":"d7c476c4-80c8-44be-b9a5-2a3cab37488f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T02:02:09.735Z", + "completed":"2016-03-16T02:02:09.735Z", + "new_balance":"84489.18", + "value":"-545.16" + } + }, + { + "id":"895b87ca-a5c3-4d78-b917-69d5728f460e", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T01:27:38.504Z", + "completed":"2016-03-25T01:27:38.504Z", + "new_balance":"83944.02", + "value":"-545.16" + } + }, + { + "id":"57477568-61e9-4fc2-892e-0e811360b5bb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T09:48:14.637Z", + "completed":"2016-03-30T09:48:14.637Z", + "new_balance":"81312.81", + "value":"-2631.21" + } + }, + { + "id":"14d23309-cd51-4b03-80a5-a9f7e5038f15", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:17:25.985Z", + "completed":"2016-06-07T00:17:25.985Z", + "new_balance":"80934.48", + "value":"-378.33" + } + }, + { + "id":"3e8f6fa0-9c93-49fd-a6ca-ef1428621a58", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T07:48:49.348Z", + "completed":"2016-06-07T07:48:49.348Z", + "new_balance":"80102.12", + "value":"-832.36" + } + }, + { + "id":"8f8f37c0-34cc-45d0-9526-6ed02f6df682", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:09:33.672Z", + "completed":"2016-06-07T13:09:33.672Z", + "new_balance":"75516.96", + "value":"-4585.16" + } + }, + { + "id":"70a3b5d7-44a4-420e-9e2c-5bb550e2581f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:38:21.535Z", + "completed":"2016-06-10T12:38:21.535Z", + "new_balance":"75430.40", + "value":"-86.56" + } + }, + { + "id":"55736b5c-816b-48e0-b0e2-0d89a17bcc55", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T04:26:41.760Z", + "completed":"2016-06-14T04:26:41.760Z", + "new_balance":"75066.11", + "value":"-364.29" + } + }, + { + "id":"02e80c96-fa16-4c13-a8be-ceefa17dd608", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T10:20:03.262Z", + "completed":"2016-06-19T10:20:03.262Z", + "new_balance":"74992.18", + "value":"-73.93" + } + }, + { + "id":"15d2688c-49b5-431c-a9dd-1ba7a7c99961", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T10:55:54.517Z", + "completed":"2016-06-19T10:55:54.517Z", + "new_balance":"74939.00", + "value":"-53.18" + } + }, + { + "id":"f94ae094-95c7-4e5e-95ec-437e375aad27", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T23:45:08.918Z", + "completed":"2016-06-20T23:45:08.918Z", + "new_balance":"74106.64", + "value":"-832.36" + } + }, + { + "id":"d64394dc-9196-47f7-87db-0df2440e6ddb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T23:55:05.975Z", + "completed":"2016-06-28T23:55:05.975Z", + "new_balance":"73561.48", + "value":"-545.16" + } + }, + { + "id":"5a5edc9d-db68-4b1c-bece-4a3130a69111", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T09:24:39.109Z", + "completed":"2016-07-01T09:24:39.109Z", + "new_balance":"70930.27", + "value":"-2631.21" + } + }, + { + "id":"d0d919bf-5086-45df-ac5e-a2923d2e1ca3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T13:34:18.392Z", + "completed":"2016-07-01T13:34:18.392Z", + "new_balance":"70385.11", + "value":"-545.16" + } + }, + { + "id":"abaaa32a-3bba-40e7-bb18-10c15a30ce5a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T02:44:28.221Z", + "completed":"2016-09-02T02:44:28.221Z", + "new_balance":"69552.75", + "value":"-832.36" + } + }, + { + "id":"9f33ba0a-80ee-49a0-a16c-ad1e4a0d402a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T02:51:12.544Z", + "completed":"2016-09-02T02:51:12.544Z", + "new_balance":"69174.42", + "value":"-378.33" + } + }, + { + "id":"87dcb8d6-d4f8-4be8-88ce-331c045eec66", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T09:30:16.788Z", + "completed":"2016-09-03T09:30:16.788Z", + "new_balance":"69127.52", + "value":"-46.90" + } + }, + { + "id":"19658638-9304-41ba-8d25-f9a22952b3dd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T19:13:08.204Z", + "completed":"2016-09-03T19:13:08.204Z", + "new_balance":"64542.36", + "value":"-4585.16" + } + }, + { + "id":"bc250af2-2e3c-406a-8aea-ad1c01e3f3f3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T23:26:36.483Z", + "completed":"2016-09-03T23:26:36.483Z", + "new_balance":"64468.43", + "value":"-73.93" + } + }, + { + "id":"a1484eba-1c13-4567-8f41-d5268e483991", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T06:08:08.238Z", + "completed":"2016-09-04T06:08:08.238Z", + "new_balance":"64104.14", + "value":"-364.29" + } + }, + { + "id":"d1da453a-a397-4185-87ce-15c34b556d7f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T20:06:48.937Z", + "completed":"2016-09-07T20:06:48.937Z", + "new_balance":"64050.96", + "value":"-53.18" + } + }, + { + "id":"a0e637b1-c9e3-4167-972a-19c89c94cfcd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T05:35:24.178Z", + "completed":"2016-09-09T05:35:24.178Z", + "new_balance":"63218.60", + "value":"-832.36" + } + }, + { + "id":"691f93bf-8455-4b01-83c5-7d5c38ca3d34", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T07:36:30.317Z", + "completed":"2016-09-16T07:36:30.317Z", + "new_balance":"62673.44", + "value":"-545.16" + } + }, + { + "id":"f4593bdb-fa30-45ea-bdfc-4cadda3899e6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T18:11:29.796Z", + "completed":"2016-09-25T18:11:29.796Z", + "new_balance":"62128.28", + "value":"-545.16" + } + }, + { + "id":"7d07826a-a454-44da-b0b7-c758067430d4", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T20:30:34.894Z", + "completed":"2016-09-30T20:30:34.894Z", + "new_balance":"59497.07", + "value":"-2631.21" + } + }, + { + "id":"0020656e-989d-4274-bc27-ffc35513cfb5", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T06:04:00.157Z", + "completed":"2016-12-07T06:04:00.157Z", + "new_balance":"59118.74", + "value":"-378.33" + } + }, + { + "id":"b72210ae-5b17-40f9-afe6-d06ec464724d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T07:56:30.709Z", + "completed":"2016-12-07T07:56:30.709Z", + "new_balance":"54533.58", + "value":"-4585.16" + } + }, + { + "id":"6868cf88-47c9-4af5-889a-29daa9afc177", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T23:37:38.036Z", + "completed":"2016-12-07T23:37:38.036Z", + "new_balance":"53701.22", + "value":"-832.36" + } + }, + { + "id":"5eccf439-ccd1-4b81-ad2d-2cf1130698ea", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T21:57:01.854Z", + "completed":"2016-12-11T21:57:01.854Z", + "new_balance":"53614.66", + "value":"-86.56" + } + }, + { + "id":"0c9e9226-3987-4edd-92b5-dcc016e38778", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T22:37:26.106Z", + "completed":"2016-12-11T22:37:26.106Z", + "new_balance":"53540.73", + "value":"-73.93" + } + }, + { + "id":"9d99d0d3-7d27-4b28-919c-d9a2895adf98", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T14:15:23.371Z", + "completed":"2016-12-14T14:15:23.371Z", + "new_balance":"53176.44", + "value":"-364.29" + } + }, + { + "id":"0da26c1b-3ad9-4005-923f-24181648cff6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T19:50:27.818Z", + "completed":"2016-12-20T19:50:27.818Z", + "new_balance":"53123.26", + "value":"-53.18" + } + }, + { + "id":"e7ffb66a-b541-46d8-ba51-34fa3c90b220", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T19:09:16.291Z", + "completed":"2016-12-22T19:09:16.291Z", + "new_balance":"52290.90", + "value":"-832.36" + } + }, + { + "id":"d0885fd5-cfd1-4fdf-8a9d-9c174e1ef447", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T09:18:13.918Z", + "completed":"2016-12-28T09:18:13.918Z", + "new_balance":"51745.74", + "value":"-545.16" + } + }, + { + "id":"7c3c8f5b-b7f4-4f74-803c-af5b8d6d07f6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T13:52:30.625Z", + "completed":"2016-12-31T13:52:30.625Z", + "new_balance":"49114.53", + "value":"-2631.21" + } + }, + { + "id":"0aca64cc-a9fb-4a8c-a1ff-9f79c2ce1bef", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T17:58:22.726Z", + "completed":"2016-12-31T17:58:22.726Z", + "new_balance":"48569.37", + "value":"-545.16" + } + }, + { + "id":"3e54b81a-6d36-4c8b-85e7-01673ad46bab", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T00:14:34.807Z", + "completed":"2017-03-02T00:14:34.807Z", + "new_balance":"48191.04", + "value":"-378.33" + } + }, + { + "id":"304514b0-aac2-48f3-8d1e-de3733165a0c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T19:14:29.826Z", + "completed":"2017-03-02T19:14:29.826Z", + "new_balance":"47358.68", + "value":"-832.36" + } + }, + { + "id":"e69cd9b4-6ff2-4f00-a770-088b33f5064d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T09:10:07.337Z", + "completed":"2017-03-03T09:10:07.337Z", + "new_balance":"42773.52", + "value":"-4585.16" + } + }, + { + "id":"5b58647d-4498-4e1f-a8be-a9ccad3346b8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T23:32:15.915Z", + "completed":"2017-03-03T23:32:15.915Z", + "new_balance":"42699.59", + "value":"-73.93" + } + }, + { + "id":"ff384f60-5bb4-4887-b4b5-fd9a1d9406de", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T18:02:29.866Z", + "completed":"2017-03-04T18:02:29.866Z", + "new_balance":"42335.30", + "value":"-364.29" + } + }, + { + "id":"a49d1768-eadb-4ff3-b4ee-9b67df8d4fad", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T20:38:58.711Z", + "completed":"2017-03-04T20:38:58.711Z", + "new_balance":"42248.74", + "value":"-86.56" + } + }, + { + "id":"a3a28280-ec20-44bd-9e8a-c10ec1d9ce46", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T08:11:28.166Z", + "completed":"2017-03-07T08:11:28.166Z", + "new_balance":"42195.56", + "value":"-53.18" + } + }, + { + "id":"58726ce3-0560-441e-84a2-f99755d71726", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T16:52:44.300Z", + "completed":"2017-03-09T16:52:44.300Z", + "new_balance":"41363.20", + "value":"-832.36" + } + }, + { + "id":"124b5f48-a8bd-42ae-8ed6-f5f7efb1cae3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T16:10:44.598Z", + "completed":"2017-03-16T16:10:44.598Z", + "new_balance":"40818.04", + "value":"-545.16" + } + }, + { + "id":"5c7b68f2-e672-4e5a-992a-cc10da59aba2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T01:58:51.818Z", + "completed":"2017-03-25T01:58:51.818Z", + "new_balance":"40272.88", + "value":"-545.16" + } + }, + { + "id":"c4721310-65ac-4631-97d2-00485454144d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T12:07:02.248Z", + "completed":"2017-03-30T12:07:02.248Z", + "new_balance":"37641.67", + "value":"-2631.21" + } + }, + { + "id":"1824f4f1-a89c-4dc6-8644-207eb63da864", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:35:17.918Z", + "completed":"2017-06-07T06:35:17.918Z", + "new_balance":"37263.34", + "value":"-378.33" + } + }, + { + "id":"82dabd83-fb1b-4620-8f9d-af9802856810", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:48:28.658Z", + "completed":"2017-06-07T06:48:28.658Z", + "new_balance":"36430.98", + "value":"-832.36" + } + }, + { + "id":"c177becc-9aaa-40f3-b7d2-4e3b4e2b3f97", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T20:24:14.317Z", + "completed":"2017-06-07T20:24:14.317Z", + "new_balance":"31845.82", + "value":"-4585.16" + } + }, + { + "id":"0ab16334-8dc9-4f0e-8c31-3fa5aca6a04e", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T19:19:48.386Z", + "completed":"2017-06-10T19:19:48.386Z", + "new_balance":"31759.26", + "value":"-86.56" + } + }, + { + "id":"9d81fa73-178f-4529-a811-14f5cb595a9f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T19:27:02.856Z", + "completed":"2017-06-14T19:27:02.856Z", + "new_balance":"31394.97", + "value":"-364.29" + } + }, + { + "id":"d4e7e620-2929-4f19-88a7-3f4fc0eec26a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T00:27:35.204Z", + "completed":"2017-06-19T00:27:35.204Z", + "new_balance":"31341.79", + "value":"-53.18" + } + }, + { + "id":"4622b37a-f48a-4b0f-9560-7e67a6a90ddb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T04:59:23.163Z", + "completed":"2017-06-19T04:59:23.163Z", + "new_balance":"31267.86", + "value":"-73.93" + } + }, + { + "id":"52a44bd2-5999-457c-9cd7-6317185fa702", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T16:05:44.218Z", + "completed":"2017-06-20T16:05:44.218Z", + "new_balance":"30435.50", + "value":"-832.36" + } + }, + { + "id":"cfe4c92d-78ce-46a0-bc5d-1a1f5e93daf2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T12:38:43.783Z", + "completed":"2017-06-28T12:38:43.783Z", + "new_balance":"29890.34", + "value":"-545.16" + } + }, + { + "id":"ab762df1-829c-491f-b9c5-4081e3394e27", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T04:13:24.594Z", + "completed":"2017-07-01T04:13:24.594Z", + "new_balance":"27259.13", + "value":"-2631.21" + } + }, + { + "id":"ace1344b-8296-4808-86ea-0eb573991f88", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T10:34:57.189Z", + "completed":"2017-07-01T10:34:57.189Z", + "new_balance":"26713.97", + "value":"-545.16" + } + }, + { + "id":"f7925668-d377-4a98-9c12-ca69f629b499", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T11:28:24.642Z", + "completed":"2017-09-02T11:28:24.642Z", + "new_balance":"25881.61", + "value":"-832.36" + } + }, + { + "id":"30bbf08c-7811-4f01-aa4a-4a891b9e9ba1", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T19:12:49.387Z", + "completed":"2017-09-02T19:12:49.387Z", + "new_balance":"25503.28", + "value":"-378.33" + } + }, + { + "id":"0957f391-d0d0-4c86-a4dc-dea76a960e51", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T08:32:07.984Z", + "completed":"2017-09-03T08:32:07.984Z", + "new_balance":"25456.38", + "value":"-46.90" + } + }, + { + "id":"e0c694e4-bd71-490f-822c-ce807890ee49", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T13:39:30.338Z", + "completed":"2017-09-03T13:39:30.338Z", + "new_balance":"25382.45", + "value":"-73.93" + } + }, + { + "id":"184c807d-ada2-446c-948a-7e31849c24f3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T23:14:44.834Z", + "completed":"2017-09-03T23:14:44.834Z", + "new_balance":"20797.29", + "value":"-4585.16" + } + }, + { + "id":"ce9819b8-cb4a-45ca-99f0-b23171f540c9", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T19:43:16.269Z", + "completed":"2017-09-04T19:43:16.269Z", + "new_balance":"20433.00", + "value":"-364.29" + } + }, + { + "id":"1ad447cc-169c-49b0-bf07-36bd0bfd797a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T17:54:59.794Z", + "completed":"2017-09-07T17:54:59.794Z", + "new_balance":"20379.82", + "value":"-53.18" + } + }, + { + "id":"c3458550-fb0e-48b2-9695-1a5799d04785", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T06:57:19.752Z", + "completed":"2017-09-09T06:57:19.752Z", + "new_balance":"19547.46", + "value":"-832.36" + } + }, + { + "id":"09538cf5-ad96-4183-a08b-836094528258", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T16:41:32.396Z", + "completed":"2017-09-16T16:41:32.396Z", + "new_balance":"19002.30", + "value":"-545.16" + } + }, + { + "id":"3090d7b9-97c0-4edc-906d-3be3d50b28b8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T00:38:28.680Z", + "completed":"2017-09-25T00:38:28.680Z", + "new_balance":"18457.14", + "value":"-545.16" + } + }, + { + "id":"51e3595a-7923-44f9-be2d-3610f4da142b", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T04:48:36.201Z", + "completed":"2017-09-30T04:48:36.201Z", + "new_balance":"15825.93", + "value":"-2631.21" + } + }, + { + "id":"110c57ac-f984-4ab2-a40d-c47ac330342f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T17:01:52.048Z", + "completed":"2017-12-07T17:01:52.048Z", + "new_balance":"15447.60", + "value":"-378.33" + } + }, + { + "id":"373470db-4cca-4267-b78f-d95d93e26baf", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T22:53:52.099Z", + "completed":"2017-12-07T22:53:52.099Z", + "new_balance":"10862.44", + "value":"-4585.16" + } + }, + { + "id":"7b8bd7a7-37bb-4398-bcc8-0f9a24ae7f8a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T23:21:19.214Z", + "completed":"2017-12-07T23:21:19.214Z", + "new_balance":"10030.08", + "value":"-832.36" + } + }, + { + "id":"06626407-2360-432a-9f81-466cffda87c2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T04:07:28.124Z", + "completed":"2017-12-11T04:07:28.124Z", + "new_balance":"9956.15", + "value":"-73.93" + } + }, + { + "id":"3f1a7c86-4814-414f-b885-5e45788a7dbf", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T16:21:59.077Z", + "completed":"2017-12-11T16:21:59.077Z", + "new_balance":"9869.59", + "value":"-86.56" + } + }, + { + "id":"bca620e2-474e-42d8-8959-3cf3234acc28", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T17:43:09.833Z", + "completed":"2017-12-14T17:43:09.833Z", + "new_balance":"9505.30", + "value":"-364.29" + } + }, + { + "id":"703a1c89-4aee-4ffd-a792-34c7f72540d8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T04:34:29.598Z", + "completed":"2017-12-20T04:34:29.598Z", + "new_balance":"9452.12", + "value":"-53.18" + } + }, + { + "id":"f4e19b14-6ec1-4988-99bd-82ae064c7f62", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T06:57:04.510Z", + "completed":"2017-12-22T06:57:04.510Z", + "new_balance":"8619.76", + "value":"-832.36" + } + }, + { + "id":"2d5b8c9f-513c-4129-af9b-9242a74fa655", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:45:01.162Z", + "completed":"2017-12-28T01:45:01.162Z", + "new_balance":"8074.60", + "value":"-545.16" + } + }, + { + "id":"46eece0f-52ee-4c93-a697-4bc960eb7938", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T05:22:36.810Z", + "completed":"2017-12-31T05:22:36.810Z", + "new_balance":"5443.39", + "value":"-2631.21" + } + }, + { + "id":"81277678-787d-4a12-b53c-d40ffa360f99", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T20:46:20.919Z", + "completed":"2017-12-31T20:46:20.919Z", + "new_balance":"4898.23", + "value":"-545.16" + } + }, + { + "id":"3f91106e-5534-4482-bd43-0f3888d1dc05", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T09:10:44.724Z", + "completed":"2016-01-01T09:10:44.724Z", + "new_balance":"8007.59", + "value":"-61.87" + } + }, + { + "id":"3d3caa2b-69f1-41a6-a745-a23499e91e71", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T14:38:10.767Z", + "completed":"2016-01-01T14:38:10.767Z", + "new_balance":"7945.72", + "value":"-61.87" + } + }, + { + "id":"a78b61a3-1dc8-46b2-875a-bffe69695b0e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T02:25:30.560Z", + "completed":"2016-01-03T02:25:30.560Z", + "new_balance":"7911.29", + "value":"-34.43" + } + }, + { + "id":"36db5427-ef12-4ddf-a92d-9caa759dd666", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T20:55:33.791Z", + "completed":"2016-01-03T20:55:33.791Z", + "new_balance":"7400.75", + "value":"-510.54" + } + }, + { + "id":"0672b54e-b1db-4ab0-a440-b6cd07ceef95", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T20:57:13.275Z", + "completed":"2016-01-03T20:57:13.275Z", + "new_balance":"7376.19", + "value":"-24.56" + } + }, + { + "id":"9a437a33-28e6-41ad-9cca-56cd62575cd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T21:46:27.314Z", + "completed":"2016-01-03T21:46:27.314Z", + "new_balance":"7302.26", + "value":"-73.93" + } + }, + { + "id":"0b91d76d-9e80-4199-bef8-a9e3a5b1ae15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T05:15:40.480Z", + "completed":"2016-01-05T05:15:40.480Z", + "new_balance":"7249.08", + "value":"-53.18" + } + }, + { + "id":"be9048dd-80be-495e-a882-be12d4eba75a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T15:11:54.935Z", + "completed":"2016-01-05T15:11:54.935Z", + "new_balance":"7205.10", + "value":"-43.98" + } + }, + { + "id":"20cfb978-1c5d-4840-a4ae-71d1b879c99b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T20:55:18.211Z", + "completed":"2016-01-05T20:55:18.211Z", + "new_balance":"7192.09", + "value":"-13.01" + } + }, + { + "id":"45f79e6b-3179-4b8e-8dc0-3d08cc435818", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T03:12:11.626Z", + "completed":"2016-01-06T03:12:11.626Z", + "new_balance":"7162.21", + "value":"-29.88" + } + }, + { + "id":"fa2bd3d3-d5f7-4681-b51a-0d91691ad317", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T10:18:50.276Z", + "completed":"2016-01-06T10:18:50.276Z", + "new_balance":"7139.52", + "value":"-22.69" + } + }, + { + "id":"8cf8aca3-6338-4dec-a6eb-f862aee1360a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T15:25:17.520Z", + "completed":"2016-01-07T15:25:17.520Z", + "new_balance":"7100.35", + "value":"-39.17" + } + }, + { + "id":"61338925-22dc-441f-a3e6-1cb0052e88e9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T04:41:26.000Z", + "completed":"2016-01-10T04:41:26.000Z", + "new_balance":"7047.17", + "value":"-53.18" + } + }, + { + "id":"738dd944-bf30-4e76-a37d-9e0e8532fffd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T23:03:57.341Z", + "completed":"2016-01-10T23:03:57.341Z", + "new_balance":"7022.30", + "value":"-24.87" + } + }, + { + "id":"2ba5f964-2efb-4e82-99f4-b2c24c161e38", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T00:20:01.001Z", + "completed":"2016-01-12T00:20:01.001Z", + "new_balance":"6983.13", + "value":"-39.17" + } + }, + { + "id":"b94dd7b2-49f9-4e74-b03e-50f8c4ed9536", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T03:41:51.830Z", + "completed":"2016-01-12T03:41:51.830Z", + "new_balance":"6958.57", + "value":"-24.56" + } + }, + { + "id":"0c841ca9-cdbc-4493-bb3d-7382737f76bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T10:55:26.228Z", + "completed":"2016-01-12T10:55:26.228Z", + "new_balance":"6938.50", + "value":"-20.07" + } + }, + { + "id":"7a1fb243-6fb6-49b1-9057-faf87c7d00cc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T18:43:55.412Z", + "completed":"2016-01-15T18:43:55.412Z", + "new_balance":"6922.10", + "value":"-16.40" + } + }, + { + "id":"7035d68e-a1d3-4d9b-8889-eefce1f805ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T12:03:00.086Z", + "completed":"2016-01-16T12:03:00.086Z", + "new_balance":"6915.95", + "value":"-6.15" + } + }, + { + "id":"cb52d37a-bc91-45d2-ac80-dedf1d462266", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T17:32:02.592Z", + "completed":"2016-01-16T17:32:02.592Z", + "new_balance":"6862.77", + "value":"-53.18" + } + }, + { + "id":"e1fc473a-48b4-4e43-8df7-b9f12af878a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:05:59.358Z", + "completed":"2016-01-17T10:05:59.358Z", + "new_balance":"6801.59", + "value":"-61.18" + } + }, + { + "id":"511db47e-7251-4695-91d5-c9ec695f9547", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T20:46:33.873Z", + "completed":"2016-01-17T20:46:33.873Z", + "new_balance":"6770.27", + "value":"-31.32" + } + }, + { + "id":"fb2b9c86-e548-4a55-8526-66d58213e027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T12:22:00.032Z", + "completed":"2016-01-19T12:22:00.032Z", + "new_balance":"6739.87", + "value":"-30.40" + } + }, + { + "id":"2058926d-597e-49ae-b6d9-235674f9f11e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T01:30:09.703Z", + "completed":"2016-01-20T01:30:09.703Z", + "new_balance":"6686.69", + "value":"-53.18" + } + }, + { + "id":"03e0e7b2-8b1d-4fe2-b43e-74c965d0f528", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:05:42.798Z", + "completed":"2016-01-23T22:05:42.798Z", + "new_balance":"6670.86", + "value":"-15.83" + } + }, + { + "id":"faeacb43-a483-4df1-8ced-c2b04ab5c788", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T06:56:03.573Z", + "completed":"2016-01-26T06:56:03.573Z", + "new_balance":"6612.38", + "value":"-58.48" + } + }, + { + "id":"55721a0e-f547-45bc-9d2b-6f7c70bc34ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T02:00:30.490Z", + "completed":"2016-01-27T02:00:30.490Z", + "new_balance":"7800.89", + "value":"1188.51" + } + }, + { + "id":"0e326f82-b9c8-48ce-a684-3f4248407af6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T12:22:41.885Z", + "completed":"2016-01-28T12:22:41.885Z", + "new_balance":"7766.46", + "value":"-34.43" + } + }, + { + "id":"7cc7b13d-0f0f-4213-9ea3-ff206f17c228", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T00:56:03.181Z", + "completed":"2016-01-30T00:56:03.181Z", + "new_balance":"7724.12", + "value":"-42.34" + } + }, + { + "id":"332876d7-7b65-4d61-abd7-4b799c3b5cc3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T00:40:31.529Z", + "completed":"2016-02-03T00:40:31.529Z", + "new_balance":"7699.56", + "value":"-24.56" + } + }, + { + "id":"23f1a4ba-e801-485f-a33b-0bcae654aa2c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T01:20:02.691Z", + "completed":"2016-02-03T01:20:02.691Z", + "new_balance":"7665.13", + "value":"-34.43" + } + }, + { + "id":"bda43c97-6965-4d64-9d92-8f7c23f35661", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T02:46:01.309Z", + "completed":"2016-02-03T02:46:01.309Z", + "new_balance":"7591.20", + "value":"-73.93" + } + }, + { + "id":"fc73e0d8-c47c-4b97-8df8-772eb26371f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T05:06:51.032Z", + "completed":"2016-02-03T05:06:51.032Z", + "new_balance":"7080.66", + "value":"-510.54" + } + }, + { + "id":"20b2b6e9-3315-4830-9b1d-df952297a2b7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T09:35:47.631Z", + "completed":"2016-02-08T09:35:47.631Z", + "new_balance":"7027.48", + "value":"-53.18" + } + }, + { + "id":"37297211-aeb1-4bad-9004-e25a10882a39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T13:01:54.278Z", + "completed":"2016-02-08T13:01:54.278Z", + "new_balance":"6983.50", + "value":"-43.98" + } + }, + { + "id":"026edaa6-e85c-4b0b-b98c-729bf24798b8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T22:03:25.367Z", + "completed":"2016-02-11T22:03:25.367Z", + "new_balance":"6994.39", + "value":"10.89" + } + }, + { + "id":"68f77689-0ebd-4815-bd37-4f6b85de3e58", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T09:58:49.835Z", + "completed":"2016-02-13T09:58:49.835Z", + "new_balance":"6964.51", + "value":"-29.88" + } + }, + { + "id":"fe9d2e9d-33ba-461b-bc3c-5086be213517", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T13:31:17.690Z", + "completed":"2016-02-14T13:31:17.690Z", + "new_balance":"6936.66", + "value":"-27.85" + } + }, + { + "id":"eefae232-8d84-44a9-91e8-676d7448fc7d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T15:52:51.177Z", + "completed":"2016-02-17T15:52:51.177Z", + "new_balance":"6925.75", + "value":"-10.91" + } + }, + { + "id":"c8eefcc4-a1d8-4597-8b94-d8772c179a65", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T04:39:26.024Z", + "completed":"2016-02-21T04:39:26.024Z", + "new_balance":"6884.62", + "value":"-41.13" + } + }, + { + "id":"eb497371-5bd1-4d45-85fe-bf4631b935c4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:58:54.537Z", + "completed":"2016-02-23T13:58:54.537Z", + "new_balance":"6843.70", + "value":"-40.92" + } + }, + { + "id":"34c39cc0-c71c-4865-90f5-2222c0930cb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T22:38:40.396Z", + "completed":"2016-02-23T22:38:40.396Z", + "new_balance":"6790.52", + "value":"-53.18" + } + }, + { + "id":"ae89d278-51d9-48f5-a25a-7dac3a740da8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T20:10:40.708Z", + "completed":"2016-02-24T20:10:40.708Z", + "new_balance":"6779.61", + "value":"-10.91" + } + }, + { + "id":"716796c1-8985-4e96-ab74-2657a9d19751", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T04:17:53.892Z", + "completed":"2016-02-27T04:17:53.892Z", + "new_balance":"6762.87", + "value":"-16.74" + } + }, + { + "id":"328bdd88-0864-47d5-aabc-09181d1a70d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T07:32:43.661Z", + "completed":"2016-02-27T07:32:43.661Z", + "new_balance":"7951.38", + "value":"1188.51" + } + }, + { + "id":"c632c22e-0347-4a1f-8e3a-c4ac0b5767dd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T22:53:47.142Z", + "completed":"2016-02-27T22:53:47.142Z", + "new_balance":"7892.90", + "value":"-58.48" + } + }, + { + "id":"1dafc8c8-9586-4492-b4ef-3a7f3bc56f93", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T07:14:49.097Z", + "completed":"2016-02-28T07:14:49.097Z", + "new_balance":"7850.56", + "value":"-42.34" + } + }, + { + "id":"c1b4de2d-5be8-4542-bfd2-0a9e3fbcd926", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T18:58:38.073Z", + "completed":"2016-02-28T18:58:38.073Z", + "new_balance":"7816.13", + "value":"-34.43" + } + }, + { + "id":"5acdb565-9571-4dd4-86ba-468319227660", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:20:05.001Z", + "completed":"2016-03-01T16:20:05.001Z", + "new_balance":"7754.26", + "value":"-61.87" + } + }, + { + "id":"b922bb28-52a4-43ac-9a37-33163d3f5a06", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:07:06.565Z", + "completed":"2016-03-03T05:07:06.565Z", + "new_balance":"7719.83", + "value":"-34.43" + } + }, + { + "id":"4d73522e-682e-4e2e-823a-322d6a54dcf8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T06:01:49.352Z", + "completed":"2016-03-03T06:01:49.352Z", + "new_balance":"7695.27", + "value":"-24.56" + } + }, + { + "id":"6a5f2e30-1d5a-404c-85e6-503cc2cebf40", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T06:14:41.006Z", + "completed":"2016-03-03T06:14:41.006Z", + "new_balance":"7621.34", + "value":"-73.93" + } + }, + { + "id":"71ec7445-d811-4811-911c-8fd02acd3345", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T21:02:14.822Z", + "completed":"2016-03-03T21:02:14.822Z", + "new_balance":"7110.80", + "value":"-510.54" + } + }, + { + "id":"c2bb341e-441b-4d02-ab00-585d19b55f63", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T12:37:50.713Z", + "completed":"2016-03-05T12:37:50.713Z", + "new_balance":"7062.14", + "value":"-48.66" + } + }, + { + "id":"de03dd5f-416b-481e-9dc8-65d3d0b131fa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T21:02:53.334Z", + "completed":"2016-03-05T21:02:53.334Z", + "new_balance":"7008.96", + "value":"-53.18" + } + }, + { + "id":"4d2d2ff3-2ebb-4d79-bb5d-d3d2a6bcd934", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T20:31:13.194Z", + "completed":"2016-03-07T20:31:13.194Z", + "new_balance":"6995.29", + "value":"-13.67" + } + }, + { + "id":"d98cc4d4-5627-423a-98af-52e24cd14970", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T15:30:23.084Z", + "completed":"2016-03-09T15:30:23.084Z", + "new_balance":"6942.11", + "value":"-53.18" + } + }, + { + "id":"e8e6326d-1040-4fd1-986c-e64eb0e4dbe2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:53:29.380Z", + "completed":"2016-03-11T08:53:29.380Z", + "new_balance":"6931.11", + "value":"-11.00" + } + }, + { + "id":"7977559c-8c93-4743-b771-17f731266f3c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T22:47:20.682Z", + "completed":"2016-03-13T22:47:20.682Z", + "new_balance":"6873.43", + "value":"-57.68" + } + }, + { + "id":"1f1f3548-c1f1-428b-9ab2-4ce0498f3bcd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T16:03:55.191Z", + "completed":"2016-03-14T16:03:55.191Z", + "new_balance":"6936.79", + "value":"63.36" + } + }, + { + "id":"94f1cc59-0625-4f17-a992-58c8c133d313", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T16:37:46.109Z", + "completed":"2016-03-14T16:37:46.109Z", + "new_balance":"6924.86", + "value":"-11.93" + } + }, + { + "id":"9960d988-9ff6-4a05-b264-5ea4d5429279", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T20:19:45.086Z", + "completed":"2016-03-15T20:19:45.086Z", + "new_balance":"6882.52", + "value":"-42.34" + } + }, + { + "id":"98471718-23ae-44be-b867-714b5cc31739", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T11:42:09.111Z", + "completed":"2016-03-26T11:42:09.111Z", + "new_balance":"6855.68", + "value":"-26.84" + } + }, + { + "id":"5479a588-f6c2-4da9-82a4-62774624d5dc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T12:43:49.343Z", + "completed":"2016-03-26T12:43:49.343Z", + "new_balance":"6830.31", + "value":"-25.37" + } + }, + { + "id":"9f668a60-d8ec-49c6-9ca0-92624986257d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T18:21:25.183Z", + "completed":"2016-03-26T18:21:25.183Z", + "new_balance":"6783.38", + "value":"-46.93" + } + }, + { + "id":"c4dddc63-7e25-4e6e-aa9c-6a84757b7eef", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T07:39:55.785Z", + "completed":"2016-03-27T07:39:55.785Z", + "new_balance":"6730.20", + "value":"-53.18" + } + }, + { + "id":"4acf9cb1-f2de-4694-9626-521d342b983c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T09:43:15.452Z", + "completed":"2016-03-27T09:43:15.452Z", + "new_balance":"7918.71", + "value":"1188.51" + } + }, + { + "id":"8963b062-96a0-4849-acc9-9ca8e219e73f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T23:10:12.018Z", + "completed":"2016-03-27T23:10:12.018Z", + "new_balance":"7852.13", + "value":"-66.58" + } + }, + { + "id":"0d661805-367c-4ac6-8c31-7d828bac4eab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T15:11:02.320Z", + "completed":"2016-03-28T15:11:02.320Z", + "new_balance":"7817.70", + "value":"-34.43" + } + }, + { + "id":"1b5189ba-7d1a-44f3-a296-bb03bf69fa99", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T10:42:29.194Z", + "completed":"2016-03-30T10:42:29.194Z", + "new_balance":"7775.36", + "value":"-42.34" + } + }, + { + "id":"6174de9e-87b5-4a24-ae30-be6e6344fb81", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T01:11:17.766Z", + "completed":"2016-04-01T01:11:17.766Z", + "new_balance":"7750.80", + "value":"-24.56" + } + }, + { + "id":"f4904168-786b-4b6b-9afb-da5f38237473", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T06:05:19.980Z", + "completed":"2016-04-01T06:05:19.980Z", + "new_balance":"7676.87", + "value":"-73.93" + } + }, + { + "id":"8cb3bd57-db12-4016-bfa3-ef2cd3ee788a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:17:42.059Z", + "completed":"2016-04-01T11:17:42.059Z", + "new_balance":"7615.00", + "value":"-61.87" + } + }, + { + "id":"2f2dc6a3-67ee-46c6-b16b-51e0596d178f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T12:52:17.645Z", + "completed":"2016-04-01T12:52:17.645Z", + "new_balance":"7580.57", + "value":"-34.43" + } + }, + { + "id":"d5b2359e-e1d7-47b5-b6de-29c852c382ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T15:48:26.201Z", + "completed":"2016-04-01T15:48:26.201Z", + "new_balance":"7070.03", + "value":"-510.54" + } + }, + { + "id":"c6db1e1b-1e58-43cd-998c-1889fc2b6f1d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T07:05:41.538Z", + "completed":"2016-04-05T07:05:41.538Z", + "new_balance":"7057.02", + "value":"-13.01" + } + }, + { + "id":"96d418e3-b312-4d81-a968-62e315a460df", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T11:43:53.786Z", + "completed":"2016-04-05T11:43:53.786Z", + "new_balance":"7034.33", + "value":"-22.69" + } + }, + { + "id":"83041c64-2217-4394-93e2-61e082d4bcaa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T16:08:28.532Z", + "completed":"2016-04-05T16:08:28.532Z", + "new_balance":"6990.35", + "value":"-43.98" + } + }, + { + "id":"c57dad81-d86f-4cfe-9428-39999254adc2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T20:52:45.854Z", + "completed":"2016-04-05T20:52:45.854Z", + "new_balance":"6937.17", + "value":"-53.18" + } + }, + { + "id":"e962de86-acbb-40c9-8e52-461585d13ee2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T01:30:34.107Z", + "completed":"2016-04-07T01:30:34.107Z", + "new_balance":"6907.29", + "value":"-29.88" + } + }, + { + "id":"fb340ce6-7ca9-4f87-86ca-c4b91e912e68", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T01:46:19.053Z", + "completed":"2016-04-09T01:46:19.053Z", + "new_balance":"6854.11", + "value":"-53.18" + } + }, + { + "id":"ef5f1af6-4c14-4ec2-aa74-e102ce43f853", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:54:46.247Z", + "completed":"2016-04-09T05:54:46.247Z", + "new_balance":"6829.24", + "value":"-24.87" + } + }, + { + "id":"1d6c8554-92cc-470f-8b04-b5f2d4d45ddb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T03:08:22.527Z", + "completed":"2016-04-10T03:08:22.527Z", + "new_balance":"6812.84", + "value":"-16.40" + } + }, + { + "id":"40a1e3de-09e8-4b1d-854b-b3cc94d9be53", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T04:14:23.068Z", + "completed":"2016-04-10T04:14:23.068Z", + "new_balance":"6773.67", + "value":"-39.17" + } + }, + { + "id":"465df78b-d414-4976-aee3-948eeb778133", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T05:25:11.649Z", + "completed":"2016-04-10T05:25:11.649Z", + "new_balance":"6753.60", + "value":"-20.07" + } + }, + { + "id":"74e47040-4060-4abf-a75f-63e1c2b1dcc5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T21:29:42.893Z", + "completed":"2016-04-10T21:29:42.893Z", + "new_balance":"6729.04", + "value":"-24.56" + } + }, + { + "id":"2f46a2a1-1e55-49f0-b16f-fdbbe76464a8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T02:27:03.194Z", + "completed":"2016-04-11T02:27:03.194Z", + "new_balance":"6698.64", + "value":"-30.40" + } + }, + { + "id":"77764b11-3f2b-4d53-b862-3005c37d98d3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T05:23:47.121Z", + "completed":"2016-04-11T05:23:47.121Z", + "new_balance":"6645.46", + "value":"-53.18" + } + }, + { + "id":"b35356c3-f22e-46f3-9639-0c24e18214e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T06:47:47.213Z", + "completed":"2016-04-11T06:47:47.213Z", + "new_balance":"6584.28", + "value":"-61.18" + } + }, + { + "id":"6703b316-46b1-4e02-ad2e-760e52d016c7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T10:28:39.680Z", + "completed":"2016-04-11T10:28:39.680Z", + "new_balance":"6552.96", + "value":"-31.32" + } + }, + { + "id":"4295fb0f-a476-4772-9b92-108e385ab648", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T21:13:02.399Z", + "completed":"2016-04-11T21:13:02.399Z", + "new_balance":"6546.81", + "value":"-6.15" + } + }, + { + "id":"adbcd006-1113-4dcb-aa6e-da6ec926b50f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T08:13:59.451Z", + "completed":"2016-04-21T08:13:59.451Z", + "new_balance":"6493.63", + "value":"-53.18" + } + }, + { + "id":"4603241c-2519-440d-a039-64b5a297555b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T05:44:00.347Z", + "completed":"2016-04-23T05:44:00.347Z", + "new_balance":"6477.80", + "value":"-15.83" + } + }, + { + "id":"aa3bb5e2-1ef1-471d-9822-097067b5df1d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T02:12:28.551Z", + "completed":"2016-04-29T02:12:28.551Z", + "new_balance":"7666.31", + "value":"1188.51" + } + }, + { + "id":"ab15287f-c6dc-4798-ab6e-1f84c8b91895", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T17:17:53.056Z", + "completed":"2016-04-29T17:17:53.056Z", + "new_balance":"7607.83", + "value":"-58.48" + } + }, + { + "id":"34884b1f-ce17-4944-a78c-1424cbe40dc3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T22:38:13.701Z", + "completed":"2016-04-29T22:38:13.701Z", + "new_balance":"7573.40", + "value":"-34.43" + } + }, + { + "id":"1b6ebdfe-66d5-4e38-8d5f-6abf8013fc74", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T12:50:06.087Z", + "completed":"2016-04-30T12:50:06.087Z", + "new_balance":"7531.06", + "value":"-42.34" + } + }, + { + "id":"9a72b0de-3e6f-48f5-909d-488cc6ce197b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:37:56.521Z", + "completed":"2016-05-02T03:37:56.521Z", + "new_balance":"7457.13", + "value":"-73.93" + } + }, + { + "id":"2109da7b-b4ae-4035-9c32-fc4c24138c15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T09:25:56.247Z", + "completed":"2016-05-02T09:25:56.247Z", + "new_balance":"7432.57", + "value":"-24.56" + } + }, + { + "id":"70559a9a-27c4-4a26-8a09-db8dc6e21b25", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T16:16:31.575Z", + "completed":"2016-05-02T16:16:31.575Z", + "new_balance":"7370.70", + "value":"-61.87" + } + }, + { + "id":"077b35a3-19c5-4be8-aaaf-4cbcdbf00471", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T16:46:12.913Z", + "completed":"2016-05-02T16:46:12.913Z", + "new_balance":"6860.16", + "value":"-510.54" + } + }, + { + "id":"c968328d-f9c5-48e3-a5f9-5a2946e6b55c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T19:05:53.774Z", + "completed":"2016-05-06T19:05:53.774Z", + "new_balance":"6816.18", + "value":"-43.98" + } + }, + { + "id":"d0b0567d-c247-4ffb-a4d5-55fb32b13276", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T08:29:34.544Z", + "completed":"2016-05-07T08:29:34.544Z", + "new_balance":"6786.30", + "value":"-29.88" + } + }, + { + "id":"04ad492c-e37d-4e41-811b-4caca0e7ada8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T12:24:22.334Z", + "completed":"2016-05-07T12:24:22.334Z", + "new_balance":"6775.39", + "value":"-10.91" + } + }, + { + "id":"fb02b583-f19e-468f-9d10-67e8d9f22e5e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T14:27:40.532Z", + "completed":"2016-05-07T14:27:40.532Z", + "new_balance":"6734.26", + "value":"-41.13" + } + }, + { + "id":"e65e50d7-e749-4d0a-901f-c06572d0f7ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T16:52:44.643Z", + "completed":"2016-05-07T16:52:44.643Z", + "new_balance":"6706.41", + "value":"-27.85" + } + }, + { + "id":"06c9240a-8a7d-4ed3-9ef4-997ff95c370c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T11:38:40.710Z", + "completed":"2016-05-08T11:38:40.710Z", + "new_balance":"6665.49", + "value":"-40.92" + } + }, + { + "id":"611a65ca-a23b-4a35-904a-f757a2f05594", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T02:59:53.598Z", + "completed":"2016-05-09T02:59:53.598Z", + "new_balance":"6631.06", + "value":"-34.43" + } + }, + { + "id":"bd4b35a2-3080-4ddf-8605-d413d1573fb0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:37:45.441Z", + "completed":"2016-05-13T19:37:45.441Z", + "new_balance":"6577.88", + "value":"-53.18" + } + }, + { + "id":"16857b83-494f-433d-9ce8-0c594ea99c27", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T10:27:53.828Z", + "completed":"2016-05-26T10:27:53.828Z", + "new_balance":"6566.97", + "value":"-10.91" + } + }, + { + "id":"9fb34e24-e27a-4859-9b48-86a6f236cba3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T15:22:27.123Z", + "completed":"2016-05-26T15:22:27.123Z", + "new_balance":"6513.79", + "value":"-53.18" + } + }, + { + "id":"16936c8a-bd28-425a-923c-93cf10e39f20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T17:00:18.701Z", + "completed":"2016-05-27T17:00:18.701Z", + "new_balance":"6497.05", + "value":"-16.74" + } + }, + { + "id":"c0dcbce3-80fb-4b4f-89a1-89169ea40fd1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T17:22:02.222Z", + "completed":"2016-05-27T17:22:02.222Z", + "new_balance":"6438.57", + "value":"-58.48" + } + }, + { + "id":"f8335a6d-e883-433d-b183-9d683df188ec", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T01:30:37.677Z", + "completed":"2016-05-30T01:30:37.677Z", + "new_balance":"6404.14", + "value":"-34.43" + } + }, + { + "id":"966adde9-7a14-4786-826c-e20636a8c843", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T10:38:37.307Z", + "completed":"2016-05-30T10:38:37.307Z", + "new_balance":"6361.80", + "value":"-42.34" + } + }, + { + "id":"a98568d9-02ec-490a-8832-0560eeca1ed9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T11:37:19.344Z", + "completed":"2016-05-30T11:37:19.344Z", + "new_balance":"7550.31", + "value":"1188.51" + } + }, + { + "id":"b35ce8a5-3cb9-42fe-93c9-eac341b4b525", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:03:10.097Z", + "completed":"2016-06-01T00:03:10.097Z", + "new_balance":"7488.44", + "value":"-61.87" + } + }, + { + "id":"f1879afb-56d8-4fad-89d3-01a7a2b3e906", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:44:44.191Z", + "completed":"2016-06-01T06:44:44.191Z", + "new_balance":"7435.26", + "value":"-53.18" + } + }, + { + "id":"483889e5-e950-4edc-92ef-ca68366c3d81", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T06:50:08.514Z", + "completed":"2016-06-01T06:50:08.514Z", + "new_balance":"7410.70", + "value":"-24.56" + } + }, + { + "id":"4e889356-35f3-4fc0-b33a-e1cb8810bb07", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T09:31:43.122Z", + "completed":"2016-06-01T09:31:43.122Z", + "new_balance":"7357.52", + "value":"-53.18" + } + }, + { + "id":"72066c68-ef94-4380-b4bc-9f16f4708bdf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T09:51:35.659Z", + "completed":"2016-06-01T09:51:35.659Z", + "new_balance":"7308.86", + "value":"-48.66" + } + }, + { + "id":"2a38a4e1-558b-4e63-8164-5391abab9ded", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T14:07:44.881Z", + "completed":"2016-06-01T14:07:44.881Z", + "new_balance":"7274.43", + "value":"-34.43" + } + }, + { + "id":"d7a8bea7-44e4-48ee-934c-d0e040520015", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:10:54.865Z", + "completed":"2016-06-01T16:10:54.865Z", + "new_balance":"7200.50", + "value":"-73.93" + } + }, + { + "id":"0b00a18d-7ce1-4310-86a9-5a7dd5159475", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T17:31:03.449Z", + "completed":"2016-06-01T17:31:03.449Z", + "new_balance":"7186.83", + "value":"-13.67" + } + }, + { + "id":"c221f4d0-7641-4402-bced-74a012644c66", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T22:40:19.183Z", + "completed":"2016-06-01T22:40:19.183Z", + "new_balance":"6676.29", + "value":"-510.54" + } + }, + { + "id":"f0309cab-abd5-458b-802a-b915fc789da6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T00:28:56.036Z", + "completed":"2016-06-02T00:28:56.036Z", + "new_balance":"6664.36", + "value":"-11.93" + } + }, + { + "id":"ac0979f8-656f-4dc0-bae4-05f50d7e224a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T07:41:07.580Z", + "completed":"2016-06-02T07:41:07.580Z", + "new_balance":"6653.36", + "value":"-11.00" + } + }, + { + "id":"6888e81e-b2a9-4f85-9d84-a63d5fd37ce2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T15:18:49.331Z", + "completed":"2016-06-02T15:18:49.331Z", + "new_balance":"6595.68", + "value":"-57.68" + } + }, + { + "id":"86916e31-ea15-4fe9-9ebb-38641eebade5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:37:27.726Z", + "completed":"2016-06-04T10:37:27.726Z", + "new_balance":"6570.31", + "value":"-25.37" + } + }, + { + "id":"638d6061-d127-4f0a-a389-45e995c6b713", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T12:48:18.617Z", + "completed":"2016-06-04T12:48:18.617Z", + "new_balance":"6527.97", + "value":"-42.34" + } + }, + { + "id":"a8897a35-9607-4e3d-9f19-09841ef833f8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T14:14:31.161Z", + "completed":"2016-06-04T14:14:31.161Z", + "new_balance":"6481.04", + "value":"-46.93" + } + }, + { + "id":"83dd65aa-a0b2-4aff-8ea0-287f2a7a1f88", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:12:29.340Z", + "completed":"2016-06-05T10:12:29.340Z", + "new_balance":"6454.20", + "value":"-26.84" + } + }, + { + "id":"481bd972-9cac-415d-9400-8850f599d35a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T21:19:04.222Z", + "completed":"2016-06-05T21:19:04.222Z", + "new_balance":"6387.62", + "value":"-66.58" + } + }, + { + "id":"35473b62-ff8d-4bc2-a60e-1d166c53a21a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T08:58:12.614Z", + "completed":"2016-06-18T08:58:12.614Z", + "new_balance":"6334.44", + "value":"-53.18" + } + }, + { + "id":"1a34e934-5b24-4c35-ae38-c8db75c2396a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T01:09:02.415Z", + "completed":"2016-06-30T01:09:02.415Z", + "new_balance":"6292.10", + "value":"-42.34" + } + }, + { + "id":"c8ac09a5-e21d-4631-b936-c8571b22680f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T08:27:58.540Z", + "completed":"2016-06-30T08:27:58.540Z", + "new_balance":"6257.67", + "value":"-34.43" + } + }, + { + "id":"f09ccbd6-81a9-4dcd-9d4e-8af233a40fd0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T11:41:36.677Z", + "completed":"2016-06-30T11:41:36.677Z", + "new_balance":"7446.18", + "value":"1188.51" + } + }, + { + "id":"4268c4dc-41c8-49df-941e-fd1b861aa825", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:52:10.475Z", + "completed":"2016-06-30T19:52:10.475Z", + "new_balance":"7404.65", + "value":"-41.53" + } + }, + { + "id":"a8773ddc-9028-4783-aea2-e1235f3cd5ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T10:58:26.222Z", + "completed":"2016-07-01T10:58:26.222Z", + "new_balance":"7342.78", + "value":"-61.87" + } + }, + { + "id":"a3ea64b9-f3ac-4bd2-9e7a-7447684a011e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T00:53:31.990Z", + "completed":"2016-07-03T00:53:31.990Z", + "new_balance":"7308.35", + "value":"-34.43" + } + }, + { + "id":"8aea3f24-c3d3-477e-b46f-e960a995b077", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T08:42:47.288Z", + "completed":"2016-07-03T08:42:47.288Z", + "new_balance":"7283.79", + "value":"-24.56" + } + }, + { + "id":"adaf1270-2e3b-401b-91e5-e800b25fea28", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T11:42:13.515Z", + "completed":"2016-07-03T11:42:13.515Z", + "new_balance":"7209.86", + "value":"-73.93" + } + }, + { + "id":"23f5d716-3bf7-4820-bc39-f826512ec735", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T16:24:52.493Z", + "completed":"2016-07-03T16:24:52.493Z", + "new_balance":"6699.32", + "value":"-510.54" + } + }, + { + "id":"679e0737-0f8e-4929-b8aa-c569dba282cd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T02:01:12.595Z", + "completed":"2016-07-05T02:01:12.595Z", + "new_balance":"6646.14", + "value":"-53.18" + } + }, + { + "id":"1a1bee68-f8de-42dc-8d48-6fdb808eed1a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T06:12:41.724Z", + "completed":"2016-07-05T06:12:41.724Z", + "new_balance":"6633.13", + "value":"-13.01" + } + }, + { + "id":"5c02be9b-e966-441c-b5a5-2631d3756d39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T08:34:35.962Z", + "completed":"2016-07-05T08:34:35.962Z", + "new_balance":"6589.15", + "value":"-43.98" + } + }, + { + "id":"95df0a89-2f05-4d51-b077-643fabd345c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T08:35:15.124Z", + "completed":"2016-07-06T08:35:15.124Z", + "new_balance":"6559.27", + "value":"-29.88" + } + }, + { + "id":"e8527dd4-c506-4120-8656-279fa85e84f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T18:32:39.349Z", + "completed":"2016-07-06T18:32:39.349Z", + "new_balance":"6536.58", + "value":"-22.69" + } + }, + { + "id":"265b8ea4-fe46-4226-92d3-a4f38b54a03f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T11:44:33.083Z", + "completed":"2016-07-07T11:44:33.083Z", + "new_balance":"6497.41", + "value":"-39.17" + } + }, + { + "id":"456deeda-e36b-4f01-89af-7649d8c98cbf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T09:43:55.512Z", + "completed":"2016-07-10T09:43:55.512Z", + "new_balance":"6472.54", + "value":"-24.87" + } + }, + { + "id":"159b9517-6346-4de8-b3a2-99997e29dd76", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T15:15:32.581Z", + "completed":"2016-07-10T15:15:32.581Z", + "new_balance":"6419.36", + "value":"-53.18" + } + }, + { + "id":"17395bf3-0abe-4d7c-8841-f35e7bc33f02", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T05:49:38.695Z", + "completed":"2016-07-12T05:49:38.695Z", + "new_balance":"6380.19", + "value":"-39.17" + } + }, + { + "id":"5a03739f-bb6f-4dec-82a0-a2cf426f87ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T13:33:51.725Z", + "completed":"2016-07-12T13:33:51.725Z", + "new_balance":"6355.63", + "value":"-24.56" + } + }, + { + "id":"40522e9f-8151-4540-8b0e-280302c6c173", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T20:56:40.308Z", + "completed":"2016-07-12T20:56:40.308Z", + "new_balance":"6335.56", + "value":"-20.07" + } + }, + { + "id":"c2695faf-180d-47f6-9b89-15c6bf1eaeb8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T00:00:55.204Z", + "completed":"2016-07-15T00:00:55.204Z", + "new_balance":"6319.16", + "value":"-16.40" + } + }, + { + "id":"a01c3b51-8305-4963-8357-c7623ab9b64b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T16:25:15.263Z", + "completed":"2016-07-16T16:25:15.263Z", + "new_balance":"6265.98", + "value":"-53.18" + } + }, + { + "id":"a7c46331-5330-4f14-9a6f-ae9cb0c48f5c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T22:24:32.722Z", + "completed":"2016-07-16T22:24:32.722Z", + "new_balance":"6259.83", + "value":"-6.15" + } + }, + { + "id":"ec78cc1f-318e-4d37-831d-665271f9dcd8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:02:50.254Z", + "completed":"2016-07-17T14:02:50.254Z", + "new_balance":"6198.65", + "value":"-61.18" + } + }, + { + "id":"b0997ff8-9234-4a13-ae16-b8c3a4ae2f39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T21:30:46.331Z", + "completed":"2016-07-17T21:30:46.331Z", + "new_balance":"6167.33", + "value":"-31.32" + } + }, + { + "id":"457d7e7f-52bf-4457-b916-4e80b94862fd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T07:49:49.289Z", + "completed":"2016-07-19T07:49:49.289Z", + "new_balance":"6136.93", + "value":"-30.40" + } + }, + { + "id":"79c7048e-25bf-4fd2-83b9-e84ed7fc1120", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T15:13:30.808Z", + "completed":"2016-07-20T15:13:30.808Z", + "new_balance":"6083.75", + "value":"-53.18" + } + }, + { + "id":"225ea687-f620-4720-ac9a-f4fca0c8a6ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T12:58:42.416Z", + "completed":"2016-07-23T12:58:42.416Z", + "new_balance":"6067.92", + "value":"-15.83" + } + }, + { + "id":"daeb0930-2861-4d6f-8ae0-688e2988c715", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T07:56:09.899Z", + "completed":"2016-07-26T07:56:09.899Z", + "new_balance":"6009.44", + "value":"-58.48" + } + }, + { + "id":"a0b0936a-067d-4e15-b0d0-22c013a7fef0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T22:44:24.659Z", + "completed":"2016-07-27T22:44:24.659Z", + "new_balance":"7197.95", + "value":"1188.51" + } + }, + { + "id":"2ae98065-bf0b-442f-b6fe-7e06c7dbcea7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T02:17:07.704Z", + "completed":"2016-07-28T02:17:07.704Z", + "new_balance":"7163.52", + "value":"-34.43" + } + }, + { + "id":"5ceee464-9c45-4ca9-a5fe-bbde82b10e01", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T15:05:20.124Z", + "completed":"2016-07-30T15:05:20.124Z", + "new_balance":"7121.18", + "value":"-42.34" + } + }, + { + "id":"eeeac420-ae4e-4cf4-abe0-79c9ca29d55f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T00:29:06.130Z", + "completed":"2016-08-01T00:29:06.130Z", + "new_balance":"7059.31", + "value":"-61.87" + } + }, + { + "id":"3f3c4777-f774-4ef9-9c88-cb9f773b41f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T03:09:37.769Z", + "completed":"2016-08-03T03:09:37.769Z", + "new_balance":"7034.75", + "value":"-24.56" + } + }, + { + "id":"1ec6c25c-1158-4bee-ae3b-428f3bf24a16", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T03:28:52.184Z", + "completed":"2016-08-03T03:28:52.184Z", + "new_balance":"6524.21", + "value":"-510.54" + } + }, + { + "id":"a23dad6f-a1df-4ac1-bfc2-dc9c98dd3d13", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T08:39:26.099Z", + "completed":"2016-08-03T08:39:26.099Z", + "new_balance":"6489.78", + "value":"-34.43" + } + }, + { + "id":"c0d28549-5b8a-404d-9ade-7b720fa5c543", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T09:56:24.420Z", + "completed":"2016-08-03T09:56:24.420Z", + "new_balance":"6415.85", + "value":"-73.93" + } + }, + { + "id":"494c925d-95ae-4527-841c-eb96988686ca", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T07:56:49.044Z", + "completed":"2016-08-08T07:56:49.044Z", + "new_balance":"6371.87", + "value":"-43.98" + } + }, + { + "id":"6b828ce1-bb87-4c75-928b-14d35b311b4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T23:06:42.556Z", + "completed":"2016-08-08T23:06:42.556Z", + "new_balance":"6318.69", + "value":"-53.18" + } + }, + { + "id":"493866f9-213e-4563-a72e-e5271e623ab8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T00:16:22.717Z", + "completed":"2016-08-11T00:16:22.717Z", + "new_balance":"6329.58", + "value":"10.89" + } + }, + { + "id":"72340fc8-2e5e-463d-83ee-101e6d7c8267", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T09:33:17.149Z", + "completed":"2016-08-13T09:33:17.149Z", + "new_balance":"6299.70", + "value":"-29.88" + } + }, + { + "id":"3871452b-e270-4a5e-83b5-41d3d3ab613e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T07:18:39.136Z", + "completed":"2016-08-14T07:18:39.136Z", + "new_balance":"6271.85", + "value":"-27.85" + } + }, + { + "id":"6dea2a52-e7c5-4510-ae67-a56833269c7d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T02:21:19.557Z", + "completed":"2016-08-17T02:21:19.557Z", + "new_balance":"6260.94", + "value":"-10.91" + } + }, + { + "id":"be53e40f-95e7-4d00-a1eb-ccfd38b1e9ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T00:53:42.825Z", + "completed":"2016-08-21T00:53:42.825Z", + "new_balance":"6219.81", + "value":"-41.13" + } + }, + { + "id":"4dec0e75-c20a-401c-9fb7-9f00ceb2b07a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T11:54:12.600Z", + "completed":"2016-08-23T11:54:12.600Z", + "new_balance":"6178.89", + "value":"-40.92" + } + }, + { + "id":"d34ad76a-40f3-4a90-8aaa-2b8e2e1493f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:26:52.804Z", + "completed":"2016-08-23T23:26:52.804Z", + "new_balance":"6125.71", + "value":"-53.18" + } + }, + { + "id":"74e9a0c7-e752-4c2f-9af5-fd18e1f11f75", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T08:59:59.645Z", + "completed":"2016-08-24T08:59:59.645Z", + "new_balance":"6114.80", + "value":"-10.91" + } + }, + { + "id":"824df34d-a30c-41f4-ac55-1010db262347", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T05:32:36.805Z", + "completed":"2016-08-27T05:32:36.805Z", + "new_balance":"6056.32", + "value":"-58.48" + } + }, + { + "id":"23443c1f-41ea-4487-b343-7a9c25287170", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:46:12.328Z", + "completed":"2016-08-27T15:46:12.328Z", + "new_balance":"6039.58", + "value":"-16.74" + } + }, + { + "id":"71da3702-039c-4c9e-aa6d-3de60914f03c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T21:58:50.487Z", + "completed":"2016-08-27T21:58:50.487Z", + "new_balance":"7228.09", + "value":"1188.51" + } + }, + { + "id":"cd04f543-4611-446b-a6a0-8a94cce85a82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T01:21:33.541Z", + "completed":"2016-08-28T01:21:33.541Z", + "new_balance":"7193.66", + "value":"-34.43" + } + }, + { + "id":"880404dc-731f-4bf9-9816-7103218694b0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T18:04:07.477Z", + "completed":"2016-08-30T18:04:07.477Z", + "new_balance":"7151.32", + "value":"-42.34" + } + }, + { + "id":"2eb0bac5-35b1-405b-be33-e3e9ac5f7a71", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:45:08.146Z", + "completed":"2016-09-01T16:45:08.146Z", + "new_balance":"7089.45", + "value":"-61.87" + } + }, + { + "id":"f3ccab3e-48ac-48a8-9cca-207608f8680e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T04:00:26.712Z", + "completed":"2016-09-03T04:00:26.712Z", + "new_balance":"7015.52", + "value":"-73.93" + } + }, + { + "id":"422e8c57-1915-4fe2-bc83-c22e6e29828e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T06:35:02.209Z", + "completed":"2016-09-03T06:35:02.209Z", + "new_balance":"6990.96", + "value":"-24.56" + } + }, + { + "id":"99c8ae27-7a4a-4193-a59a-307dd9d31a0b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T14:54:49.547Z", + "completed":"2016-09-03T14:54:49.547Z", + "new_balance":"6956.53", + "value":"-34.43" + } + }, + { + "id":"0b91c877-e19f-4744-a7be-3ccbe2e348df", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T20:13:13.796Z", + "completed":"2016-09-03T20:13:13.796Z", + "new_balance":"6445.99", + "value":"-510.54" + } + }, + { + "id":"b2e465db-c84d-4e17-ad5e-8bad13243824", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T10:59:19.947Z", + "completed":"2016-09-05T10:59:19.947Z", + "new_balance":"6397.33", + "value":"-48.66" + } + }, + { + "id":"e60df747-4083-4bea-9484-6d7c285512c1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T20:12:39.360Z", + "completed":"2016-09-05T20:12:39.360Z", + "new_balance":"6344.15", + "value":"-53.18" + } + }, + { + "id":"ab446016-a012-4ae9-90bf-9c89dbb60099", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T22:53:52.988Z", + "completed":"2016-09-07T22:53:52.988Z", + "new_balance":"6330.48", + "value":"-13.67" + } + }, + { + "id":"1c22c680-1bf0-44a2-8190-2bcd2a0f192f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T17:35:50.217Z", + "completed":"2016-09-09T17:35:50.217Z", + "new_balance":"6277.30", + "value":"-53.18" + } + }, + { + "id":"21573c81-662c-4ec9-a320-3974370629db", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T05:09:03.826Z", + "completed":"2016-09-11T05:09:03.826Z", + "new_balance":"6266.30", + "value":"-11.00" + } + }, + { + "id":"37a676a9-d4f4-4adb-b07a-2cb3a8490a2f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:41:00.673Z", + "completed":"2016-09-13T09:41:00.673Z", + "new_balance":"6208.62", + "value":"-57.68" + } + }, + { + "id":"6801958d-4e16-48af-90fb-251aa6bf04d3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T04:20:35.428Z", + "completed":"2016-09-14T04:20:35.428Z", + "new_balance":"6196.69", + "value":"-11.93" + } + }, + { + "id":"4a0bf65f-9840-4065-b5e4-102c744d2bed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T12:30:44.801Z", + "completed":"2016-09-14T12:30:44.801Z", + "new_balance":"6260.05", + "value":"63.36" + } + }, + { + "id":"54b69625-1483-401f-9177-fe571b0c3abf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T05:41:11.466Z", + "completed":"2016-09-15T05:41:11.466Z", + "new_balance":"6217.71", + "value":"-42.34" + } + }, + { + "id":"72282c12-b8f3-4c6e-bb2f-dea5538b929d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:34:31.465Z", + "completed":"2016-09-26T11:34:31.465Z", + "new_balance":"6192.34", + "value":"-25.37" + } + }, + { + "id":"5d7a2827-11c1-4e28-9460-2a02bdfb9e4b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T17:51:20.279Z", + "completed":"2016-09-26T17:51:20.279Z", + "new_balance":"6165.50", + "value":"-26.84" + } + }, + { + "id":"f110d9c5-886e-4054-bb40-1891a7e9e0cb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T22:17:55.680Z", + "completed":"2016-09-26T22:17:55.680Z", + "new_balance":"6118.57", + "value":"-46.93" + } + }, + { + "id":"b5258913-4060-4ba5-b728-b3894b9828be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T11:00:41.014Z", + "completed":"2016-09-27T11:00:41.014Z", + "new_balance":"6051.99", + "value":"-66.58" + } + }, + { + "id":"ef516d66-7774-4026-881b-7366aa002925", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T19:17:29.780Z", + "completed":"2016-09-27T19:17:29.780Z", + "new_balance":"5998.81", + "value":"-53.18" + } + }, + { + "id":"82c9a4aa-8e00-4933-b87a-e41fccd673e7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T22:34:35.248Z", + "completed":"2016-09-27T22:34:35.248Z", + "new_balance":"7187.32", + "value":"1188.51" + } + }, + { + "id":"56b17aba-47f4-4a27-a7a9-a4a7bffc3e19", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T09:54:59.127Z", + "completed":"2016-09-28T09:54:59.127Z", + "new_balance":"7152.89", + "value":"-34.43" + } + }, + { + "id":"dabe3152-db57-4ceb-bdd6-7580490254d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T00:14:06.414Z", + "completed":"2016-09-30T00:14:06.414Z", + "new_balance":"7110.55", + "value":"-42.34" + } + }, + { + "id":"fd7279a7-41ba-42e9-9e76-9b17cfaa7061", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T07:14:51.554Z", + "completed":"2016-10-01T07:14:51.554Z", + "new_balance":"6600.01", + "value":"-510.54" + } + }, + { + "id":"ec8a3a85-b79f-4325-8527-76ed40284321", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T15:54:32.988Z", + "completed":"2016-10-01T15:54:32.988Z", + "new_balance":"6526.08", + "value":"-73.93" + } + }, + { + "id":"d9ab4f26-8638-407a-a5c8-be8ab67fca98", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T16:17:52.739Z", + "completed":"2016-10-01T16:17:52.739Z", + "new_balance":"6491.65", + "value":"-34.43" + } + }, + { + "id":"45c4f4ec-1625-4bf4-bd49-4970ce926662", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T22:16:46.907Z", + "completed":"2016-10-01T22:16:46.907Z", + "new_balance":"6429.78", + "value":"-61.87" + } + }, + { + "id":"6ed94caf-d72d-49b8-8a86-f21065da4c20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T23:48:48.545Z", + "completed":"2016-10-01T23:48:48.545Z", + "new_balance":"6405.22", + "value":"-24.56" + } + }, + { + "id":"25b9a049-c775-477d-9718-ffb38abd9a8d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:23:30.432Z", + "completed":"2016-10-05T05:23:30.432Z", + "new_balance":"6361.24", + "value":"-43.98" + } + }, + { + "id":"f2805184-c153-43fd-b8b1-64c398e7cd98", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T06:00:37.859Z", + "completed":"2016-10-05T06:00:37.859Z", + "new_balance":"6308.06", + "value":"-53.18" + } + }, + { + "id":"d08227dc-f671-4688-85fb-f3c1d9d42dd1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T06:50:46.305Z", + "completed":"2016-10-05T06:50:46.305Z", + "new_balance":"6285.37", + "value":"-22.69" + } + }, + { + "id":"b3e0d5df-3ebd-4449-b726-6176cbdcaa43", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T23:39:38.369Z", + "completed":"2016-10-05T23:39:38.369Z", + "new_balance":"6272.36", + "value":"-13.01" + } + }, + { + "id":"39ef1790-f9d5-49dd-a9c9-366b2c167e8d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T18:19:38.929Z", + "completed":"2016-10-07T18:19:38.929Z", + "new_balance":"6242.48", + "value":"-29.88" + } + }, + { + "id":"62c625b3-f49f-4e57-a262-0d3a3d55ac68", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T19:04:17.489Z", + "completed":"2016-10-09T19:04:17.489Z", + "new_balance":"6217.61", + "value":"-24.87" + } + }, + { + "id":"70606eaa-eead-4b2a-9ee3-4f6be3dcd3ee", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T21:02:43.494Z", + "completed":"2016-10-09T21:02:43.494Z", + "new_balance":"6164.43", + "value":"-53.18" + } + }, + { + "id":"310a6f70-bf08-481d-ba4f-c90c2731c027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T07:40:34.599Z", + "completed":"2016-10-10T07:40:34.599Z", + "new_balance":"6125.26", + "value":"-39.17" + } + }, + { + "id":"9f326019-5464-4f7a-bc7c-1740d267037f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T10:16:34.057Z", + "completed":"2016-10-10T10:16:34.057Z", + "new_balance":"6108.86", + "value":"-16.40" + } + }, + { + "id":"c4dcfae5-8925-42ea-b050-ae5439bd855a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T16:06:06.601Z", + "completed":"2016-10-10T16:06:06.601Z", + "new_balance":"6084.30", + "value":"-24.56" + } + }, + { + "id":"cd4d0175-eb69-4f09-ad88-bf9de3cbfe44", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T17:28:52.104Z", + "completed":"2016-10-10T17:28:52.104Z", + "new_balance":"6064.23", + "value":"-20.07" + } + }, + { + "id":"3fbdad57-1f76-4430-8cf6-2c83f3075985", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T00:41:10.852Z", + "completed":"2016-10-11T00:41:10.852Z", + "new_balance":"6003.05", + "value":"-61.18" + } + }, + { + "id":"b3c2f5d1-130e-44b3-92ba-f96795583b0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T02:55:02.592Z", + "completed":"2016-10-11T02:55:02.592Z", + "new_balance":"5971.73", + "value":"-31.32" + } + }, + { + "id":"3797e102-dedd-48c6-afac-54af505dd505", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T11:05:18.217Z", + "completed":"2016-10-11T11:05:18.217Z", + "new_balance":"5918.55", + "value":"-53.18" + } + }, + { + "id":"1bb3dae2-14b7-4c9f-be87-fdb2312e63ec", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:20:36.227Z", + "completed":"2016-10-11T17:20:36.227Z", + "new_balance":"5912.40", + "value":"-6.15" + } + }, + { + "id":"f3340b0f-355d-43a4-b5e4-01d0552cd874", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T23:59:59.896Z", + "completed":"2016-10-11T23:59:59.896Z", + "new_balance":"5882.00", + "value":"-30.40" + } + }, + { + "id":"1b0fbb78-8f10-48b7-a496-2165a6ec7dd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T22:23:48.565Z", + "completed":"2016-10-21T22:23:48.565Z", + "new_balance":"5828.82", + "value":"-53.18" + } + }, + { + "id":"a3f1d072-2233-40a6-af2d-0db9f9e0efe3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T14:24:04.376Z", + "completed":"2016-10-23T14:24:04.376Z", + "new_balance":"5812.99", + "value":"-15.83" + } + }, + { + "id":"e39fc1e0-9cb4-4874-b718-15cd12419718", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T03:48:54.635Z", + "completed":"2016-10-29T03:48:54.635Z", + "new_balance":"5754.51", + "value":"-58.48" + } + }, + { + "id":"95bd67c3-d32c-487c-bef1-c6245ddc91a4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T04:55:31.487Z", + "completed":"2016-10-29T04:55:31.487Z", + "new_balance":"5720.08", + "value":"-34.43" + } + }, + { + "id":"40c90ecd-4756-4d6e-8221-0f109d6da691", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T21:50:19.872Z", + "completed":"2016-10-29T21:50:19.872Z", + "new_balance":"6908.59", + "value":"1188.51" + } + }, + { + "id":"7bff6033-758c-4688-9da9-a5dc95e3a4d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T22:44:44.269Z", + "completed":"2016-10-30T22:44:44.269Z", + "new_balance":"6866.25", + "value":"-42.34" + } + }, + { + "id":"d4ea0db1-cb7d-429d-bcea-26edb8ff8a12", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T01:10:07.804Z", + "completed":"2016-11-02T01:10:07.804Z", + "new_balance":"6804.38", + "value":"-61.87" + } + }, + { + "id":"3eba416d-7740-4596-8e7e-33d8861dc050", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T02:11:07.475Z", + "completed":"2016-11-02T02:11:07.475Z", + "new_balance":"6730.45", + "value":"-73.93" + } + }, + { + "id":"d3bf1b47-e963-4683-aca2-a42c6a6b3be6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T02:27:40.150Z", + "completed":"2016-11-02T02:27:40.150Z", + "new_balance":"6705.89", + "value":"-24.56" + } + }, + { + "id":"fbce5ded-38c2-4262-b10e-88ed25324f6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:49:15.076Z", + "completed":"2016-11-02T19:49:15.076Z", + "new_balance":"6195.35", + "value":"-510.54" + } + }, + { + "id":"dedd5ef7-031c-4e8f-b40a-3d167879e58a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T05:06:03.776Z", + "completed":"2016-11-06T05:06:03.776Z", + "new_balance":"6151.37", + "value":"-43.98" + } + }, + { + "id":"d1bca9ad-6aea-4235-9542-fdaf4d0c4a21", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:06:10.094Z", + "completed":"2016-11-07T07:06:10.094Z", + "new_balance":"6140.46", + "value":"-10.91" + } + }, + { + "id":"63f83cb6-e9f1-4cf7-a47c-bddba4e01b73", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T13:06:19.125Z", + "completed":"2016-11-07T13:06:19.125Z", + "new_balance":"6099.33", + "value":"-41.13" + } + }, + { + "id":"c736c9ec-f9c2-4903-9d9d-364bbed88803", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T13:09:09.339Z", + "completed":"2016-11-07T13:09:09.339Z", + "new_balance":"6071.48", + "value":"-27.85" + } + }, + { + "id":"ba5545ec-acaf-4727-95fd-884b9e9274a0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:42:07.787Z", + "completed":"2016-11-07T17:42:07.787Z", + "new_balance":"6041.60", + "value":"-29.88" + } + }, + { + "id":"2bd8b4ec-da44-435c-bf50-037736f352d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:22:53.153Z", + "completed":"2016-11-08T07:22:53.153Z", + "new_balance":"6000.68", + "value":"-40.92" + } + }, + { + "id":"e1d484bb-1322-48eb-9fbc-148e6c9b3847", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T19:46:31.277Z", + "completed":"2016-11-09T19:46:31.277Z", + "new_balance":"5966.25", + "value":"-34.43" + } + }, + { + "id":"48acf29c-3451-40ad-9363-207390c99dd4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T12:22:05.806Z", + "completed":"2016-11-13T12:22:05.806Z", + "new_balance":"5913.07", + "value":"-53.18" + } + }, + { + "id":"4b8748ee-dd47-437e-b138-8c3873db3fac", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:54:09.744Z", + "completed":"2016-11-26T01:54:09.744Z", + "new_balance":"5859.89", + "value":"-53.18" + } + }, + { + "id":"cd60541d-8c68-47e9-8f2b-15c574f61ff2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T18:19:24.508Z", + "completed":"2016-11-26T18:19:24.508Z", + "new_balance":"5848.98", + "value":"-10.91" + } + }, + { + "id":"69e061b1-67da-4183-82ec-558492bef2bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T09:26:57.831Z", + "completed":"2016-11-27T09:26:57.831Z", + "new_balance":"5832.24", + "value":"-16.74" + } + }, + { + "id":"e4a5698b-e4c5-4e4c-a2cf-fcc84aa217bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T15:01:24.521Z", + "completed":"2016-11-27T15:01:24.521Z", + "new_balance":"5773.76", + "value":"-58.48" + } + }, + { + "id":"b9b845d4-4c51-4508-9581-56eb763ebbdb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T18:01:02.428Z", + "completed":"2016-11-30T18:01:02.428Z", + "new_balance":"5731.42", + "value":"-42.34" + } + }, + { + "id":"e2cce611-0192-44a7-a63e-2f082a5f230c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T23:16:27.874Z", + "completed":"2016-11-30T23:16:27.874Z", + "new_balance":"6919.93", + "value":"1188.51" + } + }, + { + "id":"68431030-8f81-482d-b7e3-78a496168bf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T23:17:12.950Z", + "completed":"2016-11-30T23:17:12.950Z", + "new_balance":"6885.50", + "value":"-34.43" + } + }, + { + "id":"36feb738-e47e-459a-ba4e-e3ce2d9712a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T00:24:44.920Z", + "completed":"2016-12-01T00:24:44.920Z", + "new_balance":"6836.84", + "value":"-48.66" + } + }, + { + "id":"17aea6c8-07b2-4f6e-8a1b-0e79448535cb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T01:50:54.658Z", + "completed":"2016-12-01T01:50:54.658Z", + "new_balance":"6812.28", + "value":"-24.56" + } + }, + { + "id":"0591b473-c65f-4ef3-905a-548863bc4733", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T03:40:28.861Z", + "completed":"2016-12-01T03:40:28.861Z", + "new_balance":"6777.85", + "value":"-34.43" + } + }, + { + "id":"cc152936-8a77-47e5-8700-9b96e8912f34", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T03:44:32.413Z", + "completed":"2016-12-01T03:44:32.413Z", + "new_balance":"6715.98", + "value":"-61.87" + } + }, + { + "id":"8d96fcaf-c1bc-4902-acb3-a0a28e22064f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T06:29:25.153Z", + "completed":"2016-12-01T06:29:25.153Z", + "new_balance":"6662.80", + "value":"-53.18" + } + }, + { + "id":"64c59bbe-f4a7-4210-ae82-91ccc9300f1b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T07:46:24.481Z", + "completed":"2016-12-01T07:46:24.481Z", + "new_balance":"6609.62", + "value":"-53.18" + } + }, + { + "id":"f05c1bc8-d31a-492c-8241-24660938dd3c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T07:50:55.021Z", + "completed":"2016-12-01T07:50:55.021Z", + "new_balance":"6099.08", + "value":"-510.54" + } + }, + { + "id":"755b8612-df1f-460b-9270-5766352ad253", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T11:56:33.811Z", + "completed":"2016-12-01T11:56:33.811Z", + "new_balance":"6025.15", + "value":"-73.93" + } + }, + { + "id":"d8a5fac6-98ec-4ad1-9e9c-f719f444f137", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:37:45.130Z", + "completed":"2016-12-01T13:37:45.130Z", + "new_balance":"6011.48", + "value":"-13.67" + } + }, + { + "id":"30519192-5806-4cc9-a935-944a9692cbe7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T10:51:48.644Z", + "completed":"2016-12-02T10:51:48.644Z", + "new_balance":"6000.48", + "value":"-11.00" + } + }, + { + "id":"534db921-61c3-4e64-8248-08d5639f7005", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T11:56:46.493Z", + "completed":"2016-12-02T11:56:46.493Z", + "new_balance":"5988.55", + "value":"-11.93" + } + }, + { + "id":"756ef5a1-0dd2-491a-8478-7a8cea40bbfc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:23:24.288Z", + "completed":"2016-12-02T20:23:24.288Z", + "new_balance":"5930.87", + "value":"-57.68" + } + }, + { + "id":"a4ae5f6d-33d7-484a-b452-995924d32df4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T06:07:49.570Z", + "completed":"2016-12-04T06:07:49.570Z", + "new_balance":"5883.94", + "value":"-46.93" + } + }, + { + "id":"866b374d-3ac3-4bbe-9038-043afbec1d56", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T13:10:27.512Z", + "completed":"2016-12-04T13:10:27.512Z", + "new_balance":"5841.60", + "value":"-42.34" + } + }, + { + "id":"5c2470fd-d4d1-4d4e-884f-70ac5e8e1209", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T15:02:50.644Z", + "completed":"2016-12-04T15:02:50.644Z", + "new_balance":"5816.23", + "value":"-25.37" + } + }, + { + "id":"d2c95d02-47e2-479a-9da5-855504b056eb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T16:31:52.129Z", + "completed":"2016-12-05T16:31:52.129Z", + "new_balance":"5749.65", + "value":"-66.58" + } + }, + { + "id":"36612fdc-1af4-4b43-a87b-c63ed9e3a8c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T20:38:10.700Z", + "completed":"2016-12-05T20:38:10.700Z", + "new_balance":"5722.81", + "value":"-26.84" + } + }, + { + "id":"ab6f022f-7e2d-4bef-a573-3fe49090ed26", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T12:28:56.691Z", + "completed":"2016-12-18T12:28:56.691Z", + "new_balance":"5669.63", + "value":"-53.18" + } + }, + { + "id":"bf5f2db8-7d35-44cc-b74f-4652be622a55", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T02:04:28.276Z", + "completed":"2016-12-30T02:04:28.276Z", + "new_balance":"5628.10", + "value":"-41.53" + } + }, + { + "id":"b56ba5d3-f3e0-4676-b406-72a84935582e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T13:12:15.421Z", + "completed":"2016-12-30T13:12:15.421Z", + "new_balance":"6816.61", + "value":"1188.51" + } + }, + { + "id":"85242edc-53f7-4f3c-b5d9-7892f0e6911d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T16:24:37.917Z", + "completed":"2016-12-30T16:24:37.917Z", + "new_balance":"6774.27", + "value":"-42.34" + } + }, + { + "id":"d1718d0a-fc09-4f91-8d1b-087a6fb6ffe8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T23:26:41.744Z", + "completed":"2016-12-30T23:26:41.744Z", + "new_balance":"6739.84", + "value":"-34.43" + } + }, + { + "id":"7145e6c4-9f1e-485c-ad3a-8a35234760d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:21:43.073Z", + "completed":"2017-01-01T05:21:43.073Z", + "new_balance":"6677.97", + "value":"-61.87" + } + }, + { + "id":"443a5026-dc60-4901-8497-b647e3f2458c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T06:02:23.647Z", + "completed":"2017-01-01T06:02:23.647Z", + "new_balance":"6616.10", + "value":"-61.87" + } + }, + { + "id":"4594eade-4b4a-45e7-a3c2-d5feadd4ad96", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T01:14:21.661Z", + "completed":"2017-01-03T01:14:21.661Z", + "new_balance":"6591.54", + "value":"-24.56" + } + }, + { + "id":"9c975186-51bb-4e9e-8c9b-58886faff508", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T09:26:50.268Z", + "completed":"2017-01-03T09:26:50.268Z", + "new_balance":"6557.11", + "value":"-34.43" + } + }, + { + "id":"a5c136f7-31cb-4a4b-b728-b8347651b671", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T16:26:52.192Z", + "completed":"2017-01-03T16:26:52.192Z", + "new_balance":"6483.18", + "value":"-73.93" + } + }, + { + "id":"cd863fbe-63e9-4455-97e1-4aea9ed19faa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T17:30:01.755Z", + "completed":"2017-01-03T17:30:01.755Z", + "new_balance":"5972.64", + "value":"-510.54" + } + }, + { + "id":"02a0a931-8e42-40ef-bc25-d69618b6ced9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T00:21:28.442Z", + "completed":"2017-01-05T00:21:28.442Z", + "new_balance":"5959.63", + "value":"-13.01" + } + }, + { + "id":"220e807a-6060-4272-ab9b-92628df1b5d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T06:14:48.663Z", + "completed":"2017-01-05T06:14:48.663Z", + "new_balance":"5915.65", + "value":"-43.98" + } + }, + { + "id":"51b41833-d3c9-4821-ab53-69669eb0f4fc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T16:56:01.502Z", + "completed":"2017-01-05T16:56:01.502Z", + "new_balance":"5862.47", + "value":"-53.18" + } + }, + { + "id":"0e730a69-e22c-42f5-9d3f-6963dc462ff8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:43:39.022Z", + "completed":"2017-01-06T06:43:39.022Z", + "new_balance":"5839.78", + "value":"-22.69" + } + }, + { + "id":"04903195-ddab-4209-8a50-a656e108ea54", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T19:03:40.245Z", + "completed":"2017-01-06T19:03:40.245Z", + "new_balance":"5809.90", + "value":"-29.88" + } + }, + { + "id":"d129e41c-e970-4514-abda-f898965c8732", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T07:47:44.344Z", + "completed":"2017-01-07T07:47:44.344Z", + "new_balance":"5770.73", + "value":"-39.17" + } + }, + { + "id":"74c1a026-fc79-4c22-96e2-c7815cb793bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T11:35:13.988Z", + "completed":"2017-01-10T11:35:13.988Z", + "new_balance":"5717.55", + "value":"-53.18" + } + }, + { + "id":"09e4165c-bf5f-44e7-b096-d30094b51965", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T23:31:48.501Z", + "completed":"2017-01-10T23:31:48.501Z", + "new_balance":"5692.68", + "value":"-24.87" + } + }, + { + "id":"3494eb3a-89b1-4dba-9514-3dd5d66d8677", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T02:12:59.919Z", + "completed":"2017-01-12T02:12:59.919Z", + "new_balance":"5672.61", + "value":"-20.07" + } + }, + { + "id":"24e61dab-1330-4f52-a455-99c112687d6d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T03:12:10.219Z", + "completed":"2017-01-12T03:12:10.219Z", + "new_balance":"5648.05", + "value":"-24.56" + } + }, + { + "id":"6d07ad49-4c97-4081-9650-1b3368a86b6a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:16:56.724Z", + "completed":"2017-01-12T13:16:56.724Z", + "new_balance":"5608.88", + "value":"-39.17" + } + }, + { + "id":"ecbb53cb-d168-411c-a66e-c32defa17a91", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T07:49:25.150Z", + "completed":"2017-01-15T07:49:25.150Z", + "new_balance":"5592.48", + "value":"-16.40" + } + }, + { + "id":"e487040b-d8b3-4019-b1b8-daf683d6d503", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T01:36:13.130Z", + "completed":"2017-01-16T01:36:13.130Z", + "new_balance":"5586.33", + "value":"-6.15" + } + }, + { + "id":"d0281577-ac40-41a3-bbee-715eae0fb594", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T04:58:03.912Z", + "completed":"2017-01-16T04:58:03.912Z", + "new_balance":"5533.15", + "value":"-53.18" + } + }, + { + "id":"90ff59af-d966-40b2-8b26-d166fd46e485", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:58:01.281Z", + "completed":"2017-01-17T18:58:01.281Z", + "new_balance":"5471.97", + "value":"-61.18" + } + }, + { + "id":"8911426f-26c1-4803-b8f0-f98a8d301b5a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T20:08:55.885Z", + "completed":"2017-01-17T20:08:55.885Z", + "new_balance":"5440.65", + "value":"-31.32" + } + }, + { + "id":"84030aba-b9c1-4f3e-9357-ecf18e6f07ab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T02:47:21.468Z", + "completed":"2017-01-19T02:47:21.468Z", + "new_balance":"5410.25", + "value":"-30.40" + } + }, + { + "id":"43c91572-0636-4cb5-8705-1a0a73883f6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:09:10.046Z", + "completed":"2017-01-20T19:09:10.046Z", + "new_balance":"5357.07", + "value":"-53.18" + } + }, + { + "id":"2699ce6b-f726-4004-bbab-e8a784003c2d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T02:33:22.885Z", + "completed":"2017-01-23T02:33:22.885Z", + "new_balance":"5341.24", + "value":"-15.83" + } + }, + { + "id":"97afb4b7-6ebe-4527-ad6c-4701ad98eb17", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T00:41:10.819Z", + "completed":"2017-01-26T00:41:10.819Z", + "new_balance":"5282.76", + "value":"-58.48" + } + }, + { + "id":"5850acc5-7368-4b09-ba7c-fd6c2b3680da", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T22:01:58.690Z", + "completed":"2017-01-27T22:01:58.690Z", + "new_balance":"6471.27", + "value":"1188.51" + } + }, + { + "id":"df62583e-1839-4d21-9c02-135ea30548c0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T00:06:39.474Z", + "completed":"2017-01-28T00:06:39.474Z", + "new_balance":"6436.84", + "value":"-34.43" + } + }, + { + "id":"bf222f83-4f2d-4aaf-8ec9-13022c210502", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T18:55:56.646Z", + "completed":"2017-01-30T18:55:56.646Z", + "new_balance":"6394.50", + "value":"-42.34" + } + }, + { + "id":"f87150ce-7161-49e7-8632-b5fcb3f0706b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T00:17:37.538Z", + "completed":"2017-02-03T00:17:37.538Z", + "new_balance":"6369.94", + "value":"-24.56" + } + }, + { + "id":"aecb7e42-ab49-46bc-afde-2ad370824dac", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T10:30:45.830Z", + "completed":"2017-02-03T10:30:45.830Z", + "new_balance":"6335.51", + "value":"-34.43" + } + }, + { + "id":"ff7ad9f8-5f5c-4f86-8a66-b9e72c315eff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T14:55:55.579Z", + "completed":"2017-02-03T14:55:55.579Z", + "new_balance":"6261.58", + "value":"-73.93" + } + }, + { + "id":"4d4e2c8c-2e2c-406d-ae78-c78c423be4a1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T19:54:05.089Z", + "completed":"2017-02-03T19:54:05.089Z", + "new_balance":"5751.04", + "value":"-510.54" + } + }, + { + "id":"441dd42f-cd1d-46b3-a787-1fec3729d958", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T03:08:19.839Z", + "completed":"2017-02-08T03:08:19.839Z", + "new_balance":"5707.06", + "value":"-43.98" + } + }, + { + "id":"cd71a3d8-0195-49b8-bfc5-0e5c0f81e0a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T16:54:22.350Z", + "completed":"2017-02-08T16:54:22.350Z", + "new_balance":"5653.88", + "value":"-53.18" + } + }, + { + "id":"bd09b82d-3d76-49f9-8c2b-6ca0b3eb5579", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T21:49:17.471Z", + "completed":"2017-02-11T21:49:17.471Z", + "new_balance":"5664.77", + "value":"10.89" + } + }, + { + "id":"57300aaa-e8c3-48ec-9b6f-fe10182048ca", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T05:13:09.482Z", + "completed":"2017-02-13T05:13:09.482Z", + "new_balance":"5634.89", + "value":"-29.88" + } + }, + { + "id":"ec08ab50-84bc-449e-a6d2-aed3123f4a39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T08:20:44.971Z", + "completed":"2017-02-14T08:20:44.971Z", + "new_balance":"5607.04", + "value":"-27.85" + } + }, + { + "id":"493b2a05-88f1-4d46-b0b5-9fed2f146247", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T07:40:03.476Z", + "completed":"2017-02-17T07:40:03.476Z", + "new_balance":"5596.13", + "value":"-10.91" + } + }, + { + "id":"b52bdd4a-d0e1-4b15-a2e7-37bc5e3c00fa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T11:58:12.410Z", + "completed":"2017-02-21T11:58:12.410Z", + "new_balance":"5555.00", + "value":"-41.13" + } + }, + { + "id":"c4f83fac-e981-480a-ae19-2d41cada1caa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T06:20:39.499Z", + "completed":"2017-02-23T06:20:39.499Z", + "new_balance":"5501.82", + "value":"-53.18" + } + }, + { + "id":"d68db910-3ae2-4c75-8d81-7c93b384abf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T18:11:45.694Z", + "completed":"2017-02-23T18:11:45.694Z", + "new_balance":"5460.90", + "value":"-40.92" + } + }, + { + "id":"5b4e5340-bf1e-41aa-9bd9-df094d0efe96", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T13:55:23.714Z", + "completed":"2017-02-24T13:55:23.714Z", + "new_balance":"5449.99", + "value":"-10.91" + } + }, + { + "id":"0baa9b34-8904-476d-b38d-692d8dcf2bab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T11:44:31.946Z", + "completed":"2017-02-27T11:44:31.946Z", + "new_balance":"5433.25", + "value":"-16.74" + } + }, + { + "id":"2d77145a-7140-4bbe-a8c1-d3b433a31807", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T12:18:32.613Z", + "completed":"2017-02-27T12:18:32.613Z", + "new_balance":"6621.76", + "value":"1188.51" + } + }, + { + "id":"7c1fd779-7715-4839-84d4-bf952db01bb6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T22:48:32.046Z", + "completed":"2017-02-27T22:48:32.046Z", + "new_balance":"6563.28", + "value":"-58.48" + } + }, + { + "id":"a7e7ba37-8712-4e23-86b4-c3a829fc415d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T00:03:11.802Z", + "completed":"2017-02-28T00:03:11.802Z", + "new_balance":"6520.94", + "value":"-42.34" + } + }, + { + "id":"5d3c3010-f735-46b8-b071-187ecbcba25e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T13:55:05.536Z", + "completed":"2017-02-28T13:55:05.536Z", + "new_balance":"6486.51", + "value":"-34.43" + } + }, + { + "id":"1b146143-185d-403b-a471-58a71d5b06a1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T15:42:52.681Z", + "completed":"2017-03-01T15:42:52.681Z", + "new_balance":"6424.64", + "value":"-61.87" + } + }, + { + "id":"6663e9d8-0ea6-4942-970f-e6dce6e19201", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T03:12:26.117Z", + "completed":"2017-03-03T03:12:26.117Z", + "new_balance":"6400.08", + "value":"-24.56" + } + }, + { + "id":"7bd0c1ac-4324-47b0-9770-d9b0485ee39a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T04:42:57.923Z", + "completed":"2017-03-03T04:42:57.923Z", + "new_balance":"6365.65", + "value":"-34.43" + } + }, + { + "id":"50c27fdc-12df-463a-a4c6-17607725fc22", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T08:46:27.111Z", + "completed":"2017-03-03T08:46:27.111Z", + "new_balance":"5855.11", + "value":"-510.54" + } + }, + { + "id":"a2fa10a0-7749-4810-90b3-e5b88183e952", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T17:43:48.122Z", + "completed":"2017-03-03T17:43:48.122Z", + "new_balance":"5781.18", + "value":"-73.93" + } + }, + { + "id":"69f1c5c3-816b-47e3-b61f-bc534289e544", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T09:15:01.740Z", + "completed":"2017-03-05T09:15:01.740Z", + "new_balance":"5732.52", + "value":"-48.66" + } + }, + { + "id":"e21c4a5e-898e-4c3e-94a9-7a48f951bd52", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T18:50:46.167Z", + "completed":"2017-03-05T18:50:46.167Z", + "new_balance":"5679.34", + "value":"-53.18" + } + }, + { + "id":"7a073fc8-4f3d-4016-ab65-6185b6f7d00e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T11:03:03.303Z", + "completed":"2017-03-07T11:03:03.303Z", + "new_balance":"5665.67", + "value":"-13.67" + } + }, + { + "id":"98bdeeb1-a4e0-46d8-a9c5-0a0e2c82c3be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T04:15:24.798Z", + "completed":"2017-03-09T04:15:24.798Z", + "new_balance":"5612.49", + "value":"-53.18" + } + }, + { + "id":"ef9d6438-1933-4b87-9913-9c8c26e5b2f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:33:22.908Z", + "completed":"2017-03-11T16:33:22.908Z", + "new_balance":"5601.49", + "value":"-11.00" + } + }, + { + "id":"edd84d09-4b75-45b0-8e9f-88ee3ce1a543", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T16:36:36.009Z", + "completed":"2017-03-13T16:36:36.009Z", + "new_balance":"5543.81", + "value":"-57.68" + } + }, + { + "id":"aae94866-b6ec-40e9-93b6-f65e17b4e80f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T03:09:28.581Z", + "completed":"2017-03-14T03:09:28.581Z", + "new_balance":"5607.17", + "value":"63.36" + } + }, + { + "id":"b3a1ebba-f7dc-413c-9ae7-378f9c2c3c66", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:26:39.019Z", + "completed":"2017-03-14T08:26:39.019Z", + "new_balance":"5595.24", + "value":"-11.93" + } + }, + { + "id":"0e0be849-87ac-4c0e-bc13-0251a9c6a2f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T10:09:58.298Z", + "completed":"2017-03-15T10:09:58.298Z", + "new_balance":"5552.90", + "value":"-42.34" + } + }, + { + "id":"9054b8f4-9d3a-4b31-bc29-e44e88818602", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T03:55:33.676Z", + "completed":"2017-03-26T03:55:33.676Z", + "new_balance":"5527.53", + "value":"-25.37" + } + }, + { + "id":"b911491a-1dff-4723-adc4-4184a69d2554", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T20:04:32.144Z", + "completed":"2017-03-26T20:04:32.144Z", + "new_balance":"5500.69", + "value":"-26.84" + } + }, + { + "id":"fd3f9c21-231d-4a3e-8351-dae0870d871c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T22:56:42.505Z", + "completed":"2017-03-26T22:56:42.505Z", + "new_balance":"5453.76", + "value":"-46.93" + } + }, + { + "id":"4febe9ee-ab9c-40c2-9288-00ab5252fc23", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T18:13:57.007Z", + "completed":"2017-03-27T18:13:57.007Z", + "new_balance":"6642.27", + "value":"1188.51" + } + }, + { + "id":"11b7ab0c-f467-4592-98cf-fc0ef2da1d15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T20:00:29.676Z", + "completed":"2017-03-27T20:00:29.676Z", + "new_balance":"6589.09", + "value":"-53.18" + } + }, + { + "id":"00a07d37-232e-40a6-8b9a-61b5d7f8245d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T21:41:36.121Z", + "completed":"2017-03-27T21:41:36.121Z", + "new_balance":"6522.51", + "value":"-66.58" + } + }, + { + "id":"f6170efe-c6f7-4ba9-9146-a438b5b456a0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T10:55:05.413Z", + "completed":"2017-03-28T10:55:05.413Z", + "new_balance":"6488.08", + "value":"-34.43" + } + }, + { + "id":"194feee8-c104-4e24-b40b-8e7a01224fe9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T23:30:23.073Z", + "completed":"2017-03-30T23:30:23.073Z", + "new_balance":"6445.74", + "value":"-42.34" + } + }, + { + "id":"37fd6ab4-e338-41f0-926b-901440464a92", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T04:45:09.877Z", + "completed":"2017-04-01T04:45:09.877Z", + "new_balance":"6383.87", + "value":"-61.87" + } + }, + { + "id":"1d579ccf-8c1c-46a1-9bd2-9096bc285f01", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T07:49:58.664Z", + "completed":"2017-04-01T07:49:58.664Z", + "new_balance":"6359.31", + "value":"-24.56" + } + }, + { + "id":"32188c16-b8f4-4d58-966b-dafa9bc56560", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T10:01:10.490Z", + "completed":"2017-04-01T10:01:10.490Z", + "new_balance":"5848.77", + "value":"-510.54" + } + }, + { + "id":"3e5b3bae-d359-4b41-8d23-50cc2e2da28d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T10:59:40.799Z", + "completed":"2017-04-01T10:59:40.799Z", + "new_balance":"5774.84", + "value":"-73.93" + } + }, + { + "id":"a603af4c-2abe-49aa-842b-9053e69da97a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T19:53:24.588Z", + "completed":"2017-04-01T19:53:24.588Z", + "new_balance":"5740.41", + "value":"-34.43" + } + }, + { + "id":"73ecbc41-f18e-4b69-aaa1-f15bd84f974d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T06:54:20.595Z", + "completed":"2017-04-05T06:54:20.595Z", + "new_balance":"5727.40", + "value":"-13.01" + } + }, + { + "id":"a34f457a-c604-48c7-bcba-64b43b914837", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T10:46:57.882Z", + "completed":"2017-04-05T10:46:57.882Z", + "new_balance":"5683.42", + "value":"-43.98" + } + }, + { + "id":"a2beee30-78d8-4831-8137-a313c3fdf98d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T15:33:21.293Z", + "completed":"2017-04-05T15:33:21.293Z", + "new_balance":"5630.24", + "value":"-53.18" + } + }, + { + "id":"8c4f9280-7bb9-486e-81b0-3ab3890ed27a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T23:34:24.435Z", + "completed":"2017-04-05T23:34:24.435Z", + "new_balance":"5607.55", + "value":"-22.69" + } + }, + { + "id":"0cc14c06-2ce1-4f17-b6df-651b92576bf0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T14:51:58.720Z", + "completed":"2017-04-07T14:51:58.720Z", + "new_balance":"5577.67", + "value":"-29.88" + } + }, + { + "id":"0c0523fc-ccab-4afd-9584-69951c01c79a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T18:02:27.574Z", + "completed":"2017-04-09T18:02:27.574Z", + "new_balance":"5524.49", + "value":"-53.18" + } + }, + { + "id":"cdb73660-a90a-4717-9a56-8bda324e012c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T23:18:59.512Z", + "completed":"2017-04-09T23:18:59.512Z", + "new_balance":"5499.62", + "value":"-24.87" + } + }, + { + "id":"f671e9aa-5ab1-416c-be56-d3a94c8cbcd4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T07:57:53.446Z", + "completed":"2017-04-10T07:57:53.446Z", + "new_balance":"5475.06", + "value":"-24.56" + } + }, + { + "id":"31147b01-5c47-42d3-a12c-33c8162729ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T08:25:08.581Z", + "completed":"2017-04-10T08:25:08.581Z", + "new_balance":"5435.89", + "value":"-39.17" + } + }, + { + "id":"d0e51904-bbb5-42a5-8261-054ba8853d6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T12:21:00.455Z", + "completed":"2017-04-10T12:21:00.455Z", + "new_balance":"5419.49", + "value":"-16.40" + } + }, + { + "id":"339c1f1c-5e9c-4a35-9a95-d7ca4d0029f2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:21:41.875Z", + "completed":"2017-04-10T19:21:41.875Z", + "new_balance":"5399.42", + "value":"-20.07" + } + }, + { + "id":"1e40a9ed-b680-425e-b17a-9d6a6aaca03f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T01:27:30.110Z", + "completed":"2017-04-11T01:27:30.110Z", + "new_balance":"5346.24", + "value":"-53.18" + } + }, + { + "id":"3d86c6e0-6807-47eb-a470-ab5626e19578", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:28:44.934Z", + "completed":"2017-04-11T04:28:44.934Z", + "new_balance":"5340.09", + "value":"-6.15" + } + }, + { + "id":"6ba6138a-630d-4f28-974e-678c57b8059a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T12:07:13.433Z", + "completed":"2017-04-11T12:07:13.433Z", + "new_balance":"5308.77", + "value":"-31.32" + } + }, + { + "id":"f3540cbd-019e-4b2d-a419-2ef12b656f8c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T19:25:51.499Z", + "completed":"2017-04-11T19:25:51.499Z", + "new_balance":"5247.59", + "value":"-61.18" + } + }, + { + "id":"34677dbb-5ee4-40a6-affe-9c4232d9dbb0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T20:05:28.474Z", + "completed":"2017-04-11T20:05:28.474Z", + "new_balance":"5217.19", + "value":"-30.40" + } + }, + { + "id":"d8c80b77-6998-4f2a-beb5-c52ab1592086", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:06:45.682Z", + "completed":"2017-04-21T23:06:45.682Z", + "new_balance":"5164.01", + "value":"-53.18" + } + }, + { + "id":"b57e0095-5ac2-4be0-af7b-14f077bcbc44", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T19:05:13.267Z", + "completed":"2017-04-23T19:05:13.267Z", + "new_balance":"5148.18", + "value":"-15.83" + } + }, + { + "id":"03f75950-02c0-467b-9d03-91d268bd68e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T05:27:21.812Z", + "completed":"2017-04-29T05:27:21.812Z", + "new_balance":"6336.69", + "value":"1188.51" + } + }, + { + "id":"9639991c-8841-4023-a05f-a2210d3ee6a5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T14:50:02.184Z", + "completed":"2017-04-29T14:50:02.184Z", + "new_balance":"6302.26", + "value":"-34.43" + } + }, + { + "id":"7bc7eaee-c503-49ff-aac4-f4b3454c4955", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T19:19:57.920Z", + "completed":"2017-04-29T19:19:57.920Z", + "new_balance":"6243.78", + "value":"-58.48" + } + }, + { + "id":"603a149f-4d65-4794-bdc1-d540672e7ed3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T00:10:01.046Z", + "completed":"2017-04-30T00:10:01.046Z", + "new_balance":"6201.44", + "value":"-42.34" + } + }, + { + "id":"5a13d82d-f84a-4680-a8f3-15d2f602cc82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T09:49:38.004Z", + "completed":"2017-05-02T09:49:38.004Z", + "new_balance":"5690.90", + "value":"-510.54" + } + }, + { + "id":"2b1ea1d3-bf82-49a8-b893-9ebb83af4330", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T17:55:22.122Z", + "completed":"2017-05-02T17:55:22.122Z", + "new_balance":"5666.34", + "value":"-24.56" + } + }, + { + "id":"5652331a-7505-49b3-9f85-fac564965c7f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T20:36:07.641Z", + "completed":"2017-05-02T20:36:07.641Z", + "new_balance":"5604.47", + "value":"-61.87" + } + }, + { + "id":"651cc95a-6483-4728-8b51-aba36600e2e8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T21:58:13.373Z", + "completed":"2017-05-02T21:58:13.373Z", + "new_balance":"5530.54", + "value":"-73.93" + } + }, + { + "id":"b6ef0834-86a7-46fd-a862-dbf436d07e20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T10:27:18.270Z", + "completed":"2017-05-06T10:27:18.270Z", + "new_balance":"5486.56", + "value":"-43.98" + } + }, + { + "id":"95828001-2897-4e26-9e7a-74351f66845e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:25:18.690Z", + "completed":"2017-05-07T02:25:18.690Z", + "new_balance":"5445.43", + "value":"-41.13" + } + }, + { + "id":"8a7ba397-b378-44eb-b51f-d64c9a2f4c20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T10:14:55.830Z", + "completed":"2017-05-07T10:14:55.830Z", + "new_balance":"5417.58", + "value":"-27.85" + } + }, + { + "id":"768d741c-ca24-48c0-9baa-ed369dc75603", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T11:37:32.132Z", + "completed":"2017-05-07T11:37:32.132Z", + "new_balance":"5387.70", + "value":"-29.88" + } + }, + { + "id":"0b8c5aa1-f0dd-4e8b-86b9-a91c1491fca5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T12:08:31.029Z", + "completed":"2017-05-07T12:08:31.029Z", + "new_balance":"5376.79", + "value":"-10.91" + } + }, + { + "id":"0d600fcf-45a9-471e-8266-0602f6b0e72f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T07:53:16.537Z", + "completed":"2017-05-08T07:53:16.537Z", + "new_balance":"5335.87", + "value":"-40.92" + } + }, + { + "id":"0851df81-5a64-4138-9c1b-8bb6e5dff340", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T18:33:53.819Z", + "completed":"2017-05-09T18:33:53.819Z", + "new_balance":"5301.44", + "value":"-34.43" + } + }, + { + "id":"444e1c84-ac65-4a49-aa0e-4e9cf105cb0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T20:14:13.326Z", + "completed":"2017-05-13T20:14:13.326Z", + "new_balance":"5248.26", + "value":"-53.18" + } + }, + { + "id":"2fdd42c5-3b11-4894-9e7a-8be6405cd458", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T06:40:47.120Z", + "completed":"2017-05-26T06:40:47.120Z", + "new_balance":"5237.35", + "value":"-10.91" + } + }, + { + "id":"788c75b7-b4c8-42d0-8e11-46b52c105d70", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T09:03:30.100Z", + "completed":"2017-05-26T09:03:30.100Z", + "new_balance":"5184.17", + "value":"-53.18" + } + }, + { + "id":"2fd3101d-65b8-47ba-9c74-d33bf7230d45", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T00:05:47.851Z", + "completed":"2017-05-27T00:05:47.851Z", + "new_balance":"5167.43", + "value":"-16.74" + } + }, + { + "id":"a71c1064-b416-4c4f-a09d-2e34445d3273", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T15:33:27.732Z", + "completed":"2017-05-27T15:33:27.732Z", + "new_balance":"5108.95", + "value":"-58.48" + } + }, + { + "id":"933f404c-80cd-4340-9d89-1f7b11a3429a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T13:44:48.422Z", + "completed":"2017-05-30T13:44:48.422Z", + "new_balance":"6297.46", + "value":"1188.51" + } + }, + { + "id":"b988cb43-c94e-4bfe-9ece-4c3fe41c8a69", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T17:42:14.696Z", + "completed":"2017-05-30T17:42:14.696Z", + "new_balance":"6255.12", + "value":"-42.34" + } + }, + { + "id":"d33b0ae4-4768-44f1-9fd3-f5a048c76768", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T18:39:23.977Z", + "completed":"2017-05-30T18:39:23.977Z", + "new_balance":"6220.69", + "value":"-34.43" + } + }, + { + "id":"7e32c477-d0d2-4988-b751-d7d02e12a50b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T02:58:04.746Z", + "completed":"2017-06-01T02:58:04.746Z", + "new_balance":"6172.03", + "value":"-48.66" + } + }, + { + "id":"2d49c681-2959-40e1-91e1-bcd96c3d9947", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T03:53:52.133Z", + "completed":"2017-06-01T03:53:52.133Z", + "new_balance":"6118.85", + "value":"-53.18" + } + }, + { + "id":"f1558600-52fe-4c9a-aa96-4cef2ea148ee", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T10:33:44.113Z", + "completed":"2017-06-01T10:33:44.113Z", + "new_balance":"6094.29", + "value":"-24.56" + } + }, + { + "id":"8373d3ba-eff1-4d93-82f6-9fb0163097de", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T11:09:56.425Z", + "completed":"2017-06-01T11:09:56.425Z", + "new_balance":"6041.11", + "value":"-53.18" + } + }, + { + "id":"b3ecd745-5fb7-4b67-91a0-23c7e76da6e5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:14:50.060Z", + "completed":"2017-06-01T13:14:50.060Z", + "new_balance":"6027.44", + "value":"-13.67" + } + }, + { + "id":"f14f5d55-cf95-417c-a3f5-2e8fc62065d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:34:36.358Z", + "completed":"2017-06-01T13:34:36.358Z", + "new_balance":"5516.90", + "value":"-510.54" + } + }, + { + "id":"cd81b5b5-b2ef-4b34-8832-2f9d68611ea6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T19:00:04.961Z", + "completed":"2017-06-01T19:00:04.961Z", + "new_balance":"5482.47", + "value":"-34.43" + } + }, + { + "id":"61f78a25-623d-4105-a741-cb0f3bf18f24", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T23:22:59.836Z", + "completed":"2017-06-01T23:22:59.836Z", + "new_balance":"5408.54", + "value":"-73.93" + } + }, + { + "id":"142a34e4-beb0-497e-8c92-1262787723e6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T23:58:41.956Z", + "completed":"2017-06-01T23:58:41.956Z", + "new_balance":"5346.67", + "value":"-61.87" + } + }, + { + "id":"2f64e97c-7b64-455b-9683-da8005f500c1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T09:45:06.957Z", + "completed":"2017-06-02T09:45:06.957Z", + "new_balance":"5335.67", + "value":"-11.00" + } + }, + { + "id":"62e84b67-a244-4507-8a2d-580fe87f662d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T15:28:04.005Z", + "completed":"2017-06-02T15:28:04.005Z", + "new_balance":"5323.74", + "value":"-11.93" + } + }, + { + "id":"dd1d4203-d558-43e3-88e4-1c99f170bde7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:28:14.357Z", + "completed":"2017-06-02T23:28:14.357Z", + "new_balance":"5266.06", + "value":"-57.68" + } + }, + { + "id":"c5dcaf4f-3f3c-483e-b813-44f186251f5b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:17:36.831Z", + "completed":"2017-06-04T17:17:36.831Z", + "new_balance":"5240.69", + "value":"-25.37" + } + }, + { + "id":"6a11aa44-3764-4093-b0af-1110d7274016", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T17:37:39.405Z", + "completed":"2017-06-04T17:37:39.405Z", + "new_balance":"5193.76", + "value":"-46.93" + } + }, + { + "id":"4538e297-ceec-416a-b4cd-483d75a12d9f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T22:47:15.721Z", + "completed":"2017-06-04T22:47:15.721Z", + "new_balance":"5151.42", + "value":"-42.34" + } + }, + { + "id":"d23ff19a-7d96-4fbc-ac64-f3eaf0ec7015", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T02:29:59.813Z", + "completed":"2017-06-05T02:29:59.813Z", + "new_balance":"5124.58", + "value":"-26.84" + } + }, + { + "id":"265bae06-70ec-4593-9c41-bc5aa204cb6a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T15:04:31.432Z", + "completed":"2017-06-05T15:04:31.432Z", + "new_balance":"5058.00", + "value":"-66.58" + } + }, + { + "id":"20aab494-9816-497b-b247-11f36bc1e2e3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T10:50:59.599Z", + "completed":"2017-06-18T10:50:59.599Z", + "new_balance":"5004.82", + "value":"-53.18" + } + }, + { + "id":"fe5b9447-0f8a-4166-be89-c30af53f418e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T08:19:40.188Z", + "completed":"2017-06-30T08:19:40.188Z", + "new_balance":"4963.29", + "value":"-41.53" + } + }, + { + "id":"c5fc207e-90b8-4a15-80ea-c56812b64cab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T22:34:17.582Z", + "completed":"2017-06-30T22:34:17.582Z", + "new_balance":"6151.80", + "value":"1188.51" + } + }, + { + "id":"1301028f-189b-4d88-a15f-0b523a10ac82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T22:37:47.018Z", + "completed":"2017-06-30T22:37:47.018Z", + "new_balance":"6117.37", + "value":"-34.43" + } + }, + { + "id":"17b546cf-a302-4f6d-91d9-89219da1b72f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T22:47:50.463Z", + "completed":"2017-06-30T22:47:50.463Z", + "new_balance":"6075.03", + "value":"-42.34" + } + }, + { + "id":"24051f5b-f2a2-4e2a-97eb-210c246ccc52", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T03:50:08.798Z", + "completed":"2017-07-01T03:50:08.798Z", + "new_balance":"6013.16", + "value":"-61.87" + } + }, + { + "id":"40c1117c-ac44-4468-b7ff-89914758d90b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T08:32:22.823Z", + "completed":"2017-07-03T08:32:22.823Z", + "new_balance":"5978.73", + "value":"-34.43" + } + }, + { + "id":"808c54fa-f32a-499e-b47c-f456c0418b0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T08:41:49.316Z", + "completed":"2017-07-03T08:41:49.316Z", + "new_balance":"5954.17", + "value":"-24.56" + } + }, + { + "id":"adc4a8f2-abe3-48c3-8d0c-a55688747756", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T11:43:42.951Z", + "completed":"2017-07-03T11:43:42.951Z", + "new_balance":"5443.63", + "value":"-510.54" + } + }, + { + "id":"1fa0d05a-c813-4a36-b976-3a17cad03e13", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T13:23:20.804Z", + "completed":"2017-07-03T13:23:20.804Z", + "new_balance":"5369.70", + "value":"-73.93" + } + }, + { + "id":"e9bf2a77-6f75-4838-8af1-906928dc3cf3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T03:53:37.586Z", + "completed":"2017-07-05T03:53:37.586Z", + "new_balance":"5325.72", + "value":"-43.98" + } + }, + { + "id":"c63fe241-b708-4ee7-a9f0-38f21344f483", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T10:39:07.830Z", + "completed":"2017-07-05T10:39:07.830Z", + "new_balance":"5272.54", + "value":"-53.18" + } + }, + { + "id":"d672b49a-670c-4a91-989c-82ece6cbfb3f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T18:13:43.121Z", + "completed":"2017-07-05T18:13:43.121Z", + "new_balance":"5259.53", + "value":"-13.01" + } + }, + { + "id":"4d31e42d-ccbd-44a0-a206-32bf3b291bfa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T06:47:46.648Z", + "completed":"2017-07-06T06:47:46.648Z", + "new_balance":"5229.65", + "value":"-29.88" + } + }, + { + "id":"9e3b6de4-fdeb-481a-a177-363bc3994027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T22:24:54.745Z", + "completed":"2017-07-06T22:24:54.745Z", + "new_balance":"5206.96", + "value":"-22.69" + } + }, + { + "id":"e8d09c3f-09b2-4b50-bd53-cd8110da3727", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T10:56:48.152Z", + "completed":"2017-07-07T10:56:48.152Z", + "new_balance":"5167.79", + "value":"-39.17" + } + }, + { + "id":"e7de9099-4005-4ff2-add3-3befeb80486f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T02:16:12.309Z", + "completed":"2017-07-10T02:16:12.309Z", + "new_balance":"5142.92", + "value":"-24.87" + } + }, + { + "id":"93b0db3a-56f6-465c-86ef-25c0301699d9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T18:35:33.863Z", + "completed":"2017-07-10T18:35:33.863Z", + "new_balance":"5089.74", + "value":"-53.18" + } + }, + { + "id":"a7c7a6fb-5132-425a-877c-dd8a9fe0b1ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T02:47:10.030Z", + "completed":"2017-07-12T02:47:10.030Z", + "new_balance":"5050.57", + "value":"-39.17" + } + }, + { + "id":"60126bce-584a-411c-aed6-cc4eb4abe895", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T03:27:30.164Z", + "completed":"2017-07-12T03:27:30.164Z", + "new_balance":"5026.01", + "value":"-24.56" + } + }, + { + "id":"4b9c77d9-f40a-4872-9c40-c25037ebea9e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:21:36.078Z", + "completed":"2017-07-12T19:21:36.078Z", + "new_balance":"5005.94", + "value":"-20.07" + } + }, + { + "id":"792de15b-9380-452d-80ed-a44b7967df50", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T21:53:55.950Z", + "completed":"2017-07-15T21:53:55.950Z", + "new_balance":"4989.54", + "value":"-16.40" + } + }, + { + "id":"e2401965-5f37-49f6-aa22-707a28d0d989", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T06:35:30.447Z", + "completed":"2017-07-16T06:35:30.447Z", + "new_balance":"4936.36", + "value":"-53.18" + } + }, + { + "id":"8bf0eafe-4118-42da-a1d4-8555fc14e1f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T16:45:55.575Z", + "completed":"2017-07-16T16:45:55.575Z", + "new_balance":"4930.21", + "value":"-6.15" + } + }, + { + "id":"957e29e1-ad2d-4064-a9b2-eaa63d74170a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T12:57:48.433Z", + "completed":"2017-07-17T12:57:48.433Z", + "new_balance":"4869.03", + "value":"-61.18" + } + }, + { + "id":"733aa0da-ac4a-4af3-be13-835809f26c5d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T18:30:30.309Z", + "completed":"2017-07-17T18:30:30.309Z", + "new_balance":"4837.71", + "value":"-31.32" + } + }, + { + "id":"0597a8a5-4c21-4d53-ab67-980c73db4800", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T04:06:48.306Z", + "completed":"2017-07-19T04:06:48.306Z", + "new_balance":"4807.31", + "value":"-30.40" + } + }, + { + "id":"5e538f78-c77b-4f04-b5a0-26988e9b5b26", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T07:58:57.036Z", + "completed":"2017-07-20T07:58:57.036Z", + "new_balance":"4754.13", + "value":"-53.18" + } + }, + { + "id":"e510432d-a0b1-42e0-8923-b0475436b172", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T20:52:02.451Z", + "completed":"2017-07-23T20:52:02.451Z", + "new_balance":"4738.30", + "value":"-15.83" + } + }, + { + "id":"c16bc8d5-9fee-4c3a-bbc7-0196d3f880ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T15:50:47.645Z", + "completed":"2017-07-26T15:50:47.645Z", + "new_balance":"4679.82", + "value":"-58.48" + } + }, + { + "id":"a3796d8c-89c5-4a37-a964-ff3f9da64d90", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T17:11:40.496Z", + "completed":"2017-07-27T17:11:40.496Z", + "new_balance":"5868.33", + "value":"1188.51" + } + }, + { + "id":"fe6097a8-cb62-49c7-9789-37645bd5265f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:53:55.632Z", + "completed":"2017-07-28T02:53:55.632Z", + "new_balance":"5833.90", + "value":"-34.43" + } + }, + { + "id":"dd028bec-67b5-4b78-bc89-2589216750ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T22:43:22.993Z", + "completed":"2017-07-30T22:43:22.993Z", + "new_balance":"5791.56", + "value":"-42.34" + } + }, + { + "id":"84b9cf76-03d0-40e0-af26-e1cfc0f96dbc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T08:44:51.731Z", + "completed":"2017-08-01T08:44:51.731Z", + "new_balance":"5729.69", + "value":"-61.87" + } + }, + { + "id":"8d430ab4-0c5a-491e-a731-f20dc959c58f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T08:45:19.121Z", + "completed":"2017-08-03T08:45:19.121Z", + "new_balance":"5695.26", + "value":"-34.43" + } + }, + { + "id":"709917a8-243a-40ef-afaf-0bc8a1e0b8ed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T11:32:34.566Z", + "completed":"2017-08-03T11:32:34.566Z", + "new_balance":"5621.33", + "value":"-73.93" + } + }, + { + "id":"6b68be95-9369-40d0-a3e0-6dcd68e561c0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T18:25:54.817Z", + "completed":"2017-08-03T18:25:54.817Z", + "new_balance":"5110.79", + "value":"-510.54" + } + }, + { + "id":"00dc6fb4-1bd4-45c3-a2a3-5dd25e20cb53", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T19:32:36.101Z", + "completed":"2017-08-03T19:32:36.101Z", + "new_balance":"5086.23", + "value":"-24.56" + } + }, + { + "id":"cc85feda-1e6a-4720-b4a4-c80feecf5a61", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T06:01:47.752Z", + "completed":"2017-08-08T06:01:47.752Z", + "new_balance":"5033.05", + "value":"-53.18" + } + }, + { + "id":"0c24bd90-a095-4cfc-bcb7-0a6c03b0a404", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T11:20:04.195Z", + "completed":"2017-08-08T11:20:04.195Z", + "new_balance":"4989.07", + "value":"-43.98" + } + }, + { + "id":"a81c878d-4fcd-4359-bc84-fb518297f484", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T23:34:42.005Z", + "completed":"2017-08-11T23:34:42.005Z", + "new_balance":"4999.96", + "value":"10.89" + } + }, + { + "id":"fb2f885f-b0e6-4429-b231-e640bb22349e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T02:12:35.163Z", + "completed":"2017-08-13T02:12:35.163Z", + "new_balance":"4970.08", + "value":"-29.88" + } + }, + { + "id":"842b3ae4-ae00-4ae2-bff0-68d197156bc2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T04:18:39.957Z", + "completed":"2017-08-14T04:18:39.957Z", + "new_balance":"4942.23", + "value":"-27.85" + } + }, + { + "id":"798b5c1c-0ec8-4aed-91cb-e20437d8e153", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:16:18.730Z", + "completed":"2017-08-17T15:16:18.730Z", + "new_balance":"4931.32", + "value":"-10.91" + } + }, + { + "id":"c9c8f099-56b4-4a3b-85d0-c692b82eee25", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T05:12:11.734Z", + "completed":"2017-08-21T05:12:11.734Z", + "new_balance":"4890.19", + "value":"-41.13" + } + }, + { + "id":"b296fdc7-52db-4c84-a5eb-28e8ae676fce", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T15:21:59.259Z", + "completed":"2017-08-23T15:21:59.259Z", + "new_balance":"4849.27", + "value":"-40.92" + } + }, + { + "id":"f2101395-998b-46ce-a525-8a6cd03fff7e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T19:47:07.494Z", + "completed":"2017-08-23T19:47:07.494Z", + "new_balance":"4796.09", + "value":"-53.18" + } + }, + { + "id":"7c49a295-d8d6-435d-be38-e423966cd754", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T09:02:05.849Z", + "completed":"2017-08-24T09:02:05.849Z", + "new_balance":"4785.18", + "value":"-10.91" + } + }, + { + "id":"607e63e5-4dfc-41a9-8589-5becb50341ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T04:43:47.349Z", + "completed":"2017-08-27T04:43:47.349Z", + "new_balance":"5973.69", + "value":"1188.51" + } + }, + { + "id":"3a02cd22-d83b-4dc0-858d-3135c53f2ba6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T07:28:54.143Z", + "completed":"2017-08-27T07:28:54.143Z", + "new_balance":"5956.95", + "value":"-16.74" + } + }, + { + "id":"9933bf5f-04ed-4cf6-b618-0d8db270bff0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T12:04:50.483Z", + "completed":"2017-08-27T12:04:50.483Z", + "new_balance":"5898.47", + "value":"-58.48" + } + }, + { + "id":"6331b265-ed86-4d11-9ce5-3b407c91c501", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T04:56:25.422Z", + "completed":"2017-08-28T04:56:25.422Z", + "new_balance":"5864.04", + "value":"-34.43" + } + }, + { + "id":"7ea82058-c95c-4eda-a84d-d8937a5ac881", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T00:53:59.476Z", + "completed":"2017-08-30T00:53:59.476Z", + "new_balance":"5821.70", + "value":"-42.34" + } + }, + { + "id":"60b176ff-85a4-45e4-9e93-569986db3ef3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T15:13:08.313Z", + "completed":"2017-09-01T15:13:08.313Z", + "new_balance":"5759.83", + "value":"-61.87" + } + }, + { + "id":"b86b1afd-6e70-4226-ba5d-2ee6d78715b5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T02:58:53.188Z", + "completed":"2017-09-03T02:58:53.188Z", + "new_balance":"5685.90", + "value":"-73.93" + } + }, + { + "id":"07539d79-d3dd-48b6-a547-fcd7b3d72a56", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T05:10:36.310Z", + "completed":"2017-09-03T05:10:36.310Z", + "new_balance":"5661.34", + "value":"-24.56" + } + }, + { + "id":"e1b82ab8-8009-4e0f-bd41-372321054e3d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T11:06:30.549Z", + "completed":"2017-09-03T11:06:30.549Z", + "new_balance":"5626.91", + "value":"-34.43" + } + }, + { + "id":"9eb31e3f-b78d-41ae-b520-012dc4ae5256", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T20:23:34.289Z", + "completed":"2017-09-03T20:23:34.289Z", + "new_balance":"5116.37", + "value":"-510.54" + } + }, + { + "id":"a7e9c044-f471-43b4-a220-cb10a22d975e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T12:12:53.106Z", + "completed":"2017-09-05T12:12:53.106Z", + "new_balance":"5063.19", + "value":"-53.18" + } + }, + { + "id":"93872bcb-bfce-419f-9c6a-b4dc8fb8de4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T21:47:23.140Z", + "completed":"2017-09-05T21:47:23.140Z", + "new_balance":"5014.53", + "value":"-48.66" + } + }, + { + "id":"74013b52-525e-456d-9953-fec92c09eeed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T19:21:47.353Z", + "completed":"2017-09-07T19:21:47.353Z", + "new_balance":"5000.86", + "value":"-13.67" + } + }, + { + "id":"7f08946b-42df-41a9-99d2-2de9cfa5f674", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T21:37:19.519Z", + "completed":"2017-09-09T21:37:19.519Z", + "new_balance":"4947.68", + "value":"-53.18" + } + }, + { + "id":"288fe84f-6745-4fea-9417-61171001c53b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T23:01:06.866Z", + "completed":"2017-09-11T23:01:06.866Z", + "new_balance":"4936.68", + "value":"-11.00" + } + }, + { + "id":"afacbdac-2957-4b13-8f04-a6f403e26985", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T07:47:49.080Z", + "completed":"2017-09-13T07:47:49.080Z", + "new_balance":"4879.00", + "value":"-57.68" + } + }, + { + "id":"f3d31a08-ed25-4979-9fda-d3c654d14698", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T06:35:48.407Z", + "completed":"2017-09-14T06:35:48.407Z", + "new_balance":"4867.07", + "value":"-11.93" + } + }, + { + "id":"d25c5dce-3984-4f16-8e46-c257e848df75", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T12:38:07.950Z", + "completed":"2017-09-14T12:38:07.950Z", + "new_balance":"4930.43", + "value":"63.36" + } + }, + { + "id":"e9cdb803-1b89-43d0-95a6-e7d56bac1d4c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T03:18:08.120Z", + "completed":"2017-09-15T03:18:08.120Z", + "new_balance":"4888.09", + "value":"-42.34" + } + }, + { + "id":"65bc1a31-5751-4888-bb2b-a381eaa72338", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T07:26:05.828Z", + "completed":"2017-09-26T07:26:05.828Z", + "new_balance":"4841.16", + "value":"-46.93" + } + }, + { + "id":"237ccf48-3100-4fb0-9009-f301afadfcb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:54:12.926Z", + "completed":"2017-09-26T08:54:12.926Z", + "new_balance":"4815.79", + "value":"-25.37" + } + }, + { + "id":"a99ac998-b350-4407-bfe2-7795c85918b9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T20:08:56.206Z", + "completed":"2017-09-26T20:08:56.206Z", + "new_balance":"4788.95", + "value":"-26.84" + } + }, + { + "id":"5879f8b9-3031-44a7-89a2-78e62226ddf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T02:09:01.474Z", + "completed":"2017-09-27T02:09:01.474Z", + "new_balance":"4735.77", + "value":"-53.18" + } + }, + { + "id":"f32a9298-aa7c-4db1-aa5b-e66d60dee59b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T02:44:36.215Z", + "completed":"2017-09-27T02:44:36.215Z", + "new_balance":"4669.19", + "value":"-66.58" + } + }, + { + "id":"74c84c34-6606-4037-814d-790f84a10791", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T23:15:58.593Z", + "completed":"2017-09-27T23:15:58.593Z", + "new_balance":"5857.70", + "value":"1188.51" + } + }, + { + "id":"348aaf3c-fddc-440e-b89b-7bf208f61136", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T03:36:05.242Z", + "completed":"2017-09-28T03:36:05.242Z", + "new_balance":"5823.27", + "value":"-34.43" + } + }, + { + "id":"a6c6593e-a662-4919-b5f8-e122d30c160b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:33:29.456Z", + "completed":"2017-09-30T12:33:29.456Z", + "new_balance":"5780.93", + "value":"-42.34" + } + }, + { + "id":"fd41b099-7c51-4ee2-9d8f-b3610dc937eb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T03:18:24.213Z", + "completed":"2017-10-01T03:18:24.213Z", + "new_balance":"5746.50", + "value":"-34.43" + } + }, + { + "id":"bbcc2563-ed4d-4391-9efd-3bc4661e9f39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T07:16:39.007Z", + "completed":"2017-10-01T07:16:39.007Z", + "new_balance":"5684.63", + "value":"-61.87" + } + }, + { + "id":"4485305f-2897-439d-8091-93de076a2244", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T09:53:22.226Z", + "completed":"2017-10-01T09:53:22.226Z", + "new_balance":"5660.07", + "value":"-24.56" + } + }, + { + "id":"cf17291b-0aaa-4587-b274-a3ba56dec6b2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T20:14:32.646Z", + "completed":"2017-10-01T20:14:32.646Z", + "new_balance":"5586.14", + "value":"-73.93" + } + }, + { + "id":"9d568fae-fe5b-43cd-87ae-f35723f4e66b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T20:37:13.052Z", + "completed":"2017-10-01T20:37:13.052Z", + "new_balance":"5075.60", + "value":"-510.54" + } + }, + { + "id":"eddc97b8-1384-44a7-975e-c58cbba8a5e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T00:26:43.616Z", + "completed":"2017-10-05T00:26:43.616Z", + "new_balance":"5022.42", + "value":"-53.18" + } + }, + { + "id":"236d2e6a-a0a4-4164-894a-37cc9584006e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T01:38:32.550Z", + "completed":"2017-10-05T01:38:32.550Z", + "new_balance":"4999.73", + "value":"-22.69" + } + }, + { + "id":"0928725c-9178-4ee4-abd2-74b087424c8a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T03:56:29.427Z", + "completed":"2017-10-05T03:56:29.427Z", + "new_balance":"4955.75", + "value":"-43.98" + } + }, + { + "id":"0d1a45ff-b947-4859-b265-2bd0d12f0ca2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T14:53:54.940Z", + "completed":"2017-10-05T14:53:54.940Z", + "new_balance":"4942.74", + "value":"-13.01" + } + }, + { + "id":"e9d53ea0-96de-4b8c-80f2-1a304e9f9868", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T05:36:35.379Z", + "completed":"2017-10-07T05:36:35.379Z", + "new_balance":"4912.86", + "value":"-29.88" + } + }, + { + "id":"76c211ab-ccae-45bd-b920-ce3e3a8f4fb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T05:26:30.472Z", + "completed":"2017-10-09T05:26:30.472Z", + "new_balance":"4887.99", + "value":"-24.87" + } + }, + { + "id":"e0c02e0c-27f5-4d19-8277-ab1cf2a427ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T13:19:38.659Z", + "completed":"2017-10-09T13:19:38.659Z", + "new_balance":"4834.81", + "value":"-53.18" + } + }, + { + "id":"5dd5e540-3cff-4d46-aa09-5221567f6882", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T06:35:05.446Z", + "completed":"2017-10-10T06:35:05.446Z", + "new_balance":"4810.25", + "value":"-24.56" + } + }, + { + "id":"e6a00095-cc7d-4645-8a6b-8cd5b358f265", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T22:31:42.400Z", + "completed":"2017-10-10T22:31:42.400Z", + "new_balance":"4790.18", + "value":"-20.07" + } + }, + { + "id":"aa0f5325-c05a-4625-ba19-b740e098d7e2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:17:46.178Z", + "completed":"2017-10-10T23:17:46.178Z", + "new_balance":"4773.78", + "value":"-16.40" + } + }, + { + "id":"c869f814-f708-49ce-8e62-c983406034d9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:33:18.325Z", + "completed":"2017-10-10T23:33:18.325Z", + "new_balance":"4734.61", + "value":"-39.17" + } + }, + { + "id":"af1be62e-746f-4e5e-9f8d-bbd7ad397600", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T01:08:41.095Z", + "completed":"2017-10-11T01:08:41.095Z", + "new_balance":"4673.43", + "value":"-61.18" + } + }, + { + "id":"6340d4e4-9bb4-4ced-a27b-6123fb9c71e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T03:30:52.131Z", + "completed":"2017-10-11T03:30:52.131Z", + "new_balance":"4620.25", + "value":"-53.18" + } + }, + { + "id":"5f3b725f-21ea-4eb9-9f5b-619add5e1653", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T04:49:16.749Z", + "completed":"2017-10-11T04:49:16.749Z", + "new_balance":"4614.10", + "value":"-6.15" + } + }, + { + "id":"6c50fa02-b234-4b6d-8bf6-42c18a1be51d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T14:23:09.976Z", + "completed":"2017-10-11T14:23:09.976Z", + "new_balance":"4582.78", + "value":"-31.32" + } + }, + { + "id":"8ae53b04-85bc-4ee6-a39f-88a4f4738dde", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T22:04:30.357Z", + "completed":"2017-10-11T22:04:30.357Z", + "new_balance":"4552.38", + "value":"-30.40" + } + }, + { + "id":"86d46355-01d7-427b-9502-1d30580d1d88", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T08:39:45.448Z", + "completed":"2017-10-21T08:39:45.448Z", + "new_balance":"4499.20", + "value":"-53.18" + } + }, + { + "id":"3f5ce2e1-b7bd-40cf-9f2a-42e31de0baa2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T22:39:09.934Z", + "completed":"2017-10-23T22:39:09.934Z", + "new_balance":"4483.37", + "value":"-15.83" + } + }, + { + "id":"350a2f7b-e32b-4e2d-a2c7-f69397ef3a37", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T12:27:38.704Z", + "completed":"2017-10-29T12:27:38.704Z", + "new_balance":"5671.88", + "value":"1188.51" + } + }, + { + "id":"7a116cd0-4330-4d08-a959-46a662a155fc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T14:26:11.365Z", + "completed":"2017-10-29T14:26:11.365Z", + "new_balance":"5637.45", + "value":"-34.43" + } + }, + { + "id":"2c4f73f9-6d60-49ac-a08b-dcf8b92f8c21", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T18:29:07.909Z", + "completed":"2017-10-29T18:29:07.909Z", + "new_balance":"5578.97", + "value":"-58.48" + } + }, + { + "id":"0af6b730-f8f0-4c89-9cc4-1d321715cc0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T23:26:58.051Z", + "completed":"2017-10-30T23:26:58.051Z", + "new_balance":"5536.63", + "value":"-42.34" + } + }, + { + "id":"e185578b-add2-46fe-a572-ac00595a1677", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T01:54:29.467Z", + "completed":"2017-11-02T01:54:29.467Z", + "new_balance":"5026.09", + "value":"-510.54" + } + }, + { + "id":"34ddbb9c-33fb-4ae2-a671-1fd3a15af0e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T13:05:19.328Z", + "completed":"2017-11-02T13:05:19.328Z", + "new_balance":"4952.16", + "value":"-73.93" + } + }, + { + "id":"4b20e69b-133b-4d77-b737-aafe7ceb4d4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T13:51:54.025Z", + "completed":"2017-11-02T13:51:54.025Z", + "new_balance":"4927.60", + "value":"-24.56" + } + }, + { + "id":"0e3697b2-31b7-4e4b-bf46-f0130744fa64", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T22:26:29.102Z", + "completed":"2017-11-02T22:26:29.102Z", + "new_balance":"4865.73", + "value":"-61.87" + } + }, + { + "id":"bdd64356-92aa-418e-ac9a-9606c1cc0005", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T02:08:41.725Z", + "completed":"2017-11-06T02:08:41.725Z", + "new_balance":"4821.75", + "value":"-43.98" + } + }, + { + "id":"349ac697-0f02-419c-a52e-277da61c115c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T04:13:52.414Z", + "completed":"2017-11-07T04:13:52.414Z", + "new_balance":"4810.84", + "value":"-10.91" + } + }, + { + "id":"c23427e3-c6ba-4217-a498-71d45052fbfd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T12:42:46.620Z", + "completed":"2017-11-07T12:42:46.620Z", + "new_balance":"4780.96", + "value":"-29.88" + } + }, + { + "id":"fcb3df72-af17-4491-a96a-b68067496364", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T15:03:34.668Z", + "completed":"2017-11-07T15:03:34.668Z", + "new_balance":"4739.83", + "value":"-41.13" + } + }, + { + "id":"c3c04d92-f0e3-4287-91c3-db60b47fafcc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T22:33:12.777Z", + "completed":"2017-11-07T22:33:12.777Z", + "new_balance":"4711.98", + "value":"-27.85" + } + }, + { + "id":"277ad933-5640-449e-b531-e25f96e431a5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T22:06:07.405Z", + "completed":"2017-11-08T22:06:07.405Z", + "new_balance":"4671.06", + "value":"-40.92" + } + }, + { + "id":"ebb4b933-e583-4b09-9948-df9dfc7f1277", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T05:47:24.510Z", + "completed":"2017-11-09T05:47:24.510Z", + "new_balance":"4636.63", + "value":"-34.43" + } + }, + { + "id":"385a5166-824e-4c24-aefa-3de4cd432674", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T17:25:32.836Z", + "completed":"2017-11-13T17:25:32.836Z", + "new_balance":"4583.45", + "value":"-53.18" + } + }, + { + "id":"320b9ae3-d256-4810-a5d0-f161150bc293", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T10:12:29.947Z", + "completed":"2017-11-26T10:12:29.947Z", + "new_balance":"4530.27", + "value":"-53.18" + } + }, + { + "id":"c7f75584-88e7-4ba5-b4fa-61f8c724c504", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T18:32:48.217Z", + "completed":"2017-11-26T18:32:48.217Z", + "new_balance":"4519.36", + "value":"-10.91" + } + }, + { + "id":"a21273dd-4e91-49fb-b175-c93129000566", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T10:04:50.515Z", + "completed":"2017-11-27T10:04:50.515Z", + "new_balance":"4460.88", + "value":"-58.48" + } + }, + { + "id":"915b5cc7-1ad6-4de9-b0e9-eff7ede46384", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T23:10:02.631Z", + "completed":"2017-11-27T23:10:02.631Z", + "new_balance":"4444.14", + "value":"-16.74" + } + }, + { + "id":"381386ac-b159-452c-99ac-fde44c7ef44f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T08:50:20.251Z", + "completed":"2017-11-30T08:50:20.251Z", + "new_balance":"5632.65", + "value":"1188.51" + } + }, + { + "id":"1fc73b38-a390-47fa-99c3-9bd535a7126b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T10:04:14.163Z", + "completed":"2017-11-30T10:04:14.163Z", + "new_balance":"5590.31", + "value":"-42.34" + } + }, + { + "id":"593c1e9f-dac0-4217-8ab4-a86149cd6aba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T10:43:07.981Z", + "completed":"2017-11-30T10:43:07.981Z", + "new_balance":"5555.88", + "value":"-34.43" + } + }, + { + "id":"5c570513-c189-43f6-9370-d55d6a222831", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:16:43.741Z", + "completed":"2017-12-01T00:16:43.741Z", + "new_balance":"5494.01", + "value":"-61.87" + } + }, + { + "id":"0ba46a7d-4f6d-4d56-8921-437aced9a94e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T00:45:45.766Z", + "completed":"2017-12-01T00:45:45.766Z", + "new_balance":"5445.35", + "value":"-48.66" + } + }, + { + "id":"0d98ffdb-738c-4e94-8684-674c1de34c7e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T00:46:22.945Z", + "completed":"2017-12-01T00:46:22.945Z", + "new_balance":"5392.17", + "value":"-53.18" + } + }, + { + "id":"7c32caaa-995b-43fc-a711-bdce1b793beb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T05:01:18.324Z", + "completed":"2017-12-01T05:01:18.324Z", + "new_balance":"5367.61", + "value":"-24.56" + } + }, + { + "id":"73d2894e-0fd6-4cff-8efc-5c8a1299636e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T05:35:46.938Z", + "completed":"2017-12-01T05:35:46.938Z", + "new_balance":"5333.18", + "value":"-34.43" + } + }, + { + "id":"f1105a2b-75b6-4f04-beb0-fb0644450aa5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T10:24:34.784Z", + "completed":"2017-12-01T10:24:34.784Z", + "new_balance":"4822.64", + "value":"-510.54" + } + }, + { + "id":"a5d03c6d-ad12-4608-b032-72c357b8956f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T13:53:37.112Z", + "completed":"2017-12-01T13:53:37.112Z", + "new_balance":"4748.71", + "value":"-73.93" + } + }, + { + "id":"7d54d2a1-b86a-4bea-9dc8-d14a5fc81640", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T18:33:14.577Z", + "completed":"2017-12-01T18:33:14.577Z", + "new_balance":"4695.53", + "value":"-53.18" + } + }, + { + "id":"0711961a-ec86-417c-9c98-2987d316dd63", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T23:28:53.085Z", + "completed":"2017-12-01T23:28:53.085Z", + "new_balance":"4681.86", + "value":"-13.67" + } + }, + { + "id":"2d1adf7d-4ddd-4d18-9cc9-a2de317817e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T08:44:39.974Z", + "completed":"2017-12-02T08:44:39.974Z", + "new_balance":"4669.93", + "value":"-11.93" + } + }, + { + "id":"c14f2a15-84c8-451f-93e4-dfa28f26ddd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T11:59:41.330Z", + "completed":"2017-12-02T11:59:41.330Z", + "new_balance":"4658.93", + "value":"-11.00" + } + }, + { + "id":"3031edc0-b34f-49a9-8717-a02de46a52e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T16:38:02.041Z", + "completed":"2017-12-02T16:38:02.041Z", + "new_balance":"4601.25", + "value":"-57.68" + } + }, + { + "id":"2786289b-f540-4254-8b7f-15f9bd6fef7c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T01:22:04.217Z", + "completed":"2017-12-04T01:22:04.217Z", + "new_balance":"4558.91", + "value":"-42.34" + } + }, + { + "id":"9f41e4d9-3ecf-4934-a863-7949fbcec77c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T07:27:27.380Z", + "completed":"2017-12-04T07:27:27.380Z", + "new_balance":"4511.98", + "value":"-46.93" + } + }, + { + "id":"1aed7cc0-0a8f-4527-b407-f2977293e9be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T13:10:19.266Z", + "completed":"2017-12-04T13:10:19.266Z", + "new_balance":"4486.61", + "value":"-25.37" + } + }, + { + "id":"a55f6c83-7824-463b-a0f6-61546e42e637", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T16:31:18.392Z", + "completed":"2017-12-05T16:31:18.392Z", + "new_balance":"4459.77", + "value":"-26.84" + } + }, + { + "id":"b6e1fbbe-41ca-43df-a9e0-a456e996b3c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T20:15:39.071Z", + "completed":"2017-12-05T20:15:39.071Z", + "new_balance":"4393.19", + "value":"-66.58" + } + }, + { + "id":"48b00907-79a6-4557-bc68-028123c97531", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T17:55:54.743Z", + "completed":"2017-12-18T17:55:54.743Z", + "new_balance":"4340.01", + "value":"-53.18" + } + }, + { + "id":"6770ff73-2aea-4f13-9df7-8ce926ed5cfd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T01:01:12.375Z", + "completed":"2017-12-30T01:01:12.375Z", + "new_balance":"4297.67", + "value":"-42.34" + } + }, + { + "id":"28fe8ca1-398f-4d5f-83ec-9ce5b700fe07", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T11:36:44.217Z", + "completed":"2017-12-30T11:36:44.217Z", + "new_balance":"4263.24", + "value":"-34.43" + } + }, + { + "id":"4c28a84e-cc4a-4b92-8d03-e44166fa8981", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T13:33:52.460Z", + "completed":"2017-12-30T13:33:52.460Z", + "new_balance":"4221.71", + "value":"-41.53" + } + }, + { + "id":"2b746c25-9b9e-4a19-8b52-2a894910543c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T21:32:14.904Z", + "completed":"2017-12-30T21:32:14.904Z", + "new_balance":"5410.22", + "value":"1188.51" + } + }, + { + "id":"79b5acf5-b572-45eb-ab92-aa46ae3720cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:07:40.978Z", + "completed":"2016-01-01T02:07:40.978Z", + "new_balance":"3725.49", + "value":"-3.44" + } + }, + { + "id":"03d34bb8-eae6-4df6-8992-b66ec3a89e31", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T04:59:06.885Z", + "completed":"2016-01-01T04:59:06.885Z", + "new_balance":"3723.17", + "value":"-2.32" + } + }, + { + "id":"4b555f9a-915c-4df7-bf22-e18b9e7e4f1b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T07:25:25.167Z", + "completed":"2016-01-01T07:25:25.167Z", + "new_balance":"3707.92", + "value":"-15.25" + } + }, + { + "id":"8c74aaf4-0d71-424b-8e47-6d90a0534d09", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T16:02:52.264Z", + "completed":"2016-01-01T16:02:52.264Z", + "new_balance":"3704.48", + "value":"-3.44" + } + }, + { + "id":"f103cad8-b267-4b50-8728-93b2212473d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T17:36:25.092Z", + "completed":"2016-01-01T17:36:25.092Z", + "new_balance":"3699.33", + "value":"-5.15" + } + }, + { + "id":"1c62b867-e2c8-40f8-82de-b09b074b436f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T18:07:49.224Z", + "completed":"2016-01-01T18:07:49.224Z", + "new_balance":"3641.10", + "value":"-58.23" + } + }, + { + "id":"782c0d50-ac84-499d-a553-ff7086ff5593", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T00:50:00.164Z", + "completed":"2016-01-02T00:50:00.164Z", + "new_balance":"3631.41", + "value":"-9.69" + } + }, + { + "id":"89204899-eb4b-43a7-8160-5c6973d7c7e7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T13:13:31.967Z", + "completed":"2016-01-02T13:13:31.967Z", + "new_balance":"3624.31", + "value":"-7.10" + } + }, + { + "id":"86ca4079-25ba-4e4a-89f2-8c8712a11baa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:52:40.284Z", + "completed":"2016-01-04T04:52:40.284Z", + "new_balance":"3620.53", + "value":"-3.78" + } + }, + { + "id":"631561ea-6f4a-4550-8bcc-efc5309ea7bc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T12:49:42.304Z", + "completed":"2016-01-04T12:49:42.304Z", + "new_balance":"3617.62", + "value":"-2.91" + } + }, + { + "id":"8e00bd1e-f4b2-49de-a911-35ea1583034f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T16:56:35.169Z", + "completed":"2016-01-07T16:56:35.169Z", + "new_balance":"3610.43", + "value":"-7.19" + } + }, + { + "id":"f5a91b79-3e2d-4333-a1c8-f4e22765334b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T14:55:22.292Z", + "completed":"2016-01-09T14:55:22.292Z", + "new_balance":"3609.97", + "value":"-0.46" + } + }, + { + "id":"22e4bede-6d75-4087-b108-c8c8cb8dc972", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T00:07:16.013Z", + "completed":"2016-01-10T00:07:16.013Z", + "new_balance":"3607.29", + "value":"-2.68" + } + }, + { + "id":"8327a8be-f7e5-46a5-8fdc-2c2126fa6ced", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T02:11:45.528Z", + "completed":"2016-01-12T02:11:45.528Z", + "new_balance":"3604.07", + "value":"-3.22" + } + }, + { + "id":"e265bf52-8981-4439-b1f6-7a3b73e8cc88", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T03:50:34.724Z", + "completed":"2016-01-15T03:50:34.724Z", + "new_balance":"3602.54", + "value":"-1.53" + } + }, + { + "id":"510576f2-bf28-483b-87f2-f697956bee8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T12:35:16.095Z", + "completed":"2016-01-15T12:35:16.095Z", + "new_balance":"3601.64", + "value":"-0.90" + } + }, + { + "id":"c506f820-59de-44c9-a230-399e18613d98", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T14:59:31.963Z", + "completed":"2016-01-17T14:59:31.963Z", + "new_balance":"3599.53", + "value":"-2.11" + } + }, + { + "id":"1934089f-073d-4229-bcf4-e69d5b88f98d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T13:23:06.472Z", + "completed":"2016-01-19T13:23:06.472Z", + "new_balance":"3572.03", + "value":"-27.50" + } + }, + { + "id":"fbd135ae-d88c-4fe4-8c56-539b8cb74d4d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T08:55:41.303Z", + "completed":"2016-01-20T08:55:41.303Z", + "new_balance":"3571.59", + "value":"-0.44" + } + }, + { + "id":"c84717cd-50ce-405c-84d2-151c5f42e33c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T01:25:33.928Z", + "completed":"2016-01-22T01:25:33.928Z", + "new_balance":"3567.11", + "value":"-4.48" + } + }, + { + "id":"2f698f9e-cc86-480f-bb28-4b41e4a3a1ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T21:13:17.693Z", + "completed":"2016-01-22T21:13:17.693Z", + "new_balance":"3566.00", + "value":"-1.11" + } + }, + { + "id":"49526f68-9a51-4043-9876-94e06e01833e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T09:32:38.689Z", + "completed":"2016-01-24T09:32:38.689Z", + "new_balance":"3563.19", + "value":"-2.81" + } + }, + { + "id":"aa712e7e-ca8b-4d40-b3c6-70843afb895c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T06:24:30.551Z", + "completed":"2016-01-25T06:24:30.551Z", + "new_balance":"3562.75", + "value":"-0.44" + } + }, + { + "id":"ea5959e6-8538-4e26-b59e-3e47d2c6cb4e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T19:59:26.397Z", + "completed":"2016-01-25T19:59:26.397Z", + "new_balance":"3557.35", + "value":"-5.40" + } + }, + { + "id":"2e22c595-e3a5-4d02-bd89-b73c2dbaf0b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T09:51:23.698Z", + "completed":"2016-01-26T09:51:23.698Z", + "new_balance":"3551.53", + "value":"-5.82" + } + }, + { + "id":"deeeb8fd-0615-466b-9352-1d31e01cd45e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T02:42:40.545Z", + "completed":"2016-02-01T02:42:40.545Z", + "new_balance":"3548.09", + "value":"-3.44" + } + }, + { + "id":"7b1aa5f8-be68-4495-9bb8-98f1d84e3d93", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T09:18:12.360Z", + "completed":"2016-02-01T09:18:12.360Z", + "new_balance":"3489.86", + "value":"-58.23" + } + }, + { + "id":"098ea0b0-0059-4b88-9695-41b06701e26b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:14:41.565Z", + "completed":"2016-02-01T10:14:41.565Z", + "new_balance":"3672.56", + "value":"182.70" + } + }, + { + "id":"26f50135-5e96-4eca-b4c6-5bc80fab24ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T13:43:05.435Z", + "completed":"2016-02-01T13:43:05.435Z", + "new_balance":"3670.24", + "value":"-2.32" + } + }, + { + "id":"402d1c63-c702-4a21-b07b-be6cf1855943", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T21:10:54.406Z", + "completed":"2016-02-01T21:10:54.406Z", + "new_balance":"3654.99", + "value":"-15.25" + } + }, + { + "id":"7aec6c1b-d3b2-43d3-8193-ce4e3a783bab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T22:21:25.323Z", + "completed":"2016-02-01T22:21:25.323Z", + "new_balance":"3649.84", + "value":"-5.15" + } + }, + { + "id":"e461cafd-0750-4acc-a48d-6d7c16a5bd34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T01:20:54.152Z", + "completed":"2016-02-02T01:20:54.152Z", + "new_balance":"3648.69", + "value":"-1.15" + } + }, + { + "id":"728d7354-af0f-463b-8b77-55a79dfec120", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T11:01:57.929Z", + "completed":"2016-02-02T11:01:57.929Z", + "new_balance":"3646.59", + "value":"-2.10" + } + }, + { + "id":"35045d98-a0cd-4fa6-95dc-1959f5284d49", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T18:46:10.517Z", + "completed":"2016-02-02T18:46:10.517Z", + "new_balance":"3639.49", + "value":"-7.10" + } + }, + { + "id":"9a384dc7-1a63-4403-92ea-c380c41ba139", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T03:16:02.638Z", + "completed":"2016-02-03T03:16:02.638Z", + "new_balance":"3637.09", + "value":"-2.40" + } + }, + { + "id":"75b88d88-46e6-46e0-90c6-d681cfd2f39e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T13:54:28.596Z", + "completed":"2016-02-03T13:54:28.596Z", + "new_balance":"3634.59", + "value":"-2.50" + } + }, + { + "id":"d5e31811-dfdc-450d-8186-2e0e70525b40", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T21:40:02.796Z", + "completed":"2016-02-03T21:40:02.796Z", + "new_balance":"3631.26", + "value":"-3.33" + } + }, + { + "id":"3b28a5c2-b02c-4d8c-864a-3a8e47a1a94f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T05:27:58.891Z", + "completed":"2016-02-06T05:27:58.891Z", + "new_balance":"3624.07", + "value":"-7.19" + } + }, + { + "id":"7efcbb93-a9b7-410f-9923-2572646d83d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T01:21:29.018Z", + "completed":"2016-02-08T01:21:29.018Z", + "new_balance":"3621.04", + "value":"-3.03" + } + }, + { + "id":"2bec40f9-2f02-4c54-ac2e-f8a339505cc5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T03:22:13.683Z", + "completed":"2016-02-08T03:22:13.683Z", + "new_balance":"3618.59", + "value":"-2.45" + } + }, + { + "id":"07e5b9a0-a701-47e7-9460-b4ef5deca723", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T18:34:08.877Z", + "completed":"2016-02-08T18:34:08.877Z", + "new_balance":"3618.11", + "value":"-0.48" + } + }, + { + "id":"5ca352af-22be-4505-9f13-983174d51643", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T00:07:01.862Z", + "completed":"2016-02-09T00:07:01.862Z", + "new_balance":"3614.97", + "value":"-3.14" + } + }, + { + "id":"868382e7-04f8-437c-a764-3555ef0b891e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T22:04:57.440Z", + "completed":"2016-02-09T22:04:57.440Z", + "new_balance":"3611.49", + "value":"-3.48" + } + }, + { + "id":"f6f40af6-0064-4ba7-ba72-1c1d6dd08bab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T01:12:50.497Z", + "completed":"2016-02-12T01:12:50.497Z", + "new_balance":"3611.02", + "value":"-0.47" + } + }, + { + "id":"00d04f90-0b80-4f03-ae93-08c21fe9f7eb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T03:47:50.554Z", + "completed":"2016-02-13T03:47:50.554Z", + "new_balance":"3610.25", + "value":"-0.77" + } + }, + { + "id":"82e17551-9578-4e07-8883-5180f72ca7a5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T18:12:17.007Z", + "completed":"2016-02-13T18:12:17.007Z", + "new_balance":"3603.82", + "value":"-6.43" + } + }, + { + "id":"34a89c35-c1dc-420b-bac3-6412360f7596", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T23:51:16.049Z", + "completed":"2016-02-13T23:51:16.049Z", + "new_balance":"3607.90", + "value":"4.08" + } + }, + { + "id":"370f7b39-d015-4574-9ae0-bba469619a8c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T18:22:27.308Z", + "completed":"2016-02-14T18:22:27.308Z", + "new_balance":"3603.78", + "value":"-4.12" + } + }, + { + "id":"252a6ae5-97e2-4cf9-9efb-8351f918bfb5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T00:52:40.831Z", + "completed":"2016-02-15T00:52:40.831Z", + "new_balance":"3601.23", + "value":"-2.55" + } + }, + { + "id":"d1df3db3-8369-4bd4-be43-f8d243d1c43f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T14:26:26.231Z", + "completed":"2016-02-28T14:26:26.231Z", + "new_balance":"3598.29", + "value":"-2.94" + } + }, + { + "id":"81d3128f-8f33-4e76-b57b-275197e1d6ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T08:26:07.041Z", + "completed":"2016-03-01T08:26:07.041Z", + "new_balance":"3780.99", + "value":"182.70" + } + }, + { + "id":"33da4438-106d-4cd4-987a-5734cf09c596", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T11:00:24.413Z", + "completed":"2016-03-01T11:00:24.413Z", + "new_balance":"3777.55", + "value":"-3.44" + } + }, + { + "id":"8375c97b-8e80-40c3-b4cc-60883897a97f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:29:43.402Z", + "completed":"2016-03-01T16:29:43.402Z", + "new_balance":"3762.30", + "value":"-15.25" + } + }, + { + "id":"f9eadf10-4a6e-4994-be00-7999b6113dac", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T19:12:40.209Z", + "completed":"2016-03-01T19:12:40.209Z", + "new_balance":"3757.15", + "value":"-5.15" + } + }, + { + "id":"f2166da8-d16f-4ce7-b1da-5103054fedfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T21:26:23.578Z", + "completed":"2016-03-01T21:26:23.578Z", + "new_balance":"3698.92", + "value":"-58.23" + } + }, + { + "id":"47fe9bcf-846d-4fa6-b7cf-3dc853d78d78", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T21:45:07.229Z", + "completed":"2016-03-01T21:45:07.229Z", + "new_balance":"3696.60", + "value":"-2.32" + } + }, + { + "id":"521aa4dc-f4cc-4df1-882c-380cff4fbdb3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T00:21:38.970Z", + "completed":"2016-03-02T00:21:38.970Z", + "new_balance":"3689.50", + "value":"-7.10" + } + }, + { + "id":"0c5a094a-8b93-4d5f-bf26-df72f815a1f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T01:44:35.151Z", + "completed":"2016-03-04T01:44:35.151Z", + "new_balance":"3682.20", + "value":"-7.30" + } + }, + { + "id":"f1602e8b-b617-43d4-a8f1-d29e8f28acd4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T06:36:03.433Z", + "completed":"2016-03-04T06:36:03.433Z", + "new_balance":"3680.95", + "value":"-1.25" + } + }, + { + "id":"ee3161d2-e690-4f04-ae7f-2911ec7af44f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T17:37:32.832Z", + "completed":"2016-03-04T17:37:32.832Z", + "new_balance":"3677.65", + "value":"-3.30" + } + }, + { + "id":"bf5a7a9c-1f92-4b80-ac56-633b6bd3d931", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T20:24:24.671Z", + "completed":"2016-03-04T20:24:24.671Z", + "new_balance":"3676.89", + "value":"-0.76" + } + }, + { + "id":"b53dc8b5-01fc-44ca-9743-9a3b3d560dfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T12:12:29.704Z", + "completed":"2016-03-05T12:12:29.704Z", + "new_balance":"3672.85", + "value":"-4.04" + } + }, + { + "id":"4c309f52-4109-4591-a00a-50105b0482c5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T12:59:58.725Z", + "completed":"2016-03-05T12:59:58.725Z", + "new_balance":"3672.45", + "value":"-0.40" + } + }, + { + "id":"78061b82-861e-4f13-badc-b08e1ec35a01", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T00:30:26.877Z", + "completed":"2016-03-06T00:30:26.877Z", + "new_balance":"3667.18", + "value":"-5.27" + } + }, + { + "id":"0b9d75a9-442b-4b59-acc4-9659abcd5c03", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T21:46:44.109Z", + "completed":"2016-03-06T21:46:44.109Z", + "new_balance":"3659.88", + "value":"-7.30" + } + }, + { + "id":"20c5c021-0cad-4db7-9ae8-33b787a442cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T18:46:54.782Z", + "completed":"2016-03-07T18:46:54.782Z", + "new_balance":"3655.61", + "value":"-4.27" + } + }, + { + "id":"13398312-0eb7-43d1-bec0-8de12dae03aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T09:55:19.711Z", + "completed":"2016-03-08T09:55:19.711Z", + "new_balance":"3650.34", + "value":"-5.27" + } + }, + { + "id":"b620e6e7-2838-4426-a752-229682d95394", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T15:01:26.068Z", + "completed":"2016-03-09T15:01:26.068Z", + "new_balance":"3649.80", + "value":"-0.54" + } + }, + { + "id":"c2173e23-ffb1-4732-9982-2cb781bfd3b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T11:15:00.970Z", + "completed":"2016-03-10T11:15:00.970Z", + "new_balance":"3643.48", + "value":"-6.32" + } + }, + { + "id":"88c9a660-c965-4da9-805b-c3e89d82ddc6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T17:57:17.637Z", + "completed":"2016-03-11T17:57:17.637Z", + "new_balance":"3642.71", + "value":"-0.77" + } + }, + { + "id":"3cb97106-47f5-4761-9682-36fca80b7a43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T14:49:30.880Z", + "completed":"2016-03-12T14:49:30.880Z", + "new_balance":"3640.46", + "value":"-2.25" + } + }, + { + "id":"bc9b4631-1777-4236-a3ff-664332e00236", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T20:15:13.820Z", + "completed":"2016-03-12T20:15:13.820Z", + "new_balance":"3639.41", + "value":"-1.05" + } + }, + { + "id":"9f9394a7-1b7b-4cec-819b-1c60180fc6bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:26:10.158Z", + "completed":"2016-03-13T04:26:10.158Z", + "new_balance":"3635.15", + "value":"-4.26" + } + }, + { + "id":"efea7dd3-3d10-4ead-a951-a7874c7b185b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T19:36:28.614Z", + "completed":"2016-03-14T19:36:28.614Z", + "new_balance":"3634.63", + "value":"-0.52" + } + }, + { + "id":"c6e45a01-bf3e-4b02-a6ee-9b5f2859bac2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T03:47:34.356Z", + "completed":"2016-03-16T03:47:34.356Z", + "new_balance":"3629.81", + "value":"-4.82" + } + }, + { + "id":"607d80c8-e469-4beb-b051-21b8585e28d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T07:55:18.075Z", + "completed":"2016-03-16T07:55:18.075Z", + "new_balance":"3620.02", + "value":"-9.79" + } + }, + { + "id":"a033b199-777c-4f1d-bb0c-fbbdfe463569", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T17:45:09.612Z", + "completed":"2016-03-18T17:45:09.612Z", + "new_balance":"3619.50", + "value":"-0.52" + } + }, + { + "id":"e1d379f0-cfe4-46d2-9959-af7948f3db48", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T13:29:46.046Z", + "completed":"2016-03-19T13:29:46.046Z", + "new_balance":"3613.18", + "value":"-6.32" + } + }, + { + "id":"208d0112-5e6c-4b1e-b6fc-1f7332c35411", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T17:22:38.437Z", + "completed":"2016-03-19T17:22:38.437Z", + "new_balance":"3609.03", + "value":"-4.15" + } + }, + { + "id":"ffff9ccf-a4aa-476c-8e8a-df24574ac445", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T22:36:23.034Z", + "completed":"2016-03-19T22:36:23.034Z", + "new_balance":"3604.74", + "value":"-4.29" + } + }, + { + "id":"b3021c66-d3ab-491a-8613-11d7ddc54bfa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T08:22:40.647Z", + "completed":"2016-03-20T08:22:40.647Z", + "new_balance":"3599.58", + "value":"-5.16" + } + }, + { + "id":"41688029-b6d1-4b79-a755-5cee8985215d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T16:58:48.621Z", + "completed":"2016-03-20T16:58:48.621Z", + "new_balance":"3592.62", + "value":"-6.96" + } + }, + { + "id":"c0b4a8a6-a802-463e-97f3-ec940763a4b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T02:35:57.737Z", + "completed":"2016-03-21T02:35:57.737Z", + "new_balance":"3592.03", + "value":"-0.59" + } + }, + { + "id":"5d989ad2-c01d-4773-84ff-9f307b1f5586", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T08:26:47.506Z", + "completed":"2016-03-21T08:26:47.506Z", + "new_balance":"3591.27", + "value":"-0.76" + } + }, + { + "id":"16d404a3-7516-4773-9819-f7f5688ed98d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T07:28:52.812Z", + "completed":"2016-03-23T07:28:52.812Z", + "new_balance":"3590.36", + "value":"-0.91" + } + }, + { + "id":"ceff3a5d-179a-4944-a9e6-d51861f702ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T14:50:05.123Z", + "completed":"2016-03-23T14:50:05.123Z", + "new_balance":"3585.75", + "value":"-4.61" + } + }, + { + "id":"48d7f038-789a-4bdf-b45e-4178ffe898c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T11:50:50.997Z", + "completed":"2016-03-24T11:50:50.997Z", + "new_balance":"3582.20", + "value":"-3.55" + } + }, + { + "id":"03f88e18-58f1-4227-a9a3-ae17e7b9e86c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T14:29:35.534Z", + "completed":"2016-03-25T14:29:35.534Z", + "new_balance":"3579.14", + "value":"-3.06" + } + }, + { + "id":"5b2ef43d-7fba-45e4-9fd7-c33e22bb42e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T15:51:17.871Z", + "completed":"2016-03-25T15:51:17.871Z", + "new_balance":"3577.83", + "value":"-1.31" + } + }, + { + "id":"77255bf5-f2e7-4461-a0a9-ea77873635c3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T11:54:11.858Z", + "completed":"2016-03-27T11:54:11.858Z", + "new_balance":"3550.33", + "value":"-27.50" + } + }, + { + "id":"160d6656-ec91-45a3-b694-621f7182eb1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T09:05:52.892Z", + "completed":"2016-03-28T09:05:52.892Z", + "new_balance":"3547.59", + "value":"-2.74" + } + }, + { + "id":"111f866f-9980-42ed-9e33-be33bf94f7da", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T13:50:36.202Z", + "completed":"2016-04-01T13:50:36.202Z", + "new_balance":"3489.36", + "value":"-58.23" + } + }, + { + "id":"1640e11a-eb9c-4f7d-acac-cfd6783ea790", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:45:50.077Z", + "completed":"2016-04-01T14:45:50.077Z", + "new_balance":"3474.11", + "value":"-15.25" + } + }, + { + "id":"e6e6ef85-c59f-4a8a-a029-fa6d930f9257", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T16:33:51.362Z", + "completed":"2016-04-01T16:33:51.362Z", + "new_balance":"3468.96", + "value":"-5.15" + } + }, + { + "id":"4fb4409b-f819-468d-8637-d6b8677be96b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T23:50:28.995Z", + "completed":"2016-04-01T23:50:28.995Z", + "new_balance":"3466.64", + "value":"-2.32" + } + }, + { + "id":"9fbc2315-2d5a-489d-be1a-e98bda5b3cc7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T01:21:46.274Z", + "completed":"2016-04-02T01:21:46.274Z", + "new_balance":"3459.54", + "value":"-7.10" + } + }, + { + "id":"4c572d79-8bfc-45c7-aff3-5d218f128842", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:48:03.477Z", + "completed":"2016-04-02T14:48:03.477Z", + "new_balance":"3449.85", + "value":"-9.69" + } + }, + { + "id":"1d1966aa-9da6-474a-a8ff-d62688ed246c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T01:15:46.066Z", + "completed":"2016-04-03T01:15:46.066Z", + "new_balance":"3446.94", + "value":"-2.91" + } + }, + { + "id":"02c396b6-57c1-4a0e-b579-a7bc733507c0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:53:52.437Z", + "completed":"2016-04-03T01:53:52.437Z", + "new_balance":"3454.88", + "value":"7.94" + } + }, + { + "id":"5ada5df3-d885-4213-9ccc-c76a28d84bbd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:19:00.729Z", + "completed":"2016-04-03T12:19:00.729Z", + "new_balance":"3451.10", + "value":"-3.78" + } + }, + { + "id":"388c231d-0eab-4b5f-874c-9b67080c4873", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:03:22.855Z", + "completed":"2016-04-03T19:03:22.855Z", + "new_balance":"3447.32", + "value":"-3.78" + } + }, + { + "id":"ccdabe9f-b1d7-4ede-9b2c-9a34637d9bf6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T22:26:48.242Z", + "completed":"2016-04-03T22:26:48.242Z", + "new_balance":"3459.66", + "value":"12.34" + } + }, + { + "id":"cd01136e-c4ce-4760-a1d0-f789b042b672", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T12:31:00.482Z", + "completed":"2016-04-04T12:31:00.482Z", + "new_balance":"3452.47", + "value":"-7.19" + } + }, + { + "id":"b4514836-0545-420a-83a7-27cb375af211", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T09:44:03.842Z", + "completed":"2016-04-05T09:44:03.842Z", + "new_balance":"3452.01", + "value":"-0.46" + } + }, + { + "id":"9cbc03d0-eaa6-4aa0-9612-b9a5f92e7df9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T11:53:23.407Z", + "completed":"2016-04-05T11:53:23.407Z", + "new_balance":"3449.33", + "value":"-2.68" + } + }, + { + "id":"cf29e8d6-e05f-48b9-94b8-28f5680cbef9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T18:21:39.787Z", + "completed":"2016-04-07T18:21:39.787Z", + "new_balance":"3447.80", + "value":"-1.53" + } + }, + { + "id":"de3c770e-1f4f-426e-957e-9f11ef8e7c81", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T19:05:44.899Z", + "completed":"2016-04-07T19:05:44.899Z", + "new_balance":"3444.58", + "value":"-3.22" + } + }, + { + "id":"678048c2-b682-4f6a-9218-e70585bdcadd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T16:50:25.841Z", + "completed":"2016-04-08T16:50:25.841Z", + "new_balance":"3443.68", + "value":"-0.90" + } + }, + { + "id":"8600ee95-68a3-4839-b8d1-62345296ca1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T01:39:33.424Z", + "completed":"2016-04-09T01:39:33.424Z", + "new_balance":"3416.18", + "value":"-27.50" + } + }, + { + "id":"a62e71d3-f9fb-44e6-b993-a5ac030b0b8c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T05:26:47.204Z", + "completed":"2016-04-09T05:26:47.204Z", + "new_balance":"3415.74", + "value":"-0.44" + } + }, + { + "id":"b2cb4039-2e08-4a32-a971-4e00e9e8ed79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T22:59:19.238Z", + "completed":"2016-04-09T22:59:19.238Z", + "new_balance":"3413.63", + "value":"-2.11" + } + }, + { + "id":"387e22b7-7b84-4c0d-a1ae-96db330d69c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T23:04:12.890Z", + "completed":"2016-04-10T23:04:12.890Z", + "new_balance":"3409.15", + "value":"-4.48" + } + }, + { + "id":"92ad7b9e-e3f7-447e-9b94-b1dc635f5771", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T20:17:11.965Z", + "completed":"2016-04-17T20:17:11.965Z", + "new_balance":"3408.04", + "value":"-1.11" + } + }, + { + "id":"4dd768ae-edcb-4e04-a47e-c0efb469d26e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T20:31:33.731Z", + "completed":"2016-04-18T20:31:33.731Z", + "new_balance":"3405.23", + "value":"-2.81" + } + }, + { + "id":"4bdc8c44-7375-4eef-8ce0-04c2df02f1c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T15:06:54.692Z", + "completed":"2016-04-25T15:06:54.692Z", + "new_balance":"3399.83", + "value":"-5.40" + } + }, + { + "id":"a2a2d403-7b5d-4263-bbdb-4cad88beea9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T18:26:20.065Z", + "completed":"2016-04-26T18:26:20.065Z", + "new_balance":"3399.39", + "value":"-0.44" + } + }, + { + "id":"bdc4e9c9-0b50-43af-b32a-824041733713", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T18:51:50.971Z", + "completed":"2016-04-26T18:51:50.971Z", + "new_balance":"3393.57", + "value":"-5.82" + } + }, + { + "id":"74db9a72-8292-41ec-abff-452acab4432c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T00:22:11.957Z", + "completed":"2016-05-02T00:22:11.957Z", + "new_balance":"3335.34", + "value":"-58.23" + } + }, + { + "id":"d44ed5e6-229b-40a8-b644-c43db7f103cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T03:38:39.434Z", + "completed":"2016-05-02T03:38:39.434Z", + "new_balance":"3320.09", + "value":"-15.25" + } + }, + { + "id":"e63cbc38-dac6-4bff-b6a2-c2774c22addf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:55:58.079Z", + "completed":"2016-05-02T03:55:58.079Z", + "new_balance":"3314.94", + "value":"-5.15" + } + }, + { + "id":"520d933f-4807-470f-9f3b-c854246390e9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T08:14:43.187Z", + "completed":"2016-05-02T08:14:43.187Z", + "new_balance":"3313.79", + "value":"-1.15" + } + }, + { + "id":"fb577757-1e9f-4e5d-a375-3381d5b55790", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T08:24:33.036Z", + "completed":"2016-05-02T08:24:33.036Z", + "new_balance":"3311.47", + "value":"-2.32" + } + }, + { + "id":"c3d4d1e8-abe7-4149-85a8-86cea43eaa09", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T14:25:02.193Z", + "completed":"2016-05-02T14:25:02.193Z", + "new_balance":"3304.37", + "value":"-7.10" + } + }, + { + "id":"b109485e-e757-4dc3-b42f-3a252f7fbf7e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T16:36:30.219Z", + "completed":"2016-05-02T16:36:30.219Z", + "new_balance":"3487.07", + "value":"182.70" + } + }, + { + "id":"ebbaf03a-b06c-40d1-85bf-616a322a2d8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T23:59:22.489Z", + "completed":"2016-05-02T23:59:22.489Z", + "new_balance":"3483.63", + "value":"-3.44" + } + }, + { + "id":"07919aba-7e75-4c76-9eba-4fade1eb7c69", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T12:34:04.882Z", + "completed":"2016-05-03T12:34:04.882Z", + "new_balance":"3481.53", + "value":"-2.10" + } + }, + { + "id":"07e62876-527c-4a62-a4b7-141e19714c53", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T21:44:09.209Z", + "completed":"2016-05-03T21:44:09.209Z", + "new_balance":"3479.03", + "value":"-2.50" + } + }, + { + "id":"f8b83101-8bf1-428a-8a5e-f54c9933ff4a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T03:24:18.413Z", + "completed":"2016-05-04T03:24:18.413Z", + "new_balance":"3475.70", + "value":"-3.33" + } + }, + { + "id":"91db9743-333b-4ed3-9c13-5a1d972c842d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T09:48:49.317Z", + "completed":"2016-05-04T09:48:49.317Z", + "new_balance":"3473.30", + "value":"-2.40" + } + }, + { + "id":"39b439ec-88cc-4459-a578-0996574d06d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T21:07:39.961Z", + "completed":"2016-05-05T21:07:39.961Z", + "new_balance":"3466.11", + "value":"-7.19" + } + }, + { + "id":"8bc9f711-4885-4357-91f8-b44018dbdab6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T20:49:40.695Z", + "completed":"2016-05-07T20:49:40.695Z", + "new_balance":"3463.08", + "value":"-3.03" + } + }, + { + "id":"1d03d64f-695b-4984-b7a1-225c14627917", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T21:29:49.669Z", + "completed":"2016-05-07T21:29:49.669Z", + "new_balance":"3462.60", + "value":"-0.48" + } + }, + { + "id":"c2e16d15-e9bf-4510-aeb6-e33c7b3efacc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T11:41:36.978Z", + "completed":"2016-05-12T11:41:36.978Z", + "new_balance":"3459.46", + "value":"-3.14" + } + }, + { + "id":"775f6ecf-9d47-4eba-8667-701d8f30fa8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T13:24:45.358Z", + "completed":"2016-05-12T13:24:45.358Z", + "new_balance":"3457.01", + "value":"-2.45" + } + }, + { + "id":"50315d99-03c0-4483-b93c-b959032ef383", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T18:41:28.625Z", + "completed":"2016-05-14T18:41:28.625Z", + "new_balance":"3453.53", + "value":"-3.48" + } + }, + { + "id":"afe5aa6f-c597-4f87-9fb3-427589cc381b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T00:06:33.401Z", + "completed":"2016-05-16T00:06:33.401Z", + "new_balance":"3453.06", + "value":"-0.47" + } + }, + { + "id":"221ebd63-3443-45b7-9faa-15dde0fcd605", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T07:37:20.582Z", + "completed":"2016-05-18T07:37:20.582Z", + "new_balance":"3452.29", + "value":"-0.77" + } + }, + { + "id":"12b77014-a1e3-4719-8c07-41ccf2441ba5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T20:40:24.029Z", + "completed":"2016-05-20T20:40:24.029Z", + "new_balance":"3456.37", + "value":"4.08" + } + }, + { + "id":"93cab9ca-28f0-4a18-a441-9758dddd080d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T05:50:10.150Z", + "completed":"2016-05-21T05:50:10.150Z", + "new_balance":"3452.25", + "value":"-4.12" + } + }, + { + "id":"a8592f9c-94a6-43ab-bf2d-9b6f19e2442e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T12:56:59.848Z", + "completed":"2016-05-21T12:56:59.848Z", + "new_balance":"3445.82", + "value":"-6.43" + } + }, + { + "id":"dd58c151-b5dc-4289-a2b4-0b30aea1bef5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:15:45.040Z", + "completed":"2016-05-27T15:15:45.040Z", + "new_balance":"3442.88", + "value":"-2.94" + } + }, + { + "id":"a5cb76b0-f052-4447-b586-be05a9400a0d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:30:59.841Z", + "completed":"2016-05-27T20:30:59.841Z", + "new_balance":"3440.33", + "value":"-2.55" + } + }, + { + "id":"a086f386-14d4-49a0-a6e6-de76d07f7d9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T03:11:57.305Z", + "completed":"2016-06-01T03:11:57.305Z", + "new_balance":"3438.01", + "value":"-2.32" + } + }, + { + "id":"c75cc41e-8cc4-428e-ad46-0aaba63b193c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T08:01:32.040Z", + "completed":"2016-06-01T08:01:32.040Z", + "new_balance":"3432.86", + "value":"-5.15" + } + }, + { + "id":"81c05a61-16d5-4465-a8df-e6c9684293ca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T08:38:45.571Z", + "completed":"2016-06-01T08:38:45.571Z", + "new_balance":"3429.42", + "value":"-3.44" + } + }, + { + "id":"82ee6b16-0029-40ff-a4b2-7e26dcb6f8dc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T11:42:52.213Z", + "completed":"2016-06-01T11:42:52.213Z", + "new_balance":"3612.12", + "value":"182.70" + } + }, + { + "id":"84535e66-b5ab-40aa-9693-eabea9f7c8a0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T15:10:36.485Z", + "completed":"2016-06-01T15:10:36.485Z", + "new_balance":"3553.89", + "value":"-58.23" + } + }, + { + "id":"8d867d9f-99be-4475-8908-b1d24c722cbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T19:38:56.839Z", + "completed":"2016-06-01T19:38:56.839Z", + "new_balance":"3538.64", + "value":"-15.25" + } + }, + { + "id":"6f711861-0e16-4c4b-b164-824650eb55e3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:32:39.749Z", + "completed":"2016-06-04T10:32:39.749Z", + "new_balance":"3526.68", + "value":"-11.96" + } + }, + { + "id":"6c31db3b-c53b-4ca0-9439-3ffcff4cb7fc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T15:22:42.751Z", + "completed":"2016-06-04T15:22:42.751Z", + "new_balance":"3519.58", + "value":"-7.10" + } + }, + { + "id":"518208eb-37e1-42e6-8338-56d904f82763", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T14:43:44.562Z", + "completed":"2016-06-11T14:43:44.562Z", + "new_balance":"3516.28", + "value":"-3.30" + } + }, + { + "id":"f39429c9-2dbd-4dcf-9230-3969a43cf91a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T11:56:00.770Z", + "completed":"2016-06-12T11:56:00.770Z", + "new_balance":"3515.03", + "value":"-1.25" + } + }, + { + "id":"b8cce11c-22f0-4947-baf4-ed4579e63fdd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T14:12:59.269Z", + "completed":"2016-06-13T14:12:59.269Z", + "new_balance":"3514.27", + "value":"-0.76" + } + }, + { + "id":"d98b66c6-7240-4f6f-aebe-a1414b2ba573", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T20:30:29.131Z", + "completed":"2016-06-13T20:30:29.131Z", + "new_balance":"3506.97", + "value":"-7.30" + } + }, + { + "id":"9f2561f4-883c-4a02-aad2-e0f414b9483e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T08:49:44.179Z", + "completed":"2016-06-16T08:49:44.179Z", + "new_balance":"3502.93", + "value":"-4.04" + } + }, + { + "id":"b218e7c8-240f-4041-be47-442c5d6d8a2b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T00:42:58.417Z", + "completed":"2016-06-17T00:42:58.417Z", + "new_balance":"3502.53", + "value":"-0.40" + } + }, + { + "id":"b687f664-0d75-474e-b989-a398231fcf5b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T18:47:22.035Z", + "completed":"2016-06-17T18:47:22.035Z", + "new_balance":"3495.23", + "value":"-7.30" + } + }, + { + "id":"93555957-2a23-47f5-a403-6d98fddc3459", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T19:00:47.354Z", + "completed":"2016-06-18T19:00:47.354Z", + "new_balance":"3489.96", + "value":"-5.27" + } + }, + { + "id":"3e54ddcb-590f-4bef-b6eb-b591c6bf7959", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T15:41:45.272Z", + "completed":"2016-06-19T15:41:45.272Z", + "new_balance":"3484.69", + "value":"-5.27" + } + }, + { + "id":"7372303c-5eab-4155-a794-ca23d5359241", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T23:48:55.694Z", + "completed":"2016-06-19T23:48:55.694Z", + "new_balance":"3480.42", + "value":"-4.27" + } + }, + { + "id":"15784782-7380-4430-8336-c3a90db4a2e9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T12:07:48.583Z", + "completed":"2016-06-21T12:07:48.583Z", + "new_balance":"3479.88", + "value":"-0.54" + } + }, + { + "id":"a804e8b5-6840-4389-9817-aa12a5de110a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T13:47:29.624Z", + "completed":"2016-06-21T13:47:29.624Z", + "new_balance":"3473.56", + "value":"-6.32" + } + }, + { + "id":"d9a8ebae-296e-46f9-b6de-7307e0396e98", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T10:46:51.377Z", + "completed":"2016-06-23T10:46:51.377Z", + "new_balance":"3471.31", + "value":"-2.25" + } + }, + { + "id":"94be3529-532d-40b3-8c82-3fa2f3bf7d58", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T19:24:51.866Z", + "completed":"2016-06-23T19:24:51.866Z", + "new_balance":"3470.54", + "value":"-0.77" + } + }, + { + "id":"be6668c8-7ebf-4928-aa13-c1a267aa8cb0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T16:45:04.057Z", + "completed":"2016-06-24T16:45:04.057Z", + "new_balance":"3466.28", + "value":"-4.26" + } + }, + { + "id":"31849767-6b75-40d7-8094-665b8c005615", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T18:41:01.719Z", + "completed":"2016-06-24T18:41:01.719Z", + "new_balance":"3465.23", + "value":"-1.05" + } + }, + { + "id":"44acc17e-b9bc-4983-8397-dce39f094f2a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:11:46.006Z", + "completed":"2016-06-28T06:11:46.006Z", + "new_balance":"3464.71", + "value":"-0.52" + } + }, + { + "id":"79f12600-072d-4dcf-bc20-7a97f10d41fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T07:15:38.108Z", + "completed":"2016-06-28T07:15:38.108Z", + "new_balance":"3464.19", + "value":"-0.52" + } + }, + { + "id":"a3a27a50-acf3-4f02-883c-d5928a2696df", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T10:53:27.769Z", + "completed":"2016-06-28T10:53:27.769Z", + "new_balance":"3454.40", + "value":"-9.79" + } + }, + { + "id":"ec5012af-fb36-4821-bc6b-e599a551a0ac", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T13:55:35.386Z", + "completed":"2016-06-28T13:55:35.386Z", + "new_balance":"3449.58", + "value":"-4.82" + } + }, + { + "id":"d83cfc2c-445b-4067-8994-68024f37235e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T10:04:14.651Z", + "completed":"2016-06-29T10:04:14.651Z", + "new_balance":"3443.26", + "value":"-6.32" + } + }, + { + "id":"9d0e3c56-a7b2-4ce1-af7a-6cee156a8381", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T11:44:18.344Z", + "completed":"2016-06-29T11:44:18.344Z", + "new_balance":"3438.10", + "value":"-5.16" + } + }, + { + "id":"b89ee495-1896-4dea-a7c6-bc45bd42cce3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T14:13:47.783Z", + "completed":"2016-06-29T14:13:47.783Z", + "new_balance":"3431.14", + "value":"-6.96" + } + }, + { + "id":"8b029861-e73e-4919-a1c6-774f5d0ce679", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T19:00:51.075Z", + "completed":"2016-06-29T19:00:51.075Z", + "new_balance":"3426.85", + "value":"-4.29" + } + }, + { + "id":"fc8cfcc1-1815-4595-9c4c-8f64ef7a1101", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T23:42:54.393Z", + "completed":"2016-06-29T23:42:54.393Z", + "new_balance":"3422.70", + "value":"-4.15" + } + }, + { + "id":"294b0041-51da-4f20-8d4a-9386f5709ec3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T23:48:34.709Z", + "completed":"2016-06-29T23:48:34.709Z", + "new_balance":"3421.94", + "value":"-0.76" + } + }, + { + "id":"f1311f2e-3114-46cb-adaf-d7636f9798cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T00:43:35.287Z", + "completed":"2016-06-30T00:43:35.287Z", + "new_balance":"3417.33", + "value":"-4.61" + } + }, + { + "id":"fc1013e8-61c6-4254-a3be-70c1a416fa84", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T06:21:43.034Z", + "completed":"2016-06-30T06:21:43.034Z", + "new_balance":"3416.74", + "value":"-0.59" + } + }, + { + "id":"1e0b960d-5473-482f-b3f3-bdf279b724e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T10:25:51.648Z", + "completed":"2016-06-30T10:25:51.648Z", + "new_balance":"3415.83", + "value":"-0.91" + } + }, + { + "id":"24837d85-fc0e-44e7-b11f-625b397f3dd2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T15:33:38.031Z", + "completed":"2016-06-30T15:33:38.031Z", + "new_balance":"3412.28", + "value":"-3.55" + } + }, + { + "id":"7bb8c462-e028-4077-9024-724effa5f713", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T00:13:09.998Z", + "completed":"2016-07-01T00:13:09.998Z", + "new_balance":"3408.84", + "value":"-3.44" + } + }, + { + "id":"2c9b8e89-3a55-4668-b7c0-6621724a151e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T00:29:19.383Z", + "completed":"2016-07-01T00:29:19.383Z", + "new_balance":"3406.10", + "value":"-2.74" + } + }, + { + "id":"3ef677cb-3407-4557-95f8-5a139f18b43d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:24:48.689Z", + "completed":"2016-07-01T02:24:48.689Z", + "new_balance":"3378.60", + "value":"-27.50" + } + }, + { + "id":"f403c705-5391-4d08-9766-01d786e0bbab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T04:13:03.340Z", + "completed":"2016-07-01T04:13:03.340Z", + "new_balance":"3375.54", + "value":"-3.06" + } + }, + { + "id":"8a7de13c-6cad-463c-a13c-74a0e04cc782", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:39:04.042Z", + "completed":"2016-07-01T05:39:04.042Z", + "new_balance":"3360.29", + "value":"-15.25" + } + }, + { + "id":"af663b26-00ed-490e-9343-3c8bb274f723", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T06:05:55.524Z", + "completed":"2016-07-01T06:05:55.524Z", + "new_balance":"3357.97", + "value":"-2.32" + } + }, + { + "id":"ddb66f4a-40a7-44a4-ae5a-781baf5d4af7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T09:50:10.141Z", + "completed":"2016-07-01T09:50:10.141Z", + "new_balance":"3354.53", + "value":"-3.44" + } + }, + { + "id":"fcccf6d3-f704-4688-baf4-1c9317aa8ed9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T12:31:16.766Z", + "completed":"2016-07-01T12:31:16.766Z", + "new_balance":"3296.30", + "value":"-58.23" + } + }, + { + "id":"cb02c0e7-9391-43df-9d0b-eac578840663", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T21:45:36.436Z", + "completed":"2016-07-01T21:45:36.436Z", + "new_balance":"3294.99", + "value":"-1.31" + } + }, + { + "id":"a298e4e8-de82-49ec-8232-7bb33395476a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T23:55:12.165Z", + "completed":"2016-07-01T23:55:12.165Z", + "new_balance":"3289.84", + "value":"-5.15" + } + }, + { + "id":"70f47cd2-1767-4c0f-a0bb-481f11a57cea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T14:13:30.189Z", + "completed":"2016-07-02T14:13:30.189Z", + "new_balance":"3282.74", + "value":"-7.10" + } + }, + { + "id":"ed02c5e0-8484-4b7e-b8f2-85f73f60e3de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T03:15:22.291Z", + "completed":"2016-07-03T03:15:22.291Z", + "new_balance":"3272.27", + "value":"-10.47" + } + }, + { + "id":"9ab56bcd-9d86-457f-8c8f-50cff99acf4b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T03:30:58.795Z", + "completed":"2016-07-04T03:30:58.795Z", + "new_balance":"3270.49", + "value":"-1.78" + } + }, + { + "id":"765d05fd-7bf4-4287-9f03-ef4b508ad1e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:04:56.755Z", + "completed":"2016-07-05T13:04:56.755Z", + "new_balance":"3260.85", + "value":"-9.64" + } + }, + { + "id":"cabf2489-213f-4d42-940a-fa7bb94f23b4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T14:22:36.216Z", + "completed":"2016-07-05T14:22:36.216Z", + "new_balance":"3253.66", + "value":"-7.19" + } + }, + { + "id":"72f0a3fd-5097-44e1-89d6-5cc08c6f381d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T17:57:50.237Z", + "completed":"2016-07-06T17:57:50.237Z", + "new_balance":"3253.20", + "value":"-0.46" + } + }, + { + "id":"fb78289c-c831-47de-aec2-e65341a9e608", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T19:58:30.013Z", + "completed":"2016-07-11T19:58:30.013Z", + "new_balance":"3250.52", + "value":"-2.68" + } + }, + { + "id":"45f8b5b5-2d75-4010-bb98-fd62728e602a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T09:02:39.215Z", + "completed":"2016-07-12T09:02:39.215Z", + "new_balance":"3247.30", + "value":"-3.22" + } + }, + { + "id":"44cc9283-e88f-4a2a-b948-2acc107cf2a3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T19:43:30.329Z", + "completed":"2016-07-14T19:43:30.329Z", + "new_balance":"3245.77", + "value":"-1.53" + } + }, + { + "id":"eadfa4bd-0b98-4c10-86ff-3d0ac356d065", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T06:28:58.898Z", + "completed":"2016-07-16T06:28:58.898Z", + "new_balance":"3244.87", + "value":"-0.90" + } + }, + { + "id":"60f7803b-374c-448d-9249-ce825d9253ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T16:39:44.404Z", + "completed":"2016-07-18T16:39:44.404Z", + "new_balance":"3242.76", + "value":"-2.11" + } + }, + { + "id":"441616d8-c1d7-4061-bbff-16145536f90f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T02:00:34.378Z", + "completed":"2016-07-20T02:00:34.378Z", + "new_balance":"3215.26", + "value":"-27.50" + } + }, + { + "id":"744ba566-74a6-44a9-8835-6d107e6ac0bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T18:18:06.611Z", + "completed":"2016-07-20T18:18:06.611Z", + "new_balance":"3214.82", + "value":"-0.44" + } + }, + { + "id":"c8dc8535-72d5-428d-89f5-a119a5adcb38", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T14:36:03.902Z", + "completed":"2016-07-24T14:36:03.902Z", + "new_balance":"3213.71", + "value":"-1.11" + } + }, + { + "id":"0b0f738e-7eec-453b-bbf1-284ee87b241c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T21:12:30.836Z", + "completed":"2016-07-24T21:12:30.836Z", + "new_balance":"3209.23", + "value":"-4.48" + } + }, + { + "id":"6cb3707a-7d38-4245-b1bf-495438f16671", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T23:35:14.339Z", + "completed":"2016-07-25T23:35:14.339Z", + "new_balance":"3203.83", + "value":"-5.40" + } + }, + { + "id":"2d2aa082-e226-43a9-b274-fc77c18d8123", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T23:50:14.218Z", + "completed":"2016-07-25T23:50:14.218Z", + "new_balance":"3201.02", + "value":"-2.81" + } + }, + { + "id":"ae068cab-4201-469c-b3e2-c1f73d264260", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T07:51:07.412Z", + "completed":"2016-07-26T07:51:07.412Z", + "new_balance":"3195.20", + "value":"-5.82" + } + }, + { + "id":"06b7cdad-0c3c-476b-84c0-7b223a6ca4fb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T12:49:15.757Z", + "completed":"2016-07-27T12:49:15.757Z", + "new_balance":"3194.76", + "value":"-0.44" + } + }, + { + "id":"c8c37460-3806-42f0-83ae-5e1c031a4a41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:20:27.814Z", + "completed":"2016-08-01T02:20:27.814Z", + "new_balance":"3191.32", + "value":"-3.44" + } + }, + { + "id":"bac7ac9c-d403-4d11-bb6a-8d4ba53ec5a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T03:15:20.015Z", + "completed":"2016-08-01T03:15:20.015Z", + "new_balance":"3186.17", + "value":"-5.15" + } + }, + { + "id":"3cbac25a-b443-4c7a-88a4-ac12453d6514", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T10:37:27.703Z", + "completed":"2016-08-01T10:37:27.703Z", + "new_balance":"3170.92", + "value":"-15.25" + } + }, + { + "id":"11e2abff-3c85-4b14-b3e6-0e4a315033b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T12:04:39.702Z", + "completed":"2016-08-01T12:04:39.702Z", + "new_balance":"3112.69", + "value":"-58.23" + } + }, + { + "id":"2252766b-4b1e-40f2-9875-039d2c26a815", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T22:53:47.115Z", + "completed":"2016-08-01T22:53:47.115Z", + "new_balance":"3295.39", + "value":"182.70" + } + }, + { + "id":"a0fc264e-94f3-4fbb-8df3-88dfb6fd89a6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T23:50:08.790Z", + "completed":"2016-08-01T23:50:08.790Z", + "new_balance":"3293.07", + "value":"-2.32" + } + }, + { + "id":"2cf528c2-339f-4a4b-b441-9d99964fc76f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T05:09:44.654Z", + "completed":"2016-08-02T05:09:44.654Z", + "new_balance":"3285.97", + "value":"-7.10" + } + }, + { + "id":"c498a528-bbdf-4084-8569-79c12ad1abe9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T15:41:22.425Z", + "completed":"2016-08-03T15:41:22.425Z", + "new_balance":"3285.51", + "value":"-0.46" + } + }, + { + "id":"377755d5-ed4e-4b82-9563-811563fe26be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T00:50:34.492Z", + "completed":"2016-08-04T00:50:34.492Z", + "new_balance":"3282.59", + "value":"-2.92" + } + }, + { + "id":"a284019c-de69-423d-97e3-4b1f8957c2ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T23:31:22.418Z", + "completed":"2016-08-07T23:31:22.418Z", + "new_balance":"3280.09", + "value":"-2.50" + } + }, + { + "id":"0db1c271-211e-4f68-9eed-be30b4c69136", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T09:52:12.341Z", + "completed":"2016-08-09T09:52:12.341Z", + "new_balance":"3277.69", + "value":"-2.40" + } + }, + { + "id":"bd827045-16b4-44cf-945f-c2711c5a6087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:06:56.458Z", + "completed":"2016-08-09T23:06:56.458Z", + "new_balance":"3274.36", + "value":"-3.33" + } + }, + { + "id":"aa3daa80-0e52-4801-89db-5c07c59be8b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T18:30:46.049Z", + "completed":"2016-08-10T18:30:46.049Z", + "new_balance":"3267.17", + "value":"-7.19" + } + }, + { + "id":"f9b58784-e60b-4bd1-8a80-4c2e3a066fc8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T13:20:56.062Z", + "completed":"2016-08-14T13:20:56.062Z", + "new_balance":"3266.69", + "value":"-0.48" + } + }, + { + "id":"de085ee6-1ccd-41b7-8560-4dc56c574750", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T02:00:27.658Z", + "completed":"2016-08-15T02:00:27.658Z", + "new_balance":"3263.47", + "value":"-3.22" + } + }, + { + "id":"c3151c21-96df-4f4c-a543-cd5a9f4b7556", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T13:35:27.642Z", + "completed":"2016-08-15T13:35:27.642Z", + "new_balance":"3260.44", + "value":"-3.03" + } + }, + { + "id":"88af83a1-7a9e-4280-8b81-094c41ae5121", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T21:37:56.114Z", + "completed":"2016-08-16T21:37:56.114Z", + "new_balance":"3257.30", + "value":"-3.14" + } + }, + { + "id":"44b9b120-765a-4ef2-a02a-7ab6d15995b2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T16:17:39.985Z", + "completed":"2016-08-17T16:17:39.985Z", + "new_balance":"3253.82", + "value":"-3.48" + } + }, + { + "id":"e7b3996e-e4ee-4993-9c89-0791a62f55e3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T13:25:43.832Z", + "completed":"2016-08-20T13:25:43.832Z", + "new_balance":"3253.05", + "value":"-0.77" + } + }, + { + "id":"e0c6cc65-650b-4eed-bb05-337a71ae01ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T17:06:51.284Z", + "completed":"2016-08-20T17:06:51.284Z", + "new_balance":"3252.58", + "value":"-0.47" + } + }, + { + "id":"9b7c061e-fb66-415e-a5cd-762fb80ee2d9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T04:50:51.681Z", + "completed":"2016-08-22T04:50:51.681Z", + "new_balance":"3256.66", + "value":"4.08" + } + }, + { + "id":"6fb25361-d1ad-4231-a185-c7d7299a95bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T00:37:18.047Z", + "completed":"2016-08-23T00:37:18.047Z", + "new_balance":"3250.23", + "value":"-6.43" + } + }, + { + "id":"43548932-513b-4332-bcd1-e32271b41da9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T19:23:31.745Z", + "completed":"2016-08-23T19:23:31.745Z", + "new_balance":"3246.11", + "value":"-4.12" + } + }, + { + "id":"cccbe9d8-122b-457f-8057-7f30191c474a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T16:29:25.343Z", + "completed":"2016-08-28T16:29:25.343Z", + "new_balance":"3243.17", + "value":"-2.94" + } + }, + { + "id":"90cfc0be-158b-4dd2-9d90-531070a12cb2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T20:03:30.609Z", + "completed":"2016-08-28T20:03:30.609Z", + "new_balance":"3240.62", + "value":"-2.55" + } + }, + { + "id":"1dee2c72-569a-430f-9b68-a7a074eb731b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T04:13:25.925Z", + "completed":"2016-09-01T04:13:25.925Z", + "new_balance":"3238.30", + "value":"-2.32" + } + }, + { + "id":"c8b16397-8a4d-4487-a6f3-a6eed9653599", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T07:40:03.171Z", + "completed":"2016-09-01T07:40:03.171Z", + "new_balance":"3223.05", + "value":"-15.25" + } + }, + { + "id":"1b703e83-8e49-4b30-8a6f-43901d710c00", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T07:41:26.771Z", + "completed":"2016-09-01T07:41:26.771Z", + "new_balance":"3164.82", + "value":"-58.23" + } + }, + { + "id":"95f41c1d-72c1-4d94-a14c-253db90bd869", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T15:11:15.158Z", + "completed":"2016-09-01T15:11:15.158Z", + "new_balance":"3161.38", + "value":"-3.44" + } + }, + { + "id":"9a2149c8-f76b-4252-bab6-1db026edd4de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T20:16:36.530Z", + "completed":"2016-09-01T20:16:36.530Z", + "new_balance":"3344.08", + "value":"182.70" + } + }, + { + "id":"be1d10e4-1fbb-4c9c-8044-37ed95d0ff69", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T20:38:18.732Z", + "completed":"2016-09-01T20:38:18.732Z", + "new_balance":"3338.93", + "value":"-5.15" + } + }, + { + "id":"90ff4788-221a-40e9-92a7-f7ff4bbe9793", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T09:55:31.845Z", + "completed":"2016-09-02T09:55:31.845Z", + "new_balance":"3331.83", + "value":"-7.10" + } + }, + { + "id":"1f2cfcff-dc49-428c-a424-15c701939aa3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T03:36:12.858Z", + "completed":"2016-09-04T03:36:12.858Z", + "new_balance":"3330.58", + "value":"-1.25" + } + }, + { + "id":"4dfe0892-9763-43f1-a557-117452a1815d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T07:50:15.961Z", + "completed":"2016-09-04T07:50:15.961Z", + "new_balance":"3329.82", + "value":"-0.76" + } + }, + { + "id":"af9b597e-a0c5-4c94-a8e0-71a38401abd0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T10:54:51.069Z", + "completed":"2016-09-04T10:54:51.069Z", + "new_balance":"3322.52", + "value":"-7.30" + } + }, + { + "id":"4d99f1cb-00d4-4388-859a-c73d0cffc34c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T18:56:24.740Z", + "completed":"2016-09-04T18:56:24.740Z", + "new_balance":"3319.22", + "value":"-3.30" + } + }, + { + "id":"f6c80808-0c44-41dc-b941-2611afc2bc6a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T08:14:33.382Z", + "completed":"2016-09-05T08:14:33.382Z", + "new_balance":"3315.18", + "value":"-4.04" + } + }, + { + "id":"568e27e4-7deb-463a-9863-f65785fe31fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T10:54:03.630Z", + "completed":"2016-09-05T10:54:03.630Z", + "new_balance":"3314.78", + "value":"-0.40" + } + }, + { + "id":"e39689da-ef9a-407b-b0ed-68b2e8dbe425", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T16:26:13.087Z", + "completed":"2016-09-06T16:26:13.087Z", + "new_balance":"3309.51", + "value":"-5.27" + } + }, + { + "id":"982f3815-373f-4e00-8045-24413e7b96b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:47:18.407Z", + "completed":"2016-09-06T18:47:18.407Z", + "new_balance":"3302.21", + "value":"-7.30" + } + }, + { + "id":"6dceac77-6f44-4d18-be04-ee7497a6c5ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T05:38:53.106Z", + "completed":"2016-09-08T05:38:53.106Z", + "new_balance":"3297.94", + "value":"-4.27" + } + }, + { + "id":"529dec9e-ed28-40ad-823d-d542ac303fc5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T19:58:48.118Z", + "completed":"2016-09-08T19:58:48.118Z", + "new_balance":"3292.67", + "value":"-5.27" + } + }, + { + "id":"c7e2afb4-e72f-4773-b1b7-00453d421b57", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T01:40:10.391Z", + "completed":"2016-09-10T01:40:10.391Z", + "new_balance":"3286.35", + "value":"-6.32" + } + }, + { + "id":"e0ebd63e-39c9-40d2-8c04-4152eeab6faf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T04:58:12.300Z", + "completed":"2016-09-10T04:58:12.300Z", + "new_balance":"3285.81", + "value":"-0.54" + } + }, + { + "id":"7296eabe-ac41-4afe-b795-2d43e2763665", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T08:52:36.090Z", + "completed":"2016-09-11T08:52:36.090Z", + "new_balance":"3285.04", + "value":"-0.77" + } + }, + { + "id":"99dfd24b-9dc0-4040-812d-c0289dc811a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T00:29:12.602Z", + "completed":"2016-09-12T00:29:12.602Z", + "new_balance":"3282.79", + "value":"-2.25" + } + }, + { + "id":"d946eb92-f433-46d1-b0b2-b1dbfbb52708", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T18:43:25.396Z", + "completed":"2016-09-12T18:43:25.396Z", + "new_balance":"3281.74", + "value":"-1.05" + } + }, + { + "id":"0bd6fe83-56de-4763-a7f1-990d5c68d866", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T02:14:57.767Z", + "completed":"2016-09-13T02:14:57.767Z", + "new_balance":"3277.48", + "value":"-4.26" + } + }, + { + "id":"18d844e4-e716-412f-a0f8-bc4cb5ab31e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T12:10:29.726Z", + "completed":"2016-09-16T12:10:29.726Z", + "new_balance":"3276.96", + "value":"-0.52" + } + }, + { + "id":"cdcc1dd4-0870-4ede-b224-283f270e53e8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T03:45:50.160Z", + "completed":"2016-09-17T03:45:50.160Z", + "new_balance":"3272.14", + "value":"-4.82" + } + }, + { + "id":"a089dcf0-3ab4-4945-9594-ff9bfd81d85e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T23:39:47.236Z", + "completed":"2016-09-17T23:39:47.236Z", + "new_balance":"3262.35", + "value":"-9.79" + } + }, + { + "id":"c7187519-c17b-4710-a08b-a7a1fb773e48", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T13:14:39.149Z", + "completed":"2016-09-18T13:14:39.149Z", + "new_balance":"3261.83", + "value":"-0.52" + } + }, + { + "id":"859be3b9-0b0a-4f2c-a4c3-a3cdb717cd7c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T01:01:32.494Z", + "completed":"2016-09-19T01:01:32.494Z", + "new_balance":"3255.51", + "value":"-6.32" + } + }, + { + "id":"fe697d44-2e8f-48ed-85f6-8ba9e060e638", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T04:27:33.010Z", + "completed":"2016-09-19T04:27:33.010Z", + "new_balance":"3251.36", + "value":"-4.15" + } + }, + { + "id":"0d24cc08-f396-4875-ac6b-da8d1d22364c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T14:18:37.415Z", + "completed":"2016-09-19T14:18:37.415Z", + "new_balance":"3247.07", + "value":"-4.29" + } + }, + { + "id":"92db3fa3-d2d6-4241-a846-e9ef124f388f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T15:55:11.157Z", + "completed":"2016-09-20T15:55:11.157Z", + "new_balance":"3240.11", + "value":"-6.96" + } + }, + { + "id":"c029d89a-f645-440b-8ba4-4048f379650b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T22:20:05.920Z", + "completed":"2016-09-20T22:20:05.920Z", + "new_balance":"3234.95", + "value":"-5.16" + } + }, + { + "id":"ae5a4858-fe26-49d7-91e0-582fb118aa24", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T10:42:28.004Z", + "completed":"2016-09-21T10:42:28.004Z", + "new_balance":"3234.19", + "value":"-0.76" + } + }, + { + "id":"d8dcbd2b-560a-4f8d-858e-ccd38c0b8089", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T11:50:20.446Z", + "completed":"2016-09-21T11:50:20.446Z", + "new_balance":"3233.60", + "value":"-0.59" + } + }, + { + "id":"5a7a4427-2404-461f-a686-48b054e89f10", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T06:16:19.438Z", + "completed":"2016-09-23T06:16:19.438Z", + "new_balance":"3232.69", + "value":"-0.91" + } + }, + { + "id":"3e0320b2-9f75-4227-b50b-57e7d1d62530", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T07:27:34.159Z", + "completed":"2016-09-23T07:27:34.159Z", + "new_balance":"3228.08", + "value":"-4.61" + } + }, + { + "id":"23845702-5f78-417c-b0c2-d6774195e70e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T15:45:03.731Z", + "completed":"2016-09-24T15:45:03.731Z", + "new_balance":"3224.53", + "value":"-3.55" + } + }, + { + "id":"12a2f12a-4b9e-4776-a1ed-3467bf7aeec3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T13:33:27.859Z", + "completed":"2016-09-25T13:33:27.859Z", + "new_balance":"3223.22", + "value":"-1.31" + } + }, + { + "id":"887902ba-cfd9-4a65-aa6a-b2c994f4d9e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T21:03:59.908Z", + "completed":"2016-09-25T21:03:59.908Z", + "new_balance":"3220.16", + "value":"-3.06" + } + }, + { + "id":"de9b487e-aeac-47ac-aff9-7228c33acb0f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T01:12:30.833Z", + "completed":"2016-09-27T01:12:30.833Z", + "new_balance":"3192.66", + "value":"-27.50" + } + }, + { + "id":"a433a9d5-e2d2-440a-9a0b-150f4cf0130e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T06:06:49.353Z", + "completed":"2016-09-29T06:06:49.353Z", + "new_balance":"3189.92", + "value":"-2.74" + } + }, + { + "id":"380c2c6b-d3df-4833-9265-384558145b1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T00:16:33.310Z", + "completed":"2016-10-01T00:16:33.310Z", + "new_balance":"3174.67", + "value":"-15.25" + } + }, + { + "id":"9b2063d9-8b56-49de-a719-d21c591502ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T05:30:20.776Z", + "completed":"2016-10-01T05:30:20.776Z", + "new_balance":"3172.35", + "value":"-2.32" + } + }, + { + "id":"d3ae5b8e-638d-456f-b257-9c987e01c0c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T21:09:23.858Z", + "completed":"2016-10-01T21:09:23.858Z", + "new_balance":"3114.12", + "value":"-58.23" + } + }, + { + "id":"ec95c88b-d142-47f6-8121-bc39be0a98bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T22:30:11.166Z", + "completed":"2016-10-01T22:30:11.166Z", + "new_balance":"3108.97", + "value":"-5.15" + } + }, + { + "id":"4297878b-8f87-45b0-b501-57145df76c8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T18:19:58.105Z", + "completed":"2016-10-02T18:19:58.105Z", + "new_balance":"3099.28", + "value":"-9.69" + } + }, + { + "id":"e60c527e-c963-4017-a841-aebbd8a85ab2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T20:50:37.524Z", + "completed":"2016-10-02T20:50:37.524Z", + "new_balance":"3092.18", + "value":"-7.10" + } + }, + { + "id":"345a61ff-028e-4564-9c9b-184a7c1aa6bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T03:17:01.035Z", + "completed":"2016-10-03T03:17:01.035Z", + "new_balance":"3035.37", + "value":"-56.81" + } + }, + { + "id":"f0b63274-980d-4d1a-b346-bd5eb2104810", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:24:31.899Z", + "completed":"2016-10-03T08:24:31.899Z", + "new_balance":"3022.27", + "value":"-13.10" + } + }, + { + "id":"498f13ed-ff91-489f-9a70-9cc03e6a31a9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T15:03:03.261Z", + "completed":"2016-10-03T15:03:03.261Z", + "new_balance":"2994.77", + "value":"-27.50" + } + }, + { + "id":"bc085f73-b261-432b-bee9-3cb4009879f9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T19:23:21.597Z", + "completed":"2016-10-03T19:23:21.597Z", + "new_balance":"2991.86", + "value":"-2.91" + } + }, + { + "id":"33c44cd2-6751-487d-a633-77562a395c93", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T19:59:16.912Z", + "completed":"2016-10-03T19:59:16.912Z", + "new_balance":"2988.08", + "value":"-3.78" + } + }, + { + "id":"b3c57d86-4011-4f3e-a646-eef279b38bd1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T18:48:04.339Z", + "completed":"2016-10-04T18:48:04.339Z", + "new_balance":"2980.89", + "value":"-7.19" + } + }, + { + "id":"2096b552-bce2-4768-9058-108762032693", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T05:15:49.135Z", + "completed":"2016-10-05T05:15:49.135Z", + "new_balance":"2980.43", + "value":"-0.46" + } + }, + { + "id":"2e90f2fc-d5d1-4b3f-8e36-2265ce020576", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T12:29:21.083Z", + "completed":"2016-10-05T12:29:21.083Z", + "new_balance":"2977.75", + "value":"-2.68" + } + }, + { + "id":"40019154-5cb3-439f-b8c4-d6a53629c169", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T18:04:07.602Z", + "completed":"2016-10-07T18:04:07.602Z", + "new_balance":"2976.22", + "value":"-1.53" + } + }, + { + "id":"33f92e8f-c32b-4077-84cc-03a72897d041", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T20:48:26.043Z", + "completed":"2016-10-07T20:48:26.043Z", + "new_balance":"2973.00", + "value":"-3.22" + } + }, + { + "id":"419f486e-f3dd-4723-aebf-33a06ca5d4ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T02:19:46.040Z", + "completed":"2016-10-08T02:19:46.040Z", + "new_balance":"2972.10", + "value":"-0.90" + } + }, + { + "id":"31d26433-b05f-41f4-a382-3dde53e4b4ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T00:27:03.199Z", + "completed":"2016-10-09T00:27:03.199Z", + "new_balance":"2944.60", + "value":"-27.50" + } + }, + { + "id":"cc236755-d90d-486b-bcf9-31ed7df4554b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T02:41:40.589Z", + "completed":"2016-10-09T02:41:40.589Z", + "new_balance":"2942.49", + "value":"-2.11" + } + }, + { + "id":"6c20c021-218e-48a8-913c-fa1a913730e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T04:37:36.160Z", + "completed":"2016-10-09T04:37:36.160Z", + "new_balance":"2942.05", + "value":"-0.44" + } + }, + { + "id":"d500045a-0030-428b-a168-9bf37dc9d043", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T23:23:57.761Z", + "completed":"2016-10-10T23:23:57.761Z", + "new_balance":"2937.57", + "value":"-4.48" + } + }, + { + "id":"eafe3310-67f5-447d-9a81-10ed13bcab1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:29:02.575Z", + "completed":"2016-10-17T06:29:02.575Z", + "new_balance":"2936.46", + "value":"-1.11" + } + }, + { + "id":"f845d557-7a21-43e2-8d58-937a0f8e5dc9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T05:20:00.103Z", + "completed":"2016-10-18T05:20:00.103Z", + "new_balance":"2933.65", + "value":"-2.81" + } + }, + { + "id":"2758eab3-8f6c-4675-92fc-63b46c4e56d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T14:07:31.932Z", + "completed":"2016-10-25T14:07:31.932Z", + "new_balance":"2928.25", + "value":"-5.40" + } + }, + { + "id":"e4176c61-9d13-4985-add8-cf474e117cca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T02:41:43.500Z", + "completed":"2016-10-26T02:41:43.500Z", + "new_balance":"2922.43", + "value":"-5.82" + } + }, + { + "id":"a46a738c-72c4-46a6-bac4-8dbc90a44d16", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T03:58:40.364Z", + "completed":"2016-10-26T03:58:40.364Z", + "new_balance":"2921.99", + "value":"-0.44" + } + }, + { + "id":"423ab3b5-9f35-4201-a394-01f12024ea18", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T01:11:48.979Z", + "completed":"2016-11-02T01:11:48.979Z", + "new_balance":"2914.89", + "value":"-7.10" + } + }, + { + "id":"119e3cb9-67e7-47df-85ff-8e7ca2b709b9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T08:55:46.066Z", + "completed":"2016-11-02T08:55:46.066Z", + "new_balance":"2899.64", + "value":"-15.25" + } + }, + { + "id":"f3b7efe3-61fe-4d7a-b734-b46a4726068a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T08:59:49.837Z", + "completed":"2016-11-02T08:59:49.837Z", + "new_balance":"2898.49", + "value":"-1.15" + } + }, + { + "id":"f1452c5f-e964-422b-9836-afc0edb12c6c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T11:06:22.512Z", + "completed":"2016-11-02T11:06:22.512Z", + "new_balance":"2896.17", + "value":"-2.32" + } + }, + { + "id":"d48a2fc5-ca78-42ee-b2b2-1ff3cadda852", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T12:49:29.869Z", + "completed":"2016-11-02T12:49:29.869Z", + "new_balance":"3078.87", + "value":"182.70" + } + }, + { + "id":"d75526c0-1ae3-4f77-bddc-c7c1a822a8cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:01:24.986Z", + "completed":"2016-11-02T14:01:24.986Z", + "new_balance":"3073.72", + "value":"-5.15" + } + }, + { + "id":"f0b804e9-2a8c-4e35-bbc8-bcf5efcd19ee", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T21:00:57.689Z", + "completed":"2016-11-02T21:00:57.689Z", + "new_balance":"3070.28", + "value":"-3.44" + } + }, + { + "id":"7a5b81ba-cb16-4594-ba38-8907f087dd8e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T21:15:30.456Z", + "completed":"2016-11-02T21:15:30.456Z", + "new_balance":"3012.05", + "value":"-58.23" + } + }, + { + "id":"1b4bd90e-ed3d-4598-a262-b80af77e0591", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T13:11:12.031Z", + "completed":"2016-11-06T13:11:12.031Z", + "new_balance":"3009.95", + "value":"-2.10" + } + }, + { + "id":"e8508807-107f-412e-93d9-11a8f1951898", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T03:04:36.984Z", + "completed":"2016-11-07T03:04:36.984Z", + "new_balance":"3007.55", + "value":"-2.40" + } + }, + { + "id":"02baeb1d-b386-497d-a4ab-ab6c47f119cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T11:09:16.064Z", + "completed":"2016-11-07T11:09:16.064Z", + "new_balance":"3005.05", + "value":"-2.50" + } + }, + { + "id":"7ca5e2a9-8b1c-4684-923d-33ef96a281d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T23:58:46.171Z", + "completed":"2016-11-07T23:58:46.171Z", + "new_balance":"3001.72", + "value":"-3.33" + } + }, + { + "id":"05b5bc1e-d57e-4a04-9619-53f86880d4aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T06:49:15.054Z", + "completed":"2016-11-09T06:49:15.054Z", + "new_balance":"2994.53", + "value":"-7.19" + } + }, + { + "id":"a072c6fd-9af0-412f-9b37-71765e813ad4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T18:24:33.176Z", + "completed":"2016-11-09T18:24:33.176Z", + "new_balance":"2994.05", + "value":"-0.48" + } + }, + { + "id":"0c945b97-7995-49f1-a360-925bdce5f74f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T01:36:20.118Z", + "completed":"2016-11-12T01:36:20.118Z", + "new_balance":"2991.60", + "value":"-2.45" + } + }, + { + "id":"9985f454-3be9-4508-b776-3d2c62840326", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T17:30:23.820Z", + "completed":"2016-11-12T17:30:23.820Z", + "new_balance":"2988.57", + "value":"-3.03" + } + }, + { + "id":"f91dc6a6-160a-45be-a196-2af6529d6ae9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T09:24:46.120Z", + "completed":"2016-11-14T09:24:46.120Z", + "new_balance":"2985.09", + "value":"-3.48" + } + }, + { + "id":"e582b532-da57-4ecd-b865-ae21579cbdfb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T12:14:45.368Z", + "completed":"2016-11-14T12:14:45.368Z", + "new_balance":"2981.95", + "value":"-3.14" + } + }, + { + "id":"2b25b605-f94f-492b-abd3-79bede196617", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T15:08:17.719Z", + "completed":"2016-11-16T15:08:17.719Z", + "new_balance":"2981.48", + "value":"-0.47" + } + }, + { + "id":"fb12bfe2-9cf7-405a-b8e0-c56b767f0888", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T17:54:47.661Z", + "completed":"2016-11-18T17:54:47.661Z", + "new_balance":"2980.71", + "value":"-0.77" + } + }, + { + "id":"aad4f8cf-1e12-4fcb-a424-a3f24e69bf6c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T14:13:40.365Z", + "completed":"2016-11-20T14:13:40.365Z", + "new_balance":"2984.79", + "value":"4.08" + } + }, + { + "id":"55e4b225-df30-45db-80c7-a79b81843abb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T09:53:54.817Z", + "completed":"2016-11-21T09:53:54.817Z", + "new_balance":"2980.67", + "value":"-4.12" + } + }, + { + "id":"4bae5ab2-d5d7-4f55-8c8f-6b88dd50a031", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T17:32:04.803Z", + "completed":"2016-11-21T17:32:04.803Z", + "new_balance":"2974.24", + "value":"-6.43" + } + }, + { + "id":"4e7a49b1-b58d-4090-a475-a520d293a492", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T07:35:10.477Z", + "completed":"2016-11-27T07:35:10.477Z", + "new_balance":"2971.69", + "value":"-2.55" + } + }, + { + "id":"98ce017c-693d-491e-8f9f-6913fbfde8cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T20:59:02.256Z", + "completed":"2016-11-27T20:59:02.256Z", + "new_balance":"2968.75", + "value":"-2.94" + } + }, + { + "id":"83fe14d3-dde8-4403-a73c-5b33e723ba7e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T00:28:49.841Z", + "completed":"2016-12-01T00:28:49.841Z", + "new_balance":"2910.52", + "value":"-58.23" + } + }, + { + "id":"9d274ce4-1c56-41a8-9e45-7fad13c87c92", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T05:26:30.222Z", + "completed":"2016-12-01T05:26:30.222Z", + "new_balance":"2907.08", + "value":"-3.44" + } + }, + { + "id":"499b495c-fe51-4110-bf8d-5cc3e15ae497", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:32:10.924Z", + "completed":"2016-12-01T10:32:10.924Z", + "new_balance":"3089.78", + "value":"182.70" + } + }, + { + "id":"4d6ff2b0-be8b-4b64-99e9-9ba4300ec839", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T17:29:23.646Z", + "completed":"2016-12-01T17:29:23.646Z", + "new_balance":"3087.46", + "value":"-2.32" + } + }, + { + "id":"b7bc99af-72fc-496e-b33d-c65e989fe94e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:35:05.373Z", + "completed":"2016-12-01T22:35:05.373Z", + "new_balance":"3072.21", + "value":"-15.25" + } + }, + { + "id":"08bb63b5-b1e7-40df-9fa4-049e75f46166", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T23:21:29.419Z", + "completed":"2016-12-01T23:21:29.419Z", + "new_balance":"3067.06", + "value":"-5.15" + } + }, + { + "id":"b873f819-7a81-4263-b12f-a3ef3ea51f12", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T08:28:30.854Z", + "completed":"2016-12-04T08:28:30.854Z", + "new_balance":"3055.10", + "value":"-11.96" + } + }, + { + "id":"6a92ddbf-4a9d-4de0-a1ea-ab3ee615edde", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T10:09:50.182Z", + "completed":"2016-12-04T10:09:50.182Z", + "new_balance":"3048.00", + "value":"-7.10" + } + }, + { + "id":"2bf4171c-7604-4276-9e78-f004c2d278fa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T02:26:55.974Z", + "completed":"2016-12-12T02:26:55.974Z", + "new_balance":"3046.75", + "value":"-1.25" + } + }, + { + "id":"ed38a79f-9855-4175-bb8b-4b9eb87f7750", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T05:02:26.533Z", + "completed":"2016-12-12T05:02:26.533Z", + "new_balance":"3043.45", + "value":"-3.30" + } + }, + { + "id":"37d57993-50f1-41c8-867d-f08e22c45985", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T03:02:39.365Z", + "completed":"2016-12-13T03:02:39.365Z", + "new_balance":"3042.69", + "value":"-0.76" + } + }, + { + "id":"07d276c8-b3e2-4961-8d99-751e7485aa2e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T10:45:00.727Z", + "completed":"2016-12-13T10:45:00.727Z", + "new_balance":"3035.39", + "value":"-7.30" + } + }, + { + "id":"30cf9bc2-9a69-4684-ada8-7a89ba38317d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T00:49:08.151Z", + "completed":"2016-12-16T00:49:08.151Z", + "new_balance":"3031.35", + "value":"-4.04" + } + }, + { + "id":"2d8efbce-e4fb-40b9-8c4f-4b36c6ac6240", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T17:12:14.328Z", + "completed":"2016-12-18T17:12:14.328Z", + "new_balance":"3030.95", + "value":"-0.40" + } + }, + { + "id":"a13dec49-107d-4e71-8d09-261ae4106582", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:28:22.194Z", + "completed":"2016-12-19T12:28:22.194Z", + "new_balance":"3025.68", + "value":"-5.27" + } + }, + { + "id":"1e60e623-fda8-40c0-8fa1-020baaaf46ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T22:58:19.384Z", + "completed":"2016-12-19T22:58:19.384Z", + "new_balance":"3018.38", + "value":"-7.30" + } + }, + { + "id":"08915b92-dfd0-4711-8ef2-4dfb916313a6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T01:12:29.287Z", + "completed":"2016-12-20T01:12:29.287Z", + "new_balance":"3014.11", + "value":"-4.27" + } + }, + { + "id":"2e390c4e-df6d-4d7e-9615-7cd881029694", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T00:00:39.746Z", + "completed":"2016-12-21T00:00:39.746Z", + "new_balance":"3008.84", + "value":"-5.27" + } + }, + { + "id":"a599e3ac-4da4-40ba-878c-4e23bc4af69b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T02:30:25.586Z", + "completed":"2016-12-24T02:30:25.586Z", + "new_balance":"3006.59", + "value":"-2.25" + } + }, + { + "id":"b70eff48-a246-4b0e-8976-114cd04a42e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T03:30:09.951Z", + "completed":"2016-12-24T03:30:09.951Z", + "new_balance":"3005.82", + "value":"-0.77" + } + }, + { + "id":"a43e849a-b972-40b8-bec8-56de4245dfea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:15:46.336Z", + "completed":"2016-12-24T09:15:46.336Z", + "new_balance":"3004.77", + "value":"-1.05" + } + }, + { + "id":"12e62e94-2e3d-428a-b750-67f71bd562ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T10:14:49.325Z", + "completed":"2016-12-24T10:14:49.325Z", + "new_balance":"3004.23", + "value":"-0.54" + } + }, + { + "id":"c005a13d-e91d-4a42-8434-66ef8e9a563e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T14:39:01.369Z", + "completed":"2016-12-24T14:39:01.369Z", + "new_balance":"2999.97", + "value":"-4.26" + } + }, + { + "id":"e248d378-d236-4638-9cbe-a3b10820849b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T20:52:39.367Z", + "completed":"2016-12-24T20:52:39.367Z", + "new_balance":"2993.65", + "value":"-6.32" + } + }, + { + "id":"52984613-9659-4ff0-87b8-45032020b3ba", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T06:19:37.000Z", + "completed":"2016-12-28T06:19:37.000Z", + "new_balance":"2993.13", + "value":"-0.52" + } + }, + { + "id":"0ccdf95b-4451-47bb-aef6-56df3a720fe3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T07:48:18.772Z", + "completed":"2016-12-28T07:48:18.772Z", + "new_balance":"2988.31", + "value":"-4.82" + } + }, + { + "id":"850b12e2-7103-4596-be64-919b5709c679", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T10:25:33.845Z", + "completed":"2016-12-28T10:25:33.845Z", + "new_balance":"2987.79", + "value":"-0.52" + } + }, + { + "id":"abe4365f-849e-491d-b4d1-6da56b3e67de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T22:19:58.279Z", + "completed":"2016-12-28T22:19:58.279Z", + "new_balance":"2978.00", + "value":"-9.79" + } + }, + { + "id":"3be4a20d-db94-401e-8f82-4b07551234be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T03:09:37.240Z", + "completed":"2016-12-29T03:09:37.240Z", + "new_balance":"2973.85", + "value":"-4.15" + } + }, + { + "id":"6935050f-8f25-4dfb-abb0-7df7f5bd822b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T03:44:57.434Z", + "completed":"2016-12-29T03:44:57.434Z", + "new_balance":"2973.09", + "value":"-0.76" + } + }, + { + "id":"35d008b8-10ee-4e84-9552-bf4839828bca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T04:59:13.181Z", + "completed":"2016-12-29T04:59:13.181Z", + "new_balance":"2967.93", + "value":"-5.16" + } + }, + { + "id":"7071d706-5d06-49fe-8a78-b64e3cbf77d0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T09:40:07.958Z", + "completed":"2016-12-29T09:40:07.958Z", + "new_balance":"2961.61", + "value":"-6.32" + } + }, + { + "id":"6e93f381-8ae1-4caf-abd8-4d096da1f0a9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T10:20:06.985Z", + "completed":"2016-12-29T10:20:06.985Z", + "new_balance":"2957.32", + "value":"-4.29" + } + }, + { + "id":"980e4e44-9f23-421a-be36-6a82ba097068", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T12:59:36.174Z", + "completed":"2016-12-29T12:59:36.174Z", + "new_balance":"2950.36", + "value":"-6.96" + } + }, + { + "id":"11338c19-7aea-43ce-ac9c-3acb3397b5f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T00:01:25.502Z", + "completed":"2016-12-30T00:01:25.502Z", + "new_balance":"2946.81", + "value":"-3.55" + } + }, + { + "id":"eb81e993-25c2-4793-a2bd-c1b0689559ff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T05:16:56.114Z", + "completed":"2016-12-30T05:16:56.114Z", + "new_balance":"2945.90", + "value":"-0.91" + } + }, + { + "id":"9169f2d4-6ba6-4be7-996c-42080b92987b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T07:53:52.437Z", + "completed":"2016-12-30T07:53:52.437Z", + "new_balance":"2941.29", + "value":"-4.61" + } + }, + { + "id":"711a0e65-83eb-4661-a3a2-508bd20218f6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T13:29:46.494Z", + "completed":"2016-12-30T13:29:46.494Z", + "new_balance":"2940.70", + "value":"-0.59" + } + }, + { + "id":"f5a6acfc-5570-48ad-8cb0-bea30d036087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T04:21:52.181Z", + "completed":"2016-12-31T04:21:52.181Z", + "new_balance":"2937.96", + "value":"-2.74" + } + }, + { + "id":"8bfcec5a-1ecb-42ee-85d4-c96e2e58ed2e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T11:34:22.359Z", + "completed":"2016-12-31T11:34:22.359Z", + "new_balance":"2910.46", + "value":"-27.50" + } + }, + { + "id":"17eb3bef-dca3-4c7a-a1a2-cca20f177761", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T19:11:07.417Z", + "completed":"2016-12-31T19:11:07.417Z", + "new_balance":"2909.15", + "value":"-1.31" + } + }, + { + "id":"1b74fd6b-7ce4-4e69-8b5b-cf88ac08b20e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T21:12:19.558Z", + "completed":"2016-12-31T21:12:19.558Z", + "new_balance":"2906.09", + "value":"-3.06" + } + }, + { + "id":"52db0a26-c8d0-434b-8dd3-c6af2c68a5cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T06:24:34.433Z", + "completed":"2017-01-01T06:24:34.433Z", + "new_balance":"2903.77", + "value":"-2.32" + } + }, + { + "id":"c4a35761-263e-4c5e-bff5-a5a07d48bca7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T06:26:00.002Z", + "completed":"2017-01-01T06:26:00.002Z", + "new_balance":"2900.33", + "value":"-3.44" + } + }, + { + "id":"2437e1f2-fbab-48e1-8f14-fa277fa20ddd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:05:50.795Z", + "completed":"2017-01-01T12:05:50.795Z", + "new_balance":"2885.08", + "value":"-15.25" + } + }, + { + "id":"cacab1f2-0550-4bd5-94aa-bf6d438de6e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T15:23:53.586Z", + "completed":"2017-01-01T15:23:53.586Z", + "new_balance":"2879.93", + "value":"-5.15" + } + }, + { + "id":"cf4aeffe-d65a-4051-9507-08f2e201eed3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:00:47.322Z", + "completed":"2017-01-01T21:00:47.322Z", + "new_balance":"2876.49", + "value":"-3.44" + } + }, + { + "id":"f39ded9f-380a-459b-9099-d9cc6311d6df", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T21:31:39.401Z", + "completed":"2017-01-01T21:31:39.401Z", + "new_balance":"2818.26", + "value":"-58.23" + } + }, + { + "id":"842bb36d-d554-43f4-afb4-e28b9d91f159", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T00:48:16.490Z", + "completed":"2017-01-02T00:48:16.490Z", + "new_balance":"2811.16", + "value":"-7.10" + } + }, + { + "id":"9b33422c-24b4-4567-8e67-b8fb5ac7914c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T10:17:25.655Z", + "completed":"2017-01-02T10:17:25.655Z", + "new_balance":"2801.47", + "value":"-9.69" + } + }, + { + "id":"f947fd26-2d5b-4a66-9c4e-a36c45897428", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T00:17:49.090Z", + "completed":"2017-01-04T00:17:49.090Z", + "new_balance":"2798.56", + "value":"-2.91" + } + }, + { + "id":"88dc777e-ed71-43be-b75c-2ff916bb991b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T08:18:56.427Z", + "completed":"2017-01-04T08:18:56.427Z", + "new_balance":"2794.78", + "value":"-3.78" + } + }, + { + "id":"0a0a3cbc-8a4a-4334-9c55-c964de080e6a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:53:31.217Z", + "completed":"2017-01-07T02:53:31.217Z", + "new_balance":"2787.59", + "value":"-7.19" + } + }, + { + "id":"2d981c03-3a8a-4aea-9b1c-4fada21ff964", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T01:44:21.387Z", + "completed":"2017-01-09T01:44:21.387Z", + "new_balance":"2787.13", + "value":"-0.46" + } + }, + { + "id":"ccf2a7d1-e47d-4273-838f-5850101570de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T06:16:59.867Z", + "completed":"2017-01-10T06:16:59.867Z", + "new_balance":"2784.45", + "value":"-2.68" + } + }, + { + "id":"783af2ab-acaf-4c46-8505-98665083c4b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T21:15:24.458Z", + "completed":"2017-01-12T21:15:24.458Z", + "new_balance":"2781.23", + "value":"-3.22" + } + }, + { + "id":"b89d560c-917d-4d90-8250-22072fa93a2f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T01:31:07.750Z", + "completed":"2017-01-15T01:31:07.750Z", + "new_balance":"2779.70", + "value":"-1.53" + } + }, + { + "id":"95e66a10-682e-476f-bda9-a4b180eb5b5f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:43:49.200Z", + "completed":"2017-01-15T20:43:49.200Z", + "new_balance":"2778.80", + "value":"-0.90" + } + }, + { + "id":"6e9ed2a6-987a-4cb7-9347-1f9422e409b6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T23:47:09.893Z", + "completed":"2017-01-17T23:47:09.893Z", + "new_balance":"2776.69", + "value":"-2.11" + } + }, + { + "id":"d14dd53a-f3b1-4083-83a1-db7f16cfd527", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T02:31:15.976Z", + "completed":"2017-01-19T02:31:15.976Z", + "new_balance":"2749.19", + "value":"-27.50" + } + }, + { + "id":"bc5d6157-6148-4f1c-89a9-afff62944ba3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T22:43:51.039Z", + "completed":"2017-01-20T22:43:51.039Z", + "new_balance":"2748.75", + "value":"-0.44" + } + }, + { + "id":"c298be6f-e330-473d-94f6-8ed5c025257a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T00:55:46.956Z", + "completed":"2017-01-22T00:55:46.956Z", + "new_balance":"2744.27", + "value":"-4.48" + } + }, + { + "id":"b390877f-77a0-42c4-8a5c-3fda7c594c30", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T10:28:24.096Z", + "completed":"2017-01-22T10:28:24.096Z", + "new_balance":"2743.16", + "value":"-1.11" + } + }, + { + "id":"69d796d7-8e83-4e83-ac99-135d8e0716e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T01:52:00.319Z", + "completed":"2017-01-24T01:52:00.319Z", + "new_balance":"2740.35", + "value":"-2.81" + } + }, + { + "id":"f56929f5-04b5-4268-89b7-107b6bf7143a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T05:02:38.177Z", + "completed":"2017-01-25T05:02:38.177Z", + "new_balance":"2734.95", + "value":"-5.40" + } + }, + { + "id":"3e4d2d9e-98f5-40ac-8f99-7243c14ee60c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T09:29:13.601Z", + "completed":"2017-01-25T09:29:13.601Z", + "new_balance":"2734.51", + "value":"-0.44" + } + }, + { + "id":"fbcf6bbf-3022-475d-87f6-6dbb6cad3798", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T02:10:30.851Z", + "completed":"2017-01-26T02:10:30.851Z", + "new_balance":"2728.69", + "value":"-5.82" + } + }, + { + "id":"61172586-f67a-45be-8883-aa98562ae586", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T01:07:19.557Z", + "completed":"2017-02-01T01:07:19.557Z", + "new_balance":"2911.39", + "value":"182.70" + } + }, + { + "id":"831b819d-4907-4ec7-a9c6-01bab2adade7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T06:05:42.602Z", + "completed":"2017-02-01T06:05:42.602Z", + "new_balance":"2853.16", + "value":"-58.23" + } + }, + { + "id":"e97dbe22-c61e-4a39-9e7d-ae1773224f41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T10:19:05.805Z", + "completed":"2017-02-01T10:19:05.805Z", + "new_balance":"2837.91", + "value":"-15.25" + } + }, + { + "id":"7be4d353-84d3-46e2-ae13-a45120379b26", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T15:01:35.144Z", + "completed":"2017-02-01T15:01:35.144Z", + "new_balance":"2832.76", + "value":"-5.15" + } + }, + { + "id":"79fab52c-851b-4268-a01c-8ee6e24b2c67", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T16:38:23.029Z", + "completed":"2017-02-01T16:38:23.029Z", + "new_balance":"2830.44", + "value":"-2.32" + } + }, + { + "id":"8dbab37e-e4d3-45e3-bdea-c147ae017c8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T22:48:22.070Z", + "completed":"2017-02-01T22:48:22.070Z", + "new_balance":"2827.00", + "value":"-3.44" + } + }, + { + "id":"f7368276-90f0-4540-91fd-c40c2de87727", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T03:57:07.797Z", + "completed":"2017-02-02T03:57:07.797Z", + "new_balance":"2825.85", + "value":"-1.15" + } + }, + { + "id":"1f1e500d-d6ca-4bb0-bb8a-c6976ab79391", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T11:23:09.111Z", + "completed":"2017-02-02T11:23:09.111Z", + "new_balance":"2818.75", + "value":"-7.10" + } + }, + { + "id":"09216a8d-df3f-41f8-821d-b13e7d34854d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T23:32:15.171Z", + "completed":"2017-02-02T23:32:15.171Z", + "new_balance":"2816.65", + "value":"-2.10" + } + }, + { + "id":"9649b412-fdf4-47bd-9887-fbf924855573", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T10:46:25.691Z", + "completed":"2017-02-03T10:46:25.691Z", + "new_balance":"2813.32", + "value":"-3.33" + } + }, + { + "id":"8f673c86-ae6e-45b8-a482-127602bc08d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T12:14:47.528Z", + "completed":"2017-02-03T12:14:47.528Z", + "new_balance":"2810.92", + "value":"-2.40" + } + }, + { + "id":"45d4fe07-1c51-4010-b11a-581cd3cf7244", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T14:49:07.747Z", + "completed":"2017-02-03T14:49:07.747Z", + "new_balance":"2808.42", + "value":"-2.50" + } + }, + { + "id":"d2fd832b-5be4-461b-9157-8612cec93f37", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T23:19:09.539Z", + "completed":"2017-02-06T23:19:09.539Z", + "new_balance":"2801.23", + "value":"-7.19" + } + }, + { + "id":"9a1dfedc-7348-4d37-88bf-dca9ea4aef55", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T13:45:28.641Z", + "completed":"2017-02-08T13:45:28.641Z", + "new_balance":"2798.20", + "value":"-3.03" + } + }, + { + "id":"90c35147-2f7c-49ba-bc8d-e91477ba6507", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T15:56:06.926Z", + "completed":"2017-02-08T15:56:06.926Z", + "new_balance":"2795.75", + "value":"-2.45" + } + }, + { + "id":"dbceae4b-3199-4ed7-850e-e31e3ffbc946", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T21:11:40.260Z", + "completed":"2017-02-08T21:11:40.260Z", + "new_balance":"2795.27", + "value":"-0.48" + } + }, + { + "id":"8e79412f-03ad-4dfe-8644-f6fcecc8e20e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T12:47:00.930Z", + "completed":"2017-02-09T12:47:00.930Z", + "new_balance":"2791.79", + "value":"-3.48" + } + }, + { + "id":"bddd6735-484d-4118-9bd9-fb1db6af690c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T20:20:59.004Z", + "completed":"2017-02-09T20:20:59.004Z", + "new_balance":"2788.65", + "value":"-3.14" + } + }, + { + "id":"76223b90-b94c-4d11-a565-c57101a21971", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T23:53:20.406Z", + "completed":"2017-02-12T23:53:20.406Z", + "new_balance":"2788.18", + "value":"-0.47" + } + }, + { + "id":"dc9ec497-f215-4331-8316-235dea63fd8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T04:42:25.359Z", + "completed":"2017-02-13T04:42:25.359Z", + "new_balance":"2792.26", + "value":"4.08" + } + }, + { + "id":"a0ffab96-9d7e-41dd-a0c7-0ec0fa217c6f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T07:47:13.776Z", + "completed":"2017-02-13T07:47:13.776Z", + "new_balance":"2785.83", + "value":"-6.43" + } + }, + { + "id":"0c421d40-3aad-4592-a493-6ca131ddaa6b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T10:42:22.863Z", + "completed":"2017-02-13T10:42:22.863Z", + "new_balance":"2785.06", + "value":"-0.77" + } + }, + { + "id":"87f0c984-1ea7-43d9-a573-e1de1e16f5d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T05:54:30.416Z", + "completed":"2017-02-14T05:54:30.416Z", + "new_balance":"2780.94", + "value":"-4.12" + } + }, + { + "id":"b69a3d20-ba9c-4a75-86ba-b1cc9983636d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T09:44:04.555Z", + "completed":"2017-02-15T09:44:04.555Z", + "new_balance":"2778.39", + "value":"-2.55" + } + }, + { + "id":"c863c3f3-eb16-4aac-9760-1f157e392af8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T05:59:22.709Z", + "completed":"2017-02-28T05:59:22.709Z", + "new_balance":"2775.45", + "value":"-2.94" + } + }, + { + "id":"61827a7b-5afc-4ac5-a6e7-743f02f1b3c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T02:11:30.002Z", + "completed":"2017-03-01T02:11:30.002Z", + "new_balance":"2760.20", + "value":"-15.25" + } + }, + { + "id":"ca19242a-8720-4c7c-974c-cb6232700903", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T02:46:42.854Z", + "completed":"2017-03-01T02:46:42.854Z", + "new_balance":"2755.05", + "value":"-5.15" + } + }, + { + "id":"43487012-c780-4394-bb0a-42e292b6adc8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T06:13:13.692Z", + "completed":"2017-03-01T06:13:13.692Z", + "new_balance":"2696.82", + "value":"-58.23" + } + }, + { + "id":"0fc8c19b-232b-4783-b68c-2d95b7ec7def", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T11:20:16.932Z", + "completed":"2017-03-01T11:20:16.932Z", + "new_balance":"2693.38", + "value":"-3.44" + } + }, + { + "id":"d27ee8a0-767c-4c57-9bdb-7fc75f575f0a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T15:22:04.058Z", + "completed":"2017-03-01T15:22:04.058Z", + "new_balance":"2691.06", + "value":"-2.32" + } + }, + { + "id":"a9c8a36c-376e-4937-8475-1719fc6bc504", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T23:00:43.016Z", + "completed":"2017-03-01T23:00:43.016Z", + "new_balance":"2873.76", + "value":"182.70" + } + }, + { + "id":"e44bef48-c710-43b2-831d-0e426e4862c3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T13:02:54.983Z", + "completed":"2017-03-02T13:02:54.983Z", + "new_balance":"2866.66", + "value":"-7.10" + } + }, + { + "id":"a537ad4e-4ff0-418a-b725-3f0a79a5e57f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T09:28:03.498Z", + "completed":"2017-03-04T09:28:03.498Z", + "new_balance":"2865.90", + "value":"-0.76" + } + }, + { + "id":"a4bd82e9-628a-4c04-ac18-d830d3c52b3d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T11:24:40.623Z", + "completed":"2017-03-04T11:24:40.623Z", + "new_balance":"2864.65", + "value":"-1.25" + } + }, + { + "id":"c1a7b9ca-6268-411c-9bb5-a9c485191c84", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T16:54:00.930Z", + "completed":"2017-03-04T16:54:00.930Z", + "new_balance":"2857.35", + "value":"-7.30" + } + }, + { + "id":"3245a298-ce26-4e4c-972c-9eb30f0e7e9f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T20:45:47.401Z", + "completed":"2017-03-04T20:45:47.401Z", + "new_balance":"2854.05", + "value":"-3.30" + } + }, + { + "id":"982b2c63-e65f-4ded-8962-b304e384e831", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T09:30:07.951Z", + "completed":"2017-03-05T09:30:07.951Z", + "new_balance":"2850.01", + "value":"-4.04" + } + }, + { + "id":"6709e6c4-187e-4b3c-8e76-75c7722455eb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T14:18:58.648Z", + "completed":"2017-03-05T14:18:58.648Z", + "new_balance":"2849.61", + "value":"-0.40" + } + }, + { + "id":"a21b0ca6-aeb3-4ad6-bc61-9dcaf379f926", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T02:42:04.849Z", + "completed":"2017-03-06T02:42:04.849Z", + "new_balance":"2842.31", + "value":"-7.30" + } + }, + { + "id":"d4ccbb5e-c15a-49e8-b10c-4d3dd65ec0e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:39:44.560Z", + "completed":"2017-03-06T03:39:44.560Z", + "new_balance":"2837.04", + "value":"-5.27" + } + }, + { + "id":"abf3a29c-72b3-454f-a152-6a789aa88d41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T08:31:02.120Z", + "completed":"2017-03-07T08:31:02.120Z", + "new_balance":"2832.77", + "value":"-4.27" + } + }, + { + "id":"9a29a55c-9fd6-4bd8-9f7c-c8479e7015a0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T04:43:53.556Z", + "completed":"2017-03-08T04:43:53.556Z", + "new_balance":"2827.50", + "value":"-5.27" + } + }, + { + "id":"200e183c-204d-4e9e-bb98-18ab65077ecf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T10:10:23.270Z", + "completed":"2017-03-09T10:10:23.270Z", + "new_balance":"2826.96", + "value":"-0.54" + } + }, + { + "id":"95ec570b-b306-459f-9de4-e59bb36fb02e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T23:22:01.394Z", + "completed":"2017-03-10T23:22:01.394Z", + "new_balance":"2820.64", + "value":"-6.32" + } + }, + { + "id":"32a01af5-e1f3-4017-88c4-e44bd78b54bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:39:20.168Z", + "completed":"2017-03-11T19:39:20.168Z", + "new_balance":"2819.87", + "value":"-0.77" + } + }, + { + "id":"c6cbd7b4-e280-433a-b44b-bfbac5466eef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T03:55:57.506Z", + "completed":"2017-03-12T03:55:57.506Z", + "new_balance":"2817.62", + "value":"-2.25" + } + }, + { + "id":"e0d15ef9-a31c-4d07-94c7-1303f7c8d20d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T16:37:21.825Z", + "completed":"2017-03-12T16:37:21.825Z", + "new_balance":"2816.57", + "value":"-1.05" + } + }, + { + "id":"d351b5b6-2bf1-409e-beef-ca1bf6291fe7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T06:37:03.206Z", + "completed":"2017-03-13T06:37:03.206Z", + "new_balance":"2812.31", + "value":"-4.26" + } + }, + { + "id":"cf1ec5f2-200a-4d2c-a604-2bab5615d685", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T14:31:32.033Z", + "completed":"2017-03-14T14:31:32.033Z", + "new_balance":"2811.79", + "value":"-0.52" + } + }, + { + "id":"53cc7cc6-a2c7-47ea-afdb-38be1b520aaf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T15:14:46.015Z", + "completed":"2017-03-16T15:14:46.015Z", + "new_balance":"2806.97", + "value":"-4.82" + } + }, + { + "id":"6521ebb2-a442-465d-b134-81953080a484", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T17:04:49.620Z", + "completed":"2017-03-16T17:04:49.620Z", + "new_balance":"2797.18", + "value":"-9.79" + } + }, + { + "id":"d74fa1a4-9551-4fe7-ab17-5b5388a1d1be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T01:48:39.693Z", + "completed":"2017-03-18T01:48:39.693Z", + "new_balance":"2796.66", + "value":"-0.52" + } + }, + { + "id":"d0c2fd91-8ed5-494e-8d4f-ad967cc3f468", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T04:54:58.555Z", + "completed":"2017-03-19T04:54:58.555Z", + "new_balance":"2792.51", + "value":"-4.15" + } + }, + { + "id":"af8af00a-05bc-4b1d-b6c8-48c0cab98f52", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T10:09:39.628Z", + "completed":"2017-03-19T10:09:39.628Z", + "new_balance":"2788.22", + "value":"-4.29" + } + }, + { + "id":"99ff941d-01c5-4e51-88d2-08d08aee23f6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:01:32.052Z", + "completed":"2017-03-19T14:01:32.052Z", + "new_balance":"2781.90", + "value":"-6.32" + } + }, + { + "id":"f010b90b-2857-49d0-a573-6f271e360320", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T07:33:58.443Z", + "completed":"2017-03-20T07:33:58.443Z", + "new_balance":"2774.94", + "value":"-6.96" + } + }, + { + "id":"4ca01cb3-654c-4674-9a03-95ea641068b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T21:05:28.313Z", + "completed":"2017-03-20T21:05:28.313Z", + "new_balance":"2769.78", + "value":"-5.16" + } + }, + { + "id":"ee8a9e04-3865-4e2e-9b5c-de9af5f1b016", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T00:49:04.897Z", + "completed":"2017-03-21T00:49:04.897Z", + "new_balance":"2769.19", + "value":"-0.59" + } + }, + { + "id":"21a2997b-3b12-4973-8012-4cfaff95649c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T06:13:11.425Z", + "completed":"2017-03-21T06:13:11.425Z", + "new_balance":"2768.43", + "value":"-0.76" + } + }, + { + "id":"77f4e648-48eb-45c0-9e1b-eb70ee2a9727", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T09:46:18.564Z", + "completed":"2017-03-23T09:46:18.564Z", + "new_balance":"2767.52", + "value":"-0.91" + } + }, + { + "id":"112cc6be-0367-48ce-8331-295bca103a60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T22:16:14.621Z", + "completed":"2017-03-23T22:16:14.621Z", + "new_balance":"2762.91", + "value":"-4.61" + } + }, + { + "id":"d59bd0f9-d386-49ee-8eb9-aa8baac96a26", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T02:30:32.920Z", + "completed":"2017-03-24T02:30:32.920Z", + "new_balance":"2759.36", + "value":"-3.55" + } + }, + { + "id":"7b8897d7-d198-4ec9-8283-6cb6b4278dbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T08:57:03.343Z", + "completed":"2017-03-25T08:57:03.343Z", + "new_balance":"2758.05", + "value":"-1.31" + } + }, + { + "id":"5a4ea685-f6b5-4b4d-8254-ab9bfebaa0c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T19:06:53.958Z", + "completed":"2017-03-25T19:06:53.958Z", + "new_balance":"2754.99", + "value":"-3.06" + } + }, + { + "id":"aa5bdf63-6562-4d0b-a84c-c115f6a00393", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T05:47:53.799Z", + "completed":"2017-03-27T05:47:53.799Z", + "new_balance":"2727.49", + "value":"-27.50" + } + }, + { + "id":"4c89517a-f97b-4d42-8343-c73f1c900f0e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T14:00:23.786Z", + "completed":"2017-03-28T14:00:23.786Z", + "new_balance":"2724.75", + "value":"-2.74" + } + }, + { + "id":"1d34125e-41c9-47d8-8648-5c09df8855c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T14:11:07.844Z", + "completed":"2017-04-01T14:11:07.844Z", + "new_balance":"2666.52", + "value":"-58.23" + } + }, + { + "id":"2f350e29-6508-4d58-beeb-39d0d931ecd0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T14:52:26.890Z", + "completed":"2017-04-01T14:52:26.890Z", + "new_balance":"2661.37", + "value":"-5.15" + } + }, + { + "id":"379931bd-749e-4834-8a60-65d251d06e79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T15:22:57.676Z", + "completed":"2017-04-01T15:22:57.676Z", + "new_balance":"2659.05", + "value":"-2.32" + } + }, + { + "id":"9c33b92f-132b-46b9-94c1-7dce4294d448", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T16:02:00.356Z", + "completed":"2017-04-01T16:02:00.356Z", + "new_balance":"2643.80", + "value":"-15.25" + } + }, + { + "id":"28eaa930-ad48-482c-9c8a-26bd9900fa60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T04:11:59.446Z", + "completed":"2017-04-02T04:11:59.446Z", + "new_balance":"2634.11", + "value":"-9.69" + } + }, + { + "id":"991e58cf-f774-421e-b3df-9e57e819203d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T23:43:18.978Z", + "completed":"2017-04-02T23:43:18.978Z", + "new_balance":"2627.01", + "value":"-7.10" + } + }, + { + "id":"ec238c39-6a8e-49a8-ac66-f3e68f4adc0b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T04:04:14.293Z", + "completed":"2017-04-03T04:04:14.293Z", + "new_balance":"2623.23", + "value":"-3.78" + } + }, + { + "id":"751e7d6f-bfdc-419b-974a-1ead81c4bba4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T06:24:15.887Z", + "completed":"2017-04-03T06:24:15.887Z", + "new_balance":"2631.17", + "value":"7.94" + } + }, + { + "id":"33a99c87-06ae-4c82-938c-3a1a446df3e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:31:22.595Z", + "completed":"2017-04-03T08:31:22.595Z", + "new_balance":"2643.51", + "value":"12.34" + } + }, + { + "id":"1b657a04-f1e6-41cc-8544-772622f05c79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T13:38:55.296Z", + "completed":"2017-04-03T13:38:55.296Z", + "new_balance":"2640.60", + "value":"-2.91" + } + }, + { + "id":"11b6091e-5d82-4957-921e-15f1affd7d51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:48:27.381Z", + "completed":"2017-04-03T20:48:27.381Z", + "new_balance":"2636.82", + "value":"-3.78" + } + }, + { + "id":"ff551070-31ae-4352-a171-00139bb38aec", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T10:02:22.180Z", + "completed":"2017-04-04T10:02:22.180Z", + "new_balance":"2629.63", + "value":"-7.19" + } + }, + { + "id":"98950639-4202-4a47-9d20-e9b0dca260cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T01:07:54.913Z", + "completed":"2017-04-05T01:07:54.913Z", + "new_balance":"2629.17", + "value":"-0.46" + } + }, + { + "id":"4288c7ba-de8e-4dbe-bacf-83c323311534", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T10:26:26.940Z", + "completed":"2017-04-05T10:26:26.940Z", + "new_balance":"2626.49", + "value":"-2.68" + } + }, + { + "id":"c0169e3d-efa2-44c5-aadf-4083e56cee81", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T06:39:22.602Z", + "completed":"2017-04-07T06:39:22.602Z", + "new_balance":"2623.27", + "value":"-3.22" + } + }, + { + "id":"bf54d88f-62ae-4cc8-9042-f317f1f38c90", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T13:32:40.106Z", + "completed":"2017-04-07T13:32:40.106Z", + "new_balance":"2621.74", + "value":"-1.53" + } + }, + { + "id":"cc5a3333-d8a5-47b2-abf3-f82d09d7b382", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T12:14:19.419Z", + "completed":"2017-04-08T12:14:19.419Z", + "new_balance":"2620.84", + "value":"-0.90" + } + }, + { + "id":"85c0be2a-7d1d-48f6-8b4e-368b751615f9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T03:55:36.220Z", + "completed":"2017-04-09T03:55:36.220Z", + "new_balance":"2593.34", + "value":"-27.50" + } + }, + { + "id":"5a7b02ea-5f87-476e-abd9-6f228bf4befc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T07:35:14.958Z", + "completed":"2017-04-09T07:35:14.958Z", + "new_balance":"2592.90", + "value":"-0.44" + } + }, + { + "id":"0f0a6520-e1f4-4e9d-a737-53aa91686bc2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T19:23:34.604Z", + "completed":"2017-04-09T19:23:34.604Z", + "new_balance":"2590.79", + "value":"-2.11" + } + }, + { + "id":"99b73deb-f03a-4e42-bc4a-7808d10a1b19", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T08:47:20.751Z", + "completed":"2017-04-10T08:47:20.751Z", + "new_balance":"2586.31", + "value":"-4.48" + } + }, + { + "id":"12400e4d-a122-4167-8a51-1bff4bf73bc0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T23:38:14.742Z", + "completed":"2017-04-17T23:38:14.742Z", + "new_balance":"2585.20", + "value":"-1.11" + } + }, + { + "id":"04f95287-2fc5-4bf9-b0a5-7cb7338e35e5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T17:35:03.487Z", + "completed":"2017-04-18T17:35:03.487Z", + "new_balance":"2582.39", + "value":"-2.81" + } + }, + { + "id":"bde88eae-8d5b-4bed-a582-68077ddf9eae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T18:34:13.892Z", + "completed":"2017-04-25T18:34:13.892Z", + "new_balance":"2576.99", + "value":"-5.40" + } + }, + { + "id":"116efbc0-5ee0-4f98-8b2c-3845823fc5c1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T02:43:31.267Z", + "completed":"2017-04-26T02:43:31.267Z", + "new_balance":"2576.55", + "value":"-0.44" + } + }, + { + "id":"2644b222-fbe7-487f-95a4-0dc9ae90c9ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T04:27:11.157Z", + "completed":"2017-04-26T04:27:11.157Z", + "new_balance":"2570.73", + "value":"-5.82" + } + }, + { + "id":"f3866bff-83df-4b48-b969-316a490253d2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T01:10:04.329Z", + "completed":"2017-05-02T01:10:04.329Z", + "new_balance":"2565.58", + "value":"-5.15" + } + }, + { + "id":"76955e89-b100-4981-a0ba-2f27103d16ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T09:33:24.830Z", + "completed":"2017-05-02T09:33:24.830Z", + "new_balance":"2564.43", + "value":"-1.15" + } + }, + { + "id":"5c16a0a0-5436-4686-954a-3a4141b71f52", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:20:09.983Z", + "completed":"2017-05-02T10:20:09.983Z", + "new_balance":"2549.18", + "value":"-15.25" + } + }, + { + "id":"5c39191a-5ff2-44ca-8574-03bc5da8db82", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T11:41:35.888Z", + "completed":"2017-05-02T11:41:35.888Z", + "new_balance":"2546.86", + "value":"-2.32" + } + }, + { + "id":"36d1594b-011a-49e4-8358-0abbc1a17dfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:40:08.424Z", + "completed":"2017-05-02T14:40:08.424Z", + "new_balance":"2488.63", + "value":"-58.23" + } + }, + { + "id":"c3aa85c5-5830-4f10-95a1-a7676ac2b8c2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T16:24:00.155Z", + "completed":"2017-05-02T16:24:00.155Z", + "new_balance":"2481.53", + "value":"-7.10" + } + }, + { + "id":"800ec03f-4d3a-4aa1-851b-a9611939ce90", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T21:06:55.990Z", + "completed":"2017-05-02T21:06:55.990Z", + "new_balance":"2478.09", + "value":"-3.44" + } + }, + { + "id":"5877a20e-bb00-45e1-bd3c-93d1d9ae45de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T21:46:31.098Z", + "completed":"2017-05-02T21:46:31.098Z", + "new_balance":"2660.79", + "value":"182.70" + } + }, + { + "id":"6f5f3ea1-8a7d-4b07-bb50-eb6386751e43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:02:54.033Z", + "completed":"2017-05-03T05:02:54.033Z", + "new_balance":"2658.29", + "value":"-2.50" + } + }, + { + "id":"bd07677b-f621-4907-b6a8-bfad9e36e76b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T05:47:04.679Z", + "completed":"2017-05-03T05:47:04.679Z", + "new_balance":"2656.19", + "value":"-2.10" + } + }, + { + "id":"de3ad16d-5328-4b1c-ac0f-96f9778478ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T05:19:28.000Z", + "completed":"2017-05-04T05:19:28.000Z", + "new_balance":"2652.86", + "value":"-3.33" + } + }, + { + "id":"53a96872-9c3c-4a78-ad5e-7f5f6df23d51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T22:50:19.755Z", + "completed":"2017-05-04T22:50:19.755Z", + "new_balance":"2650.46", + "value":"-2.40" + } + }, + { + "id":"8b45fe76-0ee3-46fa-816c-31cb3e7c5dd6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T00:16:50.899Z", + "completed":"2017-05-05T00:16:50.899Z", + "new_balance":"2643.27", + "value":"-7.19" + } + }, + { + "id":"38fa1bd0-6bdb-487e-b401-d37aeec40823", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T11:01:48.687Z", + "completed":"2017-05-07T11:01:48.687Z", + "new_balance":"2642.79", + "value":"-0.48" + } + }, + { + "id":"4971eac1-f916-48a8-819f-88e128519d1f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:58:34.768Z", + "completed":"2017-05-07T14:58:34.768Z", + "new_balance":"2639.76", + "value":"-3.03" + } + }, + { + "id":"63f337ed-e7ab-43ce-be10-f88fbcd682c0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T08:03:14.365Z", + "completed":"2017-05-12T08:03:14.365Z", + "new_balance":"2637.31", + "value":"-2.45" + } + }, + { + "id":"48856915-03d5-4bc0-87c9-23c0db1fecfb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:22:30.011Z", + "completed":"2017-05-12T21:22:30.011Z", + "new_balance":"2634.17", + "value":"-3.14" + } + }, + { + "id":"523b21ec-136e-4630-8790-fa1c0afd77d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T00:25:24.387Z", + "completed":"2017-05-14T00:25:24.387Z", + "new_balance":"2630.69", + "value":"-3.48" + } + }, + { + "id":"c33fcb43-f23f-4eb6-88e0-dfdaa4c837c4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T19:18:20.713Z", + "completed":"2017-05-16T19:18:20.713Z", + "new_balance":"2630.22", + "value":"-0.47" + } + }, + { + "id":"e3ff5df1-512e-4736-ab4a-99063ecdc0e4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T21:37:46.620Z", + "completed":"2017-05-18T21:37:46.620Z", + "new_balance":"2629.45", + "value":"-0.77" + } + }, + { + "id":"2fdadd61-2071-43ad-82ec-acf633881941", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:20:02.419Z", + "completed":"2017-05-20T06:20:02.419Z", + "new_balance":"2633.53", + "value":"4.08" + } + }, + { + "id":"563cfbbf-b23c-4532-a943-b050a8d15f45", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T01:19:23.117Z", + "completed":"2017-05-21T01:19:23.117Z", + "new_balance":"2627.10", + "value":"-6.43" + } + }, + { + "id":"dae670c7-f3f6-41c1-8f60-5f2ab77b9d7b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T08:49:24.295Z", + "completed":"2017-05-21T08:49:24.295Z", + "new_balance":"2622.98", + "value":"-4.12" + } + }, + { + "id":"b07fa395-df38-4184-b11a-a283ad4c5ff7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T06:20:24.208Z", + "completed":"2017-05-27T06:20:24.208Z", + "new_balance":"2620.43", + "value":"-2.55" + } + }, + { + "id":"2f82aa18-0cd5-4312-b5c5-3e8096885b35", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T09:03:53.562Z", + "completed":"2017-05-27T09:03:53.562Z", + "new_balance":"2617.49", + "value":"-2.94" + } + }, + { + "id":"64a736ee-628c-4e1d-8907-04ee62f5c7af", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T00:04:37.348Z", + "completed":"2017-06-01T00:04:37.348Z", + "new_balance":"2614.05", + "value":"-3.44" + } + }, + { + "id":"fbdf4aad-eff8-46e7-b393-200d6d9c058c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T05:37:53.153Z", + "completed":"2017-06-01T05:37:53.153Z", + "new_balance":"2796.75", + "value":"182.70" + } + }, + { + "id":"619cebce-36db-41f4-90a1-f34ede6e9aaa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T07:14:28.450Z", + "completed":"2017-06-01T07:14:28.450Z", + "new_balance":"2738.52", + "value":"-58.23" + } + }, + { + "id":"3bed01fa-a6c7-4080-82a7-65f5f0a3fd96", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T09:33:02.284Z", + "completed":"2017-06-01T09:33:02.284Z", + "new_balance":"2733.37", + "value":"-5.15" + } + }, + { + "id":"2fc95ad5-c2d4-4372-965a-1fa060c03720", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T13:05:45.123Z", + "completed":"2017-06-01T13:05:45.123Z", + "new_balance":"2731.05", + "value":"-2.32" + } + }, + { + "id":"fdafb779-7253-4d66-9718-ae56243a4fea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T21:51:51.061Z", + "completed":"2017-06-01T21:51:51.061Z", + "new_balance":"2715.80", + "value":"-15.25" + } + }, + { + "id":"ad108ba8-5771-4078-ba5b-fdd8d671e21f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T03:34:19.756Z", + "completed":"2017-06-04T03:34:19.756Z", + "new_balance":"2708.70", + "value":"-7.10" + } + }, + { + "id":"1f8c90df-8f78-4e8e-887a-9d2217d1082a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T05:12:23.381Z", + "completed":"2017-06-04T05:12:23.381Z", + "new_balance":"2696.74", + "value":"-11.96" + } + }, + { + "id":"3befd0a9-d2a7-4bf0-9878-d95d461b10c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T11:41:19.591Z", + "completed":"2017-06-11T11:41:19.591Z", + "new_balance":"2693.44", + "value":"-3.30" + } + }, + { + "id":"0b1e195f-dfc3-4a40-8fa7-262de35fd794", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T19:02:51.889Z", + "completed":"2017-06-12T19:02:51.889Z", + "new_balance":"2692.19", + "value":"-1.25" + } + }, + { + "id":"6a05119f-ce0a-4051-9755-600b07ab8772", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T00:34:00.197Z", + "completed":"2017-06-13T00:34:00.197Z", + "new_balance":"2684.89", + "value":"-7.30" + } + }, + { + "id":"e8dfbc14-9b64-43be-84e0-cf11d86ffc51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T02:50:02.161Z", + "completed":"2017-06-13T02:50:02.161Z", + "new_balance":"2684.13", + "value":"-0.76" + } + }, + { + "id":"1e1080a8-2f97-4c40-9af4-56c168270335", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T14:39:30.089Z", + "completed":"2017-06-16T14:39:30.089Z", + "new_balance":"2680.09", + "value":"-4.04" + } + }, + { + "id":"ee736880-fee5-42cc-bbbc-bac58a14afff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T11:32:17.599Z", + "completed":"2017-06-17T11:32:17.599Z", + "new_balance":"2679.69", + "value":"-0.40" + } + }, + { + "id":"993ecacc-e463-41e5-bd31-fb9495d0b03f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T17:06:55.820Z", + "completed":"2017-06-17T17:06:55.820Z", + "new_balance":"2672.39", + "value":"-7.30" + } + }, + { + "id":"c3c46c46-cec7-4f84-8892-1e679a4d986a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:16:19.919Z", + "completed":"2017-06-18T05:16:19.919Z", + "new_balance":"2667.12", + "value":"-5.27" + } + }, + { + "id":"fa084c4e-315f-4025-9e56-f6fdd60b5af4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:07:07.924Z", + "completed":"2017-06-19T02:07:07.924Z", + "new_balance":"2662.85", + "value":"-4.27" + } + }, + { + "id":"c6d48e63-315b-45e8-960f-6ab76f5875d0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:46:31.394Z", + "completed":"2017-06-19T12:46:31.394Z", + "new_balance":"2657.58", + "value":"-5.27" + } + }, + { + "id":"0e167ee9-a090-4c16-bee2-32e01f30523b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T07:44:46.804Z", + "completed":"2017-06-21T07:44:46.804Z", + "new_balance":"2657.04", + "value":"-0.54" + } + }, + { + "id":"34f6b020-65a4-44fc-b588-894b4a07a047", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T22:12:56.047Z", + "completed":"2017-06-21T22:12:56.047Z", + "new_balance":"2650.72", + "value":"-6.32" + } + }, + { + "id":"d67f3834-acfd-45c0-8940-d2ca545dd575", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T03:10:01.254Z", + "completed":"2017-06-23T03:10:01.254Z", + "new_balance":"2649.95", + "value":"-0.77" + } + }, + { + "id":"4d500de2-d418-4dbd-9360-18d1e58b6fbf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T13:52:34.560Z", + "completed":"2017-06-23T13:52:34.560Z", + "new_balance":"2647.70", + "value":"-2.25" + } + }, + { + "id":"a93eea55-dbbb-4a45-a5d5-c42a2cbf2973", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T05:13:21.281Z", + "completed":"2017-06-24T05:13:21.281Z", + "new_balance":"2646.65", + "value":"-1.05" + } + }, + { + "id":"9105821e-927e-4243-a6ce-68548caa2b60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T10:23:44.002Z", + "completed":"2017-06-24T10:23:44.002Z", + "new_balance":"2642.39", + "value":"-4.26" + } + }, + { + "id":"2db72581-6b2d-46dd-a541-b6411fff2ab2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T04:22:43.576Z", + "completed":"2017-06-28T04:22:43.576Z", + "new_balance":"2637.57", + "value":"-4.82" + } + }, + { + "id":"8fbfa23b-bc4d-4753-a6dc-cac6bd5c3aae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T08:57:30.387Z", + "completed":"2017-06-28T08:57:30.387Z", + "new_balance":"2637.05", + "value":"-0.52" + } + }, + { + "id":"aae7ad63-7085-4e69-8526-c73a03326920", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T19:08:45.324Z", + "completed":"2017-06-28T19:08:45.324Z", + "new_balance":"2627.26", + "value":"-9.79" + } + }, + { + "id":"a74368fa-98a5-4916-a962-d6530a18707e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T19:10:42.461Z", + "completed":"2017-06-28T19:10:42.461Z", + "new_balance":"2626.74", + "value":"-0.52" + } + }, + { + "id":"c6803244-d5ab-411e-b70a-b4df3e03563d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T06:02:20.877Z", + "completed":"2017-06-29T06:02:20.877Z", + "new_balance":"2622.45", + "value":"-4.29" + } + }, + { + "id":"a2014045-382e-4435-bd56-4c8e7229aad8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T12:31:38.650Z", + "completed":"2017-06-29T12:31:38.650Z", + "new_balance":"2615.49", + "value":"-6.96" + } + }, + { + "id":"d5dfadf8-79c4-4319-8206-3faa5a6830a8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T19:07:40.077Z", + "completed":"2017-06-29T19:07:40.077Z", + "new_balance":"2614.73", + "value":"-0.76" + } + }, + { + "id":"271c7b42-2076-4e5a-a127-f717136d4643", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T20:35:10.833Z", + "completed":"2017-06-29T20:35:10.833Z", + "new_balance":"2609.57", + "value":"-5.16" + } + }, + { + "id":"c3d8106e-048f-457c-acec-098fabb8d644", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:16:56.095Z", + "completed":"2017-06-29T21:16:56.095Z", + "new_balance":"2605.42", + "value":"-4.15" + } + }, + { + "id":"770b39f2-f11e-4ce0-863a-a74e7412bfc7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T22:01:08.103Z", + "completed":"2017-06-29T22:01:08.103Z", + "new_balance":"2599.10", + "value":"-6.32" + } + }, + { + "id":"97127a95-3be9-4b70-a716-0589dcb33408", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T04:27:22.562Z", + "completed":"2017-06-30T04:27:22.562Z", + "new_balance":"2598.19", + "value":"-0.91" + } + }, + { + "id":"8e5254f7-e8ba-4e7e-88af-30c63bcc68bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T05:25:49.204Z", + "completed":"2017-06-30T05:25:49.204Z", + "new_balance":"2594.64", + "value":"-3.55" + } + }, + { + "id":"974b7289-2344-45ce-8bb9-fc91be655c43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T12:27:40.576Z", + "completed":"2017-06-30T12:27:40.576Z", + "new_balance":"2590.03", + "value":"-4.61" + } + }, + { + "id":"9f18c239-f200-44f0-a7d3-6880b724c0ee", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T22:04:59.932Z", + "completed":"2017-06-30T22:04:59.932Z", + "new_balance":"2589.44", + "value":"-0.59" + } + }, + { + "id":"ee9a3569-63d9-49b2-b50d-99ef211a968d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T00:48:21.622Z", + "completed":"2017-07-01T00:48:21.622Z", + "new_balance":"2586.00", + "value":"-3.44" + } + }, + { + "id":"2a601a6c-3e10-4f7f-99f3-d1e68624db0a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T01:57:27.202Z", + "completed":"2017-07-01T01:57:27.202Z", + "new_balance":"2558.50", + "value":"-27.50" + } + }, + { + "id":"3d693080-5bac-401d-854d-e5496a74d8e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T02:02:31.325Z", + "completed":"2017-07-01T02:02:31.325Z", + "new_balance":"2555.44", + "value":"-3.06" + } + }, + { + "id":"36f12714-3d31-45ce-8a36-7595b9d76a7c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T02:25:35.302Z", + "completed":"2017-07-01T02:25:35.302Z", + "new_balance":"2540.19", + "value":"-15.25" + } + }, + { + "id":"ac3bbe78-4e7a-4bc1-83ff-7c4a03e18a3e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T03:49:01.809Z", + "completed":"2017-07-01T03:49:01.809Z", + "new_balance":"2537.87", + "value":"-2.32" + } + }, + { + "id":"afc3a993-0da0-4af5-9991-eaea84c49edc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:24:34.336Z", + "completed":"2017-07-01T13:24:34.336Z", + "new_balance":"2532.72", + "value":"-5.15" + } + }, + { + "id":"1772f967-25b1-4948-9530-4018cbd71d9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T14:03:18.523Z", + "completed":"2017-07-01T14:03:18.523Z", + "new_balance":"2474.49", + "value":"-58.23" + } + }, + { + "id":"63353b13-2f0f-4ff2-991c-21d47bf93657", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T15:52:09.585Z", + "completed":"2017-07-01T15:52:09.585Z", + "new_balance":"2471.75", + "value":"-2.74" + } + }, + { + "id":"56c295ad-42af-473d-9995-ae9865c2fd11", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T17:49:33.390Z", + "completed":"2017-07-01T17:49:33.390Z", + "new_balance":"2468.31", + "value":"-3.44" + } + }, + { + "id":"b803d68c-3796-4721-bfb4-77b446c73661", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T20:01:16.243Z", + "completed":"2017-07-01T20:01:16.243Z", + "new_balance":"2467.00", + "value":"-1.31" + } + }, + { + "id":"7d30ad93-7b5b-4c80-ba88-7dca9174adae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T04:46:31.242Z", + "completed":"2017-07-02T04:46:31.242Z", + "new_balance":"2459.90", + "value":"-7.10" + } + }, + { + "id":"49350e0f-3a83-49c2-938f-81ac68b0898d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T12:13:04.984Z", + "completed":"2017-07-03T12:13:04.984Z", + "new_balance":"2449.43", + "value":"-10.47" + } + }, + { + "id":"76097eb7-6576-49ca-9333-7c01a0dcfaa2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T01:13:17.908Z", + "completed":"2017-07-04T01:13:17.908Z", + "new_balance":"2447.65", + "value":"-1.78" + } + }, + { + "id":"8078d92a-d552-436c-805d-4ac301d6d0aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T14:28:57.993Z", + "completed":"2017-07-05T14:28:57.993Z", + "new_balance":"2440.46", + "value":"-7.19" + } + }, + { + "id":"2c1bf943-1e64-405d-882a-eb7d6cbb2524", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T16:00:24.481Z", + "completed":"2017-07-05T16:00:24.481Z", + "new_balance":"2430.82", + "value":"-9.64" + } + }, + { + "id":"052073ad-ea12-4d57-a224-0a91ce912a9b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T19:43:26.364Z", + "completed":"2017-07-06T19:43:26.364Z", + "new_balance":"2430.36", + "value":"-0.46" + } + }, + { + "id":"8ef8e296-0a44-4903-879f-25580b145fb3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T09:36:33.605Z", + "completed":"2017-07-11T09:36:33.605Z", + "new_balance":"2427.68", + "value":"-2.68" + } + }, + { + "id":"d42efa16-c7d2-48da-bb48-682371c0b6bf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T05:12:28.364Z", + "completed":"2017-07-12T05:12:28.364Z", + "new_balance":"2424.46", + "value":"-3.22" + } + }, + { + "id":"ddc30ff1-74e7-4303-847c-adb0a6cef56c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T07:38:56.759Z", + "completed":"2017-07-14T07:38:56.759Z", + "new_balance":"2422.93", + "value":"-1.53" + } + }, + { + "id":"2af1afb4-b860-48a1-84d1-38ee44b9c556", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T22:33:23.394Z", + "completed":"2017-07-16T22:33:23.394Z", + "new_balance":"2422.03", + "value":"-0.90" + } + }, + { + "id":"5c38c285-ae14-4ffa-8c7c-583d76d2cb50", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T20:05:41.020Z", + "completed":"2017-07-18T20:05:41.020Z", + "new_balance":"2419.92", + "value":"-2.11" + } + }, + { + "id":"01866891-a5aa-4a97-9614-85f97682b8d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T01:15:38.659Z", + "completed":"2017-07-20T01:15:38.659Z", + "new_balance":"2392.42", + "value":"-27.50" + } + }, + { + "id":"15f6942c-5e4c-4c00-89cd-4fb23e3c573a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T19:06:57.973Z", + "completed":"2017-07-20T19:06:57.973Z", + "new_balance":"2391.98", + "value":"-0.44" + } + }, + { + "id":"525f9d86-0947-4da0-9faf-d2d9572d164a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T01:07:37.197Z", + "completed":"2017-07-24T01:07:37.197Z", + "new_balance":"2390.87", + "value":"-1.11" + } + }, + { + "id":"55cac181-bd72-409b-ac00-a63de52ffdbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T04:42:44.737Z", + "completed":"2017-07-24T04:42:44.737Z", + "new_balance":"2386.39", + "value":"-4.48" + } + }, + { + "id":"261cee96-bcea-4ced-9e4f-559a9537250b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T05:15:51.355Z", + "completed":"2017-07-25T05:15:51.355Z", + "new_balance":"2380.99", + "value":"-5.40" + } + }, + { + "id":"c86d26f9-f18b-43c5-8cd6-711c526092c1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T07:32:31.468Z", + "completed":"2017-07-25T07:32:31.468Z", + "new_balance":"2378.18", + "value":"-2.81" + } + }, + { + "id":"1e38e64b-37bf-4cdf-987b-2f7d557fa574", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T07:55:52.838Z", + "completed":"2017-07-26T07:55:52.838Z", + "new_balance":"2372.36", + "value":"-5.82" + } + }, + { + "id":"84279a02-177c-4b5e-8c8c-91bcc8f193de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T17:24:58.423Z", + "completed":"2017-07-27T17:24:58.423Z", + "new_balance":"2371.92", + "value":"-0.44" + } + }, + { + "id":"d7d47062-64ec-4ce7-8589-49f08eb6b63d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:13:49.337Z", + "completed":"2017-08-01T00:13:49.337Z", + "new_balance":"2356.67", + "value":"-15.25" + } + }, + { + "id":"48cf51c2-6e93-48f5-b721-5d66d872c14c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:56:56.590Z", + "completed":"2017-08-01T03:56:56.590Z", + "new_balance":"2539.37", + "value":"182.70" + } + }, + { + "id":"cfc9c962-4e3f-4a60-af9d-650484ebf0fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T04:06:23.612Z", + "completed":"2017-08-01T04:06:23.612Z", + "new_balance":"2534.22", + "value":"-5.15" + } + }, + { + "id":"0558d359-141a-4bc8-b1e9-ebf086e0e655", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T08:06:06.710Z", + "completed":"2017-08-01T08:06:06.710Z", + "new_balance":"2531.90", + "value":"-2.32" + } + }, + { + "id":"0a2170c5-8a8d-4321-83ec-a169d0ee9c34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T22:10:31.021Z", + "completed":"2017-08-01T22:10:31.021Z", + "new_balance":"2528.46", + "value":"-3.44" + } + }, + { + "id":"00f91247-e994-4c37-9741-0312a485d695", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T22:21:34.567Z", + "completed":"2017-08-01T22:21:34.567Z", + "new_balance":"2470.23", + "value":"-58.23" + } + }, + { + "id":"b9156751-2ad3-454d-9f94-d6b3833bcefc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T17:25:49.021Z", + "completed":"2017-08-02T17:25:49.021Z", + "new_balance":"2463.13", + "value":"-7.10" + } + }, + { + "id":"66585c7f-7117-491b-af61-aeb4b85feda5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T09:27:16.978Z", + "completed":"2017-08-03T09:27:16.978Z", + "new_balance":"2462.67", + "value":"-0.46" + } + }, + { + "id":"4cc658ae-35c4-498e-af4e-123492b77672", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T23:31:53.806Z", + "completed":"2017-08-04T23:31:53.806Z", + "new_balance":"2459.75", + "value":"-2.92" + } + }, + { + "id":"a99356c0-68c7-4cc2-94f3-24e99b87dcff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T11:16:19.889Z", + "completed":"2017-08-07T11:16:19.889Z", + "new_balance":"2457.25", + "value":"-2.50" + } + }, + { + "id":"5c43b4b9-cae7-4a2e-9afa-cb386706cb34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T02:08:50.191Z", + "completed":"2017-08-09T02:08:50.191Z", + "new_balance":"2453.92", + "value":"-3.33" + } + }, + { + "id":"dbc61095-ea7e-4c93-b2d0-1ba88daeb8e5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T17:51:35.757Z", + "completed":"2017-08-09T17:51:35.757Z", + "new_balance":"2451.52", + "value":"-2.40" + } + }, + { + "id":"22db3113-1860-4413-bca6-b513cb894e6b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T05:25:32.596Z", + "completed":"2017-08-10T05:25:32.596Z", + "new_balance":"2444.33", + "value":"-7.19" + } + }, + { + "id":"f0be5825-9a29-417d-bb79-b9b5f7febcd5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T13:38:43.891Z", + "completed":"2017-08-14T13:38:43.891Z", + "new_balance":"2443.85", + "value":"-0.48" + } + }, + { + "id":"1d2e6965-6da1-4328-b069-d80108172a62", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T10:24:38.908Z", + "completed":"2017-08-15T10:24:38.908Z", + "new_balance":"2440.63", + "value":"-3.22" + } + }, + { + "id":"597c3133-4455-479a-a37a-cc4066bf88b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T22:38:44.253Z", + "completed":"2017-08-15T22:38:44.253Z", + "new_balance":"2437.60", + "value":"-3.03" + } + }, + { + "id":"1fc37995-0078-4406-9ec3-58577a470619", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T16:49:48.872Z", + "completed":"2017-08-16T16:49:48.872Z", + "new_balance":"2434.46", + "value":"-3.14" + } + }, + { + "id":"57b09a9d-6836-4d1b-b158-13bd8367abf5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T20:35:59.109Z", + "completed":"2017-08-17T20:35:59.109Z", + "new_balance":"2430.98", + "value":"-3.48" + } + }, + { + "id":"64061e60-be18-44c3-8949-48f5a2506b96", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T05:39:17.408Z", + "completed":"2017-08-20T05:39:17.408Z", + "new_balance":"2430.51", + "value":"-0.47" + } + }, + { + "id":"1b86ce3c-5188-4183-9906-fb0f724fb374", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T20:41:32.045Z", + "completed":"2017-08-20T20:41:32.045Z", + "new_balance":"2429.74", + "value":"-0.77" + } + }, + { + "id":"8d51b33f-e66c-4d3e-bc76-82695435d9a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T05:49:41.126Z", + "completed":"2017-08-22T05:49:41.126Z", + "new_balance":"2433.82", + "value":"4.08" + } + }, + { + "id":"9944fbac-d8bc-47f8-86b2-322a8ba645c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T03:49:50.541Z", + "completed":"2017-08-23T03:49:50.541Z", + "new_balance":"2427.39", + "value":"-6.43" + } + }, + { + "id":"882e047d-f2c8-4aed-9312-c1ce790ab40a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T13:03:56.192Z", + "completed":"2017-08-23T13:03:56.192Z", + "new_balance":"2423.27", + "value":"-4.12" + } + }, + { + "id":"a7d22dbf-5496-4ab0-849b-c5e1d90d2358", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T05:46:32.782Z", + "completed":"2017-08-28T05:46:32.782Z", + "new_balance":"2420.33", + "value":"-2.94" + } + }, + { + "id":"c1859ada-4be8-44a1-b08a-f23158bb7148", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T15:34:51.088Z", + "completed":"2017-08-28T15:34:51.088Z", + "new_balance":"2417.78", + "value":"-2.55" + } + }, + { + "id":"ccc07dc2-2ce3-42c9-b0e2-25877e32704e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T01:43:12.331Z", + "completed":"2017-09-01T01:43:12.331Z", + "new_balance":"2412.63", + "value":"-5.15" + } + }, + { + "id":"195c10c7-8a37-49e7-8815-df233b152bfc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T05:31:42.001Z", + "completed":"2017-09-01T05:31:42.001Z", + "new_balance":"2595.33", + "value":"182.70" + } + }, + { + "id":"cf49ffe6-e12b-4580-aa83-ebadd5573422", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T08:14:37.842Z", + "completed":"2017-09-01T08:14:37.842Z", + "new_balance":"2591.89", + "value":"-3.44" + } + }, + { + "id":"1c10f9b0-41dd-4a88-9bcd-6cb4bb23bd89", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:56:32.273Z", + "completed":"2017-09-01T14:56:32.273Z", + "new_balance":"2533.66", + "value":"-58.23" + } + }, + { + "id":"b80e691d-6069-452a-982c-c8f1eab5af03", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T18:32:07.072Z", + "completed":"2017-09-01T18:32:07.072Z", + "new_balance":"2531.34", + "value":"-2.32" + } + }, + { + "id":"dad247fe-bbc9-45b7-859d-ce72c7c439f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:43:05.777Z", + "completed":"2017-09-01T21:43:05.777Z", + "new_balance":"2516.09", + "value":"-15.25" + } + }, + { + "id":"9854661b-4a37-4246-86a3-2c624a82905d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T06:52:51.614Z", + "completed":"2017-09-02T06:52:51.614Z", + "new_balance":"2508.99", + "value":"-7.10" + } + }, + { + "id":"733256f7-4dd6-419e-bdc4-b882bb55a909", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:29:22.354Z", + "completed":"2017-09-04T02:29:22.354Z", + "new_balance":"2508.23", + "value":"-0.76" + } + }, + { + "id":"e0790f67-beb7-469b-b5bf-1f4f6866ef2b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T17:25:39.822Z", + "completed":"2017-09-04T17:25:39.822Z", + "new_balance":"2500.93", + "value":"-7.30" + } + }, + { + "id":"b1d161aa-e407-4a80-a568-b53addcec583", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T21:59:10.543Z", + "completed":"2017-09-04T21:59:10.543Z", + "new_balance":"2497.63", + "value":"-3.30" + } + }, + { + "id":"5df91e0b-e5ce-4ff7-b625-cce4bebf80d5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T22:35:14.810Z", + "completed":"2017-09-04T22:35:14.810Z", + "new_balance":"2496.38", + "value":"-1.25" + } + }, + { + "id":"d268fb40-012d-4808-a586-616400c38db4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T01:32:08.543Z", + "completed":"2017-09-05T01:32:08.543Z", + "new_balance":"2495.98", + "value":"-0.40" + } + }, + { + "id":"c215a3ce-3136-4f01-a517-1087b8ffb8ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T11:32:22.254Z", + "completed":"2017-09-05T11:32:22.254Z", + "new_balance":"2491.94", + "value":"-4.04" + } + }, + { + "id":"91df807f-2dc9-4c37-89d9-f621c09c9501", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T08:31:47.450Z", + "completed":"2017-09-06T08:31:47.450Z", + "new_balance":"2486.67", + "value":"-5.27" + } + }, + { + "id":"d5fdf64e-d0cf-45d7-9553-98cb61332512", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T16:47:18.697Z", + "completed":"2017-09-06T16:47:18.697Z", + "new_balance":"2479.37", + "value":"-7.30" + } + }, + { + "id":"6b5d0d62-0573-40b8-944b-1b44f593eed2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T08:46:06.482Z", + "completed":"2017-09-08T08:46:06.482Z", + "new_balance":"2474.10", + "value":"-5.27" + } + }, + { + "id":"5a4c7371-e588-4252-8f76-a47ce600f70a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T17:39:52.909Z", + "completed":"2017-09-08T17:39:52.909Z", + "new_balance":"2469.83", + "value":"-4.27" + } + }, + { + "id":"49d7c69f-32a1-4660-a3b0-f5813fb179e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T18:18:22.847Z", + "completed":"2017-09-10T18:18:22.847Z", + "new_balance":"2463.51", + "value":"-6.32" + } + }, + { + "id":"e89730ad-192e-4e66-abe2-fd8a1e7d1f60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T19:22:35.829Z", + "completed":"2017-09-10T19:22:35.829Z", + "new_balance":"2462.97", + "value":"-0.54" + } + }, + { + "id":"089fcc2f-da74-4d2b-bb42-3b56513304bf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T11:55:34.441Z", + "completed":"2017-09-11T11:55:34.441Z", + "new_balance":"2462.20", + "value":"-0.77" + } + }, + { + "id":"48aeff24-07ea-41e2-8f2e-eeabad9c16ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:43:13.720Z", + "completed":"2017-09-12T01:43:13.720Z", + "new_balance":"2459.95", + "value":"-2.25" + } + }, + { + "id":"e2cefa89-9a03-4a67-9f95-d21e121614ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T21:11:16.113Z", + "completed":"2017-09-12T21:11:16.113Z", + "new_balance":"2458.90", + "value":"-1.05" + } + }, + { + "id":"f24b52c6-9456-4f77-ac78-f4b8a7979e83", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T14:46:20.506Z", + "completed":"2017-09-13T14:46:20.506Z", + "new_balance":"2454.64", + "value":"-4.26" + } + }, + { + "id":"cf63b413-d272-4a01-a5f8-581aaf284a57", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T00:40:49.686Z", + "completed":"2017-09-16T00:40:49.686Z", + "new_balance":"2454.12", + "value":"-0.52" + } + }, + { + "id":"9b9ab12a-afba-49e2-83ca-665acd819cdc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T03:40:54.409Z", + "completed":"2017-09-17T03:40:54.409Z", + "new_balance":"2444.33", + "value":"-9.79" + } + }, + { + "id":"2af4907e-e1a3-471e-8d98-4475f1ef3210", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T21:02:20.255Z", + "completed":"2017-09-17T21:02:20.255Z", + "new_balance":"2439.51", + "value":"-4.82" + } + }, + { + "id":"dfa0172e-ebcb-492c-bed6-e5be692f2e53", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T19:58:45.241Z", + "completed":"2017-09-18T19:58:45.241Z", + "new_balance":"2438.99", + "value":"-0.52" + } + }, + { + "id":"c57ea705-6d4e-42ad-9ef4-b513b5fe94d6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T00:25:53.244Z", + "completed":"2017-09-19T00:25:53.244Z", + "new_balance":"2434.84", + "value":"-4.15" + } + }, + { + "id":"87159428-3db2-47f3-8e1c-bb05a4b19308", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T22:44:45.429Z", + "completed":"2017-09-19T22:44:45.429Z", + "new_balance":"2428.52", + "value":"-6.32" + } + }, + { + "id":"25a0bfce-14fa-424e-a930-4ad522feb54d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T22:59:35.933Z", + "completed":"2017-09-19T22:59:35.933Z", + "new_balance":"2424.23", + "value":"-4.29" + } + }, + { + "id":"f456a6de-b008-471f-8988-aa58f9257150", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T07:48:42.108Z", + "completed":"2017-09-20T07:48:42.108Z", + "new_balance":"2417.27", + "value":"-6.96" + } + }, + { + "id":"fa57c400-0bce-47bd-b3e0-e952cb80863c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T11:07:49.034Z", + "completed":"2017-09-20T11:07:49.034Z", + "new_balance":"2412.11", + "value":"-5.16" + } + }, + { + "id":"bd69843c-dbd1-464e-954d-7fe247eb0fa2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T00:42:07.267Z", + "completed":"2017-09-21T00:42:07.267Z", + "new_balance":"2411.35", + "value":"-0.76" + } + }, + { + "id":"0fe8a6f9-230c-480d-bb40-092b602efe4b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T08:00:48.409Z", + "completed":"2017-09-21T08:00:48.409Z", + "new_balance":"2410.76", + "value":"-0.59" + } + }, + { + "id":"76d59278-073c-4218-9e9f-dc965b441d0c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T14:44:21.637Z", + "completed":"2017-09-23T14:44:21.637Z", + "new_balance":"2409.85", + "value":"-0.91" + } + }, + { + "id":"792c9714-234e-478b-9532-7113951fbb1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T18:12:10.851Z", + "completed":"2017-09-23T18:12:10.851Z", + "new_balance":"2405.24", + "value":"-4.61" + } + }, + { + "id":"5b5bda44-b98a-4a34-a13b-b77d1c2a1095", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T00:23:07.029Z", + "completed":"2017-09-24T00:23:07.029Z", + "new_balance":"2401.69", + "value":"-3.55" + } + }, + { + "id":"6bad6ca3-f342-46bf-9890-f8fb9530576e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T15:55:21.688Z", + "completed":"2017-09-25T15:55:21.688Z", + "new_balance":"2398.63", + "value":"-3.06" + } + }, + { + "id":"2f53b431-7395-4116-bb99-9277d00b2fd5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T17:43:15.032Z", + "completed":"2017-09-25T17:43:15.032Z", + "new_balance":"2397.32", + "value":"-1.31" + } + }, + { + "id":"e423cab4-bfb0-4689-8696-6bf28b966b1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T22:24:12.492Z", + "completed":"2017-09-27T22:24:12.492Z", + "new_balance":"2369.82", + "value":"-27.50" + } + }, + { + "id":"8a232d6b-f8b8-460e-a798-318130713797", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T15:50:14.193Z", + "completed":"2017-09-29T15:50:14.193Z", + "new_balance":"2367.08", + "value":"-2.74" + } + }, + { + "id":"0bc1c939-9897-4492-9fb1-b72411c2705e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T10:56:19.841Z", + "completed":"2017-10-01T10:56:19.841Z", + "new_balance":"2308.85", + "value":"-58.23" + } + }, + { + "id":"9c2629f9-669d-4eed-8c6d-65262e5a0776", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T11:05:16.968Z", + "completed":"2017-10-01T11:05:16.968Z", + "new_balance":"2303.70", + "value":"-5.15" + } + }, + { + "id":"32c45b50-55a6-4b54-a1b4-f22667ff21bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T18:20:28.853Z", + "completed":"2017-10-01T18:20:28.853Z", + "new_balance":"2301.38", + "value":"-2.32" + } + }, + { + "id":"ae3cc294-3a2e-49f1-a41b-6c52b730f67a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T20:48:55.616Z", + "completed":"2017-10-01T20:48:55.616Z", + "new_balance":"2286.13", + "value":"-15.25" + } + }, + { + "id":"d9e064bc-7fab-4f84-a88d-c33e4eb59bae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T20:41:01.214Z", + "completed":"2017-10-02T20:41:01.214Z", + "new_balance":"2279.03", + "value":"-7.10" + } + }, + { + "id":"7970e8cf-da9e-43f6-b085-61e160c11900", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T22:09:51.372Z", + "completed":"2017-10-02T22:09:51.372Z", + "new_balance":"2269.34", + "value":"-9.69" + } + }, + { + "id":"c3d389fe-c833-4144-a12b-2062739ed353", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T01:00:27.086Z", + "completed":"2017-10-03T01:00:27.086Z", + "new_balance":"2241.84", + "value":"-27.50" + } + }, + { + "id":"b0881bc0-ec21-4df8-b1a2-e74fe7578531", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T02:31:02.333Z", + "completed":"2017-10-03T02:31:02.333Z", + "new_balance":"2238.93", + "value":"-2.91" + } + }, + { + "id":"07a96489-086f-4474-9b5d-6ef9208dc5dd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T04:29:26.726Z", + "completed":"2017-10-03T04:29:26.726Z", + "new_balance":"2182.12", + "value":"-56.81" + } + }, + { + "id":"5b2d88a5-1b7a-4a4b-87ea-ff234e7f71ff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:21:06.388Z", + "completed":"2017-10-03T05:21:06.388Z", + "new_balance":"2178.34", + "value":"-3.78" + } + }, + { + "id":"3cbcb1aa-0be2-4e36-b414-352ad7c63058", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T09:09:01.800Z", + "completed":"2017-10-03T09:09:01.800Z", + "new_balance":"2165.24", + "value":"-13.10" + } + }, + { + "id":"cb5628d5-e730-49fa-998f-7628245e610f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T22:29:21.275Z", + "completed":"2017-10-04T22:29:21.275Z", + "new_balance":"2158.05", + "value":"-7.19" + } + }, + { + "id":"03f5c201-5796-46b0-9679-46300903e705", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T04:44:07.684Z", + "completed":"2017-10-05T04:44:07.684Z", + "new_balance":"2155.37", + "value":"-2.68" + } + }, + { + "id":"f6823ecd-70d7-4abd-ba10-66a44eb8f412", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T07:35:48.213Z", + "completed":"2017-10-05T07:35:48.213Z", + "new_balance":"2154.91", + "value":"-0.46" + } + }, + { + "id":"bc86dbe0-7989-4418-8d4c-1cd172fdcc61", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T12:15:55.419Z", + "completed":"2017-10-07T12:15:55.419Z", + "new_balance":"2151.69", + "value":"-3.22" + } + }, + { + "id":"224d92dd-1a7e-4db8-9992-c8585073be9a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T21:29:02.428Z", + "completed":"2017-10-07T21:29:02.428Z", + "new_balance":"2150.16", + "value":"-1.53" + } + }, + { + "id":"4e1a9cff-bbe6-4ed7-8ec6-86df8aee23ca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T10:49:44.841Z", + "completed":"2017-10-08T10:49:44.841Z", + "new_balance":"2149.26", + "value":"-0.90" + } + }, + { + "id":"a835e275-5515-4314-8044-9ae58e91cc67", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T16:58:59.446Z", + "completed":"2017-10-09T16:58:59.446Z", + "new_balance":"2121.76", + "value":"-27.50" + } + }, + { + "id":"e35e5027-2ced-4b7e-8cbc-8e73ee812cf9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T19:47:47.412Z", + "completed":"2017-10-09T19:47:47.412Z", + "new_balance":"2119.65", + "value":"-2.11" + } + }, + { + "id":"f0f94f6a-94d0-4292-9267-fa405ae837f0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T21:46:53.846Z", + "completed":"2017-10-09T21:46:53.846Z", + "new_balance":"2119.21", + "value":"-0.44" + } + }, + { + "id":"60d03653-ce93-46eb-92af-64e466ef9afd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:22:56.666Z", + "completed":"2017-10-10T19:22:56.666Z", + "new_balance":"2114.73", + "value":"-4.48" + } + }, + { + "id":"88cb4b19-cec4-496c-b499-ccf57522f811", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T21:36:34.232Z", + "completed":"2017-10-17T21:36:34.232Z", + "new_balance":"2113.62", + "value":"-1.11" + } + }, + { + "id":"338aed5b-7042-42c7-aa0d-cb10b3f54546", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T08:45:08.972Z", + "completed":"2017-10-18T08:45:08.972Z", + "new_balance":"2110.81", + "value":"-2.81" + } + }, + { + "id":"73610147-9202-46b9-9f4f-33c131212bd2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T12:17:31.836Z", + "completed":"2017-10-25T12:17:31.836Z", + "new_balance":"2105.41", + "value":"-5.40" + } + }, + { + "id":"209b6541-f82a-4374-b0e3-57036cb30dc3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T00:48:48.985Z", + "completed":"2017-10-26T00:48:48.985Z", + "new_balance":"2099.59", + "value":"-5.82" + } + }, + { + "id":"33932179-3ff8-484e-b429-fb06c128aa89", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T07:34:28.995Z", + "completed":"2017-10-26T07:34:28.995Z", + "new_balance":"2099.15", + "value":"-0.44" + } + }, + { + "id":"45e49e8c-fc6d-493e-8900-d6d5c890a0fe", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T01:16:40.335Z", + "completed":"2017-11-02T01:16:40.335Z", + "new_balance":"2040.92", + "value":"-58.23" + } + }, + { + "id":"e3132506-0e60-4504-b7d2-aa0a7fa45b85", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T05:53:11.447Z", + "completed":"2017-11-02T05:53:11.447Z", + "new_balance":"2223.62", + "value":"182.70" + } + }, + { + "id":"3de00372-caa7-4226-9a02-87df8d3bc1f0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T15:48:02.025Z", + "completed":"2017-11-02T15:48:02.025Z", + "new_balance":"2220.18", + "value":"-3.44" + } + }, + { + "id":"3478a5c3-5986-4a71-a19c-bd0ad3d49c27", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T18:16:33.246Z", + "completed":"2017-11-02T18:16:33.246Z", + "new_balance":"2217.86", + "value":"-2.32" + } + }, + { + "id":"ccb034d8-b344-4e7d-ad21-678bd11be89f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T19:09:36.169Z", + "completed":"2017-11-02T19:09:36.169Z", + "new_balance":"2216.71", + "value":"-1.15" + } + }, + { + "id":"5ce040f0-00a6-4837-8156-d41c6b91ae76", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T19:50:38.376Z", + "completed":"2017-11-02T19:50:38.376Z", + "new_balance":"2209.61", + "value":"-7.10" + } + }, + { + "id":"9a96a2a0-3190-439f-8146-2d30dd0222a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T20:00:37.758Z", + "completed":"2017-11-02T20:00:37.758Z", + "new_balance":"2204.46", + "value":"-5.15" + } + }, + { + "id":"e316a49c-6a6c-450a-80c4-250f87ef869f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T23:23:24.379Z", + "completed":"2017-11-02T23:23:24.379Z", + "new_balance":"2189.21", + "value":"-15.25" + } + }, + { + "id":"576c7579-705a-4153-a8d5-a4fac8cd1a08", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T04:51:45.672Z", + "completed":"2017-11-06T04:51:45.672Z", + "new_balance":"2187.11", + "value":"-2.10" + } + }, + { + "id":"256c5710-b42e-45d3-8110-772c981b9ad8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T21:37:13.589Z", + "completed":"2017-11-07T21:37:13.589Z", + "new_balance":"2184.61", + "value":"-2.50" + } + }, + { + "id":"3120a734-a6b8-4390-a485-520ffe28b844", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T22:48:01.016Z", + "completed":"2017-11-07T22:48:01.016Z", + "new_balance":"2181.28", + "value":"-3.33" + } + }, + { + "id":"aca2cdf4-5258-41e5-ab6e-f8298b961b04", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T23:26:56.531Z", + "completed":"2017-11-07T23:26:56.531Z", + "new_balance":"2178.88", + "value":"-2.40" + } + }, + { + "id":"49d43f22-17d7-4f6e-a94b-3d2d134df73d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T08:16:24.062Z", + "completed":"2017-11-09T08:16:24.062Z", + "new_balance":"2178.40", + "value":"-0.48" + } + }, + { + "id":"c098da63-4990-4a01-a2fb-c408216cb67d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T19:42:35.703Z", + "completed":"2017-11-09T19:42:35.703Z", + "new_balance":"2171.21", + "value":"-7.19" + } + }, + { + "id":"85fc5cb0-5995-4cc5-9259-e0f3d22a1649", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T04:05:47.935Z", + "completed":"2017-11-12T04:05:47.935Z", + "new_balance":"2168.18", + "value":"-3.03" + } + }, + { + "id":"fdd52b99-13ee-4313-bfdc-1e43100e010d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T20:41:49.429Z", + "completed":"2017-11-12T20:41:49.429Z", + "new_balance":"2165.73", + "value":"-2.45" + } + }, + { + "id":"acdc6cc3-666a-4f20-8b4b-8e29c1365494", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T09:23:36.469Z", + "completed":"2017-11-14T09:23:36.469Z", + "new_balance":"2162.25", + "value":"-3.48" + } + }, + { + "id":"b574f10d-12c2-4408-aefc-a06580627300", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T14:55:35.857Z", + "completed":"2017-11-14T14:55:35.857Z", + "new_balance":"2159.11", + "value":"-3.14" + } + }, + { + "id":"bfc9a86b-7bf1-4c29-b457-bbd195c3335d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T17:38:33.292Z", + "completed":"2017-11-16T17:38:33.292Z", + "new_balance":"2158.64", + "value":"-0.47" + } + }, + { + "id":"c996f556-ce4d-421d-9e3e-be7c86777170", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T02:32:56.503Z", + "completed":"2017-11-18T02:32:56.503Z", + "new_balance":"2157.87", + "value":"-0.77" + } + }, + { + "id":"738f3c3d-a8bf-45a6-ad68-efaf48bf0183", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T17:07:14.968Z", + "completed":"2017-11-20T17:07:14.968Z", + "new_balance":"2161.95", + "value":"4.08" + } + }, + { + "id":"4ed030e8-31e1-46d8-baf7-1d62f02e657d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T03:07:42.413Z", + "completed":"2017-11-21T03:07:42.413Z", + "new_balance":"2155.52", + "value":"-6.43" + } + }, + { + "id":"95a8eae3-1c8e-40b6-9978-b783261b300b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T04:11:01.552Z", + "completed":"2017-11-21T04:11:01.552Z", + "new_balance":"2151.40", + "value":"-4.12" + } + }, + { + "id":"aca29b3d-752a-4156-9522-497cdb671d3c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T09:16:25.769Z", + "completed":"2017-11-27T09:16:25.769Z", + "new_balance":"2148.46", + "value":"-2.94" + } + }, + { + "id":"990276c5-fdfc-4240-8339-0338254da9c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T20:39:58.694Z", + "completed":"2017-11-27T20:39:58.694Z", + "new_balance":"2145.91", + "value":"-2.55" + } + }, + { + "id":"9cb01b39-8365-49df-b527-9ccc2c1e63d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T02:10:39.680Z", + "completed":"2017-12-01T02:10:39.680Z", + "new_balance":"2087.68", + "value":"-58.23" + } + }, + { + "id":"c39e9e29-9023-49ed-9fda-50d0430c4571", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T05:42:55.946Z", + "completed":"2017-12-01T05:42:55.946Z", + "new_balance":"2072.43", + "value":"-15.25" + } + }, + { + "id":"0e2f3843-0338-491d-b15b-6f3e1fbc0ff8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T10:50:41.913Z", + "completed":"2017-12-01T10:50:41.913Z", + "new_balance":"2255.13", + "value":"182.70" + } + }, + { + "id":"2e7b2d91-fe78-4195-a858-ece2c272e94b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T20:21:24.397Z", + "completed":"2017-12-01T20:21:24.397Z", + "new_balance":"2252.81", + "value":"-2.32" + } + }, + { + "id":"0d1bb8ff-810a-4c40-8372-3b9b3bdcba9d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:07:34.104Z", + "completed":"2017-12-01T22:07:34.104Z", + "new_balance":"2247.66", + "value":"-5.15" + } + }, + { + "id":"7ad78a0d-15d9-4864-84f6-d536b05b28a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T22:18:22.501Z", + "completed":"2017-12-01T22:18:22.501Z", + "new_balance":"2244.22", + "value":"-3.44" + } + }, + { + "id":"33d4e03d-0d43-4d95-8a28-ac770eda778c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T18:50:11.666Z", + "completed":"2017-12-04T18:50:11.666Z", + "new_balance":"2232.26", + "value":"-11.96" + } + }, + { + "id":"76ccdae7-9a0b-49da-a6f5-b1a119fbc4c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T22:51:21.206Z", + "completed":"2017-12-04T22:51:21.206Z", + "new_balance":"2225.16", + "value":"-7.10" + } + }, + { + "id":"db96162f-cdd2-4447-ad14-392a94052398", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T02:38:18.260Z", + "completed":"2017-12-12T02:38:18.260Z", + "new_balance":"2221.86", + "value":"-3.30" + } + }, + { + "id":"9419a258-5deb-49bc-afbe-c84f235c50f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T17:23:43.128Z", + "completed":"2017-12-12T17:23:43.128Z", + "new_balance":"2220.61", + "value":"-1.25" + } + }, + { + "id":"2c935994-3b4b-4658-a418-57e2d0094d92", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T00:01:52.751Z", + "completed":"2017-12-13T00:01:52.751Z", + "new_balance":"2213.31", + "value":"-7.30" + } + }, + { + "id":"46472d9b-4ca6-468b-849f-26f65315d07e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T20:27:11.918Z", + "completed":"2017-12-13T20:27:11.918Z", + "new_balance":"2212.55", + "value":"-0.76" + } + }, + { + "id":"8608292f-20e7-454e-b522-e6ea29b49ed9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T13:09:06.024Z", + "completed":"2017-12-16T13:09:06.024Z", + "new_balance":"2208.51", + "value":"-4.04" + } + }, + { + "id":"c4b24bf3-efbf-4895-abe9-25ff73736851", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T04:35:36.491Z", + "completed":"2017-12-18T04:35:36.491Z", + "new_balance":"2208.11", + "value":"-0.40" + } + }, + { + "id":"ca60e5e8-6273-4eb6-a887-aced46db4585", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T16:00:29.926Z", + "completed":"2017-12-19T16:00:29.926Z", + "new_balance":"2200.81", + "value":"-7.30" + } + }, + { + "id":"2147aa50-51cf-47cd-9324-bd35cbf38acd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T18:02:46.957Z", + "completed":"2017-12-19T18:02:46.957Z", + "new_balance":"2195.54", + "value":"-5.27" + } + }, + { + "id":"09c978d5-9952-4948-8cae-eb16e6f3d239", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T15:14:35.148Z", + "completed":"2017-12-20T15:14:35.148Z", + "new_balance":"2191.27", + "value":"-4.27" + } + }, + { + "id":"3f948e07-f31e-43fa-ad06-78f372a36087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T22:46:09.951Z", + "completed":"2017-12-21T22:46:09.951Z", + "new_balance":"2186.00", + "value":"-5.27" + } + }, + { + "id":"d2d662b4-a8ec-47a0-8cf1-fb3969972d71", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T00:13:40.899Z", + "completed":"2017-12-24T00:13:40.899Z", + "new_balance":"2181.74", + "value":"-4.26" + } + }, + { + "id":"71b0f3b9-90e6-482e-8add-150bc943e6b0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T03:17:01.814Z", + "completed":"2017-12-24T03:17:01.814Z", + "new_balance":"2180.97", + "value":"-0.77" + } + }, + { + "id":"0aba77e6-b7b0-4a6d-9afa-0e8b3a3b8c80", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T15:04:58.798Z", + "completed":"2017-12-24T15:04:58.798Z", + "new_balance":"2174.65", + "value":"-6.32" + } + }, + { + "id":"617ee6de-8c54-4dc8-b227-f5a0bcda7fc0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T18:27:56.213Z", + "completed":"2017-12-24T18:27:56.213Z", + "new_balance":"2173.60", + "value":"-1.05" + } + }, + { + "id":"e31e547e-d0b7-42e1-ad52-ac59538a0be0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T20:08:59.824Z", + "completed":"2017-12-24T20:08:59.824Z", + "new_balance":"2171.35", + "value":"-2.25" + } + }, + { + "id":"d44f502c-e001-4122-b309-6456b5f12b9a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T21:53:56.516Z", + "completed":"2017-12-24T21:53:56.516Z", + "new_balance":"2170.81", + "value":"-0.54" + } + }, + { + "id":"b58d46db-e8df-4a33-ae76-181dc1028567", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T01:32:42.483Z", + "completed":"2017-12-28T01:32:42.483Z", + "new_balance":"2170.29", + "value":"-0.52" + } + }, + { + "id":"18890b83-fa5e-4def-9655-ba0235f184b6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T05:29:48.088Z", + "completed":"2017-12-28T05:29:48.088Z", + "new_balance":"2165.47", + "value":"-4.82" + } + }, + { + "id":"b79de7b8-7462-4437-846b-d4b3a3942e8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:58:13.450Z", + "completed":"2017-12-28T16:58:13.450Z", + "new_balance":"2164.95", + "value":"-0.52" + } + }, + { + "id":"99fc9b24-614b-40cd-ba7c-a839ff14a6c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T23:58:04.841Z", + "completed":"2017-12-28T23:58:04.841Z", + "new_balance":"2155.16", + "value":"-9.79" + } + }, + { + "id":"e9f9eb6d-b019-48c7-9205-c901b1345c9f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T04:54:38.261Z", + "completed":"2017-12-29T04:54:38.261Z", + "new_balance":"2150.00", + "value":"-5.16" + } + }, + { + "id":"bf26bd5b-bb3f-4511-aa71-611d895462d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T09:00:12.583Z", + "completed":"2017-12-29T09:00:12.583Z", + "new_balance":"2145.85", + "value":"-4.15" + } + }, + { + "id":"6e811855-8df0-4f43-ba82-61d3dbb43b40", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T11:26:05.168Z", + "completed":"2017-12-29T11:26:05.168Z", + "new_balance":"2138.89", + "value":"-6.96" + } + }, + { + "id":"662f54cb-1dde-45c7-b4d1-9b85e9cf5492", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T12:23:18.943Z", + "completed":"2017-12-29T12:23:18.943Z", + "new_balance":"2138.13", + "value":"-0.76" + } + }, + { + "id":"68832c11-d475-44c1-87d2-a8404dfab44c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T17:37:49.496Z", + "completed":"2017-12-29T17:37:49.496Z", + "new_balance":"2133.84", + "value":"-4.29" + } + }, + { + "id":"8b226ac4-6aa5-4b1f-99d4-22000bdd8e91", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T23:54:54.254Z", + "completed":"2017-12-29T23:54:54.254Z", + "new_balance":"2127.52", + "value":"-6.32" + } + }, + { + "id":"352f06a8-35f9-46ab-9815-91177c7de9fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T01:15:03.038Z", + "completed":"2017-12-30T01:15:03.038Z", + "new_balance":"2126.93", + "value":"-0.59" + } + }, + { + "id":"2e1e5294-c83b-439c-9745-69ca7b3307a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T02:42:18.123Z", + "completed":"2017-12-30T02:42:18.123Z", + "new_balance":"2122.32", + "value":"-4.61" + } + }, + { + "id":"dcbb2e81-d7bf-4af5-975e-41cc7186e690", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T07:22:39.976Z", + "completed":"2017-12-30T07:22:39.976Z", + "new_balance":"2118.77", + "value":"-3.55" + } + }, + { + "id":"cc97fc0f-7c7c-4823-99a4-f3422726769b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T15:29:37.817Z", + "completed":"2017-12-30T15:29:37.817Z", + "new_balance":"2117.86", + "value":"-0.91" + } + }, + { + "id":"bbb75421-6331-4acf-bd34-46e9056a068e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T11:06:18.321Z", + "completed":"2017-12-31T11:06:18.321Z", + "new_balance":"2115.12", + "value":"-2.74" + } + }, + { + "id":"e913e5c7-7338-4601-ada9-5149a262bdd9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T15:47:44.507Z", + "completed":"2017-12-31T15:47:44.507Z", + "new_balance":"2112.06", + "value":"-3.06" + } + }, + { + "id":"b427f56e-dca4-4230-a77a-bc0349236321", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T19:15:05.291Z", + "completed":"2017-12-31T19:15:05.291Z", + "new_balance":"2084.56", + "value":"-27.50" + } + }, + { + "id":"07c791b8-3d4e-4660-9442-701bd4dfa565", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T20:46:27.234Z", + "completed":"2017-12-31T20:46:27.234Z", + "new_balance":"2083.25", + "value":"-1.31" + } + }, + { + "id":"162c8cba-d7c5-4551-949c-f2c929a0eec7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T03:02:38.058Z", + "completed":"2016-03-01T03:02:38.058Z", + "new_balance":"9706.69", + "value":"-45.51" + } + }, + { + "id":"c900c843-ba8e-42ef-b9bb-5b850692293f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T12:40:01.802Z", + "completed":"2016-03-02T12:40:01.802Z", + "new_balance":"9632.76", + "value":"-73.93" + } + }, + { + "id":"46e296d6-242d-477b-9213-365ca7f97c5a", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T16:24:34.660Z", + "completed":"2016-03-06T16:24:34.660Z", + "new_balance":"9581.66", + "value":"-51.10" + } + }, + { + "id":"033885c5-550e-4be1-8257-f57d56790be9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T05:20:13.248Z", + "completed":"2016-03-11T05:20:13.248Z", + "new_balance":"9574.97", + "value":"-6.69" + } + }, + { + "id":"7dada1be-2372-442c-833e-ef9629bffbc6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T06:40:45.142Z", + "completed":"2016-03-13T06:40:45.142Z", + "new_balance":"9571.27", + "value":"-3.70" + } + }, + { + "id":"6c10f94a-b6c0-49c0-85c9-d73ac6c6b38b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T18:51:02.693Z", + "completed":"2016-03-16T18:51:02.693Z", + "new_balance":"9254.06", + "value":"-317.21" + } + }, + { + "id":"7d807802-4d2b-4010-87d7-02fe76b13698", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T08:46:34.702Z", + "completed":"2016-03-17T08:46:34.702Z", + "new_balance":"9090.58", + "value":"-163.48" + } + }, + { + "id":"7210cad5-ec09-4ace-b36d-36c777afc234", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T10:28:13.325Z", + "completed":"2016-03-17T10:28:13.325Z", + "new_balance":"9048.24", + "value":"-42.34" + } + }, + { + "id":"3692b657-b81a-4929-b522-779615ba05e7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T09:11:12.400Z", + "completed":"2016-03-19T09:11:12.400Z", + "new_balance":"9044.54", + "value":"-3.70" + } + }, + { + "id":"7418ec28-3485-4bf6-9274-136645385e82", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T11:15:17.100Z", + "completed":"2016-03-21T11:15:17.100Z", + "new_balance":"9024.96", + "value":"-19.58" + } + }, + { + "id":"788eedbb-fbb8-496a-8051-b93312b5b47f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T03:15:41.434Z", + "completed":"2016-03-23T03:15:41.434Z", + "new_balance":"8979.45", + "value":"-45.51" + } + }, + { + "id":"bd0b5e32-1ed6-479b-866e-b04b69848917", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T02:58:21.754Z", + "completed":"2016-03-24T02:58:21.754Z", + "new_balance":"8972.76", + "value":"-6.69" + } + }, + { + "id":"f28c8bc1-21fc-4284-a742-b1959f425d33", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T07:40:39.357Z", + "completed":"2016-03-26T07:40:39.357Z", + "new_balance":"8959.75", + "value":"-13.01" + } + }, + { + "id":"e717e8d1-a825-44d8-a9f9-429b8119a483", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T05:34:37.384Z", + "completed":"2016-04-01T05:34:37.384Z", + "new_balance":"8946.74", + "value":"-13.01" + } + }, + { + "id":"0bbd54a8-3a3c-46d3-9208-72838429f433", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T13:19:28.601Z", + "completed":"2016-06-01T13:19:28.601Z", + "new_balance":"8901.23", + "value":"-45.51" + } + }, + { + "id":"e14aa531-3d4a-4b35-a972-b24572cc34c0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T00:35:00.076Z", + "completed":"2016-06-04T00:35:00.076Z", + "new_balance":"8827.30", + "value":"-73.93" + } + }, + { + "id":"3a0bc1be-84a5-4e30-8bcd-eac3d651f3a2", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T05:31:26.406Z", + "completed":"2016-06-19T05:31:26.406Z", + "new_balance":"8776.20", + "value":"-51.10" + } + }, + { + "id":"59501ab6-52c2-4806-bc77-e581642365fa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T20:48:05.839Z", + "completed":"2016-06-21T20:48:05.839Z", + "new_balance":"8769.51", + "value":"-6.69" + } + }, + { + "id":"6c5d322b-d615-48e3-b4e0-6a56d7fecec7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T07:14:35.819Z", + "completed":"2016-06-24T07:14:35.819Z", + "new_balance":"8765.81", + "value":"-3.70" + } + }, + { + "id":"de241d10-258e-4a92-a1db-9280755e72e6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T13:50:23.074Z", + "completed":"2016-06-28T13:50:23.074Z", + "new_balance":"8723.47", + "value":"-42.34" + } + }, + { + "id":"a063d58f-bddd-41b3-954c-4a8df2b75418", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T14:31:25.309Z", + "completed":"2016-06-28T14:31:25.309Z", + "new_balance":"8559.99", + "value":"-163.48" + } + }, + { + "id":"8a5a9a7c-2d8d-4e66-9bbb-164961b4f387", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T18:55:54.460Z", + "completed":"2016-06-28T18:55:54.460Z", + "new_balance":"8242.78", + "value":"-317.21" + } + }, + { + "id":"dc2f0f6a-53ff-443f-9223-80c476b4c66d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T01:32:37.273Z", + "completed":"2016-06-29T01:32:37.273Z", + "new_balance":"8239.08", + "value":"-3.70" + } + }, + { + "id":"57f136e4-d8db-46b2-b1bb-c6f2df6dfb82", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T10:25:31.157Z", + "completed":"2016-06-30T10:25:31.157Z", + "new_balance":"8219.50", + "value":"-19.58" + } + }, + { + "id":"955e2873-24df-4b9b-8efd-fd91d565f4e7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T11:35:19.688Z", + "completed":"2016-06-30T11:35:19.688Z", + "new_balance":"8173.99", + "value":"-45.51" + } + }, + { + "id":"5a1c032d-6cde-4fb4-abd4-ebfdd4d153c8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T18:48:45.516Z", + "completed":"2016-06-30T18:48:45.516Z", + "new_balance":"8167.30", + "value":"-6.69" + } + }, + { + "id":"54dc348d-9a36-415f-acd7-22c68a45c513", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T10:05:37.802Z", + "completed":"2016-09-01T10:05:37.802Z", + "new_balance":"8143.44", + "value":"-23.86" + } + }, + { + "id":"25e762e6-eb83-4b15-8e3a-4d3421ec6aaf", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T10:50:49.948Z", + "completed":"2016-09-02T10:50:49.948Z", + "new_balance":"8069.51", + "value":"-73.93" + } + }, + { + "id":"d10820d2-df17-42d4-85c0-e3bdcc20e5f3", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T12:42:59.030Z", + "completed":"2016-09-07T12:42:59.030Z", + "new_balance":"8018.41", + "value":"-51.10" + } + }, + { + "id":"8d5952ec-fdcd-4a7f-83ca-6de8b3d3a591", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T08:57:12.828Z", + "completed":"2016-09-11T08:57:12.828Z", + "new_balance":"8011.72", + "value":"-6.69" + } + }, + { + "id":"4dab886d-0d38-4415-bd7e-151a2781ade8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T04:08:46.078Z", + "completed":"2016-09-15T04:08:46.078Z", + "new_balance":"8000.81", + "value":"-10.91" + } + }, + { + "id":"cdd8616f-325f-4154-955e-b9fec896b828", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T17:49:08.598Z", + "completed":"2016-09-17T17:49:08.598Z", + "new_balance":"7958.47", + "value":"-42.34" + } + }, + { + "id":"cf156501-5bf0-42ce-b9c8-75139cf91b95", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T18:40:46.162Z", + "completed":"2016-09-17T18:40:46.162Z", + "new_balance":"7641.26", + "value":"-317.21" + } + }, + { + "id":"debc77ac-6151-4ee8-80a9-349219dfbcc9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T20:38:14.125Z", + "completed":"2016-09-17T20:38:14.125Z", + "new_balance":"7477.78", + "value":"-163.48" + } + }, + { + "id":"eb342c1e-10d1-44e7-9aa7-3a1bb69bb27a", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T09:25:42.941Z", + "completed":"2016-09-19T09:25:42.941Z", + "new_balance":"7474.08", + "value":"-3.70" + } + }, + { + "id":"03248398-b7c5-49c6-9cf8-b1528bb907aa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T15:58:13.307Z", + "completed":"2016-09-21T15:58:13.307Z", + "new_balance":"7454.50", + "value":"-19.58" + } + }, + { + "id":"b5a8f138-1f5f-4471-a288-43854d80560b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T18:19:43.706Z", + "completed":"2016-09-23T18:19:43.706Z", + "new_balance":"7408.99", + "value":"-45.51" + } + }, + { + "id":"f125e14c-a3c9-4d30-96a5-b0c1d577f5f8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T21:03:54.523Z", + "completed":"2016-09-24T21:03:54.523Z", + "new_balance":"7402.30", + "value":"-6.69" + } + }, + { + "id":"4c4c4f9c-753e-496b-a39b-d74bd267151d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T12:34:12.149Z", + "completed":"2016-09-27T12:34:12.149Z", + "new_balance":"7389.29", + "value":"-13.01" + } + }, + { + "id":"d0b941a0-dfa4-4b95-bbb0-b74936f337af", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T16:03:08.882Z", + "completed":"2016-10-01T16:03:08.882Z", + "new_balance":"7376.28", + "value":"-13.01" + } + }, + { + "id":"c4a5187b-70f2-4e44-9d11-6a8a9e5a9ff0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T05:33:17.778Z", + "completed":"2016-12-01T05:33:17.778Z", + "new_balance":"7330.77", + "value":"-45.51" + } + }, + { + "id":"fee5df7e-fe78-41c9-a321-9d9199598316", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T22:39:47.339Z", + "completed":"2016-12-04T22:39:47.339Z", + "new_balance":"7256.84", + "value":"-73.93" + } + }, + { + "id":"2b6a423f-5dac-4513-871f-c866f8593ad0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T18:34:53.252Z", + "completed":"2016-12-19T18:34:53.252Z", + "new_balance":"7205.74", + "value":"-51.10" + } + }, + { + "id":"8b3c87a4-1710-44a3-b2d6-85b632f0c64c", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T03:47:18.259Z", + "completed":"2016-12-24T03:47:18.259Z", + "new_balance":"7199.05", + "value":"-6.69" + } + }, + { + "id":"c1d27431-6ec1-44dd-8862-3271e478db83", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T11:01:27.216Z", + "completed":"2016-12-24T11:01:27.216Z", + "new_balance":"7195.35", + "value":"-3.70" + } + }, + { + "id":"e70f11ce-e3e6-4c06-a4f3-d7e63ad6284e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T11:17:54.907Z", + "completed":"2016-12-28T11:17:54.907Z", + "new_balance":"6878.14", + "value":"-317.21" + } + }, + { + "id":"f3fd2c0c-1fba-4b7d-9bbc-7a060d1e9a22", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T20:43:34.615Z", + "completed":"2016-12-28T20:43:34.615Z", + "new_balance":"6835.80", + "value":"-42.34" + } + }, + { + "id":"4b3cf477-b70d-44c4-8a0c-563de7e8c335", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T22:51:33.680Z", + "completed":"2016-12-28T22:51:33.680Z", + "new_balance":"6672.32", + "value":"-163.48" + } + }, + { + "id":"4d9ba57f-27a2-4a25-9700-87ada36d7d7b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T12:22:49.576Z", + "completed":"2016-12-29T12:22:49.576Z", + "new_balance":"6668.62", + "value":"-3.70" + } + }, + { + "id":"6bcb5082-0fbc-4072-94af-8c57f9c8a12c", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T02:03:22.859Z", + "completed":"2016-12-30T02:03:22.859Z", + "new_balance":"6649.04", + "value":"-19.58" + } + }, + { + "id":"2de62778-0f5a-4a38-9608-5ad852208638", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T06:40:59.960Z", + "completed":"2016-12-30T06:40:59.960Z", + "new_balance":"6603.53", + "value":"-45.51" + } + }, + { + "id":"9651a978-1d1a-435e-ab3b-ed0833270b86", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T12:19:59.251Z", + "completed":"2016-12-30T12:19:59.251Z", + "new_balance":"6596.84", + "value":"-6.69" + } + }, + { + "id":"4348f04f-6a12-4db4-86ff-111daba9937d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T20:58:08.613Z", + "completed":"2017-03-01T20:58:08.613Z", + "new_balance":"6551.33", + "value":"-45.51" + } + }, + { + "id":"6d82f484-9968-43e8-b2d8-1dd557130f8e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T07:29:16.810Z", + "completed":"2017-03-02T07:29:16.810Z", + "new_balance":"6477.40", + "value":"-73.93" + } + }, + { + "id":"1edd79dc-f2bc-4344-be0a-54425857b93b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T07:35:23.616Z", + "completed":"2017-03-06T07:35:23.616Z", + "new_balance":"6426.30", + "value":"-51.10" + } + }, + { + "id":"a31e189f-f4c1-49b0-ab4b-d04dfde6b781", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T03:22:15.628Z", + "completed":"2017-03-11T03:22:15.628Z", + "new_balance":"6419.61", + "value":"-6.69" + } + }, + { + "id":"741b2b5c-52ba-4012-9d7a-717d348490df", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T02:03:44.765Z", + "completed":"2017-03-13T02:03:44.765Z", + "new_balance":"6415.91", + "value":"-3.70" + } + }, + { + "id":"a385bc87-95e6-4618-96c8-45c1ed522ac0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T18:07:14.688Z", + "completed":"2017-03-16T18:07:14.688Z", + "new_balance":"6098.70", + "value":"-317.21" + } + }, + { + "id":"224c5f53-849a-423b-a76e-b24e082536b0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T06:15:03.460Z", + "completed":"2017-03-17T06:15:03.460Z", + "new_balance":"6056.36", + "value":"-42.34" + } + }, + { + "id":"e7d28047-8976-408b-9d7a-95dfde63e60b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T22:26:55.245Z", + "completed":"2017-03-17T22:26:55.245Z", + "new_balance":"5892.88", + "value":"-163.48" + } + }, + { + "id":"514a8681-c606-48bc-9af2-2b20fad83c4b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T18:35:11.795Z", + "completed":"2017-03-19T18:35:11.795Z", + "new_balance":"5889.18", + "value":"-3.70" + } + }, + { + "id":"e696728f-5af0-496b-871c-b70ee5fbd441", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T16:25:37.195Z", + "completed":"2017-03-21T16:25:37.195Z", + "new_balance":"5869.60", + "value":"-19.58" + } + }, + { + "id":"47f15db3-9d1d-4ade-ab66-a8210c275467", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T17:44:17.328Z", + "completed":"2017-03-23T17:44:17.328Z", + "new_balance":"5824.09", + "value":"-45.51" + } + }, + { + "id":"111c19a9-34a9-4d9e-9b3e-f23a06cfdfae", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T09:05:50.090Z", + "completed":"2017-03-24T09:05:50.090Z", + "new_balance":"5817.40", + "value":"-6.69" + } + }, + { + "id":"241e08cb-cdc3-4d1d-9568-697f733ae5bb", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T01:55:54.093Z", + "completed":"2017-03-26T01:55:54.093Z", + "new_balance":"5804.39", + "value":"-13.01" + } + }, + { + "id":"7a9a86de-35c4-4e38-9356-db3d3d63fbed", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T19:10:17.784Z", + "completed":"2017-04-01T19:10:17.784Z", + "new_balance":"5791.38", + "value":"-13.01" + } + }, + { + "id":"44b550c1-f508-427f-8a4a-99325b0758ab", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T00:58:56.114Z", + "completed":"2017-06-01T00:58:56.114Z", + "new_balance":"5745.87", + "value":"-45.51" + } + }, + { + "id":"5d7ac36d-61d9-4471-823f-93a66e075586", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T02:56:03.081Z", + "completed":"2017-06-04T02:56:03.081Z", + "new_balance":"5671.94", + "value":"-73.93" + } + }, + { + "id":"a00816b3-c5a4-445b-9570-e0b8b6e75397", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T05:35:35.675Z", + "completed":"2017-06-19T05:35:35.675Z", + "new_balance":"5620.84", + "value":"-51.10" + } + }, + { + "id":"9731c4e2-15ed-484f-bfd8-bbec0fa776f8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T19:43:31.490Z", + "completed":"2017-06-21T19:43:31.490Z", + "new_balance":"5614.15", + "value":"-6.69" + } + }, + { + "id":"88a42044-1654-4eae-8995-e41898d40ede", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T09:02:57.552Z", + "completed":"2017-06-24T09:02:57.552Z", + "new_balance":"5610.45", + "value":"-3.70" + } + }, + { + "id":"f32d0e73-85f2-4e4d-9f4b-d1f41ab62dd3", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T04:38:51.765Z", + "completed":"2017-06-28T04:38:51.765Z", + "new_balance":"5568.11", + "value":"-42.34" + } + }, + { + "id":"6f39cfa8-a46d-4f99-a370-3ef0c43e70d7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T19:09:58.009Z", + "completed":"2017-06-28T19:09:58.009Z", + "new_balance":"5404.63", + "value":"-163.48" + } + }, + { + "id":"61859797-bf20-4f6f-a998-311c7bb83c4b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T22:07:29.644Z", + "completed":"2017-06-28T22:07:29.644Z", + "new_balance":"5087.42", + "value":"-317.21" + } + }, + { + "id":"1730d4c8-65ce-453f-afee-67f2372afb9e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T18:03:19.433Z", + "completed":"2017-06-29T18:03:19.433Z", + "new_balance":"5083.72", + "value":"-3.70" + } + }, + { + "id":"c072669b-7ac5-4834-986a-2d1c0dee1eed", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T03:42:34.773Z", + "completed":"2017-06-30T03:42:34.773Z", + "new_balance":"5038.21", + "value":"-45.51" + } + }, + { + "id":"668b36dd-f8d8-4f94-b793-94d309e123e6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:25:40.559Z", + "completed":"2017-06-30T10:25:40.559Z", + "new_balance":"5031.52", + "value":"-6.69" + } + }, + { + "id":"1eb39b25-f915-4bc6-a781-a0b280f65d63", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T13:10:38.406Z", + "completed":"2017-06-30T13:10:38.406Z", + "new_balance":"5011.94", + "value":"-19.58" + } + }, + { + "id":"ee55eb96-7e65-4551-b4a2-f3194d1ab661", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T10:50:22.912Z", + "completed":"2017-09-01T10:50:22.912Z", + "new_balance":"4988.08", + "value":"-23.86" + } + }, + { + "id":"e69e389e-1a74-4c5d-9d66-e0c6596e67b9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T05:49:57.831Z", + "completed":"2017-09-02T05:49:57.831Z", + "new_balance":"4914.15", + "value":"-73.93" + } + }, + { + "id":"67e12258-ea1a-4a92-9e8c-44ade94e8eb4", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T19:06:07.587Z", + "completed":"2017-09-07T19:06:07.587Z", + "new_balance":"4863.05", + "value":"-51.10" + } + }, + { + "id":"d435d613-7620-4ec4-b5e3-c01698a5dbd2", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T01:33:50.955Z", + "completed":"2017-09-11T01:33:50.955Z", + "new_balance":"4856.36", + "value":"-6.69" + } + }, + { + "id":"0e1f94f2-72c7-4111-9974-c344fe093ef4", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T19:23:14.627Z", + "completed":"2017-09-15T19:23:14.627Z", + "new_balance":"4845.45", + "value":"-10.91" + } + }, + { + "id":"4b823847-7dd6-4cc6-818a-28ea75401ac1", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T07:13:21.737Z", + "completed":"2017-09-17T07:13:21.737Z", + "new_balance":"4803.11", + "value":"-42.34" + } + }, + { + "id":"0a960e05-918a-413c-a825-73b030a17183", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T08:29:56.951Z", + "completed":"2017-09-17T08:29:56.951Z", + "new_balance":"4639.63", + "value":"-163.48" + } + }, + { + "id":"bc6f953b-8527-4d1c-90d0-e35345cee8c9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T09:20:08.378Z", + "completed":"2017-09-17T09:20:08.378Z", + "new_balance":"4322.42", + "value":"-317.21" + } + }, + { + "id":"a2f67214-74e2-477d-8c41-9df521269ccd", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T12:12:28.478Z", + "completed":"2017-09-19T12:12:28.478Z", + "new_balance":"4318.72", + "value":"-3.70" + } + }, + { + "id":"b9433b90-8aa4-4e38-859b-cccf63047937", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T13:10:50.094Z", + "completed":"2017-09-21T13:10:50.094Z", + "new_balance":"4299.14", + "value":"-19.58" + } + }, + { + "id":"964ac23e-a159-4eb0-b71c-2688649e19a5", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T13:31:29.737Z", + "completed":"2017-09-23T13:31:29.737Z", + "new_balance":"4253.63", + "value":"-45.51" + } + }, + { + "id":"497ae60d-f242-48ea-b821-7c0bc9e498d8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T17:26:24.719Z", + "completed":"2017-09-24T17:26:24.719Z", + "new_balance":"4246.94", + "value":"-6.69" + } + }, + { + "id":"fd5c4692-ba16-40c7-be53-e29b6d76d791", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T06:42:43.439Z", + "completed":"2017-09-27T06:42:43.439Z", + "new_balance":"4233.93", + "value":"-13.01" + } + }, + { + "id":"f64721ac-96c2-448d-a0a7-65b01ddb37af", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T05:58:20.538Z", + "completed":"2017-10-01T05:58:20.538Z", + "new_balance":"4220.92", + "value":"-13.01" + } + }, + { + "id":"fa67a4a8-bda1-43ab-985d-0d55cf0490fa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T16:38:55.135Z", + "completed":"2017-12-01T16:38:55.135Z", + "new_balance":"4175.41", + "value":"-45.51" + } + }, + { + "id":"14804c41-3bc8-4c5e-b0eb-aa1d92e2b578", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T19:42:45.411Z", + "completed":"2017-12-04T19:42:45.411Z", + "new_balance":"4101.48", + "value":"-73.93" + } + }, + { + "id":"60d432e5-6f98-45d9-b1d8-c219d8141c42", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T03:04:30.565Z", + "completed":"2017-12-19T03:04:30.565Z", + "new_balance":"4050.38", + "value":"-51.10" + } + }, + { + "id":"58095878-eaa0-48e3-b192-278ded3d7c7f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T11:47:33.624Z", + "completed":"2017-12-24T11:47:33.624Z", + "new_balance":"4046.68", + "value":"-3.70" + } + }, + { + "id":"fed2fb74-2e52-4e7d-93c7-79748e7b6098", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T22:42:24.553Z", + "completed":"2017-12-24T22:42:24.553Z", + "new_balance":"4039.99", + "value":"-6.69" + } + }, + { + "id":"d74f398a-ecbd-48e0-9fea-24526e98e095", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T08:38:42.895Z", + "completed":"2017-12-28T08:38:42.895Z", + "new_balance":"3722.78", + "value":"-317.21" + } + }, + { + "id":"4efa412d-502c-412f-951e-7e51de87aaca", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T19:05:42.469Z", + "completed":"2017-12-28T19:05:42.469Z", + "new_balance":"3680.44", + "value":"-42.34" + } + }, + { + "id":"3dcc4985-5be2-4b51-bdfa-5edb6601b54b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T19:51:09.860Z", + "completed":"2017-12-28T19:51:09.860Z", + "new_balance":"3516.96", + "value":"-163.48" + } + }, + { + "id":"5c041bc5-e402-456b-bb91-f823329938a1", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T21:05:58.269Z", + "completed":"2017-12-29T21:05:58.269Z", + "new_balance":"3513.26", + "value":"-3.70" + } + }, + { + "id":"050679a4-47f8-4806-ad55-b8a8ad2eada8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T01:34:47.918Z", + "completed":"2017-12-30T01:34:47.918Z", + "new_balance":"3467.75", + "value":"-45.51" + } + }, + { + "id":"e3358968-fc60-4670-9fe0-d4e40bec0794", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T05:07:05.801Z", + "completed":"2017-12-30T05:07:05.801Z", + "new_balance":"3461.06", + "value":"-6.69" + } + }, + { + "id":"7ffc8779-96d1-4675-843e-7332c90a3839", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T16:41:20.796Z", + "completed":"2017-12-30T16:41:20.796Z", + "new_balance":"3441.48", + "value":"-19.58" + } + }, + { + "id":"b770d97b-b464-4040-943e-a8b85cab25ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T00:37:04.094Z", + "completed":"2016-01-01T00:37:04.094Z", + "new_balance":"20457.16", + "value":"-29.88" + } + }, + { + "id":"dcccdbf1-d7b5-4436-aa29-eb3fb0648541", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:41:52.706Z", + "completed":"2016-01-01T02:41:52.706Z", + "new_balance":"20422.73", + "value":"-34.43" + } + }, + { + "id":"0967abae-97cd-476d-a59f-6c74177244de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T03:04:09.833Z", + "completed":"2016-01-01T03:04:09.833Z", + "new_balance":"20288.25", + "value":"-134.48" + } + }, + { + "id":"29f5574a-3ce0-43f8-9905-4baec546692a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T14:17:46.663Z", + "completed":"2016-01-01T14:17:46.663Z", + "new_balance":"20235.07", + "value":"-53.18" + } + }, + { + "id":"8573051f-0f0e-408b-89dc-39035957c754", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T19:26:19.671Z", + "completed":"2016-01-01T19:26:19.671Z", + "new_balance":"19724.53", + "value":"-510.54" + } + }, + { + "id":"39e21a10-02ed-4521-81f4-d7ca37273896", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T21:06:19.245Z", + "completed":"2016-01-01T21:06:19.245Z", + "new_balance":"19690.10", + "value":"-34.43" + } + }, + { + "id":"ecb73eaf-196d-4993-9815-acff8221b80a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T03:24:16.875Z", + "completed":"2016-01-02T03:24:16.875Z", + "new_balance":"19618.11", + "value":"-71.99" + } + }, + { + "id":"16e2beb2-27a3-4024-9ba9-761067d285e8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T08:09:56.635Z", + "completed":"2016-01-02T08:09:56.635Z", + "new_balance":"19531.55", + "value":"-86.56" + } + }, + { + "id":"4a66fbdf-cf7b-4e21-8e2b-5bf531c17902", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T15:18:37.613Z", + "completed":"2016-01-04T15:18:37.613Z", + "new_balance":"19496.77", + "value":"-34.78" + } + }, + { + "id":"37ae8149-9f29-44d1-9393-7bdb53d7e7ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T21:35:59.725Z", + "completed":"2016-01-04T21:35:59.725Z", + "new_balance":"19459.58", + "value":"-37.19" + } + }, + { + "id":"ae9baf92-a249-46c4-b0cd-903b488fd0b5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T04:44:30.852Z", + "completed":"2016-01-07T04:44:30.852Z", + "new_balance":"19385.65", + "value":"-73.93" + } + }, + { + "id":"01a619f4-ad7f-4076-8b9a-1bbe9f7203d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T05:35:08.146Z", + "completed":"2016-01-09T05:35:08.146Z", + "new_balance":"19382.06", + "value":"-3.59" + } + }, + { + "id":"7976c963-3a16-4135-9c18-36c2b974cb8d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T10:56:26.303Z", + "completed":"2016-01-10T10:56:26.303Z", + "new_balance":"19354.61", + "value":"-27.45" + } + }, + { + "id":"4bc553f9-3500-4ef7-94fb-bf32b79297ed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T21:51:17.000Z", + "completed":"2016-01-12T21:51:17.000Z", + "new_balance":"19323.32", + "value":"-31.29" + } + }, + { + "id":"cc9b189d-4435-4919-a9af-6bf142257b42", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T00:41:24.645Z", + "completed":"2016-01-15T00:41:24.645Z", + "new_balance":"19308.50", + "value":"-14.82" + } + }, + { + "id":"f35ffe9c-1756-432d-ad64-0f4fadbff38c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T20:08:51.287Z", + "completed":"2016-01-15T20:08:51.287Z", + "new_balance":"19301.34", + "value":"-7.16" + } + }, + { + "id":"21454a12-5818-49fe-a3b5-dfb89b9d859b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T17:32:00.390Z", + "completed":"2016-01-17T17:32:00.390Z", + "new_balance":"19279.09", + "value":"-22.25" + } + }, + { + "id":"d2d3e21f-f7cd-41fa-8c0d-469486961359", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T05:29:07.394Z", + "completed":"2016-01-19T05:29:07.394Z", + "new_balance":"19089.82", + "value":"-189.27" + } + }, + { + "id":"20fd1e49-114f-452f-9f68-dfedfef38378", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T11:23:46.317Z", + "completed":"2016-01-20T11:23:46.317Z", + "new_balance":"19083.11", + "value":"-6.71" + } + }, + { + "id":"c3f94fa3-2606-4f8b-a35a-d91046264e54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T00:20:24.506Z", + "completed":"2016-01-22T00:20:24.506Z", + "new_balance":"19073.41", + "value":"-9.70" + } + }, + { + "id":"03c8b975-0515-4d1d-ab63-2b8a65e34728", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T05:20:48.540Z", + "completed":"2016-01-22T05:20:48.540Z", + "new_balance":"19028.17", + "value":"-45.24" + } + }, + { + "id":"ec4c3b46-624a-4fa7-ac3a-1245573b2b51", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T13:23:19.389Z", + "completed":"2016-01-24T13:23:19.389Z", + "new_balance":"18995.89", + "value":"-32.28" + } + }, + { + "id":"70aa206d-420d-49c3-b2e7-4e794e768d73", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T04:19:52.568Z", + "completed":"2016-01-25T04:19:52.568Z", + "new_balance":"18953.37", + "value":"-42.52" + } + }, + { + "id":"19cc9acc-d421-4551-be8c-09cb558ec1e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T23:34:21.347Z", + "completed":"2016-01-25T23:34:21.347Z", + "new_balance":"18946.66", + "value":"-6.71" + } + }, + { + "id":"113a0ced-9047-47d3-b128-faac57a3ba76", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T05:43:37.968Z", + "completed":"2016-01-26T05:43:37.968Z", + "new_balance":"18883.09", + "value":"-63.57" + } + }, + { + "id":"de0365c0-6d2b-4ea0-b6ab-0d0ef4cda42a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T03:09:32.961Z", + "completed":"2016-02-01T03:09:32.961Z", + "new_balance":"18748.61", + "value":"-134.48" + } + }, + { + "id":"6cc70691-1e53-4948-86ef-0ce4dc376f57", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T03:12:44.172Z", + "completed":"2016-02-01T03:12:44.172Z", + "new_balance":"18718.73", + "value":"-29.88" + } + }, + { + "id":"b6519108-4a09-43c1-af05-270f337b4f69", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T04:24:59.930Z", + "completed":"2016-02-01T04:24:59.930Z", + "new_balance":"20399.14", + "value":"1680.41" + } + }, + { + "id":"68aaab34-67c4-44dc-b10c-929c825fe1a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T08:07:11.567Z", + "completed":"2016-02-01T08:07:11.567Z", + "new_balance":"20364.71", + "value":"-34.43" + } + }, + { + "id":"d9edecb2-fb08-46f1-878f-20a102955fb1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T13:55:09.258Z", + "completed":"2016-02-01T13:55:09.258Z", + "new_balance":"19854.17", + "value":"-510.54" + } + }, + { + "id":"81cd65ac-690a-436a-a098-235d470e7ecd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T19:31:13.463Z", + "completed":"2016-02-01T19:31:13.463Z", + "new_balance":"19800.99", + "value":"-53.18" + } + }, + { + "id":"a58723f3-5feb-4fda-998c-0acd06824c13", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T04:00:49.145Z", + "completed":"2016-02-02T04:00:49.145Z", + "new_balance":"19714.43", + "value":"-86.56" + } + }, + { + "id":"10d1156e-0312-45eb-ad50-55f082b28ac3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T09:55:35.022Z", + "completed":"2016-02-02T09:55:35.022Z", + "new_balance":"19699.79", + "value":"-14.64" + } + }, + { + "id":"7ec5ab97-35f8-4206-9c1b-0969866fba2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T20:16:45.629Z", + "completed":"2016-02-02T20:16:45.629Z", + "new_balance":"19683.86", + "value":"-15.93" + } + }, + { + "id":"928b1ad2-a781-4fc6-a9e8-55cdb76de779", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:10:10.780Z", + "completed":"2016-02-03T02:10:10.780Z", + "new_balance":"19658.06", + "value":"-25.80" + } + }, + { + "id":"2722bdfd-b8c2-46f2-a9a3-25b5a546c4e6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T02:19:58.649Z", + "completed":"2016-02-03T02:19:58.649Z", + "new_balance":"19634.69", + "value":"-23.37" + } + }, + { + "id":"0b42ec03-e309-4fab-afea-a46bf7c61290", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T20:43:53.698Z", + "completed":"2016-02-03T20:43:53.698Z", + "new_balance":"19606.68", + "value":"-28.01" + } + }, + { + "id":"577c0a90-072f-4c4f-b48b-c22c0f5a9bb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T22:02:55.988Z", + "completed":"2016-02-06T22:02:55.988Z", + "new_balance":"19532.75", + "value":"-73.93" + } + }, + { + "id":"ed7a3ce8-12bd-44a0-9fd8-7aeb7d26457f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T04:42:27.149Z", + "completed":"2016-02-08T04:42:27.149Z", + "new_balance":"19528.66", + "value":"-4.09" + } + }, + { + "id":"6fb52b63-a32d-497e-a7a0-779b9dfb5103", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T10:54:02.282Z", + "completed":"2016-02-08T10:54:02.282Z", + "new_balance":"19500.81", + "value":"-27.85" + } + }, + { + "id":"f7b91878-46d3-4561-841d-4551ecdbf7b9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T21:59:09.541Z", + "completed":"2016-02-08T21:59:09.541Z", + "new_balance":"19479.71", + "value":"-21.10" + } + }, + { + "id":"e76b17c8-eeaa-4715-b0ca-3225505ae88c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T03:38:54.542Z", + "completed":"2016-02-09T03:38:54.542Z", + "new_balance":"19431.01", + "value":"-48.70" + } + }, + { + "id":"bd24f7c7-9181-44e7-bf69-ae4a3ff2b846", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T12:54:58.521Z", + "completed":"2016-02-09T12:54:58.521Z", + "new_balance":"19385.84", + "value":"-45.17" + } + }, + { + "id":"d20ac2e9-b068-4e85-871c-73185ee156dc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T17:59:23.182Z", + "completed":"2016-02-12T17:59:23.182Z", + "new_balance":"19380.07", + "value":"-5.77" + } + }, + { + "id":"8a5c298e-a1c7-40b6-90ad-bbae9de420ce", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T03:53:55.356Z", + "completed":"2016-02-13T03:53:55.356Z", + "new_balance":"19419.08", + "value":"39.01" + } + }, + { + "id":"103cb598-e53b-4ff1-8edb-4aba3007d071", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T04:53:18.269Z", + "completed":"2016-02-13T04:53:18.269Z", + "new_balance":"19410.56", + "value":"-8.52" + } + }, + { + "id":"9b2fcbc5-66a1-4ef3-ad53-7c94d7373b3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T13:29:29.944Z", + "completed":"2016-02-13T13:29:29.944Z", + "new_balance":"19366.77", + "value":"-43.79" + } + }, + { + "id":"82c153b3-e3a0-47f3-a281-28527e0f5ac2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T01:57:32.692Z", + "completed":"2016-02-14T01:57:32.692Z", + "new_balance":"19321.14", + "value":"-45.63" + } + }, + { + "id":"bd9df7f6-da7f-479f-aa95-6f2a53fc64d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T01:22:07.046Z", + "completed":"2016-02-15T01:22:07.046Z", + "new_balance":"19295.58", + "value":"-25.56" + } + }, + { + "id":"5a35e38e-0832-4c33-a02b-13de9e752d11", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T02:00:25.647Z", + "completed":"2016-02-28T02:00:25.647Z", + "new_balance":"19262.05", + "value":"-33.53" + } + }, + { + "id":"c2dc860b-5fee-4209-b1d0-36600e9a5115", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T05:23:14.410Z", + "completed":"2016-03-01T05:23:14.410Z", + "new_balance":"18751.51", + "value":"-510.54" + } + }, + { + "id":"35c6685e-d4c5-4f3c-a9f2-03decbcb1504", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T06:59:38.603Z", + "completed":"2016-03-01T06:59:38.603Z", + "new_balance":"18617.03", + "value":"-134.48" + } + }, + { + "id":"9b97736c-9e80-4be9-868d-b8eeff104fd0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T11:24:06.748Z", + "completed":"2016-03-01T11:24:06.748Z", + "new_balance":"20297.44", + "value":"1680.41" + } + }, + { + "id":"2e425d4f-6487-4d7e-aea0-45940583f49a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T13:18:45.466Z", + "completed":"2016-03-01T13:18:45.466Z", + "new_balance":"20244.26", + "value":"-53.18" + } + }, + { + "id":"f7cdc096-40c1-440e-a25c-c7ff1ed59176", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T14:34:51.470Z", + "completed":"2016-03-01T14:34:51.470Z", + "new_balance":"20214.38", + "value":"-29.88" + } + }, + { + "id":"4661e196-31e4-48cc-97b9-427826858aa1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T23:51:32.083Z", + "completed":"2016-03-01T23:51:32.083Z", + "new_balance":"20179.95", + "value":"-34.43" + } + }, + { + "id":"07d315f4-8e65-4ea8-8b40-f92ef7b4a49a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T08:23:36.209Z", + "completed":"2016-03-02T08:23:36.209Z", + "new_balance":"20093.39", + "value":"-86.56" + } + }, + { + "id":"f52f9c12-b6e2-4fe5-b9d0-27f8408e638e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T03:47:01.500Z", + "completed":"2016-03-04T03:47:01.500Z", + "new_balance":"20012.18", + "value":"-81.21" + } + }, + { + "id":"faaa43d9-5daa-4cf3-a6ba-6f7708f207bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T04:49:55.603Z", + "completed":"2016-03-04T04:49:55.603Z", + "new_balance":"20005.71", + "value":"-6.47" + } + }, + { + "id":"413b37b5-0e76-4a74-9ab5-8899faad267e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T04:51:28.450Z", + "completed":"2016-03-04T04:51:28.450Z", + "new_balance":"19974.90", + "value":"-30.81" + } + }, + { + "id":"726ed830-49a2-4848-baee-7f6711a3e671", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:25:16.878Z", + "completed":"2016-03-04T21:25:16.878Z", + "new_balance":"19964.37", + "value":"-10.53" + } + }, + { + "id":"2e69606d-d191-4b8f-b30d-97a173203150", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T19:35:56.554Z", + "completed":"2016-03-05T19:35:56.554Z", + "new_balance":"19959.60", + "value":"-4.77" + } + }, + { + "id":"eeb65f6f-411e-4b9f-9d8d-a5a21951263e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T22:41:58.044Z", + "completed":"2016-03-05T22:41:58.044Z", + "new_balance":"19918.37", + "value":"-41.23" + } + }, + { + "id":"1bf3036a-4bb4-4aba-8b06-1c24e3d2ffbb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T07:50:49.993Z", + "completed":"2016-03-06T07:50:49.993Z", + "new_balance":"19837.16", + "value":"-81.21" + } + }, + { + "id":"84193192-30d6-49bd-af98-86c3e2f39993", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T14:15:17.886Z", + "completed":"2016-03-06T14:15:17.886Z", + "new_balance":"19753.36", + "value":"-83.80" + } + }, + { + "id":"7f1053ef-2f88-4625-b435-52f8c8115e20", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T06:04:33.103Z", + "completed":"2016-03-07T06:04:33.103Z", + "new_balance":"19711.02", + "value":"-42.34" + } + }, + { + "id":"e3d19068-a41b-40c3-9731-4d39cda8fbbf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:02:47.850Z", + "completed":"2016-03-08T05:02:47.850Z", + "new_balance":"19627.22", + "value":"-83.80" + } + }, + { + "id":"311d6fb0-fea0-4474-83cf-ecf50016145c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T00:54:57.948Z", + "completed":"2016-03-09T00:54:57.948Z", + "new_balance":"19623.64", + "value":"-3.58" + } + }, + { + "id":"933531bc-cbbc-41e2-9e0a-ef3c09f5d8a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T20:37:02.661Z", + "completed":"2016-03-10T20:37:02.661Z", + "new_balance":"19532.17", + "value":"-91.47" + } + }, + { + "id":"90f1b3c9-c23a-4c99-9f48-981a8d843b59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T19:25:59.058Z", + "completed":"2016-03-11T19:25:59.058Z", + "new_balance":"19524.89", + "value":"-7.28" + } + }, + { + "id":"6a9ea4b4-210e-470c-84a6-9c518cf10c96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T05:59:23.628Z", + "completed":"2016-03-12T05:59:23.628Z", + "new_balance":"19497.59", + "value":"-27.30" + } + }, + { + "id":"223e3282-2bd7-4c9f-ae83-c6c1d78de6ec", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T23:48:27.508Z", + "completed":"2016-03-12T23:48:27.508Z", + "new_balance":"19484.35", + "value":"-13.24" + } + }, + { + "id":"7c370e8e-3ba8-471f-a4d5-c10a964cb34d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T23:26:21.798Z", + "completed":"2016-03-13T23:26:21.798Z", + "new_balance":"19438.34", + "value":"-46.01" + } + }, + { + "id":"3b8a735b-6bc0-4861-b885-d6b33c22fdf0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T16:02:44.340Z", + "completed":"2016-03-14T16:02:44.340Z", + "new_balance":"19431.35", + "value":"-6.99" + } + }, + { + "id":"1f75fa90-c8a5-486f-8047-3e2e062dcd31", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T14:20:00.896Z", + "completed":"2016-03-16T14:20:00.896Z", + "new_balance":"19384.55", + "value":"-46.80" + } + }, + { + "id":"c755f55a-4ac9-4ae3-a66d-b7caa974887c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:13:00.808Z", + "completed":"2016-03-16T16:13:00.808Z", + "new_balance":"19303.14", + "value":"-81.41" + } + }, + { + "id":"d5b9409c-a777-4eed-b1cc-582c89d07d5e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T06:48:15.235Z", + "completed":"2016-03-18T06:48:15.235Z", + "new_balance":"19296.15", + "value":"-6.99" + } + }, + { + "id":"391a2e20-6ea7-4f2f-994a-7690980a45ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T10:31:40.284Z", + "completed":"2016-03-19T10:31:40.284Z", + "new_balance":"19262.24", + "value":"-33.91" + } + }, + { + "id":"7c1607fd-bbf2-4f0e-bf25-f1eb82626c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T11:10:55.089Z", + "completed":"2016-03-19T11:10:55.089Z", + "new_balance":"19211.23", + "value":"-51.01" + } + }, + { + "id":"8db4b5c5-4c3e-4bf1-9921-cbc821c84e89", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T22:00:53.497Z", + "completed":"2016-03-19T22:00:53.497Z", + "new_balance":"19174.28", + "value":"-36.95" + } + }, + { + "id":"b6b129c0-b317-4bd5-a54c-6bfd10744354", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T00:24:29.964Z", + "completed":"2016-03-20T00:24:29.964Z", + "new_balance":"19115.38", + "value":"-58.90" + } + }, + { + "id":"f0392def-3a2a-4874-9e3d-923dd86c99d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T10:29:55.726Z", + "completed":"2016-03-20T10:29:55.726Z", + "new_balance":"19041.87", + "value":"-73.51" + } + }, + { + "id":"71c72ccc-b4e4-4a16-8ddf-8ff2ce9f3f99", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T01:43:27.102Z", + "completed":"2016-03-21T01:43:27.102Z", + "new_balance":"19035.99", + "value":"-5.88" + } + }, + { + "id":"1569af13-efbf-4c6b-97f6-dd69874999de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T20:00:42.031Z", + "completed":"2016-03-21T20:00:42.031Z", + "new_balance":"19029.52", + "value":"-6.47" + } + }, + { + "id":"585b3d8a-73fd-42c6-b3a8-f6784d5dcf62", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T01:23:18.466Z", + "completed":"2016-03-23T01:23:18.466Z", + "new_balance":"19018.29", + "value":"-11.23" + } + }, + { + "id":"2ed9588f-acd5-4fca-b19b-f8018b65643e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T10:30:54.141Z", + "completed":"2016-03-23T10:30:54.141Z", + "new_balance":"18972.78", + "value":"-45.51" + } + }, + { + "id":"adaa14c4-0502-4cb4-b297-dd90207d64cd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T23:05:03.225Z", + "completed":"2016-03-24T23:05:03.225Z", + "new_balance":"18943.92", + "value":"-28.86" + } + }, + { + "id":"d70f12aa-0e90-4276-9b48-2c648801a6e6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T01:29:12.972Z", + "completed":"2016-03-25T01:29:12.972Z", + "new_balance":"18927.84", + "value":"-16.08" + } + }, + { + "id":"33e2effa-606f-42c1-98ca-9d2fa8550345", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T20:19:06.723Z", + "completed":"2016-03-25T20:19:06.723Z", + "new_balance":"18893.81", + "value":"-34.03" + } + }, + { + "id":"55db6eb8-e111-4c1e-8f40-4f972abeb220", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T00:11:07.661Z", + "completed":"2016-03-27T00:11:07.661Z", + "new_balance":"18704.54", + "value":"-189.27" + } + }, + { + "id":"b6b82f18-0e77-4ba9-ae95-ecf694f3d6de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T11:35:24.481Z", + "completed":"2016-03-28T11:35:24.481Z", + "new_balance":"18677.57", + "value":"-26.97" + } + }, + { + "id":"6cb30c14-c085-4ef0-9e29-a77dd2484ebb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T02:16:41.399Z", + "completed":"2016-04-01T02:16:41.399Z", + "new_balance":"18647.69", + "value":"-29.88" + } + }, + { + "id":"42bb1195-064b-41af-a2f9-96053a080d56", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T10:25:46.941Z", + "completed":"2016-04-01T10:25:46.941Z", + "new_balance":"18137.15", + "value":"-510.54" + } + }, + { + "id":"f1f79c26-0606-4a0c-bceb-20fc06293a6f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:52:07.568Z", + "completed":"2016-04-01T11:52:07.568Z", + "new_balance":"18002.67", + "value":"-134.48" + } + }, + { + "id":"f721796a-4bc9-478a-8cf7-e9d907312609", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T20:21:19.268Z", + "completed":"2016-04-01T20:21:19.268Z", + "new_balance":"17949.49", + "value":"-53.18" + } + }, + { + "id":"5b7a7a53-b9f9-48b9-b019-7da3c20675c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T08:59:06.467Z", + "completed":"2016-04-02T08:59:06.467Z", + "new_balance":"17862.93", + "value":"-86.56" + } + }, + { + "id":"53e55b04-70f7-4032-a343-f8ed46a415e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:40:08.622Z", + "completed":"2016-04-02T14:40:08.622Z", + "new_balance":"17790.94", + "value":"-71.99" + } + }, + { + "id":"e70dd6d9-ecc9-4418-bdfd-d85dfa2d8694", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:41:16.561Z", + "completed":"2016-04-03T01:41:16.561Z", + "new_balance":"17913.14", + "value":"122.20" + } + }, + { + "id":"fdcaaf8a-e70b-458a-b45a-02ffbbe19a91", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:55:19.374Z", + "completed":"2016-04-03T12:55:19.374Z", + "new_balance":"17985.97", + "value":"72.83" + } + }, + { + "id":"8c373392-6809-4abe-83f4-a4ca6ba59894", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T19:13:12.394Z", + "completed":"2016-04-03T19:13:12.394Z", + "new_balance":"17951.19", + "value":"-34.78" + } + }, + { + "id":"0b28b2ac-9f6c-4db4-ac8f-96131b20527a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T20:41:03.944Z", + "completed":"2016-04-03T20:41:03.944Z", + "new_balance":"17914.00", + "value":"-37.19" + } + }, + { + "id":"d0b1f2dc-a66c-4ee2-a6b0-2b2bd1e897f7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T21:50:34.142Z", + "completed":"2016-04-03T21:50:34.142Z", + "new_balance":"17876.81", + "value":"-37.19" + } + }, + { + "id":"83f078e7-7d91-429e-95cc-9a61657fe927", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T21:44:20.932Z", + "completed":"2016-04-04T21:44:20.932Z", + "new_balance":"17802.88", + "value":"-73.93" + } + }, + { + "id":"fd0b5b54-7e50-4f73-b069-6de0b399fb55", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T06:45:00.735Z", + "completed":"2016-04-05T06:45:00.735Z", + "new_balance":"17799.29", + "value":"-3.59" + } + }, + { + "id":"a1a28705-ed18-497b-874d-2e8f74123e1e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T10:21:07.558Z", + "completed":"2016-04-05T10:21:07.558Z", + "new_balance":"17771.84", + "value":"-27.45" + } + }, + { + "id":"e2ec6355-3ec0-488d-80e2-a831330c5d48", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T02:59:29.056Z", + "completed":"2016-04-07T02:59:29.056Z", + "new_balance":"17757.02", + "value":"-14.82" + } + }, + { + "id":"1918118a-57b7-48fb-9f0f-3b81ac587217", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T08:47:30.481Z", + "completed":"2016-04-07T08:47:30.481Z", + "new_balance":"17725.73", + "value":"-31.29" + } + }, + { + "id":"e57171df-d660-411a-81c1-8b5c12025cd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T06:53:36.243Z", + "completed":"2016-04-08T06:53:36.243Z", + "new_balance":"17718.57", + "value":"-7.16" + } + }, + { + "id":"e103170a-e7da-484f-8db8-9b8a350fa534", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T08:59:17.348Z", + "completed":"2016-04-09T08:59:17.348Z", + "new_balance":"17711.86", + "value":"-6.71" + } + }, + { + "id":"e5bf723b-9799-467e-8e4e-38baf5278e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T19:57:40.924Z", + "completed":"2016-04-09T19:57:40.924Z", + "new_balance":"17689.61", + "value":"-22.25" + } + }, + { + "id":"b8943d8c-bf12-4261-9c47-fdcd556bb137", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T20:29:05.071Z", + "completed":"2016-04-09T20:29:05.071Z", + "new_balance":"17500.34", + "value":"-189.27" + } + }, + { + "id":"cedeec19-d162-44f0-8162-4493bc51e891", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T20:30:31.358Z", + "completed":"2016-04-10T20:30:31.358Z", + "new_balance":"17455.10", + "value":"-45.24" + } + }, + { + "id":"f4de25ef-b9aa-4f6b-bc5f-de0cfb05bf4c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T14:26:24.134Z", + "completed":"2016-04-17T14:26:24.134Z", + "new_balance":"17445.40", + "value":"-9.70" + } + }, + { + "id":"f2173160-7fbb-42cb-89f6-2d6fce5ef4b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T08:41:33.161Z", + "completed":"2016-04-18T08:41:33.161Z", + "new_balance":"17413.12", + "value":"-32.28" + } + }, + { + "id":"bfcb9d84-273b-4c82-8e90-9be5180601ed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T08:45:46.049Z", + "completed":"2016-04-25T08:45:46.049Z", + "new_balance":"17370.60", + "value":"-42.52" + } + }, + { + "id":"47c14d35-5923-4ff2-947e-2b24a7978e34", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T11:18:51.165Z", + "completed":"2016-04-26T11:18:51.165Z", + "new_balance":"17307.03", + "value":"-63.57" + } + }, + { + "id":"391ae2ba-b103-433c-9f5f-b07f89453a68", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T20:34:09.493Z", + "completed":"2016-04-26T20:34:09.493Z", + "new_balance":"17300.32", + "value":"-6.71" + } + }, + { + "id":"aec5519a-8cc1-4df8-abd4-cedc8f64b902", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T01:15:21.555Z", + "completed":"2016-05-02T01:15:21.555Z", + "new_balance":"17265.89", + "value":"-34.43" + } + }, + { + "id":"e5c1d3aa-24fb-4126-a908-97b5001fd1a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T03:20:46.371Z", + "completed":"2016-05-02T03:20:46.371Z", + "new_balance":"18946.30", + "value":"1680.41" + } + }, + { + "id":"c66696a2-2255-4328-ab42-a1c7804c0ada", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T08:44:57.124Z", + "completed":"2016-05-02T08:44:57.124Z", + "new_balance":"18930.37", + "value":"-15.93" + } + }, + { + "id":"724151f2-37bd-4d78-ada3-af5c5b3b0314", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T18:26:28.761Z", + "completed":"2016-05-02T18:26:28.761Z", + "new_balance":"18843.81", + "value":"-86.56" + } + }, + { + "id":"80f20b8b-0434-4175-95fc-416c0fb54adc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T20:13:26.928Z", + "completed":"2016-05-02T20:13:26.928Z", + "new_balance":"18790.63", + "value":"-53.18" + } + }, + { + "id":"703ee1c7-02d7-4c81-a789-7b05c83b6380", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T21:29:35.867Z", + "completed":"2016-05-02T21:29:35.867Z", + "new_balance":"18760.75", + "value":"-29.88" + } + }, + { + "id":"035b619a-a1fa-496d-a0ea-3127a8ba978d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:39:55.148Z", + "completed":"2016-05-02T21:39:55.148Z", + "new_balance":"18626.27", + "value":"-134.48" + } + }, + { + "id":"34383863-4fdd-48c6-ac4d-ef8a9cb2e1b3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T22:25:50.478Z", + "completed":"2016-05-02T22:25:50.478Z", + "new_balance":"18115.73", + "value":"-510.54" + } + }, + { + "id":"d6beeaeb-8f29-437e-9d9a-91a48d21520f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T11:05:56.094Z", + "completed":"2016-05-03T11:05:56.094Z", + "new_balance":"18092.36", + "value":"-23.37" + } + }, + { + "id":"5c885492-d049-43fd-9c83-4c2d44c69030", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T13:19:09.797Z", + "completed":"2016-05-03T13:19:09.797Z", + "new_balance":"18077.72", + "value":"-14.64" + } + }, + { + "id":"b85c94e7-7ef2-4216-8a0a-cc7b33d9c8a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T04:38:43.951Z", + "completed":"2016-05-04T04:38:43.951Z", + "new_balance":"18049.71", + "value":"-28.01" + } + }, + { + "id":"b273c14c-0e54-492b-836a-3a1d6add84a7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T20:09:56.749Z", + "completed":"2016-05-04T20:09:56.749Z", + "new_balance":"18023.91", + "value":"-25.80" + } + }, + { + "id":"b9350680-19c1-4b0f-a5fc-6bd42c7752d5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T22:04:05.130Z", + "completed":"2016-05-05T22:04:05.130Z", + "new_balance":"17949.98", + "value":"-73.93" + } + }, + { + "id":"53614f6e-1242-499c-a8e5-e8ac8f81c88a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T15:02:48.965Z", + "completed":"2016-05-07T15:02:48.965Z", + "new_balance":"17922.13", + "value":"-27.85" + } + }, + { + "id":"c3ed38c0-9fa7-42ce-8b04-1f3c948c3e5f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T16:55:08.037Z", + "completed":"2016-05-07T16:55:08.037Z", + "new_balance":"17918.04", + "value":"-4.09" + } + }, + { + "id":"3ad46618-80e3-4e84-98ae-3426ce868e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T00:58:03.730Z", + "completed":"2016-05-12T00:58:03.730Z", + "new_balance":"17896.94", + "value":"-21.10" + } + }, + { + "id":"d47de34d-8c19-4e73-81b9-1185365ca570", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T01:45:57.981Z", + "completed":"2016-05-12T01:45:57.981Z", + "new_balance":"17848.24", + "value":"-48.70" + } + }, + { + "id":"e1dd0853-9c80-459c-a9ae-6b9ac9ede346", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:49:38.266Z", + "completed":"2016-05-14T21:49:38.266Z", + "new_balance":"17803.07", + "value":"-45.17" + } + }, + { + "id":"76d173d8-d998-4806-9cf6-0c23417897a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T07:02:01.540Z", + "completed":"2016-05-16T07:02:01.540Z", + "new_balance":"17797.30", + "value":"-5.77" + } + }, + { + "id":"ca84de8c-e846-4cff-93df-be42b5fe6b7e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T13:14:52.037Z", + "completed":"2016-05-18T13:14:52.037Z", + "new_balance":"17788.78", + "value":"-8.52" + } + }, + { + "id":"689279af-ad57-40d3-9eac-7b6ef7a778f0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T03:16:13.073Z", + "completed":"2016-05-20T03:16:13.073Z", + "new_balance":"17827.79", + "value":"39.01" + } + }, + { + "id":"5391b8f0-ee4d-4667-ab84-ee83d5423d62", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T03:33:24.899Z", + "completed":"2016-05-21T03:33:24.899Z", + "new_balance":"17782.16", + "value":"-45.63" + } + }, + { + "id":"47b89606-d350-464c-ae60-d85b2f7d632c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T05:34:49.478Z", + "completed":"2016-05-21T05:34:49.478Z", + "new_balance":"17738.37", + "value":"-43.79" + } + }, + { + "id":"56bcde4d-1a56-4ffe-9191-93fea8d6baf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:35.049Z", + "completed":"2016-05-27T06:27:35.049Z", + "new_balance":"17704.84", + "value":"-33.53" + } + }, + { + "id":"8252d3e7-0424-4bfe-bf3d-12e8ad0a05d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:50.795Z", + "completed":"2016-05-27T06:27:50.795Z", + "new_balance":"17679.28", + "value":"-25.56" + } + }, + { + "id":"9ed60d1d-4141-48ca-88e9-ed055a5e4726", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T02:50:26.099Z", + "completed":"2016-06-01T02:50:26.099Z", + "new_balance":"17649.40", + "value":"-29.88" + } + }, + { + "id":"4b1577a7-199e-406c-988d-e6a517265859", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T03:46:04.871Z", + "completed":"2016-06-01T03:46:04.871Z", + "new_balance":"19329.81", + "value":"1680.41" + } + }, + { + "id":"384be4d1-6317-4120-967f-8d0b4cf6a3e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T14:22:16.975Z", + "completed":"2016-06-01T14:22:16.975Z", + "new_balance":"19276.63", + "value":"-53.18" + } + }, + { + "id":"3a7b7bd2-9273-45a2-b87f-ef1c3a101ffb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T14:40:47.636Z", + "completed":"2016-06-01T14:40:47.636Z", + "new_balance":"19242.20", + "value":"-34.43" + } + }, + { + "id":"b47d17c2-557d-439d-b8fe-909dd111260e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T21:11:15.595Z", + "completed":"2016-06-01T21:11:15.595Z", + "new_balance":"18731.66", + "value":"-510.54" + } + }, + { + "id":"f658bea7-4c90-41a3-b86f-944142ece90a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T21:34:37.447Z", + "completed":"2016-06-01T21:34:37.447Z", + "new_balance":"18597.18", + "value":"-134.48" + } + }, + { + "id":"d867bf99-2f58-4e2c-9ba8-3a690b45c880", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T09:12:43.179Z", + "completed":"2016-06-04T09:12:43.179Z", + "new_balance":"18510.62", + "value":"-86.56" + } + }, + { + "id":"1cd73bc3-9ff5-4ff1-b083-8e4236544b06", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T18:32:51.253Z", + "completed":"2016-06-04T18:32:51.253Z", + "new_balance":"18378.78", + "value":"-131.84" + } + }, + { + "id":"a93f0458-6a3f-40ca-b298-4355e972e53e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T18:52:25.823Z", + "completed":"2016-06-11T18:52:25.823Z", + "new_balance":"18347.97", + "value":"-30.81" + } + }, + { + "id":"f4f698d9-99df-4aa6-831c-e8cab8e5ed73", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T23:18:20.664Z", + "completed":"2016-06-12T23:18:20.664Z", + "new_balance":"18337.44", + "value":"-10.53" + } + }, + { + "id":"f94a91e6-d5bc-4a00-9222-da6d22f663c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T05:24:00.238Z", + "completed":"2016-06-13T05:24:00.238Z", + "new_balance":"18330.97", + "value":"-6.47" + } + }, + { + "id":"dd4b1077-471d-4127-ba08-d826423b4c14", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:22:13.403Z", + "completed":"2016-06-13T21:22:13.403Z", + "new_balance":"18249.76", + "value":"-81.21" + } + }, + { + "id":"92711f02-5432-4b47-86f9-f9fc4fbf2a48", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T03:11:52.452Z", + "completed":"2016-06-16T03:11:52.452Z", + "new_balance":"18208.53", + "value":"-41.23" + } + }, + { + "id":"8b6b5e4b-88fd-461c-bde0-51ef842a38f4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T01:32:53.925Z", + "completed":"2016-06-17T01:32:53.925Z", + "new_balance":"18127.32", + "value":"-81.21" + } + }, + { + "id":"6658e202-646b-4ccd-953e-7c5d38e41277", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T14:39:49.580Z", + "completed":"2016-06-17T14:39:49.580Z", + "new_balance":"18122.55", + "value":"-4.77" + } + }, + { + "id":"c9842102-2f01-423a-b6e8-96b47ea46aea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T00:56:33.849Z", + "completed":"2016-06-18T00:56:33.849Z", + "new_balance":"18038.75", + "value":"-83.80" + } + }, + { + "id":"e3c648cd-487a-421f-93af-06ef04af7294", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T01:09:11.765Z", + "completed":"2016-06-19T01:09:11.765Z", + "new_balance":"17954.95", + "value":"-83.80" + } + }, + { + "id":"37745297-0052-452b-9c20-9a4ffb0415ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T10:41:00.864Z", + "completed":"2016-06-19T10:41:00.864Z", + "new_balance":"17912.61", + "value":"-42.34" + } + }, + { + "id":"b01f976a-cfc3-44b8-8195-64247b3552bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T12:39:57.421Z", + "completed":"2016-06-21T12:39:57.421Z", + "new_balance":"17909.03", + "value":"-3.58" + } + }, + { + "id":"597c10ea-1482-4818-986a-f8ac7e531e88", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T12:52:03.226Z", + "completed":"2016-06-21T12:52:03.226Z", + "new_balance":"17817.56", + "value":"-91.47" + } + }, + { + "id":"3174b31e-74ce-4a0e-a50d-0e8c0edd28d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T14:30:07.770Z", + "completed":"2016-06-23T14:30:07.770Z", + "new_balance":"17810.28", + "value":"-7.28" + } + }, + { + "id":"79d155ec-0d10-4a38-9ad1-8dbac1f6f7a0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:35:59.431Z", + "completed":"2016-06-23T16:35:59.431Z", + "new_balance":"17782.98", + "value":"-27.30" + } + }, + { + "id":"cf21e9fa-8e80-429c-a058-bcfb09be6ff3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T07:25:08.913Z", + "completed":"2016-06-24T07:25:08.913Z", + "new_balance":"17769.74", + "value":"-13.24" + } + }, + { + "id":"f179b8a5-de25-4814-b587-15dad5949a05", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T14:23:19.919Z", + "completed":"2016-06-24T14:23:19.919Z", + "new_balance":"17723.73", + "value":"-46.01" + } + }, + { + "id":"07241f88-fa2e-4bb7-b25b-c652be698be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T02:08:05.559Z", + "completed":"2016-06-28T02:08:05.559Z", + "new_balance":"17716.74", + "value":"-6.99" + } + }, + { + "id":"6f0f529d-299e-4b73-9edb-23b66ad6d417", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T14:29:15.564Z", + "completed":"2016-06-28T14:29:15.564Z", + "new_balance":"17669.94", + "value":"-46.80" + } + }, + { + "id":"840f150e-7f82-4770-82e2-c18146f515b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T18:23:02.709Z", + "completed":"2016-06-28T18:23:02.709Z", + "new_balance":"17662.95", + "value":"-6.99" + } + }, + { + "id":"b7ff5ea0-66df-4bac-9fea-f6bef707718b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T21:44:09.636Z", + "completed":"2016-06-28T21:44:09.636Z", + "new_balance":"17581.54", + "value":"-81.41" + } + }, + { + "id":"32fa441d-d204-47e5-b041-d066a24521fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T03:20:59.480Z", + "completed":"2016-06-29T03:20:59.480Z", + "new_balance":"17530.53", + "value":"-51.01" + } + }, + { + "id":"68687ae0-49b4-43e9-bc6b-170519b6f9af", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T15:05:35.346Z", + "completed":"2016-06-29T15:05:35.346Z", + "new_balance":"17496.62", + "value":"-33.91" + } + }, + { + "id":"f6080e71-e222-4e96-b38f-07c05b251014", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:52:37.821Z", + "completed":"2016-06-29T21:52:37.821Z", + "new_balance":"17437.72", + "value":"-58.90" + } + }, + { + "id":"7b8674d5-8255-4dca-af10-a87adc8953b8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T22:44:54.306Z", + "completed":"2016-06-29T22:44:54.306Z", + "new_balance":"17431.25", + "value":"-6.47" + } + }, + { + "id":"1ffe5a38-e8aa-466e-8244-6f78cce83bbc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T22:58:23.688Z", + "completed":"2016-06-29T22:58:23.688Z", + "new_balance":"17394.30", + "value":"-36.95" + } + }, + { + "id":"86c1a7a0-883c-42f1-b8b7-acedd08e93a2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:41:11.517Z", + "completed":"2016-06-29T23:41:11.517Z", + "new_balance":"17320.79", + "value":"-73.51" + } + }, + { + "id":"b2e52cdd-632d-4fb3-b1fc-7bc9a09ea1c8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T01:20:26.963Z", + "completed":"2016-06-30T01:20:26.963Z", + "new_balance":"17291.93", + "value":"-28.86" + } + }, + { + "id":"32f9f0b3-151a-4a5f-9def-da233948c900", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T11:42:37.583Z", + "completed":"2016-06-30T11:42:37.583Z", + "new_balance":"17286.05", + "value":"-5.88" + } + }, + { + "id":"38d22f85-8509-4c82-8c48-b1e90a167f63", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T16:27:01.746Z", + "completed":"2016-06-30T16:27:01.746Z", + "new_balance":"17240.54", + "value":"-45.51" + } + }, + { + "id":"44afb45b-b245-43c0-afba-c33715989ddf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T16:58:19.563Z", + "completed":"2016-06-30T16:58:19.563Z", + "new_balance":"17229.31", + "value":"-11.23" + } + }, + { + "id":"8a224c36-ddd3-4b7e-843c-056a824a7b27", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T01:39:10.552Z", + "completed":"2016-07-01T01:39:10.552Z", + "new_balance":"17199.43", + "value":"-29.88" + } + }, + { + "id":"0677c2d0-0f7d-4788-a946-d3f8eaa8d429", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T04:22:10.341Z", + "completed":"2016-07-01T04:22:10.341Z", + "new_balance":"17172.46", + "value":"-26.97" + } + }, + { + "id":"2a31a86e-11fc-4b74-9a18-7ebdfa6f2de3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T04:24:45.870Z", + "completed":"2016-07-01T04:24:45.870Z", + "new_balance":"17156.38", + "value":"-16.08" + } + }, + { + "id":"c651dd9f-ccda-4404-86d7-f17c6594b0a0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T04:55:22.156Z", + "completed":"2016-07-01T04:55:22.156Z", + "new_balance":"17021.90", + "value":"-134.48" + } + }, + { + "id":"733b84c6-0980-41a6-b5af-769fcec852b8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T08:48:15.297Z", + "completed":"2016-07-01T08:48:15.297Z", + "new_balance":"16987.87", + "value":"-34.03" + } + }, + { + "id":"94fbc650-d3d3-4456-a88f-68e47db38be4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T12:30:22.135Z", + "completed":"2016-07-01T12:30:22.135Z", + "new_balance":"16477.33", + "value":"-510.54" + } + }, + { + "id":"39e0c799-815c-4808-95a0-01839d962fd7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:07:11.432Z", + "completed":"2016-07-01T21:07:11.432Z", + "new_balance":"16442.90", + "value":"-34.43" + } + }, + { + "id":"bcaa26df-c2d7-4cf3-9ada-b2b0ceb98d50", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:11:48.877Z", + "completed":"2016-07-01T21:11:48.877Z", + "new_balance":"16408.47", + "value":"-34.43" + } + }, + { + "id":"401474aa-d306-4d6d-9dc4-b35e49a147a3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T22:37:35.823Z", + "completed":"2016-07-01T22:37:35.823Z", + "new_balance":"16355.29", + "value":"-53.18" + } + }, + { + "id":"837bbc70-aebb-4bc4-ae54-3012bbf4e1bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T23:07:10.023Z", + "completed":"2016-07-01T23:07:10.023Z", + "new_balance":"16166.02", + "value":"-189.27" + } + }, + { + "id":"71525081-c9ae-4d59-9318-7dd6d87449bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T03:27:40.329Z", + "completed":"2016-07-02T03:27:40.329Z", + "new_balance":"16079.46", + "value":"-86.56" + } + }, + { + "id":"4840a31c-5039-4f9a-b2d0-9fa9923ad5c2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T02:52:19.096Z", + "completed":"2016-07-03T02:52:19.096Z", + "new_balance":"15984.03", + "value":"-95.43" + } + }, + { + "id":"3b7498c0-a4f8-4ee9-aa59-699905605ed2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T18:38:11.916Z", + "completed":"2016-07-04T18:38:11.916Z", + "new_balance":"15968.25", + "value":"-15.78" + } + }, + { + "id":"5226cb5e-e1e1-4b5e-9db2-37cc376459fd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T06:02:08.532Z", + "completed":"2016-07-05T06:02:08.532Z", + "new_balance":"15894.32", + "value":"-73.93" + } + }, + { + "id":"5e12a938-7e95-4888-b3dd-fed13c6b6b54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T10:36:19.926Z", + "completed":"2016-07-05T10:36:19.926Z", + "new_balance":"15822.23", + "value":"-72.09" + } + }, + { + "id":"263d0887-b0bc-41bb-bf1f-da810e0d76d0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T07:05:13.976Z", + "completed":"2016-07-06T07:05:13.976Z", + "new_balance":"15818.64", + "value":"-3.59" + } + }, + { + "id":"aab67192-7e68-44a2-b87d-ba280670b98d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T00:57:43.472Z", + "completed":"2016-07-11T00:57:43.472Z", + "new_balance":"15791.19", + "value":"-27.45" + } + }, + { + "id":"dff4902c-cb55-4e59-8bf9-51d0d32cacf3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T06:21:47.846Z", + "completed":"2016-07-12T06:21:47.846Z", + "new_balance":"15759.90", + "value":"-31.29" + } + }, + { + "id":"a55e1d5b-71c3-4aa3-aa42-995a7d9ea360", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T08:51:40.372Z", + "completed":"2016-07-14T08:51:40.372Z", + "new_balance":"15745.08", + "value":"-14.82" + } + }, + { + "id":"39cfd237-34a4-49f6-995c-fbf626120411", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T11:35:18.676Z", + "completed":"2016-07-16T11:35:18.676Z", + "new_balance":"15737.92", + "value":"-7.16" + } + }, + { + "id":"55d401b4-6bdd-4a2b-9cdd-59d8a9a86671", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T19:28:05.961Z", + "completed":"2016-07-18T19:28:05.961Z", + "new_balance":"15715.67", + "value":"-22.25" + } + }, + { + "id":"50d76209-0613-4035-8abe-535eb08f5ef8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T06:00:25.961Z", + "completed":"2016-07-20T06:00:25.961Z", + "new_balance":"15526.40", + "value":"-189.27" + } + }, + { + "id":"d0504939-a551-4b4d-8773-29ed6931e77b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T17:04:28.323Z", + "completed":"2016-07-20T17:04:28.323Z", + "new_balance":"15519.69", + "value":"-6.71" + } + }, + { + "id":"faca9a03-b6cc-4b70-8aec-7ee4c55ba18d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T15:20:16.042Z", + "completed":"2016-07-24T15:20:16.042Z", + "new_balance":"15474.45", + "value":"-45.24" + } + }, + { + "id":"39f537a0-7494-473c-bf96-198b66196348", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T15:38:36.274Z", + "completed":"2016-07-24T15:38:36.274Z", + "new_balance":"15464.75", + "value":"-9.70" + } + }, + { + "id":"564fa10d-0a88-4049-a651-1ab4bead7ee5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T04:30:39.174Z", + "completed":"2016-07-25T04:30:39.174Z", + "new_balance":"15422.23", + "value":"-42.52" + } + }, + { + "id":"12aaf2e4-4922-4d98-9f68-8872461bf44c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T05:44:25.496Z", + "completed":"2016-07-25T05:44:25.496Z", + "new_balance":"15389.95", + "value":"-32.28" + } + }, + { + "id":"0c31fe65-38d9-45a2-b797-9ceadb8c38c0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T01:48:40.342Z", + "completed":"2016-07-26T01:48:40.342Z", + "new_balance":"15326.38", + "value":"-63.57" + } + }, + { + "id":"b638d614-c0b7-41fe-859d-9458e23df9da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T20:24:48.721Z", + "completed":"2016-07-27T20:24:48.721Z", + "new_balance":"15319.67", + "value":"-6.71" + } + }, + { + "id":"013483ba-0693-43e9-98ea-0e45c5b93cb4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T01:11:13.069Z", + "completed":"2016-08-01T01:11:13.069Z", + "new_balance":"17000.08", + "value":"1680.41" + } + }, + { + "id":"4965e364-babc-4c14-a892-93334e55fdfc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T05:30:00.883Z", + "completed":"2016-08-01T05:30:00.883Z", + "new_balance":"16865.60", + "value":"-134.48" + } + }, + { + "id":"4cb4f2f8-f5a8-4c59-8ffe-b42fb1557b97", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T06:13:25.687Z", + "completed":"2016-08-01T06:13:25.687Z", + "new_balance":"16812.42", + "value":"-53.18" + } + }, + { + "id":"660e8dd3-8898-4389-b3a6-7cf0545152bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T08:10:11.309Z", + "completed":"2016-08-01T08:10:11.309Z", + "new_balance":"16782.54", + "value":"-29.88" + } + }, + { + "id":"abb8aeaa-c21b-4541-90b5-8c0c91cd2e24", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T08:10:39.312Z", + "completed":"2016-08-01T08:10:39.312Z", + "new_balance":"16272.00", + "value":"-510.54" + } + }, + { + "id":"0dc0cec7-906b-4059-aafa-5731997858f7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T17:57:07.412Z", + "completed":"2016-08-01T17:57:07.412Z", + "new_balance":"16237.57", + "value":"-34.43" + } + }, + { + "id":"69372664-8112-469c-a9d7-8469ec416326", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T09:26:43.609Z", + "completed":"2016-08-02T09:26:43.609Z", + "new_balance":"16151.01", + "value":"-86.56" + } + }, + { + "id":"fe36eee5-59b7-4dd0-a87d-a4c37eeab64f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T01:05:03.416Z", + "completed":"2016-08-03T01:05:03.416Z", + "new_balance":"16147.42", + "value":"-3.59" + } + }, + { + "id":"483cd9b7-a1db-4c61-b716-c63c86027c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T14:23:01.780Z", + "completed":"2016-08-04T14:23:01.780Z", + "new_balance":"16112.87", + "value":"-34.55" + } + }, + { + "id":"e051b7fc-a617-4ade-9700-a03840a9f747", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T11:01:01.836Z", + "completed":"2016-08-07T11:01:01.836Z", + "new_balance":"16089.50", + "value":"-23.37" + } + }, + { + "id":"e40ec565-8409-4cf3-87d5-771fc9c23c59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T17:32:25.320Z", + "completed":"2016-08-09T17:32:25.320Z", + "new_balance":"16061.49", + "value":"-28.01" + } + }, + { + "id":"efc72cf5-1590-460a-9ec8-5d29f1192528", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T19:08:41.095Z", + "completed":"2016-08-09T19:08:41.095Z", + "new_balance":"16035.69", + "value":"-25.80" + } + }, + { + "id":"c1ab7b77-ef77-4c61-8ea8-9981eb36a171", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T22:41:28.263Z", + "completed":"2016-08-10T22:41:28.263Z", + "new_balance":"15961.76", + "value":"-73.93" + } + }, + { + "id":"477bdc43-ed61-4e38-abd6-2f4fb56d5689", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T15:57:25.564Z", + "completed":"2016-08-14T15:57:25.564Z", + "new_balance":"15957.67", + "value":"-4.09" + } + }, + { + "id":"f0067577-2d4b-4347-a081-84be9a148626", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T13:46:47.699Z", + "completed":"2016-08-15T13:46:47.699Z", + "new_balance":"15921.74", + "value":"-35.93" + } + }, + { + "id":"f8c28546-cc20-43c4-b555-a2965252e18f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T17:14:12.548Z", + "completed":"2016-08-15T17:14:12.548Z", + "new_balance":"15893.89", + "value":"-27.85" + } + }, + { + "id":"d9d6ef21-e0f8-4b58-9a0d-ac72c7d51df5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T06:44:55.652Z", + "completed":"2016-08-16T06:44:55.652Z", + "new_balance":"15845.19", + "value":"-48.70" + } + }, + { + "id":"3e9e4809-8484-4347-a3e8-d16e6728b6c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T08:30:41.970Z", + "completed":"2016-08-17T08:30:41.970Z", + "new_balance":"15800.02", + "value":"-45.17" + } + }, + { + "id":"080c4baf-5cba-42b9-88ac-cad1462bcee8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T05:14:59.231Z", + "completed":"2016-08-20T05:14:59.231Z", + "new_balance":"15791.50", + "value":"-8.52" + } + }, + { + "id":"86f95ec3-9bd3-41bf-ae38-a6f010ba1f1d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T13:04:43.006Z", + "completed":"2016-08-20T13:04:43.006Z", + "new_balance":"15785.73", + "value":"-5.77" + } + }, + { + "id":"f8304ff2-5f1a-49d1-b3b2-7d0ddbc6052a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T01:47:12.446Z", + "completed":"2016-08-22T01:47:12.446Z", + "new_balance":"15824.74", + "value":"39.01" + } + }, + { + "id":"7b06d93b-10de-4b1a-8423-262b23e4f7d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T09:11:36.348Z", + "completed":"2016-08-23T09:11:36.348Z", + "new_balance":"15779.11", + "value":"-45.63" + } + }, + { + "id":"358cea47-d950-46a5-9f17-181d6fe35234", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T21:05:21.697Z", + "completed":"2016-08-23T21:05:21.697Z", + "new_balance":"15735.32", + "value":"-43.79" + } + }, + { + "id":"510e325f-8c44-4a7f-9daa-4c5323126908", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T05:31:54.933Z", + "completed":"2016-08-28T05:31:54.933Z", + "new_balance":"15709.76", + "value":"-25.56" + } + }, + { + "id":"6ca6e0d5-61be-4dcd-829b-6e26b306874e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T17:14:10.802Z", + "completed":"2016-08-28T17:14:10.802Z", + "new_balance":"15676.23", + "value":"-33.53" + } + }, + { + "id":"e6e96208-a3bb-46bc-b394-513ed03547ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T14:01:32.086Z", + "completed":"2016-09-01T14:01:32.086Z", + "new_balance":"15646.35", + "value":"-29.88" + } + }, + { + "id":"e852f8a1-6f21-429d-877a-42152b5ceed7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T15:03:44.167Z", + "completed":"2016-09-01T15:03:44.167Z", + "new_balance":"15135.81", + "value":"-510.54" + } + }, + { + "id":"d9820003-2eef-4190-8341-d0f41905337f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T15:25:10.827Z", + "completed":"2016-09-01T15:25:10.827Z", + "new_balance":"16816.22", + "value":"1680.41" + } + }, + { + "id":"7ea476b5-deba-4ebc-816d-47cada7698e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T16:12:45.897Z", + "completed":"2016-09-01T16:12:45.897Z", + "new_balance":"16763.04", + "value":"-53.18" + } + }, + { + "id":"8b7153a7-54e5-4cf4-a5c5-f612768b251f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T20:29:49.226Z", + "completed":"2016-09-01T20:29:49.226Z", + "new_balance":"16628.56", + "value":"-134.48" + } + }, + { + "id":"a1b0abf4-6442-4848-a650-41b08ba25554", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T23:13:12.017Z", + "completed":"2016-09-01T23:13:12.017Z", + "new_balance":"16594.13", + "value":"-34.43" + } + }, + { + "id":"6f678f2c-4526-4818-8ed1-1f3975a6bf11", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T10:53:29.636Z", + "completed":"2016-09-02T10:53:29.636Z", + "new_balance":"16507.57", + "value":"-86.56" + } + }, + { + "id":"05dac8d1-fd02-4c36-806e-a119ca3d5f63", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T09:51:25.257Z", + "completed":"2016-09-04T09:51:25.257Z", + "new_balance":"16501.10", + "value":"-6.47" + } + }, + { + "id":"c17a91bb-5bf5-4174-ac7e-3368f9c373d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T15:57:39.607Z", + "completed":"2016-09-04T15:57:39.607Z", + "new_balance":"16419.89", + "value":"-81.21" + } + }, + { + "id":"69a138c5-19fc-4239-9376-0de41869f789", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T21:14:33.988Z", + "completed":"2016-09-04T21:14:33.988Z", + "new_balance":"16409.36", + "value":"-10.53" + } + }, + { + "id":"911caf71-f272-4a3f-94d3-493722c7dff3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T22:07:22.718Z", + "completed":"2016-09-04T22:07:22.718Z", + "new_balance":"16378.55", + "value":"-30.81" + } + }, + { + "id":"dc9f2e0f-a1e7-474e-84d4-5f88b397806a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T01:26:03.504Z", + "completed":"2016-09-05T01:26:03.504Z", + "new_balance":"16373.78", + "value":"-4.77" + } + }, + { + "id":"65d5dbe5-6cce-474c-b7fe-6a674dd60efd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T01:38:48.820Z", + "completed":"2016-09-05T01:38:48.820Z", + "new_balance":"16332.55", + "value":"-41.23" + } + }, + { + "id":"cbbc1a2d-b2cb-4056-bf38-ef2ecdff08b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T00:09:36.789Z", + "completed":"2016-09-06T00:09:36.789Z", + "new_balance":"16251.34", + "value":"-81.21" + } + }, + { + "id":"adac961d-4a4a-47b4-a696-1295c00d6f9f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T15:50:21.911Z", + "completed":"2016-09-06T15:50:21.911Z", + "new_balance":"16167.54", + "value":"-83.80" + } + }, + { + "id":"6c1ee969-e30a-4db8-8d20-e2d65bb32157", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T01:09:49.552Z", + "completed":"2016-09-08T01:09:49.552Z", + "new_balance":"16125.20", + "value":"-42.34" + } + }, + { + "id":"51351137-f215-405c-8914-83299f09fd06", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T07:16:09.061Z", + "completed":"2016-09-08T07:16:09.061Z", + "new_balance":"16041.40", + "value":"-83.80" + } + }, + { + "id":"cfb913b6-716e-49ba-be0b-12d1703f2b44", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T03:11:05.816Z", + "completed":"2016-09-10T03:11:05.816Z", + "new_balance":"15949.93", + "value":"-91.47" + } + }, + { + "id":"1f26df41-46c2-4a38-ad8b-f5a18350fd76", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T11:35:18.192Z", + "completed":"2016-09-10T11:35:18.192Z", + "new_balance":"15946.35", + "value":"-3.58" + } + }, + { + "id":"7aca13ac-7e64-4ca4-972e-372cec90e2aa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T22:22:03.659Z", + "completed":"2016-09-11T22:22:03.659Z", + "new_balance":"15939.07", + "value":"-7.28" + } + }, + { + "id":"5c315a88-0084-4d90-b025-fa4b304646c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T04:03:06.352Z", + "completed":"2016-09-12T04:03:06.352Z", + "new_balance":"15911.77", + "value":"-27.30" + } + }, + { + "id":"61f58d2b-846a-4265-9a01-2bf0fab42201", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T21:00:07.334Z", + "completed":"2016-09-12T21:00:07.334Z", + "new_balance":"15898.53", + "value":"-13.24" + } + }, + { + "id":"973849d6-1749-424b-813f-0343e1323ae1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T18:08:29.052Z", + "completed":"2016-09-13T18:08:29.052Z", + "new_balance":"15852.52", + "value":"-46.01" + } + }, + { + "id":"348a617c-5e66-4f99-96cd-e133fe19c0a6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T10:01:53.714Z", + "completed":"2016-09-16T10:01:53.714Z", + "new_balance":"15845.53", + "value":"-6.99" + } + }, + { + "id":"a5457cc5-ef67-4ecb-8b78-7ce1ae033077", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T01:25:11.042Z", + "completed":"2016-09-17T01:25:11.042Z", + "new_balance":"15764.12", + "value":"-81.41" + } + }, + { + "id":"42dcebf5-6664-47d9-bf36-8836f994d1d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T08:04:33.606Z", + "completed":"2016-09-17T08:04:33.606Z", + "new_balance":"15717.32", + "value":"-46.80" + } + }, + { + "id":"a926b1c3-b544-4d5f-8b26-395b0a5c45b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T14:09:22.710Z", + "completed":"2016-09-18T14:09:22.710Z", + "new_balance":"15710.33", + "value":"-6.99" + } + }, + { + "id":"4432efb3-b8d6-4164-b2b5-89a24a6ea2e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T09:18:38.235Z", + "completed":"2016-09-19T09:18:38.235Z", + "new_balance":"15673.38", + "value":"-36.95" + } + }, + { + "id":"a005653d-6fb1-4c1c-99ca-56bfc34bcf5b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T23:07:15.493Z", + "completed":"2016-09-19T23:07:15.493Z", + "new_balance":"15622.37", + "value":"-51.01" + } + }, + { + "id":"987d76db-11e0-4b57-a059-a33bddb8f8d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T23:50:14.202Z", + "completed":"2016-09-19T23:50:14.202Z", + "new_balance":"15588.46", + "value":"-33.91" + } + }, + { + "id":"39d84c2d-5d3c-4c9c-a686-b6a7c438bef1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T06:45:01.995Z", + "completed":"2016-09-20T06:45:01.995Z", + "new_balance":"15529.56", + "value":"-58.90" + } + }, + { + "id":"ec2a4939-df97-42a5-8608-cb48e9c2b0b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T23:28:53.976Z", + "completed":"2016-09-20T23:28:53.976Z", + "new_balance":"15456.05", + "value":"-73.51" + } + }, + { + "id":"be99d48e-f13b-460b-ab34-38c3a28e1830", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T07:21:53.224Z", + "completed":"2016-09-21T07:21:53.224Z", + "new_balance":"15450.17", + "value":"-5.88" + } + }, + { + "id":"41713eb5-745e-49d8-bca1-201a897aab2f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T11:59:19.187Z", + "completed":"2016-09-21T11:59:19.187Z", + "new_balance":"15443.70", + "value":"-6.47" + } + }, + { + "id":"8847f91a-e20c-4dc3-9bc5-d9c6f28c4b65", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T03:32:51.199Z", + "completed":"2016-09-23T03:32:51.199Z", + "new_balance":"15398.19", + "value":"-45.51" + } + }, + { + "id":"9cb666f3-a5e9-4912-b502-44c1195832ef", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T19:17:16.754Z", + "completed":"2016-09-23T19:17:16.754Z", + "new_balance":"15386.96", + "value":"-11.23" + } + }, + { + "id":"5cf89b15-0b06-4d30-9250-d3d4150e620e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T12:00:56.918Z", + "completed":"2016-09-24T12:00:56.918Z", + "new_balance":"15358.10", + "value":"-28.86" + } + }, + { + "id":"4232fd3c-beed-4b25-950a-fc0855033894", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T00:30:50.843Z", + "completed":"2016-09-25T00:30:50.843Z", + "new_balance":"15324.07", + "value":"-34.03" + } + }, + { + "id":"3a4f7775-3169-4114-ba08-a5c9514bebbf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T22:10:34.580Z", + "completed":"2016-09-25T22:10:34.580Z", + "new_balance":"15307.99", + "value":"-16.08" + } + }, + { + "id":"a1c32ba7-bd0f-41b5-93ee-dbcc5fc7e771", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:50:29.236Z", + "completed":"2016-09-27T15:50:29.236Z", + "new_balance":"15118.72", + "value":"-189.27" + } + }, + { + "id":"13f98410-a72b-4c05-832d-a48921c6eba9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T09:47:50.575Z", + "completed":"2016-09-29T09:47:50.575Z", + "new_balance":"15091.75", + "value":"-26.97" + } + }, + { + "id":"9cf8012d-3043-4418-804d-7134d5b11f52", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:30:48.725Z", + "completed":"2016-10-01T05:30:48.725Z", + "new_balance":"14957.27", + "value":"-134.48" + } + }, + { + "id":"31dea651-e387-4177-af7d-a3875d03b78a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T09:12:38.206Z", + "completed":"2016-10-01T09:12:38.206Z", + "new_balance":"14446.73", + "value":"-510.54" + } + }, + { + "id":"54e9485f-5420-4cb4-9214-38682344d057", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T09:48:43.554Z", + "completed":"2016-10-01T09:48:43.554Z", + "new_balance":"14416.85", + "value":"-29.88" + } + }, + { + "id":"7efbd0a3-e9c7-4460-9fc5-85a928db1352", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:17:56.180Z", + "completed":"2016-10-01T23:17:56.180Z", + "new_balance":"14363.67", + "value":"-53.18" + } + }, + { + "id":"7a741812-61b9-4a84-a7b3-841df382b2dc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T19:55:22.552Z", + "completed":"2016-10-02T19:55:22.552Z", + "new_balance":"14291.68", + "value":"-71.99" + } + }, + { + "id":"b2b0a514-49b4-4668-a5ce-07964847c44d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T20:21:49.962Z", + "completed":"2016-10-02T20:21:49.962Z", + "new_balance":"14205.12", + "value":"-86.56" + } + }, + { + "id":"cd5a2922-a437-4a84-aecc-019862e5275d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T06:52:40.158Z", + "completed":"2016-10-03T06:52:40.158Z", + "new_balance":"14170.34", + "value":"-34.78" + } + }, + { + "id":"011f2f59-d8c2-466c-a5aa-7f07fda27118", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:51:04.703Z", + "completed":"2016-10-03T07:51:04.703Z", + "new_balance":"13981.07", + "value":"-189.27" + } + }, + { + "id":"22f206ea-4aad-4978-a896-5521861eaf0c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T12:20:21.929Z", + "completed":"2016-10-03T12:20:21.929Z", + "new_balance":"13943.88", + "value":"-37.19" + } + }, + { + "id":"157692cf-dbfc-4b24-bacb-c2b7d4841c5e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T22:05:24.116Z", + "completed":"2016-10-03T22:05:24.116Z", + "new_balance":"13212.03", + "value":"-731.85" + } + }, + { + "id":"8c24852c-a0fd-4bd4-826d-43724cfe026d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T23:37:00.415Z", + "completed":"2016-10-03T23:37:00.415Z", + "new_balance":"13048.55", + "value":"-163.48" + } + }, + { + "id":"14cfe760-df96-4d08-81b2-bc8a60d0144b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T13:36:39.270Z", + "completed":"2016-10-04T13:36:39.270Z", + "new_balance":"12974.62", + "value":"-73.93" + } + }, + { + "id":"102e5154-cab2-4d15-8e6f-1c83d57cbfa8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T07:03:45.335Z", + "completed":"2016-10-05T07:03:45.335Z", + "new_balance":"12947.17", + "value":"-27.45" + } + }, + { + "id":"1bfecf00-bc60-4b00-b09f-d1722115f444", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T08:00:46.029Z", + "completed":"2016-10-05T08:00:46.029Z", + "new_balance":"12943.58", + "value":"-3.59" + } + }, + { + "id":"4e2f4afb-0ad9-4175-bbfe-5ec162a6eaf6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T07:04:56.282Z", + "completed":"2016-10-07T07:04:56.282Z", + "new_balance":"12912.29", + "value":"-31.29" + } + }, + { + "id":"f82be953-7088-4316-8c39-08255bd9b04b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T09:38:18.208Z", + "completed":"2016-10-07T09:38:18.208Z", + "new_balance":"12897.47", + "value":"-14.82" + } + }, + { + "id":"cb5d3d30-7bbf-4c93-a511-dc26ecc93ecb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T02:00:48.160Z", + "completed":"2016-10-08T02:00:48.160Z", + "new_balance":"12890.31", + "value":"-7.16" + } + }, + { + "id":"fb80083a-0b86-4ff9-a26a-ebb9ad68a974", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T00:11:59.898Z", + "completed":"2016-10-09T00:11:59.898Z", + "new_balance":"12868.06", + "value":"-22.25" + } + }, + { + "id":"6f331ed4-8fde-4776-aa69-c1efb43b6055", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T08:42:30.437Z", + "completed":"2016-10-09T08:42:30.437Z", + "new_balance":"12678.79", + "value":"-189.27" + } + }, + { + "id":"386d438d-7859-4fd7-a3a7-5491879e86a5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T18:57:49.801Z", + "completed":"2016-10-09T18:57:49.801Z", + "new_balance":"12672.08", + "value":"-6.71" + } + }, + { + "id":"719f47fa-7cf9-440c-91a5-db591c7219a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T00:51:30.924Z", + "completed":"2016-10-10T00:51:30.924Z", + "new_balance":"12626.84", + "value":"-45.24" + } + }, + { + "id":"fbbf3285-4079-480b-bd28-019100a4b979", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T05:28:45.097Z", + "completed":"2016-10-17T05:28:45.097Z", + "new_balance":"12617.14", + "value":"-9.70" + } + }, + { + "id":"4db2129b-04d5-4061-8eca-1cdcecbf93d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T11:35:34.895Z", + "completed":"2016-10-18T11:35:34.895Z", + "new_balance":"12584.86", + "value":"-32.28" + } + }, + { + "id":"15e422c2-98c1-4c6a-ba64-e309265c97ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T16:51:42.872Z", + "completed":"2016-10-25T16:51:42.872Z", + "new_balance":"12542.34", + "value":"-42.52" + } + }, + { + "id":"bfe1c746-5361-4527-b313-da62ed065046", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:10:45.122Z", + "completed":"2016-10-26T09:10:45.122Z", + "new_balance":"12535.63", + "value":"-6.71" + } + }, + { + "id":"4d2972b0-ccb4-4c8c-a985-1dfb1174d194", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T12:02:26.925Z", + "completed":"2016-10-26T12:02:26.925Z", + "new_balance":"12472.06", + "value":"-63.57" + } + }, + { + "id":"9e3afe94-62e7-4fbb-a08e-7eca64fbcdd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T04:07:30.514Z", + "completed":"2016-11-02T04:07:30.514Z", + "new_balance":"12337.58", + "value":"-134.48" + } + }, + { + "id":"55e6808c-8f56-4232-84c3-6387365147ef", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T05:22:20.493Z", + "completed":"2016-11-02T05:22:20.493Z", + "new_balance":"12321.65", + "value":"-15.93" + } + }, + { + "id":"48039e88-2b08-4872-9a3f-d145b7f2e82b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T05:34:31.341Z", + "completed":"2016-11-02T05:34:31.341Z", + "new_balance":"11811.11", + "value":"-510.54" + } + }, + { + "id":"476a1816-fd80-4b1b-9a2a-22a3c0487920", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:07:32.990Z", + "completed":"2016-11-02T12:07:32.990Z", + "new_balance":"11757.93", + "value":"-53.18" + } + }, + { + "id":"49873f90-5a5b-4185-9478-f673a3ee7eca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T14:54:29.527Z", + "completed":"2016-11-02T14:54:29.527Z", + "new_balance":"11728.05", + "value":"-29.88" + } + }, + { + "id":"ac8d2f18-43ac-4aaf-a21c-e5ac5476b6c3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T16:46:22.842Z", + "completed":"2016-11-02T16:46:22.842Z", + "new_balance":"11641.49", + "value":"-86.56" + } + }, + { + "id":"146b343f-2611-4939-b687-1ac91036c47a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T17:57:18.465Z", + "completed":"2016-11-02T17:57:18.465Z", + "new_balance":"13321.90", + "value":"1680.41" + } + }, + { + "id":"8d896674-de2e-43fb-9f85-95ea222ca913", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T23:49:24.976Z", + "completed":"2016-11-02T23:49:24.976Z", + "new_balance":"13287.47", + "value":"-34.43" + } + }, + { + "id":"4143deaf-3001-488e-b6a6-3eb4c9120a87", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T08:03:19.678Z", + "completed":"2016-11-06T08:03:19.678Z", + "new_balance":"13272.83", + "value":"-14.64" + } + }, + { + "id":"efac94cf-3cda-40bb-abee-2f2bd686f7e2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T04:32:50.905Z", + "completed":"2016-11-07T04:32:50.905Z", + "new_balance":"13249.46", + "value":"-23.37" + } + }, + { + "id":"6367c782-de62-4d9f-bf67-5edadcc485db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T06:48:11.823Z", + "completed":"2016-11-07T06:48:11.823Z", + "new_balance":"13221.45", + "value":"-28.01" + } + }, + { + "id":"eb5f0bce-fd98-4d51-90cb-d1d1d5081079", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T10:31:24.692Z", + "completed":"2016-11-07T10:31:24.692Z", + "new_balance":"13195.65", + "value":"-25.80" + } + }, + { + "id":"582a8fa1-d8ee-4df2-94eb-0146612be589", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T09:40:46.821Z", + "completed":"2016-11-09T09:40:46.821Z", + "new_balance":"13121.72", + "value":"-73.93" + } + }, + { + "id":"bd2cbcf0-2827-4db2-9f8c-2e980d1385fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T11:02:12.373Z", + "completed":"2016-11-09T11:02:12.373Z", + "new_balance":"13117.63", + "value":"-4.09" + } + }, + { + "id":"0a4bb2b0-4bec-4eb6-84db-2522d42ff368", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T07:54:19.536Z", + "completed":"2016-11-12T07:54:19.536Z", + "new_balance":"13089.78", + "value":"-27.85" + } + }, + { + "id":"4a4570ba-2e98-4fba-96ff-c394d4e1446d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T23:47:59.652Z", + "completed":"2016-11-12T23:47:59.652Z", + "new_balance":"13068.68", + "value":"-21.10" + } + }, + { + "id":"f2122f0d-a37a-4d34-8434-0825319ff6e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T02:40:34.324Z", + "completed":"2016-11-14T02:40:34.324Z", + "new_balance":"13019.98", + "value":"-48.70" + } + }, + { + "id":"43257bea-bb4f-488e-9f9b-e51e5f5d5840", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T06:21:42.528Z", + "completed":"2016-11-14T06:21:42.528Z", + "new_balance":"12974.81", + "value":"-45.17" + } + }, + { + "id":"d726c00e-075c-4028-aeb7-b2fe686dd664", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T20:59:59.295Z", + "completed":"2016-11-16T20:59:59.295Z", + "new_balance":"12969.04", + "value":"-5.77" + } + }, + { + "id":"93f29459-584a-4ef6-8ba0-e24ff04a9c0f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T19:19:11.552Z", + "completed":"2016-11-18T19:19:11.552Z", + "new_balance":"12960.52", + "value":"-8.52" + } + }, + { + "id":"816e1c7d-48df-4742-8927-2a076beb0711", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T00:55:35.960Z", + "completed":"2016-11-20T00:55:35.960Z", + "new_balance":"12999.53", + "value":"39.01" + } + }, + { + "id":"2e765361-d648-4e17-9a0a-33278e6c2413", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T03:58:56.638Z", + "completed":"2016-11-21T03:58:56.638Z", + "new_balance":"12955.74", + "value":"-43.79" + } + }, + { + "id":"7936a624-4518-440d-a423-adfb5c7db31f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T04:27:50.436Z", + "completed":"2016-11-21T04:27:50.436Z", + "new_balance":"12910.11", + "value":"-45.63" + } + }, + { + "id":"fb243e37-5e7b-404e-8629-0e82ea92a0b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T05:01:38.009Z", + "completed":"2016-11-27T05:01:38.009Z", + "new_balance":"12876.58", + "value":"-33.53" + } + }, + { + "id":"24334e08-40c5-4d34-80d2-80ea7288656d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T18:28:18.473Z", + "completed":"2016-11-27T18:28:18.473Z", + "new_balance":"12851.02", + "value":"-25.56" + } + }, + { + "id":"194876c9-84c2-4f9a-a01d-40e6e756cdca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T00:08:33.001Z", + "completed":"2016-12-01T00:08:33.001Z", + "new_balance":"12816.59", + "value":"-34.43" + } + }, + { + "id":"584602bc-b77c-4f12-9e57-bf8899d18229", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T03:59:44.037Z", + "completed":"2016-12-01T03:59:44.037Z", + "new_balance":"12763.41", + "value":"-53.18" + } + }, + { + "id":"54e81da9-ae82-4d0f-813b-2123127b29ac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T04:57:31.032Z", + "completed":"2016-12-01T04:57:31.032Z", + "new_balance":"12252.87", + "value":"-510.54" + } + }, + { + "id":"d4ea80a9-5152-4686-a409-fbb26cb3b54f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T15:34:00.642Z", + "completed":"2016-12-01T15:34:00.642Z", + "new_balance":"13933.28", + "value":"1680.41" + } + }, + { + "id":"41b486aa-5e7b-422f-955d-d2ee27edcdf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T18:05:45.480Z", + "completed":"2016-12-01T18:05:45.480Z", + "new_balance":"13903.40", + "value":"-29.88" + } + }, + { + "id":"93291bc4-74c1-450a-a02e-5cfa52fe62d1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:32:51.713Z", + "completed":"2016-12-01T22:32:51.713Z", + "new_balance":"13768.92", + "value":"-134.48" + } + }, + { + "id":"a077e7a4-9440-434c-a270-668a54d5cbba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T02:13:57.846Z", + "completed":"2016-12-04T02:13:57.846Z", + "new_balance":"13682.36", + "value":"-86.56" + } + }, + { + "id":"78f8bca0-c725-480b-8a4d-5fee04d248da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T10:30:18.803Z", + "completed":"2016-12-04T10:30:18.803Z", + "new_balance":"13550.52", + "value":"-131.84" + } + }, + { + "id":"79fdb778-b399-4d6d-879b-8ab1b5b7fd07", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T01:59:24.374Z", + "completed":"2016-12-12T01:59:24.374Z", + "new_balance":"13519.71", + "value":"-30.81" + } + }, + { + "id":"979b3a62-278a-471d-83d5-5e295dd81cdf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T13:03:57.847Z", + "completed":"2016-12-12T13:03:57.847Z", + "new_balance":"13509.18", + "value":"-10.53" + } + }, + { + "id":"b9aebc75-b75e-47b4-a73a-c06a32e6f5bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T00:04:11.081Z", + "completed":"2016-12-13T00:04:11.081Z", + "new_balance":"13502.71", + "value":"-6.47" + } + }, + { + "id":"3be1514b-c24f-439e-b2e9-546fe86f0983", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T13:43:45.813Z", + "completed":"2016-12-13T13:43:45.813Z", + "new_balance":"13421.50", + "value":"-81.21" + } + }, + { + "id":"0157ea2a-c041-4159-866d-1a216f61db03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T09:27:49.425Z", + "completed":"2016-12-16T09:27:49.425Z", + "new_balance":"13380.27", + "value":"-41.23" + } + }, + { + "id":"db4fd7f6-225a-4531-a026-a20fd58ee208", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T01:43:04.870Z", + "completed":"2016-12-18T01:43:04.870Z", + "new_balance":"13375.50", + "value":"-4.77" + } + }, + { + "id":"74cc51d2-09d3-4211-90d4-8b4f3bb03213", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T11:33:52.441Z", + "completed":"2016-12-19T11:33:52.441Z", + "new_balance":"13294.29", + "value":"-81.21" + } + }, + { + "id":"7aa0f784-8344-4ba0-9bd5-b6f251e9ddbd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:50:08.058Z", + "completed":"2016-12-19T15:50:08.058Z", + "new_balance":"13210.49", + "value":"-83.80" + } + }, + { + "id":"42e87f54-ce14-45f0-8ce7-5ac52f66502b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T15:07:54.964Z", + "completed":"2016-12-20T15:07:54.964Z", + "new_balance":"13168.15", + "value":"-42.34" + } + }, + { + "id":"9dea220c-178a-42b8-a1a6-570d7a3799e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T19:03:34.864Z", + "completed":"2016-12-21T19:03:34.864Z", + "new_balance":"13084.35", + "value":"-83.80" + } + }, + { + "id":"272bbcbf-a6ef-405e-9e6c-ba9c18b8ccfd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T01:38:50.065Z", + "completed":"2016-12-24T01:38:50.065Z", + "new_balance":"13057.05", + "value":"-27.30" + } + }, + { + "id":"b1ab4588-4922-4bd0-ba07-cd9fb9304f27", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T03:36:14.792Z", + "completed":"2016-12-24T03:36:14.792Z", + "new_balance":"13011.04", + "value":"-46.01" + } + }, + { + "id":"9400479a-59f2-4407-9566-35f5554da3cf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T05:10:00.968Z", + "completed":"2016-12-24T05:10:00.968Z", + "new_balance":"13007.46", + "value":"-3.58" + } + }, + { + "id":"e1324536-43a1-4bf7-8281-a167311e6e07", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T06:47:03.462Z", + "completed":"2016-12-24T06:47:03.462Z", + "new_balance":"12915.99", + "value":"-91.47" + } + }, + { + "id":"2d41d72e-4eb2-4abf-87c5-135ac4c74586", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:54:39.502Z", + "completed":"2016-12-24T09:54:39.502Z", + "new_balance":"12908.71", + "value":"-7.28" + } + }, + { + "id":"b7a96838-151a-4983-bfa6-ec8815a92c43", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T10:09:14.178Z", + "completed":"2016-12-24T10:09:14.178Z", + "new_balance":"12895.47", + "value":"-13.24" + } + }, + { + "id":"29e026ca-cb1f-4127-90ff-d1b6391107e3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T06:14:26.476Z", + "completed":"2016-12-28T06:14:26.476Z", + "new_balance":"12814.06", + "value":"-81.41" + } + }, + { + "id":"7b60fd72-2867-4a08-8fc7-eeb09f29646a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T15:33:39.846Z", + "completed":"2016-12-28T15:33:39.846Z", + "new_balance":"12807.07", + "value":"-6.99" + } + }, + { + "id":"b9bbe4fa-5ec1-4ca0-9fe0-e2d1f2339da3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T20:03:56.659Z", + "completed":"2016-12-28T20:03:56.659Z", + "new_balance":"12800.08", + "value":"-6.99" + } + }, + { + "id":"af54ac8f-5e54-48ab-9e82-313b42704f36", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T20:36:16.822Z", + "completed":"2016-12-28T20:36:16.822Z", + "new_balance":"12753.28", + "value":"-46.80" + } + }, + { + "id":"1221294d-d29b-4629-9973-2e9086163efd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T03:14:04.291Z", + "completed":"2016-12-29T03:14:04.291Z", + "new_balance":"12716.33", + "value":"-36.95" + } + }, + { + "id":"8a873f5c-0188-4966-86c4-df60ee6c0a4f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T05:26:05.900Z", + "completed":"2016-12-29T05:26:05.900Z", + "new_balance":"12657.43", + "value":"-58.90" + } + }, + { + "id":"d75fc297-f966-4ad4-8189-e7432ab9e113", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T11:01:23.911Z", + "completed":"2016-12-29T11:01:23.911Z", + "new_balance":"12650.96", + "value":"-6.47" + } + }, + { + "id":"c5a16263-a0a1-4e3a-bd31-599ae553c566", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T11:51:01.915Z", + "completed":"2016-12-29T11:51:01.915Z", + "new_balance":"12599.95", + "value":"-51.01" + } + }, + { + "id":"4ba19ec5-d228-4367-8324-13c3b88eb708", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T15:07:12.744Z", + "completed":"2016-12-29T15:07:12.744Z", + "new_balance":"12566.04", + "value":"-33.91" + } + }, + { + "id":"d6691a3f-5f85-44b7-898f-01bad98a5b7a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T22:37:44.145Z", + "completed":"2016-12-29T22:37:44.145Z", + "new_balance":"12492.53", + "value":"-73.51" + } + }, + { + "id":"ef42a493-4157-4954-9642-811b144c5cbe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T12:49:28.484Z", + "completed":"2016-12-30T12:49:28.484Z", + "new_balance":"12463.67", + "value":"-28.86" + } + }, + { + "id":"4ab88603-b0de-43a4-8524-956ea648af8f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T13:23:03.557Z", + "completed":"2016-12-30T13:23:03.557Z", + "new_balance":"12452.44", + "value":"-11.23" + } + }, + { + "id":"6f3e1b61-381e-499c-843a-f900d4d4f3fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T19:52:48.818Z", + "completed":"2016-12-30T19:52:48.818Z", + "new_balance":"12406.93", + "value":"-45.51" + } + }, + { + "id":"c919ecc3-5f26-46c2-bd6e-ea8cf669b035", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T23:50:27.704Z", + "completed":"2016-12-30T23:50:27.704Z", + "new_balance":"12401.05", + "value":"-5.88" + } + }, + { + "id":"5c10f768-9a46-42fd-b4b8-e74660c068bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T02:04:56.472Z", + "completed":"2016-12-31T02:04:56.472Z", + "new_balance":"12367.02", + "value":"-34.03" + } + }, + { + "id":"2046f515-d63d-4add-abad-4e5844c16881", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T04:53:57.293Z", + "completed":"2016-12-31T04:53:57.293Z", + "new_balance":"12340.05", + "value":"-26.97" + } + }, + { + "id":"ab65b8f0-5569-48f0-b2d6-b21b0b73a58b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T10:00:54.109Z", + "completed":"2016-12-31T10:00:54.109Z", + "new_balance":"12323.97", + "value":"-16.08" + } + }, + { + "id":"6ba39894-29f4-4526-a2ab-9fbfc484712f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T10:55:15.670Z", + "completed":"2016-12-31T10:55:15.670Z", + "new_balance":"12134.70", + "value":"-189.27" + } + }, + { + "id":"8ea1abb7-1c00-4e02-aa0f-561c4b8d0e24", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T00:02:09.402Z", + "completed":"2017-01-01T00:02:09.402Z", + "new_balance":"12100.27", + "value":"-34.43" + } + }, + { + "id":"e93769e3-8e8b-4f85-9f67-291d1f0a1559", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T02:02:57.921Z", + "completed":"2017-01-01T02:02:57.921Z", + "new_balance":"12070.39", + "value":"-29.88" + } + }, + { + "id":"29cfc5ba-2a8a-4ba7-8a29-ebacc91a61fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T03:20:38.268Z", + "completed":"2017-01-01T03:20:38.268Z", + "new_balance":"12035.96", + "value":"-34.43" + } + }, + { + "id":"ce3c1400-dcd8-42a3-a32a-6746ae6a3146", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T04:29:36.795Z", + "completed":"2017-01-01T04:29:36.795Z", + "new_balance":"11525.42", + "value":"-510.54" + } + }, + { + "id":"82d19cda-e2a4-4c33-9dcf-a77b318a9109", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T14:18:48.755Z", + "completed":"2017-01-01T14:18:48.755Z", + "new_balance":"11390.94", + "value":"-134.48" + } + }, + { + "id":"4365b59c-8f99-41cc-a46e-b12666e4890d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T18:26:03.713Z", + "completed":"2017-01-01T18:26:03.713Z", + "new_balance":"11337.76", + "value":"-53.18" + } + }, + { + "id":"a8cd8521-ac52-4e8d-9741-ad6acdebe874", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T00:29:13.732Z", + "completed":"2017-01-02T00:29:13.732Z", + "new_balance":"11251.20", + "value":"-86.56" + } + }, + { + "id":"b549e002-bd91-49fb-b2c1-47cddd39b25c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T05:28:56.775Z", + "completed":"2017-01-02T05:28:56.775Z", + "new_balance":"11179.21", + "value":"-71.99" + } + }, + { + "id":"6f8b4e15-6d65-4a50-9bae-7808804c6a38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T13:33:04.221Z", + "completed":"2017-01-04T13:33:04.221Z", + "new_balance":"11142.02", + "value":"-37.19" + } + }, + { + "id":"cb3d607f-cb83-4935-8ca7-d8e2b7b84d50", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T18:34:37.602Z", + "completed":"2017-01-04T18:34:37.602Z", + "new_balance":"11107.24", + "value":"-34.78" + } + }, + { + "id":"2084220a-9e1f-4552-bdee-cb00194b23f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:01:30.744Z", + "completed":"2017-01-07T02:01:30.744Z", + "new_balance":"11033.31", + "value":"-73.93" + } + }, + { + "id":"edf78a58-df18-4d20-be2d-8a10c27bcb47", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T17:48:45.876Z", + "completed":"2017-01-09T17:48:45.876Z", + "new_balance":"11029.72", + "value":"-3.59" + } + }, + { + "id":"62858a9b-bad7-46a4-8bdf-5df05f846df2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T18:58:47.461Z", + "completed":"2017-01-10T18:58:47.461Z", + "new_balance":"11002.27", + "value":"-27.45" + } + }, + { + "id":"2ed5deb4-0bf3-410f-a1f9-ed7087353994", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T20:28:25.175Z", + "completed":"2017-01-12T20:28:25.175Z", + "new_balance":"10970.98", + "value":"-31.29" + } + }, + { + "id":"636efcdc-505a-4754-823b-39306cdda401", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T01:11:11.785Z", + "completed":"2017-01-15T01:11:11.785Z", + "new_balance":"10956.16", + "value":"-14.82" + } + }, + { + "id":"e238123c-e2b2-4537-96f8-c8bc38e73f3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T21:06:07.970Z", + "completed":"2017-01-15T21:06:07.970Z", + "new_balance":"10949.00", + "value":"-7.16" + } + }, + { + "id":"badd337a-2cd2-4a91-80f3-67cfa7b239b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T01:52:57.933Z", + "completed":"2017-01-17T01:52:57.933Z", + "new_balance":"10926.75", + "value":"-22.25" + } + }, + { + "id":"d0c7e8e5-2911-4818-94ca-8cb8c3519965", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T14:33:30.619Z", + "completed":"2017-01-19T14:33:30.619Z", + "new_balance":"10737.48", + "value":"-189.27" + } + }, + { + "id":"87d8f3aa-b495-4f74-adaa-b545fa0efe14", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T04:57:53.464Z", + "completed":"2017-01-20T04:57:53.464Z", + "new_balance":"10730.77", + "value":"-6.71" + } + }, + { + "id":"9b6ef48a-fc38-449b-a3da-5d6ebda6ddb8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T07:34:26.461Z", + "completed":"2017-01-22T07:34:26.461Z", + "new_balance":"10721.07", + "value":"-9.70" + } + }, + { + "id":"18ada6df-44fc-40c0-bc57-47d50ac1fecb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T19:16:44.849Z", + "completed":"2017-01-22T19:16:44.849Z", + "new_balance":"10675.83", + "value":"-45.24" + } + }, + { + "id":"e9c56a78-ddba-4944-8228-de4d1f3acd03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T13:27:14.920Z", + "completed":"2017-01-24T13:27:14.920Z", + "new_balance":"10643.55", + "value":"-32.28" + } + }, + { + "id":"4dbb395f-6c19-4e45-96da-aa11b31d9cf2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T03:18:46.372Z", + "completed":"2017-01-25T03:18:46.372Z", + "new_balance":"10601.03", + "value":"-42.52" + } + }, + { + "id":"59bc2867-afa7-42bd-8cad-6fb42c562b05", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T11:02:57.907Z", + "completed":"2017-01-25T11:02:57.907Z", + "new_balance":"10594.32", + "value":"-6.71" + } + }, + { + "id":"e812eab4-c191-47d8-be30-ab2aa5eea3a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T08:24:07.421Z", + "completed":"2017-01-26T08:24:07.421Z", + "new_balance":"10530.75", + "value":"-63.57" + } + }, + { + "id":"213944ee-99ea-4ca5-9cb6-fe1e57a72188", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T00:20:04.560Z", + "completed":"2017-02-01T00:20:04.560Z", + "new_balance":"10020.21", + "value":"-510.54" + } + }, + { + "id":"b7ef273e-a1ba-42d1-8c66-554abc094e77", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T01:13:54.151Z", + "completed":"2017-02-01T01:13:54.151Z", + "new_balance":"9967.03", + "value":"-53.18" + } + }, + { + "id":"e124d1ec-a594-4a2c-884e-ccd47f4e6be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T03:34:55.383Z", + "completed":"2017-02-01T03:34:55.383Z", + "new_balance":"9932.60", + "value":"-34.43" + } + }, + { + "id":"f8440e8c-8d82-408c-bbd5-48536a6017c2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:13:13.507Z", + "completed":"2017-02-01T15:13:13.507Z", + "new_balance":"9902.72", + "value":"-29.88" + } + }, + { + "id":"ecfa2b8a-9326-4dec-91e2-3ecfaa2dcfb5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T17:50:07.537Z", + "completed":"2017-02-01T17:50:07.537Z", + "new_balance":"9768.24", + "value":"-134.48" + } + }, + { + "id":"52c6a7a2-fa0c-416c-b183-7c06a669f0d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T20:51:10.347Z", + "completed":"2017-02-01T20:51:10.347Z", + "new_balance":"11448.65", + "value":"1680.41" + } + }, + { + "id":"60a6f59d-c808-4a8f-91d1-57672be51047", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T12:49:38.203Z", + "completed":"2017-02-02T12:49:38.203Z", + "new_balance":"11434.01", + "value":"-14.64" + } + }, + { + "id":"550b0bee-c179-4233-ae33-cd87394ce9a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T23:07:37.083Z", + "completed":"2017-02-02T23:07:37.083Z", + "new_balance":"11347.45", + "value":"-86.56" + } + }, + { + "id":"6e5cb5ba-9875-4211-97a4-2dfe66ebd444", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T23:28:56.785Z", + "completed":"2017-02-02T23:28:56.785Z", + "new_balance":"11331.52", + "value":"-15.93" + } + }, + { + "id":"160b5048-b460-471b-9d4e-5fd661d72ad7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T07:08:00.943Z", + "completed":"2017-02-03T07:08:00.943Z", + "new_balance":"11303.51", + "value":"-28.01" + } + }, + { + "id":"00d58af1-623e-4edc-b342-f6bfd7ff6140", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T09:18:25.477Z", + "completed":"2017-02-03T09:18:25.477Z", + "new_balance":"11277.71", + "value":"-25.80" + } + }, + { + "id":"77bb37d4-a4f2-446b-9e19-50bb87b37315", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T10:15:07.523Z", + "completed":"2017-02-03T10:15:07.523Z", + "new_balance":"11254.34", + "value":"-23.37" + } + }, + { + "id":"da3066c3-de65-4f40-a91c-b5bf1d598ca4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T15:05:53.761Z", + "completed":"2017-02-06T15:05:53.761Z", + "new_balance":"11180.41", + "value":"-73.93" + } + }, + { + "id":"01cb4dea-f7a7-4c39-8e62-78389e9c7cc5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T05:28:18.951Z", + "completed":"2017-02-08T05:28:18.951Z", + "new_balance":"11176.32", + "value":"-4.09" + } + }, + { + "id":"e1697c2c-4041-4689-b059-afc3e6b1cd22", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T08:25:42.450Z", + "completed":"2017-02-08T08:25:42.450Z", + "new_balance":"11155.22", + "value":"-21.10" + } + }, + { + "id":"c2837f4f-f6a5-4742-ab47-184a0094db34", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T23:48:47.220Z", + "completed":"2017-02-08T23:48:47.220Z", + "new_balance":"11127.37", + "value":"-27.85" + } + }, + { + "id":"2ff58c38-f123-4555-ae59-915a7ce0a37e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T08:47:35.197Z", + "completed":"2017-02-09T08:47:35.197Z", + "new_balance":"11078.67", + "value":"-48.70" + } + }, + { + "id":"2e180541-3000-44e8-919a-9ef03f7d0095", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T18:09:36.175Z", + "completed":"2017-02-09T18:09:36.175Z", + "new_balance":"11033.50", + "value":"-45.17" + } + }, + { + "id":"3390d9d3-09b4-4729-980f-cb453428139d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T21:30:33.675Z", + "completed":"2017-02-12T21:30:33.675Z", + "new_balance":"11027.73", + "value":"-5.77" + } + }, + { + "id":"f9f642c4-b394-490e-8120-95d27268a247", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T01:40:13.469Z", + "completed":"2017-02-13T01:40:13.469Z", + "new_balance":"11066.74", + "value":"39.01" + } + }, + { + "id":"1c1f45c7-4244-42d6-ab4c-831de929e81f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T07:40:27.015Z", + "completed":"2017-02-13T07:40:27.015Z", + "new_balance":"11058.22", + "value":"-8.52" + } + }, + { + "id":"83d26f30-d686-4f83-8e67-fa8795ae051a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T22:35:32.609Z", + "completed":"2017-02-13T22:35:32.609Z", + "new_balance":"11014.43", + "value":"-43.79" + } + }, + { + "id":"a4380f2f-3330-41c6-bb59-e1d7c8db01d5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T00:28:04.954Z", + "completed":"2017-02-14T00:28:04.954Z", + "new_balance":"10968.80", + "value":"-45.63" + } + }, + { + "id":"6c7f5060-4f3b-42f0-b2c7-bc73d6466aba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T09:45:08.863Z", + "completed":"2017-02-15T09:45:08.863Z", + "new_balance":"10943.24", + "value":"-25.56" + } + }, + { + "id":"3a3db262-2821-4eb0-a043-bc922fbe990f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T00:54:45.582Z", + "completed":"2017-02-28T00:54:45.582Z", + "new_balance":"10909.71", + "value":"-33.53" + } + }, + { + "id":"8fa19896-0e0f-4a08-9967-0a9188530ddd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T00:01:30.504Z", + "completed":"2017-03-01T00:01:30.504Z", + "new_balance":"10879.83", + "value":"-29.88" + } + }, + { + "id":"5aa250a5-72f9-4a2d-b11e-3a0cd5ddce21", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T04:36:56.581Z", + "completed":"2017-03-01T04:36:56.581Z", + "new_balance":"10845.40", + "value":"-34.43" + } + }, + { + "id":"06a15b19-c2ab-4b8a-8b85-07cffead6cac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T13:35:00.510Z", + "completed":"2017-03-01T13:35:00.510Z", + "new_balance":"12525.81", + "value":"1680.41" + } + }, + { + "id":"92220ce6-e6c3-4d6a-be45-84bb94c8655b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T15:26:51.847Z", + "completed":"2017-03-01T15:26:51.847Z", + "new_balance":"12472.63", + "value":"-53.18" + } + }, + { + "id":"f84c8355-8b5d-4def-8fe4-84203a9450f0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T18:18:59.770Z", + "completed":"2017-03-01T18:18:59.770Z", + "new_balance":"11962.09", + "value":"-510.54" + } + }, + { + "id":"3db0393a-0b5d-4744-9e93-ae0a4898a3ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T18:35:00.513Z", + "completed":"2017-03-01T18:35:00.513Z", + "new_balance":"11827.61", + "value":"-134.48" + } + }, + { + "id":"892b3c01-20c0-4678-bd2b-d861b986d321", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T07:41:25.352Z", + "completed":"2017-03-02T07:41:25.352Z", + "new_balance":"11741.05", + "value":"-86.56" + } + }, + { + "id":"0d5c3339-583e-456a-9d99-967f81d35f03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T09:20:44.962Z", + "completed":"2017-03-04T09:20:44.962Z", + "new_balance":"11730.52", + "value":"-10.53" + } + }, + { + "id":"e0c0ea03-a54a-4258-a49e-eba29eab7a97", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T10:28:29.183Z", + "completed":"2017-03-04T10:28:29.183Z", + "new_balance":"11724.05", + "value":"-6.47" + } + }, + { + "id":"de29e0dc-4891-42d5-82fa-f1a8853b3404", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T21:06:18.961Z", + "completed":"2017-03-04T21:06:18.961Z", + "new_balance":"11693.24", + "value":"-30.81" + } + }, + { + "id":"4d715f21-2530-4f26-b533-423d2b418fe1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:39:53.834Z", + "completed":"2017-03-04T23:39:53.834Z", + "new_balance":"11612.03", + "value":"-81.21" + } + }, + { + "id":"4cc9089c-5a55-4b7b-a9cc-c94cee9991b1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T12:23:26.248Z", + "completed":"2017-03-05T12:23:26.248Z", + "new_balance":"11570.80", + "value":"-41.23" + } + }, + { + "id":"41d6385a-abfa-4767-880a-faf58474549a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T16:14:41.759Z", + "completed":"2017-03-05T16:14:41.759Z", + "new_balance":"11566.03", + "value":"-4.77" + } + }, + { + "id":"992e4a60-17a9-4621-926d-e0f7997536a6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T06:12:44.209Z", + "completed":"2017-03-06T06:12:44.209Z", + "new_balance":"11482.23", + "value":"-83.80" + } + }, + { + "id":"aa1c815e-e65f-4714-ada9-a1cb7dc397e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T13:43:12.373Z", + "completed":"2017-03-06T13:43:12.373Z", + "new_balance":"11401.02", + "value":"-81.21" + } + }, + { + "id":"c245bb1b-46eb-4105-896f-5673c5dcc637", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T13:56:49.345Z", + "completed":"2017-03-07T13:56:49.345Z", + "new_balance":"11358.68", + "value":"-42.34" + } + }, + { + "id":"05422bb9-2177-43eb-ad68-7cfd4135f96f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T20:41:03.188Z", + "completed":"2017-03-08T20:41:03.188Z", + "new_balance":"11274.88", + "value":"-83.80" + } + }, + { + "id":"5f90e781-913e-4b64-b827-48c11f0cf7f9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T03:42:17.208Z", + "completed":"2017-03-09T03:42:17.208Z", + "new_balance":"11271.30", + "value":"-3.58" + } + }, + { + "id":"d7191cd1-f79b-473c-be30-d8ed9fb1c60d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T11:27:46.894Z", + "completed":"2017-03-10T11:27:46.894Z", + "new_balance":"11179.83", + "value":"-91.47" + } + }, + { + "id":"c0889fa9-63e8-4fe7-bcc8-98bb1c2a3bd5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T01:50:26.820Z", + "completed":"2017-03-11T01:50:26.820Z", + "new_balance":"11172.55", + "value":"-7.28" + } + }, + { + "id":"82b020e6-c918-4dc3-8f43-2ec95c39e592", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T12:32:28.575Z", + "completed":"2017-03-12T12:32:28.575Z", + "new_balance":"11159.31", + "value":"-13.24" + } + }, + { + "id":"1c01866b-43f1-43b9-a7b8-7f61c0a8116a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T18:44:48.923Z", + "completed":"2017-03-12T18:44:48.923Z", + "new_balance":"11132.01", + "value":"-27.30" + } + }, + { + "id":"6a30306d-ad68-4d71-8f2d-f69e29484b23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T03:46:21.972Z", + "completed":"2017-03-13T03:46:21.972Z", + "new_balance":"11086.00", + "value":"-46.01" + } + }, + { + "id":"5c435866-70f1-42e0-8ced-09e1ae92bf2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T12:36:16.049Z", + "completed":"2017-03-14T12:36:16.049Z", + "new_balance":"11079.01", + "value":"-6.99" + } + }, + { + "id":"9eb08b3f-17d4-472d-a126-b703e5b4d2d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T10:03:34.275Z", + "completed":"2017-03-16T10:03:34.275Z", + "new_balance":"10997.60", + "value":"-81.41" + } + }, + { + "id":"2eca9fe1-24fa-4fae-8b70-f8eb162bbf84", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T21:15:37.224Z", + "completed":"2017-03-16T21:15:37.224Z", + "new_balance":"10950.80", + "value":"-46.80" + } + }, + { + "id":"ae5ba1a4-38ed-4208-9d27-b92bb1658568", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T14:22:51.408Z", + "completed":"2017-03-18T14:22:51.408Z", + "new_balance":"10943.81", + "value":"-6.99" + } + }, + { + "id":"913ed50d-7df3-4e8f-a726-0cf569c24236", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:36:37.175Z", + "completed":"2017-03-19T05:36:37.175Z", + "new_balance":"10892.80", + "value":"-51.01" + } + }, + { + "id":"a6afdc4c-e871-43b2-88d4-f3bb790d542c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:05:39.628Z", + "completed":"2017-03-19T14:05:39.628Z", + "new_balance":"10858.89", + "value":"-33.91" + } + }, + { + "id":"61a3a11a-c64e-4ddf-9340-2595e96467b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T16:49:22.825Z", + "completed":"2017-03-19T16:49:22.825Z", + "new_balance":"10821.94", + "value":"-36.95" + } + }, + { + "id":"b748434a-a147-44fb-b136-efee7c008333", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T01:43:40.159Z", + "completed":"2017-03-20T01:43:40.159Z", + "new_balance":"10763.04", + "value":"-58.90" + } + }, + { + "id":"af03af75-16d9-4ba5-9211-bc1b36d0c03a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T13:35:22.498Z", + "completed":"2017-03-20T13:35:22.498Z", + "new_balance":"10689.53", + "value":"-73.51" + } + }, + { + "id":"a3106088-5af5-4ee6-b7ee-9dc7529bed42", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T04:41:16.520Z", + "completed":"2017-03-21T04:41:16.520Z", + "new_balance":"10683.06", + "value":"-6.47" + } + }, + { + "id":"f5a69b19-4eec-4416-bc8e-903c59177291", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:28:10.501Z", + "completed":"2017-03-21T07:28:10.501Z", + "new_balance":"10677.18", + "value":"-5.88" + } + }, + { + "id":"d62f291b-8700-49a3-ab14-2b734d5a6b39", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:07:36.882Z", + "completed":"2017-03-23T04:07:36.882Z", + "new_balance":"10631.67", + "value":"-45.51" + } + }, + { + "id":"01d88602-92ea-465e-b580-6a3fa2a142ac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T13:48:38.007Z", + "completed":"2017-03-23T13:48:38.007Z", + "new_balance":"10620.44", + "value":"-11.23" + } + }, + { + "id":"2f093a46-301f-461d-9799-ad88ca5ef950", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T20:04:34.683Z", + "completed":"2017-03-24T20:04:34.683Z", + "new_balance":"10591.58", + "value":"-28.86" + } + }, + { + "id":"cd3ec7f0-5f79-4695-a67f-5797c05412ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T06:12:03.618Z", + "completed":"2017-03-25T06:12:03.618Z", + "new_balance":"10575.50", + "value":"-16.08" + } + }, + { + "id":"9ec0bc5d-27d1-4e6a-8a1c-42a95faf0795", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T06:52:21.561Z", + "completed":"2017-03-25T06:52:21.561Z", + "new_balance":"10541.47", + "value":"-34.03" + } + }, + { + "id":"e809f0a1-d9aa-4250-b0da-d5f000e220d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T14:57:43.813Z", + "completed":"2017-03-27T14:57:43.813Z", + "new_balance":"10352.20", + "value":"-189.27" + } + }, + { + "id":"3037d5e3-4ef5-4c37-8044-c76c777b8069", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T07:18:31.650Z", + "completed":"2017-03-28T07:18:31.650Z", + "new_balance":"10325.23", + "value":"-26.97" + } + }, + { + "id":"80504491-3aad-405b-87a3-3f8d5f8caf2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:04:21.970Z", + "completed":"2017-04-01T10:04:21.970Z", + "new_balance":"10295.35", + "value":"-29.88" + } + }, + { + "id":"d0c5d4e5-7d81-4413-abee-ee0445d35e4c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T14:04:36.632Z", + "completed":"2017-04-01T14:04:36.632Z", + "new_balance":"9784.81", + "value":"-510.54" + } + }, + { + "id":"8578cca2-42d9-47cc-868b-82067cdc7a9b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:38:25.161Z", + "completed":"2017-04-01T22:38:25.161Z", + "new_balance":"9650.33", + "value":"-134.48" + } + }, + { + "id":"027da7e9-ff55-4da1-9478-8796cfa7d4bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T22:46:02.151Z", + "completed":"2017-04-01T22:46:02.151Z", + "new_balance":"9597.15", + "value":"-53.18" + } + }, + { + "id":"30e9a7a2-8244-46fc-b5d3-74fec5c462d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T01:20:08.888Z", + "completed":"2017-04-02T01:20:08.888Z", + "new_balance":"9510.59", + "value":"-86.56" + } + }, + { + "id":"ebc13c73-08ae-431e-be97-8575b97052f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T09:54:18.078Z", + "completed":"2017-04-02T09:54:18.078Z", + "new_balance":"9438.60", + "value":"-71.99" + } + }, + { + "id":"cc12c120-8202-4542-b7aa-1316a24784f1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T03:06:00.879Z", + "completed":"2017-04-03T03:06:00.879Z", + "new_balance":"9511.43", + "value":"72.83" + } + }, + { + "id":"cb6cac45-ee30-4c05-a4c2-9d9d7fa65449", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:05:04.289Z", + "completed":"2017-04-03T14:05:04.289Z", + "new_balance":"9474.24", + "value":"-37.19" + } + }, + { + "id":"187074f8-bfdd-4c12-acb2-1868fff9c720", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:52:47.685Z", + "completed":"2017-04-03T20:52:47.685Z", + "new_balance":"9437.05", + "value":"-37.19" + } + }, + { + "id":"41208f4e-4426-49e4-8eeb-3d656da334e1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T21:37:57.596Z", + "completed":"2017-04-03T21:37:57.596Z", + "new_balance":"9402.27", + "value":"-34.78" + } + }, + { + "id":"f6f2f2eb-4ecf-46e5-83b4-9b8ec69bcaff", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T22:35:56.080Z", + "completed":"2017-04-03T22:35:56.080Z", + "new_balance":"9524.47", + "value":"122.20" + } + }, + { + "id":"d9b1d3a4-0ac3-4517-821e-677426c3213c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T04:07:19.045Z", + "completed":"2017-04-04T04:07:19.045Z", + "new_balance":"9450.54", + "value":"-73.93" + } + }, + { + "id":"b268047d-8235-4104-bbec-42df410e5ec8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T00:31:20.748Z", + "completed":"2017-04-05T00:31:20.748Z", + "new_balance":"9423.09", + "value":"-27.45" + } + }, + { + "id":"de50c087-1408-41ad-9e56-7cc33dca6999", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T10:31:00.467Z", + "completed":"2017-04-05T10:31:00.467Z", + "new_balance":"9419.50", + "value":"-3.59" + } + }, + { + "id":"64617b75-764f-4391-a9c7-cbe0474bfe4e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T06:34:48.931Z", + "completed":"2017-04-07T06:34:48.931Z", + "new_balance":"9388.21", + "value":"-31.29" + } + }, + { + "id":"fb37225c-458d-4986-acce-4a51acbbb97d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T21:57:56.847Z", + "completed":"2017-04-07T21:57:56.847Z", + "new_balance":"9373.39", + "value":"-14.82" + } + }, + { + "id":"d4944eb7-ecf1-4de6-b754-8d115b5e7bf2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T11:36:59.533Z", + "completed":"2017-04-08T11:36:59.533Z", + "new_balance":"9366.23", + "value":"-7.16" + } + }, + { + "id":"435c42ef-aac6-4d06-a97e-4647a3ffc6ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T06:21:22.246Z", + "completed":"2017-04-09T06:21:22.246Z", + "new_balance":"9343.98", + "value":"-22.25" + } + }, + { + "id":"6c3ebef2-b514-463c-9bf5-28bb0c2976f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T14:16:10.747Z", + "completed":"2017-04-09T14:16:10.747Z", + "new_balance":"9337.27", + "value":"-6.71" + } + }, + { + "id":"d8c90600-c698-4349-8c8f-961cb2a1b1b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T17:46:48.055Z", + "completed":"2017-04-09T17:46:48.055Z", + "new_balance":"9148.00", + "value":"-189.27" + } + }, + { + "id":"dd24f245-733f-4f83-bb90-18b95a6940fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T03:14:00.765Z", + "completed":"2017-04-10T03:14:00.765Z", + "new_balance":"9102.76", + "value":"-45.24" + } + }, + { + "id":"ef230745-03f1-4061-be4f-6a58560f062c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T03:02:10.223Z", + "completed":"2017-04-17T03:02:10.223Z", + "new_balance":"9093.06", + "value":"-9.70" + } + }, + { + "id":"e54ed927-c491-4f1e-b24d-a82c7b3700ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T23:24:38.555Z", + "completed":"2017-04-18T23:24:38.555Z", + "new_balance":"9060.78", + "value":"-32.28" + } + }, + { + "id":"e4295bca-c7e3-4259-a168-178db31a01fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T23:30:02.976Z", + "completed":"2017-04-25T23:30:02.976Z", + "new_balance":"9018.26", + "value":"-42.52" + } + }, + { + "id":"123fd165-7fee-4165-8202-d918eb0a07ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T03:23:24.087Z", + "completed":"2017-04-26T03:23:24.087Z", + "new_balance":"8954.69", + "value":"-63.57" + } + }, + { + "id":"69ae9b3c-781e-4bb6-a1af-8d9d00ac915e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T15:28:39.413Z", + "completed":"2017-04-26T15:28:39.413Z", + "new_balance":"8947.98", + "value":"-6.71" + } + }, + { + "id":"7b7818c6-b012-42d0-a88c-79e79fbaa63f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T00:54:23.202Z", + "completed":"2017-05-02T00:54:23.202Z", + "new_balance":"8894.80", + "value":"-53.18" + } + }, + { + "id":"72296dc1-237d-4a0f-a10d-2d9b26afa924", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T08:49:40.598Z", + "completed":"2017-05-02T08:49:40.598Z", + "new_balance":"8808.24", + "value":"-86.56" + } + }, + { + "id":"5fd9fa9f-258e-46f3-9291-00fdd4962f6f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T09:49:29.094Z", + "completed":"2017-05-02T09:49:29.094Z", + "new_balance":"8778.36", + "value":"-29.88" + } + }, + { + "id":"88b8447a-a29f-4278-b099-7fd482d4c86f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T09:57:28.866Z", + "completed":"2017-05-02T09:57:28.866Z", + "new_balance":"8743.93", + "value":"-34.43" + } + }, + { + "id":"2315c58d-b457-4eaf-b598-1ce4be9f08a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T14:15:00.779Z", + "completed":"2017-05-02T14:15:00.779Z", + "new_balance":"10424.34", + "value":"1680.41" + } + }, + { + "id":"a9ae0a21-0004-4274-83de-da20dc9091e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T15:22:29.850Z", + "completed":"2017-05-02T15:22:29.850Z", + "new_balance":"10408.41", + "value":"-15.93" + } + }, + { + "id":"a9bc9185-ca69-4fd0-a12a-e82975818575", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T18:58:51.278Z", + "completed":"2017-05-02T18:58:51.278Z", + "new_balance":"10273.93", + "value":"-134.48" + } + }, + { + "id":"138b2f30-4961-4db8-826d-d36a4047da3b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T19:05:17.484Z", + "completed":"2017-05-02T19:05:17.484Z", + "new_balance":"9763.39", + "value":"-510.54" + } + }, + { + "id":"fe24b276-2b9d-49c9-beeb-a996959ca203", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T01:17:28.599Z", + "completed":"2017-05-03T01:17:28.599Z", + "new_balance":"9748.75", + "value":"-14.64" + } + }, + { + "id":"ce83ede3-034a-447a-907a-932787ba477e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T16:29:20.937Z", + "completed":"2017-05-03T16:29:20.937Z", + "new_balance":"9725.38", + "value":"-23.37" + } + }, + { + "id":"8b3baf38-1def-4ad2-8c54-1a53d4093edf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T18:48:18.497Z", + "completed":"2017-05-04T18:48:18.497Z", + "new_balance":"9699.58", + "value":"-25.80" + } + }, + { + "id":"da1489dd-76e2-425a-8f0b-0a368dad6e95", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T21:40:29.853Z", + "completed":"2017-05-04T21:40:29.853Z", + "new_balance":"9671.57", + "value":"-28.01" + } + }, + { + "id":"4da59a7a-3699-4514-a882-1e9f5c7fa4b3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T04:30:20.342Z", + "completed":"2017-05-05T04:30:20.342Z", + "new_balance":"9597.64", + "value":"-73.93" + } + }, + { + "id":"eb120517-966f-40f0-b621-b19b22894c3a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T09:31:37.965Z", + "completed":"2017-05-07T09:31:37.965Z", + "new_balance":"9569.79", + "value":"-27.85" + } + }, + { + "id":"09f79cbd-c95d-401a-8d1c-f3c100ea733c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T16:05:57.346Z", + "completed":"2017-05-07T16:05:57.346Z", + "new_balance":"9565.70", + "value":"-4.09" + } + }, + { + "id":"c1c95b5b-18b3-4bcd-8b6f-4c77c6177646", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T02:22:00.620Z", + "completed":"2017-05-12T02:22:00.620Z", + "new_balance":"9544.60", + "value":"-21.10" + } + }, + { + "id":"370d6745-0648-4e01-b5f2-31712279cbd1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T04:12:16.421Z", + "completed":"2017-05-12T04:12:16.421Z", + "new_balance":"9495.90", + "value":"-48.70" + } + }, + { + "id":"0c4c770e-db91-4bc9-aefb-fa52e515e4c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T19:44:26.975Z", + "completed":"2017-05-14T19:44:26.975Z", + "new_balance":"9450.73", + "value":"-45.17" + } + }, + { + "id":"a0f5402f-b769-4ef2-93f6-c7fd63f91594", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T18:29:11.688Z", + "completed":"2017-05-16T18:29:11.688Z", + "new_balance":"9444.96", + "value":"-5.77" + } + }, + { + "id":"c6f5b96c-fb1b-4df1-ae62-b4d494b8dbda", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:02:33.463Z", + "completed":"2017-05-18T18:02:33.463Z", + "new_balance":"9436.44", + "value":"-8.52" + } + }, + { + "id":"9faa81ec-0b12-4939-94ca-0bf741ae7b6b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T10:09:11.930Z", + "completed":"2017-05-20T10:09:11.930Z", + "new_balance":"9475.45", + "value":"39.01" + } + }, + { + "id":"3bed62eb-75ab-47fc-81d2-b3536c17d4e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T02:49:16.631Z", + "completed":"2017-05-21T02:49:16.631Z", + "new_balance":"9429.82", + "value":"-45.63" + } + }, + { + "id":"10e3caac-d9d9-4941-8c69-b1d66bc66b2d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T20:58:42.875Z", + "completed":"2017-05-21T20:58:42.875Z", + "new_balance":"9386.03", + "value":"-43.79" + } + }, + { + "id":"30d37922-04cd-4775-9da7-93aaef9c3ad3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T06:24:26.739Z", + "completed":"2017-05-27T06:24:26.739Z", + "new_balance":"9360.47", + "value":"-25.56" + } + }, + { + "id":"de9b55f3-154e-443a-8f87-3b16fb000ef7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T20:03:09.039Z", + "completed":"2017-05-27T20:03:09.039Z", + "new_balance":"9326.94", + "value":"-33.53" + } + }, + { + "id":"090a40b4-fe24-4c31-a6e9-7b6ec11f125a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T02:14:08.879Z", + "completed":"2017-06-01T02:14:08.879Z", + "new_balance":"8816.40", + "value":"-510.54" + } + }, + { + "id":"c10db7f0-271f-4e2d-8974-22ab8a993e15", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:45:12.533Z", + "completed":"2017-06-01T04:45:12.533Z", + "new_balance":"8763.22", + "value":"-53.18" + } + }, + { + "id":"987d3244-3d5a-4d76-b24a-a204dfe5a9ce", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:54:48.425Z", + "completed":"2017-06-01T13:54:48.425Z", + "new_balance":"8628.74", + "value":"-134.48" + } + }, + { + "id":"1a25f14e-f163-4357-ad4c-c7746129730d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T14:35:55.928Z", + "completed":"2017-06-01T14:35:55.928Z", + "new_balance":"10309.15", + "value":"1680.41" + } + }, + { + "id":"ca91dbe3-715d-49b0-8bca-3933df251887", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T20:50:34.274Z", + "completed":"2017-06-01T20:50:34.274Z", + "new_balance":"10279.27", + "value":"-29.88" + } + }, + { + "id":"c2d07b59-998f-427b-901b-bd2dc76397b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T21:55:39.511Z", + "completed":"2017-06-01T21:55:39.511Z", + "new_balance":"10244.84", + "value":"-34.43" + } + }, + { + "id":"098f6cfc-87b7-4206-bfb3-e6bf1141bfb9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T04:42:33.078Z", + "completed":"2017-06-04T04:42:33.078Z", + "new_balance":"10158.28", + "value":"-86.56" + } + }, + { + "id":"1e601699-4586-43dc-b118-d31f35fdab3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:58:46.878Z", + "completed":"2017-06-04T11:58:46.878Z", + "new_balance":"10026.44", + "value":"-131.84" + } + }, + { + "id":"86f73333-2a1d-4931-ba71-c46eebeb1f96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T05:06:25.278Z", + "completed":"2017-06-11T05:06:25.278Z", + "new_balance":"9995.63", + "value":"-30.81" + } + }, + { + "id":"e13707d0-fdda-4ca2-a0cd-3892d21d6276", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T03:26:28.995Z", + "completed":"2017-06-12T03:26:28.995Z", + "new_balance":"9985.10", + "value":"-10.53" + } + }, + { + "id":"50b4e9ab-f897-4f36-98bc-e8e798b92bf1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T08:00:57.488Z", + "completed":"2017-06-13T08:00:57.488Z", + "new_balance":"9978.63", + "value":"-6.47" + } + }, + { + "id":"06a29960-fc4a-42d7-8a34-8ba3354da126", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:06:54.482Z", + "completed":"2017-06-13T17:06:54.482Z", + "new_balance":"9897.42", + "value":"-81.21" + } + }, + { + "id":"eee30b43-1909-48a8-b0d3-59fc9459572e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T17:46:11.096Z", + "completed":"2017-06-16T17:46:11.096Z", + "new_balance":"9856.19", + "value":"-41.23" + } + }, + { + "id":"8f965acb-6eb3-4b30-aef0-62a594dbdc8c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T00:36:32.902Z", + "completed":"2017-06-17T00:36:32.902Z", + "new_balance":"9774.98", + "value":"-81.21" + } + }, + { + "id":"1842791c-b601-48b2-9e5a-1750d322002c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T18:12:05.704Z", + "completed":"2017-06-17T18:12:05.704Z", + "new_balance":"9770.21", + "value":"-4.77" + } + }, + { + "id":"2f1c3b54-6420-4f24-826d-b2482bced825", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T22:02:54.055Z", + "completed":"2017-06-18T22:02:54.055Z", + "new_balance":"9686.41", + "value":"-83.80" + } + }, + { + "id":"947dcf11-9b35-460d-88b9-9b6410c90556", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:54:05.432Z", + "completed":"2017-06-19T02:54:05.432Z", + "new_balance":"9644.07", + "value":"-42.34" + } + }, + { + "id":"51f0388e-81ac-4024-b97d-49859521b3f8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T08:34:13.251Z", + "completed":"2017-06-19T08:34:13.251Z", + "new_balance":"9560.27", + "value":"-83.80" + } + }, + { + "id":"429fbda7-3470-4a99-b1dd-5919b087f835", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T15:41:13.220Z", + "completed":"2017-06-21T15:41:13.220Z", + "new_balance":"9556.69", + "value":"-3.58" + } + }, + { + "id":"e7586fd8-c19a-481f-ae39-317768b2b8c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T16:54:19.638Z", + "completed":"2017-06-21T16:54:19.638Z", + "new_balance":"9465.22", + "value":"-91.47" + } + }, + { + "id":"b9ccdd0f-34ba-41c3-aefd-28a94d26f806", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T00:45:26.950Z", + "completed":"2017-06-23T00:45:26.950Z", + "new_balance":"9457.94", + "value":"-7.28" + } + }, + { + "id":"6516758c-7b75-47fd-b411-8814bfbb10ad", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T07:02:30.399Z", + "completed":"2017-06-23T07:02:30.399Z", + "new_balance":"9430.64", + "value":"-27.30" + } + }, + { + "id":"6548f5de-cf56-4c53-9293-ba4ad2839d49", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T14:24:32.395Z", + "completed":"2017-06-24T14:24:32.395Z", + "new_balance":"9384.63", + "value":"-46.01" + } + }, + { + "id":"21065ece-c08b-4dce-ad98-088615d2754a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T20:33:15.807Z", + "completed":"2017-06-24T20:33:15.807Z", + "new_balance":"9371.39", + "value":"-13.24" + } + }, + { + "id":"0da1e8cf-e4ac-4d58-a49f-fb0c924988b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T01:00:35.524Z", + "completed":"2017-06-28T01:00:35.524Z", + "new_balance":"9324.59", + "value":"-46.80" + } + }, + { + "id":"84c7da72-8876-40c5-b92c-7ca2af45f18e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T06:23:57.015Z", + "completed":"2017-06-28T06:23:57.015Z", + "new_balance":"9317.60", + "value":"-6.99" + } + }, + { + "id":"2907c10c-be04-495d-b103-ecce9a236d6e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T14:18:23.485Z", + "completed":"2017-06-28T14:18:23.485Z", + "new_balance":"9310.61", + "value":"-6.99" + } + }, + { + "id":"417cbdde-ea63-4cbb-955f-4ef1b06abb69", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T22:54:40.799Z", + "completed":"2017-06-28T22:54:40.799Z", + "new_balance":"9229.20", + "value":"-81.41" + } + }, + { + "id":"7f722b65-5605-485f-af35-c5c3afbe49da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T13:40:13.496Z", + "completed":"2017-06-29T13:40:13.496Z", + "new_balance":"9222.73", + "value":"-6.47" + } + }, + { + "id":"1f474274-85a4-4e61-9cd3-e500344709b9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T18:03:41.809Z", + "completed":"2017-06-29T18:03:41.809Z", + "new_balance":"9163.83", + "value":"-58.90" + } + }, + { + "id":"a6775cd6-dde5-4515-990a-dc844d366275", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T20:41:02.194Z", + "completed":"2017-06-29T20:41:02.194Z", + "new_balance":"9129.92", + "value":"-33.91" + } + }, + { + "id":"f15a9a97-4fdf-444b-9ea2-62b58bec38ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:32:14.494Z", + "completed":"2017-06-29T21:32:14.494Z", + "new_balance":"9078.91", + "value":"-51.01" + } + }, + { + "id":"72d4c2bb-82d0-4e92-9426-b90a9a6e5f86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:58:51.235Z", + "completed":"2017-06-29T21:58:51.235Z", + "new_balance":"9041.96", + "value":"-36.95" + } + }, + { + "id":"b77f5971-8593-49b1-b9c6-fc8cba35b323", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T22:00:40.614Z", + "completed":"2017-06-29T22:00:40.614Z", + "new_balance":"8968.45", + "value":"-73.51" + } + }, + { + "id":"124ef4f5-d6c1-46db-a5aa-7bbf7d61f3aa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T04:12:58.866Z", + "completed":"2017-06-30T04:12:58.866Z", + "new_balance":"8922.94", + "value":"-45.51" + } + }, + { + "id":"19463358-9dc3-4556-b98e-0af7d30d9c23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T06:57:48.737Z", + "completed":"2017-06-30T06:57:48.737Z", + "new_balance":"8911.71", + "value":"-11.23" + } + }, + { + "id":"59df1280-2762-4cea-a968-0c1da665d562", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T10:38:39.117Z", + "completed":"2017-06-30T10:38:39.117Z", + "new_balance":"8882.85", + "value":"-28.86" + } + }, + { + "id":"2124a050-7fd5-4008-9e14-c92dbc83f8bd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T23:39:05.251Z", + "completed":"2017-06-30T23:39:05.251Z", + "new_balance":"8876.97", + "value":"-5.88" + } + }, + { + "id":"942bfb6d-c06c-40a9-b854-2f2ba2d1ef23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T01:49:16.570Z", + "completed":"2017-07-01T01:49:16.570Z", + "new_balance":"8842.94", + "value":"-34.03" + } + }, + { + "id":"fd17d586-4e35-418c-896d-948e1705fbb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T02:27:47.519Z", + "completed":"2017-07-01T02:27:47.519Z", + "new_balance":"8813.06", + "value":"-29.88" + } + }, + { + "id":"892ed89f-89b2-4f4e-84ee-5bd07eef084f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T03:04:47.072Z", + "completed":"2017-07-01T03:04:47.072Z", + "new_balance":"8778.63", + "value":"-34.43" + } + }, + { + "id":"48cecb1b-2777-4ae0-9572-c7ea9b9d85cc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T08:23:00.884Z", + "completed":"2017-07-01T08:23:00.884Z", + "new_balance":"8268.09", + "value":"-510.54" + } + }, + { + "id":"e463fdbf-d6f5-4351-b023-8bcafb4bc4c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T11:08:51.172Z", + "completed":"2017-07-01T11:08:51.172Z", + "new_balance":"8214.91", + "value":"-53.18" + } + }, + { + "id":"e6bdca54-8632-454e-8016-a807adf7dbed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T12:10:34.032Z", + "completed":"2017-07-01T12:10:34.032Z", + "new_balance":"8198.83", + "value":"-16.08" + } + }, + { + "id":"66155237-ec72-4e27-8d4c-6eb6331a07d6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T16:53:23.673Z", + "completed":"2017-07-01T16:53:23.673Z", + "new_balance":"8164.40", + "value":"-34.43" + } + }, + { + "id":"d4127148-7089-46b0-9b87-2e3fe9f46780", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:04:03.328Z", + "completed":"2017-07-01T17:04:03.328Z", + "new_balance":"8137.43", + "value":"-26.97" + } + }, + { + "id":"e38af6de-700e-4390-9763-6d9cfc22b629", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T17:15:02.537Z", + "completed":"2017-07-01T17:15:02.537Z", + "new_balance":"8002.95", + "value":"-134.48" + } + }, + { + "id":"5e74333c-2e1d-4241-86ff-910afd4b21d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T21:17:24.103Z", + "completed":"2017-07-01T21:17:24.103Z", + "new_balance":"7813.68", + "value":"-189.27" + } + }, + { + "id":"71bcdd3a-32ae-4531-8a7b-466df9a60b2b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T17:43:26.053Z", + "completed":"2017-07-02T17:43:26.053Z", + "new_balance":"7727.12", + "value":"-86.56" + } + }, + { + "id":"2dc412e9-e578-4bf9-b4bf-7e5b4db317c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T07:40:51.658Z", + "completed":"2017-07-03T07:40:51.658Z", + "new_balance":"7631.69", + "value":"-95.43" + } + }, + { + "id":"cb7f39c6-bf39-4653-8281-279ecd188179", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:53:58.272Z", + "completed":"2017-07-04T08:53:58.272Z", + "new_balance":"7615.91", + "value":"-15.78" + } + }, + { + "id":"6329ada0-c3f5-4e9a-84dd-417b55df1e20", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T10:11:36.183Z", + "completed":"2017-07-05T10:11:36.183Z", + "new_balance":"7543.82", + "value":"-72.09" + } + }, + { + "id":"6937c45d-7810-4060-b73c-2836d9f9d07b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T10:39:57.403Z", + "completed":"2017-07-05T10:39:57.403Z", + "new_balance":"7469.89", + "value":"-73.93" + } + }, + { + "id":"88a01fba-9402-4548-b057-bd17600201fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T23:36:23.276Z", + "completed":"2017-07-06T23:36:23.276Z", + "new_balance":"7466.30", + "value":"-3.59" + } + }, + { + "id":"8cd16cef-a81c-4949-9670-5d292c2291a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T18:27:51.800Z", + "completed":"2017-07-11T18:27:51.800Z", + "new_balance":"7438.85", + "value":"-27.45" + } + }, + { + "id":"a4657b88-9a27-4365-b983-d8a7c0648053", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T13:03:49.252Z", + "completed":"2017-07-12T13:03:49.252Z", + "new_balance":"7407.56", + "value":"-31.29" + } + }, + { + "id":"f077f038-efe7-4044-a6e8-5542c56aa696", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T06:23:13.950Z", + "completed":"2017-07-14T06:23:13.950Z", + "new_balance":"7392.74", + "value":"-14.82" + } + }, + { + "id":"1c4a298b-e96d-4723-836d-36ccff4a463c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T02:05:43.798Z", + "completed":"2017-07-16T02:05:43.798Z", + "new_balance":"7385.58", + "value":"-7.16" + } + }, + { + "id":"62de3ee5-d279-4e08-b1bf-6d1dd29b6051", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T09:44:18.767Z", + "completed":"2017-07-18T09:44:18.767Z", + "new_balance":"7363.33", + "value":"-22.25" + } + }, + { + "id":"084920c5-8fbd-462c-97f1-cb287d3495e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T06:17:43.619Z", + "completed":"2017-07-20T06:17:43.619Z", + "new_balance":"7356.62", + "value":"-6.71" + } + }, + { + "id":"640c8c67-3ab2-437d-9995-4339c3e67716", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T16:31:55.071Z", + "completed":"2017-07-20T16:31:55.071Z", + "new_balance":"7167.35", + "value":"-189.27" + } + }, + { + "id":"7b20a5c1-bfc1-4c0c-8fd1-10cd05a24c60", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T05:21:26.818Z", + "completed":"2017-07-24T05:21:26.818Z", + "new_balance":"7122.11", + "value":"-45.24" + } + }, + { + "id":"b142a517-4b8c-4166-9821-a1cd2f5ee23b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T11:01:43.462Z", + "completed":"2017-07-24T11:01:43.462Z", + "new_balance":"7112.41", + "value":"-9.70" + } + }, + { + "id":"2311433a-9842-4773-82cf-0fb5fc96198a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T02:06:32.722Z", + "completed":"2017-07-25T02:06:32.722Z", + "new_balance":"7080.13", + "value":"-32.28" + } + }, + { + "id":"1d54b4ca-6aaf-4f49-b443-0c505f8f2f0f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T20:26:01.795Z", + "completed":"2017-07-25T20:26:01.795Z", + "new_balance":"7037.61", + "value":"-42.52" + } + }, + { + "id":"f5592de9-609d-44e8-a266-314c938b889c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T10:43:39.489Z", + "completed":"2017-07-26T10:43:39.489Z", + "new_balance":"6974.04", + "value":"-63.57" + } + }, + { + "id":"c43ab558-b62e-4943-9ec4-ea608dba0de0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T00:28:05.213Z", + "completed":"2017-07-27T00:28:05.213Z", + "new_balance":"6967.33", + "value":"-6.71" + } + }, + { + "id":"fa0565ae-5269-4ef6-886b-be34c588608b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T07:38:53.257Z", + "completed":"2017-08-01T07:38:53.257Z", + "new_balance":"8647.74", + "value":"1680.41" + } + }, + { + "id":"e16fe068-1933-40c4-b77d-29cd67db35db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T08:36:39.943Z", + "completed":"2017-08-01T08:36:39.943Z", + "new_balance":"8594.56", + "value":"-53.18" + } + }, + { + "id":"849b7ea7-a4c6-4026-96e5-d0d8f628ddf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T09:00:48.226Z", + "completed":"2017-08-01T09:00:48.226Z", + "new_balance":"8564.68", + "value":"-29.88" + } + }, + { + "id":"1481e21a-3b49-4ae4-a930-be2ec193301e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T11:35:49.294Z", + "completed":"2017-08-01T11:35:49.294Z", + "new_balance":"8530.25", + "value":"-34.43" + } + }, + { + "id":"58f731b4-2e0a-4e1d-b171-3865d5a6a846", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T13:30:24.685Z", + "completed":"2017-08-01T13:30:24.685Z", + "new_balance":"8019.71", + "value":"-510.54" + } + }, + { + "id":"c581c292-7cba-4ed4-aa7b-f57853c901e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:13:48.785Z", + "completed":"2017-08-01T21:13:48.785Z", + "new_balance":"7885.23", + "value":"-134.48" + } + }, + { + "id":"f2a22707-5db3-4dcf-8828-3ea8682a732b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T02:23:44.859Z", + "completed":"2017-08-02T02:23:44.859Z", + "new_balance":"7798.67", + "value":"-86.56" + } + }, + { + "id":"6f7ff58e-6466-416d-a7e7-8f6faa9e77df", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T10:47:55.853Z", + "completed":"2017-08-03T10:47:55.853Z", + "new_balance":"7795.08", + "value":"-3.59" + } + }, + { + "id":"1af74bbc-af53-431f-ac28-7c8f8f53060d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T02:41:00.905Z", + "completed":"2017-08-04T02:41:00.905Z", + "new_balance":"7760.53", + "value":"-34.55" + } + }, + { + "id":"40a7d6af-29a2-4c5e-a9ab-4fb20c70a08b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T11:52:40.545Z", + "completed":"2017-08-07T11:52:40.545Z", + "new_balance":"7737.16", + "value":"-23.37" + } + }, + { + "id":"8a5fe6d1-937f-4f33-a187-9a84f7f61bf5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T01:23:16.058Z", + "completed":"2017-08-09T01:23:16.058Z", + "new_balance":"7709.15", + "value":"-28.01" + } + }, + { + "id":"c8e84a2c-2d57-4d73-b8cb-65a4bc309e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T01:49:28.301Z", + "completed":"2017-08-09T01:49:28.301Z", + "new_balance":"7683.35", + "value":"-25.80" + } + }, + { + "id":"f3f2b028-f922-454c-9f57-40d0845263cb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T06:00:31.836Z", + "completed":"2017-08-10T06:00:31.836Z", + "new_balance":"7609.42", + "value":"-73.93" + } + }, + { + "id":"a3ceb8bd-6896-4a81-a607-b434cda09ccb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T18:50:09.117Z", + "completed":"2017-08-14T18:50:09.117Z", + "new_balance":"7605.33", + "value":"-4.09" + } + }, + { + "id":"2197cff9-de00-4c8c-b4c0-1bc17ac3bfb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T00:28:35.595Z", + "completed":"2017-08-15T00:28:35.595Z", + "new_balance":"7577.48", + "value":"-27.85" + } + }, + { + "id":"abe3c864-3725-4a73-8e29-ce4101d0b676", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T11:42:11.970Z", + "completed":"2017-08-15T11:42:11.970Z", + "new_balance":"7541.55", + "value":"-35.93" + } + }, + { + "id":"4efadb3c-1e01-4ae9-9996-329a5b268600", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T22:45:45.725Z", + "completed":"2017-08-16T22:45:45.725Z", + "new_balance":"7492.85", + "value":"-48.70" + } + }, + { + "id":"cff43a6a-8eb0-46ba-a930-61c7c2b09189", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T22:39:48.877Z", + "completed":"2017-08-17T22:39:48.877Z", + "new_balance":"7447.68", + "value":"-45.17" + } + }, + { + "id":"c38a538e-2296-4c92-ad44-e952256508c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T01:23:41.115Z", + "completed":"2017-08-20T01:23:41.115Z", + "new_balance":"7439.16", + "value":"-8.52" + } + }, + { + "id":"9aabda10-9fb3-4329-b576-6296c35f1a8b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T03:23:38.487Z", + "completed":"2017-08-20T03:23:38.487Z", + "new_balance":"7433.39", + "value":"-5.77" + } + }, + { + "id":"e60e3deb-2e28-46e8-88c0-856f64f9ff5c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T12:05:51.149Z", + "completed":"2017-08-22T12:05:51.149Z", + "new_balance":"7472.40", + "value":"39.01" + } + }, + { + "id":"fc244688-69c0-4835-8973-e18d09bab4a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T06:40:14.253Z", + "completed":"2017-08-23T06:40:14.253Z", + "new_balance":"7428.61", + "value":"-43.79" + } + }, + { + "id":"139df2ad-5900-434b-baac-45dab45f99f9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T19:12:08.970Z", + "completed":"2017-08-23T19:12:08.970Z", + "new_balance":"7382.98", + "value":"-45.63" + } + }, + { + "id":"f63ca303-c140-4618-be82-c8bbb1ba43d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T00:50:28.671Z", + "completed":"2017-08-28T00:50:28.671Z", + "new_balance":"7357.42", + "value":"-25.56" + } + }, + { + "id":"65b58b2b-3889-4bf8-a76e-2ee4301e4186", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T23:35:35.501Z", + "completed":"2017-08-28T23:35:35.501Z", + "new_balance":"7323.89", + "value":"-33.53" + } + }, + { + "id":"6ddebfd3-e7e4-4396-9765-9c950be1e99e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T05:57:39.260Z", + "completed":"2017-09-01T05:57:39.260Z", + "new_balance":"7270.71", + "value":"-53.18" + } + }, + { + "id":"150b46a3-d979-4494-b004-3d552b44a449", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T07:24:11.297Z", + "completed":"2017-09-01T07:24:11.297Z", + "new_balance":"7136.23", + "value":"-134.48" + } + }, + { + "id":"15fa2622-75a5-41ee-912f-8c710929e980", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T09:22:20.513Z", + "completed":"2017-09-01T09:22:20.513Z", + "new_balance":"8816.64", + "value":"1680.41" + } + }, + { + "id":"b8a575ab-47f0-4232-8e2a-01cd0da31b1d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T09:55:06.124Z", + "completed":"2017-09-01T09:55:06.124Z", + "new_balance":"8782.21", + "value":"-34.43" + } + }, + { + "id":"5652fc31-6734-42fb-865e-99dcf905f520", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T15:07:48.910Z", + "completed":"2017-09-01T15:07:48.910Z", + "new_balance":"8271.67", + "value":"-510.54" + } + }, + { + "id":"4a831f70-33cd-4232-b050-2b5e5aa807a3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T16:38:10.418Z", + "completed":"2017-09-01T16:38:10.418Z", + "new_balance":"8241.79", + "value":"-29.88" + } + }, + { + "id":"314800a3-3fe6-45c5-9090-f42ac71c5e38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T15:35:18.307Z", + "completed":"2017-09-02T15:35:18.307Z", + "new_balance":"8155.23", + "value":"-86.56" + } + }, + { + "id":"ef7129df-13a3-4deb-acbb-bd5675111d7d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:54:00.217Z", + "completed":"2017-09-04T02:54:00.217Z", + "new_balance":"8148.76", + "value":"-6.47" + } + }, + { + "id":"17080dd6-9695-4cca-b505-7fdf5bab5d35", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T04:31:23.110Z", + "completed":"2017-09-04T04:31:23.110Z", + "new_balance":"8138.23", + "value":"-10.53" + } + }, + { + "id":"5e5ff077-d6d4-476f-bb43-144d8440f0c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T15:49:16.523Z", + "completed":"2017-09-04T15:49:16.523Z", + "new_balance":"8107.42", + "value":"-30.81" + } + }, + { + "id":"b1597b1a-6c38-4a3e-8cfd-469dc7285ddf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T16:11:28.208Z", + "completed":"2017-09-04T16:11:28.208Z", + "new_balance":"8026.21", + "value":"-81.21" + } + }, + { + "id":"ae362886-e985-49cf-85ba-0437ea4fe0c0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T00:19:16.000Z", + "completed":"2017-09-05T00:19:16.000Z", + "new_balance":"7984.98", + "value":"-41.23" + } + }, + { + "id":"f771eb87-901b-40ae-b152-d6733fba96c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T21:43:30.922Z", + "completed":"2017-09-05T21:43:30.922Z", + "new_balance":"7980.21", + "value":"-4.77" + } + }, + { + "id":"6074137c-aa79-485a-9db9-7522c7828d6c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T17:26:42.441Z", + "completed":"2017-09-06T17:26:42.441Z", + "new_balance":"7896.41", + "value":"-83.80" + } + }, + { + "id":"a052e3de-0281-4158-892c-45594692b418", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T18:07:41.801Z", + "completed":"2017-09-06T18:07:41.801Z", + "new_balance":"7815.20", + "value":"-81.21" + } + }, + { + "id":"80e68192-2af6-4564-b206-b05e8b4de917", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T15:25:27.150Z", + "completed":"2017-09-08T15:25:27.150Z", + "new_balance":"7772.86", + "value":"-42.34" + } + }, + { + "id":"7fcda1d0-4919-478b-8c37-20a5b330b9cd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:33:42.513Z", + "completed":"2017-09-08T22:33:42.513Z", + "new_balance":"7689.06", + "value":"-83.80" + } + }, + { + "id":"ce29bb9d-5ad8-47d2-aef9-29f075b7c34f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T00:58:53.943Z", + "completed":"2017-09-10T00:58:53.943Z", + "new_balance":"7685.48", + "value":"-3.58" + } + }, + { + "id":"57fb74a0-8f48-4c85-b2c1-5f4ecd133c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T13:52:37.362Z", + "completed":"2017-09-10T13:52:37.362Z", + "new_balance":"7594.01", + "value":"-91.47" + } + }, + { + "id":"2b3d506d-f88b-4012-a734-d9c5cd5bf250", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T04:56:10.775Z", + "completed":"2017-09-11T04:56:10.775Z", + "new_balance":"7586.73", + "value":"-7.28" + } + }, + { + "id":"d24e4222-f970-47a2-9286-d0ed49dd280d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:20:14.015Z", + "completed":"2017-09-12T01:20:14.015Z", + "new_balance":"7559.43", + "value":"-27.30" + } + }, + { + "id":"9f0ea41c-77e9-4a37-bad6-f22a1579ca3c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T07:01:01.586Z", + "completed":"2017-09-12T07:01:01.586Z", + "new_balance":"7546.19", + "value":"-13.24" + } + }, + { + "id":"5e25e44d-bb77-4f27-b551-dc33282f2fc2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T10:57:22.312Z", + "completed":"2017-09-13T10:57:22.312Z", + "new_balance":"7500.18", + "value":"-46.01" + } + }, + { + "id":"282f71af-3103-4bd7-a2e6-4a75d29e678f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T01:06:53.613Z", + "completed":"2017-09-16T01:06:53.613Z", + "new_balance":"7493.19", + "value":"-6.99" + } + }, + { + "id":"5a99b467-5404-499b-ba9f-8ce985b58f01", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T21:13:14.786Z", + "completed":"2017-09-17T21:13:14.786Z", + "new_balance":"7446.39", + "value":"-46.80" + } + }, + { + "id":"04767787-e86c-4e71-b2f0-26c8348a25d0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T22:31:37.500Z", + "completed":"2017-09-17T22:31:37.500Z", + "new_balance":"7364.98", + "value":"-81.41" + } + }, + { + "id":"0468b440-dad0-4df1-bd6f-9fdf39258f61", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T19:29:33.364Z", + "completed":"2017-09-18T19:29:33.364Z", + "new_balance":"7357.99", + "value":"-6.99" + } + }, + { + "id":"2a32df04-2d04-4b5c-9850-d8fc3cf20fd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T16:58:47.995Z", + "completed":"2017-09-19T16:58:47.995Z", + "new_balance":"7306.98", + "value":"-51.01" + } + }, + { + "id":"c50f71f2-9fa0-45b1-8a2b-02e2eb1428ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T19:38:40.009Z", + "completed":"2017-09-19T19:38:40.009Z", + "new_balance":"7270.03", + "value":"-36.95" + } + }, + { + "id":"6e56e061-9b2c-4124-ab3d-5e825a06b0fe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:05:31.081Z", + "completed":"2017-09-19T20:05:31.081Z", + "new_balance":"7236.12", + "value":"-33.91" + } + }, + { + "id":"2240a1b4-59db-47ce-85f5-ef0b8f9df871", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T02:59:59.184Z", + "completed":"2017-09-20T02:59:59.184Z", + "new_balance":"7162.61", + "value":"-73.51" + } + }, + { + "id":"b122a455-9d93-42a4-af2f-2dc9e0001aa5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T14:18:53.967Z", + "completed":"2017-09-20T14:18:53.967Z", + "new_balance":"7103.71", + "value":"-58.90" + } + }, + { + "id":"7e14f858-2708-4193-8706-7e79df3dc9f8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T03:24:56.664Z", + "completed":"2017-09-21T03:24:56.664Z", + "new_balance":"7097.24", + "value":"-6.47" + } + }, + { + "id":"c98d3a16-d532-4eca-ad20-5d275eebb2a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T03:30:07.969Z", + "completed":"2017-09-21T03:30:07.969Z", + "new_balance":"7091.36", + "value":"-5.88" + } + }, + { + "id":"f0048f72-3b3d-478d-8dbf-235528e1a290", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T01:48:55.940Z", + "completed":"2017-09-23T01:48:55.940Z", + "new_balance":"7045.85", + "value":"-45.51" + } + }, + { + "id":"c4e94697-b584-40da-9d70-735a565d7a80", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T12:35:39.431Z", + "completed":"2017-09-23T12:35:39.431Z", + "new_balance":"7034.62", + "value":"-11.23" + } + }, + { + "id":"ee12b9e5-aee8-41c3-9b52-16be7e57dca6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T09:29:55.158Z", + "completed":"2017-09-24T09:29:55.158Z", + "new_balance":"7005.76", + "value":"-28.86" + } + }, + { + "id":"5c2bc9c2-5bf4-4008-b4d7-d08cd2be2009", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T09:14:43.327Z", + "completed":"2017-09-25T09:14:43.327Z", + "new_balance":"6971.73", + "value":"-34.03" + } + }, + { + "id":"aef7fb76-21cb-41d0-9f7d-2d54cdbd7c95", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T16:26:06.653Z", + "completed":"2017-09-25T16:26:06.653Z", + "new_balance":"6955.65", + "value":"-16.08" + } + }, + { + "id":"317f6573-f521-401b-9476-50341d2e0aa3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T22:20:44.717Z", + "completed":"2017-09-27T22:20:44.717Z", + "new_balance":"6766.38", + "value":"-189.27" + } + }, + { + "id":"77acfd04-7c06-4f4e-98ef-ea7e914105d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T15:44:07.914Z", + "completed":"2017-09-29T15:44:07.914Z", + "new_balance":"6739.41", + "value":"-26.97" + } + }, + { + "id":"26d29733-96ee-478b-bc07-84b3abbf9049", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T04:09:18.167Z", + "completed":"2017-10-01T04:09:18.167Z", + "new_balance":"6686.23", + "value":"-53.18" + } + }, + { + "id":"793af520-741d-4ca7-a917-acca210370ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T07:21:40.206Z", + "completed":"2017-10-01T07:21:40.206Z", + "new_balance":"6551.75", + "value":"-134.48" + } + }, + { + "id":"22950b79-7285-46a1-bf5d-bdaef293fcb7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T14:15:57.791Z", + "completed":"2017-10-01T14:15:57.791Z", + "new_balance":"6041.21", + "value":"-510.54" + } + }, + { + "id":"a54a69ad-dd0f-4a7e-86e4-fd2573f3fcb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T19:12:19.656Z", + "completed":"2017-10-01T19:12:19.656Z", + "new_balance":"6011.33", + "value":"-29.88" + } + }, + { + "id":"30b9afcc-ccd9-48e7-970e-1a7dee6ae392", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T17:09:56.169Z", + "completed":"2017-10-02T17:09:56.169Z", + "new_balance":"5924.77", + "value":"-86.56" + } + }, + { + "id":"e8ad8fb1-4d99-499e-a51b-05f7cef3d14e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T19:03:15.416Z", + "completed":"2017-10-02T19:03:15.416Z", + "new_balance":"5852.78", + "value":"-71.99" + } + }, + { + "id":"70d106e7-8691-4172-a23d-c1174b06fb41", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T00:09:36.346Z", + "completed":"2017-10-03T00:09:36.346Z", + "new_balance":"5815.59", + "value":"-37.19" + } + }, + { + "id":"c24c644c-1bcb-4b55-82ac-4f052e982243", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T02:29:52.638Z", + "completed":"2017-10-03T02:29:52.638Z", + "new_balance":"5780.81", + "value":"-34.78" + } + }, + { + "id":"1b36726b-e6e2-48d3-bae7-fe4ca3c30d29", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T18:27:34.216Z", + "completed":"2017-10-03T18:27:34.216Z", + "new_balance":"5591.54", + "value":"-189.27" + } + }, + { + "id":"5095c76d-65c2-421c-a1ea-3d6b4155fef5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T19:49:41.151Z", + "completed":"2017-10-03T19:49:41.151Z", + "new_balance":"4859.69", + "value":"-731.85" + } + }, + { + "id":"4e9c73f6-41c4-4aff-8716-6a0a85b1c38c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T22:34:54.725Z", + "completed":"2017-10-03T22:34:54.725Z", + "new_balance":"4696.21", + "value":"-163.48" + } + }, + { + "id":"6ef5e746-f2ac-4812-8a74-b3d9ed0d47db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T11:08:35.030Z", + "completed":"2017-10-04T11:08:35.030Z", + "new_balance":"4622.28", + "value":"-73.93" + } + }, + { + "id":"adffd148-bb04-458f-8b3e-8e00ed59deaa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T12:25:31.043Z", + "completed":"2017-10-05T12:25:31.043Z", + "new_balance":"4618.69", + "value":"-3.59" + } + }, + { + "id":"3ac0b0aa-5862-4d41-bd8e-aec3cbf9671c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T13:04:51.425Z", + "completed":"2017-10-05T13:04:51.425Z", + "new_balance":"4591.24", + "value":"-27.45" + } + }, + { + "id":"0c15b0ef-fdbd-454e-93ea-514d40c55d2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T08:32:39.444Z", + "completed":"2017-10-07T08:32:39.444Z", + "new_balance":"4559.95", + "value":"-31.29" + } + }, + { + "id":"8a67eb28-91dc-4390-9e8f-d20a95414b8e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T08:41:21.199Z", + "completed":"2017-10-07T08:41:21.199Z", + "new_balance":"4545.13", + "value":"-14.82" + } + }, + { + "id":"63192dd7-1fea-401b-9f3e-45a3fa868485", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T17:11:57.176Z", + "completed":"2017-10-08T17:11:57.176Z", + "new_balance":"4537.97", + "value":"-7.16" + } + }, + { + "id":"f9934421-0a45-467e-a931-17fd9641db68", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T03:32:26.075Z", + "completed":"2017-10-09T03:32:26.075Z", + "new_balance":"4348.70", + "value":"-189.27" + } + }, + { + "id":"69b35fab-a01b-420d-b9b4-a80daf286d19", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T18:02:12.125Z", + "completed":"2017-10-09T18:02:12.125Z", + "new_balance":"4341.99", + "value":"-6.71" + } + }, + { + "id":"fdbd8328-d8a0-4442-9995-1bbae3c78772", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T20:51:11.370Z", + "completed":"2017-10-09T20:51:11.370Z", + "new_balance":"4319.74", + "value":"-22.25" + } + }, + { + "id":"77cfe48e-2092-483c-a7a0-a592dacf8f87", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T18:10:16.281Z", + "completed":"2017-10-10T18:10:16.281Z", + "new_balance":"4274.50", + "value":"-45.24" + } + }, + { + "id":"e1f390f0-9d72-4023-b07a-ee920900adfe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T10:26:45.978Z", + "completed":"2017-10-17T10:26:45.978Z", + "new_balance":"4264.80", + "value":"-9.70" + } + }, + { + "id":"63455242-081d-4dd6-bfce-865645de7a19", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T12:42:54.588Z", + "completed":"2017-10-18T12:42:54.588Z", + "new_balance":"4232.52", + "value":"-32.28" + } + }, + { + "id":"a0a58057-1523-47a9-8291-b168e306369a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T09:33:00.534Z", + "completed":"2017-10-25T09:33:00.534Z", + "new_balance":"4190.00", + "value":"-42.52" + } + }, + { + "id":"6e7d18c7-cb98-4f24-a746-f27cba89345b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T00:22:36.124Z", + "completed":"2017-10-26T00:22:36.124Z", + "new_balance":"4126.43", + "value":"-63.57" + } + }, + { + "id":"3ddf9139-135e-4b00-9317-774426a62563", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T14:19:23.914Z", + "completed":"2017-10-26T14:19:23.914Z", + "new_balance":"4119.72", + "value":"-6.71" + } + }, + { + "id":"35b59a71-f59c-48dc-832d-9ae4ea32981b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T00:56:48.182Z", + "completed":"2017-11-02T00:56:48.182Z", + "new_balance":"4089.84", + "value":"-29.88" + } + }, + { + "id":"37924d65-1a5d-4bce-8b79-db45bf21de23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T02:47:40.646Z", + "completed":"2017-11-02T02:47:40.646Z", + "new_balance":"4003.28", + "value":"-86.56" + } + }, + { + "id":"b4e1a003-b57a-4e09-9244-3a331a66e4d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T09:03:22.990Z", + "completed":"2017-11-02T09:03:22.990Z", + "new_balance":"3950.10", + "value":"-53.18" + } + }, + { + "id":"5d1a8a24-ebae-4955-a019-5e7ae12c2139", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T11:05:57.188Z", + "completed":"2017-11-02T11:05:57.188Z", + "new_balance":"3915.67", + "value":"-34.43" + } + }, + { + "id":"139f4c38-7d64-4970-95d8-fdc1c65d0416", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T11:55:27.741Z", + "completed":"2017-11-02T11:55:27.741Z", + "new_balance":"3899.74", + "value":"-15.93" + } + }, + { + "id":"8e88f731-55f0-4820-8b6c-531b834b7e59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T14:51:10.799Z", + "completed":"2017-11-02T14:51:10.799Z", + "new_balance":"5580.15", + "value":"1680.41" + } + }, + { + "id":"51f42858-c5e4-4ed6-ab49-523b4a2e73bc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T20:11:22.027Z", + "completed":"2017-11-02T20:11:22.027Z", + "new_balance":"5445.67", + "value":"-134.48" + } + }, + { + "id":"52aa4231-fdb2-4859-b879-55282ca70f71", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T23:03:34.339Z", + "completed":"2017-11-02T23:03:34.339Z", + "new_balance":"4935.13", + "value":"-510.54" + } + }, + { + "id":"7ea7f2ad-cd6f-470b-98ae-55ae81846f96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T11:00:15.777Z", + "completed":"2017-11-06T11:00:15.777Z", + "new_balance":"4920.49", + "value":"-14.64" + } + }, + { + "id":"8f7aa2d7-ea98-4d37-bbd3-1865956ff1c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T00:35:35.713Z", + "completed":"2017-11-07T00:35:35.713Z", + "new_balance":"4892.48", + "value":"-28.01" + } + }, + { + "id":"9fd01c72-071c-448e-a8a5-e313da32f57a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T01:06:41.033Z", + "completed":"2017-11-07T01:06:41.033Z", + "new_balance":"4869.11", + "value":"-23.37" + } + }, + { + "id":"e44aea2d-4159-4712-ae54-91ac005f4c54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T23:54:52.581Z", + "completed":"2017-11-07T23:54:52.581Z", + "new_balance":"4843.31", + "value":"-25.80" + } + }, + { + "id":"f0738a57-60ca-4e98-9ab1-8f96f94d7ea2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T09:31:23.269Z", + "completed":"2017-11-09T09:31:23.269Z", + "new_balance":"4769.38", + "value":"-73.93" + } + }, + { + "id":"d6702c0d-a003-478f-b8f9-5a915d586f1b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T19:03:51.520Z", + "completed":"2017-11-09T19:03:51.520Z", + "new_balance":"4765.29", + "value":"-4.09" + } + }, + { + "id":"2f84792f-4fc6-43f4-8dbc-7a741da7cbdb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T07:05:49.459Z", + "completed":"2017-11-12T07:05:49.459Z", + "new_balance":"4737.44", + "value":"-27.85" + } + }, + { + "id":"c657fe78-e35f-4450-8fb0-b0b12ca5a7e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T07:06:26.060Z", + "completed":"2017-11-12T07:06:26.060Z", + "new_balance":"4716.34", + "value":"-21.10" + } + }, + { + "id":"19e29a8d-0a35-4fe1-96bd-3d5b0ea569a5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T02:18:56.807Z", + "completed":"2017-11-14T02:18:56.807Z", + "new_balance":"4671.17", + "value":"-45.17" + } + }, + { + "id":"4a32e529-eb1f-4d88-906f-cedf5e41305d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T11:52:44.592Z", + "completed":"2017-11-14T11:52:44.592Z", + "new_balance":"4622.47", + "value":"-48.70" + } + }, + { + "id":"1abf288f-ba64-424d-9a9c-6b0376a049c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T23:55:11.030Z", + "completed":"2017-11-16T23:55:11.030Z", + "new_balance":"4616.70", + "value":"-5.77" + } + }, + { + "id":"991028cc-b0be-41ab-9ac0-9da0eb0fa946", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T20:23:21.228Z", + "completed":"2017-11-18T20:23:21.228Z", + "new_balance":"4608.18", + "value":"-8.52" + } + }, + { + "id":"d297a9c2-a8ff-4e8d-8364-aa1dc9992460", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T00:20:50.836Z", + "completed":"2017-11-20T00:20:50.836Z", + "new_balance":"4647.19", + "value":"39.01" + } + }, + { + "id":"01fdc09a-3a9e-4923-85d0-f0ce1c59c5fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T05:07:00.913Z", + "completed":"2017-11-21T05:07:00.913Z", + "new_balance":"4603.40", + "value":"-43.79" + } + }, + { + "id":"93f47695-b383-4ffc-85d5-6945483e0e67", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T13:21:58.895Z", + "completed":"2017-11-21T13:21:58.895Z", + "new_balance":"4557.77", + "value":"-45.63" + } + }, + { + "id":"bd3e1e2c-7ff7-4595-a7ec-5efba1d27321", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:36:20.431Z", + "completed":"2017-11-27T00:36:20.431Z", + "new_balance":"4524.24", + "value":"-33.53" + } + }, + { + "id":"e30d2889-6f2d-4f6e-ae0f-25f31ab9d998", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T07:22:42.618Z", + "completed":"2017-11-27T07:22:42.618Z", + "new_balance":"4498.68", + "value":"-25.56" + } + }, + { + "id":"07df9a90-5ebe-4803-88fa-3c4cc1cab5ea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:46:15.800Z", + "completed":"2017-12-01T01:46:15.800Z", + "new_balance":"3988.14", + "value":"-510.54" + } + }, + { + "id":"47d7eb36-a4a1-495c-9638-47de26e604e4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T06:44:38.392Z", + "completed":"2017-12-01T06:44:38.392Z", + "new_balance":"3853.66", + "value":"-134.48" + } + }, + { + "id":"a1b9ac3c-697e-4584-9e4f-692bdbf1e354", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T09:44:32.143Z", + "completed":"2017-12-01T09:44:32.143Z", + "new_balance":"5534.07", + "value":"1680.41" + } + }, + { + "id":"30c5492d-64c6-48bb-b4f4-ab62ff37d673", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T11:54:18.336Z", + "completed":"2017-12-01T11:54:18.336Z", + "new_balance":"5499.64", + "value":"-34.43" + } + }, + { + "id":"bf33daa8-e419-4d3b-9eb1-7ce3ba9c72d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T14:42:46.367Z", + "completed":"2017-12-01T14:42:46.367Z", + "new_balance":"5469.76", + "value":"-29.88" + } + }, + { + "id":"edb65f24-5126-401d-9d05-a435569cecaf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:04:58.589Z", + "completed":"2017-12-01T22:04:58.589Z", + "new_balance":"5416.58", + "value":"-53.18" + } + }, + { + "id":"550b2e5d-e70f-461c-8574-2a3c4d667b4e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T04:17:21.570Z", + "completed":"2017-12-04T04:17:21.570Z", + "new_balance":"5330.02", + "value":"-86.56" + } + }, + { + "id":"24715296-7c31-448e-b404-a5cedd2d9c55", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:04:19.356Z", + "completed":"2017-12-04T07:04:19.356Z", + "new_balance":"5198.18", + "value":"-131.84" + } + }, + { + "id":"244aceaf-1d27-4180-8ec3-e2ebbefbbc18", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T19:46:09.922Z", + "completed":"2017-12-12T19:46:09.922Z", + "new_balance":"5187.65", + "value":"-10.53" + } + }, + { + "id":"ea7289d4-882c-4006-ad23-67ed94443aea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T23:41:31.594Z", + "completed":"2017-12-12T23:41:31.594Z", + "new_balance":"5156.84", + "value":"-30.81" + } + }, + { + "id":"8e9b4e04-3984-44e5-9056-023316e19fd5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T17:12:12.565Z", + "completed":"2017-12-13T17:12:12.565Z", + "new_balance":"5150.37", + "value":"-6.47" + } + }, + { + "id":"251ed303-399a-4d85-a74b-fda14eac8426", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T20:14:25.596Z", + "completed":"2017-12-13T20:14:25.596Z", + "new_balance":"5069.16", + "value":"-81.21" + } + }, + { + "id":"51ed9edc-5ef3-42c2-9d3b-433c5dcfdf6e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T21:03:06.385Z", + "completed":"2017-12-16T21:03:06.385Z", + "new_balance":"5027.93", + "value":"-41.23" + } + }, + { + "id":"cf0248e8-67f4-49de-8fc4-a1fb80f577a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T03:43:00.051Z", + "completed":"2017-12-18T03:43:00.051Z", + "new_balance":"5023.16", + "value":"-4.77" + } + }, + { + "id":"bc1f36a7-80ce-4d03-b8d9-59048fc35071", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:01:47.261Z", + "completed":"2017-12-19T11:01:47.261Z", + "new_balance":"4939.36", + "value":"-83.80" + } + }, + { + "id":"387e293a-6e40-42a1-8bb0-6be682225329", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:21:27.683Z", + "completed":"2017-12-19T14:21:27.683Z", + "new_balance":"4858.15", + "value":"-81.21" + } + }, + { + "id":"3c493df3-74fd-438a-a24a-0cbf71b68778", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T09:52:32.542Z", + "completed":"2017-12-20T09:52:32.542Z", + "new_balance":"4815.81", + "value":"-42.34" + } + }, + { + "id":"150b9efa-35f8-4c65-b570-2b8c6e5bada6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T23:43:43.116Z", + "completed":"2017-12-21T23:43:43.116Z", + "new_balance":"4732.01", + "value":"-83.80" + } + }, + { + "id":"ee7f48c7-9465-46c0-869c-4b3166986259", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T09:33:24.914Z", + "completed":"2017-12-24T09:33:24.914Z", + "new_balance":"4686.00", + "value":"-46.01" + } + }, + { + "id":"18c2666d-4eef-487b-867f-cdca9d0a6be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T11:33:34.807Z", + "completed":"2017-12-24T11:33:34.807Z", + "new_balance":"4672.76", + "value":"-13.24" + } + }, + { + "id":"11b32237-37b5-461d-9181-c2ca633060ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T18:33:24.188Z", + "completed":"2017-12-24T18:33:24.188Z", + "new_balance":"4665.48", + "value":"-7.28" + } + }, + { + "id":"d314328a-5b0d-4237-b9c5-5f8c6e889e7e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T20:30:35.444Z", + "completed":"2017-12-24T20:30:35.444Z", + "new_balance":"4574.01", + "value":"-91.47" + } + }, + { + "id":"cc16bca0-fb9d-4411-9dfc-a1c52f41babb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T22:58:16.442Z", + "completed":"2017-12-24T22:58:16.442Z", + "new_balance":"4570.43", + "value":"-3.58" + } + }, + { + "id":"b61ada05-aebb-4300-8d90-c5d1fa0f75b2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:30:17.208Z", + "completed":"2017-12-24T23:30:17.208Z", + "new_balance":"4543.13", + "value":"-27.30" + } + }, + { + "id":"a985417c-22b0-435c-b1a4-c2e17a4dc8fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T03:13:25.108Z", + "completed":"2017-12-28T03:13:25.108Z", + "new_balance":"4536.14", + "value":"-6.99" + } + }, + { + "id":"977cf2d5-b804-434e-a91f-acd65ce2a1d6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T05:03:07.870Z", + "completed":"2017-12-28T05:03:07.870Z", + "new_balance":"4489.34", + "value":"-46.80" + } + }, + { + "id":"5d73f4d0-8eb2-4ad7-a9dd-91d7c2793932", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T07:38:41.420Z", + "completed":"2017-12-28T07:38:41.420Z", + "new_balance":"4407.93", + "value":"-81.41" + } + }, + { + "id":"955d8edb-1139-4f48-bbdb-a1d3c59cfd53", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T14:10:41.659Z", + "completed":"2017-12-28T14:10:41.659Z", + "new_balance":"4400.94", + "value":"-6.99" + } + }, + { + "id":"018a5627-e54b-44f8-8eba-3eb225d864cf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T01:07:39.424Z", + "completed":"2017-12-29T01:07:39.424Z", + "new_balance":"4394.47", + "value":"-6.47" + } + }, + { + "id":"9d9de7e2-57bf-43d9-93bc-b8bc585c715b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T10:32:42.146Z", + "completed":"2017-12-29T10:32:42.146Z", + "new_balance":"4360.56", + "value":"-33.91" + } + }, + { + "id":"446fd455-fa40-4baa-95ff-6ff21f466d0c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T16:40:33.165Z", + "completed":"2017-12-29T16:40:33.165Z", + "new_balance":"4287.05", + "value":"-73.51" + } + }, + { + "id":"090c40cc-2fb0-47d0-8f2a-512a8f5a6d1f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T21:43:01.426Z", + "completed":"2017-12-29T21:43:01.426Z", + "new_balance":"4236.04", + "value":"-51.01" + } + }, + { + "id":"280aa767-2475-4f2e-a055-3218a9bc504d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:11:35.459Z", + "completed":"2017-12-29T22:11:35.459Z", + "new_balance":"4177.14", + "value":"-58.90" + } + }, + { + "id":"07ca1edc-99b7-4bbe-901a-5d09b2b6ad00", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:20:31.326Z", + "completed":"2017-12-29T22:20:31.326Z", + "new_balance":"4140.19", + "value":"-36.95" + } + }, + { + "id":"d0563107-e4a4-40eb-9f15-cf7d85ebfd38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T07:22:35.783Z", + "completed":"2017-12-30T07:22:35.783Z", + "new_balance":"4128.96", + "value":"-11.23" + } + }, + { + "id":"1b183e56-1086-4677-ab12-26f2e6342236", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T15:50:41.764Z", + "completed":"2017-12-30T15:50:41.764Z", + "new_balance":"4100.10", + "value":"-28.86" + } + }, + { + "id":"9522f99a-527b-4227-8a5d-b5ae0fe85b99", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T19:02:57.843Z", + "completed":"2017-12-30T19:02:57.843Z", + "new_balance":"4094.22", + "value":"-5.88" + } + }, + { + "id":"9401a55c-c07b-46f0-8509-71bef8b8761d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T19:59:39.638Z", + "completed":"2017-12-30T19:59:39.638Z", + "new_balance":"4048.71", + "value":"-45.51" + } + }, + { + "id":"a106de03-d44b-4b72-819f-834ee149c724", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T03:40:13.725Z", + "completed":"2017-12-31T03:40:13.725Z", + "new_balance":"4014.68", + "value":"-34.03" + } + }, + { + "id":"e8e5071a-a261-40b3-8cc1-1edb9282d904", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T05:23:33.112Z", + "completed":"2017-12-31T05:23:33.112Z", + "new_balance":"3825.41", + "value":"-189.27" + } + }, + { + "id":"49e0508c-7bbd-4085-8f08-a0f22b7c2f0d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T11:12:54.492Z", + "completed":"2017-12-31T11:12:54.492Z", + "new_balance":"3809.33", + "value":"-16.08" + } + }, + { + "id":"24834f9f-e9eb-412b-b941-f6d37cbf09df", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T22:18:11.919Z", + "completed":"2017-12-31T22:18:11.919Z", + "new_balance":"3782.36", + "value":"-26.97" + } + }, + { + "id":"e1c7a3a7-6a79-4561-8ee5-c27a6c5590d1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T13:39:10.604Z", + "completed":"2016-01-01T13:39:10.604Z", + "new_balance":"5058.46", + "value":"-61.87" + } + }, + { + "id":"91a7e248-da42-4c42-9295-af4b1096ff8b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T16:44:17.933Z", + "completed":"2016-01-01T16:44:17.933Z", + "new_balance":"4996.59", + "value":"-61.87" + } + }, + { + "id":"08f7ccf5-9c69-45c1-9750-5ad83f8f219d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T16:24:45.345Z", + "completed":"2016-01-03T16:24:45.345Z", + "new_balance":"4962.16", + "value":"-34.43" + } + }, + { + "id":"ec18bc20-269b-4df3-83ea-d191b7d2836e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T17:36:34.663Z", + "completed":"2016-01-03T17:36:34.663Z", + "new_balance":"4937.60", + "value":"-24.56" + } + }, + { + "id":"1f969012-1a7c-412b-96d6-c94cc9717918", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T22:24:12.297Z", + "completed":"2016-01-03T22:24:12.297Z", + "new_balance":"4863.67", + "value":"-73.93" + } + }, + { + "id":"c58fa878-73ef-42d0-a597-af99cf007241", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T23:02:29.021Z", + "completed":"2016-01-03T23:02:29.021Z", + "new_balance":"4353.13", + "value":"-510.54" + } + }, + { + "id":"145e0ed9-277a-4b02-8147-8dec8f6a6ebd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T15:11:28.208Z", + "completed":"2016-01-05T15:11:28.208Z", + "new_balance":"4299.95", + "value":"-53.18" + } + }, + { + "id":"07a7c79f-9212-4918-9724-8ed8306340c2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T16:56:51.889Z", + "completed":"2016-01-05T16:56:51.889Z", + "new_balance":"4255.97", + "value":"-43.98" + } + }, + { + "id":"30ab69c7-4d46-45a0-bc53-db90e990501d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T21:07:28.333Z", + "completed":"2016-01-05T21:07:28.333Z", + "new_balance":"4242.96", + "value":"-13.01" + } + }, + { + "id":"42a68156-01e5-44b2-9154-189605e9ef74", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T05:31:38.385Z", + "completed":"2016-01-06T05:31:38.385Z", + "new_balance":"4213.08", + "value":"-29.88" + } + }, + { + "id":"c8b06a34-b958-49dc-9a50-8a695c5cc8af", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T15:00:08.821Z", + "completed":"2016-01-06T15:00:08.821Z", + "new_balance":"4190.39", + "value":"-22.69" + } + }, + { + "id":"7bfd76b7-e48e-4435-b477-80c90ad1c932", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T21:45:14.163Z", + "completed":"2016-01-07T21:45:14.163Z", + "new_balance":"4151.22", + "value":"-39.17" + } + }, + { + "id":"949e7f58-dd76-4706-8e19-57bfb3657f37", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T02:49:45.774Z", + "completed":"2016-01-10T02:49:45.774Z", + "new_balance":"4126.35", + "value":"-24.87" + } + }, + { + "id":"fae66f39-62e7-4fe6-9cb0-5492cf870c1e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T13:03:10.035Z", + "completed":"2016-01-10T13:03:10.035Z", + "new_balance":"4073.17", + "value":"-53.18" + } + }, + { + "id":"87716124-f1f0-482c-b953-27f7a04bedf2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T01:39:49.436Z", + "completed":"2016-01-12T01:39:49.436Z", + "new_balance":"4053.10", + "value":"-20.07" + } + }, + { + "id":"892a6b35-0c24-4cdd-bcc1-11dbfa95046b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T14:23:22.146Z", + "completed":"2016-01-12T14:23:22.146Z", + "new_balance":"4013.93", + "value":"-39.17" + } + }, + { + "id":"0df30882-bc34-4e0c-b4ca-9f18595be62f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:03:14.756Z", + "completed":"2016-01-12T18:03:14.756Z", + "new_balance":"3989.37", + "value":"-24.56" + } + }, + { + "id":"b1186f67-51c8-403a-a03e-c86c92d71e83", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T08:39:08.473Z", + "completed":"2016-01-15T08:39:08.473Z", + "new_balance":"3972.97", + "value":"-16.40" + } + }, + { + "id":"eb1038c8-ca72-4904-ba3e-7bf760aa6407", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T06:48:17.509Z", + "completed":"2016-01-16T06:48:17.509Z", + "new_balance":"3919.79", + "value":"-53.18" + } + }, + { + "id":"60c7ed1a-4d37-45c8-8800-73e2a2919293", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T10:30:12.167Z", + "completed":"2016-01-16T10:30:12.167Z", + "new_balance":"3913.64", + "value":"-6.15" + } + }, + { + "id":"8edfc008-b9d7-494f-b224-a942c507da4e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T04:01:12.051Z", + "completed":"2016-01-17T04:01:12.051Z", + "new_balance":"3882.32", + "value":"-31.32" + } + }, + { + "id":"bb1ebc33-bbec-4345-8afa-9281da4ddb2b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T12:04:00.245Z", + "completed":"2016-01-17T12:04:00.245Z", + "new_balance":"3821.14", + "value":"-61.18" + } + }, + { + "id":"19450283-2376-4721-b95a-55f100c98ec5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T04:49:01.578Z", + "completed":"2016-01-19T04:49:01.578Z", + "new_balance":"3790.74", + "value":"-30.40" + } + }, + { + "id":"15094b41-d8cb-45f3-a858-a686a15808d6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T09:27:44.357Z", + "completed":"2016-01-20T09:27:44.357Z", + "new_balance":"3737.56", + "value":"-53.18" + } + }, + { + "id":"02a89855-55b4-4047-8423-13c09ddecea1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T05:27:20.636Z", + "completed":"2016-01-23T05:27:20.636Z", + "new_balance":"3721.73", + "value":"-15.83" + } + }, + { + "id":"2ca55baf-2e74-4745-b275-de0ee0e68f1b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T14:15:44.894Z", + "completed":"2016-01-26T14:15:44.894Z", + "new_balance":"3663.25", + "value":"-58.48" + } + }, + { + "id":"4ebf9a4c-218f-4710-aabd-080853102e3f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T07:57:57.771Z", + "completed":"2016-01-27T07:57:57.771Z", + "new_balance":"4851.76", + "value":"1188.51" + } + }, + { + "id":"b671e1e6-d1a5-4774-93a2-995166b977ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T01:07:23.089Z", + "completed":"2016-01-28T01:07:23.089Z", + "new_balance":"4817.33", + "value":"-34.43" + } + }, + { + "id":"9c754d5f-ed30-454c-b904-c7b9819e0106", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T12:34:40.005Z", + "completed":"2016-01-30T12:34:40.005Z", + "new_balance":"4774.99", + "value":"-42.34" + } + }, + { + "id":"bcadcd23-570d-40cd-aaa5-a71aa1cbcf90", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T09:58:28.878Z", + "completed":"2016-02-03T09:58:28.878Z", + "new_balance":"4740.56", + "value":"-34.43" + } + }, + { + "id":"cbd7a3dc-3d0c-4105-a5a8-bb5970e34c78", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T13:04:56.849Z", + "completed":"2016-02-03T13:04:56.849Z", + "new_balance":"4666.63", + "value":"-73.93" + } + }, + { + "id":"edf1ce30-aa28-4a93-8605-2132a7fc8187", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T14:02:13.232Z", + "completed":"2016-02-03T14:02:13.232Z", + "new_balance":"4156.09", + "value":"-510.54" + } + }, + { + "id":"e096d6d2-6c9a-4052-81f8-443e8efd51ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T21:03:26.180Z", + "completed":"2016-02-03T21:03:26.180Z", + "new_balance":"4131.53", + "value":"-24.56" + } + }, + { + "id":"f971dd47-94b9-4aeb-ac3a-674854a71a81", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:17:25.122Z", + "completed":"2016-02-08T15:17:25.122Z", + "new_balance":"4087.55", + "value":"-43.98" + } + }, + { + "id":"71b8530b-7977-4d49-b794-70a532accc4d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T16:40:59.485Z", + "completed":"2016-02-08T16:40:59.485Z", + "new_balance":"4034.37", + "value":"-53.18" + } + }, + { + "id":"cf9e0ad1-4aaf-4763-8e48-76b33130aafe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T03:40:51.397Z", + "completed":"2016-02-11T03:40:51.397Z", + "new_balance":"4045.26", + "value":"10.89" + } + }, + { + "id":"15e40b60-f276-4eb1-8a5b-f2ce0d032f30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T02:59:08.626Z", + "completed":"2016-02-13T02:59:08.626Z", + "new_balance":"4015.38", + "value":"-29.88" + } + }, + { + "id":"e35d64e2-be67-4721-ad94-2ea7752bf66b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T16:16:33.136Z", + "completed":"2016-02-14T16:16:33.136Z", + "new_balance":"3987.53", + "value":"-27.85" + } + }, + { + "id":"4c016af2-ec73-42f2-a829-1d23367dcf6f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T20:25:07.967Z", + "completed":"2016-02-17T20:25:07.967Z", + "new_balance":"3976.62", + "value":"-10.91" + } + }, + { + "id":"2d42cb53-0e52-40c2-8259-68ca0d64235a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T19:56:56.332Z", + "completed":"2016-02-21T19:56:56.332Z", + "new_balance":"3935.49", + "value":"-41.13" + } + }, + { + "id":"6f8dc519-2603-4f49-9fe9-ea5802752ed7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:23:44.025Z", + "completed":"2016-02-23T13:23:44.025Z", + "new_balance":"3894.57", + "value":"-40.92" + } + }, + { + "id":"c457eed0-3d40-417c-b731-11d349f51c1d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T14:21:22.643Z", + "completed":"2016-02-23T14:21:22.643Z", + "new_balance":"3841.39", + "value":"-53.18" + } + }, + { + "id":"83f5eb6e-0a17-4b98-ada2-56fc30735341", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T08:45:15.686Z", + "completed":"2016-02-24T08:45:15.686Z", + "new_balance":"3830.48", + "value":"-10.91" + } + }, + { + "id":"291f5d3a-fbef-4c26-99f4-609012abee47", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T09:53:45.440Z", + "completed":"2016-02-27T09:53:45.440Z", + "new_balance":"5018.99", + "value":"1188.51" + } + }, + { + "id":"1c9fe517-b72e-47ab-9760-dfd5a282d0ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T11:09:54.363Z", + "completed":"2016-02-27T11:09:54.363Z", + "new_balance":"5002.25", + "value":"-16.74" + } + }, + { + "id":"cc73796b-bfad-48ce-85da-bdc9f10d2456", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T15:46:23.427Z", + "completed":"2016-02-27T15:46:23.427Z", + "new_balance":"4943.77", + "value":"-58.48" + } + }, + { + "id":"82c179cd-e1ff-4c13-bea3-4b0bfb83a768", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T11:09:11.209Z", + "completed":"2016-02-28T11:09:11.209Z", + "new_balance":"4901.43", + "value":"-42.34" + } + }, + { + "id":"a78a9c2d-57ed-4c0a-bcb8-1f69fd311d15", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T17:33:21.172Z", + "completed":"2016-02-28T17:33:21.172Z", + "new_balance":"4867.00", + "value":"-34.43" + } + }, + { + "id":"72d44f0d-0d84-4da2-a488-73602b5672c1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T10:13:51.464Z", + "completed":"2016-03-01T10:13:51.464Z", + "new_balance":"4805.13", + "value":"-61.87" + } + }, + { + "id":"6926ce0a-2373-47e7-8025-f95762376191", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T00:55:41.196Z", + "completed":"2016-03-03T00:55:41.196Z", + "new_balance":"4770.70", + "value":"-34.43" + } + }, + { + "id":"35ae6f4f-ef07-4755-81d4-2d8553611980", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T02:10:05.862Z", + "completed":"2016-03-03T02:10:05.862Z", + "new_balance":"4260.16", + "value":"-510.54" + } + }, + { + "id":"bba65514-5459-423a-aa30-3b7fe71e95c5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T18:18:07.072Z", + "completed":"2016-03-03T18:18:07.072Z", + "new_balance":"4186.23", + "value":"-73.93" + } + }, + { + "id":"d4695715-1fd0-4c6b-a197-58fae1a73b35", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T19:52:50.197Z", + "completed":"2016-03-03T19:52:50.197Z", + "new_balance":"4161.67", + "value":"-24.56" + } + }, + { + "id":"d595853e-da7e-4651-858c-0f004eb1fc91", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T01:47:13.939Z", + "completed":"2016-03-05T01:47:13.939Z", + "new_balance":"4108.49", + "value":"-53.18" + } + }, + { + "id":"2cfbb8ef-3537-49e9-8bd1-a0406281e1bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T14:48:47.668Z", + "completed":"2016-03-05T14:48:47.668Z", + "new_balance":"4059.83", + "value":"-48.66" + } + }, + { + "id":"f7fd24e8-4819-4ab5-bc9a-cbd2b2fd3b7b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T00:36:55.628Z", + "completed":"2016-03-07T00:36:55.628Z", + "new_balance":"4046.16", + "value":"-13.67" + } + }, + { + "id":"60879d45-09df-4b9e-b2f1-ecf449ae69e3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T17:10:37.166Z", + "completed":"2016-03-09T17:10:37.166Z", + "new_balance":"3992.98", + "value":"-53.18" + } + }, + { + "id":"4913e4d5-d86b-43c4-acb2-80fa98336af6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T18:06:04.686Z", + "completed":"2016-03-11T18:06:04.686Z", + "new_balance":"3981.98", + "value":"-11.00" + } + }, + { + "id":"56774d26-2e23-4d7c-b09a-83bfe48d5345", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T12:00:51.865Z", + "completed":"2016-03-13T12:00:51.865Z", + "new_balance":"3924.30", + "value":"-57.68" + } + }, + { + "id":"7d51c7f5-8c6c-4b42-b94c-d832ab2166d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T00:30:10.670Z", + "completed":"2016-03-14T00:30:10.670Z", + "new_balance":"3987.66", + "value":"63.36" + } + }, + { + "id":"208357f8-c0f5-4826-9fc2-fb14ac8c26c6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T13:45:31.870Z", + "completed":"2016-03-14T13:45:31.870Z", + "new_balance":"3975.73", + "value":"-11.93" + } + }, + { + "id":"78b13a40-5ab8-4d7d-8ff7-b56e2b618c80", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T10:36:05.869Z", + "completed":"2016-03-15T10:36:05.869Z", + "new_balance":"3933.39", + "value":"-42.34" + } + }, + { + "id":"0aee8933-ad1f-4ab4-8865-ad8a898e1020", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T10:00:01.455Z", + "completed":"2016-03-26T10:00:01.455Z", + "new_balance":"3906.55", + "value":"-26.84" + } + }, + { + "id":"f5729125-ea0a-4862-b7b7-a88154164014", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:47:15.093Z", + "completed":"2016-03-26T13:47:15.093Z", + "new_balance":"3881.18", + "value":"-25.37" + } + }, + { + "id":"e153f2a0-ccc6-4116-bafc-9bb35f04e11b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T16:09:22.110Z", + "completed":"2016-03-26T16:09:22.110Z", + "new_balance":"3834.25", + "value":"-46.93" + } + }, + { + "id":"bda6f2ca-cdf8-4f13-8304-efb75c6cb749", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T00:45:31.276Z", + "completed":"2016-03-27T00:45:31.276Z", + "new_balance":"3781.07", + "value":"-53.18" + } + }, + { + "id":"da3362e1-2b33-4d4e-988a-fc0b871bcae0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T04:07:15.379Z", + "completed":"2016-03-27T04:07:15.379Z", + "new_balance":"4969.58", + "value":"1188.51" + } + }, + { + "id":"35e9ac1a-230d-4f7e-b6e9-c987c9c99eb3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T13:22:33.535Z", + "completed":"2016-03-27T13:22:33.535Z", + "new_balance":"4903.00", + "value":"-66.58" + } + }, + { + "id":"77c2a67a-931a-4598-a2c8-9ba759c388ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T06:01:27.954Z", + "completed":"2016-03-28T06:01:27.954Z", + "new_balance":"4868.57", + "value":"-34.43" + } + }, + { + "id":"455de52d-696e-4e64-a88d-55343aa2e47a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T05:55:44.413Z", + "completed":"2016-03-30T05:55:44.413Z", + "new_balance":"4826.23", + "value":"-42.34" + } + }, + { + "id":"95c10b64-67cc-414f-ac52-2e1f7fa521d4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:15:28.707Z", + "completed":"2016-04-01T09:15:28.707Z", + "new_balance":"4752.30", + "value":"-73.93" + } + }, + { + "id":"63623866-d8bb-43f7-9d40-5aaf3e1e76a0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T13:33:38.249Z", + "completed":"2016-04-01T13:33:38.249Z", + "new_balance":"4727.74", + "value":"-24.56" + } + }, + { + "id":"940744b9-c4e1-464f-b17b-b5f531c32aa9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:11:46.369Z", + "completed":"2016-04-01T14:11:46.369Z", + "new_balance":"4217.20", + "value":"-510.54" + } + }, + { + "id":"5fd222bb-a4dc-4543-be7c-df3ece2931e0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T14:19:17.497Z", + "completed":"2016-04-01T14:19:17.497Z", + "new_balance":"4182.77", + "value":"-34.43" + } + }, + { + "id":"8fc7a056-d20c-4fc4-9297-d4cad11d4294", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:42:04.595Z", + "completed":"2016-04-01T21:42:04.595Z", + "new_balance":"4120.90", + "value":"-61.87" + } + }, + { + "id":"3d69e16b-6798-48d0-b742-9940e12e7d1d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T03:08:36.596Z", + "completed":"2016-04-05T03:08:36.596Z", + "new_balance":"4098.21", + "value":"-22.69" + } + }, + { + "id":"913f2725-05d0-4ae4-9ba7-f9bff1629645", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T11:58:34.948Z", + "completed":"2016-04-05T11:58:34.948Z", + "new_balance":"4085.20", + "value":"-13.01" + } + }, + { + "id":"e5ccdc69-a1ba-408a-8548-b2594054cf9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:01:53.101Z", + "completed":"2016-04-05T15:01:53.101Z", + "new_balance":"4041.22", + "value":"-43.98" + } + }, + { + "id":"bb9f3682-147a-4974-b85b-833c79f5862e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T22:12:18.809Z", + "completed":"2016-04-05T22:12:18.809Z", + "new_balance":"3988.04", + "value":"-53.18" + } + }, + { + "id":"84c9a374-0e59-446f-8a80-2a5230c9586c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T05:50:22.941Z", + "completed":"2016-04-07T05:50:22.941Z", + "new_balance":"3958.16", + "value":"-29.88" + } + }, + { + "id":"3fba4d83-765b-44ca-9802-afc82f846221", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T04:25:24.177Z", + "completed":"2016-04-09T04:25:24.177Z", + "new_balance":"3904.98", + "value":"-53.18" + } + }, + { + "id":"d332e81c-2aa9-4a90-9042-8a5ea28ca104", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T19:48:33.968Z", + "completed":"2016-04-09T19:48:33.968Z", + "new_balance":"3880.11", + "value":"-24.87" + } + }, + { + "id":"6209a7cb-d618-4f29-8ef8-414ec3dfe5cf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T13:30:29.779Z", + "completed":"2016-04-10T13:30:29.779Z", + "new_balance":"3855.55", + "value":"-24.56" + } + }, + { + "id":"61d66d0b-dc76-4720-b36b-32e739b011f8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T13:44:28.176Z", + "completed":"2016-04-10T13:44:28.176Z", + "new_balance":"3835.48", + "value":"-20.07" + } + }, + { + "id":"c1856a80-b2be-4a8c-8411-ebd93d223d79", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T21:15:05.474Z", + "completed":"2016-04-10T21:15:05.474Z", + "new_balance":"3796.31", + "value":"-39.17" + } + }, + { + "id":"5dfa990d-839b-4d79-9169-c400853ae969", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T22:32:45.700Z", + "completed":"2016-04-10T22:32:45.700Z", + "new_balance":"3779.91", + "value":"-16.40" + } + }, + { + "id":"07c5690d-c762-4365-9701-bf1c6acc64b3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T03:48:35.669Z", + "completed":"2016-04-11T03:48:35.669Z", + "new_balance":"3773.76", + "value":"-6.15" + } + }, + { + "id":"4a0d2ce2-702f-45b6-a28f-412afc69b957", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T13:42:03.137Z", + "completed":"2016-04-11T13:42:03.137Z", + "new_balance":"3743.36", + "value":"-30.40" + } + }, + { + "id":"39686c08-ad96-4051-94bc-4ab9a692f493", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T14:11:06.760Z", + "completed":"2016-04-11T14:11:06.760Z", + "new_balance":"3712.04", + "value":"-31.32" + } + }, + { + "id":"f73d3bdb-fa7c-4f86-8a5b-7a13684b9fa6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T19:24:15.985Z", + "completed":"2016-04-11T19:24:15.985Z", + "new_balance":"3650.86", + "value":"-61.18" + } + }, + { + "id":"f518a1bd-ba88-4a22-886a-87d6e5055185", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T19:52:17.871Z", + "completed":"2016-04-11T19:52:17.871Z", + "new_balance":"3597.68", + "value":"-53.18" + } + }, + { + "id":"c2c06a40-089b-4fc8-9eb9-d332e6fb0e69", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T01:10:52.340Z", + "completed":"2016-04-21T01:10:52.340Z", + "new_balance":"3544.50", + "value":"-53.18" + } + }, + { + "id":"81f09471-bd7a-4075-9026-7fb372819354", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T22:45:39.446Z", + "completed":"2016-04-23T22:45:39.446Z", + "new_balance":"3528.67", + "value":"-15.83" + } + }, + { + "id":"0e852554-f61a-4715-b1cf-aa4d97782574", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T06:23:31.164Z", + "completed":"2016-04-29T06:23:31.164Z", + "new_balance":"4717.18", + "value":"1188.51" + } + }, + { + "id":"1b774c7b-624c-4743-890c-3fe0d2fd15fb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T12:09:10.558Z", + "completed":"2016-04-29T12:09:10.558Z", + "new_balance":"4682.75", + "value":"-34.43" + } + }, + { + "id":"8c313c9e-4254-425b-a7f4-46dd096c4cfe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T23:04:27.781Z", + "completed":"2016-04-29T23:04:27.781Z", + "new_balance":"4624.27", + "value":"-58.48" + } + }, + { + "id":"19ce724d-dddf-4026-893c-7db3443fa9dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T13:04:49.480Z", + "completed":"2016-04-30T13:04:49.480Z", + "new_balance":"4581.93", + "value":"-42.34" + } + }, + { + "id":"51b34af5-5537-473e-bb0c-a5be62100a31", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T02:13:03.916Z", + "completed":"2016-05-02T02:13:03.916Z", + "new_balance":"4508.00", + "value":"-73.93" + } + }, + { + "id":"ebe4e30f-7190-49ec-b50a-1e65b9c0cc5c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T06:50:58.932Z", + "completed":"2016-05-02T06:50:58.932Z", + "new_balance":"3997.46", + "value":"-510.54" + } + }, + { + "id":"64c73f3f-41a8-4cf6-a811-3c73a6ef446f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T12:03:59.856Z", + "completed":"2016-05-02T12:03:59.856Z", + "new_balance":"3935.59", + "value":"-61.87" + } + }, + { + "id":"50f7dbe1-280d-4c4b-ad2a-c0ec30b57c8f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T20:25:55.322Z", + "completed":"2016-05-02T20:25:55.322Z", + "new_balance":"3911.03", + "value":"-24.56" + } + }, + { + "id":"10450570-914a-4114-adc6-d295742cc80a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T05:57:48.680Z", + "completed":"2016-05-06T05:57:48.680Z", + "new_balance":"3867.05", + "value":"-43.98" + } + }, + { + "id":"a73f1f13-581e-481d-9d33-dfefc30685d0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T10:11:07.521Z", + "completed":"2016-05-07T10:11:07.521Z", + "new_balance":"3839.20", + "value":"-27.85" + } + }, + { + "id":"d5ff80a5-8943-4b31-9df7-5305e06446a1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T10:39:04.486Z", + "completed":"2016-05-07T10:39:04.486Z", + "new_balance":"3809.32", + "value":"-29.88" + } + }, + { + "id":"cd8dba43-94b6-4625-b961-4e3c108fb979", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T17:23:38.304Z", + "completed":"2016-05-07T17:23:38.304Z", + "new_balance":"3798.41", + "value":"-10.91" + } + }, + { + "id":"fc8fbeae-cd4f-4159-807f-76db861f5bae", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T18:33:44.389Z", + "completed":"2016-05-07T18:33:44.389Z", + "new_balance":"3757.28", + "value":"-41.13" + } + }, + { + "id":"dbd61dc0-35b5-4f6f-89a2-4618e0958ca3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T19:20:39.688Z", + "completed":"2016-05-08T19:20:39.688Z", + "new_balance":"3716.36", + "value":"-40.92" + } + }, + { + "id":"d1cfa7ff-c279-481b-ab2c-f801e69778d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T06:22:08.525Z", + "completed":"2016-05-09T06:22:08.525Z", + "new_balance":"3681.93", + "value":"-34.43" + } + }, + { + "id":"ba7fe130-8675-4f10-8536-8c77c70873f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T15:41:22.954Z", + "completed":"2016-05-13T15:41:22.954Z", + "new_balance":"3628.75", + "value":"-53.18" + } + }, + { + "id":"933e44d9-5174-431d-b21a-14f0e89a9294", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T08:26:27.460Z", + "completed":"2016-05-26T08:26:27.460Z", + "new_balance":"3575.57", + "value":"-53.18" + } + }, + { + "id":"7a99caaa-d85a-469f-b7aa-74b2e76713a6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:11:14.805Z", + "completed":"2016-05-26T21:11:14.805Z", + "new_balance":"3564.66", + "value":"-10.91" + } + }, + { + "id":"a71f8142-8a89-44da-bf74-c0ba6501a5e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T13:25:35.817Z", + "completed":"2016-05-27T13:25:35.817Z", + "new_balance":"3547.92", + "value":"-16.74" + } + }, + { + "id":"cac32a34-edff-4e85-a967-179a0be3a3a3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T21:41:55.842Z", + "completed":"2016-05-27T21:41:55.842Z", + "new_balance":"3489.44", + "value":"-58.48" + } + }, + { + "id":"2cb65be3-71c3-496b-93bb-9cd5b1e0c431", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T04:06:04.820Z", + "completed":"2016-05-30T04:06:04.820Z", + "new_balance":"4677.95", + "value":"1188.51" + } + }, + { + "id":"92dd9c59-ec03-440d-bba0-78b4e948c1c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T15:56:33.117Z", + "completed":"2016-05-30T15:56:33.117Z", + "new_balance":"4635.61", + "value":"-42.34" + } + }, + { + "id":"202c0726-77b9-49a7-b484-82684cb86abe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T22:57:08.902Z", + "completed":"2016-05-30T22:57:08.902Z", + "new_balance":"4601.18", + "value":"-34.43" + } + }, + { + "id":"e13465e5-70f7-4a23-8e15-1c8d3f5ab02c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T02:05:20.030Z", + "completed":"2016-06-01T02:05:20.030Z", + "new_balance":"4548.00", + "value":"-53.18" + } + }, + { + "id":"1c0a3c5c-db91-439d-99f9-bf51119f30a0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T05:34:47.182Z", + "completed":"2016-06-01T05:34:47.182Z", + "new_balance":"4534.33", + "value":"-13.67" + } + }, + { + "id":"5f4bb6bc-b811-445b-8ef3-3e87543b7cb0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T07:01:25.837Z", + "completed":"2016-06-01T07:01:25.837Z", + "new_balance":"4509.77", + "value":"-24.56" + } + }, + { + "id":"1489765b-7a1f-4b2c-9040-0a07ef62f8fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T10:31:45.505Z", + "completed":"2016-06-01T10:31:45.505Z", + "new_balance":"4456.59", + "value":"-53.18" + } + }, + { + "id":"1f0eef89-d365-48d1-acbc-f9830363626b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T15:31:10.534Z", + "completed":"2016-06-01T15:31:10.534Z", + "new_balance":"4422.16", + "value":"-34.43" + } + }, + { + "id":"368553a3-e5db-44e6-832c-8ab4447a21d0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:57:01.618Z", + "completed":"2016-06-01T15:57:01.618Z", + "new_balance":"4360.29", + "value":"-61.87" + } + }, + { + "id":"b842be38-fea1-4bed-bf90-cff698814b9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:38:46.848Z", + "completed":"2016-06-01T16:38:46.848Z", + "new_balance":"4286.36", + "value":"-73.93" + } + }, + { + "id":"8457ed3b-df57-4f6f-ad19-99a6f2f4c821", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T20:12:50.349Z", + "completed":"2016-06-01T20:12:50.349Z", + "new_balance":"3775.82", + "value":"-510.54" + } + }, + { + "id":"bead0a08-951c-4bc1-9919-365cffd6eeab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T23:19:53.516Z", + "completed":"2016-06-01T23:19:53.516Z", + "new_balance":"3727.16", + "value":"-48.66" + } + }, + { + "id":"eedf549d-b67e-45f0-917a-f2c286616f7f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T01:15:53.939Z", + "completed":"2016-06-02T01:15:53.939Z", + "new_balance":"3715.23", + "value":"-11.93" + } + }, + { + "id":"1db67eff-a50b-4adb-a272-bce4a7ed52fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T02:48:28.969Z", + "completed":"2016-06-02T02:48:28.969Z", + "new_balance":"3704.23", + "value":"-11.00" + } + }, + { + "id":"5bddf0fa-b325-4eaa-bea9-2736ac2c1442", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T18:38:58.675Z", + "completed":"2016-06-02T18:38:58.675Z", + "new_balance":"3646.55", + "value":"-57.68" + } + }, + { + "id":"abba748c-009a-40d5-8e7f-494a2561a3a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T06:34:39.273Z", + "completed":"2016-06-04T06:34:39.273Z", + "new_balance":"3599.62", + "value":"-46.93" + } + }, + { + "id":"d3f75cf5-cdaf-4195-ad29-720206ddf5b7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T06:51:59.873Z", + "completed":"2016-06-04T06:51:59.873Z", + "new_balance":"3557.28", + "value":"-42.34" + } + }, + { + "id":"3f32fe6f-2c74-473b-8ac4-e55f7be66042", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T22:59:25.759Z", + "completed":"2016-06-04T22:59:25.759Z", + "new_balance":"3531.91", + "value":"-25.37" + } + }, + { + "id":"8ff8c921-b40f-4718-8b7f-1302c4e14a07", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T15:00:48.835Z", + "completed":"2016-06-05T15:00:48.835Z", + "new_balance":"3505.07", + "value":"-26.84" + } + }, + { + "id":"add20f64-88b8-45f7-969d-e99aae5c587c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T19:23:41.949Z", + "completed":"2016-06-05T19:23:41.949Z", + "new_balance":"3438.49", + "value":"-66.58" + } + }, + { + "id":"e10c0f47-2d36-43fe-a94f-eb059ac354c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T02:29:04.767Z", + "completed":"2016-06-18T02:29:04.767Z", + "new_balance":"3385.31", + "value":"-53.18" + } + }, + { + "id":"cc36601b-c723-44f1-83a6-705082e15422", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T04:33:21.885Z", + "completed":"2016-06-30T04:33:21.885Z", + "new_balance":"3343.78", + "value":"-41.53" + } + }, + { + "id":"184bf0e1-7725-4039-bdbb-1b7b47928d40", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T04:51:39.610Z", + "completed":"2016-06-30T04:51:39.610Z", + "new_balance":"3301.44", + "value":"-42.34" + } + }, + { + "id":"7078d96b-5d2d-465c-980f-9ac176eddf20", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T10:34:25.612Z", + "completed":"2016-06-30T10:34:25.612Z", + "new_balance":"4489.95", + "value":"1188.51" + } + }, + { + "id":"dc9e5820-a6c0-47bb-8120-eac294aa8124", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T16:18:28.074Z", + "completed":"2016-06-30T16:18:28.074Z", + "new_balance":"4455.52", + "value":"-34.43" + } + }, + { + "id":"ec8b3437-b3d5-41cf-a80c-a5e3520c7984", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T14:37:25.245Z", + "completed":"2016-07-01T14:37:25.245Z", + "new_balance":"4393.65", + "value":"-61.87" + } + }, + { + "id":"50aa773e-e0b2-4862-899d-a76d0044154b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T09:27:32.537Z", + "completed":"2016-07-03T09:27:32.537Z", + "new_balance":"3883.11", + "value":"-510.54" + } + }, + { + "id":"6c7a6387-48d3-4205-8a55-8c92de5f1116", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T12:39:59.302Z", + "completed":"2016-07-03T12:39:59.302Z", + "new_balance":"3848.68", + "value":"-34.43" + } + }, + { + "id":"7bef67f5-2629-4fa4-8490-3420b7075ae8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T16:18:22.805Z", + "completed":"2016-07-03T16:18:22.805Z", + "new_balance":"3824.12", + "value":"-24.56" + } + }, + { + "id":"a5c8a847-ea6a-4fdf-a6c7-6294c5b3f487", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T18:21:03.371Z", + "completed":"2016-07-03T18:21:03.371Z", + "new_balance":"3750.19", + "value":"-73.93" + } + }, + { + "id":"f1d647fb-fc3d-4acf-a24e-372ded34e35b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T03:34:49.152Z", + "completed":"2016-07-05T03:34:49.152Z", + "new_balance":"3737.18", + "value":"-13.01" + } + }, + { + "id":"25b10212-ec66-4d84-bb18-ecf2d0e8ac8c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T03:46:40.480Z", + "completed":"2016-07-05T03:46:40.480Z", + "new_balance":"3684.00", + "value":"-53.18" + } + }, + { + "id":"db51c115-b5ab-4ac1-83eb-57cda4425198", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:42:04.005Z", + "completed":"2016-07-05T13:42:04.005Z", + "new_balance":"3640.02", + "value":"-43.98" + } + }, + { + "id":"a4207563-1f24-4863-8586-ca23634c0a95", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T04:01:27.964Z", + "completed":"2016-07-06T04:01:27.964Z", + "new_balance":"3617.33", + "value":"-22.69" + } + }, + { + "id":"02e09bcc-5241-4d01-993d-60ed6f6d51e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T08:20:43.174Z", + "completed":"2016-07-06T08:20:43.174Z", + "new_balance":"3587.45", + "value":"-29.88" + } + }, + { + "id":"1b98277a-1020-4c37-9c9f-acae3f5f59ab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T06:24:27.174Z", + "completed":"2016-07-07T06:24:27.174Z", + "new_balance":"3548.28", + "value":"-39.17" + } + }, + { + "id":"46f654e2-0245-4312-ad31-e86508cf6933", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T04:55:44.891Z", + "completed":"2016-07-10T04:55:44.891Z", + "new_balance":"3495.10", + "value":"-53.18" + } + }, + { + "id":"2ccc6180-fc03-4c58-9e32-57cac9ed4b09", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T17:25:15.178Z", + "completed":"2016-07-10T17:25:15.178Z", + "new_balance":"3470.23", + "value":"-24.87" + } + }, + { + "id":"0fa0d3aa-9261-4a72-8b85-d52b6341da9c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:35:58.497Z", + "completed":"2016-07-12T03:35:58.497Z", + "new_balance":"3431.06", + "value":"-39.17" + } + }, + { + "id":"272da0b5-17fc-4dd4-aa1a-d2a09601e3ec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T14:10:24.867Z", + "completed":"2016-07-12T14:10:24.867Z", + "new_balance":"3406.50", + "value":"-24.56" + } + }, + { + "id":"d104bae2-3c92-406a-8ef7-166a11f254c9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:05:06.733Z", + "completed":"2016-07-12T19:05:06.733Z", + "new_balance":"3386.43", + "value":"-20.07" + } + }, + { + "id":"144fa232-fa21-42ac-9e8f-9c996be8c441", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T12:49:41.929Z", + "completed":"2016-07-15T12:49:41.929Z", + "new_balance":"3370.03", + "value":"-16.40" + } + }, + { + "id":"90b0e619-557a-40b2-a2c4-dde7e7b8722e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:22:46.447Z", + "completed":"2016-07-16T15:22:46.447Z", + "new_balance":"3363.88", + "value":"-6.15" + } + }, + { + "id":"dc56b8d7-137c-477d-b759-455378d52ec5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T19:01:23.937Z", + "completed":"2016-07-16T19:01:23.937Z", + "new_balance":"3310.70", + "value":"-53.18" + } + }, + { + "id":"383bca58-e153-445a-a154-ce13f0c694b7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T01:32:06.192Z", + "completed":"2016-07-17T01:32:06.192Z", + "new_balance":"3249.52", + "value":"-61.18" + } + }, + { + "id":"6d73db0b-05b0-440d-9430-d9cc9bb00a22", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T15:44:12.216Z", + "completed":"2016-07-17T15:44:12.216Z", + "new_balance":"3218.20", + "value":"-31.32" + } + }, + { + "id":"dbb35f43-7a6d-45ca-9d1b-7c54a466fdea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T06:36:21.242Z", + "completed":"2016-07-19T06:36:21.242Z", + "new_balance":"3187.80", + "value":"-30.40" + } + }, + { + "id":"518ad48c-a275-4f7a-b820-63d100c77b3f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T06:12:00.540Z", + "completed":"2016-07-20T06:12:00.540Z", + "new_balance":"3134.62", + "value":"-53.18" + } + }, + { + "id":"0b607c0e-c811-4a88-99bb-57c1054e0c5f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T23:18:10.323Z", + "completed":"2016-07-23T23:18:10.323Z", + "new_balance":"3118.79", + "value":"-15.83" + } + }, + { + "id":"2e9fed08-d1d3-4bcf-9967-1b12a82884ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T12:01:28.616Z", + "completed":"2016-07-26T12:01:28.616Z", + "new_balance":"3060.31", + "value":"-58.48" + } + }, + { + "id":"8f91a04b-ecc0-448d-9b4d-68726296f61a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T21:06:35.119Z", + "completed":"2016-07-27T21:06:35.119Z", + "new_balance":"4248.82", + "value":"1188.51" + } + }, + { + "id":"20648978-2341-43d1-956d-f486a9939091", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T06:02:22.058Z", + "completed":"2016-07-28T06:02:22.058Z", + "new_balance":"4214.39", + "value":"-34.43" + } + }, + { + "id":"581c0e57-1d26-4ad9-9599-6ffd07fad0aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T13:56:52.970Z", + "completed":"2016-07-30T13:56:52.970Z", + "new_balance":"4172.05", + "value":"-42.34" + } + }, + { + "id":"2ebb84c6-7946-42d2-97b4-a35f85517ca5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T13:48:21.129Z", + "completed":"2016-08-01T13:48:21.129Z", + "new_balance":"4110.18", + "value":"-61.87" + } + }, + { + "id":"8edb6b4f-3d9e-4137-aff1-2d4e45c1eecc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T00:01:55.871Z", + "completed":"2016-08-03T00:01:55.871Z", + "new_balance":"4075.75", + "value":"-34.43" + } + }, + { + "id":"b64039e3-6038-4a0a-9b27-cb3cbb90d4ee", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T02:37:16.789Z", + "completed":"2016-08-03T02:37:16.789Z", + "new_balance":"4051.19", + "value":"-24.56" + } + }, + { + "id":"7f2b62de-9b1e-42c9-8e84-c9c9471ff6ac", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T08:14:50.643Z", + "completed":"2016-08-03T08:14:50.643Z", + "new_balance":"3540.65", + "value":"-510.54" + } + }, + { + "id":"f63b5de6-50cb-4f9d-a58b-d8c61248aa10", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:07:47.497Z", + "completed":"2016-08-03T12:07:47.497Z", + "new_balance":"3466.72", + "value":"-73.93" + } + }, + { + "id":"86c6f7bb-5ea8-47bd-a9b1-e7fc966d9ab6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T19:56:10.794Z", + "completed":"2016-08-08T19:56:10.794Z", + "new_balance":"3413.54", + "value":"-53.18" + } + }, + { + "id":"eadc3672-2ef3-48a6-9a8c-c5c6bbeba630", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T19:56:18.206Z", + "completed":"2016-08-08T19:56:18.206Z", + "new_balance":"3369.56", + "value":"-43.98" + } + }, + { + "id":"ee495ee8-1b02-4204-8ee2-1df6082a929b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T20:30:21.654Z", + "completed":"2016-08-11T20:30:21.654Z", + "new_balance":"3380.45", + "value":"10.89" + } + }, + { + "id":"ee64d0af-71d3-4e09-ae3d-8b3246aceed4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T15:23:45.856Z", + "completed":"2016-08-13T15:23:45.856Z", + "new_balance":"3350.57", + "value":"-29.88" + } + }, + { + "id":"81e00f08-a8f6-4e43-bdfe-b61e303a72f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T14:13:55.825Z", + "completed":"2016-08-14T14:13:55.825Z", + "new_balance":"3322.72", + "value":"-27.85" + } + }, + { + "id":"5644f6dd-adfb-4e83-87fa-3565696ac1be", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T08:31:11.189Z", + "completed":"2016-08-17T08:31:11.189Z", + "new_balance":"3311.81", + "value":"-10.91" + } + }, + { + "id":"99effa6e-544b-4f89-9c73-72b3861988ce", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T01:57:45.823Z", + "completed":"2016-08-21T01:57:45.823Z", + "new_balance":"3270.68", + "value":"-41.13" + } + }, + { + "id":"086bb588-2818-4967-800f-99ff92aab02d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T04:41:09.410Z", + "completed":"2016-08-23T04:41:09.410Z", + "new_balance":"3217.50", + "value":"-53.18" + } + }, + { + "id":"8d584f67-4635-4611-a302-cfa61cf73f52", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T15:04:01.815Z", + "completed":"2016-08-23T15:04:01.815Z", + "new_balance":"3176.58", + "value":"-40.92" + } + }, + { + "id":"8da78945-bb07-453c-8877-c0e2c585e8f9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T22:38:51.959Z", + "completed":"2016-08-24T22:38:51.959Z", + "new_balance":"3165.67", + "value":"-10.91" + } + }, + { + "id":"70830537-dd1d-407c-b470-a7b5bb06e560", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T07:52:41.056Z", + "completed":"2016-08-27T07:52:41.056Z", + "new_balance":"4354.18", + "value":"1188.51" + } + }, + { + "id":"363d1059-e716-4feb-b5c9-5083ffb13736", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T09:42:09.466Z", + "completed":"2016-08-27T09:42:09.466Z", + "new_balance":"4295.70", + "value":"-58.48" + } + }, + { + "id":"9bbe9f32-6625-4202-9ec8-010e085ce45f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T13:04:06.119Z", + "completed":"2016-08-27T13:04:06.119Z", + "new_balance":"4278.96", + "value":"-16.74" + } + }, + { + "id":"00d51ac4-fce5-4427-8df2-b175e51177c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T22:46:15.506Z", + "completed":"2016-08-28T22:46:15.506Z", + "new_balance":"4244.53", + "value":"-34.43" + } + }, + { + "id":"610bd9ca-293e-4ae4-8a21-511bcb9a5348", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T15:06:47.103Z", + "completed":"2016-08-30T15:06:47.103Z", + "new_balance":"4202.19", + "value":"-42.34" + } + }, + { + "id":"53d9faa5-4f39-4e9f-b345-aa6d4cf4942e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T04:22:39.392Z", + "completed":"2016-09-01T04:22:39.392Z", + "new_balance":"4140.32", + "value":"-61.87" + } + }, + { + "id":"eb195522-b1d7-451f-a0ad-2d23d5095f3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:17:24.675Z", + "completed":"2016-09-03T01:17:24.675Z", + "new_balance":"4105.89", + "value":"-34.43" + } + }, + { + "id":"c7b496ac-872f-4d8a-983a-cf7fd8e8acdc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T05:55:08.026Z", + "completed":"2016-09-03T05:55:08.026Z", + "new_balance":"3595.35", + "value":"-510.54" + } + }, + { + "id":"99e93acb-0676-490f-8a82-27029c9750cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T11:38:03.429Z", + "completed":"2016-09-03T11:38:03.429Z", + "new_balance":"3570.79", + "value":"-24.56" + } + }, + { + "id":"7d27c0fb-7762-4bf3-8434-c1e853d864b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T13:59:10.550Z", + "completed":"2016-09-03T13:59:10.550Z", + "new_balance":"3496.86", + "value":"-73.93" + } + }, + { + "id":"1194531c-0a7f-4ec0-a55f-b5492e9437ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T03:39:08.402Z", + "completed":"2016-09-05T03:39:08.402Z", + "new_balance":"3443.68", + "value":"-53.18" + } + }, + { + "id":"ef0f74eb-ca64-41ad-bf6b-7ef7a54abe43", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T09:00:24.794Z", + "completed":"2016-09-05T09:00:24.794Z", + "new_balance":"3395.02", + "value":"-48.66" + } + }, + { + "id":"9b68a79b-eaa5-493f-88c6-3cbda444d6ca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T20:51:41.216Z", + "completed":"2016-09-07T20:51:41.216Z", + "new_balance":"3381.35", + "value":"-13.67" + } + }, + { + "id":"f5639893-8d65-4772-9786-b58ac2a92770", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T12:14:26.416Z", + "completed":"2016-09-09T12:14:26.416Z", + "new_balance":"3328.17", + "value":"-53.18" + } + }, + { + "id":"93cf50c4-c9e2-4420-9434-fd77d1e0900e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T02:17:01.585Z", + "completed":"2016-09-11T02:17:01.585Z", + "new_balance":"3317.17", + "value":"-11.00" + } + }, + { + "id":"daa310ac-0292-4e56-8b04-3ee0f03b190f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T06:01:28.701Z", + "completed":"2016-09-13T06:01:28.701Z", + "new_balance":"3259.49", + "value":"-57.68" + } + }, + { + "id":"5724fd3e-faef-4b7a-adc4-11db18ddafde", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T07:01:33.784Z", + "completed":"2016-09-14T07:01:33.784Z", + "new_balance":"3247.56", + "value":"-11.93" + } + }, + { + "id":"77793949-97aa-4b73-aa76-8b6685f5c9ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:21:00.925Z", + "completed":"2016-09-14T18:21:00.925Z", + "new_balance":"3310.92", + "value":"63.36" + } + }, + { + "id":"85cb8ac7-4abb-48f7-84ba-020de57cd30d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T16:29:48.500Z", + "completed":"2016-09-15T16:29:48.500Z", + "new_balance":"3268.58", + "value":"-42.34" + } + }, + { + "id":"0afc1997-011d-44d1-b7e2-c2d75581c547", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T00:52:34.767Z", + "completed":"2016-09-26T00:52:34.767Z", + "new_balance":"3243.21", + "value":"-25.37" + } + }, + { + "id":"cb58b366-8c63-4a77-8f79-8792bd4a9c0c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T18:05:32.152Z", + "completed":"2016-09-26T18:05:32.152Z", + "new_balance":"3196.28", + "value":"-46.93" + } + }, + { + "id":"5de74456-1bca-4c8e-bdaf-f30159c3a134", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T20:11:45.692Z", + "completed":"2016-09-26T20:11:45.692Z", + "new_balance":"3169.44", + "value":"-26.84" + } + }, + { + "id":"5f5914d7-3c97-47c5-bbea-6add07adae2c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T11:25:48.925Z", + "completed":"2016-09-27T11:25:48.925Z", + "new_balance":"4357.95", + "value":"1188.51" + } + }, + { + "id":"18680fc4-e22a-4579-a608-934a5c2ab880", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T15:09:19.792Z", + "completed":"2016-09-27T15:09:19.792Z", + "new_balance":"4304.77", + "value":"-53.18" + } + }, + { + "id":"f3585d86-9a0c-4047-8c56-7b8b92e86921", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T23:44:59.872Z", + "completed":"2016-09-27T23:44:59.872Z", + "new_balance":"4238.19", + "value":"-66.58" + } + }, + { + "id":"ddb8f6de-49a8-4fdc-91c3-1ff2db98e0a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T00:03:25.449Z", + "completed":"2016-09-28T00:03:25.449Z", + "new_balance":"4203.76", + "value":"-34.43" + } + }, + { + "id":"d43c4f9f-b558-4dd9-9bbd-227e134dbc09", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T22:17:31.123Z", + "completed":"2016-09-30T22:17:31.123Z", + "new_balance":"4161.42", + "value":"-42.34" + } + }, + { + "id":"c9a6e1e5-633d-494e-a32c-aef28f47800f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T05:30:32.316Z", + "completed":"2016-10-01T05:30:32.316Z", + "new_balance":"4136.86", + "value":"-24.56" + } + }, + { + "id":"6b92f67f-8abb-4684-a6b0-7623f0398be2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T10:38:27.590Z", + "completed":"2016-10-01T10:38:27.590Z", + "new_balance":"4074.99", + "value":"-61.87" + } + }, + { + "id":"f44a80c7-0518-4ce5-b426-bb9e47588741", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T12:33:50.642Z", + "completed":"2016-10-01T12:33:50.642Z", + "new_balance":"3564.45", + "value":"-510.54" + } + }, + { + "id":"b5d64d26-4253-4725-9cdc-3beda02e897f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T13:06:37.304Z", + "completed":"2016-10-01T13:06:37.304Z", + "new_balance":"3530.02", + "value":"-34.43" + } + }, + { + "id":"58efbf68-e65a-495f-a3db-babc6535f943", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T16:39:45.323Z", + "completed":"2016-10-01T16:39:45.323Z", + "new_balance":"3456.09", + "value":"-73.93" + } + }, + { + "id":"c3d89007-57b1-403d-ac63-c44b93ab08e2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T01:27:35.770Z", + "completed":"2016-10-05T01:27:35.770Z", + "new_balance":"3402.91", + "value":"-53.18" + } + }, + { + "id":"21ed59c7-1c9d-454e-ab9a-dce3039a7a98", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T04:18:14.450Z", + "completed":"2016-10-05T04:18:14.450Z", + "new_balance":"3380.22", + "value":"-22.69" + } + }, + { + "id":"d58e07e5-2ab3-4e99-a398-56854263e643", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:07:33.307Z", + "completed":"2016-10-05T12:07:33.307Z", + "new_balance":"3336.24", + "value":"-43.98" + } + }, + { + "id":"94aa6ca4-2561-4446-8785-70f3dd35d85f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T19:00:18.823Z", + "completed":"2016-10-05T19:00:18.823Z", + "new_balance":"3323.23", + "value":"-13.01" + } + }, + { + "id":"17e757bd-5617-46c7-8c95-de17106a5ba2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T23:42:47.772Z", + "completed":"2016-10-07T23:42:47.772Z", + "new_balance":"3293.35", + "value":"-29.88" + } + }, + { + "id":"db2d177e-dcf7-4deb-bcca-2dac0db59d44", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T18:02:39.606Z", + "completed":"2016-10-09T18:02:39.606Z", + "new_balance":"3240.17", + "value":"-53.18" + } + }, + { + "id":"fd699331-4c97-4030-b12e-bd53dadf1061", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T23:49:06.999Z", + "completed":"2016-10-09T23:49:06.999Z", + "new_balance":"3215.30", + "value":"-24.87" + } + }, + { + "id":"268d4c5e-1d68-415f-a82b-3c3507fede34", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T05:28:16.833Z", + "completed":"2016-10-10T05:28:16.833Z", + "new_balance":"3195.23", + "value":"-20.07" + } + }, + { + "id":"59604021-4c8b-4f03-bde2-5d6d24ee108d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:32:26.530Z", + "completed":"2016-10-10T12:32:26.530Z", + "new_balance":"3170.67", + "value":"-24.56" + } + }, + { + "id":"7463c4bf-68f9-44bb-b3a5-4834cf05ed98", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T18:27:29.251Z", + "completed":"2016-10-10T18:27:29.251Z", + "new_balance":"3154.27", + "value":"-16.40" + } + }, + { + "id":"dd3d28e6-217a-4f45-b1e0-40cb3abcb3ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T20:47:36.296Z", + "completed":"2016-10-10T20:47:36.296Z", + "new_balance":"3115.10", + "value":"-39.17" + } + }, + { + "id":"977938a7-fac7-48c2-af62-c6d91597b3fa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T04:21:16.831Z", + "completed":"2016-10-11T04:21:16.831Z", + "new_balance":"3061.92", + "value":"-53.18" + } + }, + { + "id":"3cdab0d8-73f2-456f-9179-95fb4659cc5b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T10:46:43.318Z", + "completed":"2016-10-11T10:46:43.318Z", + "new_balance":"3031.52", + "value":"-30.40" + } + }, + { + "id":"e236def1-b7ae-4703-b9e1-b4e08345ea0a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:08:31.447Z", + "completed":"2016-10-11T14:08:31.447Z", + "new_balance":"2970.34", + "value":"-61.18" + } + }, + { + "id":"dbbf8583-68a6-49b0-863d-da57f0e8f190", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T16:03:02.088Z", + "completed":"2016-10-11T16:03:02.088Z", + "new_balance":"2939.02", + "value":"-31.32" + } + }, + { + "id":"a6478caa-f283-4b4b-bb2c-23b76786dd2e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T19:43:22.360Z", + "completed":"2016-10-11T19:43:22.360Z", + "new_balance":"2932.87", + "value":"-6.15" + } + }, + { + "id":"5258ae89-b6f8-46a9-ba7d-dde7bd2362f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T18:08:41.620Z", + "completed":"2016-10-21T18:08:41.620Z", + "new_balance":"2879.69", + "value":"-53.18" + } + }, + { + "id":"f46e5b91-9da2-443b-be58-808ee2c6ab44", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T09:21:17.133Z", + "completed":"2016-10-23T09:21:17.133Z", + "new_balance":"2863.86", + "value":"-15.83" + } + }, + { + "id":"d57b9762-125a-48c4-a3f6-ff60895c05e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T06:11:30.981Z", + "completed":"2016-10-29T06:11:30.981Z", + "new_balance":"4052.37", + "value":"1188.51" + } + }, + { + "id":"5eab6c0a-00b0-43b8-b118-9eccb38dc9ca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T06:47:39.171Z", + "completed":"2016-10-29T06:47:39.171Z", + "new_balance":"3993.89", + "value":"-58.48" + } + }, + { + "id":"6dc3f570-11bf-4561-b963-962499bb02cb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T19:26:31.346Z", + "completed":"2016-10-29T19:26:31.346Z", + "new_balance":"3959.46", + "value":"-34.43" + } + }, + { + "id":"9a83d787-c895-47c0-8fc8-828c01a6e1b1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T19:57:38.377Z", + "completed":"2016-10-30T19:57:38.377Z", + "new_balance":"3917.12", + "value":"-42.34" + } + }, + { + "id":"a896cec7-160f-4b37-a46d-d05076449835", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T00:17:29.320Z", + "completed":"2016-11-02T00:17:29.320Z", + "new_balance":"3892.56", + "value":"-24.56" + } + }, + { + "id":"c25a10d3-af6f-4286-96f2-32cf276f2075", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:30:44.115Z", + "completed":"2016-11-02T12:30:44.115Z", + "new_balance":"3818.63", + "value":"-73.93" + } + }, + { + "id":"4bbd082a-b9fb-4d25-8f3c-f0f10e885417", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T14:19:11.211Z", + "completed":"2016-11-02T14:19:11.211Z", + "new_balance":"3756.76", + "value":"-61.87" + } + }, + { + "id":"5a85509a-d3e6-4c6e-8652-114708df8da7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:47:39.176Z", + "completed":"2016-11-02T19:47:39.176Z", + "new_balance":"3246.22", + "value":"-510.54" + } + }, + { + "id":"bec254e0-4c3c-4023-a264-cdf20140de47", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T16:40:08.847Z", + "completed":"2016-11-06T16:40:08.847Z", + "new_balance":"3202.24", + "value":"-43.98" + } + }, + { + "id":"c5d1c176-49ee-4b48-bacf-e377e091bdab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T05:34:10.648Z", + "completed":"2016-11-07T05:34:10.648Z", + "new_balance":"3161.11", + "value":"-41.13" + } + }, + { + "id":"a7e040c2-03af-4683-ae16-8b108a2774ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T12:39:40.295Z", + "completed":"2016-11-07T12:39:40.295Z", + "new_balance":"3150.20", + "value":"-10.91" + } + }, + { + "id":"42e9dc25-7cdb-42f1-849e-d3dad8c8244a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T15:36:05.702Z", + "completed":"2016-11-07T15:36:05.702Z", + "new_balance":"3122.35", + "value":"-27.85" + } + }, + { + "id":"e1013cf4-8da8-42b0-b9e0-69824bd45c68", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:34:39.001Z", + "completed":"2016-11-07T17:34:39.001Z", + "new_balance":"3092.47", + "value":"-29.88" + } + }, + { + "id":"d15c81ef-0ffe-4849-9c01-2d7dd662a401", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T09:47:18.803Z", + "completed":"2016-11-08T09:47:18.803Z", + "new_balance":"3051.55", + "value":"-40.92" + } + }, + { + "id":"e5058994-5181-4a11-bf6a-ec1de2e62ee4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T14:53:36.163Z", + "completed":"2016-11-09T14:53:36.163Z", + "new_balance":"3017.12", + "value":"-34.43" + } + }, + { + "id":"c63eb40e-54f0-4c41-b213-ddace9629c9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T07:25:58.174Z", + "completed":"2016-11-13T07:25:58.174Z", + "new_balance":"2963.94", + "value":"-53.18" + } + }, + { + "id":"7096b3e3-878c-46e7-8e16-971a7774cd1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:53:28.617Z", + "completed":"2016-11-26T01:53:28.617Z", + "new_balance":"2910.76", + "value":"-53.18" + } + }, + { + "id":"f6b5d2a8-e043-4eb4-aae4-2fd675fcf1b8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T07:37:29.580Z", + "completed":"2016-11-26T07:37:29.580Z", + "new_balance":"2899.85", + "value":"-10.91" + } + }, + { + "id":"e9236b68-dc7a-46b4-b1af-13771f48b085", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T13:09:19.592Z", + "completed":"2016-11-27T13:09:19.592Z", + "new_balance":"2841.37", + "value":"-58.48" + } + }, + { + "id":"c5a27c18-e30b-420f-8484-7143e943d092", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T15:17:53.163Z", + "completed":"2016-11-27T15:17:53.163Z", + "new_balance":"2824.63", + "value":"-16.74" + } + }, + { + "id":"dde36db0-004f-4035-b02a-0d5c7e3952e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T02:36:12.993Z", + "completed":"2016-11-30T02:36:12.993Z", + "new_balance":"4013.14", + "value":"1188.51" + } + }, + { + "id":"82284946-7e99-471a-b4c3-fd8be4af5eb5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T12:01:42.608Z", + "completed":"2016-11-30T12:01:42.608Z", + "new_balance":"3970.80", + "value":"-42.34" + } + }, + { + "id":"53bfa4e4-a0e3-40de-8ddb-301bc2398f9e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T13:41:29.316Z", + "completed":"2016-11-30T13:41:29.316Z", + "new_balance":"3936.37", + "value":"-34.43" + } + }, + { + "id":"2c0bc0c9-6aa2-43ce-8af8-b59a33eb620e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T02:42:25.091Z", + "completed":"2016-12-01T02:42:25.091Z", + "new_balance":"3911.81", + "value":"-24.56" + } + }, + { + "id":"681fc900-7f81-4fdf-a49e-3572ae016a32", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T03:16:26.330Z", + "completed":"2016-12-01T03:16:26.330Z", + "new_balance":"3858.63", + "value":"-53.18" + } + }, + { + "id":"5bd62d1d-d3d7-4664-bad6-86c3682ef466", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:19:08.950Z", + "completed":"2016-12-01T06:19:08.950Z", + "new_balance":"3824.20", + "value":"-34.43" + } + }, + { + "id":"0e91ae3b-685a-4d79-bde5-a45ccc1ffd6f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T13:45:08.650Z", + "completed":"2016-12-01T13:45:08.650Z", + "new_balance":"3771.02", + "value":"-53.18" + } + }, + { + "id":"76dc77df-3f51-4e56-a997-f182d2e4f9fa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T16:27:02.944Z", + "completed":"2016-12-01T16:27:02.944Z", + "new_balance":"3260.48", + "value":"-510.54" + } + }, + { + "id":"36cdb861-7a3c-4d86-87ae-3d88761c78d8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:57:29.431Z", + "completed":"2016-12-01T17:57:29.431Z", + "new_balance":"3246.81", + "value":"-13.67" + } + }, + { + "id":"9f8aa0af-1552-4483-b3c7-da97688957d5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T19:45:42.976Z", + "completed":"2016-12-01T19:45:42.976Z", + "new_balance":"3172.88", + "value":"-73.93" + } + }, + { + "id":"31353602-6b69-48dc-84bf-5ec8b722d718", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T21:04:42.746Z", + "completed":"2016-12-01T21:04:42.746Z", + "new_balance":"3124.22", + "value":"-48.66" + } + }, + { + "id":"656d1b8b-3f73-49ca-88cf-cc1c15ff8a9e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T23:10:17.826Z", + "completed":"2016-12-01T23:10:17.826Z", + "new_balance":"3062.35", + "value":"-61.87" + } + }, + { + "id":"02b79676-165a-4c61-b150-7f03e02830ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T06:37:23.297Z", + "completed":"2016-12-02T06:37:23.297Z", + "new_balance":"3051.35", + "value":"-11.00" + } + }, + { + "id":"c8242da0-bf4a-4c7f-97ec-eae589159800", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T13:52:18.675Z", + "completed":"2016-12-02T13:52:18.675Z", + "new_balance":"3039.42", + "value":"-11.93" + } + }, + { + "id":"32be3f94-97db-41c0-ac7c-c870ea1ca313", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T23:16:38.059Z", + "completed":"2016-12-02T23:16:38.059Z", + "new_balance":"2981.74", + "value":"-57.68" + } + }, + { + "id":"43692cca-fc2b-4fc4-bc8d-045def830740", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T00:45:35.752Z", + "completed":"2016-12-04T00:45:35.752Z", + "new_balance":"2934.81", + "value":"-46.93" + } + }, + { + "id":"0777a7ac-d7ed-4737-8da7-793e1d5ce5da", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:25:10.650Z", + "completed":"2016-12-04T01:25:10.650Z", + "new_balance":"2909.44", + "value":"-25.37" + } + }, + { + "id":"9cc85af2-9f73-4944-b42d-c2cf23012a4a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T20:33:24.956Z", + "completed":"2016-12-04T20:33:24.956Z", + "new_balance":"2867.10", + "value":"-42.34" + } + }, + { + "id":"d6a974d1-dac8-4da1-89e2-7ed57f207e0c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:42:21.558Z", + "completed":"2016-12-05T06:42:21.558Z", + "new_balance":"2800.52", + "value":"-66.58" + } + }, + { + "id":"7667a6c8-b768-4e39-a9b9-4743dbe25278", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:45:57.899Z", + "completed":"2016-12-05T06:45:57.899Z", + "new_balance":"2773.68", + "value":"-26.84" + } + }, + { + "id":"10e5f85a-870a-4618-8e6c-6b9086c965b8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T17:26:15.971Z", + "completed":"2016-12-18T17:26:15.971Z", + "new_balance":"2720.50", + "value":"-53.18" + } + }, + { + "id":"10171d2f-91f6-4578-bc2d-e7fc407e2368", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T00:23:15.298Z", + "completed":"2016-12-30T00:23:15.298Z", + "new_balance":"2678.16", + "value":"-42.34" + } + }, + { + "id":"5c8629ba-6363-41a2-a34f-6b4484984de0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T15:32:33.708Z", + "completed":"2016-12-30T15:32:33.708Z", + "new_balance":"3866.67", + "value":"1188.51" + } + }, + { + "id":"75faaf3b-9195-4cee-b260-25d165257655", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T16:14:47.499Z", + "completed":"2016-12-30T16:14:47.499Z", + "new_balance":"3832.24", + "value":"-34.43" + } + }, + { + "id":"73b1d313-45de-49bc-8897-241364854037", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T18:26:14.435Z", + "completed":"2016-12-30T18:26:14.435Z", + "new_balance":"3790.71", + "value":"-41.53" + } + }, + { + "id":"aca0efcc-587c-4902-9705-e52614141edf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T16:42:02.283Z", + "completed":"2017-01-01T16:42:02.283Z", + "new_balance":"3728.84", + "value":"-61.87" + } + }, + { + "id":"d547d615-22a0-40d6-a9d2-0c1ee236b176", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T23:38:24.782Z", + "completed":"2017-01-01T23:38:24.782Z", + "new_balance":"3666.97", + "value":"-61.87" + } + }, + { + "id":"ff092e43-816a-451c-9dec-7890ef31ab0f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T00:45:46.097Z", + "completed":"2017-01-03T00:45:46.097Z", + "new_balance":"3593.04", + "value":"-73.93" + } + }, + { + "id":"cddf9bba-47eb-4e27-b48f-5b80426d48f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T09:16:09.364Z", + "completed":"2017-01-03T09:16:09.364Z", + "new_balance":"3558.61", + "value":"-34.43" + } + }, + { + "id":"a6967463-7823-4240-a457-4cc5b3646276", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T14:34:01.840Z", + "completed":"2017-01-03T14:34:01.840Z", + "new_balance":"3048.07", + "value":"-510.54" + } + }, + { + "id":"427b5482-486e-4185-9b96-f068b9b829c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T16:21:42.393Z", + "completed":"2017-01-03T16:21:42.393Z", + "new_balance":"3023.51", + "value":"-24.56" + } + }, + { + "id":"850a3471-1fc7-46b5-b72b-b720cef600a2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T09:06:41.819Z", + "completed":"2017-01-05T09:06:41.819Z", + "new_balance":"3010.50", + "value":"-13.01" + } + }, + { + "id":"854a2b83-5f6c-462c-9624-87ca61f67bdf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T18:35:40.789Z", + "completed":"2017-01-05T18:35:40.789Z", + "new_balance":"2966.52", + "value":"-43.98" + } + }, + { + "id":"2b946faa-92f9-41eb-b2ee-4ffab42afe12", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T20:28:16.635Z", + "completed":"2017-01-05T20:28:16.635Z", + "new_balance":"2913.34", + "value":"-53.18" + } + }, + { + "id":"3226637b-bbe0-4fb3-9871-f2b96a92554c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T14:12:27.931Z", + "completed":"2017-01-06T14:12:27.931Z", + "new_balance":"2890.65", + "value":"-22.69" + } + }, + { + "id":"cf85c1fa-6ec3-43c6-a97e-8ae1c1fcf07f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T16:06:51.532Z", + "completed":"2017-01-06T16:06:51.532Z", + "new_balance":"2860.77", + "value":"-29.88" + } + }, + { + "id":"6be83727-b322-4feb-9ddb-34cd646fda0b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T10:55:52.601Z", + "completed":"2017-01-07T10:55:52.601Z", + "new_balance":"2821.60", + "value":"-39.17" + } + }, + { + "id":"b54f99e0-ff18-46f5-97f4-dfba44a859c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T19:22:35.508Z", + "completed":"2017-01-10T19:22:35.508Z", + "new_balance":"2796.73", + "value":"-24.87" + } + }, + { + "id":"fce5700e-6d50-482c-8bd3-da8ef01b452c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T19:27:54.103Z", + "completed":"2017-01-10T19:27:54.103Z", + "new_balance":"2743.55", + "value":"-53.18" + } + }, + { + "id":"48f692ef-902d-4f77-9777-f6cd198f8a30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T06:57:43.371Z", + "completed":"2017-01-12T06:57:43.371Z", + "new_balance":"2723.48", + "value":"-20.07" + } + }, + { + "id":"36e82da4-54c6-4cba-a514-a2574eb249bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T10:17:52.521Z", + "completed":"2017-01-12T10:17:52.521Z", + "new_balance":"2698.92", + "value":"-24.56" + } + }, + { + "id":"e6226982-66ed-456a-b29c-338453c27e1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T18:23:31.356Z", + "completed":"2017-01-12T18:23:31.356Z", + "new_balance":"2659.75", + "value":"-39.17" + } + }, + { + "id":"63c63b91-d052-4ab4-9a0e-88c1b0b73a3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T00:43:22.941Z", + "completed":"2017-01-15T00:43:22.941Z", + "new_balance":"2643.35", + "value":"-16.40" + } + }, + { + "id":"15a3b899-13a1-4858-b433-3d9a8f12bd3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T04:30:03.515Z", + "completed":"2017-01-16T04:30:03.515Z", + "new_balance":"2637.20", + "value":"-6.15" + } + }, + { + "id":"0fde81cc-5376-4381-b5e9-0218b47cc769", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T19:54:53.052Z", + "completed":"2017-01-16T19:54:53.052Z", + "new_balance":"2584.02", + "value":"-53.18" + } + }, + { + "id":"62dc93d5-ba97-4c81-8243-6ddeb1f48777", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T05:05:25.743Z", + "completed":"2017-01-17T05:05:25.743Z", + "new_balance":"2552.70", + "value":"-31.32" + } + }, + { + "id":"20e8cb1a-d62c-4d50-9e9b-6b17f36f5b55", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T21:00:34.205Z", + "completed":"2017-01-17T21:00:34.205Z", + "new_balance":"2491.52", + "value":"-61.18" + } + }, + { + "id":"a9191c93-b531-4294-95b0-58cdfb1ce337", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T19:26:08.169Z", + "completed":"2017-01-19T19:26:08.169Z", + "new_balance":"2461.12", + "value":"-30.40" + } + }, + { + "id":"b1fa848a-671c-4682-96d1-0755cfba53d8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:49:07.105Z", + "completed":"2017-01-20T19:49:07.105Z", + "new_balance":"2407.94", + "value":"-53.18" + } + }, + { + "id":"8c56cbd7-a5e8-428e-a65c-a6df1a883683", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T21:09:06.190Z", + "completed":"2017-01-23T21:09:06.190Z", + "new_balance":"2392.11", + "value":"-15.83" + } + }, + { + "id":"15397e8b-0f22-44c3-82a5-b9c0d68ff4a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T06:37:33.982Z", + "completed":"2017-01-26T06:37:33.982Z", + "new_balance":"2333.63", + "value":"-58.48" + } + }, + { + "id":"996dc695-445f-4f78-b2ca-025d4660454f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T12:00:22.943Z", + "completed":"2017-01-27T12:00:22.943Z", + "new_balance":"3522.14", + "value":"1188.51" + } + }, + { + "id":"099dc0d0-7a02-4397-8dae-405e7744a618", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T09:59:36.293Z", + "completed":"2017-01-28T09:59:36.293Z", + "new_balance":"3487.71", + "value":"-34.43" + } + }, + { + "id":"5eb298be-cdab-46cb-ad61-3a62637be3ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T14:32:20.975Z", + "completed":"2017-01-30T14:32:20.975Z", + "new_balance":"3445.37", + "value":"-42.34" + } + }, + { + "id":"49a570e1-5f68-495c-b2ae-579690d5f2f4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T01:31:17.779Z", + "completed":"2017-02-03T01:31:17.779Z", + "new_balance":"3410.94", + "value":"-34.43" + } + }, + { + "id":"2cad1334-9438-4594-9efb-24bcb8d6fb85", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T14:32:00.069Z", + "completed":"2017-02-03T14:32:00.069Z", + "new_balance":"3337.01", + "value":"-73.93" + } + }, + { + "id":"99e1a5f7-f834-4da8-a84a-3dd374ebb200", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T16:09:30.256Z", + "completed":"2017-02-03T16:09:30.256Z", + "new_balance":"3312.45", + "value":"-24.56" + } + }, + { + "id":"1b21bbf4-6b0f-4059-9b48-777e1feeabcd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T18:50:42.909Z", + "completed":"2017-02-03T18:50:42.909Z", + "new_balance":"2801.91", + "value":"-510.54" + } + }, + { + "id":"ae2c61d5-49cd-4a98-b31b-e4916862ddb1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T03:29:23.419Z", + "completed":"2017-02-08T03:29:23.419Z", + "new_balance":"2748.73", + "value":"-53.18" + } + }, + { + "id":"13986a64-8899-42b6-aacb-f08e547e3a71", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:50:58.061Z", + "completed":"2017-02-08T07:50:58.061Z", + "new_balance":"2704.75", + "value":"-43.98" + } + }, + { + "id":"52aaca82-74da-4ca5-b2ba-9937161a9ec6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T00:07:05.807Z", + "completed":"2017-02-11T00:07:05.807Z", + "new_balance":"2715.64", + "value":"10.89" + } + }, + { + "id":"1cb9f52f-e9ae-41db-8f57-91118541bdd6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T22:11:00.388Z", + "completed":"2017-02-13T22:11:00.388Z", + "new_balance":"2685.76", + "value":"-29.88" + } + }, + { + "id":"7f4278f9-7dc3-4fba-a7cf-8d2537b58927", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T21:50:40.503Z", + "completed":"2017-02-14T21:50:40.503Z", + "new_balance":"2657.91", + "value":"-27.85" + } + }, + { + "id":"64b7f7b0-f85a-4f56-9046-b5b22ed80d1a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T11:35:38.172Z", + "completed":"2017-02-17T11:35:38.172Z", + "new_balance":"2647.00", + "value":"-10.91" + } + }, + { + "id":"add850bb-876a-44c5-b332-8f6933aad4e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T06:44:34.838Z", + "completed":"2017-02-21T06:44:34.838Z", + "new_balance":"2605.87", + "value":"-41.13" + } + }, + { + "id":"f6e47bcc-d70b-4c09-a848-5da68d4915f7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T03:45:58.278Z", + "completed":"2017-02-23T03:45:58.278Z", + "new_balance":"2552.69", + "value":"-53.18" + } + }, + { + "id":"7a7c1877-42af-40d7-9012-b853eeff6205", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T09:40:58.039Z", + "completed":"2017-02-23T09:40:58.039Z", + "new_balance":"2511.77", + "value":"-40.92" + } + }, + { + "id":"657c7a8b-5344-4124-aba0-5353d7b13adc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T08:31:49.036Z", + "completed":"2017-02-24T08:31:49.036Z", + "new_balance":"2500.86", + "value":"-10.91" + } + }, + { + "id":"1b767ba6-d95b-44e6-8f76-6e9f887a0bc1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T19:52:40.567Z", + "completed":"2017-02-27T19:52:40.567Z", + "new_balance":"3689.37", + "value":"1188.51" + } + }, + { + "id":"adad5051-0f79-411a-a1f0-546f7eaa6f73", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T20:07:25.263Z", + "completed":"2017-02-27T20:07:25.263Z", + "new_balance":"3630.89", + "value":"-58.48" + } + }, + { + "id":"9bb0fa5b-a2f4-44dc-a442-39340e9aa9a7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T22:51:09.812Z", + "completed":"2017-02-27T22:51:09.812Z", + "new_balance":"3614.15", + "value":"-16.74" + } + }, + { + "id":"57a1a5f3-e333-487b-9b5f-7fb93938dd30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T04:20:31.846Z", + "completed":"2017-02-28T04:20:31.846Z", + "new_balance":"3579.72", + "value":"-34.43" + } + }, + { + "id":"b7286ff5-150a-47cd-be3b-f0ba6c3f59fc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T07:27:29.498Z", + "completed":"2017-02-28T07:27:29.498Z", + "new_balance":"3537.38", + "value":"-42.34" + } + }, + { + "id":"5a27a60d-c9f7-40a7-a5d0-2e1328345b41", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T16:28:04.746Z", + "completed":"2017-03-01T16:28:04.746Z", + "new_balance":"3475.51", + "value":"-61.87" + } + }, + { + "id":"11a54bf8-4539-4283-b622-d30215132b63", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T07:46:34.198Z", + "completed":"2017-03-03T07:46:34.198Z", + "new_balance":"3441.08", + "value":"-34.43" + } + }, + { + "id":"29394bce-a247-456f-b776-42ab9281d0f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T08:36:06.572Z", + "completed":"2017-03-03T08:36:06.572Z", + "new_balance":"3416.52", + "value":"-24.56" + } + }, + { + "id":"afb4ed98-1aa6-48e9-b9f1-572d87fc3092", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T16:58:22.328Z", + "completed":"2017-03-03T16:58:22.328Z", + "new_balance":"3342.59", + "value":"-73.93" + } + }, + { + "id":"13b7cbf6-fccf-457a-8f8e-dfd014ba46f1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T21:03:24.957Z", + "completed":"2017-03-03T21:03:24.957Z", + "new_balance":"2832.05", + "value":"-510.54" + } + }, + { + "id":"d37d2bef-9a31-4bc3-9a46-e51362ab4570", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T11:02:31.785Z", + "completed":"2017-03-05T11:02:31.785Z", + "new_balance":"2783.39", + "value":"-48.66" + } + }, + { + "id":"dda3799f-4d2c-4229-8ace-57928d360253", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T21:06:25.799Z", + "completed":"2017-03-05T21:06:25.799Z", + "new_balance":"2730.21", + "value":"-53.18" + } + }, + { + "id":"0cf31249-248b-42f0-a423-665a91f4efc6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T23:19:30.215Z", + "completed":"2017-03-07T23:19:30.215Z", + "new_balance":"2716.54", + "value":"-13.67" + } + }, + { + "id":"cebf0784-fe21-4315-8860-d1a74a690073", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:24:37.106Z", + "completed":"2017-03-09T10:24:37.106Z", + "new_balance":"2663.36", + "value":"-53.18" + } + }, + { + "id":"53762428-586e-49a7-9cca-ca0203f6fff3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T15:01:53.310Z", + "completed":"2017-03-11T15:01:53.310Z", + "new_balance":"2652.36", + "value":"-11.00" + } + }, + { + "id":"a3620eb0-4764-415a-8826-69be4ede1502", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T11:52:35.228Z", + "completed":"2017-03-13T11:52:35.228Z", + "new_balance":"2594.68", + "value":"-57.68" + } + }, + { + "id":"e2004bc1-2bda-4fce-b44b-0f9e9ff54803", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T05:40:22.399Z", + "completed":"2017-03-14T05:40:22.399Z", + "new_balance":"2658.04", + "value":"63.36" + } + }, + { + "id":"f67c48bd-0347-40c2-a120-ee6be6fbc446", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T11:29:59.105Z", + "completed":"2017-03-14T11:29:59.105Z", + "new_balance":"2646.11", + "value":"-11.93" + } + }, + { + "id":"fa9ffa28-5e2f-4fa0-b4bf-e41e24f0786e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T18:58:57.705Z", + "completed":"2017-03-15T18:58:57.705Z", + "new_balance":"2603.77", + "value":"-42.34" + } + }, + { + "id":"5a1f49a6-f89d-447a-9c66-bc4939e02222", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T13:48:33.071Z", + "completed":"2017-03-26T13:48:33.071Z", + "new_balance":"2576.93", + "value":"-26.84" + } + }, + { + "id":"70e213fa-a43c-48f6-bea3-afcb16b48535", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T14:26:53.363Z", + "completed":"2017-03-26T14:26:53.363Z", + "new_balance":"2530.00", + "value":"-46.93" + } + }, + { + "id":"bb558c0d-46d1-4bf7-87b5-d32bf45f4512", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T00:11:01.390Z", + "completed":"2017-03-27T00:11:01.390Z", + "new_balance":"2504.63", + "value":"-25.37" + } + }, + { + "id":"eead4dfd-f594-47fc-8d95-b3331cf2582b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T00:29:09.065Z", + "completed":"2017-03-27T00:29:09.065Z", + "new_balance":"3693.14", + "value":"1188.51" + } + }, + { + "id":"fdbef515-e893-4b39-90c1-4065029553c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T01:14:24.741Z", + "completed":"2017-03-27T01:14:24.741Z", + "new_balance":"3639.96", + "value":"-53.18" + } + }, + { + "id":"bee043b6-9fcd-4469-bf54-ad2cb2f5fedb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T20:55:01.803Z", + "completed":"2017-03-27T20:55:01.803Z", + "new_balance":"3573.38", + "value":"-66.58" + } + }, + { + "id":"167a60b0-166f-4ae2-bb13-b3038f1dd0d6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T15:32:15.120Z", + "completed":"2017-03-28T15:32:15.120Z", + "new_balance":"3538.95", + "value":"-34.43" + } + }, + { + "id":"0efb189e-1fd0-469f-b569-d447569a062d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T11:37:30.035Z", + "completed":"2017-03-30T11:37:30.035Z", + "new_balance":"3496.61", + "value":"-42.34" + } + }, + { + "id":"0973b1bd-e79a-48c7-89ca-b88dff38ac07", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T09:01:24.732Z", + "completed":"2017-04-01T09:01:24.732Z", + "new_balance":"2986.07", + "value":"-510.54" + } + }, + { + "id":"91b51226-48e7-4285-8d03-b34df6f62946", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T09:35:16.925Z", + "completed":"2017-04-01T09:35:16.925Z", + "new_balance":"2961.51", + "value":"-24.56" + } + }, + { + "id":"426f3072-c02b-4546-92d6-6c90dd1d22fc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T13:12:48.955Z", + "completed":"2017-04-01T13:12:48.955Z", + "new_balance":"2899.64", + "value":"-61.87" + } + }, + { + "id":"8adb0e1b-4647-42ee-9bb9-5a6e125a037d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T18:43:50.281Z", + "completed":"2017-04-01T18:43:50.281Z", + "new_balance":"2865.21", + "value":"-34.43" + } + }, + { + "id":"b22e5a57-a751-4285-9cff-38205fb363b5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T22:40:09.265Z", + "completed":"2017-04-01T22:40:09.265Z", + "new_balance":"2791.28", + "value":"-73.93" + } + }, + { + "id":"b897ed97-89f5-4e5e-ba32-764854ecd187", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T03:54:05.733Z", + "completed":"2017-04-05T03:54:05.733Z", + "new_balance":"2738.10", + "value":"-53.18" + } + }, + { + "id":"68af4c34-f2e6-4260-b287-f10dae28b7da", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T05:55:56.293Z", + "completed":"2017-04-05T05:55:56.293Z", + "new_balance":"2725.09", + "value":"-13.01" + } + }, + { + "id":"6ab5ccdf-1e56-433d-bd2d-8320c5847560", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T09:13:28.415Z", + "completed":"2017-04-05T09:13:28.415Z", + "new_balance":"2702.40", + "value":"-22.69" + } + }, + { + "id":"87c07e05-6f2f-46ce-96c7-c2704d8d7a87", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T13:21:00.724Z", + "completed":"2017-04-05T13:21:00.724Z", + "new_balance":"2658.42", + "value":"-43.98" + } + }, + { + "id":"87a33a80-08e0-45c5-aba4-faf973af9a1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T09:03:11.229Z", + "completed":"2017-04-07T09:03:11.229Z", + "new_balance":"2628.54", + "value":"-29.88" + } + }, + { + "id":"d3bc6801-0c1f-4690-8ac2-0e751db3e24e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T04:07:13.452Z", + "completed":"2017-04-09T04:07:13.452Z", + "new_balance":"2603.67", + "value":"-24.87" + } + }, + { + "id":"ccd5df94-6d1b-417f-9d77-37c739cfd205", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T07:39:10.561Z", + "completed":"2017-04-09T07:39:10.561Z", + "new_balance":"2550.49", + "value":"-53.18" + } + }, + { + "id":"129b121e-91c1-4f0c-a966-838fadce7ade", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T04:17:41.793Z", + "completed":"2017-04-10T04:17:41.793Z", + "new_balance":"2511.32", + "value":"-39.17" + } + }, + { + "id":"d5ae6368-9d9a-4fcf-8d17-3486ce9c6bca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T05:54:33.997Z", + "completed":"2017-04-10T05:54:33.997Z", + "new_balance":"2494.92", + "value":"-16.40" + } + }, + { + "id":"d43b838d-d3a9-4b7d-ab88-01d12eb141cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T20:48:32.035Z", + "completed":"2017-04-10T20:48:32.035Z", + "new_balance":"2474.85", + "value":"-20.07" + } + }, + { + "id":"72701832-c015-4e6b-bb5f-37d4bdbc75ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T21:44:11.127Z", + "completed":"2017-04-10T21:44:11.127Z", + "new_balance":"2450.29", + "value":"-24.56" + } + }, + { + "id":"1caa9353-c158-462d-9d84-ffa8d3527337", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:33:05.262Z", + "completed":"2017-04-11T04:33:05.262Z", + "new_balance":"2389.11", + "value":"-61.18" + } + }, + { + "id":"2f073dde-d9ae-4b63-af88-9eacead13de0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T04:34:00.601Z", + "completed":"2017-04-11T04:34:00.601Z", + "new_balance":"2335.93", + "value":"-53.18" + } + }, + { + "id":"ea556803-bf2d-4d09-887e-ef26c58d68d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T04:45:18.116Z", + "completed":"2017-04-11T04:45:18.116Z", + "new_balance":"2304.61", + "value":"-31.32" + } + }, + { + "id":"68bba214-9581-4862-997f-201c501fe05a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T10:09:27.902Z", + "completed":"2017-04-11T10:09:27.902Z", + "new_balance":"2274.21", + "value":"-30.40" + } + }, + { + "id":"d0166e2d-e68a-4000-9f50-67bd7c1ad139", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T11:13:05.056Z", + "completed":"2017-04-11T11:13:05.056Z", + "new_balance":"2268.06", + "value":"-6.15" + } + }, + { + "id":"aaf8ac68-cd4b-4ea1-9c0a-756dbdfadaec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T08:23:21.598Z", + "completed":"2017-04-21T08:23:21.598Z", + "new_balance":"2214.88", + "value":"-53.18" + } + }, + { + "id":"f4eb0f88-3b86-424f-bc8c-39c258284ca0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T23:49:55.863Z", + "completed":"2017-04-23T23:49:55.863Z", + "new_balance":"2199.05", + "value":"-15.83" + } + }, + { + "id":"c899638b-371e-48a6-bc37-65ff95fbf744", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T09:39:33.737Z", + "completed":"2017-04-29T09:39:33.737Z", + "new_balance":"3387.56", + "value":"1188.51" + } + }, + { + "id":"bb24030c-54f3-43e5-a7b8-0cef647c8f64", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T23:14:56.997Z", + "completed":"2017-04-29T23:14:56.997Z", + "new_balance":"3353.13", + "value":"-34.43" + } + }, + { + "id":"ff6a4360-5fff-4801-b436-01df5d0230b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T23:54:25.818Z", + "completed":"2017-04-29T23:54:25.818Z", + "new_balance":"3294.65", + "value":"-58.48" + } + }, + { + "id":"6352e13f-eb28-462a-9a58-72c59a9ef239", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T06:57:31.370Z", + "completed":"2017-04-30T06:57:31.370Z", + "new_balance":"3252.31", + "value":"-42.34" + } + }, + { + "id":"1e1d5e15-63ed-4868-8a6f-fc34ee510f56", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T03:47:23.414Z", + "completed":"2017-05-02T03:47:23.414Z", + "new_balance":"3227.75", + "value":"-24.56" + } + }, + { + "id":"9742d466-65b7-4ea1-b96a-68b14ef16bbc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T09:02:40.594Z", + "completed":"2017-05-02T09:02:40.594Z", + "new_balance":"2717.21", + "value":"-510.54" + } + }, + { + "id":"01f5bfee-90c7-47e4-a98b-8331ce5faf02", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T10:46:32.440Z", + "completed":"2017-05-02T10:46:32.440Z", + "new_balance":"2643.28", + "value":"-73.93" + } + }, + { + "id":"9f64c4e2-e56e-403d-bf81-8ddf046c3d5b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:47:30.735Z", + "completed":"2017-05-02T10:47:30.735Z", + "new_balance":"2581.41", + "value":"-61.87" + } + }, + { + "id":"68a99a26-0094-4343-9a18-ed2bcc2c1d9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T21:05:58.311Z", + "completed":"2017-05-06T21:05:58.311Z", + "new_balance":"2537.43", + "value":"-43.98" + } + }, + { + "id":"fa333450-c784-4886-b1e4-611e9c3bd590", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T06:35:44.418Z", + "completed":"2017-05-07T06:35:44.418Z", + "new_balance":"2496.30", + "value":"-41.13" + } + }, + { + "id":"6cf723df-751c-475f-9ad9-3e3d7f38865f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T06:37:53.329Z", + "completed":"2017-05-07T06:37:53.329Z", + "new_balance":"2466.42", + "value":"-29.88" + } + }, + { + "id":"c7479319-3e1f-46f1-a98c-e3fb140efd4b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T12:35:40.989Z", + "completed":"2017-05-07T12:35:40.989Z", + "new_balance":"2438.57", + "value":"-27.85" + } + }, + { + "id":"4338f10e-b9ea-439a-b787-f978ba38c5f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T17:00:46.587Z", + "completed":"2017-05-07T17:00:46.587Z", + "new_balance":"2427.66", + "value":"-10.91" + } + }, + { + "id":"2711c40a-aa7c-426e-a0c7-e9094f6c66af", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T15:06:28.708Z", + "completed":"2017-05-08T15:06:28.708Z", + "new_balance":"2386.74", + "value":"-40.92" + } + }, + { + "id":"a6fa1182-929c-45d4-83d6-964f9a787dc0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T06:30:47.977Z", + "completed":"2017-05-09T06:30:47.977Z", + "new_balance":"2352.31", + "value":"-34.43" + } + }, + { + "id":"5bc7f18a-bf91-43cf-8329-265927400c1a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T05:03:47.742Z", + "completed":"2017-05-13T05:03:47.742Z", + "new_balance":"2299.13", + "value":"-53.18" + } + }, + { + "id":"944be09b-1511-4aec-bf18-8f3a7c0428c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T03:28:00.123Z", + "completed":"2017-05-26T03:28:00.123Z", + "new_balance":"2245.95", + "value":"-53.18" + } + }, + { + "id":"cba08456-ad51-49e1-90ab-7ab7a1587e6a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:36:43.518Z", + "completed":"2017-05-26T19:36:43.518Z", + "new_balance":"2235.04", + "value":"-10.91" + } + }, + { + "id":"c0dd9823-c7a9-43c3-9ed5-7765d8cdb1db", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T09:33:07.074Z", + "completed":"2017-05-27T09:33:07.074Z", + "new_balance":"2176.56", + "value":"-58.48" + } + }, + { + "id":"9b61b35d-5462-4465-984c-4afdac1972d4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T17:06:19.669Z", + "completed":"2017-05-27T17:06:19.669Z", + "new_balance":"2159.82", + "value":"-16.74" + } + }, + { + "id":"4f98685a-0a40-49bf-af08-ec87c9344c99", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T02:42:23.062Z", + "completed":"2017-05-30T02:42:23.062Z", + "new_balance":"3348.33", + "value":"1188.51" + } + }, + { + "id":"8655ddb5-30db-40ea-959c-2048e9602b00", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T11:48:18.914Z", + "completed":"2017-05-30T11:48:18.914Z", + "new_balance":"3313.90", + "value":"-34.43" + } + }, + { + "id":"db53e518-bc46-4f5e-abd7-f227ae834767", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T20:40:11.937Z", + "completed":"2017-05-30T20:40:11.937Z", + "new_balance":"3271.56", + "value":"-42.34" + } + }, + { + "id":"388f7df7-8acd-4bdc-8b59-3842a36ca021", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T02:09:46.869Z", + "completed":"2017-06-01T02:09:46.869Z", + "new_balance":"3247.00", + "value":"-24.56" + } + }, + { + "id":"2feb99af-b726-4381-b02d-f0865fd4ab6b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T03:26:05.322Z", + "completed":"2017-06-01T03:26:05.322Z", + "new_balance":"3212.57", + "value":"-34.43" + } + }, + { + "id":"4dccf6bf-44e3-470b-948c-ab95e6a7da5d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T04:34:48.894Z", + "completed":"2017-06-01T04:34:48.894Z", + "new_balance":"2702.03", + "value":"-510.54" + } + }, + { + "id":"f67124b2-6a2c-473b-8b9a-c0ae38b70764", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:01:11.387Z", + "completed":"2017-06-01T07:01:11.387Z", + "new_balance":"2648.85", + "value":"-53.18" + } + }, + { + "id":"af288466-d769-45f0-8996-0aaddc82c709", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T08:41:15.270Z", + "completed":"2017-06-01T08:41:15.270Z", + "new_balance":"2600.19", + "value":"-48.66" + } + }, + { + "id":"ea64a59c-7b95-4395-b660-f5640ec7c342", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:39:46.073Z", + "completed":"2017-06-01T13:39:46.073Z", + "new_balance":"2538.32", + "value":"-61.87" + } + }, + { + "id":"cde211e5-20ae-43b3-b185-b296c247ddb6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T15:13:34.181Z", + "completed":"2017-06-01T15:13:34.181Z", + "new_balance":"2524.65", + "value":"-13.67" + } + }, + { + "id":"2dbbe3c7-069b-4bf3-933d-813df2eba3e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:45:41.944Z", + "completed":"2017-06-01T15:45:41.944Z", + "new_balance":"2471.47", + "value":"-53.18" + } + }, + { + "id":"647343a9-0202-46ad-8e14-6830ecadbff8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T23:14:20.114Z", + "completed":"2017-06-01T23:14:20.114Z", + "new_balance":"2397.54", + "value":"-73.93" + } + }, + { + "id":"0063e53f-c639-4d8e-9c2c-3ad06815c3d7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T05:36:26.758Z", + "completed":"2017-06-02T05:36:26.758Z", + "new_balance":"2385.61", + "value":"-11.93" + } + }, + { + "id":"f6841ddc-d0d5-4e98-adde-dc9729a50480", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T07:15:53.684Z", + "completed":"2017-06-02T07:15:53.684Z", + "new_balance":"2327.93", + "value":"-57.68" + } + }, + { + "id":"411b721a-da90-47b6-a01c-f6df88378f1c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T09:57:59.883Z", + "completed":"2017-06-02T09:57:59.883Z", + "new_balance":"2316.93", + "value":"-11.00" + } + }, + { + "id":"98f1395c-c1db-4f39-acbf-aa9998c8d56e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T10:02:21.729Z", + "completed":"2017-06-04T10:02:21.729Z", + "new_balance":"2270.00", + "value":"-46.93" + } + }, + { + "id":"6f44d5af-fdaf-44dc-9756-0d751c5540c9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:23:14.028Z", + "completed":"2017-06-04T17:23:14.028Z", + "new_balance":"2244.63", + "value":"-25.37" + } + }, + { + "id":"c5fee67a-68a7-4e85-9c27-df330c0ded3c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T21:26:26.031Z", + "completed":"2017-06-04T21:26:26.031Z", + "new_balance":"2202.29", + "value":"-42.34" + } + }, + { + "id":"9821fec6-3a29-43ad-884a-2fb279cc92e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:16:50.280Z", + "completed":"2017-06-05T06:16:50.280Z", + "new_balance":"2135.71", + "value":"-66.58" + } + }, + { + "id":"8c4235b0-68a2-4cb7-834c-9e1e1f396307", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:05:53.225Z", + "completed":"2017-06-05T12:05:53.225Z", + "new_balance":"2108.87", + "value":"-26.84" + } + }, + { + "id":"86186b6d-236d-4248-b698-aaafaea4d33f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T15:41:04.196Z", + "completed":"2017-06-18T15:41:04.196Z", + "new_balance":"2055.69", + "value":"-53.18" + } + }, + { + "id":"acbd4da0-d79a-482d-aaf9-0ffa9487b05c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T03:53:15.472Z", + "completed":"2017-06-30T03:53:15.472Z", + "new_balance":"3244.20", + "value":"1188.51" + } + }, + { + "id":"7b80b52b-56c0-45d6-8508-6f626e6eb869", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T07:05:53.462Z", + "completed":"2017-06-30T07:05:53.462Z", + "new_balance":"3201.86", + "value":"-42.34" + } + }, + { + "id":"02c75f60-b03a-4044-9fa5-fd03d746ea65", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T21:12:10.936Z", + "completed":"2017-06-30T21:12:10.936Z", + "new_balance":"3160.33", + "value":"-41.53" + } + }, + { + "id":"6a382d32-04ce-4185-8d6b-e38df8d2c2a8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T23:38:05.767Z", + "completed":"2017-06-30T23:38:05.767Z", + "new_balance":"3125.90", + "value":"-34.43" + } + }, + { + "id":"3ec96946-05e9-4eae-892e-1ebec05fb953", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T05:34:43.164Z", + "completed":"2017-07-01T05:34:43.164Z", + "new_balance":"3064.03", + "value":"-61.87" + } + }, + { + "id":"79d89d77-9061-4a6e-a3be-94e74df0204e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T01:54:41.429Z", + "completed":"2017-07-03T01:54:41.429Z", + "new_balance":"2553.49", + "value":"-510.54" + } + }, + { + "id":"d30ae6ad-9ff7-4f0e-8d98-d245166c98e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T14:34:13.654Z", + "completed":"2017-07-03T14:34:13.654Z", + "new_balance":"2479.56", + "value":"-73.93" + } + }, + { + "id":"fed3ba04-a01a-4911-9996-c6429ab72214", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T16:14:36.464Z", + "completed":"2017-07-03T16:14:36.464Z", + "new_balance":"2455.00", + "value":"-24.56" + } + }, + { + "id":"32941b57-dd8e-460e-8ff2-e3703aec0fa6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T18:56:00.034Z", + "completed":"2017-07-03T18:56:00.034Z", + "new_balance":"2420.57", + "value":"-34.43" + } + }, + { + "id":"e915a040-6358-4b09-a30c-7c11fe8b5fa0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T05:12:00.195Z", + "completed":"2017-07-05T05:12:00.195Z", + "new_balance":"2407.56", + "value":"-13.01" + } + }, + { + "id":"e7e0ea41-4143-49b0-8521-ccb6ba5824ae", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T15:49:50.791Z", + "completed":"2017-07-05T15:49:50.791Z", + "new_balance":"2354.38", + "value":"-53.18" + } + }, + { + "id":"05f12063-c940-4fbf-9f2a-98546b8705f2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T17:00:26.751Z", + "completed":"2017-07-05T17:00:26.751Z", + "new_balance":"2310.40", + "value":"-43.98" + } + }, + { + "id":"82a87e04-2c9f-4bec-9077-ebebbeef3a05", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T13:09:16.056Z", + "completed":"2017-07-06T13:09:16.056Z", + "new_balance":"2287.71", + "value":"-22.69" + } + }, + { + "id":"bc3f7e61-8131-4b72-8628-80fb3f1793dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T13:37:10.397Z", + "completed":"2017-07-06T13:37:10.397Z", + "new_balance":"2257.83", + "value":"-29.88" + } + }, + { + "id":"e884bd4a-5e21-4e17-923a-102f292414a3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T11:18:07.985Z", + "completed":"2017-07-07T11:18:07.985Z", + "new_balance":"2218.66", + "value":"-39.17" + } + }, + { + "id":"4594a123-5c8c-4cac-af9d-7b276944cf28", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T20:59:54.431Z", + "completed":"2017-07-10T20:59:54.431Z", + "new_balance":"2193.79", + "value":"-24.87" + } + }, + { + "id":"eaae3934-be5b-415c-b0aa-b8cae58fe820", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T22:55:56.636Z", + "completed":"2017-07-10T22:55:56.636Z", + "new_balance":"2140.61", + "value":"-53.18" + } + }, + { + "id":"70f5f3c0-4057-4bfe-b3b3-e24cde965c59", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:10:43.492Z", + "completed":"2017-07-12T08:10:43.492Z", + "new_balance":"2120.54", + "value":"-20.07" + } + }, + { + "id":"69c5971f-3f9d-431c-8826-f3ced6a3c13b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T09:21:17.104Z", + "completed":"2017-07-12T09:21:17.104Z", + "new_balance":"2081.37", + "value":"-39.17" + } + }, + { + "id":"0fc3ed0b-8d2b-4406-ac92-1e96f235082e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:43:29.296Z", + "completed":"2017-07-12T19:43:29.296Z", + "new_balance":"2056.81", + "value":"-24.56" + } + }, + { + "id":"842b9f2a-da54-481b-9770-09a845821a51", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T06:23:59.023Z", + "completed":"2017-07-15T06:23:59.023Z", + "new_balance":"2040.41", + "value":"-16.40" + } + }, + { + "id":"5f798f0b-6850-4c67-bd33-42e203b24fd3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T06:56:09.910Z", + "completed":"2017-07-16T06:56:09.910Z", + "new_balance":"1987.23", + "value":"-53.18" + } + }, + { + "id":"7b31b624-7e14-45ee-8fe3-6f34d7ebca74", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T21:08:36.414Z", + "completed":"2017-07-16T21:08:36.414Z", + "new_balance":"1981.08", + "value":"-6.15" + } + }, + { + "id":"a8704c5a-202a-482a-bcac-772a5ddfb3d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T10:56:22.996Z", + "completed":"2017-07-17T10:56:22.996Z", + "new_balance":"1949.76", + "value":"-31.32" + } + }, + { + "id":"05dea66f-bd1d-4274-8f1f-02feb1c071f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T23:29:13.133Z", + "completed":"2017-07-17T23:29:13.133Z", + "new_balance":"1888.58", + "value":"-61.18" + } + }, + { + "id":"391d9786-f766-4b4d-ac61-b421c2296afa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T17:11:36.512Z", + "completed":"2017-07-19T17:11:36.512Z", + "new_balance":"1858.18", + "value":"-30.40" + } + }, + { + "id":"28ff5724-6d5a-437f-a64e-31926ec5b8e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T01:35:45.145Z", + "completed":"2017-07-20T01:35:45.145Z", + "new_balance":"1805.00", + "value":"-53.18" + } + }, + { + "id":"4ed01aea-2169-4390-921e-fc11eee8b217", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T05:02:41.217Z", + "completed":"2017-07-23T05:02:41.217Z", + "new_balance":"1789.17", + "value":"-15.83" + } + }, + { + "id":"4ab18156-d12d-4c93-83ba-ff8a5a60a701", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T18:27:26.408Z", + "completed":"2017-07-26T18:27:26.408Z", + "new_balance":"1730.69", + "value":"-58.48" + } + }, + { + "id":"b2b55084-b612-4c67-8ea8-ec504cc76d62", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T10:41:52.663Z", + "completed":"2017-07-27T10:41:52.663Z", + "new_balance":"2919.20", + "value":"1188.51" + } + }, + { + "id":"6487ffd6-9d90-41e4-a277-11f2b01b8648", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T10:25:30.452Z", + "completed":"2017-07-28T10:25:30.452Z", + "new_balance":"2884.77", + "value":"-34.43" + } + }, + { + "id":"63a27963-4005-43ab-aa48-c7e5306ce4c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T20:48:36.834Z", + "completed":"2017-07-30T20:48:36.834Z", + "new_balance":"2842.43", + "value":"-42.34" + } + }, + { + "id":"02ddeeeb-b085-40c7-aa31-77e4c3c19db0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T23:57:03.351Z", + "completed":"2017-08-01T23:57:03.351Z", + "new_balance":"2780.56", + "value":"-61.87" + } + }, + { + "id":"01af25ab-5020-4424-84ad-90e3389c1249", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T03:57:56.706Z", + "completed":"2017-08-03T03:57:56.706Z", + "new_balance":"2270.02", + "value":"-510.54" + } + }, + { + "id":"f022329d-07a1-4b9c-9c2b-28cf628cf89b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T13:02:02.069Z", + "completed":"2017-08-03T13:02:02.069Z", + "new_balance":"2235.59", + "value":"-34.43" + } + }, + { + "id":"2f3e75d9-0e07-46d3-95dd-f6025d372fe6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T13:44:55.587Z", + "completed":"2017-08-03T13:44:55.587Z", + "new_balance":"2211.03", + "value":"-24.56" + } + }, + { + "id":"100d9ada-5cab-462a-bae7-4cc7ac64bf52", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T18:56:56.714Z", + "completed":"2017-08-03T18:56:56.714Z", + "new_balance":"2137.10", + "value":"-73.93" + } + }, + { + "id":"a9180fe9-06b8-46a8-a8de-02e1612ce622", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T03:18:20.428Z", + "completed":"2017-08-08T03:18:20.428Z", + "new_balance":"2093.12", + "value":"-43.98" + } + }, + { + "id":"993b2f1d-24e3-4f37-9c54-d82f415c4287", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T14:50:57.378Z", + "completed":"2017-08-08T14:50:57.378Z", + "new_balance":"2039.94", + "value":"-53.18" + } + }, + { + "id":"f32f1a3a-5625-4a3a-94a0-67fa25e18a9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T20:26:16.211Z", + "completed":"2017-08-11T20:26:16.211Z", + "new_balance":"2050.83", + "value":"10.89" + } + }, + { + "id":"283da079-da71-4c61-8ed8-556b6e2502cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T02:42:10.743Z", + "completed":"2017-08-13T02:42:10.743Z", + "new_balance":"2020.95", + "value":"-29.88" + } + }, + { + "id":"aa353139-7c3a-4813-a2a6-f76a8b1478f7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T17:56:36.497Z", + "completed":"2017-08-14T17:56:36.497Z", + "new_balance":"1993.10", + "value":"-27.85" + } + }, + { + "id":"210e73fe-f2c9-4081-9db7-d4db2ba1e645", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T14:09:00.905Z", + "completed":"2017-08-17T14:09:00.905Z", + "new_balance":"1982.19", + "value":"-10.91" + } + }, + { + "id":"1dc6d193-fc1c-4474-931b-48b526b2ebc0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T14:26:14.731Z", + "completed":"2017-08-21T14:26:14.731Z", + "new_balance":"1941.06", + "value":"-41.13" + } + }, + { + "id":"544d8001-f564-403e-91ed-ac4b0a7de323", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T18:09:58.508Z", + "completed":"2017-08-23T18:09:58.508Z", + "new_balance":"1887.88", + "value":"-53.18" + } + }, + { + "id":"a4f41501-c3c9-4019-be9a-af145e5ce06b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T21:39:46.618Z", + "completed":"2017-08-23T21:39:46.618Z", + "new_balance":"1846.96", + "value":"-40.92" + } + }, + { + "id":"1ae302aa-5a54-47da-9b6e-ccc268ca0665", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T04:50:11.792Z", + "completed":"2017-08-24T04:50:11.792Z", + "new_balance":"1836.05", + "value":"-10.91" + } + }, + { + "id":"f34a3abe-f295-405d-9888-ae89abbf53e0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T09:27:54.495Z", + "completed":"2017-08-27T09:27:54.495Z", + "new_balance":"3024.56", + "value":"1188.51" + } + }, + { + "id":"a6a7f65c-874f-4580-b73c-991a4b73750d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T14:35:09.937Z", + "completed":"2017-08-27T14:35:09.937Z", + "new_balance":"3007.82", + "value":"-16.74" + } + }, + { + "id":"ad8c445b-b20d-4aff-81f1-0c41fd06587c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T16:25:21.720Z", + "completed":"2017-08-27T16:25:21.720Z", + "new_balance":"2949.34", + "value":"-58.48" + } + }, + { + "id":"172a83ab-e56a-4eef-ba10-d422994b2db3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T17:21:38.013Z", + "completed":"2017-08-28T17:21:38.013Z", + "new_balance":"2914.91", + "value":"-34.43" + } + }, + { + "id":"0e48c703-7f68-40f1-b5b2-f5baaab10a5c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T04:05:13.855Z", + "completed":"2017-08-30T04:05:13.855Z", + "new_balance":"2872.57", + "value":"-42.34" + } + }, + { + "id":"b9df52ce-bb40-4280-9069-45ee395afe31", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T04:20:20.759Z", + "completed":"2017-09-01T04:20:20.759Z", + "new_balance":"2810.70", + "value":"-61.87" + } + }, + { + "id":"19eb9144-d15e-423b-b99c-e166a3e61c9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T07:36:25.738Z", + "completed":"2017-09-03T07:36:25.738Z", + "new_balance":"2300.16", + "value":"-510.54" + } + }, + { + "id":"6a905b31-5a5c-463c-9b1f-4d0fd6dea63e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T07:54:58.372Z", + "completed":"2017-09-03T07:54:58.372Z", + "new_balance":"2275.60", + "value":"-24.56" + } + }, + { + "id":"eed07306-02a9-4491-9d10-3782abdac54d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T22:01:05.837Z", + "completed":"2017-09-03T22:01:05.837Z", + "new_balance":"2241.17", + "value":"-34.43" + } + }, + { + "id":"c0412eb4-9d68-4e01-958e-c3ac39846a62", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T22:16:14.095Z", + "completed":"2017-09-03T22:16:14.095Z", + "new_balance":"2167.24", + "value":"-73.93" + } + }, + { + "id":"03dbed9b-e834-4e29-88ad-bafdf2bcc588", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T02:06:41.308Z", + "completed":"2017-09-05T02:06:41.308Z", + "new_balance":"2118.58", + "value":"-48.66" + } + }, + { + "id":"979defbd-3665-4d84-bff7-7456954a97fb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T07:23:27.055Z", + "completed":"2017-09-05T07:23:27.055Z", + "new_balance":"2065.40", + "value":"-53.18" + } + }, + { + "id":"da4f1ff4-36f9-40c7-9770-bd3f9f2a3031", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T22:12:55.120Z", + "completed":"2017-09-07T22:12:55.120Z", + "new_balance":"2051.73", + "value":"-13.67" + } + }, + { + "id":"a2faae62-ed0b-46e4-90b6-1ab7500df98b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T08:29:29.254Z", + "completed":"2017-09-09T08:29:29.254Z", + "new_balance":"1998.55", + "value":"-53.18" + } + }, + { + "id":"1283fa9c-9705-4aae-949c-7eea8ed23883", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T14:58:18.682Z", + "completed":"2017-09-11T14:58:18.682Z", + "new_balance":"1987.55", + "value":"-11.00" + } + }, + { + "id":"5eb63baf-ca15-49ac-b1a4-cf2f7a62e39f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T23:58:03.930Z", + "completed":"2017-09-13T23:58:03.930Z", + "new_balance":"1929.87", + "value":"-57.68" + } + }, + { + "id":"f5cca7b4-1fd3-4c50-ad7d-c409955c19e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T12:44:47.417Z", + "completed":"2017-09-14T12:44:47.417Z", + "new_balance":"1917.94", + "value":"-11.93" + } + }, + { + "id":"d1b62193-bab7-4f2a-9ee8-9ff67aed520c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T19:46:58.884Z", + "completed":"2017-09-14T19:46:58.884Z", + "new_balance":"1981.30", + "value":"63.36" + } + }, + { + "id":"ef1e8a81-d163-49b5-b7b4-73d3c089e2d9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T00:27:28.775Z", + "completed":"2017-09-15T00:27:28.775Z", + "new_balance":"1938.96", + "value":"-42.34" + } + }, + { + "id":"97c6f92a-3f57-4909-94ca-1a56fcdc0aa8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T11:06:38.925Z", + "completed":"2017-09-26T11:06:38.925Z", + "new_balance":"1912.12", + "value":"-26.84" + } + }, + { + "id":"8f7732da-7f9b-418f-9076-8c54cb86959b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T15:48:46.239Z", + "completed":"2017-09-26T15:48:46.239Z", + "new_balance":"1865.19", + "value":"-46.93" + } + }, + { + "id":"c9c6209e-975a-4ef1-9efd-be48cec54ba7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T20:32:40.073Z", + "completed":"2017-09-26T20:32:40.073Z", + "new_balance":"1839.82", + "value":"-25.37" + } + }, + { + "id":"ea3da5b6-a525-4a2d-9bac-cf7dbd8a0db9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T14:33:47.095Z", + "completed":"2017-09-27T14:33:47.095Z", + "new_balance":"3028.33", + "value":"1188.51" + } + }, + { + "id":"745ca07b-2325-4b48-831c-2b8b8243777d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T22:24:55.232Z", + "completed":"2017-09-27T22:24:55.232Z", + "new_balance":"2961.75", + "value":"-66.58" + } + }, + { + "id":"0d7d06fa-7c7f-487c-bd6c-b3858072bc8a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T23:18:39.766Z", + "completed":"2017-09-27T23:18:39.766Z", + "new_balance":"2908.57", + "value":"-53.18" + } + }, + { + "id":"e230c73e-8b4f-4571-a268-8a88bc75c248", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T14:39:45.495Z", + "completed":"2017-09-28T14:39:45.495Z", + "new_balance":"2874.14", + "value":"-34.43" + } + }, + { + "id":"e574ae46-e844-41e3-8e17-73fa066e739c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T00:24:12.601Z", + "completed":"2017-09-30T00:24:12.601Z", + "new_balance":"2831.80", + "value":"-42.34" + } + }, + { + "id":"77655abd-190a-43ce-8d83-b2b6d5756f73", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T00:43:46.061Z", + "completed":"2017-10-01T00:43:46.061Z", + "new_balance":"2769.93", + "value":"-61.87" + } + }, + { + "id":"4ce2a0c5-618f-4e3d-89dd-db2423f81296", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T01:45:13.406Z", + "completed":"2017-10-01T01:45:13.406Z", + "new_balance":"2696.00", + "value":"-73.93" + } + }, + { + "id":"25ffab8f-4b69-49fb-b079-ce553a6341f3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T16:52:42.364Z", + "completed":"2017-10-01T16:52:42.364Z", + "new_balance":"2671.44", + "value":"-24.56" + } + }, + { + "id":"8d2dca1f-3e44-47e8-b3d8-2da7bd7359c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T19:37:50.233Z", + "completed":"2017-10-01T19:37:50.233Z", + "new_balance":"2160.90", + "value":"-510.54" + } + }, + { + "id":"2928d33e-037b-476d-87f7-0ba843e2e8f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T20:34:54.672Z", + "completed":"2017-10-01T20:34:54.672Z", + "new_balance":"2126.47", + "value":"-34.43" + } + }, + { + "id":"0109e345-baf5-4f38-af15-cf4335c03936", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T00:04:56.420Z", + "completed":"2017-10-05T00:04:56.420Z", + "new_balance":"2073.29", + "value":"-53.18" + } + }, + { + "id":"34505812-15f1-4fc5-8485-eceb2234ca7d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:28:46.967Z", + "completed":"2017-10-05T20:28:46.967Z", + "new_balance":"2060.28", + "value":"-13.01" + } + }, + { + "id":"1a6adc41-80af-4cd1-bfab-500a6ed4954e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T21:34:02.188Z", + "completed":"2017-10-05T21:34:02.188Z", + "new_balance":"2037.59", + "value":"-22.69" + } + }, + { + "id":"46de46ae-2100-4e0a-a0fe-9ea717382ea1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T22:10:53.459Z", + "completed":"2017-10-05T22:10:53.459Z", + "new_balance":"1993.61", + "value":"-43.98" + } + }, + { + "id":"bfdd28e0-8bfa-456a-a4de-ad94430bb556", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T18:13:29.169Z", + "completed":"2017-10-07T18:13:29.169Z", + "new_balance":"1963.73", + "value":"-29.88" + } + }, + { + "id":"85e133f6-a6c8-4bf4-9af1-de94a4a7c877", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T09:29:16.356Z", + "completed":"2017-10-09T09:29:16.356Z", + "new_balance":"1938.86", + "value":"-24.87" + } + }, + { + "id":"597e8b13-7fc4-4eb3-a5eb-ce1376cc28fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T14:08:00.984Z", + "completed":"2017-10-09T14:08:00.984Z", + "new_balance":"1885.68", + "value":"-53.18" + } + }, + { + "id":"327ade43-ea1d-4520-9df0-ee0db6b7e2bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T00:33:52.447Z", + "completed":"2017-10-10T00:33:52.447Z", + "new_balance":"1869.28", + "value":"-16.40" + } + }, + { + "id":"ab601f12-6c76-4869-92ac-d8b98bfea1f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T02:22:52.541Z", + "completed":"2017-10-10T02:22:52.541Z", + "new_balance":"1830.11", + "value":"-39.17" + } + }, + { + "id":"29f83692-5410-4b04-8f81-c75493572b61", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:48:53.146Z", + "completed":"2017-10-10T18:48:53.146Z", + "new_balance":"1810.04", + "value":"-20.07" + } + }, + { + "id":"62f0977e-da01-46d1-b434-7c5a61078387", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:49:31.847Z", + "completed":"2017-10-10T18:49:31.847Z", + "new_balance":"1785.48", + "value":"-24.56" + } + }, + { + "id":"2e429acd-542e-42d9-86bb-36d9556caebe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T01:19:15.079Z", + "completed":"2017-10-11T01:19:15.079Z", + "new_balance":"1779.33", + "value":"-6.15" + } + }, + { + "id":"aefc7949-18f5-4a8c-9870-be8ba81f3f6e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T07:04:58.964Z", + "completed":"2017-10-11T07:04:58.964Z", + "new_balance":"1726.15", + "value":"-53.18" + } + }, + { + "id":"534c30a7-6add-4319-a89f-421dbcdaaf50", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T17:02:31.842Z", + "completed":"2017-10-11T17:02:31.842Z", + "new_balance":"1664.97", + "value":"-61.18" + } + }, + { + "id":"97d2567d-ce94-43b7-b803-bb7f5f3f9439", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T20:41:55.287Z", + "completed":"2017-10-11T20:41:55.287Z", + "new_balance":"1633.65", + "value":"-31.32" + } + }, + { + "id":"bd53d247-9983-4a50-8d7b-a6608964e183", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T21:59:41.225Z", + "completed":"2017-10-11T21:59:41.225Z", + "new_balance":"1603.25", + "value":"-30.40" + } + }, + { + "id":"1e49fd88-52d3-4c91-9af5-a93d0920219f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T08:35:48.418Z", + "completed":"2017-10-21T08:35:48.418Z", + "new_balance":"1550.07", + "value":"-53.18" + } + }, + { + "id":"0d50fc90-bc0a-4950-bbdb-3275b2786444", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:09:01.164Z", + "completed":"2017-10-23T05:09:01.164Z", + "new_balance":"1534.24", + "value":"-15.83" + } + }, + { + "id":"cd6b73e9-4f76-404b-b6bc-91ce43e8c283", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T12:04:50.078Z", + "completed":"2017-10-29T12:04:50.078Z", + "new_balance":"1499.81", + "value":"-34.43" + } + }, + { + "id":"66818d5f-0f12-4dbf-ae14-d4f5c9f4b859", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T13:07:00.424Z", + "completed":"2017-10-29T13:07:00.424Z", + "new_balance":"2688.32", + "value":"1188.51" + } + }, + { + "id":"772fa8b4-8d44-4ce8-82d6-0e6eb47552ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T22:04:04.114Z", + "completed":"2017-10-29T22:04:04.114Z", + "new_balance":"2629.84", + "value":"-58.48" + } + }, + { + "id":"0c199c09-b986-4241-a3a5-d4072460e3c3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T08:08:18.240Z", + "completed":"2017-10-30T08:08:18.240Z", + "new_balance":"2587.50", + "value":"-42.34" + } + }, + { + "id":"41dd3b8c-e450-476c-a71b-444df729a91a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T02:14:57.248Z", + "completed":"2017-11-02T02:14:57.248Z", + "new_balance":"2076.96", + "value":"-510.54" + } + }, + { + "id":"4816f091-2d7a-4bad-a847-8983d8efa291", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T06:12:03.809Z", + "completed":"2017-11-02T06:12:03.809Z", + "new_balance":"2052.40", + "value":"-24.56" + } + }, + { + "id":"42d927e0-b8ea-4bad-95ad-13891a877e25", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T10:32:50.987Z", + "completed":"2017-11-02T10:32:50.987Z", + "new_balance":"1990.53", + "value":"-61.87" + } + }, + { + "id":"386d9a78-0034-4b34-91e1-f4e88b449a4e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T16:56:13.784Z", + "completed":"2017-11-02T16:56:13.784Z", + "new_balance":"1916.60", + "value":"-73.93" + } + }, + { + "id":"c744e3de-9427-4c01-81b1-cb1a42073bac", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T04:38:04.496Z", + "completed":"2017-11-06T04:38:04.496Z", + "new_balance":"1872.62", + "value":"-43.98" + } + }, + { + "id":"f4b087d0-c2c6-49fc-9574-4081d4da1305", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T09:39:48.276Z", + "completed":"2017-11-07T09:39:48.276Z", + "new_balance":"1842.74", + "value":"-29.88" + } + }, + { + "id":"b0114ab7-8a9c-424d-8d06-8437e2f521e3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T11:28:24.790Z", + "completed":"2017-11-07T11:28:24.790Z", + "new_balance":"1814.89", + "value":"-27.85" + } + }, + { + "id":"db5a79d3-a862-40a9-a010-5410a123a4cc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T13:39:20.229Z", + "completed":"2017-11-07T13:39:20.229Z", + "new_balance":"1803.98", + "value":"-10.91" + } + }, + { + "id":"785beaae-c873-461e-9d8a-e5a009c75bc2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T20:35:07.187Z", + "completed":"2017-11-07T20:35:07.187Z", + "new_balance":"1762.85", + "value":"-41.13" + } + }, + { + "id":"cf78df09-1a32-4f44-a86e-97e60303a455", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T19:11:21.149Z", + "completed":"2017-11-08T19:11:21.149Z", + "new_balance":"1721.93", + "value":"-40.92" + } + }, + { + "id":"cd752111-490c-4b89-bba1-97fc815049dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T09:56:20.175Z", + "completed":"2017-11-09T09:56:20.175Z", + "new_balance":"1687.50", + "value":"-34.43" + } + }, + { + "id":"5deeb3ae-7221-4b81-9749-a199f938450c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T22:26:47.216Z", + "completed":"2017-11-13T22:26:47.216Z", + "new_balance":"1634.32", + "value":"-53.18" + } + }, + { + "id":"f81fff10-8193-4539-8d34-1e72ec86a0e2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T18:12:04.169Z", + "completed":"2017-11-26T18:12:04.169Z", + "new_balance":"1623.41", + "value":"-10.91" + } + }, + { + "id":"67e32b61-1e66-4e0a-9aa1-9ad3a43d390b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T19:20:33.494Z", + "completed":"2017-11-26T19:20:33.494Z", + "new_balance":"1570.23", + "value":"-53.18" + } + }, + { + "id":"42ebea61-b28d-4655-9803-7f5cceb085ec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T12:10:17.776Z", + "completed":"2017-11-27T12:10:17.776Z", + "new_balance":"1553.49", + "value":"-16.74" + } + }, + { + "id":"d11343f0-e82e-4041-ad14-21633859221c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T18:57:44.841Z", + "completed":"2017-11-27T18:57:44.841Z", + "new_balance":"1495.01", + "value":"-58.48" + } + }, + { + "id":"a4784fc7-9bdd-4421-995e-df66ac41cc2f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T01:47:42.537Z", + "completed":"2017-11-30T01:47:42.537Z", + "new_balance":"2683.52", + "value":"1188.51" + } + }, + { + "id":"6330d320-0a68-4c9d-87d4-b91f55fb2cd7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T09:46:05.504Z", + "completed":"2017-11-30T09:46:05.504Z", + "new_balance":"2641.18", + "value":"-42.34" + } + }, + { + "id":"3d0db0a5-7a64-4102-a87f-a37710a119b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T18:27:56.347Z", + "completed":"2017-11-30T18:27:56.347Z", + "new_balance":"2606.75", + "value":"-34.43" + } + }, + { + "id":"939d7c24-3ba9-4e05-9a09-3858a2e5d7bd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T03:23:14.356Z", + "completed":"2017-12-01T03:23:14.356Z", + "new_balance":"2593.08", + "value":"-13.67" + } + }, + { + "id":"d27ce365-3e00-4f66-9605-aa727d231b8c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T07:27:38.833Z", + "completed":"2017-12-01T07:27:38.833Z", + "new_balance":"2539.90", + "value":"-53.18" + } + }, + { + "id":"f5c40e9d-2cf8-4458-83cd-1be74aec2072", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T08:41:19.374Z", + "completed":"2017-12-01T08:41:19.374Z", + "new_balance":"2491.24", + "value":"-48.66" + } + }, + { + "id":"790eac82-a137-4aa4-b495-5f672ff99415", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T18:06:24.020Z", + "completed":"2017-12-01T18:06:24.020Z", + "new_balance":"1980.70", + "value":"-510.54" + } + }, + { + "id":"739b28b6-1cde-4a1a-ae68-9d01f3e9cf01", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T19:05:13.389Z", + "completed":"2017-12-01T19:05:13.389Z", + "new_balance":"1906.77", + "value":"-73.93" + } + }, + { + "id":"4094a21b-5c3c-48d1-8efa-bab35c56afde", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:23:44.153Z", + "completed":"2017-12-01T19:23:44.153Z", + "new_balance":"1844.90", + "value":"-61.87" + } + }, + { + "id":"63ce745a-adc6-4c7e-82e3-6a3cf1d55e7f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T19:44:49.893Z", + "completed":"2017-12-01T19:44:49.893Z", + "new_balance":"1820.34", + "value":"-24.56" + } + }, + { + "id":"53db9bca-fc44-45a9-8816-a5f921705622", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T21:00:05.560Z", + "completed":"2017-12-01T21:00:05.560Z", + "new_balance":"1785.91", + "value":"-34.43" + } + }, + { + "id":"ad6f6389-aa92-40ca-bbe4-ec2151b5e335", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T21:13:04.524Z", + "completed":"2017-12-01T21:13:04.524Z", + "new_balance":"1732.73", + "value":"-53.18" + } + }, + { + "id":"b8609bf3-6550-4c27-905a-b9e952c774d7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T10:57:58.816Z", + "completed":"2017-12-02T10:57:58.816Z", + "new_balance":"1721.73", + "value":"-11.00" + } + }, + { + "id":"8548a791-ead5-4ee0-9cb0-99d1810c70aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T16:49:36.402Z", + "completed":"2017-12-02T16:49:36.402Z", + "new_balance":"1709.80", + "value":"-11.93" + } + }, + { + "id":"0b081ca4-02cd-443b-b079-f690131067a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:53:17.542Z", + "completed":"2017-12-02T17:53:17.542Z", + "new_balance":"1652.12", + "value":"-57.68" + } + }, + { + "id":"561d3117-ce2b-422e-ad40-cd1bcdb2743e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T09:54:28.598Z", + "completed":"2017-12-04T09:54:28.598Z", + "new_balance":"1605.19", + "value":"-46.93" + } + }, + { + "id":"6356c921-f0fb-434a-843c-96c9cdfec19c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T10:34:01.035Z", + "completed":"2017-12-04T10:34:01.035Z", + "new_balance":"1562.85", + "value":"-42.34" + } + }, + { + "id":"14c715ab-9c61-4bf3-a754-d39364ec506e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T23:59:20.524Z", + "completed":"2017-12-04T23:59:20.524Z", + "new_balance":"1537.48", + "value":"-25.37" + } + }, + { + "id":"978d5d2c-67e6-4d8d-8c9c-daf8e5951fdf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T09:36:39.914Z", + "completed":"2017-12-05T09:36:39.914Z", + "new_balance":"1470.90", + "value":"-66.58" + } + }, + { + "id":"ec7e4a20-160d-4b48-bbf7-b7a99f03a566", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T17:53:25.486Z", + "completed":"2017-12-05T17:53:25.486Z", + "new_balance":"1444.06", + "value":"-26.84" + } + }, + { + "id":"f28341af-7a96-4068-906f-cb0e361f0d55", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T01:41:05.712Z", + "completed":"2017-12-18T01:41:05.712Z", + "new_balance":"1390.88", + "value":"-53.18" + } + }, + { + "id":"d4b0101b-f271-4084-9d2c-abb3113d83c7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T03:25:59.134Z", + "completed":"2017-12-30T03:25:59.134Z", + "new_balance":"2579.39", + "value":"1188.51" + } + }, + { + "id":"261f5b83-7ad8-43bc-9886-ba172bb36114", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T06:48:41.544Z", + "completed":"2017-12-30T06:48:41.544Z", + "new_balance":"2544.96", + "value":"-34.43" + } + }, + { + "id":"cb4aae47-8279-4912-b7f5-b5b47248d793", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T06:54:45.442Z", + "completed":"2017-12-30T06:54:45.442Z", + "new_balance":"2502.62", + "value":"-42.34" + } + }, + { + "id":"27f3573c-0e46-4228-b57f-0e9af52852aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T15:59:36.851Z", + "completed":"2017-12-30T15:59:36.851Z", + "new_balance":"2461.09", + "value":"-41.53" + } + }, + { + "id":"6830a845-5f14-49ad-9ff2-5b22d679ea34", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T22:49:46.141Z", + "completed":"2016-03-01T22:49:46.141Z", + "new_balance":"8485.58", + "value":"-45.51" + } + }, + { + "id":"96cca96a-07e6-4e40-a3e5-64766c1e5972", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T07:04:02.486Z", + "completed":"2016-03-02T07:04:02.486Z", + "new_balance":"8411.65", + "value":"-73.93" + } + }, + { + "id":"b7b29775-812e-4f1b-a874-83400e367cc3", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T01:03:02.194Z", + "completed":"2016-03-06T01:03:02.194Z", + "new_balance":"8360.55", + "value":"-51.10" + } + }, + { + "id":"ea923735-e5c7-4f5d-baa2-326a281a27a2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T21:52:34.334Z", + "completed":"2016-03-11T21:52:34.334Z", + "new_balance":"8353.86", + "value":"-6.69" + } + }, + { + "id":"4c97a32e-d808-451e-8779-4adf399099d7", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T06:21:49.220Z", + "completed":"2016-03-13T06:21:49.220Z", + "new_balance":"8350.16", + "value":"-3.70" + } + }, + { + "id":"d88d24e4-7bf1-4386-b95a-1062e1e11b29", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T18:09:19.164Z", + "completed":"2016-03-16T18:09:19.164Z", + "new_balance":"8032.95", + "value":"-317.21" + } + }, + { + "id":"b0cca77c-aed0-4d01-884f-0db2829a0a5a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T03:56:55.769Z", + "completed":"2016-03-17T03:56:55.769Z", + "new_balance":"7869.47", + "value":"-163.48" + } + }, + { + "id":"4ae62ff0-2716-448b-9e04-68336b1e54b1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T12:27:41.018Z", + "completed":"2016-03-17T12:27:41.018Z", + "new_balance":"7827.13", + "value":"-42.34" + } + }, + { + "id":"1c2844bf-8bd0-4c22-9d4a-3ff8be9bd6e5", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T16:59:34.120Z", + "completed":"2016-03-19T16:59:34.120Z", + "new_balance":"7823.43", + "value":"-3.70" + } + }, + { + "id":"758f1ee4-ccb0-49b3-8c94-71aa73424832", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T20:38:24.567Z", + "completed":"2016-03-21T20:38:24.567Z", + "new_balance":"7803.85", + "value":"-19.58" + } + }, + { + "id":"5da8b1df-c108-46e0-904d-47e99db17a46", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T23:47:36.323Z", + "completed":"2016-03-23T23:47:36.323Z", + "new_balance":"7758.34", + "value":"-45.51" + } + }, + { + "id":"f287f10c-a342-4d05-ad37-1e51725d61f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T02:12:34.672Z", + "completed":"2016-03-24T02:12:34.672Z", + "new_balance":"7751.65", + "value":"-6.69" + } + }, + { + "id":"78a49b7c-2e6a-47cc-98f7-99494705cfc2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T16:34:58.905Z", + "completed":"2016-03-26T16:34:58.905Z", + "new_balance":"7738.64", + "value":"-13.01" + } + }, + { + "id":"4f437a5e-13ee-4974-a9e3-894c02e014d2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T19:23:04.028Z", + "completed":"2016-04-01T19:23:04.028Z", + "new_balance":"7725.63", + "value":"-13.01" + } + }, + { + "id":"2cb1fd4b-acbc-453d-b34a-0d35ea7d4886", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T07:04:16.085Z", + "completed":"2016-06-01T07:04:16.085Z", + "new_balance":"7680.12", + "value":"-45.51" + } + }, + { + "id":"e0ef1265-de92-42eb-a774-cb0e7e268a54", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T11:12:52.544Z", + "completed":"2016-06-04T11:12:52.544Z", + "new_balance":"7606.19", + "value":"-73.93" + } + }, + { + "id":"72f152d2-700a-4bd6-b6b9-bbc8eccb7f6e", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T10:55:47.467Z", + "completed":"2016-06-19T10:55:47.467Z", + "new_balance":"7555.09", + "value":"-51.10" + } + }, + { + "id":"6a4e5294-d1df-4b4e-ac1b-a08a5dae6398", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T14:33:45.291Z", + "completed":"2016-06-21T14:33:45.291Z", + "new_balance":"7548.40", + "value":"-6.69" + } + }, + { + "id":"e5125341-f228-4cf2-8ba7-f4d1495655f8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T08:49:34.475Z", + "completed":"2016-06-24T08:49:34.475Z", + "new_balance":"7544.70", + "value":"-3.70" + } + }, + { + "id":"141ebae4-2823-42c3-b666-e1eaa657be28", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T01:52:14.240Z", + "completed":"2016-06-28T01:52:14.240Z", + "new_balance":"7227.49", + "value":"-317.21" + } + }, + { + "id":"bb7b258f-4ad5-4618-84e8-a7cac5d63a0e", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T01:55:47.623Z", + "completed":"2016-06-28T01:55:47.623Z", + "new_balance":"7185.15", + "value":"-42.34" + } + }, + { + "id":"61fadf5e-05ce-49e3-80dd-c2cda62972c4", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T18:34:30.767Z", + "completed":"2016-06-28T18:34:30.767Z", + "new_balance":"7021.67", + "value":"-163.48" + } + }, + { + "id":"3ed467b5-8855-4236-95e2-ba5d275ad602", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T16:01:27.619Z", + "completed":"2016-06-29T16:01:27.619Z", + "new_balance":"7017.97", + "value":"-3.70" + } + }, + { + "id":"af52ea42-d28a-4f3c-b761-700256220008", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T09:38:14.370Z", + "completed":"2016-06-30T09:38:14.370Z", + "new_balance":"7011.28", + "value":"-6.69" + } + }, + { + "id":"c4faab2a-efd7-4508-8355-b1c83f6c8179", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T12:03:13.767Z", + "completed":"2016-06-30T12:03:13.767Z", + "new_balance":"6991.70", + "value":"-19.58" + } + }, + { + "id":"41bfb0bc-976c-445f-9c48-6e4bb72aad4f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T16:24:29.470Z", + "completed":"2016-06-30T16:24:29.470Z", + "new_balance":"6946.19", + "value":"-45.51" + } + }, + { + "id":"681c1a40-40aa-4fde-868d-8a014a80dc29", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T22:14:05.822Z", + "completed":"2016-09-01T22:14:05.822Z", + "new_balance":"6922.33", + "value":"-23.86" + } + }, + { + "id":"3f945e3e-a258-49e8-8b64-c6a8459fc2be", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T17:21:41.764Z", + "completed":"2016-09-02T17:21:41.764Z", + "new_balance":"6848.40", + "value":"-73.93" + } + }, + { + "id":"b61dd4d9-e5b1-47cc-b16f-4e2a8d9549c8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T22:27:28.860Z", + "completed":"2016-09-07T22:27:28.860Z", + "new_balance":"6797.30", + "value":"-51.10" + } + }, + { + "id":"43ba7330-83e2-405a-baee-65e85ec406d3", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T15:12:55.162Z", + "completed":"2016-09-11T15:12:55.162Z", + "new_balance":"6790.61", + "value":"-6.69" + } + }, + { + "id":"1c9f049d-7305-4fd8-ad61-5a2487d15095", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T15:41:41.062Z", + "completed":"2016-09-15T15:41:41.062Z", + "new_balance":"6779.70", + "value":"-10.91" + } + }, + { + "id":"d63a4d2c-d414-4796-9e23-b51c4906d9e5", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T00:53:35.569Z", + "completed":"2016-09-17T00:53:35.569Z", + "new_balance":"6462.49", + "value":"-317.21" + } + }, + { + "id":"cd90b861-716b-42c4-af9d-c61ca7c600f8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T10:40:58.261Z", + "completed":"2016-09-17T10:40:58.261Z", + "new_balance":"6299.01", + "value":"-163.48" + } + }, + { + "id":"cfb822b5-b348-4efc-952f-d5d9c90b0c2f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T21:05:33.203Z", + "completed":"2016-09-17T21:05:33.203Z", + "new_balance":"6256.67", + "value":"-42.34" + } + }, + { + "id":"c278a1c4-b7db-445f-8917-f85f3f6834f9", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T19:57:52.449Z", + "completed":"2016-09-19T19:57:52.449Z", + "new_balance":"6252.97", + "value":"-3.70" + } + }, + { + "id":"dbe2b996-33f2-4992-801d-964945459983", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T20:39:40.823Z", + "completed":"2016-09-21T20:39:40.823Z", + "new_balance":"6233.39", + "value":"-19.58" + } + }, + { + "id":"664a6c34-0aac-4518-83bd-a72d19807600", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T21:08:10.348Z", + "completed":"2016-09-23T21:08:10.348Z", + "new_balance":"6187.88", + "value":"-45.51" + } + }, + { + "id":"41149eaa-ed21-456b-80a3-0555fbb5f48d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T15:29:35.456Z", + "completed":"2016-09-24T15:29:35.456Z", + "new_balance":"6181.19", + "value":"-6.69" + } + }, + { + "id":"f3c745b9-f435-4889-9d60-2e9b55fe90f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T04:03:13.921Z", + "completed":"2016-09-27T04:03:13.921Z", + "new_balance":"6168.18", + "value":"-13.01" + } + }, + { + "id":"579256d6-4dbe-4344-b3b2-c4236a225747", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T03:17:38.750Z", + "completed":"2016-10-01T03:17:38.750Z", + "new_balance":"6155.17", + "value":"-13.01" + } + }, + { + "id":"d5f8d626-83d1-4dcd-8f3e-7f4394ae0c7a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T09:53:55.726Z", + "completed":"2016-12-01T09:53:55.726Z", + "new_balance":"6109.66", + "value":"-45.51" + } + }, + { + "id":"7cf08511-a882-47e8-8ed2-16f6e5b89835", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T05:41:37.484Z", + "completed":"2016-12-04T05:41:37.484Z", + "new_balance":"6035.73", + "value":"-73.93" + } + }, + { + "id":"05d74177-9942-4772-a680-94d1bb90bcbb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T12:50:23.831Z", + "completed":"2016-12-19T12:50:23.831Z", + "new_balance":"5984.63", + "value":"-51.10" + } + }, + { + "id":"0f20dbf8-74b3-4cb6-9a41-1c8bd1f922b0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T04:46:47.523Z", + "completed":"2016-12-24T04:46:47.523Z", + "new_balance":"5980.93", + "value":"-3.70" + } + }, + { + "id":"1bd1b0e5-7d0b-4ad1-aca2-f238d36bf6d2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T07:25:14.167Z", + "completed":"2016-12-24T07:25:14.167Z", + "new_balance":"5974.24", + "value":"-6.69" + } + }, + { + "id":"c89eafe7-ebc2-4da4-a1b8-e7593398d78f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T05:58:33.488Z", + "completed":"2016-12-28T05:58:33.488Z", + "new_balance":"5657.03", + "value":"-317.21" + } + }, + { + "id":"1011f8a0-b2a6-4b97-91b6-39b6f425a265", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T08:41:36.690Z", + "completed":"2016-12-28T08:41:36.690Z", + "new_balance":"5493.55", + "value":"-163.48" + } + }, + { + "id":"1f7ec20d-1a63-48f5-8486-09f2eeff18ef", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T16:33:21.444Z", + "completed":"2016-12-28T16:33:21.444Z", + "new_balance":"5451.21", + "value":"-42.34" + } + }, + { + "id":"c1eab08e-fdee-473e-979e-bea3ab69a70d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T16:01:55.239Z", + "completed":"2016-12-29T16:01:55.239Z", + "new_balance":"5447.51", + "value":"-3.70" + } + }, + { + "id":"fd96d5f1-b8dd-40e4-9759-e61300ae63ce", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T05:53:22.652Z", + "completed":"2016-12-30T05:53:22.652Z", + "new_balance":"5427.93", + "value":"-19.58" + } + }, + { + "id":"fa50d045-0c59-40bf-bbe8-c01c31d4edbb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T14:11:44.300Z", + "completed":"2016-12-30T14:11:44.300Z", + "new_balance":"5421.24", + "value":"-6.69" + } + }, + { + "id":"f17c4310-31a6-49fe-8ee7-831b6454ffa1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T14:41:35.579Z", + "completed":"2016-12-30T14:41:35.579Z", + "new_balance":"5375.73", + "value":"-45.51" + } + }, + { + "id":"5043bcb7-a696-46c7-811b-9fe79c8ba543", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T17:04:35.788Z", + "completed":"2017-03-01T17:04:35.788Z", + "new_balance":"5330.22", + "value":"-45.51" + } + }, + { + "id":"01fdee93-dfa3-4e5c-b388-70e9cf9d96e9", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T22:56:19.368Z", + "completed":"2017-03-02T22:56:19.368Z", + "new_balance":"5256.29", + "value":"-73.93" + } + }, + { + "id":"66d27592-1233-4d23-9c20-2625b5531799", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T04:12:32.908Z", + "completed":"2017-03-06T04:12:32.908Z", + "new_balance":"5205.19", + "value":"-51.10" + } + }, + { + "id":"d40346a5-5f04-4a1c-a06c-c222410d55f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T05:53:35.813Z", + "completed":"2017-03-11T05:53:35.813Z", + "new_balance":"5198.50", + "value":"-6.69" + } + }, + { + "id":"c8913675-14b8-40ac-b13d-104c92a049e2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T09:50:02.854Z", + "completed":"2017-03-13T09:50:02.854Z", + "new_balance":"5194.80", + "value":"-3.70" + } + }, + { + "id":"018406c5-8708-4338-9d7a-e4f921cbc22d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T10:01:42.481Z", + "completed":"2017-03-16T10:01:42.481Z", + "new_balance":"4877.59", + "value":"-317.21" + } + }, + { + "id":"9dba0d69-3299-4849-836e-818510eaa44f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T03:28:41.200Z", + "completed":"2017-03-17T03:28:41.200Z", + "new_balance":"4835.25", + "value":"-42.34" + } + }, + { + "id":"9c7b27b2-7b2a-435e-a17a-ef98f319b274", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T09:16:51.890Z", + "completed":"2017-03-17T09:16:51.890Z", + "new_balance":"4671.77", + "value":"-163.48" + } + }, + { + "id":"00bb5159-e41c-4a7f-aca9-545b41dd4655", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T08:27:39.056Z", + "completed":"2017-03-19T08:27:39.056Z", + "new_balance":"4668.07", + "value":"-3.70" + } + }, + { + "id":"9a1725c1-10b4-4302-8f6a-9f05f91a641c", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T15:31:25.637Z", + "completed":"2017-03-21T15:31:25.637Z", + "new_balance":"4648.49", + "value":"-19.58" + } + }, + { + "id":"2d24828a-fcfe-4fb6-bfd0-86e0a4ff7b39", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T06:57:23.894Z", + "completed":"2017-03-23T06:57:23.894Z", + "new_balance":"4602.98", + "value":"-45.51" + } + }, + { + "id":"70040218-0198-49fc-9d4f-2bc10275e8ea", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T19:21:23.930Z", + "completed":"2017-03-24T19:21:23.930Z", + "new_balance":"4596.29", + "value":"-6.69" + } + }, + { + "id":"190c1820-e196-4355-bece-f628bdb5b45a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T01:53:42.615Z", + "completed":"2017-03-26T01:53:42.615Z", + "new_balance":"4583.28", + "value":"-13.01" + } + }, + { + "id":"8764df32-ff94-44ef-970b-031e85300f59", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T06:26:03.043Z", + "completed":"2017-04-01T06:26:03.043Z", + "new_balance":"4570.27", + "value":"-13.01" + } + }, + { + "id":"bc064bb1-775f-4f9f-9e4b-eada562ef65a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T18:56:24.985Z", + "completed":"2017-06-01T18:56:24.985Z", + "new_balance":"4524.76", + "value":"-45.51" + } + }, + { + "id":"bd8a4e54-d702-4a33-8afb-72466f0a4005", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T09:18:09.725Z", + "completed":"2017-06-04T09:18:09.725Z", + "new_balance":"4450.83", + "value":"-73.93" + } + }, + { + "id":"0082f1d2-fc64-422d-81dd-f77407b13d76", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T12:24:43.621Z", + "completed":"2017-06-19T12:24:43.621Z", + "new_balance":"4399.73", + "value":"-51.10" + } + }, + { + "id":"0113643d-f061-4b27-903e-8ccaaa0132bb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T15:16:01.082Z", + "completed":"2017-06-21T15:16:01.082Z", + "new_balance":"4393.04", + "value":"-6.69" + } + }, + { + "id":"1f45252b-c449-48fc-93e3-c7fcfed87081", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T07:23:38.864Z", + "completed":"2017-06-24T07:23:38.864Z", + "new_balance":"4389.34", + "value":"-3.70" + } + }, + { + "id":"43db99f8-28cc-42ea-b19b-678bb0a793e4", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T02:51:48.383Z", + "completed":"2017-06-28T02:51:48.383Z", + "new_balance":"4347.00", + "value":"-42.34" + } + }, + { + "id":"0359604e-5593-454f-8edc-ca71deb42d39", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T06:00:35.887Z", + "completed":"2017-06-28T06:00:35.887Z", + "new_balance":"4029.79", + "value":"-317.21" + } + }, + { + "id":"eccaa2a1-8221-4bc0-97b1-aa31b0ddf684", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T14:00:05.642Z", + "completed":"2017-06-28T14:00:05.642Z", + "new_balance":"3866.31", + "value":"-163.48" + } + }, + { + "id":"58b55bc9-f81c-4dfd-b771-85cb9d47616d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T08:47:43.368Z", + "completed":"2017-06-29T08:47:43.368Z", + "new_balance":"3862.61", + "value":"-3.70" + } + }, + { + "id":"a222b7b1-43d1-4fc9-ac2a-e4acbd44a4bc", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T08:02:44.974Z", + "completed":"2017-06-30T08:02:44.974Z", + "new_balance":"3843.03", + "value":"-19.58" + } + }, + { + "id":"b7ebc730-5e66-4514-a09a-e62a46fe522d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T18:54:49.356Z", + "completed":"2017-06-30T18:54:49.356Z", + "new_balance":"3836.34", + "value":"-6.69" + } + }, + { + "id":"b18c55f2-f6ed-47ea-8a86-f3d4ce285eee", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T22:29:45.097Z", + "completed":"2017-06-30T22:29:45.097Z", + "new_balance":"3790.83", + "value":"-45.51" + } + }, + { + "id":"f03b87fa-af7d-4b07-bcda-96cfbfe0bff2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T05:22:41.003Z", + "completed":"2017-09-01T05:22:41.003Z", + "new_balance":"3766.97", + "value":"-23.86" + } + }, + { + "id":"26488fba-1ade-49d1-83ba-371cafec0908", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T21:40:20.764Z", + "completed":"2017-09-02T21:40:20.764Z", + "new_balance":"3693.04", + "value":"-73.93" + } + }, + { + "id":"4a131526-6d04-4c52-bb75-cba0a129cca8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T00:27:00.008Z", + "completed":"2017-09-07T00:27:00.008Z", + "new_balance":"3641.94", + "value":"-51.10" + } + }, + { + "id":"eba9f41d-83a0-4311-881e-1a4053dcc72a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T16:57:46.820Z", + "completed":"2017-09-11T16:57:46.820Z", + "new_balance":"3635.25", + "value":"-6.69" + } + }, + { + "id":"a9c2a0bc-5951-42d4-858f-ed81632074ae", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T08:04:55.242Z", + "completed":"2017-09-15T08:04:55.242Z", + "new_balance":"3624.34", + "value":"-10.91" + } + }, + { + "id":"abb8da83-b384-4842-a8da-ac8e53eac4d7", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T00:46:58.869Z", + "completed":"2017-09-17T00:46:58.869Z", + "new_balance":"3582.00", + "value":"-42.34" + } + }, + { + "id":"ae6ad642-4894-43a2-92d9-6a3225d240ff", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T09:33:13.865Z", + "completed":"2017-09-17T09:33:13.865Z", + "new_balance":"3418.52", + "value":"-163.48" + } + }, + { + "id":"b7b4e0cc-7456-4278-b83c-e2059cb31f68", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T11:23:30.670Z", + "completed":"2017-09-17T11:23:30.670Z", + "new_balance":"3101.31", + "value":"-317.21" + } + }, + { + "id":"3dfde0d4-b3e7-4124-a61b-3d257d7c1578", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T18:00:30.708Z", + "completed":"2017-09-19T18:00:30.708Z", + "new_balance":"3097.61", + "value":"-3.70" + } + }, + { + "id":"2d10b2b3-4e3e-46fa-b9dc-d3ba29597177", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T00:17:38.449Z", + "completed":"2017-09-21T00:17:38.449Z", + "new_balance":"3078.03", + "value":"-19.58" + } + }, + { + "id":"67e9ff07-47e8-40f0-b198-48ae2e4ca42a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T02:09:28.502Z", + "completed":"2017-09-23T02:09:28.502Z", + "new_balance":"3032.52", + "value":"-45.51" + } + }, + { + "id":"be7dec8b-ca22-4472-ad3e-2b8daaff54c1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T14:34:42.795Z", + "completed":"2017-09-24T14:34:42.795Z", + "new_balance":"3025.83", + "value":"-6.69" + } + }, + { + "id":"85fb9f29-df70-4392-b68f-b9954e97ba74", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T23:45:25.474Z", + "completed":"2017-09-27T23:45:25.474Z", + "new_balance":"3012.82", + "value":"-13.01" + } + }, + { + "id":"72682eb3-858f-45c5-8730-6e833e7f6511", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T11:24:42.458Z", + "completed":"2017-10-01T11:24:42.458Z", + "new_balance":"2999.81", + "value":"-13.01" + } + }, + { + "id":"fbdea3eb-b488-4f54-805e-65bd2eaae1df", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T05:49:04.430Z", + "completed":"2017-12-01T05:49:04.430Z", + "new_balance":"2954.30", + "value":"-45.51" + } + }, + { + "id":"a7328416-37bc-4318-9fd1-055f3058fcb2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T06:03:22.630Z", + "completed":"2017-12-04T06:03:22.630Z", + "new_balance":"2880.37", + "value":"-73.93" + } + }, + { + "id":"f5137ff3-36bc-4639-8fec-d081828a7987", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T15:46:08.932Z", + "completed":"2017-12-19T15:46:08.932Z", + "new_balance":"2829.27", + "value":"-51.10" + } + }, + { + "id":"40dc33b5-aade-402f-802b-ee165f8d7f4f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T00:11:51.855Z", + "completed":"2017-12-24T00:11:51.855Z", + "new_balance":"2825.57", + "value":"-3.70" + } + }, + { + "id":"1e524f7f-2955-481f-9b3b-10cf42b95094", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T06:52:54.410Z", + "completed":"2017-12-24T06:52:54.410Z", + "new_balance":"2818.88", + "value":"-6.69" + } + }, + { + "id":"91184b0e-d45c-4de0-aa4f-ea6db7c7a9ba", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T01:10:10.597Z", + "completed":"2017-12-28T01:10:10.597Z", + "new_balance":"2501.67", + "value":"-317.21" + } + }, + { + "id":"faf5b9eb-073e-4f4c-9ca8-62a8dc3a52fb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T19:43:26.504Z", + "completed":"2017-12-28T19:43:26.504Z", + "new_balance":"2459.33", + "value":"-42.34" + } + }, + { + "id":"e983e37a-7974-4be1-9b31-f17371d89d5f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T22:07:24.234Z", + "completed":"2017-12-28T22:07:24.234Z", + "new_balance":"2295.85", + "value":"-163.48" + } + }, + { + "id":"6dae1747-d469-4574-b046-2aef83fe9a51", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T21:28:42.979Z", + "completed":"2017-12-29T21:28:42.979Z", + "new_balance":"2292.15", + "value":"-3.70" + } + }, + { + "id":"395a9392-18ce-4cdc-bebb-b7912afe1970", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T05:54:59.303Z", + "completed":"2017-12-30T05:54:59.303Z", + "new_balance":"2272.57", + "value":"-19.58" + } + }, + { + "id":"1a25d599-c282-4dee-919b-1b32228973cd", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T10:52:34.652Z", + "completed":"2017-12-30T10:52:34.652Z", + "new_balance":"2227.06", + "value":"-45.51" + } + }, + { + "id":"d6cedf87-c360-4a6a-bd7b-a56b6d47e133", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T11:54:50.264Z", + "completed":"2017-12-30T11:54:50.264Z", + "new_balance":"2220.37", + "value":"-6.69" + } + }, + { + "id":"a8ad0b93-4113-432f-a8f3-fdd9e189098c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T10:30:15.950Z", + "completed":"2016-03-01T10:30:15.950Z", + "new_balance":"8482.69", + "value":"-317.21" + } + }, + { + "id":"a2b8598f-24a2-4f56-8aa0-ab4d76a5ba27", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T11:30:00.744Z", + "completed":"2016-03-01T11:30:00.744Z", + "new_balance":"7750.84", + "value":"-731.85" + } + }, + { + "id":"46a989cf-3632-4e2c-b625-e654ef2911ad", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T11:33:12.726Z", + "completed":"2016-03-01T11:33:12.726Z", + "new_balance":"4057.07", + "value":"-3693.77" + } + }, + { + "id":"6580597d-a796-4e8e-96ef-b799e56f7575", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T12:34:07.882Z", + "completed":"2016-03-01T12:34:07.882Z", + "new_balance":"1425.86", + "value":"-2631.21" + } + }, + { + "id":"393e8d54-ee62-46ea-ad44-09288e126217", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T12:52:33.379Z", + "completed":"2016-03-01T12:52:33.379Z", + "new_balance":"1262.38", + "value":"-163.48" + } + }, + { + "id":"ade9268c-ff40-45ca-9a6e-a0a413a46ffc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T13:57:02.899Z", + "completed":"2016-03-01T13:57:02.899Z", + "new_balance":"1064.47", + "value":"-197.91" + } + }, + { + "id":"9fec042d-fc96-4438-b169-70a56dd80c19", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T09:18:28.990Z", + "completed":"2016-03-12T09:18:28.990Z", + "new_balance":"1011.29", + "value":"-53.18" + } + }, + { + "id":"e3162720-b9b2-432b-b783-f13e8174c6de", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:21:24.140Z", + "completed":"2016-03-12T16:21:24.140Z", + "new_balance":"279.44", + "value":"-731.85" + } + }, + { + "id":"2d793af3-441a-4d8f-b245-ba69f7585d00", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T16:57:28.798Z", + "completed":"2016-03-12T16:57:28.798Z", + "new_balance":"-37.77", + "value":"-317.21" + } + }, + { + "id":"745b439c-56e6-40d2-8ecd-7d95e2df1d7c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:04:43.629Z", + "completed":"2016-03-12T20:04:43.629Z", + "new_balance":"-84.67", + "value":"-46.90" + } + }, + { + "id":"7251b916-eb7c-48ef-9fff-53e3ff19317e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T06:58:48.452Z", + "completed":"2016-03-14T06:58:48.452Z", + "new_balance":"1806.65", + "value":"1891.32" + } + }, + { + "id":"a1812a5a-003b-4d80-ab37-69d72dfe4cbc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T08:14:51.287Z", + "completed":"2016-03-15T08:14:51.287Z", + "new_balance":"2034.04", + "value":"227.39" + } + }, + { + "id":"cc2cf047-6e2f-4204-9117-e3e559d87cab", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T16:02:55.795Z", + "completed":"2016-03-16T16:02:55.795Z", + "new_balance":"2935.02", + "value":"900.98" + } + }, + { + "id":"b9d898f5-a4ca-44c0-a2b6-d853925b4630", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T14:03:38.467Z", + "completed":"2016-03-17T14:03:38.467Z", + "new_balance":"2855.94", + "value":"-79.08" + } + }, + { + "id":"47d6474a-7c15-420a-9c4f-01d8880bded8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T17:36:26.471Z", + "completed":"2016-03-17T17:36:26.471Z", + "new_balance":"2804.84", + "value":"-51.10" + } + }, + { + "id":"9e0dfe9b-793c-4301-a05e-5edb1d3e3acd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T09:44:01.922Z", + "completed":"2016-03-19T09:44:01.922Z", + "new_balance":"3254.84", + "value":"450.00" + } + }, + { + "id":"3e01577f-f36c-40ed-a4f4-968d69112cc0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T00:18:24.020Z", + "completed":"2016-03-21T00:18:24.020Z", + "new_balance":"3180.91", + "value":"-73.93" + } + }, + { + "id":"7cbe72d1-8f19-4836-885e-c9a50a437abe", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T21:18:41.183Z", + "completed":"2016-03-21T21:18:41.183Z", + "new_balance":"3242.16", + "value":"61.25" + } + }, + { + "id":"f8a8459e-9824-41a1-ae43-3be074e54f84", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T05:16:32.292Z", + "completed":"2016-03-24T05:16:32.292Z", + "new_balance":"2715.60", + "value":"-526.56" + } + }, + { + "id":"b5d081c5-99ed-4a74-bdc1-b59a70a7c5bd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T06:39:10.339Z", + "completed":"2016-03-24T06:39:10.339Z", + "new_balance":"2942.99", + "value":"227.39" + } + }, + { + "id":"39ab0726-aadf-4ca7-aec7-0684a99ec35e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T03:42:55.179Z", + "completed":"2016-03-25T03:42:55.179Z", + "new_balance":"3396.64", + "value":"453.65" + } + }, + { + "id":"492be768-6923-44e7-9821-db8276b1a316", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:52:13.202Z", + "completed":"2016-03-25T05:52:13.202Z", + "new_balance":"2729.49", + "value":"-667.15" + } + }, + { + "id":"e7b38e53-ba88-4006-88a4-1fc79e0a4646", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T10:56:45.386Z", + "completed":"2016-03-28T10:56:45.386Z", + "new_balance":"5812.36", + "value":"3082.87" + } + }, + { + "id":"0318ee9f-f394-4b97-97a4-9ee8f0ac9924", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T11:56:53.150Z", + "completed":"2016-03-28T11:56:53.150Z", + "new_balance":"7703.68", + "value":"1891.32" + } + }, + { + "id":"76321ffd-8d10-453f-84cd-982f6657459f", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T22:00:10.385Z", + "completed":"2016-03-30T22:00:10.385Z", + "new_balance":"7931.07", + "value":"227.39" + } + }, + { + "id":"5c706920-aa9b-40b8-997f-24b987b3eacd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T23:41:26.406Z", + "completed":"2016-03-30T23:41:26.406Z", + "new_balance":"8158.69", + "value":"227.62" + } + }, + { + "id":"02b5455e-fbc3-4061-886e-2d665f362139", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T00:38:39.727Z", + "completed":"2016-06-01T00:38:39.727Z", + "new_balance":"7426.84", + "value":"-731.85" + } + }, + { + "id":"82e98c02-7aca-4e51-983f-f218a7e01ef8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T02:14:55.105Z", + "completed":"2016-06-01T02:14:55.105Z", + "new_balance":"3733.07", + "value":"-3693.77" + } + }, + { + "id":"c0ee7e8d-e534-4aca-9d4d-307110f208a0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T03:43:42.439Z", + "completed":"2016-06-01T03:43:42.439Z", + "new_balance":"3415.86", + "value":"-317.21" + } + }, + { + "id":"be930a8a-65ba-4de9-8fc0-a8605db16b28", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T07:10:26.931Z", + "completed":"2016-06-01T07:10:26.931Z", + "new_balance":"3217.95", + "value":"-197.91" + } + }, + { + "id":"00ef5eda-4154-4f6f-95ed-4902abedbdc7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T09:20:20.806Z", + "completed":"2016-06-01T09:20:20.806Z", + "new_balance":"3054.47", + "value":"-163.48" + } + }, + { + "id":"42959088-9baa-4b75-9979-d43aeb4b6ba0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T15:57:35.536Z", + "completed":"2016-06-01T15:57:35.536Z", + "new_balance":"423.26", + "value":"-2631.21" + } + }, + { + "id":"32fc8d9c-22ba-44d2-9f2e-7df4d565675e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:25:55.229Z", + "completed":"2016-06-04T15:25:55.229Z", + "new_balance":"376.36", + "value":"-46.90" + } + }, + { + "id":"9d9c883d-ef12-4f22-9930-8151c7a29e8c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T20:17:28.824Z", + "completed":"2016-06-04T20:17:28.824Z", + "new_balance":"323.18", + "value":"-53.18" + } + }, + { + "id":"08d4c391-362f-4c9c-ae62-f7bf208fc871", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T10:11:54.879Z", + "completed":"2016-06-05T10:11:54.879Z", + "new_balance":"-408.67", + "value":"-731.85" + } + }, + { + "id":"b7f5cc40-b582-4721-a468-b89e7783f737", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T20:32:35.792Z", + "completed":"2016-06-05T20:32:35.792Z", + "new_balance":"-725.88", + "value":"-317.21" + } + }, + { + "id":"aca912a5-be14-4814-a1b9-23012fd096ba", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:47:47.640Z", + "completed":"2016-06-07T00:47:47.640Z", + "new_balance":"1165.44", + "value":"1891.32" + } + }, + { + "id":"c337f2d0-9cdb-48b3-be3c-bcc5ec4f7d92", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T06:26:47.143Z", + "completed":"2016-06-07T06:26:47.143Z", + "new_balance":"1114.34", + "value":"-51.10" + } + }, + { + "id":"b1505923-1e29-4fbb-85c6-e626db528b93", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:53:02.592Z", + "completed":"2016-06-07T11:53:02.592Z", + "new_balance":"2015.32", + "value":"900.98" + } + }, + { + "id":"1fdaed84-9ff9-425a-95f3-766f9bf62dc9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T23:45:38.505Z", + "completed":"2016-06-07T23:45:38.505Z", + "new_balance":"2242.71", + "value":"227.39" + } + }, + { + "id":"12a4b48e-a5d7-400f-9834-dd638fcad91c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T15:11:49.838Z", + "completed":"2016-06-11T15:11:49.838Z", + "new_balance":"2163.63", + "value":"-79.08" + } + }, + { + "id":"55e0718b-fe7b-4c61-a259-af0e7b7ec9e4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T15:59:20.103Z", + "completed":"2016-06-14T15:59:20.103Z", + "new_balance":"2224.88", + "value":"61.25" + } + }, + { + "id":"cbccb2fd-916a-4ae0-aa2a-e7b33107c06c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:07:32.690Z", + "completed":"2016-06-14T17:07:32.690Z", + "new_balance":"2150.95", + "value":"-73.93" + } + }, + { + "id":"68abf690-bd3e-4e7a-b337-b5b99c136fc5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:55:07.040Z", + "completed":"2016-06-14T17:55:07.040Z", + "new_balance":"2600.95", + "value":"450.00" + } + }, + { + "id":"cd2cff3a-32c7-4c3d-b775-9cb536c10b26", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T11:36:36.167Z", + "completed":"2016-06-16T11:36:36.167Z", + "new_balance":"2828.34", + "value":"227.39" + } + }, + { + "id":"27443459-a1c0-42ec-aae3-60239a7a5498", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T12:03:08.334Z", + "completed":"2016-06-16T12:03:08.334Z", + "new_balance":"2301.78", + "value":"-526.56" + } + }, + { + "id":"dce3ade5-e456-4a36-9da7-c79cfd652377", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T00:07:34.924Z", + "completed":"2016-06-21T00:07:34.924Z", + "new_balance":"2755.43", + "value":"453.65" + } + }, + { + "id":"d2a19140-c10f-46ac-91a6-0e7f5a3717bd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T09:40:21.221Z", + "completed":"2016-06-21T09:40:21.221Z", + "new_balance":"4646.75", + "value":"1891.32" + } + }, + { + "id":"1133a554-2963-4175-a8d2-c4c139f9e8f5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T15:28:11.641Z", + "completed":"2016-06-21T15:28:11.641Z", + "new_balance":"3979.60", + "value":"-667.15" + } + }, + { + "id":"82716558-9a8d-4ad3-a9e6-110766d53fcd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:12:25.267Z", + "completed":"2016-06-21T23:12:25.267Z", + "new_balance":"7062.47", + "value":"3082.87" + } + }, + { + "id":"3c043176-ea2e-4f76-beec-86b27c32dc8a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T00:47:17.653Z", + "completed":"2016-06-30T00:47:17.653Z", + "new_balance":"7289.86", + "value":"227.39" + } + }, + { + "id":"2924bd0d-f870-4a47-92ea-9fb2ba0d1a2b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T20:37:10.488Z", + "completed":"2016-06-30T20:37:10.488Z", + "new_balance":"7517.48", + "value":"227.62" + } + }, + { + "id":"952b8bb9-39ac-4127-97c9-1e708951da42", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T02:25:29.512Z", + "completed":"2016-09-01T02:25:29.512Z", + "new_balance":"4886.27", + "value":"-2631.21" + } + }, + { + "id":"2f304f10-6eea-42b8-a0cd-f9ac74ce554f", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T03:19:29.987Z", + "completed":"2016-09-01T03:19:29.987Z", + "new_balance":"4569.06", + "value":"-317.21" + } + }, + { + "id":"88c4d71f-d355-4a3e-bdef-b8c3aa5d4c1d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T09:37:08.644Z", + "completed":"2016-09-01T09:37:08.644Z", + "new_balance":"4371.15", + "value":"-197.91" + } + }, + { + "id":"978b337f-18dc-493e-87c4-bc1e99cf6cbc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T16:18:06.632Z", + "completed":"2016-09-01T16:18:06.632Z", + "new_balance":"4207.67", + "value":"-163.48" + } + }, + { + "id":"1753a1d1-3299-429c-ac57-7d38fc116ad1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T20:10:34.051Z", + "completed":"2016-09-01T20:10:34.051Z", + "new_balance":"3475.82", + "value":"-731.85" + } + }, + { + "id":"cc816ddf-fee9-47a9-b092-2b7aec658d71", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T21:18:27.031Z", + "completed":"2016-09-01T21:18:27.031Z", + "new_balance":"-217.95", + "value":"-3693.77" + } + }, + { + "id":"cad09138-0ed8-434f-ae66-a406b8565eaa", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T00:04:25.121Z", + "completed":"2016-09-12T00:04:25.121Z", + "new_balance":"-535.16", + "value":"-317.21" + } + }, + { + "id":"a197d524-4ba8-4efa-b43e-29a54e7ae211", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T16:07:34.462Z", + "completed":"2016-09-12T16:07:34.462Z", + "new_balance":"-588.34", + "value":"-53.18" + } + }, + { + "id":"2131fc03-8ad3-4a1c-9463-bbbe3cb6cd11", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T17:15:12.340Z", + "completed":"2016-09-12T17:15:12.340Z", + "new_balance":"-1320.19", + "value":"-731.85" + } + }, + { + "id":"fd67a4c4-3270-4569-9f0b-7b6554a345eb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T18:58:56.592Z", + "completed":"2016-09-12T18:58:56.592Z", + "new_balance":"-1367.09", + "value":"-46.90" + } + }, + { + "id":"3666fd90-13ec-4872-be0d-2b7a549bdfd9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:56:31.694Z", + "completed":"2016-09-15T01:56:31.694Z", + "new_balance":"524.23", + "value":"1891.32" + } + }, + { + "id":"80e093c2-53d0-4c82-b423-8e6c741b0e03", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:21:41.337Z", + "completed":"2016-09-15T02:21:41.337Z", + "new_balance":"751.62", + "value":"227.39" + } + }, + { + "id":"95348171-61db-41f3-a77f-439535bae449", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:16:39.763Z", + "completed":"2016-09-17T19:16:39.763Z", + "new_balance":"1652.60", + "value":"900.98" + } + }, + { + "id":"02bcd13b-3046-4046-b370-d8cf7fa34f41", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:51:22.089Z", + "completed":"2016-09-17T20:51:22.089Z", + "new_balance":"1573.52", + "value":"-79.08" + } + }, + { + "id":"5e0bcba2-ceb9-4034-8993-f25591eeb888", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:55:09.261Z", + "completed":"2016-09-17T20:55:09.261Z", + "new_balance":"1522.42", + "value":"-51.10" + } + }, + { + "id":"6c9ba67e-3613-45d0-9307-fcae102e4a6b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T09:35:34.612Z", + "completed":"2016-09-19T09:35:34.612Z", + "new_balance":"1972.42", + "value":"450.00" + } + }, + { + "id":"b159bfcc-d2f1-447b-8745-471e52906f1e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T12:02:37.482Z", + "completed":"2016-09-21T12:02:37.482Z", + "new_balance":"1898.49", + "value":"-73.93" + } + }, + { + "id":"da6b7ff8-e0bd-4d2b-82e3-08e0c3fc576b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T18:04:42.659Z", + "completed":"2016-09-21T18:04:42.659Z", + "new_balance":"1959.74", + "value":"61.25" + } + }, + { + "id":"2f337cad-9927-42ef-9b48-1196c97085b7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T17:23:01.009Z", + "completed":"2016-09-24T17:23:01.009Z", + "new_balance":"1433.18", + "value":"-526.56" + } + }, + { + "id":"46e83e18-e474-4ec2-83f8-58d8db480e56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T22:28:49.926Z", + "completed":"2016-09-24T22:28:49.926Z", + "new_balance":"1660.57", + "value":"227.39" + } + }, + { + "id":"6a521a35-4c55-4fb5-a534-207a6face3d0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T09:20:35.177Z", + "completed":"2016-09-25T09:20:35.177Z", + "new_balance":"2114.22", + "value":"453.65" + } + }, + { + "id":"e06d4bca-785b-4e6a-b839-193b7ab05e89", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T18:39:01.976Z", + "completed":"2016-09-25T18:39:01.976Z", + "new_balance":"1447.07", + "value":"-667.15" + } + }, + { + "id":"b240c95a-02ca-478e-bd66-899f7b704f96", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T12:43:57.433Z", + "completed":"2016-09-28T12:43:57.433Z", + "new_balance":"4529.94", + "value":"3082.87" + } + }, + { + "id":"38fd7f27-6d0d-4972-921b-eb375c68e1c9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T16:31:52.490Z", + "completed":"2016-09-28T16:31:52.490Z", + "new_balance":"6421.26", + "value":"1891.32" + } + }, + { + "id":"0a71798c-c5f5-46b3-8444-b4920696b690", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T05:29:35.583Z", + "completed":"2016-09-30T05:29:35.583Z", + "new_balance":"6648.65", + "value":"227.39" + } + }, + { + "id":"de0d53fb-a320-4229-b1d7-5bfbaf6267f1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T19:18:44.241Z", + "completed":"2016-09-30T19:18:44.241Z", + "new_balance":"6876.27", + "value":"227.62" + } + }, + { + "id":"2f45d992-6e54-4979-a449-0ce4d8b43c53", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T01:57:15.796Z", + "completed":"2016-12-01T01:57:15.796Z", + "new_balance":"6712.79", + "value":"-163.48" + } + }, + { + "id":"e87dfca1-1b92-483b-a4dc-61b3d2c0d55a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T04:45:11.674Z", + "completed":"2016-12-01T04:45:11.674Z", + "new_balance":"6514.88", + "value":"-197.91" + } + }, + { + "id":"c4bea690-19bd-4fe1-9a25-9f539e881019", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T06:31:47.462Z", + "completed":"2016-12-01T06:31:47.462Z", + "new_balance":"3883.67", + "value":"-2631.21" + } + }, + { + "id":"02f15824-af41-4d9c-a1b8-8cdf600f9154", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T12:05:34.282Z", + "completed":"2016-12-01T12:05:34.282Z", + "new_balance":"189.90", + "value":"-3693.77" + } + }, + { + "id":"0357ba8a-2ccf-4cc8-8cbc-9ec3de77f0af", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T14:31:58.174Z", + "completed":"2016-12-01T14:31:58.174Z", + "new_balance":"-541.95", + "value":"-731.85" + } + }, + { + "id":"03189b85-d6a8-431e-92a5-6a2749cda969", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T20:52:45.674Z", + "completed":"2016-12-01T20:52:45.674Z", + "new_balance":"-859.16", + "value":"-317.21" + } + }, + { + "id":"007baa86-c79a-47ef-9522-fb952d705efb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:04:48.707Z", + "completed":"2016-12-04T07:04:48.707Z", + "new_balance":"-906.06", + "value":"-46.90" + } + }, + { + "id":"882f06df-2d8d-474d-98cf-1e0171da7c5e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T11:47:47.436Z", + "completed":"2016-12-04T11:47:47.436Z", + "new_balance":"-959.24", + "value":"-53.18" + } + }, + { + "id":"290573df-dcf9-4da8-bf9e-e312a5690198", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T05:19:36.219Z", + "completed":"2016-12-05T05:19:36.219Z", + "new_balance":"-1276.45", + "value":"-317.21" + } + }, + { + "id":"b2272a4d-48e3-452a-bf1c-bfc84dd48eec", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T08:02:36.752Z", + "completed":"2016-12-05T08:02:36.752Z", + "new_balance":"-2008.30", + "value":"-731.85" + } + }, + { + "id":"ac961d02-995a-43d4-af6f-e0192fb79999", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T02:27:30.308Z", + "completed":"2016-12-07T02:27:30.308Z", + "new_balance":"-2059.40", + "value":"-51.10" + } + }, + { + "id":"9da7a060-9d92-49b9-ac1c-36a959b74e61", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T15:50:07.273Z", + "completed":"2016-12-07T15:50:07.273Z", + "new_balance":"-1158.42", + "value":"900.98" + } + }, + { + "id":"74dff5ee-6e4c-4af9-8697-15f625abe87c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T19:52:23.928Z", + "completed":"2016-12-07T19:52:23.928Z", + "new_balance":"732.90", + "value":"1891.32" + } + }, + { + "id":"f52a4b55-63fd-440c-a2ef-8c3ed58eb751", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T23:52:43.346Z", + "completed":"2016-12-07T23:52:43.346Z", + "new_balance":"960.29", + "value":"227.39" + } + }, + { + "id":"4d39edf1-c6e2-491a-826c-f634177b6fe0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T21:59:01.821Z", + "completed":"2016-12-11T21:59:01.821Z", + "new_balance":"881.21", + "value":"-79.08" + } + }, + { + "id":"05e67fde-2620-482b-8353-4ec994152732", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:59:25.677Z", + "completed":"2016-12-14T01:59:25.677Z", + "new_balance":"942.46", + "value":"61.25" + } + }, + { + "id":"54e132eb-d1ca-4ca3-96f2-53c377eb1c96", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T07:32:52.744Z", + "completed":"2016-12-14T07:32:52.744Z", + "new_balance":"1392.46", + "value":"450.00" + } + }, + { + "id":"2ca80565-1448-4833-bb1d-0ac660df4d81", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T20:42:46.236Z", + "completed":"2016-12-14T20:42:46.236Z", + "new_balance":"1318.53", + "value":"-73.93" + } + }, + { + "id":"d9af8aa0-57b2-45bf-997e-f2ec5da526cc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:35:46.385Z", + "completed":"2016-12-16T06:35:46.385Z", + "new_balance":"791.97", + "value":"-526.56" + } + }, + { + "id":"add2dd1b-45f6-497a-8942-1aafdb7ee2f4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T10:18:45.684Z", + "completed":"2016-12-16T10:18:45.684Z", + "new_balance":"1019.36", + "value":"227.39" + } + }, + { + "id":"1e5212dd-a284-47d3-a73e-018fb6cac82c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T05:40:34.773Z", + "completed":"2016-12-21T05:40:34.773Z", + "new_balance":"2910.68", + "value":"1891.32" + } + }, + { + "id":"cc556ebb-4100-4309-9fc6-8e5d0b41234d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:02:59.403Z", + "completed":"2016-12-21T08:02:59.403Z", + "new_balance":"3364.33", + "value":"453.65" + } + }, + { + "id":"0d4f8b5c-7e9c-47f8-82a6-7ad3412dae0c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T20:40:46.024Z", + "completed":"2016-12-21T20:40:46.024Z", + "new_balance":"6447.20", + "value":"3082.87" + } + }, + { + "id":"2625e215-0f45-40f2-8a0e-c0d890d69cbb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T23:15:44.622Z", + "completed":"2016-12-21T23:15:44.622Z", + "new_balance":"5780.05", + "value":"-667.15" + } + }, + { + "id":"8c56858d-ac8f-490c-b0a0-f645e19c7439", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T05:54:15.215Z", + "completed":"2016-12-30T05:54:15.215Z", + "new_balance":"6007.67", + "value":"227.62" + } + }, + { + "id":"3b74c34d-31d4-4bb5-8cf1-9c81eb1b6921", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T08:10:17.171Z", + "completed":"2016-12-30T08:10:17.171Z", + "new_balance":"6235.06", + "value":"227.39" + } + }, + { + "id":"1932a184-15b1-4ae8-8ea8-978360b4aa57", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T00:28:49.477Z", + "completed":"2017-03-01T00:28:49.477Z", + "new_balance":"2541.29", + "value":"-3693.77" + } + }, + { + "id":"323aea57-bbb2-4df1-a88d-99265d02b47b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T00:50:49.852Z", + "completed":"2017-03-01T00:50:49.852Z", + "new_balance":"2224.08", + "value":"-317.21" + } + }, + { + "id":"1b909c7d-bde9-43a1-be31-9e4aed0666a0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T03:09:39.707Z", + "completed":"2017-03-01T03:09:39.707Z", + "new_balance":"1492.23", + "value":"-731.85" + } + }, + { + "id":"da8af14b-a67c-4063-8bb8-a1bb41cf6c56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T04:21:57.801Z", + "completed":"2017-03-01T04:21:57.801Z", + "new_balance":"-1138.98", + "value":"-2631.21" + } + }, + { + "id":"d20d9fa5-21ba-43e4-a54c-e0367c9a5a18", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T08:56:09.105Z", + "completed":"2017-03-01T08:56:09.105Z", + "new_balance":"-1336.89", + "value":"-197.91" + } + }, + { + "id":"bbb5b438-ee0f-4e2e-b6c0-4ee76b855474", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T14:52:22.478Z", + "completed":"2017-03-01T14:52:22.478Z", + "new_balance":"-1500.37", + "value":"-163.48" + } + }, + { + "id":"e53fdeb5-1e48-4d36-8e99-f45e8635e353", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T00:55:28.451Z", + "completed":"2017-03-12T00:55:28.451Z", + "new_balance":"-1817.58", + "value":"-317.21" + } + }, + { + "id":"90f7676e-f4ad-4e94-97fc-ce4224862091", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T11:31:01.429Z", + "completed":"2017-03-12T11:31:01.429Z", + "new_balance":"-2549.43", + "value":"-731.85" + } + }, + { + "id":"f5a2ac03-4b41-47d9-b995-f03d7ce1054b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T19:05:37.897Z", + "completed":"2017-03-12T19:05:37.897Z", + "new_balance":"-2596.33", + "value":"-46.90" + } + }, + { + "id":"78c1f4a4-2710-42ea-8be3-f60f8b2f0674", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T23:14:25.395Z", + "completed":"2017-03-12T23:14:25.395Z", + "new_balance":"-2649.51", + "value":"-53.18" + } + }, + { + "id":"38185ed2-122e-4201-aae8-8caa718959ad", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T10:48:35.209Z", + "completed":"2017-03-14T10:48:35.209Z", + "new_balance":"-758.19", + "value":"1891.32" + } + }, + { + "id":"0afac1df-7cd5-499c-beb9-0fbddf4030fb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T11:39:14.089Z", + "completed":"2017-03-15T11:39:14.089Z", + "new_balance":"-530.80", + "value":"227.39" + } + }, + { + "id":"c87e597f-9f41-4883-932b-43af9b28eb2b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T18:57:27.739Z", + "completed":"2017-03-16T18:57:27.739Z", + "new_balance":"370.18", + "value":"900.98" + } + }, + { + "id":"3acb89e6-7a1e-4a2b-9f0e-3d73bdc439ca", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:03:38.092Z", + "completed":"2017-03-17T12:03:38.092Z", + "new_balance":"291.10", + "value":"-79.08" + } + }, + { + "id":"31767e55-6794-4cdd-81fe-41470350afb2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:11:52.176Z", + "completed":"2017-03-17T12:11:52.176Z", + "new_balance":"240.00", + "value":"-51.10" + } + }, + { + "id":"812896e4-5ff4-485f-9b96-3d1256179db5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:54:07.364Z", + "completed":"2017-03-19T15:54:07.364Z", + "new_balance":"690.00", + "value":"450.00" + } + }, + { + "id":"bfa60fca-d67e-4de9-a249-f6b51a5165f2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T08:10:44.871Z", + "completed":"2017-03-21T08:10:44.871Z", + "new_balance":"751.25", + "value":"61.25" + } + }, + { + "id":"81e11f29-0460-4032-8bd9-2b1c88b2bcc0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T11:17:53.856Z", + "completed":"2017-03-21T11:17:53.856Z", + "new_balance":"677.32", + "value":"-73.93" + } + }, + { + "id":"562bce31-6399-4c5b-b4a9-9466b1c07ad7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T14:40:27.412Z", + "completed":"2017-03-24T14:40:27.412Z", + "new_balance":"904.71", + "value":"227.39" + } + }, + { + "id":"e3e7bf5b-3e77-48a6-95f1-c0ac8a29c766", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T23:07:32.890Z", + "completed":"2017-03-24T23:07:32.890Z", + "new_balance":"378.15", + "value":"-526.56" + } + }, + { + "id":"971d53fc-1cb8-4fcf-9f42-8175d680d794", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T16:20:25.692Z", + "completed":"2017-03-25T16:20:25.692Z", + "new_balance":"831.80", + "value":"453.65" + } + }, + { + "id":"51953de0-9c4f-42de-bfb6-72644962c56e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T20:49:01.478Z", + "completed":"2017-03-25T20:49:01.478Z", + "new_balance":"164.65", + "value":"-667.15" + } + }, + { + "id":"062057c8-5a2c-485f-bc2a-4f93b8080e98", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T15:34:38.044Z", + "completed":"2017-03-28T15:34:38.044Z", + "new_balance":"3247.52", + "value":"3082.87" + } + }, + { + "id":"0785ee34-7080-4f75-91a5-8fb4d0382b1c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:55:33.260Z", + "completed":"2017-03-28T16:55:33.260Z", + "new_balance":"5138.84", + "value":"1891.32" + } + }, + { + "id":"f20312b5-a412-47a6-9069-413eb2e8e835", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T00:19:10.506Z", + "completed":"2017-03-30T00:19:10.506Z", + "new_balance":"5366.46", + "value":"227.62" + } + }, + { + "id":"f92c6c6c-b04d-40b4-8f48-a4ca355195dd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T13:56:00.240Z", + "completed":"2017-03-30T13:56:00.240Z", + "new_balance":"5593.85", + "value":"227.39" + } + }, + { + "id":"13f06920-c9b1-4ab1-9db9-8125750a09cd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T00:07:10.389Z", + "completed":"2017-06-01T00:07:10.389Z", + "new_balance":"5395.94", + "value":"-197.91" + } + }, + { + "id":"4c40fd59-bf3e-4800-aa93-67ca40324de8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:04:42.548Z", + "completed":"2017-06-01T13:04:42.548Z", + "new_balance":"4664.09", + "value":"-731.85" + } + }, + { + "id":"9c2d59c6-1df0-4802-b4c6-146bf00715c1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:10:17.101Z", + "completed":"2017-06-01T13:10:17.101Z", + "new_balance":"4500.61", + "value":"-163.48" + } + }, + { + "id":"11eaa12e-9045-4801-8760-77de7b70a8c0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T13:53:03.090Z", + "completed":"2017-06-01T13:53:03.090Z", + "new_balance":"4183.40", + "value":"-317.21" + } + }, + { + "id":"68ec01b6-de2d-4d55-9616-bfad5f3c9aca", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T19:36:33.335Z", + "completed":"2017-06-01T19:36:33.335Z", + "new_balance":"489.63", + "value":"-3693.77" + } + }, + { + "id":"17cd4106-ab10-4216-99a1-50c229985e7d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T21:46:26.038Z", + "completed":"2017-06-01T21:46:26.038Z", + "new_balance":"-2141.58", + "value":"-2631.21" + } + }, + { + "id":"9773ccf9-c874-4071-9d42-d979e17363b4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:33:02.276Z", + "completed":"2017-06-04T13:33:02.276Z", + "new_balance":"-2188.48", + "value":"-46.90" + } + }, + { + "id":"1d81f521-6449-46e0-b532-1129575d406b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:37:54.528Z", + "completed":"2017-06-04T20:37:54.528Z", + "new_balance":"-2241.66", + "value":"-53.18" + } + }, + { + "id":"45cbbf5d-2b2d-4272-8972-ba8b187204a9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T20:57:44.087Z", + "completed":"2017-06-05T20:57:44.087Z", + "new_balance":"-2973.51", + "value":"-731.85" + } + }, + { + "id":"de9c3a3c-f378-4ef2-bb46-522698985de4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T23:05:35.016Z", + "completed":"2017-06-05T23:05:35.016Z", + "new_balance":"-3290.72", + "value":"-317.21" + } + }, + { + "id":"2a3b2a99-933a-4fad-bc61-13dae52e6aed", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T04:09:47.838Z", + "completed":"2017-06-07T04:09:47.838Z", + "new_balance":"-3341.82", + "value":"-51.10" + } + }, + { + "id":"0f42b811-76a4-4004-9bdf-add3036db029", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T17:09:54.811Z", + "completed":"2017-06-07T17:09:54.811Z", + "new_balance":"-3114.43", + "value":"227.39" + } + }, + { + "id":"75df2d97-00ee-457e-b3a2-ac491dc000f2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T19:38:48.780Z", + "completed":"2017-06-07T19:38:48.780Z", + "new_balance":"-2213.45", + "value":"900.98" + } + }, + { + "id":"eb5379fe-b899-422e-bff1-64bd6ca2f086", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T20:16:07.776Z", + "completed":"2017-06-07T20:16:07.776Z", + "new_balance":"-322.13", + "value":"1891.32" + } + }, + { + "id":"454601ac-d74b-425f-9f43-84f90191874c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T08:50:15.827Z", + "completed":"2017-06-11T08:50:15.827Z", + "new_balance":"-401.21", + "value":"-79.08" + } + }, + { + "id":"2ab79644-fb1d-4b08-a974-68d3f57dfcb0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T04:38:19.616Z", + "completed":"2017-06-14T04:38:19.616Z", + "new_balance":"48.79", + "value":"450.00" + } + }, + { + "id":"c1af8027-c9f1-428f-b51b-9edf1bbd2948", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T08:33:53.665Z", + "completed":"2017-06-14T08:33:53.665Z", + "new_balance":"110.04", + "value":"61.25" + } + }, + { + "id":"9d73b4d2-f84d-4cfd-a718-31fefc523b56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T09:56:59.503Z", + "completed":"2017-06-14T09:56:59.503Z", + "new_balance":"36.11", + "value":"-73.93" + } + }, + { + "id":"74795411-98c1-4681-bdd2-b98dffe9b2cb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T11:21:27.814Z", + "completed":"2017-06-16T11:21:27.814Z", + "new_balance":"-490.45", + "value":"-526.56" + } + }, + { + "id":"5db7da15-e081-4290-8347-06a7737ae235", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T15:00:59.095Z", + "completed":"2017-06-16T15:00:59.095Z", + "new_balance":"-263.06", + "value":"227.39" + } + }, + { + "id":"7608b2ce-c960-4969-be24-bd097aa7873b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T00:28:23.452Z", + "completed":"2017-06-21T00:28:23.452Z", + "new_balance":"190.59", + "value":"453.65" + } + }, + { + "id":"3074ec43-ffe6-47e5-ab93-04df5dab3cd2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:27:09.269Z", + "completed":"2017-06-21T14:27:09.269Z", + "new_balance":"3273.46", + "value":"3082.87" + } + }, + { + "id":"777f49ea-9086-4717-846c-1ad831a51a85", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T21:51:50.476Z", + "completed":"2017-06-21T21:51:50.476Z", + "new_balance":"5164.78", + "value":"1891.32" + } + }, + { + "id":"52772be1-9d06-4714-a615-382425a3ce69", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T22:14:24.861Z", + "completed":"2017-06-21T22:14:24.861Z", + "new_balance":"4497.63", + "value":"-667.15" + } + }, + { + "id":"1c467d30-aaab-4248-8e2f-9d86f877748e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T06:53:23.570Z", + "completed":"2017-06-30T06:53:23.570Z", + "new_balance":"4725.02", + "value":"227.39" + } + }, + { + "id":"b08fa46c-3986-4e1b-b4f9-4a22ac38d973", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T07:26:44.290Z", + "completed":"2017-06-30T07:26:44.290Z", + "new_balance":"4952.64", + "value":"227.62" + } + }, + { + "id":"d604d653-d2e5-45df-b12c-4ea0f1a32128", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:30:04.434Z", + "completed":"2017-09-01T06:30:04.434Z", + "new_balance":"2321.43", + "value":"-2631.21" + } + }, + { + "id":"5eedae02-68eb-4b3c-b46b-440c33fa9b6b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T14:36:26.653Z", + "completed":"2017-09-01T14:36:26.653Z", + "new_balance":"2123.52", + "value":"-197.91" + } + }, + { + "id":"419618a8-5bfd-4cec-9cb8-277bc6646916", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:37:12.335Z", + "completed":"2017-09-01T15:37:12.335Z", + "new_balance":"1806.31", + "value":"-317.21" + } + }, + { + "id":"f7dc60d7-f8c8-4164-9919-29fd53c1e498", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T16:33:11.089Z", + "completed":"2017-09-01T16:33:11.089Z", + "new_balance":"-1887.46", + "value":"-3693.77" + } + }, + { + "id":"0a113bcc-4a50-4ea7-941a-0923ecbeac56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T17:22:47.233Z", + "completed":"2017-09-01T17:22:47.233Z", + "new_balance":"-2050.94", + "value":"-163.48" + } + }, + { + "id":"95bccd65-5b5e-46d8-a794-2e396f7f5fff", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T19:27:10.412Z", + "completed":"2017-09-01T19:27:10.412Z", + "new_balance":"-2782.79", + "value":"-731.85" + } + }, + { + "id":"b7f8a370-e2ef-4b99-9d99-5edb01a2ed4e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T02:13:05.476Z", + "completed":"2017-09-12T02:13:05.476Z", + "new_balance":"-2829.69", + "value":"-46.90" + } + }, + { + "id":"642a726e-a9c9-4be4-b71a-ddae764a9c59", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T06:25:58.452Z", + "completed":"2017-09-12T06:25:58.452Z", + "new_balance":"-3561.54", + "value":"-731.85" + } + }, + { + "id":"e3db8db2-96ed-4c88-a636-bb107db2aa65", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T18:47:44.758Z", + "completed":"2017-09-12T18:47:44.758Z", + "new_balance":"-3614.72", + "value":"-53.18" + } + }, + { + "id":"f3dcaa28-e4d5-4eba-a8fb-d6099963176b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T20:10:53.876Z", + "completed":"2017-09-12T20:10:53.876Z", + "new_balance":"-3931.93", + "value":"-317.21" + } + }, + { + "id":"2da33cf0-34e4-4da6-997f-ca056ee1193e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T01:49:10.203Z", + "completed":"2017-09-15T01:49:10.203Z", + "new_balance":"-2040.61", + "value":"1891.32" + } + }, + { + "id":"834b434c-e395-4d36-b589-4ee06feb338b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T03:33:01.194Z", + "completed":"2017-09-15T03:33:01.194Z", + "new_balance":"-1813.22", + "value":"227.39" + } + }, + { + "id":"40cd849e-4c3d-48d9-a441-495ee137b9a8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T04:53:24.389Z", + "completed":"2017-09-17T04:53:24.389Z", + "new_balance":"-912.24", + "value":"900.98" + } + }, + { + "id":"6a757652-e0f4-4ccf-9f67-6d3f74ee36ed", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T09:52:29.775Z", + "completed":"2017-09-17T09:52:29.775Z", + "new_balance":"-991.32", + "value":"-79.08" + } + }, + { + "id":"047b8120-3c4a-4538-ae50-6c568cdbb8b0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:17:32.558Z", + "completed":"2017-09-17T18:17:32.558Z", + "new_balance":"-1042.42", + "value":"-51.10" + } + }, + { + "id":"3c30ba69-9aae-486b-991c-d41ea9c94465", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T00:57:24.262Z", + "completed":"2017-09-19T00:57:24.262Z", + "new_balance":"-592.42", + "value":"450.00" + } + }, + { + "id":"917be347-5bfe-4857-9f71-ee27f2e00f1c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:58:19.779Z", + "completed":"2017-09-21T05:58:19.779Z", + "new_balance":"-531.17", + "value":"61.25" + } + }, + { + "id":"804cefd2-288b-49c3-a1ad-c0e74d213de4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T17:43:16.942Z", + "completed":"2017-09-21T17:43:16.942Z", + "new_balance":"-605.10", + "value":"-73.93" + } + }, + { + "id":"57ee6131-01dc-44bc-83a0-0dab643a80eb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T03:44:08.345Z", + "completed":"2017-09-24T03:44:08.345Z", + "new_balance":"-377.71", + "value":"227.39" + } + }, + { + "id":"91b5d0e3-5e0e-452f-bc40-e91c5b9420d0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T16:24:42.886Z", + "completed":"2017-09-24T16:24:42.886Z", + "new_balance":"-904.27", + "value":"-526.56" + } + }, + { + "id":"80b9b9e5-3305-4497-b628-fd159414f878", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T21:56:53.341Z", + "completed":"2017-09-25T21:56:53.341Z", + "new_balance":"-1571.42", + "value":"-667.15" + } + }, + { + "id":"6fdb18fe-c7bb-4a1f-b811-7b10ccbc5b13", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T23:47:55.385Z", + "completed":"2017-09-25T23:47:55.385Z", + "new_balance":"-1117.77", + "value":"453.65" + } + }, + { + "id":"9c6190d8-8851-44c3-9f83-2d030cf7631b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T13:38:13.864Z", + "completed":"2017-09-28T13:38:13.864Z", + "new_balance":"1965.10", + "value":"3082.87" + } + }, + { + "id":"f06f55d8-b984-4332-b394-d30febb3e558", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T18:47:02.974Z", + "completed":"2017-09-28T18:47:02.974Z", + "new_balance":"3856.42", + "value":"1891.32" + } + }, + { + "id":"cbf5919f-a572-40bb-ad52-5e69c3781013", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T17:18:45.896Z", + "completed":"2017-09-30T17:18:45.896Z", + "new_balance":"4084.04", + "value":"227.62" + } + }, + { + "id":"cad1ee07-605f-492f-9b61-d2621f858bf1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T19:56:03.342Z", + "completed":"2017-09-30T19:56:03.342Z", + "new_balance":"4311.43", + "value":"227.39" + } + }, + { + "id":"0c872059-6b6e-418f-971a-f67c1ab6f007", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T02:13:28.544Z", + "completed":"2017-12-01T02:13:28.544Z", + "new_balance":"617.66", + "value":"-3693.77" + } + }, + { + "id":"051eed57-df21-42db-b723-9bdcb9f2821a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T02:18:48.520Z", + "completed":"2017-12-01T02:18:48.520Z", + "new_balance":"454.18", + "value":"-163.48" + } + }, + { + "id":"e79227f9-07f6-4765-afc6-c62594d236bf", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T02:24:18.102Z", + "completed":"2017-12-01T02:24:18.102Z", + "new_balance":"256.27", + "value":"-197.91" + } + }, + { + "id":"7bdd2a0f-04fb-4742-b902-bf54bb137669", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T10:17:14.485Z", + "completed":"2017-12-01T10:17:14.485Z", + "new_balance":"-60.94", + "value":"-317.21" + } + }, + { + "id":"0ec595b3-4b00-4554-8556-598ad9db0ea8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T11:47:05.735Z", + "completed":"2017-12-01T11:47:05.735Z", + "new_balance":"-792.79", + "value":"-731.85" + } + }, + { + "id":"66f6e298-af20-4b5f-a3d8-1fa2c238ef3e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T19:26:14.025Z", + "completed":"2017-12-01T19:26:14.025Z", + "new_balance":"-3424.00", + "value":"-2631.21" + } + }, + { + "id":"3358149d-2f25-4686-a5b2-907cf96aa5cf", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T09:23:33.994Z", + "completed":"2017-12-04T09:23:33.994Z", + "new_balance":"-3470.90", + "value":"-46.90" + } + }, + { + "id":"7b901c38-43d9-4b2a-931d-a5fd12f7e44b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:19:27.409Z", + "completed":"2017-12-04T17:19:27.409Z", + "new_balance":"-3524.08", + "value":"-53.18" + } + }, + { + "id":"8c72467f-62cb-4103-9cd6-49d48d1af75c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T11:13:47.214Z", + "completed":"2017-12-05T11:13:47.214Z", + "new_balance":"-3841.29", + "value":"-317.21" + } + }, + { + "id":"65ce969d-979e-405b-acb7-37e4bc095e25", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T20:12:32.674Z", + "completed":"2017-12-05T20:12:32.674Z", + "new_balance":"-4573.14", + "value":"-731.85" + } + }, + { + "id":"6c5f14b9-46fb-4b0e-b7db-ad50de93b597", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T02:22:04.640Z", + "completed":"2017-12-07T02:22:04.640Z", + "new_balance":"-4624.24", + "value":"-51.10" + } + }, + { + "id":"61066f52-084d-4e03-a22e-82d0a27ec7d3", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T08:08:33.782Z", + "completed":"2017-12-07T08:08:33.782Z", + "new_balance":"-4396.85", + "value":"227.39" + } + }, + { + "id":"e3697919-cb98-449b-9136-e4745df5e4fd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T13:35:11.565Z", + "completed":"2017-12-07T13:35:11.565Z", + "new_balance":"-2505.53", + "value":"1891.32" + } + }, + { + "id":"5ba4e4bd-2acb-4c51-99f7-1dfe8419ee3c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T14:41:10.867Z", + "completed":"2017-12-07T14:41:10.867Z", + "new_balance":"-1604.55", + "value":"900.98" + } + }, + { + "id":"69b033d5-ac0d-410f-9181-2276c7034c78", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T21:59:19.616Z", + "completed":"2017-12-11T21:59:19.616Z", + "new_balance":"-1683.63", + "value":"-79.08" + } + }, + { + "id":"3180995a-6ed2-4edc-b7c8-9dab1c32dbe4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T02:30:57.946Z", + "completed":"2017-12-14T02:30:57.946Z", + "new_balance":"-1622.38", + "value":"61.25" + } + }, + { + "id":"c2e13c35-c394-4588-b18b-08f9086cd18d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:53:54.946Z", + "completed":"2017-12-14T15:53:54.946Z", + "new_balance":"-1172.38", + "value":"450.00" + } + }, + { + "id":"8743bd14-9644-44e2-bc41-f6c4f2bb9176", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T23:20:21.146Z", + "completed":"2017-12-14T23:20:21.146Z", + "new_balance":"-1246.31", + "value":"-73.93" + } + }, + { + "id":"a519132a-5467-4619-8093-aaea33f58385", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T07:09:28.098Z", + "completed":"2017-12-16T07:09:28.098Z", + "new_balance":"-1018.92", + "value":"227.39" + } + }, + { + "id":"c03cc387-f38f-47ad-b366-cd0be9acacde", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T16:02:01.833Z", + "completed":"2017-12-16T16:02:01.833Z", + "new_balance":"-1545.48", + "value":"-526.56" + } + }, + { + "id":"2513a362-1da7-4a61-bae1-fac31c2b90a2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T14:28:14.449Z", + "completed":"2017-12-21T14:28:14.449Z", + "new_balance":"-2212.63", + "value":"-667.15" + } + }, + { + "id":"28f065f0-ff02-409e-bcb3-db372b0578f9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T17:45:44.696Z", + "completed":"2017-12-21T17:45:44.696Z", + "new_balance":"-321.31", + "value":"1891.32" + } + }, + { + "id":"117ff2ac-1698-44aa-a3d9-61ef8792e3e9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:50:21.173Z", + "completed":"2017-12-21T18:50:21.173Z", + "new_balance":"132.34", + "value":"453.65" + } + }, + { + "id":"1ee198db-05a9-48ca-a2ae-5421ceb50759", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T19:33:42.241Z", + "completed":"2017-12-21T19:33:42.241Z", + "new_balance":"3215.21", + "value":"3082.87" + } + }, + { + "id":"897bee6a-93e4-4a68-8dc4-abd46a65f170", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T14:36:10.520Z", + "completed":"2017-12-30T14:36:10.520Z", + "new_balance":"3442.83", + "value":"227.62" + } + }, + { + "id":"e2004a5b-a1ba-4e86-b274-781529e9e055", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T18:12:37.467Z", + "completed":"2017-12-30T18:12:37.467Z", + "new_balance":"3670.22", + "value":"227.39" + } + }, + { + "id":"95170b2d-3c5a-440d-b6a2-af33b63330ec", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T08:45:53.950Z", + "completed":"2016-03-01T08:45:53.950Z", + "new_balance":"3245.39", + "value":"-23.24" + } + }, + { + "id":"f49743db-ac8a-45c0-98a2-0abf7d61c7f8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T08:47:21.567Z", + "completed":"2016-03-01T08:47:21.567Z", + "new_balance":"3188.58", + "value":"-56.81" + } + }, + { + "id":"d29df1e6-dc06-460d-8414-0240c2b4a036", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T09:45:21.179Z", + "completed":"2016-03-01T09:45:21.179Z", + "new_balance":"3175.48", + "value":"-13.10" + } + }, + { + "id":"6db5f684-aa44-4047-83f1-ca7557591cb5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T13:11:50.262Z", + "completed":"2016-03-01T13:11:50.262Z", + "new_balance":"3153.12", + "value":"-22.36" + } + }, + { + "id":"d9947b33-27bd-4bf7-a169-67fef1097a8f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T22:17:23.216Z", + "completed":"2016-03-01T22:17:23.216Z", + "new_balance":"2875.64", + "value":"-277.48" + } + }, + { + "id":"1eaaaa5e-2e7b-42be-ad43-205b091df961", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T23:56:00.284Z", + "completed":"2016-03-01T23:56:00.284Z", + "new_balance":"2579.04", + "value":"-296.60" + } + }, + { + "id":"1b1c9b38-d0c4-404e-bd64-b611dea6046a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T02:27:38.451Z", + "completed":"2016-03-12T02:27:38.451Z", + "new_balance":"2555.80", + "value":"-23.24" + } + }, + { + "id":"76f9b086-34ae-4730-bffb-1abb00e51503", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T10:53:54.002Z", + "completed":"2016-03-12T10:53:54.002Z", + "new_balance":"2550.65", + "value":"-5.15" + } + }, + { + "id":"fa7a018c-32e8-4bef-b387-227c3d34ff3b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:28:02.359Z", + "completed":"2016-03-12T20:28:02.359Z", + "new_balance":"2546.47", + "value":"-4.18" + } + }, + { + "id":"eb6b8b4f-53b1-4c77-8db0-bdb28c98df75", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:23:13.818Z", + "completed":"2016-03-12T22:23:13.818Z", + "new_balance":"2489.66", + "value":"-56.81" + } + }, + { + "id":"43cecfb6-6cb1-42ac-a37f-35b1e3add507", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T10:58:14.123Z", + "completed":"2016-03-14T10:58:14.123Z", + "new_balance":"2650.47", + "value":"160.81" + } + }, + { + "id":"64fe62a5-a032-4cee-9000-a88ccf34ac96", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T07:19:28.742Z", + "completed":"2016-03-15T07:19:28.742Z", + "new_balance":"2680.74", + "value":"30.27" + } + }, + { + "id":"759e9dd5-054a-4ab8-8ec7-3eff0a46acad", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T03:33:44.219Z", + "completed":"2016-03-16T03:33:44.219Z", + "new_balance":"2771.70", + "value":"90.96" + } + }, + { + "id":"c7d35a2c-dc58-421a-88a9-7e03d2a9f2f8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:49:24.940Z", + "completed":"2016-03-17T12:49:24.940Z", + "new_balance":"2765.17", + "value":"-6.53" + } + }, + { + "id":"c700390a-3cc9-4ffb-a886-02b1297bcee5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T20:19:09.900Z", + "completed":"2016-03-17T20:19:09.900Z", + "new_balance":"2759.69", + "value":"-5.48" + } + }, + { + "id":"c6bcc1e6-4302-48ce-8556-dfa039564c32", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T01:29:25.862Z", + "completed":"2016-03-19T01:29:25.862Z", + "new_balance":"2807.56", + "value":"47.87" + } + }, + { + "id":"39400083-88bf-40ac-9e06-b03987704849", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T08:25:04.768Z", + "completed":"2016-03-21T08:25:04.768Z", + "new_balance":"2800.37", + "value":"-7.19" + } + }, + { + "id":"4d77e611-0198-46e6-b4bf-545f1a46570c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T10:29:15.103Z", + "completed":"2016-03-21T10:29:15.103Z", + "new_balance":"2807.21", + "value":"6.84" + } + }, + { + "id":"b134703f-5504-460e-bd0a-3548f31076d3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:08:18.098Z", + "completed":"2016-03-24T01:08:18.098Z", + "new_balance":"2837.48", + "value":"30.27" + } + }, + { + "id":"0883a3e6-3aeb-47d6-8531-23cfe5361e11", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T18:22:51.614Z", + "completed":"2016-03-24T18:22:51.614Z", + "new_balance":"2787.26", + "value":"-50.22" + } + }, + { + "id":"db341aea-57dd-44ef-9801-7f5ddb0d15a3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:29:33.464Z", + "completed":"2016-03-25T05:29:33.464Z", + "new_balance":"2718.18", + "value":"-69.08" + } + }, + { + "id":"73ef50d6-07d5-4ffa-badd-2a52e79d4016", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T21:30:32.367Z", + "completed":"2016-03-25T21:30:32.367Z", + "new_balance":"2768.26", + "value":"50.08" + } + }, + { + "id":"5b5aef1c-2ac3-45fa-9fe1-d3928348c306", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T07:00:11.383Z", + "completed":"2016-03-28T07:00:11.383Z", + "new_balance":"3177.08", + "value":"408.82" + } + }, + { + "id":"c9c428d1-10fe-4a89-a845-c6649e842a5a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:48:00.712Z", + "completed":"2016-03-28T18:48:00.712Z", + "new_balance":"3337.89", + "value":"160.81" + } + }, + { + "id":"293ea320-d4bd-4076-9f2d-ecab3fb584d1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T13:44:13.285Z", + "completed":"2016-03-30T13:44:13.285Z", + "new_balance":"3368.16", + "value":"30.27" + } + }, + { + "id":"04e13b5b-36ed-45ec-9b01-814efea74e7f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T20:22:08.770Z", + "completed":"2016-03-30T20:22:08.770Z", + "new_balance":"3389.05", + "value":"20.89" + } + }, + { + "id":"f082f0f3-4f16-41dd-b4d8-1a9ba6228879", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T03:06:02.491Z", + "completed":"2016-06-01T03:06:02.491Z", + "new_balance":"3111.57", + "value":"-277.48" + } + }, + { + "id":"18b3c291-dae6-4e60-820e-c950ce02c7fe", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T10:56:51.534Z", + "completed":"2016-06-01T10:56:51.534Z", + "new_balance":"3098.47", + "value":"-13.10" + } + }, + { + "id":"d7d04890-173a-4125-8012-839171bcd923", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T12:04:29.522Z", + "completed":"2016-06-01T12:04:29.522Z", + "new_balance":"3076.11", + "value":"-22.36" + } + }, + { + "id":"a0ec2298-1a0b-4736-84b9-27f9a4cf6cce", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T13:51:41.526Z", + "completed":"2016-06-01T13:51:41.526Z", + "new_balance":"2779.51", + "value":"-296.60" + } + }, + { + "id":"cd1b9ac9-ca91-490e-81d6-c6d29e25cf4e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T23:24:21.106Z", + "completed":"2016-06-01T23:24:21.106Z", + "new_balance":"2756.27", + "value":"-23.24" + } + }, + { + "id":"1654983e-2262-4567-8e12-4fd23063c9af", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T23:31:39.743Z", + "completed":"2016-06-01T23:31:39.743Z", + "new_balance":"2699.46", + "value":"-56.81" + } + }, + { + "id":"1b163d84-4f0f-4508-9510-d0e3c3a4d4ae", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T02:07:42.279Z", + "completed":"2016-06-04T02:07:42.279Z", + "new_balance":"2694.31", + "value":"-5.15" + } + }, + { + "id":"0648915b-740c-4875-889f-4296a82f1936", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:32:14.265Z", + "completed":"2016-06-04T15:32:14.265Z", + "new_balance":"2690.13", + "value":"-4.18" + } + }, + { + "id":"23d8370b-fdc7-4b65-bde4-1dc8cb2563bc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T18:17:00.188Z", + "completed":"2016-06-05T18:17:00.188Z", + "new_balance":"2666.89", + "value":"-23.24" + } + }, + { + "id":"12abc764-b065-4928-bc0f-50ac2ebf6a99", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T23:53:23.419Z", + "completed":"2016-06-05T23:53:23.419Z", + "new_balance":"2610.08", + "value":"-56.81" + } + }, + { + "id":"19c556a7-92d8-4f0f-bf4d-f03551990c28", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T04:19:31.821Z", + "completed":"2016-06-07T04:19:31.821Z", + "new_balance":"2640.35", + "value":"30.27" + } + }, + { + "id":"21e8697a-0bb1-4790-bea7-d98099e0ea5d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T08:03:34.696Z", + "completed":"2016-06-07T08:03:34.696Z", + "new_balance":"2633.82", + "value":"-6.53" + } + }, + { + "id":"7ead703a-22cf-43fb-854b-a73d804b21f3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:54:54.125Z", + "completed":"2016-06-07T11:54:54.125Z", + "new_balance":"2724.78", + "value":"90.96" + } + }, + { + "id":"836d017f-78dd-409e-b3cc-ff00660a52ff", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T20:31:17.539Z", + "completed":"2016-06-07T20:31:17.539Z", + "new_balance":"2885.59", + "value":"160.81" + } + }, + { + "id":"83074c10-d2a9-41ad-a1a0-f1103b775b22", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T00:28:04.582Z", + "completed":"2016-06-11T00:28:04.582Z", + "new_balance":"2880.11", + "value":"-5.48" + } + }, + { + "id":"1739edd9-e6bb-4863-a3b0-f1edd86e0227", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T20:34:52.867Z", + "completed":"2016-06-14T20:34:52.867Z", + "new_balance":"2872.92", + "value":"-7.19" + } + }, + { + "id":"73f36e34-99a6-43ff-aabf-e3f9e53ed153", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T20:57:10.012Z", + "completed":"2016-06-14T20:57:10.012Z", + "new_balance":"2920.79", + "value":"47.87" + } + }, + { + "id":"533f37c4-b1cc-459e-97f5-8ebf749be754", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T22:28:04.529Z", + "completed":"2016-06-14T22:28:04.529Z", + "new_balance":"2927.63", + "value":"6.84" + } + }, + { + "id":"ae88fad7-3082-4ee9-9862-2813c94a56d9", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T02:08:57.651Z", + "completed":"2016-06-16T02:08:57.651Z", + "new_balance":"2877.41", + "value":"-50.22" + } + }, + { + "id":"0c0bd699-9158-4a3a-9863-e81839c9aeec", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T07:28:24.326Z", + "completed":"2016-06-16T07:28:24.326Z", + "new_balance":"2907.68", + "value":"30.27" + } + }, + { + "id":"bb0c4f0f-579b-4c23-ba16-3dd02fe66ee0", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T03:43:58.503Z", + "completed":"2016-06-21T03:43:58.503Z", + "new_balance":"3316.50", + "value":"408.82" + } + }, + { + "id":"78689c7d-7bb9-4d85-9977-819b2f8c2317", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T13:38:35.727Z", + "completed":"2016-06-21T13:38:35.727Z", + "new_balance":"3366.58", + "value":"50.08" + } + }, + { + "id":"c99a5f3c-50d9-4767-a029-8564aad48ebe", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T16:11:51.692Z", + "completed":"2016-06-21T16:11:51.692Z", + "new_balance":"3527.39", + "value":"160.81" + } + }, + { + "id":"84502dac-a1df-4632-bba7-aa4a76ccefbf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T23:48:51.299Z", + "completed":"2016-06-21T23:48:51.299Z", + "new_balance":"3458.31", + "value":"-69.08" + } + }, + { + "id":"75e8ce60-c15f-4cb2-b2a0-59fc6eba979a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T05:33:35.976Z", + "completed":"2016-06-30T05:33:35.976Z", + "new_balance":"3488.58", + "value":"30.27" + } + }, + { + "id":"089164b3-4f48-4aa5-87a4-6f9544ab2c73", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T08:34:28.127Z", + "completed":"2016-06-30T08:34:28.127Z", + "new_balance":"3509.47", + "value":"20.89" + } + }, + { + "id":"00b0e309-e645-47ef-99e8-a2fce6ee606f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T07:58:41.259Z", + "completed":"2016-09-01T07:58:41.259Z", + "new_balance":"3487.11", + "value":"-22.36" + } + }, + { + "id":"0e1c974a-9644-4f77-9f02-583074f14d25", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T11:33:39.370Z", + "completed":"2016-09-01T11:33:39.370Z", + "new_balance":"3430.30", + "value":"-56.81" + } + }, + { + "id":"a899eb54-fa04-4f52-bfba-0d7cd7c6ab74", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T11:43:13.198Z", + "completed":"2016-09-01T11:43:13.198Z", + "new_balance":"3152.82", + "value":"-277.48" + } + }, + { + "id":"223061e4-9ce3-479e-80e8-d7fee3aedcc1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T18:59:09.051Z", + "completed":"2016-09-01T18:59:09.051Z", + "new_balance":"2856.22", + "value":"-296.60" + } + }, + { + "id":"7ad4a3d3-49d4-4b5e-9875-aacc1a64d595", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T21:01:02.935Z", + "completed":"2016-09-01T21:01:02.935Z", + "new_balance":"2832.98", + "value":"-23.24" + } + }, + { + "id":"749dfd5a-1114-45f5-9203-111359aad291", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T21:23:10.225Z", + "completed":"2016-09-01T21:23:10.225Z", + "new_balance":"2819.88", + "value":"-13.10" + } + }, + { + "id":"899a3e02-0192-4c90-8a47-4c262c459263", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T02:54:03.925Z", + "completed":"2016-09-12T02:54:03.925Z", + "new_balance":"2814.73", + "value":"-5.15" + } + }, + { + "id":"9e6438e1-7a86-4229-9909-22cc34874007", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T10:11:07.841Z", + "completed":"2016-09-12T10:11:07.841Z", + "new_balance":"2757.92", + "value":"-56.81" + } + }, + { + "id":"8b606209-fdad-4fec-826a-9ddd31a24474", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T15:55:16.997Z", + "completed":"2016-09-12T15:55:16.997Z", + "new_balance":"2753.74", + "value":"-4.18" + } + }, + { + "id":"634f7a17-da39-470e-a49c-b739d5b70b78", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T21:19:00.287Z", + "completed":"2016-09-12T21:19:00.287Z", + "new_balance":"2730.50", + "value":"-23.24" + } + }, + { + "id":"3af1fd51-56ce-4802-ae55-2d7d719fb690", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:52:21.156Z", + "completed":"2016-09-15T01:52:21.156Z", + "new_balance":"2891.31", + "value":"160.81" + } + }, + { + "id":"6ff2db45-75db-4b3d-af23-b03db1c73255", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T15:29:21.468Z", + "completed":"2016-09-15T15:29:21.468Z", + "new_balance":"2921.58", + "value":"30.27" + } + }, + { + "id":"669a2c7d-e24c-48bf-b7c0-48cfdafa9bdc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T06:21:04.270Z", + "completed":"2016-09-17T06:21:04.270Z", + "new_balance":"2915.05", + "value":"-6.53" + } + }, + { + "id":"0d180579-92f2-41b3-a4a4-0033f1a6f5c5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:31:18.405Z", + "completed":"2016-09-17T19:31:18.405Z", + "new_balance":"3006.01", + "value":"90.96" + } + }, + { + "id":"dc5a1682-3243-4ed5-8088-d113b4fcc4fa", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:58:31.109Z", + "completed":"2016-09-17T20:58:31.109Z", + "new_balance":"3000.53", + "value":"-5.48" + } + }, + { + "id":"505cfa5e-be7b-427b-9377-9864c47b4a74", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T02:45:12.848Z", + "completed":"2016-09-19T02:45:12.848Z", + "new_balance":"3048.40", + "value":"47.87" + } + }, + { + "id":"6996b57a-1dea-4cfd-9dc6-d9701e1a56c8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T06:36:21.292Z", + "completed":"2016-09-21T06:36:21.292Z", + "new_balance":"3041.21", + "value":"-7.19" + } + }, + { + "id":"767c8a4c-b41c-4024-b329-a9b3614bd6aa", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T13:41:58.083Z", + "completed":"2016-09-21T13:41:58.083Z", + "new_balance":"3048.05", + "value":"6.84" + } + }, + { + "id":"23cafd79-008f-4e05-be9b-41c61680f2bc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T07:55:48.264Z", + "completed":"2016-09-24T07:55:48.264Z", + "new_balance":"3078.32", + "value":"30.27" + } + }, + { + "id":"78d57fc0-8cb1-4a10-be8b-d98ed6581c3f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T22:05:20.947Z", + "completed":"2016-09-24T22:05:20.947Z", + "new_balance":"3028.10", + "value":"-50.22" + } + }, + { + "id":"bfb807d0-6697-4d45-8124-ec5789aa422b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:08:24.166Z", + "completed":"2016-09-25T03:08:24.166Z", + "new_balance":"2959.02", + "value":"-69.08" + } + }, + { + "id":"45fb4f5b-4785-46a9-b9a3-817afd1df4d4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T19:55:21.185Z", + "completed":"2016-09-25T19:55:21.185Z", + "new_balance":"3009.10", + "value":"50.08" + } + }, + { + "id":"afeddac8-369f-4f91-8f40-3778332792d4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T02:09:09.009Z", + "completed":"2016-09-28T02:09:09.009Z", + "new_balance":"3417.92", + "value":"408.82" + } + }, + { + "id":"ffa2a39c-f877-452e-b87b-f33463550929", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T02:31:53.143Z", + "completed":"2016-09-28T02:31:53.143Z", + "new_balance":"3578.73", + "value":"160.81" + } + }, + { + "id":"384d2552-45b3-46fe-8cd7-6397ce8eb9e2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T03:44:13.252Z", + "completed":"2016-09-30T03:44:13.252Z", + "new_balance":"3599.62", + "value":"20.89" + } + }, + { + "id":"4a2f770b-9c1e-4c41-9e66-53862ba3d66c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T20:47:44.874Z", + "completed":"2016-09-30T20:47:44.874Z", + "new_balance":"3629.89", + "value":"30.27" + } + }, + { + "id":"15cf3495-94fa-4bc9-8ad1-aef1167dfa2c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T10:22:03.821Z", + "completed":"2016-12-01T10:22:03.821Z", + "new_balance":"3333.29", + "value":"-296.60" + } + }, + { + "id":"95beab5e-cc92-465d-9adf-1b0bf2d304d8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T10:33:22.289Z", + "completed":"2016-12-01T10:33:22.289Z", + "new_balance":"3310.05", + "value":"-23.24" + } + }, + { + "id":"575bcf1a-d13e-4fb1-b24d-42f3c71d65e4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T11:21:31.468Z", + "completed":"2016-12-01T11:21:31.468Z", + "new_balance":"3032.57", + "value":"-277.48" + } + }, + { + "id":"96c7fb7c-f2a7-48c0-9482-3c65ac75250f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T16:14:48.323Z", + "completed":"2016-12-01T16:14:48.323Z", + "new_balance":"3019.47", + "value":"-13.10" + } + }, + { + "id":"5f669d70-f33c-4fb8-bb6b-86db82735eab", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T19:42:11.601Z", + "completed":"2016-12-01T19:42:11.601Z", + "new_balance":"2997.11", + "value":"-22.36" + } + }, + { + "id":"16caaa94-a633-4fef-9cd0-5f770c136e0b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T21:23:13.806Z", + "completed":"2016-12-01T21:23:13.806Z", + "new_balance":"2940.30", + "value":"-56.81" + } + }, + { + "id":"a4545340-b795-4510-91a7-53eb3930403d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:39:18.968Z", + "completed":"2016-12-04T01:39:18.968Z", + "new_balance":"2935.15", + "value":"-5.15" + } + }, + { + "id":"7efdea9e-99ef-4dfd-a253-f6da4f293d8e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:28:28.641Z", + "completed":"2016-12-04T12:28:28.641Z", + "new_balance":"2930.97", + "value":"-4.18" + } + }, + { + "id":"5cb65541-6c75-4e84-9ace-ce10ec7c0ad1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T12:11:13.253Z", + "completed":"2016-12-05T12:11:13.253Z", + "new_balance":"2907.73", + "value":"-23.24" + } + }, + { + "id":"d12f7016-2aa7-4432-a1d2-a8a971033533", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T14:00:37.027Z", + "completed":"2016-12-05T14:00:37.027Z", + "new_balance":"2850.92", + "value":"-56.81" + } + }, + { + "id":"1233fbf1-5138-4f0d-93de-1561a2d5f338", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T00:39:32.805Z", + "completed":"2016-12-07T00:39:32.805Z", + "new_balance":"2844.39", + "value":"-6.53" + } + }, + { + "id":"de87cc97-5493-4871-a54e-3b57f9d3981e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T02:58:12.838Z", + "completed":"2016-12-07T02:58:12.838Z", + "new_balance":"2874.66", + "value":"30.27" + } + }, + { + "id":"d3e50fb6-60aa-401c-b493-1dc438b876b6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:57:38.016Z", + "completed":"2016-12-07T03:57:38.016Z", + "new_balance":"3035.47", + "value":"160.81" + } + }, + { + "id":"7c256082-f983-48d0-bd5f-d136c1d4e0cc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T14:11:45.696Z", + "completed":"2016-12-07T14:11:45.696Z", + "new_balance":"3126.43", + "value":"90.96" + } + }, + { + "id":"e9d43324-a308-4a7b-acd4-129ada3ac54d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T23:34:22.344Z", + "completed":"2016-12-11T23:34:22.344Z", + "new_balance":"3120.95", + "value":"-5.48" + } + }, + { + "id":"244ba483-2d6e-4fab-bda8-e077769ceeab", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:54:48.874Z", + "completed":"2016-12-14T01:54:48.874Z", + "new_balance":"3127.79", + "value":"6.84" + } + }, + { + "id":"84f62aff-eff5-4d34-a261-2b73a762c070", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T05:19:08.210Z", + "completed":"2016-12-14T05:19:08.210Z", + "new_balance":"3120.60", + "value":"-7.19" + } + }, + { + "id":"50c9a373-9c26-4a62-9956-3338df535f05", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T19:28:38.367Z", + "completed":"2016-12-14T19:28:38.367Z", + "new_balance":"3168.47", + "value":"47.87" + } + }, + { + "id":"b5b63256-af7c-4a43-8fe1-738be9057b10", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:16:35.816Z", + "completed":"2016-12-16T06:16:35.816Z", + "new_balance":"3118.25", + "value":"-50.22" + } + }, + { + "id":"637eb33c-dece-480d-ac92-c9b1ca827c1a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T17:05:30.953Z", + "completed":"2016-12-16T17:05:30.953Z", + "new_balance":"3148.52", + "value":"30.27" + } + }, + { + "id":"e35f8d43-73aa-4712-9752-2823030999b2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T04:12:19.114Z", + "completed":"2016-12-21T04:12:19.114Z", + "new_balance":"3079.44", + "value":"-69.08" + } + }, + { + "id":"a2593265-5c6f-46e7-a77b-9d4ecac11c00", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T14:24:03.430Z", + "completed":"2016-12-21T14:24:03.430Z", + "new_balance":"3488.26", + "value":"408.82" + } + }, + { + "id":"8e7f59c2-5420-4d6e-833c-0dbe66540414", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T17:59:46.963Z", + "completed":"2016-12-21T17:59:46.963Z", + "new_balance":"3538.34", + "value":"50.08" + } + }, + { + "id":"0ef78eaf-fe58-4d3e-b7fb-7ef898a8a2cb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T22:56:45.172Z", + "completed":"2016-12-21T22:56:45.172Z", + "new_balance":"3699.15", + "value":"160.81" + } + }, + { + "id":"a30824b0-11ff-4432-bf96-0bbde7c24d83", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T06:11:47.741Z", + "completed":"2016-12-30T06:11:47.741Z", + "new_balance":"3729.42", + "value":"30.27" + } + }, + { + "id":"a56231ea-582d-4769-a0a2-b2a23a2d68cb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T22:22:41.242Z", + "completed":"2016-12-30T22:22:41.242Z", + "new_balance":"3750.31", + "value":"20.89" + } + }, + { + "id":"36c828fb-b423-4b94-af9a-391595a73f40", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T02:47:03.188Z", + "completed":"2017-03-01T02:47:03.188Z", + "new_balance":"3472.83", + "value":"-277.48" + } + }, + { + "id":"fe1fa8f1-322f-4b7f-9e51-b336b865224a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T04:05:55.003Z", + "completed":"2017-03-01T04:05:55.003Z", + "new_balance":"3450.47", + "value":"-22.36" + } + }, + { + "id":"9f2c6a09-4dce-418d-894e-d2c02013c346", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T06:44:22.653Z", + "completed":"2017-03-01T06:44:22.653Z", + "new_balance":"3153.87", + "value":"-296.60" + } + }, + { + "id":"5e46187f-6cac-4066-a1ae-f79f38444f6e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T08:58:17.908Z", + "completed":"2017-03-01T08:58:17.908Z", + "new_balance":"3130.63", + "value":"-23.24" + } + }, + { + "id":"6d35998e-5f12-4e8a-91a6-a9a861b1b970", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T09:45:37.957Z", + "completed":"2017-03-01T09:45:37.957Z", + "new_balance":"3117.53", + "value":"-13.10" + } + }, + { + "id":"bf1f568f-ab83-4aa3-924d-1615207f4e2e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T12:35:42.146Z", + "completed":"2017-03-01T12:35:42.146Z", + "new_balance":"3060.72", + "value":"-56.81" + } + }, + { + "id":"fad94f28-e3fd-4e89-a58b-1760eebbd5be", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T03:55:27.781Z", + "completed":"2017-03-12T03:55:27.781Z", + "new_balance":"3055.57", + "value":"-5.15" + } + }, + { + "id":"c18f3941-0c15-4dcf-8cf5-9e649c8f5506", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T06:09:40.250Z", + "completed":"2017-03-12T06:09:40.250Z", + "new_balance":"2998.76", + "value":"-56.81" + } + }, + { + "id":"8a9ff9c4-41fc-4b1e-80fd-4e20ce177bde", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:26:59.842Z", + "completed":"2017-03-12T12:26:59.842Z", + "new_balance":"2994.58", + "value":"-4.18" + } + }, + { + "id":"902ce83a-f0c2-4cfd-a616-6c34b0f99ea1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T17:28:51.117Z", + "completed":"2017-03-12T17:28:51.117Z", + "new_balance":"2971.34", + "value":"-23.24" + } + }, + { + "id":"b7cb5762-2ed1-45ad-a141-afc1e95fa848", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T14:29:46.075Z", + "completed":"2017-03-14T14:29:46.075Z", + "new_balance":"3132.15", + "value":"160.81" + } + }, + { + "id":"770690c8-cd7e-4550-8116-60bbf2c2405c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T01:57:36.666Z", + "completed":"2017-03-15T01:57:36.666Z", + "new_balance":"3162.42", + "value":"30.27" + } + }, + { + "id":"ae29d659-0547-4500-8100-1eab5cd6892f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T21:28:45.551Z", + "completed":"2017-03-16T21:28:45.551Z", + "new_balance":"3253.38", + "value":"90.96" + } + }, + { + "id":"0d171512-692e-4da1-ae51-afcfbdc9a57c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T09:33:50.639Z", + "completed":"2017-03-17T09:33:50.639Z", + "new_balance":"3246.85", + "value":"-6.53" + } + }, + { + "id":"461a6ab7-98c0-4ab1-b8ab-191b6ed68c4d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T16:07:21.092Z", + "completed":"2017-03-17T16:07:21.092Z", + "new_balance":"3241.37", + "value":"-5.48" + } + }, + { + "id":"118d63b8-6ee7-46e9-9088-7144c62c4d57", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T17:13:23.407Z", + "completed":"2017-03-19T17:13:23.407Z", + "new_balance":"3289.24", + "value":"47.87" + } + }, + { + "id":"65d5a7d5-c217-4d98-8f19-33bc7547c7a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T00:21:00.334Z", + "completed":"2017-03-21T00:21:00.334Z", + "new_balance":"3296.08", + "value":"6.84" + } + }, + { + "id":"35f17c3d-5344-49fd-99e0-fcab5019fdc4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T00:53:05.824Z", + "completed":"2017-03-21T00:53:05.824Z", + "new_balance":"3288.89", + "value":"-7.19" + } + }, + { + "id":"16dbb1a2-9347-48b2-9cf9-e6c086c04d4f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T08:25:48.724Z", + "completed":"2017-03-24T08:25:48.724Z", + "new_balance":"3319.16", + "value":"30.27" + } + }, + { + "id":"d1d1893f-d4b7-43c2-bcef-96d06973d54f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T14:58:14.966Z", + "completed":"2017-03-24T14:58:14.966Z", + "new_balance":"3268.94", + "value":"-50.22" + } + }, + { + "id":"d6d25251-aca2-4802-95df-050cb9076e66", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T08:40:02.050Z", + "completed":"2017-03-25T08:40:02.050Z", + "new_balance":"3319.02", + "value":"50.08" + } + }, + { + "id":"3bfe0332-4f1c-4235-b8a3-7bc5a8c6d131", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T17:23:14.958Z", + "completed":"2017-03-25T17:23:14.958Z", + "new_balance":"3249.94", + "value":"-69.08" + } + }, + { + "id":"420d052f-78f1-46c4-af5e-d482e63bf77e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T11:32:01.526Z", + "completed":"2017-03-28T11:32:01.526Z", + "new_balance":"3410.75", + "value":"160.81" + } + }, + { + "id":"066d5f8a-b429-474f-8c05-0efdcdae4343", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T23:17:15.963Z", + "completed":"2017-03-28T23:17:15.963Z", + "new_balance":"3819.57", + "value":"408.82" + } + }, + { + "id":"5bd4e019-5d4d-4815-8f3f-e5d583c0ba4c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T16:47:02.553Z", + "completed":"2017-03-30T16:47:02.553Z", + "new_balance":"3849.84", + "value":"30.27" + } + }, + { + "id":"404202aa-331b-42f3-bedc-ace8df74daa8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T23:29:29.338Z", + "completed":"2017-03-30T23:29:29.338Z", + "new_balance":"3870.73", + "value":"20.89" + } + }, + { + "id":"ec1ac199-3b5e-4a03-8cf9-67861e572696", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T10:20:52.190Z", + "completed":"2017-06-01T10:20:52.190Z", + "new_balance":"3848.37", + "value":"-22.36" + } + }, + { + "id":"402ca6e0-2e92-42d4-9f38-17b716150832", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:42:12.858Z", + "completed":"2017-06-01T11:42:12.858Z", + "new_balance":"3825.13", + "value":"-23.24" + } + }, + { + "id":"302c14af-8ea5-4028-8ede-dcd987817c01", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T12:06:50.641Z", + "completed":"2017-06-01T12:06:50.641Z", + "new_balance":"3547.65", + "value":"-277.48" + } + }, + { + "id":"e2d5f94b-0856-490e-a6f6-aa6324c83be5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T16:59:36.860Z", + "completed":"2017-06-01T16:59:36.860Z", + "new_balance":"3490.84", + "value":"-56.81" + } + }, + { + "id":"8eeda325-c8d8-4c14-9153-4435372850eb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T18:03:13.259Z", + "completed":"2017-06-01T18:03:13.259Z", + "new_balance":"3194.24", + "value":"-296.60" + } + }, + { + "id":"038d6d81-c769-4b95-9d0e-58d055673e28", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T22:52:22.368Z", + "completed":"2017-06-01T22:52:22.368Z", + "new_balance":"3181.14", + "value":"-13.10" + } + }, + { + "id":"994f76b5-d5b5-4290-8733-7b312c926aef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:23:04.501Z", + "completed":"2017-06-04T17:23:04.501Z", + "new_balance":"3175.99", + "value":"-5.15" + } + }, + { + "id":"ee60ef84-893a-444b-9291-d6414f425365", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:58:01.338Z", + "completed":"2017-06-04T20:58:01.338Z", + "new_balance":"3171.81", + "value":"-4.18" + } + }, + { + "id":"52dda882-1f91-49ad-8e2f-a24ea43dd1ef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T10:48:49.266Z", + "completed":"2017-06-05T10:48:49.266Z", + "new_balance":"3115.00", + "value":"-56.81" + } + }, + { + "id":"38379b7c-be74-4642-bdce-8218d5de7aea", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T19:18:24.663Z", + "completed":"2017-06-05T19:18:24.663Z", + "new_balance":"3091.76", + "value":"-23.24" + } + }, + { + "id":"e836930b-9349-43ee-9139-6d0b417fdd78", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T04:53:20.132Z", + "completed":"2017-06-07T04:53:20.132Z", + "new_balance":"3182.72", + "value":"90.96" + } + }, + { + "id":"ea6249ec-268b-4af6-863b-0f15d333964d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:03:05.545Z", + "completed":"2017-06-07T08:03:05.545Z", + "new_balance":"3343.53", + "value":"160.81" + } + }, + { + "id":"c5503ffe-a7ea-4d37-afbf-57d5cd70c876", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T12:00:08.154Z", + "completed":"2017-06-07T12:00:08.154Z", + "new_balance":"3373.80", + "value":"30.27" + } + }, + { + "id":"a89edb75-3f53-417d-be87-db4f6c4ddbc6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T19:56:55.666Z", + "completed":"2017-06-07T19:56:55.666Z", + "new_balance":"3367.27", + "value":"-6.53" + } + }, + { + "id":"969bcb17-7edb-4545-8905-f8e3e21f4fef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T22:29:30.496Z", + "completed":"2017-06-11T22:29:30.496Z", + "new_balance":"3361.79", + "value":"-5.48" + } + }, + { + "id":"cf88a03a-3a32-4c53-9ceb-57025e738e71", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T03:02:16.171Z", + "completed":"2017-06-14T03:02:16.171Z", + "new_balance":"3409.66", + "value":"47.87" + } + }, + { + "id":"48c754bb-1609-4f0c-81ac-7fb7af721532", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:24:59.793Z", + "completed":"2017-06-14T13:24:59.793Z", + "new_balance":"3402.47", + "value":"-7.19" + } + }, + { + "id":"43793027-93f4-492f-97da-14274e361c62", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T21:31:27.700Z", + "completed":"2017-06-14T21:31:27.700Z", + "new_balance":"3409.31", + "value":"6.84" + } + }, + { + "id":"46d88c75-51f6-4215-8b03-d2d608079d66", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T07:31:36.174Z", + "completed":"2017-06-16T07:31:36.174Z", + "new_balance":"3439.58", + "value":"30.27" + } + }, + { + "id":"4234bd8b-5156-4250-aca3-a0609b54cb46", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T12:08:41.412Z", + "completed":"2017-06-16T12:08:41.412Z", + "new_balance":"3389.36", + "value":"-50.22" + } + }, + { + "id":"1930c889-0463-4f07-84c9-610faccc875c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T02:52:00.633Z", + "completed":"2017-06-21T02:52:00.633Z", + "new_balance":"3798.18", + "value":"408.82" + } + }, + { + "id":"7fb216e5-8eef-4c51-bef7-8ca4774e2a62", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T14:54:24.086Z", + "completed":"2017-06-21T14:54:24.086Z", + "new_balance":"3729.10", + "value":"-69.08" + } + }, + { + "id":"1a7147dc-42c7-4bbd-bae2-e0f7dd4c1d0a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T17:13:06.867Z", + "completed":"2017-06-21T17:13:06.867Z", + "new_balance":"3889.91", + "value":"160.81" + } + }, + { + "id":"728441e6-2cae-4837-9b84-0df2bc1f581f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:45:16.928Z", + "completed":"2017-06-21T20:45:16.928Z", + "new_balance":"3939.99", + "value":"50.08" + } + }, + { + "id":"bba71910-0b79-4485-bbf0-f8dcec106d6d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T15:42:07.555Z", + "completed":"2017-06-30T15:42:07.555Z", + "new_balance":"3960.88", + "value":"20.89" + } + }, + { + "id":"0458d92b-94db-4f98-83e7-33f8de61d156", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T18:36:14.510Z", + "completed":"2017-06-30T18:36:14.510Z", + "new_balance":"3991.15", + "value":"30.27" + } + }, + { + "id":"1007ca6b-0959-4602-b6b1-29e07d2808a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T00:35:59.926Z", + "completed":"2017-09-01T00:35:59.926Z", + "new_balance":"3978.05", + "value":"-13.10" + } + }, + { + "id":"8f3eb2b1-4641-418b-8848-8a2b1a1b90cf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T03:13:25.294Z", + "completed":"2017-09-01T03:13:25.294Z", + "new_balance":"3700.57", + "value":"-277.48" + } + }, + { + "id":"f888a655-3263-4dea-bd00-abbc8ceb26b5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T10:38:05.545Z", + "completed":"2017-09-01T10:38:05.545Z", + "new_balance":"3643.76", + "value":"-56.81" + } + }, + { + "id":"a404ca79-5380-49be-9d2f-91540e7a2a45", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T15:36:57.497Z", + "completed":"2017-09-01T15:36:57.497Z", + "new_balance":"3347.16", + "value":"-296.60" + } + }, + { + "id":"7b7f70c6-9d9c-4230-9fb6-d9483a131914", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T18:27:51.232Z", + "completed":"2017-09-01T18:27:51.232Z", + "new_balance":"3324.80", + "value":"-22.36" + } + }, + { + "id":"c50d25cc-75df-4024-aa9c-f7152fe3e61e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T22:26:25.498Z", + "completed":"2017-09-01T22:26:25.498Z", + "new_balance":"3301.56", + "value":"-23.24" + } + }, + { + "id":"54e3cc43-f806-40ea-a4d2-d60dadd5373f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T07:40:15.687Z", + "completed":"2017-09-12T07:40:15.687Z", + "new_balance":"3297.38", + "value":"-4.18" + } + }, + { + "id":"162f19fd-bea7-48ca-aa92-cea7a9711a16", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T16:45:23.557Z", + "completed":"2017-09-12T16:45:23.557Z", + "new_balance":"3274.14", + "value":"-23.24" + } + }, + { + "id":"65d7efdc-8ecd-4e95-8da0-2ca76333661d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:51:31.262Z", + "completed":"2017-09-12T16:51:31.262Z", + "new_balance":"3217.33", + "value":"-56.81" + } + }, + { + "id":"7fc970c8-44e6-4da6-b447-bd16c65a2173", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T19:23:47.228Z", + "completed":"2017-09-12T19:23:47.228Z", + "new_balance":"3212.18", + "value":"-5.15" + } + }, + { + "id":"de6944d5-bc44-454b-8bd2-b108d56759b3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T02:19:26.863Z", + "completed":"2017-09-15T02:19:26.863Z", + "new_balance":"3372.99", + "value":"160.81" + } + }, + { + "id":"892d8e8d-2cd1-4eb9-acb5-1000c5051a0e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T03:46:14.964Z", + "completed":"2017-09-15T03:46:14.964Z", + "new_balance":"3403.26", + "value":"30.27" + } + }, + { + "id":"2543f9bd-de24-47f0-b1c1-c9ff9cc3571a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T14:35:29.207Z", + "completed":"2017-09-17T14:35:29.207Z", + "new_balance":"3494.22", + "value":"90.96" + } + }, + { + "id":"452fc22b-6ca8-417d-9e52-dc90a5b2241a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:46:23.387Z", + "completed":"2017-09-17T18:46:23.387Z", + "new_balance":"3487.69", + "value":"-6.53" + } + }, + { + "id":"93ecface-876c-4ebb-b5c1-71a71a477a82", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T21:54:08.309Z", + "completed":"2017-09-17T21:54:08.309Z", + "new_balance":"3482.21", + "value":"-5.48" + } + }, + { + "id":"b9e46cd6-cfca-4054-8b8d-f9f5e96eb6de", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T19:20:20.193Z", + "completed":"2017-09-19T19:20:20.193Z", + "new_balance":"3530.08", + "value":"47.87" + } + }, + { + "id":"76530af0-c84a-43b8-9f5c-d1df30c02158", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:57:38.308Z", + "completed":"2017-09-21T20:57:38.308Z", + "new_balance":"3522.89", + "value":"-7.19" + } + }, + { + "id":"feb26011-610c-4534-978f-839693f84fa2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T22:47:02.477Z", + "completed":"2017-09-21T22:47:02.477Z", + "new_balance":"3529.73", + "value":"6.84" + } + }, + { + "id":"3bafa3bb-984e-4cc0-a9a4-6167f7d04f2f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T10:19:29.552Z", + "completed":"2017-09-24T10:19:29.552Z", + "new_balance":"3560.00", + "value":"30.27" + } + }, + { + "id":"925b1697-226f-4715-a259-93fbdfbaea41", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T16:31:27.220Z", + "completed":"2017-09-24T16:31:27.220Z", + "new_balance":"3509.78", + "value":"-50.22" + } + }, + { + "id":"00a69c23-1608-40af-a91e-cbcd8c63c823", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T00:06:19.491Z", + "completed":"2017-09-25T00:06:19.491Z", + "new_balance":"3559.86", + "value":"50.08" + } + }, + { + "id":"722c5038-87db-4279-abc3-e3bf9c9694ea", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T12:01:19.473Z", + "completed":"2017-09-25T12:01:19.473Z", + "new_balance":"3490.78", + "value":"-69.08" + } + }, + { + "id":"3a168038-ed56-40b1-8e7c-8b61e637a8c2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T10:09:27.444Z", + "completed":"2017-09-28T10:09:27.444Z", + "new_balance":"3899.60", + "value":"408.82" + } + }, + { + "id":"c49f2ed5-018c-484c-be62-5089d346d759", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T19:30:41.367Z", + "completed":"2017-09-28T19:30:41.367Z", + "new_balance":"4060.41", + "value":"160.81" + } + }, + { + "id":"a7ad2ba6-e47c-4c98-b5e6-69f694e96986", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T04:44:53.576Z", + "completed":"2017-09-30T04:44:53.576Z", + "new_balance":"4081.30", + "value":"20.89" + } + }, + { + "id":"6d8a3e9d-b39d-4c5b-89c7-5db41fab7238", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T14:08:02.088Z", + "completed":"2017-09-30T14:08:02.088Z", + "new_balance":"4111.57", + "value":"30.27" + } + }, + { + "id":"b8e2a6dc-2f93-4865-8fb6-545512bc1a30", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T01:05:26.635Z", + "completed":"2017-12-01T01:05:26.635Z", + "new_balance":"4098.47", + "value":"-13.10" + } + }, + { + "id":"34aaaa16-aad1-4667-9ec8-66de066b6a98", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T07:30:23.047Z", + "completed":"2017-12-01T07:30:23.047Z", + "new_balance":"4075.23", + "value":"-23.24" + } + }, + { + "id":"9ab72c5e-0a7e-4103-adc8-e0caebee910f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T16:07:26.169Z", + "completed":"2017-12-01T16:07:26.169Z", + "new_balance":"3797.75", + "value":"-277.48" + } + }, + { + "id":"66cb93b8-2ffc-4cd7-a69c-a0ddfbed5837", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T20:07:39.149Z", + "completed":"2017-12-01T20:07:39.149Z", + "new_balance":"3740.94", + "value":"-56.81" + } + }, + { + "id":"2f565479-5766-434d-8177-85690724555a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T20:46:08.609Z", + "completed":"2017-12-01T20:46:08.609Z", + "new_balance":"3718.58", + "value":"-22.36" + } + }, + { + "id":"87a2a25b-85cb-427b-9c50-5a008fce76b2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T21:58:29.868Z", + "completed":"2017-12-01T21:58:29.868Z", + "new_balance":"3421.98", + "value":"-296.60" + } + }, + { + "id":"654c66d0-60d0-4833-8658-142dc2b6197d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:30:12.385Z", + "completed":"2017-12-04T07:30:12.385Z", + "new_balance":"3416.83", + "value":"-5.15" + } + }, + { + "id":"e9567f02-2ee1-45a3-8ab3-89afbb519e8e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:20:50.918Z", + "completed":"2017-12-04T16:20:50.918Z", + "new_balance":"3412.65", + "value":"-4.18" + } + }, + { + "id":"0fcafb63-cf08-40b5-8433-7d0abc7628a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T00:42:16.061Z", + "completed":"2017-12-05T00:42:16.061Z", + "new_balance":"3355.84", + "value":"-56.81" + } + }, + { + "id":"4fa52d90-999b-4712-80fd-a6d4d9b9ebf5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T12:29:16.183Z", + "completed":"2017-12-05T12:29:16.183Z", + "new_balance":"3332.60", + "value":"-23.24" + } + }, + { + "id":"ae2400ae-563a-4dab-b6c3-3adb607ba115", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:58:20.906Z", + "completed":"2017-12-07T10:58:20.906Z", + "new_balance":"3362.87", + "value":"30.27" + } + }, + { + "id":"c7de3c1a-3d19-4c8f-98b0-e2b619d43ed4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T13:02:22.166Z", + "completed":"2017-12-07T13:02:22.166Z", + "new_balance":"3523.68", + "value":"160.81" + } + }, + { + "id":"7fb3f65a-990c-448a-b5c5-446164080fa2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T16:22:23.180Z", + "completed":"2017-12-07T16:22:23.180Z", + "new_balance":"3517.15", + "value":"-6.53" + } + }, + { + "id":"bdbb26a0-c2cd-43af-bb55-443ce15ad595", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T16:49:34.070Z", + "completed":"2017-12-07T16:49:34.070Z", + "new_balance":"3608.11", + "value":"90.96" + } + }, + { + "id":"edef5846-d098-410c-a605-4263a1ad0ca7", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T00:58:53.300Z", + "completed":"2017-12-11T00:58:53.300Z", + "new_balance":"3602.63", + "value":"-5.48" + } + }, + { + "id":"d197a71d-90ea-440d-a013-836baf39e81c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:23:37.358Z", + "completed":"2017-12-14T06:23:37.358Z", + "new_balance":"3650.50", + "value":"47.87" + } + }, + { + "id":"4a449ccc-fd04-42fe-90a7-aa420091c06d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:37:04.398Z", + "completed":"2017-12-14T06:37:04.398Z", + "new_balance":"3643.31", + "value":"-7.19" + } + }, + { + "id":"3495600e-19a6-42f9-b6f3-e219654962c5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:26:47.392Z", + "completed":"2017-12-14T15:26:47.392Z", + "new_balance":"3650.15", + "value":"6.84" + } + }, + { + "id":"fe4992e6-af74-477a-ad55-f037ea77d4a3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T00:12:25.120Z", + "completed":"2017-12-16T00:12:25.120Z", + "new_balance":"3599.93", + "value":"-50.22" + } + }, + { + "id":"aac10dea-5782-47d7-9938-7f2999d09d5a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T15:50:13.111Z", + "completed":"2017-12-16T15:50:13.111Z", + "new_balance":"3630.20", + "value":"30.27" + } + }, + { + "id":"4ae69bf6-499b-4e04-8236-cd0bcba1cd80", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T00:10:47.679Z", + "completed":"2017-12-21T00:10:47.679Z", + "new_balance":"3561.12", + "value":"-69.08" + } + }, + { + "id":"59bb2d02-1152-480c-854c-97e711ac36f5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T13:52:02.677Z", + "completed":"2017-12-21T13:52:02.677Z", + "new_balance":"3721.93", + "value":"160.81" + } + }, + { + "id":"b0ab007a-d28b-40fb-901f-aaa9951fef41", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T17:57:20.978Z", + "completed":"2017-12-21T17:57:20.978Z", + "new_balance":"4130.75", + "value":"408.82" + } + }, + { + "id":"ca267d2f-7261-4d57-bddb-466d2bb1abcf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T19:22:57.919Z", + "completed":"2017-12-21T19:22:57.919Z", + "new_balance":"4180.83", + "value":"50.08" + } + }, + { + "id":"ad913926-758c-490b-8a12-2390a0a8f2af", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T09:41:02.324Z", + "completed":"2017-12-30T09:41:02.324Z", + "new_balance":"4201.72", + "value":"20.89" + } + }, + { + "id":"e6b11bad-cd4b-478d-b1e2-87b9eeb485b9", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T19:11:44.607Z", + "completed":"2017-12-30T19:11:44.607Z", + "new_balance":"4231.99", + "value":"30.27" + } + }, + { + "id":"5148d2ce-93ee-48b2-aaad-f552e055236a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T00:03:23.083Z", + "completed":"2016-01-01T00:03:23.083Z", + "new_balance":"4815.85", + "value":"-34.43" + } + }, + { + "id":"8ae7d2fd-bdb5-4ad4-8763-4cff356d8aef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:36:36.252Z", + "completed":"2016-01-01T02:36:36.252Z", + "new_balance":"4781.42", + "value":"-34.43" + } + }, + { + "id":"6ba54a79-06f8-43f9-bf43-eb266ea68c5d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T09:54:31.972Z", + "completed":"2016-01-01T09:54:31.972Z", + "new_balance":"4734.52", + "value":"-46.90" + } + }, + { + "id":"88fdf05f-ec43-41c0-9ab3-e0de1d1c6e53", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T16:04:31.172Z", + "completed":"2016-01-01T16:04:31.172Z", + "new_balance":"4629.80", + "value":"-104.72" + } + }, + { + "id":"105e79a2-18f7-462e-9e58-de7592397e54", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T17:22:25.596Z", + "completed":"2016-01-05T17:22:25.596Z", + "new_balance":"4548.59", + "value":"-81.21" + } + }, + { + "id":"90076d15-3246-46e7-ae3e-5bfad2b88f4f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T20:33:53.794Z", + "completed":"2016-01-05T20:33:53.794Z", + "new_balance":"4481.14", + "value":"-67.45" + } + }, + { + "id":"65d53d36-fa3f-4f7b-abf0-8157281366aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T20:55:27.339Z", + "completed":"2016-01-08T20:55:27.339Z", + "new_balance":"4470.23", + "value":"-10.91" + } + }, + { + "id":"778c0b01-2ecf-4fec-9259-32988f8cb0bb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T12:03:18.070Z", + "completed":"2016-01-10T12:03:18.070Z", + "new_balance":"4423.77", + "value":"-46.46" + } + }, + { + "id":"8a5c6732-e654-4713-b4d7-c6f7f7d63cc5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T03:42:12.643Z", + "completed":"2016-01-11T03:42:12.643Z", + "new_balance":"4367.13", + "value":"-56.64" + } + }, + { + "id":"f255a8c9-e04e-4750-9292-e565da771e6c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T16:50:12.410Z", + "completed":"2016-01-12T16:50:12.410Z", + "new_balance":"4332.70", + "value":"-34.43" + } + }, + { + "id":"4fd187b8-e0d6-415a-be5d-f94253ee5ce9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T11:52:04.501Z", + "completed":"2016-01-13T11:52:04.501Z", + "new_balance":"4327.05", + "value":"-5.65" + } + }, + { + "id":"0552831e-d2da-4338-afc0-d18d747970cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T21:29:14.689Z", + "completed":"2016-01-13T21:29:14.689Z", + "new_balance":"4323.46", + "value":"-3.59" + } + }, + { + "id":"f5a69715-de67-4b2d-92ea-a147d12818d6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T01:27:01.591Z", + "completed":"2016-01-16T01:27:01.591Z", + "new_balance":"4240.37", + "value":"-83.09" + } + }, + { + "id":"c9fec6c6-2ddf-4a3d-9fe3-b0b3b820bf9e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T15:26:10.372Z", + "completed":"2016-01-19T15:26:10.372Z", + "new_balance":"4159.16", + "value":"-81.21" + } + }, + { + "id":"afb776ae-0535-4c8e-b7a0-bf4247954232", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T21:48:23.311Z", + "completed":"2016-01-19T21:48:23.311Z", + "new_balance":"4077.72", + "value":"-81.44" + } + }, + { + "id":"c5a1bba4-1605-451e-b581-68a10219ee7c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T03:32:25.154Z", + "completed":"2016-01-24T03:32:25.154Z", + "new_balance":"4050.27", + "value":"-27.45" + } + }, + { + "id":"cf0a89d2-33d1-4b41-93e6-a3a55b2de44a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T01:36:06.299Z", + "completed":"2016-01-27T01:36:06.299Z", + "new_balance":"4022.29", + "value":"-27.98" + } + }, + { + "id":"e7860770-b6d9-405b-8506-ba957c575039", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T15:16:31.788Z", + "completed":"2016-01-27T15:16:31.788Z", + "new_balance":"6372.50", + "value":"2350.21" + } + }, + { + "id":"1729d197-de2b-4210-bdea-32dba94eb6b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T12:57:54.960Z", + "completed":"2016-01-31T12:57:54.960Z", + "new_balance":"6055.29", + "value":"-317.21" + } + }, + { + "id":"788468e8-c9b4-4a9a-b5c2-8d0031b83e0d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:59:21.895Z", + "completed":"2016-02-01T02:59:21.895Z", + "new_balance":"6008.39", + "value":"-46.90" + } + }, + { + "id":"60f78fec-9697-418e-839b-d6211c6bda46", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T03:50:06.975Z", + "completed":"2016-02-01T03:50:06.975Z", + "new_balance":"5903.67", + "value":"-104.72" + } + }, + { + "id":"bc6805af-5c28-4d06-b018-c5a0901ffb5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T13:37:08.279Z", + "completed":"2016-02-01T13:37:08.279Z", + "new_balance":"5869.24", + "value":"-34.43" + } + }, + { + "id":"fae2ff0c-6c00-40b3-9f04-7f1389ccc37c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T21:28:09.182Z", + "completed":"2016-02-01T21:28:09.182Z", + "new_balance":"5834.81", + "value":"-34.43" + } + }, + { + "id":"c818b66b-b022-418c-8cbc-ada0921e74f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T14:35:57.132Z", + "completed":"2016-02-03T14:35:57.132Z", + "new_balance":"5828.09", + "value":"-6.72" + } + }, + { + "id":"8dd9dc2a-3ac0-4314-98c3-6c60d3f142f5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T22:24:20.586Z", + "completed":"2016-02-04T22:24:20.586Z", + "new_balance":"5746.88", + "value":"-81.21" + } + }, + { + "id":"5c15955b-a10f-4993-bfa7-c8221d3df3ab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T11:13:51.522Z", + "completed":"2016-02-06T11:13:51.522Z", + "new_balance":"5640.07", + "value":"-106.81" + } + }, + { + "id":"15e6a46d-4ed8-4e86-b7c4-07e0e4d295b8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T16:15:13.703Z", + "completed":"2016-02-06T16:15:13.703Z", + "new_balance":"5558.90", + "value":"-81.17" + } + }, + { + "id":"af4aebaf-bbb6-4b23-bfbc-f5f82a2ec09a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T05:43:34.395Z", + "completed":"2016-02-07T05:43:34.395Z", + "new_balance":"5530.87", + "value":"-28.03" + } + }, + { + "id":"f7030269-f6ff-48b9-9c32-8810e263c4b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T22:08:26.226Z", + "completed":"2016-02-08T22:08:26.226Z", + "new_balance":"5515.58", + "value":"-15.29" + } + }, + { + "id":"6808018f-3ac5-45a6-b581-b8f04802d441", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T11:13:31.933Z", + "completed":"2016-02-09T11:13:31.933Z", + "new_balance":"5472.63", + "value":"-42.95" + } + }, + { + "id":"ad44ffde-9a89-46ce-ae8a-11ddadffad55", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T10:26:34.805Z", + "completed":"2016-02-11T10:26:34.805Z", + "new_balance":"5445.90", + "value":"-26.73" + } + }, + { + "id":"a2fca76e-8d03-4d2c-bab9-8f834acd9f12", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T07:52:43.516Z", + "completed":"2016-02-13T07:52:43.516Z", + "new_balance":"5404.36", + "value":"-41.54" + } + }, + { + "id":"4e7c0341-42f6-4c70-864f-7ff0dc3436fa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T09:02:31.434Z", + "completed":"2016-02-17T09:02:31.434Z", + "new_balance":"5397.37", + "value":"-6.99" + } + }, + { + "id":"84a15d8e-8815-4fce-991c-f29cdfd0221e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T06:57:18.909Z", + "completed":"2016-02-19T06:57:18.909Z", + "new_balance":"5347.43", + "value":"-49.94" + } + }, + { + "id":"f9a46858-4660-421b-8fa0-c1bcfff9c44c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T04:11:16.825Z", + "completed":"2016-02-21T04:11:16.825Z", + "new_balance":"5266.22", + "value":"-81.21" + } + }, + { + "id":"8c382d86-5d4e-4eb0-a21a-4916999d0866", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T13:28:39.659Z", + "completed":"2016-02-24T13:28:39.659Z", + "new_balance":"5238.24", + "value":"-27.98" + } + }, + { + "id":"06306d81-44e6-4fbe-a44d-68dd15eaf098", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T09:46:59.263Z", + "completed":"2016-02-26T09:46:59.263Z", + "new_balance":"7588.45", + "value":"2350.21" + } + }, + { + "id":"8d0f52d0-bd41-4646-8107-ea34e35d0337", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T01:31:06.522Z", + "completed":"2016-03-01T01:31:06.522Z", + "new_balance":"7541.55", + "value":"-46.90" + } + }, + { + "id":"beebfe70-cbc5-4ae6-8650-587a135d585e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T04:12:16.613Z", + "completed":"2016-03-01T04:12:16.613Z", + "new_balance":"7507.12", + "value":"-34.43" + } + }, + { + "id":"c805bb3a-329c-4e05-88ec-f6f6a1bd6bd5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T13:46:59.328Z", + "completed":"2016-03-01T13:46:59.328Z", + "new_balance":"7402.40", + "value":"-104.72" + } + }, + { + "id":"6cb2e7ce-a4ef-4011-b2f9-136baaa8751a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T23:47:05.824Z", + "completed":"2016-03-01T23:47:05.824Z", + "new_balance":"7367.97", + "value":"-34.43" + } + }, + { + "id":"a06e6b65-a873-4fa7-ab50-912599c2c390", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T10:54:12.745Z", + "completed":"2016-03-09T10:54:12.745Z", + "new_balance":"7304.40", + "value":"-63.57" + } + }, + { + "id":"3f8c6f22-d5b8-4cfc-b7ed-abe3924b9f6a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T16:22:17.309Z", + "completed":"2016-03-09T16:22:17.309Z", + "new_balance":"7243.03", + "value":"-61.37" + } + }, + { + "id":"3c3fa631-ef8f-4b11-bbe8-dabf11d3e32a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T01:16:59.427Z", + "completed":"2016-03-17T01:16:59.427Z", + "new_balance":"7154.54", + "value":"-88.49" + } + }, + { + "id":"23045264-55db-442a-9800-a408175c380f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:17:20.769Z", + "completed":"2016-03-18T02:17:20.769Z", + "new_balance":"7109.07", + "value":"-45.47" + } + }, + { + "id":"df5fa8c4-35f3-4a91-a4f5-ae5cccf88a3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T09:11:30.469Z", + "completed":"2016-03-18T09:11:30.469Z", + "new_balance":"7027.28", + "value":"-81.79" + } + }, + { + "id":"509ee3da-4eab-4339-9f55-9229df5c0b4d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T17:25:27.880Z", + "completed":"2016-03-18T17:25:27.880Z", + "new_balance":"7020.51", + "value":"-6.77" + } + }, + { + "id":"02e8734c-4e15-4046-9054-9b4b2c0df352", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T17:36:51.545Z", + "completed":"2016-03-18T17:36:51.545Z", + "new_balance":"6980.87", + "value":"-39.64" + } + }, + { + "id":"bd8135a6-78cb-4131-a096-57ceb37ba59d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T01:28:59.859Z", + "completed":"2016-03-22T01:28:59.859Z", + "new_balance":"6876.68", + "value":"-104.19" + } + }, + { + "id":"85dc3d82-a3f3-4fa1-ba05-9668a986fa6e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T11:13:18.405Z", + "completed":"2016-03-29T11:13:18.405Z", + "new_balance":"6848.70", + "value":"-27.98" + } + }, + { + "id":"5c11b310-faad-49dd-886d-444d3d1aac03", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T18:57:07.365Z", + "completed":"2016-03-29T18:57:07.365Z", + "new_balance":"9198.91", + "value":"2350.21" + } + }, + { + "id":"faf8a0f3-d335-4a41-8b00-f8d29b958c68", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T10:38:01.671Z", + "completed":"2016-03-31T10:38:01.671Z", + "new_balance":"8881.70", + "value":"-317.21" + } + }, + { + "id":"77e2943f-2f3a-4c7a-b91d-54e505c81557", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T02:36:09.604Z", + "completed":"2016-04-01T02:36:09.604Z", + "new_balance":"8834.80", + "value":"-46.90" + } + }, + { + "id":"321bb41c-2541-4548-902c-e98568ba4e71", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T13:13:26.421Z", + "completed":"2016-04-01T13:13:26.421Z", + "new_balance":"8730.08", + "value":"-104.72" + } + }, + { + "id":"14e9dd51-186e-40ab-9142-afd1e95275fc", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T15:09:28.669Z", + "completed":"2016-04-01T15:09:28.669Z", + "new_balance":"8695.65", + "value":"-34.43" + } + }, + { + "id":"c2937634-e63e-4f33-870b-210f96617211", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T18:13:34.905Z", + "completed":"2016-04-01T18:13:34.905Z", + "new_balance":"8661.22", + "value":"-34.43" + } + }, + { + "id":"95644f21-af62-4296-a3b6-7b4ed40323b8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T07:03:27.449Z", + "completed":"2016-04-02T07:03:27.449Z", + "new_balance":"8566.89", + "value":"-94.33" + } + }, + { + "id":"04decd37-0649-4dd2-9001-8d6578d18ded", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T01:04:35.459Z", + "completed":"2016-04-05T01:04:35.459Z", + "new_balance":"8554.96", + "value":"-11.93" + } + }, + { + "id":"5f1d399e-b9d3-4349-ac84-237c1bb4ff9e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T07:05:01.822Z", + "completed":"2016-04-05T07:05:01.822Z", + "new_balance":"8520.53", + "value":"-34.43" + } + }, + { + "id":"84850eea-d6bc-41ed-aa7b-049fbc2f9192", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T09:43:22.537Z", + "completed":"2016-04-05T09:43:22.537Z", + "new_balance":"8513.95", + "value":"-6.58" + } + }, + { + "id":"03f31504-c834-4fb0-a0c0-f99c62d40d40", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T15:56:11.654Z", + "completed":"2016-04-05T15:56:11.654Z", + "new_balance":"8509.31", + "value":"-4.64" + } + }, + { + "id":"4555e2b4-4207-4f53-b082-4ecbb16302cd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T16:18:59.612Z", + "completed":"2016-04-05T16:18:59.612Z", + "new_balance":"8428.10", + "value":"-81.21" + } + }, + { + "id":"df47d9eb-9a81-43bd-be8e-e10b3ac3598f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T19:48:29.183Z", + "completed":"2016-04-05T19:48:29.183Z", + "new_balance":"8386.67", + "value":"-41.43" + } + }, + { + "id":"78553326-5d50-4aed-b6cd-8314a04a0c74", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T21:46:54.036Z", + "completed":"2016-04-05T21:46:54.036Z", + "new_balance":"8331.83", + "value":"-54.84" + } + }, + { + "id":"106478c8-cb02-4351-a54e-8b8ac7f314fa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T01:49:21.249Z", + "completed":"2016-04-08T01:49:21.249Z", + "new_balance":"8233.91", + "value":"-97.92" + } + }, + { + "id":"3da2f77e-e925-44e9-bdd6-0402d78c7c24", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T13:30:00.724Z", + "completed":"2016-04-10T13:30:00.724Z", + "new_balance":"8177.78", + "value":"-56.13" + } + }, + { + "id":"0e6e13f7-82e7-429d-814b-5db14825a67b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T07:10:30.101Z", + "completed":"2016-04-11T07:10:30.101Z", + "new_balance":"8150.33", + "value":"-27.45" + } + }, + { + "id":"1226acc2-3d89-4f6b-9db8-9051355004e8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T10:36:27.921Z", + "completed":"2016-04-11T10:36:27.921Z", + "new_balance":"8069.12", + "value":"-81.21" + } + }, + { + "id":"22c3e49b-038b-4583-b403-386b2b8d63e3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T00:13:58.049Z", + "completed":"2016-04-13T00:13:58.049Z", + "new_balance":"8041.14", + "value":"-27.98" + } + }, + { + "id":"7e45c090-af24-4436-9319-d2434a2a968b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T16:51:43.769Z", + "completed":"2016-04-18T16:51:43.769Z", + "new_balance":"10391.35", + "value":"2350.21" + } + }, + { + "id":"6ccdfd3b-b33b-496e-9d6e-349a2e0c96d0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T23:20:22.661Z", + "completed":"2016-04-25T23:20:22.661Z", + "new_balance":"10074.14", + "value":"-317.21" + } + }, + { + "id":"be6f2c5d-965b-4bb7-a26e-8c1c60d4f617", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T00:36:00.080Z", + "completed":"2016-05-02T00:36:00.080Z", + "new_balance":"9969.42", + "value":"-104.72" + } + }, + { + "id":"62d514e2-b0bb-4404-a560-eae2edee45a6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T08:07:48.069Z", + "completed":"2016-05-02T08:07:48.069Z", + "new_balance":"9934.99", + "value":"-34.43" + } + }, + { + "id":"c1c05ee4-12e2-44db-b412-082eaec4de52", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T10:32:32.658Z", + "completed":"2016-05-02T10:32:32.658Z", + "new_balance":"9900.56", + "value":"-34.43" + } + }, + { + "id":"fbb63757-2361-4269-af56-63a7536c49d8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T20:47:04.133Z", + "completed":"2016-05-02T20:47:04.133Z", + "new_balance":"9853.66", + "value":"-46.90" + } + }, + { + "id":"915703f5-bbaa-4662-9fa7-723dc3b63ac4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T00:15:32.807Z", + "completed":"2016-05-04T00:15:32.807Z", + "new_balance":"9847.08", + "value":"-6.58" + } + }, + { + "id":"5dd94ec7-fae0-4813-8171-e1778f988129", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T22:54:55.394Z", + "completed":"2016-05-04T22:54:55.394Z", + "new_balance":"9765.87", + "value":"-81.21" + } + }, + { + "id":"3fc3df5c-32b8-467d-b775-f4ef44f154d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T16:29:50.736Z", + "completed":"2016-05-06T16:29:50.736Z", + "new_balance":"9685.66", + "value":"-80.21" + } + }, + { + "id":"4d2f2d02-996a-4f14-b148-0cfb8c89396e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T04:59:53.027Z", + "completed":"2016-05-07T04:59:53.027Z", + "new_balance":"9651.15", + "value":"-34.51" + } + }, + { + "id":"c317be8f-0641-486a-af13-4e140b8cbd3b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T08:48:30.897Z", + "completed":"2016-05-07T08:48:30.897Z", + "new_balance":"9556.82", + "value":"-94.33" + } + }, + { + "id":"362973f9-c5d6-41c4-bc71-ca4aa497b4b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T00:17:24.925Z", + "completed":"2016-05-09T00:17:24.925Z", + "new_balance":"9544.89", + "value":"-11.93" + } + }, + { + "id":"a4beace7-f4a1-421f-a336-aad2d553cf92", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T21:59:08.472Z", + "completed":"2016-05-09T21:59:08.472Z", + "new_balance":"9501.94", + "value":"-42.95" + } + }, + { + "id":"90a4ede4-3d87-4b05-a286-6e9f477b6d35", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T00:42:22.139Z", + "completed":"2016-05-13T00:42:22.139Z", + "new_balance":"9467.43", + "value":"-34.51" + } + }, + { + "id":"6386531c-de9f-4244-920f-c1dcb6d0dea1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T18:53:21.162Z", + "completed":"2016-05-13T18:53:21.162Z", + "new_balance":"9439.24", + "value":"-28.19" + } + }, + { + "id":"8c015a7f-db59-450b-9581-3318d4889635", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T21:00:16.669Z", + "completed":"2016-05-13T21:00:16.669Z", + "new_balance":"9432.66", + "value":"-6.58" + } + }, + { + "id":"ceb01dab-b20c-4504-b376-dd696524a33b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T01:48:59.071Z", + "completed":"2016-05-14T01:48:59.071Z", + "new_balance":"9351.45", + "value":"-81.21" + } + }, + { + "id":"a3c88a6a-3570-49ec-9b48-47789562fb2c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T19:02:37.802Z", + "completed":"2016-05-14T19:02:37.802Z", + "new_balance":"9286.22", + "value":"-65.23" + } + }, + { + "id":"d89672ba-9394-4402-bb1a-cd02e422fe49", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T13:13:12.916Z", + "completed":"2016-05-15T13:13:12.916Z", + "new_balance":"9258.24", + "value":"-27.98" + } + }, + { + "id":"6a062e8f-b147-408d-a35c-88ac9979a83a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T05:22:25.627Z", + "completed":"2016-05-30T05:22:25.627Z", + "new_balance":"8941.03", + "value":"-317.21" + } + }, + { + "id":"146cf522-b7a5-4bc3-b86b-63c5eaa9ac6c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T07:48:18.313Z", + "completed":"2016-05-30T07:48:18.313Z", + "new_balance":"11291.24", + "value":"2350.21" + } + }, + { + "id":"c65e6288-b3a1-402e-a75c-cd9a472ecd52", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T00:14:57.490Z", + "completed":"2016-06-01T00:14:57.490Z", + "new_balance":"11256.81", + "value":"-34.43" + } + }, + { + "id":"6393a83a-440c-4524-8474-fb97fbb76e43", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T06:46:31.517Z", + "completed":"2016-06-01T06:46:31.517Z", + "new_balance":"11152.09", + "value":"-104.72" + } + }, + { + "id":"c98f2e8d-38e9-40fa-89c8-34cf15724f1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T14:08:43.735Z", + "completed":"2016-06-01T14:08:43.735Z", + "new_balance":"11105.19", + "value":"-46.90" + } + }, + { + "id":"2c833ceb-8485-4fad-a0ad-ff8d4a41e89c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:46:02.741Z", + "completed":"2016-06-01T15:46:02.741Z", + "new_balance":"11070.76", + "value":"-34.43" + } + }, + { + "id":"6840673e-77b2-4a34-93f2-328fbc5fcf70", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T08:55:32.839Z", + "completed":"2016-06-04T08:55:32.839Z", + "new_balance":"11007.19", + "value":"-63.57" + } + }, + { + "id":"130c1174-58f4-4536-8a55-c4d956bcc84f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:07:46.856Z", + "completed":"2016-06-04T14:07:46.856Z", + "new_balance":"10945.82", + "value":"-61.37" + } + }, + { + "id":"ed62b2ff-4c18-4615-af40-bf517abb9978", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T04:28:43.326Z", + "completed":"2016-06-11T04:28:43.326Z", + "new_balance":"10900.35", + "value":"-45.47" + } + }, + { + "id":"2171986c-04fb-4868-87aa-4edd3b059a02", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T08:34:10.327Z", + "completed":"2016-06-11T08:34:10.327Z", + "new_balance":"10811.86", + "value":"-88.49" + } + }, + { + "id":"fb062452-8462-49dc-a99e-227c2e404318", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T14:30:47.489Z", + "completed":"2016-06-11T14:30:47.489Z", + "new_balance":"10730.07", + "value":"-81.79" + } + }, + { + "id":"5a7b9602-0886-41a1-b529-49784b24ece8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T02:45:23.299Z", + "completed":"2016-06-12T02:45:23.299Z", + "new_balance":"10690.43", + "value":"-39.64" + } + }, + { + "id":"150d7059-6eaa-4ce3-b777-c1b770c9ead1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T23:26:09.363Z", + "completed":"2016-06-12T23:26:09.363Z", + "new_balance":"10683.66", + "value":"-6.77" + } + }, + { + "id":"309734fb-ee43-4110-a912-471a9b543f79", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:28:54.468Z", + "completed":"2016-06-16T00:28:54.468Z", + "new_balance":"10579.47", + "value":"-104.19" + } + }, + { + "id":"69d847bd-9ac9-479e-aa41-8b3b6d317c08", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T08:21:51.263Z", + "completed":"2016-06-29T08:21:51.263Z", + "new_balance":"10551.49", + "value":"-27.98" + } + }, + { + "id":"764dbb4c-0c78-4f58-98af-57afbee97e1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T13:37:44.962Z", + "completed":"2016-06-30T13:37:44.962Z", + "new_balance":"10234.28", + "value":"-317.21" + } + }, + { + "id":"7d45a894-acf2-4645-9802-026240d4af4c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T18:59:37.763Z", + "completed":"2016-06-30T18:59:37.763Z", + "new_balance":"12584.49", + "value":"2350.21" + } + }, + { + "id":"1a98e3c1-bb83-4a06-b9e4-e1ae64766178", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T09:26:39.901Z", + "completed":"2016-07-01T09:26:39.901Z", + "new_balance":"12550.06", + "value":"-34.43" + } + }, + { + "id":"e3dcdb1e-bffe-494c-ad79-3cf503e084c2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T12:25:24.576Z", + "completed":"2016-07-01T12:25:24.576Z", + "new_balance":"12515.63", + "value":"-34.43" + } + }, + { + "id":"379c2294-c64e-44aa-9e57-b92369d3f75d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T22:39:59.840Z", + "completed":"2016-07-01T22:39:59.840Z", + "new_balance":"12410.91", + "value":"-104.72" + } + }, + { + "id":"b87576b5-4684-4336-8a42-270ff5119211", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T23:34:04.792Z", + "completed":"2016-07-01T23:34:04.792Z", + "new_balance":"12364.01", + "value":"-46.90" + } + }, + { + "id":"e35c50e3-4857-471b-b41e-227ee897d444", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T04:24:01.555Z", + "completed":"2016-07-05T04:24:01.555Z", + "new_balance":"12296.56", + "value":"-67.45" + } + }, + { + "id":"79f22738-2e00-47e7-af3c-2b2601a53349", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T05:22:09.202Z", + "completed":"2016-07-05T05:22:09.202Z", + "new_balance":"12215.35", + "value":"-81.21" + } + }, + { + "id":"c5220f16-427d-4b5f-9208-6a96ce0358b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T07:01:37.438Z", + "completed":"2016-07-08T07:01:37.438Z", + "new_balance":"12204.44", + "value":"-10.91" + } + }, + { + "id":"15efe10d-1ed4-4998-8ef6-a3ec85f4c19d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T22:30:39.893Z", + "completed":"2016-07-10T22:30:39.893Z", + "new_balance":"12157.98", + "value":"-46.46" + } + }, + { + "id":"86f5767c-3ec4-489f-83d8-1fe97300668d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T16:07:29.372Z", + "completed":"2016-07-12T16:07:29.372Z", + "new_balance":"12123.55", + "value":"-34.43" + } + }, + { + "id":"bdb2e444-bbf2-475a-adca-39152dad0763", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T22:08:52.379Z", + "completed":"2016-07-12T22:08:52.379Z", + "new_balance":"12066.91", + "value":"-56.64" + } + }, + { + "id":"4036d058-53e8-4d48-98c4-916d4e6289cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T10:19:56.038Z", + "completed":"2016-07-13T10:19:56.038Z", + "new_balance":"12063.32", + "value":"-3.59" + } + }, + { + "id":"abd35988-d1e9-4e6a-9ca3-ee79aba7b5cd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T12:08:35.552Z", + "completed":"2016-07-13T12:08:35.552Z", + "new_balance":"12057.67", + "value":"-5.65" + } + }, + { + "id":"05b2e819-d0d9-46ba-8572-dbfef4f1d674", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T11:01:52.818Z", + "completed":"2016-07-18T11:01:52.818Z", + "new_balance":"11974.58", + "value":"-83.09" + } + }, + { + "id":"bbf76b8e-ae37-48c6-9fe5-22ae40eeaebe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T20:03:56.008Z", + "completed":"2016-07-20T20:03:56.008Z", + "new_balance":"11893.14", + "value":"-81.44" + } + }, + { + "id":"79f10345-9c22-47a1-afd8-4b569b51c8c1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T20:23:12.212Z", + "completed":"2016-07-20T20:23:12.212Z", + "new_balance":"11811.93", + "value":"-81.21" + } + }, + { + "id":"78dd3985-c02d-4604-8c5b-109c94e13a25", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T15:43:52.251Z", + "completed":"2016-07-24T15:43:52.251Z", + "new_balance":"11784.48", + "value":"-27.45" + } + }, + { + "id":"3df40fcf-7b5b-47f7-b838-13ef4ae2ab89", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T12:22:20.386Z", + "completed":"2016-07-29T12:22:20.386Z", + "new_balance":"11756.50", + "value":"-27.98" + } + }, + { + "id":"4202c759-a5f7-42a8-b13f-37fdcc990c1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T14:13:21.155Z", + "completed":"2016-07-29T14:13:21.155Z", + "new_balance":"14106.71", + "value":"2350.21" + } + }, + { + "id":"fc7c8cbc-71d2-400e-a9c9-80c6d33c7705", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T20:39:01.697Z", + "completed":"2016-07-30T20:39:01.697Z", + "new_balance":"13789.50", + "value":"-317.21" + } + }, + { + "id":"fc9e2c0d-5b2b-4c8c-bf86-6609e64869d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T04:56:39.800Z", + "completed":"2016-08-01T04:56:39.800Z", + "new_balance":"13742.60", + "value":"-46.90" + } + }, + { + "id":"f42c5705-da5e-444e-b1e2-5bb5bdb1e9a8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T18:26:32.800Z", + "completed":"2016-08-01T18:26:32.800Z", + "new_balance":"13637.88", + "value":"-104.72" + } + }, + { + "id":"4232553e-3a9c-462b-a606-5727faaa5ab6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T20:58:22.105Z", + "completed":"2016-08-01T20:58:22.105Z", + "new_balance":"13603.45", + "value":"-34.43" + } + }, + { + "id":"c13ab98a-d68b-4085-8ab4-f08851d4d26b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T23:35:58.961Z", + "completed":"2016-08-01T23:35:58.961Z", + "new_balance":"13569.02", + "value":"-34.43" + } + }, + { + "id":"76d9ccfc-f971-45f7-a578-ca6f413bf5ba", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T11:11:47.829Z", + "completed":"2016-08-03T11:11:47.829Z", + "new_balance":"13562.30", + "value":"-6.72" + } + }, + { + "id":"1ea73d5e-887e-45a5-a7ff-46ea3c9d45b0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T19:36:30.710Z", + "completed":"2016-08-04T19:36:30.710Z", + "new_balance":"13481.09", + "value":"-81.21" + } + }, + { + "id":"2bfb0594-7d0f-43b9-8e2d-2a9e0a405145", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:16:34.905Z", + "completed":"2016-08-08T03:16:34.905Z", + "new_balance":"13465.80", + "value":"-15.29" + } + }, + { + "id":"51bf3fc1-b954-4fa3-9238-caccea41fda2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T13:39:55.121Z", + "completed":"2016-08-08T13:39:55.121Z", + "new_balance":"13437.77", + "value":"-28.03" + } + }, + { + "id":"d85075fb-1c33-4932-bcba-6665378819cc", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T15:48:24.029Z", + "completed":"2016-08-08T15:48:24.029Z", + "new_balance":"13356.60", + "value":"-81.17" + } + }, + { + "id":"0b935e5c-f548-4776-a01e-4b11a2e8f8d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T16:22:34.528Z", + "completed":"2016-08-08T16:22:34.528Z", + "new_balance":"13249.79", + "value":"-106.81" + } + }, + { + "id":"f5c67897-87f6-4374-adbf-af8cf35bc888", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T14:06:04.709Z", + "completed":"2016-08-09T14:06:04.709Z", + "new_balance":"13206.84", + "value":"-42.95" + } + }, + { + "id":"6337e55a-bcb4-47b3-bebb-f55b1c58230a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T15:45:10.892Z", + "completed":"2016-08-14T15:45:10.892Z", + "new_balance":"13180.11", + "value":"-26.73" + } + }, + { + "id":"a56fa3c8-1d6f-4a2a-ba76-d1b2c921414e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T17:03:35.872Z", + "completed":"2016-08-15T17:03:35.872Z", + "new_balance":"13138.57", + "value":"-41.54" + } + }, + { + "id":"416731c9-26e1-4906-8be2-934c60b105a1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T23:28:45.582Z", + "completed":"2016-08-19T23:28:45.582Z", + "new_balance":"13131.58", + "value":"-6.99" + } + }, + { + "id":"bd306b4d-4cdb-44ba-9cd6-05b4db6f7f2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T05:00:05.516Z", + "completed":"2016-08-22T05:00:05.516Z", + "new_balance":"13081.64", + "value":"-49.94" + } + }, + { + "id":"6e5ea8b3-a258-4f8f-8372-5d05ca6f8957", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T23:01:25.306Z", + "completed":"2016-08-26T23:01:25.306Z", + "new_balance":"13000.43", + "value":"-81.21" + } + }, + { + "id":"77cd09e7-29ef-4150-b9c5-60103a7dae58", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T07:20:53.640Z", + "completed":"2016-08-28T07:20:53.640Z", + "new_balance":"12683.22", + "value":"-317.21" + } + }, + { + "id":"f73c5034-0c48-41e6-bd5f-81111e7d974d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T04:04:06.937Z", + "completed":"2016-08-29T04:04:06.937Z", + "new_balance":"15033.43", + "value":"2350.21" + } + }, + { + "id":"9d49d7f0-a524-42b4-a7be-d1cb26dafff8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T12:31:23.744Z", + "completed":"2016-08-29T12:31:23.744Z", + "new_balance":"15005.45", + "value":"-27.98" + } + }, + { + "id":"5e586710-5f38-4387-82dc-df966c939728", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T21:53:36.394Z", + "completed":"2016-08-30T21:53:36.394Z", + "new_balance":"14688.24", + "value":"-317.21" + } + }, + { + "id":"c9a1b1fc-ba42-4c07-8076-f854bfc3f44a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T01:43:43.425Z", + "completed":"2016-09-01T01:43:43.425Z", + "new_balance":"14583.52", + "value":"-104.72" + } + }, + { + "id":"d32001bc-2b0e-4e3f-803e-3d374e9f13e7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:36:06.102Z", + "completed":"2016-09-01T06:36:06.102Z", + "new_balance":"14549.09", + "value":"-34.43" + } + }, + { + "id":"745d4f16-7e29-4843-a956-9e7ad50d650a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T10:03:57.581Z", + "completed":"2016-09-01T10:03:57.581Z", + "new_balance":"14502.19", + "value":"-46.90" + } + }, + { + "id":"f2d2d91c-5aa8-4483-afbb-a6b223d60c4d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T23:00:33.251Z", + "completed":"2016-09-01T23:00:33.251Z", + "new_balance":"14467.76", + "value":"-34.43" + } + }, + { + "id":"e9bf9504-e722-473a-b6c2-85ce4255bb93", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T17:54:30.013Z", + "completed":"2016-09-09T17:54:30.013Z", + "new_balance":"14404.19", + "value":"-63.57" + } + }, + { + "id":"3f6c6cb1-a49a-4065-a81e-7d2713637820", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T18:44:39.360Z", + "completed":"2016-09-09T18:44:39.360Z", + "new_balance":"14342.82", + "value":"-61.37" + } + }, + { + "id":"436d74bb-b779-4fda-84aa-068c17cc06aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T04:12:19.054Z", + "completed":"2016-09-17T04:12:19.054Z", + "new_balance":"14254.33", + "value":"-88.49" + } + }, + { + "id":"a6b15a41-ac23-42e4-a85b-1dcfa287281e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T01:46:29.562Z", + "completed":"2016-09-18T01:46:29.562Z", + "new_balance":"14214.69", + "value":"-39.64" + } + }, + { + "id":"87c719de-6c76-484d-89cc-752c421eda01", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T03:15:48.016Z", + "completed":"2016-09-18T03:15:48.016Z", + "new_balance":"14132.90", + "value":"-81.79" + } + }, + { + "id":"918c3e2a-057a-4ed7-8250-a611d40db583", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T07:54:11.420Z", + "completed":"2016-09-18T07:54:11.420Z", + "new_balance":"14126.13", + "value":"-6.77" + } + }, + { + "id":"b3a1dbe9-65ab-499d-ada2-6302e6523f8f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T17:11:14.752Z", + "completed":"2016-09-18T17:11:14.752Z", + "new_balance":"14080.66", + "value":"-45.47" + } + }, + { + "id":"6a16277c-b3e7-444c-8932-b741e72ecafb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T22:19:36.101Z", + "completed":"2016-09-22T22:19:36.101Z", + "new_balance":"13976.47", + "value":"-104.19" + } + }, + { + "id":"17033a26-613d-4d27-a797-65c87c966fc5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T07:16:47.914Z", + "completed":"2016-09-29T07:16:47.914Z", + "new_balance":"16326.68", + "value":"2350.21" + } + }, + { + "id":"fefced95-ae7d-4a85-badb-ee35fc1898cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T11:30:58.731Z", + "completed":"2016-09-29T11:30:58.731Z", + "new_balance":"16298.70", + "value":"-27.98" + } + }, + { + "id":"8323e1e0-da9a-4b4a-b4a7-d818aea03fe3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T07:30:22.086Z", + "completed":"2016-09-30T07:30:22.086Z", + "new_balance":"15981.49", + "value":"-317.21" + } + }, + { + "id":"74306cfd-a729-4262-9209-c411a12a88c8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T06:59:30.093Z", + "completed":"2016-10-01T06:59:30.093Z", + "new_balance":"15947.06", + "value":"-34.43" + } + }, + { + "id":"63597b46-35d9-440e-975a-57c5deffef60", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T07:01:50.943Z", + "completed":"2016-10-01T07:01:50.943Z", + "new_balance":"15842.34", + "value":"-104.72" + } + }, + { + "id":"1411503e-7b0f-470f-a7de-c57a504cf922", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T11:46:38.126Z", + "completed":"2016-10-01T11:46:38.126Z", + "new_balance":"15795.44", + "value":"-46.90" + } + }, + { + "id":"7072d2aa-53d5-4f42-9ae7-cec5e83cc30b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T19:57:39.929Z", + "completed":"2016-10-01T19:57:39.929Z", + "new_balance":"15761.01", + "value":"-34.43" + } + }, + { + "id":"8430de07-0ddd-4d2b-9772-c486273fa2a8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T01:24:02.196Z", + "completed":"2016-10-02T01:24:02.196Z", + "new_balance":"15666.68", + "value":"-94.33" + } + }, + { + "id":"7b85a535-8cda-4018-86e7-a58884c963b7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T00:30:07.111Z", + "completed":"2016-10-05T00:30:07.111Z", + "new_balance":"15660.10", + "value":"-6.58" + } + }, + { + "id":"473b6385-97dd-4323-b628-3d65c9679c3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T09:28:15.140Z", + "completed":"2016-10-05T09:28:15.140Z", + "new_balance":"15605.26", + "value":"-54.84" + } + }, + { + "id":"03da29c1-fb19-4805-b068-7f3212f0945a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T11:26:02.237Z", + "completed":"2016-10-05T11:26:02.237Z", + "new_balance":"15563.83", + "value":"-41.43" + } + }, + { + "id":"584aafd1-6b38-4558-8b7b-66f30bcd4f48", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T12:39:23.381Z", + "completed":"2016-10-05T12:39:23.381Z", + "new_balance":"15551.90", + "value":"-11.93" + } + }, + { + "id":"ecb3919e-0207-45b0-a461-b42c155181b4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T12:59:41.281Z", + "completed":"2016-10-05T12:59:41.281Z", + "new_balance":"15470.69", + "value":"-81.21" + } + }, + { + "id":"4a0134b6-6829-403a-b8e0-2f4e91c39693", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T15:23:54.295Z", + "completed":"2016-10-05T15:23:54.295Z", + "new_balance":"15436.26", + "value":"-34.43" + } + }, + { + "id":"1c2b6133-0848-4af5-9117-9f4a7e2b905f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T17:59:53.292Z", + "completed":"2016-10-05T17:59:53.292Z", + "new_balance":"15431.62", + "value":"-4.64" + } + }, + { + "id":"576f837a-448d-4eaa-82ec-8ddebd8bda31", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T02:01:43.613Z", + "completed":"2016-10-09T02:01:43.613Z", + "new_balance":"15333.70", + "value":"-97.92" + } + }, + { + "id":"948cfee2-6980-4cf8-b6c3-2379b3c0b094", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T13:00:10.847Z", + "completed":"2016-10-11T13:00:10.847Z", + "new_balance":"15277.57", + "value":"-56.13" + } + }, + { + "id":"4c36fd98-3a7c-4f7b-b26a-50dca6eec0da", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T06:06:34.660Z", + "completed":"2016-10-12T06:06:34.660Z", + "new_balance":"15250.12", + "value":"-27.45" + } + }, + { + "id":"fa7349d2-7ab8-4fbc-85e0-f63d39356e1c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T14:54:42.673Z", + "completed":"2016-10-12T14:54:42.673Z", + "new_balance":"15168.91", + "value":"-81.21" + } + }, + { + "id":"714d60f3-23e3-4aca-974d-a2685f63c336", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T03:56:55.056Z", + "completed":"2016-10-20T03:56:55.056Z", + "new_balance":"15140.93", + "value":"-27.98" + } + }, + { + "id":"75909b50-cabf-401c-b13f-124b2b422317", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T13:55:04.925Z", + "completed":"2016-10-29T13:55:04.925Z", + "new_balance":"17491.14", + "value":"2350.21" + } + }, + { + "id":"d356872c-b058-4c06-8d63-23ac43d7fad5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:44:27.160Z", + "completed":"2016-10-30T05:44:27.160Z", + "new_balance":"17173.93", + "value":"-317.21" + } + }, + { + "id":"c059fc99-0a4b-4c6d-a865-3c544048fbb8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T08:21:30.728Z", + "completed":"2016-11-02T08:21:30.728Z", + "new_balance":"17139.50", + "value":"-34.43" + } + }, + { + "id":"a8baba6e-e336-4f44-9f47-9106c60a5560", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T11:11:24.792Z", + "completed":"2016-11-02T11:11:24.792Z", + "new_balance":"17105.07", + "value":"-34.43" + } + }, + { + "id":"0ab47113-4934-499d-b745-cb4fb799332c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T13:38:45.384Z", + "completed":"2016-11-02T13:38:45.384Z", + "new_balance":"17000.35", + "value":"-104.72" + } + }, + { + "id":"bb539c4c-5d62-400a-a133-f8a4ef9c6cb7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T20:55:27.814Z", + "completed":"2016-11-02T20:55:27.814Z", + "new_balance":"16953.45", + "value":"-46.90" + } + }, + { + "id":"3a1e8f9e-da76-477d-ab0d-38af9df91b04", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T19:05:23.288Z", + "completed":"2016-11-04T19:05:23.288Z", + "new_balance":"16946.87", + "value":"-6.58" + } + }, + { + "id":"76708b86-b778-4a1e-bf60-e9df2dd011ca", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T23:50:15.521Z", + "completed":"2016-11-04T23:50:15.521Z", + "new_balance":"16865.66", + "value":"-81.21" + } + }, + { + "id":"e89abc81-7b3b-41e4-8dc0-c18702624ddb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:25:47.049Z", + "completed":"2016-11-06T13:25:47.049Z", + "new_balance":"16785.45", + "value":"-80.21" + } + }, + { + "id":"9b606102-488c-43b7-81d2-897bdda61cb9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T04:29:52.742Z", + "completed":"2016-11-07T04:29:52.742Z", + "new_balance":"16750.94", + "value":"-34.51" + } + }, + { + "id":"81cdc6cc-db15-4116-91fa-94e03dee2761", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T09:24:42.137Z", + "completed":"2016-11-07T09:24:42.137Z", + "new_balance":"16656.61", + "value":"-94.33" + } + }, + { + "id":"b1d193c1-aeae-413a-a7cd-bb1b04f29cec", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T05:21:01.671Z", + "completed":"2016-11-09T05:21:01.671Z", + "new_balance":"16613.66", + "value":"-42.95" + } + }, + { + "id":"b6deb1ee-c018-4f9a-b8e9-ef20b3c60451", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T06:59:30.846Z", + "completed":"2016-11-09T06:59:30.846Z", + "new_balance":"16601.73", + "value":"-11.93" + } + }, + { + "id":"f3c2f21e-84c2-40bf-b0ec-34f69ea01217", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T06:47:22.531Z", + "completed":"2016-11-13T06:47:22.531Z", + "new_balance":"16573.54", + "value":"-28.19" + } + }, + { + "id":"e4929297-640b-4c37-a9d5-83ed1dca783a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T12:00:22.469Z", + "completed":"2016-11-13T12:00:22.469Z", + "new_balance":"16566.96", + "value":"-6.58" + } + }, + { + "id":"92f2d412-a8f6-4cce-94b3-e3ebe794b006", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T12:23:57.595Z", + "completed":"2016-11-13T12:23:57.595Z", + "new_balance":"16532.45", + "value":"-34.51" + } + }, + { + "id":"9ff87497-2966-4190-91c8-135141a9b6c9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T04:39:11.300Z", + "completed":"2016-11-14T04:39:11.300Z", + "new_balance":"16451.24", + "value":"-81.21" + } + }, + { + "id":"5c9b2012-fa6e-4817-aba0-826877299558", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T10:47:38.686Z", + "completed":"2016-11-14T10:47:38.686Z", + "new_balance":"16386.01", + "value":"-65.23" + } + }, + { + "id":"babe3de5-f8a0-427a-beab-ad4fe2aca9ea", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T23:38:31.591Z", + "completed":"2016-11-15T23:38:31.591Z", + "new_balance":"16358.03", + "value":"-27.98" + } + }, + { + "id":"ea767c83-45cd-4448-b119-c1c181526b67", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T00:39:15.055Z", + "completed":"2016-11-30T00:39:15.055Z", + "new_balance":"16040.82", + "value":"-317.21" + } + }, + { + "id":"3ff68542-6878-4060-b349-37d29cf6b6ee", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T07:46:25.432Z", + "completed":"2016-11-30T07:46:25.432Z", + "new_balance":"18391.03", + "value":"2350.21" + } + }, + { + "id":"21150264-e1e1-4add-8699-8fd1e72b19a7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T00:01:45.033Z", + "completed":"2016-12-01T00:01:45.033Z", + "new_balance":"18286.31", + "value":"-104.72" + } + }, + { + "id":"989f30a9-cd7e-4ddf-805f-5c302062da41", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T16:52:52.287Z", + "completed":"2016-12-01T16:52:52.287Z", + "new_balance":"18251.88", + "value":"-34.43" + } + }, + { + "id":"73742715-1506-4246-aefe-9716fd9d5cef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T19:27:02.406Z", + "completed":"2016-12-01T19:27:02.406Z", + "new_balance":"18204.98", + "value":"-46.90" + } + }, + { + "id":"76c779c5-7128-43f8-9e54-a14615bacc01", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T20:54:38.553Z", + "completed":"2016-12-01T20:54:38.553Z", + "new_balance":"18170.55", + "value":"-34.43" + } + }, + { + "id":"d385f3d5-4656-478b-803a-aa29197ad27d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T14:34:40.861Z", + "completed":"2016-12-04T14:34:40.861Z", + "new_balance":"18106.98", + "value":"-63.57" + } + }, + { + "id":"6dd4d50c-8a81-4a1e-ba69-9d0131ff4952", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T19:37:56.263Z", + "completed":"2016-12-04T19:37:56.263Z", + "new_balance":"18045.61", + "value":"-61.37" + } + }, + { + "id":"dc5f0037-68d4-4753-be2f-e590988a1af9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T08:34:17.809Z", + "completed":"2016-12-11T08:34:17.809Z", + "new_balance":"17957.12", + "value":"-88.49" + } + }, + { + "id":"a60b192e-acf2-402a-bed9-2aeb4d00c045", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T19:32:08.207Z", + "completed":"2016-12-11T19:32:08.207Z", + "new_balance":"17911.65", + "value":"-45.47" + } + }, + { + "id":"079609f0-cbdc-405f-9416-1645521f68cb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T20:06:29.802Z", + "completed":"2016-12-11T20:06:29.802Z", + "new_balance":"17829.86", + "value":"-81.79" + } + }, + { + "id":"b66faa64-7e4b-44a1-b62e-ddb092e8c1b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T04:59:03.856Z", + "completed":"2016-12-12T04:59:03.856Z", + "new_balance":"17790.22", + "value":"-39.64" + } + }, + { + "id":"7f9e4966-a23f-420b-b895-7a148ab7c6c8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T05:01:24.517Z", + "completed":"2016-12-12T05:01:24.517Z", + "new_balance":"17783.45", + "value":"-6.77" + } + }, + { + "id":"58f589b1-4a72-471d-96ba-d19f2f6b5e67", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T10:55:34.458Z", + "completed":"2016-12-16T10:55:34.458Z", + "new_balance":"17679.26", + "value":"-104.19" + } + }, + { + "id":"e0238cad-322c-43d3-a9e4-846f4b1729c0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T17:22:15.536Z", + "completed":"2016-12-29T17:22:15.536Z", + "new_balance":"17651.28", + "value":"-27.98" + } + }, + { + "id":"54eff42e-8d26-428d-8dd3-c78b8e0d444d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T02:57:57.726Z", + "completed":"2016-12-30T02:57:57.726Z", + "new_balance":"17334.07", + "value":"-317.21" + } + }, + { + "id":"ae00f7a5-f5d0-4f45-806f-ee09dce97881", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T15:13:03.227Z", + "completed":"2016-12-30T15:13:03.227Z", + "new_balance":"19684.28", + "value":"2350.21" + } + }, + { + "id":"408c4e1f-a27d-4723-885c-1d833a9bc14a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T02:37:12.825Z", + "completed":"2017-01-01T02:37:12.825Z", + "new_balance":"19637.38", + "value":"-46.90" + } + }, + { + "id":"a4d3f518-6b4d-47aa-b7a9-61d193421980", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T15:56:16.822Z", + "completed":"2017-01-01T15:56:16.822Z", + "new_balance":"19602.95", + "value":"-34.43" + } + }, + { + "id":"e51fccd2-837f-401d-b090-ae970dafd54e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T20:01:01.271Z", + "completed":"2017-01-01T20:01:01.271Z", + "new_balance":"19568.52", + "value":"-34.43" + } + }, + { + "id":"8a84eb23-61d5-4fac-97dd-bab1090016bd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T21:21:22.976Z", + "completed":"2017-01-01T21:21:22.976Z", + "new_balance":"19463.80", + "value":"-104.72" + } + }, + { + "id":"cae6b392-1027-484c-8344-123366d2dce7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T10:40:08.030Z", + "completed":"2017-01-05T10:40:08.030Z", + "new_balance":"19396.35", + "value":"-67.45" + } + }, + { + "id":"18d37373-3f9e-4c77-8b90-2242c25d2357", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T12:16:57.934Z", + "completed":"2017-01-05T12:16:57.934Z", + "new_balance":"19315.14", + "value":"-81.21" + } + }, + { + "id":"1958f69d-aa67-42dc-bb7d-8bea979d20db", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T07:05:36.425Z", + "completed":"2017-01-08T07:05:36.425Z", + "new_balance":"19304.23", + "value":"-10.91" + } + }, + { + "id":"51d7a3f7-a7f7-475d-979e-e656d1eec46c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T13:38:47.670Z", + "completed":"2017-01-10T13:38:47.670Z", + "new_balance":"19257.77", + "value":"-46.46" + } + }, + { + "id":"a86ebc00-1fcc-4636-ab65-50af4542b523", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T01:54:03.276Z", + "completed":"2017-01-11T01:54:03.276Z", + "new_balance":"19201.13", + "value":"-56.64" + } + }, + { + "id":"ca9bf559-4a3c-4d39-8cb8-867282b37328", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T12:31:35.244Z", + "completed":"2017-01-12T12:31:35.244Z", + "new_balance":"19166.70", + "value":"-34.43" + } + }, + { + "id":"3b41fa20-5f44-422d-8fc9-bef5bc6ac5ac", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:27:24.485Z", + "completed":"2017-01-13T05:27:24.485Z", + "new_balance":"19163.11", + "value":"-3.59" + } + }, + { + "id":"8ff271dd-d275-43cf-a781-5668518c7122", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T16:18:18.083Z", + "completed":"2017-01-13T16:18:18.083Z", + "new_balance":"19157.46", + "value":"-5.65" + } + }, + { + "id":"b9856bc2-43b8-423e-91be-14174a16aec7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T18:54:42.795Z", + "completed":"2017-01-16T18:54:42.795Z", + "new_balance":"19074.37", + "value":"-83.09" + } + }, + { + "id":"173c6b64-a8be-4d83-82b5-ad34a42323dd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T03:14:49.931Z", + "completed":"2017-01-19T03:14:49.931Z", + "new_balance":"18992.93", + "value":"-81.44" + } + }, + { + "id":"e6f50376-ef5c-439e-8fbb-85043f51897e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T21:03:13.133Z", + "completed":"2017-01-19T21:03:13.133Z", + "new_balance":"18911.72", + "value":"-81.21" + } + }, + { + "id":"6becf616-7561-4da8-a290-737b449b2671", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T16:27:34.142Z", + "completed":"2017-01-24T16:27:34.142Z", + "new_balance":"18884.27", + "value":"-27.45" + } + }, + { + "id":"b9ec879e-69cc-4daa-8a58-a559279e2215", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T07:09:48.608Z", + "completed":"2017-01-27T07:09:48.608Z", + "new_balance":"21234.48", + "value":"2350.21" + } + }, + { + "id":"2b440e53-fd03-45e5-a35d-ced777b50774", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T11:54:22.125Z", + "completed":"2017-01-27T11:54:22.125Z", + "new_balance":"21206.50", + "value":"-27.98" + } + }, + { + "id":"5ebfa0c8-46d8-4866-b237-fc11c5e225dd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T14:49:51.484Z", + "completed":"2017-01-31T14:49:51.484Z", + "new_balance":"20889.29", + "value":"-317.21" + } + }, + { + "id":"f46efc04-f105-4474-b508-32c470bda849", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T03:52:23.991Z", + "completed":"2017-02-01T03:52:23.991Z", + "new_balance":"20854.86", + "value":"-34.43" + } + }, + { + "id":"961023c4-154b-46bf-aa9a-73c0768e8922", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T12:05:30.704Z", + "completed":"2017-02-01T12:05:30.704Z", + "new_balance":"20820.43", + "value":"-34.43" + } + }, + { + "id":"f93df5fc-8786-4ca2-9d4c-26e892ec8a68", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T16:01:42.614Z", + "completed":"2017-02-01T16:01:42.614Z", + "new_balance":"20715.71", + "value":"-104.72" + } + }, + { + "id":"694b7955-fba5-4e5f-bf3a-a1adf0673bb1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T20:28:02.707Z", + "completed":"2017-02-01T20:28:02.707Z", + "new_balance":"20668.81", + "value":"-46.90" + } + }, + { + "id":"068b3a5b-3c3d-435f-86f1-ddacea233ffa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T05:23:00.473Z", + "completed":"2017-02-03T05:23:00.473Z", + "new_balance":"20662.09", + "value":"-6.72" + } + }, + { + "id":"55195218-32cf-4aa6-92c3-61e2ef935825", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T11:52:33.617Z", + "completed":"2017-02-04T11:52:33.617Z", + "new_balance":"20580.88", + "value":"-81.21" + } + }, + { + "id":"b96015e6-5540-422b-990c-2b26b84d646d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T02:32:11.214Z", + "completed":"2017-02-06T02:32:11.214Z", + "new_balance":"20474.07", + "value":"-106.81" + } + }, + { + "id":"c3cd29a0-ed59-4a9c-9520-7b325279c389", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T23:53:36.047Z", + "completed":"2017-02-06T23:53:36.047Z", + "new_balance":"20392.90", + "value":"-81.17" + } + }, + { + "id":"d59b3d54-e0b3-4404-b387-0ce13d53d1e3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T02:33:24.188Z", + "completed":"2017-02-07T02:33:24.188Z", + "new_balance":"20364.87", + "value":"-28.03" + } + }, + { + "id":"280514ea-17aa-4399-a9ad-66f44eee10c3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T08:14:23.910Z", + "completed":"2017-02-08T08:14:23.910Z", + "new_balance":"20349.58", + "value":"-15.29" + } + }, + { + "id":"9166730d-1d24-4b62-9196-9db9a1c4cbc6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T02:17:22.230Z", + "completed":"2017-02-09T02:17:22.230Z", + "new_balance":"20306.63", + "value":"-42.95" + } + }, + { + "id":"f7437719-bfa5-4c1f-87f9-0b58274329f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:10:20.740Z", + "completed":"2017-02-11T05:10:20.740Z", + "new_balance":"20279.90", + "value":"-26.73" + } + }, + { + "id":"e604362e-4fa1-46ae-a9bb-558f8adad677", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T06:02:41.705Z", + "completed":"2017-02-13T06:02:41.705Z", + "new_balance":"20238.36", + "value":"-41.54" + } + }, + { + "id":"e45ad3ce-6169-4fb1-bdd1-2d615dd21c6d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T19:46:01.152Z", + "completed":"2017-02-17T19:46:01.152Z", + "new_balance":"20231.37", + "value":"-6.99" + } + }, + { + "id":"8596d400-328a-4724-a561-7c405c78a58e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T21:46:40.350Z", + "completed":"2017-02-19T21:46:40.350Z", + "new_balance":"20181.43", + "value":"-49.94" + } + }, + { + "id":"d7b280ea-37b8-4c81-97ce-44789bb30b83", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T06:12:50.530Z", + "completed":"2017-02-21T06:12:50.530Z", + "new_balance":"20100.22", + "value":"-81.21" + } + }, + { + "id":"dfec7e1a-19f8-40a4-b0d9-058e8cc6e581", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T18:42:55.072Z", + "completed":"2017-02-24T18:42:55.072Z", + "new_balance":"20072.24", + "value":"-27.98" + } + }, + { + "id":"8696f4b9-7d70-4776-913d-0a5c63befb21", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T19:22:09.298Z", + "completed":"2017-02-26T19:22:09.298Z", + "new_balance":"22422.45", + "value":"2350.21" + } + }, + { + "id":"e2baabc7-8c8e-4dfd-ab22-60c7e97a3ee8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T13:13:25.601Z", + "completed":"2017-03-01T13:13:25.601Z", + "new_balance":"22388.02", + "value":"-34.43" + } + }, + { + "id":"53376a2a-194c-46ca-9c95-7eb8999834a3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T13:22:28.176Z", + "completed":"2017-03-01T13:22:28.176Z", + "new_balance":"22353.59", + "value":"-34.43" + } + }, + { + "id":"1165e9fd-b0d8-48e8-b75b-49588ba6df10", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T15:12:18.803Z", + "completed":"2017-03-01T15:12:18.803Z", + "new_balance":"22306.69", + "value":"-46.90" + } + }, + { + "id":"a1f29a59-c054-4f9d-919a-d0e6a98abce9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T22:48:28.985Z", + "completed":"2017-03-01T22:48:28.985Z", + "new_balance":"22201.97", + "value":"-104.72" + } + }, + { + "id":"c498a4d6-ce0d-4f42-9379-8ab020871604", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T17:48:02.672Z", + "completed":"2017-03-09T17:48:02.672Z", + "new_balance":"22140.60", + "value":"-61.37" + } + }, + { + "id":"5ab2f984-4316-4dcd-bce1-e0233d44d28c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T19:25:57.169Z", + "completed":"2017-03-09T19:25:57.169Z", + "new_balance":"22077.03", + "value":"-63.57" + } + }, + { + "id":"f896b82f-2241-461c-a170-202af3d2325c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T23:13:33.620Z", + "completed":"2017-03-17T23:13:33.620Z", + "new_balance":"21988.54", + "value":"-88.49" + } + }, + { + "id":"3a929864-0e79-4d18-a23a-98485caffd54", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T04:44:53.675Z", + "completed":"2017-03-18T04:44:53.675Z", + "new_balance":"21906.75", + "value":"-81.79" + } + }, + { + "id":"1735218b-6aee-4ab6-b225-714ae42686b7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T05:31:08.079Z", + "completed":"2017-03-18T05:31:08.079Z", + "new_balance":"21899.98", + "value":"-6.77" + } + }, + { + "id":"f4763771-91e3-4268-bc6e-653d2f0a9556", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T10:22:57.727Z", + "completed":"2017-03-18T10:22:57.727Z", + "new_balance":"21854.51", + "value":"-45.47" + } + }, + { + "id":"aeed0d0e-737d-47de-838d-93a66ed48fb3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T12:09:40.005Z", + "completed":"2017-03-18T12:09:40.005Z", + "new_balance":"21814.87", + "value":"-39.64" + } + }, + { + "id":"8aada931-861e-468a-8645-fc6ff07b7cbb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T05:44:39.072Z", + "completed":"2017-03-22T05:44:39.072Z", + "new_balance":"21710.68", + "value":"-104.19" + } + }, + { + "id":"b9a87516-36ad-4d15-9923-8ea2862fc168", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T00:47:29.481Z", + "completed":"2017-03-29T00:47:29.481Z", + "new_balance":"24060.89", + "value":"2350.21" + } + }, + { + "id":"d6b28f77-1f0c-4d39-a708-d0189b27e69c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T09:14:39.405Z", + "completed":"2017-03-29T09:14:39.405Z", + "new_balance":"24032.91", + "value":"-27.98" + } + }, + { + "id":"5a91b57c-b164-4142-af97-31f2d093e98d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T19:03:52.152Z", + "completed":"2017-03-31T19:03:52.152Z", + "new_balance":"23715.70", + "value":"-317.21" + } + }, + { + "id":"ee43e5cc-9402-4f91-a8d3-2abeacad4009", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T05:32:28.230Z", + "completed":"2017-04-01T05:32:28.230Z", + "new_balance":"23610.98", + "value":"-104.72" + } + }, + { + "id":"52f0c71f-b572-40bb-9202-93ec544dff1c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T17:40:34.433Z", + "completed":"2017-04-01T17:40:34.433Z", + "new_balance":"23576.55", + "value":"-34.43" + } + }, + { + "id":"7111a28e-4158-4a0f-9fbe-5ae345d44e8f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T17:59:00.323Z", + "completed":"2017-04-01T17:59:00.323Z", + "new_balance":"23542.12", + "value":"-34.43" + } + }, + { + "id":"a207a40f-d096-4304-b652-dcf1f4f90fa5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T20:24:37.942Z", + "completed":"2017-04-01T20:24:37.942Z", + "new_balance":"23495.22", + "value":"-46.90" + } + }, + { + "id":"6aa1989e-64b4-491e-bb58-016174f21504", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T01:03:24.836Z", + "completed":"2017-04-02T01:03:24.836Z", + "new_balance":"23400.89", + "value":"-94.33" + } + }, + { + "id":"382b5997-fca9-4fb5-9acf-7291e4060013", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T05:59:14.168Z", + "completed":"2017-04-05T05:59:14.168Z", + "new_balance":"23346.05", + "value":"-54.84" + } + }, + { + "id":"e2f20f2a-4694-4208-99b3-da7a69003163", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T11:05:41.811Z", + "completed":"2017-04-05T11:05:41.811Z", + "new_balance":"23334.12", + "value":"-11.93" + } + }, + { + "id":"e0ecaa9c-da25-4cb2-8cc6-305d8d3596fe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T15:21:56.181Z", + "completed":"2017-04-05T15:21:56.181Z", + "new_balance":"23292.69", + "value":"-41.43" + } + }, + { + "id":"ebddc1b1-9fb5-41f5-94ad-2566ad233f86", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T15:29:00.412Z", + "completed":"2017-04-05T15:29:00.412Z", + "new_balance":"23286.11", + "value":"-6.58" + } + }, + { + "id":"e5f69266-92eb-46db-bcb1-15ec5e27fe98", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T16:02:24.968Z", + "completed":"2017-04-05T16:02:24.968Z", + "new_balance":"23251.68", + "value":"-34.43" + } + }, + { + "id":"e03058d0-72ef-423f-b78d-5660288d43f9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T22:32:42.147Z", + "completed":"2017-04-05T22:32:42.147Z", + "new_balance":"23170.47", + "value":"-81.21" + } + }, + { + "id":"5eb6c61f-e8a1-4343-a50e-1a5de99a924f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T23:13:20.743Z", + "completed":"2017-04-05T23:13:20.743Z", + "new_balance":"23165.83", + "value":"-4.64" + } + }, + { + "id":"b22e06c2-e705-455a-8efd-979805e2f792", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T21:28:08.402Z", + "completed":"2017-04-08T21:28:08.402Z", + "new_balance":"23067.91", + "value":"-97.92" + } + }, + { + "id":"1f06435c-6c6b-453d-ab37-69c2945dd42f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T10:10:23.094Z", + "completed":"2017-04-10T10:10:23.094Z", + "new_balance":"23011.78", + "value":"-56.13" + } + }, + { + "id":"62402d09-02c0-4806-8568-d6a8e6b494f1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T07:12:40.230Z", + "completed":"2017-04-11T07:12:40.230Z", + "new_balance":"22930.57", + "value":"-81.21" + } + }, + { + "id":"b4a46250-ebe0-48e1-9e04-8771206ee12b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T08:49:34.572Z", + "completed":"2017-04-11T08:49:34.572Z", + "new_balance":"22903.12", + "value":"-27.45" + } + }, + { + "id":"0286d856-a3a9-47b6-8cc3-6ac624884beb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T15:39:11.563Z", + "completed":"2017-04-13T15:39:11.563Z", + "new_balance":"22875.14", + "value":"-27.98" + } + }, + { + "id":"06536ab0-fafc-4728-8204-b83129722605", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T15:15:00.195Z", + "completed":"2017-04-18T15:15:00.195Z", + "new_balance":"25225.35", + "value":"2350.21" + } + }, + { + "id":"ff4d18ba-43d5-44f0-ba67-a4180064650a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T09:55:11.538Z", + "completed":"2017-04-25T09:55:11.538Z", + "new_balance":"24908.14", + "value":"-317.21" + } + }, + { + "id":"2790ab6b-096a-46c4-be98-83edc6d771f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T11:08:31.595Z", + "completed":"2017-05-02T11:08:31.595Z", + "new_balance":"24803.42", + "value":"-104.72" + } + }, + { + "id":"a00d79d8-8804-49fb-bb23-4261f8e2324c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T15:53:57.974Z", + "completed":"2017-05-02T15:53:57.974Z", + "new_balance":"24756.52", + "value":"-46.90" + } + }, + { + "id":"3e0f8ece-6cbb-4773-90cd-ee057fca2053", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T18:17:50.510Z", + "completed":"2017-05-02T18:17:50.510Z", + "new_balance":"24722.09", + "value":"-34.43" + } + }, + { + "id":"ed10fdb6-f308-48da-8edc-6299b2144c5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T20:43:52.091Z", + "completed":"2017-05-02T20:43:52.091Z", + "new_balance":"24687.66", + "value":"-34.43" + } + }, + { + "id":"12756b22-b530-47a4-9b24-8259398f2ffa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T03:10:59.579Z", + "completed":"2017-05-04T03:10:59.579Z", + "new_balance":"24606.45", + "value":"-81.21" + } + }, + { + "id":"4f36cfba-38c8-4f0f-9e28-be7f3a6da2ac", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T17:28:28.125Z", + "completed":"2017-05-04T17:28:28.125Z", + "new_balance":"24599.87", + "value":"-6.58" + } + }, + { + "id":"63875aba-fa51-494f-aecd-c0a49f59ad2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T23:58:31.830Z", + "completed":"2017-05-06T23:58:31.830Z", + "new_balance":"24519.66", + "value":"-80.21" + } + }, + { + "id":"31665dbd-1af1-4c97-9732-82ba8d1091f2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T03:34:27.537Z", + "completed":"2017-05-07T03:34:27.537Z", + "new_balance":"24485.15", + "value":"-34.51" + } + }, + { + "id":"80e34861-f9d0-44fc-b826-d0347237255d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T04:01:41.971Z", + "completed":"2017-05-07T04:01:41.971Z", + "new_balance":"24390.82", + "value":"-94.33" + } + }, + { + "id":"8c7978aa-6bcd-42d1-9740-6e110efb9e72", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T03:49:47.597Z", + "completed":"2017-05-09T03:49:47.597Z", + "new_balance":"24347.87", + "value":"-42.95" + } + }, + { + "id":"623f73d9-0798-4ca4-89de-a57e43733439", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T22:04:56.632Z", + "completed":"2017-05-09T22:04:56.632Z", + "new_balance":"24335.94", + "value":"-11.93" + } + }, + { + "id":"ddffbeb3-3383-42a8-a54c-aae5a5df3d19", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T00:25:08.449Z", + "completed":"2017-05-13T00:25:08.449Z", + "new_balance":"24301.43", + "value":"-34.51" + } + }, + { + "id":"d3355404-330d-4ea3-a661-3802e1af9e04", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T04:28:10.215Z", + "completed":"2017-05-13T04:28:10.215Z", + "new_balance":"24294.85", + "value":"-6.58" + } + }, + { + "id":"befa7dbb-990c-496d-912e-ed8d7cc4d909", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T13:40:13.863Z", + "completed":"2017-05-13T13:40:13.863Z", + "new_balance":"24266.66", + "value":"-28.19" + } + }, + { + "id":"7d6d639d-0537-4489-bdaa-fecfb04d86c4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T06:47:36.297Z", + "completed":"2017-05-14T06:47:36.297Z", + "new_balance":"24185.45", + "value":"-81.21" + } + }, + { + "id":"6bed5285-ccf5-4b4a-be46-2d68683ad053", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T20:04:51.365Z", + "completed":"2017-05-14T20:04:51.365Z", + "new_balance":"24120.22", + "value":"-65.23" + } + }, + { + "id":"5d7edb2a-bfc0-4677-b453-1d1d01a8c079", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T16:13:28.935Z", + "completed":"2017-05-15T16:13:28.935Z", + "new_balance":"24092.24", + "value":"-27.98" + } + }, + { + "id":"09916d46-3731-4890-ab1c-7b9d15262afa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T01:50:04.064Z", + "completed":"2017-05-30T01:50:04.064Z", + "new_balance":"26442.45", + "value":"2350.21" + } + }, + { + "id":"38de9f2c-f225-4b0f-8389-22692fb2c5b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T14:50:11.348Z", + "completed":"2017-05-30T14:50:11.348Z", + "new_balance":"26125.24", + "value":"-317.21" + } + }, + { + "id":"053e48bb-ba15-4353-a5ab-0e1fab5e6f2e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:14:19.973Z", + "completed":"2017-06-01T05:14:19.973Z", + "new_balance":"26090.81", + "value":"-34.43" + } + }, + { + "id":"62039396-9730-4844-a4a0-3a66067ed27b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T14:56:24.948Z", + "completed":"2017-06-01T14:56:24.948Z", + "new_balance":"25986.09", + "value":"-104.72" + } + }, + { + "id":"7f37cefa-b22e-404f-8819-29f7209bc5d7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T15:24:23.323Z", + "completed":"2017-06-01T15:24:23.323Z", + "new_balance":"25939.19", + "value":"-46.90" + } + }, + { + "id":"87cc6bcb-a3ce-49d0-8fa7-7c68cf89f156", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T22:21:30.524Z", + "completed":"2017-06-01T22:21:30.524Z", + "new_balance":"25904.76", + "value":"-34.43" + } + }, + { + "id":"6dd21396-1f1a-4a85-82f6-0fe34eb1f8a9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T00:31:06.293Z", + "completed":"2017-06-04T00:31:06.293Z", + "new_balance":"25841.19", + "value":"-63.57" + } + }, + { + "id":"40233f66-e718-4482-8532-60089b181097", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T11:32:01.702Z", + "completed":"2017-06-04T11:32:01.702Z", + "new_balance":"25779.82", + "value":"-61.37" + } + }, + { + "id":"b271c828-3985-4f89-bec9-54ad15fee8aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T00:37:43.320Z", + "completed":"2017-06-11T00:37:43.320Z", + "new_balance":"25698.03", + "value":"-81.79" + } + }, + { + "id":"43580e3a-d1e0-4f21-926b-bbed9abc7c5a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T01:22:10.410Z", + "completed":"2017-06-11T01:22:10.410Z", + "new_balance":"25652.56", + "value":"-45.47" + } + }, + { + "id":"8768041b-4ae4-46b4-9dca-cfa367bc8c4a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T17:20:23.685Z", + "completed":"2017-06-11T17:20:23.685Z", + "new_balance":"25564.07", + "value":"-88.49" + } + }, + { + "id":"e7c8c4d6-9f74-403a-809c-ab67ec86c393", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T01:24:10.896Z", + "completed":"2017-06-12T01:24:10.896Z", + "new_balance":"25557.30", + "value":"-6.77" + } + }, + { + "id":"759868a0-ddc8-41d4-aaff-fd7a4662968b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T23:55:13.081Z", + "completed":"2017-06-12T23:55:13.081Z", + "new_balance":"25517.66", + "value":"-39.64" + } + }, + { + "id":"9ec8a6f8-7d89-4d59-b1f2-5e2f630dd39d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T00:41:45.034Z", + "completed":"2017-06-16T00:41:45.034Z", + "new_balance":"25413.47", + "value":"-104.19" + } + }, + { + "id":"61e47db3-3c2a-4f87-bfe1-e9ba561a113e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T04:28:55.956Z", + "completed":"2017-06-29T04:28:55.956Z", + "new_balance":"25385.49", + "value":"-27.98" + } + }, + { + "id":"df5231fc-f292-4b97-aa99-89bcaa5a8f49", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T04:36:10.951Z", + "completed":"2017-06-30T04:36:10.951Z", + "new_balance":"27735.70", + "value":"2350.21" + } + }, + { + "id":"37febc55-3feb-4c57-a693-5f97a959e00b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T05:12:23.467Z", + "completed":"2017-06-30T05:12:23.467Z", + "new_balance":"27418.49", + "value":"-317.21" + } + }, + { + "id":"858c5f31-4963-4d16-b2a1-accc02c654b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T03:37:37.631Z", + "completed":"2017-07-01T03:37:37.631Z", + "new_balance":"27313.77", + "value":"-104.72" + } + }, + { + "id":"fd03f41e-bf09-47bb-bf7d-730ac05419ef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T05:18:47.399Z", + "completed":"2017-07-01T05:18:47.399Z", + "new_balance":"27279.34", + "value":"-34.43" + } + }, + { + "id":"8df0f182-22ad-4d44-bbd5-1685b3ee2e0e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T10:01:11.448Z", + "completed":"2017-07-01T10:01:11.448Z", + "new_balance":"27232.44", + "value":"-46.90" + } + }, + { + "id":"f44fdbde-1006-4bf0-86da-cecbe9da66e6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T17:53:45.990Z", + "completed":"2017-07-01T17:53:45.990Z", + "new_balance":"27198.01", + "value":"-34.43" + } + }, + { + "id":"b37a3460-e448-4465-b97e-962b0c3cb4c3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T04:34:04.253Z", + "completed":"2017-07-05T04:34:04.253Z", + "new_balance":"27116.80", + "value":"-81.21" + } + }, + { + "id":"e4cd5d08-1224-4720-abc2-346ec8f6d0f0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T12:27:44.833Z", + "completed":"2017-07-05T12:27:44.833Z", + "new_balance":"27049.35", + "value":"-67.45" + } + }, + { + "id":"b5f743d4-c12b-423b-9707-f286bf7ce403", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T05:22:54.378Z", + "completed":"2017-07-08T05:22:54.378Z", + "new_balance":"27038.44", + "value":"-10.91" + } + }, + { + "id":"8fdde6d3-040c-4600-af06-1e983e63cc92", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T16:48:21.512Z", + "completed":"2017-07-10T16:48:21.512Z", + "new_balance":"26991.98", + "value":"-46.46" + } + }, + { + "id":"62a40be1-9589-4061-ae46-8c2e1f0a50a1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T00:40:59.698Z", + "completed":"2017-07-12T00:40:59.698Z", + "new_balance":"26935.34", + "value":"-56.64" + } + }, + { + "id":"c64623ab-a0f5-420f-9be5-a193a4891978", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T04:42:17.174Z", + "completed":"2017-07-12T04:42:17.174Z", + "new_balance":"26900.91", + "value":"-34.43" + } + }, + { + "id":"a7ec0d6f-de66-4ca0-9d5a-9151bac888a5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T13:57:48.141Z", + "completed":"2017-07-13T13:57:48.141Z", + "new_balance":"26897.32", + "value":"-3.59" + } + }, + { + "id":"a655ee37-7bb0-43cf-ad80-71fc1943810b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T15:29:05.477Z", + "completed":"2017-07-13T15:29:05.477Z", + "new_balance":"26891.67", + "value":"-5.65" + } + }, + { + "id":"20319693-c3d8-496e-be84-41cd223e880a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T22:16:34.183Z", + "completed":"2017-07-18T22:16:34.183Z", + "new_balance":"26808.58", + "value":"-83.09" + } + }, + { + "id":"61e550e9-ad66-4299-8c63-e1d332b89316", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T10:18:20.574Z", + "completed":"2017-07-20T10:18:20.574Z", + "new_balance":"26727.37", + "value":"-81.21" + } + }, + { + "id":"577b53a0-b70c-4b10-a470-b88a70a50ef4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T16:38:51.184Z", + "completed":"2017-07-20T16:38:51.184Z", + "new_balance":"26645.93", + "value":"-81.44" + } + }, + { + "id":"6cb0c5e6-ad3d-4ab3-b18a-292e53502a78", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T07:33:49.815Z", + "completed":"2017-07-24T07:33:49.815Z", + "new_balance":"26618.48", + "value":"-27.45" + } + }, + { + "id":"f2806a16-8628-428a-bb94-fe0affc19679", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T05:31:10.893Z", + "completed":"2017-07-29T05:31:10.893Z", + "new_balance":"26590.50", + "value":"-27.98" + } + }, + { + "id":"6819035e-3e11-4f16-9ce1-d288140bb53c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T17:51:16.206Z", + "completed":"2017-07-29T17:51:16.206Z", + "new_balance":"28940.71", + "value":"2350.21" + } + }, + { + "id":"b5ee2921-4dd6-44b9-b5b0-5048ecca6172", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T09:37:54.398Z", + "completed":"2017-07-30T09:37:54.398Z", + "new_balance":"28623.50", + "value":"-317.21" + } + }, + { + "id":"7e9e94f8-a148-4725-bbbc-60f1b363fa5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T00:20:31.785Z", + "completed":"2017-08-01T00:20:31.785Z", + "new_balance":"28589.07", + "value":"-34.43" + } + }, + { + "id":"f725b2fc-5efb-4864-8a48-27c14da7bdaa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:02:45.338Z", + "completed":"2017-08-01T09:02:45.338Z", + "new_balance":"28542.17", + "value":"-46.90" + } + }, + { + "id":"d0e7af40-aea2-43b3-816c-82e51408a3fe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T16:56:01.423Z", + "completed":"2017-08-01T16:56:01.423Z", + "new_balance":"28437.45", + "value":"-104.72" + } + }, + { + "id":"05cb53c7-a33f-421e-949c-1d5c3fd05ca2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T19:10:21.313Z", + "completed":"2017-08-01T19:10:21.313Z", + "new_balance":"28403.02", + "value":"-34.43" + } + }, + { + "id":"eb8ca4e7-cf0c-41c3-9d50-9eb0ce96dd3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T03:40:23.712Z", + "completed":"2017-08-03T03:40:23.712Z", + "new_balance":"28396.30", + "value":"-6.72" + } + }, + { + "id":"f832d0ff-f610-49c3-82fb-2db627aa96c0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T15:39:25.388Z", + "completed":"2017-08-04T15:39:25.388Z", + "new_balance":"28315.09", + "value":"-81.21" + } + }, + { + "id":"f0a533d3-34ef-4dd4-a147-4ff54772a3bf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T06:26:07.991Z", + "completed":"2017-08-08T06:26:07.991Z", + "new_balance":"28287.06", + "value":"-28.03" + } + }, + { + "id":"ffb95900-167e-4e6a-9a45-a940be7216ef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T15:08:22.873Z", + "completed":"2017-08-08T15:08:22.873Z", + "new_balance":"28271.77", + "value":"-15.29" + } + }, + { + "id":"38ce97e8-c1c9-46cf-ab25-ad3ebc3c426c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T19:18:33.535Z", + "completed":"2017-08-08T19:18:33.535Z", + "new_balance":"28164.96", + "value":"-106.81" + } + }, + { + "id":"171e2d28-e412-4cac-aea9-b2da38f16318", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T22:46:02.076Z", + "completed":"2017-08-08T22:46:02.076Z", + "new_balance":"28083.79", + "value":"-81.17" + } + }, + { + "id":"e6144979-f41e-4bd4-87c8-a248a5be8c2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T12:21:52.176Z", + "completed":"2017-08-09T12:21:52.176Z", + "new_balance":"28040.84", + "value":"-42.95" + } + }, + { + "id":"e081dcda-5dcc-4e62-9fc1-b2ebcb0d5f7a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T09:28:23.562Z", + "completed":"2017-08-14T09:28:23.562Z", + "new_balance":"28014.11", + "value":"-26.73" + } + }, + { + "id":"29dc6445-d19f-49d3-8e99-57d86d529f74", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T03:51:38.636Z", + "completed":"2017-08-15T03:51:38.636Z", + "new_balance":"27972.57", + "value":"-41.54" + } + }, + { + "id":"1cc9a235-ca74-46b0-bc55-cff6dcd874b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T16:02:10.982Z", + "completed":"2017-08-19T16:02:10.982Z", + "new_balance":"27965.58", + "value":"-6.99" + } + }, + { + "id":"a4918d73-3c2b-47f6-82ae-416e9c7a4b03", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T20:18:55.631Z", + "completed":"2017-08-22T20:18:55.631Z", + "new_balance":"27915.64", + "value":"-49.94" + } + }, + { + "id":"c3a116ef-bda4-444b-9d74-59c0f2484cde", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T13:02:08.739Z", + "completed":"2017-08-26T13:02:08.739Z", + "new_balance":"27834.43", + "value":"-81.21" + } + }, + { + "id":"e13a16ca-e7e2-4427-8e67-ceb3e9366f66", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T18:09:38.366Z", + "completed":"2017-08-28T18:09:38.366Z", + "new_balance":"27517.22", + "value":"-317.21" + } + }, + { + "id":"687a7431-4048-4c9c-9d65-75bfab842b5b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T03:23:57.047Z", + "completed":"2017-08-29T03:23:57.047Z", + "new_balance":"27489.24", + "value":"-27.98" + } + }, + { + "id":"7a890c19-ef2d-4224-b3ef-216b4f0b24b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T17:32:46.773Z", + "completed":"2017-08-29T17:32:46.773Z", + "new_balance":"29839.45", + "value":"2350.21" + } + }, + { + "id":"cc13a815-6354-4fc4-9fe2-7f82ece1b464", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T00:23:13.012Z", + "completed":"2017-08-30T00:23:13.012Z", + "new_balance":"29522.24", + "value":"-317.21" + } + }, + { + "id":"938275f1-69bf-4273-8d50-0b72e05dadd7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T02:29:44.835Z", + "completed":"2017-09-01T02:29:44.835Z", + "new_balance":"29487.81", + "value":"-34.43" + } + }, + { + "id":"e111e827-4b57-4e02-a050-914cc1452cb5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T03:46:50.289Z", + "completed":"2017-09-01T03:46:50.289Z", + "new_balance":"29440.91", + "value":"-46.90" + } + }, + { + "id":"13ce59fc-276f-4061-96a3-fbaf014d6352", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T05:07:33.262Z", + "completed":"2017-09-01T05:07:33.262Z", + "new_balance":"29336.19", + "value":"-104.72" + } + }, + { + "id":"d0138296-ee4b-4835-aaad-4f2d5b01ccd2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T14:26:05.700Z", + "completed":"2017-09-01T14:26:05.700Z", + "new_balance":"29301.76", + "value":"-34.43" + } + }, + { + "id":"b4a26859-c599-4510-945e-a49119d475d5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T06:05:07.790Z", + "completed":"2017-09-09T06:05:07.790Z", + "new_balance":"29240.39", + "value":"-61.37" + } + }, + { + "id":"652f1815-a6bf-48f5-805a-05d5ceb944cb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T21:10:45.989Z", + "completed":"2017-09-09T21:10:45.989Z", + "new_balance":"29176.82", + "value":"-63.57" + } + }, + { + "id":"deb2192e-0bcf-4a5a-9020-d42014d30d3e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T11:02:17.891Z", + "completed":"2017-09-17T11:02:17.891Z", + "new_balance":"29088.33", + "value":"-88.49" + } + }, + { + "id":"e8c6f695-9ad7-4630-94a9-aefe2c7336b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T04:32:12.291Z", + "completed":"2017-09-18T04:32:12.291Z", + "new_balance":"29048.69", + "value":"-39.64" + } + }, + { + "id":"22fb6afc-091f-4b95-a614-7b17ecc026d5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T07:46:21.490Z", + "completed":"2017-09-18T07:46:21.490Z", + "new_balance":"28966.90", + "value":"-81.79" + } + }, + { + "id":"59370e0c-3c9a-4d6f-b842-8f87a3f185b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T12:07:21.635Z", + "completed":"2017-09-18T12:07:21.635Z", + "new_balance":"28960.13", + "value":"-6.77" + } + }, + { + "id":"8b47a853-2b63-460c-83e6-d5f0b92b1e8b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T15:26:41.623Z", + "completed":"2017-09-18T15:26:41.623Z", + "new_balance":"28914.66", + "value":"-45.47" + } + }, + { + "id":"3c7f7590-49db-40d0-926a-3ec885215eab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T00:07:56.030Z", + "completed":"2017-09-22T00:07:56.030Z", + "new_balance":"28810.47", + "value":"-104.19" + } + }, + { + "id":"ab4be548-fe23-43f9-a1f3-f612781b591b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T01:06:31.762Z", + "completed":"2017-09-29T01:06:31.762Z", + "new_balance":"28782.49", + "value":"-27.98" + } + }, + { + "id":"a11030be-7751-46e3-b9b6-cfadf4e57673", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:59:31.621Z", + "completed":"2017-09-29T06:59:31.621Z", + "new_balance":"31132.70", + "value":"2350.21" + } + }, + { + "id":"4912642b-bade-4a04-8f62-4cbee69f8717", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T01:21:25.560Z", + "completed":"2017-09-30T01:21:25.560Z", + "new_balance":"30815.49", + "value":"-317.21" + } + }, + { + "id":"f77d7801-b057-4c30-89d7-ad07fefc77b4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T01:05:59.125Z", + "completed":"2017-10-01T01:05:59.125Z", + "new_balance":"30781.06", + "value":"-34.43" + } + }, + { + "id":"ec110d73-cfb2-4127-ab12-241a72fe4fc0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T10:17:12.908Z", + "completed":"2017-10-01T10:17:12.908Z", + "new_balance":"30676.34", + "value":"-104.72" + } + }, + { + "id":"88e0dd75-4ebe-4592-9b4a-9290becd0f7b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T15:35:52.338Z", + "completed":"2017-10-01T15:35:52.338Z", + "new_balance":"30629.44", + "value":"-46.90" + } + }, + { + "id":"6a915865-a3eb-467b-b2c5-10bbb2afe7b9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T17:31:00.243Z", + "completed":"2017-10-01T17:31:00.243Z", + "new_balance":"30595.01", + "value":"-34.43" + } + }, + { + "id":"ae84ffb9-9025-434d-bc4c-77c3e091013d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T12:02:24.357Z", + "completed":"2017-10-02T12:02:24.357Z", + "new_balance":"30500.68", + "value":"-94.33" + } + }, + { + "id":"70abb27e-dd78-490d-931c-1db9d9c0518d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T04:00:43.128Z", + "completed":"2017-10-05T04:00:43.128Z", + "new_balance":"30466.25", + "value":"-34.43" + } + }, + { + "id":"e6fd9c64-f487-47a3-9bad-65a430a450a4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T08:25:45.034Z", + "completed":"2017-10-05T08:25:45.034Z", + "new_balance":"30461.61", + "value":"-4.64" + } + }, + { + "id":"e3054aa1-7dda-4a08-9f60-32fd4fa022a7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:12:54.657Z", + "completed":"2017-10-05T10:12:54.657Z", + "new_balance":"30380.40", + "value":"-81.21" + } + }, + { + "id":"bf1f470a-3209-4437-9358-edc681233873", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T11:05:39.725Z", + "completed":"2017-10-05T11:05:39.725Z", + "new_balance":"30373.82", + "value":"-6.58" + } + }, + { + "id":"8a4692ba-54c5-4ff4-a3da-1152f4d7c435", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T13:08:53.586Z", + "completed":"2017-10-05T13:08:53.586Z", + "new_balance":"30361.89", + "value":"-11.93" + } + }, + { + "id":"db2a3d2f-4350-4d1a-8a39-00a06c6945f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T20:30:36.818Z", + "completed":"2017-10-05T20:30:36.818Z", + "new_balance":"30320.46", + "value":"-41.43" + } + }, + { + "id":"deaa3601-ed87-4875-97d6-f69f6a10d5b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T21:44:32.583Z", + "completed":"2017-10-05T21:44:32.583Z", + "new_balance":"30265.62", + "value":"-54.84" + } + }, + { + "id":"ed5b53bf-0914-4846-b332-e25367d486a6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T19:02:35.213Z", + "completed":"2017-10-09T19:02:35.213Z", + "new_balance":"30167.70", + "value":"-97.92" + } + }, + { + "id":"e022098d-3464-40b2-90ca-268b75c2cd58", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T04:29:57.247Z", + "completed":"2017-10-11T04:29:57.247Z", + "new_balance":"30111.57", + "value":"-56.13" + } + }, + { + "id":"7666fb04-d378-4fde-b624-ba043ef06d32", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T06:27:10.602Z", + "completed":"2017-10-12T06:27:10.602Z", + "new_balance":"30030.36", + "value":"-81.21" + } + }, + { + "id":"e03ca3dd-0a59-4776-8c41-d3d34264ab4e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T11:37:10.488Z", + "completed":"2017-10-12T11:37:10.488Z", + "new_balance":"30002.91", + "value":"-27.45" + } + }, + { + "id":"2d472d5b-0853-4e72-b6bd-65b5f057cff7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T15:31:40.584Z", + "completed":"2017-10-20T15:31:40.584Z", + "new_balance":"29974.93", + "value":"-27.98" + } + }, + { + "id":"cb273fa7-d69b-423a-abb6-753886a197a5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T13:30:39.856Z", + "completed":"2017-10-29T13:30:39.856Z", + "new_balance":"32325.14", + "value":"2350.21" + } + }, + { + "id":"58fe30f3-8d16-4101-8897-81227cc89ec1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T07:10:33.093Z", + "completed":"2017-10-30T07:10:33.093Z", + "new_balance":"32007.93", + "value":"-317.21" + } + }, + { + "id":"ed66c537-8bfa-432a-b643-43d09504a969", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T01:19:39.826Z", + "completed":"2017-11-02T01:19:39.826Z", + "new_balance":"31973.50", + "value":"-34.43" + } + }, + { + "id":"22085e63-4ec0-427c-8510-a46a4e2baa3a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T02:00:33.721Z", + "completed":"2017-11-02T02:00:33.721Z", + "new_balance":"31868.78", + "value":"-104.72" + } + }, + { + "id":"24341f44-b8d3-4571-b580-2c46db1e5c9f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T09:14:35.554Z", + "completed":"2017-11-02T09:14:35.554Z", + "new_balance":"31834.35", + "value":"-34.43" + } + }, + { + "id":"766adaf9-3296-4946-acd3-7e1850dd3850", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T10:24:20.459Z", + "completed":"2017-11-02T10:24:20.459Z", + "new_balance":"31787.45", + "value":"-46.90" + } + }, + { + "id":"ab4e078a-b34c-46ec-910d-3342ab3d8678", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T02:39:23.670Z", + "completed":"2017-11-04T02:39:23.670Z", + "new_balance":"31706.24", + "value":"-81.21" + } + }, + { + "id":"d4e899e8-cd60-4652-957c-8e52e6697c21", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T12:38:01.045Z", + "completed":"2017-11-04T12:38:01.045Z", + "new_balance":"31699.66", + "value":"-6.58" + } + }, + { + "id":"a1834bc0-26f3-4d38-a4db-aea2bf54dc0c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T19:56:08.692Z", + "completed":"2017-11-06T19:56:08.692Z", + "new_balance":"31619.45", + "value":"-80.21" + } + }, + { + "id":"f122ec83-cea8-4ed1-9a75-3c18ebf77bab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T00:29:33.417Z", + "completed":"2017-11-07T00:29:33.417Z", + "new_balance":"31584.94", + "value":"-34.51" + } + }, + { + "id":"32613e42-a9fd-415a-acd2-b8baa88140d9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T16:18:59.611Z", + "completed":"2017-11-07T16:18:59.611Z", + "new_balance":"31490.61", + "value":"-94.33" + } + }, + { + "id":"14f4b9b3-0e2d-4ea5-a600-3e2ac241b4fb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T13:26:29.686Z", + "completed":"2017-11-09T13:26:29.686Z", + "new_balance":"31478.68", + "value":"-11.93" + } + }, + { + "id":"0e69685e-40f5-4c6c-a0a5-0faab0adace1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T23:52:09.815Z", + "completed":"2017-11-09T23:52:09.815Z", + "new_balance":"31435.73", + "value":"-42.95" + } + }, + { + "id":"61fa2854-f965-4b16-bdf0-256304d5f243", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T08:16:59.710Z", + "completed":"2017-11-13T08:16:59.710Z", + "new_balance":"31401.22", + "value":"-34.51" + } + }, + { + "id":"23cdad3d-84f5-4bda-ae1e-310d5c56d950", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T12:55:09.661Z", + "completed":"2017-11-13T12:55:09.661Z", + "new_balance":"31373.03", + "value":"-28.19" + } + }, + { + "id":"7cab77b0-e79e-4297-93b4-f3193fa43fef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T20:54:48.792Z", + "completed":"2017-11-13T20:54:48.792Z", + "new_balance":"31366.45", + "value":"-6.58" + } + }, + { + "id":"9863ad5a-ca59-442b-84e2-895a5f6c7694", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T11:59:01.766Z", + "completed":"2017-11-14T11:59:01.766Z", + "new_balance":"31301.22", + "value":"-65.23" + } + }, + { + "id":"edd89c41-02b9-40be-a9c6-ea02709b02be", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T17:54:20.545Z", + "completed":"2017-11-14T17:54:20.545Z", + "new_balance":"31220.01", + "value":"-81.21" + } + }, + { + "id":"9c580e5e-9803-44b9-b4f5-2bdad8c38b1b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T02:06:18.846Z", + "completed":"2017-11-15T02:06:18.846Z", + "new_balance":"31192.03", + "value":"-27.98" + } + }, + { + "id":"0b962307-9d28-42f8-909b-9e001f511585", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:42:45.394Z", + "completed":"2017-11-30T00:42:45.394Z", + "new_balance":"30874.82", + "value":"-317.21" + } + }, + { + "id":"ef4071d7-40a4-405e-9b93-0476d142e145", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T02:13:20.279Z", + "completed":"2017-11-30T02:13:20.279Z", + "new_balance":"33225.03", + "value":"2350.21" + } + }, + { + "id":"c2fba5d9-4a39-4fcb-972b-5099bc56072f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T17:51:20.282Z", + "completed":"2017-12-01T17:51:20.282Z", + "new_balance":"33190.60", + "value":"-34.43" + } + }, + { + "id":"6b3e6303-0953-423e-b46b-5156e695fbb7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T19:20:35.062Z", + "completed":"2017-12-01T19:20:35.062Z", + "new_balance":"33156.17", + "value":"-34.43" + } + }, + { + "id":"40ab4c1b-205a-4ec1-adf7-3078083067d8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T22:29:50.312Z", + "completed":"2017-12-01T22:29:50.312Z", + "new_balance":"33109.27", + "value":"-46.90" + } + }, + { + "id":"a3f7a384-7a83-46c3-8069-dff6cbc89db8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T22:41:58.809Z", + "completed":"2017-12-01T22:41:58.809Z", + "new_balance":"33004.55", + "value":"-104.72" + } + }, + { + "id":"99dd53eb-d334-4698-8740-52aeb0ed0909", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T02:33:02.795Z", + "completed":"2017-12-04T02:33:02.795Z", + "new_balance":"32943.18", + "value":"-61.37" + } + }, + { + "id":"b997b6aa-122d-44dd-9f2a-258b2bad0874", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T21:42:24.885Z", + "completed":"2017-12-04T21:42:24.885Z", + "new_balance":"32879.61", + "value":"-63.57" + } + }, + { + "id":"5d7fa5f8-5fef-4de8-92a2-63724dee55f1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T03:41:28.666Z", + "completed":"2017-12-11T03:41:28.666Z", + "new_balance":"32797.82", + "value":"-81.79" + } + }, + { + "id":"d2f7fc8b-e80f-48f9-a223-3e457e1ee685", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T09:20:11.163Z", + "completed":"2017-12-11T09:20:11.163Z", + "new_balance":"32709.33", + "value":"-88.49" + } + }, + { + "id":"c8d76066-999a-4a2a-9620-fd3613eef693", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T20:10:13.590Z", + "completed":"2017-12-11T20:10:13.590Z", + "new_balance":"32663.86", + "value":"-45.47" + } + }, + { + "id":"250fc28b-cf1c-4648-a661-c234bb16ea7e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T16:13:55.939Z", + "completed":"2017-12-12T16:13:55.939Z", + "new_balance":"32624.22", + "value":"-39.64" + } + }, + { + "id":"70451f5a-bd60-4ff6-b111-9b9b6e6c1904", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T23:30:38.440Z", + "completed":"2017-12-12T23:30:38.440Z", + "new_balance":"32617.45", + "value":"-6.77" + } + }, + { + "id":"f1c5542d-003a-4452-83f1-f8df69fcdc02", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T15:48:02.347Z", + "completed":"2017-12-16T15:48:02.347Z", + "new_balance":"32513.26", + "value":"-104.19" + } + }, + { + "id":"da018547-ec2d-4dd5-8ccf-b879d8729b0b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T18:56:15.604Z", + "completed":"2017-12-29T18:56:15.604Z", + "new_balance":"32485.28", + "value":"-27.98" + } + }, + { + "id":"723381d3-8bcb-4507-a696-fe32d9c8dafa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T06:41:14.491Z", + "completed":"2017-12-30T06:41:14.491Z", + "new_balance":"32168.07", + "value":"-317.21" + } + }, + { + "id":"15f9d502-80a0-4116-b302-86f482b2933f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T20:09:02.673Z", + "completed":"2017-12-30T20:09:02.673Z", + "new_balance":"34518.28", + "value":"2350.21" + } + }, + { + "id":"6e7ddbf3-3cf1-499a-8a1d-83ca3869b2cd", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T05:36:56.753Z", + "completed":"2016-03-01T05:36:56.753Z", + "new_balance":"4829.73", + "value":"-4.61" + } + }, + { + "id":"0b230435-3fc8-4007-94cc-aea86722d075", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T21:18:49.122Z", + "completed":"2016-03-02T21:18:49.122Z", + "new_balance":"4822.54", + "value":"-7.19" + } + }, + { + "id":"93bf8783-71cc-4aa6-9b7f-ce53d8263587", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T22:04:21.437Z", + "completed":"2016-03-06T22:04:21.437Z", + "new_balance":"4816.01", + "value":"-6.53" + } + }, + { + "id":"e01ae37f-83a6-489a-8b69-ad9bfde6743b", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T14:44:31.113Z", + "completed":"2016-03-11T14:44:31.113Z", + "new_balance":"4815.36", + "value":"-0.65" + } + }, + { + "id":"020343f6-a868-4590-83df-4ee378117814", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T10:58:00.451Z", + "completed":"2016-03-13T10:58:00.451Z", + "new_balance":"4815.02", + "value":"-0.34" + } + }, + { + "id":"14d03119-12cf-47e0-a4f6-4dfbd32bf2a1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T22:51:21.603Z", + "completed":"2016-03-16T22:51:21.603Z", + "new_balance":"4791.78", + "value":"-23.24" + } + }, + { + "id":"4fe827d6-caa5-4e29-9a16-84002f297604", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T10:37:06.425Z", + "completed":"2016-03-17T10:37:06.425Z", + "new_balance":"4778.68", + "value":"-13.10" + } + }, + { + "id":"311a5eb0-0808-4390-a43c-7d719cb9ac3a", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T19:17:27.368Z", + "completed":"2016-03-17T19:17:27.368Z", + "new_balance":"4774.41", + "value":"-4.27" + } + }, + { + "id":"6cc96bc4-e83c-42d6-a5db-c2e8658afde6", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T07:55:03.972Z", + "completed":"2016-03-19T07:55:03.972Z", + "new_balance":"4774.07", + "value":"-0.34" + } + }, + { + "id":"b754814c-c2ca-4175-b9a8-8b47f1a526e4", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T10:13:03.417Z", + "completed":"2016-03-21T10:13:03.417Z", + "new_balance":"4771.75", + "value":"-2.32" + } + }, + { + "id":"d0fb633f-3259-42ed-9a3f-f4ac780c4c6d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T13:44:31.944Z", + "completed":"2016-03-23T13:44:31.944Z", + "new_balance":"4767.14", + "value":"-4.61" + } + }, + { + "id":"e5b58b27-2d8d-417d-a61e-e17b540be8f7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T17:26:05.752Z", + "completed":"2016-03-24T17:26:05.752Z", + "new_balance":"4766.49", + "value":"-0.65" + } + }, + { + "id":"a7412b2e-e215-447d-b455-820154de452a", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T06:58:05.050Z", + "completed":"2016-03-26T06:58:05.050Z", + "new_balance":"4765.34", + "value":"-1.15" + } + }, + { + "id":"968cec16-168d-40e5-9b98-f45fff2e789e", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T02:45:12.526Z", + "completed":"2016-04-01T02:45:12.526Z", + "new_balance":"4764.19", + "value":"-1.15" + } + }, + { + "id":"adc8368c-7eb2-4a68-8cbf-3a58135cd6c2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T07:31:13.109Z", + "completed":"2016-06-01T07:31:13.109Z", + "new_balance":"4759.58", + "value":"-4.61" + } + }, + { + "id":"1acc5c7a-0935-4d3b-aa90-2182d5a35f21", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T12:17:21.785Z", + "completed":"2016-06-04T12:17:21.785Z", + "new_balance":"4752.39", + "value":"-7.19" + } + }, + { + "id":"cefc4417-12b3-45ca-975e-fe8485e4c1e1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T22:54:55.244Z", + "completed":"2016-06-19T22:54:55.244Z", + "new_balance":"4745.86", + "value":"-6.53" + } + }, + { + "id":"8ed54ddc-75ea-4359-97e2-f9420ba38e06", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T00:53:56.118Z", + "completed":"2016-06-21T00:53:56.118Z", + "new_balance":"4745.21", + "value":"-0.65" + } + }, + { + "id":"dbe8c881-6014-4267-8dfa-bce943825f30", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T04:30:11.808Z", + "completed":"2016-06-24T04:30:11.808Z", + "new_balance":"4744.87", + "value":"-0.34" + } + }, + { + "id":"7daf65d8-5a39-4b83-8baf-b47d393b0705", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T03:20:37.593Z", + "completed":"2016-06-28T03:20:37.593Z", + "new_balance":"4731.77", + "value":"-13.10" + } + }, + { + "id":"8605920f-dbde-4aec-b258-d69c8cbe7ab1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T07:34:37.292Z", + "completed":"2016-06-28T07:34:37.292Z", + "new_balance":"4727.50", + "value":"-4.27" + } + }, + { + "id":"e739a26e-351c-4aca-8c87-aa9442d04133", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T07:49:42.068Z", + "completed":"2016-06-28T07:49:42.068Z", + "new_balance":"4704.26", + "value":"-23.24" + } + }, + { + "id":"490ccc10-b0ca-40e2-b4c6-c57388db7549", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T11:54:45.513Z", + "completed":"2016-06-29T11:54:45.513Z", + "new_balance":"4703.92", + "value":"-0.34" + } + }, + { + "id":"e4c103c7-da81-4be9-b146-79096017e622", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T14:15:52.598Z", + "completed":"2016-06-30T14:15:52.598Z", + "new_balance":"4699.31", + "value":"-4.61" + } + }, + { + "id":"46135d6d-81ac-44f4-ae66-f9ee80539eaf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T15:04:56.324Z", + "completed":"2016-06-30T15:04:56.324Z", + "new_balance":"4698.66", + "value":"-0.65" + } + }, + { + "id":"0f54c32f-e38f-4347-902f-007ad9e35da0", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T20:26:47.596Z", + "completed":"2016-06-30T20:26:47.596Z", + "new_balance":"4696.34", + "value":"-2.32" + } + }, + { + "id":"577791ce-1d6a-4b1b-9038-54814de277fb", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T18:00:50.013Z", + "completed":"2016-09-01T18:00:50.013Z", + "new_balance":"4694.49", + "value":"-1.85" + } + }, + { + "id":"53f8896e-a9c6-41bd-a295-a06ec61545ec", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T16:40:44.682Z", + "completed":"2016-09-02T16:40:44.682Z", + "new_balance":"4687.30", + "value":"-7.19" + } + }, + { + "id":"91aec9da-a7bc-4d84-811e-99df8b23e558", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T06:14:40.635Z", + "completed":"2016-09-07T06:14:40.635Z", + "new_balance":"4680.77", + "value":"-6.53" + } + }, + { + "id":"bfca9e85-cc67-4047-8fb2-7bb00b8868d4", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T23:39:33.379Z", + "completed":"2016-09-11T23:39:33.379Z", + "new_balance":"4680.12", + "value":"-0.65" + } + }, + { + "id":"d77a73d0-5ad7-4989-ae3e-c009cfc533d8", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T20:02:13.438Z", + "completed":"2016-09-15T20:02:13.438Z", + "new_balance":"4678.72", + "value":"-1.40" + } + }, + { + "id":"e6fb4bb5-0b51-45b8-85b0-ac696df6591d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T03:18:24.431Z", + "completed":"2016-09-17T03:18:24.431Z", + "new_balance":"4665.62", + "value":"-13.10" + } + }, + { + "id":"f5add2e4-46e8-468a-9c0b-42fda00da576", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T05:53:54.392Z", + "completed":"2016-09-17T05:53:54.392Z", + "new_balance":"4642.38", + "value":"-23.24" + } + }, + { + "id":"1e552922-6f96-4522-a9ee-2c0badc2faab", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T13:22:04.829Z", + "completed":"2016-09-17T13:22:04.829Z", + "new_balance":"4638.11", + "value":"-4.27" + } + }, + { + "id":"6252f84c-aab5-4070-8ddf-3e565ada071c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T00:11:27.235Z", + "completed":"2016-09-19T00:11:27.235Z", + "new_balance":"4637.77", + "value":"-0.34" + } + }, + { + "id":"ea8b1625-c6dd-414b-8276-4b57285287de", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T23:59:38.557Z", + "completed":"2016-09-21T23:59:38.557Z", + "new_balance":"4635.45", + "value":"-2.32" + } + }, + { + "id":"f3a0a15a-aa9d-4b3e-8b78-a355e2af5661", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T18:20:45.701Z", + "completed":"2016-09-23T18:20:45.701Z", + "new_balance":"4630.84", + "value":"-4.61" + } + }, + { + "id":"229e4ba5-28b6-4556-aeb9-584bb43a6c46", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T21:55:20.259Z", + "completed":"2016-09-24T21:55:20.259Z", + "new_balance":"4630.19", + "value":"-0.65" + } + }, + { + "id":"1b3c110e-43e0-4f7d-899c-c54e8623b74d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T13:05:42.408Z", + "completed":"2016-09-27T13:05:42.408Z", + "new_balance":"4629.04", + "value":"-1.15" + } + }, + { + "id":"274fab24-9c54-47d2-b12c-9753e055e153", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T10:39:06.003Z", + "completed":"2016-10-01T10:39:06.003Z", + "new_balance":"4627.89", + "value":"-1.15" + } + }, + { + "id":"76b692f1-1a98-436a-9da8-6cfc47b3cedc", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T20:06:56.456Z", + "completed":"2016-12-01T20:06:56.456Z", + "new_balance":"4623.28", + "value":"-4.61" + } + }, + { + "id":"269a19ed-a842-42c0-aabc-66c76480cea7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T11:11:21.774Z", + "completed":"2016-12-04T11:11:21.774Z", + "new_balance":"4616.09", + "value":"-7.19" + } + }, + { + "id":"1ebea308-afe6-45d5-b9f7-b309403c2d3c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T05:17:59.178Z", + "completed":"2016-12-19T05:17:59.178Z", + "new_balance":"4609.56", + "value":"-6.53" + } + }, + { + "id":"7b69a4b6-5ff0-4bb8-aafe-8571dd512b60", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T19:27:35.327Z", + "completed":"2016-12-24T19:27:35.327Z", + "new_balance":"4608.91", + "value":"-0.65" + } + }, + { + "id":"bfd55714-f9e6-43fd-9052-4d570b7243e5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T20:17:35.217Z", + "completed":"2016-12-24T20:17:35.217Z", + "new_balance":"4608.57", + "value":"-0.34" + } + }, + { + "id":"58efb1a2-6b05-4fff-8f26-f68e6fb3c1ae", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T11:26:32.937Z", + "completed":"2016-12-28T11:26:32.937Z", + "new_balance":"4604.30", + "value":"-4.27" + } + }, + { + "id":"b271d433-1681-48c4-808f-69fe00d1188c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T19:57:47.501Z", + "completed":"2016-12-28T19:57:47.501Z", + "new_balance":"4591.20", + "value":"-13.10" + } + }, + { + "id":"01112af0-03c5-4cba-afe6-600786abbb0d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T22:14:55.626Z", + "completed":"2016-12-28T22:14:55.626Z", + "new_balance":"4567.96", + "value":"-23.24" + } + }, + { + "id":"5295a899-3855-4e83-8e74-68cc2eb53d99", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T10:44:17.232Z", + "completed":"2016-12-29T10:44:17.232Z", + "new_balance":"4567.62", + "value":"-0.34" + } + }, + { + "id":"82a6ca52-803a-400e-b679-0215017c83ba", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T00:11:22.604Z", + "completed":"2016-12-30T00:11:22.604Z", + "new_balance":"4563.01", + "value":"-4.61" + } + }, + { + "id":"da46f039-d275-49ca-8bef-f1d3cb929862", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T05:00:01.607Z", + "completed":"2016-12-30T05:00:01.607Z", + "new_balance":"4562.36", + "value":"-0.65" + } + }, + { + "id":"05f5dd80-5abf-4e07-a725-b5eb0b9f609f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T07:57:29.737Z", + "completed":"2016-12-30T07:57:29.737Z", + "new_balance":"4560.04", + "value":"-2.32" + } + }, + { + "id":"2e7f5f33-f5d9-45ed-b56f-ed547608afce", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T08:01:30.503Z", + "completed":"2017-03-01T08:01:30.503Z", + "new_balance":"4555.43", + "value":"-4.61" + } + }, + { + "id":"c4ac7fe8-1fce-46ed-b076-f450cf1138d1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T23:07:25.477Z", + "completed":"2017-03-02T23:07:25.477Z", + "new_balance":"4548.24", + "value":"-7.19" + } + }, + { + "id":"84eb2077-3e89-43fe-b348-8ca25a9fa6c3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T02:28:07.056Z", + "completed":"2017-03-06T02:28:07.056Z", + "new_balance":"4541.71", + "value":"-6.53" + } + }, + { + "id":"f3a26ec7-72ff-4ba9-b257-a3bdcd23b7df", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T01:54:06.566Z", + "completed":"2017-03-11T01:54:06.566Z", + "new_balance":"4541.06", + "value":"-0.65" + } + }, + { + "id":"41b90ad3-1fea-4b54-8cf4-80fa1fcca653", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T04:56:57.789Z", + "completed":"2017-03-13T04:56:57.789Z", + "new_balance":"4540.72", + "value":"-0.34" + } + }, + { + "id":"e8ad3a19-67ed-444f-be0c-3939abd558f3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T14:43:32.051Z", + "completed":"2017-03-16T14:43:32.051Z", + "new_balance":"4517.48", + "value":"-23.24" + } + }, + { + "id":"17ba6161-3f1e-414d-a572-ac11ba2a5033", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T13:56:00.519Z", + "completed":"2017-03-17T13:56:00.519Z", + "new_balance":"4513.21", + "value":"-4.27" + } + }, + { + "id":"e00cf6f8-2905-4e13-965b-a818036ef1bb", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T13:56:28.314Z", + "completed":"2017-03-17T13:56:28.314Z", + "new_balance":"4500.11", + "value":"-13.10" + } + }, + { + "id":"a19feabf-c43b-4244-aebf-13d8c8bc74b3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T16:46:08.317Z", + "completed":"2017-03-19T16:46:08.317Z", + "new_balance":"4499.77", + "value":"-0.34" + } + }, + { + "id":"d0933e6e-fa25-44ae-8c3e-c664371e24bf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T10:07:17.802Z", + "completed":"2017-03-21T10:07:17.802Z", + "new_balance":"4497.45", + "value":"-2.32" + } + }, + { + "id":"d2d80354-a549-4d50-835e-314326d62769", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T16:25:05.540Z", + "completed":"2017-03-23T16:25:05.540Z", + "new_balance":"4492.84", + "value":"-4.61" + } + }, + { + "id":"92d3c39e-6b5a-48aa-be7b-48216d8342f2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T06:20:53.452Z", + "completed":"2017-03-24T06:20:53.452Z", + "new_balance":"4492.19", + "value":"-0.65" + } + }, + { + "id":"e683ad85-7d25-411a-8ef8-0f222175e802", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T08:11:42.714Z", + "completed":"2017-03-26T08:11:42.714Z", + "new_balance":"4491.04", + "value":"-1.15" + } + }, + { + "id":"a0434cc9-36f9-452e-8b6a-c1227bad33f9", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T04:02:37.901Z", + "completed":"2017-04-01T04:02:37.901Z", + "new_balance":"4489.89", + "value":"-1.15" + } + }, + { + "id":"9256b955-d80e-46e2-853d-965204d93be5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T10:28:33.459Z", + "completed":"2017-06-01T10:28:33.459Z", + "new_balance":"4485.28", + "value":"-4.61" + } + }, + { + "id":"8e9715cf-8bed-419b-8ade-702f287a36f3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T07:48:45.796Z", + "completed":"2017-06-04T07:48:45.796Z", + "new_balance":"4478.09", + "value":"-7.19" + } + }, + { + "id":"8bfaa032-5e2a-4c1b-a2f2-a6dcfee667c5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T09:40:43.176Z", + "completed":"2017-06-19T09:40:43.176Z", + "new_balance":"4471.56", + "value":"-6.53" + } + }, + { + "id":"2312db9e-2ebb-46ee-837d-246c12f67a07", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T08:15:06.236Z", + "completed":"2017-06-21T08:15:06.236Z", + "new_balance":"4470.91", + "value":"-0.65" + } + }, + { + "id":"b532f268-851c-402e-b98a-f97bd64f3c60", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T05:14:46.751Z", + "completed":"2017-06-24T05:14:46.751Z", + "new_balance":"4470.57", + "value":"-0.34" + } + }, + { + "id":"d21a7b65-bbde-46d1-8f84-4e218a96ca9d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T05:48:09.117Z", + "completed":"2017-06-28T05:48:09.117Z", + "new_balance":"4447.33", + "value":"-23.24" + } + }, + { + "id":"70b3bb62-66c8-4e32-97a8-ed81b223c9ac", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T05:55:27.763Z", + "completed":"2017-06-28T05:55:27.763Z", + "new_balance":"4434.23", + "value":"-13.10" + } + }, + { + "id":"6883dc42-b12a-4d35-96d5-0c0d58cea2e7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T06:22:45.983Z", + "completed":"2017-06-28T06:22:45.983Z", + "new_balance":"4429.96", + "value":"-4.27" + } + }, + { + "id":"02ab4c3d-5005-461b-935b-6d2431586141", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T22:17:38.359Z", + "completed":"2017-06-29T22:17:38.359Z", + "new_balance":"4429.62", + "value":"-0.34" + } + }, + { + "id":"d52a0e66-b72d-4a0e-9366-b3ae1cbbc08f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T07:31:03.554Z", + "completed":"2017-06-30T07:31:03.554Z", + "new_balance":"4428.97", + "value":"-0.65" + } + }, + { + "id":"422c9cfe-cf29-494b-9e39-a366e08a4687", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T18:52:49.288Z", + "completed":"2017-06-30T18:52:49.288Z", + "new_balance":"4424.36", + "value":"-4.61" + } + }, + { + "id":"751d9afa-3857-4b53-8320-b590845de718", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T20:59:40.188Z", + "completed":"2017-06-30T20:59:40.188Z", + "new_balance":"4422.04", + "value":"-2.32" + } + }, + { + "id":"b1e96d31-28cb-4e91-817d-a6950e1bd879", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T16:16:58.725Z", + "completed":"2017-09-01T16:16:58.725Z", + "new_balance":"4420.19", + "value":"-1.85" + } + }, + { + "id":"a376d653-abc3-440c-b60a-d7a5599afd7d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T06:47:26.203Z", + "completed":"2017-09-02T06:47:26.203Z", + "new_balance":"4413.00", + "value":"-7.19" + } + }, + { + "id":"9020418c-89b8-4c7a-b46b-90e7918fc49f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T16:10:56.043Z", + "completed":"2017-09-07T16:10:56.043Z", + "new_balance":"4406.47", + "value":"-6.53" + } + }, + { + "id":"02193e68-a4fa-489a-9038-4b4b70965f43", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T09:57:40.463Z", + "completed":"2017-09-11T09:57:40.463Z", + "new_balance":"4405.82", + "value":"-0.65" + } + }, + { + "id":"67ea0c66-6298-4141-997a-bb34c2be54a2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T09:57:05.250Z", + "completed":"2017-09-15T09:57:05.250Z", + "new_balance":"4404.42", + "value":"-1.40" + } + }, + { + "id":"333abc56-92bc-4c91-96cf-fc419ac104e2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T00:37:13.878Z", + "completed":"2017-09-17T00:37:13.878Z", + "new_balance":"4391.32", + "value":"-13.10" + } + }, + { + "id":"2f59d0a7-720b-4310-afc7-c206d5f5928d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T00:57:16.683Z", + "completed":"2017-09-17T00:57:16.683Z", + "new_balance":"4387.05", + "value":"-4.27" + } + }, + { + "id":"70bbe985-5b85-40ce-a1b5-f7635dfc56dd", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T16:57:12.914Z", + "completed":"2017-09-17T16:57:12.914Z", + "new_balance":"4363.81", + "value":"-23.24" + } + }, + { + "id":"d2654b9f-2216-4e52-8ed1-2eb78788b3ec", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T07:55:32.709Z", + "completed":"2017-09-19T07:55:32.709Z", + "new_balance":"4363.47", + "value":"-0.34" + } + }, + { + "id":"6999c3af-02f0-4e39-8620-a65ad268897c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T08:26:36.285Z", + "completed":"2017-09-21T08:26:36.285Z", + "new_balance":"4361.15", + "value":"-2.32" + } + }, + { + "id":"30e4c8d3-dc5e-467d-99b3-b8ba7820ac55", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T14:10:40.644Z", + "completed":"2017-09-23T14:10:40.644Z", + "new_balance":"4356.54", + "value":"-4.61" + } + }, + { + "id":"e2eb3fa0-d551-412f-a173-9b035d881621", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T13:38:51.787Z", + "completed":"2017-09-24T13:38:51.787Z", + "new_balance":"4355.89", + "value":"-0.65" + } + }, + { + "id":"e2b88fe6-29c9-4c50-85aa-0826d556f66d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T22:50:41.696Z", + "completed":"2017-09-27T22:50:41.696Z", + "new_balance":"4354.74", + "value":"-1.15" + } + }, + { + "id":"35a5aa69-3ebc-48c2-b0c8-29f15debee47", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T00:11:41.276Z", + "completed":"2017-10-01T00:11:41.276Z", + "new_balance":"4353.59", + "value":"-1.15" + } + }, + { + "id":"ad2a04de-a803-4762-a804-d6d30a0b3d3c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T03:57:21.043Z", + "completed":"2017-12-01T03:57:21.043Z", + "new_balance":"4348.98", + "value":"-4.61" + } + }, + { + "id":"b26a58da-a452-4d14-b3be-1a0679bd6871", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T15:27:39.716Z", + "completed":"2017-12-04T15:27:39.716Z", + "new_balance":"4341.79", + "value":"-7.19" + } + }, + { + "id":"07ec365b-7f02-4d07-a445-c10b63c521a1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:04:53.646Z", + "completed":"2017-12-19T10:04:53.646Z", + "new_balance":"4335.26", + "value":"-6.53" + } + }, + { + "id":"5959e20a-1dba-46da-ae36-aa52858a4945", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T03:21:55.546Z", + "completed":"2017-12-24T03:21:55.546Z", + "new_balance":"4334.92", + "value":"-0.34" + } + }, + { + "id":"8040baa4-150b-401d-af7f-0a5c600df897", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T04:14:35.851Z", + "completed":"2017-12-24T04:14:35.851Z", + "new_balance":"4334.27", + "value":"-0.65" + } + }, + { + "id":"78164414-f724-478d-83e1-7c38b2760ab8", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T04:20:00.374Z", + "completed":"2017-12-28T04:20:00.374Z", + "new_balance":"4321.17", + "value":"-13.10" + } + }, + { + "id":"325730b1-081f-4b08-befd-0c4814de2f39", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T10:29:28.345Z", + "completed":"2017-12-28T10:29:28.345Z", + "new_balance":"4297.93", + "value":"-23.24" + } + }, + { + "id":"3cb739e8-1994-4efa-8492-ed16ca92314d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T22:23:45.135Z", + "completed":"2017-12-28T22:23:45.135Z", + "new_balance":"4293.66", + "value":"-4.27" + } + }, + { + "id":"940f8dd7-b464-4f6d-9835-d7b05adadadf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T14:57:34.846Z", + "completed":"2017-12-29T14:57:34.846Z", + "new_balance":"4293.32", + "value":"-0.34" + } + }, + { + "id":"be8ec587-0302-44b8-8be5-35b2064fcb8e", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T13:58:22.296Z", + "completed":"2017-12-30T13:58:22.296Z", + "new_balance":"4292.67", + "value":"-0.65" + } + }, + { + "id":"32ebf757-157a-4ff5-a990-52499c047294", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T19:41:52.524Z", + "completed":"2017-12-30T19:41:52.524Z", + "new_balance":"4288.06", + "value":"-4.61" + } + }, + { + "id":"3f5e87e5-3af3-4742-8e17-a8b8b53a4d59", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T21:09:27.700Z", + "completed":"2017-12-30T21:09:27.700Z", + "new_balance":"4285.74", + "value":"-2.32" + } + }, + { + "id":"806d507b-1d30-4383-9798-f28afc679445", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T08:09:35.910Z", + "completed":"2016-01-01T08:09:35.910Z", + "new_balance":"2638.04", + "value":"140.98" + } + }, + { + "id":"687cb485-4e83-47c5-9d15-c57dfbb8181f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T21:06:44.982Z", + "completed":"2016-01-01T21:06:44.982Z", + "new_balance":"2820.74", + "value":"182.70" + } + }, + { + "id":"62ad21a9-14fe-448c-b442-cc5b185d2ccc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T09:40:21.070Z", + "completed":"2016-01-02T09:40:21.070Z", + "new_balance":"2789.02", + "value":"-31.72" + } + }, + { + "id":"d6ff570b-f2bf-4a38-a1a6-90ae3bc55c39", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T03:48:58.822Z", + "completed":"2016-01-03T03:48:58.822Z", + "new_balance":"2784.20", + "value":"-4.82" + } + }, + { + "id":"91abe846-09d7-4819-ae52-8c383219397f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T06:50:38.530Z", + "completed":"2016-01-03T06:50:38.530Z", + "new_balance":"2782.46", + "value":"-1.74" + } + }, + { + "id":"8ea5577b-3be7-4fc9-9a47-099719a70ab4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T16:52:53.980Z", + "completed":"2016-01-03T16:52:53.980Z", + "new_balance":"2781.79", + "value":"-0.67" + } + }, + { + "id":"d3f1b5c6-7693-44fc-a059-c626c7382d64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:51:49.633Z", + "completed":"2016-01-04T18:51:49.633Z", + "new_balance":"2780.39", + "value":"-1.40" + } + }, + { + "id":"1ebd2102-31cb-47f6-817d-f6c3ad0faf42", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T19:17:36.761Z", + "completed":"2016-01-05T19:17:36.761Z", + "new_balance":"2779.87", + "value":"-0.52" + } + }, + { + "id":"4ef3b992-b3f4-4562-9375-ec7da2764c70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T10:59:59.855Z", + "completed":"2016-01-07T10:59:59.855Z", + "new_balance":"2777.28", + "value":"-2.59" + } + }, + { + "id":"83c168e7-8c4d-4053-b8a4-fcaf2baccf83", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T13:26:14.898Z", + "completed":"2016-01-07T13:26:14.898Z", + "new_balance":"2775.68", + "value":"-1.60" + } + }, + { + "id":"d8fc80a1-1457-4c28-86c7-e6b939d985d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T01:11:41.225Z", + "completed":"2016-01-08T01:11:41.225Z", + "new_balance":"2773.81", + "value":"-1.87" + } + }, + { + "id":"25fb1320-dcb0-4a00-92c9-1f80194a8edb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T17:06:11.217Z", + "completed":"2016-01-08T17:06:11.217Z", + "new_balance":"2772.13", + "value":"-1.68" + } + }, + { + "id":"437cbe5f-9910-425b-928e-7dda177392dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T12:14:44.747Z", + "completed":"2016-01-09T12:14:44.747Z", + "new_balance":"2766.00", + "value":"-6.13" + } + }, + { + "id":"0aab0069-309e-4c11-bbc2-b1dbfa2a177e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T15:02:33.262Z", + "completed":"2016-01-09T15:02:33.262Z", + "new_balance":"2763.69", + "value":"-2.31" + } + }, + { + "id":"73a1b394-06c2-4457-9e78-9d0654527788", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:24:38.033Z", + "completed":"2016-01-10T00:24:38.033Z", + "new_balance":"2755.99", + "value":"-7.70" + } + }, + { + "id":"f2a87795-5a17-45d9-b9a0-ca0368d73c02", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T18:55:10.722Z", + "completed":"2016-01-10T18:55:10.722Z", + "new_balance":"2751.46", + "value":"-4.53" + } + }, + { + "id":"796ebd7e-0f7e-4fc7-b090-d30a87d11ff5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T05:50:43.731Z", + "completed":"2016-01-11T05:50:43.731Z", + "new_balance":"2750.99", + "value":"-0.47" + } + }, + { + "id":"8b6cddae-9b32-4126-972b-067e1d538d90", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T10:44:37.626Z", + "completed":"2016-01-11T10:44:37.626Z", + "new_balance":"2759.98", + "value":"8.99" + } + }, + { + "id":"dde9e1ac-2e17-4c15-9e82-b0f96cc2ea7e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T19:58:33.795Z", + "completed":"2016-01-11T19:58:33.795Z", + "new_balance":"2754.50", + "value":"-5.48" + } + }, + { + "id":"53b4de51-4661-46ab-9b1f-c6a2b5795897", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:32:03.864Z", + "completed":"2016-01-12T09:32:03.864Z", + "new_balance":"2753.69", + "value":"-0.81" + } + }, + { + "id":"68c311bf-e2ee-41b1-b100-10f5fd7477d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T19:05:40.673Z", + "completed":"2016-01-15T19:05:40.673Z", + "new_balance":"2751.26", + "value":"-2.43" + } + }, + { + "id":"075cad1b-a6ea-45cd-90e0-93f3b17cc735", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T14:07:02.424Z", + "completed":"2016-01-16T14:07:02.424Z", + "new_balance":"2747.96", + "value":"-3.30" + } + }, + { + "id":"84e583b5-f817-4318-bbde-185d941c12ac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T05:48:13.548Z", + "completed":"2016-01-17T05:48:13.548Z", + "new_balance":"2746.39", + "value":"-1.57" + } + }, + { + "id":"a276780f-f1ee-4563-b988-acfd22d26e9f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T13:58:17.284Z", + "completed":"2016-01-20T13:58:17.284Z", + "new_balance":"2745.87", + "value":"-0.52" + } + }, + { + "id":"2adfa78e-df29-4c66-8029-437effc66872", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:39:23.380Z", + "completed":"2016-01-21T04:39:23.380Z", + "new_balance":"2742.15", + "value":"-3.72" + } + }, + { + "id":"09a0ebbf-d2ab-43e8-aad8-761ca3d64fa1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T16:46:52.104Z", + "completed":"2016-01-23T16:46:52.104Z", + "new_balance":"2719.79", + "value":"-22.36" + } + }, + { + "id":"1b3f597e-da2a-40a2-93fb-051a325a840d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T21:57:41.898Z", + "completed":"2016-02-01T21:57:41.898Z", + "new_balance":"2860.77", + "value":"140.98" + } + }, + { + "id":"ad189f7e-b072-46fe-9d2b-11520f4f95f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T12:57:11.315Z", + "completed":"2016-02-03T12:57:11.315Z", + "new_balance":"2829.05", + "value":"-31.72" + } + }, + { + "id":"246d2ebe-25d0-4d24-9bf4-7b67660b28c0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T16:12:32.962Z", + "completed":"2016-02-03T16:12:32.962Z", + "new_balance":"2815.95", + "value":"-13.10" + } + }, + { + "id":"e6040b8f-5660-4600-9848-9d064d0023aa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T10:05:00.010Z", + "completed":"2016-02-04T10:05:00.010Z", + "new_balance":"2814.63", + "value":"-1.32" + } + }, + { + "id":"5c252a72-fed8-4693-9da5-85aa5b224fff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T22:38:01.603Z", + "completed":"2016-02-05T22:38:01.603Z", + "new_balance":"2813.96", + "value":"-0.67" + } + }, + { + "id":"1c530618-70c1-43cf-9b7e-1172e9a60cd6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T20:37:08.554Z", + "completed":"2016-02-06T20:37:08.554Z", + "new_balance":"2811.77", + "value":"-2.19" + } + }, + { + "id":"39b04d38-43d0-4576-84ee-d7f3f705ea45", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T04:21:22.202Z", + "completed":"2016-02-07T04:21:22.202Z", + "new_balance":"2809.46", + "value":"-2.31" + } + }, + { + "id":"87d086de-0b09-4140-bb21-d4674d58e92f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T07:27:02.453Z", + "completed":"2016-02-07T07:27:02.453Z", + "new_balance":"2804.89", + "value":"-4.57" + } + }, + { + "id":"02eb562b-f943-4703-ac9b-a8b03a1f22da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T08:01:06.205Z", + "completed":"2016-02-07T08:01:06.205Z", + "new_balance":"2797.19", + "value":"-7.70" + } + }, + { + "id":"57cdc620-6f0c-4be8-b058-498bda622ce9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T18:34:40.199Z", + "completed":"2016-02-08T18:34:40.199Z", + "new_balance":"2793.05", + "value":"-4.14" + } + }, + { + "id":"3101b537-61a9-4ecc-93b1-956710832c4b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T07:19:56.406Z", + "completed":"2016-02-09T07:19:56.406Z", + "new_balance":"2790.65", + "value":"-2.40" + } + }, + { + "id":"8dd9849b-a5da-40a9-8cbc-d475607a0232", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T18:11:15.049Z", + "completed":"2016-02-10T18:11:15.049Z", + "new_balance":"2790.13", + "value":"-0.52" + } + }, + { + "id":"5b5a0fcb-1688-4f1e-80d6-579779761a25", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T21:37:32.441Z", + "completed":"2016-02-12T21:37:32.441Z", + "new_balance":"2787.25", + "value":"-2.88" + } + }, + { + "id":"5396016c-ec48-45f4-885c-8fd7025ac5a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T22:27:34.211Z", + "completed":"2016-02-14T22:27:34.211Z", + "new_balance":"2784.94", + "value":"-2.31" + } + }, + { + "id":"ce8e48c8-fe59-48f8-8004-3664f211291b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T00:48:00.632Z", + "completed":"2016-02-16T00:48:00.632Z", + "new_balance":"2780.33", + "value":"-4.61" + } + }, + { + "id":"2a0a369e-7233-47e8-850a-bf970b95c305", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T08:17:34.958Z", + "completed":"2016-02-16T08:17:34.958Z", + "new_balance":"2779.86", + "value":"-0.47" + } + }, + { + "id":"d55a588e-d6fa-4407-80e1-1bf4917083aa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T01:37:36.320Z", + "completed":"2016-02-18T01:37:36.320Z", + "new_balance":"2779.27", + "value":"-0.59" + } + }, + { + "id":"97fc8419-07fb-4e66-8637-aa1321447f3c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T14:39:01.306Z", + "completed":"2016-02-21T14:39:01.306Z", + "new_balance":"2775.55", + "value":"-3.72" + } + }, + { + "id":"eb384920-8700-4c9b-8064-9e2efffca05f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T15:54:13.822Z", + "completed":"2016-02-21T15:54:13.822Z", + "new_balance":"2786.95", + "value":"11.40" + } + }, + { + "id":"9971b40a-7740-439d-9786-b6c2a670f892", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T10:22:46.267Z", + "completed":"2016-02-27T10:22:46.267Z", + "new_balance":"2764.59", + "value":"-22.36" + } + }, + { + "id":"6b19d3d2-a2ed-4e2d-bb16-9ca5a5cb70c3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T09:16:05.445Z", + "completed":"2016-03-01T09:16:05.445Z", + "new_balance":"2905.57", + "value":"140.98" + } + }, + { + "id":"8cfa6646-71d8-40fb-9e92-5b3c3b86c598", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T16:55:14.101Z", + "completed":"2016-03-03T16:55:14.101Z", + "new_balance":"2873.85", + "value":"-31.72" + } + }, + { + "id":"97131667-ef34-482c-b247-50f488460d67", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T06:04:26.297Z", + "completed":"2016-03-04T06:04:26.297Z", + "new_balance":"2869.24", + "value":"-4.61" + } + }, + { + "id":"59c7e4f7-3ea8-423d-99ab-7306e796b468", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T13:51:27.852Z", + "completed":"2016-03-04T13:51:27.852Z", + "new_balance":"2865.94", + "value":"-3.30" + } + }, + { + "id":"86999348-c2a3-42c1-a071-0e36ea504ed0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T15:23:11.105Z", + "completed":"2016-03-04T15:23:11.105Z", + "new_balance":"2862.48", + "value":"-3.46" + } + }, + { + "id":"2e676edc-6c7e-4684-8624-53bd7ccc60a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T21:05:40.945Z", + "completed":"2016-03-04T21:05:40.945Z", + "new_balance":"2860.43", + "value":"-2.05" + } + }, + { + "id":"67f539a6-5de5-42de-9891-e76040c16095", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T04:19:02.491Z", + "completed":"2016-03-05T04:19:02.491Z", + "new_balance":"2853.68", + "value":"-6.75" + } + }, + { + "id":"65f6082e-ad61-473d-b46f-053a061859ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T09:25:05.755Z", + "completed":"2016-03-05T09:25:05.755Z", + "new_balance":"2852.38", + "value":"-1.30" + } + }, + { + "id":"b6a35dce-7a91-4c04-a0d0-3f550eac2019", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T11:16:06.322Z", + "completed":"2016-03-05T11:16:06.322Z", + "new_balance":"2851.91", + "value":"-0.47" + } + }, + { + "id":"3ac99137-1830-489f-a709-031e3e5fa4c9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T19:31:39.373Z", + "completed":"2016-03-05T19:31:39.373Z", + "new_balance":"2844.21", + "value":"-7.70" + } + }, + { + "id":"da32eb1c-f06d-442a-9f0c-60c8a563ebbd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T02:30:36.132Z", + "completed":"2016-03-06T02:30:36.132Z", + "new_balance":"2836.47", + "value":"-7.74" + } + }, + { + "id":"729658be-608b-48b9-acea-0324a78dbe46", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T18:23:34.497Z", + "completed":"2016-03-06T18:23:34.497Z", + "new_balance":"2829.83", + "value":"-6.64" + } + }, + { + "id":"445f55a0-ba0e-43c2-828d-cca20101d681", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T00:37:43.259Z", + "completed":"2016-03-07T00:37:43.259Z", + "new_balance":"2829.03", + "value":"-0.80" + } + }, + { + "id":"d2a7d7f4-b241-4594-b77e-5844ec01de61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T21:09:51.220Z", + "completed":"2016-03-07T21:09:51.220Z", + "new_balance":"2828.56", + "value":"-0.47" + } + }, + { + "id":"b0e8017e-c334-4e6f-9883-9501b25b957a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T05:05:09.662Z", + "completed":"2016-03-08T05:05:09.662Z", + "new_balance":"2827.76", + "value":"-0.80" + } + }, + { + "id":"370ca107-6671-49fa-8557-566c477aca79", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T08:12:46.471Z", + "completed":"2016-03-08T08:12:46.471Z", + "new_balance":"2826.99", + "value":"-0.77" + } + }, + { + "id":"5724f671-3398-4ab1-ae0f-7b64e85489ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T12:11:55.545Z", + "completed":"2016-03-10T12:11:55.545Z", + "new_balance":"2824.28", + "value":"-2.71" + } + }, + { + "id":"fe1d91c2-729e-4466-afb3-e18bd313962a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T05:58:39.360Z", + "completed":"2016-03-11T05:58:39.360Z", + "new_balance":"2822.68", + "value":"-1.60" + } + }, + { + "id":"0257a4db-da91-45ab-8e3c-51d023ace581", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T08:22:40.693Z", + "completed":"2016-03-11T08:22:40.693Z", + "new_balance":"2819.96", + "value":"-2.72" + } + }, + { + "id":"fe4672df-c7ac-4ffb-ac13-c85f93c82109", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T14:22:00.057Z", + "completed":"2016-03-11T14:22:00.057Z", + "new_balance":"2819.49", + "value":"-0.47" + } + }, + { + "id":"7f310f6c-ca21-4068-9be8-6fa065082f64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T09:57:23.801Z", + "completed":"2016-03-12T09:57:23.801Z", + "new_balance":"2816.90", + "value":"-2.59" + } + }, + { + "id":"b9cb924b-f1db-4a3b-9d30-d62191046509", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T16:30:47.564Z", + "completed":"2016-03-12T16:30:47.564Z", + "new_balance":"2816.43", + "value":"-0.47" + } + }, + { + "id":"6930ce7c-1831-4a98-a8c8-333ef69aadab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:14:00.160Z", + "completed":"2016-03-12T20:14:00.160Z", + "new_balance":"2810.27", + "value":"-6.16" + } + }, + { + "id":"4b91f110-29b1-4cbb-a6a8-240291a54852", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:18:10.542Z", + "completed":"2016-03-12T20:18:10.542Z", + "new_balance":"2800.12", + "value":"-10.15" + } + }, + { + "id":"5cf11efc-f8c0-4822-bd68-9649fe9b23df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T06:11:49.731Z", + "completed":"2016-03-13T06:11:49.731Z", + "new_balance":"2797.54", + "value":"-2.58" + } + }, + { + "id":"53cb3c91-86b9-4ddc-902c-73357e4d800b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T21:56:53.409Z", + "completed":"2016-03-13T21:56:53.409Z", + "new_balance":"2797.07", + "value":"-0.47" + } + }, + { + "id":"3496c4cd-a7b8-4aa2-81d9-f6208f93ddef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T11:02:19.516Z", + "completed":"2016-03-15T11:02:19.516Z", + "new_balance":"2792.95", + "value":"-4.12" + } + }, + { + "id":"1740fb31-1b6a-4e62-8eb3-278c96c9b480", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T16:34:49.648Z", + "completed":"2016-03-15T16:34:49.648Z", + "new_balance":"2788.03", + "value":"-4.92" + } + }, + { + "id":"a1f75dfb-0138-434b-9a84-842e47fe412a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T15:24:48.541Z", + "completed":"2016-03-17T15:24:48.541Z", + "new_balance":"2783.64", + "value":"-4.39" + } + }, + { + "id":"30f773ad-20a1-4e68-b34e-dc83be4edcdf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T03:16:48.352Z", + "completed":"2016-03-18T03:16:48.352Z", + "new_balance":"2774.03", + "value":"-9.61" + } + }, + { + "id":"ac97b1ca-996f-4c58-a303-634b93860343", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T09:49:31.381Z", + "completed":"2016-03-20T09:49:31.381Z", + "new_balance":"2761.67", + "value":"-12.36" + } + }, + { + "id":"2793f701-8e5d-4d7f-98a4-59bf81176a3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T05:52:32.690Z", + "completed":"2016-03-22T05:52:32.690Z", + "new_balance":"2758.20", + "value":"-3.47" + } + }, + { + "id":"bf30fb6e-9acd-4036-bc6b-fd84e02a5c1c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T10:45:11.535Z", + "completed":"2016-03-25T10:45:11.535Z", + "new_balance":"2757.73", + "value":"-0.47" + } + }, + { + "id":"76091344-bc36-43b1-b7ea-8992f5242f23", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T14:14:30.188Z", + "completed":"2016-03-25T14:14:30.188Z", + "new_balance":"2756.58", + "value":"-1.15" + } + }, + { + "id":"23097220-e852-48a4-b4b8-550bd9fc6e49", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T21:47:12.318Z", + "completed":"2016-03-26T21:47:12.318Z", + "new_balance":"2754.19", + "value":"-2.39" + } + }, + { + "id":"6d0f6aa1-d49c-401c-8b52-e05bd0bc94ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T22:22:43.516Z", + "completed":"2016-03-26T22:22:43.516Z", + "new_balance":"2752.84", + "value":"-1.35" + } + }, + { + "id":"8e94f206-5dc7-4e3d-be09-64e17df0e4d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T16:40:12.683Z", + "completed":"2016-03-27T16:40:12.683Z", + "new_balance":"2751.64", + "value":"-1.20" + } + }, + { + "id":"ed1c317b-440a-4a3f-9efa-6d74d10a4296", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T07:15:58.593Z", + "completed":"2016-03-28T07:15:58.593Z", + "new_balance":"2747.92", + "value":"-3.72" + } + }, + { + "id":"4020e9cb-a301-4666-89de-68a6f4f50ed0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T23:14:44.433Z", + "completed":"2016-03-31T23:14:44.433Z", + "new_balance":"2725.56", + "value":"-22.36" + } + }, + { + "id":"5417abb2-31d9-45d7-acdb-8cbc450d0ba8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T15:45:12.591Z", + "completed":"2016-04-01T15:45:12.591Z", + "new_balance":"2693.84", + "value":"-31.72" + } + }, + { + "id":"f4ea57fc-d727-467c-8ec3-adc38bf813db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T17:59:06.015Z", + "completed":"2016-04-01T17:59:06.015Z", + "new_balance":"2834.82", + "value":"140.98" + } + }, + { + "id":"334b514e-ef2d-404d-93a6-cd28877818e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T21:39:13.174Z", + "completed":"2016-04-01T21:39:13.174Z", + "new_balance":"3017.52", + "value":"182.70" + } + }, + { + "id":"29c2598b-8842-4dc3-9477-3326a46cee23", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:18:30.999Z", + "completed":"2016-04-03T08:18:30.999Z", + "new_balance":"3012.70", + "value":"-4.82" + } + }, + { + "id":"bcd2fe4a-a231-47cd-b096-98c01051b895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T15:52:35.297Z", + "completed":"2016-04-03T15:52:35.297Z", + "new_balance":"3012.03", + "value":"-0.67" + } + }, + { + "id":"318ab95f-543f-471b-9fc1-b34481f2939e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T21:38:08.955Z", + "completed":"2016-04-03T21:38:08.955Z", + "new_balance":"3010.29", + "value":"-1.74" + } + }, + { + "id":"58bc26d4-61f4-41ce-90f7-94112359f215", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T06:20:05.317Z", + "completed":"2016-04-05T06:20:05.317Z", + "new_balance":"3009.77", + "value":"-0.52" + } + }, + { + "id":"8175e02f-937b-4a3d-9278-34e0868bc5fb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T18:44:11.064Z", + "completed":"2016-04-05T18:44:11.064Z", + "new_balance":"3008.37", + "value":"-1.40" + } + }, + { + "id":"6341934f-c745-41a0-8b4d-b4a86655a1ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T06:54:18.248Z", + "completed":"2016-04-06T06:54:18.248Z", + "new_balance":"3006.77", + "value":"-1.60" + } + }, + { + "id":"9eb90478-29ea-4adf-9085-309219a8c03b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T12:18:48.263Z", + "completed":"2016-04-09T12:18:48.263Z", + "new_balance":"3004.18", + "value":"-2.59" + } + }, + { + "id":"0d7f9457-25c8-4177-b91f-c39dde6f951a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T14:05:16.732Z", + "completed":"2016-04-10T14:05:16.732Z", + "new_balance":"3002.50", + "value":"-1.68" + } + }, + { + "id":"46e9b54d-5c5b-46e1-8713-2f9941aa2408", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T05:27:39.296Z", + "completed":"2016-04-11T05:27:39.296Z", + "new_balance":"3000.19", + "value":"-2.31" + } + }, + { + "id":"85c974b8-2747-4085-8a4d-8c8de547e57e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:24:05.896Z", + "completed":"2016-04-11T14:24:05.896Z", + "new_balance":"2998.32", + "value":"-1.87" + } + }, + { + "id":"423e79a6-edf9-46bd-aec8-7630509e7244", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T05:12:45.721Z", + "completed":"2016-04-13T05:12:45.721Z", + "new_balance":"2992.19", + "value":"-6.13" + } + }, + { + "id":"30d6deae-0337-40fd-a746-429a6f341e5f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T13:47:11.336Z", + "completed":"2016-04-13T13:47:11.336Z", + "new_balance":"2984.49", + "value":"-7.70" + } + }, + { + "id":"7809ddbc-7068-4d12-982b-fbab266083ab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T08:12:15.166Z", + "completed":"2016-04-15T08:12:15.166Z", + "new_balance":"2979.96", + "value":"-4.53" + } + }, + { + "id":"6c607593-e659-4dd9-b4cb-9764b6e71e6c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T00:56:01.251Z", + "completed":"2016-04-16T00:56:01.251Z", + "new_balance":"2979.49", + "value":"-0.47" + } + }, + { + "id":"89278d1f-c2de-40a8-9cfb-6a76ae2309e6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T06:12:43.926Z", + "completed":"2016-04-16T06:12:43.926Z", + "new_balance":"2978.68", + "value":"-0.81" + } + }, + { + "id":"18c461f9-a72d-48b1-b1f2-b179db22e1c7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T04:59:21.711Z", + "completed":"2016-04-18T04:59:21.711Z", + "new_balance":"2973.20", + "value":"-5.48" + } + }, + { + "id":"8658d3cc-d547-4251-b66e-2af055328c5b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T19:30:26.132Z", + "completed":"2016-04-23T19:30:26.132Z", + "new_balance":"2970.77", + "value":"-2.43" + } + }, + { + "id":"7a5bd3ae-2ecc-462e-b048-a4bfb266e5c8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T04:07:22.378Z", + "completed":"2016-04-24T04:07:22.378Z", + "new_balance":"2969.20", + "value":"-1.57" + } + }, + { + "id":"11893bb0-35b9-47b4-8172-8fb3c86fbec3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T11:08:00.466Z", + "completed":"2016-04-24T11:08:00.466Z", + "new_balance":"2965.90", + "value":"-3.30" + } + }, + { + "id":"58447d8a-5b1d-43dc-a211-a5331465b81d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T18:14:30.051Z", + "completed":"2016-04-26T18:14:30.051Z", + "new_balance":"2965.38", + "value":"-0.52" + } + }, + { + "id":"a95912f2-4e3b-4572-963e-507da1a10e95", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T10:53:52.646Z", + "completed":"2016-04-28T10:53:52.646Z", + "new_balance":"2961.66", + "value":"-3.72" + } + }, + { + "id":"4ed726fe-7dc7-411e-a405-f3c84df2ee3c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T22:34:45.412Z", + "completed":"2016-04-28T22:34:45.412Z", + "new_balance":"2939.30", + "value":"-22.36" + } + }, + { + "id":"6489558a-5fd8-4a1b-a26c-450b06160654", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T04:39:20.605Z", + "completed":"2016-05-02T04:39:20.605Z", + "new_balance":"2938.63", + "value":"-0.67" + } + }, + { + "id":"1661df28-b433-460b-a35d-bc663a138666", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T04:43:26.374Z", + "completed":"2016-05-02T04:43:26.374Z", + "new_balance":"2937.31", + "value":"-1.32" + } + }, + { + "id":"a4880a05-65c6-4a68-8677-62d4776df6e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T11:57:55.906Z", + "completed":"2016-05-02T11:57:55.906Z", + "new_balance":"2924.21", + "value":"-13.10" + } + }, + { + "id":"7e4b0783-90e3-4a76-b742-f755a3d0abb0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T12:27:38.241Z", + "completed":"2016-05-02T12:27:38.241Z", + "new_balance":"2892.49", + "value":"-31.72" + } + }, + { + "id":"f0ca8ddb-8d17-4f92-8f35-45ced4afee29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T00:36:08.255Z", + "completed":"2016-05-06T00:36:08.255Z", + "new_balance":"2890.18", + "value":"-2.31" + } + }, + { + "id":"dbd7ef72-e269-4ee6-a93b-fe97a3043585", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T21:11:15.831Z", + "completed":"2016-05-06T21:11:15.831Z", + "new_balance":"2887.99", + "value":"-2.19" + } + }, + { + "id":"42084cf1-f4d7-47e8-9528-ea15d8a41b25", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T01:33:24.059Z", + "completed":"2016-05-07T01:33:24.059Z", + "new_balance":"2883.42", + "value":"-4.57" + } + }, + { + "id":"c18c1353-67bd-4ffb-9b12-54e3ab5a5895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T07:03:15.572Z", + "completed":"2016-05-07T07:03:15.572Z", + "new_balance":"2875.72", + "value":"-7.70" + } + }, + { + "id":"0411b321-8df6-47eb-a716-6aadb867e6c7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T13:57:30.812Z", + "completed":"2016-05-09T13:57:30.812Z", + "new_balance":"3016.70", + "value":"140.98" + } + }, + { + "id":"c84a687d-5833-4855-9e09-f10575cb0424", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T09:47:33.471Z", + "completed":"2016-05-14T09:47:33.471Z", + "new_balance":"3014.30", + "value":"-2.40" + } + }, + { + "id":"80f49147-611c-4412-8540-107c0e526412", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:32:01.235Z", + "completed":"2016-05-14T21:32:01.235Z", + "new_balance":"3010.16", + "value":"-4.14" + } + }, + { + "id":"dbb05d51-f2bf-49ae-be6c-3cf8435a02d2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T03:12:47.736Z", + "completed":"2016-05-16T03:12:47.736Z", + "new_balance":"3009.64", + "value":"-0.52" + } + }, + { + "id":"142418a0-4ad6-45d9-b1f3-bd7d66aa8f53", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T04:08:00.533Z", + "completed":"2016-05-21T04:08:00.533Z", + "new_balance":"3006.76", + "value":"-2.88" + } + }, + { + "id":"33e35dbc-06d9-4c41-a0df-ce2fe3f01778", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T05:42:37.803Z", + "completed":"2016-05-23T05:42:37.803Z", + "new_balance":"3004.45", + "value":"-2.31" + } + }, + { + "id":"fbf24539-59bf-4d1f-8f9a-2de7a6fbbf61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T10:55:44.238Z", + "completed":"2016-05-23T10:55:44.238Z", + "new_balance":"3003.98", + "value":"-0.47" + } + }, + { + "id":"b912a737-5670-4826-847a-24b65cb42a95", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T22:42:05.650Z", + "completed":"2016-05-24T22:42:05.650Z", + "new_balance":"2999.37", + "value":"-4.61" + } + }, + { + "id":"90503fbc-d097-4f93-bea7-48e676ed6ff1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T07:18:10.855Z", + "completed":"2016-05-27T07:18:10.855Z", + "new_balance":"2998.78", + "value":"-0.59" + } + }, + { + "id":"bf6e083a-edd4-4de2-8eb7-1ed4b35cd08e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T14:36:19.021Z", + "completed":"2016-05-30T14:36:19.021Z", + "new_balance":"2976.42", + "value":"-22.36" + } + }, + { + "id":"5398c450-9c93-4694-aabc-3f596f890f3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T14:47:27.543Z", + "completed":"2016-05-30T14:47:27.543Z", + "new_balance":"2972.70", + "value":"-3.72" + } + }, + { + "id":"4c1abde2-541b-4e18-a537-9b155435636b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T10:08:37.270Z", + "completed":"2016-06-01T10:08:37.270Z", + "new_balance":"3113.68", + "value":"140.98" + } + }, + { + "id":"2788d6a5-a652-48e1-9b28-1e90d3bb138a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T17:00:10.384Z", + "completed":"2016-06-01T17:00:10.384Z", + "new_balance":"3081.96", + "value":"-31.72" + } + }, + { + "id":"938a88d7-0e00-45c5-b486-2743a2819931", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:18:15.608Z", + "completed":"2016-06-04T01:18:15.608Z", + "new_balance":"3078.50", + "value":"-3.46" + } + }, + { + "id":"548b56a0-d133-49d3-ad16-eacdf9abf3f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T07:33:49.609Z", + "completed":"2016-06-04T07:33:49.609Z", + "new_balance":"3076.45", + "value":"-2.05" + } + }, + { + "id":"9986689b-0a0b-4df8-b756-829f79c06ece", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T04:26:46.799Z", + "completed":"2016-06-11T04:26:46.799Z", + "new_balance":"3071.84", + "value":"-4.61" + } + }, + { + "id":"c2a236a3-c21e-4751-826f-7e4d975d0212", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T12:15:50.808Z", + "completed":"2016-06-11T12:15:50.808Z", + "new_balance":"3068.54", + "value":"-3.30" + } + }, + { + "id":"72155862-1d99-491a-8047-ad17275e6d7e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T05:12:44.069Z", + "completed":"2016-06-12T05:12:44.069Z", + "new_balance":"3067.24", + "value":"-1.30" + } + }, + { + "id":"a8016f63-dd0b-44d3-9134-ca919876477c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T09:14:49.088Z", + "completed":"2016-06-12T09:14:49.088Z", + "new_balance":"3066.77", + "value":"-0.47" + } + }, + { + "id":"7e9e2486-0b5b-4229-b208-e7332df9addc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T23:07:55.384Z", + "completed":"2016-06-12T23:07:55.384Z", + "new_balance":"3059.07", + "value":"-7.70" + } + }, + { + "id":"d4b24551-3ad1-4c21-b891-5c18f92d607e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T00:59:26.906Z", + "completed":"2016-06-13T00:59:26.906Z", + "new_balance":"3051.33", + "value":"-7.74" + } + }, + { + "id":"23cf5153-29ea-417a-9936-c48f432985d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T15:32:17.558Z", + "completed":"2016-06-13T15:32:17.558Z", + "new_balance":"3044.58", + "value":"-6.75" + } + }, + { + "id":"ff6b31f5-87ee-47cc-bfd8-341d4066a943", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T19:40:58.863Z", + "completed":"2016-06-13T19:40:58.863Z", + "new_balance":"3037.94", + "value":"-6.64" + } + }, + { + "id":"305e9877-3a9f-4376-8ab3-8e99194be1de", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T17:06:05.323Z", + "completed":"2016-06-14T17:06:05.323Z", + "new_balance":"3037.14", + "value":"-0.80" + } + }, + { + "id":"2d85a5d9-8ac1-4bdd-b347-a40099ccff58", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T17:36:30.022Z", + "completed":"2016-06-14T17:36:30.022Z", + "new_balance":"3036.34", + "value":"-0.80" + } + }, + { + "id":"8fb16bb6-487b-43e5-8656-4b6315c7ae64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T19:43:54.375Z", + "completed":"2016-06-14T19:43:54.375Z", + "new_balance":"3035.87", + "value":"-0.47" + } + }, + { + "id":"b812de28-39f7-4e80-88f3-322afea24e52", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T02:05:04.667Z", + "completed":"2016-06-15T02:05:04.667Z", + "new_balance":"3033.16", + "value":"-2.71" + } + }, + { + "id":"130f6c02-623b-4a6b-a616-430808967b74", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:44:16.215Z", + "completed":"2016-06-15T05:44:16.215Z", + "new_balance":"3032.39", + "value":"-0.77" + } + }, + { + "id":"e2cb04fd-9642-4f44-9570-1afc96daa122", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T21:39:52.732Z", + "completed":"2016-06-15T21:39:52.732Z", + "new_balance":"3031.92", + "value":"-0.47" + } + }, + { + "id":"073002b6-2d7c-4e31-a9fe-f7f843f5ace6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T00:49:47.014Z", + "completed":"2016-06-16T00:49:47.014Z", + "new_balance":"3029.20", + "value":"-2.72" + } + }, + { + "id":"546752c7-fa13-45fe-8e9a-cd991af48ee0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T21:29:18.209Z", + "completed":"2016-06-17T21:29:18.209Z", + "new_balance":"3027.60", + "value":"-1.60" + } + }, + { + "id":"c786c99b-3a71-444a-a83c-8a674ea22e13", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T05:33:42.325Z", + "completed":"2016-06-18T05:33:42.325Z", + "new_balance":"3021.44", + "value":"-6.16" + } + }, + { + "id":"725f1ebe-0719-4182-94e4-a783a3d43e80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T12:35:46.397Z", + "completed":"2016-06-18T12:35:46.397Z", + "new_balance":"3020.97", + "value":"-0.47" + } + }, + { + "id":"e82e0ebb-243a-412c-b8bd-88a3010aedcd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T14:00:32.445Z", + "completed":"2016-06-18T14:00:32.445Z", + "new_balance":"3018.38", + "value":"-2.59" + } + }, + { + "id":"512201bf-7411-4505-8079-ed2f7adc0b6b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T16:18:11.129Z", + "completed":"2016-06-18T16:18:11.129Z", + "new_balance":"3017.91", + "value":"-0.47" + } + }, + { + "id":"37f3ecaa-9c3f-4f65-a993-d52dc363e57a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T16:42:26.860Z", + "completed":"2016-06-18T16:42:26.860Z", + "new_balance":"3015.33", + "value":"-2.58" + } + }, + { + "id":"29f6a4e6-dfd7-4bd0-996a-de1cd90353cc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T23:27:32.902Z", + "completed":"2016-06-18T23:27:32.902Z", + "new_balance":"3005.18", + "value":"-10.15" + } + }, + { + "id":"f2e009c6-c866-4a53-a953-6a5bbf832501", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T07:32:43.365Z", + "completed":"2016-06-19T07:32:43.365Z", + "new_balance":"3000.79", + "value":"-4.39" + } + }, + { + "id":"177b54ee-08f4-4482-9b34-403cfa55f288", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T07:41:05.463Z", + "completed":"2016-06-19T07:41:05.463Z", + "new_balance":"2996.67", + "value":"-4.12" + } + }, + { + "id":"86c960fc-f887-43b7-9e85-dbccba9ac74c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T14:32:45.776Z", + "completed":"2016-06-19T14:32:45.776Z", + "new_balance":"2991.75", + "value":"-4.92" + } + }, + { + "id":"2c8d8ad6-8cc9-485b-9c70-f7b913cf3ac8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T13:54:42.189Z", + "completed":"2016-06-21T13:54:42.189Z", + "new_balance":"2982.14", + "value":"-9.61" + } + }, + { + "id":"989a216f-e479-4641-b44d-31c68af66ea2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T18:22:06.265Z", + "completed":"2016-06-21T18:22:06.265Z", + "new_balance":"2969.78", + "value":"-12.36" + } + }, + { + "id":"151780cc-b76b-4e88-afef-5dc3192db90e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T01:44:41.857Z", + "completed":"2016-06-22T01:44:41.857Z", + "new_balance":"2968.63", + "value":"-1.15" + } + }, + { + "id":"fe70444a-71a9-46a9-983d-e922b2a97b64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T12:41:22.451Z", + "completed":"2016-06-22T12:41:22.451Z", + "new_balance":"2965.16", + "value":"-3.47" + } + }, + { + "id":"3ae4826b-61b6-437c-8a15-bf4e78b3d9fc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T22:36:12.950Z", + "completed":"2016-06-22T22:36:12.950Z", + "new_balance":"2964.69", + "value":"-0.47" + } + }, + { + "id":"1a62134d-8b5a-45f9-8e38-d6ba32522deb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T01:33:02.162Z", + "completed":"2016-06-23T01:33:02.162Z", + "new_balance":"2963.34", + "value":"-1.35" + } + }, + { + "id":"821451d6-9707-428d-8e25-2f99e292a7f6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T09:42:53.232Z", + "completed":"2016-06-24T09:42:53.232Z", + "new_balance":"2960.95", + "value":"-2.39" + } + }, + { + "id":"702889ca-f644-46d4-adb7-9ccc801362d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T13:26:18.283Z", + "completed":"2016-06-26T13:26:18.283Z", + "new_balance":"2959.75", + "value":"-1.20" + } + }, + { + "id":"9a00635d-64ce-4087-afac-4809be173dca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T09:01:50.217Z", + "completed":"2016-06-30T09:01:50.217Z", + "new_balance":"2937.39", + "value":"-22.36" + } + }, + { + "id":"fec03399-7b08-4f87-8b76-c3a7b4e054c1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T17:14:16.686Z", + "completed":"2016-06-30T17:14:16.686Z", + "new_balance":"2933.67", + "value":"-3.72" + } + }, + { + "id":"6d0b733f-0b26-431e-8301-1b02f250af62", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T02:05:26.126Z", + "completed":"2016-07-01T02:05:26.126Z", + "new_balance":"3116.37", + "value":"182.70" + } + }, + { + "id":"9b5de293-6876-4216-b983-bdb82d1db110", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T14:47:20.243Z", + "completed":"2016-07-01T14:47:20.243Z", + "new_balance":"3257.35", + "value":"140.98" + } + }, + { + "id":"ffb532fe-49bf-44a1-9e0d-cc59d60ba0b9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T23:43:11.724Z", + "completed":"2016-07-03T23:43:11.724Z", + "new_balance":"3225.63", + "value":"-31.72" + } + }, + { + "id":"abccd192-4fb5-4b0f-9938-0dc61bf07dbc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T01:48:05.997Z", + "completed":"2016-07-04T01:48:05.997Z", + "new_balance":"3220.81", + "value":"-4.82" + } + }, + { + "id":"e1247f94-130e-42e9-a278-7dffbb18560f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T03:11:07.130Z", + "completed":"2016-07-04T03:11:07.130Z", + "new_balance":"3219.07", + "value":"-1.74" + } + }, + { + "id":"7251ca96-46c1-4a14-8ca8-b4cc8c4e3ec9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T15:34:32.068Z", + "completed":"2016-07-04T15:34:32.068Z", + "new_balance":"3218.40", + "value":"-0.67" + } + }, + { + "id":"8e6a69c7-52b0-42d7-a98c-0b0c6d34f53f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T13:14:32.887Z", + "completed":"2016-07-05T13:14:32.887Z", + "new_balance":"3217.00", + "value":"-1.40" + } + }, + { + "id":"7afdb79a-b2e4-44f7-97d3-c08b039aaf04", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T04:53:18.520Z", + "completed":"2016-07-07T04:53:18.520Z", + "new_balance":"3216.48", + "value":"-0.52" + } + }, + { + "id":"6d7ac20c-8c30-48a6-be56-84fb72efbd27", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T02:36:14.098Z", + "completed":"2016-07-11T02:36:14.098Z", + "new_balance":"3214.17", + "value":"-2.31" + } + }, + { + "id":"b05bfae2-c166-434c-a5d6-ee4612ea835a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:09:31.209Z", + "completed":"2016-07-11T16:09:31.209Z", + "new_balance":"3212.30", + "value":"-1.87" + } + }, + { + "id":"81a67cf1-4e43-4167-9c7c-35ccd3160fae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:48:52.696Z", + "completed":"2016-07-11T16:48:52.696Z", + "new_balance":"3210.70", + "value":"-1.60" + } + }, + { + "id":"0f0ad2c5-aaed-47af-b69c-2a9fffa470b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T18:16:27.497Z", + "completed":"2016-07-11T18:16:27.497Z", + "new_balance":"3208.11", + "value":"-2.59" + } + }, + { + "id":"152d9e43-341a-428b-ad72-0e932144c844", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T21:47:29.381Z", + "completed":"2016-07-11T21:47:29.381Z", + "new_balance":"3206.43", + "value":"-1.68" + } + }, + { + "id":"b233df7c-b22c-4aa9-bfb9-086550cbfa0e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T05:54:03.621Z", + "completed":"2016-07-13T05:54:03.621Z", + "new_balance":"3200.30", + "value":"-6.13" + } + }, + { + "id":"6bf911cd-63f2-4b82-9044-ac5e043dedee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T13:58:02.900Z", + "completed":"2016-07-13T13:58:02.900Z", + "new_balance":"3192.60", + "value":"-7.70" + } + }, + { + "id":"b6c2d063-c02e-4510-abba-294cfc67d6ee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T07:45:21.092Z", + "completed":"2016-07-16T07:45:21.092Z", + "new_balance":"3201.59", + "value":"8.99" + } + }, + { + "id":"18f744f7-cd33-4ca1-a0fa-fe939ba29f0b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T12:36:35.275Z", + "completed":"2016-07-16T12:36:35.275Z", + "new_balance":"3197.06", + "value":"-4.53" + } + }, + { + "id":"131c591c-dac1-407c-b8c6-db86a57af9a2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:13:09.078Z", + "completed":"2016-07-17T03:13:09.078Z", + "new_balance":"3196.59", + "value":"-0.47" + } + }, + { + "id":"bda3177a-6f77-4049-9c32-0ab6c7351db6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T17:09:20.633Z", + "completed":"2016-07-17T17:09:20.633Z", + "new_balance":"3195.78", + "value":"-0.81" + } + }, + { + "id":"f8d7184a-6c92-41b6-a6ba-764116eb9ecf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T05:23:52.009Z", + "completed":"2016-07-19T05:23:52.009Z", + "new_balance":"3190.30", + "value":"-5.48" + } + }, + { + "id":"1c0fdeda-962c-4274-bb36-d19dde242e61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T11:00:40.730Z", + "completed":"2016-07-21T11:00:40.730Z", + "new_balance":"3187.87", + "value":"-2.43" + } + }, + { + "id":"cd34cf29-281f-4705-b16f-0032ecf69b4d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T05:05:26.503Z", + "completed":"2016-07-23T05:05:26.503Z", + "new_balance":"3184.57", + "value":"-3.30" + } + }, + { + "id":"5cb14d4d-47dd-4bb2-8e8a-397116c3ba62", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T18:54:15.789Z", + "completed":"2016-07-25T18:54:15.789Z", + "new_balance":"3183.00", + "value":"-1.57" + } + }, + { + "id":"4dcec7dd-ecbb-417f-addc-352dbc132d54", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T03:13:45.153Z", + "completed":"2016-07-27T03:13:45.153Z", + "new_balance":"3182.48", + "value":"-0.52" + } + }, + { + "id":"5e5cbdcd-127a-4308-b463-dc49d5e78b75", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T09:44:32.625Z", + "completed":"2016-07-28T09:44:32.625Z", + "new_balance":"3160.12", + "value":"-22.36" + } + }, + { + "id":"a4dc7442-c7a6-485e-bbe7-d78acb2521da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T12:38:17.462Z", + "completed":"2016-07-28T12:38:17.462Z", + "new_balance":"3156.40", + "value":"-3.72" + } + }, + { + "id":"00d54efb-0fd7-40f6-a658-9b43c4bbfeba", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T18:48:52.406Z", + "completed":"2016-08-01T18:48:52.406Z", + "new_balance":"3297.38", + "value":"140.98" + } + }, + { + "id":"827429b0-9bda-43e2-bc95-02c87250672f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T08:41:42.722Z", + "completed":"2016-08-03T08:41:42.722Z", + "new_balance":"3265.66", + "value":"-31.72" + } + }, + { + "id":"1f78154d-b421-4cb6-a46e-445b3ddb3eca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T15:17:40.524Z", + "completed":"2016-08-03T15:17:40.524Z", + "new_balance":"3252.56", + "value":"-13.10" + } + }, + { + "id":"1ccfe172-8c85-4629-b52a-d7bd48c8bc30", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T04:12:26.572Z", + "completed":"2016-08-04T04:12:26.572Z", + "new_balance":"3251.24", + "value":"-1.32" + } + }, + { + "id":"aa06b5f3-d2ae-49f7-87d0-b08f98f68e7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T07:09:49.290Z", + "completed":"2016-08-07T07:09:49.290Z", + "new_balance":"3250.57", + "value":"-0.67" + } + }, + { + "id":"bd4c0b09-f098-4d19-b71a-198a3aecd552", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T07:53:07.197Z", + "completed":"2016-08-07T07:53:07.197Z", + "new_balance":"3248.38", + "value":"-2.19" + } + }, + { + "id":"daf20412-47d3-48a9-a4b6-f1baeb24e229", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T14:16:58.749Z", + "completed":"2016-08-07T14:16:58.749Z", + "new_balance":"3246.07", + "value":"-2.31" + } + }, + { + "id":"5ec9b77a-a568-4fbc-949b-cfb3b531eb5c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T03:46:14.401Z", + "completed":"2016-08-08T03:46:14.401Z", + "new_balance":"3241.50", + "value":"-4.57" + } + }, + { + "id":"1d276f91-8ae1-4310-8681-296cbc35dfb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T07:29:32.516Z", + "completed":"2016-08-08T07:29:32.516Z", + "new_balance":"3237.36", + "value":"-4.14" + } + }, + { + "id":"668f031b-c2b1-4c72-8b25-1fc349770eae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T11:52:46.257Z", + "completed":"2016-08-08T11:52:46.257Z", + "new_balance":"3229.66", + "value":"-7.70" + } + }, + { + "id":"5c1dd475-0790-4a04-a4eb-95a1979bf18f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T17:14:26.977Z", + "completed":"2016-08-09T17:14:26.977Z", + "new_balance":"3227.26", + "value":"-2.40" + } + }, + { + "id":"ffed2407-b205-4e74-b044-c2c2c120a999", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T06:39:06.858Z", + "completed":"2016-08-11T06:39:06.858Z", + "new_balance":"3226.74", + "value":"-0.52" + } + }, + { + "id":"1695f21b-1534-4247-8c5d-74a861be01d4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T13:14:26.721Z", + "completed":"2016-08-14T13:14:26.721Z", + "new_balance":"3223.86", + "value":"-2.88" + } + }, + { + "id":"0886435e-8796-4746-a0bf-b525dbb6b4df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T21:07:46.480Z", + "completed":"2016-08-15T21:07:46.480Z", + "new_balance":"3221.55", + "value":"-2.31" + } + }, + { + "id":"a745d878-ba2f-4565-a0b6-64ed603d83e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T09:08:40.624Z", + "completed":"2016-08-17T09:08:40.624Z", + "new_balance":"3216.94", + "value":"-4.61" + } + }, + { + "id":"c6021c7f-03dc-47cc-b8f0-9b1fe8475397", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T09:15:04.440Z", + "completed":"2016-08-17T09:15:04.440Z", + "new_balance":"3216.47", + "value":"-0.47" + } + }, + { + "id":"88235007-a100-4156-9ca3-ab98c4069de1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T08:07:26.378Z", + "completed":"2016-08-19T08:07:26.378Z", + "new_balance":"3215.88", + "value":"-0.59" + } + }, + { + "id":"eb0d7558-8b6b-429b-8fd1-4d0358f8094e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T23:03:40.658Z", + "completed":"2016-08-25T23:03:40.658Z", + "new_balance":"3227.28", + "value":"11.40" + } + }, + { + "id":"4ce76c60-12e9-4efa-b69c-fb3e51ad0d31", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T03:17:14.597Z", + "completed":"2016-08-28T03:17:14.597Z", + "new_balance":"3223.56", + "value":"-3.72" + } + }, + { + "id":"3bcb9ce9-4bc5-4c5f-8966-be350433b2cf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T06:52:37.214Z", + "completed":"2016-08-28T06:52:37.214Z", + "new_balance":"3201.20", + "value":"-22.36" + } + }, + { + "id":"d2488725-7459-48ea-bbfa-b8b85af0225a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:49:47.373Z", + "completed":"2016-09-01T04:49:47.373Z", + "new_balance":"3342.18", + "value":"140.98" + } + }, + { + "id":"dc4ba2b5-7ca7-4e2d-9eb8-be95516a6094", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T04:14:39.300Z", + "completed":"2016-09-03T04:14:39.300Z", + "new_balance":"3310.46", + "value":"-31.72" + } + }, + { + "id":"9ab68106-bd31-4e9b-8a7b-98eabbcca8ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:09:46.654Z", + "completed":"2016-09-04T10:09:46.654Z", + "new_balance":"3307.00", + "value":"-3.46" + } + }, + { + "id":"c772fba5-8dbf-42bf-aa84-1aebdddf7017", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T12:00:24.619Z", + "completed":"2016-09-04T12:00:24.619Z", + "new_balance":"3304.95", + "value":"-2.05" + } + }, + { + "id":"e3e22e16-fee8-4987-a2be-48bba1269368", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T16:25:20.716Z", + "completed":"2016-09-04T16:25:20.716Z", + "new_balance":"3300.34", + "value":"-4.61" + } + }, + { + "id":"8c573fe4-606f-4680-8935-8b349a447fa7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T18:15:18.238Z", + "completed":"2016-09-04T18:15:18.238Z", + "new_balance":"3297.04", + "value":"-3.30" + } + }, + { + "id":"6ea5dfd3-fc3e-41a7-9767-d559222e9b19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T01:39:02.730Z", + "completed":"2016-09-05T01:39:02.730Z", + "new_balance":"3290.40", + "value":"-6.64" + } + }, + { + "id":"b69b7a11-8226-4d1d-8c60-855c5092af6e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T03:32:26.291Z", + "completed":"2016-09-05T03:32:26.291Z", + "new_balance":"3289.10", + "value":"-1.30" + } + }, + { + "id":"1ca28df6-2cb3-4125-854f-8a5ac1e243a5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T11:33:33.719Z", + "completed":"2016-09-05T11:33:33.719Z", + "new_balance":"3288.63", + "value":"-0.47" + } + }, + { + "id":"d6af0caf-a0de-4dec-86ec-8b120fd73544", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T12:14:56.327Z", + "completed":"2016-09-05T12:14:56.327Z", + "new_balance":"3280.89", + "value":"-7.74" + } + }, + { + "id":"b977b705-249e-4465-93b1-8d6c7fe12e4b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T14:19:10.593Z", + "completed":"2016-09-05T14:19:10.593Z", + "new_balance":"3273.19", + "value":"-7.70" + } + }, + { + "id":"e1bf0f2a-d6c7-484f-8f11-34873b5bbdc4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T19:13:10.425Z", + "completed":"2016-09-05T19:13:10.425Z", + "new_balance":"3266.44", + "value":"-6.75" + } + }, + { + "id":"2f4bd503-87ec-467b-b091-d2d5e95dda38", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T07:16:44.052Z", + "completed":"2016-09-07T07:16:44.052Z", + "new_balance":"3265.97", + "value":"-0.47" + } + }, + { + "id":"472092e7-f471-4abd-9f19-71efbd3588de", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T07:44:49.129Z", + "completed":"2016-09-07T07:44:49.129Z", + "new_balance":"3265.17", + "value":"-0.80" + } + }, + { + "id":"4f28d913-1be8-4cda-a942-56cb1031fc36", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T15:22:25.474Z", + "completed":"2016-09-07T15:22:25.474Z", + "new_balance":"3264.37", + "value":"-0.80" + } + }, + { + "id":"22bc2142-c0ee-4760-bfae-74ca2880b895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T17:52:56.586Z", + "completed":"2016-09-07T17:52:56.586Z", + "new_balance":"3263.60", + "value":"-0.77" + } + }, + { + "id":"a7064e2f-dd7a-4586-b506-25ab5d4332a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T14:53:36.509Z", + "completed":"2016-09-10T14:53:36.509Z", + "new_balance":"3260.89", + "value":"-2.71" + } + }, + { + "id":"85e221f5-d490-4116-94bd-4bcece806075", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T10:32:40.916Z", + "completed":"2016-09-11T10:32:40.916Z", + "new_balance":"3260.42", + "value":"-0.47" + } + }, + { + "id":"a26506c1-21af-4e3e-869b-af823859b16d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T20:10:43.827Z", + "completed":"2016-09-11T20:10:43.827Z", + "new_balance":"3257.70", + "value":"-2.72" + } + }, + { + "id":"dff16bd8-e316-41f5-ad18-5a12c7d8df89", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T21:41:07.605Z", + "completed":"2016-09-11T21:41:07.605Z", + "new_balance":"3256.10", + "value":"-1.60" + } + }, + { + "id":"15ae2414-e1f4-4c01-a41e-a695898e59e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T03:19:48.977Z", + "completed":"2016-09-12T03:19:48.977Z", + "new_balance":"3255.63", + "value":"-0.47" + } + }, + { + "id":"a9b1798e-2471-46ed-9411-7a485ecaf0ac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:53:14.753Z", + "completed":"2016-09-12T04:53:14.753Z", + "new_balance":"3249.47", + "value":"-6.16" + } + }, + { + "id":"00fbd43d-0073-4c94-8195-9e441f59cdac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T08:06:53.171Z", + "completed":"2016-09-12T08:06:53.171Z", + "new_balance":"3239.32", + "value":"-10.15" + } + }, + { + "id":"e360ee19-fb7a-461b-9785-85bbeaf970bb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T19:55:06.710Z", + "completed":"2016-09-12T19:55:06.710Z", + "new_balance":"3236.73", + "value":"-2.59" + } + }, + { + "id":"2f8e8924-801c-4f92-9a35-39409701ce1d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T00:23:28.825Z", + "completed":"2016-09-13T00:23:28.825Z", + "new_balance":"3234.15", + "value":"-2.58" + } + }, + { + "id":"358ef237-6ab0-4e8d-856c-0eb5ebf806c2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:15:21.319Z", + "completed":"2016-09-14T18:15:21.319Z", + "new_balance":"3229.23", + "value":"-4.92" + } + }, + { + "id":"c4a926c2-be12-442f-8926-1956df3b44e3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T19:01:50.058Z", + "completed":"2016-09-14T19:01:50.058Z", + "new_balance":"3228.76", + "value":"-0.47" + } + }, + { + "id":"1e6987b2-5bd4-46cb-946b-1e5765161319", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T15:08:00.150Z", + "completed":"2016-09-16T15:08:00.150Z", + "new_balance":"3224.64", + "value":"-4.12" + } + }, + { + "id":"fc9a665c-ef7d-4d5a-b79d-3693d32d2e42", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T04:00:57.328Z", + "completed":"2016-09-18T04:00:57.328Z", + "new_balance":"3220.25", + "value":"-4.39" + } + }, + { + "id":"c6b63a01-f65f-4fe7-8f4a-f2054311f9bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T09:08:06.893Z", + "completed":"2016-09-21T09:08:06.893Z", + "new_balance":"3207.89", + "value":"-12.36" + } + }, + { + "id":"30e8b8ab-1682-4c1a-be7b-b79877d350bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:55:15.382Z", + "completed":"2016-09-21T10:55:15.382Z", + "new_balance":"3198.28", + "value":"-9.61" + } + }, + { + "id":"585d7c7d-e845-4192-90f0-96468e592d89", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T23:53:03.013Z", + "completed":"2016-09-23T23:53:03.013Z", + "new_balance":"3194.81", + "value":"-3.47" + } + }, + { + "id":"2563e7fc-dcc1-4d04-84e6-b6c2153ff7bb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T14:56:45.031Z", + "completed":"2016-09-24T14:56:45.031Z", + "new_balance":"3194.34", + "value":"-0.47" + } + }, + { + "id":"26249e06-0379-4ee6-ba23-e0bd545b7d45", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T06:57:49.919Z", + "completed":"2016-09-26T06:57:49.919Z", + "new_balance":"3192.99", + "value":"-1.35" + } + }, + { + "id":"a690b06c-bd82-4c63-a5c1-38fc0383e4dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T10:33:28.846Z", + "completed":"2016-09-26T10:33:28.846Z", + "new_balance":"3191.84", + "value":"-1.15" + } + }, + { + "id":"b8571c9d-3c7b-40ac-b50f-b57e501d4c22", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T18:18:21.677Z", + "completed":"2016-09-26T18:18:21.677Z", + "new_balance":"3189.45", + "value":"-2.39" + } + }, + { + "id":"a027e37e-d259-4a64-a856-0c4b97d21780", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T14:05:19.321Z", + "completed":"2016-09-27T14:05:19.321Z", + "new_balance":"3188.25", + "value":"-1.20" + } + }, + { + "id":"bec05479-90c3-4fb8-b8b7-780993acd8ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:18:10.566Z", + "completed":"2016-09-28T06:18:10.566Z", + "new_balance":"3184.53", + "value":"-3.72" + } + }, + { + "id":"9fc950d3-6fe9-4403-ba16-214eb99822f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T11:12:57.181Z", + "completed":"2016-09-28T11:12:57.181Z", + "new_balance":"3162.17", + "value":"-22.36" + } + }, + { + "id":"c2688d78-2e9e-432a-a17d-bd4f5b42c667", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T10:04:35.485Z", + "completed":"2016-10-01T10:04:35.485Z", + "new_balance":"3130.45", + "value":"-31.72" + } + }, + { + "id":"1a7f7f73-4737-4e57-bab5-b3af7cc7e9f3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T16:50:05.601Z", + "completed":"2016-10-01T16:50:05.601Z", + "new_balance":"3271.43", + "value":"140.98" + } + }, + { + "id":"bca09179-5792-462b-9f77-6d5508ecce14", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T17:09:10.182Z", + "completed":"2016-10-01T17:09:10.182Z", + "new_balance":"3454.13", + "value":"182.70" + } + }, + { + "id":"27d7f4c0-f3d9-4cfa-9155-d59a0a2d2c7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T14:32:44.265Z", + "completed":"2016-10-03T14:32:44.265Z", + "new_balance":"3453.46", + "value":"-0.67" + } + }, + { + "id":"85c1ec68-7d77-43d8-921a-df2e7014a8ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T19:27:27.747Z", + "completed":"2016-10-03T19:27:27.747Z", + "new_balance":"3448.64", + "value":"-4.82" + } + }, + { + "id":"dfe1d5a8-4722-460c-83de-6b929379bc5d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T23:22:26.733Z", + "completed":"2016-10-03T23:22:26.733Z", + "new_balance":"3446.90", + "value":"-1.74" + } + }, + { + "id":"4c13cc78-5813-4cf1-902f-64fab14bf792", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T17:28:58.228Z", + "completed":"2016-10-05T17:28:58.228Z", + "new_balance":"3445.50", + "value":"-1.40" + } + }, + { + "id":"2e829bf2-d19c-436a-ad80-6d497bdea768", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T20:42:11.620Z", + "completed":"2016-10-05T20:42:11.620Z", + "new_balance":"3444.98", + "value":"-0.52" + } + }, + { + "id":"17be6557-ddc6-4887-82d5-8eb6657643b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T14:37:26.755Z", + "completed":"2016-10-06T14:37:26.755Z", + "new_balance":"3443.38", + "value":"-1.60" + } + }, + { + "id":"e0a2d5d1-2a25-4498-8833-a7c76578f5cd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T18:27:11.440Z", + "completed":"2016-10-09T18:27:11.440Z", + "new_balance":"3440.79", + "value":"-2.59" + } + }, + { + "id":"d41bef76-8ff6-4803-9ad3-eccd4066ba19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:55:51.983Z", + "completed":"2016-10-10T17:55:51.983Z", + "new_balance":"3439.11", + "value":"-1.68" + } + }, + { + "id":"9b42bd76-6cb1-4a87-86d2-2fed29fa12d6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T02:25:26.076Z", + "completed":"2016-10-11T02:25:26.076Z", + "new_balance":"3437.24", + "value":"-1.87" + } + }, + { + "id":"8c9c4098-92c2-4e6c-b0d2-ebe5223d231e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T12:32:56.558Z", + "completed":"2016-10-11T12:32:56.558Z", + "new_balance":"3434.93", + "value":"-2.31" + } + }, + { + "id":"a05af609-53a2-4bb6-bc81-762c5c7fc027", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T08:33:09.303Z", + "completed":"2016-10-14T08:33:09.303Z", + "new_balance":"3427.23", + "value":"-7.70" + } + }, + { + "id":"337f771d-397b-4bec-a794-de4bd62f2c72", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T20:13:31.557Z", + "completed":"2016-10-14T20:13:31.557Z", + "new_balance":"3421.10", + "value":"-6.13" + } + }, + { + "id":"8f599f2a-b148-4aa9-ba60-6cbb243fe6e0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T17:40:01.775Z", + "completed":"2016-10-17T17:40:01.775Z", + "new_balance":"3416.57", + "value":"-4.53" + } + }, + { + "id":"25f40c98-e3a5-4ed2-8225-b72f97ff9827", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T04:11:50.121Z", + "completed":"2016-10-18T04:11:50.121Z", + "new_balance":"3415.76", + "value":"-0.81" + } + }, + { + "id":"ec4c246c-a65e-499a-90dd-7809c82667f3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T04:12:24.023Z", + "completed":"2016-10-18T04:12:24.023Z", + "new_balance":"3410.28", + "value":"-5.48" + } + }, + { + "id":"14bab6bd-ff4e-4946-afb0-207915834158", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T13:12:26.620Z", + "completed":"2016-10-18T13:12:26.620Z", + "new_balance":"3409.81", + "value":"-0.47" + } + }, + { + "id":"e3ee2fcc-9d79-4e42-bc2b-79ae73899d34", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T05:46:00.512Z", + "completed":"2016-10-23T05:46:00.512Z", + "new_balance":"3407.38", + "value":"-2.43" + } + }, + { + "id":"96a62da5-12e6-4fd9-9200-c86507f370bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T13:05:52.446Z", + "completed":"2016-10-24T13:05:52.446Z", + "new_balance":"3405.81", + "value":"-1.57" + } + }, + { + "id":"451a46dd-8db2-422c-a5fb-9b36c41f395d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:25:56.343Z", + "completed":"2016-10-24T18:25:56.343Z", + "new_balance":"3402.51", + "value":"-3.30" + } + }, + { + "id":"5416a3b7-2f80-4936-8018-ac80a895f159", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T09:30:40.048Z", + "completed":"2016-10-26T09:30:40.048Z", + "new_balance":"3401.99", + "value":"-0.52" + } + }, + { + "id":"b2a6972d-6da9-4d69-a1d6-115665a06a00", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:56:26.887Z", + "completed":"2016-10-30T15:56:26.887Z", + "new_balance":"3398.27", + "value":"-3.72" + } + }, + { + "id":"8557adc2-601d-4644-a33b-400b2e2d35ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T21:47:44.191Z", + "completed":"2016-10-30T21:47:44.191Z", + "new_balance":"3375.91", + "value":"-22.36" + } + }, + { + "id":"0851d39b-b705-4601-92e2-434e5413ffdf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T07:11:49.072Z", + "completed":"2016-11-02T07:11:49.072Z", + "new_balance":"3375.24", + "value":"-0.67" + } + }, + { + "id":"fb683364-9efa-4955-b008-4f50efd331e9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T09:16:08.297Z", + "completed":"2016-11-02T09:16:08.297Z", + "new_balance":"3362.14", + "value":"-13.10" + } + }, + { + "id":"b146db4e-544f-4c18-af53-9d49d01c363b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T09:53:37.275Z", + "completed":"2016-11-02T09:53:37.275Z", + "new_balance":"3360.82", + "value":"-1.32" + } + }, + { + "id":"53f23f14-e996-4c31-be33-fa922460ec03", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T17:10:58.871Z", + "completed":"2016-11-02T17:10:58.871Z", + "new_balance":"3329.10", + "value":"-31.72" + } + }, + { + "id":"75426dc4-7a33-4df1-8f4a-166bdbf9ca7f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T15:11:47.191Z", + "completed":"2016-11-06T15:11:47.191Z", + "new_balance":"3326.91", + "value":"-2.19" + } + }, + { + "id":"9f9a38e0-c0ef-4302-ad6b-46f0522ce099", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T15:55:07.278Z", + "completed":"2016-11-06T15:55:07.278Z", + "new_balance":"3324.60", + "value":"-2.31" + } + }, + { + "id":"a30d03ae-4104-414c-ac3c-db0bed884454", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T10:28:45.975Z", + "completed":"2016-11-07T10:28:45.975Z", + "new_balance":"3320.03", + "value":"-4.57" + } + }, + { + "id":"c64fd105-2138-4a84-98e1-edd6dcd9fecc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T11:53:12.189Z", + "completed":"2016-11-07T11:53:12.189Z", + "new_balance":"3312.33", + "value":"-7.70" + } + }, + { + "id":"89dcfefb-3feb-49eb-9ab2-07f035bb5e04", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T12:52:29.126Z", + "completed":"2016-11-09T12:52:29.126Z", + "new_balance":"3453.31", + "value":"140.98" + } + }, + { + "id":"c1883093-522b-4cf4-a3c9-44b950eca261", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:55:13.522Z", + "completed":"2016-11-14T01:55:13.522Z", + "new_balance":"3449.17", + "value":"-4.14" + } + }, + { + "id":"6c872e11-4fac-426a-b6b2-362d5b4b48bf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T07:52:04.351Z", + "completed":"2016-11-14T07:52:04.351Z", + "new_balance":"3446.77", + "value":"-2.40" + } + }, + { + "id":"12d295c4-3039-43bc-9e1a-484a79f49604", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T01:09:41.637Z", + "completed":"2016-11-16T01:09:41.637Z", + "new_balance":"3446.25", + "value":"-0.52" + } + }, + { + "id":"585d1231-7943-4875-927c-791b9c13b1e5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T04:16:14.696Z", + "completed":"2016-11-20T04:16:14.696Z", + "new_balance":"3443.37", + "value":"-2.88" + } + }, + { + "id":"1fd46b7c-b65e-45ee-80c3-cb9c25caef19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T00:09:20.157Z", + "completed":"2016-11-23T00:09:20.157Z", + "new_balance":"3438.76", + "value":"-4.61" + } + }, + { + "id":"529a57d3-e878-4bca-9a53-1784055f3fda", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T00:11:52.468Z", + "completed":"2016-11-23T00:11:52.468Z", + "new_balance":"3438.29", + "value":"-0.47" + } + }, + { + "id":"5bc3713b-d1ed-4ef7-adc8-c431f0c9b45a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T01:00:02.439Z", + "completed":"2016-11-23T01:00:02.439Z", + "new_balance":"3435.98", + "value":"-2.31" + } + }, + { + "id":"a046fb71-1097-4739-a953-56ea82d45dfb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T02:07:41.654Z", + "completed":"2016-11-28T02:07:41.654Z", + "new_balance":"3435.39", + "value":"-0.59" + } + }, + { + "id":"8c3b7cff-e3e3-42a6-ba33-9fb0e44686b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T05:26:59.696Z", + "completed":"2016-11-30T05:26:59.696Z", + "new_balance":"3431.67", + "value":"-3.72" + } + }, + { + "id":"eee07dca-2407-4bdb-a15e-b015b4637f63", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T21:41:10.705Z", + "completed":"2016-11-30T21:41:10.705Z", + "new_balance":"3409.31", + "value":"-22.36" + } + }, + { + "id":"14746307-e3a1-46a6-8078-45782e5a4106", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:56:15.708Z", + "completed":"2016-12-01T10:56:15.708Z", + "new_balance":"3550.29", + "value":"140.98" + } + }, + { + "id":"03e183fc-cbf4-484e-94d3-27022ae90101", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T12:24:55.602Z", + "completed":"2016-12-01T12:24:55.602Z", + "new_balance":"3518.57", + "value":"-31.72" + } + }, + { + "id":"3e8bd478-ca49-405f-89f4-7531de4b4882", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T02:22:19.249Z", + "completed":"2016-12-04T02:22:19.249Z", + "new_balance":"3516.52", + "value":"-2.05" + } + }, + { + "id":"766e0547-e560-491d-bdb7-57aace2bec14", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T20:37:52.814Z", + "completed":"2016-12-04T20:37:52.814Z", + "new_balance":"3513.06", + "value":"-3.46" + } + }, + { + "id":"dcbef522-1613-47f0-9401-404b3943df08", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T01:38:34.265Z", + "completed":"2016-12-11T01:38:34.265Z", + "new_balance":"3508.45", + "value":"-4.61" + } + }, + { + "id":"ebfffaa0-05a8-41d5-bfe6-3586aae409f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T06:42:20.953Z", + "completed":"2016-12-11T06:42:20.953Z", + "new_balance":"3505.15", + "value":"-3.30" + } + }, + { + "id":"db1a3b09-0153-45be-9c0c-ff96efa860e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T00:32:09.235Z", + "completed":"2016-12-14T00:32:09.235Z", + "new_balance":"3498.40", + "value":"-6.75" + } + }, + { + "id":"328da122-badb-4e49-9ea6-7dc7a1f4885f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T05:07:41.024Z", + "completed":"2016-12-14T05:07:41.024Z", + "new_balance":"3491.76", + "value":"-6.64" + } + }, + { + "id":"f54f523b-d71c-44bb-8397-8f73f38cd2a9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T05:08:07.485Z", + "completed":"2016-12-14T05:08:07.485Z", + "new_balance":"3490.96", + "value":"-0.80" + } + }, + { + "id":"76d34608-402e-41c1-a315-3a472000b1cc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T08:13:04.582Z", + "completed":"2016-12-14T08:13:04.582Z", + "new_balance":"3490.16", + "value":"-0.80" + } + }, + { + "id":"bafd0c9b-6256-4732-bed2-e089e229dde2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T09:26:00.671Z", + "completed":"2016-12-14T09:26:00.671Z", + "new_balance":"3488.86", + "value":"-1.30" + } + }, + { + "id":"d8818610-90a2-4d71-8df5-4da3ad69ed74", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T13:32:11.862Z", + "completed":"2016-12-14T13:32:11.862Z", + "new_balance":"3488.39", + "value":"-0.47" + } + }, + { + "id":"1ca25b19-6d3c-477b-8861-325043a7228b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T14:38:47.898Z", + "completed":"2016-12-14T14:38:47.898Z", + "new_balance":"3480.69", + "value":"-7.70" + } + }, + { + "id":"13b1f08f-c133-4b15-9bc3-af371503877e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T20:42:21.150Z", + "completed":"2016-12-14T20:42:21.150Z", + "new_balance":"3472.95", + "value":"-7.74" + } + }, + { + "id":"68c4af96-23b6-47a9-99cc-b140e3da6e7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T20:58:23.923Z", + "completed":"2016-12-14T20:58:23.923Z", + "new_balance":"3472.48", + "value":"-0.47" + } + }, + { + "id":"56b54611-d167-41a8-90a4-fc2df7d28e9d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T10:52:15.254Z", + "completed":"2016-12-15T10:52:15.254Z", + "new_balance":"3472.01", + "value":"-0.47" + } + }, + { + "id":"9e99d9b8-4eee-44b1-831a-529332403d59", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:53:05.313Z", + "completed":"2016-12-15T18:53:05.313Z", + "new_balance":"3471.24", + "value":"-0.77" + } + }, + { + "id":"8d19f440-d4a1-4280-89fe-68cec7f82c28", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T23:17:41.997Z", + "completed":"2016-12-15T23:17:41.997Z", + "new_balance":"3468.53", + "value":"-2.71" + } + }, + { + "id":"35fa782b-df4b-4237-8683-411e9f1557a2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T05:02:01.369Z", + "completed":"2016-12-18T05:02:01.369Z", + "new_balance":"3468.06", + "value":"-0.47" + } + }, + { + "id":"1daa4e09-05aa-405e-b158-94d812e91554", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T13:04:12.409Z", + "completed":"2016-12-18T13:04:12.409Z", + "new_balance":"3465.34", + "value":"-2.72" + } + }, + { + "id":"fc96ee5f-7963-4f86-80ce-d5df181dce3e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T16:38:01.240Z", + "completed":"2016-12-18T16:38:01.240Z", + "new_balance":"3462.76", + "value":"-2.58" + } + }, + { + "id":"c27c9623-571e-41ed-97d6-73cb55794fa7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T17:13:41.566Z", + "completed":"2016-12-18T17:13:41.566Z", + "new_balance":"3462.29", + "value":"-0.47" + } + }, + { + "id":"8bef5642-30b7-48b5-9317-132c01895da2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T19:31:59.258Z", + "completed":"2016-12-18T19:31:59.258Z", + "new_balance":"3456.13", + "value":"-6.16" + } + }, + { + "id":"efe280cb-ee32-4a9e-bd6b-c98e5188030b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T20:26:53.700Z", + "completed":"2016-12-18T20:26:53.700Z", + "new_balance":"3454.53", + "value":"-1.60" + } + }, + { + "id":"a58d8a76-6308-45d5-b19b-272b00ad8319", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T21:28:29.241Z", + "completed":"2016-12-18T21:28:29.241Z", + "new_balance":"3451.94", + "value":"-2.59" + } + }, + { + "id":"066389db-8099-4a5c-80d8-0d1ebb87a01a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T22:39:45.435Z", + "completed":"2016-12-18T22:39:45.435Z", + "new_balance":"3441.79", + "value":"-10.15" + } + }, + { + "id":"3cf021ef-c9e3-4a4d-8141-4f59161c39dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:27:06.079Z", + "completed":"2016-12-19T06:27:06.079Z", + "new_balance":"3437.40", + "value":"-4.39" + } + }, + { + "id":"1b4d66bd-a8c4-4bf2-b5a2-00a02d828f70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:39:49.464Z", + "completed":"2016-12-19T12:39:49.464Z", + "new_balance":"3432.48", + "value":"-4.92" + } + }, + { + "id":"a07b84e1-23ab-429b-a853-a62bad8b73f8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T21:08:17.473Z", + "completed":"2016-12-19T21:08:17.473Z", + "new_balance":"3428.36", + "value":"-4.12" + } + }, + { + "id":"2b35e498-892a-4d4d-9cc8-03d18240c13e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T04:26:17.492Z", + "completed":"2016-12-21T04:26:17.492Z", + "new_balance":"3418.75", + "value":"-9.61" + } + }, + { + "id":"736322d3-27d3-4b9e-8dd1-fa5b6069e874", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T12:55:04.534Z", + "completed":"2016-12-21T12:55:04.534Z", + "new_balance":"3415.28", + "value":"-3.47" + } + }, + { + "id":"e8c2aa20-af86-4fe6-9646-2a3ec7164648", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T13:40:57.977Z", + "completed":"2016-12-21T13:40:57.977Z", + "new_balance":"3414.13", + "value":"-1.15" + } + }, + { + "id":"03d6570f-6e08-48c7-bd32-b55d8a5b48d8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T18:41:52.367Z", + "completed":"2016-12-21T18:41:52.367Z", + "new_balance":"3401.77", + "value":"-12.36" + } + }, + { + "id":"29be6ca8-56eb-4dbf-aab4-372687ed4503", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T22:20:00.572Z", + "completed":"2016-12-21T22:20:00.572Z", + "new_balance":"3401.30", + "value":"-0.47" + } + }, + { + "id":"10002db0-6be0-4f68-8f57-7e2cd7e4890c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T01:04:12.066Z", + "completed":"2016-12-24T01:04:12.066Z", + "new_balance":"3400.10", + "value":"-1.20" + } + }, + { + "id":"e38a59e3-2a42-4456-9945-234fec1a300c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T01:48:11.183Z", + "completed":"2016-12-24T01:48:11.183Z", + "new_balance":"3397.71", + "value":"-2.39" + } + }, + { + "id":"fd22261b-45bb-448c-80e8-498d8a4b3350", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T21:47:53.985Z", + "completed":"2016-12-24T21:47:53.985Z", + "new_balance":"3396.36", + "value":"-1.35" + } + }, + { + "id":"cc001137-c23b-4fc3-bc00-eb760f9643db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T03:41:25.546Z", + "completed":"2016-12-30T03:41:25.546Z", + "new_balance":"3392.64", + "value":"-3.72" + } + }, + { + "id":"5ee72ff7-3f56-4909-a6fc-49abe9ac600f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T06:03:06.378Z", + "completed":"2016-12-30T06:03:06.378Z", + "new_balance":"3370.28", + "value":"-22.36" + } + }, + { + "id":"cd2f0b28-6526-4e49-9669-244cc905a98f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T10:44:28.698Z", + "completed":"2017-01-01T10:44:28.698Z", + "new_balance":"3552.98", + "value":"182.70" + } + }, + { + "id":"548a35c5-cc45-4c97-996d-9deaaebde91c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T15:36:56.070Z", + "completed":"2017-01-01T15:36:56.070Z", + "new_balance":"3693.96", + "value":"140.98" + } + }, + { + "id":"069c3d76-37d8-4ec3-a29c-a95f78368cc5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T20:39:54.577Z", + "completed":"2017-01-02T20:39:54.577Z", + "new_balance":"3662.24", + "value":"-31.72" + } + }, + { + "id":"64a45bf2-9627-4df8-8e22-d36f695275cd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T01:41:26.046Z", + "completed":"2017-01-03T01:41:26.046Z", + "new_balance":"3661.57", + "value":"-0.67" + } + }, + { + "id":"e52b7d21-18b9-4896-b31b-e1c045ffe7ed", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T07:14:48.346Z", + "completed":"2017-01-03T07:14:48.346Z", + "new_balance":"3659.83", + "value":"-1.74" + } + }, + { + "id":"aef250c7-4ca2-43cc-b385-ffa6037237ec", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T21:04:24.542Z", + "completed":"2017-01-03T21:04:24.542Z", + "new_balance":"3655.01", + "value":"-4.82" + } + }, + { + "id":"281a03b3-a498-4069-9953-a33a699fe7ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T16:11:38.632Z", + "completed":"2017-01-04T16:11:38.632Z", + "new_balance":"3653.61", + "value":"-1.40" + } + }, + { + "id":"dd005770-acbe-4b95-af81-c0fc038e8b3f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T12:01:29.799Z", + "completed":"2017-01-05T12:01:29.799Z", + "new_balance":"3653.09", + "value":"-0.52" + } + }, + { + "id":"e19533fa-c6f4-4379-8c51-df87e24f52f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T21:33:28.820Z", + "completed":"2017-01-07T21:33:28.820Z", + "new_balance":"3650.50", + "value":"-2.59" + } + }, + { + "id":"2a60027a-e86e-488d-a68e-8a7e27892042", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T22:48:25.222Z", + "completed":"2017-01-07T22:48:25.222Z", + "new_balance":"3648.90", + "value":"-1.60" + } + }, + { + "id":"db2ba4ba-110f-47f8-a913-6d44cc3103d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T13:37:03.105Z", + "completed":"2017-01-08T13:37:03.105Z", + "new_balance":"3647.03", + "value":"-1.87" + } + }, + { + "id":"011c4589-9517-4969-bb60-f2245c0706fb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T22:03:53.905Z", + "completed":"2017-01-08T22:03:53.905Z", + "new_balance":"3645.35", + "value":"-1.68" + } + }, + { + "id":"93a95782-c5fd-4966-af8b-a75147bf593b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T02:34:11.826Z", + "completed":"2017-01-09T02:34:11.826Z", + "new_balance":"3643.04", + "value":"-2.31" + } + }, + { + "id":"3e4b782f-8707-4599-b39e-2dee4b9e1a78", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T06:55:17.822Z", + "completed":"2017-01-09T06:55:17.822Z", + "new_balance":"3636.91", + "value":"-6.13" + } + }, + { + "id":"e8dd9f1f-9a55-4d0a-a4e5-03542c7e1fbb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T09:26:20.196Z", + "completed":"2017-01-10T09:26:20.196Z", + "new_balance":"3632.38", + "value":"-4.53" + } + }, + { + "id":"53b5fb25-0d5f-4e3b-b317-2e63bae19e7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T13:31:38.017Z", + "completed":"2017-01-10T13:31:38.017Z", + "new_balance":"3624.68", + "value":"-7.70" + } + }, + { + "id":"dc97b353-5091-44ff-8bd1-9473b8d71be9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T02:04:34.478Z", + "completed":"2017-01-11T02:04:34.478Z", + "new_balance":"3624.21", + "value":"-0.47" + } + }, + { + "id":"7928e8ed-5806-44d3-8c28-5b3cb3113e79", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T10:10:24.795Z", + "completed":"2017-01-11T10:10:24.795Z", + "new_balance":"3618.73", + "value":"-5.48" + } + }, + { + "id":"17af70be-9bcd-43cb-8759-5698891138be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T11:56:09.383Z", + "completed":"2017-01-11T11:56:09.383Z", + "new_balance":"3627.72", + "value":"8.99" + } + }, + { + "id":"e8dda221-0ba2-4c1b-9cf8-c82e9ca1360a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T03:22:57.978Z", + "completed":"2017-01-12T03:22:57.978Z", + "new_balance":"3626.91", + "value":"-0.81" + } + }, + { + "id":"7300f44f-ce2a-45ca-a6f1-14fd042defc0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T10:46:11.617Z", + "completed":"2017-01-15T10:46:11.617Z", + "new_balance":"3624.48", + "value":"-2.43" + } + }, + { + "id":"35bcf414-d9f2-419f-8a85-4bbd404f108d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T19:19:35.914Z", + "completed":"2017-01-16T19:19:35.914Z", + "new_balance":"3621.18", + "value":"-3.30" + } + }, + { + "id":"c85825eb-d196-48de-a304-5412e4550556", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T06:58:27.924Z", + "completed":"2017-01-17T06:58:27.924Z", + "new_balance":"3619.61", + "value":"-1.57" + } + }, + { + "id":"83b05285-7a7a-4422-83c4-9422008b6173", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T06:15:32.662Z", + "completed":"2017-01-20T06:15:32.662Z", + "new_balance":"3619.09", + "value":"-0.52" + } + }, + { + "id":"5782dd13-430c-421c-8077-2dcaa93af22c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T22:04:30.098Z", + "completed":"2017-01-21T22:04:30.098Z", + "new_balance":"3615.37", + "value":"-3.72" + } + }, + { + "id":"5c479c67-ee67-425f-a416-88b1c62879be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T10:53:29.740Z", + "completed":"2017-01-23T10:53:29.740Z", + "new_balance":"3593.01", + "value":"-22.36" + } + }, + { + "id":"f0e30805-8943-4764-912e-954c7bd578a0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T19:24:03.624Z", + "completed":"2017-02-01T19:24:03.624Z", + "new_balance":"3733.99", + "value":"140.98" + } + }, + { + "id":"06e930f6-39dc-49f8-98b8-19e12494b817", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T03:57:31.965Z", + "completed":"2017-02-03T03:57:31.965Z", + "new_balance":"3720.89", + "value":"-13.10" + } + }, + { + "id":"8e894e60-6f2c-42ce-85ac-395e0f2e42b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T19:33:50.701Z", + "completed":"2017-02-03T19:33:50.701Z", + "new_balance":"3689.17", + "value":"-31.72" + } + }, + { + "id":"9e014ebf-d1c3-4e18-837a-17fe3e2a76e7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T08:31:16.467Z", + "completed":"2017-02-04T08:31:16.467Z", + "new_balance":"3687.85", + "value":"-1.32" + } + }, + { + "id":"9dbfa5a5-13b1-487e-b596-46dc41ccf526", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T11:30:48.479Z", + "completed":"2017-02-05T11:30:48.479Z", + "new_balance":"3687.18", + "value":"-0.67" + } + }, + { + "id":"8d6cda0c-f4d6-4c2a-b85e-54f27fbfaac7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T06:26:31.688Z", + "completed":"2017-02-06T06:26:31.688Z", + "new_balance":"3684.99", + "value":"-2.19" + } + }, + { + "id":"9fb836ad-5739-49e2-a2a9-3c33b6bb9630", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T01:45:51.245Z", + "completed":"2017-02-07T01:45:51.245Z", + "new_balance":"3677.29", + "value":"-7.70" + } + }, + { + "id":"3c4329f4-5986-45ab-8b55-f6cf080cd615", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T11:11:14.083Z", + "completed":"2017-02-07T11:11:14.083Z", + "new_balance":"3674.98", + "value":"-2.31" + } + }, + { + "id":"03083974-1f51-43f0-a993-a5ab071577ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:27:47.338Z", + "completed":"2017-02-07T20:27:47.338Z", + "new_balance":"3670.41", + "value":"-4.57" + } + }, + { + "id":"505ca8f3-9358-4e57-8df3-6da14792c853", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T02:47:05.101Z", + "completed":"2017-02-08T02:47:05.101Z", + "new_balance":"3666.27", + "value":"-4.14" + } + }, + { + "id":"8d25428d-d369-4822-9ad2-f3a725f2cac6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T11:56:41.438Z", + "completed":"2017-02-09T11:56:41.438Z", + "new_balance":"3663.87", + "value":"-2.40" + } + }, + { + "id":"2a117430-bc1c-4bbe-89d2-6cb20419cd57", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T19:28:58.435Z", + "completed":"2017-02-10T19:28:58.435Z", + "new_balance":"3663.35", + "value":"-0.52" + } + }, + { + "id":"e0df98ae-5d36-49b8-9540-33020d2e3ee1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T09:21:48.559Z", + "completed":"2017-02-12T09:21:48.559Z", + "new_balance":"3660.47", + "value":"-2.88" + } + }, + { + "id":"8c924b39-7421-4053-8591-ca0f8a104cff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:43:08.013Z", + "completed":"2017-02-14T20:43:08.013Z", + "new_balance":"3658.16", + "value":"-2.31" + } + }, + { + "id":"75fd1082-b3b3-4fe7-a724-5c8aa9696245", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T04:36:01.407Z", + "completed":"2017-02-16T04:36:01.407Z", + "new_balance":"3657.69", + "value":"-0.47" + } + }, + { + "id":"0a50fda4-9e4a-43d8-b2a0-a3f6fe2be81f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T09:20:46.194Z", + "completed":"2017-02-16T09:20:46.194Z", + "new_balance":"3653.08", + "value":"-4.61" + } + }, + { + "id":"054ffbb8-15f0-41ac-8d00-c667545af476", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T04:53:53.576Z", + "completed":"2017-02-18T04:53:53.576Z", + "new_balance":"3652.49", + "value":"-0.59" + } + }, + { + "id":"4d69edbc-3e36-4d00-9335-346a17b0018b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T05:06:16.509Z", + "completed":"2017-02-21T05:06:16.509Z", + "new_balance":"3648.77", + "value":"-3.72" + } + }, + { + "id":"6917be55-8e9c-465c-910e-35c3caae7f2d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T11:28:38.151Z", + "completed":"2017-02-21T11:28:38.151Z", + "new_balance":"3660.17", + "value":"11.40" + } + }, + { + "id":"9b77a198-4f21-4818-8eed-f9b74374b1b5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:46:26.751Z", + "completed":"2017-02-27T17:46:26.751Z", + "new_balance":"3637.81", + "value":"-22.36" + } + }, + { + "id":"1ac2a5be-f90b-454d-9e4a-553337b39c82", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T13:41:39.607Z", + "completed":"2017-03-01T13:41:39.607Z", + "new_balance":"3778.79", + "value":"140.98" + } + }, + { + "id":"36f4bdc8-becb-4c2e-ac64-0517cfe61322", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T16:55:21.097Z", + "completed":"2017-03-03T16:55:21.097Z", + "new_balance":"3747.07", + "value":"-31.72" + } + }, + { + "id":"d0be4554-bc00-4f28-85a4-7978ef3d480d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T01:16:10.411Z", + "completed":"2017-03-04T01:16:10.411Z", + "new_balance":"3742.46", + "value":"-4.61" + } + }, + { + "id":"2e89f768-25e8-47b1-98b4-828ee3cde4e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T07:08:12.914Z", + "completed":"2017-03-04T07:08:12.914Z", + "new_balance":"3739.00", + "value":"-3.46" + } + }, + { + "id":"b0d6e1f7-080c-41a9-b9ce-3732e3462ca7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T09:24:21.868Z", + "completed":"2017-03-04T09:24:21.868Z", + "new_balance":"3736.95", + "value":"-2.05" + } + }, + { + "id":"d449606d-094a-4fad-b162-b357cd044afa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T14:19:23.059Z", + "completed":"2017-03-04T14:19:23.059Z", + "new_balance":"3733.65", + "value":"-3.30" + } + }, + { + "id":"d56f9150-b77a-4206-a938-f24bacd65073", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T00:57:30.562Z", + "completed":"2017-03-05T00:57:30.562Z", + "new_balance":"3733.18", + "value":"-0.47" + } + }, + { + "id":"d8a6e17b-dfc7-41a9-af89-4915e10871da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T07:02:17.902Z", + "completed":"2017-03-05T07:02:17.902Z", + "new_balance":"3725.48", + "value":"-7.70" + } + }, + { + "id":"3dad7b4d-8944-4bff-9817-8bae9205ee9f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T11:08:16.670Z", + "completed":"2017-03-05T11:08:16.670Z", + "new_balance":"3718.73", + "value":"-6.75" + } + }, + { + "id":"89aadb56-920c-49d9-a38b-076170d659ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T19:43:18.688Z", + "completed":"2017-03-05T19:43:18.688Z", + "new_balance":"3717.43", + "value":"-1.30" + } + }, + { + "id":"968646f8-8405-41ea-8edd-06b1e69513c8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T14:03:58.761Z", + "completed":"2017-03-06T14:03:58.761Z", + "new_balance":"3709.69", + "value":"-7.74" + } + }, + { + "id":"0e318d2e-bf79-4a61-9bb2-524166ef0a97", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T15:46:03.396Z", + "completed":"2017-03-06T15:46:03.396Z", + "new_balance":"3703.05", + "value":"-6.64" + } + }, + { + "id":"72655b4e-8e93-4e32-80e6-1b00ecdaacad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T10:12:07.315Z", + "completed":"2017-03-07T10:12:07.315Z", + "new_balance":"3702.25", + "value":"-0.80" + } + }, + { + "id":"31fa9c90-8233-4e3f-b17c-bf7194e50761", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T13:07:52.339Z", + "completed":"2017-03-07T13:07:52.339Z", + "new_balance":"3701.78", + "value":"-0.47" + } + }, + { + "id":"b5fa9e92-36ed-4f8c-a003-ee6fc884c3cf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T05:18:45.490Z", + "completed":"2017-03-08T05:18:45.490Z", + "new_balance":"3700.98", + "value":"-0.80" + } + }, + { + "id":"c287bdac-18a3-441c-a8d5-06f98be5cc7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T08:53:04.808Z", + "completed":"2017-03-08T08:53:04.808Z", + "new_balance":"3700.21", + "value":"-0.77" + } + }, + { + "id":"348f6f8f-c715-446b-8c5c-7c0803e9aecd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T16:39:11.335Z", + "completed":"2017-03-10T16:39:11.335Z", + "new_balance":"3697.50", + "value":"-2.71" + } + }, + { + "id":"ab891c7d-e456-431b-832a-6648f23bc4f2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T16:01:33.713Z", + "completed":"2017-03-11T16:01:33.713Z", + "new_balance":"3697.03", + "value":"-0.47" + } + }, + { + "id":"6ba4c7eb-d3dc-4116-9a99-eefa4c113f50", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T17:47:11.418Z", + "completed":"2017-03-11T17:47:11.418Z", + "new_balance":"3694.31", + "value":"-2.72" + } + }, + { + "id":"e56f1eef-382a-45f7-92fd-6c4c6107cedf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:47:30.827Z", + "completed":"2017-03-11T19:47:30.827Z", + "new_balance":"3692.71", + "value":"-1.60" + } + }, + { + "id":"436f1f73-2040-44fb-978f-754639db5269", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T03:10:53.540Z", + "completed":"2017-03-12T03:10:53.540Z", + "new_balance":"3686.55", + "value":"-6.16" + } + }, + { + "id":"30b285da-cd90-48a9-91fb-9631933ac3e0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:18:07.068Z", + "completed":"2017-03-12T03:18:07.068Z", + "new_balance":"3683.96", + "value":"-2.59" + } + }, + { + "id":"3a7b342a-7392-4694-9ca0-e992ac46d5b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T07:54:45.275Z", + "completed":"2017-03-12T07:54:45.275Z", + "new_balance":"3683.49", + "value":"-0.47" + } + }, + { + "id":"5041c50a-5041-4df2-8458-4ba157e56e67", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T11:48:32.768Z", + "completed":"2017-03-12T11:48:32.768Z", + "new_balance":"3673.34", + "value":"-10.15" + } + }, + { + "id":"0d258dad-1624-42c9-9007-f748f9234dab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T13:56:00.416Z", + "completed":"2017-03-13T13:56:00.416Z", + "new_balance":"3670.76", + "value":"-2.58" + } + }, + { + "id":"323a89c7-e182-42c1-99b1-bed65be77ac6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T18:27:22.985Z", + "completed":"2017-03-13T18:27:22.985Z", + "new_balance":"3670.29", + "value":"-0.47" + } + }, + { + "id":"c767939a-bc8d-4394-990c-1e51ce4b9d44", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T11:39:18.184Z", + "completed":"2017-03-15T11:39:18.184Z", + "new_balance":"3666.17", + "value":"-4.12" + } + }, + { + "id":"4a3c3641-8d43-4a07-9c72-56781e8df69c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T11:55:36.929Z", + "completed":"2017-03-15T11:55:36.929Z", + "new_balance":"3661.25", + "value":"-4.92" + } + }, + { + "id":"208ff012-b88e-4f9d-a084-a19516b9d3f5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T10:20:08.409Z", + "completed":"2017-03-17T10:20:08.409Z", + "new_balance":"3656.86", + "value":"-4.39" + } + }, + { + "id":"bd9bf86c-c7d8-4b23-9456-6720a592951d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T10:00:02.122Z", + "completed":"2017-03-18T10:00:02.122Z", + "new_balance":"3647.25", + "value":"-9.61" + } + }, + { + "id":"2b25d09b-7583-465b-949b-cd363c16810b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T02:26:29.966Z", + "completed":"2017-03-20T02:26:29.966Z", + "new_balance":"3634.89", + "value":"-12.36" + } + }, + { + "id":"bf7a7baa-6437-4e5f-975a-fac7ba4920ef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T04:32:00.530Z", + "completed":"2017-03-22T04:32:00.530Z", + "new_balance":"3631.42", + "value":"-3.47" + } + }, + { + "id":"7b219425-be2d-44c3-b71f-f2b5fb5018d2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T09:06:15.231Z", + "completed":"2017-03-25T09:06:15.231Z", + "new_balance":"3630.95", + "value":"-0.47" + } + }, + { + "id":"54aabe51-c0cf-4c97-888c-ecd007b4d7be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T16:28:59.174Z", + "completed":"2017-03-25T16:28:59.174Z", + "new_balance":"3629.80", + "value":"-1.15" + } + }, + { + "id":"732174b2-c881-4133-8e76-0833579e0467", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T05:51:55.878Z", + "completed":"2017-03-26T05:51:55.878Z", + "new_balance":"3628.45", + "value":"-1.35" + } + }, + { + "id":"ab5246f5-da58-4c26-b116-00b4aaea7639", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T08:06:13.189Z", + "completed":"2017-03-26T08:06:13.189Z", + "new_balance":"3626.06", + "value":"-2.39" + } + }, + { + "id":"9bf984b5-ccd2-4485-a13e-82e1d05b5147", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T02:54:36.792Z", + "completed":"2017-03-27T02:54:36.792Z", + "new_balance":"3624.86", + "value":"-1.20" + } + }, + { + "id":"c614eb48-279d-4f59-b90f-10ccac6636a9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T08:44:50.450Z", + "completed":"2017-03-28T08:44:50.450Z", + "new_balance":"3621.14", + "value":"-3.72" + } + }, + { + "id":"ececc51d-aeb5-4106-9cd1-727aaad6bc5b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T19:29:37.734Z", + "completed":"2017-03-31T19:29:37.734Z", + "new_balance":"3598.78", + "value":"-22.36" + } + }, + { + "id":"111f00e8-acda-4f88-a7b4-101883eb3903", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T14:29:34.179Z", + "completed":"2017-04-01T14:29:34.179Z", + "new_balance":"3739.76", + "value":"140.98" + } + }, + { + "id":"f20037f2-34f3-42de-a837-3b444ba1614d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T18:56:39.260Z", + "completed":"2017-04-01T18:56:39.260Z", + "new_balance":"3708.04", + "value":"-31.72" + } + }, + { + "id":"b3203a20-fb9e-4098-9a09-6e49e3ebf633", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T22:42:19.637Z", + "completed":"2017-04-01T22:42:19.637Z", + "new_balance":"3890.74", + "value":"182.70" + } + }, + { + "id":"1e021127-db87-4099-9f31-1231ccaefcfb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T01:32:09.165Z", + "completed":"2017-04-03T01:32:09.165Z", + "new_balance":"3890.07", + "value":"-0.67" + } + }, + { + "id":"d7ec5007-68d7-48e2-937e-a061f0ddf754", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T07:37:22.486Z", + "completed":"2017-04-03T07:37:22.486Z", + "new_balance":"3885.25", + "value":"-4.82" + } + }, + { + "id":"6713d2c6-435f-402c-9772-108cd0dd142d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T13:35:16.023Z", + "completed":"2017-04-03T13:35:16.023Z", + "new_balance":"3883.51", + "value":"-1.74" + } + }, + { + "id":"e2cbba87-6177-4fe3-8694-cc581834d071", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T08:07:46.538Z", + "completed":"2017-04-05T08:07:46.538Z", + "new_balance":"3882.11", + "value":"-1.40" + } + }, + { + "id":"74791acb-4028-4bee-9a8f-538967aedf71", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T15:56:36.939Z", + "completed":"2017-04-05T15:56:36.939Z", + "new_balance":"3881.59", + "value":"-0.52" + } + }, + { + "id":"8f300c08-a7ec-473b-884d-7e9dd9477bee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T23:03:24.120Z", + "completed":"2017-04-06T23:03:24.120Z", + "new_balance":"3879.99", + "value":"-1.60" + } + }, + { + "id":"60b02278-ee1e-4a1d-86d8-433ca6b74ecb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T22:39:22.685Z", + "completed":"2017-04-09T22:39:22.685Z", + "new_balance":"3877.40", + "value":"-2.59" + } + }, + { + "id":"b5357b2e-3b13-4cc3-af62-780d7c7c3a32", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T16:05:22.258Z", + "completed":"2017-04-10T16:05:22.258Z", + "new_balance":"3875.72", + "value":"-1.68" + } + }, + { + "id":"0621a524-745b-4b8c-b716-37013a4fe428", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T01:40:36.689Z", + "completed":"2017-04-11T01:40:36.689Z", + "new_balance":"3873.41", + "value":"-2.31" + } + }, + { + "id":"80375505-32d1-47f2-86d0-15d9a7ef5447", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T03:30:57.510Z", + "completed":"2017-04-11T03:30:57.510Z", + "new_balance":"3871.54", + "value":"-1.87" + } + }, + { + "id":"f9f2bfdf-85ff-45a7-81d5-5c7ec92e8501", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T00:05:55.337Z", + "completed":"2017-04-13T00:05:55.337Z", + "new_balance":"3865.41", + "value":"-6.13" + } + }, + { + "id":"6079901a-760e-404a-9b00-e1b69ed5ae98", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T23:36:27.052Z", + "completed":"2017-04-13T23:36:27.052Z", + "new_balance":"3857.71", + "value":"-7.70" + } + }, + { + "id":"f6a21d33-67a3-497c-8f3e-194879012cea", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T07:12:20.519Z", + "completed":"2017-04-15T07:12:20.519Z", + "new_balance":"3853.18", + "value":"-4.53" + } + }, + { + "id":"71a9b0d0-4792-4340-9204-e5ea26cb41be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T03:44:23.705Z", + "completed":"2017-04-16T03:44:23.705Z", + "new_balance":"3852.37", + "value":"-0.81" + } + }, + { + "id":"e94dc9e0-21f5-48df-80c8-32c0a020b64a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T17:48:15.798Z", + "completed":"2017-04-16T17:48:15.798Z", + "new_balance":"3851.90", + "value":"-0.47" + } + }, + { + "id":"216a7292-537e-4bbe-b468-6ac5f21ead2b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T05:05:53.490Z", + "completed":"2017-04-18T05:05:53.490Z", + "new_balance":"3846.42", + "value":"-5.48" + } + }, + { + "id":"c019ea64-d05b-4907-af31-765d65e93a3f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T07:56:12.002Z", + "completed":"2017-04-23T07:56:12.002Z", + "new_balance":"3843.99", + "value":"-2.43" + } + }, + { + "id":"c0b848c6-ff13-4ec6-b0ba-d07bfea1250a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T01:39:59.701Z", + "completed":"2017-04-24T01:39:59.701Z", + "new_balance":"3840.69", + "value":"-3.30" + } + }, + { + "id":"ac7792bc-5532-47eb-bba4-19f4da2aadb2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T02:32:32.156Z", + "completed":"2017-04-24T02:32:32.156Z", + "new_balance":"3839.12", + "value":"-1.57" + } + }, + { + "id":"934335de-cb0c-4bae-a049-5c55ae656b1f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T12:45:48.868Z", + "completed":"2017-04-26T12:45:48.868Z", + "new_balance":"3838.60", + "value":"-0.52" + } + }, + { + "id":"b24254d0-d254-43c7-ba01-b7091fa445b2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T06:30:43.750Z", + "completed":"2017-04-28T06:30:43.750Z", + "new_balance":"3834.88", + "value":"-3.72" + } + }, + { + "id":"82707d6c-4dbd-4ad8-ba39-95302204d670", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T18:21:49.249Z", + "completed":"2017-04-28T18:21:49.249Z", + "new_balance":"3812.52", + "value":"-22.36" + } + }, + { + "id":"a06ed6ae-5e43-4a75-ae82-3a100ba84db8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T01:14:26.118Z", + "completed":"2017-05-02T01:14:26.118Z", + "new_balance":"3811.20", + "value":"-1.32" + } + }, + { + "id":"e3f11a91-30e4-48d2-bd4f-e9a30f6a2a2f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T08:06:47.178Z", + "completed":"2017-05-02T08:06:47.178Z", + "new_balance":"3810.53", + "value":"-0.67" + } + }, + { + "id":"340e0aa6-dfb1-4b9b-b58a-cb698000458b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T11:56:48.665Z", + "completed":"2017-05-02T11:56:48.665Z", + "new_balance":"3778.81", + "value":"-31.72" + } + }, + { + "id":"6703bab1-f20a-457f-ab68-ab6564efdf98", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T13:34:09.237Z", + "completed":"2017-05-02T13:34:09.237Z", + "new_balance":"3765.71", + "value":"-13.10" + } + }, + { + "id":"23e48d26-a937-46cf-8933-d5015225fcf4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T00:28:33.888Z", + "completed":"2017-05-06T00:28:33.888Z", + "new_balance":"3763.40", + "value":"-2.31" + } + }, + { + "id":"f95f2aab-003e-4303-966f-1c52a24c075c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T19:03:21.143Z", + "completed":"2017-05-06T19:03:21.143Z", + "new_balance":"3761.21", + "value":"-2.19" + } + }, + { + "id":"fbfd0937-ad76-4d01-8055-44285c86460e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T12:47:26.863Z", + "completed":"2017-05-07T12:47:26.863Z", + "new_balance":"3756.64", + "value":"-4.57" + } + }, + { + "id":"4b6f6360-c069-47c9-86fa-7783fd6da086", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T15:13:10.254Z", + "completed":"2017-05-07T15:13:10.254Z", + "new_balance":"3748.94", + "value":"-7.70" + } + }, + { + "id":"f3d57f91-f4a5-4b4a-b626-1117be93feaf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T14:10:59.317Z", + "completed":"2017-05-09T14:10:59.317Z", + "new_balance":"3889.92", + "value":"140.98" + } + }, + { + "id":"2a45f873-7857-4c93-84c6-749b5a116cdb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T02:51:15.080Z", + "completed":"2017-05-14T02:51:15.080Z", + "new_balance":"3885.78", + "value":"-4.14" + } + }, + { + "id":"e5c465ce-59b0-470a-b6af-d62d5f9ced6c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T15:03:48.583Z", + "completed":"2017-05-14T15:03:48.583Z", + "new_balance":"3883.38", + "value":"-2.40" + } + }, + { + "id":"9bf87d04-0f33-4466-a9fa-4b700cb79e0d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T20:44:36.651Z", + "completed":"2017-05-16T20:44:36.651Z", + "new_balance":"3882.86", + "value":"-0.52" + } + }, + { + "id":"1e781d21-6c00-4362-bd52-9b420413d94a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T21:04:38.018Z", + "completed":"2017-05-21T21:04:38.018Z", + "new_balance":"3879.98", + "value":"-2.88" + } + }, + { + "id":"1dd05b62-f740-4008-a131-46a4402243a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T08:34:51.131Z", + "completed":"2017-05-23T08:34:51.131Z", + "new_balance":"3877.67", + "value":"-2.31" + } + }, + { + "id":"559a1ba4-1f38-4a4b-b3b1-015e194c0f4e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T14:00:02.888Z", + "completed":"2017-05-23T14:00:02.888Z", + "new_balance":"3877.20", + "value":"-0.47" + } + }, + { + "id":"3428ace0-728d-49d6-953d-25f66d7f4a5f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T08:54:05.707Z", + "completed":"2017-05-24T08:54:05.707Z", + "new_balance":"3872.59", + "value":"-4.61" + } + }, + { + "id":"9ce0f99b-46d9-4376-8cc3-433ef1e1e450", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:53:34.169Z", + "completed":"2017-05-27T08:53:34.169Z", + "new_balance":"3872.00", + "value":"-0.59" + } + }, + { + "id":"f7d963d4-8e68-4693-9cf2-25643deaf0df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T07:28:59.469Z", + "completed":"2017-05-30T07:28:59.469Z", + "new_balance":"3849.64", + "value":"-22.36" + } + }, + { + "id":"ab7ee752-632b-403a-b547-19d26ade005a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T17:50:56.269Z", + "completed":"2017-05-30T17:50:56.269Z", + "new_balance":"3845.92", + "value":"-3.72" + } + }, + { + "id":"b2ffb130-72f4-4313-b78a-792d51903891", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T18:41:59.996Z", + "completed":"2017-06-01T18:41:59.996Z", + "new_balance":"3814.20", + "value":"-31.72" + } + }, + { + "id":"710ee4c8-76cb-46bf-a138-79b67bbef6dc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T22:21:00.377Z", + "completed":"2017-06-01T22:21:00.377Z", + "new_balance":"3955.18", + "value":"140.98" + } + }, + { + "id":"1396b467-a8ba-4a41-bfbb-d09a103701bf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T01:44:13.749Z", + "completed":"2017-06-04T01:44:13.749Z", + "new_balance":"3951.72", + "value":"-3.46" + } + }, + { + "id":"99e0ba89-a1d4-4833-81b3-7d55fe3c3b7c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T15:45:01.290Z", + "completed":"2017-06-04T15:45:01.290Z", + "new_balance":"3949.67", + "value":"-2.05" + } + }, + { + "id":"4f41a261-910b-4a2f-892d-2734459fa682", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T06:45:05.128Z", + "completed":"2017-06-11T06:45:05.128Z", + "new_balance":"3945.06", + "value":"-4.61" + } + }, + { + "id":"f6ba7501-5bdf-424a-8811-6494c1143799", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T20:42:30.662Z", + "completed":"2017-06-11T20:42:30.662Z", + "new_balance":"3941.76", + "value":"-3.30" + } + }, + { + "id":"9ad59b98-1ddc-4722-96cc-b39f03002d37", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T06:22:55.277Z", + "completed":"2017-06-12T06:22:55.277Z", + "new_balance":"3940.46", + "value":"-1.30" + } + }, + { + "id":"8cd3da7d-bed9-4511-95e8-459ea83fa859", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T16:03:55.472Z", + "completed":"2017-06-12T16:03:55.472Z", + "new_balance":"3932.76", + "value":"-7.70" + } + }, + { + "id":"6a0efe6c-af02-4028-8770-7b1b6fa1c52e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T17:41:17.760Z", + "completed":"2017-06-12T17:41:17.760Z", + "new_balance":"3932.29", + "value":"-0.47" + } + }, + { + "id":"f26db9ca-ccc5-46ee-a979-d903d40d55d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T02:29:55.281Z", + "completed":"2017-06-13T02:29:55.281Z", + "new_balance":"3925.65", + "value":"-6.64" + } + }, + { + "id":"c7869e4c-5d30-4dd6-a124-9e239762bfb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T14:42:27.800Z", + "completed":"2017-06-13T14:42:27.800Z", + "new_balance":"3917.91", + "value":"-7.74" + } + }, + { + "id":"f303c066-92c4-4380-87ca-d6d88a8d91b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T16:04:32.862Z", + "completed":"2017-06-13T16:04:32.862Z", + "new_balance":"3911.16", + "value":"-6.75" + } + }, + { + "id":"05a9099b-64a6-4922-b3f7-9a5930557f15", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T02:09:00.049Z", + "completed":"2017-06-14T02:09:00.049Z", + "new_balance":"3910.69", + "value":"-0.47" + } + }, + { + "id":"0e0420af-54ef-487d-afb9-0a695fb8952b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T16:24:26.430Z", + "completed":"2017-06-14T16:24:26.430Z", + "new_balance":"3909.89", + "value":"-0.80" + } + }, + { + "id":"c7fcb7e6-252c-4304-8544-bb820b2b95ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T19:07:04.323Z", + "completed":"2017-06-14T19:07:04.323Z", + "new_balance":"3909.09", + "value":"-0.80" + } + }, + { + "id":"9bc28b18-7d10-45a4-9120-15e7ae67e770", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T11:27:52.446Z", + "completed":"2017-06-15T11:27:52.446Z", + "new_balance":"3906.38", + "value":"-2.71" + } + }, + { + "id":"2dc5fafe-43e1-4a21-b614-889c7cd6f41f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T14:04:18.001Z", + "completed":"2017-06-15T14:04:18.001Z", + "new_balance":"3905.91", + "value":"-0.47" + } + }, + { + "id":"b82117e9-1be1-4683-984a-c64b37b8b1e1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T14:57:42.742Z", + "completed":"2017-06-15T14:57:42.742Z", + "new_balance":"3905.14", + "value":"-0.77" + } + }, + { + "id":"b59ef453-e308-4bee-bcc3-3ef997815917", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T05:59:45.088Z", + "completed":"2017-06-16T05:59:45.088Z", + "new_balance":"3902.42", + "value":"-2.72" + } + }, + { + "id":"e50d98e7-9e46-4776-b7b5-110b16a87e43", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T22:43:07.723Z", + "completed":"2017-06-17T22:43:07.723Z", + "new_balance":"3900.82", + "value":"-1.60" + } + }, + { + "id":"c7617f4a-f42c-4c33-9f56-2340ceb33b26", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T04:13:41.488Z", + "completed":"2017-06-18T04:13:41.488Z", + "new_balance":"3898.23", + "value":"-2.59" + } + }, + { + "id":"df2aa5b5-1ca3-4576-98bd-2e2ae84f0b3d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T04:18:43.174Z", + "completed":"2017-06-18T04:18:43.174Z", + "new_balance":"3895.65", + "value":"-2.58" + } + }, + { + "id":"aa633c3c-4c5b-4f03-88b5-d3a964221f29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T04:45:26.315Z", + "completed":"2017-06-18T04:45:26.315Z", + "new_balance":"3885.50", + "value":"-10.15" + } + }, + { + "id":"40d20825-a496-42f9-8bfc-c3ed099c97a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T11:33:10.078Z", + "completed":"2017-06-18T11:33:10.078Z", + "new_balance":"3885.03", + "value":"-0.47" + } + }, + { + "id":"f15656aa-2261-48d5-934e-75c834551360", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T17:57:25.198Z", + "completed":"2017-06-18T17:57:25.198Z", + "new_balance":"3884.56", + "value":"-0.47" + } + }, + { + "id":"a81508fb-0805-4fd4-aca8-f64a7ff3a5df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T22:47:07.470Z", + "completed":"2017-06-18T22:47:07.470Z", + "new_balance":"3878.40", + "value":"-6.16" + } + }, + { + "id":"f5ea2eb8-862e-463c-9c4d-4dc03f8cacab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:30:22.091Z", + "completed":"2017-06-19T00:30:22.091Z", + "new_balance":"3873.48", + "value":"-4.92" + } + }, + { + "id":"3ad23742-bcb0-4b01-9e53-abaa535e9132", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T06:22:15.587Z", + "completed":"2017-06-19T06:22:15.587Z", + "new_balance":"3869.36", + "value":"-4.12" + } + }, + { + "id":"72cc99cf-e58b-4cbb-89f7-d333aea86e70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:49:36.694Z", + "completed":"2017-06-19T06:49:36.694Z", + "new_balance":"3864.97", + "value":"-4.39" + } + }, + { + "id":"c94ff66c-513b-4bc6-9d59-b234935cdeb2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T12:49:37.748Z", + "completed":"2017-06-21T12:49:37.748Z", + "new_balance":"3852.61", + "value":"-12.36" + } + }, + { + "id":"19dbba97-a2e7-45e0-9e30-e2517d273d96", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T15:24:13.795Z", + "completed":"2017-06-21T15:24:13.795Z", + "new_balance":"3843.00", + "value":"-9.61" + } + }, + { + "id":"4cc728d4-5324-4e61-9b77-ad01da92c111", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T08:46:47.309Z", + "completed":"2017-06-22T08:46:47.309Z", + "new_balance":"3841.85", + "value":"-1.15" + } + }, + { + "id":"08bd9627-a577-4e02-8a12-101f9a260224", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T10:42:03.810Z", + "completed":"2017-06-22T10:42:03.810Z", + "new_balance":"3838.38", + "value":"-3.47" + } + }, + { + "id":"21f8a983-3f58-4755-b949-0eb53a84e6ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T13:17:57.088Z", + "completed":"2017-06-22T13:17:57.088Z", + "new_balance":"3837.91", + "value":"-0.47" + } + }, + { + "id":"a22813a1-8c8b-4876-bc3f-e4d41c84a254", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T11:01:21.041Z", + "completed":"2017-06-23T11:01:21.041Z", + "new_balance":"3836.56", + "value":"-1.35" + } + }, + { + "id":"2a5e9971-dbe4-41f2-8b62-5165e6b8d1c5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T05:43:15.251Z", + "completed":"2017-06-24T05:43:15.251Z", + "new_balance":"3834.17", + "value":"-2.39" + } + }, + { + "id":"c1afe9cb-0be3-4b31-8623-9a03b1e27f4a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T01:59:16.908Z", + "completed":"2017-06-26T01:59:16.908Z", + "new_balance":"3832.97", + "value":"-1.20" + } + }, + { + "id":"1f69fd3c-de1e-4544-b76f-f2296efdd423", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T15:48:51.019Z", + "completed":"2017-06-30T15:48:51.019Z", + "new_balance":"3829.25", + "value":"-3.72" + } + }, + { + "id":"fac25591-8ac4-4792-bfff-2a6cb13b1603", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T22:27:45.554Z", + "completed":"2017-06-30T22:27:45.554Z", + "new_balance":"3806.89", + "value":"-22.36" + } + }, + { + "id":"b6f69536-9dae-4950-ac43-858c64c60782", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:58:30.004Z", + "completed":"2017-07-01T09:58:30.004Z", + "new_balance":"3947.87", + "value":"140.98" + } + }, + { + "id":"ee0ba7d0-e872-40eb-8da1-e476902671f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T16:36:58.721Z", + "completed":"2017-07-01T16:36:58.721Z", + "new_balance":"4130.57", + "value":"182.70" + } + }, + { + "id":"b5180800-2df1-462e-9961-57dde8076a33", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T15:27:44.676Z", + "completed":"2017-07-03T15:27:44.676Z", + "new_balance":"4098.85", + "value":"-31.72" + } + }, + { + "id":"d9592ab7-4697-4157-9e3f-8b3ad196d5cb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T05:18:36.328Z", + "completed":"2017-07-04T05:18:36.328Z", + "new_balance":"4094.03", + "value":"-4.82" + } + }, + { + "id":"06b96f6e-9441-4794-848e-c9d7d684114b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:48:20.296Z", + "completed":"2017-07-04T13:48:20.296Z", + "new_balance":"4093.36", + "value":"-0.67" + } + }, + { + "id":"5000fca4-d19c-4f45-836d-7319dc34342a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T23:05:45.470Z", + "completed":"2017-07-04T23:05:45.470Z", + "new_balance":"4091.62", + "value":"-1.74" + } + }, + { + "id":"d027df2b-eac1-4e44-9524-0af20cfdc42d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T13:55:32.100Z", + "completed":"2017-07-05T13:55:32.100Z", + "new_balance":"4090.22", + "value":"-1.40" + } + }, + { + "id":"709f413c-5469-47e7-8539-d5e44902e37c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T07:44:46.675Z", + "completed":"2017-07-07T07:44:46.675Z", + "new_balance":"4089.70", + "value":"-0.52" + } + }, + { + "id":"a84d258a-6017-464d-b46b-940e798bf5af", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T00:45:44.435Z", + "completed":"2017-07-11T00:45:44.435Z", + "new_balance":"4087.39", + "value":"-2.31" + } + }, + { + "id":"d54a9cbf-1138-4283-9e3d-b5ebadb032f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T06:25:57.231Z", + "completed":"2017-07-11T06:25:57.231Z", + "new_balance":"4085.71", + "value":"-1.68" + } + }, + { + "id":"7c690dc7-9565-4459-b2f0-30a50fdaaa32", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T08:47:40.211Z", + "completed":"2017-07-11T08:47:40.211Z", + "new_balance":"4083.84", + "value":"-1.87" + } + }, + { + "id":"97afc61b-6e9e-40d0-88e6-47624561ac06", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T14:52:52.406Z", + "completed":"2017-07-11T14:52:52.406Z", + "new_balance":"4081.25", + "value":"-2.59" + } + }, + { + "id":"27c0d30d-57fa-42ff-a1a9-a313a8158b07", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T15:08:19.645Z", + "completed":"2017-07-11T15:08:19.645Z", + "new_balance":"4079.65", + "value":"-1.60" + } + }, + { + "id":"6c395c9d-073d-4d5e-9970-31427c22d3f6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T04:10:39.842Z", + "completed":"2017-07-13T04:10:39.842Z", + "new_balance":"4073.52", + "value":"-6.13" + } + }, + { + "id":"c7be6520-df4e-4b05-8123-12d208bbf306", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T13:22:41.504Z", + "completed":"2017-07-13T13:22:41.504Z", + "new_balance":"4065.82", + "value":"-7.70" + } + }, + { + "id":"36074e4f-ae1c-48d2-9aac-be7b4dea2c80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T02:32:11.217Z", + "completed":"2017-07-16T02:32:11.217Z", + "new_balance":"4061.29", + "value":"-4.53" + } + }, + { + "id":"6cf87016-cc6e-4345-ae83-3a3a8fa62ec9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T21:48:15.770Z", + "completed":"2017-07-16T21:48:15.770Z", + "new_balance":"4070.28", + "value":"8.99" + } + }, + { + "id":"dd0c00a1-8b9c-4aec-8ff8-02be93bc764e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T14:37:07.971Z", + "completed":"2017-07-17T14:37:07.971Z", + "new_balance":"4069.81", + "value":"-0.47" + } + }, + { + "id":"00ab7df2-eb0d-480a-a2d5-759958011462", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T22:04:35.889Z", + "completed":"2017-07-17T22:04:35.889Z", + "new_balance":"4069.00", + "value":"-0.81" + } + }, + { + "id":"08daee98-a0e1-4b82-b9fa-b28eea4a9bc3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T04:49:08.196Z", + "completed":"2017-07-19T04:49:08.196Z", + "new_balance":"4063.52", + "value":"-5.48" + } + }, + { + "id":"5f63b0ae-acb3-4242-a43e-59c10a5b6f99", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T13:14:35.181Z", + "completed":"2017-07-21T13:14:35.181Z", + "new_balance":"4061.09", + "value":"-2.43" + } + }, + { + "id":"615ce896-3d63-45b2-8fe4-1da129170d01", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T18:18:42.532Z", + "completed":"2017-07-23T18:18:42.532Z", + "new_balance":"4057.79", + "value":"-3.30" + } + }, + { + "id":"0bc37f8f-c06a-41a3-b9f1-6e2e0b1a5473", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T11:09:09.239Z", + "completed":"2017-07-25T11:09:09.239Z", + "new_balance":"4056.22", + "value":"-1.57" + } + }, + { + "id":"f26c7803-699c-44cc-a4bd-0c46676e0938", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T10:43:21.676Z", + "completed":"2017-07-27T10:43:21.676Z", + "new_balance":"4055.70", + "value":"-0.52" + } + }, + { + "id":"a8929f60-8f93-47fb-8278-0d1cf87a5607", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T03:37:19.065Z", + "completed":"2017-07-28T03:37:19.065Z", + "new_balance":"4051.98", + "value":"-3.72" + } + }, + { + "id":"8e49f5ff-4649-4eb0-893f-ce0376f1e473", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T07:40:04.959Z", + "completed":"2017-07-28T07:40:04.959Z", + "new_balance":"4029.62", + "value":"-22.36" + } + }, + { + "id":"bcb76f47-e55e-4bd7-a4a9-6558e9e30020", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T18:34:54.717Z", + "completed":"2017-08-01T18:34:54.717Z", + "new_balance":"4170.60", + "value":"140.98" + } + }, + { + "id":"67270f8e-ce88-403a-938c-c4b636af138b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T12:22:21.875Z", + "completed":"2017-08-03T12:22:21.875Z", + "new_balance":"4138.88", + "value":"-31.72" + } + }, + { + "id":"b95d59f2-e05c-4d7c-ab8c-1b70c4fe1cf1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:21:32.915Z", + "completed":"2017-08-03T17:21:32.915Z", + "new_balance":"4125.78", + "value":"-13.10" + } + }, + { + "id":"e6869fa4-9a51-4c4d-87e3-b72a1f7baa6e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T13:43:24.093Z", + "completed":"2017-08-04T13:43:24.093Z", + "new_balance":"4124.46", + "value":"-1.32" + } + }, + { + "id":"e34a5ac5-055e-499c-b841-b0c49cd9af3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T02:33:57.589Z", + "completed":"2017-08-07T02:33:57.589Z", + "new_balance":"4122.27", + "value":"-2.19" + } + }, + { + "id":"ceb0e9c2-e821-4676-b70d-4e41efd8c0ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:53:15.726Z", + "completed":"2017-08-07T09:53:15.726Z", + "new_balance":"4119.96", + "value":"-2.31" + } + }, + { + "id":"44775d67-c7ea-428f-b966-ac0555248d50", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T19:43:46.729Z", + "completed":"2017-08-07T19:43:46.729Z", + "new_balance":"4119.29", + "value":"-0.67" + } + }, + { + "id":"7920d02b-5ea6-4d2c-9b62-0c19a2f50802", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T03:04:09.763Z", + "completed":"2017-08-08T03:04:09.763Z", + "new_balance":"4111.59", + "value":"-7.70" + } + }, + { + "id":"f746fc8b-ea2e-4719-b030-3e9e8ac3f69e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T13:25:55.593Z", + "completed":"2017-08-08T13:25:55.593Z", + "new_balance":"4107.02", + "value":"-4.57" + } + }, + { + "id":"17455092-df06-419a-90f3-7faac686f99c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T21:03:08.820Z", + "completed":"2017-08-08T21:03:08.820Z", + "new_balance":"4102.88", + "value":"-4.14" + } + }, + { + "id":"f5d3576a-0288-4da7-a9bf-e6cfa36e526f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T20:54:09.623Z", + "completed":"2017-08-09T20:54:09.623Z", + "new_balance":"4100.48", + "value":"-2.40" + } + }, + { + "id":"095c49fd-8b95-4b07-b32b-511a035c81c3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T20:12:10.116Z", + "completed":"2017-08-11T20:12:10.116Z", + "new_balance":"4099.96", + "value":"-0.52" + } + }, + { + "id":"1d9a1cae-ec66-49ef-87ba-e6e6a0e4f255", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T02:11:53.387Z", + "completed":"2017-08-14T02:11:53.387Z", + "new_balance":"4097.08", + "value":"-2.88" + } + }, + { + "id":"0bec6fb1-3859-4cad-b8f1-e15b0df25c0e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T11:17:24.443Z", + "completed":"2017-08-15T11:17:24.443Z", + "new_balance":"4094.77", + "value":"-2.31" + } + }, + { + "id":"213721b7-345e-4cde-b79b-d6e5d4c8b735", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T06:49:14.056Z", + "completed":"2017-08-17T06:49:14.056Z", + "new_balance":"4090.16", + "value":"-4.61" + } + }, + { + "id":"3aa1be54-9072-4bc2-b668-bbe1634ef7b1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T12:29:05.949Z", + "completed":"2017-08-17T12:29:05.949Z", + "new_balance":"4089.69", + "value":"-0.47" + } + }, + { + "id":"ff30c977-c507-4d8f-8e76-b9e92e4a987e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T13:29:44.599Z", + "completed":"2017-08-19T13:29:44.599Z", + "new_balance":"4089.10", + "value":"-0.59" + } + }, + { + "id":"b2409c8d-8559-49ee-8b03-6a10aeac933a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T23:45:00.839Z", + "completed":"2017-08-25T23:45:00.839Z", + "new_balance":"4100.50", + "value":"11.40" + } + }, + { + "id":"ba8d34c5-b4ab-4668-ac23-f41572cdfc77", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T11:09:04.802Z", + "completed":"2017-08-28T11:09:04.802Z", + "new_balance":"4096.78", + "value":"-3.72" + } + }, + { + "id":"87befb63-782d-4f5a-973a-2d424d7f4f85", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T23:25:28.043Z", + "completed":"2017-08-28T23:25:28.043Z", + "new_balance":"4074.42", + "value":"-22.36" + } + }, + { + "id":"d07de6e4-c18d-4839-bb40-6a336ada6557", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T08:25:56.778Z", + "completed":"2017-09-01T08:25:56.778Z", + "new_balance":"4215.40", + "value":"140.98" + } + }, + { + "id":"7611fadf-aa44-4ea1-bf08-ed75abf6c0dc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T00:09:54.276Z", + "completed":"2017-09-03T00:09:54.276Z", + "new_balance":"4183.68", + "value":"-31.72" + } + }, + { + "id":"5b239081-ddd2-4dbf-bb0a-6dc36fbe59d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T13:07:49.954Z", + "completed":"2017-09-04T13:07:49.954Z", + "new_balance":"4181.63", + "value":"-2.05" + } + }, + { + "id":"8930dce4-8b1a-41ae-8f9f-00a69241606d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:37:03.129Z", + "completed":"2017-09-04T19:37:03.129Z", + "new_balance":"4178.17", + "value":"-3.46" + } + }, + { + "id":"b612b9e6-b2b2-4df0-80f8-46e0957cab7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T19:51:39.409Z", + "completed":"2017-09-04T19:51:39.409Z", + "new_balance":"4174.87", + "value":"-3.30" + } + }, + { + "id":"a38f51bb-3392-41d5-a5ea-9e868b256fa8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T20:42:54.530Z", + "completed":"2017-09-04T20:42:54.530Z", + "new_balance":"4170.26", + "value":"-4.61" + } + }, + { + "id":"d2f56788-367c-4dcc-a86a-c2e6300c846b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T03:20:42.429Z", + "completed":"2017-09-05T03:20:42.429Z", + "new_balance":"4169.79", + "value":"-0.47" + } + }, + { + "id":"5fb37231-e1e2-4bfc-94fc-06d1545bd3b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T07:37:13.347Z", + "completed":"2017-09-05T07:37:13.347Z", + "new_balance":"4168.49", + "value":"-1.30" + } + }, + { + "id":"cd77db96-e229-4932-9ebf-a0b2bd19a3df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T11:00:09.092Z", + "completed":"2017-09-05T11:00:09.092Z", + "new_balance":"4160.75", + "value":"-7.74" + } + }, + { + "id":"6b6f16b2-864a-4d22-ab81-f2a75b21cfc0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T11:25:05.513Z", + "completed":"2017-09-05T11:25:05.513Z", + "new_balance":"4154.00", + "value":"-6.75" + } + }, + { + "id":"e19c0661-9905-401c-a41f-75a80661dab2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T12:37:42.490Z", + "completed":"2017-09-05T12:37:42.490Z", + "new_balance":"4146.30", + "value":"-7.70" + } + }, + { + "id":"8977b3cb-5776-4d3b-80a9-450c7ad186c9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T18:53:39.603Z", + "completed":"2017-09-05T18:53:39.603Z", + "new_balance":"4139.66", + "value":"-6.64" + } + }, + { + "id":"80e41631-6085-46a3-935b-d9d34fb22810", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T06:30:43.751Z", + "completed":"2017-09-07T06:30:43.751Z", + "new_balance":"4138.86", + "value":"-0.80" + } + }, + { + "id":"88e80eb2-a2d9-4f2b-b9fd-73ce317428c1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T08:42:07.170Z", + "completed":"2017-09-07T08:42:07.170Z", + "new_balance":"4138.39", + "value":"-0.47" + } + }, + { + "id":"38af390b-1382-4a86-8836-5c1684225952", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T15:16:15.280Z", + "completed":"2017-09-07T15:16:15.280Z", + "new_balance":"4137.59", + "value":"-0.80" + } + }, + { + "id":"18afb587-7200-48cf-aadd-9155b0f719f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T19:46:08.868Z", + "completed":"2017-09-07T19:46:08.868Z", + "new_balance":"4136.82", + "value":"-0.77" + } + }, + { + "id":"09a2defb-dc88-4eb2-b31b-959feeb6e468", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T04:54:42.540Z", + "completed":"2017-09-10T04:54:42.540Z", + "new_balance":"4134.11", + "value":"-2.71" + } + }, + { + "id":"0c2e59d2-5bd2-43cd-84ff-5ed8084c4690", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T06:41:26.446Z", + "completed":"2017-09-11T06:41:26.446Z", + "new_balance":"4132.51", + "value":"-1.60" + } + }, + { + "id":"88e1c1a9-7397-40fe-b593-2b8816a7975d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:22:48.998Z", + "completed":"2017-09-11T08:22:48.998Z", + "new_balance":"4129.79", + "value":"-2.72" + } + }, + { + "id":"3d7e8a3c-a6f5-454d-9c8b-6d2017e99f2e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T16:11:47.412Z", + "completed":"2017-09-11T16:11:47.412Z", + "new_balance":"4129.32", + "value":"-0.47" + } + }, + { + "id":"a8ede710-328d-4d71-92cd-32f5b45441ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T15:18:26.982Z", + "completed":"2017-09-12T15:18:26.982Z", + "new_balance":"4126.73", + "value":"-2.59" + } + }, + { + "id":"10e9c63b-0908-4c19-95cb-5173f3f761db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:23:52.124Z", + "completed":"2017-09-12T15:23:52.124Z", + "new_balance":"4116.58", + "value":"-10.15" + } + }, + { + "id":"e91e39e3-72a7-4131-a511-9cf50a69fdef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:32:17.332Z", + "completed":"2017-09-12T15:32:17.332Z", + "new_balance":"4110.42", + "value":"-6.16" + } + }, + { + "id":"820f4636-71e9-41a9-961d-22f921b5d6e1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T15:51:12.151Z", + "completed":"2017-09-12T15:51:12.151Z", + "new_balance":"4109.95", + "value":"-0.47" + } + }, + { + "id":"7d28af3b-d86e-4683-9d09-fc57b8f9725a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T02:58:08.127Z", + "completed":"2017-09-13T02:58:08.127Z", + "new_balance":"4107.37", + "value":"-2.58" + } + }, + { + "id":"51b71f77-810c-4bf6-8db3-1014124b112a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T09:03:21.819Z", + "completed":"2017-09-14T09:03:21.819Z", + "new_balance":"4106.90", + "value":"-0.47" + } + }, + { + "id":"58e2d9ba-6aa2-477e-b368-7cc3c9e4f828", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T10:40:33.835Z", + "completed":"2017-09-14T10:40:33.835Z", + "new_balance":"4101.98", + "value":"-4.92" + } + }, + { + "id":"f4fafe78-38e3-42d8-81fd-f933694772ee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T15:11:50.190Z", + "completed":"2017-09-16T15:11:50.190Z", + "new_balance":"4097.86", + "value":"-4.12" + } + }, + { + "id":"2b037485-6431-48a0-a8e7-5e249b656f29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T07:46:29.503Z", + "completed":"2017-09-18T07:46:29.503Z", + "new_balance":"4093.47", + "value":"-4.39" + } + }, + { + "id":"9998fb61-a889-44b8-8994-d3a6b3540c3d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T03:08:16.439Z", + "completed":"2017-09-21T03:08:16.439Z", + "new_balance":"4083.86", + "value":"-9.61" + } + }, + { + "id":"fe3bbe74-26f9-4d91-8737-a31837888504", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T08:27:56.595Z", + "completed":"2017-09-21T08:27:56.595Z", + "new_balance":"4071.50", + "value":"-12.36" + } + }, + { + "id":"2db796a7-16f3-4c3b-95db-f87625210049", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T09:16:57.567Z", + "completed":"2017-09-23T09:16:57.567Z", + "new_balance":"4068.03", + "value":"-3.47" + } + }, + { + "id":"d68ff681-5e64-467b-b0fe-a96842cd3a56", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T01:54:26.272Z", + "completed":"2017-09-24T01:54:26.272Z", + "new_balance":"4067.56", + "value":"-0.47" + } + }, + { + "id":"672b34c2-f236-45c7-98ff-8eb993e0c1da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T04:34:40.630Z", + "completed":"2017-09-26T04:34:40.630Z", + "new_balance":"4066.41", + "value":"-1.15" + } + }, + { + "id":"52001f82-0515-415b-adee-01a5d0232fc6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T06:36:09.800Z", + "completed":"2017-09-26T06:36:09.800Z", + "new_balance":"4064.02", + "value":"-2.39" + } + }, + { + "id":"5b14cb10-3dd2-4df0-8aed-2011871f5dd3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T09:31:16.094Z", + "completed":"2017-09-26T09:31:16.094Z", + "new_balance":"4062.67", + "value":"-1.35" + } + }, + { + "id":"b9d360d2-4779-4103-834b-06b873515b70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T12:48:12.671Z", + "completed":"2017-09-27T12:48:12.671Z", + "new_balance":"4061.47", + "value":"-1.20" + } + }, + { + "id":"e7bb6cb8-c363-4962-a6b1-52eb216d3131", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T01:20:18.129Z", + "completed":"2017-09-28T01:20:18.129Z", + "new_balance":"4057.75", + "value":"-3.72" + } + }, + { + "id":"51cb28d9-b6bf-4183-bea4-f89e531b0a60", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T09:49:24.655Z", + "completed":"2017-09-28T09:49:24.655Z", + "new_balance":"4035.39", + "value":"-22.36" + } + }, + { + "id":"0c12817c-bb57-4507-8e1b-995c067430a6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T13:30:36.191Z", + "completed":"2017-10-01T13:30:36.191Z", + "new_balance":"4003.67", + "value":"-31.72" + } + }, + { + "id":"e48ace76-aee0-46a6-b154-7ce1a9f7c745", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T15:57:48.243Z", + "completed":"2017-10-01T15:57:48.243Z", + "new_balance":"4144.65", + "value":"140.98" + } + }, + { + "id":"76ddc979-3342-447e-a114-5f527d9d6cb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T18:10:25.109Z", + "completed":"2017-10-01T18:10:25.109Z", + "new_balance":"4327.35", + "value":"182.70" + } + }, + { + "id":"3af55684-d002-4aee-ab75-73b98da1180e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T05:24:09.176Z", + "completed":"2017-10-03T05:24:09.176Z", + "new_balance":"4322.53", + "value":"-4.82" + } + }, + { + "id":"e1321bc0-7647-4808-a8dd-91e4e60e5733", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:38:09.778Z", + "completed":"2017-10-03T11:38:09.778Z", + "new_balance":"4320.79", + "value":"-1.74" + } + }, + { + "id":"e8f57334-21ed-481a-a5a0-762851750bbe", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T18:10:34.875Z", + "completed":"2017-10-03T18:10:34.875Z", + "new_balance":"4320.12", + "value":"-0.67" + } + }, + { + "id":"ade8c4a6-c1f7-402a-9159-76ff90a8da80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:03:32.856Z", + "completed":"2017-10-05T13:03:32.856Z", + "new_balance":"4319.60", + "value":"-0.52" + } + }, + { + "id":"3176779d-1ba2-4e89-b2a0-b41d8bf73e10", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T21:48:35.812Z", + "completed":"2017-10-05T21:48:35.812Z", + "new_balance":"4318.20", + "value":"-1.40" + } + }, + { + "id":"76e29288-b7b1-4ed8-916b-5320f3efcbd7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:30:01.573Z", + "completed":"2017-10-06T05:30:01.573Z", + "new_balance":"4316.60", + "value":"-1.60" + } + }, + { + "id":"a1352d7f-1d16-4484-9d52-adde3c34e930", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T04:56:23.290Z", + "completed":"2017-10-09T04:56:23.290Z", + "new_balance":"4314.01", + "value":"-2.59" + } + }, + { + "id":"3a9d99b9-8671-4b3f-8af9-01a92b60e46c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:11:22.367Z", + "completed":"2017-10-10T19:11:22.367Z", + "new_balance":"4312.33", + "value":"-1.68" + } + }, + { + "id":"729f8038-1743-42c6-838f-a0bef88e03a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T02:23:18.605Z", + "completed":"2017-10-11T02:23:18.605Z", + "new_balance":"4310.02", + "value":"-2.31" + } + }, + { + "id":"72dc1f74-6b7f-41d4-9f58-28016c73f881", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T11:33:06.731Z", + "completed":"2017-10-11T11:33:06.731Z", + "new_balance":"4308.15", + "value":"-1.87" + } + }, + { + "id":"980a7a10-46e1-42f0-96d0-b5710483b5f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T07:03:17.745Z", + "completed":"2017-10-14T07:03:17.745Z", + "new_balance":"4302.02", + "value":"-6.13" + } + }, + { + "id":"a4a2c02e-3a14-43c1-8724-bb8c689aac63", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T23:58:12.148Z", + "completed":"2017-10-14T23:58:12.148Z", + "new_balance":"4294.32", + "value":"-7.70" + } + }, + { + "id":"96af54f5-5dfc-4634-99c2-c4b2d387ffe7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T21:25:26.443Z", + "completed":"2017-10-17T21:25:26.443Z", + "new_balance":"4289.79", + "value":"-4.53" + } + }, + { + "id":"3c6a218a-5a46-4e6b-ad31-80cc0ddbd63a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T09:35:59.160Z", + "completed":"2017-10-18T09:35:59.160Z", + "new_balance":"4284.31", + "value":"-5.48" + } + }, + { + "id":"992d524f-299b-40db-bd48-3d5b756e5a73", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T16:59:50.165Z", + "completed":"2017-10-18T16:59:50.165Z", + "new_balance":"4283.84", + "value":"-0.47" + } + }, + { + "id":"37909677-0bfd-44c5-893f-d7f29e68ec87", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T19:48:52.053Z", + "completed":"2017-10-18T19:48:52.053Z", + "new_balance":"4283.03", + "value":"-0.81" + } + }, + { + "id":"e9135104-58ff-4fc7-af8e-f27093697977", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T14:39:28.924Z", + "completed":"2017-10-23T14:39:28.924Z", + "new_balance":"4280.60", + "value":"-2.43" + } + }, + { + "id":"149c723c-ddfd-440b-b5fd-e385435ffd6f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T02:36:38.523Z", + "completed":"2017-10-24T02:36:38.523Z", + "new_balance":"4277.30", + "value":"-3.30" + } + }, + { + "id":"41173c98-b5c6-4aab-9a94-e777f886e436", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T05:15:09.565Z", + "completed":"2017-10-24T05:15:09.565Z", + "new_balance":"4275.73", + "value":"-1.57" + } + }, + { + "id":"39490008-282e-40e1-b803-81c8483f4598", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:28:48.618Z", + "completed":"2017-10-26T02:28:48.618Z", + "new_balance":"4275.21", + "value":"-0.52" + } + }, + { + "id":"4ba7d200-a675-4d44-85bc-fc6b9e969b35", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T03:41:23.473Z", + "completed":"2017-10-30T03:41:23.473Z", + "new_balance":"4271.49", + "value":"-3.72" + } + }, + { + "id":"ef96bf92-b409-4831-a853-337aed8af5b2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T03:43:45.476Z", + "completed":"2017-10-30T03:43:45.476Z", + "new_balance":"4249.13", + "value":"-22.36" + } + }, + { + "id":"2f83690c-2869-4f9f-86a7-e5a3798953a8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T04:13:29.537Z", + "completed":"2017-11-02T04:13:29.537Z", + "new_balance":"4217.41", + "value":"-31.72" + } + }, + { + "id":"8f0f183f-edd3-43f2-ae91-2cbc0776c964", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T06:35:50.654Z", + "completed":"2017-11-02T06:35:50.654Z", + "new_balance":"4204.31", + "value":"-13.10" + } + }, + { + "id":"c690132a-8220-493d-9d8b-764c8b35435b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T15:34:43.039Z", + "completed":"2017-11-02T15:34:43.039Z", + "new_balance":"4202.99", + "value":"-1.32" + } + }, + { + "id":"59ebd87b-3058-453f-986d-d3b786cdf1bc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T15:36:17.243Z", + "completed":"2017-11-02T15:36:17.243Z", + "new_balance":"4202.32", + "value":"-0.67" + } + }, + { + "id":"697a8e0d-2409-4561-8603-6c6016e70fbf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T01:44:59.248Z", + "completed":"2017-11-06T01:44:59.248Z", + "new_balance":"4200.13", + "value":"-2.19" + } + }, + { + "id":"a0ca16e8-7df9-42e8-80ee-06e76b3fe533", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T19:54:12.872Z", + "completed":"2017-11-06T19:54:12.872Z", + "new_balance":"4197.82", + "value":"-2.31" + } + }, + { + "id":"27261156-3136-426e-bdfe-b1dc421c5708", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T05:20:52.541Z", + "completed":"2017-11-07T05:20:52.541Z", + "new_balance":"4190.12", + "value":"-7.70" + } + }, + { + "id":"d9f17340-6f1c-470b-a977-02590e37ce8b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T06:41:40.485Z", + "completed":"2017-11-07T06:41:40.485Z", + "new_balance":"4185.55", + "value":"-4.57" + } + }, + { + "id":"2b9b4896-f30a-4325-a8f6-06f181ab0905", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T03:05:01.946Z", + "completed":"2017-11-09T03:05:01.946Z", + "new_balance":"4326.53", + "value":"140.98" + } + }, + { + "id":"414c2cc9-074a-45e5-ab73-154d152b7ed9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:36:48.576Z", + "completed":"2017-11-14T06:36:48.576Z", + "new_balance":"4322.39", + "value":"-4.14" + } + }, + { + "id":"ae744b41-8ea3-40f1-ac4f-d36414a1a300", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T08:24:31.295Z", + "completed":"2017-11-14T08:24:31.295Z", + "new_balance":"4319.99", + "value":"-2.40" + } + }, + { + "id":"8022de34-5925-412c-b527-5e616f7098ed", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T05:18:05.261Z", + "completed":"2017-11-16T05:18:05.261Z", + "new_balance":"4319.47", + "value":"-0.52" + } + }, + { + "id":"90d777f0-384f-483d-9c50-8bed25331cce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T14:13:12.647Z", + "completed":"2017-11-20T14:13:12.647Z", + "new_balance":"4316.59", + "value":"-2.88" + } + }, + { + "id":"4f0fb993-5399-4432-bdf3-df19a6537527", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T16:02:52.466Z", + "completed":"2017-11-23T16:02:52.466Z", + "new_balance":"4311.98", + "value":"-4.61" + } + }, + { + "id":"6ec700ce-9062-423c-b29b-3f23a69cfd80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T17:07:35.093Z", + "completed":"2017-11-23T17:07:35.093Z", + "new_balance":"4309.67", + "value":"-2.31" + } + }, + { + "id":"e11852db-6119-4612-8e4a-1309d55c5322", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T21:43:19.939Z", + "completed":"2017-11-23T21:43:19.939Z", + "new_balance":"4309.20", + "value":"-0.47" + } + }, + { + "id":"696c8d09-eaf6-45ef-aafc-c9af5333ff55", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T09:26:32.465Z", + "completed":"2017-11-28T09:26:32.465Z", + "new_balance":"4308.61", + "value":"-0.59" + } + }, + { + "id":"fc631c3f-3046-4609-b3af-412495361fa2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T07:00:26.241Z", + "completed":"2017-11-30T07:00:26.241Z", + "new_balance":"4304.89", + "value":"-3.72" + } + }, + { + "id":"f3859915-975f-4239-9e71-e56d667b816c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T16:53:54.703Z", + "completed":"2017-11-30T16:53:54.703Z", + "new_balance":"4282.53", + "value":"-22.36" + } + }, + { + "id":"1a7766fc-69bd-44e2-b5a4-9e4479dd07ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T04:00:58.115Z", + "completed":"2017-12-01T04:00:58.115Z", + "new_balance":"4250.81", + "value":"-31.72" + } + }, + { + "id":"c475a9ce-bfed-4cb2-a20b-b191596fa2bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T08:54:52.139Z", + "completed":"2017-12-01T08:54:52.139Z", + "new_balance":"4391.79", + "value":"140.98" + } + }, + { + "id":"5c041126-e402-46f2-bbbd-3506da9a0ff9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T05:12:56.825Z", + "completed":"2017-12-04T05:12:56.825Z", + "new_balance":"4388.33", + "value":"-3.46" + } + }, + { + "id":"5ecce007-3052-47d7-b10a-e882dcb33f83", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T08:25:09.333Z", + "completed":"2017-12-04T08:25:09.333Z", + "new_balance":"4386.28", + "value":"-2.05" + } + }, + { + "id":"0d85a05f-b1b8-4ccc-a836-c0bb47e5cad8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T06:09:03.300Z", + "completed":"2017-12-11T06:09:03.300Z", + "new_balance":"4381.67", + "value":"-4.61" + } + }, + { + "id":"87d9a9bb-d448-4bbf-93d2-f9fade7a74a5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T09:05:35.674Z", + "completed":"2017-12-11T09:05:35.674Z", + "new_balance":"4378.37", + "value":"-3.30" + } + }, + { + "id":"424adfcd-157f-44c8-91d9-e45a38369529", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T03:04:35.833Z", + "completed":"2017-12-14T03:04:35.833Z", + "new_balance":"4371.62", + "value":"-6.75" + } + }, + { + "id":"e55b103c-db82-4101-b9f6-11776acdf749", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:39:53.896Z", + "completed":"2017-12-14T03:39:53.896Z", + "new_balance":"4370.82", + "value":"-0.80" + } + }, + { + "id":"2082ad06-dcc3-4248-ad37-27815a7cb131", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T03:47:59.035Z", + "completed":"2017-12-14T03:47:59.035Z", + "new_balance":"4370.35", + "value":"-0.47" + } + }, + { + "id":"347383c5-0a94-42f9-9aa2-b30e77053986", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T11:39:54.866Z", + "completed":"2017-12-14T11:39:54.866Z", + "new_balance":"4369.55", + "value":"-0.80" + } + }, + { + "id":"c966c802-285c-44f8-aeba-911866af6765", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:55:39.227Z", + "completed":"2017-12-14T12:55:39.227Z", + "new_balance":"4362.91", + "value":"-6.64" + } + }, + { + "id":"1ca86347-e445-4e54-a87b-db7ead5d82d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T17:01:51.133Z", + "completed":"2017-12-14T17:01:51.133Z", + "new_balance":"4361.61", + "value":"-1.30" + } + }, + { + "id":"033f4c00-bc41-40bb-ab75-df0fd6534509", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T21:21:56.544Z", + "completed":"2017-12-14T21:21:56.544Z", + "new_balance":"4361.14", + "value":"-0.47" + } + }, + { + "id":"c30e4246-60b6-456c-98c0-dcd75131693f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T22:00:34.001Z", + "completed":"2017-12-14T22:00:34.001Z", + "new_balance":"4353.40", + "value":"-7.74" + } + }, + { + "id":"5c4c79e8-57b6-4ec8-b63f-579cca6e2be0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T23:37:45.146Z", + "completed":"2017-12-14T23:37:45.146Z", + "new_balance":"4345.70", + "value":"-7.70" + } + }, + { + "id":"61347037-54b3-4f22-beae-5cc417c7da92", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T08:02:51.727Z", + "completed":"2017-12-15T08:02:51.727Z", + "new_balance":"4345.23", + "value":"-0.47" + } + }, + { + "id":"fca02361-d4a1-4cda-a9f6-181a72cb53b7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T17:16:23.223Z", + "completed":"2017-12-15T17:16:23.223Z", + "new_balance":"4344.46", + "value":"-0.77" + } + }, + { + "id":"6af5b8e1-56ed-4d64-ab7d-80381d4e3419", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T19:27:04.036Z", + "completed":"2017-12-15T19:27:04.036Z", + "new_balance":"4341.75", + "value":"-2.71" + } + }, + { + "id":"67d62dd2-f70e-4b6d-8a03-7e7663354d8b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T04:37:50.546Z", + "completed":"2017-12-18T04:37:50.546Z", + "new_balance":"4340.15", + "value":"-1.60" + } + }, + { + "id":"7dfc0aa8-f555-4514-a026-c6bd795f88e7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T08:33:40.801Z", + "completed":"2017-12-18T08:33:40.801Z", + "new_balance":"4339.68", + "value":"-0.47" + } + }, + { + "id":"ab9bb89a-a3c1-44cd-84cf-f14bf06b2cea", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T13:38:27.413Z", + "completed":"2017-12-18T13:38:27.413Z", + "new_balance":"4337.10", + "value":"-2.58" + } + }, + { + "id":"257408d8-8591-4d73-a777-01a90be6a85e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T16:42:50.555Z", + "completed":"2017-12-18T16:42:50.555Z", + "new_balance":"4334.51", + "value":"-2.59" + } + }, + { + "id":"efaadf38-7f41-43fc-b432-40ddd65f9cf6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T21:10:19.203Z", + "completed":"2017-12-18T21:10:19.203Z", + "new_balance":"4331.79", + "value":"-2.72" + } + }, + { + "id":"4351d3ae-2136-4333-90d8-3e899d323a9b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T21:28:54.902Z", + "completed":"2017-12-18T21:28:54.902Z", + "new_balance":"4331.32", + "value":"-0.47" + } + }, + { + "id":"5c911525-5d08-4e1f-b4ee-8c854e18dfeb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T23:25:36.768Z", + "completed":"2017-12-18T23:25:36.768Z", + "new_balance":"4321.17", + "value":"-10.15" + } + }, + { + "id":"7cb088a4-c40b-4cc8-9f44-96afe4b02b6d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T23:29:36.173Z", + "completed":"2017-12-18T23:29:36.173Z", + "new_balance":"4315.01", + "value":"-6.16" + } + }, + { + "id":"c672ab7e-b6bd-4020-8cd0-aae41eac2ba4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T05:58:44.537Z", + "completed":"2017-12-19T05:58:44.537Z", + "new_balance":"4310.09", + "value":"-4.92" + } + }, + { + "id":"2c08e514-4b2b-41c4-80f8-f50a9164dafc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T07:57:00.945Z", + "completed":"2017-12-19T07:57:00.945Z", + "new_balance":"4305.97", + "value":"-4.12" + } + }, + { + "id":"141f1d15-5803-4b80-b37a-8c62f8769d02", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T19:32:44.722Z", + "completed":"2017-12-19T19:32:44.722Z", + "new_balance":"4301.58", + "value":"-4.39" + } + }, + { + "id":"26295b64-01d8-486f-bc10-3400a894b5e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T03:53:31.119Z", + "completed":"2017-12-21T03:53:31.119Z", + "new_balance":"4301.11", + "value":"-0.47" + } + }, + { + "id":"0584ab8f-d8e2-4df8-a9a2-6b64876f62f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T04:24:43.357Z", + "completed":"2017-12-21T04:24:43.357Z", + "new_balance":"4288.75", + "value":"-12.36" + } + }, + { + "id":"22264825-d4d9-4c70-a4c7-f88710d36e41", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T06:41:32.439Z", + "completed":"2017-12-21T06:41:32.439Z", + "new_balance":"4279.14", + "value":"-9.61" + } + }, + { + "id":"8c833ae7-e836-4c25-a1b5-4eb9449dad52", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:31:19.693Z", + "completed":"2017-12-21T07:31:19.693Z", + "new_balance":"4277.99", + "value":"-1.15" + } + }, + { + "id":"30148f33-56f9-4935-a453-d7e977a3a428", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T07:54:36.627Z", + "completed":"2017-12-21T07:54:36.627Z", + "new_balance":"4274.52", + "value":"-3.47" + } + }, + { + "id":"9bcdce81-205a-4bd2-bbcf-4da6c4257317", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:42:28.661Z", + "completed":"2017-12-24T11:42:28.661Z", + "new_balance":"4272.13", + "value":"-2.39" + } + }, + { + "id":"20d793da-56e1-4566-b67b-84b227b0a585", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T14:32:28.463Z", + "completed":"2017-12-24T14:32:28.463Z", + "new_balance":"4270.93", + "value":"-1.20" + } + }, + { + "id":"57efd7ce-31fd-40bb-bedf-ed00b5a37308", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T19:58:17.302Z", + "completed":"2017-12-24T19:58:17.302Z", + "new_balance":"4269.58", + "value":"-1.35" + } + }, + { + "id":"6c92cbc2-a7fc-4a89-926f-ffdc8cce4e8f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T17:24:02.324Z", + "completed":"2017-12-30T17:24:02.324Z", + "new_balance":"4247.22", + "value":"-22.36" + } + }, + { + "id":"1da54bdb-c22f-490d-a370-3ecfacc81642", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T21:12:46.475Z", + "completed":"2017-12-30T21:12:46.475Z", + "new_balance":"4243.50", + "value":"-3.72" + } + }, + { + "id":"23f9abff-bd60-45ea-af49-38d19b1d46ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T03:59:52.504Z", + "completed":"2016-03-01T03:59:52.504Z", + "new_balance":"2811.60", + "value":"-296.60" + } + }, + { + "id":"8b9a6d70-7d43-45d6-a7dc-a30785302807", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T07:09:02.783Z", + "completed":"2016-03-01T07:09:02.783Z", + "new_balance":"2534.12", + "value":"-277.48" + } + }, + { + "id":"3c3e983e-1c32-4715-8236-b3a7b2848ad6", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T10:55:34.847Z", + "completed":"2016-03-01T10:55:34.847Z", + "new_balance":"2511.76", + "value":"-22.36" + } + }, + { + "id":"823ae0d2-cbc4-480d-bec2-eebfc55aebc8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T15:03:38.936Z", + "completed":"2016-03-01T15:03:38.936Z", + "new_balance":"2488.52", + "value":"-23.24" + } + }, + { + "id":"b3c544ed-358a-48ac-b3cf-8546d0db6387", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T21:54:07.648Z", + "completed":"2016-03-01T21:54:07.648Z", + "new_balance":"2431.71", + "value":"-56.81" + } + }, + { + "id":"bab20fa6-609f-4e16-b012-cba648c65ab0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:47:30.163Z", + "completed":"2016-03-01T23:47:30.163Z", + "new_balance":"2418.61", + "value":"-13.10" + } + }, + { + "id":"0976dcb5-303d-4624-be70-009616f22a0f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T04:35:21.097Z", + "completed":"2016-03-12T04:35:21.097Z", + "new_balance":"2414.43", + "value":"-4.18" + } + }, + { + "id":"e1572068-20eb-45cf-a162-c414e4401526", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T10:46:48.239Z", + "completed":"2016-03-12T10:46:48.239Z", + "new_balance":"2357.62", + "value":"-56.81" + } + }, + { + "id":"8687dc31-1ba2-49ec-84af-c44fe1b6f81f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T16:56:35.784Z", + "completed":"2016-03-12T16:56:35.784Z", + "new_balance":"2334.38", + "value":"-23.24" + } + }, + { + "id":"1e97ad14-e4ea-4bca-892e-f8aeedb7b6c1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T21:26:55.884Z", + "completed":"2016-03-12T21:26:55.884Z", + "new_balance":"2329.23", + "value":"-5.15" + } + }, + { + "id":"c26efff9-c0ef-4cd1-9825-6f72778d82b1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T02:40:41.578Z", + "completed":"2016-03-14T02:40:41.578Z", + "new_balance":"2490.04", + "value":"160.81" + } + }, + { + "id":"5342a45d-ab77-4e2b-9157-64dce65c1425", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T05:14:35.602Z", + "completed":"2016-03-15T05:14:35.602Z", + "new_balance":"2520.31", + "value":"30.27" + } + }, + { + "id":"c675ad40-6767-460e-a448-26b98c75f6fd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T22:33:08.062Z", + "completed":"2016-03-16T22:33:08.062Z", + "new_balance":"2611.27", + "value":"90.96" + } + }, + { + "id":"15239c5f-a55b-46e9-9515-ce3ed00693db", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T09:18:10.041Z", + "completed":"2016-03-17T09:18:10.041Z", + "new_balance":"2605.79", + "value":"-5.48" + } + }, + { + "id":"e2bc265a-47bb-4bc6-bab1-e139c61c817e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T14:54:27.958Z", + "completed":"2016-03-17T14:54:27.958Z", + "new_balance":"2599.26", + "value":"-6.53" + } + }, + { + "id":"fa7a3853-85f6-4646-b51b-0e9f077df448", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T00:20:31.489Z", + "completed":"2016-03-19T00:20:31.489Z", + "new_balance":"2647.13", + "value":"47.87" + } + }, + { + "id":"e79cee5b-b44c-482c-8a73-c0e39274c060", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T08:24:41.311Z", + "completed":"2016-03-21T08:24:41.311Z", + "new_balance":"2639.94", + "value":"-7.19" + } + }, + { + "id":"e1b1efe6-56e8-4c3b-8558-d5f2336decde", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T13:37:04.339Z", + "completed":"2016-03-21T13:37:04.339Z", + "new_balance":"2646.78", + "value":"6.84" + } + }, + { + "id":"e4ec4b61-4894-43cc-a0bf-d43b2c0f4b9c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T08:13:15.986Z", + "completed":"2016-03-24T08:13:15.986Z", + "new_balance":"2596.56", + "value":"-50.22" + } + }, + { + "id":"728e5b48-a879-4f3a-acd6-b47b3be02f0a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T21:57:23.910Z", + "completed":"2016-03-24T21:57:23.910Z", + "new_balance":"2626.83", + "value":"30.27" + } + }, + { + "id":"9089bc34-9184-47f4-89cb-6e78e135ed36", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T08:58:24.609Z", + "completed":"2016-03-25T08:58:24.609Z", + "new_balance":"2557.75", + "value":"-69.08" + } + }, + { + "id":"6b203f6c-2785-4783-a15c-e4e8cc6437b8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T23:34:23.547Z", + "completed":"2016-03-25T23:34:23.547Z", + "new_balance":"2607.83", + "value":"50.08" + } + }, + { + "id":"ff173dd8-d5d3-4508-9684-005c879fbd82", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T07:27:00.119Z", + "completed":"2016-03-28T07:27:00.119Z", + "new_balance":"3016.65", + "value":"408.82" + } + }, + { + "id":"6aa5dd14-01b0-4a41-83b2-19d246a19d9a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T17:05:37.334Z", + "completed":"2016-03-28T17:05:37.334Z", + "new_balance":"3177.46", + "value":"160.81" + } + }, + { + "id":"644bcb31-3c36-4d68-bfcd-3fc7198897a8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T07:57:17.027Z", + "completed":"2016-03-30T07:57:17.027Z", + "new_balance":"3207.73", + "value":"30.27" + } + }, + { + "id":"f82e9f09-e83f-4d3f-b8fe-ee83c91f13d1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T10:09:06.105Z", + "completed":"2016-03-30T10:09:06.105Z", + "new_balance":"3228.62", + "value":"20.89" + } + }, + { + "id":"ce7e34cf-90f6-44c9-8f8d-aba524a7fcbf", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T01:55:36.525Z", + "completed":"2016-06-01T01:55:36.525Z", + "new_balance":"3206.26", + "value":"-22.36" + } + }, + { + "id":"82b09d87-4095-45a0-af7e-3c7fc00e77e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T02:28:39.185Z", + "completed":"2016-06-01T02:28:39.185Z", + "new_balance":"3183.02", + "value":"-23.24" + } + }, + { + "id":"a0af86ae-c8d0-4137-8e37-50557acd6e53", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T06:59:47.864Z", + "completed":"2016-06-01T06:59:47.864Z", + "new_balance":"2886.42", + "value":"-296.60" + } + }, + { + "id":"baf08c9c-cf9f-4fd7-a6bb-5b42467f3fa4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T08:36:11.497Z", + "completed":"2016-06-01T08:36:11.497Z", + "new_balance":"2608.94", + "value":"-277.48" + } + }, + { + "id":"53660fa1-070b-4dc0-8e49-180dbb9d0a09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T12:38:19.312Z", + "completed":"2016-06-01T12:38:19.312Z", + "new_balance":"2552.13", + "value":"-56.81" + } + }, + { + "id":"8c5c88df-69d2-4b57-8414-5ae3c325f7d2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T12:49:04.074Z", + "completed":"2016-06-01T12:49:04.074Z", + "new_balance":"2539.03", + "value":"-13.10" + } + }, + { + "id":"8ee71321-1b40-4728-b265-10863bf7a136", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:34:46.942Z", + "completed":"2016-06-04T09:34:46.942Z", + "new_balance":"2534.85", + "value":"-4.18" + } + }, + { + "id":"51777578-9042-4413-8323-895720ffbdee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T11:47:56.031Z", + "completed":"2016-06-04T11:47:56.031Z", + "new_balance":"2529.70", + "value":"-5.15" + } + }, + { + "id":"ffc323df-a8a3-4af7-bca2-97246ffcd750", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T12:16:18.092Z", + "completed":"2016-06-05T12:16:18.092Z", + "new_balance":"2472.89", + "value":"-56.81" + } + }, + { + "id":"a534262f-ee4e-41a2-b1a9-f25b3019ae3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T15:23:03.608Z", + "completed":"2016-06-05T15:23:03.608Z", + "new_balance":"2449.65", + "value":"-23.24" + } + }, + { + "id":"76a40df0-1e76-49b1-915a-f4623cc59c09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:41:52.416Z", + "completed":"2016-06-07T00:41:52.416Z", + "new_balance":"2610.46", + "value":"160.81" + } + }, + { + "id":"de13c914-4954-4900-8844-87f2206df97b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T04:25:32.270Z", + "completed":"2016-06-07T04:25:32.270Z", + "new_balance":"2701.42", + "value":"90.96" + } + }, + { + "id":"33b54a30-3c74-4a7b-8c21-bff9f808f890", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T11:13:55.905Z", + "completed":"2016-06-07T11:13:55.905Z", + "new_balance":"2731.69", + "value":"30.27" + } + }, + { + "id":"f36a64c1-9753-49e0-b3b1-330eef70f1f8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T16:20:35.235Z", + "completed":"2016-06-07T16:20:35.235Z", + "new_balance":"2725.16", + "value":"-6.53" + } + }, + { + "id":"2ca36a4c-f701-443c-8ca5-af17abf82b0c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T01:59:16.598Z", + "completed":"2016-06-11T01:59:16.598Z", + "new_balance":"2719.68", + "value":"-5.48" + } + }, + { + "id":"497484cd-724b-4782-aadc-0f6f8973e634", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T16:09:53.955Z", + "completed":"2016-06-14T16:09:53.955Z", + "new_balance":"2767.55", + "value":"47.87" + } + }, + { + "id":"78e21778-9cfa-4b2f-8581-1c72d642f380", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T22:04:41.373Z", + "completed":"2016-06-14T22:04:41.373Z", + "new_balance":"2760.36", + "value":"-7.19" + } + }, + { + "id":"9511a52a-8413-4a89-8a92-8a4749373814", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T23:18:57.963Z", + "completed":"2016-06-14T23:18:57.963Z", + "new_balance":"2767.20", + "value":"6.84" + } + }, + { + "id":"4fcc32c8-a0a4-44b5-afc2-86c57744a9e4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T05:41:24.808Z", + "completed":"2016-06-16T05:41:24.808Z", + "new_balance":"2716.98", + "value":"-50.22" + } + }, + { + "id":"a202663e-8596-47ed-98c7-1b49c2182e93", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T08:36:17.132Z", + "completed":"2016-06-16T08:36:17.132Z", + "new_balance":"2747.25", + "value":"30.27" + } + }, + { + "id":"22e42220-71be-4fa3-9ce3-a3bae959d151", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T08:59:41.727Z", + "completed":"2016-06-21T08:59:41.727Z", + "new_balance":"2678.17", + "value":"-69.08" + } + }, + { + "id":"90dc7765-8ebb-47b4-b3bd-e090d288d362", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T10:56:15.259Z", + "completed":"2016-06-21T10:56:15.259Z", + "new_balance":"2838.98", + "value":"160.81" + } + }, + { + "id":"d9949e5b-151d-4cea-beff-cfbca3e9ef69", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T15:05:15.500Z", + "completed":"2016-06-21T15:05:15.500Z", + "new_balance":"3247.80", + "value":"408.82" + } + }, + { + "id":"35402d86-9e25-4815-b449-3dd5e2c4b63d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:08:34.975Z", + "completed":"2016-06-21T23:08:34.975Z", + "new_balance":"3297.88", + "value":"50.08" + } + }, + { + "id":"d93632b5-f097-408c-990a-5de235fd7a25", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T01:45:30.760Z", + "completed":"2016-06-30T01:45:30.760Z", + "new_balance":"3328.15", + "value":"30.27" + } + }, + { + "id":"3e078154-3398-4698-91be-3879413608cc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T06:29:05.912Z", + "completed":"2016-06-30T06:29:05.912Z", + "new_balance":"3349.04", + "value":"20.89" + } + }, + { + "id":"356f57dc-a72a-45b3-991d-7725f1962238", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T02:10:51.621Z", + "completed":"2016-09-01T02:10:51.621Z", + "new_balance":"3326.68", + "value":"-22.36" + } + }, + { + "id":"d42b8d08-fb33-4cd6-b11a-add90acfae84", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T07:02:35.587Z", + "completed":"2016-09-01T07:02:35.587Z", + "new_balance":"3269.87", + "value":"-56.81" + } + }, + { + "id":"27ddb15a-4830-431c-984a-644e26eec33c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T11:17:22.734Z", + "completed":"2016-09-01T11:17:22.734Z", + "new_balance":"2992.39", + "value":"-277.48" + } + }, + { + "id":"95fadbd9-904c-415e-83ca-6602c929f1c8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T13:19:41.654Z", + "completed":"2016-09-01T13:19:41.654Z", + "new_balance":"2979.29", + "value":"-13.10" + } + }, + { + "id":"41d913f5-732d-410e-a7f6-e52e400f5469", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T17:35:03.913Z", + "completed":"2016-09-01T17:35:03.913Z", + "new_balance":"2682.69", + "value":"-296.60" + } + }, + { + "id":"2aa3773a-d0fc-47ec-b15b-e9e8b421ab22", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T19:27:52.438Z", + "completed":"2016-09-01T19:27:52.438Z", + "new_balance":"2659.45", + "value":"-23.24" + } + }, + { + "id":"cd4b03fe-642c-4dcd-92ea-39bc619f29a2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:32:10.270Z", + "completed":"2016-09-12T04:32:10.270Z", + "new_balance":"2655.27", + "value":"-4.18" + } + }, + { + "id":"58c8fcfc-d8ec-4cda-9aa9-511ccc03d5f5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T05:49:37.308Z", + "completed":"2016-09-12T05:49:37.308Z", + "new_balance":"2598.46", + "value":"-56.81" + } + }, + { + "id":"d1fec6e2-4fa4-43ce-8b1a-49adc0428b3d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T07:14:24.926Z", + "completed":"2016-09-12T07:14:24.926Z", + "new_balance":"2593.31", + "value":"-5.15" + } + }, + { + "id":"3b18a4a6-6672-4bcd-98c9-06dcd316b491", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T19:31:25.670Z", + "completed":"2016-09-12T19:31:25.670Z", + "new_balance":"2570.07", + "value":"-23.24" + } + }, + { + "id":"e1a1d682-8d24-4fdb-9dd6-3ed38d8fb734", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:27:51.815Z", + "completed":"2016-09-15T02:27:51.815Z", + "new_balance":"2730.88", + "value":"160.81" + } + }, + { + "id":"0df1c80a-004e-4961-b5e1-ab2db2c97888", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T12:04:43.789Z", + "completed":"2016-09-15T12:04:43.789Z", + "new_balance":"2761.15", + "value":"30.27" + } + }, + { + "id":"72f043f2-20e0-42fc-99df-ebef02089547", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T01:00:47.900Z", + "completed":"2016-09-17T01:00:47.900Z", + "new_balance":"2754.62", + "value":"-6.53" + } + }, + { + "id":"f8082943-c1ba-4be3-ac1a-77c26afd8f4e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:51:28.300Z", + "completed":"2016-09-17T12:51:28.300Z", + "new_balance":"2749.14", + "value":"-5.48" + } + }, + { + "id":"073303f8-00a7-4a89-a8b0-3014d62dac35", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T22:44:23.893Z", + "completed":"2016-09-17T22:44:23.893Z", + "new_balance":"2840.10", + "value":"90.96" + } + }, + { + "id":"c9d7fa53-ea8f-4e92-aa22-358570aea941", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T08:34:32.512Z", + "completed":"2016-09-19T08:34:32.512Z", + "new_balance":"2887.97", + "value":"47.87" + } + }, + { + "id":"0cef2a20-6512-499e-9a3c-8936c8104270", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T00:11:33.973Z", + "completed":"2016-09-21T00:11:33.973Z", + "new_balance":"2880.78", + "value":"-7.19" + } + }, + { + "id":"9e9af187-5b34-47cc-9eb6-8974c9787695", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T21:19:04.983Z", + "completed":"2016-09-21T21:19:04.983Z", + "new_balance":"2887.62", + "value":"6.84" + } + }, + { + "id":"664eadea-096a-4a38-927a-710e4fc958d7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T05:46:24.115Z", + "completed":"2016-09-24T05:46:24.115Z", + "new_balance":"2837.40", + "value":"-50.22" + } + }, + { + "id":"d1fb6ae6-659a-4c83-bf08-a7768304a59f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T14:41:04.992Z", + "completed":"2016-09-24T14:41:04.992Z", + "new_balance":"2867.67", + "value":"30.27" + } + }, + { + "id":"bd97ecf1-4ca3-422f-aa89-c078539e551c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T23:07:38.124Z", + "completed":"2016-09-25T23:07:38.124Z", + "new_balance":"2917.75", + "value":"50.08" + } + }, + { + "id":"149d88bc-5fde-485b-b9ec-299bd98ca6a8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T23:22:12.481Z", + "completed":"2016-09-25T23:22:12.481Z", + "new_balance":"2848.67", + "value":"-69.08" + } + }, + { + "id":"34499ece-b92b-4fcd-b328-8e4b6f26a19a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T14:31:13.052Z", + "completed":"2016-09-28T14:31:13.052Z", + "new_balance":"3257.49", + "value":"408.82" + } + }, + { + "id":"a6f1c02e-7e8f-4614-b31e-5da8cf1ad691", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T23:25:48.042Z", + "completed":"2016-09-28T23:25:48.042Z", + "new_balance":"3418.30", + "value":"160.81" + } + }, + { + "id":"5dae434b-4f00-4317-99bf-1ded7886432e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T12:23:21.323Z", + "completed":"2016-09-30T12:23:21.323Z", + "new_balance":"3439.19", + "value":"20.89" + } + }, + { + "id":"39665fa5-3f06-403b-99a2-aaecf8f8a7f0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T23:24:51.101Z", + "completed":"2016-09-30T23:24:51.101Z", + "new_balance":"3469.46", + "value":"30.27" + } + }, + { + "id":"37bd8672-171b-49b9-8265-78c61b6be1ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T05:44:02.817Z", + "completed":"2016-12-01T05:44:02.817Z", + "new_balance":"3412.65", + "value":"-56.81" + } + }, + { + "id":"b535d303-3914-46e9-8b20-eb1f700f10f0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T07:23:52.711Z", + "completed":"2016-12-01T07:23:52.711Z", + "new_balance":"3390.29", + "value":"-22.36" + } + }, + { + "id":"6b3d9c31-0f40-4249-bcd7-2dcbd8a5a9f4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:35:16.987Z", + "completed":"2016-12-01T13:35:16.987Z", + "new_balance":"3377.19", + "value":"-13.10" + } + }, + { + "id":"48252927-266e-4326-a56e-6db07341d747", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T14:21:05.522Z", + "completed":"2016-12-01T14:21:05.522Z", + "new_balance":"3099.71", + "value":"-277.48" + } + }, + { + "id":"dbdca811-189d-40fa-91c6-968a2b37698a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T18:10:52.299Z", + "completed":"2016-12-01T18:10:52.299Z", + "new_balance":"3076.47", + "value":"-23.24" + } + }, + { + "id":"1bb25d6f-9614-4254-951b-1c2a96541b4b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T19:31:06.344Z", + "completed":"2016-12-01T19:31:06.344Z", + "new_balance":"2779.87", + "value":"-296.60" + } + }, + { + "id":"43f78414-4093-4ff0-a832-2563a44d865b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T05:27:53.372Z", + "completed":"2016-12-04T05:27:53.372Z", + "new_balance":"2775.69", + "value":"-4.18" + } + }, + { + "id":"7b41294f-ccb9-43cd-9079-a9925a636b69", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:07:03.066Z", + "completed":"2016-12-04T14:07:03.066Z", + "new_balance":"2770.54", + "value":"-5.15" + } + }, + { + "id":"585c4fa5-e365-4590-ad3b-522cd1b1ac3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T00:39:56.197Z", + "completed":"2016-12-05T00:39:56.197Z", + "new_balance":"2713.73", + "value":"-56.81" + } + }, + { + "id":"6cb4d123-5af4-42fe-9093-2cbfa295b0ef", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T22:53:06.193Z", + "completed":"2016-12-05T22:53:06.193Z", + "new_balance":"2690.49", + "value":"-23.24" + } + }, + { + "id":"60de22a4-3612-40e5-88ec-26b1b8d50d39", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:52:11.567Z", + "completed":"2016-12-07T11:52:11.567Z", + "new_balance":"2851.30", + "value":"160.81" + } + }, + { + "id":"cafd1399-dae5-48b7-a30b-c5fa035fa8cd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T16:57:57.839Z", + "completed":"2016-12-07T16:57:57.839Z", + "new_balance":"2942.26", + "value":"90.96" + } + }, + { + "id":"1810d490-bead-4906-a30f-880a886529b9", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:07:30.978Z", + "completed":"2016-12-07T18:07:30.978Z", + "new_balance":"2972.53", + "value":"30.27" + } + }, + { + "id":"007e1318-0e16-49e4-a50e-52f09320bcd3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:12:02.611Z", + "completed":"2016-12-07T18:12:02.611Z", + "new_balance":"2966.00", + "value":"-6.53" + } + }, + { + "id":"a7aa67a9-a555-4515-9baa-fc134d07c539", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T13:26:15.332Z", + "completed":"2016-12-11T13:26:15.332Z", + "new_balance":"2960.52", + "value":"-5.48" + } + }, + { + "id":"5510e18f-809e-4d5d-af06-899044a8cb09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:40:50.671Z", + "completed":"2016-12-14T01:40:50.671Z", + "new_balance":"2953.33", + "value":"-7.19" + } + }, + { + "id":"acf38478-b05e-4305-9c8b-4a37ee94ccdb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T08:47:17.764Z", + "completed":"2016-12-14T08:47:17.764Z", + "new_balance":"3001.20", + "value":"47.87" + } + }, + { + "id":"d2af5e6c-2f32-4943-b941-bd85d8ae4eee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T17:38:58.845Z", + "completed":"2016-12-14T17:38:58.845Z", + "new_balance":"3008.04", + "value":"6.84" + } + }, + { + "id":"d26671d4-5f9c-4da1-9ce8-7289a17a3292", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T08:52:53.315Z", + "completed":"2016-12-16T08:52:53.315Z", + "new_balance":"3038.31", + "value":"30.27" + } + }, + { + "id":"b09904bb-2e4f-4372-80e8-8c55843aea20", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T21:55:22.219Z", + "completed":"2016-12-16T21:55:22.219Z", + "new_balance":"2988.09", + "value":"-50.22" + } + }, + { + "id":"90bcc8b7-cda1-45ca-8e3c-bd5db73d5c3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T01:08:55.009Z", + "completed":"2016-12-21T01:08:55.009Z", + "new_balance":"2919.01", + "value":"-69.08" + } + }, + { + "id":"c9e25186-29d9-4c74-b35a-e013ac6a8d34", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:55:36.967Z", + "completed":"2016-12-21T08:55:36.967Z", + "new_balance":"2969.09", + "value":"50.08" + } + }, + { + "id":"b406c47a-d40d-4e1e-8045-f20fb07b4097", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T13:30:51.192Z", + "completed":"2016-12-21T13:30:51.192Z", + "new_balance":"3129.90", + "value":"160.81" + } + }, + { + "id":"c935dedc-2d50-4731-a545-6f3fa1fa4883", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:35:13.992Z", + "completed":"2016-12-21T19:35:13.992Z", + "new_balance":"3538.72", + "value":"408.82" + } + }, + { + "id":"e617d68c-262d-485c-89b6-b9a9bbcd70e5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T23:13:14.776Z", + "completed":"2016-12-30T23:13:14.776Z", + "new_balance":"3568.99", + "value":"30.27" + } + }, + { + "id":"c4cc208c-141b-455a-8e5d-c6bf5e637c7f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T23:43:36.064Z", + "completed":"2016-12-30T23:43:36.064Z", + "new_balance":"3589.88", + "value":"20.89" + } + }, + { + "id":"68e18752-5fb0-44b2-82eb-10ada793f690", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T00:49:15.940Z", + "completed":"2017-03-01T00:49:15.940Z", + "new_balance":"3293.28", + "value":"-296.60" + } + }, + { + "id":"3e5047e6-8400-4976-865e-5e9b512c589d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T07:50:37.982Z", + "completed":"2017-03-01T07:50:37.982Z", + "new_balance":"3270.92", + "value":"-22.36" + } + }, + { + "id":"e0a8da08-a7a3-4706-9746-8f65051ac203", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T08:02:25.485Z", + "completed":"2017-03-01T08:02:25.485Z", + "new_balance":"2993.44", + "value":"-277.48" + } + }, + { + "id":"2f30f8c8-25ec-4dfd-838c-0b16f8feb1bd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T14:22:11.642Z", + "completed":"2017-03-01T14:22:11.642Z", + "new_balance":"2936.63", + "value":"-56.81" + } + }, + { + "id":"94f37389-e50b-431f-9c6a-a6c367d7345c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T15:56:35.728Z", + "completed":"2017-03-01T15:56:35.728Z", + "new_balance":"2913.39", + "value":"-23.24" + } + }, + { + "id":"7ead9157-5784-4eab-9c0f-bb6afd7e25ed", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T23:20:31.914Z", + "completed":"2017-03-01T23:20:31.914Z", + "new_balance":"2900.29", + "value":"-13.10" + } + }, + { + "id":"2fb4b0fc-8eaf-4d17-9182-14a158d7de3e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T13:52:21.461Z", + "completed":"2017-03-12T13:52:21.461Z", + "new_balance":"2895.14", + "value":"-5.15" + } + }, + { + "id":"067e8e52-62ac-4f1a-9717-260fb77edee2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:04:53.541Z", + "completed":"2017-03-12T14:04:53.541Z", + "new_balance":"2838.33", + "value":"-56.81" + } + }, + { + "id":"cae87a6d-15ac-4b2e-816d-658963f40031", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T16:59:19.391Z", + "completed":"2017-03-12T16:59:19.391Z", + "new_balance":"2815.09", + "value":"-23.24" + } + }, + { + "id":"7aff5dfa-498a-44a0-9004-0796475e35ad", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T17:50:29.076Z", + "completed":"2017-03-12T17:50:29.076Z", + "new_balance":"2810.91", + "value":"-4.18" + } + }, + { + "id":"323dc47c-d306-4fe5-823f-c92160a1b710", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T10:26:28.996Z", + "completed":"2017-03-14T10:26:28.996Z", + "new_balance":"2971.72", + "value":"160.81" + } + }, + { + "id":"768d9375-090c-4485-9762-01588329b6f3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T21:22:49.251Z", + "completed":"2017-03-15T21:22:49.251Z", + "new_balance":"3001.99", + "value":"30.27" + } + }, + { + "id":"f3eb806f-0022-41f8-b9f3-c07f6fc14051", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T19:57:45.532Z", + "completed":"2017-03-16T19:57:45.532Z", + "new_balance":"3092.95", + "value":"90.96" + } + }, + { + "id":"0da3f71c-dbba-4e06-908d-6d0ea0c8d98b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T10:40:21.407Z", + "completed":"2017-03-17T10:40:21.407Z", + "new_balance":"3087.47", + "value":"-5.48" + } + }, + { + "id":"0cfa21cc-b122-4db4-978e-9b7006958ac8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T15:29:38.507Z", + "completed":"2017-03-17T15:29:38.507Z", + "new_balance":"3080.94", + "value":"-6.53" + } + }, + { + "id":"b3f11d0d-b295-4460-b8e3-5621789cb72f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T14:13:53.750Z", + "completed":"2017-03-19T14:13:53.750Z", + "new_balance":"3128.81", + "value":"47.87" + } + }, + { + "id":"84218334-fb40-4a28-aeba-80350ffa81ef", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T18:47:42.040Z", + "completed":"2017-03-21T18:47:42.040Z", + "new_balance":"3135.65", + "value":"6.84" + } + }, + { + "id":"710ed66b-ec42-4622-ba09-d2f856e5b56e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T19:02:04.423Z", + "completed":"2017-03-21T19:02:04.423Z", + "new_balance":"3128.46", + "value":"-7.19" + } + }, + { + "id":"6a85dab9-bcaa-4646-a727-c7192401e782", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T02:35:59.613Z", + "completed":"2017-03-24T02:35:59.613Z", + "new_balance":"3158.73", + "value":"30.27" + } + }, + { + "id":"48deec8d-a0c7-4db6-8722-97d516de6b7b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T04:22:00.339Z", + "completed":"2017-03-24T04:22:00.339Z", + "new_balance":"3108.51", + "value":"-50.22" + } + }, + { + "id":"69370ce6-7623-44c6-a09a-6e191c5bbc3d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T01:07:46.658Z", + "completed":"2017-03-25T01:07:46.658Z", + "new_balance":"3158.59", + "value":"50.08" + } + }, + { + "id":"f3914b97-f8c3-4c10-9db0-e74227476033", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T21:49:13.052Z", + "completed":"2017-03-25T21:49:13.052Z", + "new_balance":"3089.51", + "value":"-69.08" + } + }, + { + "id":"d89b5412-7264-422e-92df-b1afd179a339", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:34:59.316Z", + "completed":"2017-03-28T16:34:59.316Z", + "new_balance":"3498.33", + "value":"408.82" + } + }, + { + "id":"b445f655-fd60-4eaa-919f-355a86ca6c64", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T22:07:48.338Z", + "completed":"2017-03-28T22:07:48.338Z", + "new_balance":"3659.14", + "value":"160.81" + } + }, + { + "id":"09cbb88c-73f2-44d3-a424-c04f955aa9dd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T11:20:58.915Z", + "completed":"2017-03-30T11:20:58.915Z", + "new_balance":"3680.03", + "value":"20.89" + } + }, + { + "id":"0f4a4ae8-4c6f-4e60-916e-3fd10c88a767", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T14:46:28.588Z", + "completed":"2017-03-30T14:46:28.588Z", + "new_balance":"3710.30", + "value":"30.27" + } + }, + { + "id":"4f765fe9-c329-43f8-a377-4c306a5e4fb2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T00:03:30.994Z", + "completed":"2017-06-01T00:03:30.994Z", + "new_balance":"3413.70", + "value":"-296.60" + } + }, + { + "id":"2260efc9-e794-413f-b8ea-c0b3ac6205e5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T01:36:28.757Z", + "completed":"2017-06-01T01:36:28.757Z", + "new_balance":"3391.34", + "value":"-22.36" + } + }, + { + "id":"0f5e65ae-a18b-45be-928c-ff6c45d9ce00", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T02:02:55.900Z", + "completed":"2017-06-01T02:02:55.900Z", + "new_balance":"3113.86", + "value":"-277.48" + } + }, + { + "id":"01483b8e-4236-4b5e-8f6a-5be9661369df", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:01:22.489Z", + "completed":"2017-06-01T04:01:22.489Z", + "new_balance":"3090.62", + "value":"-23.24" + } + }, + { + "id":"7ce9766c-e706-4320-8d95-be3cd4a2e885", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T05:14:16.448Z", + "completed":"2017-06-01T05:14:16.448Z", + "new_balance":"3033.81", + "value":"-56.81" + } + }, + { + "id":"03a6f096-ae7f-4942-a0cf-727525d3fb8c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T16:42:51.648Z", + "completed":"2017-06-01T16:42:51.648Z", + "new_balance":"3020.71", + "value":"-13.10" + } + }, + { + "id":"e3ca71ec-573a-4feb-a78b-b92d076f2700", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T02:01:37.418Z", + "completed":"2017-06-04T02:01:37.418Z", + "new_balance":"3015.56", + "value":"-5.15" + } + }, + { + "id":"e2c2659a-14fd-45b7-b6cc-4ee5428d68a0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:19:42.586Z", + "completed":"2017-06-04T11:19:42.586Z", + "new_balance":"3011.38", + "value":"-4.18" + } + }, + { + "id":"2f1722a7-3e9d-4c39-b7b8-f5017f6824ae", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T19:46:39.545Z", + "completed":"2017-06-05T19:46:39.545Z", + "new_balance":"2988.14", + "value":"-23.24" + } + }, + { + "id":"6057ea33-7f14-4c23-aa6c-75ef854ce871", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T19:50:45.549Z", + "completed":"2017-06-05T19:50:45.549Z", + "new_balance":"2931.33", + "value":"-56.81" + } + }, + { + "id":"954b4a34-a1ff-44cd-ae58-03e1c8fe7db7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T01:34:48.249Z", + "completed":"2017-06-07T01:34:48.249Z", + "new_balance":"2961.60", + "value":"30.27" + } + }, + { + "id":"65506915-ec29-478c-aa33-43a6f4b5c728", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T07:48:37.950Z", + "completed":"2017-06-07T07:48:37.950Z", + "new_balance":"3052.56", + "value":"90.96" + } + }, + { + "id":"84ae9088-2a0f-48d3-866a-03b52cdcd29b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T09:01:06.487Z", + "completed":"2017-06-07T09:01:06.487Z", + "new_balance":"3213.37", + "value":"160.81" + } + }, + { + "id":"3790bc0a-5c5e-4b43-9dd3-e219430897a3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T20:21:45.534Z", + "completed":"2017-06-07T20:21:45.534Z", + "new_balance":"3206.84", + "value":"-6.53" + } + }, + { + "id":"4036677a-53fd-4111-9004-7e55890db7fd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T09:13:57.281Z", + "completed":"2017-06-11T09:13:57.281Z", + "new_balance":"3201.36", + "value":"-5.48" + } + }, + { + "id":"ca3258ef-62f3-4152-8385-c17a33cc1bdd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T00:47:29.555Z", + "completed":"2017-06-14T00:47:29.555Z", + "new_balance":"3249.23", + "value":"47.87" + } + }, + { + "id":"611118ce-b4da-458e-9a96-acb0cfc1a2f4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T12:04:08.997Z", + "completed":"2017-06-14T12:04:08.997Z", + "new_balance":"3242.04", + "value":"-7.19" + } + }, + { + "id":"5f2ad244-a0ce-407a-adfa-e932644f4dd7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T18:07:03.296Z", + "completed":"2017-06-14T18:07:03.296Z", + "new_balance":"3248.88", + "value":"6.84" + } + }, + { + "id":"f7d6ef14-dd8c-4bb1-ac35-ddf6fae471f1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T07:35:33.296Z", + "completed":"2017-06-16T07:35:33.296Z", + "new_balance":"3279.15", + "value":"30.27" + } + }, + { + "id":"118dc22f-ce20-436a-bb2b-a797c77fe380", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T13:42:35.143Z", + "completed":"2017-06-16T13:42:35.143Z", + "new_balance":"3228.93", + "value":"-50.22" + } + }, + { + "id":"cae154ee-d6be-45f7-b026-d39df16f3a41", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T04:36:48.394Z", + "completed":"2017-06-21T04:36:48.394Z", + "new_balance":"3159.85", + "value":"-69.08" + } + }, + { + "id":"5063ef45-1ebe-4760-b95e-f680943e444a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T13:50:12.971Z", + "completed":"2017-06-21T13:50:12.971Z", + "new_balance":"3320.66", + "value":"160.81" + } + }, + { + "id":"588b4dbb-b290-4450-b2d0-d4fb65467bf2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T22:16:27.833Z", + "completed":"2017-06-21T22:16:27.833Z", + "new_balance":"3370.74", + "value":"50.08" + } + }, + { + "id":"6b32585f-8e13-4b99-af51-d63ddd172ec9", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T23:46:20.189Z", + "completed":"2017-06-21T23:46:20.189Z", + "new_balance":"3779.56", + "value":"408.82" + } + }, + { + "id":"9cb987c2-3c61-4f20-8495-ac4590a683cc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T01:22:34.114Z", + "completed":"2017-06-30T01:22:34.114Z", + "new_balance":"3800.45", + "value":"20.89" + } + }, + { + "id":"247c6a1a-cffe-4178-bc5b-d0ee0b8c91bb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T17:07:14.228Z", + "completed":"2017-06-30T17:07:14.228Z", + "new_balance":"3830.72", + "value":"30.27" + } + }, + { + "id":"c6e72198-7748-41b7-bcf3-d83f3d85778a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T00:22:44.867Z", + "completed":"2017-09-01T00:22:44.867Z", + "new_balance":"3807.48", + "value":"-23.24" + } + }, + { + "id":"32374a92-b446-49d3-8a38-ff5803f7f7b3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T02:07:41.734Z", + "completed":"2017-09-01T02:07:41.734Z", + "new_balance":"3510.88", + "value":"-296.60" + } + }, + { + "id":"79321dbc-68f4-41ad-941b-f0ebfcbafebc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T05:48:28.892Z", + "completed":"2017-09-01T05:48:28.892Z", + "new_balance":"3233.40", + "value":"-277.48" + } + }, + { + "id":"457ae349-e623-40a7-b2b8-8c4763913699", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T07:00:15.485Z", + "completed":"2017-09-01T07:00:15.485Z", + "new_balance":"3176.59", + "value":"-56.81" + } + }, + { + "id":"ccfbd842-b573-40d2-95e4-bb7fc4d239e2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T16:55:14.514Z", + "completed":"2017-09-01T16:55:14.514Z", + "new_balance":"3154.23", + "value":"-22.36" + } + }, + { + "id":"0cdb3ed7-cc57-47f1-bc4b-ca0ea8de3568", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T21:40:28.041Z", + "completed":"2017-09-01T21:40:28.041Z", + "new_balance":"3141.13", + "value":"-13.10" + } + }, + { + "id":"98f63235-3e19-4c7d-bf00-70558ed20ceb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T10:46:15.072Z", + "completed":"2017-09-12T10:46:15.072Z", + "new_balance":"3136.95", + "value":"-4.18" + } + }, + { + "id":"cb88603c-70d2-4ca8-98be-50bcc405ad5e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T12:13:50.834Z", + "completed":"2017-09-12T12:13:50.834Z", + "new_balance":"3113.71", + "value":"-23.24" + } + }, + { + "id":"3d539071-cd4d-4c27-842e-2dc90c25775c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T13:14:21.425Z", + "completed":"2017-09-12T13:14:21.425Z", + "new_balance":"3056.90", + "value":"-56.81" + } + }, + { + "id":"ae732ad4-51ed-45a8-944c-8290e3e74407", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T15:42:24.434Z", + "completed":"2017-09-12T15:42:24.434Z", + "new_balance":"3051.75", + "value":"-5.15" + } + }, + { + "id":"7b72c0af-e820-4bee-be3d-f728d018f70e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T10:28:31.263Z", + "completed":"2017-09-15T10:28:31.263Z", + "new_balance":"3082.02", + "value":"30.27" + } + }, + { + "id":"7c815fcf-72a9-4b08-8375-c2617bafa6dd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T20:16:26.017Z", + "completed":"2017-09-15T20:16:26.017Z", + "new_balance":"3242.83", + "value":"160.81" + } + }, + { + "id":"f324316b-8717-4df1-84c8-5b20173db449", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T02:00:41.403Z", + "completed":"2017-09-17T02:00:41.403Z", + "new_balance":"3333.79", + "value":"90.96" + } + }, + { + "id":"72149884-5dd1-4341-9aac-317fbdb785dc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T17:32:51.879Z", + "completed":"2017-09-17T17:32:51.879Z", + "new_balance":"3327.26", + "value":"-6.53" + } + }, + { + "id":"8b1a57bf-919f-4081-b650-ab3b2bfaa196", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T19:58:20.286Z", + "completed":"2017-09-17T19:58:20.286Z", + "new_balance":"3321.78", + "value":"-5.48" + } + }, + { + "id":"17748e94-ad4a-4c25-a90a-59a40c573a9a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T18:21:06.182Z", + "completed":"2017-09-19T18:21:06.182Z", + "new_balance":"3369.65", + "value":"47.87" + } + }, + { + "id":"a91633ca-fb1f-48e5-86c5-24a37febd815", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:39:30.596Z", + "completed":"2017-09-21T14:39:30.596Z", + "new_balance":"3376.49", + "value":"6.84" + } + }, + { + "id":"8e1199f1-a239-4857-b1cd-06435f20f4e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:07:46.379Z", + "completed":"2017-09-21T20:07:46.379Z", + "new_balance":"3369.30", + "value":"-7.19" + } + }, + { + "id":"d992147e-fabc-45a0-91e0-0d96a5f749bc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T18:21:26.054Z", + "completed":"2017-09-24T18:21:26.054Z", + "new_balance":"3319.08", + "value":"-50.22" + } + }, + { + "id":"c96ae328-c614-409a-8abf-63eef1fed5ab", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T21:23:58.723Z", + "completed":"2017-09-24T21:23:58.723Z", + "new_balance":"3349.35", + "value":"30.27" + } + }, + { + "id":"9581d4bd-dc38-4a69-894c-a2c4af92dd25", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T17:10:46.833Z", + "completed":"2017-09-25T17:10:46.833Z", + "new_balance":"3280.27", + "value":"-69.08" + } + }, + { + "id":"c0f38019-6d07-4fe5-9226-7579392e4024", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T18:07:15.084Z", + "completed":"2017-09-25T18:07:15.084Z", + "new_balance":"3330.35", + "value":"50.08" + } + }, + { + "id":"331b55c5-e62a-4693-b429-38061dc503a6", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T09:25:24.520Z", + "completed":"2017-09-28T09:25:24.520Z", + "new_balance":"3739.17", + "value":"408.82" + } + }, + { + "id":"bc6637b8-db1d-4ac6-b76d-58de72eec32c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T20:16:06.530Z", + "completed":"2017-09-28T20:16:06.530Z", + "new_balance":"3899.98", + "value":"160.81" + } + }, + { + "id":"6d652564-6e7d-440b-b522-1c4b8d6edebf", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T19:03:23.765Z", + "completed":"2017-09-30T19:03:23.765Z", + "new_balance":"3920.87", + "value":"20.89" + } + }, + { + "id":"7da5805b-8842-480e-b6d5-b44af270f460", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T21:07:52.722Z", + "completed":"2017-09-30T21:07:52.722Z", + "new_balance":"3951.14", + "value":"30.27" + } + }, + { + "id":"6960f2f0-3bd0-4703-a756-5cfb27ade67a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T03:20:04.893Z", + "completed":"2017-12-01T03:20:04.893Z", + "new_balance":"3894.33", + "value":"-56.81" + } + }, + { + "id":"396141ff-2e53-4667-9334-eb9a6e1769f2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T05:25:19.067Z", + "completed":"2017-12-01T05:25:19.067Z", + "new_balance":"3597.73", + "value":"-296.60" + } + }, + { + "id":"ef0f3acc-5bb5-4ca2-98a7-0d1aabf1b82a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T12:15:36.548Z", + "completed":"2017-12-01T12:15:36.548Z", + "new_balance":"3584.63", + "value":"-13.10" + } + }, + { + "id":"a4dec51e-4712-4829-8484-235e9706b1ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T14:30:50.455Z", + "completed":"2017-12-01T14:30:50.455Z", + "new_balance":"3561.39", + "value":"-23.24" + } + }, + { + "id":"d3dbf03f-947f-4652-ba13-cea2c4476b55", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T16:21:40.049Z", + "completed":"2017-12-01T16:21:40.049Z", + "new_balance":"3283.91", + "value":"-277.48" + } + }, + { + "id":"f9c6b8e1-09f2-442c-961a-b4bbfabd7632", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T19:30:32.411Z", + "completed":"2017-12-01T19:30:32.411Z", + "new_balance":"3261.55", + "value":"-22.36" + } + }, + { + "id":"88cc0b10-1f43-4064-b034-a6e1c1b2a38b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T12:05:13.066Z", + "completed":"2017-12-04T12:05:13.066Z", + "new_balance":"3257.37", + "value":"-4.18" + } + }, + { + "id":"28da4c78-9c44-47c8-a326-688905115931", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T20:16:38.583Z", + "completed":"2017-12-04T20:16:38.583Z", + "new_balance":"3252.22", + "value":"-5.15" + } + }, + { + "id":"abc4358d-10e8-4d8f-a6bd-6a1995cb6072", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T01:24:28.822Z", + "completed":"2017-12-05T01:24:28.822Z", + "new_balance":"3195.41", + "value":"-56.81" + } + }, + { + "id":"b2907eaf-8244-461c-9bff-c7619ce23670", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T02:38:47.106Z", + "completed":"2017-12-05T02:38:47.106Z", + "new_balance":"3172.17", + "value":"-23.24" + } + }, + { + "id":"bebc35a6-e6f5-419d-81d0-dffd05a73a9e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:27:20.180Z", + "completed":"2017-12-07T10:27:20.180Z", + "new_balance":"3165.64", + "value":"-6.53" + } + }, + { + "id":"87f5a290-9371-448e-8712-20a07b34fe9c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T11:10:47.862Z", + "completed":"2017-12-07T11:10:47.862Z", + "new_balance":"3256.60", + "value":"90.96" + } + }, + { + "id":"c7e09a6e-013c-47e5-8eb9-f4b221e44729", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T15:06:23.111Z", + "completed":"2017-12-07T15:06:23.111Z", + "new_balance":"3417.41", + "value":"160.81" + } + }, + { + "id":"a3f7494e-776d-4a4f-bbf1-d95b5f8e5d82", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:39:17.194Z", + "completed":"2017-12-07T21:39:17.194Z", + "new_balance":"3447.68", + "value":"30.27" + } + }, + { + "id":"9bcf93bc-3c18-42f6-867b-8349b0a04702", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T18:31:54.046Z", + "completed":"2017-12-11T18:31:54.046Z", + "new_balance":"3442.20", + "value":"-5.48" + } + }, + { + "id":"ef5af8ba-e5c9-4c2c-99a7-6a0b5bf722ae", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T08:02:17.029Z", + "completed":"2017-12-14T08:02:17.029Z", + "new_balance":"3435.01", + "value":"-7.19" + } + }, + { + "id":"e6d38cf7-f10a-438d-835c-467ce21ac9be", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T09:15:29.892Z", + "completed":"2017-12-14T09:15:29.892Z", + "new_balance":"3441.85", + "value":"6.84" + } + }, + { + "id":"f903ed85-2894-4e1e-9ac4-36ef2f3fa362", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:20:26.209Z", + "completed":"2017-12-14T15:20:26.209Z", + "new_balance":"3489.72", + "value":"47.87" + } + }, + { + "id":"5efcb664-da8c-4c2b-8121-511c22ec5c80", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T05:38:17.633Z", + "completed":"2017-12-16T05:38:17.633Z", + "new_balance":"3519.99", + "value":"30.27" + } + }, + { + "id":"f2a0ef28-405e-4e0f-a61f-951ef9381597", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T06:54:46.035Z", + "completed":"2017-12-16T06:54:46.035Z", + "new_balance":"3469.77", + "value":"-50.22" + } + }, + { + "id":"82ea1931-e413-4413-8d6d-bae1146641d0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T06:55:56.421Z", + "completed":"2017-12-21T06:55:56.421Z", + "new_balance":"3519.85", + "value":"50.08" + } + }, + { + "id":"5635491f-df4b-4548-a2f9-1e893da4dc45", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T08:21:47.516Z", + "completed":"2017-12-21T08:21:47.516Z", + "new_balance":"3680.66", + "value":"160.81" + } + }, + { + "id":"d20ac5ea-3a6e-459f-bf5d-43622f5cc3e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:59:50.933Z", + "completed":"2017-12-21T18:59:50.933Z", + "new_balance":"4089.48", + "value":"408.82" + } + }, + { + "id":"77aa752b-a5df-438a-af10-378c86db0ccd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T19:18:56.789Z", + "completed":"2017-12-21T19:18:56.789Z", + "new_balance":"4020.40", + "value":"-69.08" + } + }, + { + "id":"5b55af8a-a34e-4c8a-93bc-aea2c9e75ab2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T02:25:25.500Z", + "completed":"2017-12-30T02:25:25.500Z", + "new_balance":"4050.67", + "value":"30.27" + } + }, + { + "id":"bfe2c5cf-a411-4884-8978-cf87d02bb46d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T07:26:06.628Z", + "completed":"2017-12-30T07:26:06.628Z", + "new_balance":"4071.56", + "value":"20.89" + } + }, + { + "id":"69c552bb-747f-4931-92f9-d89b2cba2524", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T02:01:50.118Z", + "completed":"2016-01-01T02:01:50.118Z", + "new_balance":"7338.69", + "value":"-58.23" + } + }, + { + "id":"9d70b3f0-148e-4fbb-9f03-6f2fef53c2ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T06:09:10.431Z", + "completed":"2016-01-01T06:09:10.431Z", + "new_balance":"7336.37", + "value":"-2.32" + } + }, + { + "id":"7a8b27ec-5887-4ca4-b827-2155ff025690", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T16:29:01.574Z", + "completed":"2016-01-01T16:29:01.574Z", + "new_balance":"7332.93", + "value":"-3.44" + } + }, + { + "id":"3b7cdf9a-7c88-4db8-a918-66a98d3ca9ec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:06:31.719Z", + "completed":"2016-01-01T19:06:31.719Z", + "new_balance":"7317.68", + "value":"-15.25" + } + }, + { + "id":"3806af56-5495-4d1f-9932-ca2b55375d6d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T23:48:15.620Z", + "completed":"2016-01-01T23:48:15.620Z", + "new_balance":"7312.53", + "value":"-5.15" + } + }, + { + "id":"fdebdcf9-c675-433e-a105-226038620eea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T23:50:27.057Z", + "completed":"2016-01-01T23:50:27.057Z", + "new_balance":"7309.09", + "value":"-3.44" + } + }, + { + "id":"7ab790b6-fc8d-4f78-8fd7-e9ac218966d7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T04:18:10.007Z", + "completed":"2016-01-02T04:18:10.007Z", + "new_balance":"7299.40", + "value":"-9.69" + } + }, + { + "id":"26f85c1a-fe14-43ef-b63c-ee10d99b34a4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T20:53:07.685Z", + "completed":"2016-01-02T20:53:07.685Z", + "new_balance":"7292.30", + "value":"-7.10" + } + }, + { + "id":"0f3a8479-bd06-4b81-9a44-ba8261819093", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T14:58:46.152Z", + "completed":"2016-01-04T14:58:46.152Z", + "new_balance":"7288.52", + "value":"-3.78" + } + }, + { + "id":"75f78c1d-302d-419f-b043-fcf1f849a6b4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T18:19:33.142Z", + "completed":"2016-01-04T18:19:33.142Z", + "new_balance":"7285.61", + "value":"-2.91" + } + }, + { + "id":"8e75f583-494d-4934-b4f7-c23b2c558799", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T19:16:38.525Z", + "completed":"2016-01-07T19:16:38.525Z", + "new_balance":"7278.42", + "value":"-7.19" + } + }, + { + "id":"364b4611-fc68-4ce2-8c12-1f226ef0dd4c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T07:42:23.300Z", + "completed":"2016-01-09T07:42:23.300Z", + "new_balance":"7277.96", + "value":"-0.46" + } + }, + { + "id":"5617a9b0-1b55-4c3a-9c59-2ea270c03c43", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T17:24:08.037Z", + "completed":"2016-01-10T17:24:08.037Z", + "new_balance":"7275.28", + "value":"-2.68" + } + }, + { + "id":"e4cf37fa-56e7-4fc4-8928-a2e57304b5d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T05:52:28.177Z", + "completed":"2016-01-12T05:52:28.177Z", + "new_balance":"7272.06", + "value":"-3.22" + } + }, + { + "id":"c2d1075d-ff7d-40bb-8c1c-66f005f3acf1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T00:41:33.385Z", + "completed":"2016-01-15T00:41:33.385Z", + "new_balance":"7270.53", + "value":"-1.53" + } + }, + { + "id":"850e251c-483d-4bf2-b3a6-e15d9bc3d9d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T20:09:00.501Z", + "completed":"2016-01-15T20:09:00.501Z", + "new_balance":"7269.63", + "value":"-0.90" + } + }, + { + "id":"a0765cd8-7c0f-4017-b170-8ca83c64d593", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T03:32:36.297Z", + "completed":"2016-01-17T03:32:36.297Z", + "new_balance":"7267.52", + "value":"-2.11" + } + }, + { + "id":"424e4f58-6313-4ead-bab7-f40f831fa90c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T17:40:21.659Z", + "completed":"2016-01-19T17:40:21.659Z", + "new_balance":"7240.02", + "value":"-27.50" + } + }, + { + "id":"18afe271-2dbe-4be4-8a40-80ec70b78368", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T07:32:14.229Z", + "completed":"2016-01-20T07:32:14.229Z", + "new_balance":"7239.58", + "value":"-0.44" + } + }, + { + "id":"b1b896ef-6d1d-4e45-943d-93f8724d8b7f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T15:36:43.228Z", + "completed":"2016-01-22T15:36:43.228Z", + "new_balance":"7238.47", + "value":"-1.11" + } + }, + { + "id":"4986ea7a-ef79-422e-aee0-519a8b4029eb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T15:47:00.842Z", + "completed":"2016-01-22T15:47:00.842Z", + "new_balance":"7233.99", + "value":"-4.48" + } + }, + { + "id":"cee00798-2f69-4cec-a958-ef671d87310f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T16:36:07.769Z", + "completed":"2016-01-24T16:36:07.769Z", + "new_balance":"7231.18", + "value":"-2.81" + } + }, + { + "id":"95c08ff6-ac80-460d-b455-05805a5b251b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T08:58:17.419Z", + "completed":"2016-01-25T08:58:17.419Z", + "new_balance":"7230.74", + "value":"-0.44" + } + }, + { + "id":"36f37f77-458b-4ef0-aeb9-bafe27660eba", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T14:57:06.862Z", + "completed":"2016-01-25T14:57:06.862Z", + "new_balance":"7225.34", + "value":"-5.40" + } + }, + { + "id":"ebb972ea-cd36-4b41-85c1-cd04960d23c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T00:10:33.265Z", + "completed":"2016-01-26T00:10:33.265Z", + "new_balance":"7219.52", + "value":"-5.82" + } + }, + { + "id":"dc2ca397-eaac-41dd-95a3-fb44a7f6496c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T02:32:49.069Z", + "completed":"2016-02-01T02:32:49.069Z", + "new_balance":"7214.37", + "value":"-5.15" + } + }, + { + "id":"8e7255c2-8396-4996-927d-d8c52d3f3770", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T03:14:50.782Z", + "completed":"2016-02-01T03:14:50.782Z", + "new_balance":"7199.12", + "value":"-15.25" + } + }, + { + "id":"899f9b27-624d-4302-bd9b-10be1bf2a680", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T08:17:20.652Z", + "completed":"2016-02-01T08:17:20.652Z", + "new_balance":"7140.89", + "value":"-58.23" + } + }, + { + "id":"b50e26a2-7e70-4b4f-911a-c62fc29fb7f6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T10:48:51.149Z", + "completed":"2016-02-01T10:48:51.149Z", + "new_balance":"7138.57", + "value":"-2.32" + } + }, + { + "id":"f8ab76b1-5fcc-4b5b-b95b-98581c86bd8d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T13:43:18.354Z", + "completed":"2016-02-01T13:43:18.354Z", + "new_balance":"7135.13", + "value":"-3.44" + } + }, + { + "id":"c1434ba8-3bd5-4a8d-ad80-b6acb01d0e93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T15:38:16.985Z", + "completed":"2016-02-01T15:38:16.985Z", + "new_balance":"7317.83", + "value":"182.70" + } + }, + { + "id":"412db019-ffbc-41fa-9d55-4a7010ec8324", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T02:56:05.308Z", + "completed":"2016-02-02T02:56:05.308Z", + "new_balance":"7315.73", + "value":"-2.10" + } + }, + { + "id":"d2e750d2-58df-4917-9097-d0ccc67e49ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T06:33:29.275Z", + "completed":"2016-02-02T06:33:29.275Z", + "new_balance":"7308.63", + "value":"-7.10" + } + }, + { + "id":"a368ae02-62e3-4b6f-a348-dc4792f6ce35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T10:15:42.058Z", + "completed":"2016-02-02T10:15:42.058Z", + "new_balance":"7307.48", + "value":"-1.15" + } + }, + { + "id":"fa35ceaa-9248-409f-81fe-59f525ad92b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:45:19.518Z", + "completed":"2016-02-03T02:45:19.518Z", + "new_balance":"7305.08", + "value":"-2.40" + } + }, + { + "id":"2ea2fa7f-6b46-4e25-9afd-372360080de6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T03:27:46.284Z", + "completed":"2016-02-03T03:27:46.284Z", + "new_balance":"7301.75", + "value":"-3.33" + } + }, + { + "id":"fda7b63e-2962-4618-a543-058e0af39f16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T09:34:32.240Z", + "completed":"2016-02-03T09:34:32.240Z", + "new_balance":"7299.25", + "value":"-2.50" + } + }, + { + "id":"923e0083-c990-482d-9f5e-405e5c69416a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T20:29:13.883Z", + "completed":"2016-02-06T20:29:13.883Z", + "new_balance":"7292.06", + "value":"-7.19" + } + }, + { + "id":"df82cc9f-0b8f-42f2-aab6-403f0e1ff10f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T08:37:43.129Z", + "completed":"2016-02-08T08:37:43.129Z", + "new_balance":"7291.58", + "value":"-0.48" + } + }, + { + "id":"36a1563b-d684-40da-8031-f925e5543f56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T09:57:45.095Z", + "completed":"2016-02-08T09:57:45.095Z", + "new_balance":"7289.13", + "value":"-2.45" + } + }, + { + "id":"6ebb6449-f773-4c71-891f-136822dabd68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T21:51:14.207Z", + "completed":"2016-02-08T21:51:14.207Z", + "new_balance":"7286.10", + "value":"-3.03" + } + }, + { + "id":"4c9d3045-53aa-482a-9fa1-24cf688bc480", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T00:32:50.990Z", + "completed":"2016-02-09T00:32:50.990Z", + "new_balance":"7282.62", + "value":"-3.48" + } + }, + { + "id":"b0f5eea7-9fd2-4503-b2cb-0c07a2f812f0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T12:07:06.777Z", + "completed":"2016-02-09T12:07:06.777Z", + "new_balance":"7279.48", + "value":"-3.14" + } + }, + { + "id":"22666cc4-3215-415e-a4c6-694d02cd61e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T14:57:20.373Z", + "completed":"2016-02-12T14:57:20.373Z", + "new_balance":"7279.01", + "value":"-0.47" + } + }, + { + "id":"1be18e3d-c372-48a5-b5ee-ed8299960b87", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T14:08:40.398Z", + "completed":"2016-02-13T14:08:40.398Z", + "new_balance":"7278.24", + "value":"-0.77" + } + }, + { + "id":"61c25e6b-4c87-439f-9e44-0c2f95d00c52", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T15:16:02.258Z", + "completed":"2016-02-13T15:16:02.258Z", + "new_balance":"7271.81", + "value":"-6.43" + } + }, + { + "id":"b15a446f-fefb-43ae-92f9-7669fe28cf8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T20:38:40.276Z", + "completed":"2016-02-13T20:38:40.276Z", + "new_balance":"7275.89", + "value":"4.08" + } + }, + { + "id":"27c4bcef-1c71-4c5d-8c35-e517df4f83a7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:27:22.981Z", + "completed":"2016-02-14T14:27:22.981Z", + "new_balance":"7271.77", + "value":"-4.12" + } + }, + { + "id":"5e00f3cc-bad6-4e49-a9e0-02db90b1544f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T02:34:42.119Z", + "completed":"2016-02-15T02:34:42.119Z", + "new_balance":"7269.22", + "value":"-2.55" + } + }, + { + "id":"41e7b1fd-3074-4151-85f4-6ff666763c9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T01:06:07.681Z", + "completed":"2016-02-28T01:06:07.681Z", + "new_balance":"7266.28", + "value":"-2.94" + } + }, + { + "id":"2ba53034-7d07-42e0-a329-fbd4c9d20678", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T01:32:58.479Z", + "completed":"2016-03-01T01:32:58.479Z", + "new_balance":"7261.13", + "value":"-5.15" + } + }, + { + "id":"2f14e375-3318-4769-b735-b08fd3de6046", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:57:28.847Z", + "completed":"2016-03-01T03:57:28.847Z", + "new_balance":"7443.83", + "value":"182.70" + } + }, + { + "id":"43642818-880f-4abf-8c06-02b76c7ef5c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T08:52:57.699Z", + "completed":"2016-03-01T08:52:57.699Z", + "new_balance":"7428.58", + "value":"-15.25" + } + }, + { + "id":"2b427822-2d2e-4719-8dbc-2ef89ed4bfbe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T18:27:52.032Z", + "completed":"2016-03-01T18:27:52.032Z", + "new_balance":"7370.35", + "value":"-58.23" + } + }, + { + "id":"3466dd40-bae3-438c-b1ed-9d6f0e86eb4c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T22:07:41.052Z", + "completed":"2016-03-01T22:07:41.052Z", + "new_balance":"7368.03", + "value":"-2.32" + } + }, + { + "id":"12f1661f-a456-400d-8c2f-ec291edbcf16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T22:13:07.530Z", + "completed":"2016-03-01T22:13:07.530Z", + "new_balance":"7364.59", + "value":"-3.44" + } + }, + { + "id":"f52aceb6-62ad-4373-8b17-f1bd047414e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T21:39:41.508Z", + "completed":"2016-03-02T21:39:41.508Z", + "new_balance":"7357.49", + "value":"-7.10" + } + }, + { + "id":"53015d1b-0ad6-4298-9830-5fd40bf24337", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T03:53:44.524Z", + "completed":"2016-03-04T03:53:44.524Z", + "new_balance":"7354.19", + "value":"-3.30" + } + }, + { + "id":"d8722c80-9452-4278-b8a2-446c8b03a9f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T12:13:43.859Z", + "completed":"2016-03-04T12:13:43.859Z", + "new_balance":"7353.43", + "value":"-0.76" + } + }, + { + "id":"ba2f957f-8a7e-4c8c-a3c1-de6038244193", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T15:05:43.742Z", + "completed":"2016-03-04T15:05:43.742Z", + "new_balance":"7346.13", + "value":"-7.30" + } + }, + { + "id":"6bb81bc0-858d-4491-8dce-102f96b20943", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:40:30.991Z", + "completed":"2016-03-04T21:40:30.991Z", + "new_balance":"7344.88", + "value":"-1.25" + } + }, + { + "id":"04cab6de-cc77-49e5-925b-f90ffc3b59c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T03:19:41.510Z", + "completed":"2016-03-05T03:19:41.510Z", + "new_balance":"7340.84", + "value":"-4.04" + } + }, + { + "id":"e1cbbd3b-e3ed-4a74-98c7-ddab294ad579", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T16:02:51.121Z", + "completed":"2016-03-05T16:02:51.121Z", + "new_balance":"7340.44", + "value":"-0.40" + } + }, + { + "id":"7eade888-2c33-41b5-bc5a-091859b6574d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T01:15:18.093Z", + "completed":"2016-03-06T01:15:18.093Z", + "new_balance":"7333.14", + "value":"-7.30" + } + }, + { + "id":"beeb8c1e-4696-4b6d-97f1-826283fc14d6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T18:12:15.630Z", + "completed":"2016-03-06T18:12:15.630Z", + "new_balance":"7327.87", + "value":"-5.27" + } + }, + { + "id":"dea72211-5340-4e01-878e-9619d93c8503", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T18:54:43.349Z", + "completed":"2016-03-07T18:54:43.349Z", + "new_balance":"7323.60", + "value":"-4.27" + } + }, + { + "id":"4da880e6-9829-45c5-9e65-5acb5e11ce41", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T06:22:33.433Z", + "completed":"2016-03-08T06:22:33.433Z", + "new_balance":"7318.33", + "value":"-5.27" + } + }, + { + "id":"e94a03fd-95d6-48a4-b89a-a6b20e3afca3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T22:18:15.929Z", + "completed":"2016-03-09T22:18:15.929Z", + "new_balance":"7317.79", + "value":"-0.54" + } + }, + { + "id":"eb8d441e-0f20-45f5-841b-6d1eb607bdc2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T15:58:25.006Z", + "completed":"2016-03-10T15:58:25.006Z", + "new_balance":"7311.47", + "value":"-6.32" + } + }, + { + "id":"533b206b-bef7-40b3-9842-b8cf0fdaaab0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T13:02:58.428Z", + "completed":"2016-03-11T13:02:58.428Z", + "new_balance":"7310.70", + "value":"-0.77" + } + }, + { + "id":"ca7961dd-e3c4-4c3e-a1a6-e8419b85bcc5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T11:20:52.191Z", + "completed":"2016-03-12T11:20:52.191Z", + "new_balance":"7308.45", + "value":"-2.25" + } + }, + { + "id":"240e6d9c-60eb-47a3-a990-6e962e331a33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T15:03:05.387Z", + "completed":"2016-03-12T15:03:05.387Z", + "new_balance":"7307.40", + "value":"-1.05" + } + }, + { + "id":"32d806af-c1bb-4ffd-bc9d-bfee18d1a559", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T12:10:12.644Z", + "completed":"2016-03-13T12:10:12.644Z", + "new_balance":"7303.14", + "value":"-4.26" + } + }, + { + "id":"9a3bfcc1-de21-418f-b975-0d51407faf94", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T14:16:02.778Z", + "completed":"2016-03-14T14:16:02.778Z", + "new_balance":"7302.62", + "value":"-0.52" + } + }, + { + "id":"856ec28f-16a2-43ca-8884-4364f354b9e9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T04:30:13.820Z", + "completed":"2016-03-16T04:30:13.820Z", + "new_balance":"7297.80", + "value":"-4.82" + } + }, + { + "id":"2af7dd86-a9d2-4427-9f0f-608072f4d1b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T21:45:19.642Z", + "completed":"2016-03-16T21:45:19.642Z", + "new_balance":"7288.01", + "value":"-9.79" + } + }, + { + "id":"b75f905f-873d-455b-b233-a4366efcbe75", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T03:07:10.390Z", + "completed":"2016-03-18T03:07:10.390Z", + "new_balance":"7287.49", + "value":"-0.52" + } + }, + { + "id":"f8aac6b5-4b2a-4e3a-a3ab-1658981a3d1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T04:06:29.946Z", + "completed":"2016-03-19T04:06:29.946Z", + "new_balance":"7283.34", + "value":"-4.15" + } + }, + { + "id":"8f662ca3-135d-4017-90ac-61b3b15cb916", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T07:11:26.320Z", + "completed":"2016-03-19T07:11:26.320Z", + "new_balance":"7277.02", + "value":"-6.32" + } + }, + { + "id":"9e945d26-0570-4539-a062-0a612a75f678", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T23:39:26.821Z", + "completed":"2016-03-19T23:39:26.821Z", + "new_balance":"7272.73", + "value":"-4.29" + } + }, + { + "id":"29a6c038-5d54-428e-b37b-9a838cb2ee35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T14:04:22.242Z", + "completed":"2016-03-20T14:04:22.242Z", + "new_balance":"7267.57", + "value":"-5.16" + } + }, + { + "id":"fbadbf8f-39da-4371-8cfc-e0a5635d0c72", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T14:35:43.580Z", + "completed":"2016-03-20T14:35:43.580Z", + "new_balance":"7260.61", + "value":"-6.96" + } + }, + { + "id":"7f37b460-0320-4305-8982-4227159c5903", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T12:54:51.268Z", + "completed":"2016-03-21T12:54:51.268Z", + "new_balance":"7260.02", + "value":"-0.59" + } + }, + { + "id":"c977abf9-b9e4-4bb9-9534-ec80d12a1ebc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T20:59:36.213Z", + "completed":"2016-03-21T20:59:36.213Z", + "new_balance":"7259.26", + "value":"-0.76" + } + }, + { + "id":"93309ee7-7434-43fa-b078-4fe475859b49", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T12:49:26.272Z", + "completed":"2016-03-23T12:49:26.272Z", + "new_balance":"7258.35", + "value":"-0.91" + } + }, + { + "id":"26d016b0-c127-4107-a08b-8caeee5c6757", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T19:29:35.626Z", + "completed":"2016-03-23T19:29:35.626Z", + "new_balance":"7253.74", + "value":"-4.61" + } + }, + { + "id":"9404de85-47d2-41f4-a428-614850263b31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T13:04:41.032Z", + "completed":"2016-03-24T13:04:41.032Z", + "new_balance":"7250.19", + "value":"-3.55" + } + }, + { + "id":"0e29cf36-3d76-4ec3-b251-33301308fb1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T22:19:52.645Z", + "completed":"2016-03-25T22:19:52.645Z", + "new_balance":"7247.13", + "value":"-3.06" + } + }, + { + "id":"16718a45-e59e-4d61-9fd1-615b97c4d047", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:58:27.302Z", + "completed":"2016-03-25T23:58:27.302Z", + "new_balance":"7245.82", + "value":"-1.31" + } + }, + { + "id":"5fb4e478-2e70-4e84-9bfa-a1f2bb56a753", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T16:03:51.078Z", + "completed":"2016-03-27T16:03:51.078Z", + "new_balance":"7218.32", + "value":"-27.50" + } + }, + { + "id":"4265bfd0-91b8-4012-af14-90d348df3211", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T14:39:41.847Z", + "completed":"2016-03-28T14:39:41.847Z", + "new_balance":"7215.58", + "value":"-2.74" + } + }, + { + "id":"ea724813-3d6a-41f2-a9e3-ffa9f2666b39", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T04:59:24.610Z", + "completed":"2016-04-01T04:59:24.610Z", + "new_balance":"7157.35", + "value":"-58.23" + } + }, + { + "id":"bb357275-82dc-4c4a-b877-93f3f3bcd47b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:20:52.143Z", + "completed":"2016-04-01T09:20:52.143Z", + "new_balance":"7152.20", + "value":"-5.15" + } + }, + { + "id":"af6285ae-b267-4d4e-a8f5-133d94718940", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T13:14:18.158Z", + "completed":"2016-04-01T13:14:18.158Z", + "new_balance":"7136.95", + "value":"-15.25" + } + }, + { + "id":"019bb58e-d46a-4917-a77e-74f98b702c29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T18:26:49.507Z", + "completed":"2016-04-01T18:26:49.507Z", + "new_balance":"7134.63", + "value":"-2.32" + } + }, + { + "id":"7d1f2743-2a97-4caa-be65-3d1c3ae9d5be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T10:11:13.900Z", + "completed":"2016-04-02T10:11:13.900Z", + "new_balance":"7127.53", + "value":"-7.10" + } + }, + { + "id":"de16e3a8-aeaf-4100-9f8c-7e90ad8ade35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T16:57:44.405Z", + "completed":"2016-04-02T16:57:44.405Z", + "new_balance":"7117.84", + "value":"-9.69" + } + }, + { + "id":"a191398c-7e4f-4600-9ec6-1d484ea698de", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:17:55.226Z", + "completed":"2016-04-03T02:17:55.226Z", + "new_balance":"7114.06", + "value":"-3.78" + } + }, + { + "id":"a708cae6-edc6-473c-8cfb-8f1de5888f27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T05:12:36.278Z", + "completed":"2016-04-03T05:12:36.278Z", + "new_balance":"7122.00", + "value":"7.94" + } + }, + { + "id":"4cf033f3-a165-4b9a-b173-b1e0a52fae26", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T06:21:29.676Z", + "completed":"2016-04-03T06:21:29.676Z", + "new_balance":"7118.22", + "value":"-3.78" + } + }, + { + "id":"f05282b6-6aec-4876-9068-aae770dd9573", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T10:13:45.708Z", + "completed":"2016-04-03T10:13:45.708Z", + "new_balance":"7130.56", + "value":"12.34" + } + }, + { + "id":"93662aa7-4ce8-428e-b714-ec3180212515", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T11:13:33.479Z", + "completed":"2016-04-03T11:13:33.479Z", + "new_balance":"7127.65", + "value":"-2.91" + } + }, + { + "id":"5ddd0261-bae2-4e98-a5ed-52575665720e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T07:55:14.431Z", + "completed":"2016-04-04T07:55:14.431Z", + "new_balance":"7120.46", + "value":"-7.19" + } + }, + { + "id":"2e372ef5-40da-41c4-a85d-6eb08e4ee577", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T18:04:06.521Z", + "completed":"2016-04-05T18:04:06.521Z", + "new_balance":"7117.78", + "value":"-2.68" + } + }, + { + "id":"edfd0a53-1148-4542-b745-9f0489a05b82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T22:56:49.220Z", + "completed":"2016-04-05T22:56:49.220Z", + "new_balance":"7117.32", + "value":"-0.46" + } + }, + { + "id":"9368dda7-03fe-4486-8d23-d795132ca22b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T03:06:13.325Z", + "completed":"2016-04-07T03:06:13.325Z", + "new_balance":"7114.10", + "value":"-3.22" + } + }, + { + "id":"910a5c4d-7507-490c-b9e1-ae16ef1d11a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T12:44:32.914Z", + "completed":"2016-04-07T12:44:32.914Z", + "new_balance":"7112.57", + "value":"-1.53" + } + }, + { + "id":"285d5a42-d4de-4bbe-8e37-d50ac633e50e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T22:44:59.907Z", + "completed":"2016-04-08T22:44:59.907Z", + "new_balance":"7111.67", + "value":"-0.90" + } + }, + { + "id":"cecbf91f-d0d7-477f-a322-0f328ecd3299", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T02:20:04.427Z", + "completed":"2016-04-09T02:20:04.427Z", + "new_balance":"7111.23", + "value":"-0.44" + } + }, + { + "id":"7d25f379-2340-42e0-b976-6758f64a4804", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T15:08:53.677Z", + "completed":"2016-04-09T15:08:53.677Z", + "new_balance":"7109.12", + "value":"-2.11" + } + }, + { + "id":"fcf71c36-dfe3-44e1-b8f7-c0fa87ae8b7d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T19:02:08.912Z", + "completed":"2016-04-09T19:02:08.912Z", + "new_balance":"7081.62", + "value":"-27.50" + } + }, + { + "id":"67b47132-df91-4b8e-b0d2-f1bd9916ffc9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T05:34:55.890Z", + "completed":"2016-04-10T05:34:55.890Z", + "new_balance":"7077.14", + "value":"-4.48" + } + }, + { + "id":"501a1c79-bac4-4a9c-a981-5183c45c9c4f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T09:03:17.375Z", + "completed":"2016-04-17T09:03:17.375Z", + "new_balance":"7076.03", + "value":"-1.11" + } + }, + { + "id":"fa8c1600-31a7-44c0-80a3-061098817432", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T10:30:17.017Z", + "completed":"2016-04-18T10:30:17.017Z", + "new_balance":"7073.22", + "value":"-2.81" + } + }, + { + "id":"2a2e063b-3e1c-4a0c-ac3f-133d058d213f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T00:07:54.523Z", + "completed":"2016-04-25T00:07:54.523Z", + "new_balance":"7067.82", + "value":"-5.40" + } + }, + { + "id":"740894ae-fce1-4c6f-8ff9-5f8ada4bdeef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T03:01:58.247Z", + "completed":"2016-04-26T03:01:58.247Z", + "new_balance":"7067.38", + "value":"-0.44" + } + }, + { + "id":"edb5ea2c-1920-4090-a498-693d1f0dc42a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T22:14:51.787Z", + "completed":"2016-04-26T22:14:51.787Z", + "new_balance":"7061.56", + "value":"-5.82" + } + }, + { + "id":"46051f04-3610-40d5-90ea-462d1cac118e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T01:28:31.401Z", + "completed":"2016-05-02T01:28:31.401Z", + "new_balance":"7054.46", + "value":"-7.10" + } + }, + { + "id":"320dab75-f720-4973-8b6f-be936dffa960", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T07:55:55.629Z", + "completed":"2016-05-02T07:55:55.629Z", + "new_balance":"7053.31", + "value":"-1.15" + } + }, + { + "id":"c4276231-9bd1-490c-8091-61a8e914da50", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T08:16:32.281Z", + "completed":"2016-05-02T08:16:32.281Z", + "new_balance":"7236.01", + "value":"182.70" + } + }, + { + "id":"c3c2d21f-ac89-4ce0-8d66-dbea56b2f4f4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:37:49.731Z", + "completed":"2016-05-02T11:37:49.731Z", + "new_balance":"7230.86", + "value":"-5.15" + } + }, + { + "id":"7a3a464b-9414-4efa-bd19-90dbc13cf867", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T16:46:34.858Z", + "completed":"2016-05-02T16:46:34.858Z", + "new_balance":"7172.63", + "value":"-58.23" + } + }, + { + "id":"8e2ea0de-6208-4c46-ae19-9a6121222870", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T16:48:55.859Z", + "completed":"2016-05-02T16:48:55.859Z", + "new_balance":"7169.19", + "value":"-3.44" + } + }, + { + "id":"db61442b-28f4-4ab4-80f5-689ae3b49582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T18:37:57.224Z", + "completed":"2016-05-02T18:37:57.224Z", + "new_balance":"7153.94", + "value":"-15.25" + } + }, + { + "id":"441b5678-1195-4360-ab64-c9e9ed3e4a27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T21:38:14.719Z", + "completed":"2016-05-02T21:38:14.719Z", + "new_balance":"7151.62", + "value":"-2.32" + } + }, + { + "id":"74bd25e1-0f7c-47b5-be54-33dda6bbbf93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T00:33:37.735Z", + "completed":"2016-05-03T00:33:37.735Z", + "new_balance":"7149.52", + "value":"-2.10" + } + }, + { + "id":"49195a70-870c-4654-a9e2-bcd6764e32c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T22:47:16.216Z", + "completed":"2016-05-03T22:47:16.216Z", + "new_balance":"7147.02", + "value":"-2.50" + } + }, + { + "id":"2e26f3d0-c0e2-4741-b06a-20cd32cb78c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T03:36:45.911Z", + "completed":"2016-05-04T03:36:45.911Z", + "new_balance":"7143.69", + "value":"-3.33" + } + }, + { + "id":"d37c4c1d-b210-4449-9f1d-2c9f10f94915", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T13:44:10.721Z", + "completed":"2016-05-04T13:44:10.721Z", + "new_balance":"7141.29", + "value":"-2.40" + } + }, + { + "id":"b2269083-a1da-4dce-86a0-1abd9553ddb3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T14:03:42.965Z", + "completed":"2016-05-05T14:03:42.965Z", + "new_balance":"7134.10", + "value":"-7.19" + } + }, + { + "id":"464dec61-99c8-414a-b99b-be7c2193d30c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T09:00:06.782Z", + "completed":"2016-05-07T09:00:06.782Z", + "new_balance":"7133.62", + "value":"-0.48" + } + }, + { + "id":"0aad2b62-b5ed-4066-ab50-d1237326a68a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T22:34:17.071Z", + "completed":"2016-05-07T22:34:17.071Z", + "new_balance":"7130.59", + "value":"-3.03" + } + }, + { + "id":"37a37e86-8b17-4768-b18c-f542ff549f08", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T17:33:23.539Z", + "completed":"2016-05-12T17:33:23.539Z", + "new_balance":"7127.45", + "value":"-3.14" + } + }, + { + "id":"fb18e440-8867-40ba-b7c9-415679ebbef1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T23:31:22.019Z", + "completed":"2016-05-12T23:31:22.019Z", + "new_balance":"7125.00", + "value":"-2.45" + } + }, + { + "id":"600a8c68-63a1-4f2b-b825-34fdc05c153d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T01:29:29.173Z", + "completed":"2016-05-14T01:29:29.173Z", + "new_balance":"7121.52", + "value":"-3.48" + } + }, + { + "id":"e24321ed-87d2-4f34-a7a3-4d89d0439991", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T11:11:11.310Z", + "completed":"2016-05-16T11:11:11.310Z", + "new_balance":"7121.05", + "value":"-0.47" + } + }, + { + "id":"0b801f53-d421-494d-9a2f-9ded9486ef7c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T13:24:42.993Z", + "completed":"2016-05-18T13:24:42.993Z", + "new_balance":"7120.28", + "value":"-0.77" + } + }, + { + "id":"ff0d6748-ce22-4845-9ab0-c7960b661d63", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T19:20:23.641Z", + "completed":"2016-05-20T19:20:23.641Z", + "new_balance":"7124.36", + "value":"4.08" + } + }, + { + "id":"a5a07764-51e3-42cd-8e0f-164188954a33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T16:23:03.723Z", + "completed":"2016-05-21T16:23:03.723Z", + "new_balance":"7117.93", + "value":"-6.43" + } + }, + { + "id":"a587576c-2726-44b5-819a-8cd04d2a82a7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T19:21:32.174Z", + "completed":"2016-05-21T19:21:32.174Z", + "new_balance":"7113.81", + "value":"-4.12" + } + }, + { + "id":"50e8404a-bc20-484d-9e49-8c5c4cde7aaa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:34:01.422Z", + "completed":"2016-05-27T01:34:01.422Z", + "new_balance":"7110.87", + "value":"-2.94" + } + }, + { + "id":"4f9be786-3df0-4b87-bf34-caea93bebf17", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:34:51.111Z", + "completed":"2016-05-27T20:34:51.111Z", + "new_balance":"7108.32", + "value":"-2.55" + } + }, + { + "id":"69fdd4a5-4750-4ab6-90df-3a648a73f0f3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:34:17.338Z", + "completed":"2016-06-01T00:34:17.338Z", + "new_balance":"7093.07", + "value":"-15.25" + } + }, + { + "id":"e59f3fb5-b9b8-4bd7-9669-6263244d11b8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T03:10:48.841Z", + "completed":"2016-06-01T03:10:48.841Z", + "new_balance":"7089.63", + "value":"-3.44" + } + }, + { + "id":"b46e03ba-5375-498a-9074-446055dd4d1c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T09:51:11.949Z", + "completed":"2016-06-01T09:51:11.949Z", + "new_balance":"7084.48", + "value":"-5.15" + } + }, + { + "id":"b4701b13-1a95-4935-88b2-b5be2d749c07", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T11:26:07.317Z", + "completed":"2016-06-01T11:26:07.317Z", + "new_balance":"7082.16", + "value":"-2.32" + } + }, + { + "id":"0f160db0-bacb-4832-8121-ac0e4c0dd3ab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T15:44:57.677Z", + "completed":"2016-06-01T15:44:57.677Z", + "new_balance":"7023.93", + "value":"-58.23" + } + }, + { + "id":"8d9ccb0c-8e4c-4ae3-9d52-92e49bf9f8d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T23:40:36.370Z", + "completed":"2016-06-01T23:40:36.370Z", + "new_balance":"7206.63", + "value":"182.70" + } + }, + { + "id":"fe8ca9ee-e0bb-4366-82cc-db94d7332572", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T06:57:11.956Z", + "completed":"2016-06-04T06:57:11.956Z", + "new_balance":"7194.67", + "value":"-11.96" + } + }, + { + "id":"8ea86f0b-01f0-4c65-b195-900c1bc6ef94", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T16:21:44.484Z", + "completed":"2016-06-04T16:21:44.484Z", + "new_balance":"7187.57", + "value":"-7.10" + } + }, + { + "id":"8cde2f38-300c-4e46-b273-6a902d2d908b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:50:35.635Z", + "completed":"2016-06-11T11:50:35.635Z", + "new_balance":"7184.27", + "value":"-3.30" + } + }, + { + "id":"cd8bd73b-c1ce-4c33-bd08-fcf46c4595c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T05:02:41.706Z", + "completed":"2016-06-12T05:02:41.706Z", + "new_balance":"7183.02", + "value":"-1.25" + } + }, + { + "id":"efb3ae35-8be3-4ec2-8d3e-5d6c2209aa84", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T12:45:49.026Z", + "completed":"2016-06-13T12:45:49.026Z", + "new_balance":"7175.72", + "value":"-7.30" + } + }, + { + "id":"e2d0dcc9-85e0-421a-bb0c-985e4bb55b9e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T20:48:07.005Z", + "completed":"2016-06-13T20:48:07.005Z", + "new_balance":"7174.96", + "value":"-0.76" + } + }, + { + "id":"017c132c-6eb4-4845-a112-ad1a42028eaf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:54:05.335Z", + "completed":"2016-06-16T17:54:05.335Z", + "new_balance":"7170.92", + "value":"-4.04" + } + }, + { + "id":"e71aede2-f92e-47e7-ab61-50f633030a7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T07:52:20.307Z", + "completed":"2016-06-17T07:52:20.307Z", + "new_balance":"7163.62", + "value":"-7.30" + } + }, + { + "id":"edf55077-c33c-4046-9aa1-97af6a592b23", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T12:43:48.921Z", + "completed":"2016-06-17T12:43:48.921Z", + "new_balance":"7163.22", + "value":"-0.40" + } + }, + { + "id":"697f0ab5-a8d0-4956-a7b8-04f97a2ac947", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T06:54:34.654Z", + "completed":"2016-06-18T06:54:34.654Z", + "new_balance":"7157.95", + "value":"-5.27" + } + }, + { + "id":"fd3d92c0-9be7-42ab-ab24-a815af5709ce", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T07:17:10.259Z", + "completed":"2016-06-19T07:17:10.259Z", + "new_balance":"7152.68", + "value":"-5.27" + } + }, + { + "id":"52240999-097f-4b12-b35e-09d587779fe4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:54:07.651Z", + "completed":"2016-06-19T17:54:07.651Z", + "new_balance":"7148.41", + "value":"-4.27" + } + }, + { + "id":"d516c91a-c849-40e4-9392-73a7c247dcfa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T00:10:04.015Z", + "completed":"2016-06-21T00:10:04.015Z", + "new_balance":"7147.87", + "value":"-0.54" + } + }, + { + "id":"d3fb4b7b-68bf-44d4-8ae4-dc23b0ed19d4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T17:17:44.548Z", + "completed":"2016-06-21T17:17:44.548Z", + "new_balance":"7141.55", + "value":"-6.32" + } + }, + { + "id":"a1a342d4-d890-4442-b945-f4f23fc18e44", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T03:27:33.452Z", + "completed":"2016-06-23T03:27:33.452Z", + "new_balance":"7140.78", + "value":"-0.77" + } + }, + { + "id":"d13252a0-41c2-488a-be1e-4fd55a89b1c3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T18:25:48.341Z", + "completed":"2016-06-23T18:25:48.341Z", + "new_balance":"7138.53", + "value":"-2.25" + } + }, + { + "id":"0f097493-14ee-4af2-bd23-7df5de3ac667", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T00:49:19.369Z", + "completed":"2016-06-24T00:49:19.369Z", + "new_balance":"7137.48", + "value":"-1.05" + } + }, + { + "id":"84467ddc-b042-4729-8b1b-206c9fbd0c47", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T07:35:38.206Z", + "completed":"2016-06-24T07:35:38.206Z", + "new_balance":"7133.22", + "value":"-4.26" + } + }, + { + "id":"c63d8599-158d-46ab-9fdc-8abad6f003d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T04:15:49.873Z", + "completed":"2016-06-28T04:15:49.873Z", + "new_balance":"7132.70", + "value":"-0.52" + } + }, + { + "id":"5601f8b1-0ed2-464e-a4c9-e7dccda1beb6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T11:15:50.964Z", + "completed":"2016-06-28T11:15:50.964Z", + "new_balance":"7122.91", + "value":"-9.79" + } + }, + { + "id":"3b686cdd-d2b5-475b-8a1b-a608f4fe6709", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T18:47:11.321Z", + "completed":"2016-06-28T18:47:11.321Z", + "new_balance":"7122.39", + "value":"-0.52" + } + }, + { + "id":"9b5c65fe-1ee5-46fc-b566-63cd15ef8b56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T19:38:56.237Z", + "completed":"2016-06-28T19:38:56.237Z", + "new_balance":"7117.57", + "value":"-4.82" + } + }, + { + "id":"b21e4bf7-cdfb-418b-9825-993c91af965a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T12:32:30.583Z", + "completed":"2016-06-29T12:32:30.583Z", + "new_balance":"7113.42", + "value":"-4.15" + } + }, + { + "id":"9d9b08dc-d6df-4d59-94d1-44b8331ad672", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T13:22:26.930Z", + "completed":"2016-06-29T13:22:26.930Z", + "new_balance":"7106.46", + "value":"-6.96" + } + }, + { + "id":"ca7cd018-6f6f-4b0a-a069-3e94f00a1d12", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T14:14:05.535Z", + "completed":"2016-06-29T14:14:05.535Z", + "new_balance":"7105.70", + "value":"-0.76" + } + }, + { + "id":"c458252a-a3fc-4a4e-a613-b9106ae043d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T17:33:47.045Z", + "completed":"2016-06-29T17:33:47.045Z", + "new_balance":"7099.38", + "value":"-6.32" + } + }, + { + "id":"5311ba38-af6a-4933-a533-0e7b90b1d4be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T20:18:14.324Z", + "completed":"2016-06-29T20:18:14.324Z", + "new_balance":"7094.22", + "value":"-5.16" + } + }, + { + "id":"e1003f45-10ce-4db6-9bac-ab57364dd506", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:23:36.875Z", + "completed":"2016-06-29T21:23:36.875Z", + "new_balance":"7089.93", + "value":"-4.29" + } + }, + { + "id":"3c63377c-b7f4-473c-a019-0f6d2c71b5ef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T00:57:08.419Z", + "completed":"2016-06-30T00:57:08.419Z", + "new_balance":"7089.02", + "value":"-0.91" + } + }, + { + "id":"8a5f30c1-93cd-4906-8e62-435a50353458", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T13:51:08.131Z", + "completed":"2016-06-30T13:51:08.131Z", + "new_balance":"7085.47", + "value":"-3.55" + } + }, + { + "id":"802c10a3-7f18-49f2-ac16-478afbd6e6a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T22:58:41.263Z", + "completed":"2016-06-30T22:58:41.263Z", + "new_balance":"7080.86", + "value":"-4.61" + } + }, + { + "id":"6843b963-d020-4750-94d6-05a4bceaae15", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T23:55:35.006Z", + "completed":"2016-06-30T23:55:35.006Z", + "new_balance":"7080.27", + "value":"-0.59" + } + }, + { + "id":"b143ad69-c403-43e0-8704-76a10d857363", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T01:39:55.185Z", + "completed":"2016-07-01T01:39:55.185Z", + "new_balance":"7075.12", + "value":"-5.15" + } + }, + { + "id":"02c4fcb8-7e5e-4551-8596-c5f6c3d82902", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T02:54:08.596Z", + "completed":"2016-07-01T02:54:08.596Z", + "new_balance":"7072.06", + "value":"-3.06" + } + }, + { + "id":"d3beac39-5540-46fb-9c27-1748a604deb2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T04:39:46.467Z", + "completed":"2016-07-01T04:39:46.467Z", + "new_balance":"7013.83", + "value":"-58.23" + } + }, + { + "id":"a3c6cc61-3628-4fd6-8950-b02334e268fd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T05:06:24.291Z", + "completed":"2016-07-01T05:06:24.291Z", + "new_balance":"7011.51", + "value":"-2.32" + } + }, + { + "id":"aa1cb9c3-e5ee-4614-84d9-0a43af449e59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T05:40:43.574Z", + "completed":"2016-07-01T05:40:43.574Z", + "new_balance":"6984.01", + "value":"-27.50" + } + }, + { + "id":"293182da-abb4-4c0c-8595-aeed53d7e582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T10:35:24.963Z", + "completed":"2016-07-01T10:35:24.963Z", + "new_balance":"6980.57", + "value":"-3.44" + } + }, + { + "id":"9f5ce04a-f4cc-44c3-bcc9-fd4763dabf56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:49:11.716Z", + "completed":"2016-07-01T11:49:11.716Z", + "new_balance":"6977.13", + "value":"-3.44" + } + }, + { + "id":"0d9afd85-62b9-4e43-aae7-f800d7dbe59c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T16:18:34.560Z", + "completed":"2016-07-01T16:18:34.560Z", + "new_balance":"6975.82", + "value":"-1.31" + } + }, + { + "id":"969c9e3c-c865-465a-9a36-b767fa044f90", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T20:38:50.460Z", + "completed":"2016-07-01T20:38:50.460Z", + "new_balance":"6960.57", + "value":"-15.25" + } + }, + { + "id":"84be6458-2314-48b0-9fa0-6ef3a05d8510", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T23:59:09.608Z", + "completed":"2016-07-01T23:59:09.608Z", + "new_balance":"6957.83", + "value":"-2.74" + } + }, + { + "id":"3960880f-85fb-42b3-aeb9-5d4781bff3cb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T04:30:28.142Z", + "completed":"2016-07-02T04:30:28.142Z", + "new_balance":"6950.73", + "value":"-7.10" + } + }, + { + "id":"dd2492ad-9dfd-4fa3-9499-6fcfc4687bcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T15:12:27.574Z", + "completed":"2016-07-03T15:12:27.574Z", + "new_balance":"6940.26", + "value":"-10.47" + } + }, + { + "id":"ce430ac3-69bb-4bec-9062-e7c361d94108", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T17:40:49.832Z", + "completed":"2016-07-04T17:40:49.832Z", + "new_balance":"6938.48", + "value":"-1.78" + } + }, + { + "id":"bfb57be9-8a2b-423e-a757-f73789880db0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:28:23.075Z", + "completed":"2016-07-05T13:28:23.075Z", + "new_balance":"6928.84", + "value":"-9.64" + } + }, + { + "id":"fe6c3538-e01d-4d2d-8933-98bfaef04942", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T21:35:25.628Z", + "completed":"2016-07-05T21:35:25.628Z", + "new_balance":"6921.65", + "value":"-7.19" + } + }, + { + "id":"34cd10fa-fc26-4405-a58c-1eed2b8d2b5b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T13:23:18.268Z", + "completed":"2016-07-06T13:23:18.268Z", + "new_balance":"6921.19", + "value":"-0.46" + } + }, + { + "id":"7df3e5ff-5fe8-4e9f-b95b-d1873b59c3f4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T07:59:02.765Z", + "completed":"2016-07-11T07:59:02.765Z", + "new_balance":"6918.51", + "value":"-2.68" + } + }, + { + "id":"7b734fec-c3e0-470e-8bba-5012f62ae0d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T18:29:10.164Z", + "completed":"2016-07-12T18:29:10.164Z", + "new_balance":"6915.29", + "value":"-3.22" + } + }, + { + "id":"5e554d73-8138-45fd-b453-6c504cc27daa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T11:57:24.419Z", + "completed":"2016-07-14T11:57:24.419Z", + "new_balance":"6913.76", + "value":"-1.53" + } + }, + { + "id":"01ee614c-5ffb-4868-ba84-b8609df8d1d0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T08:13:25.543Z", + "completed":"2016-07-16T08:13:25.543Z", + "new_balance":"6912.86", + "value":"-0.90" + } + }, + { + "id":"0ecc624f-8c97-4c36-82f7-7ddefa099887", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T22:12:37.959Z", + "completed":"2016-07-18T22:12:37.959Z", + "new_balance":"6910.75", + "value":"-2.11" + } + }, + { + "id":"19829f2e-1d4d-4c47-bb5e-3d918daeab2a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T13:32:54.353Z", + "completed":"2016-07-20T13:32:54.353Z", + "new_balance":"6883.25", + "value":"-27.50" + } + }, + { + "id":"6436cfcb-d404-48ea-873f-364b075e4329", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T21:53:19.390Z", + "completed":"2016-07-20T21:53:19.390Z", + "new_balance":"6882.81", + "value":"-0.44" + } + }, + { + "id":"b4aed0a5-f498-4141-bc8c-e68e5c7ee5b4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T01:58:29.190Z", + "completed":"2016-07-24T01:58:29.190Z", + "new_balance":"6878.33", + "value":"-4.48" + } + }, + { + "id":"24685a05-0c38-49dd-b97f-8692f44802d3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T22:21:14.626Z", + "completed":"2016-07-24T22:21:14.626Z", + "new_balance":"6877.22", + "value":"-1.11" + } + }, + { + "id":"bfeef4fe-239f-479c-a244-8b06af4192d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T09:39:15.551Z", + "completed":"2016-07-25T09:39:15.551Z", + "new_balance":"6871.82", + "value":"-5.40" + } + }, + { + "id":"aa15288f-eea8-448a-a3fd-5215f2972289", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T10:02:23.504Z", + "completed":"2016-07-25T10:02:23.504Z", + "new_balance":"6869.01", + "value":"-2.81" + } + }, + { + "id":"2dfca0cf-9e83-4953-bdee-a8111d187bcf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T06:41:48.526Z", + "completed":"2016-07-26T06:41:48.526Z", + "new_balance":"6863.19", + "value":"-5.82" + } + }, + { + "id":"e3bc3384-e4f9-4449-9d17-34297961c2bd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T16:48:42.058Z", + "completed":"2016-07-27T16:48:42.058Z", + "new_balance":"6862.75", + "value":"-0.44" + } + }, + { + "id":"3d030739-bc12-48f3-8171-7647986fa084", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T00:49:08.147Z", + "completed":"2016-08-01T00:49:08.147Z", + "new_balance":"6847.50", + "value":"-15.25" + } + }, + { + "id":"2ea1abb1-1036-4e10-83fa-11acb0ba3726", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T13:39:52.372Z", + "completed":"2016-08-01T13:39:52.372Z", + "new_balance":"7030.20", + "value":"182.70" + } + }, + { + "id":"1777d940-3b0b-473d-9e11-bbbda20482eb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T14:25:52.418Z", + "completed":"2016-08-01T14:25:52.418Z", + "new_balance":"6971.97", + "value":"-58.23" + } + }, + { + "id":"4dfab4c1-4642-4fdb-a00b-f78663ea9f19", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T16:14:11.975Z", + "completed":"2016-08-01T16:14:11.975Z", + "new_balance":"6968.53", + "value":"-3.44" + } + }, + { + "id":"c136aa8c-78a8-46b5-833f-2a7a393155dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T17:01:44.965Z", + "completed":"2016-08-01T17:01:44.965Z", + "new_balance":"6966.21", + "value":"-2.32" + } + }, + { + "id":"24a96352-102f-47c0-91ee-279f097145e6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T17:03:19.988Z", + "completed":"2016-08-01T17:03:19.988Z", + "new_balance":"6961.06", + "value":"-5.15" + } + }, + { + "id":"2d802cdf-ee53-4df9-8073-1ed99a46bf55", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T00:14:18.559Z", + "completed":"2016-08-02T00:14:18.559Z", + "new_balance":"6953.96", + "value":"-7.10" + } + }, + { + "id":"ad4473e1-4609-42be-91bc-1a1a9cd6cef6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T21:24:57.184Z", + "completed":"2016-08-03T21:24:57.184Z", + "new_balance":"6953.50", + "value":"-0.46" + } + }, + { + "id":"6548a07a-6b1f-46aa-bac2-b4c686f268dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T05:35:00.443Z", + "completed":"2016-08-04T05:35:00.443Z", + "new_balance":"6950.58", + "value":"-2.92" + } + }, + { + "id":"eee3b4a1-8ae0-42ef-88fc-4383d02ad16a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T22:10:20.910Z", + "completed":"2016-08-07T22:10:20.910Z", + "new_balance":"6948.08", + "value":"-2.50" + } + }, + { + "id":"fca14485-1e7f-4602-93ed-568307e46fb8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T02:26:05.115Z", + "completed":"2016-08-09T02:26:05.115Z", + "new_balance":"6944.75", + "value":"-3.33" + } + }, + { + "id":"0710f27e-cad5-4b4f-b72a-1a71d225486a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T20:05:07.604Z", + "completed":"2016-08-09T20:05:07.604Z", + "new_balance":"6942.35", + "value":"-2.40" + } + }, + { + "id":"acc74223-4699-4650-afa0-14c56e515fd2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T10:48:09.423Z", + "completed":"2016-08-10T10:48:09.423Z", + "new_balance":"6935.16", + "value":"-7.19" + } + }, + { + "id":"20e05d73-14e0-4199-9079-388adc8f8cb1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T18:35:36.746Z", + "completed":"2016-08-14T18:35:36.746Z", + "new_balance":"6934.68", + "value":"-0.48" + } + }, + { + "id":"39ac7fdf-7858-4533-93ad-5ac9448dbbb1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T12:10:55.538Z", + "completed":"2016-08-15T12:10:55.538Z", + "new_balance":"6931.46", + "value":"-3.22" + } + }, + { + "id":"60e0e4b0-4c0a-454e-8938-244b9d1b4b03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T13:52:45.001Z", + "completed":"2016-08-15T13:52:45.001Z", + "new_balance":"6928.43", + "value":"-3.03" + } + }, + { + "id":"6a91a29e-8eb8-46c9-9065-6e0374a34238", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T17:42:46.391Z", + "completed":"2016-08-16T17:42:46.391Z", + "new_balance":"6925.29", + "value":"-3.14" + } + }, + { + "id":"2873d7ec-c9c5-4851-9816-790b8873344a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T23:00:22.524Z", + "completed":"2016-08-17T23:00:22.524Z", + "new_balance":"6921.81", + "value":"-3.48" + } + }, + { + "id":"ed09dc16-77f2-4133-abfc-1e162440a7d5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T21:06:29.034Z", + "completed":"2016-08-20T21:06:29.034Z", + "new_balance":"6921.04", + "value":"-0.77" + } + }, + { + "id":"b7b4ace3-0d8e-4866-8cfc-e20b3b7e7558", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T21:23:18.746Z", + "completed":"2016-08-20T21:23:18.746Z", + "new_balance":"6920.57", + "value":"-0.47" + } + }, + { + "id":"35d4e55d-b370-42de-994d-85961770f92f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T18:32:20.283Z", + "completed":"2016-08-22T18:32:20.283Z", + "new_balance":"6924.65", + "value":"4.08" + } + }, + { + "id":"3631ac83-41c2-4f37-bcfa-e23ac1b572be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T10:16:10.646Z", + "completed":"2016-08-23T10:16:10.646Z", + "new_balance":"6920.53", + "value":"-4.12" + } + }, + { + "id":"ff8e0b7f-8ef2-4aef-9ccb-3d0d4ceb3fce", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T13:57:40.929Z", + "completed":"2016-08-23T13:57:40.929Z", + "new_balance":"6914.10", + "value":"-6.43" + } + }, + { + "id":"2b707600-69f9-46eb-9afa-b655f57fa998", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T00:41:33.198Z", + "completed":"2016-08-28T00:41:33.198Z", + "new_balance":"6911.16", + "value":"-2.94" + } + }, + { + "id":"79396492-2ae0-4b26-9fdd-667f6d55290d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T10:28:01.495Z", + "completed":"2016-08-28T10:28:01.495Z", + "new_balance":"6908.61", + "value":"-2.55" + } + }, + { + "id":"449178d9-5e92-47a6-a7be-f79422893171", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T05:32:20.380Z", + "completed":"2016-09-01T05:32:20.380Z", + "new_balance":"6850.38", + "value":"-58.23" + } + }, + { + "id":"0b5e9012-3e85-4462-8d1d-a9e9a9796d2f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:34:12.941Z", + "completed":"2016-09-01T06:34:12.941Z", + "new_balance":"6835.13", + "value":"-15.25" + } + }, + { + "id":"694b559a-e4ce-4f74-a9a9-c48b3f42cd61", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T09:56:52.399Z", + "completed":"2016-09-01T09:56:52.399Z", + "new_balance":"6829.98", + "value":"-5.15" + } + }, + { + "id":"1d5e4cda-ceae-4cc6-8287-d90262071157", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T10:12:26.887Z", + "completed":"2016-09-01T10:12:26.887Z", + "new_balance":"6826.54", + "value":"-3.44" + } + }, + { + "id":"4e55638e-ff7a-41d9-ba31-ed0b01458a51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T14:00:42.915Z", + "completed":"2016-09-01T14:00:42.915Z", + "new_balance":"7009.24", + "value":"182.70" + } + }, + { + "id":"1c19d5fb-b172-407f-b3dc-7bde9a52ab32", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T22:47:30.715Z", + "completed":"2016-09-01T22:47:30.715Z", + "new_balance":"7006.92", + "value":"-2.32" + } + }, + { + "id":"eed16d11-1481-4409-8a95-39afe67e4e24", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T01:41:40.952Z", + "completed":"2016-09-02T01:41:40.952Z", + "new_balance":"6999.82", + "value":"-7.10" + } + }, + { + "id":"80b8f842-018c-4d0d-814f-199cd6c5fe4e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T04:04:31.223Z", + "completed":"2016-09-04T04:04:31.223Z", + "new_balance":"6999.06", + "value":"-0.76" + } + }, + { + "id":"856929ad-ac1b-4b25-8f6d-5639f2165501", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T07:46:33.375Z", + "completed":"2016-09-04T07:46:33.375Z", + "new_balance":"6995.76", + "value":"-3.30" + } + }, + { + "id":"49d5d714-5745-4ed9-becf-bfce70bce868", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T14:52:31.617Z", + "completed":"2016-09-04T14:52:31.617Z", + "new_balance":"6988.46", + "value":"-7.30" + } + }, + { + "id":"8b9810a3-0037-409c-9a0b-d027ababb6c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T23:47:28.707Z", + "completed":"2016-09-04T23:47:28.707Z", + "new_balance":"6987.21", + "value":"-1.25" + } + }, + { + "id":"57b93273-c5a0-42df-9d57-f6af897c47ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T09:55:29.141Z", + "completed":"2016-09-05T09:55:29.141Z", + "new_balance":"6986.81", + "value":"-0.40" + } + }, + { + "id":"3696e676-6906-45b5-bae8-1a638584bc59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T23:56:43.330Z", + "completed":"2016-09-05T23:56:43.330Z", + "new_balance":"6982.77", + "value":"-4.04" + } + }, + { + "id":"9689e46c-e278-4347-a75b-01bcc4c702cf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T02:06:24.031Z", + "completed":"2016-09-06T02:06:24.031Z", + "new_balance":"6977.50", + "value":"-5.27" + } + }, + { + "id":"489ba7ac-250f-4e78-84a2-c4011dd0e4f2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T19:48:06.820Z", + "completed":"2016-09-06T19:48:06.820Z", + "new_balance":"6970.20", + "value":"-7.30" + } + }, + { + "id":"7d38beb1-6fa1-49a3-a1e0-dd38cad44454", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T12:34:35.235Z", + "completed":"2016-09-08T12:34:35.235Z", + "new_balance":"6965.93", + "value":"-4.27" + } + }, + { + "id":"bc349b0c-4a05-4c5f-9f13-e01e886056ad", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T17:32:19.919Z", + "completed":"2016-09-08T17:32:19.919Z", + "new_balance":"6960.66", + "value":"-5.27" + } + }, + { + "id":"f7a5acfb-395d-4bb6-b255-d8d497a8b48d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T04:45:01.124Z", + "completed":"2016-09-10T04:45:01.124Z", + "new_balance":"6960.12", + "value":"-0.54" + } + }, + { + "id":"3bb8d920-ec61-4883-82a1-fdb1d6a203e5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T17:34:46.577Z", + "completed":"2016-09-10T17:34:46.577Z", + "new_balance":"6953.80", + "value":"-6.32" + } + }, + { + "id":"d36ed7a4-acb3-4f13-a2e8-6c7365674f64", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T13:48:22.379Z", + "completed":"2016-09-11T13:48:22.379Z", + "new_balance":"6953.03", + "value":"-0.77" + } + }, + { + "id":"d7df9b91-53dd-443a-8215-b1c4673c0250", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T10:13:50.518Z", + "completed":"2016-09-12T10:13:50.518Z", + "new_balance":"6951.98", + "value":"-1.05" + } + }, + { + "id":"1fb51b1a-4af0-47cc-a9e6-f43502bc7a9b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T22:36:38.406Z", + "completed":"2016-09-12T22:36:38.406Z", + "new_balance":"6949.73", + "value":"-2.25" + } + }, + { + "id":"64da9b89-6d4e-4b5e-8f29-0554ba7ca516", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:11:00.991Z", + "completed":"2016-09-13T16:11:00.991Z", + "new_balance":"6945.47", + "value":"-4.26" + } + }, + { + "id":"a454d4ce-e748-4908-a537-6007aab104c5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T13:23:38.471Z", + "completed":"2016-09-16T13:23:38.471Z", + "new_balance":"6944.95", + "value":"-0.52" + } + }, + { + "id":"200ae624-4984-46ce-9542-af82ba61d1f5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T01:52:41.832Z", + "completed":"2016-09-17T01:52:41.832Z", + "new_balance":"6935.16", + "value":"-9.79" + } + }, + { + "id":"94d96a91-e53d-4ded-9568-823ef70ef15d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T13:12:11.094Z", + "completed":"2016-09-17T13:12:11.094Z", + "new_balance":"6930.34", + "value":"-4.82" + } + }, + { + "id":"b062ebcd-8f8f-450c-80a1-afde0a4609b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T03:03:18.595Z", + "completed":"2016-09-18T03:03:18.595Z", + "new_balance":"6929.82", + "value":"-0.52" + } + }, + { + "id":"23e03697-30f7-40da-b6b5-225ed06110c6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T01:24:19.091Z", + "completed":"2016-09-19T01:24:19.091Z", + "new_balance":"6925.67", + "value":"-4.15" + } + }, + { + "id":"3f010055-4928-473b-a663-30e3c5db6f5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T05:26:01.826Z", + "completed":"2016-09-19T05:26:01.826Z", + "new_balance":"6921.38", + "value":"-4.29" + } + }, + { + "id":"8756ba5e-bd8f-4b9f-afe1-ae93e98ed3ea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T22:42:27.473Z", + "completed":"2016-09-19T22:42:27.473Z", + "new_balance":"6915.06", + "value":"-6.32" + } + }, + { + "id":"4ce3660c-75f1-4003-ac07-5c207a42cf8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T16:29:42.195Z", + "completed":"2016-09-20T16:29:42.195Z", + "new_balance":"6908.10", + "value":"-6.96" + } + }, + { + "id":"3fbb7ef4-6312-4b97-b1ec-5ec5f6a82cfc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T21:09:19.938Z", + "completed":"2016-09-20T21:09:19.938Z", + "new_balance":"6902.94", + "value":"-5.16" + } + }, + { + "id":"36af8f20-1bdb-4181-b084-ec0e23fbd756", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T03:58:43.802Z", + "completed":"2016-09-21T03:58:43.802Z", + "new_balance":"6902.35", + "value":"-0.59" + } + }, + { + "id":"507145d2-9782-4575-8d88-a18e6e4d8648", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T04:38:51.937Z", + "completed":"2016-09-21T04:38:51.937Z", + "new_balance":"6901.59", + "value":"-0.76" + } + }, + { + "id":"791e1d86-0a52-46c0-926a-83318bad79c6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T00:08:16.578Z", + "completed":"2016-09-23T00:08:16.578Z", + "new_balance":"6896.98", + "value":"-4.61" + } + }, + { + "id":"7c283ef0-f6dc-4be9-a157-5d682c81c522", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T22:42:29.814Z", + "completed":"2016-09-23T22:42:29.814Z", + "new_balance":"6896.07", + "value":"-0.91" + } + }, + { + "id":"5e8c6db8-40d2-41bf-9140-d2498c02fc0d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T10:28:55.879Z", + "completed":"2016-09-24T10:28:55.879Z", + "new_balance":"6892.52", + "value":"-3.55" + } + }, + { + "id":"eb290b5b-a9ee-4836-ad03-19169f7e9e64", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T12:15:36.747Z", + "completed":"2016-09-25T12:15:36.747Z", + "new_balance":"6889.46", + "value":"-3.06" + } + }, + { + "id":"df94866d-9764-4b51-90de-9b7c96992e88", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T22:14:59.166Z", + "completed":"2016-09-25T22:14:59.166Z", + "new_balance":"6888.15", + "value":"-1.31" + } + }, + { + "id":"b2e8fea2-b152-4411-8fa2-a40a9cc7122e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T21:48:52.025Z", + "completed":"2016-09-27T21:48:52.025Z", + "new_balance":"6860.65", + "value":"-27.50" + } + }, + { + "id":"a06feff1-3eba-4ec4-8c5f-00df306f2db6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T10:11:27.345Z", + "completed":"2016-09-29T10:11:27.345Z", + "new_balance":"6857.91", + "value":"-2.74" + } + }, + { + "id":"abf44637-8677-4092-a7d9-3d39dcdaeed8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T03:43:29.489Z", + "completed":"2016-10-01T03:43:29.489Z", + "new_balance":"6799.68", + "value":"-58.23" + } + }, + { + "id":"e89201fb-df70-436f-add3-2768e29b1c16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T11:35:19.927Z", + "completed":"2016-10-01T11:35:19.927Z", + "new_balance":"6784.43", + "value":"-15.25" + } + }, + { + "id":"996c7b4c-8271-4b83-8ffd-fe23340b647a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T20:06:10.278Z", + "completed":"2016-10-01T20:06:10.278Z", + "new_balance":"6782.11", + "value":"-2.32" + } + }, + { + "id":"f39751cf-7f1a-4d2f-9e24-e636ddc0da3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T20:44:11.731Z", + "completed":"2016-10-01T20:44:11.731Z", + "new_balance":"6776.96", + "value":"-5.15" + } + }, + { + "id":"9154bbb1-26d2-48b6-9bd8-a6aae36bc53d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T16:21:07.362Z", + "completed":"2016-10-02T16:21:07.362Z", + "new_balance":"6767.27", + "value":"-9.69" + } + }, + { + "id":"ad06ffdd-a9f5-476e-a41e-92e1dc9d4e68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T19:21:31.024Z", + "completed":"2016-10-02T19:21:31.024Z", + "new_balance":"6760.17", + "value":"-7.10" + } + }, + { + "id":"cd52ecc6-eb58-4e69-8a73-692ce34ace23", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T09:20:22.593Z", + "completed":"2016-10-03T09:20:22.593Z", + "new_balance":"6747.07", + "value":"-13.10" + } + }, + { + "id":"80e278f5-a1a2-40ae-95ec-bdb2308ef71b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T09:36:52.007Z", + "completed":"2016-10-03T09:36:52.007Z", + "new_balance":"6743.29", + "value":"-3.78" + } + }, + { + "id":"683712ec-99d3-4017-8d69-9325bdaf6051", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T10:56:14.622Z", + "completed":"2016-10-03T10:56:14.622Z", + "new_balance":"6715.79", + "value":"-27.50" + } + }, + { + "id":"7735434b-4b52-4ebd-a650-93636dfbb930", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T11:29:51.152Z", + "completed":"2016-10-03T11:29:51.152Z", + "new_balance":"6658.98", + "value":"-56.81" + } + }, + { + "id":"85bd345a-b4fa-4c91-a69a-812f266071b8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T13:55:27.194Z", + "completed":"2016-10-03T13:55:27.194Z", + "new_balance":"6656.07", + "value":"-2.91" + } + }, + { + "id":"a50e5bdc-2322-4b98-b809-1c9257a27d70", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T11:07:49.509Z", + "completed":"2016-10-04T11:07:49.509Z", + "new_balance":"6648.88", + "value":"-7.19" + } + }, + { + "id":"08c2b7a5-4641-4b60-814b-a9e8f5b9ce6f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T06:42:17.498Z", + "completed":"2016-10-05T06:42:17.498Z", + "new_balance":"6646.20", + "value":"-2.68" + } + }, + { + "id":"43c734a2-2588-468d-9586-ec2c90130e13", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T08:33:42.784Z", + "completed":"2016-10-05T08:33:42.784Z", + "new_balance":"6645.74", + "value":"-0.46" + } + }, + { + "id":"2c310ae0-a21e-4689-abab-a78930d60f29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T12:40:40.496Z", + "completed":"2016-10-07T12:40:40.496Z", + "new_balance":"6642.52", + "value":"-3.22" + } + }, + { + "id":"a7ca779e-7425-4b4f-8200-fbd481a2538b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T17:41:39.777Z", + "completed":"2016-10-07T17:41:39.777Z", + "new_balance":"6640.99", + "value":"-1.53" + } + }, + { + "id":"9e898a5b-35e4-45ec-a0a8-7008f3dfb5c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T06:10:28.184Z", + "completed":"2016-10-08T06:10:28.184Z", + "new_balance":"6640.09", + "value":"-0.90" + } + }, + { + "id":"6c29d5b8-5490-46e7-bcff-fd969f2dfaa8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T07:02:02.182Z", + "completed":"2016-10-09T07:02:02.182Z", + "new_balance":"6639.65", + "value":"-0.44" + } + }, + { + "id":"9e47cca2-8dec-47d1-b377-172f49fa31b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T07:27:47.622Z", + "completed":"2016-10-09T07:27:47.622Z", + "new_balance":"6637.54", + "value":"-2.11" + } + }, + { + "id":"bbeadaaa-0dcd-4f9c-9286-2c5b1c6464ab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T12:25:22.249Z", + "completed":"2016-10-09T12:25:22.249Z", + "new_balance":"6610.04", + "value":"-27.50" + } + }, + { + "id":"ba6e5683-0d6a-4577-8dac-6577baff3011", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T21:23:32.281Z", + "completed":"2016-10-10T21:23:32.281Z", + "new_balance":"6605.56", + "value":"-4.48" + } + }, + { + "id":"a02f0d58-0412-46b3-9908-cdd5e350211a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T22:20:10.730Z", + "completed":"2016-10-17T22:20:10.730Z", + "new_balance":"6604.45", + "value":"-1.11" + } + }, + { + "id":"9b486136-a506-4417-926c-914e283bb71d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T19:05:18.144Z", + "completed":"2016-10-18T19:05:18.144Z", + "new_balance":"6601.64", + "value":"-2.81" + } + }, + { + "id":"08d0ac22-74e8-47f5-8949-d01dfe92f46c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T11:38:27.415Z", + "completed":"2016-10-25T11:38:27.415Z", + "new_balance":"6596.24", + "value":"-5.40" + } + }, + { + "id":"05fa7dc6-ae3c-4288-a377-0f32adcdc1a0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T10:18:33.296Z", + "completed":"2016-10-26T10:18:33.296Z", + "new_balance":"6590.42", + "value":"-5.82" + } + }, + { + "id":"ea0903ef-bd82-45ea-90d8-95d6dea234d3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T21:10:22.901Z", + "completed":"2016-10-26T21:10:22.901Z", + "new_balance":"6589.98", + "value":"-0.44" + } + }, + { + "id":"2f76757a-7b87-46ee-8734-3d7cb4a60035", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T04:36:18.480Z", + "completed":"2016-11-02T04:36:18.480Z", + "new_balance":"6531.75", + "value":"-58.23" + } + }, + { + "id":"954711c4-5508-4e43-8767-d0a46a138e0a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T09:20:46.969Z", + "completed":"2016-11-02T09:20:46.969Z", + "new_balance":"6529.43", + "value":"-2.32" + } + }, + { + "id":"057d0457-84ff-4e87-92aa-a2b4220af086", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T11:25:12.246Z", + "completed":"2016-11-02T11:25:12.246Z", + "new_balance":"6712.13", + "value":"182.70" + } + }, + { + "id":"dc5b39f0-5556-491a-9945-84fe3545cdd3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T16:43:47.109Z", + "completed":"2016-11-02T16:43:47.109Z", + "new_balance":"6710.98", + "value":"-1.15" + } + }, + { + "id":"2b951703-b4aa-4190-8cf1-0944e75d7b4e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T16:45:25.541Z", + "completed":"2016-11-02T16:45:25.541Z", + "new_balance":"6707.54", + "value":"-3.44" + } + }, + { + "id":"84cccb79-636d-4b9b-846b-34c8109c691c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T20:22:52.219Z", + "completed":"2016-11-02T20:22:52.219Z", + "new_balance":"6702.39", + "value":"-5.15" + } + }, + { + "id":"d72b55f3-307a-423b-ad1e-7c04a9c62913", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T22:23:07.761Z", + "completed":"2016-11-02T22:23:07.761Z", + "new_balance":"6687.14", + "value":"-15.25" + } + }, + { + "id":"e7a966c6-83c0-405e-9c80-536b7fcd7c10", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T23:07:54.887Z", + "completed":"2016-11-02T23:07:54.887Z", + "new_balance":"6680.04", + "value":"-7.10" + } + }, + { + "id":"aed20a46-e5ae-4062-9191-aab757ebf872", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T07:25:22.247Z", + "completed":"2016-11-06T07:25:22.247Z", + "new_balance":"6677.94", + "value":"-2.10" + } + }, + { + "id":"d0422e21-f960-4b3e-93ff-d511993dc861", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T12:11:33.333Z", + "completed":"2016-11-07T12:11:33.333Z", + "new_balance":"6674.61", + "value":"-3.33" + } + }, + { + "id":"4b27a87f-1096-472a-a63b-16b93ec7e978", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T17:34:42.425Z", + "completed":"2016-11-07T17:34:42.425Z", + "new_balance":"6672.21", + "value":"-2.40" + } + }, + { + "id":"d95b5d9f-9daf-4b3a-8f18-88b652006872", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T23:02:38.086Z", + "completed":"2016-11-07T23:02:38.086Z", + "new_balance":"6669.71", + "value":"-2.50" + } + }, + { + "id":"322e4ed1-436c-4677-bfb7-555b37f07429", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T00:21:27.364Z", + "completed":"2016-11-09T00:21:27.364Z", + "new_balance":"6669.23", + "value":"-0.48" + } + }, + { + "id":"8ca60f95-924c-4da9-9c65-310578ae6d0d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T03:00:10.310Z", + "completed":"2016-11-09T03:00:10.310Z", + "new_balance":"6662.04", + "value":"-7.19" + } + }, + { + "id":"62bf782c-9705-47a1-81c2-0731d34f9513", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T10:42:52.215Z", + "completed":"2016-11-12T10:42:52.215Z", + "new_balance":"6659.01", + "value":"-3.03" + } + }, + { + "id":"d9c35541-b3d1-417f-962b-f9b5b82cf234", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T22:58:46.308Z", + "completed":"2016-11-12T22:58:46.308Z", + "new_balance":"6656.56", + "value":"-2.45" + } + }, + { + "id":"7824e95e-e70e-4104-88cb-a3aa5b9bbb24", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T03:44:59.286Z", + "completed":"2016-11-14T03:44:59.286Z", + "new_balance":"6653.42", + "value":"-3.14" + } + }, + { + "id":"1da9f06c-de68-4a5c-95b1-9c493bbc2c33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T10:24:33.147Z", + "completed":"2016-11-14T10:24:33.147Z", + "new_balance":"6649.94", + "value":"-3.48" + } + }, + { + "id":"84ede549-25b7-44b1-8527-b7b0247dd1ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T13:45:39.855Z", + "completed":"2016-11-16T13:45:39.855Z", + "new_balance":"6649.47", + "value":"-0.47" + } + }, + { + "id":"8178ccb7-3ce8-43ba-8ed6-86ba0d54a197", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T14:32:28.972Z", + "completed":"2016-11-18T14:32:28.972Z", + "new_balance":"6648.70", + "value":"-0.77" + } + }, + { + "id":"6d9c4dd0-b7b0-4cd6-a8f0-1c758e5e0b68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T05:24:31.965Z", + "completed":"2016-11-20T05:24:31.965Z", + "new_balance":"6652.78", + "value":"4.08" + } + }, + { + "id":"c47e479b-eaa4-4849-ba33-3ae0a3352f03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T01:15:42.076Z", + "completed":"2016-11-21T01:15:42.076Z", + "new_balance":"6646.35", + "value":"-6.43" + } + }, + { + "id":"31f4a9da-2dae-44a6-aae4-09746d2f4303", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T04:36:01.186Z", + "completed":"2016-11-21T04:36:01.186Z", + "new_balance":"6642.23", + "value":"-4.12" + } + }, + { + "id":"1ef1b016-4ac6-46f6-992c-725312c2a0b5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T12:55:08.760Z", + "completed":"2016-11-27T12:55:08.760Z", + "new_balance":"6639.29", + "value":"-2.94" + } + }, + { + "id":"a3f35c40-11ef-4e78-be5d-e57b237d11e7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T16:58:24.458Z", + "completed":"2016-11-27T16:58:24.458Z", + "new_balance":"6636.74", + "value":"-2.55" + } + }, + { + "id":"280db66c-e8c4-4c2a-bad2-e76db33de78f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:13:58.651Z", + "completed":"2016-12-01T01:13:58.651Z", + "new_balance":"6633.30", + "value":"-3.44" + } + }, + { + "id":"e39c0f4e-1cb4-40af-8a0c-5bebb74df1d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T01:17:42.737Z", + "completed":"2016-12-01T01:17:42.737Z", + "new_balance":"6630.98", + "value":"-2.32" + } + }, + { + "id":"274b25ca-eb20-460d-b838-8a54769124c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:09:48.343Z", + "completed":"2016-12-01T08:09:48.343Z", + "new_balance":"6615.73", + "value":"-15.25" + } + }, + { + "id":"ebbcd492-a309-4bd2-8956-31e80cda221d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T12:12:40.656Z", + "completed":"2016-12-01T12:12:40.656Z", + "new_balance":"6798.43", + "value":"182.70" + } + }, + { + "id":"f9c2ca6c-094e-4dae-b597-f113c1923dc2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T16:52:50.447Z", + "completed":"2016-12-01T16:52:50.447Z", + "new_balance":"6740.20", + "value":"-58.23" + } + }, + { + "id":"73dba7b7-06a9-48ea-bebd-663c1885d21d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T23:15:26.177Z", + "completed":"2016-12-01T23:15:26.177Z", + "new_balance":"6735.05", + "value":"-5.15" + } + }, + { + "id":"59899234-eed4-43f5-8789-aa34c39fc020", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T04:16:20.614Z", + "completed":"2016-12-04T04:16:20.614Z", + "new_balance":"6727.95", + "value":"-7.10" + } + }, + { + "id":"b515ec3d-ffa6-492a-ae2d-c9b99cd8c4e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T15:37:51.377Z", + "completed":"2016-12-04T15:37:51.377Z", + "new_balance":"6715.99", + "value":"-11.96" + } + }, + { + "id":"3d330e8d-d3c3-457c-bfda-e4f9836aa9c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T06:12:05.375Z", + "completed":"2016-12-12T06:12:05.375Z", + "new_balance":"6714.74", + "value":"-1.25" + } + }, + { + "id":"57711342-141c-4472-a3e5-966cba4c10a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T20:27:33.237Z", + "completed":"2016-12-12T20:27:33.237Z", + "new_balance":"6711.44", + "value":"-3.30" + } + }, + { + "id":"b0cbf47a-9884-4815-83e0-352af09a1973", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T02:13:42.054Z", + "completed":"2016-12-13T02:13:42.054Z", + "new_balance":"6710.68", + "value":"-0.76" + } + }, + { + "id":"d2cbc103-5ab6-41d0-a753-5885d40331cb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T11:58:23.877Z", + "completed":"2016-12-13T11:58:23.877Z", + "new_balance":"6703.38", + "value":"-7.30" + } + }, + { + "id":"a3edee6c-94af-4eea-bcd7-b48446cfa822", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T19:29:03.154Z", + "completed":"2016-12-16T19:29:03.154Z", + "new_balance":"6699.34", + "value":"-4.04" + } + }, + { + "id":"720d72aa-5660-4a7b-87c3-4e1d96b59c79", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T03:26:02.985Z", + "completed":"2016-12-18T03:26:02.985Z", + "new_balance":"6698.94", + "value":"-0.40" + } + }, + { + "id":"f5544cdf-c568-4d03-ac9d-be3e3829a568", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T00:16:32.287Z", + "completed":"2016-12-19T00:16:32.287Z", + "new_balance":"6691.64", + "value":"-7.30" + } + }, + { + "id":"ee621723-8968-4379-bea4-726dffc1555c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:19:25.172Z", + "completed":"2016-12-19T12:19:25.172Z", + "new_balance":"6686.37", + "value":"-5.27" + } + }, + { + "id":"89a20f4c-8dac-46cf-a2c6-c4d0a3f5892e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T05:50:39.757Z", + "completed":"2016-12-20T05:50:39.757Z", + "new_balance":"6682.10", + "value":"-4.27" + } + }, + { + "id":"e9ee8470-b7ad-4273-a6de-9c11ff24e660", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T08:12:50.194Z", + "completed":"2016-12-21T08:12:50.194Z", + "new_balance":"6676.83", + "value":"-5.27" + } + }, + { + "id":"5ea20a11-74fc-4b51-b082-854a0e4bbe7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T01:24:16.316Z", + "completed":"2016-12-24T01:24:16.316Z", + "new_balance":"6672.57", + "value":"-4.26" + } + }, + { + "id":"e4ba966b-d3ee-4d9c-8fd2-266ddbb23e76", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T08:19:38.376Z", + "completed":"2016-12-24T08:19:38.376Z", + "new_balance":"6670.32", + "value":"-2.25" + } + }, + { + "id":"517bd16b-ef7b-43c7-9376-87f30b7fbc3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T11:51:14.155Z", + "completed":"2016-12-24T11:51:14.155Z", + "new_balance":"6669.55", + "value":"-0.77" + } + }, + { + "id":"fcd75fcf-76de-4f67-9d65-d3868ed2c670", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T18:17:07.145Z", + "completed":"2016-12-24T18:17:07.145Z", + "new_balance":"6669.01", + "value":"-0.54" + } + }, + { + "id":"445a1291-cc1d-4471-ac17-13dbc48a05b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T18:38:45.491Z", + "completed":"2016-12-24T18:38:45.491Z", + "new_balance":"6667.96", + "value":"-1.05" + } + }, + { + "id":"b5262181-db79-4ed3-9138-8e83c960b547", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T19:27:48.358Z", + "completed":"2016-12-24T19:27:48.358Z", + "new_balance":"6661.64", + "value":"-6.32" + } + }, + { + "id":"ad4b3649-ac52-4ac9-91f8-cc4d72b0f72e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T00:07:28.712Z", + "completed":"2016-12-28T00:07:28.712Z", + "new_balance":"6661.12", + "value":"-0.52" + } + }, + { + "id":"3006e423-2434-4dc5-b1a0-560b20bf1875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T00:36:03.697Z", + "completed":"2016-12-28T00:36:03.697Z", + "new_balance":"6651.33", + "value":"-9.79" + } + }, + { + "id":"123145d2-6265-499d-ba11-d4834c1d0bb3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T08:34:31.973Z", + "completed":"2016-12-28T08:34:31.973Z", + "new_balance":"6650.81", + "value":"-0.52" + } + }, + { + "id":"e8c9b618-2cad-4d69-bb55-6493530f90c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T15:47:36.046Z", + "completed":"2016-12-28T15:47:36.046Z", + "new_balance":"6645.99", + "value":"-4.82" + } + }, + { + "id":"a0e9004f-92b1-4e64-9f4a-0e785b71e773", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T12:00:02.494Z", + "completed":"2016-12-29T12:00:02.494Z", + "new_balance":"6641.84", + "value":"-4.15" + } + }, + { + "id":"c5c8c60c-528f-4508-a171-651e9e65bf82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T16:27:23.681Z", + "completed":"2016-12-29T16:27:23.681Z", + "new_balance":"6636.68", + "value":"-5.16" + } + }, + { + "id":"f6aa384a-38ef-4167-8c51-4e92371508c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T18:08:34.117Z", + "completed":"2016-12-29T18:08:34.117Z", + "new_balance":"6630.36", + "value":"-6.32" + } + }, + { + "id":"36f32979-8959-46a4-9e00-4b8200ce4085", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T19:40:39.889Z", + "completed":"2016-12-29T19:40:39.889Z", + "new_balance":"6626.07", + "value":"-4.29" + } + }, + { + "id":"42443cd2-f854-4a64-a5d8-39d131f7a711", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T20:38:40.740Z", + "completed":"2016-12-29T20:38:40.740Z", + "new_balance":"6625.31", + "value":"-0.76" + } + }, + { + "id":"5bb03e03-1ef3-48b5-b011-7885f3a88557", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T23:45:10.919Z", + "completed":"2016-12-29T23:45:10.919Z", + "new_balance":"6618.35", + "value":"-6.96" + } + }, + { + "id":"288599c4-45e7-4c3b-ae67-43afc0c2d345", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T00:01:41.145Z", + "completed":"2016-12-30T00:01:41.145Z", + "new_balance":"6617.76", + "value":"-0.59" + } + }, + { + "id":"d013e93b-980a-453c-9fdf-bed16aed1559", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T12:00:56.044Z", + "completed":"2016-12-30T12:00:56.044Z", + "new_balance":"6616.85", + "value":"-0.91" + } + }, + { + "id":"8075cca4-1265-49b6-b6d9-d544fb2a6b4d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T19:58:42.536Z", + "completed":"2016-12-30T19:58:42.536Z", + "new_balance":"6613.30", + "value":"-3.55" + } + }, + { + "id":"e3e0f96c-651a-450f-bfc0-a21e50d9a663", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T21:14:55.087Z", + "completed":"2016-12-30T21:14:55.087Z", + "new_balance":"6608.69", + "value":"-4.61" + } + }, + { + "id":"9c3a0d10-5bbd-4b17-a9f3-ed4c5e32d28d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T09:46:03.702Z", + "completed":"2016-12-31T09:46:03.702Z", + "new_balance":"6605.95", + "value":"-2.74" + } + }, + { + "id":"dfe78a5d-2dd3-40b9-a470-2dd7e9643d28", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T15:03:38.361Z", + "completed":"2016-12-31T15:03:38.361Z", + "new_balance":"6602.89", + "value":"-3.06" + } + }, + { + "id":"88ccc5ca-9246-4294-8d9a-2cec81bc1875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T17:55:16.894Z", + "completed":"2016-12-31T17:55:16.894Z", + "new_balance":"6601.58", + "value":"-1.31" + } + }, + { + "id":"7c26d038-91f2-415d-aa69-d9ca2d92c075", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T20:17:25.277Z", + "completed":"2016-12-31T20:17:25.277Z", + "new_balance":"6574.08", + "value":"-27.50" + } + }, + { + "id":"6f7b3d9b-a365-4244-b20b-df194b45cade", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T02:55:08.532Z", + "completed":"2017-01-01T02:55:08.532Z", + "new_balance":"6515.85", + "value":"-58.23" + } + }, + { + "id":"ce6415cc-1ee4-4bb7-ad64-0d0e5f5161f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T06:58:55.011Z", + "completed":"2017-01-01T06:58:55.011Z", + "new_balance":"6510.70", + "value":"-5.15" + } + }, + { + "id":"c0b5c76c-7d91-4b45-ad0d-bd58f577bbee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T10:15:53.855Z", + "completed":"2017-01-01T10:15:53.855Z", + "new_balance":"6507.26", + "value":"-3.44" + } + }, + { + "id":"c6668ef5-9dc7-4fa4-8b3a-f17f3f11d9da", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:43:12.117Z", + "completed":"2017-01-01T13:43:12.117Z", + "new_balance":"6492.01", + "value":"-15.25" + } + }, + { + "id":"188a9da7-3877-4a66-8240-14441c53eff8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T18:50:32.504Z", + "completed":"2017-01-01T18:50:32.504Z", + "new_balance":"6489.69", + "value":"-2.32" + } + }, + { + "id":"0b05d272-4a54-4343-bc61-61c1d5238d5c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:58:56.613Z", + "completed":"2017-01-01T21:58:56.613Z", + "new_balance":"6486.25", + "value":"-3.44" + } + }, + { + "id":"3f455e8e-486d-4bd8-8efd-4b9670af04ef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T12:35:17.662Z", + "completed":"2017-01-02T12:35:17.662Z", + "new_balance":"6476.56", + "value":"-9.69" + } + }, + { + "id":"17ef40a1-e20a-4211-af68-827f2af308bd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T18:14:30.403Z", + "completed":"2017-01-02T18:14:30.403Z", + "new_balance":"6469.46", + "value":"-7.10" + } + }, + { + "id":"d43b2027-9ff5-4f75-a6f5-8aaa27eeadeb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T08:56:46.594Z", + "completed":"2017-01-04T08:56:46.594Z", + "new_balance":"6466.55", + "value":"-2.91" + } + }, + { + "id":"54293f73-1763-436e-8831-a43db8efb02f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T11:52:16.295Z", + "completed":"2017-01-04T11:52:16.295Z", + "new_balance":"6462.77", + "value":"-3.78" + } + }, + { + "id":"ccf8657d-64bd-4790-ac5e-4b7c99c22a7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T04:23:47.453Z", + "completed":"2017-01-07T04:23:47.453Z", + "new_balance":"6455.58", + "value":"-7.19" + } + }, + { + "id":"7241db6b-de44-46f7-8053-4ea9b9670bdd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T18:01:51.041Z", + "completed":"2017-01-09T18:01:51.041Z", + "new_balance":"6455.12", + "value":"-0.46" + } + }, + { + "id":"b4e81ff7-cf1e-46bc-8d48-4fe58504ea59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T21:25:30.484Z", + "completed":"2017-01-10T21:25:30.484Z", + "new_balance":"6452.44", + "value":"-2.68" + } + }, + { + "id":"ef4df63e-afdd-43ea-a7ff-592e255ec786", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T09:09:51.545Z", + "completed":"2017-01-12T09:09:51.545Z", + "new_balance":"6449.22", + "value":"-3.22" + } + }, + { + "id":"919bb89d-2cbc-42aa-bb45-1282bb086abc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T22:05:11.414Z", + "completed":"2017-01-15T22:05:11.414Z", + "new_balance":"6448.32", + "value":"-0.90" + } + }, + { + "id":"15ec7caa-86c3-43d3-8f05-963b4b59de17", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T23:50:48.716Z", + "completed":"2017-01-15T23:50:48.716Z", + "new_balance":"6446.79", + "value":"-1.53" + } + }, + { + "id":"91a08ac8-0874-4004-ac8a-a496d75c9de3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T18:22:29.058Z", + "completed":"2017-01-17T18:22:29.058Z", + "new_balance":"6444.68", + "value":"-2.11" + } + }, + { + "id":"301cda4c-de94-4fd1-b01f-a52d2a67a880", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T13:07:59.436Z", + "completed":"2017-01-19T13:07:59.436Z", + "new_balance":"6417.18", + "value":"-27.50" + } + }, + { + "id":"84459d84-c0ee-4484-bcff-655d5eec870f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T17:54:44.990Z", + "completed":"2017-01-20T17:54:44.990Z", + "new_balance":"6416.74", + "value":"-0.44" + } + }, + { + "id":"cb070bc6-beb6-4992-ab03-4ec24ae8c75a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T11:17:44.458Z", + "completed":"2017-01-22T11:17:44.458Z", + "new_balance":"6412.26", + "value":"-4.48" + } + }, + { + "id":"b3d89b1f-fb6b-408b-b2c9-a65df42b9e88", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T19:50:27.868Z", + "completed":"2017-01-22T19:50:27.868Z", + "new_balance":"6411.15", + "value":"-1.11" + } + }, + { + "id":"0e4625cc-efac-4e4b-a42d-c8461b64f061", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T19:28:41.400Z", + "completed":"2017-01-24T19:28:41.400Z", + "new_balance":"6408.34", + "value":"-2.81" + } + }, + { + "id":"3d31cdf6-ec8d-42a2-934f-ab039c63c337", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T08:33:20.671Z", + "completed":"2017-01-25T08:33:20.671Z", + "new_balance":"6402.94", + "value":"-5.40" + } + }, + { + "id":"7e3b6acb-5b56-4f61-9582-82eb742cf239", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T12:00:08.941Z", + "completed":"2017-01-25T12:00:08.941Z", + "new_balance":"6402.50", + "value":"-0.44" + } + }, + { + "id":"1d0718df-108b-4ec4-aa16-148dbaab4d27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T18:13:22.615Z", + "completed":"2017-01-26T18:13:22.615Z", + "new_balance":"6396.68", + "value":"-5.82" + } + }, + { + "id":"eb25b8a0-4c8c-4392-ab15-eef807f5e6ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T00:42:10.518Z", + "completed":"2017-02-01T00:42:10.518Z", + "new_balance":"6391.53", + "value":"-5.15" + } + }, + { + "id":"77165467-bed9-49a2-9454-6ad53223bd6c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T06:21:43.928Z", + "completed":"2017-02-01T06:21:43.928Z", + "new_balance":"6333.30", + "value":"-58.23" + } + }, + { + "id":"83359fad-74e7-4df3-a14f-eb1ca95ce163", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T06:35:30.839Z", + "completed":"2017-02-01T06:35:30.839Z", + "new_balance":"6329.86", + "value":"-3.44" + } + }, + { + "id":"68116a10-f7f4-4703-a4cc-60d6067867a9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:14:03.485Z", + "completed":"2017-02-01T15:14:03.485Z", + "new_balance":"6512.56", + "value":"182.70" + } + }, + { + "id":"0536b610-1aa7-4fcc-9f4b-e928c36b4036", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T17:10:56.543Z", + "completed":"2017-02-01T17:10:56.543Z", + "new_balance":"6497.31", + "value":"-15.25" + } + }, + { + "id":"ab6e49a3-e27c-4473-afb0-81dbdcf276c9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T22:54:03.786Z", + "completed":"2017-02-01T22:54:03.786Z", + "new_balance":"6494.99", + "value":"-2.32" + } + }, + { + "id":"5489d3e6-b471-49d7-9ffa-9d64ad501f49", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T07:41:26.998Z", + "completed":"2017-02-02T07:41:26.998Z", + "new_balance":"6493.84", + "value":"-1.15" + } + }, + { + "id":"653c44e7-9e70-4336-b4a6-07eecc936106", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T19:37:43.627Z", + "completed":"2017-02-02T19:37:43.627Z", + "new_balance":"6491.74", + "value":"-2.10" + } + }, + { + "id":"cfee6fcf-7f6d-403a-bbbe-d02d47a4c7c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T23:21:39.646Z", + "completed":"2017-02-02T23:21:39.646Z", + "new_balance":"6484.64", + "value":"-7.10" + } + }, + { + "id":"9fe2118e-ed87-4507-a6c5-c5ce8aa99d78", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T01:35:30.193Z", + "completed":"2017-02-03T01:35:30.193Z", + "new_balance":"6481.31", + "value":"-3.33" + } + }, + { + "id":"33465129-1660-4579-9753-d5fe32955ede", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T19:03:12.218Z", + "completed":"2017-02-03T19:03:12.218Z", + "new_balance":"6478.91", + "value":"-2.40" + } + }, + { + "id":"0f88aec8-8e7a-4a4d-9441-636c3d6f568f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T19:28:30.352Z", + "completed":"2017-02-03T19:28:30.352Z", + "new_balance":"6476.41", + "value":"-2.50" + } + }, + { + "id":"9543d179-5310-4702-b630-2f0d726c7c27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T20:06:34.194Z", + "completed":"2017-02-06T20:06:34.194Z", + "new_balance":"6469.22", + "value":"-7.19" + } + }, + { + "id":"82b8b389-2525-4450-ab67-2698afac4939", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T02:11:21.281Z", + "completed":"2017-02-08T02:11:21.281Z", + "new_balance":"6468.74", + "value":"-0.48" + } + }, + { + "id":"631a52cb-dc9b-4393-9c7d-e1bfc567eaf9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T02:30:39.803Z", + "completed":"2017-02-08T02:30:39.803Z", + "new_balance":"6466.29", + "value":"-2.45" + } + }, + { + "id":"18976a88-83c8-49c8-b1bd-94b14eeabea0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T06:20:06.426Z", + "completed":"2017-02-08T06:20:06.426Z", + "new_balance":"6463.26", + "value":"-3.03" + } + }, + { + "id":"aea70d9c-eec4-4e7d-a535-70a9f6a4ab80", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T14:02:42.338Z", + "completed":"2017-02-09T14:02:42.338Z", + "new_balance":"6459.78", + "value":"-3.48" + } + }, + { + "id":"a4b896ff-839d-4720-90c3-cdd3b0dcf458", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T15:37:52.271Z", + "completed":"2017-02-09T15:37:52.271Z", + "new_balance":"6456.64", + "value":"-3.14" + } + }, + { + "id":"c8cbbf37-2ab5-4228-8a70-37446e3a3f8a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T10:27:45.235Z", + "completed":"2017-02-12T10:27:45.235Z", + "new_balance":"6456.17", + "value":"-0.47" + } + }, + { + "id":"40603620-48c4-4bd8-bb8a-7d260777af1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T03:45:02.672Z", + "completed":"2017-02-13T03:45:02.672Z", + "new_balance":"6449.74", + "value":"-6.43" + } + }, + { + "id":"04c1805d-b750-4de5-b9cc-84fc34e3407e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T12:31:32.585Z", + "completed":"2017-02-13T12:31:32.585Z", + "new_balance":"6448.97", + "value":"-0.77" + } + }, + { + "id":"76b9fba2-e2d8-4587-91d7-cc78702c32b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T17:52:44.182Z", + "completed":"2017-02-13T17:52:44.182Z", + "new_balance":"6453.05", + "value":"4.08" + } + }, + { + "id":"836a84b0-e204-462a-8ca1-165b6df0d8f8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T03:38:37.415Z", + "completed":"2017-02-14T03:38:37.415Z", + "new_balance":"6448.93", + "value":"-4.12" + } + }, + { + "id":"328e0645-9f28-4db6-9677-8eb753b80582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T18:04:42.387Z", + "completed":"2017-02-15T18:04:42.387Z", + "new_balance":"6446.38", + "value":"-2.55" + } + }, + { + "id":"f5452502-5f4f-4600-860d-a34fb96454e7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T18:37:07.041Z", + "completed":"2017-02-28T18:37:07.041Z", + "new_balance":"6443.44", + "value":"-2.94" + } + }, + { + "id":"615f709a-ac7b-4da0-a54a-d50804ca5ec0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T00:33:32.033Z", + "completed":"2017-03-01T00:33:32.033Z", + "new_balance":"6428.19", + "value":"-15.25" + } + }, + { + "id":"7d851a74-30f9-4a8f-987f-3e77825399fe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T04:01:53.212Z", + "completed":"2017-03-01T04:01:53.212Z", + "new_balance":"6610.89", + "value":"182.70" + } + }, + { + "id":"4714148c-6786-4740-bec8-1b49a0bd47dd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T04:59:16.104Z", + "completed":"2017-03-01T04:59:16.104Z", + "new_balance":"6552.66", + "value":"-58.23" + } + }, + { + "id":"f5d9b866-8bbb-4a67-81f5-5e58460e077e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T08:49:52.253Z", + "completed":"2017-03-01T08:49:52.253Z", + "new_balance":"6550.34", + "value":"-2.32" + } + }, + { + "id":"0047ad51-b7b3-45b0-a9e9-ece95bcd7887", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T11:55:18.974Z", + "completed":"2017-03-01T11:55:18.974Z", + "new_balance":"6545.19", + "value":"-5.15" + } + }, + { + "id":"05716b2d-bc80-4f32-ab00-264d8ca9b5c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T19:11:33.951Z", + "completed":"2017-03-01T19:11:33.951Z", + "new_balance":"6541.75", + "value":"-3.44" + } + }, + { + "id":"9c13b681-e18c-4054-900e-0429d5a7f7dd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T03:46:43.617Z", + "completed":"2017-03-02T03:46:43.617Z", + "new_balance":"6534.65", + "value":"-7.10" + } + }, + { + "id":"3f741f69-ee85-476d-8144-9bc46a9ddb11", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T04:15:50.268Z", + "completed":"2017-03-04T04:15:50.268Z", + "new_balance":"6533.40", + "value":"-1.25" + } + }, + { + "id":"9f7e9191-ad02-4009-b2ed-1bca7069ad12", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T10:08:06.519Z", + "completed":"2017-03-04T10:08:06.519Z", + "new_balance":"6526.10", + "value":"-7.30" + } + }, + { + "id":"b5fc4dc2-af78-4f8c-8f4a-55fa7b740fb2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T10:47:26.196Z", + "completed":"2017-03-04T10:47:26.196Z", + "new_balance":"6525.34", + "value":"-0.76" + } + }, + { + "id":"58b6c474-109f-446d-aaf2-b01f37b68a34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:37:15.313Z", + "completed":"2017-03-04T16:37:15.313Z", + "new_balance":"6522.04", + "value":"-3.30" + } + }, + { + "id":"9c6d8b35-88a4-4646-ab14-235517d707a5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T05:10:15.561Z", + "completed":"2017-03-05T05:10:15.561Z", + "new_balance":"6521.64", + "value":"-0.40" + } + }, + { + "id":"0f62e130-7d6e-4885-a8b1-321a718816b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T19:37:20.636Z", + "completed":"2017-03-05T19:37:20.636Z", + "new_balance":"6517.60", + "value":"-4.04" + } + }, + { + "id":"6ad27b14-4f57-4182-ab1e-51e597c3f24d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T07:27:30.372Z", + "completed":"2017-03-06T07:27:30.372Z", + "new_balance":"6512.33", + "value":"-5.27" + } + }, + { + "id":"153d023b-823f-4f57-8dd7-8796c71622ea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T22:25:05.871Z", + "completed":"2017-03-06T22:25:05.871Z", + "new_balance":"6505.03", + "value":"-7.30" + } + }, + { + "id":"451a6011-10fe-474a-af33-c4cef257e37b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T03:20:24.396Z", + "completed":"2017-03-07T03:20:24.396Z", + "new_balance":"6500.76", + "value":"-4.27" + } + }, + { + "id":"ded6d676-b3ee-45a6-936e-10613eb4f518", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T11:22:02.637Z", + "completed":"2017-03-08T11:22:02.637Z", + "new_balance":"6495.49", + "value":"-5.27" + } + }, + { + "id":"13bf484e-dc16-446b-9582-f8852928252f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T21:24:18.443Z", + "completed":"2017-03-09T21:24:18.443Z", + "new_balance":"6494.95", + "value":"-0.54" + } + }, + { + "id":"64df3c36-c04b-4cc1-abe7-ff6bcd00df55", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T15:05:24.844Z", + "completed":"2017-03-10T15:05:24.844Z", + "new_balance":"6488.63", + "value":"-6.32" + } + }, + { + "id":"e3d52c72-ff68-4cdf-b537-01148472a88d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T22:18:42.440Z", + "completed":"2017-03-11T22:18:42.440Z", + "new_balance":"6487.86", + "value":"-0.77" + } + }, + { + "id":"00033368-4e87-4294-a80f-beb165b24ab4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T12:19:12.080Z", + "completed":"2017-03-12T12:19:12.080Z", + "new_balance":"6485.61", + "value":"-2.25" + } + }, + { + "id":"5b40dd2e-517a-41c4-88b3-d6e2708f21ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T18:32:05.445Z", + "completed":"2017-03-12T18:32:05.445Z", + "new_balance":"6484.56", + "value":"-1.05" + } + }, + { + "id":"7014624b-bc4d-4885-ab80-d27c478ed8dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T16:34:30.294Z", + "completed":"2017-03-13T16:34:30.294Z", + "new_balance":"6480.30", + "value":"-4.26" + } + }, + { + "id":"62c5cebf-a071-4e17-9e1b-b3fed37bcd6f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T10:22:53.217Z", + "completed":"2017-03-14T10:22:53.217Z", + "new_balance":"6479.78", + "value":"-0.52" + } + }, + { + "id":"886766d1-0048-47cd-b6a2-870ebf64e49e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T03:26:40.737Z", + "completed":"2017-03-16T03:26:40.737Z", + "new_balance":"6474.96", + "value":"-4.82" + } + }, + { + "id":"9ed23ba8-f181-42a7-afa4-fff38106a1f5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T19:41:24.345Z", + "completed":"2017-03-16T19:41:24.345Z", + "new_balance":"6465.17", + "value":"-9.79" + } + }, + { + "id":"64796203-0ebd-4dbd-a137-60928a1df700", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T07:08:27.130Z", + "completed":"2017-03-18T07:08:27.130Z", + "new_balance":"6464.65", + "value":"-0.52" + } + }, + { + "id":"4dadb3b3-eb51-4f59-9460-79093be08d9a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T04:46:54.046Z", + "completed":"2017-03-19T04:46:54.046Z", + "new_balance":"6460.36", + "value":"-4.29" + } + }, + { + "id":"28c0e895-5bbf-4306-85c1-6ab098faf5a2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:41:21.404Z", + "completed":"2017-03-19T05:41:21.404Z", + "new_balance":"6456.21", + "value":"-4.15" + } + }, + { + "id":"6b55b4f8-2ac2-468c-be35-524e14f0944e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T15:52:10.066Z", + "completed":"2017-03-19T15:52:10.066Z", + "new_balance":"6449.89", + "value":"-6.32" + } + }, + { + "id":"a2c5ac27-57bb-43c7-bff0-3d310eb714b2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T12:34:56.149Z", + "completed":"2017-03-20T12:34:56.149Z", + "new_balance":"6442.93", + "value":"-6.96" + } + }, + { + "id":"477d6645-7922-4ee2-85b0-2197358b3eb4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T18:23:22.676Z", + "completed":"2017-03-20T18:23:22.676Z", + "new_balance":"6437.77", + "value":"-5.16" + } + }, + { + "id":"70c3f496-e94d-4a16-9034-150c85fa4b33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T02:41:48.403Z", + "completed":"2017-03-21T02:41:48.403Z", + "new_balance":"6437.01", + "value":"-0.76" + } + }, + { + "id":"dfcecb02-494b-4122-b3c3-2507abd48d97", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T15:36:47.190Z", + "completed":"2017-03-21T15:36:47.190Z", + "new_balance":"6436.42", + "value":"-0.59" + } + }, + { + "id":"9fd76e95-7f58-49ad-9efb-bc275017e903", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T05:37:01.207Z", + "completed":"2017-03-23T05:37:01.207Z", + "new_balance":"6435.51", + "value":"-0.91" + } + }, + { + "id":"dc0a0d62-34a0-48a0-9933-9c5f860d411d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T23:25:48.656Z", + "completed":"2017-03-23T23:25:48.656Z", + "new_balance":"6430.90", + "value":"-4.61" + } + }, + { + "id":"852c2e0e-8fa5-4356-9f04-e44e5c297094", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T05:35:43.604Z", + "completed":"2017-03-24T05:35:43.604Z", + "new_balance":"6427.35", + "value":"-3.55" + } + }, + { + "id":"d0f64a5d-56eb-485f-bdbd-e761f313d19a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T01:50:20.752Z", + "completed":"2017-03-25T01:50:20.752Z", + "new_balance":"6426.04", + "value":"-1.31" + } + }, + { + "id":"f477c419-68f4-42e3-a178-9c5aad70944a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T02:40:15.682Z", + "completed":"2017-03-25T02:40:15.682Z", + "new_balance":"6422.98", + "value":"-3.06" + } + }, + { + "id":"0127ed48-3dd9-45bc-804f-e2c267e38cab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T22:27:09.157Z", + "completed":"2017-03-27T22:27:09.157Z", + "new_balance":"6395.48", + "value":"-27.50" + } + }, + { + "id":"ab520815-e362-45fc-8107-2a83b31cdd03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T19:22:51.043Z", + "completed":"2017-03-28T19:22:51.043Z", + "new_balance":"6392.74", + "value":"-2.74" + } + }, + { + "id":"5c684557-1662-4a98-8a7a-ed5eef73e7e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T07:12:40.743Z", + "completed":"2017-04-01T07:12:40.743Z", + "new_balance":"6387.59", + "value":"-5.15" + } + }, + { + "id":"f3da54c4-c74d-40f0-b436-925d202e8cc3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T12:42:23.798Z", + "completed":"2017-04-01T12:42:23.798Z", + "new_balance":"6372.34", + "value":"-15.25" + } + }, + { + "id":"4464f08f-c2ab-49bf-a436-2cc4f2702aec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T13:31:06.688Z", + "completed":"2017-04-01T13:31:06.688Z", + "new_balance":"6314.11", + "value":"-58.23" + } + }, + { + "id":"30afd4bf-b87e-486f-a695-78b39ec77896", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T23:02:58.050Z", + "completed":"2017-04-01T23:02:58.050Z", + "new_balance":"6311.79", + "value":"-2.32" + } + }, + { + "id":"46c4a32b-6219-4dc2-92e5-edcc30a8f875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T00:13:46.129Z", + "completed":"2017-04-02T00:13:46.129Z", + "new_balance":"6302.10", + "value":"-9.69" + } + }, + { + "id":"f04b397d-69c8-48cf-9ad3-b1e106cd1465", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T03:01:30.536Z", + "completed":"2017-04-02T03:01:30.536Z", + "new_balance":"6295.00", + "value":"-7.10" + } + }, + { + "id":"540cb7e8-50f6-443f-ba7f-6d801688e307", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T06:39:17.404Z", + "completed":"2017-04-03T06:39:17.404Z", + "new_balance":"6291.22", + "value":"-3.78" + } + }, + { + "id":"4693a90e-0c4c-423a-971f-0657e3864165", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:12:20.566Z", + "completed":"2017-04-03T08:12:20.566Z", + "new_balance":"6299.16", + "value":"7.94" + } + }, + { + "id":"171573e9-4271-4da3-896e-604635c2faa3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T12:03:41.362Z", + "completed":"2017-04-03T12:03:41.362Z", + "new_balance":"6296.25", + "value":"-2.91" + } + }, + { + "id":"b2ca0299-aa4e-4147-ba57-3bb23a86a100", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:54:57.911Z", + "completed":"2017-04-03T16:54:57.911Z", + "new_balance":"6292.47", + "value":"-3.78" + } + }, + { + "id":"1d9701f8-025a-4bad-bd23-5185b22259e4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:56:28.505Z", + "completed":"2017-04-03T23:56:28.505Z", + "new_balance":"6304.81", + "value":"12.34" + } + }, + { + "id":"9634c7e9-6a12-4e1f-87a0-9dbf8e3f9e06", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T07:10:37.698Z", + "completed":"2017-04-04T07:10:37.698Z", + "new_balance":"6297.62", + "value":"-7.19" + } + }, + { + "id":"9b971f66-60c0-43f5-8285-240688f6ae63", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T04:59:18.257Z", + "completed":"2017-04-05T04:59:18.257Z", + "new_balance":"6297.16", + "value":"-0.46" + } + }, + { + "id":"90f1d814-ff80-4b22-833c-03f631002e61", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T12:47:59.576Z", + "completed":"2017-04-05T12:47:59.576Z", + "new_balance":"6294.48", + "value":"-2.68" + } + }, + { + "id":"085b7ac7-cda1-4825-bc00-12cf289753ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T07:05:41.855Z", + "completed":"2017-04-07T07:05:41.855Z", + "new_balance":"6291.26", + "value":"-3.22" + } + }, + { + "id":"403f6092-8def-4002-a22a-15df61eef5fb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T22:22:14.208Z", + "completed":"2017-04-07T22:22:14.208Z", + "new_balance":"6289.73", + "value":"-1.53" + } + }, + { + "id":"cb2963e2-8869-4aa7-b928-93ff23c10fbe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T23:38:58.267Z", + "completed":"2017-04-08T23:38:58.267Z", + "new_balance":"6288.83", + "value":"-0.90" + } + }, + { + "id":"b0e5ca8f-edd0-47b3-945e-4f209db34e70", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T17:44:18.341Z", + "completed":"2017-04-09T17:44:18.341Z", + "new_balance":"6288.39", + "value":"-0.44" + } + }, + { + "id":"3fcc0381-c7be-46fe-afed-69ee4b1c9389", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T19:48:00.157Z", + "completed":"2017-04-09T19:48:00.157Z", + "new_balance":"6260.89", + "value":"-27.50" + } + }, + { + "id":"a0a710bf-9387-4ea2-a367-56a74eeed626", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T21:55:41.760Z", + "completed":"2017-04-09T21:55:41.760Z", + "new_balance":"6258.78", + "value":"-2.11" + } + }, + { + "id":"a9424657-47f5-4386-8019-44d587ae9c3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:35:55.830Z", + "completed":"2017-04-10T00:35:55.830Z", + "new_balance":"6254.30", + "value":"-4.48" + } + }, + { + "id":"f992cb50-c7f4-422c-8d7d-6f2c7d7185e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T10:49:04.814Z", + "completed":"2017-04-17T10:49:04.814Z", + "new_balance":"6253.19", + "value":"-1.11" + } + }, + { + "id":"3e1c0bbb-ebab-4608-ae3e-2f4cda7954b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T02:01:36.573Z", + "completed":"2017-04-18T02:01:36.573Z", + "new_balance":"6250.38", + "value":"-2.81" + } + }, + { + "id":"53557d46-70a6-44ce-9c78-667b656148ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T10:23:15.008Z", + "completed":"2017-04-25T10:23:15.008Z", + "new_balance":"6244.98", + "value":"-5.40" + } + }, + { + "id":"213fc4b8-ee8e-4a99-a0e7-456060887594", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T21:35:19.053Z", + "completed":"2017-04-26T21:35:19.053Z", + "new_balance":"6244.54", + "value":"-0.44" + } + }, + { + "id":"ad837cf1-6a3c-4e33-beeb-94576f59067c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T21:49:11.506Z", + "completed":"2017-04-26T21:49:11.506Z", + "new_balance":"6238.72", + "value":"-5.82" + } + }, + { + "id":"3969355f-cb20-4faf-ae80-7a46fd8c549e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T07:12:54.050Z", + "completed":"2017-05-02T07:12:54.050Z", + "new_balance":"6237.57", + "value":"-1.15" + } + }, + { + "id":"0791f32d-2664-44b6-b38b-4675210657db", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:08:08.272Z", + "completed":"2017-05-02T14:08:08.272Z", + "new_balance":"6179.34", + "value":"-58.23" + } + }, + { + "id":"5588064c-1161-4c1e-aae7-5d6306b60187", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T16:59:23.036Z", + "completed":"2017-05-02T16:59:23.036Z", + "new_balance":"6362.04", + "value":"182.70" + } + }, + { + "id":"12e1b530-2e3c-427f-8389-74d95869f29b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T17:55:47.978Z", + "completed":"2017-05-02T17:55:47.978Z", + "new_balance":"6358.60", + "value":"-3.44" + } + }, + { + "id":"b615d88c-dd52-492e-9549-58f0e113016f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T20:25:31.132Z", + "completed":"2017-05-02T20:25:31.132Z", + "new_balance":"6356.28", + "value":"-2.32" + } + }, + { + "id":"dfc210f9-83f7-4be1-a6a0-ae00c63054d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T21:25:40.420Z", + "completed":"2017-05-02T21:25:40.420Z", + "new_balance":"6349.18", + "value":"-7.10" + } + }, + { + "id":"52a810e0-7469-482d-aa06-bf7c392290d4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:24:18.699Z", + "completed":"2017-05-02T23:24:18.699Z", + "new_balance":"6344.03", + "value":"-5.15" + } + }, + { + "id":"82aa7b33-e263-4a6a-9753-3d1d62374c2e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T23:42:14.833Z", + "completed":"2017-05-02T23:42:14.833Z", + "new_balance":"6328.78", + "value":"-15.25" + } + }, + { + "id":"473ece69-2081-4ddb-9df1-7e4407d13e3b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T16:03:15.969Z", + "completed":"2017-05-03T16:03:15.969Z", + "new_balance":"6326.28", + "value":"-2.50" + } + }, + { + "id":"bb7f5902-61c6-4201-b3c6-64f95f54763a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T16:31:33.128Z", + "completed":"2017-05-03T16:31:33.128Z", + "new_balance":"6324.18", + "value":"-2.10" + } + }, + { + "id":"4d85e399-a74f-4e5d-980d-091d0df4d02a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T05:39:03.443Z", + "completed":"2017-05-04T05:39:03.443Z", + "new_balance":"6321.78", + "value":"-2.40" + } + }, + { + "id":"02a0c13f-f035-40d7-9c0f-7992f70f0a60", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T17:04:08.056Z", + "completed":"2017-05-04T17:04:08.056Z", + "new_balance":"6318.45", + "value":"-3.33" + } + }, + { + "id":"8fa32e15-d4f9-4b08-bca6-734120515b16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T05:42:14.131Z", + "completed":"2017-05-05T05:42:14.131Z", + "new_balance":"6311.26", + "value":"-7.19" + } + }, + { + "id":"7e2b74f6-af5d-481e-ad5e-f184836b4a75", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T02:40:10.432Z", + "completed":"2017-05-07T02:40:10.432Z", + "new_balance":"6310.78", + "value":"-0.48" + } + }, + { + "id":"d0955fbc-6353-4798-85f8-8adde88a8a0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T22:19:30.877Z", + "completed":"2017-05-07T22:19:30.877Z", + "new_balance":"6307.75", + "value":"-3.03" + } + }, + { + "id":"7a9c89d9-c4ba-405c-8e65-58d271826fe0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T04:29:48.892Z", + "completed":"2017-05-12T04:29:48.892Z", + "new_balance":"6305.30", + "value":"-2.45" + } + }, + { + "id":"2749733c-81e6-4bb1-9f7e-33c8661edcdb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T10:21:54.066Z", + "completed":"2017-05-12T10:21:54.066Z", + "new_balance":"6302.16", + "value":"-3.14" + } + }, + { + "id":"b093bd97-bb22-4c50-aa2e-61e17d1f74b5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T06:04:19.766Z", + "completed":"2017-05-14T06:04:19.766Z", + "new_balance":"6298.68", + "value":"-3.48" + } + }, + { + "id":"a44f9630-f238-45aa-9656-a912ea713f8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T13:23:00.960Z", + "completed":"2017-05-16T13:23:00.960Z", + "new_balance":"6298.21", + "value":"-0.47" + } + }, + { + "id":"19a8a65d-9ce4-45bf-a1ab-9acf15ee112f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:33:48.286Z", + "completed":"2017-05-18T18:33:48.286Z", + "new_balance":"6297.44", + "value":"-0.77" + } + }, + { + "id":"b87902bd-f44f-444a-b630-720b247f1413", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T05:13:34.151Z", + "completed":"2017-05-20T05:13:34.151Z", + "new_balance":"6301.52", + "value":"4.08" + } + }, + { + "id":"eebda4d7-a286-4914-a302-eefa23723288", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T05:19:55.631Z", + "completed":"2017-05-21T05:19:55.631Z", + "new_balance":"6297.40", + "value":"-4.12" + } + }, + { + "id":"83623599-5b14-4580-aceb-d24a231ecd7c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T10:22:40.110Z", + "completed":"2017-05-21T10:22:40.110Z", + "new_balance":"6290.97", + "value":"-6.43" + } + }, + { + "id":"f41e1b85-f85e-4cb2-9f8b-9d53b79ee3d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T14:08:44.987Z", + "completed":"2017-05-27T14:08:44.987Z", + "new_balance":"6288.42", + "value":"-2.55" + } + }, + { + "id":"04b91dd3-7e13-48de-8608-e9f8cadaf713", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T16:02:03.942Z", + "completed":"2017-05-27T16:02:03.942Z", + "new_balance":"6285.48", + "value":"-2.94" + } + }, + { + "id":"16746968-adf1-4437-9532-6b862fd6c05b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T00:13:44.375Z", + "completed":"2017-06-01T00:13:44.375Z", + "new_balance":"6283.16", + "value":"-2.32" + } + }, + { + "id":"84b5ffd8-f70f-4920-8f92-172ad37cee09", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T01:37:23.270Z", + "completed":"2017-06-01T01:37:23.270Z", + "new_balance":"6278.01", + "value":"-5.15" + } + }, + { + "id":"d5cad1fe-b38d-417b-9bca-0c4f5ce93179", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T11:55:32.699Z", + "completed":"2017-06-01T11:55:32.699Z", + "new_balance":"6219.78", + "value":"-58.23" + } + }, + { + "id":"ee78a4ed-63df-4487-a9d7-0d5c2d6f8957", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:55:18.341Z", + "completed":"2017-06-01T13:55:18.341Z", + "new_balance":"6204.53", + "value":"-15.25" + } + }, + { + "id":"a8cb650d-b428-4345-a409-a12ad4538812", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T18:31:47.076Z", + "completed":"2017-06-01T18:31:47.076Z", + "new_balance":"6387.23", + "value":"182.70" + } + }, + { + "id":"9a517363-9945-440a-bf96-8e073d534a5a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T20:17:09.358Z", + "completed":"2017-06-01T20:17:09.358Z", + "new_balance":"6383.79", + "value":"-3.44" + } + }, + { + "id":"15b4ce2c-082b-4b51-ba0c-866bc0c22f2d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T19:47:41.833Z", + "completed":"2017-06-04T19:47:41.833Z", + "new_balance":"6376.69", + "value":"-7.10" + } + }, + { + "id":"54b47bd3-891a-48d3-9eb2-9f7f85820c51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:50:00.127Z", + "completed":"2017-06-04T20:50:00.127Z", + "new_balance":"6364.73", + "value":"-11.96" + } + }, + { + "id":"9cf319aa-357f-473d-a387-dc814fa9345e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T17:27:37.717Z", + "completed":"2017-06-11T17:27:37.717Z", + "new_balance":"6361.43", + "value":"-3.30" + } + }, + { + "id":"5f7391c9-4486-486b-be70-1568754b734e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T00:42:01.082Z", + "completed":"2017-06-12T00:42:01.082Z", + "new_balance":"6360.18", + "value":"-1.25" + } + }, + { + "id":"d9b2041e-4458-41e5-8863-1ba49bbdaa1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T12:05:48.494Z", + "completed":"2017-06-13T12:05:48.494Z", + "new_balance":"6359.42", + "value":"-0.76" + } + }, + { + "id":"af919ec3-7ffc-4c88-91b2-a76cd9b867a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:03:07.712Z", + "completed":"2017-06-13T17:03:07.712Z", + "new_balance":"6352.12", + "value":"-7.30" + } + }, + { + "id":"23a45bd1-16c9-4158-8cea-00dba94a31e9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T23:05:28.616Z", + "completed":"2017-06-16T23:05:28.616Z", + "new_balance":"6348.08", + "value":"-4.04" + } + }, + { + "id":"0acd092f-1b48-4012-87a6-34ce6eeb3b3a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T00:23:04.641Z", + "completed":"2017-06-17T00:23:04.641Z", + "new_balance":"6340.78", + "value":"-7.30" + } + }, + { + "id":"973bb89a-4d50-4e4f-ae1b-ae81c9048a1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T17:13:34.605Z", + "completed":"2017-06-17T17:13:34.605Z", + "new_balance":"6340.38", + "value":"-0.40" + } + }, + { + "id":"27b098a8-a633-4789-9cfb-7ae5488ecd82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:48:16.528Z", + "completed":"2017-06-18T05:48:16.528Z", + "new_balance":"6335.11", + "value":"-5.27" + } + }, + { + "id":"bb9d0a0d-9c19-4a11-aec8-07556278e9a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:56:12.585Z", + "completed":"2017-06-19T00:56:12.585Z", + "new_balance":"6330.84", + "value":"-4.27" + } + }, + { + "id":"b4898f7e-9bda-4e8f-bcc7-f3560259ac0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:47:14.146Z", + "completed":"2017-06-19T06:47:14.146Z", + "new_balance":"6325.57", + "value":"-5.27" + } + }, + { + "id":"2dd80e3f-e772-4f3a-98b4-cc0cc45160a9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T14:09:11.185Z", + "completed":"2017-06-21T14:09:11.185Z", + "new_balance":"6325.03", + "value":"-0.54" + } + }, + { + "id":"5a3697cb-7c81-4e58-b80a-d55a7fadb62f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T21:54:07.040Z", + "completed":"2017-06-21T21:54:07.040Z", + "new_balance":"6318.71", + "value":"-6.32" + } + }, + { + "id":"7f6469ee-ef60-43c7-8915-5ca850ffadb8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T01:52:00.611Z", + "completed":"2017-06-23T01:52:00.611Z", + "new_balance":"6316.46", + "value":"-2.25" + } + }, + { + "id":"ad7d415c-ba39-4659-bdab-8437b8a77f6c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T04:20:56.343Z", + "completed":"2017-06-23T04:20:56.343Z", + "new_balance":"6315.69", + "value":"-0.77" + } + }, + { + "id":"ebfe2bf8-3230-4ae1-b600-843beb0a06b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T05:43:41.139Z", + "completed":"2017-06-24T05:43:41.139Z", + "new_balance":"6311.43", + "value":"-4.26" + } + }, + { + "id":"f13d34c7-132f-429d-8862-3f20c5884f8d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T22:38:04.924Z", + "completed":"2017-06-24T22:38:04.924Z", + "new_balance":"6310.38", + "value":"-1.05" + } + }, + { + "id":"6544993e-9da3-4054-991c-ec57994c7600", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:39:03.602Z", + "completed":"2017-06-28T01:39:03.602Z", + "new_balance":"6300.59", + "value":"-9.79" + } + }, + { + "id":"2fb4d254-1f3c-4223-a48b-066a8d4bdfcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T11:04:23.121Z", + "completed":"2017-06-28T11:04:23.121Z", + "new_balance":"6300.07", + "value":"-0.52" + } + }, + { + "id":"98404e19-9263-4d08-ba9e-6f807f610c31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T20:00:24.083Z", + "completed":"2017-06-28T20:00:24.083Z", + "new_balance":"6295.25", + "value":"-4.82" + } + }, + { + "id":"4a7f4277-43ef-47ec-91b5-f415a3aab199", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T23:19:18.755Z", + "completed":"2017-06-28T23:19:18.755Z", + "new_balance":"6294.73", + "value":"-0.52" + } + }, + { + "id":"38246643-803b-4a63-b63b-3953950055f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T03:08:04.961Z", + "completed":"2017-06-29T03:08:04.961Z", + "new_balance":"6289.57", + "value":"-5.16" + } + }, + { + "id":"93fc932a-3404-4e9e-8534-536e86451dff", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T11:27:52.865Z", + "completed":"2017-06-29T11:27:52.865Z", + "new_balance":"6288.81", + "value":"-0.76" + } + }, + { + "id":"ee3277d3-7784-4702-9353-d853de5e6a92", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T15:41:47.764Z", + "completed":"2017-06-29T15:41:47.764Z", + "new_balance":"6284.66", + "value":"-4.15" + } + }, + { + "id":"31c6c7a2-26c3-4be5-8e8e-12f7a1e94264", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T17:19:33.798Z", + "completed":"2017-06-29T17:19:33.798Z", + "new_balance":"6278.34", + "value":"-6.32" + } + }, + { + "id":"5d174b9c-65ca-4747-b2bb-56952e6f5503", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:47:20.863Z", + "completed":"2017-06-29T21:47:20.863Z", + "new_balance":"6274.05", + "value":"-4.29" + } + }, + { + "id":"5359373f-ae14-473f-9124-29dd8e0cd52b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T23:39:34.330Z", + "completed":"2017-06-29T23:39:34.330Z", + "new_balance":"6267.09", + "value":"-6.96" + } + }, + { + "id":"bc4bb47b-3c4f-453f-891f-52b0265a0ab6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T05:11:13.374Z", + "completed":"2017-06-30T05:11:13.374Z", + "new_balance":"6266.50", + "value":"-0.59" + } + }, + { + "id":"090f2da9-c59e-43e2-9789-5859cad893b6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T10:12:32.305Z", + "completed":"2017-06-30T10:12:32.305Z", + "new_balance":"6261.89", + "value":"-4.61" + } + }, + { + "id":"b0feaff0-7340-43db-9c5b-696e7ff71830", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T13:36:48.202Z", + "completed":"2017-06-30T13:36:48.202Z", + "new_balance":"6258.34", + "value":"-3.55" + } + }, + { + "id":"62edc59f-633a-4ba5-952a-ca8e78fc2553", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T16:59:36.670Z", + "completed":"2017-06-30T16:59:36.670Z", + "new_balance":"6257.43", + "value":"-0.91" + } + }, + { + "id":"605173a2-a01e-41f9-95da-2818dc3413ae", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T01:24:35.908Z", + "completed":"2017-07-01T01:24:35.908Z", + "new_balance":"6254.37", + "value":"-3.06" + } + }, + { + "id":"69333575-b121-442b-8222-cfd7c7164087", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T01:27:06.485Z", + "completed":"2017-07-01T01:27:06.485Z", + "new_balance":"6250.93", + "value":"-3.44" + } + }, + { + "id":"16be6e66-13a5-4207-896f-b8640dd52863", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T03:24:35.939Z", + "completed":"2017-07-01T03:24:35.939Z", + "new_balance":"6223.43", + "value":"-27.50" + } + }, + { + "id":"9b668d13-fe6f-499b-ae95-45a5cde1de95", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T12:07:30.937Z", + "completed":"2017-07-01T12:07:30.937Z", + "new_balance":"6221.11", + "value":"-2.32" + } + }, + { + "id":"05c9d554-85ba-4d91-b9fd-bbdb1b764ac7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T12:58:35.112Z", + "completed":"2017-07-01T12:58:35.112Z", + "new_balance":"6218.37", + "value":"-2.74" + } + }, + { + "id":"bae2dc3c-8ac8-4fa8-a368-0800f252e1c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T13:13:01.307Z", + "completed":"2017-07-01T13:13:01.307Z", + "new_balance":"6214.93", + "value":"-3.44" + } + }, + { + "id":"cbb94b62-48c6-4c1d-b192-b44ab47f060d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T14:36:52.403Z", + "completed":"2017-07-01T14:36:52.403Z", + "new_balance":"6156.70", + "value":"-58.23" + } + }, + { + "id":"034e7208-5f5a-4120-a0c8-1cb7ee1ac9a8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T15:59:12.693Z", + "completed":"2017-07-01T15:59:12.693Z", + "new_balance":"6155.39", + "value":"-1.31" + } + }, + { + "id":"7e1179fc-505b-48a7-99d5-75a0979acaab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T17:32:28.460Z", + "completed":"2017-07-01T17:32:28.460Z", + "new_balance":"6150.24", + "value":"-5.15" + } + }, + { + "id":"d1178571-4001-4d5f-a68a-14d17185ae29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T23:19:17.075Z", + "completed":"2017-07-01T23:19:17.075Z", + "new_balance":"6134.99", + "value":"-15.25" + } + }, + { + "id":"73d87a75-a91e-43b4-8012-f293e140cc65", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T02:19:33.210Z", + "completed":"2017-07-02T02:19:33.210Z", + "new_balance":"6127.89", + "value":"-7.10" + } + }, + { + "id":"3fe5b9ef-5e7b-418d-9be2-f0006251b8b9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T20:28:00.270Z", + "completed":"2017-07-03T20:28:00.270Z", + "new_balance":"6117.42", + "value":"-10.47" + } + }, + { + "id":"3c68c259-c8be-47a3-b5cb-4c42d64687fc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T18:12:03.893Z", + "completed":"2017-07-04T18:12:03.893Z", + "new_balance":"6115.64", + "value":"-1.78" + } + }, + { + "id":"99463a5d-5286-41c4-b36f-aa46ef9c1ec3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T04:55:59.576Z", + "completed":"2017-07-05T04:55:59.576Z", + "new_balance":"6106.00", + "value":"-9.64" + } + }, + { + "id":"d787bbf6-b259-4532-92f7-4cc843e12473", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T17:33:11.456Z", + "completed":"2017-07-05T17:33:11.456Z", + "new_balance":"6098.81", + "value":"-7.19" + } + }, + { + "id":"07f73938-eab2-43db-a1b6-6193ebfa9fd6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T16:50:04.157Z", + "completed":"2017-07-06T16:50:04.157Z", + "new_balance":"6098.35", + "value":"-0.46" + } + }, + { + "id":"c82e5eae-2fb4-4c04-bc32-86f3fb1ab6bf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T13:16:03.702Z", + "completed":"2017-07-11T13:16:03.702Z", + "new_balance":"6095.67", + "value":"-2.68" + } + }, + { + "id":"0e352e47-55c7-4843-954e-e8b6c9893084", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:42:50.710Z", + "completed":"2017-07-12T10:42:50.710Z", + "new_balance":"6092.45", + "value":"-3.22" + } + }, + { + "id":"e0914fef-989a-4d69-b8bb-f77ef3fa4e2a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T15:19:04.139Z", + "completed":"2017-07-14T15:19:04.139Z", + "new_balance":"6090.92", + "value":"-1.53" + } + }, + { + "id":"4468722f-b725-41ef-a59c-48d85af66f5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T13:00:01.045Z", + "completed":"2017-07-16T13:00:01.045Z", + "new_balance":"6090.02", + "value":"-0.90" + } + }, + { + "id":"a6015c73-f404-4240-8fd1-34f7f1f0e044", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T11:54:57.433Z", + "completed":"2017-07-18T11:54:57.433Z", + "new_balance":"6087.91", + "value":"-2.11" + } + }, + { + "id":"40db28cd-1c52-4e3c-aff4-d6cc9bfeea13", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T16:29:18.463Z", + "completed":"2017-07-20T16:29:18.463Z", + "new_balance":"6060.41", + "value":"-27.50" + } + }, + { + "id":"13f1912b-8912-4f01-a952-d98c5da36847", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T21:06:49.107Z", + "completed":"2017-07-20T21:06:49.107Z", + "new_balance":"6059.97", + "value":"-0.44" + } + }, + { + "id":"018d857e-b21d-456c-8286-90df3d0f0526", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T02:04:56.572Z", + "completed":"2017-07-24T02:04:56.572Z", + "new_balance":"6058.86", + "value":"-1.11" + } + }, + { + "id":"73a684ec-86a5-43f4-8a53-04828f2f264c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T17:23:57.137Z", + "completed":"2017-07-24T17:23:57.137Z", + "new_balance":"6054.38", + "value":"-4.48" + } + }, + { + "id":"d0e2582d-12f4-4c52-a123-4c336d209b0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:25:14.908Z", + "completed":"2017-07-25T03:25:14.908Z", + "new_balance":"6048.98", + "value":"-5.40" + } + }, + { + "id":"b45e9991-8e5c-420e-9783-248545632770", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T07:35:36.699Z", + "completed":"2017-07-25T07:35:36.699Z", + "new_balance":"6046.17", + "value":"-2.81" + } + }, + { + "id":"89bb5c1d-2e59-4c2c-b9df-9f8c7b9aa4e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T07:30:11.146Z", + "completed":"2017-07-26T07:30:11.146Z", + "new_balance":"6040.35", + "value":"-5.82" + } + }, + { + "id":"fa378fd0-4318-421b-89d5-446c5789f5c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T09:07:20.261Z", + "completed":"2017-07-27T09:07:20.261Z", + "new_balance":"6039.91", + "value":"-0.44" + } + }, + { + "id":"d12f8ec0-5883-4f4d-ac36-5509aaa4397e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:11:25.439Z", + "completed":"2017-08-01T03:11:25.439Z", + "new_balance":"6222.61", + "value":"182.70" + } + }, + { + "id":"94bd15e8-115a-4764-8122-79771978e0f0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T06:04:37.476Z", + "completed":"2017-08-01T06:04:37.476Z", + "new_balance":"6219.17", + "value":"-3.44" + } + }, + { + "id":"29c5f44b-2c9b-4e71-8cd8-41facc4e1207", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T08:03:55.121Z", + "completed":"2017-08-01T08:03:55.121Z", + "new_balance":"6214.02", + "value":"-5.15" + } + }, + { + "id":"7744597a-4acd-44b2-855e-cabfcd792169", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T08:42:52.896Z", + "completed":"2017-08-01T08:42:52.896Z", + "new_balance":"6155.79", + "value":"-58.23" + } + }, + { + "id":"15e513f5-981e-42f5-9d42-4f76ea1e20ba", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T13:43:36.294Z", + "completed":"2017-08-01T13:43:36.294Z", + "new_balance":"6140.54", + "value":"-15.25" + } + }, + { + "id":"c6b11810-2354-4eb0-a732-98eab2f11004", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T19:33:54.939Z", + "completed":"2017-08-01T19:33:54.939Z", + "new_balance":"6138.22", + "value":"-2.32" + } + }, + { + "id":"20d44006-4206-40d2-b6b1-0ca091ea4ee2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T19:49:26.600Z", + "completed":"2017-08-02T19:49:26.600Z", + "new_balance":"6131.12", + "value":"-7.10" + } + }, + { + "id":"8e6955db-e488-46a6-a8e7-c23589ed3e5b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T17:11:02.892Z", + "completed":"2017-08-03T17:11:02.892Z", + "new_balance":"6130.66", + "value":"-0.46" + } + }, + { + "id":"a2f03abd-8a2e-4199-82f5-801dbc37b778", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T11:31:10.594Z", + "completed":"2017-08-04T11:31:10.594Z", + "new_balance":"6127.74", + "value":"-2.92" + } + }, + { + "id":"c2964d04-d76e-4e2f-a3ef-fb07ebfa1a9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:20:34.287Z", + "completed":"2017-08-07T09:20:34.287Z", + "new_balance":"6125.24", + "value":"-2.50" + } + }, + { + "id":"938edaae-3235-4fcd-99ee-ff61c6eb5f16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T01:40:58.764Z", + "completed":"2017-08-09T01:40:58.764Z", + "new_balance":"6122.84", + "value":"-2.40" + } + }, + { + "id":"0d6b9e8a-5337-4ae8-bf22-92515253ea34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T12:49:58.846Z", + "completed":"2017-08-09T12:49:58.846Z", + "new_balance":"6119.51", + "value":"-3.33" + } + }, + { + "id":"c9933ab0-8838-469e-a1b8-0329614cb355", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T08:34:50.446Z", + "completed":"2017-08-10T08:34:50.446Z", + "new_balance":"6112.32", + "value":"-7.19" + } + }, + { + "id":"aab17adc-dc09-4570-a304-e74e19eb6c83", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T20:45:20.600Z", + "completed":"2017-08-14T20:45:20.600Z", + "new_balance":"6111.84", + "value":"-0.48" + } + }, + { + "id":"5da2ebfe-b2c5-41ee-a5e2-f3011cc5978b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T08:26:05.689Z", + "completed":"2017-08-15T08:26:05.689Z", + "new_balance":"6108.62", + "value":"-3.22" + } + }, + { + "id":"d5637977-dee3-4c6c-adc1-4253d0643afd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T16:45:11.584Z", + "completed":"2017-08-15T16:45:11.584Z", + "new_balance":"6105.59", + "value":"-3.03" + } + }, + { + "id":"01c3ccc6-5962-4903-8e79-0638b87eca56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T00:40:29.124Z", + "completed":"2017-08-16T00:40:29.124Z", + "new_balance":"6102.45", + "value":"-3.14" + } + }, + { + "id":"e3993d87-190d-4269-830a-261f87c35b9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T00:16:12.920Z", + "completed":"2017-08-17T00:16:12.920Z", + "new_balance":"6098.97", + "value":"-3.48" + } + }, + { + "id":"8e6eafbf-5892-4e1b-b922-5a4c581946b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T02:14:21.901Z", + "completed":"2017-08-20T02:14:21.901Z", + "new_balance":"6098.50", + "value":"-0.47" + } + }, + { + "id":"7b9edab0-768a-42f4-b672-c699c8a2d296", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T12:12:16.013Z", + "completed":"2017-08-20T12:12:16.013Z", + "new_balance":"6097.73", + "value":"-0.77" + } + }, + { + "id":"701671a9-2b85-4d9e-a7d4-679f37156861", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T22:40:09.923Z", + "completed":"2017-08-22T22:40:09.923Z", + "new_balance":"6101.81", + "value":"4.08" + } + }, + { + "id":"5fb2d462-4456-48ac-a5c8-7357ed27af93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T06:41:22.292Z", + "completed":"2017-08-23T06:41:22.292Z", + "new_balance":"6095.38", + "value":"-6.43" + } + }, + { + "id":"3e796044-e275-413e-a37e-44e2592b5d1b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T18:58:00.376Z", + "completed":"2017-08-23T18:58:00.376Z", + "new_balance":"6091.26", + "value":"-4.12" + } + }, + { + "id":"385da43e-27d3-43ca-846c-0048c660826d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T14:42:31.291Z", + "completed":"2017-08-28T14:42:31.291Z", + "new_balance":"6088.32", + "value":"-2.94" + } + }, + { + "id":"241a18f9-066b-43c2-be5a-5b10b9736392", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T19:03:27.751Z", + "completed":"2017-08-28T19:03:27.751Z", + "new_balance":"6085.77", + "value":"-2.55" + } + }, + { + "id":"69a48daa-9c49-4e87-be8f-2a0a6cfd1a5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T04:15:59.022Z", + "completed":"2017-09-01T04:15:59.022Z", + "new_balance":"6080.62", + "value":"-5.15" + } + }, + { + "id":"f127f78d-d30d-42fa-943b-dfe7a9256025", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:46:40.742Z", + "completed":"2017-09-01T14:46:40.742Z", + "new_balance":"6022.39", + "value":"-58.23" + } + }, + { + "id":"fef37b76-0d4f-4f77-95c3-f0caa1ae1a52", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T16:23:29.489Z", + "completed":"2017-09-01T16:23:29.489Z", + "new_balance":"6018.95", + "value":"-3.44" + } + }, + { + "id":"a15e2f33-af02-4d00-bc5e-00c7aca15a38", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T18:27:19.542Z", + "completed":"2017-09-01T18:27:19.542Z", + "new_balance":"6016.63", + "value":"-2.32" + } + }, + { + "id":"9ed4905a-7f31-47d0-991f-4d2cb4cbdd41", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T20:59:28.872Z", + "completed":"2017-09-01T20:59:28.872Z", + "new_balance":"6199.33", + "value":"182.70" + } + }, + { + "id":"2b6dc483-379b-4707-b717-73856d7eda31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:20:56.920Z", + "completed":"2017-09-01T21:20:56.920Z", + "new_balance":"6184.08", + "value":"-15.25" + } + }, + { + "id":"c4dea2da-8cb7-4e03-87c2-8eca2db1f2ec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T08:01:34.561Z", + "completed":"2017-09-02T08:01:34.561Z", + "new_balance":"6176.98", + "value":"-7.10" + } + }, + { + "id":"7045ef4a-d639-4058-8234-a2a8fc3da62c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T01:57:36.290Z", + "completed":"2017-09-04T01:57:36.290Z", + "new_balance":"6169.68", + "value":"-7.30" + } + }, + { + "id":"bef9d6af-85a8-4d06-8abe-b6497afebaf6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T07:17:04.085Z", + "completed":"2017-09-04T07:17:04.085Z", + "new_balance":"6168.92", + "value":"-0.76" + } + }, + { + "id":"02dccfeb-e7ba-4970-ab0f-56c091360645", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T07:54:52.944Z", + "completed":"2017-09-04T07:54:52.944Z", + "new_balance":"6165.62", + "value":"-3.30" + } + }, + { + "id":"83e2bdbe-2d8c-486e-9ba1-499b265944ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T23:35:18.904Z", + "completed":"2017-09-04T23:35:18.904Z", + "new_balance":"6164.37", + "value":"-1.25" + } + }, + { + "id":"aa6f1657-c1ea-4936-890b-aa98ec818530", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T02:09:45.473Z", + "completed":"2017-09-05T02:09:45.473Z", + "new_balance":"6163.97", + "value":"-0.40" + } + }, + { + "id":"6c241399-96de-4160-945a-6fbbbd3aac7d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T03:57:06.157Z", + "completed":"2017-09-05T03:57:06.157Z", + "new_balance":"6159.93", + "value":"-4.04" + } + }, + { + "id":"92dda6e8-eea5-4890-8d73-2861025b7d67", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T01:13:13.182Z", + "completed":"2017-09-06T01:13:13.182Z", + "new_balance":"6152.63", + "value":"-7.30" + } + }, + { + "id":"e9bb1633-5042-49a6-bc22-252731b69bf8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T10:19:26.842Z", + "completed":"2017-09-06T10:19:26.842Z", + "new_balance":"6147.36", + "value":"-5.27" + } + }, + { + "id":"3e2fc611-76bb-4c49-975b-866face8bd34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T18:24:44.211Z", + "completed":"2017-09-08T18:24:44.211Z", + "new_balance":"6143.09", + "value":"-4.27" + } + }, + { + "id":"23956376-3d16-421c-a678-fbd7ac620d7a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:31:25.578Z", + "completed":"2017-09-08T22:31:25.578Z", + "new_balance":"6137.82", + "value":"-5.27" + } + }, + { + "id":"9543f619-50af-44fb-af8f-939e337c0949", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T03:12:28.586Z", + "completed":"2017-09-10T03:12:28.586Z", + "new_balance":"6137.28", + "value":"-0.54" + } + }, + { + "id":"717ef394-debd-4859-b54a-c9adae7878c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T04:55:23.261Z", + "completed":"2017-09-10T04:55:23.261Z", + "new_balance":"6130.96", + "value":"-6.32" + } + }, + { + "id":"099575fb-0b5e-4d13-bd38-519b2b88a607", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T12:34:45.051Z", + "completed":"2017-09-11T12:34:45.051Z", + "new_balance":"6130.19", + "value":"-0.77" + } + }, + { + "id":"473b819e-6adf-4128-abf0-02b5980492e6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T07:57:31.918Z", + "completed":"2017-09-12T07:57:31.918Z", + "new_balance":"6129.14", + "value":"-1.05" + } + }, + { + "id":"7cb0eefe-9259-4397-be64-bd9f46bd5a99", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T21:55:37.705Z", + "completed":"2017-09-12T21:55:37.705Z", + "new_balance":"6126.89", + "value":"-2.25" + } + }, + { + "id":"9af1eabd-992c-4fca-a35d-d6562f07f691", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T14:56:25.791Z", + "completed":"2017-09-13T14:56:25.791Z", + "new_balance":"6122.63", + "value":"-4.26" + } + }, + { + "id":"f2ef6a01-5b06-4cad-911e-976fa272271a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T23:13:11.380Z", + "completed":"2017-09-16T23:13:11.380Z", + "new_balance":"6122.11", + "value":"-0.52" + } + }, + { + "id":"fdb225c7-2f50-48b3-9e06-788c78319280", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T04:35:03.258Z", + "completed":"2017-09-17T04:35:03.258Z", + "new_balance":"6117.29", + "value":"-4.82" + } + }, + { + "id":"81f2462e-e169-4859-98b2-cac20ada8d51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T04:57:50.153Z", + "completed":"2017-09-17T04:57:50.153Z", + "new_balance":"6107.50", + "value":"-9.79" + } + }, + { + "id":"3eebbf44-9323-4152-b47a-8189102deb92", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T20:56:27.642Z", + "completed":"2017-09-18T20:56:27.642Z", + "new_balance":"6106.98", + "value":"-0.52" + } + }, + { + "id":"e1bf2d08-d25c-4aed-8ff3-3ea5ec514794", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T05:51:48.134Z", + "completed":"2017-09-19T05:51:48.134Z", + "new_balance":"6100.66", + "value":"-6.32" + } + }, + { + "id":"1b55aa6c-b302-41b0-8c82-d65de3d93ad5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T06:30:06.532Z", + "completed":"2017-09-19T06:30:06.532Z", + "new_balance":"6096.37", + "value":"-4.29" + } + }, + { + "id":"385ad1e7-5e81-4e47-95fa-0f18d656598f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T23:15:14.632Z", + "completed":"2017-09-19T23:15:14.632Z", + "new_balance":"6092.22", + "value":"-4.15" + } + }, + { + "id":"60dddfab-6ac6-4e2b-9ccf-9ecb7ed06471", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T12:03:31.380Z", + "completed":"2017-09-20T12:03:31.380Z", + "new_balance":"6085.26", + "value":"-6.96" + } + }, + { + "id":"699fead9-5471-4deb-be41-0ae008ceee29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T17:34:44.684Z", + "completed":"2017-09-20T17:34:44.684Z", + "new_balance":"6080.10", + "value":"-5.16" + } + }, + { + "id":"91e633c0-e457-455c-9f5f-71bdcebdba5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T10:48:42.736Z", + "completed":"2017-09-21T10:48:42.736Z", + "new_balance":"6079.34", + "value":"-0.76" + } + }, + { + "id":"b9d94532-d468-4f74-a2a2-bb167f967ef0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T12:45:49.271Z", + "completed":"2017-09-21T12:45:49.271Z", + "new_balance":"6078.75", + "value":"-0.59" + } + }, + { + "id":"e4da00c4-fa56-45e5-9af8-e27dab669afa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T07:25:38.217Z", + "completed":"2017-09-23T07:25:38.217Z", + "new_balance":"6077.84", + "value":"-0.91" + } + }, + { + "id":"8c0ca079-0528-4453-9441-aacc5e15e7f3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T15:55:47.388Z", + "completed":"2017-09-23T15:55:47.388Z", + "new_balance":"6073.23", + "value":"-4.61" + } + }, + { + "id":"afc8be26-c43e-48a9-a0b5-ee9a13b711b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T01:57:44.839Z", + "completed":"2017-09-24T01:57:44.839Z", + "new_balance":"6069.68", + "value":"-3.55" + } + }, + { + "id":"ec06a796-ac3b-4ea5-ac02-358dbfbc0662", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T08:30:19.781Z", + "completed":"2017-09-25T08:30:19.781Z", + "new_balance":"6068.37", + "value":"-1.31" + } + }, + { + "id":"6c6a894e-96a8-45c9-964e-50682b99d5d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T16:44:13.588Z", + "completed":"2017-09-25T16:44:13.588Z", + "new_balance":"6065.31", + "value":"-3.06" + } + }, + { + "id":"d90b7446-bd8b-43d8-bfa0-732bcd882046", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T21:10:15.077Z", + "completed":"2017-09-27T21:10:15.077Z", + "new_balance":"6037.81", + "value":"-27.50" + } + }, + { + "id":"a840402c-e518-4407-a628-1813c2a647b2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T21:39:33.645Z", + "completed":"2017-09-29T21:39:33.645Z", + "new_balance":"6035.07", + "value":"-2.74" + } + }, + { + "id":"3e44cc22-4e42-4995-a410-33184f45562d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T00:51:30.291Z", + "completed":"2017-10-01T00:51:30.291Z", + "new_balance":"5976.84", + "value":"-58.23" + } + }, + { + "id":"b04e89e7-8bd5-4b19-ae5d-49b336640f96", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T14:44:43.632Z", + "completed":"2017-10-01T14:44:43.632Z", + "new_balance":"5974.52", + "value":"-2.32" + } + }, + { + "id":"457286a0-7686-417c-bc73-867e1288e094", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T16:57:09.444Z", + "completed":"2017-10-01T16:57:09.444Z", + "new_balance":"5959.27", + "value":"-15.25" + } + }, + { + "id":"6a7fa085-bb77-4dca-8963-511526eda666", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T19:08:48.907Z", + "completed":"2017-10-01T19:08:48.907Z", + "new_balance":"5954.12", + "value":"-5.15" + } + }, + { + "id":"7128276f-d213-4568-9856-770f8c9cca5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T14:04:01.294Z", + "completed":"2017-10-02T14:04:01.294Z", + "new_balance":"5947.02", + "value":"-7.10" + } + }, + { + "id":"78d05ba7-8375-44d4-a4dd-0879c7ec5cc7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T21:43:41.812Z", + "completed":"2017-10-02T21:43:41.812Z", + "new_balance":"5937.33", + "value":"-9.69" + } + }, + { + "id":"b1694f20-7b29-40f0-af53-96c302b44dab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:23:54.628Z", + "completed":"2017-10-03T05:23:54.628Z", + "new_balance":"5924.23", + "value":"-13.10" + } + }, + { + "id":"676ebb1b-d4a7-4289-ac0e-2a930ff2fb02", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T06:28:56.784Z", + "completed":"2017-10-03T06:28:56.784Z", + "new_balance":"5920.45", + "value":"-3.78" + } + }, + { + "id":"e63f04a7-afce-4a1f-b4e9-4e19c754a595", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:18:34.218Z", + "completed":"2017-10-03T08:18:34.218Z", + "new_balance":"5863.64", + "value":"-56.81" + } + }, + { + "id":"b0b6e6ce-47aa-48a2-a15a-b8d15e74ef82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T18:09:19.384Z", + "completed":"2017-10-03T18:09:19.384Z", + "new_balance":"5860.73", + "value":"-2.91" + } + }, + { + "id":"87290ffc-6e23-4306-b953-488f5c9388c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T21:41:07.128Z", + "completed":"2017-10-03T21:41:07.128Z", + "new_balance":"5833.23", + "value":"-27.50" + } + }, + { + "id":"97a64734-3574-43d5-9430-98503996c51b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T00:23:28.511Z", + "completed":"2017-10-04T00:23:28.511Z", + "new_balance":"5826.04", + "value":"-7.19" + } + }, + { + "id":"9575072e-e237-478b-a7ac-e99e66f7b5a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T00:03:57.109Z", + "completed":"2017-10-05T00:03:57.109Z", + "new_balance":"5825.58", + "value":"-0.46" + } + }, + { + "id":"cf1cec86-5dde-4ac9-a763-d90f3ce89d26", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T04:14:36.728Z", + "completed":"2017-10-05T04:14:36.728Z", + "new_balance":"5822.90", + "value":"-2.68" + } + }, + { + "id":"f6eb40b0-1f49-4141-85e8-104f057b3fac", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T03:02:16.694Z", + "completed":"2017-10-07T03:02:16.694Z", + "new_balance":"5821.37", + "value":"-1.53" + } + }, + { + "id":"1160bd49-d874-43bb-b887-d21015ca5365", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T06:02:16.551Z", + "completed":"2017-10-07T06:02:16.551Z", + "new_balance":"5818.15", + "value":"-3.22" + } + }, + { + "id":"abc6c8eb-f09c-4bf3-9122-f22009da357b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T17:12:09.605Z", + "completed":"2017-10-08T17:12:09.605Z", + "new_balance":"5817.25", + "value":"-0.90" + } + }, + { + "id":"b1108899-98ce-4934-818a-6618eff97ea0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T03:58:00.777Z", + "completed":"2017-10-09T03:58:00.777Z", + "new_balance":"5816.81", + "value":"-0.44" + } + }, + { + "id":"6156fcc4-2b43-4e75-a850-d914fa2be0c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T09:02:41.749Z", + "completed":"2017-10-09T09:02:41.749Z", + "new_balance":"5814.70", + "value":"-2.11" + } + }, + { + "id":"6874c262-d8fb-485e-abd3-896478bf79a0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T10:25:15.397Z", + "completed":"2017-10-09T10:25:15.397Z", + "new_balance":"5787.20", + "value":"-27.50" + } + }, + { + "id":"203f3ac3-5fa0-438b-80e9-a0ecfa1f7c25", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T21:37:25.136Z", + "completed":"2017-10-10T21:37:25.136Z", + "new_balance":"5782.72", + "value":"-4.48" + } + }, + { + "id":"f798f713-3ed5-412a-a98a-9b2bbdaa7806", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T23:02:42.926Z", + "completed":"2017-10-17T23:02:42.926Z", + "new_balance":"5781.61", + "value":"-1.11" + } + }, + { + "id":"ade42c3b-f832-4686-ae04-b7d20fa7d5fa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T12:25:13.442Z", + "completed":"2017-10-18T12:25:13.442Z", + "new_balance":"5778.80", + "value":"-2.81" + } + }, + { + "id":"dc24d375-718d-468d-99f8-8bdd13f5cfbb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T18:31:27.224Z", + "completed":"2017-10-25T18:31:27.224Z", + "new_balance":"5773.40", + "value":"-5.40" + } + }, + { + "id":"f51cd947-c7f9-4ceb-953f-6260300dc331", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T01:46:53.124Z", + "completed":"2017-10-26T01:46:53.124Z", + "new_balance":"5767.58", + "value":"-5.82" + } + }, + { + "id":"e3eca82b-d891-46af-8ff0-1bf73c3760a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T23:16:01.555Z", + "completed":"2017-10-26T23:16:01.555Z", + "new_balance":"5767.14", + "value":"-0.44" + } + }, + { + "id":"95ee96a7-11bf-4552-ac98-edcba87b0ac2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T06:48:30.380Z", + "completed":"2017-11-02T06:48:30.380Z", + "new_balance":"5761.99", + "value":"-5.15" + } + }, + { + "id":"c19049d4-5c5e-4bcd-9da3-91dd2cf70ab0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T12:48:59.180Z", + "completed":"2017-11-02T12:48:59.180Z", + "new_balance":"5760.84", + "value":"-1.15" + } + }, + { + "id":"cdb3d772-199d-4a2a-bb42-1c9411192d10", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T13:43:22.085Z", + "completed":"2017-11-02T13:43:22.085Z", + "new_balance":"5757.40", + "value":"-3.44" + } + }, + { + "id":"6b72fc06-15f6-43f4-ade4-ba8d7fdb61d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T13:49:12.519Z", + "completed":"2017-11-02T13:49:12.519Z", + "new_balance":"5750.30", + "value":"-7.10" + } + }, + { + "id":"a2f4bd59-4c94-4fc9-9d97-34d9338fac15", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T13:59:45.154Z", + "completed":"2017-11-02T13:59:45.154Z", + "new_balance":"5747.98", + "value":"-2.32" + } + }, + { + "id":"088e6609-4020-4a82-9d1f-c8081df37c05", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T17:00:14.946Z", + "completed":"2017-11-02T17:00:14.946Z", + "new_balance":"5930.68", + "value":"182.70" + } + }, + { + "id":"2d4670f1-1d17-42f6-b4b5-0f9c76471504", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T18:59:05.513Z", + "completed":"2017-11-02T18:59:05.513Z", + "new_balance":"5915.43", + "value":"-15.25" + } + }, + { + "id":"205dadf1-be9b-4eb6-a47e-66c26e666a8c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T21:35:40.862Z", + "completed":"2017-11-02T21:35:40.862Z", + "new_balance":"5857.20", + "value":"-58.23" + } + }, + { + "id":"6b7011be-1154-4724-b666-ab8ae4903630", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T04:11:07.008Z", + "completed":"2017-11-06T04:11:07.008Z", + "new_balance":"5855.10", + "value":"-2.10" + } + }, + { + "id":"e7cd560f-7ed4-4b46-b780-e0a3e65e9a76", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T00:55:28.509Z", + "completed":"2017-11-07T00:55:28.509Z", + "new_balance":"5852.70", + "value":"-2.40" + } + }, + { + "id":"36ad63da-90b0-4be7-939c-d612b8e0c62b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:38:54.471Z", + "completed":"2017-11-07T04:38:54.471Z", + "new_balance":"5850.20", + "value":"-2.50" + } + }, + { + "id":"325b1b82-277a-4dd2-a032-b9af9160b9e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T17:38:54.199Z", + "completed":"2017-11-07T17:38:54.199Z", + "new_balance":"5846.87", + "value":"-3.33" + } + }, + { + "id":"6e77ab8d-114a-4c65-b2dc-1fd904378ac1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T14:28:16.623Z", + "completed":"2017-11-09T14:28:16.623Z", + "new_balance":"5846.39", + "value":"-0.48" + } + }, + { + "id":"d05fac5a-9981-49a5-ab87-010b72d02553", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T17:20:04.851Z", + "completed":"2017-11-09T17:20:04.851Z", + "new_balance":"5839.20", + "value":"-7.19" + } + }, + { + "id":"3cf1a065-876c-484d-bbf6-e85b56e28d95", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T10:50:47.084Z", + "completed":"2017-11-12T10:50:47.084Z", + "new_balance":"5836.75", + "value":"-2.45" + } + }, + { + "id":"e17fb2cd-63f4-4be9-a84a-9272c5c59333", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T22:12:57.785Z", + "completed":"2017-11-12T22:12:57.785Z", + "new_balance":"5833.72", + "value":"-3.03" + } + }, + { + "id":"22ffa0e9-7146-428b-88f5-b1855f929fd4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T17:40:38.819Z", + "completed":"2017-11-14T17:40:38.819Z", + "new_balance":"5830.58", + "value":"-3.14" + } + }, + { + "id":"0146eeaa-4d18-4eeb-a397-1fb2ac354495", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T18:33:45.822Z", + "completed":"2017-11-14T18:33:45.822Z", + "new_balance":"5827.10", + "value":"-3.48" + } + }, + { + "id":"e8d1c972-477c-40f0-9741-8eae4351ba9f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T06:56:32.497Z", + "completed":"2017-11-16T06:56:32.497Z", + "new_balance":"5826.63", + "value":"-0.47" + } + }, + { + "id":"7b2c2e4a-4104-4d9b-afb7-4eb131ea56e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T07:31:39.125Z", + "completed":"2017-11-18T07:31:39.125Z", + "new_balance":"5825.86", + "value":"-0.77" + } + }, + { + "id":"41ae1bbf-a4e9-43e7-8971-1d31b1d712b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T05:09:44.978Z", + "completed":"2017-11-20T05:09:44.978Z", + "new_balance":"5829.94", + "value":"4.08" + } + }, + { + "id":"17692ff7-7d0d-4cda-a458-3460bf5b5fea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T16:59:55.954Z", + "completed":"2017-11-21T16:59:55.954Z", + "new_balance":"5825.82", + "value":"-4.12" + } + }, + { + "id":"209eb636-ecc3-4cf1-9f50-fb21802bc3bf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T22:38:57.732Z", + "completed":"2017-11-21T22:38:57.732Z", + "new_balance":"5819.39", + "value":"-6.43" + } + }, + { + "id":"52c0e584-7caa-462f-9904-782c2ca45bef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:28:41.495Z", + "completed":"2017-11-27T00:28:41.495Z", + "new_balance":"5816.84", + "value":"-2.55" + } + }, + { + "id":"6c9a81e9-98cc-4dc1-be78-a0d93b0dc5ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:37:30.710Z", + "completed":"2017-11-27T00:37:30.710Z", + "new_balance":"5813.90", + "value":"-2.94" + } + }, + { + "id":"3930c8fb-3c02-4524-a030-2e5f1e6ac73d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T00:04:53.817Z", + "completed":"2017-12-01T00:04:53.817Z", + "new_balance":"5808.75", + "value":"-5.15" + } + }, + { + "id":"ef7d3d88-8ffe-49ed-a4b9-ca8642c44c66", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T01:22:31.803Z", + "completed":"2017-12-01T01:22:31.803Z", + "new_balance":"5806.43", + "value":"-2.32" + } + }, + { + "id":"e99db5c6-1e03-4856-beb9-0fefb9cc215e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T15:37:04.268Z", + "completed":"2017-12-01T15:37:04.268Z", + "new_balance":"5802.99", + "value":"-3.44" + } + }, + { + "id":"ef0824cb-07c9-4ff8-ab58-45836908a398", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T16:28:36.851Z", + "completed":"2017-12-01T16:28:36.851Z", + "new_balance":"5787.74", + "value":"-15.25" + } + }, + { + "id":"4f8a2ec5-4303-44ae-933f-4bca59f229b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T17:55:12.577Z", + "completed":"2017-12-01T17:55:12.577Z", + "new_balance":"5970.44", + "value":"182.70" + } + }, + { + "id":"150aa46e-02a9-45bf-aa02-abd44f722d5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T22:50:40.975Z", + "completed":"2017-12-01T22:50:40.975Z", + "new_balance":"5912.21", + "value":"-58.23" + } + }, + { + "id":"d3a48ece-b316-4ee7-ad9a-43aab2b73bc8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:01:02.970Z", + "completed":"2017-12-04T00:01:02.970Z", + "new_balance":"5900.25", + "value":"-11.96" + } + }, + { + "id":"1e399cce-81db-48f8-ad8a-7bc334a58853", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T23:06:44.008Z", + "completed":"2017-12-04T23:06:44.008Z", + "new_balance":"5893.15", + "value":"-7.10" + } + }, + { + "id":"4266e085-9fd2-494f-a0c1-dcd36b9c19c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T02:58:45.918Z", + "completed":"2017-12-12T02:58:45.918Z", + "new_balance":"5891.90", + "value":"-1.25" + } + }, + { + "id":"4acf7a4b-2d66-40d3-b0d8-4fc21cf5202b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T17:44:41.833Z", + "completed":"2017-12-12T17:44:41.833Z", + "new_balance":"5888.60", + "value":"-3.30" + } + }, + { + "id":"94eae4e0-4411-4616-9eac-018b758b07af", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T00:19:13.496Z", + "completed":"2017-12-13T00:19:13.496Z", + "new_balance":"5887.84", + "value":"-0.76" + } + }, + { + "id":"9dc0db05-17f9-40a1-9f7c-0a5a941d3dcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T14:06:33.264Z", + "completed":"2017-12-13T14:06:33.264Z", + "new_balance":"5880.54", + "value":"-7.30" + } + }, + { + "id":"fe95222b-3004-497f-9cb9-8788eaf85caf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T19:05:49.595Z", + "completed":"2017-12-16T19:05:49.595Z", + "new_balance":"5876.50", + "value":"-4.04" + } + }, + { + "id":"07dc58e6-2cf4-4ca9-8727-3634086f164a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T20:44:58.819Z", + "completed":"2017-12-18T20:44:58.819Z", + "new_balance":"5876.10", + "value":"-0.40" + } + }, + { + "id":"2022aa46-306f-411d-a993-d4ac6cf7beb0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T01:56:51.251Z", + "completed":"2017-12-19T01:56:51.251Z", + "new_balance":"5868.80", + "value":"-7.30" + } + }, + { + "id":"13708ca4-7e81-42f8-82d4-f2fe956ae237", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:55:42.503Z", + "completed":"2017-12-19T08:55:42.503Z", + "new_balance":"5863.53", + "value":"-5.27" + } + }, + { + "id":"dc135b7f-c7b9-4e89-afc2-6542066f462a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T07:59:01.734Z", + "completed":"2017-12-20T07:59:01.734Z", + "new_balance":"5859.26", + "value":"-4.27" + } + }, + { + "id":"01612b52-12aa-4971-8ef9-9bdf7c82b835", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T09:40:05.018Z", + "completed":"2017-12-21T09:40:05.018Z", + "new_balance":"5853.99", + "value":"-5.27" + } + }, + { + "id":"c2888aed-0d18-4bac-b98a-60e5ad275c27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T02:10:46.306Z", + "completed":"2017-12-24T02:10:46.306Z", + "new_balance":"5847.67", + "value":"-6.32" + } + }, + { + "id":"f78ae77f-dabd-49b5-ab68-7916fc22bb42", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T02:42:09.838Z", + "completed":"2017-12-24T02:42:09.838Z", + "new_balance":"5845.42", + "value":"-2.25" + } + }, + { + "id":"ea5b5236-b67a-481c-89b9-5af60dca0f77", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T04:48:40.806Z", + "completed":"2017-12-24T04:48:40.806Z", + "new_balance":"5844.37", + "value":"-1.05" + } + }, + { + "id":"77677274-5dd0-48fa-8b7b-a765baa60c21", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T06:35:35.356Z", + "completed":"2017-12-24T06:35:35.356Z", + "new_balance":"5840.11", + "value":"-4.26" + } + }, + { + "id":"7ba42a06-1c51-4082-8efd-9a46f1451a9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T09:16:26.877Z", + "completed":"2017-12-24T09:16:26.877Z", + "new_balance":"5839.34", + "value":"-0.77" + } + }, + { + "id":"af635f29-2ee7-4ab8-98da-40c41d5e09f6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T14:06:24.179Z", + "completed":"2017-12-24T14:06:24.179Z", + "new_balance":"5838.80", + "value":"-0.54" + } + }, + { + "id":"3ef1cef0-09af-4232-a11b-01297e0a433b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T06:15:13.056Z", + "completed":"2017-12-28T06:15:13.056Z", + "new_balance":"5838.28", + "value":"-0.52" + } + }, + { + "id":"8c95f0a5-a9ed-46b0-bd9b-feb95d243c00", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T11:43:20.686Z", + "completed":"2017-12-28T11:43:20.686Z", + "new_balance":"5837.76", + "value":"-0.52" + } + }, + { + "id":"152bb6f2-7236-4902-af63-17cdd1409282", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T12:26:00.341Z", + "completed":"2017-12-28T12:26:00.341Z", + "new_balance":"5827.97", + "value":"-9.79" + } + }, + { + "id":"225c8f8d-a109-4b7b-bbd5-db59d0e58398", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T15:55:51.573Z", + "completed":"2017-12-28T15:55:51.573Z", + "new_balance":"5823.15", + "value":"-4.82" + } + }, + { + "id":"8cd82777-daf0-4461-9ad0-886a8e2eb638", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T05:56:10.737Z", + "completed":"2017-12-29T05:56:10.737Z", + "new_balance":"5818.86", + "value":"-4.29" + } + }, + { + "id":"f2a8b0a0-00ad-4d7b-a4c8-1c223ac71c9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T07:28:41.248Z", + "completed":"2017-12-29T07:28:41.248Z", + "new_balance":"5811.90", + "value":"-6.96" + } + }, + { + "id":"f2808cc0-a639-47a3-ab02-e5edb138b7ac", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T07:43:21.101Z", + "completed":"2017-12-29T07:43:21.101Z", + "new_balance":"5805.58", + "value":"-6.32" + } + }, + { + "id":"1fbac485-a8d5-4ca4-9344-12d6923ec8de", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T20:46:04.452Z", + "completed":"2017-12-29T20:46:04.452Z", + "new_balance":"5801.43", + "value":"-4.15" + } + }, + { + "id":"62326c02-8fd6-459f-beb4-612191f8d85a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T21:03:12.263Z", + "completed":"2017-12-29T21:03:12.263Z", + "new_balance":"5800.67", + "value":"-0.76" + } + }, + { + "id":"45aa81e7-6b1d-4092-a66b-7c7126fb77a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T23:53:30.710Z", + "completed":"2017-12-29T23:53:30.710Z", + "new_balance":"5795.51", + "value":"-5.16" + } + }, + { + "id":"757292a7-98cc-4614-a6b6-9f792269f293", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T07:58:52.200Z", + "completed":"2017-12-30T07:58:52.200Z", + "new_balance":"5794.60", + "value":"-0.91" + } + }, + { + "id":"a10e3844-1ce6-4d7e-8694-0321ff9bdfb7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T11:32:58.129Z", + "completed":"2017-12-30T11:32:58.129Z", + "new_balance":"5791.05", + "value":"-3.55" + } + }, + { + "id":"8ec1184b-b091-41f3-ae42-e37dadd0cbcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T15:50:10.909Z", + "completed":"2017-12-30T15:50:10.909Z", + "new_balance":"5790.46", + "value":"-0.59" + } + }, + { + "id":"c80cadd8-5127-4193-8c69-618562208aee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T16:23:06.251Z", + "completed":"2017-12-30T16:23:06.251Z", + "new_balance":"5785.85", + "value":"-4.61" + } + }, + { + "id":"733a08b6-e0b3-4970-aa58-d689fcd9df82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:15:40.026Z", + "completed":"2017-12-31T00:15:40.026Z", + "new_balance":"5758.35", + "value":"-27.50" + } + }, + { + "id":"2621f199-d3b8-4ecc-9ab2-cf24d2d9cea2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T06:28:31.352Z", + "completed":"2017-12-31T06:28:31.352Z", + "new_balance":"5755.61", + "value":"-2.74" + } + }, + { + "id":"f9b215ab-630e-42b0-bd2d-bd20af6c8d1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T06:34:44.978Z", + "completed":"2017-12-31T06:34:44.978Z", + "new_balance":"5752.55", + "value":"-3.06" + } + }, + { + "id":"0853fe6f-55c2-45ed-8ccd-a8f75e70e07e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T20:26:51.942Z", + "completed":"2017-12-31T20:26:51.942Z", + "new_balance":"5751.24", + "value":"-1.31" + } + }, + { + "id":"0591a3e5-536b-416b-ae7c-928c9ac70aad", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T10:16:41.412Z", + "completed":"2016-03-01T10:16:41.412Z", + "new_balance":"7408.61", + "value":"-163.48" + } + }, + { + "id":"7d16bc7e-578e-4c77-8a9e-1804b5f12c44", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T12:41:05.622Z", + "completed":"2016-03-01T12:41:05.622Z", + "new_balance":"3714.84", + "value":"-3693.77" + } + }, + { + "id":"c49f6271-e5b7-468d-b45c-572a81b8f238", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T17:22:48.431Z", + "completed":"2016-03-01T17:22:48.431Z", + "new_balance":"3397.63", + "value":"-317.21" + } + }, + { + "id":"4cb186ae-0666-4a9e-ab4d-5ff7e452e560", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T18:39:53.664Z", + "completed":"2016-03-01T18:39:53.664Z", + "new_balance":"2665.78", + "value":"-731.85" + } + }, + { + "id":"eec09313-5ac7-40bd-a7e2-4b71ee199815", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T20:21:30.767Z", + "completed":"2016-03-01T20:21:30.767Z", + "new_balance":"34.57", + "value":"-2631.21" + } + }, + { + "id":"1a866500-177e-4ad9-98de-9a972d512205", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T23:10:53.535Z", + "completed":"2016-03-01T23:10:53.535Z", + "new_balance":"-163.34", + "value":"-197.91" + } + }, + { + "id":"e48abc0e-2e47-4fdf-bc7a-6333cc2b89ad", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T00:50:38.887Z", + "completed":"2016-03-12T00:50:38.887Z", + "new_balance":"-210.24", + "value":"-46.90" + } + }, + { + "id":"7438262b-0266-495f-a0f3-bbcc7631b855", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T01:46:55.068Z", + "completed":"2016-03-12T01:46:55.068Z", + "new_balance":"-942.09", + "value":"-731.85" + } + }, + { + "id":"e3c8a92d-6301-4075-818e-2c8f38ea3e8f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T15:51:33.734Z", + "completed":"2016-03-12T15:51:33.734Z", + "new_balance":"-995.27", + "value":"-53.18" + } + }, + { + "id":"4c410f89-15e9-4aac-9ad1-d104abff65df", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T15:59:58.706Z", + "completed":"2016-03-12T15:59:58.706Z", + "new_balance":"-1312.48", + "value":"-317.21" + } + }, + { + "id":"b319bbf1-1f53-41a0-aa1a-8ce986509b03", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T21:24:48.322Z", + "completed":"2016-03-14T21:24:48.322Z", + "new_balance":"578.84", + "value":"1891.32" + } + }, + { + "id":"ee48690c-6456-4fd6-93f9-f070fe6cf198", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T03:17:26.008Z", + "completed":"2016-03-15T03:17:26.008Z", + "new_balance":"806.23", + "value":"227.39" + } + }, + { + "id":"fb57641e-f139-4716-9345-73a0e63d1561", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T15:18:52.615Z", + "completed":"2016-03-16T15:18:52.615Z", + "new_balance":"1707.21", + "value":"900.98" + } + }, + { + "id":"908041bd-5dce-4212-a720-71c2999f49f3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T05:21:07.243Z", + "completed":"2016-03-17T05:21:07.243Z", + "new_balance":"1628.13", + "value":"-79.08" + } + }, + { + "id":"c0088091-12ef-4100-9916-edc0d80809bf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T19:59:02.826Z", + "completed":"2016-03-17T19:59:02.826Z", + "new_balance":"1577.03", + "value":"-51.10" + } + }, + { + "id":"9cc177a1-d9b7-42fa-a39d-adcb1d24078c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T05:19:23.284Z", + "completed":"2016-03-19T05:19:23.284Z", + "new_balance":"2027.03", + "value":"450.00" + } + }, + { + "id":"96f9e2b3-b527-4f92-a172-3c69b251a677", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T02:52:57.356Z", + "completed":"2016-03-21T02:52:57.356Z", + "new_balance":"2088.28", + "value":"61.25" + } + }, + { + "id":"2f57a99e-c59d-4274-9c82-11f999142042", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T10:22:38.338Z", + "completed":"2016-03-21T10:22:38.338Z", + "new_balance":"2014.35", + "value":"-73.93" + } + }, + { + "id":"8bff9c1c-482a-4a72-8aa0-f10d91034180", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T00:09:55.659Z", + "completed":"2016-03-24T00:09:55.659Z", + "new_balance":"1487.79", + "value":"-526.56" + } + }, + { + "id":"e32762bd-064d-418b-adce-3a2a68c40d75", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T19:53:06.643Z", + "completed":"2016-03-24T19:53:06.643Z", + "new_balance":"1715.18", + "value":"227.39" + } + }, + { + "id":"cf096dee-7a5d-4d91-87ee-a0a4bfad1926", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T13:02:56.814Z", + "completed":"2016-03-25T13:02:56.814Z", + "new_balance":"2168.83", + "value":"453.65" + } + }, + { + "id":"7355b08e-dab6-43a9-91cc-3f0fb9a919e9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:49:34.804Z", + "completed":"2016-03-25T19:49:34.804Z", + "new_balance":"1501.68", + "value":"-667.15" + } + }, + { + "id":"f768c741-a3bf-4b7e-b9c6-b2a5aa38623e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T03:51:44.667Z", + "completed":"2016-03-28T03:51:44.667Z", + "new_balance":"4584.55", + "value":"3082.87" + } + }, + { + "id":"0cf48c6d-efe3-4eaf-a918-1ae81ace555a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:29:25.756Z", + "completed":"2016-03-28T18:29:25.756Z", + "new_balance":"6475.87", + "value":"1891.32" + } + }, + { + "id":"4a548325-62ef-4c0e-998f-ea2c733c867b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T01:16:15.360Z", + "completed":"2016-03-30T01:16:15.360Z", + "new_balance":"6703.26", + "value":"227.39" + } + }, + { + "id":"57b2b5d7-343b-4415-9485-ce15af5ebc8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T20:36:15.078Z", + "completed":"2016-03-30T20:36:15.078Z", + "new_balance":"6930.88", + "value":"227.62" + } + }, + { + "id":"fbb7071e-3c89-4573-b9c9-e77118dcc3eb", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T00:37:53.745Z", + "completed":"2016-06-01T00:37:53.745Z", + "new_balance":"3237.11", + "value":"-3693.77" + } + }, + { + "id":"cfd9464d-4f7b-4f1c-bc5b-afa6e1e4a9d0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T03:40:58.408Z", + "completed":"2016-06-01T03:40:58.408Z", + "new_balance":"2505.26", + "value":"-731.85" + } + }, + { + "id":"19c0ca9b-4d55-415c-bedf-ca90b0ec867c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:30:12.746Z", + "completed":"2016-06-01T04:30:12.746Z", + "new_balance":"2341.78", + "value":"-163.48" + } + }, + { + "id":"a83a7785-979b-4ac7-94df-65c6c2828f8e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T12:47:32.024Z", + "completed":"2016-06-01T12:47:32.024Z", + "new_balance":"-289.43", + "value":"-2631.21" + } + }, + { + "id":"adfa796a-84bd-4d95-9f8d-659651abd29d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T18:01:05.393Z", + "completed":"2016-06-01T18:01:05.393Z", + "new_balance":"-487.34", + "value":"-197.91" + } + }, + { + "id":"bb70faa9-2fd5-4784-bc17-ad2da93b3e68", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T19:00:50.541Z", + "completed":"2016-06-01T19:00:50.541Z", + "new_balance":"-804.55", + "value":"-317.21" + } + }, + { + "id":"90617cc6-a2b8-4afd-95bd-15ac15ac4fc1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T00:22:32.285Z", + "completed":"2016-06-04T00:22:32.285Z", + "new_balance":"-851.45", + "value":"-46.90" + } + }, + { + "id":"adcd19f0-041c-4c94-a8f5-9974a961a336", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:42:33.420Z", + "completed":"2016-06-04T09:42:33.420Z", + "new_balance":"-904.63", + "value":"-53.18" + } + }, + { + "id":"b71bc779-a192-4bc5-90c0-fba66a5b3411", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T03:13:49.376Z", + "completed":"2016-06-05T03:13:49.376Z", + "new_balance":"-1221.84", + "value":"-317.21" + } + }, + { + "id":"666f30e4-85e4-4ac6-8f65-512bd7d5a12e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T23:30:57.459Z", + "completed":"2016-06-05T23:30:57.459Z", + "new_balance":"-1953.69", + "value":"-731.85" + } + }, + { + "id":"cdf8ded5-2b9d-4668-94bd-ed292086a2a9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T08:45:45.602Z", + "completed":"2016-06-07T08:45:45.602Z", + "new_balance":"-1052.71", + "value":"900.98" + } + }, + { + "id":"4c90703b-156d-4d8c-9268-5e8946978db0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T19:57:58.480Z", + "completed":"2016-06-07T19:57:58.480Z", + "new_balance":"-1103.81", + "value":"-51.10" + } + }, + { + "id":"46a38551-d5e1-40f8-9f0a-0ff3633fdfba", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T21:37:28.391Z", + "completed":"2016-06-07T21:37:28.391Z", + "new_balance":"787.51", + "value":"1891.32" + } + }, + { + "id":"0d42d15d-185e-4da6-8330-d2183de2491e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T22:39:25.382Z", + "completed":"2016-06-07T22:39:25.382Z", + "new_balance":"1014.90", + "value":"227.39" + } + }, + { + "id":"84b0b957-1ce1-4ada-966f-6cf513d33e91", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T00:54:36.992Z", + "completed":"2016-06-11T00:54:36.992Z", + "new_balance":"935.82", + "value":"-79.08" + } + }, + { + "id":"409799d1-dbc3-4709-a83f-18b4f89c0804", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T01:58:38.331Z", + "completed":"2016-06-14T01:58:38.331Z", + "new_balance":"1385.82", + "value":"450.00" + } + }, + { + "id":"795cadb0-9c53-42b4-8c59-4c8f5c583000", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:32:50.994Z", + "completed":"2016-06-14T09:32:50.994Z", + "new_balance":"1447.07", + "value":"61.25" + } + }, + { + "id":"464c74ef-d01c-4e0b-b99a-0d68984d053f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:29:24.949Z", + "completed":"2016-06-14T17:29:24.949Z", + "new_balance":"1373.14", + "value":"-73.93" + } + }, + { + "id":"0527ad1d-30f4-4b9e-a3d3-573c32cfad4e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T18:21:49.703Z", + "completed":"2016-06-16T18:21:49.703Z", + "new_balance":"846.58", + "value":"-526.56" + } + }, + { + "id":"bb18492d-d5d9-4923-a9e3-2fdc1f561814", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T19:07:14.556Z", + "completed":"2016-06-16T19:07:14.556Z", + "new_balance":"1073.97", + "value":"227.39" + } + }, + { + "id":"5f2d0583-069b-4b98-8d11-ca35f3433de4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T02:58:00.150Z", + "completed":"2016-06-21T02:58:00.150Z", + "new_balance":"4156.84", + "value":"3082.87" + } + }, + { + "id":"0740d092-dd36-41fc-9e84-e971cce72679", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T03:43:33.632Z", + "completed":"2016-06-21T03:43:33.632Z", + "new_balance":"6048.16", + "value":"1891.32" + } + }, + { + "id":"2d4d30f4-16b5-428b-9d03-eb05c2dbad0f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T04:29:26.888Z", + "completed":"2016-06-21T04:29:26.888Z", + "new_balance":"6501.81", + "value":"453.65" + } + }, + { + "id":"75cd028b-61a6-449c-b129-734642d69c6a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T17:26:29.421Z", + "completed":"2016-06-21T17:26:29.421Z", + "new_balance":"5834.66", + "value":"-667.15" + } + }, + { + "id":"6af23e43-2807-41a6-ac1e-8ce4472322c3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T01:48:59.552Z", + "completed":"2016-06-30T01:48:59.552Z", + "new_balance":"6062.28", + "value":"227.62" + } + }, + { + "id":"8a08fd71-5c82-4b0f-81fe-4fd2c969bcf4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T21:03:35.944Z", + "completed":"2016-06-30T21:03:35.944Z", + "new_balance":"6289.67", + "value":"227.39" + } + }, + { + "id":"c0256a95-76d6-4a4d-9b99-648e4be63dbd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T01:09:56.201Z", + "completed":"2016-09-01T01:09:56.201Z", + "new_balance":"6091.76", + "value":"-197.91" + } + }, + { + "id":"a16f6f3c-51c0-49e2-af27-0ab19294e857", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T03:48:34.186Z", + "completed":"2016-09-01T03:48:34.186Z", + "new_balance":"5928.28", + "value":"-163.48" + } + }, + { + "id":"1939f4e2-db4f-4b7e-8dfc-ea0eb1a43a57", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T07:31:38.751Z", + "completed":"2016-09-01T07:31:38.751Z", + "new_balance":"5611.07", + "value":"-317.21" + } + }, + { + "id":"ae12acb4-17c8-4266-9376-99f19216cd17", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T13:17:58.552Z", + "completed":"2016-09-01T13:17:58.552Z", + "new_balance":"4879.22", + "value":"-731.85" + } + }, + { + "id":"5c797017-be86-4834-b6ca-c5141fef3ae8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T21:43:43.953Z", + "completed":"2016-09-01T21:43:43.953Z", + "new_balance":"2248.01", + "value":"-2631.21" + } + }, + { + "id":"d43fdd59-262a-4b7f-8942-36228dc60b27", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T23:11:59.623Z", + "completed":"2016-09-01T23:11:59.623Z", + "new_balance":"-1445.76", + "value":"-3693.77" + } + }, + { + "id":"cb52923c-36cb-402c-8c8e-94a73a6de8ec", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T00:15:37.914Z", + "completed":"2016-09-12T00:15:37.914Z", + "new_balance":"-2177.61", + "value":"-731.85" + } + }, + { + "id":"0ad34dd3-7402-4aec-ade5-8764516841fa", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T16:25:12.021Z", + "completed":"2016-09-12T16:25:12.021Z", + "new_balance":"-2494.82", + "value":"-317.21" + } + }, + { + "id":"b20bb9c5-c0ea-4262-a8b4-07a068b89db7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T16:31:52.948Z", + "completed":"2016-09-12T16:31:52.948Z", + "new_balance":"-2548.00", + "value":"-53.18" + } + }, + { + "id":"cfa910d8-b4cb-4a02-a9d4-897da53c6656", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T17:24:44.496Z", + "completed":"2016-09-12T17:24:44.496Z", + "new_balance":"-2594.90", + "value":"-46.90" + } + }, + { + "id":"335e7e96-94ec-4ac4-9c32-30ff4120fecc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:22:34.253Z", + "completed":"2016-09-15T01:22:34.253Z", + "new_balance":"-2367.51", + "value":"227.39" + } + }, + { + "id":"cd208755-a727-48d5-9ec1-e276c5d5c954", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T16:12:35.378Z", + "completed":"2016-09-15T16:12:35.378Z", + "new_balance":"-476.19", + "value":"1891.32" + } + }, + { + "id":"e8aed6ec-34bf-4a81-8a74-ef5b4dd806bf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T07:17:21.798Z", + "completed":"2016-09-17T07:17:21.798Z", + "new_balance":"-527.29", + "value":"-51.10" + } + }, + { + "id":"8e906da0-6f56-4092-86cf-d25268b0e880", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:14:20.596Z", + "completed":"2016-09-17T12:14:20.596Z", + "new_balance":"-606.37", + "value":"-79.08" + } + }, + { + "id":"27a9e0d8-9a17-4114-b9c8-6a1a6948cd85", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T21:49:15.592Z", + "completed":"2016-09-17T21:49:15.592Z", + "new_balance":"294.61", + "value":"900.98" + } + }, + { + "id":"6086ee3d-e6f7-4f59-81ac-6903e8fd3890", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T00:55:05.527Z", + "completed":"2016-09-19T00:55:05.527Z", + "new_balance":"744.61", + "value":"450.00" + } + }, + { + "id":"cad3b87e-bfd2-422a-922e-0fdefb1ec94d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T07:09:09.139Z", + "completed":"2016-09-21T07:09:09.139Z", + "new_balance":"805.86", + "value":"61.25" + } + }, + { + "id":"fa8b17db-c3ad-4e0b-a0a6-7563aaeb3a96", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T09:58:26.421Z", + "completed":"2016-09-21T09:58:26.421Z", + "new_balance":"731.93", + "value":"-73.93" + } + }, + { + "id":"1e3c48d8-1351-43cf-8bc5-80c6557efbca", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T18:25:22.608Z", + "completed":"2016-09-24T18:25:22.608Z", + "new_balance":"959.32", + "value":"227.39" + } + }, + { + "id":"2011a2be-2757-4d71-9d11-c2efc272c01d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T21:47:55.258Z", + "completed":"2016-09-24T21:47:55.258Z", + "new_balance":"432.76", + "value":"-526.56" + } + }, + { + "id":"a9a24120-67e1-495d-bdfb-483a7be7a83e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T10:18:03.424Z", + "completed":"2016-09-25T10:18:03.424Z", + "new_balance":"886.41", + "value":"453.65" + } + }, + { + "id":"1808ede3-1c99-44e8-a58f-1a48be0fde70", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T21:21:10.129Z", + "completed":"2016-09-25T21:21:10.129Z", + "new_balance":"219.26", + "value":"-667.15" + } + }, + { + "id":"b2bd8158-2eea-4aa8-ab2a-1fc362a286a4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T05:27:53.001Z", + "completed":"2016-09-28T05:27:53.001Z", + "new_balance":"3302.13", + "value":"3082.87" + } + }, + { + "id":"a4b885b4-716f-4c26-aab8-d07a49c35c2e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T16:34:46.829Z", + "completed":"2016-09-28T16:34:46.829Z", + "new_balance":"5193.45", + "value":"1891.32" + } + }, + { + "id":"872e10e0-2032-45ad-96f3-1d58731ec498", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T15:51:13.811Z", + "completed":"2016-09-30T15:51:13.811Z", + "new_balance":"5421.07", + "value":"227.62" + } + }, + { + "id":"96dbae6a-b5cd-43f4-9af8-2c0728df4216", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T23:17:12.717Z", + "completed":"2016-09-30T23:17:12.717Z", + "new_balance":"5648.46", + "value":"227.39" + } + }, + { + "id":"9f1a0fbc-1737-4aac-98f8-7fe025d70345", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T04:17:11.844Z", + "completed":"2016-12-01T04:17:11.844Z", + "new_balance":"4916.61", + "value":"-731.85" + } + }, + { + "id":"8c8b59ec-9bc4-4d90-8cb6-2e8c5e567679", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T10:49:30.765Z", + "completed":"2016-12-01T10:49:30.765Z", + "new_balance":"4599.40", + "value":"-317.21" + } + }, + { + "id":"8e9212ec-ffd6-4fe3-995c-0e6f9229e5ff", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T13:17:50.997Z", + "completed":"2016-12-01T13:17:50.997Z", + "new_balance":"905.63", + "value":"-3693.77" + } + }, + { + "id":"c0d8d3b8-57be-479b-8655-97eebc07e625", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T17:00:57.925Z", + "completed":"2016-12-01T17:00:57.925Z", + "new_balance":"-1725.58", + "value":"-2631.21" + } + }, + { + "id":"efb465c9-8174-40fd-b505-b7b5d95952f9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T19:33:17.794Z", + "completed":"2016-12-01T19:33:17.794Z", + "new_balance":"-1923.49", + "value":"-197.91" + } + }, + { + "id":"35a1db09-1ed6-41f6-88b3-48152a24a376", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T19:54:43.343Z", + "completed":"2016-12-01T19:54:43.343Z", + "new_balance":"-2086.97", + "value":"-163.48" + } + }, + { + "id":"f5156f64-bcf1-45f2-9ce5-65e18c765dc6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:47:36.907Z", + "completed":"2016-12-04T18:47:36.907Z", + "new_balance":"-2140.15", + "value":"-53.18" + } + }, + { + "id":"97fb2e07-2449-47a2-b619-309c08229a8c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:12:34.143Z", + "completed":"2016-12-04T21:12:34.143Z", + "new_balance":"-2187.05", + "value":"-46.90" + } + }, + { + "id":"82fd67e6-dc03-41b6-9033-49e5b59aaaa5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T14:26:09.314Z", + "completed":"2016-12-05T14:26:09.314Z", + "new_balance":"-2504.26", + "value":"-317.21" + } + }, + { + "id":"0afc1e09-d58d-4514-a028-df62ad0bf4fe", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T17:48:25.165Z", + "completed":"2016-12-05T17:48:25.165Z", + "new_balance":"-3236.11", + "value":"-731.85" + } + }, + { + "id":"84ee05aa-71f5-4573-843e-173f9cb553a5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T07:00:54.485Z", + "completed":"2016-12-07T07:00:54.485Z", + "new_balance":"-1344.79", + "value":"1891.32" + } + }, + { + "id":"dd1cf225-279b-4618-8a1a-1ed23a033866", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T13:16:48.104Z", + "completed":"2016-12-07T13:16:48.104Z", + "new_balance":"-443.81", + "value":"900.98" + } + }, + { + "id":"1e586351-1a9d-4dde-a6d2-cf80e96ca0df", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:25:06.614Z", + "completed":"2016-12-07T18:25:06.614Z", + "new_balance":"-216.42", + "value":"227.39" + } + }, + { + "id":"0080f60d-9c18-491d-b41f-b3652d79262e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T20:37:47.661Z", + "completed":"2016-12-07T20:37:47.661Z", + "new_balance":"-267.52", + "value":"-51.10" + } + }, + { + "id":"6031279a-3fda-48a8-94e7-aad4513eed90", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T11:58:54.387Z", + "completed":"2016-12-11T11:58:54.387Z", + "new_balance":"-346.60", + "value":"-79.08" + } + }, + { + "id":"6111d144-4c86-4583-ad7e-b1cb3cb6c8d7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T04:17:10.604Z", + "completed":"2016-12-14T04:17:10.604Z", + "new_balance":"-285.35", + "value":"61.25" + } + }, + { + "id":"cb7da7a3-6465-4a63-8a39-0bc5bf13f97a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T06:41:07.413Z", + "completed":"2016-12-14T06:41:07.413Z", + "new_balance":"-359.28", + "value":"-73.93" + } + }, + { + "id":"d2fc8fbf-678f-467b-8916-ae2eb36d1850", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T08:05:39.030Z", + "completed":"2016-12-14T08:05:39.030Z", + "new_balance":"90.72", + "value":"450.00" + } + }, + { + "id":"39da2006-11f0-4c4d-81c6-53b9f4b0fbcc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T13:48:29.055Z", + "completed":"2016-12-16T13:48:29.055Z", + "new_balance":"-435.84", + "value":"-526.56" + } + }, + { + "id":"d09d2cd4-bc45-4f23-859d-de30975cf371", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T14:26:20.200Z", + "completed":"2016-12-16T14:26:20.200Z", + "new_balance":"-208.45", + "value":"227.39" + } + }, + { + "id":"46ce5258-149f-46f5-bd49-4b1ab4a9c125", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:52:12.067Z", + "completed":"2016-12-21T08:52:12.067Z", + "new_balance":"2874.42", + "value":"3082.87" + } + }, + { + "id":"83893495-f4c3-45df-adf9-e68f1aae68d2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T10:58:19.661Z", + "completed":"2016-12-21T10:58:19.661Z", + "new_balance":"2207.27", + "value":"-667.15" + } + }, + { + "id":"f68e5c6e-860c-47b6-b3d7-31a43accad9e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T16:01:46.750Z", + "completed":"2016-12-21T16:01:46.750Z", + "new_balance":"4098.59", + "value":"1891.32" + } + }, + { + "id":"bd1bd939-72cd-4457-be9c-9fcb19d7518c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:20:13.881Z", + "completed":"2016-12-21T19:20:13.881Z", + "new_balance":"4552.24", + "value":"453.65" + } + }, + { + "id":"6d0a1da8-e691-4b84-a33c-ebf3d966bb78", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T02:55:00.514Z", + "completed":"2016-12-30T02:55:00.514Z", + "new_balance":"4779.63", + "value":"227.39" + } + }, + { + "id":"527058cb-68cb-425b-9163-dd19071b88ba", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T07:09:20.797Z", + "completed":"2016-12-30T07:09:20.797Z", + "new_balance":"5007.25", + "value":"227.62" + } + }, + { + "id":"002f85c8-dea9-4047-bbef-2f3e5e981bbc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T01:37:22.617Z", + "completed":"2017-03-01T01:37:22.617Z", + "new_balance":"4809.34", + "value":"-197.91" + } + }, + { + "id":"3d07f3be-849b-46e4-bb27-7a04b59f3b8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T07:13:02.894Z", + "completed":"2017-03-01T07:13:02.894Z", + "new_balance":"4645.86", + "value":"-163.48" + } + }, + { + "id":"d4786851-ad42-4d58-b585-e90cd948098e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T07:15:01.240Z", + "completed":"2017-03-01T07:15:01.240Z", + "new_balance":"4328.65", + "value":"-317.21" + } + }, + { + "id":"e4b7aa5d-e92e-46ed-a7d5-258bd9dfac3d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T09:32:39.067Z", + "completed":"2017-03-01T09:32:39.067Z", + "new_balance":"3596.80", + "value":"-731.85" + } + }, + { + "id":"cf033715-bedf-434e-adda-2dbe43b2b2a2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T12:24:22.525Z", + "completed":"2017-03-01T12:24:22.525Z", + "new_balance":"-96.97", + "value":"-3693.77" + } + }, + { + "id":"d8ab3cd3-4ec4-4788-b42e-cbceb4103182", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T17:48:22.825Z", + "completed":"2017-03-01T17:48:22.825Z", + "new_balance":"-2728.18", + "value":"-2631.21" + } + }, + { + "id":"5bc12cfe-88b6-4770-bd85-0cdf85b75138", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T01:29:13.790Z", + "completed":"2017-03-12T01:29:13.790Z", + "new_balance":"-2775.08", + "value":"-46.90" + } + }, + { + "id":"f7a92190-da32-4eee-b2e6-8f3e91f3fedf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T01:35:33.162Z", + "completed":"2017-03-12T01:35:33.162Z", + "new_balance":"-3092.29", + "value":"-317.21" + } + }, + { + "id":"0e2e7fe7-56b2-4561-986a-29234f87a169", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:38:12.915Z", + "completed":"2017-03-12T03:38:12.915Z", + "new_balance":"-3824.14", + "value":"-731.85" + } + }, + { + "id":"2ceef5d2-f864-45c8-b913-4058981defef", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T20:07:13.737Z", + "completed":"2017-03-12T20:07:13.737Z", + "new_balance":"-3877.32", + "value":"-53.18" + } + }, + { + "id":"b533ed5b-c4eb-4e41-8c06-d6deae46d5c5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T08:35:48.203Z", + "completed":"2017-03-14T08:35:48.203Z", + "new_balance":"-1986.00", + "value":"1891.32" + } + }, + { + "id":"c145746c-4e76-42d5-b7ee-df72abcaddd8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T22:46:41.868Z", + "completed":"2017-03-15T22:46:41.868Z", + "new_balance":"-1758.61", + "value":"227.39" + } + }, + { + "id":"55bd163b-4b1a-4a48-a913-2e83ceadfee0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T18:49:04.940Z", + "completed":"2017-03-16T18:49:04.940Z", + "new_balance":"-857.63", + "value":"900.98" + } + }, + { + "id":"d23ae6d7-253e-4a30-bba8-e83aa125b256", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T03:05:54.393Z", + "completed":"2017-03-17T03:05:54.393Z", + "new_balance":"-908.73", + "value":"-51.10" + } + }, + { + "id":"66fdee05-3110-4475-b0d7-f00fcff358e1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T09:09:32.401Z", + "completed":"2017-03-17T09:09:32.401Z", + "new_balance":"-987.81", + "value":"-79.08" + } + }, + { + "id":"d9482caf-0c81-4145-87b2-4a83d86ea995", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T14:29:44.282Z", + "completed":"2017-03-19T14:29:44.282Z", + "new_balance":"-537.81", + "value":"450.00" + } + }, + { + "id":"8cb590f1-5583-4d5f-9a9b-3583bf631472", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T10:43:58.648Z", + "completed":"2017-03-21T10:43:58.648Z", + "new_balance":"-476.56", + "value":"61.25" + } + }, + { + "id":"29c9e0b9-d97d-4fc3-a9c1-b83c52c8dc84", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T23:07:24.839Z", + "completed":"2017-03-21T23:07:24.839Z", + "new_balance":"-550.49", + "value":"-73.93" + } + }, + { + "id":"06e1dbfb-6e15-48f2-a522-f9662c456634", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T00:10:34.009Z", + "completed":"2017-03-24T00:10:34.009Z", + "new_balance":"-323.10", + "value":"227.39" + } + }, + { + "id":"2fa6d8f7-974a-42f5-9408-088813ec228a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T05:35:20.932Z", + "completed":"2017-03-24T05:35:20.932Z", + "new_balance":"-849.66", + "value":"-526.56" + } + }, + { + "id":"bbeea247-2df3-403b-a6b9-3c0af9099d12", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T19:10:49.840Z", + "completed":"2017-03-25T19:10:49.840Z", + "new_balance":"-396.01", + "value":"453.65" + } + }, + { + "id":"34d05193-2981-48e0-bc56-1f4af457aa04", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T20:15:56.495Z", + "completed":"2017-03-25T20:15:56.495Z", + "new_balance":"-1063.16", + "value":"-667.15" + } + }, + { + "id":"4fc964a4-28dc-47d9-8790-ae80c630f3ef", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T05:54:51.162Z", + "completed":"2017-03-28T05:54:51.162Z", + "new_balance":"2019.71", + "value":"3082.87" + } + }, + { + "id":"46dad42c-51ec-436d-aabe-da8adf95ed4d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T13:25:39.728Z", + "completed":"2017-03-28T13:25:39.728Z", + "new_balance":"3911.03", + "value":"1891.32" + } + }, + { + "id":"87b8a0c6-8998-4707-add2-0f28d5683a15", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T09:27:50.404Z", + "completed":"2017-03-30T09:27:50.404Z", + "new_balance":"4138.65", + "value":"227.62" + } + }, + { + "id":"6dca27ba-716c-45eb-acbf-571c74876873", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T21:55:33.212Z", + "completed":"2017-03-30T21:55:33.212Z", + "new_balance":"4366.04", + "value":"227.39" + } + }, + { + "id":"13325437-26cb-460a-b519-488bb0f679d6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T03:40:57.304Z", + "completed":"2017-06-01T03:40:57.304Z", + "new_balance":"3634.19", + "value":"-731.85" + } + }, + { + "id":"4cec849e-0361-49b3-a545-25a216f159d1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T07:41:06.735Z", + "completed":"2017-06-01T07:41:06.735Z", + "new_balance":"3436.28", + "value":"-197.91" + } + }, + { + "id":"219c013a-6f53-4f92-9f40-7083c9b54ff3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:46:36.096Z", + "completed":"2017-06-01T11:46:36.096Z", + "new_balance":"3119.07", + "value":"-317.21" + } + }, + { + "id":"e6f1c9ef-91e1-4ccb-a81d-dde9f5a0af06", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T14:25:19.317Z", + "completed":"2017-06-01T14:25:19.317Z", + "new_balance":"487.86", + "value":"-2631.21" + } + }, + { + "id":"b7120fea-0b77-421a-8520-f2a8d69059b4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T15:13:58.122Z", + "completed":"2017-06-01T15:13:58.122Z", + "new_balance":"324.38", + "value":"-163.48" + } + }, + { + "id":"fe615c16-0089-4d4f-9c92-08c32fb177a1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T21:51:38.206Z", + "completed":"2017-06-01T21:51:38.206Z", + "new_balance":"-3369.39", + "value":"-3693.77" + } + }, + { + "id":"346298f7-37a5-4e43-a212-d59ab9cd47b7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T18:17:02.952Z", + "completed":"2017-06-04T18:17:02.952Z", + "new_balance":"-3422.57", + "value":"-53.18" + } + }, + { + "id":"36cd0e9a-6fc3-4fbc-9b56-c7499123112f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:47:22.302Z", + "completed":"2017-06-04T19:47:22.302Z", + "new_balance":"-3469.47", + "value":"-46.90" + } + }, + { + "id":"d4d40559-5743-44a6-8610-6d42d2bbe6f1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T04:53:37.995Z", + "completed":"2017-06-05T04:53:37.995Z", + "new_balance":"-3786.68", + "value":"-317.21" + } + }, + { + "id":"6f346c32-6546-4b87-84e4-d6f269fd6a6f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T15:04:47.466Z", + "completed":"2017-06-05T15:04:47.466Z", + "new_balance":"-4518.53", + "value":"-731.85" + } + }, + { + "id":"be7dbd69-207f-4d1b-be32-384bdb52f142", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T02:00:34.264Z", + "completed":"2017-06-07T02:00:34.264Z", + "new_balance":"-4569.63", + "value":"-51.10" + } + }, + { + "id":"f4d0d926-ed72-4943-8105-1a454a636cee", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T05:16:46.282Z", + "completed":"2017-06-07T05:16:46.282Z", + "new_balance":"-2678.31", + "value":"1891.32" + } + }, + { + "id":"93da4637-a839-460f-8be2-ad090a833d24", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T16:40:11.256Z", + "completed":"2017-06-07T16:40:11.256Z", + "new_balance":"-2450.92", + "value":"227.39" + } + }, + { + "id":"d04549af-58a1-4694-83da-f6223c4f77f3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T19:10:05.782Z", + "completed":"2017-06-07T19:10:05.782Z", + "new_balance":"-1549.94", + "value":"900.98" + } + }, + { + "id":"48b77236-386c-4501-a5b1-162065440f9d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T03:56:25.098Z", + "completed":"2017-06-11T03:56:25.098Z", + "new_balance":"-1629.02", + "value":"-79.08" + } + }, + { + "id":"2e5577b2-ba18-4ce6-8a9c-28c72443db74", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T06:00:51.513Z", + "completed":"2017-06-14T06:00:51.513Z", + "new_balance":"-1567.77", + "value":"61.25" + } + }, + { + "id":"49cd4327-0f0f-45d3-94c1-57c470d8162c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T08:28:56.296Z", + "completed":"2017-06-14T08:28:56.296Z", + "new_balance":"-1117.77", + "value":"450.00" + } + }, + { + "id":"e1f45c77-91ac-4c42-a249-d7ccc17da7f5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T20:30:04.994Z", + "completed":"2017-06-14T20:30:04.994Z", + "new_balance":"-1191.70", + "value":"-73.93" + } + }, + { + "id":"4638e41a-0af1-4376-afe7-2ec963b3df84", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T02:01:26.885Z", + "completed":"2017-06-16T02:01:26.885Z", + "new_balance":"-964.31", + "value":"227.39" + } + }, + { + "id":"bb89a64f-ee99-4c5c-887c-4409681b21d8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T10:31:11.232Z", + "completed":"2017-06-16T10:31:11.232Z", + "new_balance":"-1490.87", + "value":"-526.56" + } + }, + { + "id":"4e4df918-5497-40a7-afad-fb7eb8fdfa95", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T03:40:08.398Z", + "completed":"2017-06-21T03:40:08.398Z", + "new_balance":"1592.00", + "value":"3082.87" + } + }, + { + "id":"ed07b99b-fad5-47ac-b6b6-6aec893729c2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T03:55:22.190Z", + "completed":"2017-06-21T03:55:22.190Z", + "new_balance":"3483.32", + "value":"1891.32" + } + }, + { + "id":"dc923c40-2964-46b1-935c-54cbd25ed2e7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T21:14:09.506Z", + "completed":"2017-06-21T21:14:09.506Z", + "new_balance":"2816.17", + "value":"-667.15" + } + }, + { + "id":"cd4b41a4-7f40-489d-9080-f89ddf341833", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T23:30:43.206Z", + "completed":"2017-06-21T23:30:43.206Z", + "new_balance":"3269.82", + "value":"453.65" + } + }, + { + "id":"37c29e3d-8c99-48f2-b0b5-a63b480cb293", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T04:31:55.826Z", + "completed":"2017-06-30T04:31:55.826Z", + "new_balance":"3497.44", + "value":"227.62" + } + }, + { + "id":"004920b2-398e-4c44-9cd3-37294aaa05c3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T11:26:39.001Z", + "completed":"2017-06-30T11:26:39.001Z", + "new_balance":"3724.83", + "value":"227.39" + } + }, + { + "id":"2e165123-e44a-4838-8c6b-385936d4a459", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T02:44:08.391Z", + "completed":"2017-09-01T02:44:08.391Z", + "new_balance":"1093.62", + "value":"-2631.21" + } + }, + { + "id":"854d865d-82f8-46ab-85d7-e47987b9fc19", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T07:20:56.686Z", + "completed":"2017-09-01T07:20:56.686Z", + "new_balance":"361.77", + "value":"-731.85" + } + }, + { + "id":"2c002ef2-3cda-472e-a1a5-568a9930f3ea", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T07:47:07.206Z", + "completed":"2017-09-01T07:47:07.206Z", + "new_balance":"-3332.00", + "value":"-3693.77" + } + }, + { + "id":"d84e6a0d-1384-45ac-a97d-0890ccd1d3a6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T13:32:46.521Z", + "completed":"2017-09-01T13:32:46.521Z", + "new_balance":"-3529.91", + "value":"-197.91" + } + }, + { + "id":"913fc9e7-e4e1-4c15-a0fb-087b1913eb12", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:38:34.839Z", + "completed":"2017-09-01T15:38:34.839Z", + "new_balance":"-3847.12", + "value":"-317.21" + } + }, + { + "id":"c89d42a8-d2c7-4696-a06a-fdfb907b7195", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T15:53:56.285Z", + "completed":"2017-09-01T15:53:56.285Z", + "new_balance":"-4010.60", + "value":"-163.48" + } + }, + { + "id":"31e9a1f2-65c3-40ea-813a-ffe295b3a836", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T09:43:23.383Z", + "completed":"2017-09-12T09:43:23.383Z", + "new_balance":"-4327.81", + "value":"-317.21" + } + }, + { + "id":"af2ae94b-a13c-4a31-a9e4-249d0c800296", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T14:55:08.588Z", + "completed":"2017-09-12T14:55:08.588Z", + "new_balance":"-4374.71", + "value":"-46.90" + } + }, + { + "id":"ace90788-ddba-449d-860d-50406b28e354", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T15:05:12.409Z", + "completed":"2017-09-12T15:05:12.409Z", + "new_balance":"-5106.56", + "value":"-731.85" + } + }, + { + "id":"461ee381-f8b3-4def-9b9a-f4ba36170474", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T21:40:35.972Z", + "completed":"2017-09-12T21:40:35.972Z", + "new_balance":"-5159.74", + "value":"-53.18" + } + }, + { + "id":"8117941f-6acd-4b32-98ab-dc0646225a4d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T12:58:01.546Z", + "completed":"2017-09-15T12:58:01.546Z", + "new_balance":"-3268.42", + "value":"1891.32" + } + }, + { + "id":"ca37b845-a4f3-4dfb-8bba-1de75cda1f51", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T22:18:28.630Z", + "completed":"2017-09-15T22:18:28.630Z", + "new_balance":"-3041.03", + "value":"227.39" + } + }, + { + "id":"1f26bb09-794c-4636-8a39-0e8a21f847ae", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:04:11.450Z", + "completed":"2017-09-17T18:04:11.450Z", + "new_balance":"-3120.11", + "value":"-79.08" + } + }, + { + "id":"ec748379-2b99-44ce-afd1-ebdfd5b9cf5d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T20:15:56.386Z", + "completed":"2017-09-17T20:15:56.386Z", + "new_balance":"-2219.13", + "value":"900.98" + } + }, + { + "id":"ece6b6ba-7c42-4144-9dac-f130ee77565f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T23:08:57.620Z", + "completed":"2017-09-17T23:08:57.620Z", + "new_balance":"-2270.23", + "value":"-51.10" + } + }, + { + "id":"492ba0f4-79a0-479c-bb28-a80431aadd67", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T04:25:51.506Z", + "completed":"2017-09-19T04:25:51.506Z", + "new_balance":"-1820.23", + "value":"450.00" + } + }, + { + "id":"8f72018e-0192-4169-8398-ad5d987f6547", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:18:05.228Z", + "completed":"2017-09-21T14:18:05.228Z", + "new_balance":"-1758.98", + "value":"61.25" + } + }, + { + "id":"92f63a2a-fcb6-4351-8974-c6acd722669a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:35:26.348Z", + "completed":"2017-09-21T20:35:26.348Z", + "new_balance":"-1832.91", + "value":"-73.93" + } + }, + { + "id":"b9dcfaed-ca4a-4a4f-b53d-631608d86de9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T01:33:52.553Z", + "completed":"2017-09-24T01:33:52.553Z", + "new_balance":"-1605.52", + "value":"227.39" + } + }, + { + "id":"2a0b10eb-4582-466b-a841-95233b894fc2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T23:09:28.198Z", + "completed":"2017-09-24T23:09:28.198Z", + "new_balance":"-2132.08", + "value":"-526.56" + } + }, + { + "id":"c48b7abb-9359-4e19-94c7-15fe0aa95fc0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T03:22:20.169Z", + "completed":"2017-09-25T03:22:20.169Z", + "new_balance":"-1678.43", + "value":"453.65" + } + }, + { + "id":"14c70c68-c36a-470b-ae58-dad5119e5b31", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T08:03:46.364Z", + "completed":"2017-09-25T08:03:46.364Z", + "new_balance":"-2345.58", + "value":"-667.15" + } + }, + { + "id":"9b95bab5-6d80-4c65-b157-6a5256e80379", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T13:14:09.957Z", + "completed":"2017-09-28T13:14:09.957Z", + "new_balance":"737.29", + "value":"3082.87" + } + }, + { + "id":"462ad45d-329f-4e5b-9209-350c67b592a2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T16:22:58.113Z", + "completed":"2017-09-28T16:22:58.113Z", + "new_balance":"2628.61", + "value":"1891.32" + } + }, + { + "id":"f4490973-1b2f-438c-82d9-ebb092d02374", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T12:07:18.952Z", + "completed":"2017-09-30T12:07:18.952Z", + "new_balance":"2856.00", + "value":"227.39" + } + }, + { + "id":"97e95d9b-8892-4b8b-830f-a980bac25620", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T23:00:53.831Z", + "completed":"2017-09-30T23:00:53.831Z", + "new_balance":"3083.62", + "value":"227.62" + } + }, + { + "id":"c17bab41-711f-4740-a27d-4e8090551fbd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T01:22:57.192Z", + "completed":"2017-12-01T01:22:57.192Z", + "new_balance":"452.41", + "value":"-2631.21" + } + }, + { + "id":"8abe1808-3912-4b9e-a0ee-2e265547e338", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T11:14:15.732Z", + "completed":"2017-12-01T11:14:15.732Z", + "new_balance":"-3241.36", + "value":"-3693.77" + } + }, + { + "id":"64ac872c-eda9-4c24-b620-3e7125decf8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T12:59:32.034Z", + "completed":"2017-12-01T12:59:32.034Z", + "new_balance":"-3558.57", + "value":"-317.21" + } + }, + { + "id":"dee2ac0d-ce43-45a5-9d3d-14f5cd0d2178", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T13:57:14.812Z", + "completed":"2017-12-01T13:57:14.812Z", + "new_balance":"-3756.48", + "value":"-197.91" + } + }, + { + "id":"405ba94d-6286-481e-8a0f-dfa57783e414", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T15:55:21.465Z", + "completed":"2017-12-01T15:55:21.465Z", + "new_balance":"-4488.33", + "value":"-731.85" + } + }, + { + "id":"1d128375-6a43-4bca-aeb3-651c48e16078", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T18:42:57.719Z", + "completed":"2017-12-01T18:42:57.719Z", + "new_balance":"-4651.81", + "value":"-163.48" + } + }, + { + "id":"74fac8ad-4bcc-4ad5-9953-c57b091c8f8e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T06:10:34.920Z", + "completed":"2017-12-04T06:10:34.920Z", + "new_balance":"-4698.71", + "value":"-46.90" + } + }, + { + "id":"4ce898f0-f482-4748-aa62-d43c2f89293a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:30:45.376Z", + "completed":"2017-12-04T17:30:45.376Z", + "new_balance":"-4751.89", + "value":"-53.18" + } + }, + { + "id":"d9399c89-90bc-42c6-80fa-4f2820a34105", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T15:54:25.343Z", + "completed":"2017-12-05T15:54:25.343Z", + "new_balance":"-5483.74", + "value":"-731.85" + } + }, + { + "id":"c280719f-2542-4393-8727-6e632c7611ca", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T21:08:04.253Z", + "completed":"2017-12-05T21:08:04.253Z", + "new_balance":"-5800.95", + "value":"-317.21" + } + }, + { + "id":"e8dfdbf5-4196-42f8-a0fc-9f0b2d4b7c52", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:16:53.397Z", + "completed":"2017-12-07T03:16:53.397Z", + "new_balance":"-5573.56", + "value":"227.39" + } + }, + { + "id":"43e95859-a7b8-447a-9076-0412bada11f9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:50:08.395Z", + "completed":"2017-12-07T03:50:08.395Z", + "new_balance":"-3682.24", + "value":"1891.32" + } + }, + { + "id":"fe62f733-5872-4ee9-a066-68c9e81a0a7d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T07:01:00.072Z", + "completed":"2017-12-07T07:01:00.072Z", + "new_balance":"-3733.34", + "value":"-51.10" + } + }, + { + "id":"43d64e59-3059-43ea-9816-b37983f32b7d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T07:35:15.770Z", + "completed":"2017-12-07T07:35:15.770Z", + "new_balance":"-2832.36", + "value":"900.98" + } + }, + { + "id":"473b7eb0-3876-4928-8e91-4180c3da280b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T19:22:33.560Z", + "completed":"2017-12-11T19:22:33.560Z", + "new_balance":"-2911.44", + "value":"-79.08" + } + }, + { + "id":"50841a3d-d666-4f16-9faf-60c5050eda2f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T04:45:20.690Z", + "completed":"2017-12-14T04:45:20.690Z", + "new_balance":"-2850.19", + "value":"61.25" + } + }, + { + "id":"4e0d9962-a28e-4890-93fa-fdba731dc6d5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T14:27:55.079Z", + "completed":"2017-12-14T14:27:55.079Z", + "new_balance":"-2400.19", + "value":"450.00" + } + }, + { + "id":"09bcc656-51b6-4151-83be-53e1a4197fdd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T22:54:09.590Z", + "completed":"2017-12-14T22:54:09.590Z", + "new_balance":"-2474.12", + "value":"-73.93" + } + }, + { + "id":"30976f08-67c8-40eb-a648-2a12dd711b2b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T07:13:06.791Z", + "completed":"2017-12-16T07:13:06.791Z", + "new_balance":"-3000.68", + "value":"-526.56" + } + }, + { + "id":"780a7048-c2c4-4c3f-8464-350a202463ce", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T23:07:09.734Z", + "completed":"2017-12-16T23:07:09.734Z", + "new_balance":"-2773.29", + "value":"227.39" + } + }, + { + "id":"795481ce-65ff-4fc7-bf4d-cb077c4fb69e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T06:30:24.323Z", + "completed":"2017-12-21T06:30:24.323Z", + "new_balance":"-3440.44", + "value":"-667.15" + } + }, + { + "id":"69adce2a-c10c-4f0c-883f-f9308385384f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:54:12.683Z", + "completed":"2017-12-21T18:54:12.683Z", + "new_balance":"-1549.12", + "value":"1891.32" + } + }, + { + "id":"906b1dc7-2c1f-40db-87e0-bd5f7ada8ceb", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T23:35:41.820Z", + "completed":"2017-12-21T23:35:41.820Z", + "new_balance":"1533.75", + "value":"3082.87" + } + }, + { + "id":"fc22039e-a966-494e-b9c6-c609277b7180", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T23:39:08.285Z", + "completed":"2017-12-21T23:39:08.285Z", + "new_balance":"1987.40", + "value":"453.65" + } + }, + { + "id":"01a4f4f9-5f29-408e-b0d2-3c9ec8a17c4c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T03:35:20.406Z", + "completed":"2017-12-30T03:35:20.406Z", + "new_balance":"2214.79", + "value":"227.39" + } + }, + { + "id":"97622251-725b-4f41-9a64-82bba7dac13c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T22:25:52.320Z", + "completed":"2017-12-30T22:25:52.320Z", + "new_balance":"2442.41", + "value":"227.62" + } + }, + { + "id":"feec7016-b8f8-4a90-8de5-b725c320fffa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T07:58:16.248Z", + "completed":"2016-01-01T07:58:16.248Z", + "new_balance":"6045.10", + "value":"1022.42" + } + }, + { + "id":"f323ef80-854c-40f4-ab75-b8077ec350d0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:17:54.586Z", + "completed":"2016-01-01T12:17:54.586Z", + "new_balance":"7725.51", + "value":"1680.41" + } + }, + { + "id":"fe33af8b-a4f7-4cce-9557-7001e1e63615", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T07:48:55.891Z", + "completed":"2016-01-02T07:48:55.891Z", + "new_balance":"7317.94", + "value":"-407.57" + } + }, + { + "id":"5d1b3328-c600-4a6a-89b1-4f5c336e73a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T11:20:05.033Z", + "completed":"2016-01-03T11:20:05.033Z", + "new_balance":"7311.56", + "value":"-6.38" + } + }, + { + "id":"c00cd2a2-a4ea-46ea-9c7c-15dac77022fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T18:13:22.407Z", + "completed":"2016-01-03T18:13:22.407Z", + "new_balance":"7264.76", + "value":"-46.80" + } + }, + { + "id":"e904ef5a-e2f7-418f-8916-50ee2047ee68", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T23:53:15.497Z", + "completed":"2016-01-03T23:53:15.497Z", + "new_balance":"7247.14", + "value":"-17.62" + } + }, + { + "id":"20a810dd-76a1-45f6-9c24-7116059222d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T02:29:53.221Z", + "completed":"2016-01-04T02:29:53.221Z", + "new_balance":"7236.23", + "value":"-10.91" + } + }, + { + "id":"15dbf798-ba2b-4680-98e3-0346d7042c9b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T19:52:51.848Z", + "completed":"2016-01-05T19:52:51.848Z", + "new_balance":"7229.24", + "value":"-6.99" + } + }, + { + "id":"5b9f6682-ee32-42ce-8ab1-b6346286b6ec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T10:30:50.725Z", + "completed":"2016-01-07T10:30:50.725Z", + "new_balance":"7210.08", + "value":"-19.16" + } + }, + { + "id":"0c1809a0-40c7-4d25-8b04-2ec915bf06fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T18:32:11.867Z", + "completed":"2016-01-07T18:32:11.867Z", + "new_balance":"7185.15", + "value":"-24.93" + } + }, + { + "id":"36322d0e-9b7a-45ad-abf6-70cd94d4d8fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T13:51:04.664Z", + "completed":"2016-01-08T13:51:04.664Z", + "new_balance":"7169.14", + "value":"-16.01" + } + }, + { + "id":"4f88719e-96cb-407c-bee5-1ad08a7a6f7d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T15:49:10.038Z", + "completed":"2016-01-08T15:49:10.038Z", + "new_balance":"7154.15", + "value":"-14.99" + } + }, + { + "id":"48a085f5-1385-422f-9e9d-fe846dca33fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:31:11.119Z", + "completed":"2016-01-09T07:31:11.119Z", + "new_balance":"7124.99", + "value":"-29.16" + } + }, + { + "id":"a514fcbb-d179-405e-9e5b-de16eadbfa20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T15:47:29.887Z", + "completed":"2016-01-09T15:47:29.887Z", + "new_balance":"7079.93", + "value":"-45.06" + } + }, + { + "id":"26be7181-b470-432d-8673-ecd3e19a4750", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T04:36:45.930Z", + "completed":"2016-01-10T04:36:45.930Z", + "new_balance":"7035.45", + "value":"-44.48" + } + }, + { + "id":"2cae57e9-b04d-4a4e-82b2-7eb169c04c9d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T17:21:30.198Z", + "completed":"2016-01-10T17:21:30.198Z", + "new_balance":"6930.73", + "value":"-104.72" + } + }, + { + "id":"a30aec3f-8da3-460a-a8c2-203a24a3a2cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:40:31.003Z", + "completed":"2016-01-11T02:40:31.003Z", + "new_balance":"6924.96", + "value":"-5.77" + } + }, + { + "id":"2b85e8ab-2b03-43df-bdd6-03445f49fad7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T15:37:00.357Z", + "completed":"2016-01-11T15:37:00.357Z", + "new_balance":"7015.84", + "value":"90.88" + } + }, + { + "id":"946a2f31-25e4-4a77-9e62-eda950ed10a4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T23:22:06.807Z", + "completed":"2016-01-11T23:22:06.807Z", + "new_balance":"6936.76", + "value":"-79.08" + } + }, + { + "id":"3e75165a-c837-4e1d-a529-6cc60ea391a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T06:41:47.860Z", + "completed":"2016-01-12T06:41:47.860Z", + "new_balance":"6926.69", + "value":"-10.07" + } + }, + { + "id":"048c8c22-c0ea-41b1-83a5-4fe5795a81a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T21:01:52.418Z", + "completed":"2016-01-15T21:01:52.418Z", + "new_balance":"6901.29", + "value":"-25.40" + } + }, + { + "id":"c9eb0b8b-3fd3-4216-ac83-a3d92e7f37f3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T05:45:52.759Z", + "completed":"2016-01-16T05:45:52.759Z", + "new_balance":"6870.48", + "value":"-30.81" + } + }, + { + "id":"8380dbb2-39c6-4daa-ac81-b68706f40215", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T21:57:53.485Z", + "completed":"2016-01-17T21:57:53.485Z", + "new_balance":"6855.65", + "value":"-14.83" + } + }, + { + "id":"10806e5e-1aa7-4eff-965c-2ce9f2b555ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T22:25:00.018Z", + "completed":"2016-01-20T22:25:00.018Z", + "new_balance":"6848.66", + "value":"-6.99" + } + }, + { + "id":"19f766c6-501d-4b78-8cc5-c756bdeabe38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T12:10:01.761Z", + "completed":"2016-01-21T12:10:01.761Z", + "new_balance":"6799.88", + "value":"-48.78" + } + }, + { + "id":"f061ce9c-2a84-41cf-8e5d-9a4f0a96db14", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T17:39:43.205Z", + "completed":"2016-01-23T17:39:43.205Z", + "new_balance":"6601.97", + "value":"-197.91" + } + }, + { + "id":"9b005f83-f08d-4319-b681-2a651da6b5d6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:40:11.360Z", + "completed":"2016-02-01T10:40:11.360Z", + "new_balance":"7624.39", + "value":"1022.42" + } + }, + { + "id":"b585acdd-f3df-4469-82c8-71f0b6cea565", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T09:29:00.845Z", + "completed":"2016-02-03T09:29:00.845Z", + "new_balance":"7460.91", + "value":"-163.48" + } + }, + { + "id":"96c6582b-2adf-410d-aac0-fc8e63cfd37d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T21:59:03.399Z", + "completed":"2016-02-03T21:59:03.399Z", + "new_balance":"7053.34", + "value":"-407.57" + } + }, + { + "id":"6f17ab7f-ddab-4eeb-940e-d632d871c02f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T04:27:23.305Z", + "completed":"2016-02-04T04:27:23.305Z", + "new_balance":"7038.83", + "value":"-14.51" + } + }, + { + "id":"1ea59b0f-1f86-483f-b6e7-e24e6f849312", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T13:02:33.497Z", + "completed":"2016-02-05T13:02:33.497Z", + "new_balance":"7032.34", + "value":"-6.49" + } + }, + { + "id":"41c3a1c3-069d-4021-b939-9608d1f161c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T12:27:30.640Z", + "completed":"2016-02-06T12:27:30.640Z", + "new_balance":"7007.54", + "value":"-24.80" + } + }, + { + "id":"0634ee0f-a746-4222-aa79-c920dc54a389", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T06:32:35.406Z", + "completed":"2016-02-07T06:32:35.406Z", + "new_balance":"6966.19", + "value":"-41.35" + } + }, + { + "id":"caebe125-47ac-446a-a4f9-fa0be1080fff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T08:08:49.202Z", + "completed":"2016-02-07T08:08:49.202Z", + "new_balance":"6937.03", + "value":"-29.16" + } + }, + { + "id":"1265ac5e-a8af-4da8-8744-082b5e29536d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T09:06:27.698Z", + "completed":"2016-02-07T09:06:27.698Z", + "new_balance":"6832.31", + "value":"-104.72" + } + }, + { + "id":"9bcc8093-6db2-4ce3-9fa3-7e517b6bb749", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:34:22.725Z", + "completed":"2016-02-08T17:34:22.725Z", + "new_balance":"6781.75", + "value":"-50.56" + } + }, + { + "id":"afb43f3d-b73a-4a85-a966-095291b6449a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T21:25:24.916Z", + "completed":"2016-02-09T21:25:24.916Z", + "new_balance":"6755.95", + "value":"-25.80" + } + }, + { + "id":"768f1fe4-dfe5-4dc0-8821-a4d7cdd5d5ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T04:59:28.165Z", + "completed":"2016-02-10T04:59:28.165Z", + "new_balance":"6748.96", + "value":"-6.99" + } + }, + { + "id":"91bfbcd2-b295-49e6-8303-06f00246eff1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T02:04:12.968Z", + "completed":"2016-02-12T02:04:12.968Z", + "new_balance":"6713.77", + "value":"-35.19" + } + }, + { + "id":"f8f8d4ec-b21d-4d74-a089-44fc5fa61f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T19:31:42.126Z", + "completed":"2016-02-14T19:31:42.126Z", + "new_balance":"6684.61", + "value":"-29.16" + } + }, + { + "id":"fd037c46-58c2-4f99-a5a6-a0f03dff255d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T15:35:49.109Z", + "completed":"2016-02-16T15:35:49.109Z", + "new_balance":"6639.10", + "value":"-45.51" + } + }, + { + "id":"0d29d07e-d6e5-4f45-adc3-9794eaa1db0a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T20:51:56.108Z", + "completed":"2016-02-16T20:51:56.108Z", + "new_balance":"6633.33", + "value":"-5.77" + } + }, + { + "id":"ed8647c1-d794-4afb-b2ef-ab38f3a3c99e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T21:04:14.554Z", + "completed":"2016-02-18T21:04:14.554Z", + "new_balance":"6624.93", + "value":"-8.40" + } + }, + { + "id":"4a931b77-8360-41df-8d4a-e47ead20ccff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T07:29:28.672Z", + "completed":"2016-02-21T07:29:28.672Z", + "new_balance":"6576.15", + "value":"-48.78" + } + }, + { + "id":"22e8fc51-8584-4086-8799-3d32e0883f25", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T17:17:08.965Z", + "completed":"2016-02-21T17:17:08.965Z", + "new_balance":"6690.29", + "value":"114.14" + } + }, + { + "id":"1a3b2af8-4b65-4025-a4ef-4d6a73937aef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T21:42:38.824Z", + "completed":"2016-02-27T21:42:38.824Z", + "new_balance":"6492.38", + "value":"-197.91" + } + }, + { + "id":"e110786d-d842-4fa6-8a62-81b792bedbed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T13:35:23.080Z", + "completed":"2016-03-01T13:35:23.080Z", + "new_balance":"7514.80", + "value":"1022.42" + } + }, + { + "id":"6e16b42b-9546-47f1-b594-7161d923691a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T09:34:42.851Z", + "completed":"2016-03-03T09:34:42.851Z", + "new_balance":"7107.23", + "value":"-407.57" + } + }, + { + "id":"dc19f265-2f49-4289-804f-e0e02f01d8d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T01:39:39.187Z", + "completed":"2016-03-04T01:39:39.187Z", + "new_balance":"7075.78", + "value":"-31.45" + } + }, + { + "id":"a9af2ae8-e795-410b-aab8-81fa40c2cdcd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T08:56:48.304Z", + "completed":"2016-03-04T08:56:48.304Z", + "new_balance":"7044.97", + "value":"-30.81" + } + }, + { + "id":"0b8c1164-3fe5-4c0d-8777-cb842c75b57b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T14:06:15.803Z", + "completed":"2016-03-04T14:06:15.803Z", + "new_balance":"7027.97", + "value":"-17.00" + } + }, + { + "id":"2ab913af-d215-45b2-b2ac-5f1b3c117943", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T19:41:52.026Z", + "completed":"2016-03-04T19:41:52.026Z", + "new_balance":"6982.46", + "value":"-45.51" + } + }, + { + "id":"7c742d9b-60cb-4988-a54f-ee079a902da8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T02:50:45.132Z", + "completed":"2016-03-05T02:50:45.132Z", + "new_balance":"6877.74", + "value":"-104.72" + } + }, + { + "id":"8c2e96b6-34cb-4925-8d91-33fda61563f6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T11:06:15.068Z", + "completed":"2016-03-05T11:06:15.068Z", + "new_balance":"6832.20", + "value":"-45.54" + } + }, + { + "id":"7e52add1-943d-48de-acf3-4fdb2009dbfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T13:37:21.822Z", + "completed":"2016-03-05T13:37:21.822Z", + "new_balance":"6818.14", + "value":"-14.06" + } + }, + { + "id":"d8502ea7-3722-4765-9037-359227649332", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T16:41:02.045Z", + "completed":"2016-03-05T16:41:02.045Z", + "new_balance":"6812.37", + "value":"-5.77" + } + }, + { + "id":"fe2c3752-2724-4279-8751-4432fc55b302", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T12:53:07.400Z", + "completed":"2016-03-06T12:53:07.400Z", + "new_balance":"6713.25", + "value":"-99.12" + } + }, + { + "id":"9f7fd598-c017-478a-9f34-8c3efc44145f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T17:07:01.889Z", + "completed":"2016-03-06T17:07:01.889Z", + "new_balance":"6631.46", + "value":"-81.79" + } + }, + { + "id":"40235442-db0e-4908-953f-bdb9b77658cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T06:05:01.796Z", + "completed":"2016-03-07T06:05:01.796Z", + "new_balance":"6623.85", + "value":"-7.61" + } + }, + { + "id":"b9d69651-5c9b-41c7-82ce-6b9b83cb3067", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T18:00:20.011Z", + "completed":"2016-03-07T18:00:20.011Z", + "new_balance":"6618.08", + "value":"-5.77" + } + }, + { + "id":"a2a9594d-1e9a-4ec1-9e98-4fe5f2faf5d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T09:50:08.110Z", + "completed":"2016-03-08T09:50:08.110Z", + "new_balance":"6610.47", + "value":"-7.61" + } + }, + { + "id":"3ac9ddf2-ea6b-4f0c-8869-3b9c671d9f9e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T11:57:01.631Z", + "completed":"2016-03-08T11:57:01.631Z", + "new_balance":"6601.95", + "value":"-8.52" + } + }, + { + "id":"e68fa3da-feb4-4d0c-915a-0c83d36fc6c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T19:38:25.823Z", + "completed":"2016-03-10T19:38:25.823Z", + "new_balance":"6569.61", + "value":"-32.34" + } + }, + { + "id":"7e773865-838a-41c1-bdcb-c8d7c2238188", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T00:41:27.922Z", + "completed":"2016-03-11T00:41:27.922Z", + "new_balance":"6557.24", + "value":"-12.37" + } + }, + { + "id":"28c69327-bcda-4b85-9ad8-6a6a4821aaea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T04:18:56.099Z", + "completed":"2016-03-11T04:18:56.099Z", + "new_balance":"6551.47", + "value":"-5.77" + } + }, + { + "id":"f0556f2c-16fd-4e88-84c4-67a5858198d6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T13:02:09.224Z", + "completed":"2016-03-11T13:02:09.224Z", + "new_balance":"6527.17", + "value":"-24.30" + } + }, + { + "id":"1bb03103-235c-4067-b10a-952bb9405891", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T08:26:34.068Z", + "completed":"2016-03-12T08:26:34.068Z", + "new_balance":"6425.91", + "value":"-101.26" + } + }, + { + "id":"d9c5a022-4934-4171-a6da-c5de73e13d41", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:07:30.718Z", + "completed":"2016-03-12T15:07:30.718Z", + "new_balance":"6359.73", + "value":"-66.18" + } + }, + { + "id":"518b371c-498f-4224-8f06-f4d265611596", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:43:22.226Z", + "completed":"2016-03-12T16:43:22.226Z", + "new_balance":"6340.57", + "value":"-19.16" + } + }, + { + "id":"2d43cc4a-acaa-4e8a-aafe-7796a893d7a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T18:39:43.451Z", + "completed":"2016-03-12T18:39:43.451Z", + "new_balance":"6334.80", + "value":"-5.77" + } + }, + { + "id":"9c1fff2f-0cce-4363-9b14-e365ded22439", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T03:28:34.484Z", + "completed":"2016-03-13T03:28:34.484Z", + "new_balance":"6329.03", + "value":"-5.77" + } + }, + { + "id":"44d7c8ed-a3a4-4a40-a741-c3c1d60d6a77", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T05:13:37.560Z", + "completed":"2016-03-13T05:13:37.560Z", + "new_balance":"6286.54", + "value":"-42.49" + } + }, + { + "id":"8b5caa04-2216-4aa5-a41c-88792b04ab99", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T09:08:28.026Z", + "completed":"2016-03-15T09:08:28.026Z", + "new_balance":"6237.65", + "value":"-48.89" + } + }, + { + "id":"86759b90-0bb1-470d-a59d-00b0dd0a30f4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T12:45:41.918Z", + "completed":"2016-03-15T12:45:41.918Z", + "new_balance":"6195.42", + "value":"-42.23" + } + }, + { + "id":"153e84ba-363f-4174-a56b-63b77efe6093", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T16:21:28.181Z", + "completed":"2016-03-17T16:21:28.181Z", + "new_balance":"6151.45", + "value":"-43.97" + } + }, + { + "id":"f54119d0-8cfd-4e90-909f-de0266123b65", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T07:19:45.831Z", + "completed":"2016-03-18T07:19:45.831Z", + "new_balance":"6053.95", + "value":"-97.50" + } + }, + { + "id":"6df9569f-8051-4456-b2c1-38370ceb09af", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T15:14:26.894Z", + "completed":"2016-03-20T15:14:26.894Z", + "new_balance":"5949.63", + "value":"-104.32" + } + }, + { + "id":"68ff9815-9afe-40f8-9e5d-619bdafd94e4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:09:32.738Z", + "completed":"2016-03-22T06:09:32.738Z", + "new_balance":"5909.31", + "value":"-40.32" + } + }, + { + "id":"fef29cc1-4606-4551-9582-a32e5ac997ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T06:45:24.096Z", + "completed":"2016-03-25T06:45:24.096Z", + "new_balance":"5896.30", + "value":"-13.01" + } + }, + { + "id":"4f320545-fd04-4abd-b53a-e7a1146f0320", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T18:24:02.068Z", + "completed":"2016-03-25T18:24:02.068Z", + "new_balance":"5890.53", + "value":"-5.77" + } + }, + { + "id":"5fa930f7-57ac-48d4-b85c-b1e74dd0a37c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T11:33:27.028Z", + "completed":"2016-03-26T11:33:27.028Z", + "new_balance":"5864.91", + "value":"-25.62" + } + }, + { + "id":"9ec69b36-b247-406c-aa65-6be6cea594ab", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T21:36:34.868Z", + "completed":"2016-03-26T21:36:34.868Z", + "new_balance":"5852.12", + "value":"-12.79" + } + }, + { + "id":"feac0456-ba35-4e76-ab5b-78022f96e5e3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:07:54.949Z", + "completed":"2016-03-27T22:07:54.949Z", + "new_balance":"5837.93", + "value":"-14.19" + } + }, + { + "id":"9857673f-f387-40c8-b040-931b5d0c7baf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T21:03:12.312Z", + "completed":"2016-03-28T21:03:12.312Z", + "new_balance":"5789.15", + "value":"-48.78" + } + }, + { + "id":"e298c9db-b6bd-4b2d-a6b7-50e72830b9d3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T21:26:46.876Z", + "completed":"2016-03-31T21:26:46.876Z", + "new_balance":"5591.24", + "value":"-197.91" + } + }, + { + "id":"78b48e91-dd24-46c2-b794-4b35d40ec901", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T00:51:31.171Z", + "completed":"2016-04-01T00:51:31.171Z", + "new_balance":"5183.67", + "value":"-407.57" + } + }, + { + "id":"bd785bd5-c2ba-4699-aece-6a8f5461745c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T01:11:12.627Z", + "completed":"2016-04-01T01:11:12.627Z", + "new_balance":"6206.09", + "value":"1022.42" + } + }, + { + "id":"96a8dad2-e5f9-4101-8c5a-792697c03b85", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T22:19:35.935Z", + "completed":"2016-04-01T22:19:35.935Z", + "new_balance":"7886.50", + "value":"1680.41" + } + }, + { + "id":"b83b6301-cda9-4da0-9014-bbcaa0787d1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:17:15.089Z", + "completed":"2016-04-03T12:17:15.089Z", + "new_balance":"7839.70", + "value":"-46.80" + } + }, + { + "id":"75e85c24-7d72-4812-9fe1-cd9531842a8d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T15:15:20.086Z", + "completed":"2016-04-03T15:15:20.086Z", + "new_balance":"7822.08", + "value":"-17.62" + } + }, + { + "id":"2e6d6e0a-4d74-4206-b631-000c00efb009", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T16:47:20.288Z", + "completed":"2016-04-03T16:47:20.288Z", + "new_balance":"7815.70", + "value":"-6.38" + } + }, + { + "id":"86f033ef-0c5b-4e16-962c-0b80435935cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:20:09.214Z", + "completed":"2016-04-05T15:20:09.214Z", + "new_balance":"7808.71", + "value":"-6.99" + } + }, + { + "id":"fab00a86-ee9a-4a7b-a8eb-8709f0f69145", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T23:15:25.856Z", + "completed":"2016-04-05T23:15:25.856Z", + "new_balance":"7797.80", + "value":"-10.91" + } + }, + { + "id":"b8f4ef70-39bf-4a78-bda2-c28d5427997e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T03:44:00.866Z", + "completed":"2016-04-06T03:44:00.866Z", + "new_balance":"7772.87", + "value":"-24.93" + } + }, + { + "id":"94b62b24-8506-458f-87eb-b6b126d54d28", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T06:20:30.694Z", + "completed":"2016-04-09T06:20:30.694Z", + "new_balance":"7753.71", + "value":"-19.16" + } + }, + { + "id":"5088dafc-15bb-4c1e-ab0b-008ea190102a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T02:54:27.434Z", + "completed":"2016-04-10T02:54:27.434Z", + "new_balance":"7738.72", + "value":"-14.99" + } + }, + { + "id":"75ae0389-fb72-4441-88f0-4444a0237a34", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T09:33:58.535Z", + "completed":"2016-04-11T09:33:58.535Z", + "new_balance":"7722.71", + "value":"-16.01" + } + }, + { + "id":"1648ee22-c4eb-46fe-ac45-08ac38dc1835", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T09:53:28.679Z", + "completed":"2016-04-11T09:53:28.679Z", + "new_balance":"7693.55", + "value":"-29.16" + } + }, + { + "id":"8a4249de-118f-4283-8f38-d3cbe9f8e243", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T11:30:30.088Z", + "completed":"2016-04-13T11:30:30.088Z", + "new_balance":"7648.49", + "value":"-45.06" + } + }, + { + "id":"42d43de9-8e64-4627-9357-82b721116557", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T15:11:14.864Z", + "completed":"2016-04-13T15:11:14.864Z", + "new_balance":"7543.77", + "value":"-104.72" + } + }, + { + "id":"b26d5869-0604-43e0-af6b-7e603627d50f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T16:37:44.625Z", + "completed":"2016-04-15T16:37:44.625Z", + "new_balance":"7499.29", + "value":"-44.48" + } + }, + { + "id":"f2a040f5-2361-46b9-a142-09ce51785477", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T00:55:13.284Z", + "completed":"2016-04-16T00:55:13.284Z", + "new_balance":"7489.22", + "value":"-10.07" + } + }, + { + "id":"6727fcd9-4877-4240-b099-ba61e0ffd3c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T19:26:06.438Z", + "completed":"2016-04-16T19:26:06.438Z", + "new_balance":"7483.45", + "value":"-5.77" + } + }, + { + "id":"2aca3c04-f00f-4b7f-ba95-2f1d76a624b4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:04:15.638Z", + "completed":"2016-04-18T16:04:15.638Z", + "new_balance":"7404.37", + "value":"-79.08" + } + }, + { + "id":"b0b652af-d7b4-4606-93e9-46b113a86ab4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T05:41:25.765Z", + "completed":"2016-04-23T05:41:25.765Z", + "new_balance":"7378.97", + "value":"-25.40" + } + }, + { + "id":"85f1596b-9cd9-465e-a0a5-ad814f20479a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T09:48:15.102Z", + "completed":"2016-04-24T09:48:15.102Z", + "new_balance":"7348.16", + "value":"-30.81" + } + }, + { + "id":"d16fc95e-c1f8-43fb-b126-344359344752", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T16:03:21.686Z", + "completed":"2016-04-24T16:03:21.686Z", + "new_balance":"7333.33", + "value":"-14.83" + } + }, + { + "id":"6cb68c16-780b-41de-a93b-ea70d0b423a9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T19:54:58.709Z", + "completed":"2016-04-26T19:54:58.709Z", + "new_balance":"7326.34", + "value":"-6.99" + } + }, + { + "id":"2c148d50-56e6-492f-a965-21df28097c6a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T09:47:09.804Z", + "completed":"2016-04-28T09:47:09.804Z", + "new_balance":"7128.43", + "value":"-197.91" + } + }, + { + "id":"b311e7d1-052c-4ada-b94a-c228102420a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T22:24:14.397Z", + "completed":"2016-04-28T22:24:14.397Z", + "new_balance":"7079.65", + "value":"-48.78" + } + }, + { + "id":"e163c9ff-3c9b-447a-a2d3-87700e2e3cf3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T02:39:19.974Z", + "completed":"2016-05-02T02:39:19.974Z", + "new_balance":"6916.17", + "value":"-163.48" + } + }, + { + "id":"b0cdf59d-6987-462d-bcb8-077b53650395", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T09:10:35.927Z", + "completed":"2016-05-02T09:10:35.927Z", + "new_balance":"6909.68", + "value":"-6.49" + } + }, + { + "id":"12dadcfa-0bb1-4efb-bf43-1386cd79ffed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T13:09:59.510Z", + "completed":"2016-05-02T13:09:59.510Z", + "new_balance":"6502.11", + "value":"-407.57" + } + }, + { + "id":"086eb9ae-d802-4942-8d0d-27b651e053cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T21:19:24.835Z", + "completed":"2016-05-02T21:19:24.835Z", + "new_balance":"6487.60", + "value":"-14.51" + } + }, + { + "id":"a7c35a0e-7493-46b5-ae30-2a0abb3b2f69", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T09:40:46.940Z", + "completed":"2016-05-06T09:40:46.940Z", + "new_balance":"6462.80", + "value":"-24.80" + } + }, + { + "id":"f2cb2d98-f461-47c0-b8e9-233816c2693c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T18:38:30.928Z", + "completed":"2016-05-06T18:38:30.928Z", + "new_balance":"6433.64", + "value":"-29.16" + } + }, + { + "id":"9926fc18-6ba9-4c55-8ef5-099a2d67ef5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T10:11:46.166Z", + "completed":"2016-05-07T10:11:46.166Z", + "new_balance":"6328.92", + "value":"-104.72" + } + }, + { + "id":"cbffd3a2-0bac-47e6-9dfe-ff6691ea040d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T11:32:51.902Z", + "completed":"2016-05-07T11:32:51.902Z", + "new_balance":"6287.57", + "value":"-41.35" + } + }, + { + "id":"22bdd76b-2665-4510-b4a9-c51e719a5301", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T17:39:54.328Z", + "completed":"2016-05-09T17:39:54.328Z", + "new_balance":"7309.99", + "value":"1022.42" + } + }, + { + "id":"4dcc3f55-7845-420e-8a2a-1888c637542b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:04:25.607Z", + "completed":"2016-05-14T21:04:25.607Z", + "new_balance":"7259.43", + "value":"-50.56" + } + }, + { + "id":"8fbe6277-4b66-4bc3-be99-4734ba03dd4f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T22:49:36.952Z", + "completed":"2016-05-14T22:49:36.952Z", + "new_balance":"7233.63", + "value":"-25.80" + } + }, + { + "id":"8acd28ff-cd88-450a-a8ed-8f64edb0617e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T22:30:35.823Z", + "completed":"2016-05-16T22:30:35.823Z", + "new_balance":"7226.64", + "value":"-6.99" + } + }, + { + "id":"36d92f0b-30e0-44ed-8bf4-07856979483c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T17:19:23.697Z", + "completed":"2016-05-21T17:19:23.697Z", + "new_balance":"7191.45", + "value":"-35.19" + } + }, + { + "id":"a8b890bf-b4e4-4744-a416-43a06572870c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T22:40:17.245Z", + "completed":"2016-05-23T22:40:17.245Z", + "new_balance":"7162.29", + "value":"-29.16" + } + }, + { + "id":"a5a307e3-7903-4802-b842-afb6bda8d87c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T23:50:06.159Z", + "completed":"2016-05-23T23:50:06.159Z", + "new_balance":"7156.52", + "value":"-5.77" + } + }, + { + "id":"9961866e-dac0-41e0-90df-c2b3ad854bef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T20:57:08.870Z", + "completed":"2016-05-24T20:57:08.870Z", + "new_balance":"7111.01", + "value":"-45.51" + } + }, + { + "id":"cc5112c9-9261-4a5b-aee9-c801e5bec6e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T02:40:17.846Z", + "completed":"2016-05-27T02:40:17.846Z", + "new_balance":"7102.61", + "value":"-8.40" + } + }, + { + "id":"e8197527-0f40-4f72-b090-436f26433a8d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T09:32:10.791Z", + "completed":"2016-05-30T09:32:10.791Z", + "new_balance":"7053.83", + "value":"-48.78" + } + }, + { + "id":"b7839c56-3829-44ae-9152-ee2c7168e7ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T11:48:08.860Z", + "completed":"2016-05-30T11:48:08.860Z", + "new_balance":"6855.92", + "value":"-197.91" + } + }, + { + "id":"ba456915-db63-4460-bb42-00ae7e8e0802", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T16:33:54.667Z", + "completed":"2016-06-01T16:33:54.667Z", + "new_balance":"7878.34", + "value":"1022.42" + } + }, + { + "id":"c29d9d05-eb1d-40f2-8eef-716e2d2d2577", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T23:23:56.510Z", + "completed":"2016-06-01T23:23:56.510Z", + "new_balance":"7470.77", + "value":"-407.57" + } + }, + { + "id":"4744ae94-8704-4c28-976e-214f340b93f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T05:02:26.596Z", + "completed":"2016-06-04T05:02:26.596Z", + "new_balance":"7439.32", + "value":"-31.45" + } + }, + { + "id":"b8aa6909-5417-4b84-b01d-4a19331924cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T23:43:18.268Z", + "completed":"2016-06-04T23:43:18.268Z", + "new_balance":"7422.32", + "value":"-17.00" + } + }, + { + "id":"3beadf1c-4886-4690-89a5-b6fcfdb96fbd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T00:52:22.646Z", + "completed":"2016-06-11T00:52:22.646Z", + "new_balance":"7376.81", + "value":"-45.51" + } + }, + { + "id":"f62a81cb-0f4a-4b2e-bdde-17563cd71313", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T21:12:23.326Z", + "completed":"2016-06-11T21:12:23.326Z", + "new_balance":"7346.00", + "value":"-30.81" + } + }, + { + "id":"b481a4f8-dbc7-42bd-a883-a5dcc3a1cf52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T04:18:05.865Z", + "completed":"2016-06-12T04:18:05.865Z", + "new_balance":"7331.94", + "value":"-14.06" + } + }, + { + "id":"1b339a62-7c66-4c31-bd07-0c2aa3a26bf6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T06:47:28.234Z", + "completed":"2016-06-12T06:47:28.234Z", + "new_balance":"7326.17", + "value":"-5.77" + } + }, + { + "id":"a6a6fe3e-133a-4bef-b457-87fc67a5da5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T12:21:48.483Z", + "completed":"2016-06-12T12:21:48.483Z", + "new_balance":"7221.45", + "value":"-104.72" + } + }, + { + "id":"9ff0a151-3748-4b4f-b7f5-0ac2e2a5ca23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T06:37:56.428Z", + "completed":"2016-06-13T06:37:56.428Z", + "new_balance":"7175.91", + "value":"-45.54" + } + }, + { + "id":"868c9d99-7b80-45f6-89d8-9a19b1eac7e8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T07:00:39.847Z", + "completed":"2016-06-13T07:00:39.847Z", + "new_balance":"7094.12", + "value":"-81.79" + } + }, + { + "id":"94c07ff8-32fc-4398-b3f8-bab6b830e0c2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:00:03.817Z", + "completed":"2016-06-13T22:00:03.817Z", + "new_balance":"6995.00", + "value":"-99.12" + } + }, + { + "id":"3fde963d-e3ad-4d25-8d6a-c84c58a49f52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T02:58:03.717Z", + "completed":"2016-06-14T02:58:03.717Z", + "new_balance":"6987.39", + "value":"-7.61" + } + }, + { + "id":"158d7f8d-1746-4400-8a55-3fd065e49b16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T16:33:36.759Z", + "completed":"2016-06-14T16:33:36.759Z", + "new_balance":"6981.62", + "value":"-5.77" + } + }, + { + "id":"36e5a61e-501f-4713-84b8-bfe58dae59f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T23:30:22.661Z", + "completed":"2016-06-14T23:30:22.661Z", + "new_balance":"6974.01", + "value":"-7.61" + } + }, + { + "id":"427c8207-3d48-489d-b941-bec1c1e6b502", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T01:50:12.074Z", + "completed":"2016-06-15T01:50:12.074Z", + "new_balance":"6968.24", + "value":"-5.77" + } + }, + { + "id":"5b81defd-86a5-4c88-8dbd-7e5c7acfd8c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T13:29:46.266Z", + "completed":"2016-06-15T13:29:46.266Z", + "new_balance":"6959.72", + "value":"-8.52" + } + }, + { + "id":"a74b75c5-4e23-4871-841c-8eb58f40cfb0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T20:50:55.100Z", + "completed":"2016-06-15T20:50:55.100Z", + "new_balance":"6927.38", + "value":"-32.34" + } + }, + { + "id":"7984b378-fa08-491a-ad02-f92f140353e0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T06:02:42.865Z", + "completed":"2016-06-16T06:02:42.865Z", + "new_balance":"6903.08", + "value":"-24.30" + } + }, + { + "id":"a63e6a5e-8a75-4540-a740-28a255c18b16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T11:47:18.241Z", + "completed":"2016-06-17T11:47:18.241Z", + "new_balance":"6890.71", + "value":"-12.37" + } + }, + { + "id":"2865e7cf-d27d-422d-8d02-90801c72f971", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T00:34:23.692Z", + "completed":"2016-06-18T00:34:23.692Z", + "new_balance":"6871.55", + "value":"-19.16" + } + }, + { + "id":"e7209de5-14ff-44f2-8b49-8c373dc188da", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T06:43:14.746Z", + "completed":"2016-06-18T06:43:14.746Z", + "new_balance":"6805.37", + "value":"-66.18" + } + }, + { + "id":"10558bb0-817f-49ba-9085-5089b4571f61", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T09:40:21.347Z", + "completed":"2016-06-18T09:40:21.347Z", + "new_balance":"6704.11", + "value":"-101.26" + } + }, + { + "id":"6a4fc033-4dc7-4951-b996-db239a1cd29a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T15:23:31.862Z", + "completed":"2016-06-18T15:23:31.862Z", + "new_balance":"6661.62", + "value":"-42.49" + } + }, + { + "id":"0c7e04cf-4ae0-427e-8a60-19ddeb2ba4a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T21:28:05.436Z", + "completed":"2016-06-18T21:28:05.436Z", + "new_balance":"6655.85", + "value":"-5.77" + } + }, + { + "id":"ee9fe7c9-b063-428e-97a2-0a6afc27f461", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T23:47:12.991Z", + "completed":"2016-06-18T23:47:12.991Z", + "new_balance":"6650.08", + "value":"-5.77" + } + }, + { + "id":"cb17b25c-4fd0-4aa0-83ca-915e71b8e3a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T02:15:10.804Z", + "completed":"2016-06-19T02:15:10.804Z", + "new_balance":"6607.85", + "value":"-42.23" + } + }, + { + "id":"fd545d9d-73ec-453e-940b-afc0c5622ec8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T04:24:33.832Z", + "completed":"2016-06-19T04:24:33.832Z", + "new_balance":"6563.88", + "value":"-43.97" + } + }, + { + "id":"f6b2c420-e268-4786-9986-2294373083d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T09:55:13.683Z", + "completed":"2016-06-19T09:55:13.683Z", + "new_balance":"6514.99", + "value":"-48.89" + } + }, + { + "id":"6a85f839-dc4c-454f-8f56-0cf67266ea00", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T08:29:41.291Z", + "completed":"2016-06-21T08:29:41.291Z", + "new_balance":"6417.49", + "value":"-97.50" + } + }, + { + "id":"2d54f92d-5e25-4540-b72f-0f5a26bbff32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T20:33:52.573Z", + "completed":"2016-06-21T20:33:52.573Z", + "new_balance":"6313.17", + "value":"-104.32" + } + }, + { + "id":"ab442bfa-f078-4050-a224-7b25e553a538", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T10:12:57.256Z", + "completed":"2016-06-22T10:12:57.256Z", + "new_balance":"6307.40", + "value":"-5.77" + } + }, + { + "id":"107af6ce-ee5e-4776-a83b-8e40f67d2112", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T12:19:46.104Z", + "completed":"2016-06-22T12:19:46.104Z", + "new_balance":"6294.39", + "value":"-13.01" + } + }, + { + "id":"ae3ff3df-6673-4b84-bddc-56ffc0ab4837", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T15:15:44.499Z", + "completed":"2016-06-22T15:15:44.499Z", + "new_balance":"6254.07", + "value":"-40.32" + } + }, + { + "id":"039c7a1a-3697-4c0b-bf76-a1a3ab02c6c5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T14:25:40.181Z", + "completed":"2016-06-23T14:25:40.181Z", + "new_balance":"6241.28", + "value":"-12.79" + } + }, + { + "id":"384f6e6a-ef19-4bb4-83b0-ab5ea4e5d783", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T07:36:11.895Z", + "completed":"2016-06-24T07:36:11.895Z", + "new_balance":"6215.66", + "value":"-25.62" + } + }, + { + "id":"4d5fa027-c80b-42e3-80f5-95b7b5ca335c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T20:14:04.674Z", + "completed":"2016-06-26T20:14:04.674Z", + "new_balance":"6201.47", + "value":"-14.19" + } + }, + { + "id":"fa87d5e6-c665-4794-b19b-f3e15ce362ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T06:00:28.904Z", + "completed":"2016-06-30T06:00:28.904Z", + "new_balance":"6003.56", + "value":"-197.91" + } + }, + { + "id":"46929cf0-a22f-4061-9436-66cfb9a243b6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T17:53:43.864Z", + "completed":"2016-06-30T17:53:43.864Z", + "new_balance":"5954.78", + "value":"-48.78" + } + }, + { + "id":"412ce528-565f-4210-9a77-29d85a9bd379", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T13:36:41.879Z", + "completed":"2016-07-01T13:36:41.879Z", + "new_balance":"6977.20", + "value":"1022.42" + } + }, + { + "id":"14c29dc4-1c2d-4501-8341-bde90a0ad2dc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T14:31:31.505Z", + "completed":"2016-07-01T14:31:31.505Z", + "new_balance":"8657.61", + "value":"1680.41" + } + }, + { + "id":"a39563a3-c046-44dd-bfed-64b736c92043", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T21:04:40.586Z", + "completed":"2016-07-03T21:04:40.586Z", + "new_balance":"8250.04", + "value":"-407.57" + } + }, + { + "id":"430557ed-e965-4ca4-8c42-11dd8ecb079a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T05:24:07.374Z", + "completed":"2016-07-04T05:24:07.374Z", + "new_balance":"8243.66", + "value":"-6.38" + } + }, + { + "id":"6ef4953d-4e33-40af-a6ec-6020aef27994", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T16:59:16.324Z", + "completed":"2016-07-04T16:59:16.324Z", + "new_balance":"8196.86", + "value":"-46.80" + } + }, + { + "id":"9d17cb3e-89e8-46a1-ae04-bf64bdf4c58a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T22:12:31.051Z", + "completed":"2016-07-04T22:12:31.051Z", + "new_balance":"8179.24", + "value":"-17.62" + } + }, + { + "id":"4b1c155f-833a-4c5f-8408-06e82d779b79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T19:21:44.658Z", + "completed":"2016-07-05T19:21:44.658Z", + "new_balance":"8168.33", + "value":"-10.91" + } + }, + { + "id":"d8cf9f10-f349-49fd-b05b-cbfac77602c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T14:14:42.428Z", + "completed":"2016-07-07T14:14:42.428Z", + "new_balance":"8161.34", + "value":"-6.99" + } + }, + { + "id":"27df7bbe-f1de-4cee-b31a-c7bef25d01c9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T00:19:59.720Z", + "completed":"2016-07-11T00:19:59.720Z", + "new_balance":"8136.41", + "value":"-24.93" + } + }, + { + "id":"ca08cd85-882e-4645-93fa-9656c1b0cf4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T04:28:59.364Z", + "completed":"2016-07-11T04:28:59.364Z", + "new_balance":"8107.25", + "value":"-29.16" + } + }, + { + "id":"6e8479da-6ad7-4fd2-899a-554a3bef6365", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T10:53:43.373Z", + "completed":"2016-07-11T10:53:43.373Z", + "new_balance":"8088.09", + "value":"-19.16" + } + }, + { + "id":"6d52bbd1-012b-4bdf-9da9-89a55eb7591d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T18:51:38.511Z", + "completed":"2016-07-11T18:51:38.511Z", + "new_balance":"8073.10", + "value":"-14.99" + } + }, + { + "id":"ec2e6ff6-4c5c-4f77-ac63-e8585af74734", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T20:27:16.757Z", + "completed":"2016-07-11T20:27:16.757Z", + "new_balance":"8057.09", + "value":"-16.01" + } + }, + { + "id":"2e7eccd9-d87a-4c7c-88b7-b5e444bf5413", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T02:13:03.773Z", + "completed":"2016-07-13T02:13:03.773Z", + "new_balance":"8012.03", + "value":"-45.06" + } + }, + { + "id":"e2357b05-2a58-471d-8b9a-98a6f4bb60df", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T20:44:34.930Z", + "completed":"2016-07-13T20:44:34.930Z", + "new_balance":"7907.31", + "value":"-104.72" + } + }, + { + "id":"db4d92b6-8bf4-4dff-9c60-4b68854feccf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T01:36:10.163Z", + "completed":"2016-07-16T01:36:10.163Z", + "new_balance":"7862.83", + "value":"-44.48" + } + }, + { + "id":"a957837e-9d61-4092-b906-cd4c3014af1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T11:30:27.781Z", + "completed":"2016-07-16T11:30:27.781Z", + "new_balance":"7953.71", + "value":"90.88" + } + }, + { + "id":"3c262b96-3cb6-4eee-a21c-f2d87c24af3e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T07:19:31.608Z", + "completed":"2016-07-17T07:19:31.608Z", + "new_balance":"7947.94", + "value":"-5.77" + } + }, + { + "id":"66032f3f-5e03-4d92-9757-94dd84d500fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T15:18:45.270Z", + "completed":"2016-07-17T15:18:45.270Z", + "new_balance":"7937.87", + "value":"-10.07" + } + }, + { + "id":"e9895c54-6d45-466e-9efa-0c1016abd956", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T02:30:36.808Z", + "completed":"2016-07-19T02:30:36.808Z", + "new_balance":"7858.79", + "value":"-79.08" + } + }, + { + "id":"341cf917-f488-41fd-844b-fd6fbfe3a91d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T08:30:02.892Z", + "completed":"2016-07-21T08:30:02.892Z", + "new_balance":"7833.39", + "value":"-25.40" + } + }, + { + "id":"5cfc19fb-992e-430f-8245-50e06a2167f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T18:50:23.781Z", + "completed":"2016-07-23T18:50:23.781Z", + "new_balance":"7802.58", + "value":"-30.81" + } + }, + { + "id":"23b5156e-eed3-4ea2-b19c-875117dd620d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T07:31:52.774Z", + "completed":"2016-07-25T07:31:52.774Z", + "new_balance":"7787.75", + "value":"-14.83" + } + }, + { + "id":"35d6d679-2110-4206-8be1-db86acf7a072", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T17:03:22.420Z", + "completed":"2016-07-27T17:03:22.420Z", + "new_balance":"7780.76", + "value":"-6.99" + } + }, + { + "id":"04195bd7-afac-411d-989d-9df7665052e7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T04:41:35.751Z", + "completed":"2016-07-28T04:41:35.751Z", + "new_balance":"7731.98", + "value":"-48.78" + } + }, + { + "id":"4ea802db-2404-49ba-af35-c721c0c79f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T13:54:31.320Z", + "completed":"2016-07-28T13:54:31.320Z", + "new_balance":"7534.07", + "value":"-197.91" + } + }, + { + "id":"f4390c6d-2324-46c2-a233-15d9a11f4029", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T07:48:41.974Z", + "completed":"2016-08-01T07:48:41.974Z", + "new_balance":"8556.49", + "value":"1022.42" + } + }, + { + "id":"c678eeef-25d2-474c-ba2b-7e8cdb6ebcb3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T12:58:17.351Z", + "completed":"2016-08-03T12:58:17.351Z", + "new_balance":"8148.92", + "value":"-407.57" + } + }, + { + "id":"faaff2a0-29e8-4fea-846a-46a39a0f04c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T23:39:08.517Z", + "completed":"2016-08-03T23:39:08.517Z", + "new_balance":"7985.44", + "value":"-163.48" + } + }, + { + "id":"cdfa0919-87ee-4276-9b83-8a86e24dbed9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T07:29:05.753Z", + "completed":"2016-08-04T07:29:05.753Z", + "new_balance":"7970.93", + "value":"-14.51" + } + }, + { + "id":"a9aa6a58-b88d-4d78-94c0-bbf58a75a1f3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T02:51:28.509Z", + "completed":"2016-08-07T02:51:28.509Z", + "new_balance":"7946.13", + "value":"-24.80" + } + }, + { + "id":"83127e4a-bbc0-48b7-9fa2-0510a7f01643", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T09:33:00.923Z", + "completed":"2016-08-07T09:33:00.923Z", + "new_balance":"7939.64", + "value":"-6.49" + } + }, + { + "id":"b9af5306-5938-4c44-8d5d-78c22ae43446", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T16:20:09.589Z", + "completed":"2016-08-07T16:20:09.589Z", + "new_balance":"7910.48", + "value":"-29.16" + } + }, + { + "id":"d8c9ff47-c4c8-4dcb-b438-0a2577ab51fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T01:36:11.350Z", + "completed":"2016-08-08T01:36:11.350Z", + "new_balance":"7869.13", + "value":"-41.35" + } + }, + { + "id":"e381d522-0be0-4b09-af36-8f95032c889e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T15:32:14.106Z", + "completed":"2016-08-08T15:32:14.106Z", + "new_balance":"7764.41", + "value":"-104.72" + } + }, + { + "id":"6907e7c8-4e98-44a8-8e94-3c8f1fd26a09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T17:50:42.132Z", + "completed":"2016-08-08T17:50:42.132Z", + "new_balance":"7713.85", + "value":"-50.56" + } + }, + { + "id":"88e00893-74c3-4ce0-a91a-44ebf97a901d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T16:48:47.407Z", + "completed":"2016-08-09T16:48:47.407Z", + "new_balance":"7688.05", + "value":"-25.80" + } + }, + { + "id":"22393903-aa62-41ca-b89d-e60819a481bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T11:15:39.630Z", + "completed":"2016-08-11T11:15:39.630Z", + "new_balance":"7681.06", + "value":"-6.99" + } + }, + { + "id":"0fb4822a-dc71-40ed-8ee2-fa73db907c76", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T12:00:21.260Z", + "completed":"2016-08-14T12:00:21.260Z", + "new_balance":"7645.87", + "value":"-35.19" + } + }, + { + "id":"93f59b3a-c3fc-4a3b-bd2e-ff7afa68f84a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T17:13:08.965Z", + "completed":"2016-08-15T17:13:08.965Z", + "new_balance":"7616.71", + "value":"-29.16" + } + }, + { + "id":"426031fc-3263-4fd1-a411-4db0f8566e54", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T10:37:39.644Z", + "completed":"2016-08-17T10:37:39.644Z", + "new_balance":"7571.20", + "value":"-45.51" + } + }, + { + "id":"41e236ad-581f-4420-a13a-491706bbdac7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T20:43:25.783Z", + "completed":"2016-08-17T20:43:25.783Z", + "new_balance":"7565.43", + "value":"-5.77" + } + }, + { + "id":"dcf636f2-456f-4b6a-9317-6b30f16398fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T10:49:14.559Z", + "completed":"2016-08-19T10:49:14.559Z", + "new_balance":"7557.03", + "value":"-8.40" + } + }, + { + "id":"59e471dc-812b-43a5-b564-9bd2549aea43", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T04:40:28.315Z", + "completed":"2016-08-25T04:40:28.315Z", + "new_balance":"7671.17", + "value":"114.14" + } + }, + { + "id":"e3a56d9f-66c4-46a6-a412-838d2cccb56b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T08:40:13.937Z", + "completed":"2016-08-28T08:40:13.937Z", + "new_balance":"7622.39", + "value":"-48.78" + } + }, + { + "id":"bbadba3d-5ff2-4370-961e-17c00f5ce0c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T10:13:20.306Z", + "completed":"2016-08-28T10:13:20.306Z", + "new_balance":"7424.48", + "value":"-197.91" + } + }, + { + "id":"6e55638a-c887-4c15-804d-bdf1faa80b8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T07:58:58.405Z", + "completed":"2016-09-01T07:58:58.405Z", + "new_balance":"8446.90", + "value":"1022.42" + } + }, + { + "id":"74f1a06b-3fec-40d1-bd11-ea74f693d259", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T17:39:12.779Z", + "completed":"2016-09-03T17:39:12.779Z", + "new_balance":"8039.33", + "value":"-407.57" + } + }, + { + "id":"401208ce-fd0f-4e40-9ef0-c441883ef163", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T09:57:13.873Z", + "completed":"2016-09-04T09:57:13.873Z", + "new_balance":"8008.52", + "value":"-30.81" + } + }, + { + "id":"8fccf0ef-ee63-4e72-8880-ce009817cc30", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:05:12.102Z", + "completed":"2016-09-04T10:05:12.102Z", + "new_balance":"7963.01", + "value":"-45.51" + } + }, + { + "id":"a8c7ed34-8582-400b-83fe-bc3e77596edd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T16:28:51.406Z", + "completed":"2016-09-04T16:28:51.406Z", + "new_balance":"7946.01", + "value":"-17.00" + } + }, + { + "id":"6a584d8c-fad9-447e-a1ed-8d0f6402f5bb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T18:13:52.438Z", + "completed":"2016-09-04T18:13:52.438Z", + "new_balance":"7914.56", + "value":"-31.45" + } + }, + { + "id":"980e7ab1-8ddf-4ac2-bf23-fec2baffa119", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T06:07:06.454Z", + "completed":"2016-09-05T06:07:06.454Z", + "new_balance":"7832.77", + "value":"-81.79" + } + }, + { + "id":"78c41cb3-1497-4584-baaf-4ce93f01ba7e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T07:59:11.282Z", + "completed":"2016-09-05T07:59:11.282Z", + "new_balance":"7728.05", + "value":"-104.72" + } + }, + { + "id":"033cf596-a040-40bf-b0d8-1ddf516388c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T16:12:09.102Z", + "completed":"2016-09-05T16:12:09.102Z", + "new_balance":"7722.28", + "value":"-5.77" + } + }, + { + "id":"5e3239a3-8a7f-449e-ad60-e4e075254843", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T17:03:32.765Z", + "completed":"2016-09-05T17:03:32.765Z", + "new_balance":"7676.74", + "value":"-45.54" + } + }, + { + "id":"e5078d1d-5845-49eb-b248-825a776c0e22", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T19:10:32.711Z", + "completed":"2016-09-05T19:10:32.711Z", + "new_balance":"7577.62", + "value":"-99.12" + } + }, + { + "id":"eef50074-d01a-4bc1-b0fa-b73d7c293206", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T20:23:27.357Z", + "completed":"2016-09-05T20:23:27.357Z", + "new_balance":"7563.56", + "value":"-14.06" + } + }, + { + "id":"d55c2354-690e-466a-81b5-878b0b0fb9e4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T00:25:07.680Z", + "completed":"2016-09-07T00:25:07.680Z", + "new_balance":"7555.04", + "value":"-8.52" + } + }, + { + "id":"54814db8-32ab-4c8e-a7de-61e9fbf66920", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T00:34:09.874Z", + "completed":"2016-09-07T00:34:09.874Z", + "new_balance":"7547.43", + "value":"-7.61" + } + }, + { + "id":"8aaee176-8bd5-4b67-907d-7aa21b1024b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T11:43:20.816Z", + "completed":"2016-09-07T11:43:20.816Z", + "new_balance":"7539.82", + "value":"-7.61" + } + }, + { + "id":"730f727b-78fc-4f2d-aebe-674464c0a7fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T18:38:39.738Z", + "completed":"2016-09-07T18:38:39.738Z", + "new_balance":"7534.05", + "value":"-5.77" + } + }, + { + "id":"adffaae4-2ab2-40d3-b188-1f098bd615ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T21:13:18.630Z", + "completed":"2016-09-10T21:13:18.630Z", + "new_balance":"7501.71", + "value":"-32.34" + } + }, + { + "id":"4d093501-a2e4-4786-8ccb-23762c6df7c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T13:42:34.217Z", + "completed":"2016-09-11T13:42:34.217Z", + "new_balance":"7477.41", + "value":"-24.30" + } + }, + { + "id":"616c6621-468c-4426-8bb1-4e05fabb0d2b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T19:55:56.933Z", + "completed":"2016-09-11T19:55:56.933Z", + "new_balance":"7465.04", + "value":"-12.37" + } + }, + { + "id":"bf3f5433-a409-42a7-9209-b026db834e65", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T20:56:28.745Z", + "completed":"2016-09-11T20:56:28.745Z", + "new_balance":"7459.27", + "value":"-5.77" + } + }, + { + "id":"db68a43b-388d-49e5-b13c-0187a584a8d8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T03:59:27.176Z", + "completed":"2016-09-12T03:59:27.176Z", + "new_balance":"7453.50", + "value":"-5.77" + } + }, + { + "id":"e56ce3c3-a5b9-42e4-8e4d-90b74eeb9ce2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T05:10:26.262Z", + "completed":"2016-09-12T05:10:26.262Z", + "new_balance":"7352.24", + "value":"-101.26" + } + }, + { + "id":"ad49ded9-7ef8-40d5-bf72-f63cb0f98593", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T08:51:09.097Z", + "completed":"2016-09-12T08:51:09.097Z", + "new_balance":"7333.08", + "value":"-19.16" + } + }, + { + "id":"83362aff-cba1-4eca-bc26-bb90c73d24de", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T15:50:57.191Z", + "completed":"2016-09-12T15:50:57.191Z", + "new_balance":"7266.90", + "value":"-66.18" + } + }, + { + "id":"c629887b-5400-431e-8f85-21919e5a816b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T12:45:00.660Z", + "completed":"2016-09-13T12:45:00.660Z", + "new_balance":"7224.41", + "value":"-42.49" + } + }, + { + "id":"3d018534-8bd5-479c-8a3a-2800b602199c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T10:50:02.144Z", + "completed":"2016-09-14T10:50:02.144Z", + "new_balance":"7218.64", + "value":"-5.77" + } + }, + { + "id":"68e32475-f3d2-4e8b-b0ee-4f8b35c428c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:54:08.094Z", + "completed":"2016-09-14T19:54:08.094Z", + "new_balance":"7176.41", + "value":"-42.23" + } + }, + { + "id":"34604cc2-af7e-400c-a237-5d0c7c70d0bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T07:08:46.144Z", + "completed":"2016-09-16T07:08:46.144Z", + "new_balance":"7127.52", + "value":"-48.89" + } + }, + { + "id":"5ec2efa9-c708-4d99-a053-7aa75b1de011", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T11:06:04.944Z", + "completed":"2016-09-18T11:06:04.944Z", + "new_balance":"7083.55", + "value":"-43.97" + } + }, + { + "id":"e715b5a8-44d4-4128-a5a1-8b99072890d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T04:02:54.679Z", + "completed":"2016-09-21T04:02:54.679Z", + "new_balance":"6979.23", + "value":"-104.32" + } + }, + { + "id":"cd2caea8-d44b-4947-b06f-b188100ddecb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:14:27.200Z", + "completed":"2016-09-21T10:14:27.200Z", + "new_balance":"6881.73", + "value":"-97.50" + } + }, + { + "id":"5317a3f3-534b-4f0e-b21e-5d8c12e17e29", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T03:04:34.280Z", + "completed":"2016-09-23T03:04:34.280Z", + "new_balance":"6841.41", + "value":"-40.32" + } + }, + { + "id":"0787eca8-f4da-4ca0-9f0e-f8634deed268", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T21:41:13.227Z", + "completed":"2016-09-24T21:41:13.227Z", + "new_balance":"6835.64", + "value":"-5.77" + } + }, + { + "id":"5f645dfd-4e88-400e-8a58-c17fcbe6e270", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T05:39:00.469Z", + "completed":"2016-09-26T05:39:00.469Z", + "new_balance":"6810.02", + "value":"-25.62" + } + }, + { + "id":"68fc516d-fae4-4a8c-8ceb-5a5a027cfa82", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T14:56:21.618Z", + "completed":"2016-09-26T14:56:21.618Z", + "new_balance":"6797.23", + "value":"-12.79" + } + }, + { + "id":"f345a999-b49e-4f90-9f84-8807a7fcd569", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T21:05:11.977Z", + "completed":"2016-09-26T21:05:11.977Z", + "new_balance":"6784.22", + "value":"-13.01" + } + }, + { + "id":"fffe7b10-45bc-43e0-a665-32f0bb2e8a11", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T22:13:18.424Z", + "completed":"2016-09-27T22:13:18.424Z", + "new_balance":"6770.03", + "value":"-14.19" + } + }, + { + "id":"f1ff8f8f-63f3-4ead-9aae-868b1ba4033c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T07:38:27.229Z", + "completed":"2016-09-28T07:38:27.229Z", + "new_balance":"6572.12", + "value":"-197.91" + } + }, + { + "id":"d50d171c-ed6c-4fa4-add2-c9c502ae2b6e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T10:14:46.069Z", + "completed":"2016-09-28T10:14:46.069Z", + "new_balance":"6523.34", + "value":"-48.78" + } + }, + { + "id":"2b3d9fbc-5094-49df-9888-07eb1bd2bbd8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T00:51:28.660Z", + "completed":"2016-10-01T00:51:28.660Z", + "new_balance":"8203.75", + "value":"1680.41" + } + }, + { + "id":"3887c3ee-be57-4418-bf3e-d65daacc3b66", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T12:54:17.399Z", + "completed":"2016-10-01T12:54:17.399Z", + "new_balance":"9226.17", + "value":"1022.42" + } + }, + { + "id":"91b8f4cc-29e5-4578-8ca4-cae413b73cfb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T23:35:26.097Z", + "completed":"2016-10-01T23:35:26.097Z", + "new_balance":"8818.60", + "value":"-407.57" + } + }, + { + "id":"3a6737ef-a249-4de5-a250-298c2d567f42", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T09:15:08.432Z", + "completed":"2016-10-03T09:15:08.432Z", + "new_balance":"8812.22", + "value":"-6.38" + } + }, + { + "id":"b7cb820d-bd1e-4727-9f54-b6fae77cf722", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T15:03:53.093Z", + "completed":"2016-10-03T15:03:53.093Z", + "new_balance":"8765.42", + "value":"-46.80" + } + }, + { + "id":"f96abc60-9547-4030-89e4-3a6362242791", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T18:20:56.733Z", + "completed":"2016-10-03T18:20:56.733Z", + "new_balance":"8747.80", + "value":"-17.62" + } + }, + { + "id":"62b2441e-ec91-4782-9793-909697ecf59b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T18:15:49.235Z", + "completed":"2016-10-05T18:15:49.235Z", + "new_balance":"8736.89", + "value":"-10.91" + } + }, + { + "id":"25ddc735-60dc-4e81-8c17-c38ec339baa5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:17:19.220Z", + "completed":"2016-10-05T18:17:19.220Z", + "new_balance":"8729.90", + "value":"-6.99" + } + }, + { + "id":"ee7378fa-28b3-4671-b0d9-3c4e8e14bcf7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T00:27:11.401Z", + "completed":"2016-10-06T00:27:11.401Z", + "new_balance":"8704.97", + "value":"-24.93" + } + }, + { + "id":"cd82079d-767c-4d68-9926-7d550a6b469b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T13:46:13.599Z", + "completed":"2016-10-09T13:46:13.599Z", + "new_balance":"8685.81", + "value":"-19.16" + } + }, + { + "id":"e3a83c2d-f8ef-4551-bf8a-72e552d2f65b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T09:41:59.209Z", + "completed":"2016-10-10T09:41:59.209Z", + "new_balance":"8670.82", + "value":"-14.99" + } + }, + { + "id":"df7b1a14-cd96-49ab-989f-63a06c282b8f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T01:29:20.068Z", + "completed":"2016-10-11T01:29:20.068Z", + "new_balance":"8641.66", + "value":"-29.16" + } + }, + { + "id":"1c8f262b-5e94-4f16-bac5-49c69a424945", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T20:09:50.226Z", + "completed":"2016-10-11T20:09:50.226Z", + "new_balance":"8625.65", + "value":"-16.01" + } + }, + { + "id":"9a4e9d94-38c5-49ab-9907-e0cf3c467390", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T08:31:56.260Z", + "completed":"2016-10-14T08:31:56.260Z", + "new_balance":"8520.93", + "value":"-104.72" + } + }, + { + "id":"4de40aab-16ba-4512-8bb0-e2f6001d3f43", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T16:26:16.283Z", + "completed":"2016-10-14T16:26:16.283Z", + "new_balance":"8475.87", + "value":"-45.06" + } + }, + { + "id":"65301e33-e826-4369-82a9-2c5e235f5ee6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T22:48:22.486Z", + "completed":"2016-10-17T22:48:22.486Z", + "new_balance":"8431.39", + "value":"-44.48" + } + }, + { + "id":"e93ee3d6-6524-4b10-adc9-a54620271650", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T03:14:11.755Z", + "completed":"2016-10-18T03:14:11.755Z", + "new_balance":"8421.32", + "value":"-10.07" + } + }, + { + "id":"42366bd6-bccf-4d25-8e34-d6cd58f1f600", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T07:17:32.374Z", + "completed":"2016-10-18T07:17:32.374Z", + "new_balance":"8415.55", + "value":"-5.77" + } + }, + { + "id":"76edf03e-cc8c-461c-ad35-58dd8b7e28bb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T09:13:16.219Z", + "completed":"2016-10-18T09:13:16.219Z", + "new_balance":"8336.47", + "value":"-79.08" + } + }, + { + "id":"af8a4796-b5ea-4c58-a7fd-e9e4a987c217", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T01:48:54.684Z", + "completed":"2016-10-23T01:48:54.684Z", + "new_balance":"8311.07", + "value":"-25.40" + } + }, + { + "id":"90100b2a-dd72-4599-b1fc-46b357624545", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T05:08:39.778Z", + "completed":"2016-10-24T05:08:39.778Z", + "new_balance":"8280.26", + "value":"-30.81" + } + }, + { + "id":"129e5ff4-db54-40f0-9fce-4e20970007d1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:04:30.476Z", + "completed":"2016-10-24T18:04:30.476Z", + "new_balance":"8265.43", + "value":"-14.83" + } + }, + { + "id":"463fe44c-be47-4edb-be07-2856558b0cdd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T13:25:09.029Z", + "completed":"2016-10-26T13:25:09.029Z", + "new_balance":"8258.44", + "value":"-6.99" + } + }, + { + "id":"76774029-6382-4f06-ab27-dd7adad25bec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T17:59:00.914Z", + "completed":"2016-10-30T17:59:00.914Z", + "new_balance":"8060.53", + "value":"-197.91" + } + }, + { + "id":"bf417cb0-342d-4159-bd42-940db7ae16af", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T22:18:09.274Z", + "completed":"2016-10-30T22:18:09.274Z", + "new_balance":"8011.75", + "value":"-48.78" + } + }, + { + "id":"c44149e3-d485-44da-b489-5d11765a81e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T04:38:01.937Z", + "completed":"2016-11-02T04:38:01.937Z", + "new_balance":"7848.27", + "value":"-163.48" + } + }, + { + "id":"c19fcf6d-998d-481c-ae2e-e5231ae37651", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T08:22:22.040Z", + "completed":"2016-11-02T08:22:22.040Z", + "new_balance":"7833.76", + "value":"-14.51" + } + }, + { + "id":"b0da3ae3-478b-40dc-b988-a1ab37340bac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T10:59:01.270Z", + "completed":"2016-11-02T10:59:01.270Z", + "new_balance":"7827.27", + "value":"-6.49" + } + }, + { + "id":"c6248666-dea9-4438-95e8-c34a71e9ab69", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T20:19:58.083Z", + "completed":"2016-11-02T20:19:58.083Z", + "new_balance":"7419.70", + "value":"-407.57" + } + }, + { + "id":"b1b32d89-e778-423e-bd2b-71dad1bf1c9c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T04:21:09.323Z", + "completed":"2016-11-06T04:21:09.323Z", + "new_balance":"7394.90", + "value":"-24.80" + } + }, + { + "id":"8802fcfb-55c5-44d6-9a59-868b2f2f5eed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T19:02:27.015Z", + "completed":"2016-11-06T19:02:27.015Z", + "new_balance":"7365.74", + "value":"-29.16" + } + }, + { + "id":"865bcdcc-2d9e-4b87-ba32-0283c31e9d9a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T10:48:15.172Z", + "completed":"2016-11-07T10:48:15.172Z", + "new_balance":"7261.02", + "value":"-104.72" + } + }, + { + "id":"9ee0bd1a-4668-4563-a8b0-c7361a22e2d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:33:06.733Z", + "completed":"2016-11-07T14:33:06.733Z", + "new_balance":"7219.67", + "value":"-41.35" + } + }, + { + "id":"f0728f92-7527-4051-903e-01087f7896b3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T01:31:48.718Z", + "completed":"2016-11-09T01:31:48.718Z", + "new_balance":"8242.09", + "value":"1022.42" + } + }, + { + "id":"0848b7c9-ba3e-4df6-b300-0a44ac90a23d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T16:40:00.642Z", + "completed":"2016-11-14T16:40:00.642Z", + "new_balance":"8191.53", + "value":"-50.56" + } + }, + { + "id":"8b2d6536-b9a0-4063-b39e-91fb043aad78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T17:55:41.267Z", + "completed":"2016-11-14T17:55:41.267Z", + "new_balance":"8165.73", + "value":"-25.80" + } + }, + { + "id":"85164928-d3b8-4c71-95d1-458ddd833da0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T01:03:14.067Z", + "completed":"2016-11-16T01:03:14.067Z", + "new_balance":"8158.74", + "value":"-6.99" + } + }, + { + "id":"53dc57b7-7edd-4b99-8e67-2033d68c1b92", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T13:34:19.555Z", + "completed":"2016-11-20T13:34:19.555Z", + "new_balance":"8123.55", + "value":"-35.19" + } + }, + { + "id":"066ece3a-aad1-4d02-96b1-39dcb9482ffa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T09:16:00.141Z", + "completed":"2016-11-23T09:16:00.141Z", + "new_balance":"8078.04", + "value":"-45.51" + } + }, + { + "id":"c5c92683-969c-49cb-90d2-8cb9f11a22c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T19:49:57.070Z", + "completed":"2016-11-23T19:49:57.070Z", + "new_balance":"8072.27", + "value":"-5.77" + } + }, + { + "id":"fe402198-b51f-40d7-aeff-79c55ea8ab5c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T19:57:04.627Z", + "completed":"2016-11-23T19:57:04.627Z", + "new_balance":"8043.11", + "value":"-29.16" + } + }, + { + "id":"d4409134-990d-4472-8ce4-83bc7ee39a7c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:35:15.431Z", + "completed":"2016-11-28T01:35:15.431Z", + "new_balance":"8034.71", + "value":"-8.40" + } + }, + { + "id":"72c699b6-8657-40ad-89a1-e5a0b26c41ac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T05:53:31.326Z", + "completed":"2016-11-30T05:53:31.326Z", + "new_balance":"7985.93", + "value":"-48.78" + } + }, + { + "id":"9d2abe9e-642a-4bac-8595-9b568feb0dba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T17:49:38.461Z", + "completed":"2016-11-30T17:49:38.461Z", + "new_balance":"7788.02", + "value":"-197.91" + } + }, + { + "id":"68908c56-bea7-4919-9e37-4998e7b9c49a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T13:52:42.951Z", + "completed":"2016-12-01T13:52:42.951Z", + "new_balance":"8810.44", + "value":"1022.42" + } + }, + { + "id":"e7046046-4831-47df-b1b2-21ee94567a72", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T22:15:13.459Z", + "completed":"2016-12-01T22:15:13.459Z", + "new_balance":"8402.87", + "value":"-407.57" + } + }, + { + "id":"db33a9f6-e54d-4332-a881-a7e34268d7b3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T02:33:24.296Z", + "completed":"2016-12-04T02:33:24.296Z", + "new_balance":"8385.87", + "value":"-17.00" + } + }, + { + "id":"b89bc022-c753-4e58-8dd9-b139143da226", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:30:02.237Z", + "completed":"2016-12-04T12:30:02.237Z", + "new_balance":"8354.42", + "value":"-31.45" + } + }, + { + "id":"81d32f4b-24fb-4c68-9a0c-5560092106b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T05:22:08.122Z", + "completed":"2016-12-11T05:22:08.122Z", + "new_balance":"8308.91", + "value":"-45.51" + } + }, + { + "id":"b5c8f88a-23f0-4734-a3ab-344d86623995", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T07:43:38.372Z", + "completed":"2016-12-11T07:43:38.372Z", + "new_balance":"8278.10", + "value":"-30.81" + } + }, + { + "id":"a70c6f0b-0e22-4e4a-ba17-690ccce26fcc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:25:13.595Z", + "completed":"2016-12-14T03:25:13.595Z", + "new_balance":"8272.33", + "value":"-5.77" + } + }, + { + "id":"816ae6a4-e2b1-490f-a05b-b27c000cafe6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T03:50:45.496Z", + "completed":"2016-12-14T03:50:45.496Z", + "new_balance":"8226.79", + "value":"-45.54" + } + }, + { + "id":"5ba38c12-5a42-48ff-b8ee-919223ad14dc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T07:47:04.345Z", + "completed":"2016-12-14T07:47:04.345Z", + "new_balance":"8219.18", + "value":"-7.61" + } + }, + { + "id":"c9c338b1-2921-446d-89cf-e20ddb45e125", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T10:37:14.420Z", + "completed":"2016-12-14T10:37:14.420Z", + "new_balance":"8205.12", + "value":"-14.06" + } + }, + { + "id":"8908e379-0fdd-4009-98bc-1eb79cf0aed5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T12:20:27.365Z", + "completed":"2016-12-14T12:20:27.365Z", + "new_balance":"8123.33", + "value":"-81.79" + } + }, + { + "id":"009454ac-7117-42d4-948b-4865d4d40f06", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T15:55:03.851Z", + "completed":"2016-12-14T15:55:03.851Z", + "new_balance":"8117.56", + "value":"-5.77" + } + }, + { + "id":"8f3ceb5e-9beb-4f9d-9d27-ca0a599a211f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T15:56:59.324Z", + "completed":"2016-12-14T15:56:59.324Z", + "new_balance":"8018.44", + "value":"-99.12" + } + }, + { + "id":"df5b3a19-d58b-4589-879a-9fdaf72bec0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T17:04:30.648Z", + "completed":"2016-12-14T17:04:30.648Z", + "new_balance":"7913.72", + "value":"-104.72" + } + }, + { + "id":"fa4a7ac1-c998-453f-a266-54dde826f58d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T20:08:51.090Z", + "completed":"2016-12-14T20:08:51.090Z", + "new_balance":"7906.11", + "value":"-7.61" + } + }, + { + "id":"ac7716c2-14eb-4392-9287-1c1f80bd0e1f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T01:58:58.317Z", + "completed":"2016-12-15T01:58:58.317Z", + "new_balance":"7873.77", + "value":"-32.34" + } + }, + { + "id":"faa42341-7168-4bcd-98d4-7374c6cb6166", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T12:28:47.788Z", + "completed":"2016-12-15T12:28:47.788Z", + "new_balance":"7865.25", + "value":"-8.52" + } + }, + { + "id":"fc82bf2b-5743-492c-8c50-8144984fcbe0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T13:45:19.491Z", + "completed":"2016-12-15T13:45:19.491Z", + "new_balance":"7859.48", + "value":"-5.77" + } + }, + { + "id":"6e15f8c5-2f20-43cb-96f4-df58b965d677", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T00:39:55.701Z", + "completed":"2016-12-18T00:39:55.701Z", + "new_balance":"7758.22", + "value":"-101.26" + } + }, + { + "id":"963a142e-3710-4bb0-bbb4-fa6ca1abf474", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T02:18:31.149Z", + "completed":"2016-12-18T02:18:31.149Z", + "new_balance":"7752.45", + "value":"-5.77" + } + }, + { + "id":"afb5314d-591a-4373-bcce-a36885db766a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T03:04:04.877Z", + "completed":"2016-12-18T03:04:04.877Z", + "new_balance":"7740.08", + "value":"-12.37" + } + }, + { + "id":"4b533cad-d60d-453f-a39f-58b727da1aa0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T06:11:48.817Z", + "completed":"2016-12-18T06:11:48.817Z", + "new_balance":"7720.92", + "value":"-19.16" + } + }, + { + "id":"383820e2-8395-4bb1-be54-0154d80e9f07", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T07:30:34.038Z", + "completed":"2016-12-18T07:30:34.038Z", + "new_balance":"7696.62", + "value":"-24.30" + } + }, + { + "id":"16aee6e1-d7d8-47ff-a39d-c0661a4a5e90", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T08:24:07.772Z", + "completed":"2016-12-18T08:24:07.772Z", + "new_balance":"7690.85", + "value":"-5.77" + } + }, + { + "id":"38187429-ac97-4eb4-9195-1d996b2a74a1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T16:12:24.488Z", + "completed":"2016-12-18T16:12:24.488Z", + "new_balance":"7648.36", + "value":"-42.49" + } + }, + { + "id":"90782f67-123c-489b-b08c-e9e3d6c71ad4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T17:09:21.814Z", + "completed":"2016-12-18T17:09:21.814Z", + "new_balance":"7582.18", + "value":"-66.18" + } + }, + { + "id":"2a2d32c5-743f-4b20-9fc8-10886ecdc3ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T08:56:11.489Z", + "completed":"2016-12-19T08:56:11.489Z", + "new_balance":"7538.21", + "value":"-43.97" + } + }, + { + "id":"6296c092-539c-4e9f-9a19-662bc775ce64", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T23:03:06.903Z", + "completed":"2016-12-19T23:03:06.903Z", + "new_balance":"7495.98", + "value":"-42.23" + } + }, + { + "id":"c514ba83-8a58-4c8c-9b09-43389e528a4a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T23:16:13.085Z", + "completed":"2016-12-19T23:16:13.085Z", + "new_balance":"7447.09", + "value":"-48.89" + } + }, + { + "id":"185ba92d-50e7-4474-9b67-5f45b6bc4ed1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T00:53:55.689Z", + "completed":"2016-12-21T00:53:55.689Z", + "new_balance":"7342.77", + "value":"-104.32" + } + }, + { + "id":"1497ed2b-e5f1-4553-9140-a85caaf0b987", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T07:05:21.729Z", + "completed":"2016-12-21T07:05:21.729Z", + "new_balance":"7302.45", + "value":"-40.32" + } + }, + { + "id":"517f7147-bf25-4e16-93df-8a30056fcfc0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T12:14:32.068Z", + "completed":"2016-12-21T12:14:32.068Z", + "new_balance":"7204.95", + "value":"-97.50" + } + }, + { + "id":"7d17ba20-117c-4ce4-b9b7-94755eb6883d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T23:33:05.090Z", + "completed":"2016-12-21T23:33:05.090Z", + "new_balance":"7199.18", + "value":"-5.77" + } + }, + { + "id":"a66400cb-6bd1-4459-8fc4-673211e3ce80", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:40:47.096Z", + "completed":"2016-12-21T23:40:47.096Z", + "new_balance":"7186.17", + "value":"-13.01" + } + }, + { + "id":"dc0013a0-b7b6-44d1-95e0-95a36b6123bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T03:49:34.953Z", + "completed":"2016-12-24T03:49:34.953Z", + "new_balance":"7173.38", + "value":"-12.79" + } + }, + { + "id":"3a2de031-ba4e-4d93-81ac-d0cc053c7359", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T07:27:13.585Z", + "completed":"2016-12-24T07:27:13.585Z", + "new_balance":"7147.76", + "value":"-25.62" + } + }, + { + "id":"172b459f-c834-4a5b-9f21-58e08ed409a4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T07:30:56.437Z", + "completed":"2016-12-24T07:30:56.437Z", + "new_balance":"7133.57", + "value":"-14.19" + } + }, + { + "id":"e233779d-79bb-4a38-b456-b8dc0edb2741", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T12:50:49.743Z", + "completed":"2016-12-30T12:50:49.743Z", + "new_balance":"7084.79", + "value":"-48.78" + } + }, + { + "id":"afd61eef-4d59-432c-910c-26501b15d1ae", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T22:58:51.604Z", + "completed":"2016-12-30T22:58:51.604Z", + "new_balance":"6886.88", + "value":"-197.91" + } + }, + { + "id":"387b8933-c366-4109-8435-a07bd82d6d77", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T07:16:03.586Z", + "completed":"2017-01-01T07:16:03.586Z", + "new_balance":"7909.30", + "value":"1022.42" + } + }, + { + "id":"2d2b6b8b-4c6b-454e-8e37-7dfdd00fe660", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T08:55:53.544Z", + "completed":"2017-01-01T08:55:53.544Z", + "new_balance":"9589.71", + "value":"1680.41" + } + }, + { + "id":"4138a1fc-70e3-448e-a277-18a871c4254f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T10:35:53.181Z", + "completed":"2017-01-02T10:35:53.181Z", + "new_balance":"9182.14", + "value":"-407.57" + } + }, + { + "id":"2a3e30c7-45d7-4898-b8c7-495837196103", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T05:07:35.852Z", + "completed":"2017-01-03T05:07:35.852Z", + "new_balance":"9135.34", + "value":"-46.80" + } + }, + { + "id":"7c2246d4-b2f1-4b26-a6fa-d771ac532c39", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T11:23:06.648Z", + "completed":"2017-01-03T11:23:06.648Z", + "new_balance":"9128.96", + "value":"-6.38" + } + }, + { + "id":"f0fc6eb2-388f-4a70-8d63-65158dbf088c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T22:11:11.848Z", + "completed":"2017-01-03T22:11:11.848Z", + "new_balance":"9111.34", + "value":"-17.62" + } + }, + { + "id":"46f5a0e4-4738-454f-8036-39d679f9a1cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T04:09:42.702Z", + "completed":"2017-01-04T04:09:42.702Z", + "new_balance":"9100.43", + "value":"-10.91" + } + }, + { + "id":"5a0dabe0-02b1-419a-a6fa-2aab54af107d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T16:13:24.468Z", + "completed":"2017-01-05T16:13:24.468Z", + "new_balance":"9093.44", + "value":"-6.99" + } + }, + { + "id":"9ea3b35b-3b2c-4156-aa25-a0454a50b4d0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T16:03:30.660Z", + "completed":"2017-01-07T16:03:30.660Z", + "new_balance":"9074.28", + "value":"-19.16" + } + }, + { + "id":"f580340a-18ad-47e9-a626-324bd7734517", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T16:05:07.723Z", + "completed":"2017-01-07T16:05:07.723Z", + "new_balance":"9049.35", + "value":"-24.93" + } + }, + { + "id":"f336641c-5ff6-4c52-a03a-299afc99ee8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T00:45:40.393Z", + "completed":"2017-01-08T00:45:40.393Z", + "new_balance":"9034.36", + "value":"-14.99" + } + }, + { + "id":"686126fd-6c11-4775-8e8a-6f1eba481f80", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T10:25:29.546Z", + "completed":"2017-01-08T10:25:29.546Z", + "new_balance":"9018.35", + "value":"-16.01" + } + }, + { + "id":"6fe70870-2b4b-43f2-85a9-a90842715e01", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T01:31:53.500Z", + "completed":"2017-01-09T01:31:53.500Z", + "new_balance":"8973.29", + "value":"-45.06" + } + }, + { + "id":"0444ae47-b284-4476-b249-e77a6c083e12", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T13:02:02.259Z", + "completed":"2017-01-09T13:02:02.259Z", + "new_balance":"8944.13", + "value":"-29.16" + } + }, + { + "id":"05da05f9-394f-4456-8903-8dd8fdd48f93", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T00:42:26.410Z", + "completed":"2017-01-10T00:42:26.410Z", + "new_balance":"8839.41", + "value":"-104.72" + } + }, + { + "id":"ba0642f6-e70d-4190-8bea-b8cdcc17d9c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T08:58:11.660Z", + "completed":"2017-01-10T08:58:11.660Z", + "new_balance":"8794.93", + "value":"-44.48" + } + }, + { + "id":"a59e88f0-8470-4e93-8759-966544cb6dde", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T00:18:48.049Z", + "completed":"2017-01-11T00:18:48.049Z", + "new_balance":"8715.85", + "value":"-79.08" + } + }, + { + "id":"5874802c-9292-4a79-9d0b-743fa5e384a1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T00:21:42.870Z", + "completed":"2017-01-11T00:21:42.870Z", + "new_balance":"8806.73", + "value":"90.88" + } + }, + { + "id":"776efd41-b1ed-409f-aed9-fbcd0057a0ff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T16:41:17.623Z", + "completed":"2017-01-11T16:41:17.623Z", + "new_balance":"8800.96", + "value":"-5.77" + } + }, + { + "id":"bcab8eef-d814-4754-a53a-d71d80eacca4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T08:02:58.725Z", + "completed":"2017-01-12T08:02:58.725Z", + "new_balance":"8790.89", + "value":"-10.07" + } + }, + { + "id":"d34b822c-4bfb-4f26-bf36-6c6beb1a3a21", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T23:56:12.571Z", + "completed":"2017-01-15T23:56:12.571Z", + "new_balance":"8765.49", + "value":"-25.40" + } + }, + { + "id":"8872a404-af58-4f8c-86bb-729707211ee4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T22:21:37.007Z", + "completed":"2017-01-16T22:21:37.007Z", + "new_balance":"8734.68", + "value":"-30.81" + } + }, + { + "id":"4131a83a-e1f9-4f98-aaba-6930325bffb5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T22:50:08.370Z", + "completed":"2017-01-17T22:50:08.370Z", + "new_balance":"8719.85", + "value":"-14.83" + } + }, + { + "id":"1dc519b3-1676-4d69-a76b-abe5bb6dcc17", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T18:42:48.472Z", + "completed":"2017-01-20T18:42:48.472Z", + "new_balance":"8712.86", + "value":"-6.99" + } + }, + { + "id":"f38be545-4785-49d1-a5d3-18587bacfc38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T02:43:11.788Z", + "completed":"2017-01-21T02:43:11.788Z", + "new_balance":"8664.08", + "value":"-48.78" + } + }, + { + "id":"c3a8a3df-7cbf-48f2-805c-1ccbe3c8996d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T15:38:21.515Z", + "completed":"2017-01-23T15:38:21.515Z", + "new_balance":"8466.17", + "value":"-197.91" + } + }, + { + "id":"d36da3b1-321e-4c34-bf2f-e5eec7f007b8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T11:48:34.210Z", + "completed":"2017-02-01T11:48:34.210Z", + "new_balance":"9488.59", + "value":"1022.42" + } + }, + { + "id":"f0edbeb9-0531-4859-8faf-9f738efa8e2b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T01:44:38.355Z", + "completed":"2017-02-03T01:44:38.355Z", + "new_balance":"9325.11", + "value":"-163.48" + } + }, + { + "id":"7ec86626-07f4-49cc-8886-8c1b0bb3b79b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T11:11:45.820Z", + "completed":"2017-02-03T11:11:45.820Z", + "new_balance":"8917.54", + "value":"-407.57" + } + }, + { + "id":"cd2e2981-882c-4bfb-8c6f-fd3b1f080c0c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T15:59:21.711Z", + "completed":"2017-02-04T15:59:21.711Z", + "new_balance":"8903.03", + "value":"-14.51" + } + }, + { + "id":"c166c023-5b79-4e13-a827-ee7afcf26cc0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T19:12:48.258Z", + "completed":"2017-02-05T19:12:48.258Z", + "new_balance":"8896.54", + "value":"-6.49" + } + }, + { + "id":"9139a3a8-288d-4b93-abb2-e7edbc05e557", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T16:56:21.008Z", + "completed":"2017-02-06T16:56:21.008Z", + "new_balance":"8871.74", + "value":"-24.80" + } + }, + { + "id":"b3825d9d-02de-4993-8275-0e1e8865f1a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T06:42:16.489Z", + "completed":"2017-02-07T06:42:16.489Z", + "new_balance":"8767.02", + "value":"-104.72" + } + }, + { + "id":"1e5bc511-3db0-4fa1-8c51-9f985c73fe38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T09:48:18.323Z", + "completed":"2017-02-07T09:48:18.323Z", + "new_balance":"8725.67", + "value":"-41.35" + } + }, + { + "id":"6da7d7e6-3631-4439-a738-8fb272b2e0a3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T17:57:41.991Z", + "completed":"2017-02-07T17:57:41.991Z", + "new_balance":"8696.51", + "value":"-29.16" + } + }, + { + "id":"017d597e-6b87-4a21-87d7-654ecd73130d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T21:09:51.522Z", + "completed":"2017-02-08T21:09:51.522Z", + "new_balance":"8645.95", + "value":"-50.56" + } + }, + { + "id":"e4ef2e31-0b69-4fd5-873e-849658fc6c8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T13:00:21.515Z", + "completed":"2017-02-09T13:00:21.515Z", + "new_balance":"8620.15", + "value":"-25.80" + } + }, + { + "id":"34ee8887-99f9-48bd-8070-5b65ec031a5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T00:35:32.508Z", + "completed":"2017-02-10T00:35:32.508Z", + "new_balance":"8613.16", + "value":"-6.99" + } + }, + { + "id":"2fc8d6fe-00b6-4958-997a-88ea5977d0ca", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T12:16:29.800Z", + "completed":"2017-02-12T12:16:29.800Z", + "new_balance":"8577.97", + "value":"-35.19" + } + }, + { + "id":"4b137a93-933b-4f65-81b9-9763b9274b78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T23:54:02.773Z", + "completed":"2017-02-14T23:54:02.773Z", + "new_balance":"8548.81", + "value":"-29.16" + } + }, + { + "id":"ce4b3c40-727d-443c-bba7-9ec20ae170bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T09:01:09.254Z", + "completed":"2017-02-16T09:01:09.254Z", + "new_balance":"8503.30", + "value":"-45.51" + } + }, + { + "id":"875aad0d-a41d-4882-b0ec-09f9dde9d3a6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T23:22:00.644Z", + "completed":"2017-02-16T23:22:00.644Z", + "new_balance":"8497.53", + "value":"-5.77" + } + }, + { + "id":"510b4c74-94e4-4671-b7cd-4a2a4155baca", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T20:57:56.333Z", + "completed":"2017-02-18T20:57:56.333Z", + "new_balance":"8489.13", + "value":"-8.40" + } + }, + { + "id":"e276fb3b-5f4e-4271-ad02-9db937c48101", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T01:36:48.022Z", + "completed":"2017-02-21T01:36:48.022Z", + "new_balance":"8603.27", + "value":"114.14" + } + }, + { + "id":"537604a0-b459-4e4a-afe4-61ff3b1b0049", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T20:15:54.648Z", + "completed":"2017-02-21T20:15:54.648Z", + "new_balance":"8554.49", + "value":"-48.78" + } + }, + { + "id":"e714d45c-42a9-460c-93c9-ad087ca843a0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T07:56:08.242Z", + "completed":"2017-02-27T07:56:08.242Z", + "new_balance":"8356.58", + "value":"-197.91" + } + }, + { + "id":"aba4d6d1-7839-40b1-a6b1-776a5347bee3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T19:20:17.522Z", + "completed":"2017-03-01T19:20:17.522Z", + "new_balance":"9379.00", + "value":"1022.42" + } + }, + { + "id":"1b03331a-cad9-4de7-9005-310355d8d106", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T23:14:59.803Z", + "completed":"2017-03-03T23:14:59.803Z", + "new_balance":"8971.43", + "value":"-407.57" + } + }, + { + "id":"554b12fd-75d6-4c50-9b09-127ceb7892ec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T07:51:58.849Z", + "completed":"2017-03-04T07:51:58.849Z", + "new_balance":"8939.98", + "value":"-31.45" + } + }, + { + "id":"bc30cf06-578a-4032-996e-b1dce945b75c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T09:46:19.795Z", + "completed":"2017-03-04T09:46:19.795Z", + "new_balance":"8909.17", + "value":"-30.81" + } + }, + { + "id":"d63fc7cd-a922-426f-9fde-9b7c3d40e1ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T09:51:31.041Z", + "completed":"2017-03-04T09:51:31.041Z", + "new_balance":"8863.66", + "value":"-45.51" + } + }, + { + "id":"04689cd4-1d18-4929-ac46-f8cac0316861", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T13:02:09.696Z", + "completed":"2017-03-04T13:02:09.696Z", + "new_balance":"8846.66", + "value":"-17.00" + } + }, + { + "id":"ec438718-a9a0-41f2-a73b-0e3d30811675", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T04:34:21.829Z", + "completed":"2017-03-05T04:34:21.829Z", + "new_balance":"8840.89", + "value":"-5.77" + } + }, + { + "id":"5ce3b4f5-3c85-4f88-a8e4-1a46f35cb883", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T09:32:20.363Z", + "completed":"2017-03-05T09:32:20.363Z", + "new_balance":"8795.35", + "value":"-45.54" + } + }, + { + "id":"81e35b21-e9a5-42c0-a362-b20b096c7e13", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:21:04.329Z", + "completed":"2017-03-05T11:21:04.329Z", + "new_balance":"8781.29", + "value":"-14.06" + } + }, + { + "id":"15c12dbe-c330-464f-9af5-eb514f2fe831", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T13:55:15.798Z", + "completed":"2017-03-05T13:55:15.798Z", + "new_balance":"8676.57", + "value":"-104.72" + } + }, + { + "id":"d73c7aa3-5645-411a-be57-a0b0adbb81a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T10:29:15.923Z", + "completed":"2017-03-06T10:29:15.923Z", + "new_balance":"8577.45", + "value":"-99.12" + } + }, + { + "id":"5ae8099b-93e5-41ea-9f55-d9218a9d4e8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T14:22:56.477Z", + "completed":"2017-03-06T14:22:56.477Z", + "new_balance":"8495.66", + "value":"-81.79" + } + }, + { + "id":"65893ab5-3e3b-4687-a214-4b22a73bb718", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T00:10:48.292Z", + "completed":"2017-03-07T00:10:48.292Z", + "new_balance":"8488.05", + "value":"-7.61" + } + }, + { + "id":"260b9e61-d728-4305-989e-d7276b9a4b23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T19:05:21.363Z", + "completed":"2017-03-07T19:05:21.363Z", + "new_balance":"8482.28", + "value":"-5.77" + } + }, + { + "id":"9ac97644-d764-450c-aed9-410d2fe1e43d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T03:47:18.187Z", + "completed":"2017-03-08T03:47:18.187Z", + "new_balance":"8473.76", + "value":"-8.52" + } + }, + { + "id":"7358601c-fe1f-439f-9dfb-beab61dcea18", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T15:06:01.776Z", + "completed":"2017-03-08T15:06:01.776Z", + "new_balance":"8466.15", + "value":"-7.61" + } + }, + { + "id":"47ee1f0f-9336-4ff8-b3b8-c9af1c7f0eef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T05:32:30.071Z", + "completed":"2017-03-10T05:32:30.071Z", + "new_balance":"8433.81", + "value":"-32.34" + } + }, + { + "id":"970e7b5d-52fb-470a-b665-303355327726", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:30:00.942Z", + "completed":"2017-03-11T07:30:00.942Z", + "new_balance":"8421.44", + "value":"-12.37" + } + }, + { + "id":"ecadf8d8-2573-4740-92be-495d5933a73c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T08:51:57.523Z", + "completed":"2017-03-11T08:51:57.523Z", + "new_balance":"8415.67", + "value":"-5.77" + } + }, + { + "id":"113ff575-7408-47ef-b0e9-25475d52ca54", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T10:23:23.143Z", + "completed":"2017-03-11T10:23:23.143Z", + "new_balance":"8391.37", + "value":"-24.30" + } + }, + { + "id":"6ab270dc-5d28-4333-9a73-ff7b23cf9676", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:04:44.295Z", + "completed":"2017-03-12T03:04:44.295Z", + "new_balance":"8372.21", + "value":"-19.16" + } + }, + { + "id":"8042e71c-8a92-4636-8573-af83e5e55517", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T08:50:52.533Z", + "completed":"2017-03-12T08:50:52.533Z", + "new_balance":"8366.44", + "value":"-5.77" + } + }, + { + "id":"8dd014ac-3732-4848-aaba-673ef88bf4c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T13:52:32.887Z", + "completed":"2017-03-12T13:52:32.887Z", + "new_balance":"8300.26", + "value":"-66.18" + } + }, + { + "id":"04e3fc1f-1a80-4e13-861a-69d10f8f3b38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T14:28:57.463Z", + "completed":"2017-03-12T14:28:57.463Z", + "new_balance":"8199.00", + "value":"-101.26" + } + }, + { + "id":"ac3ea329-75ef-4820-8091-128752b8fb51", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T06:21:02.975Z", + "completed":"2017-03-13T06:21:02.975Z", + "new_balance":"8193.23", + "value":"-5.77" + } + }, + { + "id":"d06cdc30-5d50-4a22-a5b5-1136de7e9df6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T06:49:59.517Z", + "completed":"2017-03-13T06:49:59.517Z", + "new_balance":"8150.74", + "value":"-42.49" + } + }, + { + "id":"64cdc1c1-2205-49c0-85f5-7120adef53b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T06:51:46.246Z", + "completed":"2017-03-15T06:51:46.246Z", + "new_balance":"8108.51", + "value":"-42.23" + } + }, + { + "id":"3b18b234-08d9-4590-b781-0d374eb22ce0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T10:32:48.908Z", + "completed":"2017-03-15T10:32:48.908Z", + "new_balance":"8059.62", + "value":"-48.89" + } + }, + { + "id":"9b27ba4d-b7f9-4ea8-91f8-316237f502ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T16:03:53.741Z", + "completed":"2017-03-17T16:03:53.741Z", + "new_balance":"8015.65", + "value":"-43.97" + } + }, + { + "id":"a5bcb1b7-49c5-488a-a54e-6bea8cdc3cad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T19:19:56.024Z", + "completed":"2017-03-18T19:19:56.024Z", + "new_balance":"7918.15", + "value":"-97.50" + } + }, + { + "id":"e1e89ace-ec1d-48e2-aaea-696c8f9680fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T16:20:39.583Z", + "completed":"2017-03-20T16:20:39.583Z", + "new_balance":"7813.83", + "value":"-104.32" + } + }, + { + "id":"bacbcccc-c6ca-4b83-95b3-ffe2cec505f0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T19:37:15.547Z", + "completed":"2017-03-22T19:37:15.547Z", + "new_balance":"7773.51", + "value":"-40.32" + } + }, + { + "id":"f653d084-50a9-4f31-ac23-774a055a310a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T00:34:05.168Z", + "completed":"2017-03-25T00:34:05.168Z", + "new_balance":"7767.74", + "value":"-5.77" + } + }, + { + "id":"23d081c6-dfc3-4a28-aeaf-bdfebffa757c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T14:50:57.536Z", + "completed":"2017-03-25T14:50:57.536Z", + "new_balance":"7754.73", + "value":"-13.01" + } + }, + { + "id":"652581ab-6a0c-4dec-a9df-bf70b7ceb465", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T01:05:31.108Z", + "completed":"2017-03-26T01:05:31.108Z", + "new_balance":"7729.11", + "value":"-25.62" + } + }, + { + "id":"eeb3d10c-e63b-4d73-a307-a285d587135f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T22:57:21.997Z", + "completed":"2017-03-26T22:57:21.997Z", + "new_balance":"7716.32", + "value":"-12.79" + } + }, + { + "id":"93c3caa6-8c9b-434e-aedf-4c8be76c95d9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T21:30:38.419Z", + "completed":"2017-03-27T21:30:38.419Z", + "new_balance":"7702.13", + "value":"-14.19" + } + }, + { + "id":"936edf5e-7d26-48ff-84ad-9063266885cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T17:55:40.872Z", + "completed":"2017-03-28T17:55:40.872Z", + "new_balance":"7653.35", + "value":"-48.78" + } + }, + { + "id":"b490c73d-4246-4635-8200-aba7a6878a5f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T11:47:35.706Z", + "completed":"2017-03-31T11:47:35.706Z", + "new_balance":"7455.44", + "value":"-197.91" + } + }, + { + "id":"07e87f25-484e-4a2f-91aa-3c34b4770e3b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T11:47:57.270Z", + "completed":"2017-04-01T11:47:57.270Z", + "new_balance":"7047.87", + "value":"-407.57" + } + }, + { + "id":"d5a722e6-72bb-42f8-9395-9043812e59ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:35:17.748Z", + "completed":"2017-04-01T21:35:17.748Z", + "new_balance":"8070.29", + "value":"1022.42" + } + }, + { + "id":"adf3a9da-6d88-4a5a-a41c-d8231fb80614", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T22:14:53.421Z", + "completed":"2017-04-01T22:14:53.421Z", + "new_balance":"9750.70", + "value":"1680.41" + } + }, + { + "id":"bdaf2139-4bd8-45d5-b3a8-d6286c39cf02", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T17:02:34.775Z", + "completed":"2017-04-03T17:02:34.775Z", + "new_balance":"9744.32", + "value":"-6.38" + } + }, + { + "id":"7de56883-2f2e-4865-84e9-9e14526b5ebd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:17:12.457Z", + "completed":"2017-04-03T21:17:12.457Z", + "new_balance":"9697.52", + "value":"-46.80" + } + }, + { + "id":"0a0d78ce-f6f9-4386-9591-b5553cc7ee8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T22:06:36.196Z", + "completed":"2017-04-03T22:06:36.196Z", + "new_balance":"9679.90", + "value":"-17.62" + } + }, + { + "id":"2ba32320-b733-4388-b5df-7399dc7b436d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:41:54.481Z", + "completed":"2017-04-05T15:41:54.481Z", + "new_balance":"9668.99", + "value":"-10.91" + } + }, + { + "id":"78c7f525-0a89-41d9-b596-f4564da5e7bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T19:50:04.758Z", + "completed":"2017-04-05T19:50:04.758Z", + "new_balance":"9662.00", + "value":"-6.99" + } + }, + { + "id":"d6ff3d2e-de90-4bf5-8450-b9425c7f00f9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T08:49:31.192Z", + "completed":"2017-04-06T08:49:31.192Z", + "new_balance":"9637.07", + "value":"-24.93" + } + }, + { + "id":"305b99c2-bde5-4c3a-87ee-c16c14373fe4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T05:35:32.623Z", + "completed":"2017-04-09T05:35:32.623Z", + "new_balance":"9617.91", + "value":"-19.16" + } + }, + { + "id":"c6dff8a8-2530-44d8-b73a-702e50d57f09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:15:07.265Z", + "completed":"2017-04-10T14:15:07.265Z", + "new_balance":"9602.92", + "value":"-14.99" + } + }, + { + "id":"34226da5-c4e4-48f9-ab88-55b0f8a3e0f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T04:48:40.627Z", + "completed":"2017-04-11T04:48:40.627Z", + "new_balance":"9573.76", + "value":"-29.16" + } + }, + { + "id":"c3fbdfae-88b0-4e9c-963d-4a1e57f66007", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T14:00:33.652Z", + "completed":"2017-04-11T14:00:33.652Z", + "new_balance":"9557.75", + "value":"-16.01" + } + }, + { + "id":"92c969a6-7184-48ae-a5ea-6f42eadb5c01", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T05:05:21.847Z", + "completed":"2017-04-13T05:05:21.847Z", + "new_balance":"9453.03", + "value":"-104.72" + } + }, + { + "id":"29d089e2-a091-4b0a-952c-89455d5aea32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T19:11:42.347Z", + "completed":"2017-04-13T19:11:42.347Z", + "new_balance":"9407.97", + "value":"-45.06" + } + }, + { + "id":"d457f9e1-5705-4818-9414-8963ec088840", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T13:33:09.849Z", + "completed":"2017-04-15T13:33:09.849Z", + "new_balance":"9363.49", + "value":"-44.48" + } + }, + { + "id":"00337b85-5025-426d-bbcb-6faab78c52bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T21:27:10.217Z", + "completed":"2017-04-16T21:27:10.217Z", + "new_balance":"9353.42", + "value":"-10.07" + } + }, + { + "id":"8e6afa6d-d2d6-4db2-9463-1ad3beceef13", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T23:29:38.684Z", + "completed":"2017-04-16T23:29:38.684Z", + "new_balance":"9347.65", + "value":"-5.77" + } + }, + { + "id":"19d08d1e-6081-4fa2-8ea3-ae28221a8d8f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T11:35:58.344Z", + "completed":"2017-04-18T11:35:58.344Z", + "new_balance":"9268.57", + "value":"-79.08" + } + }, + { + "id":"06f4bc51-ef42-488a-b3c5-8b3c3320fb4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T20:44:20.381Z", + "completed":"2017-04-23T20:44:20.381Z", + "new_balance":"9243.17", + "value":"-25.40" + } + }, + { + "id":"df0b15f9-c861-4982-87c0-48a896234825", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T00:19:49.074Z", + "completed":"2017-04-24T00:19:49.074Z", + "new_balance":"9212.36", + "value":"-30.81" + } + }, + { + "id":"6bcdb459-584f-426b-9fd5-0865a3d51984", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T11:07:20.588Z", + "completed":"2017-04-24T11:07:20.588Z", + "new_balance":"9197.53", + "value":"-14.83" + } + }, + { + "id":"292fee6c-3a9c-44bf-8a05-9fdb86d30bf9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T00:05:50.494Z", + "completed":"2017-04-26T00:05:50.494Z", + "new_balance":"9190.54", + "value":"-6.99" + } + }, + { + "id":"df06746a-01e8-4952-80f9-e36970e1f1a3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T11:56:26.912Z", + "completed":"2017-04-28T11:56:26.912Z", + "new_balance":"9141.76", + "value":"-48.78" + } + }, + { + "id":"c621e969-dd29-4ff7-8956-c22532e5b781", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T20:52:19.847Z", + "completed":"2017-04-28T20:52:19.847Z", + "new_balance":"8943.85", + "value":"-197.91" + } + }, + { + "id":"012ef02d-4ee3-42cb-bf1f-5684126cbb86", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T03:49:00.091Z", + "completed":"2017-05-02T03:49:00.091Z", + "new_balance":"8937.36", + "value":"-6.49" + } + }, + { + "id":"83e460da-ee07-4218-87d1-9c64de824894", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T06:52:56.368Z", + "completed":"2017-05-02T06:52:56.368Z", + "new_balance":"8922.85", + "value":"-14.51" + } + }, + { + "id":"beb14377-dc7e-43cf-975f-e57444e2b0de", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T13:05:53.932Z", + "completed":"2017-05-02T13:05:53.932Z", + "new_balance":"8515.28", + "value":"-407.57" + } + }, + { + "id":"b4ff3a54-28b3-4cc4-aafd-27ad80a4590b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T23:19:31.136Z", + "completed":"2017-05-02T23:19:31.136Z", + "new_balance":"8351.80", + "value":"-163.48" + } + }, + { + "id":"2ba79942-e255-4bb0-95f9-a29d817d5298", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T09:55:55.628Z", + "completed":"2017-05-06T09:55:55.628Z", + "new_balance":"8327.00", + "value":"-24.80" + } + }, + { + "id":"8ea6d403-38a1-4865-8a5c-de36b1633036", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T18:43:07.707Z", + "completed":"2017-05-06T18:43:07.707Z", + "new_balance":"8297.84", + "value":"-29.16" + } + }, + { + "id":"c71b3079-ec0b-44d8-907e-0061489c5f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:05:13.570Z", + "completed":"2017-05-07T02:05:13.570Z", + "new_balance":"8256.49", + "value":"-41.35" + } + }, + { + "id":"1cb939ad-34be-4c87-9f9d-b962b7fd2903", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T22:19:47.081Z", + "completed":"2017-05-07T22:19:47.081Z", + "new_balance":"8151.77", + "value":"-104.72" + } + }, + { + "id":"9af889b2-c193-42be-bee7-af84f3e3d606", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T07:41:01.692Z", + "completed":"2017-05-09T07:41:01.692Z", + "new_balance":"9174.19", + "value":"1022.42" + } + }, + { + "id":"2e2fd184-a1a3-4018-8916-0ff38cd8cc2a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T05:33:27.660Z", + "completed":"2017-05-14T05:33:27.660Z", + "new_balance":"9148.39", + "value":"-25.80" + } + }, + { + "id":"aaeef9c3-b71d-4bea-9f3a-f3c1d54b1ff7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T05:39:01.146Z", + "completed":"2017-05-14T05:39:01.146Z", + "new_balance":"9097.83", + "value":"-50.56" + } + }, + { + "id":"073ca560-e259-43a2-9bb4-fa6bafbac8b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T23:13:01.515Z", + "completed":"2017-05-16T23:13:01.515Z", + "new_balance":"9090.84", + "value":"-6.99" + } + }, + { + "id":"daf3cd2d-dccc-414b-ae64-4cb78c109af8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T23:12:13.214Z", + "completed":"2017-05-21T23:12:13.214Z", + "new_balance":"9055.65", + "value":"-35.19" + } + }, + { + "id":"b0a6924d-71f6-4c3a-bf85-9d32c99e9db2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T10:43:55.920Z", + "completed":"2017-05-23T10:43:55.920Z", + "new_balance":"9049.88", + "value":"-5.77" + } + }, + { + "id":"f4edf51d-f084-433c-9b5c-108100a28c0f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T13:10:01.460Z", + "completed":"2017-05-23T13:10:01.460Z", + "new_balance":"9020.72", + "value":"-29.16" + } + }, + { + "id":"8f58d756-d471-499c-805d-6b316d18c889", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T21:50:34.503Z", + "completed":"2017-05-24T21:50:34.503Z", + "new_balance":"8975.21", + "value":"-45.51" + } + }, + { + "id":"0670bf22-95b3-4466-b20f-64109fb62c84", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:45:57.470Z", + "completed":"2017-05-27T07:45:57.470Z", + "new_balance":"8966.81", + "value":"-8.40" + } + }, + { + "id":"e9bda619-f273-4d4d-8609-f3d035c84130", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T01:08:17.382Z", + "completed":"2017-05-30T01:08:17.382Z", + "new_balance":"8918.03", + "value":"-48.78" + } + }, + { + "id":"e6bf8bd2-4d22-47cb-8de7-1ed2f5dc2043", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T05:17:22.132Z", + "completed":"2017-05-30T05:17:22.132Z", + "new_balance":"8720.12", + "value":"-197.91" + } + }, + { + "id":"5288346b-255d-4c66-89e1-57cffb00d648", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T02:04:06.287Z", + "completed":"2017-06-01T02:04:06.287Z", + "new_balance":"8312.55", + "value":"-407.57" + } + }, + { + "id":"3f107043-72fe-4491-8c9d-a9660bc40e34", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T11:38:15.957Z", + "completed":"2017-06-01T11:38:15.957Z", + "new_balance":"9334.97", + "value":"1022.42" + } + }, + { + "id":"4e8f87a2-d43b-493a-91b6-bb68150f3840", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T05:13:51.995Z", + "completed":"2017-06-04T05:13:51.995Z", + "new_balance":"9303.52", + "value":"-31.45" + } + }, + { + "id":"5f414f98-1c6b-47f9-befd-53859b613de4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T10:28:01.690Z", + "completed":"2017-06-04T10:28:01.690Z", + "new_balance":"9286.52", + "value":"-17.00" + } + }, + { + "id":"1a523252-5b80-4cf3-8afb-4c3a9826c501", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T04:26:35.172Z", + "completed":"2017-06-11T04:26:35.172Z", + "new_balance":"9255.71", + "value":"-30.81" + } + }, + { + "id":"b4d2dd8f-6537-41f5-883a-724c3b67ff74", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T07:24:00.297Z", + "completed":"2017-06-11T07:24:00.297Z", + "new_balance":"9210.20", + "value":"-45.51" + } + }, + { + "id":"32e29b57-ddc4-4a81-ae89-89c783b214e0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T00:19:10.348Z", + "completed":"2017-06-12T00:19:10.348Z", + "new_balance":"9204.43", + "value":"-5.77" + } + }, + { + "id":"8e431c07-1f86-483b-abdc-9d2de7e247cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T02:03:06.762Z", + "completed":"2017-06-12T02:03:06.762Z", + "new_balance":"9190.37", + "value":"-14.06" + } + }, + { + "id":"076f2144-08c2-4ab7-8a0b-02183940c45a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T13:44:07.291Z", + "completed":"2017-06-12T13:44:07.291Z", + "new_balance":"9085.65", + "value":"-104.72" + } + }, + { + "id":"612f7321-2085-469a-bfe7-e732f87c7a5a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T03:42:04.855Z", + "completed":"2017-06-13T03:42:04.855Z", + "new_balance":"8986.53", + "value":"-99.12" + } + }, + { + "id":"3298d391-1b8b-4007-bb34-6481a7c4fb35", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T04:40:37.393Z", + "completed":"2017-06-13T04:40:37.393Z", + "new_balance":"8940.99", + "value":"-45.54" + } + }, + { + "id":"94d8bb53-aa03-4697-9534-1f4c079a9a44", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T11:49:25.049Z", + "completed":"2017-06-13T11:49:25.049Z", + "new_balance":"8859.20", + "value":"-81.79" + } + }, + { + "id":"4a6159f6-7150-4cd4-baa3-c2059fe5002f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T01:06:08.209Z", + "completed":"2017-06-14T01:06:08.209Z", + "new_balance":"8853.43", + "value":"-5.77" + } + }, + { + "id":"9fe0a0c1-2748-48c1-8330-cad5ff1cbc2d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T02:25:55.362Z", + "completed":"2017-06-14T02:25:55.362Z", + "new_balance":"8845.82", + "value":"-7.61" + } + }, + { + "id":"39cadd43-ca27-4dab-958a-0b319024a7fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T16:05:39.588Z", + "completed":"2017-06-14T16:05:39.588Z", + "new_balance":"8838.21", + "value":"-7.61" + } + }, + { + "id":"81783e5b-a3d2-4f91-a3ed-32431ee4cbf6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T06:53:08.345Z", + "completed":"2017-06-15T06:53:08.345Z", + "new_balance":"8829.69", + "value":"-8.52" + } + }, + { + "id":"fb751a07-7eb3-4de8-b6a1-8f801aa494b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T17:00:44.444Z", + "completed":"2017-06-15T17:00:44.444Z", + "new_balance":"8797.35", + "value":"-32.34" + } + }, + { + "id":"a539d527-4b0c-4d3d-b5e8-78125c7db12a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T17:17:52.475Z", + "completed":"2017-06-15T17:17:52.475Z", + "new_balance":"8791.58", + "value":"-5.77" + } + }, + { + "id":"45e98440-d2d4-488e-9dd3-ca1a2f1e89f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T03:04:49.212Z", + "completed":"2017-06-16T03:04:49.212Z", + "new_balance":"8767.28", + "value":"-24.30" + } + }, + { + "id":"93cfd246-54a2-4080-bfff-72a8a1dac62b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T05:26:34.869Z", + "completed":"2017-06-17T05:26:34.869Z", + "new_balance":"8754.91", + "value":"-12.37" + } + }, + { + "id":"e734ffae-fbd5-4591-9cad-bc29f66f21fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T02:22:48.655Z", + "completed":"2017-06-18T02:22:48.655Z", + "new_balance":"8653.65", + "value":"-101.26" + } + }, + { + "id":"8b346872-0f7c-41fa-8b4c-617adc0cfc2f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:43:34.354Z", + "completed":"2017-06-18T08:43:34.354Z", + "new_balance":"8647.88", + "value":"-5.77" + } + }, + { + "id":"cff8ac56-1ab1-42b2-84db-e43b00f27de0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T12:13:09.519Z", + "completed":"2017-06-18T12:13:09.519Z", + "new_balance":"8642.11", + "value":"-5.77" + } + }, + { + "id":"4877d2df-bc1e-4904-a195-1112fc34cd0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T14:20:03.955Z", + "completed":"2017-06-18T14:20:03.955Z", + "new_balance":"8622.95", + "value":"-19.16" + } + }, + { + "id":"fb2c379e-f1d1-49d0-85b2-bd49e6f8b7fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T19:23:18.929Z", + "completed":"2017-06-18T19:23:18.929Z", + "new_balance":"8580.46", + "value":"-42.49" + } + }, + { + "id":"a168cd4c-e47f-4684-b1a4-415798ef7b96", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:54:39.584Z", + "completed":"2017-06-18T19:54:39.584Z", + "new_balance":"8514.28", + "value":"-66.18" + } + }, + { + "id":"da777f97-ec7d-4716-8ee5-3eb7d2c9b06b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:25:40.571Z", + "completed":"2017-06-19T02:25:40.571Z", + "new_balance":"8470.31", + "value":"-43.97" + } + }, + { + "id":"b63555e7-f93d-4a20-ab8b-3067966253ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T19:55:32.511Z", + "completed":"2017-06-19T19:55:32.511Z", + "new_balance":"8428.08", + "value":"-42.23" + } + }, + { + "id":"45baee03-ee9b-4240-b20f-cab9e82319c1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T23:02:29.948Z", + "completed":"2017-06-19T23:02:29.948Z", + "new_balance":"8379.19", + "value":"-48.89" + } + }, + { + "id":"42481918-5c8f-43fa-8613-612e48344369", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T03:32:04.831Z", + "completed":"2017-06-21T03:32:04.831Z", + "new_balance":"8274.87", + "value":"-104.32" + } + }, + { + "id":"6e33d894-b689-4397-852a-fdd761c4ed26", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T03:42:22.415Z", + "completed":"2017-06-21T03:42:22.415Z", + "new_balance":"8177.37", + "value":"-97.50" + } + }, + { + "id":"330356f3-2ce2-4aa9-aef8-26ba90a01ff8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T00:07:09.251Z", + "completed":"2017-06-22T00:07:09.251Z", + "new_balance":"8137.05", + "value":"-40.32" + } + }, + { + "id":"a760f417-3df2-4a69-8625-32981e8a0b8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T00:16:29.963Z", + "completed":"2017-06-22T00:16:29.963Z", + "new_balance":"8131.28", + "value":"-5.77" + } + }, + { + "id":"698c8460-c583-49c5-90d4-ffa5a15d396a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T13:59:14.893Z", + "completed":"2017-06-22T13:59:14.893Z", + "new_balance":"8118.27", + "value":"-13.01" + } + }, + { + "id":"2842815e-5007-4005-97e4-08ad7c289caa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T11:36:33.156Z", + "completed":"2017-06-23T11:36:33.156Z", + "new_balance":"8105.48", + "value":"-12.79" + } + }, + { + "id":"ccc9b612-9ab6-44f6-8896-e49dcda58c31", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T04:10:55.532Z", + "completed":"2017-06-24T04:10:55.532Z", + "new_balance":"8079.86", + "value":"-25.62" + } + }, + { + "id":"35b000da-5898-4021-bba9-32ad804f6503", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T19:46:49.498Z", + "completed":"2017-06-26T19:46:49.498Z", + "new_balance":"8065.67", + "value":"-14.19" + } + }, + { + "id":"d595c4e9-4bfa-4381-986f-4ddcf33af27f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T05:31:18.347Z", + "completed":"2017-06-30T05:31:18.347Z", + "new_balance":"7867.76", + "value":"-197.91" + } + }, + { + "id":"cf0269ef-9af1-483a-9798-4e046473bea0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:46:30.801Z", + "completed":"2017-06-30T20:46:30.801Z", + "new_balance":"7818.98", + "value":"-48.78" + } + }, + { + "id":"f4aadc7e-a5e9-4c56-89e5-11a1f74c3e23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:06:39.539Z", + "completed":"2017-07-01T09:06:39.539Z", + "new_balance":"9499.39", + "value":"1680.41" + } + }, + { + "id":"491c9c6b-2b74-497e-83a1-f69865add620", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:57:09.552Z", + "completed":"2017-07-01T09:57:09.552Z", + "new_balance":"10521.81", + "value":"1022.42" + } + }, + { + "id":"5d605caa-8845-4186-8ca2-036e648e3dfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T09:43:34.822Z", + "completed":"2017-07-03T09:43:34.822Z", + "new_balance":"10114.24", + "value":"-407.57" + } + }, + { + "id":"7394bc6d-d256-4634-a914-2fc0e826413e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T00:47:14.613Z", + "completed":"2017-07-04T00:47:14.613Z", + "new_balance":"10096.62", + "value":"-17.62" + } + }, + { + "id":"63107122-0095-49cd-bf2e-4be061cd6ee6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T01:29:32.671Z", + "completed":"2017-07-04T01:29:32.671Z", + "new_balance":"10090.24", + "value":"-6.38" + } + }, + { + "id":"827683d7-5409-4d72-86bf-19094efc8c87", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T02:48:35.780Z", + "completed":"2017-07-04T02:48:35.780Z", + "new_balance":"10043.44", + "value":"-46.80" + } + }, + { + "id":"b0dcd73b-8684-494a-9b5b-4d0e3e3f7425", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T07:24:25.638Z", + "completed":"2017-07-05T07:24:25.638Z", + "new_balance":"10032.53", + "value":"-10.91" + } + }, + { + "id":"2bef0eeb-9114-4f56-9ca9-abd93e5906ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T02:57:42.527Z", + "completed":"2017-07-07T02:57:42.527Z", + "new_balance":"10025.54", + "value":"-6.99" + } + }, + { + "id":"238620b6-40af-4910-95df-89c0c109853e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T03:19:59.722Z", + "completed":"2017-07-11T03:19:59.722Z", + "new_balance":"10010.55", + "value":"-14.99" + } + }, + { + "id":"082b17f6-04cb-40be-92f1-9bd9db6847cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T03:23:02.444Z", + "completed":"2017-07-11T03:23:02.444Z", + "new_balance":"9991.39", + "value":"-19.16" + } + }, + { + "id":"943e9577-fa3e-4226-af11-5c7fe75bac7b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T07:59:38.283Z", + "completed":"2017-07-11T07:59:38.283Z", + "new_balance":"9962.23", + "value":"-29.16" + } + }, + { + "id":"fc9fd524-ef9b-4524-a660-32efa4755bb0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T09:10:13.701Z", + "completed":"2017-07-11T09:10:13.701Z", + "new_balance":"9937.30", + "value":"-24.93" + } + }, + { + "id":"8b4fb7d6-7d4b-4c85-a785-0753f4457e20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T09:14:13.628Z", + "completed":"2017-07-11T09:14:13.628Z", + "new_balance":"9921.29", + "value":"-16.01" + } + }, + { + "id":"ebc3a0c4-ea97-4a4d-b673-e16cbd9511f8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T00:05:33.798Z", + "completed":"2017-07-13T00:05:33.798Z", + "new_balance":"9816.57", + "value":"-104.72" + } + }, + { + "id":"d6c01fdd-28b6-4d01-ba74-2c59e746c269", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T19:28:44.329Z", + "completed":"2017-07-13T19:28:44.329Z", + "new_balance":"9771.51", + "value":"-45.06" + } + }, + { + "id":"6f8294f7-dd36-42e7-964d-e52ec4d8d38c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T07:51:45.737Z", + "completed":"2017-07-16T07:51:45.737Z", + "new_balance":"9727.03", + "value":"-44.48" + } + }, + { + "id":"83f0b393-fe2e-47bf-8d5e-085b4c8f4d99", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T18:07:08.169Z", + "completed":"2017-07-16T18:07:08.169Z", + "new_balance":"9817.91", + "value":"90.88" + } + }, + { + "id":"cf5bf439-f312-4a9a-8f09-dfbcd4741ff7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T08:48:08.780Z", + "completed":"2017-07-17T08:48:08.780Z", + "new_balance":"9812.14", + "value":"-5.77" + } + }, + { + "id":"f1f82088-ade9-4637-aefd-ca88b3370af7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T21:41:27.709Z", + "completed":"2017-07-17T21:41:27.709Z", + "new_balance":"9802.07", + "value":"-10.07" + } + }, + { + "id":"430fb996-95ae-44f1-a0d3-b3bd73ffa6cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T14:10:12.496Z", + "completed":"2017-07-19T14:10:12.496Z", + "new_balance":"9722.99", + "value":"-79.08" + } + }, + { + "id":"65e4635a-8abf-45fb-871c-878b8d82ae5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T13:35:04.909Z", + "completed":"2017-07-21T13:35:04.909Z", + "new_balance":"9697.59", + "value":"-25.40" + } + }, + { + "id":"f47047ee-0f3c-44dd-af15-0ccae965ab09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T11:18:31.033Z", + "completed":"2017-07-23T11:18:31.033Z", + "new_balance":"9666.78", + "value":"-30.81" + } + }, + { + "id":"d243c3fe-33c9-4c18-b504-50dbb14f55fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T08:44:17.843Z", + "completed":"2017-07-25T08:44:17.843Z", + "new_balance":"9651.95", + "value":"-14.83" + } + }, + { + "id":"75167802-1b69-47ef-89c1-29a0c121455a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T09:25:14.018Z", + "completed":"2017-07-27T09:25:14.018Z", + "new_balance":"9644.96", + "value":"-6.99" + } + }, + { + "id":"0b88ceac-9ee9-43a1-bcca-743016f2082d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T06:20:00.749Z", + "completed":"2017-07-28T06:20:00.749Z", + "new_balance":"9447.05", + "value":"-197.91" + } + }, + { + "id":"030dfe58-1c3e-41e1-b933-960fbbaa9968", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T14:48:39.492Z", + "completed":"2017-07-28T14:48:39.492Z", + "new_balance":"9398.27", + "value":"-48.78" + } + }, + { + "id":"90f075f5-d624-4a7f-a88f-4b2c7da17b91", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T12:08:07.118Z", + "completed":"2017-08-01T12:08:07.118Z", + "new_balance":"10420.69", + "value":"1022.42" + } + }, + { + "id":"0e5d96f2-98fe-42fc-a1e5-fbeae25ad4aa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T05:09:30.897Z", + "completed":"2017-08-03T05:09:30.897Z", + "new_balance":"10257.21", + "value":"-163.48" + } + }, + { + "id":"602a676e-e77c-4f78-bbfb-ea1076c1c30d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T07:58:57.411Z", + "completed":"2017-08-03T07:58:57.411Z", + "new_balance":"9849.64", + "value":"-407.57" + } + }, + { + "id":"0b71971b-9519-4a7c-ad94-e6fa8a04e128", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T20:52:33.378Z", + "completed":"2017-08-04T20:52:33.378Z", + "new_balance":"9835.13", + "value":"-14.51" + } + }, + { + "id":"36043465-744e-4cc0-bdc6-97b9bcf77d79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T10:21:25.470Z", + "completed":"2017-08-07T10:21:25.470Z", + "new_balance":"9805.97", + "value":"-29.16" + } + }, + { + "id":"73fea8da-a60c-47c2-bfb4-7aca3eebf873", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T12:50:00.493Z", + "completed":"2017-08-07T12:50:00.493Z", + "new_balance":"9799.48", + "value":"-6.49" + } + }, + { + "id":"c8b25372-b141-44e2-94e4-8e14ad3a912f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T20:10:18.350Z", + "completed":"2017-08-07T20:10:18.350Z", + "new_balance":"9774.68", + "value":"-24.80" + } + }, + { + "id":"8dc44a50-b024-41ec-aabb-c81c99143c07", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T13:20:12.433Z", + "completed":"2017-08-08T13:20:12.433Z", + "new_balance":"9724.12", + "value":"-50.56" + } + }, + { + "id":"5ac24944-58e6-4141-a3b7-df5831aa932a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T17:06:26.729Z", + "completed":"2017-08-08T17:06:26.729Z", + "new_balance":"9619.40", + "value":"-104.72" + } + }, + { + "id":"af8c67b4-acde-4e5b-a9c3-c8b329db1d7f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T17:35:54.284Z", + "completed":"2017-08-08T17:35:54.284Z", + "new_balance":"9578.05", + "value":"-41.35" + } + }, + { + "id":"c9adcae5-61cc-4b8b-91f3-4167f44cb1ac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T16:32:43.798Z", + "completed":"2017-08-09T16:32:43.798Z", + "new_balance":"9552.25", + "value":"-25.80" + } + }, + { + "id":"64104a33-b534-4f4d-a154-a3af765273b7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T01:04:12.751Z", + "completed":"2017-08-11T01:04:12.751Z", + "new_balance":"9545.26", + "value":"-6.99" + } + }, + { + "id":"6cca7879-f0f3-4669-9ef9-a1d55b1b6ee4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T21:45:55.489Z", + "completed":"2017-08-14T21:45:55.489Z", + "new_balance":"9510.07", + "value":"-35.19" + } + }, + { + "id":"769a04eb-ee97-420e-8925-1d2583386b7f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T04:58:53.097Z", + "completed":"2017-08-15T04:58:53.097Z", + "new_balance":"9480.91", + "value":"-29.16" + } + }, + { + "id":"86c06944-24dc-4fa7-b100-ce0805c382c0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T07:21:47.664Z", + "completed":"2017-08-17T07:21:47.664Z", + "new_balance":"9475.14", + "value":"-5.77" + } + }, + { + "id":"60263426-9881-49e0-9178-477f1b2bbbfb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T09:40:12.068Z", + "completed":"2017-08-17T09:40:12.068Z", + "new_balance":"9429.63", + "value":"-45.51" + } + }, + { + "id":"7642d3ff-0d14-493c-9dfe-21b0cc343720", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T02:53:40.563Z", + "completed":"2017-08-19T02:53:40.563Z", + "new_balance":"9421.23", + "value":"-8.40" + } + }, + { + "id":"faf37fd8-88b2-44f8-9f62-ac0b3be301b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T12:51:35.771Z", + "completed":"2017-08-25T12:51:35.771Z", + "new_balance":"9535.37", + "value":"114.14" + } + }, + { + "id":"6572f8e0-15bc-4b45-8aab-0b80361e327e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T05:58:35.810Z", + "completed":"2017-08-28T05:58:35.810Z", + "new_balance":"9486.59", + "value":"-48.78" + } + }, + { + "id":"5a8cc61e-b6ff-434a-b2e3-64910ccef50b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T23:34:45.366Z", + "completed":"2017-08-28T23:34:45.366Z", + "new_balance":"9288.68", + "value":"-197.91" + } + }, + { + "id":"2b4fc568-3a39-4947-8f98-196582bc71e5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:18:47.257Z", + "completed":"2017-09-01T17:18:47.257Z", + "new_balance":"10311.10", + "value":"1022.42" + } + }, + { + "id":"3664bbcf-b2b5-4155-b7cf-8770536eb9b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T12:24:23.807Z", + "completed":"2017-09-03T12:24:23.807Z", + "new_balance":"9903.53", + "value":"-407.57" + } + }, + { + "id":"91210b50-d559-4614-bb57-371190d617cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T04:30:16.328Z", + "completed":"2017-09-04T04:30:16.328Z", + "new_balance":"9886.53", + "value":"-17.00" + } + }, + { + "id":"7e836cea-1230-41e5-8e99-081a30538481", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T05:12:07.319Z", + "completed":"2017-09-04T05:12:07.319Z", + "new_balance":"9841.02", + "value":"-45.51" + } + }, + { + "id":"5c73a3f0-5646-4104-8912-3308a928d06f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T06:00:38.856Z", + "completed":"2017-09-04T06:00:38.856Z", + "new_balance":"9810.21", + "value":"-30.81" + } + }, + { + "id":"a82eff59-e91d-43d4-9978-b7ad77342d78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T23:11:10.946Z", + "completed":"2017-09-04T23:11:10.946Z", + "new_balance":"9778.76", + "value":"-31.45" + } + }, + { + "id":"f4a1afee-2570-424f-95ff-e58505b19ab1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T00:21:27.286Z", + "completed":"2017-09-05T00:21:27.286Z", + "new_balance":"9733.22", + "value":"-45.54" + } + }, + { + "id":"dedcfe1c-e821-406e-82b9-86554b908547", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T10:55:53.277Z", + "completed":"2017-09-05T10:55:53.277Z", + "new_balance":"9727.45", + "value":"-5.77" + } + }, + { + "id":"17faf907-46b8-44c8-8d69-6dcba08578ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T13:17:44.782Z", + "completed":"2017-09-05T13:17:44.782Z", + "new_balance":"9713.39", + "value":"-14.06" + } + }, + { + "id":"1e203234-9a07-4962-8d8e-645d9303e79c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T15:23:59.362Z", + "completed":"2017-09-05T15:23:59.362Z", + "new_balance":"9614.27", + "value":"-99.12" + } + }, + { + "id":"d4a6ee80-edf9-4f90-b073-7a2507925dc5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T18:50:03.714Z", + "completed":"2017-09-05T18:50:03.714Z", + "new_balance":"9509.55", + "value":"-104.72" + } + }, + { + "id":"c7810027-8b11-415b-ad76-9b4b43faa9c0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T19:57:43.465Z", + "completed":"2017-09-05T19:57:43.465Z", + "new_balance":"9427.76", + "value":"-81.79" + } + }, + { + "id":"740ba1b8-0ff3-4a33-a30d-e399af30a400", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:49:31.281Z", + "completed":"2017-09-07T03:49:31.281Z", + "new_balance":"9420.15", + "value":"-7.61" + } + }, + { + "id":"a8a2e4b8-f72c-4278-a973-0aec42e0b9ea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T07:18:45.396Z", + "completed":"2017-09-07T07:18:45.396Z", + "new_balance":"9412.54", + "value":"-7.61" + } + }, + { + "id":"0e096c9a-8a01-456a-9a08-e248625e94e9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T09:20:51.734Z", + "completed":"2017-09-07T09:20:51.734Z", + "new_balance":"9406.77", + "value":"-5.77" + } + }, + { + "id":"8a66a317-9fd9-4264-88ae-445c48ca833c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T21:46:58.458Z", + "completed":"2017-09-07T21:46:58.458Z", + "new_balance":"9398.25", + "value":"-8.52" + } + }, + { + "id":"b74e8dd7-f3f0-4bd7-8aa7-1b346c2bde0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T12:35:14.505Z", + "completed":"2017-09-10T12:35:14.505Z", + "new_balance":"9365.91", + "value":"-32.34" + } + }, + { + "id":"986f37cd-9669-48ba-9423-dafbddeac607", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T00:07:55.732Z", + "completed":"2017-09-11T00:07:55.732Z", + "new_balance":"9341.61", + "value":"-24.30" + } + }, + { + "id":"104d442b-9999-4eae-b917-0bc3b8964b91", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T01:23:06.324Z", + "completed":"2017-09-11T01:23:06.324Z", + "new_balance":"9329.24", + "value":"-12.37" + } + }, + { + "id":"5bdab332-7dc3-4694-9397-11054f9048f6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T16:59:43.665Z", + "completed":"2017-09-11T16:59:43.665Z", + "new_balance":"9323.47", + "value":"-5.77" + } + }, + { + "id":"7f340a9a-5ef8-46ee-a108-3c6760406ded", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T08:34:41.634Z", + "completed":"2017-09-12T08:34:41.634Z", + "new_balance":"9257.29", + "value":"-66.18" + } + }, + { + "id":"cac2b6d3-f72c-4c3e-b0c2-4de64e0a57cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T13:27:12.380Z", + "completed":"2017-09-12T13:27:12.380Z", + "new_balance":"9156.03", + "value":"-101.26" + } + }, + { + "id":"4d09c195-3334-4daf-8483-86aa9df6b857", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T21:59:25.936Z", + "completed":"2017-09-12T21:59:25.936Z", + "new_balance":"9136.87", + "value":"-19.16" + } + }, + { + "id":"986dd1a5-87f7-4546-8a61-5b858c8d9ac2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:15:35.796Z", + "completed":"2017-09-12T23:15:35.796Z", + "new_balance":"9131.10", + "value":"-5.77" + } + }, + { + "id":"c7177661-8aea-4842-88c3-cabf07c2207d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T02:01:05.581Z", + "completed":"2017-09-13T02:01:05.581Z", + "new_balance":"9088.61", + "value":"-42.49" + } + }, + { + "id":"8c06e9e4-eb96-45c5-856d-dc3115c4e7ea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:50:46.655Z", + "completed":"2017-09-14T05:50:46.655Z", + "new_balance":"9046.38", + "value":"-42.23" + } + }, + { + "id":"ecc60022-7749-45cd-9152-e6fc28814786", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T10:05:27.379Z", + "completed":"2017-09-14T10:05:27.379Z", + "new_balance":"9040.61", + "value":"-5.77" + } + }, + { + "id":"f7eb3680-e233-4c2c-b005-dcc23678fa52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T06:16:27.359Z", + "completed":"2017-09-16T06:16:27.359Z", + "new_balance":"8991.72", + "value":"-48.89" + } + }, + { + "id":"405ed6c6-7274-4598-86cd-93b417803d20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T22:31:52.123Z", + "completed":"2017-09-18T22:31:52.123Z", + "new_balance":"8947.75", + "value":"-43.97" + } + }, + { + "id":"488dcaf0-a7e5-48eb-b1b0-c2ea364af006", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T04:33:37.882Z", + "completed":"2017-09-21T04:33:37.882Z", + "new_balance":"8843.43", + "value":"-104.32" + } + }, + { + "id":"6f73b64a-8e3d-48cd-9500-1823c16cbf9d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T04:40:21.161Z", + "completed":"2017-09-21T04:40:21.161Z", + "new_balance":"8745.93", + "value":"-97.50" + } + }, + { + "id":"87a39fb8-7797-4335-89d2-ea1d7fb59e22", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T21:57:45.126Z", + "completed":"2017-09-23T21:57:45.126Z", + "new_balance":"8705.61", + "value":"-40.32" + } + }, + { + "id":"ced63dfb-bb7e-4a3b-928e-18075bedaf85", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T06:56:37.132Z", + "completed":"2017-09-24T06:56:37.132Z", + "new_balance":"8699.84", + "value":"-5.77" + } + }, + { + "id":"895c291f-fb8e-465c-a55d-421ab5068b0b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T03:50:48.299Z", + "completed":"2017-09-26T03:50:48.299Z", + "new_balance":"8674.22", + "value":"-25.62" + } + }, + { + "id":"8aaddfaf-802a-44f5-b62d-f3a3d45fb3c2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:05:24.155Z", + "completed":"2017-09-26T08:05:24.155Z", + "new_balance":"8661.21", + "value":"-13.01" + } + }, + { + "id":"a2705b4e-f576-4b1a-99ec-bffb73c36287", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T09:02:17.225Z", + "completed":"2017-09-26T09:02:17.225Z", + "new_balance":"8648.42", + "value":"-12.79" + } + }, + { + "id":"436225ee-a7b9-4dfa-be69-08fc83d55e63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T00:03:22.739Z", + "completed":"2017-09-27T00:03:22.739Z", + "new_balance":"8634.23", + "value":"-14.19" + } + }, + { + "id":"f89be6ff-5463-4122-94bf-4e3357495aaa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T09:06:03.589Z", + "completed":"2017-09-28T09:06:03.589Z", + "new_balance":"8436.32", + "value":"-197.91" + } + }, + { + "id":"570e6c9c-6078-472b-aadd-b4aaf26155bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T19:09:22.380Z", + "completed":"2017-09-28T19:09:22.380Z", + "new_balance":"8387.54", + "value":"-48.78" + } + }, + { + "id":"308f2007-78fe-4545-9d37-4f5d9ace1371", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T00:31:56.216Z", + "completed":"2017-10-01T00:31:56.216Z", + "new_balance":"10067.95", + "value":"1680.41" + } + }, + { + "id":"6bd2d4ad-811e-4b91-a9c0-d87b8a2c131b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T07:18:03.797Z", + "completed":"2017-10-01T07:18:03.797Z", + "new_balance":"9660.38", + "value":"-407.57" + } + }, + { + "id":"b5eaa324-64d0-417c-8d9b-ca24a7e0c94f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T14:24:44.240Z", + "completed":"2017-10-01T14:24:44.240Z", + "new_balance":"10682.80", + "value":"1022.42" + } + }, + { + "id":"dcebf38d-1d34-4913-8514-45182e6405b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T01:59:18.989Z", + "completed":"2017-10-03T01:59:18.989Z", + "new_balance":"10676.42", + "value":"-6.38" + } + }, + { + "id":"288527a4-a2d5-4dc0-aadc-8b221a224095", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T07:16:57.158Z", + "completed":"2017-10-03T07:16:57.158Z", + "new_balance":"10658.80", + "value":"-17.62" + } + }, + { + "id":"b3d21638-5f69-4c2b-b940-0a13c5e438d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T17:34:26.715Z", + "completed":"2017-10-03T17:34:26.715Z", + "new_balance":"10612.00", + "value":"-46.80" + } + }, + { + "id":"aa6b71e4-d59f-4cb3-8f53-5359ce7c829b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T11:02:04.984Z", + "completed":"2017-10-05T11:02:04.984Z", + "new_balance":"10601.09", + "value":"-10.91" + } + }, + { + "id":"d395653a-c11f-40cc-925b-b9497567638c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:38:50.163Z", + "completed":"2017-10-05T13:38:50.163Z", + "new_balance":"10594.10", + "value":"-6.99" + } + }, + { + "id":"d35a98ba-baf3-482e-966f-fe3f4c12ac1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:10:47.469Z", + "completed":"2017-10-06T05:10:47.469Z", + "new_balance":"10569.17", + "value":"-24.93" + } + }, + { + "id":"60a39236-27f5-4814-9609-fdf65a6ab18b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T23:32:01.307Z", + "completed":"2017-10-09T23:32:01.307Z", + "new_balance":"10550.01", + "value":"-19.16" + } + }, + { + "id":"ae49106f-58fa-494c-aa91-c4df313dee70", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:43:45.058Z", + "completed":"2017-10-10T19:43:45.058Z", + "new_balance":"10535.02", + "value":"-14.99" + } + }, + { + "id":"9a50ee9a-f9a0-44ba-9d5b-029a383c8757", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T03:00:11.118Z", + "completed":"2017-10-11T03:00:11.118Z", + "new_balance":"10505.86", + "value":"-29.16" + } + }, + { + "id":"41a72215-73aa-43da-8483-9e55d7e4c6c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T13:42:02.699Z", + "completed":"2017-10-11T13:42:02.699Z", + "new_balance":"10489.85", + "value":"-16.01" + } + }, + { + "id":"e01d82b0-08ea-40fc-a523-ee88ed5ea50e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T01:35:49.290Z", + "completed":"2017-10-14T01:35:49.290Z", + "new_balance":"10385.13", + "value":"-104.72" + } + }, + { + "id":"698dd2d8-20ac-49de-b71e-eedae220a34c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T08:17:37.074Z", + "completed":"2017-10-14T08:17:37.074Z", + "new_balance":"10340.07", + "value":"-45.06" + } + }, + { + "id":"0adebef8-431a-4598-a486-ebc8b6a71e78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T15:23:33.440Z", + "completed":"2017-10-17T15:23:33.440Z", + "new_balance":"10295.59", + "value":"-44.48" + } + }, + { + "id":"ad629dd8-24dc-449b-a65b-d3bd6eb6d397", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T02:09:32.319Z", + "completed":"2017-10-18T02:09:32.319Z", + "new_balance":"10285.52", + "value":"-10.07" + } + }, + { + "id":"d9925dcb-3844-4ad7-a81d-0b9be4548665", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T02:27:14.903Z", + "completed":"2017-10-18T02:27:14.903Z", + "new_balance":"10206.44", + "value":"-79.08" + } + }, + { + "id":"488aa704-4788-4e05-bcea-05d564b878e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T23:34:14.664Z", + "completed":"2017-10-18T23:34:14.664Z", + "new_balance":"10200.67", + "value":"-5.77" + } + }, + { + "id":"4846a030-88c4-4e44-abde-7ef0002aeec5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T11:14:57.015Z", + "completed":"2017-10-23T11:14:57.015Z", + "new_balance":"10175.27", + "value":"-25.40" + } + }, + { + "id":"eee04505-934f-4663-a16b-0bfe0fd29cd4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T10:24:54.252Z", + "completed":"2017-10-24T10:24:54.252Z", + "new_balance":"10160.44", + "value":"-14.83" + } + }, + { + "id":"8f38e822-c430-489f-915f-adca2effd46d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T16:14:38.829Z", + "completed":"2017-10-24T16:14:38.829Z", + "new_balance":"10129.63", + "value":"-30.81" + } + }, + { + "id":"b84e6b9f-c7c2-4ae3-8380-9927cbe8bde6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T23:29:27.582Z", + "completed":"2017-10-26T23:29:27.582Z", + "new_balance":"10122.64", + "value":"-6.99" + } + }, + { + "id":"66663542-8744-44f0-9dde-381f5e1b85d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T08:52:56.556Z", + "completed":"2017-10-30T08:52:56.556Z", + "new_balance":"9924.73", + "value":"-197.91" + } + }, + { + "id":"04c10aa4-1d5e-4df9-aac7-fa06f9c55ad8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T21:56:05.233Z", + "completed":"2017-10-30T21:56:05.233Z", + "new_balance":"9875.95", + "value":"-48.78" + } + }, + { + "id":"902e2ebe-51a2-4724-be3e-17cc57893633", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T12:13:25.157Z", + "completed":"2017-11-02T12:13:25.157Z", + "new_balance":"9468.38", + "value":"-407.57" + } + }, + { + "id":"6f474c01-9c1d-4815-9290-ab74bbde741c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T12:22:32.166Z", + "completed":"2017-11-02T12:22:32.166Z", + "new_balance":"9304.90", + "value":"-163.48" + } + }, + { + "id":"65e181a1-f42d-4769-a399-e913005552b7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T13:03:12.484Z", + "completed":"2017-11-02T13:03:12.484Z", + "new_balance":"9298.41", + "value":"-6.49" + } + }, + { + "id":"fab00b49-8d3f-45c8-925e-2e5258e7a668", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T13:47:03.429Z", + "completed":"2017-11-02T13:47:03.429Z", + "new_balance":"9283.90", + "value":"-14.51" + } + }, + { + "id":"ded3e274-51d3-47ae-b788-50ae93e560cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T22:20:07.259Z", + "completed":"2017-11-06T22:20:07.259Z", + "new_balance":"9254.74", + "value":"-29.16" + } + }, + { + "id":"b2dc0f84-714c-410f-978e-34f85dc34d16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T23:46:13.765Z", + "completed":"2017-11-06T23:46:13.765Z", + "new_balance":"9229.94", + "value":"-24.80" + } + }, + { + "id":"0ac6a03b-8c58-469a-93c6-934a14c63c4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T02:43:23.646Z", + "completed":"2017-11-07T02:43:23.646Z", + "new_balance":"9125.22", + "value":"-104.72" + } + }, + { + "id":"d54753d6-466f-4da7-b167-45149941f053", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T07:20:46.223Z", + "completed":"2017-11-07T07:20:46.223Z", + "new_balance":"9083.87", + "value":"-41.35" + } + }, + { + "id":"afd7ff9a-5ae8-4fb8-b1fd-67bd23a4af3d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T00:54:30.655Z", + "completed":"2017-11-09T00:54:30.655Z", + "new_balance":"10106.29", + "value":"1022.42" + } + }, + { + "id":"444c902e-738b-44b0-b92a-efec48562276", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:46:47.513Z", + "completed":"2017-11-14T06:46:47.513Z", + "new_balance":"10055.73", + "value":"-50.56" + } + }, + { + "id":"7a273f84-0231-4705-b4cb-f615c52ac164", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T11:48:09.057Z", + "completed":"2017-11-14T11:48:09.057Z", + "new_balance":"10029.93", + "value":"-25.80" + } + }, + { + "id":"7f597962-3578-4d31-ab4a-f57536b23255", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T01:27:55.240Z", + "completed":"2017-11-16T01:27:55.240Z", + "new_balance":"10022.94", + "value":"-6.99" + } + }, + { + "id":"a4ff0876-eda5-4848-92c3-c76a1db33885", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T10:29:06.367Z", + "completed":"2017-11-20T10:29:06.367Z", + "new_balance":"9987.75", + "value":"-35.19" + } + }, + { + "id":"8a70f255-41ab-44e9-b58e-5bc4ef537331", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T15:03:33.412Z", + "completed":"2017-11-23T15:03:33.412Z", + "new_balance":"9981.98", + "value":"-5.77" + } + }, + { + "id":"ccc4d0ef-654f-4b24-a39b-eb8b05e887fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T16:27:08.789Z", + "completed":"2017-11-23T16:27:08.789Z", + "new_balance":"9936.47", + "value":"-45.51" + } + }, + { + "id":"51aceb13-e991-45e7-990d-94669feaf53f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T19:03:32.238Z", + "completed":"2017-11-23T19:03:32.238Z", + "new_balance":"9907.31", + "value":"-29.16" + } + }, + { + "id":"548277d7-d529-43b2-b97d-4048f2de91fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T04:53:58.869Z", + "completed":"2017-11-28T04:53:58.869Z", + "new_balance":"9898.91", + "value":"-8.40" + } + }, + { + "id":"52afc0b4-cefa-448d-96f1-81f6b1b74fc1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T11:10:12.687Z", + "completed":"2017-11-30T11:10:12.687Z", + "new_balance":"9850.13", + "value":"-48.78" + } + }, + { + "id":"0cb5b60d-a5c1-4e84-a9c1-1ef6a46a5118", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T20:07:52.645Z", + "completed":"2017-11-30T20:07:52.645Z", + "new_balance":"9652.22", + "value":"-197.91" + } + }, + { + "id":"e36cadfa-4fc9-4494-9c70-bbaea640a55b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T02:59:52.460Z", + "completed":"2017-12-01T02:59:52.460Z", + "new_balance":"9244.65", + "value":"-407.57" + } + }, + { + "id":"4eefd170-44fa-4daa-8a13-9a785abd1427", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:59:01.498Z", + "completed":"2017-12-01T16:59:01.498Z", + "new_balance":"10267.07", + "value":"1022.42" + } + }, + { + "id":"e6c1b395-02d2-4f89-b569-714dbdae0d8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T13:13:50.588Z", + "completed":"2017-12-04T13:13:50.588Z", + "new_balance":"10250.07", + "value":"-17.00" + } + }, + { + "id":"2f00b459-a899-433c-9b24-9d86b4048f6c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T23:44:36.724Z", + "completed":"2017-12-04T23:44:36.724Z", + "new_balance":"10218.62", + "value":"-31.45" + } + }, + { + "id":"53019b50-e437-4aa3-8514-243585987c63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T07:03:15.672Z", + "completed":"2017-12-11T07:03:15.672Z", + "new_balance":"10173.11", + "value":"-45.51" + } + }, + { + "id":"8c4371f0-2fe8-4a6b-bbd4-4ffff8d5567a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T16:40:45.023Z", + "completed":"2017-12-11T16:40:45.023Z", + "new_balance":"10142.30", + "value":"-30.81" + } + }, + { + "id":"3c154398-f61a-4dbc-ad07-0a27c14abc1e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T01:40:16.804Z", + "completed":"2017-12-14T01:40:16.804Z", + "new_balance":"10128.24", + "value":"-14.06" + } + }, + { + "id":"98421c7f-9043-42d6-abb5-ef9bf42d6bf5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T04:35:46.715Z", + "completed":"2017-12-14T04:35:46.715Z", + "new_balance":"10122.47", + "value":"-5.77" + } + }, + { + "id":"eec297e7-9350-4df3-b982-c089370c978b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T04:59:02.415Z", + "completed":"2017-12-14T04:59:02.415Z", + "new_balance":"10114.86", + "value":"-7.61" + } + }, + { + "id":"0a27416c-3c86-4662-9c68-70c5b815e1e2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:03:56.723Z", + "completed":"2017-12-14T12:03:56.723Z", + "new_balance":"10015.74", + "value":"-99.12" + } + }, + { + "id":"5c87b0dd-c745-4887-a376-4418b6029a63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T12:47:18.130Z", + "completed":"2017-12-14T12:47:18.130Z", + "new_balance":"10008.13", + "value":"-7.61" + } + }, + { + "id":"8e45d525-3596-457b-a663-25b9c71ba4fc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T12:52:53.449Z", + "completed":"2017-12-14T12:52:53.449Z", + "new_balance":"9903.41", + "value":"-104.72" + } + }, + { + "id":"38c220ba-7ac7-475b-8a89-a4e32a956f31", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T13:47:01.957Z", + "completed":"2017-12-14T13:47:01.957Z", + "new_balance":"9857.87", + "value":"-45.54" + } + }, + { + "id":"f0a690a4-48c5-467b-a6ff-6f36be896769", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T13:54:32.007Z", + "completed":"2017-12-14T13:54:32.007Z", + "new_balance":"9776.08", + "value":"-81.79" + } + }, + { + "id":"ca0da5c2-8da8-4260-9f8f-11493b509dfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:41:22.937Z", + "completed":"2017-12-14T20:41:22.937Z", + "new_balance":"9770.31", + "value":"-5.77" + } + }, + { + "id":"92647e24-46fb-4381-a117-0ef198f254f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T03:50:33.870Z", + "completed":"2017-12-15T03:50:33.870Z", + "new_balance":"9761.79", + "value":"-8.52" + } + }, + { + "id":"05cec10c-216e-4859-96c3-a25e01ccf20d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T20:33:11.000Z", + "completed":"2017-12-15T20:33:11.000Z", + "new_balance":"9729.45", + "value":"-32.34" + } + }, + { + "id":"5c349027-3802-4f53-8021-ecb0f42797cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T22:43:01.254Z", + "completed":"2017-12-15T22:43:01.254Z", + "new_balance":"9723.68", + "value":"-5.77" + } + }, + { + "id":"37457cb6-a0f6-48ab-99a6-8665715817d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T01:03:08.383Z", + "completed":"2017-12-18T01:03:08.383Z", + "new_balance":"9717.91", + "value":"-5.77" + } + }, + { + "id":"8cba0b4f-2896-49b6-a200-fadb1c7b504f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T01:41:08.106Z", + "completed":"2017-12-18T01:41:08.106Z", + "new_balance":"9675.42", + "value":"-42.49" + } + }, + { + "id":"26b8ce92-23f9-42ff-bbd3-5efd7f301476", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T02:57:04.848Z", + "completed":"2017-12-18T02:57:04.848Z", + "new_balance":"9651.12", + "value":"-24.30" + } + }, + { + "id":"e3ff290b-05a5-4ba6-b67a-c0c54e5091e8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T04:59:09.553Z", + "completed":"2017-12-18T04:59:09.553Z", + "new_balance":"9638.75", + "value":"-12.37" + } + }, + { + "id":"0e8437f8-06c6-42dd-bd92-e9fb33e777fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T05:15:42.659Z", + "completed":"2017-12-18T05:15:42.659Z", + "new_balance":"9537.49", + "value":"-101.26" + } + }, + { + "id":"b23b6252-4733-402e-9088-a86dd7e085fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T13:32:00.858Z", + "completed":"2017-12-18T13:32:00.858Z", + "new_balance":"9471.31", + "value":"-66.18" + } + }, + { + "id":"d1b56dbe-5185-4e46-86d7-6c36447558b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T20:08:37.829Z", + "completed":"2017-12-18T20:08:37.829Z", + "new_balance":"9465.54", + "value":"-5.77" + } + }, + { + "id":"2e779b61-50d6-4acf-b770-72c266c08086", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T21:37:29.708Z", + "completed":"2017-12-18T21:37:29.708Z", + "new_balance":"9446.38", + "value":"-19.16" + } + }, + { + "id":"314001e9-0631-4331-803f-2eab8b9d4fae", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:57:08.131Z", + "completed":"2017-12-19T00:57:08.131Z", + "new_balance":"9404.15", + "value":"-42.23" + } + }, + { + "id":"de75ecd6-bd8c-4c54-a51b-a4c4a5a152f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T01:43:22.880Z", + "completed":"2017-12-19T01:43:22.880Z", + "new_balance":"9360.18", + "value":"-43.97" + } + }, + { + "id":"d8ad0b2f-58b8-43e5-9590-762a553e9c4a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T12:50:34.837Z", + "completed":"2017-12-19T12:50:34.837Z", + "new_balance":"9311.29", + "value":"-48.89" + } + }, + { + "id":"460a2fd8-f4d5-4fa5-961c-f7726a1f0d75", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T00:45:28.982Z", + "completed":"2017-12-21T00:45:28.982Z", + "new_balance":"9213.79", + "value":"-97.50" + } + }, + { + "id":"ad510f8d-d3d3-4ad2-bdee-39ef3b1c3f32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:28:02.860Z", + "completed":"2017-12-21T07:28:02.860Z", + "new_balance":"9200.78", + "value":"-13.01" + } + }, + { + "id":"8561104d-a23e-4bd6-9afc-3b1ccb23c080", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T12:01:59.383Z", + "completed":"2017-12-21T12:01:59.383Z", + "new_balance":"9096.46", + "value":"-104.32" + } + }, + { + "id":"3065c08b-47b4-4e1e-8ff6-cfa4f1c8e9b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T21:01:12.565Z", + "completed":"2017-12-21T21:01:12.565Z", + "new_balance":"9056.14", + "value":"-40.32" + } + }, + { + "id":"b429dc5a-45fa-44c1-82e7-2203b6abe327", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T22:48:40.822Z", + "completed":"2017-12-21T22:48:40.822Z", + "new_balance":"9050.37", + "value":"-5.77" + } + }, + { + "id":"572e7e6a-e4d7-42cc-a9fa-c4c632fcab79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T03:33:10.589Z", + "completed":"2017-12-24T03:33:10.589Z", + "new_balance":"9036.18", + "value":"-14.19" + } + }, + { + "id":"33e18b34-e804-4d12-8acf-dbb2d23b0188", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:54:23.936Z", + "completed":"2017-12-24T05:54:23.936Z", + "new_balance":"9010.56", + "value":"-25.62" + } + }, + { + "id":"63ac37e0-6b63-4e96-a54c-ad6327fca941", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T19:56:47.519Z", + "completed":"2017-12-24T19:56:47.519Z", + "new_balance":"8997.77", + "value":"-12.79" + } + }, + { + "id":"806ae365-4f2c-49df-a6ad-63761aae84bc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T01:16:20.062Z", + "completed":"2017-12-30T01:16:20.062Z", + "new_balance":"8799.86", + "value":"-197.91" + } + }, + { + "id":"2512ca28-a987-4382-8aa4-f310f80d2019", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:25:26.579Z", + "completed":"2017-12-30T14:25:26.579Z", + "new_balance":"8751.08", + "value":"-48.78" + } + }, + { + "id":"650d95d6-0b00-48a2-bc4d-cde8ec7330c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:52:36.871Z", + "completed":"2016-01-01T01:52:36.871Z", + "new_balance":"5127.94", + "value":"-34.43" + } + }, + { + "id":"878ce3d8-5844-4c37-b2c6-4ea19815f719", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T06:07:18.980Z", + "completed":"2016-01-01T06:07:18.980Z", + "new_balance":"5093.51", + "value":"-34.43" + } + }, + { + "id":"c3f1836c-14cd-4f6b-9b75-2ce8bdccf399", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T18:47:07.134Z", + "completed":"2016-01-01T18:47:07.134Z", + "new_balance":"5046.61", + "value":"-46.90" + } + }, + { + "id":"292b6948-51da-4ae9-9a38-7c28b59a5ab3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T19:58:09.617Z", + "completed":"2016-01-01T19:58:09.617Z", + "new_balance":"4941.89", + "value":"-104.72" + } + }, + { + "id":"a2ec21ad-3515-48d0-8eb7-7734e3bcfbdb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T15:13:13.797Z", + "completed":"2016-01-05T15:13:13.797Z", + "new_balance":"4860.68", + "value":"-81.21" + } + }, + { + "id":"1e9a3f16-87e7-4f8f-a064-d83e1c5bab3a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T22:43:31.742Z", + "completed":"2016-01-05T22:43:31.742Z", + "new_balance":"4793.23", + "value":"-67.45" + } + }, + { + "id":"49326cb9-6472-42ff-a67b-e5ebf7f828f7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T07:14:21.432Z", + "completed":"2016-01-08T07:14:21.432Z", + "new_balance":"4782.32", + "value":"-10.91" + } + }, + { + "id":"48cde51f-33ab-4d47-8a8a-1ea306ae0e6d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T05:37:09.688Z", + "completed":"2016-01-10T05:37:09.688Z", + "new_balance":"4735.86", + "value":"-46.46" + } + }, + { + "id":"227f130e-0428-450a-b18b-c0e30de59b3a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T21:04:16.664Z", + "completed":"2016-01-11T21:04:16.664Z", + "new_balance":"4679.22", + "value":"-56.64" + } + }, + { + "id":"b8455ddd-b8ef-483c-9afa-07797617d9cf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T20:26:47.067Z", + "completed":"2016-01-12T20:26:47.067Z", + "new_balance":"4644.79", + "value":"-34.43" + } + }, + { + "id":"2d02ec4b-1c00-4486-9a3a-b85e959ae137", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T06:52:26.139Z", + "completed":"2016-01-13T06:52:26.139Z", + "new_balance":"4639.14", + "value":"-5.65" + } + }, + { + "id":"b0fd8634-6e70-4220-a143-71ae4f87e9d1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T22:09:20.486Z", + "completed":"2016-01-13T22:09:20.486Z", + "new_balance":"4635.55", + "value":"-3.59" + } + }, + { + "id":"88c68811-7fd6-4908-ade9-f831d960d99e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T03:37:32.418Z", + "completed":"2016-01-16T03:37:32.418Z", + "new_balance":"4552.46", + "value":"-83.09" + } + }, + { + "id":"4e0abd06-3539-46d7-8102-7f80c3ee6206", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T03:01:57.606Z", + "completed":"2016-01-19T03:01:57.606Z", + "new_balance":"4471.02", + "value":"-81.44" + } + }, + { + "id":"ff62014a-0169-4cd5-922d-2ddefa7af2a7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T09:45:15.637Z", + "completed":"2016-01-19T09:45:15.637Z", + "new_balance":"4389.81", + "value":"-81.21" + } + }, + { + "id":"d2b7abf5-1d44-479d-8543-101c972bec11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T02:09:27.785Z", + "completed":"2016-01-24T02:09:27.785Z", + "new_balance":"4362.36", + "value":"-27.45" + } + }, + { + "id":"a0b069ba-ba71-4e5c-b4f0-81d57442a81c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T09:22:36.908Z", + "completed":"2016-01-27T09:22:36.908Z", + "new_balance":"6712.57", + "value":"2350.21" + } + }, + { + "id":"6ca637e5-699c-46ae-8433-94e7c9b60acf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T10:23:31.069Z", + "completed":"2016-01-27T10:23:31.069Z", + "new_balance":"6684.59", + "value":"-27.98" + } + }, + { + "id":"05b3d39c-9615-43ec-b333-45b64eab1587", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T23:58:34.504Z", + "completed":"2016-01-31T23:58:34.504Z", + "new_balance":"6367.38", + "value":"-317.21" + } + }, + { + "id":"320ef198-8559-4761-a2a5-a64d5257dadf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:47:51.621Z", + "completed":"2016-02-01T02:47:51.621Z", + "new_balance":"6320.48", + "value":"-46.90" + } + }, + { + "id":"faef671d-857f-417f-9c89-d1de37bd591c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T18:19:09.060Z", + "completed":"2016-02-01T18:19:09.060Z", + "new_balance":"6286.05", + "value":"-34.43" + } + }, + { + "id":"b933c285-5b0e-46b9-b7ec-02f9e77f04b3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T21:06:43.182Z", + "completed":"2016-02-01T21:06:43.182Z", + "new_balance":"6181.33", + "value":"-104.72" + } + }, + { + "id":"0b1c0429-8ad2-4ecc-ae22-016adc12443d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T23:56:01.206Z", + "completed":"2016-02-01T23:56:01.206Z", + "new_balance":"6146.90", + "value":"-34.43" + } + }, + { + "id":"26caeceb-713c-4ade-9f59-332542ee2d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T20:34:58.896Z", + "completed":"2016-02-03T20:34:58.896Z", + "new_balance":"6140.18", + "value":"-6.72" + } + }, + { + "id":"45577062-b8a3-4674-871c-86a574baaf93", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T14:54:30.495Z", + "completed":"2016-02-04T14:54:30.495Z", + "new_balance":"6058.97", + "value":"-81.21" + } + }, + { + "id":"ec1d359e-e170-448f-b2c2-382ecee5be64", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T13:56:39.298Z", + "completed":"2016-02-06T13:56:39.298Z", + "new_balance":"5952.16", + "value":"-106.81" + } + }, + { + "id":"e0b4d03c-2380-417f-bc61-999f425e74d4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T17:13:08.234Z", + "completed":"2016-02-06T17:13:08.234Z", + "new_balance":"5870.99", + "value":"-81.17" + } + }, + { + "id":"edf6cbf8-ef4d-4231-b11e-3313f1a12c5b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T13:30:05.900Z", + "completed":"2016-02-07T13:30:05.900Z", + "new_balance":"5842.96", + "value":"-28.03" + } + }, + { + "id":"261b3861-b94d-4819-b485-999faf4f7d38", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T19:16:50.268Z", + "completed":"2016-02-08T19:16:50.268Z", + "new_balance":"5827.67", + "value":"-15.29" + } + }, + { + "id":"2124f558-8dba-43e6-90a1-8ea6767810ef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T12:50:55.993Z", + "completed":"2016-02-09T12:50:55.993Z", + "new_balance":"5784.72", + "value":"-42.95" + } + }, + { + "id":"0eb5b276-3de6-49bd-92d0-aa5916e90206", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T05:08:54.117Z", + "completed":"2016-02-11T05:08:54.117Z", + "new_balance":"5757.99", + "value":"-26.73" + } + }, + { + "id":"442e0c44-e771-46bd-83d6-f743492cdf06", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T09:07:08.345Z", + "completed":"2016-02-13T09:07:08.345Z", + "new_balance":"5716.45", + "value":"-41.54" + } + }, + { + "id":"a20fb4bf-0f8a-48ca-b7df-3e90661c498a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T07:59:09.386Z", + "completed":"2016-02-17T07:59:09.386Z", + "new_balance":"5709.46", + "value":"-6.99" + } + }, + { + "id":"a7b69097-6c8b-4c7a-9568-7894a5ffe4cc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T20:55:39.030Z", + "completed":"2016-02-19T20:55:39.030Z", + "new_balance":"5659.52", + "value":"-49.94" + } + }, + { + "id":"48604d14-642b-4b34-a72d-993815718b77", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T18:24:41.730Z", + "completed":"2016-02-21T18:24:41.730Z", + "new_balance":"5578.31", + "value":"-81.21" + } + }, + { + "id":"4e91f581-e50a-457b-b7f4-3767039eeb11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T07:13:06.936Z", + "completed":"2016-02-24T07:13:06.936Z", + "new_balance":"5550.33", + "value":"-27.98" + } + }, + { + "id":"abafa594-61f0-4f31-918e-61e8a1937b11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T17:54:23.327Z", + "completed":"2016-02-26T17:54:23.327Z", + "new_balance":"7900.54", + "value":"2350.21" + } + }, + { + "id":"4597f411-ba2b-485b-8244-ae6ceebed423", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T05:01:07.732Z", + "completed":"2016-03-01T05:01:07.732Z", + "new_balance":"7795.82", + "value":"-104.72" + } + }, + { + "id":"f53d49e0-d980-424d-a3fe-3ed7e53b1bc8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T08:36:02.256Z", + "completed":"2016-03-01T08:36:02.256Z", + "new_balance":"7761.39", + "value":"-34.43" + } + }, + { + "id":"8f8b1ffe-dc1a-4edf-85a1-6c5447e46013", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T12:08:11.205Z", + "completed":"2016-03-01T12:08:11.205Z", + "new_balance":"7726.96", + "value":"-34.43" + } + }, + { + "id":"d6ff7637-506f-4a82-af5e-c88b59e506d1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T19:07:57.382Z", + "completed":"2016-03-01T19:07:57.382Z", + "new_balance":"7680.06", + "value":"-46.90" + } + }, + { + "id":"39c99bfa-0e41-4650-a0ef-ee9f9c20b73e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T14:51:30.032Z", + "completed":"2016-03-09T14:51:30.032Z", + "new_balance":"7616.49", + "value":"-63.57" + } + }, + { + "id":"af739ab4-35fb-412e-ab91-4e2f22b79d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T15:18:00.996Z", + "completed":"2016-03-09T15:18:00.996Z", + "new_balance":"7555.12", + "value":"-61.37" + } + }, + { + "id":"c5156ad7-53d8-4fa6-819e-def5bc1ada2b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T03:44:49.772Z", + "completed":"2016-03-17T03:44:49.772Z", + "new_balance":"7466.63", + "value":"-88.49" + } + }, + { + "id":"f7293353-a5fb-4c19-b1ca-7c15200452d7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:17:13.119Z", + "completed":"2016-03-18T02:17:13.119Z", + "new_balance":"7421.16", + "value":"-45.47" + } + }, + { + "id":"1a1c52c3-e66c-4694-a1e4-e9b3903f0766", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:22:31.651Z", + "completed":"2016-03-18T02:22:31.651Z", + "new_balance":"7339.37", + "value":"-81.79" + } + }, + { + "id":"ffda946e-76d7-4681-a2d7-382d3f5c1702", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T04:12:51.190Z", + "completed":"2016-03-18T04:12:51.190Z", + "new_balance":"7299.73", + "value":"-39.64" + } + }, + { + "id":"da3b1a96-8e98-4ecf-b801-9973b94fe153", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T23:23:50.883Z", + "completed":"2016-03-18T23:23:50.883Z", + "new_balance":"7292.96", + "value":"-6.77" + } + }, + { + "id":"71d87400-4644-4886-8c84-a9147f6a1aa7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T06:19:18.878Z", + "completed":"2016-03-22T06:19:18.878Z", + "new_balance":"7188.77", + "value":"-104.19" + } + }, + { + "id":"c7cc023e-42db-4a96-9f30-49f9282e977b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T09:41:54.098Z", + "completed":"2016-03-29T09:41:54.098Z", + "new_balance":"7160.79", + "value":"-27.98" + } + }, + { + "id":"455068a6-aac2-47ba-b074-3cb3ceec9625", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T10:08:45.964Z", + "completed":"2016-03-29T10:08:45.964Z", + "new_balance":"9511.00", + "value":"2350.21" + } + }, + { + "id":"c36fa08f-66a6-45bb-a33a-846323f2e0db", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T23:09:28.761Z", + "completed":"2016-03-31T23:09:28.761Z", + "new_balance":"9193.79", + "value":"-317.21" + } + }, + { + "id":"ef35c29f-6dba-4c81-9581-71653cb49e6e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T00:15:35.701Z", + "completed":"2016-04-01T00:15:35.701Z", + "new_balance":"9159.36", + "value":"-34.43" + } + }, + { + "id":"bd2e93b7-ccbb-4817-8fe9-9a3a53d4d615", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T04:01:36.678Z", + "completed":"2016-04-01T04:01:36.678Z", + "new_balance":"9054.64", + "value":"-104.72" + } + }, + { + "id":"e1dec067-51c6-42c1-983d-c911ba29d7e8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T16:28:30.267Z", + "completed":"2016-04-01T16:28:30.267Z", + "new_balance":"9007.74", + "value":"-46.90" + } + }, + { + "id":"130adb0a-bac2-423b-a3ca-2b24de2260f1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T16:29:46.114Z", + "completed":"2016-04-01T16:29:46.114Z", + "new_balance":"8973.31", + "value":"-34.43" + } + }, + { + "id":"1b82ddc7-6519-4926-acf4-aaf4d52ffc15", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T21:03:10.231Z", + "completed":"2016-04-02T21:03:10.231Z", + "new_balance":"8878.98", + "value":"-94.33" + } + }, + { + "id":"61ec8a03-9cf7-4e47-80a7-015daa344d89", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T00:36:20.687Z", + "completed":"2016-04-05T00:36:20.687Z", + "new_balance":"8837.55", + "value":"-41.43" + } + }, + { + "id":"db87e184-7af9-46c8-ada3-eb6ec3ef3d44", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T01:46:51.797Z", + "completed":"2016-04-05T01:46:51.797Z", + "new_balance":"8832.91", + "value":"-4.64" + } + }, + { + "id":"881d84da-7b2b-4a7f-ac7a-60e0f257a95d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T05:33:07.642Z", + "completed":"2016-04-05T05:33:07.642Z", + "new_balance":"8751.70", + "value":"-81.21" + } + }, + { + "id":"a8404050-fabe-4f17-a700-a068ced26513", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T13:38:37.627Z", + "completed":"2016-04-05T13:38:37.627Z", + "new_balance":"8717.27", + "value":"-34.43" + } + }, + { + "id":"51e905b1-2001-4bbf-b9f3-9d698de63e94", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T14:50:24.418Z", + "completed":"2016-04-05T14:50:24.418Z", + "new_balance":"8662.43", + "value":"-54.84" + } + }, + { + "id":"489e894f-beb3-4c1a-a066-31e118afbbf8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T16:36:44.340Z", + "completed":"2016-04-05T16:36:44.340Z", + "new_balance":"8655.85", + "value":"-6.58" + } + }, + { + "id":"96880d46-d2c3-4928-aeea-f78471470bf7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T22:18:30.163Z", + "completed":"2016-04-05T22:18:30.163Z", + "new_balance":"8643.92", + "value":"-11.93" + } + }, + { + "id":"34c978b1-7f28-4d5e-ab89-1eac821f1455", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T14:25:24.424Z", + "completed":"2016-04-08T14:25:24.424Z", + "new_balance":"8546.00", + "value":"-97.92" + } + }, + { + "id":"ce2456a1-6ef1-4f3c-b5bd-f70abefda539", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T21:31:15.509Z", + "completed":"2016-04-10T21:31:15.509Z", + "new_balance":"8489.87", + "value":"-56.13" + } + }, + { + "id":"3cb39dab-ab24-456c-843d-b9a25108c5fd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T09:05:44.128Z", + "completed":"2016-04-11T09:05:44.128Z", + "new_balance":"8408.66", + "value":"-81.21" + } + }, + { + "id":"a27f4e60-0c73-4848-a570-dfa79f8f4765", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T20:42:10.893Z", + "completed":"2016-04-11T20:42:10.893Z", + "new_balance":"8381.21", + "value":"-27.45" + } + }, + { + "id":"f26b7859-f667-4ff3-92f3-4f99c51d9c8f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T09:47:23.086Z", + "completed":"2016-04-13T09:47:23.086Z", + "new_balance":"8353.23", + "value":"-27.98" + } + }, + { + "id":"f86d93a0-d508-44af-8d9f-fa8c88228ec1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T15:25:45.898Z", + "completed":"2016-04-18T15:25:45.898Z", + "new_balance":"10703.44", + "value":"2350.21" + } + }, + { + "id":"c584da94-fbf7-4597-a928-32abc7f8cdc9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T16:14:33.206Z", + "completed":"2016-04-25T16:14:33.206Z", + "new_balance":"10386.23", + "value":"-317.21" + } + }, + { + "id":"1e427024-d261-4be2-b25e-313dc171dbcc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T07:00:25.455Z", + "completed":"2016-05-02T07:00:25.455Z", + "new_balance":"10351.80", + "value":"-34.43" + } + }, + { + "id":"873c2750-aa56-4225-88a5-ad85777203e9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T17:37:31.548Z", + "completed":"2016-05-02T17:37:31.548Z", + "new_balance":"10304.90", + "value":"-46.90" + } + }, + { + "id":"714fdd6f-89f2-4e06-9f13-c08310fdf56c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T18:13:50.029Z", + "completed":"2016-05-02T18:13:50.029Z", + "new_balance":"10270.47", + "value":"-34.43" + } + }, + { + "id":"21fa8e06-dbf2-4860-889e-772e7ae3377a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T23:14:40.489Z", + "completed":"2016-05-02T23:14:40.489Z", + "new_balance":"10165.75", + "value":"-104.72" + } + }, + { + "id":"f1820e55-5e35-4756-8ccc-33f5c2af642b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T05:30:47.464Z", + "completed":"2016-05-04T05:30:47.464Z", + "new_balance":"10084.54", + "value":"-81.21" + } + }, + { + "id":"fcce3906-ff72-4997-a27d-c6530077dcec", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T13:11:23.773Z", + "completed":"2016-05-04T13:11:23.773Z", + "new_balance":"10077.96", + "value":"-6.58" + } + }, + { + "id":"77c6c733-9940-48db-b961-eb1a346b5db5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T09:28:56.817Z", + "completed":"2016-05-06T09:28:56.817Z", + "new_balance":"9997.75", + "value":"-80.21" + } + }, + { + "id":"2a6c5100-4ba2-4a67-ab5a-25b62ef13c40", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T13:06:48.288Z", + "completed":"2016-05-07T13:06:48.288Z", + "new_balance":"9903.42", + "value":"-94.33" + } + }, + { + "id":"01f594a2-6f46-4cf1-aa25-5493576487c7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T17:00:21.055Z", + "completed":"2016-05-07T17:00:21.055Z", + "new_balance":"9868.91", + "value":"-34.51" + } + }, + { + "id":"28514e11-48f4-4123-b41b-ed8da6bc077e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T10:22:47.514Z", + "completed":"2016-05-09T10:22:47.514Z", + "new_balance":"9856.98", + "value":"-11.93" + } + }, + { + "id":"b5ebb318-9471-4014-bf69-d0bbf96f6039", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T10:34:54.214Z", + "completed":"2016-05-09T10:34:54.214Z", + "new_balance":"9814.03", + "value":"-42.95" + } + }, + { + "id":"cdc625f9-b33b-417f-b43b-e83f07519629", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T01:31:54.968Z", + "completed":"2016-05-13T01:31:54.968Z", + "new_balance":"9785.84", + "value":"-28.19" + } + }, + { + "id":"f5a3fbbb-bdc0-4a99-8644-71af300f7c55", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T10:26:26.944Z", + "completed":"2016-05-13T10:26:26.944Z", + "new_balance":"9751.33", + "value":"-34.51" + } + }, + { + "id":"c82618b9-4f3f-451f-9ed6-5b23b816c188", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T18:44:36.414Z", + "completed":"2016-05-13T18:44:36.414Z", + "new_balance":"9744.75", + "value":"-6.58" + } + }, + { + "id":"05a2c58d-f45b-44f5-89e5-9b45cc28f41c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T18:12:30.026Z", + "completed":"2016-05-14T18:12:30.026Z", + "new_balance":"9663.54", + "value":"-81.21" + } + }, + { + "id":"a7edcc09-fc86-447b-80ef-6b367f34c17b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T23:15:38.116Z", + "completed":"2016-05-14T23:15:38.116Z", + "new_balance":"9598.31", + "value":"-65.23" + } + }, + { + "id":"ce6e69e5-53c5-4b69-8a3c-44fc2452d349", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T01:07:32.852Z", + "completed":"2016-05-15T01:07:32.852Z", + "new_balance":"9570.33", + "value":"-27.98" + } + }, + { + "id":"b111ba08-e6df-414e-ab21-7ed703a82a99", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T10:24:19.208Z", + "completed":"2016-05-30T10:24:19.208Z", + "new_balance":"9253.12", + "value":"-317.21" + } + }, + { + "id":"f48f7e50-bb37-429e-bc1d-cbc8d640def2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T21:59:18.198Z", + "completed":"2016-05-30T21:59:18.198Z", + "new_balance":"11603.33", + "value":"2350.21" + } + }, + { + "id":"14b5b383-cb7a-4220-88e2-b8b71faf2e27", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T08:49:42.990Z", + "completed":"2016-06-01T08:49:42.990Z", + "new_balance":"11556.43", + "value":"-46.90" + } + }, + { + "id":"86e7d476-3068-4a79-a261-f031629e4835", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T10:18:24.598Z", + "completed":"2016-06-01T10:18:24.598Z", + "new_balance":"11522.00", + "value":"-34.43" + } + }, + { + "id":"f16bd198-739f-474e-889d-fca8d2df2df9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T12:28:49.830Z", + "completed":"2016-06-01T12:28:49.830Z", + "new_balance":"11487.57", + "value":"-34.43" + } + }, + { + "id":"41a4bbef-2f6e-4817-847b-2e3a45d215ec", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T14:34:32.241Z", + "completed":"2016-06-01T14:34:32.241Z", + "new_balance":"11382.85", + "value":"-104.72" + } + }, + { + "id":"55958f65-b872-4807-a975-b0460488ab49", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T10:26:06.728Z", + "completed":"2016-06-04T10:26:06.728Z", + "new_balance":"11319.28", + "value":"-63.57" + } + }, + { + "id":"f8b49c16-260a-46f7-a56f-b4c7b3635f90", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T16:17:02.351Z", + "completed":"2016-06-04T16:17:02.351Z", + "new_balance":"11257.91", + "value":"-61.37" + } + }, + { + "id":"8d9bea55-0e0e-4454-8564-cfefe72cd3d9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T09:13:08.939Z", + "completed":"2016-06-11T09:13:08.939Z", + "new_balance":"11176.12", + "value":"-81.79" + } + }, + { + "id":"01f27e9d-2649-414c-9cd9-e4d1df0ffca9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T12:36:04.421Z", + "completed":"2016-06-11T12:36:04.421Z", + "new_balance":"11087.63", + "value":"-88.49" + } + }, + { + "id":"a15db7f7-07d9-4e27-a5b7-93b9dbaa81fd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T20:27:22.748Z", + "completed":"2016-06-11T20:27:22.748Z", + "new_balance":"11042.16", + "value":"-45.47" + } + }, + { + "id":"f11a74bf-1c41-4178-ace6-39300f6f81e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T10:39:07.942Z", + "completed":"2016-06-12T10:39:07.942Z", + "new_balance":"11035.39", + "value":"-6.77" + } + }, + { + "id":"0e0475aa-3f8b-4b34-9ae3-920a30037d05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T13:43:06.643Z", + "completed":"2016-06-12T13:43:06.643Z", + "new_balance":"10995.75", + "value":"-39.64" + } + }, + { + "id":"a2ea2ea8-90ab-4738-bc0d-3671ab6e943d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T22:52:07.707Z", + "completed":"2016-06-16T22:52:07.707Z", + "new_balance":"10891.56", + "value":"-104.19" + } + }, + { + "id":"6fcdb1ba-b19d-4735-8907-100cb89e8df3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T14:35:09.800Z", + "completed":"2016-06-29T14:35:09.800Z", + "new_balance":"10863.58", + "value":"-27.98" + } + }, + { + "id":"f6be9141-b3d3-4fb7-9cb0-dd2892db4b39", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T00:48:05.708Z", + "completed":"2016-06-30T00:48:05.708Z", + "new_balance":"13213.79", + "value":"2350.21" + } + }, + { + "id":"eddf0cee-75c0-4507-974c-e4743e98b0d9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T11:56:55.792Z", + "completed":"2016-06-30T11:56:55.792Z", + "new_balance":"12896.58", + "value":"-317.21" + } + }, + { + "id":"e0e4275c-d73d-4517-bddc-d74dc71e0e8c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T01:52:01.411Z", + "completed":"2016-07-01T01:52:01.411Z", + "new_balance":"12849.68", + "value":"-46.90" + } + }, + { + "id":"aaef29c2-d4fa-4095-9d4f-5f7c2b3ba368", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T05:11:25.466Z", + "completed":"2016-07-01T05:11:25.466Z", + "new_balance":"12744.96", + "value":"-104.72" + } + }, + { + "id":"56fb514e-9f50-494e-9e68-d5df1e68060c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T11:48:30.021Z", + "completed":"2016-07-01T11:48:30.021Z", + "new_balance":"12710.53", + "value":"-34.43" + } + }, + { + "id":"4bc10081-cd3a-41c3-8a5f-85d5ca7e7251", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T15:12:19.792Z", + "completed":"2016-07-01T15:12:19.792Z", + "new_balance":"12676.10", + "value":"-34.43" + } + }, + { + "id":"e6ad83af-3b36-46d9-87c7-25a4eeb7c0b9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T06:44:54.526Z", + "completed":"2016-07-05T06:44:54.526Z", + "new_balance":"12594.89", + "value":"-81.21" + } + }, + { + "id":"1323db3e-70c2-482a-97c8-0087e49fc530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T16:13:12.059Z", + "completed":"2016-07-05T16:13:12.059Z", + "new_balance":"12527.44", + "value":"-67.45" + } + }, + { + "id":"999c24ab-728b-42ea-a5ef-b3327a365c4e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T23:47:39.875Z", + "completed":"2016-07-08T23:47:39.875Z", + "new_balance":"12516.53", + "value":"-10.91" + } + }, + { + "id":"c35367a0-fbb2-4d5e-8b24-fa1846966162", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T12:18:00.833Z", + "completed":"2016-07-10T12:18:00.833Z", + "new_balance":"12470.07", + "value":"-46.46" + } + }, + { + "id":"abccc5ac-83fb-4fbe-b9b4-8fa5497e1404", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T01:06:15.001Z", + "completed":"2016-07-12T01:06:15.001Z", + "new_balance":"12413.43", + "value":"-56.64" + } + }, + { + "id":"98ae4bad-556e-46f7-b261-0e7584f5e1d8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T04:30:28.368Z", + "completed":"2016-07-12T04:30:28.368Z", + "new_balance":"12379.00", + "value":"-34.43" + } + }, + { + "id":"e5d22450-c935-4a76-9a16-10e6d97ca50e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T15:48:04.850Z", + "completed":"2016-07-13T15:48:04.850Z", + "new_balance":"12375.41", + "value":"-3.59" + } + }, + { + "id":"e075b2de-5b4e-4eff-8ece-0dc22dd2cbfd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T20:17:59.678Z", + "completed":"2016-07-13T20:17:59.678Z", + "new_balance":"12369.76", + "value":"-5.65" + } + }, + { + "id":"f42f6c52-0f58-4f63-a665-00983168b231", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T17:53:19.457Z", + "completed":"2016-07-18T17:53:19.457Z", + "new_balance":"12286.67", + "value":"-83.09" + } + }, + { + "id":"e9ce9ac1-9cca-4cae-8262-17526b72e880", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T11:28:26.385Z", + "completed":"2016-07-20T11:28:26.385Z", + "new_balance":"12205.23", + "value":"-81.44" + } + }, + { + "id":"d267a2f8-5837-4ddf-a0b8-3258afd71761", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T19:26:08.022Z", + "completed":"2016-07-20T19:26:08.022Z", + "new_balance":"12124.02", + "value":"-81.21" + } + }, + { + "id":"08cfbb4e-492d-48a1-96bd-82fd027f6357", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T02:33:17.091Z", + "completed":"2016-07-24T02:33:17.091Z", + "new_balance":"12096.57", + "value":"-27.45" + } + }, + { + "id":"4b6cc53f-f22b-406e-8000-d86c78d67f8d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T00:41:15.062Z", + "completed":"2016-07-29T00:41:15.062Z", + "new_balance":"14446.78", + "value":"2350.21" + } + }, + { + "id":"16295e39-bb71-43b1-8b55-1255726e8f71", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T10:12:14.051Z", + "completed":"2016-07-29T10:12:14.051Z", + "new_balance":"14418.80", + "value":"-27.98" + } + }, + { + "id":"36e3c6da-bb0d-4c88-aa37-22451e456c97", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T14:24:45.234Z", + "completed":"2016-07-30T14:24:45.234Z", + "new_balance":"14101.59", + "value":"-317.21" + } + }, + { + "id":"3880bc66-4c45-47f2-a105-926b563f0913", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T03:10:02.713Z", + "completed":"2016-08-01T03:10:02.713Z", + "new_balance":"13996.87", + "value":"-104.72" + } + }, + { + "id":"deda1cdb-9062-4a25-9d89-64d95b949dc7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T08:50:59.961Z", + "completed":"2016-08-01T08:50:59.961Z", + "new_balance":"13962.44", + "value":"-34.43" + } + }, + { + "id":"7453bf6d-0096-4b4b-820f-21a8e3aa6d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T19:39:42.363Z", + "completed":"2016-08-01T19:39:42.363Z", + "new_balance":"13928.01", + "value":"-34.43" + } + }, + { + "id":"3678cdbc-5329-4c50-b188-54a6d6219eb1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T20:57:53.927Z", + "completed":"2016-08-01T20:57:53.927Z", + "new_balance":"13881.11", + "value":"-46.90" + } + }, + { + "id":"2b4f07ae-5a8c-469c-a557-c9753fcd4f36", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T16:47:21.692Z", + "completed":"2016-08-03T16:47:21.692Z", + "new_balance":"13874.39", + "value":"-6.72" + } + }, + { + "id":"c298905c-dd68-4e2b-9f4c-06107fe89c21", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T19:05:26.646Z", + "completed":"2016-08-04T19:05:26.646Z", + "new_balance":"13793.18", + "value":"-81.21" + } + }, + { + "id":"2598a722-36e6-4844-bf40-d0a3e3810fed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T00:35:50.357Z", + "completed":"2016-08-08T00:35:50.357Z", + "new_balance":"13777.89", + "value":"-15.29" + } + }, + { + "id":"a30d7bff-68bc-4574-9a2c-8c9e8a282c4b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T06:52:13.449Z", + "completed":"2016-08-08T06:52:13.449Z", + "new_balance":"13696.72", + "value":"-81.17" + } + }, + { + "id":"d91f039d-2b3b-4fb9-9bbd-28d726e4995c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:17:36.325Z", + "completed":"2016-08-08T10:17:36.325Z", + "new_balance":"13668.69", + "value":"-28.03" + } + }, + { + "id":"5e0d5116-21cb-49e1-b4e9-08747e8ab6df", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T14:44:41.781Z", + "completed":"2016-08-08T14:44:41.781Z", + "new_balance":"13561.88", + "value":"-106.81" + } + }, + { + "id":"07a760e2-95d9-4ed8-8c89-cab8a62049b5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T15:40:17.207Z", + "completed":"2016-08-09T15:40:17.207Z", + "new_balance":"13518.93", + "value":"-42.95" + } + }, + { + "id":"7eeceffc-8338-4ce2-8a9d-e72f95b5bdce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T04:36:01.301Z", + "completed":"2016-08-14T04:36:01.301Z", + "new_balance":"13492.20", + "value":"-26.73" + } + }, + { + "id":"66919b49-9a21-4287-a407-64f8d54b1c6d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T10:23:29.324Z", + "completed":"2016-08-15T10:23:29.324Z", + "new_balance":"13450.66", + "value":"-41.54" + } + }, + { + "id":"b6c7ccdc-af05-4ec7-b124-ba72b799b61e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T17:34:50.211Z", + "completed":"2016-08-19T17:34:50.211Z", + "new_balance":"13443.67", + "value":"-6.99" + } + }, + { + "id":"e4365aea-81d4-4a84-b502-4fbb12a5fb59", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T15:08:09.657Z", + "completed":"2016-08-22T15:08:09.657Z", + "new_balance":"13393.73", + "value":"-49.94" + } + }, + { + "id":"4b9128ed-7f99-4f4f-9d09-617e3e90ddc1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T18:56:56.098Z", + "completed":"2016-08-26T18:56:56.098Z", + "new_balance":"13312.52", + "value":"-81.21" + } + }, + { + "id":"26f73768-4dfd-4a0e-8ccc-a9fc7b4d2673", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T22:43:59.415Z", + "completed":"2016-08-28T22:43:59.415Z", + "new_balance":"12995.31", + "value":"-317.21" + } + }, + { + "id":"aa636254-4da8-49a5-ba47-3a7208628033", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T09:59:32.916Z", + "completed":"2016-08-29T09:59:32.916Z", + "new_balance":"12967.33", + "value":"-27.98" + } + }, + { + "id":"5de161b6-bce3-479f-8703-f4a68a2444c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T16:40:43.964Z", + "completed":"2016-08-29T16:40:43.964Z", + "new_balance":"15317.54", + "value":"2350.21" + } + }, + { + "id":"93e732ff-bce3-433c-962b-96c3f0467d13", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T11:30:58.551Z", + "completed":"2016-08-30T11:30:58.551Z", + "new_balance":"15000.33", + "value":"-317.21" + } + }, + { + "id":"76bd1f7a-9b8d-42a5-9364-aa08fa6458fe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T07:30:26.967Z", + "completed":"2016-09-01T07:30:26.967Z", + "new_balance":"14953.43", + "value":"-46.90" + } + }, + { + "id":"2bcf3a93-d5df-43f2-8cda-e73f85ab1133", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:07:27.008Z", + "completed":"2016-09-01T17:07:27.008Z", + "new_balance":"14919.00", + "value":"-34.43" + } + }, + { + "id":"6991e182-fa3a-4916-988a-225f39a8f67b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T21:52:47.178Z", + "completed":"2016-09-01T21:52:47.178Z", + "new_balance":"14884.57", + "value":"-34.43" + } + }, + { + "id":"7bb0a62c-05f2-424e-bbf3-83d86d2077c1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T23:13:53.001Z", + "completed":"2016-09-01T23:13:53.001Z", + "new_balance":"14779.85", + "value":"-104.72" + } + }, + { + "id":"9163cf00-afec-412a-a539-783afef7c0e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T05:39:07.173Z", + "completed":"2016-09-09T05:39:07.173Z", + "new_balance":"14716.28", + "value":"-63.57" + } + }, + { + "id":"c375a1da-7c68-4662-a89e-5123950d1428", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T22:10:54.276Z", + "completed":"2016-09-09T22:10:54.276Z", + "new_balance":"14654.91", + "value":"-61.37" + } + }, + { + "id":"9c337f9e-1dad-4b78-8fbc-e2c389b252f4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T22:11:42.706Z", + "completed":"2016-09-17T22:11:42.706Z", + "new_balance":"14566.42", + "value":"-88.49" + } + }, + { + "id":"32651484-36e0-428b-a581-372e7a1976fa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T03:10:31.546Z", + "completed":"2016-09-18T03:10:31.546Z", + "new_balance":"14559.65", + "value":"-6.77" + } + }, + { + "id":"7718f70c-c9a0-411a-a68a-fb8e4c167b3d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T07:06:02.002Z", + "completed":"2016-09-18T07:06:02.002Z", + "new_balance":"14477.86", + "value":"-81.79" + } + }, + { + "id":"fb208005-ac2b-421b-be16-e3f6c0261141", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T09:30:28.734Z", + "completed":"2016-09-18T09:30:28.734Z", + "new_balance":"14432.39", + "value":"-45.47" + } + }, + { + "id":"62365199-39fc-4679-bb2a-cfcd607aba6e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T18:54:14.726Z", + "completed":"2016-09-18T18:54:14.726Z", + "new_balance":"14392.75", + "value":"-39.64" + } + }, + { + "id":"a6ddbf28-f4f8-4bbe-8f46-a95447586cef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T09:14:35.131Z", + "completed":"2016-09-22T09:14:35.131Z", + "new_balance":"14288.56", + "value":"-104.19" + } + }, + { + "id":"7f2f4ada-6c05-4fba-b41e-3ba75c6c8026", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T12:48:47.645Z", + "completed":"2016-09-29T12:48:47.645Z", + "new_balance":"16638.77", + "value":"2350.21" + } + }, + { + "id":"7bc6180d-9b4f-45e0-92e1-90a4f3df0bf3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T14:29:15.796Z", + "completed":"2016-09-29T14:29:15.796Z", + "new_balance":"16610.79", + "value":"-27.98" + } + }, + { + "id":"c28c5acb-771e-48b7-8e26-d2dd245ece05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T00:54:33.047Z", + "completed":"2016-09-30T00:54:33.047Z", + "new_balance":"16293.58", + "value":"-317.21" + } + }, + { + "id":"100a3217-343f-454e-aaf2-768458ca6bbc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T01:49:13.622Z", + "completed":"2016-10-01T01:49:13.622Z", + "new_balance":"16259.15", + "value":"-34.43" + } + }, + { + "id":"2fbb2372-41dc-4db2-b82c-3927129390c1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T03:02:05.458Z", + "completed":"2016-10-01T03:02:05.458Z", + "new_balance":"16212.25", + "value":"-46.90" + } + }, + { + "id":"a8dd1ff3-8e2c-4739-abd3-4126e7d5afef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T15:50:32.040Z", + "completed":"2016-10-01T15:50:32.040Z", + "new_balance":"16177.82", + "value":"-34.43" + } + }, + { + "id":"37a92ed9-ad49-4e91-98ba-6da360e02114", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T16:05:47.366Z", + "completed":"2016-10-01T16:05:47.366Z", + "new_balance":"16073.10", + "value":"-104.72" + } + }, + { + "id":"6a59f225-75b5-4f34-a209-c5dbedf51e9a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T18:09:45.597Z", + "completed":"2016-10-02T18:09:45.597Z", + "new_balance":"15978.77", + "value":"-94.33" + } + }, + { + "id":"cd0befb5-a4b9-4259-8f3e-416c9b744364", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T10:17:28.043Z", + "completed":"2016-10-05T10:17:28.043Z", + "new_balance":"15972.19", + "value":"-6.58" + } + }, + { + "id":"a46424f3-818e-4aec-8b9e-84577e5ab978", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T12:35:05.800Z", + "completed":"2016-10-05T12:35:05.800Z", + "new_balance":"15890.98", + "value":"-81.21" + } + }, + { + "id":"d7432c70-0a75-443b-9d77-1c28c9fd6123", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T15:50:27.920Z", + "completed":"2016-10-05T15:50:27.920Z", + "new_balance":"15879.05", + "value":"-11.93" + } + }, + { + "id":"3535c1d5-49ab-478f-a7e9-ee7c5069f528", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T17:13:55.566Z", + "completed":"2016-10-05T17:13:55.566Z", + "new_balance":"15874.41", + "value":"-4.64" + } + }, + { + "id":"d93519d7-3fbd-4a71-a275-e8708695570e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T17:59:40.153Z", + "completed":"2016-10-05T17:59:40.153Z", + "new_balance":"15819.57", + "value":"-54.84" + } + }, + { + "id":"61eee633-cd75-454a-9802-8ba168416419", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:08:37.214Z", + "completed":"2016-10-05T18:08:37.214Z", + "new_balance":"15785.14", + "value":"-34.43" + } + }, + { + "id":"bfdbbbcb-1291-4ae7-8250-c53223305062", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T19:29:40.771Z", + "completed":"2016-10-05T19:29:40.771Z", + "new_balance":"15743.71", + "value":"-41.43" + } + }, + { + "id":"42bc2e12-e217-4102-9a68-47cd6abbf730", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T11:55:39.941Z", + "completed":"2016-10-09T11:55:39.941Z", + "new_balance":"15645.79", + "value":"-97.92" + } + }, + { + "id":"3b69e6e2-4d3c-4c6b-b705-2823af98a930", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T07:52:27.100Z", + "completed":"2016-10-11T07:52:27.100Z", + "new_balance":"15589.66", + "value":"-56.13" + } + }, + { + "id":"8d0950af-b20b-4c86-8c96-9c6de0ac1990", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T12:25:31.982Z", + "completed":"2016-10-12T12:25:31.982Z", + "new_balance":"15562.21", + "value":"-27.45" + } + }, + { + "id":"5c72d1d8-e675-4d61-a3a0-049e6d18fee4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T15:50:33.116Z", + "completed":"2016-10-12T15:50:33.116Z", + "new_balance":"15481.00", + "value":"-81.21" + } + }, + { + "id":"931a3955-7eb0-4fa0-9a8f-66a5c8cee226", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T04:27:07.583Z", + "completed":"2016-10-20T04:27:07.583Z", + "new_balance":"15453.02", + "value":"-27.98" + } + }, + { + "id":"1b02bd62-07a1-4bfc-8a50-4ac3e3d69c08", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T11:38:18.641Z", + "completed":"2016-10-29T11:38:18.641Z", + "new_balance":"17803.23", + "value":"2350.21" + } + }, + { + "id":"b166da4b-0fac-40f7-91d9-1160206b9364", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T06:09:09.327Z", + "completed":"2016-10-30T06:09:09.327Z", + "new_balance":"17486.02", + "value":"-317.21" + } + }, + { + "id":"600aad27-f8ae-4572-8f86-4c64f0ded7ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T03:48:58.224Z", + "completed":"2016-11-02T03:48:58.224Z", + "new_balance":"17451.59", + "value":"-34.43" + } + }, + { + "id":"e6d6de8d-d76b-432b-97cb-f2d48eaeb9bc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T06:30:46.071Z", + "completed":"2016-11-02T06:30:46.071Z", + "new_balance":"17404.69", + "value":"-46.90" + } + }, + { + "id":"8c205e11-1f70-4003-8ece-20f90eb492d4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T07:49:29.595Z", + "completed":"2016-11-02T07:49:29.595Z", + "new_balance":"17370.26", + "value":"-34.43" + } + }, + { + "id":"1cb8086a-9497-4373-bc31-e165c01a77ae", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T21:46:10.278Z", + "completed":"2016-11-02T21:46:10.278Z", + "new_balance":"17265.54", + "value":"-104.72" + } + }, + { + "id":"db71faad-bcd3-4ab7-8f59-a91260de3b28", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T06:29:13.971Z", + "completed":"2016-11-04T06:29:13.971Z", + "new_balance":"17258.96", + "value":"-6.58" + } + }, + { + "id":"8b3dc528-5aa4-4656-a978-adb26a9e7d4a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T06:37:59.224Z", + "completed":"2016-11-04T06:37:59.224Z", + "new_balance":"17177.75", + "value":"-81.21" + } + }, + { + "id":"4ca4ce96-4e64-40f6-910b-64ee715cfcf0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T22:21:48.686Z", + "completed":"2016-11-06T22:21:48.686Z", + "new_balance":"17097.54", + "value":"-80.21" + } + }, + { + "id":"dc0d73c8-e8ae-46a5-9a2e-ad0d20cb1782", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T02:45:09.261Z", + "completed":"2016-11-07T02:45:09.261Z", + "new_balance":"17063.03", + "value":"-34.51" + } + }, + { + "id":"65bb9e3c-dd99-4a59-91f4-cb9703ca5dd8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T07:52:43.768Z", + "completed":"2016-11-07T07:52:43.768Z", + "new_balance":"16968.70", + "value":"-94.33" + } + }, + { + "id":"4de4fca0-cc5b-4e8c-9841-70d9ae45343b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T00:17:05.319Z", + "completed":"2016-11-09T00:17:05.319Z", + "new_balance":"16925.75", + "value":"-42.95" + } + }, + { + "id":"a5ed9930-48b4-4085-a60a-a6f8db315e67", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T19:48:43.611Z", + "completed":"2016-11-09T19:48:43.611Z", + "new_balance":"16913.82", + "value":"-11.93" + } + }, + { + "id":"9f5f6a65-a84a-46d6-96dc-e1f36c1dfa58", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T09:47:02.848Z", + "completed":"2016-11-13T09:47:02.848Z", + "new_balance":"16885.63", + "value":"-28.19" + } + }, + { + "id":"6d697e13-e434-47be-b12a-c6c1744cba34", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T11:14:17.453Z", + "completed":"2016-11-13T11:14:17.453Z", + "new_balance":"16879.05", + "value":"-6.58" + } + }, + { + "id":"a6d32fe9-58ad-4e88-886e-080cc7d2089e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T20:11:04.864Z", + "completed":"2016-11-13T20:11:04.864Z", + "new_balance":"16844.54", + "value":"-34.51" + } + }, + { + "id":"b17512e8-eb15-4687-8a85-2a6bf998af42", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T02:41:16.978Z", + "completed":"2016-11-14T02:41:16.978Z", + "new_balance":"16779.31", + "value":"-65.23" + } + }, + { + "id":"88b30a1c-f76b-4009-a994-d927ba5a89ff", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T02:43:26.205Z", + "completed":"2016-11-14T02:43:26.205Z", + "new_balance":"16698.10", + "value":"-81.21" + } + }, + { + "id":"d447cffd-0ee3-41be-8eac-f4b7bf2db0df", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T23:35:07.836Z", + "completed":"2016-11-15T23:35:07.836Z", + "new_balance":"16670.12", + "value":"-27.98" + } + }, + { + "id":"fd61c37f-47be-4561-a57d-3039968fc9b2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T10:04:53.782Z", + "completed":"2016-11-30T10:04:53.782Z", + "new_balance":"16352.91", + "value":"-317.21" + } + }, + { + "id":"c31367ea-d9a2-4f3f-abcd-6cce11fad96e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T10:45:23.391Z", + "completed":"2016-11-30T10:45:23.391Z", + "new_balance":"18703.12", + "value":"2350.21" + } + }, + { + "id":"33c9a524-9646-4734-b137-74fffb3d3514", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T00:29:11.288Z", + "completed":"2016-12-01T00:29:11.288Z", + "new_balance":"18598.40", + "value":"-104.72" + } + }, + { + "id":"77482bd6-cdf5-4aef-9796-8531e0e8c902", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T03:12:44.622Z", + "completed":"2016-12-01T03:12:44.622Z", + "new_balance":"18563.97", + "value":"-34.43" + } + }, + { + "id":"cd8df943-b7cb-4439-86ad-c00a908863cd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T13:39:42.101Z", + "completed":"2016-12-01T13:39:42.101Z", + "new_balance":"18517.07", + "value":"-46.90" + } + }, + { + "id":"3ce6ea3d-971e-4db5-a163-d2ebb9ba03ac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T22:51:22.484Z", + "completed":"2016-12-01T22:51:22.484Z", + "new_balance":"18482.64", + "value":"-34.43" + } + }, + { + "id":"e1908b85-cebc-4eb7-b3a4-1b90cab644a5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T00:19:37.788Z", + "completed":"2016-12-04T00:19:37.788Z", + "new_balance":"18421.27", + "value":"-61.37" + } + }, + { + "id":"e58fd08b-6ce4-42cb-b2ac-2e7ed8e8715b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T10:52:11.908Z", + "completed":"2016-12-04T10:52:11.908Z", + "new_balance":"18357.70", + "value":"-63.57" + } + }, + { + "id":"8db1a697-34bd-4963-ab53-77f07e1c5cd0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T06:13:16.800Z", + "completed":"2016-12-11T06:13:16.800Z", + "new_balance":"18269.21", + "value":"-88.49" + } + }, + { + "id":"2c776f63-08a9-4481-9f42-702107c2e14d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:55:16.593Z", + "completed":"2016-12-11T06:55:16.593Z", + "new_balance":"18187.42", + "value":"-81.79" + } + }, + { + "id":"5ad1d3bd-68e9-4d36-a2df-a436e69cb088", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T07:12:33.532Z", + "completed":"2016-12-11T07:12:33.532Z", + "new_balance":"18141.95", + "value":"-45.47" + } + }, + { + "id":"42fdbe40-3171-4134-bd1b-07ba55732f7c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T18:40:10.094Z", + "completed":"2016-12-12T18:40:10.094Z", + "new_balance":"18102.31", + "value":"-39.64" + } + }, + { + "id":"7d35d393-2bda-4592-85ff-11067c5a5e47", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T19:39:08.585Z", + "completed":"2016-12-12T19:39:08.585Z", + "new_balance":"18095.54", + "value":"-6.77" + } + }, + { + "id":"7920a234-5d85-44fe-b1b7-97298bdcc2c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T23:30:37.216Z", + "completed":"2016-12-16T23:30:37.216Z", + "new_balance":"17991.35", + "value":"-104.19" + } + }, + { + "id":"7bb95280-09be-44ce-9bf5-b85a7ba0cde6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T09:29:46.076Z", + "completed":"2016-12-29T09:29:46.076Z", + "new_balance":"17963.37", + "value":"-27.98" + } + }, + { + "id":"2d47b536-3b67-41c6-b21e-6c78ac897a53", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T02:20:39.837Z", + "completed":"2016-12-30T02:20:39.837Z", + "new_balance":"20313.58", + "value":"2350.21" + } + }, + { + "id":"4eb4a2a5-57e3-4728-acea-d9a11c095368", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T05:25:18.112Z", + "completed":"2016-12-30T05:25:18.112Z", + "new_balance":"19996.37", + "value":"-317.21" + } + }, + { + "id":"155e6ab0-fa47-4fde-90d8-a22505b88bc6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T09:41:43.028Z", + "completed":"2017-01-01T09:41:43.028Z", + "new_balance":"19961.94", + "value":"-34.43" + } + }, + { + "id":"3b399933-1357-4bc4-a925-799ce381c928", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T10:01:45.222Z", + "completed":"2017-01-01T10:01:45.222Z", + "new_balance":"19857.22", + "value":"-104.72" + } + }, + { + "id":"ccbe6a42-bef2-4bc8-8ec7-17f375b2d29e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T15:21:03.039Z", + "completed":"2017-01-01T15:21:03.039Z", + "new_balance":"19822.79", + "value":"-34.43" + } + }, + { + "id":"5d0089d4-0ba7-4859-ba73-40342f4b5a5c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T23:07:59.471Z", + "completed":"2017-01-01T23:07:59.471Z", + "new_balance":"19775.89", + "value":"-46.90" + } + }, + { + "id":"d0faa6be-ce14-4808-b9ed-41c8449c5530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T08:55:38.159Z", + "completed":"2017-01-05T08:55:38.159Z", + "new_balance":"19694.68", + "value":"-81.21" + } + }, + { + "id":"a7966097-2a6f-4b9a-9c56-d3d6928deded", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T18:03:33.481Z", + "completed":"2017-01-05T18:03:33.481Z", + "new_balance":"19627.23", + "value":"-67.45" + } + }, + { + "id":"6d5539b8-d42c-4477-ad90-80571c9f9c85", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T06:37:25.345Z", + "completed":"2017-01-08T06:37:25.345Z", + "new_balance":"19616.32", + "value":"-10.91" + } + }, + { + "id":"47363558-e7a9-44c4-86ce-2ee3010cd7cc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T10:07:06.100Z", + "completed":"2017-01-10T10:07:06.100Z", + "new_balance":"19569.86", + "value":"-46.46" + } + }, + { + "id":"871f8e7c-c0ad-4a2f-b512-a8616e6b5648", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T01:40:53.328Z", + "completed":"2017-01-11T01:40:53.328Z", + "new_balance":"19513.22", + "value":"-56.64" + } + }, + { + "id":"d2e25537-fa4d-41f1-be71-981517abf74f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T15:59:28.963Z", + "completed":"2017-01-12T15:59:28.963Z", + "new_balance":"19478.79", + "value":"-34.43" + } + }, + { + "id":"02ad2ffd-00bd-4cf0-9ef6-a3a268f4d3f9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T02:08:17.435Z", + "completed":"2017-01-13T02:08:17.435Z", + "new_balance":"19475.20", + "value":"-3.59" + } + }, + { + "id":"fdeb98f5-8d9c-4df8-a793-b4d8dfd5d857", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T18:27:19.534Z", + "completed":"2017-01-13T18:27:19.534Z", + "new_balance":"19469.55", + "value":"-5.65" + } + }, + { + "id":"c2b01a9b-1ed4-4467-99f6-d3832a290eaa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T11:35:06.470Z", + "completed":"2017-01-16T11:35:06.470Z", + "new_balance":"19386.46", + "value":"-83.09" + } + }, + { + "id":"7cfafaa1-87f4-4b96-b494-7ebd20ad83fa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T05:46:39.134Z", + "completed":"2017-01-19T05:46:39.134Z", + "new_balance":"19305.25", + "value":"-81.21" + } + }, + { + "id":"a537540e-618e-4acb-8b11-9e81a5e5d993", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T10:54:59.300Z", + "completed":"2017-01-19T10:54:59.300Z", + "new_balance":"19223.81", + "value":"-81.44" + } + }, + { + "id":"83fe2d0b-9879-4c4e-9b98-1c722de6fa4b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T15:01:24.760Z", + "completed":"2017-01-24T15:01:24.760Z", + "new_balance":"19196.36", + "value":"-27.45" + } + }, + { + "id":"b6dd9e83-53f4-4904-8c39-70d50fbdbcb2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T05:49:31.082Z", + "completed":"2017-01-27T05:49:31.082Z", + "new_balance":"21546.57", + "value":"2350.21" + } + }, + { + "id":"83219123-8da1-4b69-bad0-9d31b1cc5bce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T18:56:17.968Z", + "completed":"2017-01-27T18:56:17.968Z", + "new_balance":"21518.59", + "value":"-27.98" + } + }, + { + "id":"e5ba3f46-0d10-4f1b-9e2b-40183d4072a0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T13:45:10.471Z", + "completed":"2017-01-31T13:45:10.471Z", + "new_balance":"21201.38", + "value":"-317.21" + } + }, + { + "id":"82383f40-0be8-4129-a0b9-c0d5e4a138fb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T04:11:44.480Z", + "completed":"2017-02-01T04:11:44.480Z", + "new_balance":"21154.48", + "value":"-46.90" + } + }, + { + "id":"296f6ab3-d5bf-4859-a89a-6cd9683fa127", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T05:05:53.503Z", + "completed":"2017-02-01T05:05:53.503Z", + "new_balance":"21049.76", + "value":"-104.72" + } + }, + { + "id":"79d58255-f596-48b4-965c-c0c88fbccc72", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T06:32:12.439Z", + "completed":"2017-02-01T06:32:12.439Z", + "new_balance":"21015.33", + "value":"-34.43" + } + }, + { + "id":"cfecc897-dcdf-4ff8-a9e8-5f4ebc2bb691", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T14:28:05.007Z", + "completed":"2017-02-01T14:28:05.007Z", + "new_balance":"20980.90", + "value":"-34.43" + } + }, + { + "id":"af5576e5-1839-4e59-a7dc-1e0592472ac5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T15:04:11.634Z", + "completed":"2017-02-03T15:04:11.634Z", + "new_balance":"20974.18", + "value":"-6.72" + } + }, + { + "id":"005b8538-4b7a-4f7d-afa4-1354b9b84700", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T17:19:06.635Z", + "completed":"2017-02-04T17:19:06.635Z", + "new_balance":"20892.97", + "value":"-81.21" + } + }, + { + "id":"494f55ad-6eba-4eee-ba7a-50b0f2150c0c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T11:38:00.688Z", + "completed":"2017-02-06T11:38:00.688Z", + "new_balance":"20786.16", + "value":"-106.81" + } + }, + { + "id":"ba8ef6f3-9196-4cdb-9079-70f23684f26a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T12:26:15.421Z", + "completed":"2017-02-06T12:26:15.421Z", + "new_balance":"20704.99", + "value":"-81.17" + } + }, + { + "id":"be7ae1ea-3d58-42d8-8206-f0d767ae4dc1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T22:04:21.858Z", + "completed":"2017-02-07T22:04:21.858Z", + "new_balance":"20676.96", + "value":"-28.03" + } + }, + { + "id":"a62bf4a7-1f6e-4d30-b237-b8a1646441b1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T09:08:19.788Z", + "completed":"2017-02-08T09:08:19.788Z", + "new_balance":"20661.67", + "value":"-15.29" + } + }, + { + "id":"59fbd311-a591-4a64-9eb1-8c41f5a09e02", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T23:26:24.082Z", + "completed":"2017-02-09T23:26:24.082Z", + "new_balance":"20618.72", + "value":"-42.95" + } + }, + { + "id":"96bc0361-47a5-429a-8e81-7fc854d37311", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T08:01:07.039Z", + "completed":"2017-02-11T08:01:07.039Z", + "new_balance":"20591.99", + "value":"-26.73" + } + }, + { + "id":"57dde1b5-f675-4faa-9c96-840a234f21b4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T04:41:28.230Z", + "completed":"2017-02-13T04:41:28.230Z", + "new_balance":"20550.45", + "value":"-41.54" + } + }, + { + "id":"1ef37af1-4a94-4378-bab9-95fad03f3769", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T02:05:19.337Z", + "completed":"2017-02-17T02:05:19.337Z", + "new_balance":"20543.46", + "value":"-6.99" + } + }, + { + "id":"ea599892-e504-4da6-912c-e373b2685a63", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T12:16:12.328Z", + "completed":"2017-02-19T12:16:12.328Z", + "new_balance":"20493.52", + "value":"-49.94" + } + }, + { + "id":"507f53fb-3b19-4252-82bc-751b3884a16f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T21:30:04.241Z", + "completed":"2017-02-21T21:30:04.241Z", + "new_balance":"20412.31", + "value":"-81.21" + } + }, + { + "id":"f47dcc89-0a66-4134-b8bc-69e1c8b04f46", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T20:55:18.726Z", + "completed":"2017-02-24T20:55:18.726Z", + "new_balance":"20384.33", + "value":"-27.98" + } + }, + { + "id":"5f455be0-01fb-4ab3-bd86-667979dd04e9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T04:40:12.659Z", + "completed":"2017-02-26T04:40:12.659Z", + "new_balance":"22734.54", + "value":"2350.21" + } + }, + { + "id":"0fe63e64-b040-49e8-8e89-015a0a589a61", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T11:16:18.001Z", + "completed":"2017-03-01T11:16:18.001Z", + "new_balance":"22629.82", + "value":"-104.72" + } + }, + { + "id":"00411dba-5b5d-4425-832a-812b8aa7f530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T18:50:03.958Z", + "completed":"2017-03-01T18:50:03.958Z", + "new_balance":"22595.39", + "value":"-34.43" + } + }, + { + "id":"14fdc7ef-596f-471d-b82b-3d273501a6b7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T19:30:09.185Z", + "completed":"2017-03-01T19:30:09.185Z", + "new_balance":"22548.49", + "value":"-46.90" + } + }, + { + "id":"39bc57da-6976-42a1-b121-55be604713a2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T23:21:35.124Z", + "completed":"2017-03-01T23:21:35.124Z", + "new_balance":"22514.06", + "value":"-34.43" + } + }, + { + "id":"a86203fa-06dc-4fe4-8195-80c86de11c7f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T01:43:12.025Z", + "completed":"2017-03-09T01:43:12.025Z", + "new_balance":"22450.49", + "value":"-63.57" + } + }, + { + "id":"1ff890bc-4e40-4bfd-945f-6a401a5b8b76", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:17:34.897Z", + "completed":"2017-03-09T10:17:34.897Z", + "new_balance":"22389.12", + "value":"-61.37" + } + }, + { + "id":"af1d43fb-30f6-4031-9c88-f79b56e5ba81", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T16:44:14.151Z", + "completed":"2017-03-17T16:44:14.151Z", + "new_balance":"22300.63", + "value":"-88.49" + } + }, + { + "id":"8e4c40e6-f456-46fe-a890-cb97121ac94f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T02:29:17.805Z", + "completed":"2017-03-18T02:29:17.805Z", + "new_balance":"22218.84", + "value":"-81.79" + } + }, + { + "id":"25a79a02-14d9-4291-9196-fecf3f08eb03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T05:15:00.117Z", + "completed":"2017-03-18T05:15:00.117Z", + "new_balance":"22179.20", + "value":"-39.64" + } + }, + { + "id":"4b6394cc-c5a6-4c26-a472-eac9a2c05df1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T10:34:07.924Z", + "completed":"2017-03-18T10:34:07.924Z", + "new_balance":"22172.43", + "value":"-6.77" + } + }, + { + "id":"c47b06fe-f3a1-44b8-9ae3-527c843b55d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:35:31.489Z", + "completed":"2017-03-18T14:35:31.489Z", + "new_balance":"22126.96", + "value":"-45.47" + } + }, + { + "id":"9d690315-42ae-46e9-b8b4-9b527c8ea165", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T02:16:46.611Z", + "completed":"2017-03-22T02:16:46.611Z", + "new_balance":"22022.77", + "value":"-104.19" + } + }, + { + "id":"0277bea4-266a-443d-9736-a50bed876cfe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T03:35:19.091Z", + "completed":"2017-03-29T03:35:19.091Z", + "new_balance":"24372.98", + "value":"2350.21" + } + }, + { + "id":"907dfda3-60f8-477a-b8be-3724255a3667", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T14:54:23.375Z", + "completed":"2017-03-29T14:54:23.375Z", + "new_balance":"24345.00", + "value":"-27.98" + } + }, + { + "id":"10ea2412-fb7d-4d9a-96fc-e681c42cdc51", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T01:18:18.303Z", + "completed":"2017-03-31T01:18:18.303Z", + "new_balance":"24027.79", + "value":"-317.21" + } + }, + { + "id":"d894f1f3-cb74-4da4-9ff9-2653b767da3c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T04:22:55.560Z", + "completed":"2017-04-01T04:22:55.560Z", + "new_balance":"23993.36", + "value":"-34.43" + } + }, + { + "id":"f8557eb1-73ac-4d6c-b0d0-e05c16ca2f33", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T14:13:41.954Z", + "completed":"2017-04-01T14:13:41.954Z", + "new_balance":"23946.46", + "value":"-46.90" + } + }, + { + "id":"5ce61967-2c94-40dc-956f-c4245b23960e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T14:15:43.237Z", + "completed":"2017-04-01T14:15:43.237Z", + "new_balance":"23841.74", + "value":"-104.72" + } + }, + { + "id":"5660c874-0511-43a1-a557-6181471587e1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T16:16:45.752Z", + "completed":"2017-04-01T16:16:45.752Z", + "new_balance":"23807.31", + "value":"-34.43" + } + }, + { + "id":"efecc0da-e787-4b65-b078-908b82bbb338", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T17:13:59.077Z", + "completed":"2017-04-02T17:13:59.077Z", + "new_balance":"23712.98", + "value":"-94.33" + } + }, + { + "id":"f738c507-3ea2-4e44-97e3-0ae53fbc0436", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T03:20:10.444Z", + "completed":"2017-04-05T03:20:10.444Z", + "new_balance":"23706.40", + "value":"-6.58" + } + }, + { + "id":"d7c62127-f3d8-4fc9-8df1-a19fc1125665", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T03:59:48.545Z", + "completed":"2017-04-05T03:59:48.545Z", + "new_balance":"23625.19", + "value":"-81.21" + } + }, + { + "id":"49c82e9d-43ce-4595-8664-2fe9d78d9e73", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T04:30:02.524Z", + "completed":"2017-04-05T04:30:02.524Z", + "new_balance":"23570.35", + "value":"-54.84" + } + }, + { + "id":"62704b5d-11d1-43ae-beb9-974829d6d07f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T06:27:30.427Z", + "completed":"2017-04-05T06:27:30.427Z", + "new_balance":"23558.42", + "value":"-11.93" + } + }, + { + "id":"711dfdc7-ba80-4ef2-893e-59148b530946", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T10:11:34.401Z", + "completed":"2017-04-05T10:11:34.401Z", + "new_balance":"23523.99", + "value":"-34.43" + } + }, + { + "id":"cf569389-7e5b-4160-8ae2-22c76e9b2ec3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T13:24:38.731Z", + "completed":"2017-04-05T13:24:38.731Z", + "new_balance":"23482.56", + "value":"-41.43" + } + }, + { + "id":"1d0c3a53-7d83-4a1e-bda4-05cce49978fe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T22:40:17.784Z", + "completed":"2017-04-05T22:40:17.784Z", + "new_balance":"23477.92", + "value":"-4.64" + } + }, + { + "id":"945a86b3-3fd5-418f-ab18-15860e954ce3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T12:46:35.433Z", + "completed":"2017-04-08T12:46:35.433Z", + "new_balance":"23380.00", + "value":"-97.92" + } + }, + { + "id":"4b8fbb3e-79c0-4b80-b9f1-853228dba3ea", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T22:12:47.516Z", + "completed":"2017-04-10T22:12:47.516Z", + "new_balance":"23323.87", + "value":"-56.13" + } + }, + { + "id":"cff3a41a-3de8-4e4c-8367-a1fffe9599b8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T00:41:48.646Z", + "completed":"2017-04-11T00:41:48.646Z", + "new_balance":"23296.42", + "value":"-27.45" + } + }, + { + "id":"ff2091a2-990d-494f-ae8c-dd14439d8430", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T23:48:19.245Z", + "completed":"2017-04-11T23:48:19.245Z", + "new_balance":"23215.21", + "value":"-81.21" + } + }, + { + "id":"fbfdba64-3ea9-42e0-9464-9943adacb436", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T19:32:14.034Z", + "completed":"2017-04-13T19:32:14.034Z", + "new_balance":"23187.23", + "value":"-27.98" + } + }, + { + "id":"2b1f5103-e16f-439f-a079-aafb11fc6bc3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T18:11:50.005Z", + "completed":"2017-04-18T18:11:50.005Z", + "new_balance":"25537.44", + "value":"2350.21" + } + }, + { + "id":"7222446f-89e9-452d-90a0-99719db07a08", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T12:15:42.253Z", + "completed":"2017-04-25T12:15:42.253Z", + "new_balance":"25220.23", + "value":"-317.21" + } + }, + { + "id":"8b1fa2ed-ab8d-446b-b3e9-9fd127cc41c4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T02:06:15.956Z", + "completed":"2017-05-02T02:06:15.956Z", + "new_balance":"25185.80", + "value":"-34.43" + } + }, + { + "id":"e2a87ecb-7385-41fb-a001-3f0ef5ba90c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T07:01:22.803Z", + "completed":"2017-05-02T07:01:22.803Z", + "new_balance":"25138.90", + "value":"-46.90" + } + }, + { + "id":"ecef4ec0-bebc-47a2-9afe-97f2830ea8c3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T07:56:30.936Z", + "completed":"2017-05-02T07:56:30.936Z", + "new_balance":"25034.18", + "value":"-104.72" + } + }, + { + "id":"f5fef037-5900-4def-871f-b2161ec46b86", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T22:20:25.992Z", + "completed":"2017-05-02T22:20:25.992Z", + "new_balance":"24999.75", + "value":"-34.43" + } + }, + { + "id":"54cc398e-d5a1-42b1-94c2-d7303f57d0cd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T16:11:29.504Z", + "completed":"2017-05-04T16:11:29.504Z", + "new_balance":"24918.54", + "value":"-81.21" + } + }, + { + "id":"a8c05546-aa8a-4ff5-b817-b2bd0e26545a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T18:15:20.405Z", + "completed":"2017-05-04T18:15:20.405Z", + "new_balance":"24911.96", + "value":"-6.58" + } + }, + { + "id":"103535f1-1898-4893-b24e-8393ea5d7299", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T04:21:06.881Z", + "completed":"2017-05-06T04:21:06.881Z", + "new_balance":"24831.75", + "value":"-80.21" + } + }, + { + "id":"5ba553e7-08d8-4e8f-938c-ce465753027e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T07:00:40.444Z", + "completed":"2017-05-07T07:00:40.444Z", + "new_balance":"24797.24", + "value":"-34.51" + } + }, + { + "id":"c65ca5ed-c009-4996-bed2-07a5b0a1852f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T12:41:29.762Z", + "completed":"2017-05-07T12:41:29.762Z", + "new_balance":"24702.91", + "value":"-94.33" + } + }, + { + "id":"4421b205-8429-4c07-913f-3cba43738bb8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T07:42:24.708Z", + "completed":"2017-05-09T07:42:24.708Z", + "new_balance":"24690.98", + "value":"-11.93" + } + }, + { + "id":"d46f9334-d327-43ea-ba06-175c50a11f6a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T12:30:32.524Z", + "completed":"2017-05-09T12:30:32.524Z", + "new_balance":"24648.03", + "value":"-42.95" + } + }, + { + "id":"3c5bd802-0d73-42fc-a598-5a0e7a88e98b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T03:20:14.642Z", + "completed":"2017-05-13T03:20:14.642Z", + "new_balance":"24641.45", + "value":"-6.58" + } + }, + { + "id":"6d18cb98-dd76-4752-a4a9-5b136bf00461", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T15:20:37.668Z", + "completed":"2017-05-13T15:20:37.668Z", + "new_balance":"24613.26", + "value":"-28.19" + } + }, + { + "id":"a38e77dd-be1c-459e-a030-f7217adfc9d6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T22:32:55.241Z", + "completed":"2017-05-13T22:32:55.241Z", + "new_balance":"24578.75", + "value":"-34.51" + } + }, + { + "id":"b7fd49de-2c87-4e3f-bcd2-ee43416d167b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T09:13:47.019Z", + "completed":"2017-05-14T09:13:47.019Z", + "new_balance":"24513.52", + "value":"-65.23" + } + }, + { + "id":"bdaaf724-b2d9-4998-be7f-7fbc82a256e1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T20:25:57.073Z", + "completed":"2017-05-14T20:25:57.073Z", + "new_balance":"24432.31", + "value":"-81.21" + } + }, + { + "id":"12fe5737-0d6b-436d-aeb4-b825549c7cff", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T18:46:15.923Z", + "completed":"2017-05-15T18:46:15.923Z", + "new_balance":"24404.33", + "value":"-27.98" + } + }, + { + "id":"fc0853fa-a1b6-4522-b26b-7ecb3430b4e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T05:29:08.415Z", + "completed":"2017-05-30T05:29:08.415Z", + "new_balance":"24087.12", + "value":"-317.21" + } + }, + { + "id":"c59bf404-298a-4dc6-85c5-07096af10f82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T08:45:59.302Z", + "completed":"2017-05-30T08:45:59.302Z", + "new_balance":"26437.33", + "value":"2350.21" + } + }, + { + "id":"bfb2e269-3fb8-4349-a594-899f8bc91fd7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T05:25:22.184Z", + "completed":"2017-06-01T05:25:22.184Z", + "new_balance":"26390.43", + "value":"-46.90" + } + }, + { + "id":"f5cf92dc-4151-484b-8832-86396f14d2c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T14:21:11.673Z", + "completed":"2017-06-01T14:21:11.673Z", + "new_balance":"26356.00", + "value":"-34.43" + } + }, + { + "id":"96ba1395-76fa-4f30-a169-6df8aabcd528", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T16:31:26.057Z", + "completed":"2017-06-01T16:31:26.057Z", + "new_balance":"26321.57", + "value":"-34.43" + } + }, + { + "id":"51c41dac-ee78-47cd-a8de-77b27dc469dd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T19:09:16.844Z", + "completed":"2017-06-01T19:09:16.844Z", + "new_balance":"26216.85", + "value":"-104.72" + } + }, + { + "id":"7717c343-7477-4ed6-9b93-2a0a522e7b50", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T10:00:33.508Z", + "completed":"2017-06-04T10:00:33.508Z", + "new_balance":"26155.48", + "value":"-61.37" + } + }, + { + "id":"bcb0c66a-e73b-4e2c-aeda-8f3e511e4482", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T17:41:11.607Z", + "completed":"2017-06-04T17:41:11.607Z", + "new_balance":"26091.91", + "value":"-63.57" + } + }, + { + "id":"97855a6d-680d-4c8e-bfb3-6b234835b47f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T11:54:36.696Z", + "completed":"2017-06-11T11:54:36.696Z", + "new_balance":"26010.12", + "value":"-81.79" + } + }, + { + "id":"e102bb93-5f0b-46ad-b897-39b79b3e4bb7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:01:38.621Z", + "completed":"2017-06-11T14:01:38.621Z", + "new_balance":"25921.63", + "value":"-88.49" + } + }, + { + "id":"5c346cb5-4c64-47c6-a542-4f05f314a4b1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T18:20:51.136Z", + "completed":"2017-06-11T18:20:51.136Z", + "new_balance":"25876.16", + "value":"-45.47" + } + }, + { + "id":"35e6f90b-cbb6-4435-97f3-8573ceafccfe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T04:28:58.760Z", + "completed":"2017-06-12T04:28:58.760Z", + "new_balance":"25869.39", + "value":"-6.77" + } + }, + { + "id":"8748c7dd-b95d-446d-9ba7-62a1f87f9afb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T23:26:12.452Z", + "completed":"2017-06-12T23:26:12.452Z", + "new_balance":"25829.75", + "value":"-39.64" + } + }, + { + "id":"1c1d5b5b-d51c-42cf-88a8-b4497665106f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T23:16:04.741Z", + "completed":"2017-06-16T23:16:04.741Z", + "new_balance":"25725.56", + "value":"-104.19" + } + }, + { + "id":"128e0d36-1bc9-445f-b42f-75344c3d1297", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T20:42:54.235Z", + "completed":"2017-06-29T20:42:54.235Z", + "new_balance":"25697.58", + "value":"-27.98" + } + }, + { + "id":"821e2727-f756-45b9-b378-de68c45d967a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:19:23.003Z", + "completed":"2017-06-30T01:19:23.003Z", + "new_balance":"28047.79", + "value":"2350.21" + } + }, + { + "id":"c29afe3f-6e7b-4776-b8fb-69dc327d924b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T17:26:41.701Z", + "completed":"2017-06-30T17:26:41.701Z", + "new_balance":"27730.58", + "value":"-317.21" + } + }, + { + "id":"89814a7c-d270-4746-b5e8-94cfdeb0195d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T00:16:18.048Z", + "completed":"2017-07-01T00:16:18.048Z", + "new_balance":"27625.86", + "value":"-104.72" + } + }, + { + "id":"f51f7a4c-f1fb-4199-9963-231ca0dc122d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T03:56:33.496Z", + "completed":"2017-07-01T03:56:33.496Z", + "new_balance":"27591.43", + "value":"-34.43" + } + }, + { + "id":"f2f9e7b3-15b9-47d1-904c-f316c6f49fd5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T10:26:35.456Z", + "completed":"2017-07-01T10:26:35.456Z", + "new_balance":"27544.53", + "value":"-46.90" + } + }, + { + "id":"b25b6b1c-514f-4d31-b5b7-ad7d7bced7a7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T11:46:28.341Z", + "completed":"2017-07-01T11:46:28.341Z", + "new_balance":"27510.10", + "value":"-34.43" + } + }, + { + "id":"77c5a191-db8d-4055-acaf-4fffa01fd42e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T15:16:36.403Z", + "completed":"2017-07-05T15:16:36.403Z", + "new_balance":"27442.65", + "value":"-67.45" + } + }, + { + "id":"4168b599-12a9-4698-bc23-ce8671b3c64c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T20:25:52.220Z", + "completed":"2017-07-05T20:25:52.220Z", + "new_balance":"27361.44", + "value":"-81.21" + } + }, + { + "id":"b49eb0cf-84ca-4f1f-bd40-b9b82d54e324", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T13:48:12.996Z", + "completed":"2017-07-08T13:48:12.996Z", + "new_balance":"27350.53", + "value":"-10.91" + } + }, + { + "id":"28b1fb11-ff71-4d9c-906a-5ebb570ca42c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T06:52:31.599Z", + "completed":"2017-07-10T06:52:31.599Z", + "new_balance":"27304.07", + "value":"-46.46" + } + }, + { + "id":"f023cc37-6662-4d73-b661-80889f6f4ed2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T05:13:30.622Z", + "completed":"2017-07-12T05:13:30.622Z", + "new_balance":"27247.43", + "value":"-56.64" + } + }, + { + "id":"66c5755e-027e-4f62-9ad4-38adc9063a82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T17:20:29.359Z", + "completed":"2017-07-12T17:20:29.359Z", + "new_balance":"27213.00", + "value":"-34.43" + } + }, + { + "id":"d3b83e15-25b9-463d-9e82-65a493bea743", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T03:51:57.862Z", + "completed":"2017-07-13T03:51:57.862Z", + "new_balance":"27207.35", + "value":"-5.65" + } + }, + { + "id":"4fe55885-4ad0-4300-be07-27e295197a0c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T17:43:25.399Z", + "completed":"2017-07-13T17:43:25.399Z", + "new_balance":"27203.76", + "value":"-3.59" + } + }, + { + "id":"85f7617f-232a-4da8-91aa-74168074fb33", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T15:05:18.975Z", + "completed":"2017-07-18T15:05:18.975Z", + "new_balance":"27120.67", + "value":"-83.09" + } + }, + { + "id":"e2092fce-2b4d-43bb-b7fb-e784537c74a9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T03:42:03.858Z", + "completed":"2017-07-20T03:42:03.858Z", + "new_balance":"27039.46", + "value":"-81.21" + } + }, + { + "id":"437a1ad0-269c-45c6-940e-570db14bb9ef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T19:58:41.583Z", + "completed":"2017-07-20T19:58:41.583Z", + "new_balance":"26958.02", + "value":"-81.44" + } + }, + { + "id":"0b18c501-3cc6-427f-a748-6ff89197c4ab", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T09:46:28.541Z", + "completed":"2017-07-24T09:46:28.541Z", + "new_balance":"26930.57", + "value":"-27.45" + } + }, + { + "id":"ebb371ed-7845-4f9e-b882-28fd73886d94", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T15:53:16.918Z", + "completed":"2017-07-29T15:53:16.918Z", + "new_balance":"29280.78", + "value":"2350.21" + } + }, + { + "id":"e5c5de31-dd89-4163-abc2-bd60f2f73909", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T16:23:27.807Z", + "completed":"2017-07-29T16:23:27.807Z", + "new_balance":"29252.80", + "value":"-27.98" + } + }, + { + "id":"9f3f3a72-ffbf-4a09-8ffb-eeeeb2f6a325", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T16:02:25.885Z", + "completed":"2017-07-30T16:02:25.885Z", + "new_balance":"28935.59", + "value":"-317.21" + } + }, + { + "id":"e6c67eda-8b4b-4a9b-a95c-cb82cbba5998", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T01:51:50.895Z", + "completed":"2017-08-01T01:51:50.895Z", + "new_balance":"28901.16", + "value":"-34.43" + } + }, + { + "id":"7e8adc4b-51af-40c2-a61e-49a97b5a2bac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T04:16:49.983Z", + "completed":"2017-08-01T04:16:49.983Z", + "new_balance":"28866.73", + "value":"-34.43" + } + }, + { + "id":"fc7dafd4-f134-414f-8b20-47fd1fc90b46", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T07:08:33.610Z", + "completed":"2017-08-01T07:08:33.610Z", + "new_balance":"28819.83", + "value":"-46.90" + } + }, + { + "id":"a1ca9e5b-ddcc-4f55-8be8-6398286bc7f4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T16:10:07.608Z", + "completed":"2017-08-01T16:10:07.608Z", + "new_balance":"28715.11", + "value":"-104.72" + } + }, + { + "id":"62a2e9ac-2073-4897-91d4-09da439e71fb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T19:35:38.993Z", + "completed":"2017-08-03T19:35:38.993Z", + "new_balance":"28708.39", + "value":"-6.72" + } + }, + { + "id":"01b3f218-6378-4273-ac49-a7421af50db5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T11:21:14.086Z", + "completed":"2017-08-04T11:21:14.086Z", + "new_balance":"28627.18", + "value":"-81.21" + } + }, + { + "id":"05b1405e-9abc-47c8-9155-c5cdc5d6f7ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T04:58:53.631Z", + "completed":"2017-08-08T04:58:53.631Z", + "new_balance":"28611.89", + "value":"-15.29" + } + }, + { + "id":"3e70df14-b56a-4d5e-a888-e94a3a8eb369", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T15:25:27.491Z", + "completed":"2017-08-08T15:25:27.491Z", + "new_balance":"28505.08", + "value":"-106.81" + } + }, + { + "id":"fcbd499c-4d9f-4718-a6e0-15eec6227175", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T17:22:20.903Z", + "completed":"2017-08-08T17:22:20.903Z", + "new_balance":"28477.05", + "value":"-28.03" + } + }, + { + "id":"64a4a4e3-27e8-45f9-95ac-748db5d976c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T20:22:04.931Z", + "completed":"2017-08-08T20:22:04.931Z", + "new_balance":"28395.88", + "value":"-81.17" + } + }, + { + "id":"2d8a6b60-8701-4748-a1e3-21c09f844e4f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T21:50:36.961Z", + "completed":"2017-08-09T21:50:36.961Z", + "new_balance":"28352.93", + "value":"-42.95" + } + }, + { + "id":"651dc187-b84a-4d30-9cce-dc0ca5814962", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T03:53:53.924Z", + "completed":"2017-08-14T03:53:53.924Z", + "new_balance":"28326.20", + "value":"-26.73" + } + }, + { + "id":"9b4d9e78-4335-489c-9004-1f62e5b9ad98", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T20:15:11.544Z", + "completed":"2017-08-15T20:15:11.544Z", + "new_balance":"28284.66", + "value":"-41.54" + } + }, + { + "id":"b8ee416c-6af2-4a43-863c-49a14eece337", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T01:55:06.465Z", + "completed":"2017-08-19T01:55:06.465Z", + "new_balance":"28277.67", + "value":"-6.99" + } + }, + { + "id":"6b448741-18df-44f3-8dff-98a3aa3377c2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T01:58:34.860Z", + "completed":"2017-08-22T01:58:34.860Z", + "new_balance":"28227.73", + "value":"-49.94" + } + }, + { + "id":"af378227-363a-4704-903b-ab59199ed9c5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T23:25:58.942Z", + "completed":"2017-08-26T23:25:58.942Z", + "new_balance":"28146.52", + "value":"-81.21" + } + }, + { + "id":"cb77f10a-e6e6-42ee-9a03-e79789a73455", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T09:38:21.085Z", + "completed":"2017-08-28T09:38:21.085Z", + "new_balance":"27829.31", + "value":"-317.21" + } + }, + { + "id":"4f02007c-f5d9-485e-b948-fb6834eccbbc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T05:09:39.119Z", + "completed":"2017-08-29T05:09:39.119Z", + "new_balance":"27801.33", + "value":"-27.98" + } + }, + { + "id":"bf8fc7e7-689b-4e00-adee-a5c6dc406867", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T10:52:20.222Z", + "completed":"2017-08-29T10:52:20.222Z", + "new_balance":"30151.54", + "value":"2350.21" + } + }, + { + "id":"bc5a3401-b9f7-4c30-bdac-61f5cb87cf40", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T01:48:32.318Z", + "completed":"2017-08-30T01:48:32.318Z", + "new_balance":"29834.33", + "value":"-317.21" + } + }, + { + "id":"8aa9341a-b8f0-462c-bb62-f4357a4ff2ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T01:12:52.146Z", + "completed":"2017-09-01T01:12:52.146Z", + "new_balance":"29799.90", + "value":"-34.43" + } + }, + { + "id":"01f94821-d176-4e57-927b-ce8098c111f9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T11:23:34.220Z", + "completed":"2017-09-01T11:23:34.220Z", + "new_balance":"29765.47", + "value":"-34.43" + } + }, + { + "id":"43dfa41d-614b-49e9-bfd4-0acd7fb1d793", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T13:35:14.366Z", + "completed":"2017-09-01T13:35:14.366Z", + "new_balance":"29718.57", + "value":"-46.90" + } + }, + { + "id":"ca151fa9-fa6d-4a5d-afaa-2a10490955d6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T16:01:42.358Z", + "completed":"2017-09-01T16:01:42.358Z", + "new_balance":"29613.85", + "value":"-104.72" + } + }, + { + "id":"16169983-afed-453b-a340-4f15b76731db", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T10:03:26.709Z", + "completed":"2017-09-09T10:03:26.709Z", + "new_balance":"29552.48", + "value":"-61.37" + } + }, + { + "id":"020b9685-9232-4183-99eb-c623e2a81401", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T11:20:34.629Z", + "completed":"2017-09-09T11:20:34.629Z", + "new_balance":"29488.91", + "value":"-63.57" + } + }, + { + "id":"7bebb58a-2ebe-4577-85c9-9c45310a81e4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T14:16:28.266Z", + "completed":"2017-09-17T14:16:28.266Z", + "new_balance":"29400.42", + "value":"-88.49" + } + }, + { + "id":"eb712204-503c-4505-9416-8051890d7fe9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T03:38:48.021Z", + "completed":"2017-09-18T03:38:48.021Z", + "new_balance":"29393.65", + "value":"-6.77" + } + }, + { + "id":"4bee50f5-ae9f-42bf-9164-6efe37410fbb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:44:34.483Z", + "completed":"2017-09-18T10:44:34.483Z", + "new_balance":"29348.18", + "value":"-45.47" + } + }, + { + "id":"ef937e86-4716-4813-8c22-d62e6ec0a09c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T19:16:16.520Z", + "completed":"2017-09-18T19:16:16.520Z", + "new_balance":"29266.39", + "value":"-81.79" + } + }, + { + "id":"ed941031-29db-41e0-89f1-84b93b6e53ce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T21:43:11.821Z", + "completed":"2017-09-18T21:43:11.821Z", + "new_balance":"29226.75", + "value":"-39.64" + } + }, + { + "id":"49c3ccb0-4383-4f47-8978-80de813ed7d8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T19:53:29.624Z", + "completed":"2017-09-22T19:53:29.624Z", + "new_balance":"29122.56", + "value":"-104.19" + } + }, + { + "id":"ba6dd85a-e1b3-466f-9e44-c442dba2400b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:53:14.319Z", + "completed":"2017-09-29T06:53:14.319Z", + "new_balance":"31472.77", + "value":"2350.21" + } + }, + { + "id":"6c2b8612-952b-4d58-bf36-6dab873c9bb1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T16:23:55.019Z", + "completed":"2017-09-29T16:23:55.019Z", + "new_balance":"31444.79", + "value":"-27.98" + } + }, + { + "id":"6b471e66-a9d9-4594-a0c5-ee0f6c2c96e6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T08:02:35.159Z", + "completed":"2017-09-30T08:02:35.159Z", + "new_balance":"31127.58", + "value":"-317.21" + } + }, + { + "id":"ad33570a-342b-4c4b-8294-33c7b9af9424", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T06:38:36.575Z", + "completed":"2017-10-01T06:38:36.575Z", + "new_balance":"31093.15", + "value":"-34.43" + } + }, + { + "id":"1f4d560c-0df3-41fb-949b-582713e0ca8f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T10:09:31.104Z", + "completed":"2017-10-01T10:09:31.104Z", + "new_balance":"30988.43", + "value":"-104.72" + } + }, + { + "id":"c74fd754-1fb7-4bac-a19e-23a2155ae860", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T11:27:41.849Z", + "completed":"2017-10-01T11:27:41.849Z", + "new_balance":"30954.00", + "value":"-34.43" + } + }, + { + "id":"f000edd0-0162-4d2b-a5e3-b861425e8183", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T22:53:28.217Z", + "completed":"2017-10-01T22:53:28.217Z", + "new_balance":"30907.10", + "value":"-46.90" + } + }, + { + "id":"f45a4862-9ec7-44ac-8b6f-c4ad144d87b8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T10:31:52.516Z", + "completed":"2017-10-02T10:31:52.516Z", + "new_balance":"30812.77", + "value":"-94.33" + } + }, + { + "id":"a285ce98-7466-4898-89fc-641dcc8a00c8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T05:56:40.178Z", + "completed":"2017-10-05T05:56:40.178Z", + "new_balance":"30757.93", + "value":"-54.84" + } + }, + { + "id":"688ba33f-0ba7-4d7e-9409-9ca3128c1ae4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T07:06:01.828Z", + "completed":"2017-10-05T07:06:01.828Z", + "new_balance":"30753.29", + "value":"-4.64" + } + }, + { + "id":"16631bb1-e09b-451e-84ac-ff1ee2655a20", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T07:21:10.995Z", + "completed":"2017-10-05T07:21:10.995Z", + "new_balance":"30711.86", + "value":"-41.43" + } + }, + { + "id":"8a6a58e5-0840-4a72-a9ea-a560410ff23a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T14:21:09.570Z", + "completed":"2017-10-05T14:21:09.570Z", + "new_balance":"30630.65", + "value":"-81.21" + } + }, + { + "id":"35984a4e-ebb1-490b-9387-144ff78fee09", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T19:17:34.025Z", + "completed":"2017-10-05T19:17:34.025Z", + "new_balance":"30596.22", + "value":"-34.43" + } + }, + { + "id":"87846dee-28c4-4932-84c6-0ab0b1da6af4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T22:14:12.772Z", + "completed":"2017-10-05T22:14:12.772Z", + "new_balance":"30589.64", + "value":"-6.58" + } + }, + { + "id":"f62ca967-3b3c-4fcd-9793-8ba6361efff7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T22:26:40.381Z", + "completed":"2017-10-05T22:26:40.381Z", + "new_balance":"30577.71", + "value":"-11.93" + } + }, + { + "id":"dbec2de0-3354-4d91-8313-11b5bb3e041e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T01:24:55.779Z", + "completed":"2017-10-09T01:24:55.779Z", + "new_balance":"30479.79", + "value":"-97.92" + } + }, + { + "id":"7c93c31b-ab7e-421a-bb1b-b0a99feb0efa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T02:02:59.273Z", + "completed":"2017-10-11T02:02:59.273Z", + "new_balance":"30423.66", + "value":"-56.13" + } + }, + { + "id":"75f147c6-d41e-4303-8691-2d3a4f58d62c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T04:30:48.814Z", + "completed":"2017-10-12T04:30:48.814Z", + "new_balance":"30396.21", + "value":"-27.45" + } + }, + { + "id":"8e8bab5a-a788-4082-8b71-e3ff0a5402b6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T23:56:33.100Z", + "completed":"2017-10-12T23:56:33.100Z", + "new_balance":"30315.00", + "value":"-81.21" + } + }, + { + "id":"d58dd485-9f8b-46cf-a161-c76b7b5df692", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T11:15:03.121Z", + "completed":"2017-10-20T11:15:03.121Z", + "new_balance":"30287.02", + "value":"-27.98" + } + }, + { + "id":"6f26c6ec-4776-4bc3-847e-fa47354fe2a8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T14:53:50.778Z", + "completed":"2017-10-29T14:53:50.778Z", + "new_balance":"32637.23", + "value":"2350.21" + } + }, + { + "id":"c4cdd1c2-8226-4fa4-8e11-a9a6e7079338", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T00:21:16.764Z", + "completed":"2017-10-30T00:21:16.764Z", + "new_balance":"32320.02", + "value":"-317.21" + } + }, + { + "id":"4ada8a76-023e-4e1b-925d-928547a70b3e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T02:03:12.203Z", + "completed":"2017-11-02T02:03:12.203Z", + "new_balance":"32285.59", + "value":"-34.43" + } + }, + { + "id":"797a86d1-7057-4148-9915-aae7dcea8021", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T02:24:12.584Z", + "completed":"2017-11-02T02:24:12.584Z", + "new_balance":"32251.16", + "value":"-34.43" + } + }, + { + "id":"0d2317e5-015f-4390-85d2-2aaa31281469", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T16:02:56.272Z", + "completed":"2017-11-02T16:02:56.272Z", + "new_balance":"32146.44", + "value":"-104.72" + } + }, + { + "id":"d1217eaf-a65c-4085-b763-d455fcfa3ecc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T21:01:46.380Z", + "completed":"2017-11-02T21:01:46.380Z", + "new_balance":"32099.54", + "value":"-46.90" + } + }, + { + "id":"65b9acb2-8b53-4723-9b7f-1e32461b5e5c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T09:18:01.331Z", + "completed":"2017-11-04T09:18:01.331Z", + "new_balance":"32092.96", + "value":"-6.58" + } + }, + { + "id":"ea89642d-7c05-45c6-be01-123bde708e60", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T20:01:21.453Z", + "completed":"2017-11-04T20:01:21.453Z", + "new_balance":"32011.75", + "value":"-81.21" + } + }, + { + "id":"a09e07b5-a7dc-4f0c-ad6c-05efdefaef71", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T04:51:59.083Z", + "completed":"2017-11-06T04:51:59.083Z", + "new_balance":"31931.54", + "value":"-80.21" + } + }, + { + "id":"61fd5423-d5a4-4821-980e-48df49fb0e72", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T07:29:39.624Z", + "completed":"2017-11-07T07:29:39.624Z", + "new_balance":"31897.03", + "value":"-34.51" + } + }, + { + "id":"52ee52ab-4a6e-47ce-bc31-2781a8ef9735", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T17:09:42.803Z", + "completed":"2017-11-07T17:09:42.803Z", + "new_balance":"31802.70", + "value":"-94.33" + } + }, + { + "id":"e72f34f1-a43e-422a-870a-a89bb1a85a82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T01:01:44.384Z", + "completed":"2017-11-09T01:01:44.384Z", + "new_balance":"31759.75", + "value":"-42.95" + } + }, + { + "id":"73a769c2-1dda-4711-89f4-a80e63928561", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T03:52:05.597Z", + "completed":"2017-11-09T03:52:05.597Z", + "new_balance":"31747.82", + "value":"-11.93" + } + }, + { + "id":"6fb72d53-ee72-470c-abbc-007e79657190", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T00:22:57.737Z", + "completed":"2017-11-13T00:22:57.737Z", + "new_balance":"31741.24", + "value":"-6.58" + } + }, + { + "id":"02c2a402-c17c-456e-b8c2-ce36fd3acc0e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T08:26:13.360Z", + "completed":"2017-11-13T08:26:13.360Z", + "new_balance":"31706.73", + "value":"-34.51" + } + }, + { + "id":"129d4342-db03-43b6-818d-a8d8a77142bb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T23:28:38.874Z", + "completed":"2017-11-13T23:28:38.874Z", + "new_balance":"31678.54", + "value":"-28.19" + } + }, + { + "id":"99f70613-7320-4de0-8733-b8f81303e4ac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T08:12:07.927Z", + "completed":"2017-11-14T08:12:07.927Z", + "new_balance":"31597.33", + "value":"-81.21" + } + }, + { + "id":"90988e66-66bf-4e24-842f-cbee2829dc7c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T10:20:23.439Z", + "completed":"2017-11-14T10:20:23.439Z", + "new_balance":"31532.10", + "value":"-65.23" + } + }, + { + "id":"aa4f3312-86f9-4d26-95f3-6e2b65d571ad", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T06:45:23.704Z", + "completed":"2017-11-15T06:45:23.704Z", + "new_balance":"31504.12", + "value":"-27.98" + } + }, + { + "id":"fe127f46-620c-4384-87ad-71ae31f0c185", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T04:10:06.041Z", + "completed":"2017-11-30T04:10:06.041Z", + "new_balance":"31186.91", + "value":"-317.21" + } + }, + { + "id":"4f502da6-0722-4b55-945d-419479fbdd5a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T09:33:01.849Z", + "completed":"2017-11-30T09:33:01.849Z", + "new_balance":"33537.12", + "value":"2350.21" + } + }, + { + "id":"499262cf-7447-4f7e-8b99-e10f85ac9c05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:43:21.145Z", + "completed":"2017-12-01T00:43:21.145Z", + "new_balance":"33502.69", + "value":"-34.43" + } + }, + { + "id":"d9488e2a-622b-4953-89b2-3a1070f9d736", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T02:42:40.533Z", + "completed":"2017-12-01T02:42:40.533Z", + "new_balance":"33397.97", + "value":"-104.72" + } + }, + { + "id":"87054e96-c37f-448e-a9c8-80bb79e56d50", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T06:43:41.474Z", + "completed":"2017-12-01T06:43:41.474Z", + "new_balance":"33351.07", + "value":"-46.90" + } + }, + { + "id":"33e2c131-3362-4a79-93f2-86b9c2c4e383", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T20:31:44.759Z", + "completed":"2017-12-01T20:31:44.759Z", + "new_balance":"33316.64", + "value":"-34.43" + } + }, + { + "id":"f97c6840-30e5-45ca-b059-44b5013f80d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T02:22:31.908Z", + "completed":"2017-12-04T02:22:31.908Z", + "new_balance":"33253.07", + "value":"-63.57" + } + }, + { + "id":"773ef711-ef18-4578-8459-fa8d4fc6d61a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T06:14:19.051Z", + "completed":"2017-12-04T06:14:19.051Z", + "new_balance":"33191.70", + "value":"-61.37" + } + }, + { + "id":"b2046101-f6fa-4ded-aa11-f98aa2cfef4a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T02:05:04.004Z", + "completed":"2017-12-11T02:05:04.004Z", + "new_balance":"33103.21", + "value":"-88.49" + } + }, + { + "id":"8e047e66-85cb-4699-9254-15663c36f2bc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T14:21:01.301Z", + "completed":"2017-12-11T14:21:01.301Z", + "new_balance":"33021.42", + "value":"-81.79" + } + }, + { + "id":"631a1b05-9538-4917-807d-70e1050fb734", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T14:56:13.283Z", + "completed":"2017-12-11T14:56:13.283Z", + "new_balance":"32975.95", + "value":"-45.47" + } + }, + { + "id":"ae22f401-d918-48c2-a0b5-93c7601496e4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T13:34:55.712Z", + "completed":"2017-12-12T13:34:55.712Z", + "new_balance":"32936.31", + "value":"-39.64" + } + }, + { + "id":"7e30e9ba-db95-42fa-a5b4-615faf8c9fb5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T20:59:44.030Z", + "completed":"2017-12-12T20:59:44.030Z", + "new_balance":"32929.54", + "value":"-6.77" + } + }, + { + "id":"aece329e-5165-4b8b-982a-9842fade6425", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:23:18.045Z", + "completed":"2017-12-16T02:23:18.045Z", + "new_balance":"32825.35", + "value":"-104.19" + } + }, + { + "id":"5de47451-cbc6-4ed0-ada6-f7461eb73fcf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T14:56:43.994Z", + "completed":"2017-12-29T14:56:43.994Z", + "new_balance":"32797.37", + "value":"-27.98" + } + }, + { + "id":"ad535303-12a7-4215-8d24-ec929b26b5d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T00:28:20.724Z", + "completed":"2017-12-30T00:28:20.724Z", + "new_balance":"35147.58", + "value":"2350.21" + } + }, + { + "id":"0106c6f8-9124-4e47-b7a6-c250d9699e30", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T05:22:29.281Z", + "completed":"2017-12-30T05:22:29.281Z", + "new_balance":"34830.37", + "value":"-317.21" + } + }, + { + "id":"c49bae3e-d395-4898-a786-5f0b097b2d2d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T17:50:48.605Z", + "completed":"2016-03-02T17:50:48.605Z", + "new_balance":"14230.74", + "value":"-118.32" + } + }, + { + "id":"6a79e95f-c71f-4456-a131-1773fa278633", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T19:07:41.138Z", + "completed":"2016-03-02T19:07:41.138Z", + "new_balance":"14201.87", + "value":"-28.87" + } + }, + { + "id":"6dc6ecbe-5d01-4c9d-8fa4-ad90e7a8924c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T07:44:17.028Z", + "completed":"2016-03-03T07:44:17.028Z", + "new_balance":"13752.16", + "value":"-449.71" + } + }, + { + "id":"ecc6a296-3131-49be-8323-37ff6b471eaa", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T10:39:27.374Z", + "completed":"2016-03-03T10:39:27.374Z", + "new_balance":"13744.97", + "value":"-7.19" + } + }, + { + "id":"b6edf44f-c1d8-4ebe-bc0a-b2248c948334", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T11:21:55.836Z", + "completed":"2016-03-04T11:21:55.836Z", + "new_balance":"13712.76", + "value":"-32.21" + } + }, + { + "id":"5490a86b-4a85-4e58-bb90-186c2bacd8fd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T22:30:49.033Z", + "completed":"2016-03-04T22:30:49.033Z", + "new_balance":"13705.66", + "value":"-7.10" + } + }, + { + "id":"f94f0c8c-e83b-4930-a5c0-eb93eba558ac", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:15:23.878Z", + "completed":"2016-03-07T01:15:23.878Z", + "new_balance":"13700.51", + "value":"-5.15" + } + }, + { + "id":"7e9eda2c-ae62-48a8-b87c-33143c6960b9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T01:22:59.823Z", + "completed":"2016-03-09T01:22:59.823Z", + "new_balance":"13582.19", + "value":"-118.32" + } + }, + { + "id":"3f5f4905-109e-408d-85c1-919b9ef733a5", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T23:07:30.260Z", + "completed":"2016-03-16T23:07:30.260Z", + "new_balance":"13497.27", + "value":"-84.92" + } + }, + { + "id":"34a8f146-9cef-4d59-8349-da60b5e0f9d2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T21:40:07.607Z", + "completed":"2016-03-25T21:40:07.607Z", + "new_balance":"13412.35", + "value":"-84.92" + } + }, + { + "id":"5fe367bd-fd87-44af-869c-ddf008b42cf0", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T13:06:05.078Z", + "completed":"2016-03-30T13:06:05.078Z", + "new_balance":"13134.87", + "value":"-277.48" + } + }, + { + "id":"2bb3037c-f5bc-4bfc-bd47-82135db70f1d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:11:05.149Z", + "completed":"2016-06-07T00:11:05.149Z", + "new_balance":"13106.00", + "value":"-28.87" + } + }, + { + "id":"209b2983-85a2-4c72-8613-0b3cee162455", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T05:16:37.674Z", + "completed":"2016-06-07T05:16:37.674Z", + "new_balance":"12656.29", + "value":"-449.71" + } + }, + { + "id":"fa32e1b6-5da8-455b-9da9-f0f74704e9e1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:51:08.976Z", + "completed":"2016-06-07T18:51:08.976Z", + "new_balance":"12537.97", + "value":"-118.32" + } + }, + { + "id":"4c25971d-a0d9-42f8-9b19-986c3b329b41", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T04:08:48.398Z", + "completed":"2016-06-10T04:08:48.398Z", + "new_balance":"12530.87", + "value":"-7.10" + } + }, + { + "id":"fefe2c2c-7e45-4c02-8126-00063edbdc07", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T13:01:09.248Z", + "completed":"2016-06-14T13:01:09.248Z", + "new_balance":"12498.66", + "value":"-32.21" + } + }, + { + "id":"37bfec1a-bff2-4ae8-b048-b4b22cb2c1be", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T00:39:31.480Z", + "completed":"2016-06-19T00:39:31.480Z", + "new_balance":"12491.47", + "value":"-7.19" + } + }, + { + "id":"ba0c61b0-2e60-4c09-b5e1-7deadf82aacd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T07:20:16.225Z", + "completed":"2016-06-19T07:20:16.225Z", + "new_balance":"12486.32", + "value":"-5.15" + } + }, + { + "id":"2b7fa22d-a12d-4fcc-8094-855deeccc54a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T10:06:40.984Z", + "completed":"2016-06-20T10:06:40.984Z", + "new_balance":"12368.00", + "value":"-118.32" + } + }, + { + "id":"50ddd1e7-b8dd-4640-acd5-1b35d4f889f4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T02:12:51.433Z", + "completed":"2016-06-28T02:12:51.433Z", + "new_balance":"12283.08", + "value":"-84.92" + } + }, + { + "id":"08beca5d-a728-47b8-9b2b-704994969185", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T15:43:04.173Z", + "completed":"2016-07-01T15:43:04.173Z", + "new_balance":"12198.16", + "value":"-84.92" + } + }, + { + "id":"bbafbcc5-b0bb-4b5b-b266-3a7bec3eaaa2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T16:36:05.399Z", + "completed":"2016-07-01T16:36:05.399Z", + "new_balance":"11920.68", + "value":"-277.48" + } + }, + { + "id":"61b3df89-1ae3-443d-b71b-7b50568dc609", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T01:04:05.417Z", + "completed":"2016-09-02T01:04:05.417Z", + "new_balance":"11891.81", + "value":"-28.87" + } + }, + { + "id":"c38f6b75-a5ba-4fb1-963a-43a9c5bb7c6e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T21:53:57.650Z", + "completed":"2016-09-02T21:53:57.650Z", + "new_balance":"11773.49", + "value":"-118.32" + } + }, + { + "id":"7932f485-d51f-4926-b99f-3920dc4bced4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T11:49:48.969Z", + "completed":"2016-09-03T11:49:48.969Z", + "new_balance":"11769.31", + "value":"-4.18" + } + }, + { + "id":"51864e84-6935-4d0f-bf5f-0fc38a653d6e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T11:58:49.111Z", + "completed":"2016-09-03T11:58:49.111Z", + "new_balance":"11319.60", + "value":"-449.71" + } + }, + { + "id":"8ad9bc74-edef-4197-a38d-6ffbe67e7080", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T16:27:08.562Z", + "completed":"2016-09-03T16:27:08.562Z", + "new_balance":"11312.41", + "value":"-7.19" + } + }, + { + "id":"76494e09-96c0-422e-b6b4-58de5a87693c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T18:12:31.125Z", + "completed":"2016-09-04T18:12:31.125Z", + "new_balance":"11280.20", + "value":"-32.21" + } + }, + { + "id":"55301988-fb38-4644-a581-9b853d653c5e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T03:51:36.645Z", + "completed":"2016-09-07T03:51:36.645Z", + "new_balance":"11275.05", + "value":"-5.15" + } + }, + { + "id":"c1ea0967-5f53-493b-9439-0a397353698a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T22:42:48.290Z", + "completed":"2016-09-09T22:42:48.290Z", + "new_balance":"11156.73", + "value":"-118.32" + } + }, + { + "id":"65421bbb-bcd6-4d52-8a0b-0c3b33bdbcd6", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T16:54:33.489Z", + "completed":"2016-09-16T16:54:33.489Z", + "new_balance":"11071.81", + "value":"-84.92" + } + }, + { + "id":"1519245d-e8c3-472e-abbd-d0897478bb77", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:11:41.032Z", + "completed":"2016-09-25T03:11:41.032Z", + "new_balance":"10986.89", + "value":"-84.92" + } + }, + { + "id":"97e5f1f2-2760-4ae6-bd5c-72ce7e06d01e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T09:59:05.869Z", + "completed":"2016-09-30T09:59:05.869Z", + "new_balance":"10709.41", + "value":"-277.48" + } + }, + { + "id":"6baf4f9a-1e75-4a4e-bbbe-65d1c84a57ca", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T08:13:10.178Z", + "completed":"2016-12-07T08:13:10.178Z", + "new_balance":"10591.09", + "value":"-118.32" + } + }, + { + "id":"3ddaf0a5-f7a5-468d-8b3a-05af8a05c5bb", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T18:20:54.896Z", + "completed":"2016-12-07T18:20:54.896Z", + "new_balance":"10562.22", + "value":"-28.87" + } + }, + { + "id":"e332757a-43fd-4ffe-b491-2173d76e8efe", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T22:05:03.213Z", + "completed":"2016-12-07T22:05:03.213Z", + "new_balance":"10112.51", + "value":"-449.71" + } + }, + { + "id":"d9250a07-301b-40a1-8a74-d3d4d4fc1068", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T09:16:25.814Z", + "completed":"2016-12-11T09:16:25.814Z", + "new_balance":"10105.41", + "value":"-7.10" + } + }, + { + "id":"f00057b9-a620-402e-89f8-4df9982a273f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T18:21:04.225Z", + "completed":"2016-12-11T18:21:04.225Z", + "new_balance":"10098.22", + "value":"-7.19" + } + }, + { + "id":"0f9133ba-0b29-4f56-aac0-ef300ccc42f4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T23:44:35.858Z", + "completed":"2016-12-14T23:44:35.858Z", + "new_balance":"10066.01", + "value":"-32.21" + } + }, + { + "id":"7b41abd9-50db-4934-a0a7-a706c334ab1a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T07:09:24.423Z", + "completed":"2016-12-20T07:09:24.423Z", + "new_balance":"10060.86", + "value":"-5.15" + } + }, + { + "id":"8afa49c8-a2c3-4427-8bd2-9f6a36f9cac5", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T15:49:38.984Z", + "completed":"2016-12-22T15:49:38.984Z", + "new_balance":"9942.54", + "value":"-118.32" + } + }, + { + "id":"cb8c9080-e67f-41ab-8387-5648f44b69cd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T10:19:17.551Z", + "completed":"2016-12-28T10:19:17.551Z", + "new_balance":"9857.62", + "value":"-84.92" + } + }, + { + "id":"5174e940-6e55-4cc5-8864-e1c21df9959f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T13:22:46.796Z", + "completed":"2016-12-31T13:22:46.796Z", + "new_balance":"9772.70", + "value":"-84.92" + } + }, + { + "id":"8a6e3c7e-5a01-46b6-890b-83ca75ca2bbe", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T17:30:16.492Z", + "completed":"2016-12-31T17:30:16.492Z", + "new_balance":"9495.22", + "value":"-277.48" + } + }, + { + "id":"3a26a40d-c008-416e-8b1a-a159d817fc36", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T02:06:14.352Z", + "completed":"2017-03-02T02:06:14.352Z", + "new_balance":"9466.35", + "value":"-28.87" + } + }, + { + "id":"1f4258ad-2ada-49bf-923a-949bc5f2e704", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T20:07:00.582Z", + "completed":"2017-03-02T20:07:00.582Z", + "new_balance":"9348.03", + "value":"-118.32" + } + }, + { + "id":"4630e9c3-bf37-4dd3-b2e0-3e5db30e293f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T00:00:25.280Z", + "completed":"2017-03-03T00:00:25.280Z", + "new_balance":"8898.32", + "value":"-449.71" + } + }, + { + "id":"5b02862c-3d19-48a1-9e92-c43f4d905fc2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T09:35:19.541Z", + "completed":"2017-03-03T09:35:19.541Z", + "new_balance":"8891.13", + "value":"-7.19" + } + }, + { + "id":"817fb14c-03b7-47c2-9669-6973d1ccfc61", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T15:28:30.360Z", + "completed":"2017-03-04T15:28:30.360Z", + "new_balance":"8858.92", + "value":"-32.21" + } + }, + { + "id":"1fb6ff7c-714b-47a1-82f0-7e7ceb8f795b", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:50:39.066Z", + "completed":"2017-03-04T23:50:39.066Z", + "new_balance":"8851.82", + "value":"-7.10" + } + }, + { + "id":"ed8aa125-4e28-4423-b497-8be0b8f8e95c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T00:31:57.083Z", + "completed":"2017-03-07T00:31:57.083Z", + "new_balance":"8846.67", + "value":"-5.15" + } + }, + { + "id":"07bd0a4b-3d38-4776-9075-e8c5f67aaa69", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T20:53:41.117Z", + "completed":"2017-03-09T20:53:41.117Z", + "new_balance":"8728.35", + "value":"-118.32" + } + }, + { + "id":"1dda0fdc-3ded-41ae-9eb3-8917babc909c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T02:05:21.541Z", + "completed":"2017-03-16T02:05:21.541Z", + "new_balance":"8643.43", + "value":"-84.92" + } + }, + { + "id":"177c27f3-25a7-4f0c-87fa-84b82eb64eb9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T23:44:17.595Z", + "completed":"2017-03-25T23:44:17.595Z", + "new_balance":"8558.51", + "value":"-84.92" + } + }, + { + "id":"0d14d3f8-0f33-40cb-9523-c65c1d56492a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T06:19:20.436Z", + "completed":"2017-03-30T06:19:20.436Z", + "new_balance":"8281.03", + "value":"-277.48" + } + }, + { + "id":"2f2f60c6-9716-4bd5-878a-0b7b1a75a9e1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T08:17:25.826Z", + "completed":"2017-06-07T08:17:25.826Z", + "new_balance":"7831.32", + "value":"-449.71" + } + }, + { + "id":"9609da5d-662d-4be6-b904-a8ffc9228762", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T09:41:08.197Z", + "completed":"2017-06-07T09:41:08.197Z", + "new_balance":"7713.00", + "value":"-118.32" + } + }, + { + "id":"f098860b-5a33-4f90-b1d7-f5c6328a0402", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T20:52:00.959Z", + "completed":"2017-06-07T20:52:00.959Z", + "new_balance":"7684.13", + "value":"-28.87" + } + }, + { + "id":"06dd0dfe-f806-4751-9f89-929bcc102250", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T03:03:13.028Z", + "completed":"2017-06-10T03:03:13.028Z", + "new_balance":"7677.03", + "value":"-7.10" + } + }, + { + "id":"e7f585ee-992d-4891-850c-a22ef2d59c24", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T22:37:37.469Z", + "completed":"2017-06-14T22:37:37.469Z", + "new_balance":"7644.82", + "value":"-32.21" + } + }, + { + "id":"f4bbf126-f6df-442a-aaf1-f8d4a2e379d4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T00:50:46.774Z", + "completed":"2017-06-19T00:50:46.774Z", + "new_balance":"7639.67", + "value":"-5.15" + } + }, + { + "id":"fd912376-b22a-45f2-8134-a30e85e36a1d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T23:22:46.783Z", + "completed":"2017-06-19T23:22:46.783Z", + "new_balance":"7632.48", + "value":"-7.19" + } + }, + { + "id":"75695e45-2056-4d8c-bee6-8467e93b9425", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T09:39:12.952Z", + "completed":"2017-06-20T09:39:12.952Z", + "new_balance":"7514.16", + "value":"-118.32" + } + }, + { + "id":"d81b76e3-0612-4caf-84bd-f4150e5e0362", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T15:46:27.112Z", + "completed":"2017-06-28T15:46:27.112Z", + "new_balance":"7429.24", + "value":"-84.92" + } + }, + { + "id":"f8d587fc-96fd-4d70-a83e-9beb26c414fc", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T08:59:04.789Z", + "completed":"2017-07-01T08:59:04.789Z", + "new_balance":"7151.76", + "value":"-277.48" + } + }, + { + "id":"4c6858d8-c0ed-4fc7-b175-1099af1fb5ee", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:13:06.437Z", + "completed":"2017-07-01T17:13:06.437Z", + "new_balance":"7066.84", + "value":"-84.92" + } + }, + { + "id":"9fa4bc59-949e-4c83-82ba-da980829ee78", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:52:39.439Z", + "completed":"2017-09-02T08:52:39.439Z", + "new_balance":"6948.52", + "value":"-118.32" + } + }, + { + "id":"a2d84c5a-60ad-4b4d-89ea-9ec1fb4cb3fb", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T09:30:27.398Z", + "completed":"2017-09-02T09:30:27.398Z", + "new_balance":"6919.65", + "value":"-28.87" + } + }, + { + "id":"7e1b0f25-eafb-4669-87f0-bb9ce3d261f9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T05:13:59.029Z", + "completed":"2017-09-03T05:13:59.029Z", + "new_balance":"6912.46", + "value":"-7.19" + } + }, + { + "id":"2d55cb2e-bb4e-40e1-9a56-da2580354395", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T11:53:13.592Z", + "completed":"2017-09-03T11:53:13.592Z", + "new_balance":"6462.75", + "value":"-449.71" + } + }, + { + "id":"3e5dcd48-87de-4ac8-b24f-148d525ea6ab", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T23:07:52.811Z", + "completed":"2017-09-03T23:07:52.811Z", + "new_balance":"6458.57", + "value":"-4.18" + } + }, + { + "id":"8bb761f5-fc52-4de0-9728-d279cf5ddfc2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T16:14:33.905Z", + "completed":"2017-09-04T16:14:33.905Z", + "new_balance":"6426.36", + "value":"-32.21" + } + }, + { + "id":"043fe373-28fe-4c4a-8734-33f96f7be8b1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T04:14:05.839Z", + "completed":"2017-09-07T04:14:05.839Z", + "new_balance":"6421.21", + "value":"-5.15" + } + }, + { + "id":"ecf19a48-b357-48f1-9daf-e2a75dbbc427", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T06:03:47.791Z", + "completed":"2017-09-09T06:03:47.791Z", + "new_balance":"6302.89", + "value":"-118.32" + } + }, + { + "id":"3b39ad3a-0ef7-429a-872d-582b7b3266c8", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T10:52:43.933Z", + "completed":"2017-09-16T10:52:43.933Z", + "new_balance":"6217.97", + "value":"-84.92" + } + }, + { + "id":"4489ec7f-0b1a-4afc-b7a5-22c691757a3e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T02:44:13.704Z", + "completed":"2017-09-25T02:44:13.704Z", + "new_balance":"6133.05", + "value":"-84.92" + } + }, + { + "id":"2bad19ca-4e36-4d86-a8ac-94bdb0465db3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T06:51:17.939Z", + "completed":"2017-09-30T06:51:17.939Z", + "new_balance":"5855.57", + "value":"-277.48" + } + }, + { + "id":"2407eedd-1727-46bc-a772-2578d935c9b1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T04:13:31.855Z", + "completed":"2017-12-07T04:13:31.855Z", + "new_balance":"5405.86", + "value":"-449.71" + } + }, + { + "id":"7fdbb008-8c12-49c2-aea9-b98ef0ca9446", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T07:04:47.995Z", + "completed":"2017-12-07T07:04:47.995Z", + "new_balance":"5287.54", + "value":"-118.32" + } + }, + { + "id":"98589029-45b9-447c-9d88-cd02462a8fc3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T09:37:52.260Z", + "completed":"2017-12-07T09:37:52.260Z", + "new_balance":"5258.67", + "value":"-28.87" + } + }, + { + "id":"62ac72f0-81bd-4abe-a024-264312712df3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T06:04:52.272Z", + "completed":"2017-12-11T06:04:52.272Z", + "new_balance":"5251.57", + "value":"-7.10" + } + }, + { + "id":"4e50f7e2-ba19-4aa7-813d-bad24b90edde", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T20:41:45.824Z", + "completed":"2017-12-11T20:41:45.824Z", + "new_balance":"5244.38", + "value":"-7.19" + } + }, + { + "id":"2a6b0f61-08ee-4ad7-857b-029e2405936e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T17:21:31.749Z", + "completed":"2017-12-14T17:21:31.749Z", + "new_balance":"5212.17", + "value":"-32.21" + } + }, + { + "id":"d3fa9a09-88bb-4611-8989-ac1e7eb950ed", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T12:13:58.923Z", + "completed":"2017-12-20T12:13:58.923Z", + "new_balance":"5207.02", + "value":"-5.15" + } + }, + { + "id":"2bc5c440-cc8e-417f-b060-ec2c33450fa6", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T09:05:49.249Z", + "completed":"2017-12-22T09:05:49.249Z", + "new_balance":"5088.70", + "value":"-118.32" + } + }, + { + "id":"99aa7523-db23-478a-ae73-a511214410db", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T11:37:03.494Z", + "completed":"2017-12-28T11:37:03.494Z", + "new_balance":"5003.78", + "value":"-84.92" + } + }, + { + "id":"c63bf220-40c3-4049-a1fe-7abc8b2d1d5d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T18:56:50.742Z", + "completed":"2017-12-31T18:56:50.742Z", + "new_balance":"4918.86", + "value":"-84.92" + } + }, + { + "id":"1a226279-9bea-449d-809c-5c3dc6e4db6a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T22:10:00.663Z", + "completed":"2017-12-31T22:10:00.663Z", + "new_balance":"4641.38", + "value":"-277.48" + } + }, + { + "id":"7977ec0f-c66a-4e47-89cf-fa9380491cc7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:29:59.641Z", + "completed":"2016-01-01T01:29:59.641Z", + "new_balance":"5399.92", + "value":"-61.87" + } + }, + { + "id":"1552520b-9fe0-4258-aa02-b51d2a752e99", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T20:09:05.249Z", + "completed":"2016-01-01T20:09:05.249Z", + "new_balance":"5338.05", + "value":"-61.87" + } + }, + { + "id":"943bc293-25f3-467c-bd7f-7ac6e57f2c30", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T13:26:24.858Z", + "completed":"2016-01-03T13:26:24.858Z", + "new_balance":"4827.51", + "value":"-510.54" + } + }, + { + "id":"0eba5ebe-6ac0-43bb-8bef-77fc37166e7f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T14:07:35.336Z", + "completed":"2016-01-03T14:07:35.336Z", + "new_balance":"4793.08", + "value":"-34.43" + } + }, + { + "id":"ec3fd4b2-eb96-452d-88e8-eed2d4ad0333", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T16:09:27.105Z", + "completed":"2016-01-03T16:09:27.105Z", + "new_balance":"4719.15", + "value":"-73.93" + } + }, + { + "id":"c6c10b61-e0e8-486d-b17b-ac54d0ea5827", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T19:23:20.728Z", + "completed":"2016-01-03T19:23:20.728Z", + "new_balance":"4694.59", + "value":"-24.56" + } + }, + { + "id":"b03426af-9964-43c4-8831-a9521c396987", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T02:43:11.072Z", + "completed":"2016-01-05T02:43:11.072Z", + "new_balance":"4650.61", + "value":"-43.98" + } + }, + { + "id":"a9f8a25f-face-4cc0-81fa-789cf8c16d1b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T11:18:38.084Z", + "completed":"2016-01-05T11:18:38.084Z", + "new_balance":"4637.60", + "value":"-13.01" + } + }, + { + "id":"638b4142-b3de-4cdc-abf0-7526a2bf7417", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T17:04:32.029Z", + "completed":"2016-01-05T17:04:32.029Z", + "new_balance":"4584.42", + "value":"-53.18" + } + }, + { + "id":"ba99cc5f-9176-4843-aba4-206dad10b6b4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T16:03:02.742Z", + "completed":"2016-01-06T16:03:02.742Z", + "new_balance":"4561.73", + "value":"-22.69" + } + }, + { + "id":"f5bde9e7-a212-43dd-9852-f7a512117b09", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T21:02:41.781Z", + "completed":"2016-01-06T21:02:41.781Z", + "new_balance":"4531.85", + "value":"-29.88" + } + }, + { + "id":"dc6573be-9f63-4c78-afa8-fc705b4d1ea9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T20:44:13.413Z", + "completed":"2016-01-07T20:44:13.413Z", + "new_balance":"4492.68", + "value":"-39.17" + } + }, + { + "id":"05ea8b78-f6dc-4081-865d-f8dd8d5d83a9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T03:56:25.402Z", + "completed":"2016-01-10T03:56:25.402Z", + "new_balance":"4439.50", + "value":"-53.18" + } + }, + { + "id":"b5d2c62d-aea4-46a7-883f-64772cdf5c7f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T10:50:06.424Z", + "completed":"2016-01-10T10:50:06.424Z", + "new_balance":"4414.63", + "value":"-24.87" + } + }, + { + "id":"51690670-12b6-48b6-a191-1c6cb2034375", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T08:41:53.890Z", + "completed":"2016-01-12T08:41:53.890Z", + "new_balance":"4394.56", + "value":"-20.07" + } + }, + { + "id":"b56e15bc-e8da-4fd8-b5d3-2f53e8ca4b0c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:32:08.625Z", + "completed":"2016-01-12T09:32:08.625Z", + "new_balance":"4370.00", + "value":"-24.56" + } + }, + { + "id":"c5a3af7a-fbe5-4f92-9879-e3382b530f48", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:56:50.493Z", + "completed":"2016-01-12T18:56:50.493Z", + "new_balance":"4330.83", + "value":"-39.17" + } + }, + { + "id":"4e47b2b4-3b6f-46b6-bd2a-186c08c6370c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T14:30:00.122Z", + "completed":"2016-01-15T14:30:00.122Z", + "new_balance":"4314.43", + "value":"-16.40" + } + }, + { + "id":"a9835e73-7fde-457a-9dd1-0b565bbe085e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T02:27:35.300Z", + "completed":"2016-01-16T02:27:35.300Z", + "new_balance":"4261.25", + "value":"-53.18" + } + }, + { + "id":"2263ce55-37f1-4504-bf4a-8a1a55f93d36", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T18:56:05.636Z", + "completed":"2016-01-16T18:56:05.636Z", + "new_balance":"4255.10", + "value":"-6.15" + } + }, + { + "id":"82b0be61-d6cb-4a72-8e9e-2bc0383d34a3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T14:00:42.200Z", + "completed":"2016-01-17T14:00:42.200Z", + "new_balance":"4193.92", + "value":"-61.18" + } + }, + { + "id":"ac094567-1645-4e9b-8dd7-793fd1574968", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T17:54:34.863Z", + "completed":"2016-01-17T17:54:34.863Z", + "new_balance":"4162.60", + "value":"-31.32" + } + }, + { + "id":"bf69d3b8-11fe-49df-8aa2-180af18987e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T04:16:38.810Z", + "completed":"2016-01-19T04:16:38.810Z", + "new_balance":"4132.20", + "value":"-30.40" + } + }, + { + "id":"248b4c47-ddd9-4b87-8d2d-ae15105aae40", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T18:54:55.132Z", + "completed":"2016-01-20T18:54:55.132Z", + "new_balance":"4079.02", + "value":"-53.18" + } + }, + { + "id":"493dcd8f-f335-47dd-9477-f1eb24e548ce", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T18:47:03.863Z", + "completed":"2016-01-23T18:47:03.863Z", + "new_balance":"4063.19", + "value":"-15.83" + } + }, + { + "id":"294fbe33-9e02-4b4e-a640-4430550a36cc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T00:18:27.720Z", + "completed":"2016-01-26T00:18:27.720Z", + "new_balance":"4004.71", + "value":"-58.48" + } + }, + { + "id":"fb087814-a1d9-4628-9a0b-e32cae0f312a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T19:00:42.289Z", + "completed":"2016-01-27T19:00:42.289Z", + "new_balance":"5193.22", + "value":"1188.51" + } + }, + { + "id":"2c4b21be-1def-44a2-9540-e958c6aa392d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T23:47:39.232Z", + "completed":"2016-01-28T23:47:39.232Z", + "new_balance":"5158.79", + "value":"-34.43" + } + }, + { + "id":"0a2fc927-19ef-4e04-9024-8c74ef65f3ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T01:23:18.675Z", + "completed":"2016-01-30T01:23:18.675Z", + "new_balance":"5116.45", + "value":"-42.34" + } + }, + { + "id":"cdd4379f-aea8-4c0d-9472-2b054e73f0d7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T11:00:05.056Z", + "completed":"2016-02-03T11:00:05.056Z", + "new_balance":"5091.89", + "value":"-24.56" + } + }, + { + "id":"5073cf60-5a77-4d3c-93bf-236f91c96df7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T14:01:37.633Z", + "completed":"2016-02-03T14:01:37.633Z", + "new_balance":"5057.46", + "value":"-34.43" + } + }, + { + "id":"ba3c6039-09bf-4d16-afa6-1463e0063ac5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T16:54:21.715Z", + "completed":"2016-02-03T16:54:21.715Z", + "new_balance":"4546.92", + "value":"-510.54" + } + }, + { + "id":"69d97b18-641c-481c-8e45-399b6e33177d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T21:42:03.114Z", + "completed":"2016-02-03T21:42:03.114Z", + "new_balance":"4472.99", + "value":"-73.93" + } + }, + { + "id":"67388be3-4d14-4f93-b4b3-c0b43de725e1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T03:02:25.803Z", + "completed":"2016-02-08T03:02:25.803Z", + "new_balance":"4419.81", + "value":"-53.18" + } + }, + { + "id":"c62a99de-01e6-430e-85ad-d5a048883a5f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:30:29.701Z", + "completed":"2016-02-08T17:30:29.701Z", + "new_balance":"4375.83", + "value":"-43.98" + } + }, + { + "id":"3f76cc93-b099-4294-9601-a411a8493405", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T21:52:21.361Z", + "completed":"2016-02-11T21:52:21.361Z", + "new_balance":"4386.72", + "value":"10.89" + } + }, + { + "id":"c1a3a0de-37fc-45d6-a66f-286cfabe9d20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T08:56:30.958Z", + "completed":"2016-02-13T08:56:30.958Z", + "new_balance":"4356.84", + "value":"-29.88" + } + }, + { + "id":"723f8573-b252-4e48-9111-bc46346f1dae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T17:25:42.779Z", + "completed":"2016-02-14T17:25:42.779Z", + "new_balance":"4328.99", + "value":"-27.85" + } + }, + { + "id":"9a0465ca-4202-439b-8b1b-82ca02d71f43", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T11:00:23.870Z", + "completed":"2016-02-17T11:00:23.870Z", + "new_balance":"4318.08", + "value":"-10.91" + } + }, + { + "id":"cc962573-7858-4dd2-94c5-8dabb3ab79b3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T07:03:20.494Z", + "completed":"2016-02-21T07:03:20.494Z", + "new_balance":"4276.95", + "value":"-41.13" + } + }, + { + "id":"72367499-2955-40a2-aef3-0b0ea2b63d78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T06:11:41.004Z", + "completed":"2016-02-23T06:11:41.004Z", + "new_balance":"4236.03", + "value":"-40.92" + } + }, + { + "id":"2c63191a-db7c-459d-9107-9b076dc75fa0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T13:53:17.555Z", + "completed":"2016-02-23T13:53:17.555Z", + "new_balance":"4182.85", + "value":"-53.18" + } + }, + { + "id":"a4d2aa79-6c62-4049-96be-16012bacaf87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T04:48:24.987Z", + "completed":"2016-02-24T04:48:24.987Z", + "new_balance":"4171.94", + "value":"-10.91" + } + }, + { + "id":"f5d5d5d6-d116-4ced-9c2c-ef58e56c0fa7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T07:07:09.334Z", + "completed":"2016-02-27T07:07:09.334Z", + "new_balance":"5360.45", + "value":"1188.51" + } + }, + { + "id":"13a98164-3b87-4440-b291-c185dfe7d910", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T12:38:31.894Z", + "completed":"2016-02-27T12:38:31.894Z", + "new_balance":"5343.71", + "value":"-16.74" + } + }, + { + "id":"ffaa3a86-b404-4a59-ac7b-cb1481b5b172", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T23:30:00.169Z", + "completed":"2016-02-27T23:30:00.169Z", + "new_balance":"5285.23", + "value":"-58.48" + } + }, + { + "id":"22d09c7f-07d2-4491-b37b-110aa3d21e6d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T17:46:24.230Z", + "completed":"2016-02-28T17:46:24.230Z", + "new_balance":"5250.80", + "value":"-34.43" + } + }, + { + "id":"bc3103ed-dd1d-40d2-9877-a0b1bf9ee183", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T23:51:40.476Z", + "completed":"2016-02-28T23:51:40.476Z", + "new_balance":"5208.46", + "value":"-42.34" + } + }, + { + "id":"c65b2311-1ca9-462f-9770-7c9684c1585b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T20:29:39.994Z", + "completed":"2016-03-01T20:29:39.994Z", + "new_balance":"5146.59", + "value":"-61.87" + } + }, + { + "id":"13edc6b8-1c41-43cf-8fe3-5603677f4360", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T01:37:59.998Z", + "completed":"2016-03-03T01:37:59.998Z", + "new_balance":"5112.16", + "value":"-34.43" + } + }, + { + "id":"a059ee60-f987-41ed-9e97-2fb68e495ea2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T07:24:11.378Z", + "completed":"2016-03-03T07:24:11.378Z", + "new_balance":"5087.60", + "value":"-24.56" + } + }, + { + "id":"cba50bae-f843-4748-b4d8-d19c3d6bb085", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T09:44:01.982Z", + "completed":"2016-03-03T09:44:01.982Z", + "new_balance":"4577.06", + "value":"-510.54" + } + }, + { + "id":"4e544329-9385-4b7b-8768-9f336672162e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T18:19:54.232Z", + "completed":"2016-03-03T18:19:54.232Z", + "new_balance":"4503.13", + "value":"-73.93" + } + }, + { + "id":"4f77fb28-bdbe-4d54-9907-a050deeec1d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T14:45:42.193Z", + "completed":"2016-03-05T14:45:42.193Z", + "new_balance":"4449.95", + "value":"-53.18" + } + }, + { + "id":"d2bd672a-6027-4645-9d6b-029095b4ee79", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T22:29:40.525Z", + "completed":"2016-03-05T22:29:40.525Z", + "new_balance":"4401.29", + "value":"-48.66" + } + }, + { + "id":"c5147714-cef4-4b1b-9537-1cae7d7c2fe9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T08:31:04.871Z", + "completed":"2016-03-07T08:31:04.871Z", + "new_balance":"4387.62", + "value":"-13.67" + } + }, + { + "id":"2ebf97a3-43f9-4cfb-9da5-5d1ae5c5e634", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T18:58:22.618Z", + "completed":"2016-03-09T18:58:22.618Z", + "new_balance":"4334.44", + "value":"-53.18" + } + }, + { + "id":"b04e57c2-df29-486a-ae06-0e78125ff9ae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:31:36.433Z", + "completed":"2016-03-11T08:31:36.433Z", + "new_balance":"4323.44", + "value":"-11.00" + } + }, + { + "id":"bd4dd7b8-d566-49f1-aa65-df385552e9cb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T21:49:49.648Z", + "completed":"2016-03-13T21:49:49.648Z", + "new_balance":"4265.76", + "value":"-57.68" + } + }, + { + "id":"9447d4ec-cdd0-4ff5-9fa4-b9eecd627f22", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T18:17:59.238Z", + "completed":"2016-03-14T18:17:59.238Z", + "new_balance":"4329.12", + "value":"63.36" + } + }, + { + "id":"14218121-7396-4440-a280-3a5d81813177", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T23:22:24.224Z", + "completed":"2016-03-14T23:22:24.224Z", + "new_balance":"4317.19", + "value":"-11.93" + } + }, + { + "id":"12bf36db-4b19-411c-a0c6-124bd6ef5f68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T05:16:59.784Z", + "completed":"2016-03-15T05:16:59.784Z", + "new_balance":"4274.85", + "value":"-42.34" + } + }, + { + "id":"6fe8b681-5a0d-4aa8-9dc0-797e209873d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:47:58.474Z", + "completed":"2016-03-26T01:47:58.474Z", + "new_balance":"4249.48", + "value":"-25.37" + } + }, + { + "id":"b0a47755-8621-40ab-a1e9-5fbb1252c3a0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T03:48:58.749Z", + "completed":"2016-03-26T03:48:58.749Z", + "new_balance":"4202.55", + "value":"-46.93" + } + }, + { + "id":"7455f43d-43af-4fbb-afba-1275834b42a5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T06:26:07.804Z", + "completed":"2016-03-26T06:26:07.804Z", + "new_balance":"4175.71", + "value":"-26.84" + } + }, + { + "id":"94f21e9b-9b26-4ad4-90b7-d82fbcffa1bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T08:07:29.714Z", + "completed":"2016-03-27T08:07:29.714Z", + "new_balance":"4122.53", + "value":"-53.18" + } + }, + { + "id":"945c320b-78b0-442d-b21b-ded6038fa504", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T08:11:02.479Z", + "completed":"2016-03-27T08:11:02.479Z", + "new_balance":"4055.95", + "value":"-66.58" + } + }, + { + "id":"e50c8975-7479-4038-af0c-c7205c9ecf71", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T15:17:35.569Z", + "completed":"2016-03-27T15:17:35.569Z", + "new_balance":"5244.46", + "value":"1188.51" + } + }, + { + "id":"0c6e7c58-5e08-4d6c-b726-3924c521687d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T15:10:03.634Z", + "completed":"2016-03-28T15:10:03.634Z", + "new_balance":"5210.03", + "value":"-34.43" + } + }, + { + "id":"41ca3b32-16b3-464f-a91f-d086f89ba9f0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T05:53:32.921Z", + "completed":"2016-03-30T05:53:32.921Z", + "new_balance":"5167.69", + "value":"-42.34" + } + }, + { + "id":"e84e9b98-5f78-4fa0-916b-0b95299b6a92", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T04:57:46.882Z", + "completed":"2016-04-01T04:57:46.882Z", + "new_balance":"5105.82", + "value":"-61.87" + } + }, + { + "id":"bd2fdd1c-9179-4ead-90d0-b61dfa4135d6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T05:32:24.596Z", + "completed":"2016-04-01T05:32:24.596Z", + "new_balance":"5081.26", + "value":"-24.56" + } + }, + { + "id":"aa48ef45-24e6-480c-a48f-fe59c35f2038", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T06:32:19.558Z", + "completed":"2016-04-01T06:32:19.558Z", + "new_balance":"4570.72", + "value":"-510.54" + } + }, + { + "id":"cdde3b10-fd5f-40d3-8c13-18b7ccf78cea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T16:16:23.850Z", + "completed":"2016-04-01T16:16:23.850Z", + "new_balance":"4536.29", + "value":"-34.43" + } + }, + { + "id":"e90918c0-ca48-4322-b3ea-9fd9a62a5cab", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T23:04:21.394Z", + "completed":"2016-04-01T23:04:21.394Z", + "new_balance":"4462.36", + "value":"-73.93" + } + }, + { + "id":"01e445a0-e62d-4d59-a4a1-e1b3d2aa0d4e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T02:54:09.293Z", + "completed":"2016-04-05T02:54:09.293Z", + "new_balance":"4409.18", + "value":"-53.18" + } + }, + { + "id":"9412cd39-3d24-4b0c-bf0c-b244d648c791", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T04:22:00.578Z", + "completed":"2016-04-05T04:22:00.578Z", + "new_balance":"4396.17", + "value":"-13.01" + } + }, + { + "id":"3e2ba45d-0038-4504-aa3b-ad11fb52ba9f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T05:54:30.890Z", + "completed":"2016-04-05T05:54:30.890Z", + "new_balance":"4373.48", + "value":"-22.69" + } + }, + { + "id":"1cb5078c-49f9-4b48-a5f0-69b6bd112544", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T12:42:09.753Z", + "completed":"2016-04-05T12:42:09.753Z", + "new_balance":"4329.50", + "value":"-43.98" + } + }, + { + "id":"aabc80bd-e893-437c-9bef-c83cd00cdce8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T08:44:52.808Z", + "completed":"2016-04-07T08:44:52.808Z", + "new_balance":"4299.62", + "value":"-29.88" + } + }, + { + "id":"c55a0359-e278-4fc5-96c8-8b7900b1791b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T04:21:37.327Z", + "completed":"2016-04-09T04:21:37.327Z", + "new_balance":"4246.44", + "value":"-53.18" + } + }, + { + "id":"424a333f-6599-4ed4-89cd-c75d3f85ad4c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T17:40:50.823Z", + "completed":"2016-04-09T17:40:50.823Z", + "new_balance":"4221.57", + "value":"-24.87" + } + }, + { + "id":"36beb272-e0d2-4326-a49e-539b4dceaeef", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:08:27.019Z", + "completed":"2016-04-10T03:08:27.019Z", + "new_balance":"4182.40", + "value":"-39.17" + } + }, + { + "id":"60777040-51d4-4ca5-aa28-dd38ef19647c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:52:45.329Z", + "completed":"2016-04-10T03:52:45.329Z", + "new_balance":"4157.84", + "value":"-24.56" + } + }, + { + "id":"44a406e9-d3f1-4284-a4ca-feb39818a78a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T04:06:33.488Z", + "completed":"2016-04-10T04:06:33.488Z", + "new_balance":"4141.44", + "value":"-16.40" + } + }, + { + "id":"14f631bf-5fe9-4054-88d0-d6f547787405", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T14:25:31.266Z", + "completed":"2016-04-10T14:25:31.266Z", + "new_balance":"4121.37", + "value":"-20.07" + } + }, + { + "id":"d0ef6173-6ee2-4e03-a785-d27ca6e208d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T07:01:07.362Z", + "completed":"2016-04-11T07:01:07.362Z", + "new_balance":"4060.19", + "value":"-61.18" + } + }, + { + "id":"2d5398e1-0e2f-4a4e-b789-1677a0759cc4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T11:28:47.034Z", + "completed":"2016-04-11T11:28:47.034Z", + "new_balance":"4028.87", + "value":"-31.32" + } + }, + { + "id":"0a48a71e-cba0-473d-882c-dad36459c95a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T16:46:39.338Z", + "completed":"2016-04-11T16:46:39.338Z", + "new_balance":"3975.69", + "value":"-53.18" + } + }, + { + "id":"13806817-a845-4e2f-aa61-9c68bf1906ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T17:22:55.684Z", + "completed":"2016-04-11T17:22:55.684Z", + "new_balance":"3969.54", + "value":"-6.15" + } + }, + { + "id":"bd5e40e9-c15b-44c5-9189-83a6c8ae6792", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T21:17:32.375Z", + "completed":"2016-04-11T21:17:32.375Z", + "new_balance":"3939.14", + "value":"-30.40" + } + }, + { + "id":"770e2f4f-aa82-4df7-b215-84c1bee42565", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T03:14:48.426Z", + "completed":"2016-04-21T03:14:48.426Z", + "new_balance":"3885.96", + "value":"-53.18" + } + }, + { + "id":"11eda351-4271-4af7-a644-8e81caeb65a8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T10:19:12.422Z", + "completed":"2016-04-23T10:19:12.422Z", + "new_balance":"3870.13", + "value":"-15.83" + } + }, + { + "id":"3d006ec1-1a0e-4cc5-a268-5741379a6e95", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T03:32:18.530Z", + "completed":"2016-04-29T03:32:18.530Z", + "new_balance":"3811.65", + "value":"-58.48" + } + }, + { + "id":"f8b9915b-c6c0-49c2-8e0a-4f8e2273bbbf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T10:39:51.721Z", + "completed":"2016-04-29T10:39:51.721Z", + "new_balance":"3777.22", + "value":"-34.43" + } + }, + { + "id":"63d674c6-feea-4583-94c3-cfe44955fb87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T20:05:45.443Z", + "completed":"2016-04-29T20:05:45.443Z", + "new_balance":"4965.73", + "value":"1188.51" + } + }, + { + "id":"d76c0e3c-7375-4455-a60b-076d8f09982d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T00:21:50.099Z", + "completed":"2016-04-30T00:21:50.099Z", + "new_balance":"4923.39", + "value":"-42.34" + } + }, + { + "id":"c24382c4-8923-4370-9c9f-7c6ac21b89e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T06:46:26.634Z", + "completed":"2016-05-02T06:46:26.634Z", + "new_balance":"4898.83", + "value":"-24.56" + } + }, + { + "id":"8b5b283a-b9fe-4918-8134-187691877a86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T07:56:53.030Z", + "completed":"2016-05-02T07:56:53.030Z", + "new_balance":"4388.29", + "value":"-510.54" + } + }, + { + "id":"02a0bc31-5257-4aed-a103-67dd8b7ab97e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:56:38.373Z", + "completed":"2016-05-02T11:56:38.373Z", + "new_balance":"4314.36", + "value":"-73.93" + } + }, + { + "id":"3e86b9ce-61e1-4dc1-83ac-f8f58674cf31", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T23:39:09.262Z", + "completed":"2016-05-02T23:39:09.262Z", + "new_balance":"4252.49", + "value":"-61.87" + } + }, + { + "id":"464bb3a1-f609-4746-979d-b0c9b458eb71", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T08:18:26.047Z", + "completed":"2016-05-06T08:18:26.047Z", + "new_balance":"4208.51", + "value":"-43.98" + } + }, + { + "id":"6552bce4-3261-42e4-98f1-9474d3ff2619", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T05:36:15.948Z", + "completed":"2016-05-07T05:36:15.948Z", + "new_balance":"4167.38", + "value":"-41.13" + } + }, + { + "id":"7d8abbc5-bd6b-40c2-a33c-016a7924d462", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:58:44.250Z", + "completed":"2016-05-07T14:58:44.250Z", + "new_balance":"4137.50", + "value":"-29.88" + } + }, + { + "id":"07d1f072-210c-4dc1-a5b3-4188bfee4cec", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T16:26:31.359Z", + "completed":"2016-05-07T16:26:31.359Z", + "new_balance":"4109.65", + "value":"-27.85" + } + }, + { + "id":"7ffb50ed-696b-412e-884f-197c091bc271", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:08:53.414Z", + "completed":"2016-05-07T20:08:53.414Z", + "new_balance":"4098.74", + "value":"-10.91" + } + }, + { + "id":"7e276f25-cc3f-4d37-9c8d-8ddb14565fda", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T04:11:29.371Z", + "completed":"2016-05-08T04:11:29.371Z", + "new_balance":"4057.82", + "value":"-40.92" + } + }, + { + "id":"92881bdc-fff0-4310-8cb3-87ff8780ec87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T19:36:33.190Z", + "completed":"2016-05-09T19:36:33.190Z", + "new_balance":"4023.39", + "value":"-34.43" + } + }, + { + "id":"ffb23970-d3e1-4d53-9480-fb910a9fdf8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:27:15.034Z", + "completed":"2016-05-13T19:27:15.034Z", + "new_balance":"3970.21", + "value":"-53.18" + } + }, + { + "id":"a791ba10-ca6f-4643-bdee-9eb7a302aaed", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T17:32:34.809Z", + "completed":"2016-05-26T17:32:34.809Z", + "new_balance":"3917.03", + "value":"-53.18" + } + }, + { + "id":"65272d51-62e2-49f2-90b3-a898f4fc8e9b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:47:54.134Z", + "completed":"2016-05-26T21:47:54.134Z", + "new_balance":"3906.12", + "value":"-10.91" + } + }, + { + "id":"40468a3d-ec70-4cef-bb81-c4518ea10eca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T16:08:14.092Z", + "completed":"2016-05-27T16:08:14.092Z", + "new_balance":"3889.38", + "value":"-16.74" + } + }, + { + "id":"6b30045f-6064-41d8-9c2d-c482cd50c7f2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T22:31:57.484Z", + "completed":"2016-05-27T22:31:57.484Z", + "new_balance":"3830.90", + "value":"-58.48" + } + }, + { + "id":"244123f0-2825-49bb-8099-6edfe9228c94", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T09:16:05.073Z", + "completed":"2016-05-30T09:16:05.073Z", + "new_balance":"3796.47", + "value":"-34.43" + } + }, + { + "id":"9fa245f5-5964-40c3-9975-cd2613209484", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T13:51:44.554Z", + "completed":"2016-05-30T13:51:44.554Z", + "new_balance":"4984.98", + "value":"1188.51" + } + }, + { + "id":"15a40e84-dc96-4156-a5d3-76e0ff7fc104", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T14:37:42.998Z", + "completed":"2016-05-30T14:37:42.998Z", + "new_balance":"4942.64", + "value":"-42.34" + } + }, + { + "id":"2f5ea592-a65a-48f7-b2d6-8471aaf0c7ab", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T07:45:44.720Z", + "completed":"2016-06-01T07:45:44.720Z", + "new_balance":"4868.71", + "value":"-73.93" + } + }, + { + "id":"a4405051-fc77-4989-9ced-f84e51612292", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T07:47:08.389Z", + "completed":"2016-06-01T07:47:08.389Z", + "new_balance":"4815.53", + "value":"-53.18" + } + }, + { + "id":"5faa2c3e-0160-41dc-97a9-336546e9bebb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T08:32:52.805Z", + "completed":"2016-06-01T08:32:52.805Z", + "new_balance":"4781.10", + "value":"-34.43" + } + }, + { + "id":"6a59f26d-515a-4027-90b6-0bf3ca060799", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T08:49:21.604Z", + "completed":"2016-06-01T08:49:21.604Z", + "new_balance":"4756.54", + "value":"-24.56" + } + }, + { + "id":"749cfca3-ee30-4cd1-a80c-a4f03e60ca87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T11:21:38.212Z", + "completed":"2016-06-01T11:21:38.212Z", + "new_balance":"4694.67", + "value":"-61.87" + } + }, + { + "id":"dbe0c072-e199-438a-a424-21bc72c9a979", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T13:10:47.086Z", + "completed":"2016-06-01T13:10:47.086Z", + "new_balance":"4641.49", + "value":"-53.18" + } + }, + { + "id":"b16ebca2-57c9-4765-b165-cd626a549b14", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T13:37:20.042Z", + "completed":"2016-06-01T13:37:20.042Z", + "new_balance":"4130.95", + "value":"-510.54" + } + }, + { + "id":"fb1fa820-18a0-4d04-83a1-a380a861d1bb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:49:10.161Z", + "completed":"2016-06-01T22:49:10.161Z", + "new_balance":"4117.28", + "value":"-13.67" + } + }, + { + "id":"cb99a9c8-d4c8-4d2e-a069-c0458b498876", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T23:18:07.635Z", + "completed":"2016-06-01T23:18:07.635Z", + "new_balance":"4068.62", + "value":"-48.66" + } + }, + { + "id":"3ece1106-9640-47ae-9c4d-00c624eb6beb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T15:50:11.212Z", + "completed":"2016-06-02T15:50:11.212Z", + "new_balance":"4057.62", + "value":"-11.00" + } + }, + { + "id":"d3056cfe-53f8-43ff-9206-51c0183eaf5d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T18:19:59.156Z", + "completed":"2016-06-02T18:19:59.156Z", + "new_balance":"4045.69", + "value":"-11.93" + } + }, + { + "id":"1427d5c1-8a7f-43fc-9ce7-18279b354e0a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T19:08:49.537Z", + "completed":"2016-06-02T19:08:49.537Z", + "new_balance":"3988.01", + "value":"-57.68" + } + }, + { + "id":"7f15dfd6-4e76-4e26-a948-e31fa84b9e41", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T08:19:51.601Z", + "completed":"2016-06-04T08:19:51.601Z", + "new_balance":"3941.08", + "value":"-46.93" + } + }, + { + "id":"b950d374-ed26-4056-9d2f-24e95fa3ae04", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T13:25:59.671Z", + "completed":"2016-06-04T13:25:59.671Z", + "new_balance":"3915.71", + "value":"-25.37" + } + }, + { + "id":"981f3bfb-754b-471d-9c71-c5f4956dec7a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T17:07:54.796Z", + "completed":"2016-06-04T17:07:54.796Z", + "new_balance":"3873.37", + "value":"-42.34" + } + }, + { + "id":"959941c6-159f-4c19-ad01-46cbcbe34b20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T07:51:59.126Z", + "completed":"2016-06-05T07:51:59.126Z", + "new_balance":"3846.53", + "value":"-26.84" + } + }, + { + "id":"0e470e29-6046-4a7f-bdf2-109e90f2fa34", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:54:51.368Z", + "completed":"2016-06-05T10:54:51.368Z", + "new_balance":"3779.95", + "value":"-66.58" + } + }, + { + "id":"221d88aa-77af-4d21-8474-a2803eb0019a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T23:53:22.068Z", + "completed":"2016-06-18T23:53:22.068Z", + "new_balance":"3726.77", + "value":"-53.18" + } + }, + { + "id":"7ffff937-7e54-4c47-9d9f-33fdf9d019dc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T03:30:43.704Z", + "completed":"2016-06-30T03:30:43.704Z", + "new_balance":"3692.34", + "value":"-34.43" + } + }, + { + "id":"abe60493-2272-4888-ab4a-609c94f2c747", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T07:13:54.554Z", + "completed":"2016-06-30T07:13:54.554Z", + "new_balance":"3650.00", + "value":"-42.34" + } + }, + { + "id":"76581be0-94f9-4916-bf49-c99f82b21738", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T10:20:16.921Z", + "completed":"2016-06-30T10:20:16.921Z", + "new_balance":"3608.47", + "value":"-41.53" + } + }, + { + "id":"b14be296-207a-4914-b7d8-726c96cc1118", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T11:26:05.336Z", + "completed":"2016-06-30T11:26:05.336Z", + "new_balance":"4796.98", + "value":"1188.51" + } + }, + { + "id":"3f2482f4-98b7-4e78-bbbc-78517f13e020", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:46:42.989Z", + "completed":"2016-07-01T05:46:42.989Z", + "new_balance":"4735.11", + "value":"-61.87" + } + }, + { + "id":"5de509f8-86fc-41b2-b18b-6c5728bad68e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T01:55:13.692Z", + "completed":"2016-07-03T01:55:13.692Z", + "new_balance":"4700.68", + "value":"-34.43" + } + }, + { + "id":"dbc3a22c-b87d-4134-a1d9-97c7d6e147b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T07:21:10.066Z", + "completed":"2016-07-03T07:21:10.066Z", + "new_balance":"4190.14", + "value":"-510.54" + } + }, + { + "id":"eb0e10ed-b5c0-49b8-a3a1-2d0085dc15e0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T22:18:03.685Z", + "completed":"2016-07-03T22:18:03.685Z", + "new_balance":"4116.21", + "value":"-73.93" + } + }, + { + "id":"fb751c63-823c-4aa2-b11c-a3ebffb22f3d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T22:50:53.809Z", + "completed":"2016-07-03T22:50:53.809Z", + "new_balance":"4091.65", + "value":"-24.56" + } + }, + { + "id":"c7526bdb-dfce-4e9e-8048-34dda58ca959", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T11:14:57.380Z", + "completed":"2016-07-05T11:14:57.380Z", + "new_balance":"4038.47", + "value":"-53.18" + } + }, + { + "id":"291163b4-0f2a-4544-aed6-dadcaa5f4135", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:27:31.878Z", + "completed":"2016-07-05T15:27:31.878Z", + "new_balance":"4025.46", + "value":"-13.01" + } + }, + { + "id":"9e2cb4f7-79f3-45c8-8942-341486b99bdf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T23:11:18.303Z", + "completed":"2016-07-05T23:11:18.303Z", + "new_balance":"3981.48", + "value":"-43.98" + } + }, + { + "id":"7f7fc87f-e425-438e-ac8c-d3cc578f0391", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T00:41:42.294Z", + "completed":"2016-07-06T00:41:42.294Z", + "new_balance":"3951.60", + "value":"-29.88" + } + }, + { + "id":"9e301cf9-ba8f-41a3-a6c4-39a62b3c48a1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T05:58:11.905Z", + "completed":"2016-07-06T05:58:11.905Z", + "new_balance":"3928.91", + "value":"-22.69" + } + }, + { + "id":"37221ed9-1c1d-4aa4-8a4d-aba903e0ba17", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T03:08:03.881Z", + "completed":"2016-07-07T03:08:03.881Z", + "new_balance":"3889.74", + "value":"-39.17" + } + }, + { + "id":"94d9ff92-5183-4bc5-92c6-355379ee55fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T07:04:00.795Z", + "completed":"2016-07-10T07:04:00.795Z", + "new_balance":"3864.87", + "value":"-24.87" + } + }, + { + "id":"a3f876c4-b3f2-4555-bb7a-466caa8dbade", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T22:02:57.025Z", + "completed":"2016-07-10T22:02:57.025Z", + "new_balance":"3811.69", + "value":"-53.18" + } + }, + { + "id":"c907eb5b-56f2-4ae5-a15b-aba2a05f8900", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:57:14.990Z", + "completed":"2016-07-12T16:57:14.990Z", + "new_balance":"3791.62", + "value":"-20.07" + } + }, + { + "id":"7a7641be-7a8a-451a-9b6a-de385d7b5e82", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:43:03.826Z", + "completed":"2016-07-12T19:43:03.826Z", + "new_balance":"3752.45", + "value":"-39.17" + } + }, + { + "id":"9bcc73ff-1d20-467c-8385-65deaf3ca60a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T23:08:18.025Z", + "completed":"2016-07-12T23:08:18.025Z", + "new_balance":"3727.89", + "value":"-24.56" + } + }, + { + "id":"ac832673-135a-4563-b3eb-d4a4dff7e872", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T20:36:21.205Z", + "completed":"2016-07-15T20:36:21.205Z", + "new_balance":"3711.49", + "value":"-16.40" + } + }, + { + "id":"16bdc3a9-cf51-4392-ac40-6e06ebaccea6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T09:04:24.293Z", + "completed":"2016-07-16T09:04:24.293Z", + "new_balance":"3658.31", + "value":"-53.18" + } + }, + { + "id":"5b282985-abcd-403b-998d-16c0b49a95f9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:12:43.745Z", + "completed":"2016-07-16T16:12:43.745Z", + "new_balance":"3652.16", + "value":"-6.15" + } + }, + { + "id":"a9fb7917-7817-406d-a6fb-e3ec06f83374", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T12:06:24.123Z", + "completed":"2016-07-17T12:06:24.123Z", + "new_balance":"3620.84", + "value":"-31.32" + } + }, + { + "id":"4ac8186a-2e37-4171-96cf-1653bc5048d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:47:28.205Z", + "completed":"2016-07-17T16:47:28.205Z", + "new_balance":"3559.66", + "value":"-61.18" + } + }, + { + "id":"9b1697c3-95ea-4789-8505-78f9073cc240", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T09:39:35.534Z", + "completed":"2016-07-19T09:39:35.534Z", + "new_balance":"3529.26", + "value":"-30.40" + } + }, + { + "id":"8e45c384-a7d3-40b6-b123-a3246ac9506f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T19:46:20.151Z", + "completed":"2016-07-20T19:46:20.151Z", + "new_balance":"3476.08", + "value":"-53.18" + } + }, + { + "id":"acd363b7-565c-49fd-919c-6665884b4afe", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T21:15:27.076Z", + "completed":"2016-07-23T21:15:27.076Z", + "new_balance":"3460.25", + "value":"-15.83" + } + }, + { + "id":"8bac7133-18cd-461f-a70f-091496b6e9ce", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T15:31:13.432Z", + "completed":"2016-07-26T15:31:13.432Z", + "new_balance":"3401.77", + "value":"-58.48" + } + }, + { + "id":"728a160d-e7ae-4bb4-b623-ba210fabb5fc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T03:34:39.420Z", + "completed":"2016-07-27T03:34:39.420Z", + "new_balance":"4590.28", + "value":"1188.51" + } + }, + { + "id":"6ff00e84-b2d2-4aae-bc20-779d77d915a7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T14:11:10.777Z", + "completed":"2016-07-28T14:11:10.777Z", + "new_balance":"4555.85", + "value":"-34.43" + } + }, + { + "id":"5a69939b-dbb4-47a1-bd74-d058dcfc9557", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T14:41:55.334Z", + "completed":"2016-07-30T14:41:55.334Z", + "new_balance":"4513.51", + "value":"-42.34" + } + }, + { + "id":"ba4b0d3f-10a4-483a-87ad-c1c57f3aab84", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T13:19:29.524Z", + "completed":"2016-08-01T13:19:29.524Z", + "new_balance":"4451.64", + "value":"-61.87" + } + }, + { + "id":"64038e4a-c3bf-4168-b43a-be03da81849d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T00:39:46.948Z", + "completed":"2016-08-03T00:39:46.948Z", + "new_balance":"3941.10", + "value":"-510.54" + } + }, + { + "id":"d30551ab-7fba-4dd5-a9bb-b552603cdcb5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:05:02.325Z", + "completed":"2016-08-03T12:05:02.325Z", + "new_balance":"3867.17", + "value":"-73.93" + } + }, + { + "id":"19c1137c-71b8-45db-a6d4-01e6bedde697", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T12:36:50.860Z", + "completed":"2016-08-03T12:36:50.860Z", + "new_balance":"3842.61", + "value":"-24.56" + } + }, + { + "id":"50ca8e3a-7755-4ede-9550-985896ad6e4f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T14:45:54.075Z", + "completed":"2016-08-03T14:45:54.075Z", + "new_balance":"3808.18", + "value":"-34.43" + } + }, + { + "id":"963bb620-4fa0-4f1b-b91c-f401016315ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T10:21:11.937Z", + "completed":"2016-08-08T10:21:11.937Z", + "new_balance":"3755.00", + "value":"-53.18" + } + }, + { + "id":"ff386361-ddaa-4910-a1f6-796b08ec5126", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T18:46:30.136Z", + "completed":"2016-08-08T18:46:30.136Z", + "new_balance":"3711.02", + "value":"-43.98" + } + }, + { + "id":"be4db306-0ec5-4079-be36-5d964681c55b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T09:14:00.568Z", + "completed":"2016-08-11T09:14:00.568Z", + "new_balance":"3721.91", + "value":"10.89" + } + }, + { + "id":"bcc73b34-765d-4fb5-8a0b-0bcb65d0403a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T08:11:35.251Z", + "completed":"2016-08-13T08:11:35.251Z", + "new_balance":"3692.03", + "value":"-29.88" + } + }, + { + "id":"3ecc4c64-f320-42b5-85ba-18e50a032e68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T05:39:53.308Z", + "completed":"2016-08-14T05:39:53.308Z", + "new_balance":"3664.18", + "value":"-27.85" + } + }, + { + "id":"e2fc7940-673f-408d-89ab-7a3dfbba8a58", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T05:12:37.193Z", + "completed":"2016-08-17T05:12:37.193Z", + "new_balance":"3653.27", + "value":"-10.91" + } + }, + { + "id":"c7afe06e-3932-4d4b-ba06-5582cbc4149e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T23:57:44.689Z", + "completed":"2016-08-21T23:57:44.689Z", + "new_balance":"3612.14", + "value":"-41.13" + } + }, + { + "id":"e36e9fa3-dc81-4398-9e72-fc85203117b0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T15:14:13.459Z", + "completed":"2016-08-23T15:14:13.459Z", + "new_balance":"3571.22", + "value":"-40.92" + } + }, + { + "id":"ce821997-0715-47ff-b4a4-ebcc16c90490", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:04:34.900Z", + "completed":"2016-08-23T23:04:34.900Z", + "new_balance":"3518.04", + "value":"-53.18" + } + }, + { + "id":"88a06204-f4b4-4538-939f-3c894c4eeb03", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T20:01:34.478Z", + "completed":"2016-08-24T20:01:34.478Z", + "new_balance":"3507.13", + "value":"-10.91" + } + }, + { + "id":"4be41a77-c92f-4ec0-a15e-66266cc5a31e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T08:07:27.219Z", + "completed":"2016-08-27T08:07:27.219Z", + "new_balance":"3448.65", + "value":"-58.48" + } + }, + { + "id":"4ea9cfff-d0fb-4810-ad3e-3e793112a2fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T12:09:42.237Z", + "completed":"2016-08-27T12:09:42.237Z", + "new_balance":"4637.16", + "value":"1188.51" + } + }, + { + "id":"d396ba3a-da96-49d3-98b5-5b9858fb67de", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T21:46:54.251Z", + "completed":"2016-08-27T21:46:54.251Z", + "new_balance":"4620.42", + "value":"-16.74" + } + }, + { + "id":"ec8e59d9-1d70-4363-a2bc-f986fd844e26", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T19:07:14.552Z", + "completed":"2016-08-28T19:07:14.552Z", + "new_balance":"4585.99", + "value":"-34.43" + } + }, + { + "id":"2ae3427a-8024-4bc7-a974-07a790bc7f8d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T15:18:34.166Z", + "completed":"2016-08-30T15:18:34.166Z", + "new_balance":"4543.65", + "value":"-42.34" + } + }, + { + "id":"ce16a996-e390-460d-b755-0bb6884a5761", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:30:29.190Z", + "completed":"2016-09-01T14:30:29.190Z", + "new_balance":"4481.78", + "value":"-61.87" + } + }, + { + "id":"428bdc99-0a61-4329-afae-d541a59347ba", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T08:41:07.611Z", + "completed":"2016-09-03T08:41:07.611Z", + "new_balance":"4407.85", + "value":"-73.93" + } + }, + { + "id":"9969e9e1-d5b0-4fb6-909b-ca88904f41dd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T13:46:28.387Z", + "completed":"2016-09-03T13:46:28.387Z", + "new_balance":"4373.42", + "value":"-34.43" + } + }, + { + "id":"16486864-fc39-4708-b746-4830572449b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T15:09:12.284Z", + "completed":"2016-09-03T15:09:12.284Z", + "new_balance":"4348.86", + "value":"-24.56" + } + }, + { + "id":"3b1bb60e-7872-4d5e-af34-1d582226efa1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T20:12:02.449Z", + "completed":"2016-09-03T20:12:02.449Z", + "new_balance":"3838.32", + "value":"-510.54" + } + }, + { + "id":"710e125a-d11b-441a-bfd3-bc0a6a983f94", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T09:45:20.589Z", + "completed":"2016-09-05T09:45:20.589Z", + "new_balance":"3785.14", + "value":"-53.18" + } + }, + { + "id":"6521ad8a-3f6c-4dc6-977a-c68d0ca36973", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T18:55:20.233Z", + "completed":"2016-09-05T18:55:20.233Z", + "new_balance":"3736.48", + "value":"-48.66" + } + }, + { + "id":"4e78920b-c340-4245-b67b-a35d52cd6105", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T10:51:22.194Z", + "completed":"2016-09-07T10:51:22.194Z", + "new_balance":"3722.81", + "value":"-13.67" + } + }, + { + "id":"bc9048f5-7185-4dd0-b275-47276730f93d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T23:41:46.440Z", + "completed":"2016-09-09T23:41:46.440Z", + "new_balance":"3669.63", + "value":"-53.18" + } + }, + { + "id":"5cb5bed4-c647-499b-bbdb-3e0ab71e543c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T17:45:37.845Z", + "completed":"2016-09-11T17:45:37.845Z", + "new_balance":"3658.63", + "value":"-11.00" + } + }, + { + "id":"d7574a0e-a1c2-42ac-956d-270d41f166c2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T01:26:29.430Z", + "completed":"2016-09-13T01:26:29.430Z", + "new_balance":"3600.95", + "value":"-57.68" + } + }, + { + "id":"48182e67-ac71-47f7-b947-38c45653d143", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:36:19.495Z", + "completed":"2016-09-14T00:36:19.495Z", + "new_balance":"3664.31", + "value":"63.36" + } + }, + { + "id":"4d279df1-3741-41a9-926c-4c98e98090d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:55:26.665Z", + "completed":"2016-09-14T19:55:26.665Z", + "new_balance":"3652.38", + "value":"-11.93" + } + }, + { + "id":"63d263a0-a0e0-4417-9044-c6e7368cd04e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T22:22:47.686Z", + "completed":"2016-09-15T22:22:47.686Z", + "new_balance":"3610.04", + "value":"-42.34" + } + }, + { + "id":"99f59fab-e57d-4db7-9636-724ad7332faa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T14:03:21.545Z", + "completed":"2016-09-26T14:03:21.545Z", + "new_balance":"3584.67", + "value":"-25.37" + } + }, + { + "id":"02ae186b-bd50-4c73-99d1-a139df88d58a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T15:43:08.722Z", + "completed":"2016-09-26T15:43:08.722Z", + "new_balance":"3557.83", + "value":"-26.84" + } + }, + { + "id":"f6ff5540-861f-4c32-ad1b-9bffd06b8b81", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T21:20:02.365Z", + "completed":"2016-09-26T21:20:02.365Z", + "new_balance":"3510.90", + "value":"-46.93" + } + }, + { + "id":"7c2e7a7d-78b8-40dd-846c-8e3f9c569596", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T00:17:47.623Z", + "completed":"2016-09-27T00:17:47.623Z", + "new_balance":"3444.32", + "value":"-66.58" + } + }, + { + "id":"82cee88c-3d05-43fd-8b78-6980bf2cefe3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T16:20:34.466Z", + "completed":"2016-09-27T16:20:34.466Z", + "new_balance":"3391.14", + "value":"-53.18" + } + }, + { + "id":"34a20f8a-47a6-44d2-856c-f53c8df7f64c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T20:26:03.872Z", + "completed":"2016-09-27T20:26:03.872Z", + "new_balance":"4579.65", + "value":"1188.51" + } + }, + { + "id":"1da06c1b-ead5-4afc-8ad3-459dd693e13b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T13:01:21.386Z", + "completed":"2016-09-28T13:01:21.386Z", + "new_balance":"4545.22", + "value":"-34.43" + } + }, + { + "id":"2f633868-9c2f-426e-9527-1796f4aa6812", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T10:25:12.472Z", + "completed":"2016-09-30T10:25:12.472Z", + "new_balance":"4502.88", + "value":"-42.34" + } + }, + { + "id":"0327c05d-2027-470b-b13d-a74433b69057", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T01:00:53.428Z", + "completed":"2016-10-01T01:00:53.428Z", + "new_balance":"4478.32", + "value":"-24.56" + } + }, + { + "id":"d3b6c61b-8df3-4300-9802-7d04cd43b8f4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T04:52:13.056Z", + "completed":"2016-10-01T04:52:13.056Z", + "new_balance":"4443.89", + "value":"-34.43" + } + }, + { + "id":"4266b57e-55ed-4bf0-a788-2bf43ef5a74c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:03:24.878Z", + "completed":"2016-10-01T05:03:24.878Z", + "new_balance":"4382.02", + "value":"-61.87" + } + }, + { + "id":"f821737f-6d82-437f-ace0-efb10ded3ac1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T11:21:17.518Z", + "completed":"2016-10-01T11:21:17.518Z", + "new_balance":"4308.09", + "value":"-73.93" + } + }, + { + "id":"a01ae30e-b528-4f1c-be6d-777ab7e843b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T18:14:01.809Z", + "completed":"2016-10-01T18:14:01.809Z", + "new_balance":"3797.55", + "value":"-510.54" + } + }, + { + "id":"ec42eed0-3980-4ba1-8da2-a5418d8ca628", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T05:51:39.028Z", + "completed":"2016-10-05T05:51:39.028Z", + "new_balance":"3774.86", + "value":"-22.69" + } + }, + { + "id":"4de1f0c5-a897-4e23-9d9f-8422256e9085", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:55:09.103Z", + "completed":"2016-10-05T12:55:09.103Z", + "new_balance":"3761.85", + "value":"-13.01" + } + }, + { + "id":"269e99ab-410d-4635-9de6-71165e5367cf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T19:49:00.751Z", + "completed":"2016-10-05T19:49:00.751Z", + "new_balance":"3708.67", + "value":"-53.18" + } + }, + { + "id":"15cb3c4d-0754-4ada-800c-272b6b1b55de", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T22:42:44.837Z", + "completed":"2016-10-05T22:42:44.837Z", + "new_balance":"3664.69", + "value":"-43.98" + } + }, + { + "id":"c7dabe40-acfb-4ecf-b720-01181ce8dcd4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T07:04:50.470Z", + "completed":"2016-10-07T07:04:50.470Z", + "new_balance":"3634.81", + "value":"-29.88" + } + }, + { + "id":"67245ebd-0217-466d-b71f-0b180edafec2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T13:06:58.960Z", + "completed":"2016-10-09T13:06:58.960Z", + "new_balance":"3609.94", + "value":"-24.87" + } + }, + { + "id":"993524cd-d601-41b9-b26c-3a98afbab327", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T17:02:38.361Z", + "completed":"2016-10-09T17:02:38.361Z", + "new_balance":"3556.76", + "value":"-53.18" + } + }, + { + "id":"ea0a81bf-ec29-4c41-a9ec-928235e71386", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T03:03:47.857Z", + "completed":"2016-10-10T03:03:47.857Z", + "new_balance":"3540.36", + "value":"-16.40" + } + }, + { + "id":"b39dccff-ef65-4870-8a09-eb42f570a516", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T03:15:48.540Z", + "completed":"2016-10-10T03:15:48.540Z", + "new_balance":"3515.80", + "value":"-24.56" + } + }, + { + "id":"79670868-b581-47e7-90b5-e18b5dfa1c67", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T09:25:16.213Z", + "completed":"2016-10-10T09:25:16.213Z", + "new_balance":"3476.63", + "value":"-39.17" + } + }, + { + "id":"5408cc6d-3a03-4b56-9522-3cd6ef45790f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T18:45:18.099Z", + "completed":"2016-10-10T18:45:18.099Z", + "new_balance":"3456.56", + "value":"-20.07" + } + }, + { + "id":"0efb93d0-8117-46a8-a591-b01e74d5b2b2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T00:31:38.082Z", + "completed":"2016-10-11T00:31:38.082Z", + "new_balance":"3426.16", + "value":"-30.40" + } + }, + { + "id":"1df47138-9edb-4ad1-9234-686723fb82bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T10:35:16.161Z", + "completed":"2016-10-11T10:35:16.161Z", + "new_balance":"3364.98", + "value":"-61.18" + } + }, + { + "id":"393e7de0-5697-4898-9ea5-51cfac592582", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:16:31.589Z", + "completed":"2016-10-11T13:16:31.589Z", + "new_balance":"3358.83", + "value":"-6.15" + } + }, + { + "id":"6a3d89e0-73d3-4495-a5d9-d47739bc7760", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T19:23:30.982Z", + "completed":"2016-10-11T19:23:30.982Z", + "new_balance":"3305.65", + "value":"-53.18" + } + }, + { + "id":"f4d8c6aa-0af2-4aab-b737-e9bedd1e021d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T22:31:50.720Z", + "completed":"2016-10-11T22:31:50.720Z", + "new_balance":"3274.33", + "value":"-31.32" + } + }, + { + "id":"5bfbe73b-aaad-4966-9353-1c97ad8beb7a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T08:10:46.089Z", + "completed":"2016-10-21T08:10:46.089Z", + "new_balance":"3221.15", + "value":"-53.18" + } + }, + { + "id":"6fd3cd32-2636-49ef-bdcd-b6c4e785c6f8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T02:44:22.761Z", + "completed":"2016-10-23T02:44:22.761Z", + "new_balance":"3205.32", + "value":"-15.83" + } + }, + { + "id":"0dafbf76-151c-40aa-bc92-b6cb82afded0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T03:30:56.937Z", + "completed":"2016-10-29T03:30:56.937Z", + "new_balance":"3146.84", + "value":"-58.48" + } + }, + { + "id":"6ed123e5-fd9a-421d-91e8-537e5993309b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T03:36:11.027Z", + "completed":"2016-10-29T03:36:11.027Z", + "new_balance":"3112.41", + "value":"-34.43" + } + }, + { + "id":"48192cc6-7933-4076-b911-9519ddee464d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T22:43:18.165Z", + "completed":"2016-10-29T22:43:18.165Z", + "new_balance":"4300.92", + "value":"1188.51" + } + }, + { + "id":"396220ab-1499-46e0-9169-100e1c5ea3d0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T14:34:07.147Z", + "completed":"2016-10-30T14:34:07.147Z", + "new_balance":"4258.58", + "value":"-42.34" + } + }, + { + "id":"d9143690-0f94-4499-94cb-16f86a75654b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:08:51.762Z", + "completed":"2016-11-02T14:08:51.762Z", + "new_balance":"4184.65", + "value":"-73.93" + } + }, + { + "id":"0c865e0f-a42c-478d-ba64-941bfd928a78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T21:15:34.283Z", + "completed":"2016-11-02T21:15:34.283Z", + "new_balance":"4160.09", + "value":"-24.56" + } + }, + { + "id":"e8a119ad-6643-4916-a141-ed4f3c528429", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T21:17:21.262Z", + "completed":"2016-11-02T21:17:21.262Z", + "new_balance":"4098.22", + "value":"-61.87" + } + }, + { + "id":"0cade5dd-91a1-4d82-bae0-bacc03b29936", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T23:45:24.557Z", + "completed":"2016-11-02T23:45:24.557Z", + "new_balance":"3587.68", + "value":"-510.54" + } + }, + { + "id":"36de83af-f739-461f-b03c-3b543d347a38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T06:39:48.334Z", + "completed":"2016-11-06T06:39:48.334Z", + "new_balance":"3543.70", + "value":"-43.98" + } + }, + { + "id":"4154c633-ceba-457e-9539-779ac848b651", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T09:39:51.149Z", + "completed":"2016-11-07T09:39:51.149Z", + "new_balance":"3502.57", + "value":"-41.13" + } + }, + { + "id":"afca52f0-2f24-4f34-93b0-2ca4f75199ac", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T10:46:40.820Z", + "completed":"2016-11-07T10:46:40.820Z", + "new_balance":"3474.72", + "value":"-27.85" + } + }, + { + "id":"d858c62b-38fd-45ab-a340-f9b376622a40", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T16:47:42.382Z", + "completed":"2016-11-07T16:47:42.382Z", + "new_balance":"3444.84", + "value":"-29.88" + } + }, + { + "id":"31c6a487-b398-46e7-aa23-bc1c3a08b99b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T22:26:55.665Z", + "completed":"2016-11-07T22:26:55.665Z", + "new_balance":"3433.93", + "value":"-10.91" + } + }, + { + "id":"e9fc7ffa-fbc3-4342-b544-e871d39a494c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T14:24:57.937Z", + "completed":"2016-11-08T14:24:57.937Z", + "new_balance":"3393.01", + "value":"-40.92" + } + }, + { + "id":"ab60aff3-3c50-4679-8162-fac1276d5d4b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T10:03:04.919Z", + "completed":"2016-11-09T10:03:04.919Z", + "new_balance":"3358.58", + "value":"-34.43" + } + }, + { + "id":"572f08cb-b0f4-4288-9052-7cbb1d20983d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T18:58:28.130Z", + "completed":"2016-11-13T18:58:28.130Z", + "new_balance":"3305.40", + "value":"-53.18" + } + }, + { + "id":"dd30c6dc-a714-48d9-9ebb-a10ec7c692d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T10:08:13.593Z", + "completed":"2016-11-26T10:08:13.593Z", + "new_balance":"3252.22", + "value":"-53.18" + } + }, + { + "id":"49bce125-1bc5-4852-8f8f-28e93ba08cdb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T10:52:33.740Z", + "completed":"2016-11-26T10:52:33.740Z", + "new_balance":"3241.31", + "value":"-10.91" + } + }, + { + "id":"d9606f7b-9cda-4cb5-b1e5-5fb67f7d5a4d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T03:06:19.177Z", + "completed":"2016-11-27T03:06:19.177Z", + "new_balance":"3182.83", + "value":"-58.48" + } + }, + { + "id":"37d54d6d-fe6d-458e-935a-e074b9f1e2ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T14:13:44.507Z", + "completed":"2016-11-27T14:13:44.507Z", + "new_balance":"3166.09", + "value":"-16.74" + } + }, + { + "id":"18123fcf-a85a-4f85-8b5d-448330b134b7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T02:04:13.316Z", + "completed":"2016-11-30T02:04:13.316Z", + "new_balance":"3123.75", + "value":"-42.34" + } + }, + { + "id":"4185b31c-189b-4f20-a877-5f429ec07b3b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T06:23:05.426Z", + "completed":"2016-11-30T06:23:05.426Z", + "new_balance":"4312.26", + "value":"1188.51" + } + }, + { + "id":"d5d06fba-d4db-43ab-8944-4d1e75cee17b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T16:34:48.335Z", + "completed":"2016-11-30T16:34:48.335Z", + "new_balance":"4277.83", + "value":"-34.43" + } + }, + { + "id":"eff4b316-5019-4870-b180-6d597ac6b2a2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T00:33:13.716Z", + "completed":"2016-12-01T00:33:13.716Z", + "new_balance":"4203.90", + "value":"-73.93" + } + }, + { + "id":"dfa9f047-4f8c-41c3-8ca4-13ae4c7ad7a2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T00:52:41.173Z", + "completed":"2016-12-01T00:52:41.173Z", + "new_balance":"4150.72", + "value":"-53.18" + } + }, + { + "id":"bc1a78d4-5aa9-475a-9391-d661efc6810f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T06:25:40.934Z", + "completed":"2016-12-01T06:25:40.934Z", + "new_balance":"4097.54", + "value":"-53.18" + } + }, + { + "id":"241b1dbe-ebf5-45da-8a72-e6d15ad8f17d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T06:46:32.506Z", + "completed":"2016-12-01T06:46:32.506Z", + "new_balance":"3587.00", + "value":"-510.54" + } + }, + { + "id":"41d93973-8fe3-4112-940d-47164094b2e2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T14:20:30.443Z", + "completed":"2016-12-01T14:20:30.443Z", + "new_balance":"3525.13", + "value":"-61.87" + } + }, + { + "id":"3e6ee476-b25a-428a-9ee4-e5159b860609", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:29:31.897Z", + "completed":"2016-12-01T17:29:31.897Z", + "new_balance":"3476.47", + "value":"-48.66" + } + }, + { + "id":"d2aa7f25-1848-418b-aede-349df54186c3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T20:02:52.033Z", + "completed":"2016-12-01T20:02:52.033Z", + "new_balance":"3442.04", + "value":"-34.43" + } + }, + { + "id":"c89ab741-85cb-4857-b937-6bc9115e2801", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T21:54:22.000Z", + "completed":"2016-12-01T21:54:22.000Z", + "new_balance":"3417.48", + "value":"-24.56" + } + }, + { + "id":"d95a5fac-8fa6-41f3-ae52-f1eb7f609f41", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T22:13:25.892Z", + "completed":"2016-12-01T22:13:25.892Z", + "new_balance":"3403.81", + "value":"-13.67" + } + }, + { + "id":"df889faf-c5bb-452d-a7b8-1780d8f96ded", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T17:31:17.718Z", + "completed":"2016-12-02T17:31:17.718Z", + "new_balance":"3392.81", + "value":"-11.00" + } + }, + { + "id":"429becc5-dad8-45ac-8a78-35b50ff1b737", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:54:47.175Z", + "completed":"2016-12-02T20:54:47.175Z", + "new_balance":"3380.88", + "value":"-11.93" + } + }, + { + "id":"11683496-69e6-4bba-aa31-f3cb3c5bb733", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T22:14:45.149Z", + "completed":"2016-12-02T22:14:45.149Z", + "new_balance":"3323.20", + "value":"-57.68" + } + }, + { + "id":"5a33c2dc-8b2b-4498-a634-4e2679b24b7c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T00:13:25.758Z", + "completed":"2016-12-04T00:13:25.758Z", + "new_balance":"3280.86", + "value":"-42.34" + } + }, + { + "id":"2f586916-e016-42b5-a63b-033f72c1bdae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T14:34:25.023Z", + "completed":"2016-12-04T14:34:25.023Z", + "new_balance":"3233.93", + "value":"-46.93" + } + }, + { + "id":"8f710fe6-3cda-464e-94a7-ff407016fa77", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:43:08.152Z", + "completed":"2016-12-04T21:43:08.152Z", + "new_balance":"3208.56", + "value":"-25.37" + } + }, + { + "id":"0d0ce223-d455-446d-bc1e-c2ae9883bd38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T02:19:24.104Z", + "completed":"2016-12-05T02:19:24.104Z", + "new_balance":"3181.72", + "value":"-26.84" + } + }, + { + "id":"5c6284e8-5854-4044-affc-55120e56f57b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T11:40:54.818Z", + "completed":"2016-12-05T11:40:54.818Z", + "new_balance":"3115.14", + "value":"-66.58" + } + }, + { + "id":"f9fe7222-60ae-4b63-96d6-c8974bf51da3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T23:10:16.708Z", + "completed":"2016-12-18T23:10:16.708Z", + "new_balance":"3061.96", + "value":"-53.18" + } + }, + { + "id":"85381608-8a63-416e-8780-c10e76d05b78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T01:06:27.513Z", + "completed":"2016-12-30T01:06:27.513Z", + "new_balance":"3019.62", + "value":"-42.34" + } + }, + { + "id":"e424e6c7-cb1c-4b32-a44f-089035177b77", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T01:49:43.570Z", + "completed":"2016-12-30T01:49:43.570Z", + "new_balance":"4208.13", + "value":"1188.51" + } + }, + { + "id":"c110810e-f678-4cde-9ae1-2cc68b3480f2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T02:30:49.682Z", + "completed":"2016-12-30T02:30:49.682Z", + "new_balance":"4166.60", + "value":"-41.53" + } + }, + { + "id":"a35bc26c-9b23-4f5c-9b6b-5b94982197a6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T09:30:10.620Z", + "completed":"2016-12-30T09:30:10.620Z", + "new_balance":"4132.17", + "value":"-34.43" + } + }, + { + "id":"6a9d8099-192d-4fe7-a34d-49f12e2929cf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T14:28:28.201Z", + "completed":"2017-01-01T14:28:28.201Z", + "new_balance":"4070.30", + "value":"-61.87" + } + }, + { + "id":"e984ab8d-aef6-4317-81c6-b02f6891307a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T21:26:16.430Z", + "completed":"2017-01-01T21:26:16.430Z", + "new_balance":"4008.43", + "value":"-61.87" + } + }, + { + "id":"a448eaaf-a9fc-4f95-b49f-a76daed7effc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T10:25:19.911Z", + "completed":"2017-01-03T10:25:19.911Z", + "new_balance":"3983.87", + "value":"-24.56" + } + }, + { + "id":"cbde2839-1c6e-4ff6-ac6c-dd2dc9c9b4b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T13:43:08.755Z", + "completed":"2017-01-03T13:43:08.755Z", + "new_balance":"3909.94", + "value":"-73.93" + } + }, + { + "id":"002da409-c72b-4b34-af60-55f1dfe2b30b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T20:21:42.123Z", + "completed":"2017-01-03T20:21:42.123Z", + "new_balance":"3875.51", + "value":"-34.43" + } + }, + { + "id":"ff87650f-cdea-4a9c-ab92-fb651acc795a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T23:32:36.862Z", + "completed":"2017-01-03T23:32:36.862Z", + "new_balance":"3364.97", + "value":"-510.54" + } + }, + { + "id":"4f677000-013d-4094-9b42-88e60b58c013", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T10:27:43.605Z", + "completed":"2017-01-05T10:27:43.605Z", + "new_balance":"3311.79", + "value":"-53.18" + } + }, + { + "id":"187456f3-29d4-4644-8661-aaf0d97e1536", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:00:51.975Z", + "completed":"2017-01-05T14:00:51.975Z", + "new_balance":"3298.78", + "value":"-13.01" + } + }, + { + "id":"19bbcc77-6793-4937-b2d3-971c8cb1eff1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T21:26:07.823Z", + "completed":"2017-01-05T21:26:07.823Z", + "new_balance":"3254.80", + "value":"-43.98" + } + }, + { + "id":"39d3d707-3015-4731-b4a9-a77ccabe04e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T02:50:27.701Z", + "completed":"2017-01-06T02:50:27.701Z", + "new_balance":"3224.92", + "value":"-29.88" + } + }, + { + "id":"56b07574-3e9c-4ff3-8f32-b7dd5211616a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T21:31:11.631Z", + "completed":"2017-01-06T21:31:11.631Z", + "new_balance":"3202.23", + "value":"-22.69" + } + }, + { + "id":"0b43c863-fad4-4671-8023-da634cf1d8e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T13:50:42.355Z", + "completed":"2017-01-07T13:50:42.355Z", + "new_balance":"3163.06", + "value":"-39.17" + } + }, + { + "id":"67983a10-1445-4224-86b0-6a35a6c16024", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T03:50:36.639Z", + "completed":"2017-01-10T03:50:36.639Z", + "new_balance":"3109.88", + "value":"-53.18" + } + }, + { + "id":"3844270f-ed5a-42ef-8591-c22a0477eabf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T23:10:45.125Z", + "completed":"2017-01-10T23:10:45.125Z", + "new_balance":"3085.01", + "value":"-24.87" + } + }, + { + "id":"28bad410-9549-40b6-a302-531d19faf117", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T05:09:33.511Z", + "completed":"2017-01-12T05:09:33.511Z", + "new_balance":"3064.94", + "value":"-20.07" + } + }, + { + "id":"2f89b08c-dffa-496b-99be-68a9cc24bf7e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T08:28:01.640Z", + "completed":"2017-01-12T08:28:01.640Z", + "new_balance":"3040.38", + "value":"-24.56" + } + }, + { + "id":"ec390555-b98c-48b1-bb74-2571f4dc5b88", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:46:26.784Z", + "completed":"2017-01-12T13:46:26.784Z", + "new_balance":"3001.21", + "value":"-39.17" + } + }, + { + "id":"4128db25-4d6f-4d2d-a4d6-9d75f5f5b3fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T07:22:06.848Z", + "completed":"2017-01-15T07:22:06.848Z", + "new_balance":"2984.81", + "value":"-16.40" + } + }, + { + "id":"1d66194e-1c8b-43fc-97ad-364455530cdc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T03:22:45.371Z", + "completed":"2017-01-16T03:22:45.371Z", + "new_balance":"2978.66", + "value":"-6.15" + } + }, + { + "id":"9ba6768e-9817-4a83-9635-10c1fa7ef0b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T21:35:39.278Z", + "completed":"2017-01-16T21:35:39.278Z", + "new_balance":"2925.48", + "value":"-53.18" + } + }, + { + "id":"107a8bb0-b0dc-4e78-81cf-c80168cccab9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T04:44:12.710Z", + "completed":"2017-01-17T04:44:12.710Z", + "new_balance":"2894.16", + "value":"-31.32" + } + }, + { + "id":"9f9e4d9b-58c4-4fe4-89ff-28e693037db4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T14:01:40.427Z", + "completed":"2017-01-17T14:01:40.427Z", + "new_balance":"2832.98", + "value":"-61.18" + } + }, + { + "id":"ada8b021-6e0a-4e70-bfa1-81c1efdc51d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T14:39:57.574Z", + "completed":"2017-01-19T14:39:57.574Z", + "new_balance":"2802.58", + "value":"-30.40" + } + }, + { + "id":"04bada37-0eca-46bf-94aa-b4f723e45dd5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T11:27:57.895Z", + "completed":"2017-01-20T11:27:57.895Z", + "new_balance":"2749.40", + "value":"-53.18" + } + }, + { + "id":"9d1dd66d-326e-45bd-8735-3a1ac554328b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T19:39:06.216Z", + "completed":"2017-01-23T19:39:06.216Z", + "new_balance":"2733.57", + "value":"-15.83" + } + }, + { + "id":"c145b970-7bae-42cd-a5eb-96f9ab571569", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T14:30:57.491Z", + "completed":"2017-01-26T14:30:57.491Z", + "new_balance":"2675.09", + "value":"-58.48" + } + }, + { + "id":"e981db3c-c7e2-4634-ae64-b581fd8033a6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T18:36:42.050Z", + "completed":"2017-01-27T18:36:42.050Z", + "new_balance":"3863.60", + "value":"1188.51" + } + }, + { + "id":"41244c4e-760c-4657-bedc-e190dd0358a0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T06:51:49.638Z", + "completed":"2017-01-28T06:51:49.638Z", + "new_balance":"3829.17", + "value":"-34.43" + } + }, + { + "id":"d996743f-34b5-4535-94cb-ff7620982efb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T06:15:59.197Z", + "completed":"2017-01-30T06:15:59.197Z", + "new_balance":"3786.83", + "value":"-42.34" + } + }, + { + "id":"4f81c43a-97a9-4fce-a188-59f0ab1eee33", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T16:25:59.631Z", + "completed":"2017-02-03T16:25:59.631Z", + "new_balance":"3712.90", + "value":"-73.93" + } + }, + { + "id":"ec234326-d01a-4d15-8a68-7eb653727603", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T19:35:19.059Z", + "completed":"2017-02-03T19:35:19.059Z", + "new_balance":"3202.36", + "value":"-510.54" + } + }, + { + "id":"9a35a8a3-39b8-467d-8eb5-531d0c287ed8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T21:46:44.969Z", + "completed":"2017-02-03T21:46:44.969Z", + "new_balance":"3177.80", + "value":"-24.56" + } + }, + { + "id":"2525f7ab-bdc7-484c-92de-29136e4d1120", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T23:06:19.998Z", + "completed":"2017-02-03T23:06:19.998Z", + "new_balance":"3143.37", + "value":"-34.43" + } + }, + { + "id":"cf8cbf1e-6c14-42dd-b6f9-85d1792af8fa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T03:01:59.492Z", + "completed":"2017-02-08T03:01:59.492Z", + "new_balance":"3090.19", + "value":"-53.18" + } + }, + { + "id":"3accf777-3e86-4554-bb5e-c238e4b91eae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T04:02:54.664Z", + "completed":"2017-02-08T04:02:54.664Z", + "new_balance":"3046.21", + "value":"-43.98" + } + }, + { + "id":"c701a551-99b7-4806-8487-a78ecec0635f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T17:17:46.436Z", + "completed":"2017-02-11T17:17:46.436Z", + "new_balance":"3057.10", + "value":"10.89" + } + }, + { + "id":"d417f844-fc90-49f4-9a3b-c4d5134637ea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T19:27:00.349Z", + "completed":"2017-02-13T19:27:00.349Z", + "new_balance":"3027.22", + "value":"-29.88" + } + }, + { + "id":"a6846100-82b2-45ce-84e2-5410aadb16db", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T10:50:51.232Z", + "completed":"2017-02-14T10:50:51.232Z", + "new_balance":"2999.37", + "value":"-27.85" + } + }, + { + "id":"85a47e15-a09e-4fb3-91e4-6c65d4c90b38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T14:27:33.723Z", + "completed":"2017-02-17T14:27:33.723Z", + "new_balance":"2988.46", + "value":"-10.91" + } + }, + { + "id":"dd407e1e-c66c-458f-84c3-56a1b12ffc1e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T05:54:31.708Z", + "completed":"2017-02-21T05:54:31.708Z", + "new_balance":"2947.33", + "value":"-41.13" + } + }, + { + "id":"66e248b6-45d9-41a2-acbf-daf4c9980ed4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T00:57:57.962Z", + "completed":"2017-02-23T00:57:57.962Z", + "new_balance":"2906.41", + "value":"-40.92" + } + }, + { + "id":"0a13c8b3-6415-430a-bed8-2bb5bd8a2450", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T17:27:51.006Z", + "completed":"2017-02-23T17:27:51.006Z", + "new_balance":"2853.23", + "value":"-53.18" + } + }, + { + "id":"20393370-a751-4f39-a228-fcc32effc04e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T10:21:10.374Z", + "completed":"2017-02-24T10:21:10.374Z", + "new_balance":"2842.32", + "value":"-10.91" + } + }, + { + "id":"4cb2eb14-7d8c-4519-a7f8-e621fe2ea449", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T02:04:20.992Z", + "completed":"2017-02-27T02:04:20.992Z", + "new_balance":"2825.58", + "value":"-16.74" + } + }, + { + "id":"df5137ea-0334-4902-a837-b5b5e71c201d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T19:39:24.545Z", + "completed":"2017-02-27T19:39:24.545Z", + "new_balance":"2767.10", + "value":"-58.48" + } + }, + { + "id":"69879ebd-b462-4a32-ae54-55b77657ef87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T21:12:35.040Z", + "completed":"2017-02-27T21:12:35.040Z", + "new_balance":"3955.61", + "value":"1188.51" + } + }, + { + "id":"3b0e5101-850d-4def-b5aa-736877a2a058", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T16:40:39.773Z", + "completed":"2017-02-28T16:40:39.773Z", + "new_balance":"3913.27", + "value":"-42.34" + } + }, + { + "id":"9437896e-05bf-4164-ba99-70c4ccc0d3bc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T18:21:11.911Z", + "completed":"2017-02-28T18:21:11.911Z", + "new_balance":"3878.84", + "value":"-34.43" + } + }, + { + "id":"de13606a-da3a-49a9-8b80-ef4c744f1c92", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T09:20:02.408Z", + "completed":"2017-03-01T09:20:02.408Z", + "new_balance":"3816.97", + "value":"-61.87" + } + }, + { + "id":"825c53ff-1621-466e-ad3d-263e95ef5152", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T03:43:54.509Z", + "completed":"2017-03-03T03:43:54.509Z", + "new_balance":"3792.41", + "value":"-24.56" + } + }, + { + "id":"f32f3090-6863-4cd4-8b84-4cfdc1b098ee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T05:46:18.897Z", + "completed":"2017-03-03T05:46:18.897Z", + "new_balance":"3718.48", + "value":"-73.93" + } + }, + { + "id":"6125fefb-4959-4daa-b605-16936e8f46a4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T12:12:28.962Z", + "completed":"2017-03-03T12:12:28.962Z", + "new_balance":"3207.94", + "value":"-510.54" + } + }, + { + "id":"9854d937-bc09-41e1-bca7-d5c5213b3ad9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T14:50:18.077Z", + "completed":"2017-03-03T14:50:18.077Z", + "new_balance":"3173.51", + "value":"-34.43" + } + }, + { + "id":"b50fe0c7-33e5-4825-9d37-f18a1bc7018e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T02:26:51.307Z", + "completed":"2017-03-05T02:26:51.307Z", + "new_balance":"3120.33", + "value":"-53.18" + } + }, + { + "id":"e6109e9b-92aa-40b3-a563-dc84012d76e0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:36:23.782Z", + "completed":"2017-03-05T19:36:23.782Z", + "new_balance":"3071.67", + "value":"-48.66" + } + }, + { + "id":"1b14f844-39fd-4435-8526-a686948824ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T14:20:48.714Z", + "completed":"2017-03-07T14:20:48.714Z", + "new_balance":"3058.00", + "value":"-13.67" + } + }, + { + "id":"fa1ac145-5161-46e8-831a-1e713769d059", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:18:06.097Z", + "completed":"2017-03-09T10:18:06.097Z", + "new_balance":"3004.82", + "value":"-53.18" + } + }, + { + "id":"3bcfda96-7bdd-402a-80b7-0725a9e5afba", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T17:20:54.761Z", + "completed":"2017-03-11T17:20:54.761Z", + "new_balance":"2993.82", + "value":"-11.00" + } + }, + { + "id":"4f220d94-a158-4211-9ffc-9e6a3cad3216", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T20:40:50.231Z", + "completed":"2017-03-13T20:40:50.231Z", + "new_balance":"2936.14", + "value":"-57.68" + } + }, + { + "id":"0f347c1a-dffd-4423-92ee-35f7cbb2bbec", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T07:31:40.378Z", + "completed":"2017-03-14T07:31:40.378Z", + "new_balance":"2924.21", + "value":"-11.93" + } + }, + { + "id":"f18aaef7-ede6-44fc-8bed-57d98c3d1762", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T18:45:05.965Z", + "completed":"2017-03-14T18:45:05.965Z", + "new_balance":"2987.57", + "value":"63.36" + } + }, + { + "id":"2bd8530a-2e6f-4023-a770-6226318e95f3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T20:00:07.871Z", + "completed":"2017-03-15T20:00:07.871Z", + "new_balance":"2945.23", + "value":"-42.34" + } + }, + { + "id":"62e5ce24-3b7f-4d22-8bdb-a7c6f8fd2a86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T09:22:37.853Z", + "completed":"2017-03-26T09:22:37.853Z", + "new_balance":"2919.86", + "value":"-25.37" + } + }, + { + "id":"54627a47-a1c3-48c2-bd4e-146a3e9cb678", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T15:38:32.901Z", + "completed":"2017-03-26T15:38:32.901Z", + "new_balance":"2893.02", + "value":"-26.84" + } + }, + { + "id":"1ff74940-cc9d-4935-a2be-fade7abd80e1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T19:55:28.764Z", + "completed":"2017-03-26T19:55:28.764Z", + "new_balance":"2846.09", + "value":"-46.93" + } + }, + { + "id":"0bc3f6a7-a70f-42d6-bbf8-371a7643c6ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T06:22:14.827Z", + "completed":"2017-03-27T06:22:14.827Z", + "new_balance":"2779.51", + "value":"-66.58" + } + }, + { + "id":"8f11ce8f-6c61-47e8-97ab-adb84e6c3920", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T07:27:22.961Z", + "completed":"2017-03-27T07:27:22.961Z", + "new_balance":"2726.33", + "value":"-53.18" + } + }, + { + "id":"8fd90755-f0ba-4aa7-b1a8-79d183f4d4d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T10:04:40.808Z", + "completed":"2017-03-27T10:04:40.808Z", + "new_balance":"3914.84", + "value":"1188.51" + } + }, + { + "id":"11de817d-786d-46fc-bbf6-eb867e65641e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T07:37:18.016Z", + "completed":"2017-03-28T07:37:18.016Z", + "new_balance":"3880.41", + "value":"-34.43" + } + }, + { + "id":"b9da712e-8a40-447e-8469-e531cc4292f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T12:58:01.305Z", + "completed":"2017-03-30T12:58:01.305Z", + "new_balance":"3838.07", + "value":"-42.34" + } + }, + { + "id":"7d322266-6771-4bb0-8b13-1cd296c0378f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T00:31:56.209Z", + "completed":"2017-04-01T00:31:56.209Z", + "new_balance":"3803.64", + "value":"-34.43" + } + }, + { + "id":"91850ec0-ab89-4c50-875d-652456c8219a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T02:53:02.219Z", + "completed":"2017-04-01T02:53:02.219Z", + "new_balance":"3741.77", + "value":"-61.87" + } + }, + { + "id":"196a0697-536a-4ff3-aecd-10f556f91dd7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T08:16:56.454Z", + "completed":"2017-04-01T08:16:56.454Z", + "new_balance":"3717.21", + "value":"-24.56" + } + }, + { + "id":"87c89915-7250-475c-a44c-834eea431f8f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T09:32:36.545Z", + "completed":"2017-04-01T09:32:36.545Z", + "new_balance":"3206.67", + "value":"-510.54" + } + }, + { + "id":"62e6bfc0-05df-404d-8a3d-cdfdd3c33f80", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T20:00:54.698Z", + "completed":"2017-04-01T20:00:54.698Z", + "new_balance":"3132.74", + "value":"-73.93" + } + }, + { + "id":"a0cedb7b-42c1-4a7e-95c2-41c300377750", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T10:35:51.400Z", + "completed":"2017-04-05T10:35:51.400Z", + "new_balance":"3079.56", + "value":"-53.18" + } + }, + { + "id":"6333a0fa-d7d6-47be-92a5-1eb45407a880", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T16:40:55.207Z", + "completed":"2017-04-05T16:40:55.207Z", + "new_balance":"3056.87", + "value":"-22.69" + } + }, + { + "id":"4e04c6a4-313b-4d6b-a63c-91c74eab0c19", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:41:36.746Z", + "completed":"2017-04-05T17:41:36.746Z", + "new_balance":"3043.86", + "value":"-13.01" + } + }, + { + "id":"992e5cb7-52ee-4c72-9ee9-cbdb117c142a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T20:59:22.033Z", + "completed":"2017-04-05T20:59:22.033Z", + "new_balance":"2999.88", + "value":"-43.98" + } + }, + { + "id":"78f6aee7-9f07-40d8-8f6e-7c54f3bc6590", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T10:04:55.381Z", + "completed":"2017-04-07T10:04:55.381Z", + "new_balance":"2970.00", + "value":"-29.88" + } + }, + { + "id":"c218ec22-714b-4920-9332-e9a9ab2f9418", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T19:07:31.220Z", + "completed":"2017-04-09T19:07:31.220Z", + "new_balance":"2916.82", + "value":"-53.18" + } + }, + { + "id":"c2d0c6e8-d3f8-456d-9174-e5d4628d3f68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T23:38:50.689Z", + "completed":"2017-04-09T23:38:50.689Z", + "new_balance":"2891.95", + "value":"-24.87" + } + }, + { + "id":"8b7fb553-1018-4bab-8ccc-03a9f3e7bd05", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T06:34:03.174Z", + "completed":"2017-04-10T06:34:03.174Z", + "new_balance":"2852.78", + "value":"-39.17" + } + }, + { + "id":"753581df-268d-4044-91e4-3c8fa7ab0c32", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T06:34:22.775Z", + "completed":"2017-04-10T06:34:22.775Z", + "new_balance":"2828.22", + "value":"-24.56" + } + }, + { + "id":"15d179a4-40d4-4cfb-b8be-3e2fd1003af4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T12:13:22.008Z", + "completed":"2017-04-10T12:13:22.008Z", + "new_balance":"2808.15", + "value":"-20.07" + } + }, + { + "id":"1c5b0392-25b4-466e-9275-a9106182354d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T13:32:10.662Z", + "completed":"2017-04-10T13:32:10.662Z", + "new_balance":"2791.75", + "value":"-16.40" + } + }, + { + "id":"ed9b931b-c9e5-47cd-8d03-d676091acc4c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T00:56:21.911Z", + "completed":"2017-04-11T00:56:21.911Z", + "new_balance":"2738.57", + "value":"-53.18" + } + }, + { + "id":"85334781-ca71-46d9-b23d-7af9f914bad4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T01:46:00.205Z", + "completed":"2017-04-11T01:46:00.205Z", + "new_balance":"2677.39", + "value":"-61.18" + } + }, + { + "id":"e4a2749a-02cc-4dda-90d7-99d34786f14e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T13:31:03.545Z", + "completed":"2017-04-11T13:31:03.545Z", + "new_balance":"2646.07", + "value":"-31.32" + } + }, + { + "id":"220f9eea-df51-4bd0-9871-d1eebac11c02", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:25:16.396Z", + "completed":"2017-04-11T17:25:16.396Z", + "new_balance":"2615.67", + "value":"-30.40" + } + }, + { + "id":"549937f9-e380-4653-b222-d4c6b35fefbb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:34:00.309Z", + "completed":"2017-04-11T23:34:00.309Z", + "new_balance":"2609.52", + "value":"-6.15" + } + }, + { + "id":"b3ea22c3-2a88-470c-b950-333b3dfba6d7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T18:11:33.608Z", + "completed":"2017-04-21T18:11:33.608Z", + "new_balance":"2556.34", + "value":"-53.18" + } + }, + { + "id":"2778c39b-ef7c-4e7e-9cac-e6bed60d54b2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T04:34:30.186Z", + "completed":"2017-04-23T04:34:30.186Z", + "new_balance":"2540.51", + "value":"-15.83" + } + }, + { + "id":"2c9d7dbe-d050-41f1-b0e8-29fc5bc0fadd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T01:16:11.466Z", + "completed":"2017-04-29T01:16:11.466Z", + "new_balance":"2482.03", + "value":"-58.48" + } + }, + { + "id":"7d92d3d0-fae8-4af0-9719-122804126db4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T03:49:32.361Z", + "completed":"2017-04-29T03:49:32.361Z", + "new_balance":"3670.54", + "value":"1188.51" + } + }, + { + "id":"f1bcbbc8-3850-41aa-8eb0-e16ff51cf3f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T11:52:38.807Z", + "completed":"2017-04-29T11:52:38.807Z", + "new_balance":"3636.11", + "value":"-34.43" + } + }, + { + "id":"6f97d5d8-ef0b-433f-80ad-d7998359be8b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T14:33:17.532Z", + "completed":"2017-04-30T14:33:17.532Z", + "new_balance":"3593.77", + "value":"-42.34" + } + }, + { + "id":"72eb1778-697a-4d2e-9902-9571df03324a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T08:10:04.561Z", + "completed":"2017-05-02T08:10:04.561Z", + "new_balance":"3083.23", + "value":"-510.54" + } + }, + { + "id":"0669d73c-e9e2-4eac-a63d-cbe41e571d55", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T08:32:17.321Z", + "completed":"2017-05-02T08:32:17.321Z", + "new_balance":"3021.36", + "value":"-61.87" + } + }, + { + "id":"8948959e-6014-4a82-8908-5f81b4662b20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T13:27:57.230Z", + "completed":"2017-05-02T13:27:57.230Z", + "new_balance":"2947.43", + "value":"-73.93" + } + }, + { + "id":"c1259d9b-ec94-438c-a80f-db4f6bf5702e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T23:02:32.515Z", + "completed":"2017-05-02T23:02:32.515Z", + "new_balance":"2922.87", + "value":"-24.56" + } + }, + { + "id":"a39ced5d-8bfd-43fb-861a-2273a40fc1be", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T15:38:13.036Z", + "completed":"2017-05-06T15:38:13.036Z", + "new_balance":"2878.89", + "value":"-43.98" + } + }, + { + "id":"8d011984-e428-4370-9882-fec83d247116", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T06:14:41.119Z", + "completed":"2017-05-07T06:14:41.119Z", + "new_balance":"2851.04", + "value":"-27.85" + } + }, + { + "id":"052b71ed-b96f-40a4-bcfb-1d0edf2c7991", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T09:02:20.089Z", + "completed":"2017-05-07T09:02:20.089Z", + "new_balance":"2821.16", + "value":"-29.88" + } + }, + { + "id":"74d78c53-7405-49ed-b792-77d15c579477", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T11:42:52.533Z", + "completed":"2017-05-07T11:42:52.533Z", + "new_balance":"2780.03", + "value":"-41.13" + } + }, + { + "id":"b19267e5-612c-4bb0-aaa8-9a027f4c9e01", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T18:30:57.458Z", + "completed":"2017-05-07T18:30:57.458Z", + "new_balance":"2769.12", + "value":"-10.91" + } + }, + { + "id":"b76dd82c-2499-489e-8e3f-107537f138f6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T00:58:37.952Z", + "completed":"2017-05-08T00:58:37.952Z", + "new_balance":"2728.20", + "value":"-40.92" + } + }, + { + "id":"2a92f98d-cef6-4def-b3cd-f9b6a1304df9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T12:40:21.483Z", + "completed":"2017-05-09T12:40:21.483Z", + "new_balance":"2693.77", + "value":"-34.43" + } + }, + { + "id":"e40a8e4d-bfc6-4ede-8d66-ef17dcac7a4a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T05:54:32.859Z", + "completed":"2017-05-13T05:54:32.859Z", + "new_balance":"2640.59", + "value":"-53.18" + } + }, + { + "id":"c9e765c0-7ece-4354-99aa-72f3093cb2f4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T08:03:43.354Z", + "completed":"2017-05-26T08:03:43.354Z", + "new_balance":"2629.68", + "value":"-10.91" + } + }, + { + "id":"f37aeef7-bbb9-4424-93b3-c22f0b9cc5ef", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T12:41:06.192Z", + "completed":"2017-05-26T12:41:06.192Z", + "new_balance":"2576.50", + "value":"-53.18" + } + }, + { + "id":"4dc972a3-de10-42af-bbd5-ca1928334e1e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:47:05.842Z", + "completed":"2017-05-27T02:47:05.842Z", + "new_balance":"2518.02", + "value":"-58.48" + } + }, + { + "id":"0fffa28e-8520-4ccb-ab8a-d22ebe179944", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T14:35:47.336Z", + "completed":"2017-05-27T14:35:47.336Z", + "new_balance":"2501.28", + "value":"-16.74" + } + }, + { + "id":"5bccd4de-26cc-4843-899f-c45b53e57675", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T03:49:28.032Z", + "completed":"2017-05-30T03:49:28.032Z", + "new_balance":"2466.85", + "value":"-34.43" + } + }, + { + "id":"4d4edd58-5f45-496d-a919-77b014fc64ea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T13:42:50.085Z", + "completed":"2017-05-30T13:42:50.085Z", + "new_balance":"2424.51", + "value":"-42.34" + } + }, + { + "id":"5f78e4ea-bb3b-4c80-aee7-e90976843238", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T21:20:13.655Z", + "completed":"2017-05-30T21:20:13.655Z", + "new_balance":"3613.02", + "value":"1188.51" + } + }, + { + "id":"84f95833-2b08-451a-aba7-021cfb678224", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T00:40:40.794Z", + "completed":"2017-06-01T00:40:40.794Z", + "new_balance":"3599.35", + "value":"-13.67" + } + }, + { + "id":"d30c00ae-261b-4462-96e8-636f607a6568", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T06:09:13.799Z", + "completed":"2017-06-01T06:09:13.799Z", + "new_balance":"3550.69", + "value":"-48.66" + } + }, + { + "id":"ea238bed-c595-4038-8c88-fab1909387d1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T08:13:45.450Z", + "completed":"2017-06-01T08:13:45.450Z", + "new_balance":"3040.15", + "value":"-510.54" + } + }, + { + "id":"949e4d34-0c55-4da0-bfa5-df3d91883872", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T12:55:25.445Z", + "completed":"2017-06-01T12:55:25.445Z", + "new_balance":"3005.72", + "value":"-34.43" + } + }, + { + "id":"d662cedd-dde6-4221-b5f6-45fb5941ebd9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T13:42:41.108Z", + "completed":"2017-06-01T13:42:41.108Z", + "new_balance":"2981.16", + "value":"-24.56" + } + }, + { + "id":"077997ac-b7e8-4dc9-ac2c-a8ced57308bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:18:25.426Z", + "completed":"2017-06-01T15:18:25.426Z", + "new_balance":"2927.98", + "value":"-53.18" + } + }, + { + "id":"4104a61f-6eb8-4ce1-b8db-ac5698b0fc63", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T15:55:26.613Z", + "completed":"2017-06-01T15:55:26.613Z", + "new_balance":"2866.11", + "value":"-61.87" + } + }, + { + "id":"2802b06a-fd28-4c44-8bbd-a9f878501035", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T20:15:15.918Z", + "completed":"2017-06-01T20:15:15.918Z", + "new_balance":"2792.18", + "value":"-73.93" + } + }, + { + "id":"e8a9355b-a719-4648-b270-b66b6682f0f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T22:09:24.455Z", + "completed":"2017-06-01T22:09:24.455Z", + "new_balance":"2739.00", + "value":"-53.18" + } + }, + { + "id":"1f3886f6-f101-4764-9ad6-3002a4997a69", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T06:18:40.522Z", + "completed":"2017-06-02T06:18:40.522Z", + "new_balance":"2681.32", + "value":"-57.68" + } + }, + { + "id":"bd7630f4-801e-49a3-b94a-544e11dcaf8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T08:49:16.320Z", + "completed":"2017-06-02T08:49:16.320Z", + "new_balance":"2669.39", + "value":"-11.93" + } + }, + { + "id":"59d79b72-89a1-4060-8fb4-3550037f9549", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T20:18:15.076Z", + "completed":"2017-06-02T20:18:15.076Z", + "new_balance":"2658.39", + "value":"-11.00" + } + }, + { + "id":"68b56ee4-9db9-4b29-b657-3c3841940806", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T16:33:02.175Z", + "completed":"2017-06-04T16:33:02.175Z", + "new_balance":"2616.05", + "value":"-42.34" + } + }, + { + "id":"5b2a71b6-a76a-4b6f-8367-c8b89fcc2167", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T22:06:13.315Z", + "completed":"2017-06-04T22:06:13.315Z", + "new_balance":"2590.68", + "value":"-25.37" + } + }, + { + "id":"a72640fd-90bf-457d-8907-70bfca317010", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T22:58:01.628Z", + "completed":"2017-06-04T22:58:01.628Z", + "new_balance":"2543.75", + "value":"-46.93" + } + }, + { + "id":"ef0e4e4f-e38c-433d-a9c7-5dc9378ccd60", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:56:53.396Z", + "completed":"2017-06-05T06:56:53.396Z", + "new_balance":"2477.17", + "value":"-66.58" + } + }, + { + "id":"74e6af08-4d44-4bdf-95c6-01385f903a08", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T13:25:36.571Z", + "completed":"2017-06-05T13:25:36.571Z", + "new_balance":"2450.33", + "value":"-26.84" + } + }, + { + "id":"ef8676f7-7ca1-46d6-b7a0-16fc0dbae38f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T00:00:54.037Z", + "completed":"2017-06-18T00:00:54.037Z", + "new_balance":"2397.15", + "value":"-53.18" + } + }, + { + "id":"405db6d1-fded-4284-a9a0-25fee13e3161", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T04:24:58.086Z", + "completed":"2017-06-30T04:24:58.086Z", + "new_balance":"2355.62", + "value":"-41.53" + } + }, + { + "id":"f0bdc8c1-712c-415c-b1ee-f35168a8bdee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T11:30:45.624Z", + "completed":"2017-06-30T11:30:45.624Z", + "new_balance":"2313.28", + "value":"-42.34" + } + }, + { + "id":"52eac480-1f8f-47c8-afc6-c84aae1c52aa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T12:42:10.029Z", + "completed":"2017-06-30T12:42:10.029Z", + "new_balance":"2278.85", + "value":"-34.43" + } + }, + { + "id":"495765c1-c514-4c00-b6e6-ac393f9d52c8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T19:47:58.970Z", + "completed":"2017-06-30T19:47:58.970Z", + "new_balance":"3467.36", + "value":"1188.51" + } + }, + { + "id":"f71c442d-caab-42e7-a35c-a253a9716e5a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T02:01:24.662Z", + "completed":"2017-07-01T02:01:24.662Z", + "new_balance":"3405.49", + "value":"-61.87" + } + }, + { + "id":"e5057247-ea54-4260-b12b-4510eb2b99b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T00:07:47.028Z", + "completed":"2017-07-03T00:07:47.028Z", + "new_balance":"2894.95", + "value":"-510.54" + } + }, + { + "id":"6416fc23-8f4b-4dd0-8907-976213b86ec0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T02:05:00.939Z", + "completed":"2017-07-03T02:05:00.939Z", + "new_balance":"2821.02", + "value":"-73.93" + } + }, + { + "id":"6df122a4-a5f4-450b-872f-2a7f5be05fd8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T06:58:17.090Z", + "completed":"2017-07-03T06:58:17.090Z", + "new_balance":"2796.46", + "value":"-24.56" + } + }, + { + "id":"6c3032d1-5166-4a60-8dd3-40f66d7ea0bd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T11:59:39.463Z", + "completed":"2017-07-03T11:59:39.463Z", + "new_balance":"2762.03", + "value":"-34.43" + } + }, + { + "id":"89ced9e6-1a0b-4e1f-af73-035fdfffba6a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T00:15:34.717Z", + "completed":"2017-07-05T00:15:34.717Z", + "new_balance":"2718.05", + "value":"-43.98" + } + }, + { + "id":"8a04133f-4da6-4be7-a7dd-bf596e1062c8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:05:34.423Z", + "completed":"2017-07-05T07:05:34.423Z", + "new_balance":"2705.04", + "value":"-13.01" + } + }, + { + "id":"ac37d7b6-3ebb-4671-8ed3-231c37ec6ecf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T18:49:38.665Z", + "completed":"2017-07-05T18:49:38.665Z", + "new_balance":"2651.86", + "value":"-53.18" + } + }, + { + "id":"310792de-05af-4b2b-9bea-fd52b9587200", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T11:56:38.345Z", + "completed":"2017-07-06T11:56:38.345Z", + "new_balance":"2629.17", + "value":"-22.69" + } + }, + { + "id":"a3d7d314-49e6-4dc0-8476-b79e4c05cd87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T23:36:58.230Z", + "completed":"2017-07-06T23:36:58.230Z", + "new_balance":"2599.29", + "value":"-29.88" + } + }, + { + "id":"641c16d7-3c47-4e1f-8f97-2bde9b494da6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T04:57:14.209Z", + "completed":"2017-07-07T04:57:14.209Z", + "new_balance":"2560.12", + "value":"-39.17" + } + }, + { + "id":"f484a197-9daa-460c-bda9-093bb3105118", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T04:41:55.711Z", + "completed":"2017-07-10T04:41:55.711Z", + "new_balance":"2506.94", + "value":"-53.18" + } + }, + { + "id":"e8c7f6f0-f0a5-4451-adef-6ccbe7510ee2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T19:22:00.418Z", + "completed":"2017-07-10T19:22:00.418Z", + "new_balance":"2482.07", + "value":"-24.87" + } + }, + { + "id":"13058240-0813-47e0-9a77-a67d6d76d092", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T10:06:54.270Z", + "completed":"2017-07-12T10:06:54.270Z", + "new_balance":"2462.00", + "value":"-20.07" + } + }, + { + "id":"8861ebae-6234-4aab-a020-6b052bd291e7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T14:49:58.287Z", + "completed":"2017-07-12T14:49:58.287Z", + "new_balance":"2422.83", + "value":"-39.17" + } + }, + { + "id":"ba81312a-dfa5-4c72-99b5-00195899a2f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T17:07:20.185Z", + "completed":"2017-07-12T17:07:20.185Z", + "new_balance":"2398.27", + "value":"-24.56" + } + }, + { + "id":"62c94b87-901f-4f9f-ab06-ddefe95d2e0b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T19:10:01.642Z", + "completed":"2017-07-15T19:10:01.642Z", + "new_balance":"2381.87", + "value":"-16.40" + } + }, + { + "id":"b02396c5-dd16-4907-91ef-859ba0fca4b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T11:44:13.015Z", + "completed":"2017-07-16T11:44:13.015Z", + "new_balance":"2328.69", + "value":"-53.18" + } + }, + { + "id":"171ddae8-fa68-4630-aa80-df19f9b57082", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T23:02:51.835Z", + "completed":"2017-07-16T23:02:51.835Z", + "new_balance":"2322.54", + "value":"-6.15" + } + }, + { + "id":"d277a670-8cca-4bd8-a5d5-e2b5ded510ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T08:11:20.931Z", + "completed":"2017-07-17T08:11:20.931Z", + "new_balance":"2261.36", + "value":"-61.18" + } + }, + { + "id":"7b1a5b77-5a08-4c58-8830-3a0243df7509", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T17:11:34.448Z", + "completed":"2017-07-17T17:11:34.448Z", + "new_balance":"2230.04", + "value":"-31.32" + } + }, + { + "id":"d36bcdd8-8248-4ceb-9a2f-14b63001f9b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T22:26:00.090Z", + "completed":"2017-07-19T22:26:00.090Z", + "new_balance":"2199.64", + "value":"-30.40" + } + }, + { + "id":"e02884d0-0a77-46e8-b1e2-19f2398e8243", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T13:07:17.763Z", + "completed":"2017-07-20T13:07:17.763Z", + "new_balance":"2146.46", + "value":"-53.18" + } + }, + { + "id":"c9f61b30-df77-4e99-a9f0-8de72bf6d5ae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T23:42:56.356Z", + "completed":"2017-07-23T23:42:56.356Z", + "new_balance":"2130.63", + "value":"-15.83" + } + }, + { + "id":"6487bc3f-bdc9-43bd-b497-0d3f61ac27d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T17:48:13.435Z", + "completed":"2017-07-26T17:48:13.435Z", + "new_balance":"2072.15", + "value":"-58.48" + } + }, + { + "id":"7d518805-2f14-4891-8b56-aac9a451a074", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T19:47:58.062Z", + "completed":"2017-07-27T19:47:58.062Z", + "new_balance":"3260.66", + "value":"1188.51" + } + }, + { + "id":"85343a71-63a4-4b0b-a114-b054955fce2e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:59:07.742Z", + "completed":"2017-07-28T02:59:07.742Z", + "new_balance":"3226.23", + "value":"-34.43" + } + }, + { + "id":"6f6c9be7-1526-4b26-89aa-efb81d97f5d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T07:20:17.650Z", + "completed":"2017-07-30T07:20:17.650Z", + "new_balance":"3183.89", + "value":"-42.34" + } + }, + { + "id":"49612ef2-61f4-4a5c-9496-68acab743827", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T22:27:18.689Z", + "completed":"2017-08-01T22:27:18.689Z", + "new_balance":"3122.02", + "value":"-61.87" + } + }, + { + "id":"d500f840-b626-4024-a7d3-284f248ca5d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T01:26:47.171Z", + "completed":"2017-08-03T01:26:47.171Z", + "new_balance":"2611.48", + "value":"-510.54" + } + }, + { + "id":"877bb700-6387-4087-b260-7f199464b153", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T02:24:53.866Z", + "completed":"2017-08-03T02:24:53.866Z", + "new_balance":"2537.55", + "value":"-73.93" + } + }, + { + "id":"974c607f-eacb-42c5-8673-1ce0521d4d0f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T03:04:52.990Z", + "completed":"2017-08-03T03:04:52.990Z", + "new_balance":"2503.12", + "value":"-34.43" + } + }, + { + "id":"79737cae-bc75-4017-b4cc-297e92cba63b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T15:45:13.641Z", + "completed":"2017-08-03T15:45:13.641Z", + "new_balance":"2478.56", + "value":"-24.56" + } + }, + { + "id":"428e3565-7d11-458f-b1f1-54ba12abb037", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T17:25:35.767Z", + "completed":"2017-08-08T17:25:35.767Z", + "new_balance":"2434.58", + "value":"-43.98" + } + }, + { + "id":"8065e353-3245-4d7f-bcff-9d2fc2a1b1d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T23:28:23.791Z", + "completed":"2017-08-08T23:28:23.791Z", + "new_balance":"2381.40", + "value":"-53.18" + } + }, + { + "id":"32e068d4-67a9-4c70-bc69-917585c6e38a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T08:19:29.238Z", + "completed":"2017-08-11T08:19:29.238Z", + "new_balance":"2392.29", + "value":"10.89" + } + }, + { + "id":"ffa56429-ecea-40d8-9223-b122f45ed3d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T19:47:53.975Z", + "completed":"2017-08-13T19:47:53.975Z", + "new_balance":"2362.41", + "value":"-29.88" + } + }, + { + "id":"ca7c5548-f727-4431-92dc-fc6919d3f046", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T09:16:43.009Z", + "completed":"2017-08-14T09:16:43.009Z", + "new_balance":"2334.56", + "value":"-27.85" + } + }, + { + "id":"bebd8318-f602-419e-9f25-7ddbb1cf1f50", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T10:22:16.194Z", + "completed":"2017-08-17T10:22:16.194Z", + "new_balance":"2323.65", + "value":"-10.91" + } + }, + { + "id":"dc904b30-5ac2-49c8-b1c8-dee2be6baf8f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T22:17:01.731Z", + "completed":"2017-08-21T22:17:01.731Z", + "new_balance":"2282.52", + "value":"-41.13" + } + }, + { + "id":"63852cc0-fc1d-43d1-a364-a3d0e584537f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T18:41:10.061Z", + "completed":"2017-08-23T18:41:10.061Z", + "new_balance":"2229.34", + "value":"-53.18" + } + }, + { + "id":"2443b87b-d0f7-491e-acef-393b0c95779f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T20:02:28.326Z", + "completed":"2017-08-23T20:02:28.326Z", + "new_balance":"2188.42", + "value":"-40.92" + } + }, + { + "id":"30a4557a-5152-43d5-81f3-794411a75846", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T18:26:31.745Z", + "completed":"2017-08-24T18:26:31.745Z", + "new_balance":"2177.51", + "value":"-10.91" + } + }, + { + "id":"4cb42a97-54f5-4532-aa19-e1d0982bb42d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T01:08:19.965Z", + "completed":"2017-08-27T01:08:19.965Z", + "new_balance":"2160.77", + "value":"-16.74" + } + }, + { + "id":"fdd2af0a-ed21-49d3-bd27-1d3c84af5b86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T14:58:52.370Z", + "completed":"2017-08-27T14:58:52.370Z", + "new_balance":"2102.29", + "value":"-58.48" + } + }, + { + "id":"97892435-48c0-439d-b1e0-5e35fece7a1a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T21:08:12.688Z", + "completed":"2017-08-27T21:08:12.688Z", + "new_balance":"3290.80", + "value":"1188.51" + } + }, + { + "id":"22d2b446-7f6d-45ab-ba5b-c1e81ab30c6a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:38:12.641Z", + "completed":"2017-08-28T19:38:12.641Z", + "new_balance":"3256.37", + "value":"-34.43" + } + }, + { + "id":"f4e4965c-ae86-48fb-b40e-bd49c0725c2f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T06:56:44.583Z", + "completed":"2017-08-30T06:56:44.583Z", + "new_balance":"3214.03", + "value":"-42.34" + } + }, + { + "id":"56c65ed4-f799-4a3b-9ee9-b1d3813ab0d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T18:48:57.114Z", + "completed":"2017-09-01T18:48:57.114Z", + "new_balance":"3152.16", + "value":"-61.87" + } + }, + { + "id":"986a321d-c624-4fa6-9146-108b60b8be1a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T02:40:49.421Z", + "completed":"2017-09-03T02:40:49.421Z", + "new_balance":"3117.73", + "value":"-34.43" + } + }, + { + "id":"23008f10-64e8-4c2c-b59c-7069ab70c45b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T08:28:39.469Z", + "completed":"2017-09-03T08:28:39.469Z", + "new_balance":"3093.17", + "value":"-24.56" + } + }, + { + "id":"c1ff62af-3728-404a-b81c-ed1715a78c04", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T12:05:55.796Z", + "completed":"2017-09-03T12:05:55.796Z", + "new_balance":"3019.24", + "value":"-73.93" + } + }, + { + "id":"810b8068-840a-4609-a6db-0014e4b5b05f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T15:57:18.737Z", + "completed":"2017-09-03T15:57:18.737Z", + "new_balance":"2508.70", + "value":"-510.54" + } + }, + { + "id":"f2f6e1ea-0c7b-470a-8e17-d2b8c89dd633", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T01:21:19.640Z", + "completed":"2017-09-05T01:21:19.640Z", + "new_balance":"2460.04", + "value":"-48.66" + } + }, + { + "id":"5f4d4d30-599a-42bf-be69-c4df123a124a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T23:02:33.505Z", + "completed":"2017-09-05T23:02:33.505Z", + "new_balance":"2406.86", + "value":"-53.18" + } + }, + { + "id":"188c661d-c56c-4208-98bb-251798dd3221", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T13:30:43.974Z", + "completed":"2017-09-07T13:30:43.974Z", + "new_balance":"2393.19", + "value":"-13.67" + } + }, + { + "id":"768deca7-cf62-41a1-8f3f-2380e87b9c5f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T12:21:40.970Z", + "completed":"2017-09-09T12:21:40.970Z", + "new_balance":"2340.01", + "value":"-53.18" + } + }, + { + "id":"6eafd0f7-fe0d-4413-84d8-91f7fc328d91", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:29:33.983Z", + "completed":"2017-09-11T00:29:33.983Z", + "new_balance":"2329.01", + "value":"-11.00" + } + }, + { + "id":"73b623b7-b63a-4d23-bc90-b48cc7afe852", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T18:26:58.086Z", + "completed":"2017-09-13T18:26:58.086Z", + "new_balance":"2271.33", + "value":"-57.68" + } + }, + { + "id":"7c4e2e2a-900e-4621-ac78-8f21e8668472", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T02:00:19.775Z", + "completed":"2017-09-14T02:00:19.775Z", + "new_balance":"2259.40", + "value":"-11.93" + } + }, + { + "id":"d460014d-a0b4-4d22-8c24-1e11ddd0fab2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T14:16:54.742Z", + "completed":"2017-09-14T14:16:54.742Z", + "new_balance":"2322.76", + "value":"63.36" + } + }, + { + "id":"9fb6ee98-ccb5-446c-ad88-1ec3b617869f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T17:57:21.058Z", + "completed":"2017-09-15T17:57:21.058Z", + "new_balance":"2280.42", + "value":"-42.34" + } + }, + { + "id":"2e134505-910b-476c-b73c-641e44e1ac39", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T05:24:34.869Z", + "completed":"2017-09-26T05:24:34.869Z", + "new_balance":"2233.49", + "value":"-46.93" + } + }, + { + "id":"2f25b4b6-85e3-4c4c-b5aa-3ebaebdd77f8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:18:54.912Z", + "completed":"2017-09-26T08:18:54.912Z", + "new_balance":"2208.12", + "value":"-25.37" + } + }, + { + "id":"25748f37-9bbf-4891-8c54-3e9d09f05990", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T16:08:44.394Z", + "completed":"2017-09-26T16:08:44.394Z", + "new_balance":"2181.28", + "value":"-26.84" + } + }, + { + "id":"c244c887-d2f3-4d5c-a316-a50bac77c52a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T03:33:32.124Z", + "completed":"2017-09-27T03:33:32.124Z", + "new_balance":"2128.10", + "value":"-53.18" + } + }, + { + "id":"134f49f3-9b27-4a27-b7bd-3513680f576d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T13:12:32.671Z", + "completed":"2017-09-27T13:12:32.671Z", + "new_balance":"2061.52", + "value":"-66.58" + } + }, + { + "id":"dbe1344c-97e0-4424-bcbd-d2b5a123d958", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T19:53:59.403Z", + "completed":"2017-09-27T19:53:59.403Z", + "new_balance":"3250.03", + "value":"1188.51" + } + }, + { + "id":"e7e636d4-dd35-48ff-b483-6323bf0a6167", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T14:46:21.836Z", + "completed":"2017-09-28T14:46:21.836Z", + "new_balance":"3215.60", + "value":"-34.43" + } + }, + { + "id":"c0adbd9a-1488-4c3a-86e4-d944d22594ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T02:52:35.852Z", + "completed":"2017-09-30T02:52:35.852Z", + "new_balance":"3173.26", + "value":"-42.34" + } + }, + { + "id":"61457c6d-5154-4efe-9916-0d64dcbe5d86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T05:46:09.835Z", + "completed":"2017-10-01T05:46:09.835Z", + "new_balance":"2662.72", + "value":"-510.54" + } + }, + { + "id":"afe3acc9-a91b-4090-8a19-70e06399f3ee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T07:44:26.181Z", + "completed":"2017-10-01T07:44:26.181Z", + "new_balance":"2588.79", + "value":"-73.93" + } + }, + { + "id":"8025e57a-6824-40bc-97c7-df3e3c9bb90c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T08:35:16.088Z", + "completed":"2017-10-01T08:35:16.088Z", + "new_balance":"2554.36", + "value":"-34.43" + } + }, + { + "id":"76da8f94-c9f9-4873-850a-a47cf0a7c959", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T08:47:26.763Z", + "completed":"2017-10-01T08:47:26.763Z", + "new_balance":"2529.80", + "value":"-24.56" + } + }, + { + "id":"c7551bd0-480f-4514-86b2-6b5aa8a8f2d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T15:53:45.852Z", + "completed":"2017-10-01T15:53:45.852Z", + "new_balance":"2467.93", + "value":"-61.87" + } + }, + { + "id":"943a96ba-f798-4764-82b0-dfd360f8882a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:11:17.959Z", + "completed":"2017-10-05T06:11:17.959Z", + "new_balance":"2423.95", + "value":"-43.98" + } + }, + { + "id":"14c72d4c-4298-47e6-bae8-4905e575e75b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T18:14:47.252Z", + "completed":"2017-10-05T18:14:47.252Z", + "new_balance":"2410.94", + "value":"-13.01" + } + }, + { + "id":"267cd172-63fd-4c29-8b4c-e42fd135c9b8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T19:23:09.912Z", + "completed":"2017-10-05T19:23:09.912Z", + "new_balance":"2388.25", + "value":"-22.69" + } + }, + { + "id":"bab49972-5e6d-4203-bbdb-907f82d6e781", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T22:19:10.414Z", + "completed":"2017-10-05T22:19:10.414Z", + "new_balance":"2335.07", + "value":"-53.18" + } + }, + { + "id":"97712686-d3b2-44cd-ba2b-dc559d591fdc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T03:31:07.948Z", + "completed":"2017-10-07T03:31:07.948Z", + "new_balance":"2305.19", + "value":"-29.88" + } + }, + { + "id":"17ecef72-d287-4a2e-bfc7-ba040fcb1931", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T01:10:19.210Z", + "completed":"2017-10-09T01:10:19.210Z", + "new_balance":"2280.32", + "value":"-24.87" + } + }, + { + "id":"a8ea411d-63ab-485d-93d8-4f3fa50ca30f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T17:58:45.514Z", + "completed":"2017-10-09T17:58:45.514Z", + "new_balance":"2227.14", + "value":"-53.18" + } + }, + { + "id":"ecb99383-11e0-4514-93ab-bb47b5697a8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T03:58:48.132Z", + "completed":"2017-10-10T03:58:48.132Z", + "new_balance":"2210.74", + "value":"-16.40" + } + }, + { + "id":"25321feb-52f3-4170-9f4d-33f72e86e9d0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T08:17:42.044Z", + "completed":"2017-10-10T08:17:42.044Z", + "new_balance":"2190.67", + "value":"-20.07" + } + }, + { + "id":"3da58f97-e668-4302-935a-e68c7160b321", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T16:32:09.414Z", + "completed":"2017-10-10T16:32:09.414Z", + "new_balance":"2166.11", + "value":"-24.56" + } + }, + { + "id":"a97f0098-576c-4ee9-8f2d-6ff11371c7dd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:07:24.802Z", + "completed":"2017-10-10T18:07:24.802Z", + "new_balance":"2126.94", + "value":"-39.17" + } + }, + { + "id":"121551c8-5552-44b9-b138-04f4f219adf6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T04:10:54.706Z", + "completed":"2017-10-11T04:10:54.706Z", + "new_balance":"2065.76", + "value":"-61.18" + } + }, + { + "id":"e6e2b9a3-a958-4d93-ab18-21f90db7ba9b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T05:15:41.847Z", + "completed":"2017-10-11T05:15:41.847Z", + "new_balance":"2035.36", + "value":"-30.40" + } + }, + { + "id":"7e003243-5517-467e-9da2-b47aa6b004ed", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:21:42.999Z", + "completed":"2017-10-11T06:21:42.999Z", + "new_balance":"2029.21", + "value":"-6.15" + } + }, + { + "id":"04f5f057-b9c8-46f8-b48c-f12e6b0b9e48", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T16:25:23.960Z", + "completed":"2017-10-11T16:25:23.960Z", + "new_balance":"1976.03", + "value":"-53.18" + } + }, + { + "id":"d7786f69-52e3-43ce-b2af-43d0b88fd867", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T23:20:57.947Z", + "completed":"2017-10-11T23:20:57.947Z", + "new_balance":"1944.71", + "value":"-31.32" + } + }, + { + "id":"7611c8ce-9367-45f8-b1dd-bbb759fc47f1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T03:07:38.122Z", + "completed":"2017-10-21T03:07:38.122Z", + "new_balance":"1891.53", + "value":"-53.18" + } + }, + { + "id":"0cb02df8-51ed-4ba6-8eb5-519cb07c3922", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:15:33.763Z", + "completed":"2017-10-23T05:15:33.763Z", + "new_balance":"1875.70", + "value":"-15.83" + } + }, + { + "id":"a7722439-111f-47bb-ad0d-af987d184762", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T09:48:29.051Z", + "completed":"2017-10-29T09:48:29.051Z", + "new_balance":"1841.27", + "value":"-34.43" + } + }, + { + "id":"a6765411-8ad9-4411-b781-af7fc90d0499", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T11:43:31.317Z", + "completed":"2017-10-29T11:43:31.317Z", + "new_balance":"3029.78", + "value":"1188.51" + } + }, + { + "id":"0f38847d-442e-4d96-95ca-d6f5b47dd584", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T16:55:32.928Z", + "completed":"2017-10-29T16:55:32.928Z", + "new_balance":"2971.30", + "value":"-58.48" + } + }, + { + "id":"69185b0a-b30c-477e-ae7b-d282f62f43ff", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T22:52:39.117Z", + "completed":"2017-10-30T22:52:39.117Z", + "new_balance":"2928.96", + "value":"-42.34" + } + }, + { + "id":"e5dae0ca-1f68-4bc7-b5fb-4213dda4665d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T00:08:20.306Z", + "completed":"2017-11-02T00:08:20.306Z", + "new_balance":"2867.09", + "value":"-61.87" + } + }, + { + "id":"cdc7719a-3d59-434c-b3ef-88fff565aa26", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T04:46:02.841Z", + "completed":"2017-11-02T04:46:02.841Z", + "new_balance":"2356.55", + "value":"-510.54" + } + }, + { + "id":"d658ee30-40e6-4590-add9-e502a58326b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T13:40:40.627Z", + "completed":"2017-11-02T13:40:40.627Z", + "new_balance":"2282.62", + "value":"-73.93" + } + }, + { + "id":"39474b78-b981-4f6f-892c-c0c589c8368b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T18:46:15.325Z", + "completed":"2017-11-02T18:46:15.325Z", + "new_balance":"2258.06", + "value":"-24.56" + } + }, + { + "id":"c6fefd36-f8d9-422a-abdc-6a1e2a4611ac", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T05:42:00.875Z", + "completed":"2017-11-06T05:42:00.875Z", + "new_balance":"2214.08", + "value":"-43.98" + } + }, + { + "id":"45e24c65-4619-40be-8db2-3d408ffe2b47", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T14:32:59.576Z", + "completed":"2017-11-07T14:32:59.576Z", + "new_balance":"2186.23", + "value":"-27.85" + } + }, + { + "id":"c0850a69-9085-47ec-b000-4bd0f156f5c2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T19:00:42.050Z", + "completed":"2017-11-07T19:00:42.050Z", + "new_balance":"2175.32", + "value":"-10.91" + } + }, + { + "id":"9be265b0-abc5-4b30-86a7-ac118a4576c9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T21:10:14.359Z", + "completed":"2017-11-07T21:10:14.359Z", + "new_balance":"2134.19", + "value":"-41.13" + } + }, + { + "id":"1fd3afb6-0a63-43d3-9eec-08a193f22992", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T22:29:26.959Z", + "completed":"2017-11-07T22:29:26.959Z", + "new_balance":"2104.31", + "value":"-29.88" + } + }, + { + "id":"e870d81c-32c9-4016-b611-ceb3d1920fae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T20:22:01.310Z", + "completed":"2017-11-08T20:22:01.310Z", + "new_balance":"2063.39", + "value":"-40.92" + } + }, + { + "id":"a82b6d58-19c2-4930-9822-529ade3bc74d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T05:29:17.229Z", + "completed":"2017-11-09T05:29:17.229Z", + "new_balance":"2028.96", + "value":"-34.43" + } + }, + { + "id":"51fb58fe-2a49-4f99-b3ea-ea8f7f85e1e2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T22:07:23.657Z", + "completed":"2017-11-13T22:07:23.657Z", + "new_balance":"1975.78", + "value":"-53.18" + } + }, + { + "id":"6d487737-5a39-4a31-819a-17f658e3ffcd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T16:19:30.738Z", + "completed":"2017-11-26T16:19:30.738Z", + "new_balance":"1964.87", + "value":"-10.91" + } + }, + { + "id":"f7242a42-0bf1-496c-9157-0db1c3513b0b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T21:09:10.898Z", + "completed":"2017-11-26T21:09:10.898Z", + "new_balance":"1911.69", + "value":"-53.18" + } + }, + { + "id":"d314cb49-0670-4188-9f11-ee794e5a7b9c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T00:44:24.911Z", + "completed":"2017-11-27T00:44:24.911Z", + "new_balance":"1894.95", + "value":"-16.74" + } + }, + { + "id":"2baf02bc-bffd-4d53-84ee-fa1c64db3239", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T14:20:25.801Z", + "completed":"2017-11-27T14:20:25.801Z", + "new_balance":"1836.47", + "value":"-58.48" + } + }, + { + "id":"671d579f-cb9f-482f-961e-e5a0841ff74d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T04:25:34.084Z", + "completed":"2017-11-30T04:25:34.084Z", + "new_balance":"3024.98", + "value":"1188.51" + } + }, + { + "id":"3f0d7731-bcee-4ccc-aa86-a6aedcf2c89a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T15:23:10.103Z", + "completed":"2017-11-30T15:23:10.103Z", + "new_balance":"2990.55", + "value":"-34.43" + } + }, + { + "id":"abe4018a-f8a4-4fe3-bfc8-cf660fdb0a1d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T22:04:46.310Z", + "completed":"2017-11-30T22:04:46.310Z", + "new_balance":"2948.21", + "value":"-42.34" + } + }, + { + "id":"89e0904e-2c2d-4aad-a151-a0e0c8620273", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T01:29:40.851Z", + "completed":"2017-12-01T01:29:40.851Z", + "new_balance":"2874.28", + "value":"-73.93" + } + }, + { + "id":"f405bcb3-d4de-4681-88a7-afeaf78da6ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T07:02:34.997Z", + "completed":"2017-12-01T07:02:34.997Z", + "new_balance":"2812.41", + "value":"-61.87" + } + }, + { + "id":"1f70f68c-faaf-456a-b18b-35fceed62e05", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:28:08.767Z", + "completed":"2017-12-01T07:28:08.767Z", + "new_balance":"2301.87", + "value":"-510.54" + } + }, + { + "id":"74ff1839-631e-4ddb-8bef-538b482c8db5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T10:49:50.963Z", + "completed":"2017-12-01T10:49:50.963Z", + "new_balance":"2248.69", + "value":"-53.18" + } + }, + { + "id":"01e391fc-a214-4235-a4cb-02f9a887f4a9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T11:58:59.717Z", + "completed":"2017-12-01T11:58:59.717Z", + "new_balance":"2235.02", + "value":"-13.67" + } + }, + { + "id":"67e19a00-34ae-47dc-a000-343d4134e2d8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T18:35:50.759Z", + "completed":"2017-12-01T18:35:50.759Z", + "new_balance":"2186.36", + "value":"-48.66" + } + }, + { + "id":"9d54f594-d8f2-4ec3-ae7a-f84388803efc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:47:33.407Z", + "completed":"2017-12-01T19:47:33.407Z", + "new_balance":"2151.93", + "value":"-34.43" + } + }, + { + "id":"d866daf9-de32-4523-88af-cfbb578dd519", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T21:10:16.478Z", + "completed":"2017-12-01T21:10:16.478Z", + "new_balance":"2127.37", + "value":"-24.56" + } + }, + { + "id":"051a8437-7e35-4d9d-b363-aacac55a9e5c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T21:37:18.759Z", + "completed":"2017-12-01T21:37:18.759Z", + "new_balance":"2074.19", + "value":"-53.18" + } + }, + { + "id":"27c6453f-7342-4a4f-b72a-973a6ddbd7fa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T16:17:16.258Z", + "completed":"2017-12-02T16:17:16.258Z", + "new_balance":"2063.19", + "value":"-11.00" + } + }, + { + "id":"ef68e9b6-a0da-4f07-9e10-a0dbc3898fd1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:02:42.643Z", + "completed":"2017-12-02T17:02:42.643Z", + "new_balance":"2005.51", + "value":"-57.68" + } + }, + { + "id":"fd7b9768-82a8-4fc2-9ff2-002b378e1840", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T21:17:47.336Z", + "completed":"2017-12-02T21:17:47.336Z", + "new_balance":"1993.58", + "value":"-11.93" + } + }, + { + "id":"61c51c69-fa02-4719-a5e3-870534a5aad3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T09:03:20.080Z", + "completed":"2017-12-04T09:03:20.080Z", + "new_balance":"1946.65", + "value":"-46.93" + } + }, + { + "id":"8b70ddfa-68e4-469d-9087-4aec0620d6d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T11:02:39.328Z", + "completed":"2017-12-04T11:02:39.328Z", + "new_balance":"1904.31", + "value":"-42.34" + } + }, + { + "id":"ec35a193-76f5-4f96-9af7-39c4495d4eff", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:00:58.771Z", + "completed":"2017-12-04T16:00:58.771Z", + "new_balance":"1878.94", + "value":"-25.37" + } + }, + { + "id":"975570ac-8d73-464c-83cd-c647fa5e9139", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T03:43:33.407Z", + "completed":"2017-12-05T03:43:33.407Z", + "new_balance":"1852.10", + "value":"-26.84" + } + }, + { + "id":"476e56de-8136-482a-9d2a-9356c8a9d9b9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T13:02:54.868Z", + "completed":"2017-12-05T13:02:54.868Z", + "new_balance":"1785.52", + "value":"-66.58" + } + }, + { + "id":"4952b9b2-ccf2-458a-9f48-80091f2b1958", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T10:33:38.493Z", + "completed":"2017-12-18T10:33:38.493Z", + "new_balance":"1732.34", + "value":"-53.18" + } + }, + { + "id":"f1197a32-405c-472c-be50-f13759ffd1b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T00:31:40.556Z", + "completed":"2017-12-30T00:31:40.556Z", + "new_balance":"1690.81", + "value":"-41.53" + } + }, + { + "id":"a3583207-4c6e-4f74-9ec4-77ace36ea4bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T16:52:18.745Z", + "completed":"2017-12-30T16:52:18.745Z", + "new_balance":"2879.32", + "value":"1188.51" + } + }, + { + "id":"ffe3b26f-f6b3-4640-9a46-718bac638de8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T18:29:32.437Z", + "completed":"2017-12-30T18:29:32.437Z", + "new_balance":"2836.98", + "value":"-42.34" + } + }, + { + "id":"e78d8779-a6ea-40cf-87bf-e27e74e4932f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T21:21:56.004Z", + "completed":"2017-12-30T21:21:56.004Z", + "new_balance":"2802.55", + "value":"-34.43" + } + }, + { + "id":"89d75907-09ca-433b-a676-e8268b8f71e2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T01:26:20.512Z", + "completed":"2016-03-01T01:26:20.512Z", + "new_balance":"2070.17", + "value":"-277.48" + } + }, + { + "id":"1e592634-2d36-4a5e-bdea-f69869343f39", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T01:28:39.066Z", + "completed":"2016-03-01T01:28:39.066Z", + "new_balance":"1773.57", + "value":"-296.60" + } + }, + { + "id":"c0ca5c2d-fa97-4296-86fc-46b77532cf8d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T04:29:56.187Z", + "completed":"2016-03-01T04:29:56.187Z", + "new_balance":"1751.21", + "value":"-22.36" + } + }, + { + "id":"34bd5449-ce39-40a5-b2c9-f755bf5637f0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T05:22:16.045Z", + "completed":"2016-03-01T05:22:16.045Z", + "new_balance":"1727.97", + "value":"-23.24" + } + }, + { + "id":"8dfb0bf6-c712-4464-9e2c-609ac07d834f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T12:26:39.010Z", + "completed":"2016-03-01T12:26:39.010Z", + "new_balance":"1714.87", + "value":"-13.10" + } + }, + { + "id":"03bae0aa-b0a4-45b7-95d5-94c351771424", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T19:43:15.090Z", + "completed":"2016-03-01T19:43:15.090Z", + "new_balance":"1658.06", + "value":"-56.81" + } + }, + { + "id":"fce8b977-1eb9-41cd-a511-f004e96f0666", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T01:28:23.992Z", + "completed":"2016-03-12T01:28:23.992Z", + "new_balance":"1653.88", + "value":"-4.18" + } + }, + { + "id":"49ab62cd-3a59-450a-8edb-d0570223f430", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T02:52:27.596Z", + "completed":"2016-03-12T02:52:27.596Z", + "new_balance":"1630.64", + "value":"-23.24" + } + }, + { + "id":"89847f16-f0cc-4dd3-89b8-c9f20ab783db", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T13:07:43.228Z", + "completed":"2016-03-12T13:07:43.228Z", + "new_balance":"1625.49", + "value":"-5.15" + } + }, + { + "id":"2c2be3af-1b9f-4c4d-934b-2f0f0d6093e2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T15:15:16.071Z", + "completed":"2016-03-12T15:15:16.071Z", + "new_balance":"1568.68", + "value":"-56.81" + } + }, + { + "id":"36391524-3b06-40dc-adfe-c37133becf64", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T00:58:14.290Z", + "completed":"2016-03-14T00:58:14.290Z", + "new_balance":"1729.49", + "value":"160.81" + } + }, + { + "id":"d5359cf5-75c9-4ebf-b645-6e48f8f512ef", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T23:14:40.099Z", + "completed":"2016-03-15T23:14:40.099Z", + "new_balance":"1759.76", + "value":"30.27" + } + }, + { + "id":"2093de2c-45da-476b-a664-2027e4e17283", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T11:50:02.809Z", + "completed":"2016-03-16T11:50:02.809Z", + "new_balance":"1850.72", + "value":"90.96" + } + }, + { + "id":"1acb2ca9-b6ae-465f-bfab-37449fafecbb", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T01:35:40.057Z", + "completed":"2016-03-17T01:35:40.057Z", + "new_balance":"1844.19", + "value":"-6.53" + } + }, + { + "id":"ad1b1d07-8e1a-41b9-a04f-1d586e5c34dc", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T11:14:58.568Z", + "completed":"2016-03-17T11:14:58.568Z", + "new_balance":"1838.71", + "value":"-5.48" + } + }, + { + "id":"d1ae038c-51b2-440c-be59-f0b85c62f967", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T11:48:16.823Z", + "completed":"2016-03-19T11:48:16.823Z", + "new_balance":"1886.58", + "value":"47.87" + } + }, + { + "id":"5d85f691-e99b-49f5-9e55-76137fa9cbd0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T08:13:27.103Z", + "completed":"2016-03-21T08:13:27.103Z", + "new_balance":"1893.42", + "value":"6.84" + } + }, + { + "id":"7cd1a2e2-f21c-4832-9ab0-a29bfd57f269", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T21:12:53.761Z", + "completed":"2016-03-21T21:12:53.761Z", + "new_balance":"1886.23", + "value":"-7.19" + } + }, + { + "id":"a4a1b651-c70a-4437-b748-63e24b3521ed", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:38:08.804Z", + "completed":"2016-03-24T01:38:08.804Z", + "new_balance":"1916.50", + "value":"30.27" + } + }, + { + "id":"0fa04c41-e269-4797-9d7d-848ceace49fd", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T08:13:16.974Z", + "completed":"2016-03-24T08:13:16.974Z", + "new_balance":"1866.28", + "value":"-50.22" + } + }, + { + "id":"6dfd03f6-9150-4a9a-863b-a176cf333a05", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T13:21:32.071Z", + "completed":"2016-03-25T13:21:32.071Z", + "new_balance":"1916.36", + "value":"50.08" + } + }, + { + "id":"8f853d53-c20c-4f4e-9ea4-3f42167775c3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:21:28.619Z", + "completed":"2016-03-25T19:21:28.619Z", + "new_balance":"1847.28", + "value":"-69.08" + } + }, + { + "id":"1e8c1852-47f6-49bb-87aa-25ef68983120", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T02:53:24.851Z", + "completed":"2016-03-28T02:53:24.851Z", + "new_balance":"2256.10", + "value":"408.82" + } + }, + { + "id":"8afca148-87ec-4617-a750-0c6594495c44", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:35:04.127Z", + "completed":"2016-03-28T18:35:04.127Z", + "new_balance":"2416.91", + "value":"160.81" + } + }, + { + "id":"f6c5acbb-a9ca-4c9e-ad54-9e8ebb515cf4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T07:37:12.382Z", + "completed":"2016-03-30T07:37:12.382Z", + "new_balance":"2437.80", + "value":"20.89" + } + }, + { + "id":"0aa029f0-fec5-48f7-8794-5edd5ad8c42a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T08:11:30.382Z", + "completed":"2016-03-30T08:11:30.382Z", + "new_balance":"2468.07", + "value":"30.27" + } + }, + { + "id":"9c296b68-e6a4-42bb-88ff-6d0bd270707e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T06:10:03.081Z", + "completed":"2016-06-01T06:10:03.081Z", + "new_balance":"2190.59", + "value":"-277.48" + } + }, + { + "id":"c7d0b495-802b-48b8-a3be-03d8ff3d5599", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T11:58:00.939Z", + "completed":"2016-06-01T11:58:00.939Z", + "new_balance":"2167.35", + "value":"-23.24" + } + }, + { + "id":"b1d8185b-0e04-4b61-944c-86f6deb60ebe", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T12:13:10.260Z", + "completed":"2016-06-01T12:13:10.260Z", + "new_balance":"2154.25", + "value":"-13.10" + } + }, + { + "id":"4b47b888-b3c8-41fe-8014-be6a5c87297b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T13:32:15.796Z", + "completed":"2016-06-01T13:32:15.796Z", + "new_balance":"2097.44", + "value":"-56.81" + } + }, + { + "id":"35b26b6b-8405-40ba-8888-7d692f3bf8bf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T16:47:12.032Z", + "completed":"2016-06-01T16:47:12.032Z", + "new_balance":"2075.08", + "value":"-22.36" + } + }, + { + "id":"8bbe54dc-4a67-4ca4-bffa-d958fb8fd7dc", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T22:55:19.592Z", + "completed":"2016-06-01T22:55:19.592Z", + "new_balance":"1778.48", + "value":"-296.60" + } + }, + { + "id":"6847bb10-b37a-488f-ab47-ca50c0e71113", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:56:35.341Z", + "completed":"2016-06-04T04:56:35.341Z", + "new_balance":"1774.30", + "value":"-4.18" + } + }, + { + "id":"5f95cc78-aeaf-4d11-b250-60ea31c5232a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:11:51.491Z", + "completed":"2016-06-04T10:11:51.491Z", + "new_balance":"1769.15", + "value":"-5.15" + } + }, + { + "id":"7ecddde4-8e82-4769-984e-4125ab6545b3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T09:31:52.955Z", + "completed":"2016-06-05T09:31:52.955Z", + "new_balance":"1712.34", + "value":"-56.81" + } + }, + { + "id":"38a75204-727d-483d-913c-864a4a56cffa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T13:27:57.211Z", + "completed":"2016-06-05T13:27:57.211Z", + "new_balance":"1689.10", + "value":"-23.24" + } + }, + { + "id":"4ee5ae8f-668d-413c-9c7e-f9502f7e839c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T12:51:33.305Z", + "completed":"2016-06-07T12:51:33.305Z", + "new_balance":"1719.37", + "value":"30.27" + } + }, + { + "id":"cc455571-ff33-4d74-b332-5d593aa41cfe", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T20:30:04.942Z", + "completed":"2016-06-07T20:30:04.942Z", + "new_balance":"1880.18", + "value":"160.81" + } + }, + { + "id":"23d4248d-82cf-4a47-9d7d-dc3f41a2ae7e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T21:21:58.801Z", + "completed":"2016-06-07T21:21:58.801Z", + "new_balance":"1873.65", + "value":"-6.53" + } + }, + { + "id":"0e9ca7f2-21d9-486c-bb7f-e870baa8c710", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T21:44:42.251Z", + "completed":"2016-06-07T21:44:42.251Z", + "new_balance":"1964.61", + "value":"90.96" + } + }, + { + "id":"851aa2c7-1ed9-49d9-9e42-be2d607a2fea", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T04:02:39.000Z", + "completed":"2016-06-11T04:02:39.000Z", + "new_balance":"1959.13", + "value":"-5.48" + } + }, + { + "id":"116459c8-0fb8-4d21-8ff8-4b698f830896", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T02:20:32.157Z", + "completed":"2016-06-14T02:20:32.157Z", + "new_balance":"2007.00", + "value":"47.87" + } + }, + { + "id":"f72a2942-e995-4fb6-8837-7f9a856b0d82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T03:29:18.973Z", + "completed":"2016-06-14T03:29:18.973Z", + "new_balance":"1999.81", + "value":"-7.19" + } + }, + { + "id":"8c9d84e5-4d43-41ed-8a04-c34692331894", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:26:51.619Z", + "completed":"2016-06-14T09:26:51.619Z", + "new_balance":"2006.65", + "value":"6.84" + } + }, + { + "id":"bf070a47-8127-40e9-910c-8a990e87a628", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T09:49:22.370Z", + "completed":"2016-06-16T09:49:22.370Z", + "new_balance":"2036.92", + "value":"30.27" + } + }, + { + "id":"49e6acb3-94bc-4957-9563-3f0d34f174ad", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T16:17:22.838Z", + "completed":"2016-06-16T16:17:22.838Z", + "new_balance":"1986.70", + "value":"-50.22" + } + }, + { + "id":"342ca787-2412-463d-ba93-58a1e1f162d6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T05:58:22.162Z", + "completed":"2016-06-21T05:58:22.162Z", + "new_balance":"2036.78", + "value":"50.08" + } + }, + { + "id":"d16dff0c-3057-4ac6-a5c5-3b86fd6b9e96", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T06:14:45.884Z", + "completed":"2016-06-21T06:14:45.884Z", + "new_balance":"1967.70", + "value":"-69.08" + } + }, + { + "id":"f76895ab-fa32-487e-a8f5-cec86031303c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T14:02:53.042Z", + "completed":"2016-06-21T14:02:53.042Z", + "new_balance":"2128.51", + "value":"160.81" + } + }, + { + "id":"eba51875-f325-46c7-90af-a65f0444ca7c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T17:26:49.281Z", + "completed":"2016-06-21T17:26:49.281Z", + "new_balance":"2537.33", + "value":"408.82" + } + }, + { + "id":"6ac4f96f-c33a-47e3-9f90-67324fd5ded4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T09:52:16.771Z", + "completed":"2016-06-30T09:52:16.771Z", + "new_balance":"2567.60", + "value":"30.27" + } + }, + { + "id":"e90ecf26-b7ca-4e4a-9c71-d88ae474dc22", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T12:14:35.577Z", + "completed":"2016-06-30T12:14:35.577Z", + "new_balance":"2588.49", + "value":"20.89" + } + }, + { + "id":"58591098-83a6-4bdc-a6d2-5a6af3b24d55", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T03:17:16.538Z", + "completed":"2016-09-01T03:17:16.538Z", + "new_balance":"2575.39", + "value":"-13.10" + } + }, + { + "id":"9fdb6060-bdfc-44bc-b8fb-da2e4727cd67", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T03:49:32.385Z", + "completed":"2016-09-01T03:49:32.385Z", + "new_balance":"2297.91", + "value":"-277.48" + } + }, + { + "id":"fc79077f-920d-49ee-9946-d918e3022f78", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T05:24:42.707Z", + "completed":"2016-09-01T05:24:42.707Z", + "new_balance":"2001.31", + "value":"-296.60" + } + }, + { + "id":"8b7b2180-a16c-4865-9e0a-cfd3edf4cd1e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T13:38:03.353Z", + "completed":"2016-09-01T13:38:03.353Z", + "new_balance":"1944.50", + "value":"-56.81" + } + }, + { + "id":"1f41e822-2634-4160-868f-f677d0f05d9d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T15:16:14.888Z", + "completed":"2016-09-01T15:16:14.888Z", + "new_balance":"1921.26", + "value":"-23.24" + } + }, + { + "id":"714fd4e9-4ec1-4abc-980d-9c8a912df90c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T16:27:12.006Z", + "completed":"2016-09-01T16:27:12.006Z", + "new_balance":"1898.90", + "value":"-22.36" + } + }, + { + "id":"c3670e23-1a24-479d-b298-e3f04b2e98ae", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T00:10:51.400Z", + "completed":"2016-09-12T00:10:51.400Z", + "new_balance":"1894.72", + "value":"-4.18" + } + }, + { + "id":"4be11392-cfe8-4208-ad0b-460e989edf10", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T10:40:29.951Z", + "completed":"2016-09-12T10:40:29.951Z", + "new_balance":"1889.57", + "value":"-5.15" + } + }, + { + "id":"48f1615e-9020-4ac2-bd41-ee08689a6c58", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T17:08:29.762Z", + "completed":"2016-09-12T17:08:29.762Z", + "new_balance":"1866.33", + "value":"-23.24" + } + }, + { + "id":"5cd189c6-262b-42cf-9402-5ca29c6dbb7b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T23:27:55.425Z", + "completed":"2016-09-12T23:27:55.425Z", + "new_balance":"1809.52", + "value":"-56.81" + } + }, + { + "id":"56408fad-a36b-490d-bb95-d77e709ac190", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:11:52.623Z", + "completed":"2016-09-15T02:11:52.623Z", + "new_balance":"1970.33", + "value":"160.81" + } + }, + { + "id":"06a10a1a-63de-48bb-b09d-7d289bcb586f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T09:18:01.794Z", + "completed":"2016-09-15T09:18:01.794Z", + "new_balance":"2000.60", + "value":"30.27" + } + }, + { + "id":"d7b3f49e-9efb-4761-979e-0a57eb7aeaaf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T06:17:56.422Z", + "completed":"2016-09-17T06:17:56.422Z", + "new_balance":"2091.56", + "value":"90.96" + } + }, + { + "id":"1e50a798-ed0c-46eb-97d8-e01211ca508e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T08:29:19.790Z", + "completed":"2016-09-17T08:29:19.790Z", + "new_balance":"2085.03", + "value":"-6.53" + } + }, + { + "id":"4a31b460-1949-4a0c-816d-3478f5803647", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T23:05:12.142Z", + "completed":"2016-09-17T23:05:12.142Z", + "new_balance":"2079.55", + "value":"-5.48" + } + }, + { + "id":"bb923dd1-c167-447e-b3a1-f1615911f7d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T13:42:50.068Z", + "completed":"2016-09-19T13:42:50.068Z", + "new_balance":"2127.42", + "value":"47.87" + } + }, + { + "id":"a5d4340e-7634-47f2-8c34-6f53a31f2734", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T11:56:07.887Z", + "completed":"2016-09-21T11:56:07.887Z", + "new_balance":"2134.26", + "value":"6.84" + } + }, + { + "id":"82dda9fc-d246-46ba-8f39-8c55535e8b82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T20:10:27.835Z", + "completed":"2016-09-21T20:10:27.835Z", + "new_balance":"2127.07", + "value":"-7.19" + } + }, + { + "id":"673c6c2a-fea5-474b-9142-020db7af5140", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T12:52:37.264Z", + "completed":"2016-09-24T12:52:37.264Z", + "new_balance":"2157.34", + "value":"30.27" + } + }, + { + "id":"9dd21b13-25ee-4743-9166-b115352beb69", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T19:22:18.694Z", + "completed":"2016-09-24T19:22:18.694Z", + "new_balance":"2107.12", + "value":"-50.22" + } + }, + { + "id":"499769f8-6d52-43e8-9fdd-36bfebe0e3a5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T00:45:21.786Z", + "completed":"2016-09-25T00:45:21.786Z", + "new_balance":"2038.04", + "value":"-69.08" + } + }, + { + "id":"c0216fdc-07ce-4e5c-b466-cc2d203629f9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T15:09:50.427Z", + "completed":"2016-09-25T15:09:50.427Z", + "new_balance":"2088.12", + "value":"50.08" + } + }, + { + "id":"6d613735-c880-46e0-a13d-b7f7e7f59858", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T20:30:45.870Z", + "completed":"2016-09-28T20:30:45.870Z", + "new_balance":"2496.94", + "value":"408.82" + } + }, + { + "id":"ee49fb9c-b560-46c6-9bc0-b4d5d2024c11", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T21:53:38.187Z", + "completed":"2016-09-28T21:53:38.187Z", + "new_balance":"2657.75", + "value":"160.81" + } + }, + { + "id":"f3eae58a-14a6-4b40-9f30-12b6584d3cb0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:13:14.979Z", + "completed":"2016-09-30T14:13:14.979Z", + "new_balance":"2678.64", + "value":"20.89" + } + }, + { + "id":"14d73c6e-2bf1-4ce6-83c6-c274e33cc3a8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T22:21:14.887Z", + "completed":"2016-09-30T22:21:14.887Z", + "new_balance":"2708.91", + "value":"30.27" + } + }, + { + "id":"433426da-76c5-4fab-b464-7f09b8de059c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T05:29:49.715Z", + "completed":"2016-12-01T05:29:49.715Z", + "new_balance":"2686.55", + "value":"-22.36" + } + }, + { + "id":"6d8e6a30-e124-46c1-bdf9-01565224aa90", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T07:31:57.991Z", + "completed":"2016-12-01T07:31:57.991Z", + "new_balance":"2663.31", + "value":"-23.24" + } + }, + { + "id":"41a8e889-9414-4eb8-9ce3-ff21b9dd5239", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T08:34:42.748Z", + "completed":"2016-12-01T08:34:42.748Z", + "new_balance":"2606.50", + "value":"-56.81" + } + }, + { + "id":"e4680c32-dd00-483a-b4a1-1ef4f77a992d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T14:47:20.387Z", + "completed":"2016-12-01T14:47:20.387Z", + "new_balance":"2329.02", + "value":"-277.48" + } + }, + { + "id":"6ab8c188-1563-4c6d-a924-e2f045b71c10", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T18:21:54.055Z", + "completed":"2016-12-01T18:21:54.055Z", + "new_balance":"2315.92", + "value":"-13.10" + } + }, + { + "id":"39b03d94-0f94-43e4-818d-6bb33b630aba", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T22:45:44.950Z", + "completed":"2016-12-01T22:45:44.950Z", + "new_balance":"2019.32", + "value":"-296.60" + } + }, + { + "id":"553bcdb3-11df-4808-889e-cbcea0f3848d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:04:50.778Z", + "completed":"2016-12-04T07:04:50.778Z", + "new_balance":"2014.17", + "value":"-5.15" + } + }, + { + "id":"b08b746e-8746-40cc-8277-65b2d334bbdf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T22:08:29.550Z", + "completed":"2016-12-04T22:08:29.550Z", + "new_balance":"2009.99", + "value":"-4.18" + } + }, + { + "id":"fa85626c-2743-4e11-a43b-5a8eeb72978c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T07:50:36.240Z", + "completed":"2016-12-05T07:50:36.240Z", + "new_balance":"1953.18", + "value":"-56.81" + } + }, + { + "id":"7cd82e15-7164-4dc3-bae8-ebe6bbef5c59", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T23:09:48.812Z", + "completed":"2016-12-05T23:09:48.812Z", + "new_balance":"1929.94", + "value":"-23.24" + } + }, + { + "id":"9f1cf1cb-4db2-43a5-ac37-1e5b81e7029c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T06:21:01.038Z", + "completed":"2016-12-07T06:21:01.038Z", + "new_balance":"2090.75", + "value":"160.81" + } + }, + { + "id":"76d8422a-ddb0-419c-9933-3b233ec9934f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T09:59:21.619Z", + "completed":"2016-12-07T09:59:21.619Z", + "new_balance":"2084.22", + "value":"-6.53" + } + }, + { + "id":"449c5704-9fd4-4790-bc2f-49e34625eb98", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:02:46.118Z", + "completed":"2016-12-07T11:02:46.118Z", + "new_balance":"2114.49", + "value":"30.27" + } + }, + { + "id":"b668fb6d-c73d-434d-b0d8-e6be1caa8604", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T23:56:22.733Z", + "completed":"2016-12-07T23:56:22.733Z", + "new_balance":"2205.45", + "value":"90.96" + } + }, + { + "id":"a7b9904d-4be9-4bc4-ae80-cd064704dbd2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T03:57:21.230Z", + "completed":"2016-12-11T03:57:21.230Z", + "new_balance":"2199.97", + "value":"-5.48" + } + }, + { + "id":"d4162e9b-f3b5-402f-b751-c048ba222164", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T10:55:10.848Z", + "completed":"2016-12-14T10:55:10.848Z", + "new_balance":"2247.84", + "value":"47.87" + } + }, + { + "id":"82364bc8-2279-46df-bc07-4637a08717a0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:36:26.657Z", + "completed":"2016-12-14T21:36:26.657Z", + "new_balance":"2240.65", + "value":"-7.19" + } + }, + { + "id":"f5a4fbd7-ac3f-408c-bc57-cbab5e859e98", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:50:13.602Z", + "completed":"2016-12-14T21:50:13.602Z", + "new_balance":"2247.49", + "value":"6.84" + } + }, + { + "id":"d85d3034-16c4-42df-a65a-209f8d56f3c9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T17:53:54.620Z", + "completed":"2016-12-16T17:53:54.620Z", + "new_balance":"2197.27", + "value":"-50.22" + } + }, + { + "id":"04a60604-b737-452b-aa53-2b18374b9323", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T19:22:37.120Z", + "completed":"2016-12-16T19:22:37.120Z", + "new_balance":"2227.54", + "value":"30.27" + } + }, + { + "id":"be12c40d-ed61-4619-bd34-0f53e8179cf3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T06:10:59.765Z", + "completed":"2016-12-21T06:10:59.765Z", + "new_balance":"2388.35", + "value":"160.81" + } + }, + { + "id":"5a2cb1c8-4688-4101-9f8e-8165ad45ba21", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T07:33:43.850Z", + "completed":"2016-12-21T07:33:43.850Z", + "new_balance":"2438.43", + "value":"50.08" + } + }, + { + "id":"7bd19c72-3e2a-4731-bcd9-48e9ea92eb0e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:26:08.067Z", + "completed":"2016-12-21T19:26:08.067Z", + "new_balance":"2847.25", + "value":"408.82" + } + }, + { + "id":"db22c156-9fd6-4291-963c-84c269bc5e4b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T22:22:45.395Z", + "completed":"2016-12-21T22:22:45.395Z", + "new_balance":"2778.17", + "value":"-69.08" + } + }, + { + "id":"776d3c7c-d98b-423d-b78a-6d4794d1b76b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T03:10:04.631Z", + "completed":"2016-12-30T03:10:04.631Z", + "new_balance":"2799.06", + "value":"20.89" + } + }, + { + "id":"aebdf726-1444-4321-9c08-ca26a508e1d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T03:37:20.273Z", + "completed":"2016-12-30T03:37:20.273Z", + "new_balance":"2829.33", + "value":"30.27" + } + }, + { + "id":"5a44b25d-a038-4e0d-8d25-e7d3f605396a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T00:41:16.694Z", + "completed":"2017-03-01T00:41:16.694Z", + "new_balance":"2806.97", + "value":"-22.36" + } + }, + { + "id":"874ea56b-2d0d-4533-beac-5b33624d6281", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T02:59:05.933Z", + "completed":"2017-03-01T02:59:05.933Z", + "new_balance":"2750.16", + "value":"-56.81" + } + }, + { + "id":"5bc71659-078c-452b-b6ae-e98fa7316c07", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T11:24:43.314Z", + "completed":"2017-03-01T11:24:43.314Z", + "new_balance":"2472.68", + "value":"-277.48" + } + }, + { + "id":"c6bc7ead-3dd2-4368-be36-48bdba342467", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T17:43:02.860Z", + "completed":"2017-03-01T17:43:02.860Z", + "new_balance":"2176.08", + "value":"-296.60" + } + }, + { + "id":"5dcd9567-01d6-4b6b-89b3-7f3ba2ec128d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T23:12:33.959Z", + "completed":"2017-03-01T23:12:33.959Z", + "new_balance":"2152.84", + "value":"-23.24" + } + }, + { + "id":"8396dfc8-32d1-406f-a09a-5f9d47627271", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T23:41:59.183Z", + "completed":"2017-03-01T23:41:59.183Z", + "new_balance":"2139.74", + "value":"-13.10" + } + }, + { + "id":"0686ed7a-144b-47e9-aa7b-38fdf9d25228", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T00:25:14.055Z", + "completed":"2017-03-12T00:25:14.055Z", + "new_balance":"2134.59", + "value":"-5.15" + } + }, + { + "id":"1a915aa3-239b-40c9-8b98-fd9353e106b0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T04:34:48.683Z", + "completed":"2017-03-12T04:34:48.683Z", + "new_balance":"2077.78", + "value":"-56.81" + } + }, + { + "id":"39e1b874-91f1-48d0-ac30-1d800f6db523", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T19:31:11.466Z", + "completed":"2017-03-12T19:31:11.466Z", + "new_balance":"2054.54", + "value":"-23.24" + } + }, + { + "id":"d827cc47-f021-4e8c-80e2-0329d9b5158e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T21:52:18.762Z", + "completed":"2017-03-12T21:52:18.762Z", + "new_balance":"2050.36", + "value":"-4.18" + } + }, + { + "id":"ef745405-df12-4f56-bfd3-ec6f0910a478", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T08:51:54.311Z", + "completed":"2017-03-14T08:51:54.311Z", + "new_balance":"2211.17", + "value":"160.81" + } + }, + { + "id":"335b027d-a439-4e2d-9bf7-e6c3d7487cde", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T22:34:07.626Z", + "completed":"2017-03-15T22:34:07.626Z", + "new_balance":"2241.44", + "value":"30.27" + } + }, + { + "id":"b7b37640-cee2-460e-893a-427bcbce45ce", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T22:31:30.106Z", + "completed":"2017-03-16T22:31:30.106Z", + "new_balance":"2332.40", + "value":"90.96" + } + }, + { + "id":"9bf9e921-3349-42db-80ef-7081dd7f2774", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T02:03:56.747Z", + "completed":"2017-03-17T02:03:56.747Z", + "new_balance":"2325.87", + "value":"-6.53" + } + }, + { + "id":"b5d5edf7-37c2-49c2-b0a4-0f7e9910b073", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T18:12:33.799Z", + "completed":"2017-03-17T18:12:33.799Z", + "new_balance":"2320.39", + "value":"-5.48" + } + }, + { + "id":"a7afcd44-f2ad-4dd1-9157-8556956b1a3b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T13:01:40.862Z", + "completed":"2017-03-19T13:01:40.862Z", + "new_balance":"2368.26", + "value":"47.87" + } + }, + { + "id":"4bfd9012-ea1b-454c-88aa-a668ae83c29f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T02:57:46.238Z", + "completed":"2017-03-21T02:57:46.238Z", + "new_balance":"2375.10", + "value":"6.84" + } + }, + { + "id":"e635dfde-9d83-4ee8-a558-3520ec6c1e49", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T06:35:38.897Z", + "completed":"2017-03-21T06:35:38.897Z", + "new_balance":"2367.91", + "value":"-7.19" + } + }, + { + "id":"531cb8a8-9f04-4499-8791-75b2d17ce5f0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T09:36:46.685Z", + "completed":"2017-03-24T09:36:46.685Z", + "new_balance":"2317.69", + "value":"-50.22" + } + }, + { + "id":"d884047d-1ae7-4f52-afd0-a03185b2dd8d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T14:16:47.505Z", + "completed":"2017-03-24T14:16:47.505Z", + "new_balance":"2347.96", + "value":"30.27" + } + }, + { + "id":"4c0d4507-d3fd-47cd-9a63-5480d6ace9ff", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T06:51:00.302Z", + "completed":"2017-03-25T06:51:00.302Z", + "new_balance":"2398.04", + "value":"50.08" + } + }, + { + "id":"ea3cd737-b5d9-4654-8961-5c23f5573af6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T21:59:06.608Z", + "completed":"2017-03-25T21:59:06.608Z", + "new_balance":"2328.96", + "value":"-69.08" + } + }, + { + "id":"2f8d2ded-7153-4194-84d6-2d61deb953db", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T05:46:54.354Z", + "completed":"2017-03-28T05:46:54.354Z", + "new_balance":"2737.78", + "value":"408.82" + } + }, + { + "id":"6b08e118-08cb-450f-a588-3df6267ae2a8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:18:44.729Z", + "completed":"2017-03-28T16:18:44.729Z", + "new_balance":"2898.59", + "value":"160.81" + } + }, + { + "id":"2918e1fb-a5fa-423c-b96c-091c57fe8c86", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T02:31:23.542Z", + "completed":"2017-03-30T02:31:23.542Z", + "new_balance":"2928.86", + "value":"30.27" + } + }, + { + "id":"1dbc83c8-71ea-421c-b507-e54b711ee36f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T20:47:01.718Z", + "completed":"2017-03-30T20:47:01.718Z", + "new_balance":"2949.75", + "value":"20.89" + } + }, + { + "id":"56e04037-8101-45a1-ac97-5c0516050440", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T10:08:17.856Z", + "completed":"2017-06-01T10:08:17.856Z", + "new_balance":"2926.51", + "value":"-23.24" + } + }, + { + "id":"59038ff2-2c5a-4c88-9d94-23fe56192cc5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T12:56:00.936Z", + "completed":"2017-06-01T12:56:00.936Z", + "new_balance":"2629.91", + "value":"-296.60" + } + }, + { + "id":"edf2cd5a-0d28-43ed-a2c6-1f8379ef016d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T13:33:16.570Z", + "completed":"2017-06-01T13:33:16.570Z", + "new_balance":"2352.43", + "value":"-277.48" + } + }, + { + "id":"dc0aed43-d5d2-4edd-bb75-3e3ba48a2f4e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T16:16:01.137Z", + "completed":"2017-06-01T16:16:01.137Z", + "new_balance":"2295.62", + "value":"-56.81" + } + }, + { + "id":"721afc0a-9483-4c52-9f50-6471bc223219", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T17:59:25.390Z", + "completed":"2017-06-01T17:59:25.390Z", + "new_balance":"2282.52", + "value":"-13.10" + } + }, + { + "id":"3838f605-65e0-4026-8e00-44b8b3e73297", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T23:49:12.084Z", + "completed":"2017-06-01T23:49:12.084Z", + "new_balance":"2260.16", + "value":"-22.36" + } + }, + { + "id":"d0589486-3a36-48c5-8203-97ee1b39601f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T04:05:14.622Z", + "completed":"2017-06-04T04:05:14.622Z", + "new_balance":"2255.98", + "value":"-4.18" + } + }, + { + "id":"65c271fe-711e-4873-ae51-d4f1e8c5b303", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T10:16:18.144Z", + "completed":"2017-06-04T10:16:18.144Z", + "new_balance":"2250.83", + "value":"-5.15" + } + }, + { + "id":"cdf63fb9-ea7d-4139-bd63-61096a745686", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T02:39:34.639Z", + "completed":"2017-06-05T02:39:34.639Z", + "new_balance":"2194.02", + "value":"-56.81" + } + }, + { + "id":"3b9ac737-0734-4d2c-88e8-76552e324e82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T16:17:28.453Z", + "completed":"2017-06-05T16:17:28.453Z", + "new_balance":"2170.78", + "value":"-23.24" + } + }, + { + "id":"af628a1a-dbfd-44e7-a83f-e7b085889f3d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T06:48:38.651Z", + "completed":"2017-06-07T06:48:38.651Z", + "new_balance":"2331.59", + "value":"160.81" + } + }, + { + "id":"87fdbe96-715a-4724-98e0-f0d448f1dbfa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T18:37:00.514Z", + "completed":"2017-06-07T18:37:00.514Z", + "new_balance":"2361.86", + "value":"30.27" + } + }, + { + "id":"09b2470a-6e8f-47e5-8acd-f013a1388df4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T21:00:03.034Z", + "completed":"2017-06-07T21:00:03.034Z", + "new_balance":"2355.33", + "value":"-6.53" + } + }, + { + "id":"64d7b775-0684-486c-a304-5e3885477a29", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T21:49:19.555Z", + "completed":"2017-06-07T21:49:19.555Z", + "new_balance":"2446.29", + "value":"90.96" + } + }, + { + "id":"652f58af-90d8-41a5-8ade-8c0518db6c9c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T07:03:40.726Z", + "completed":"2017-06-11T07:03:40.726Z", + "new_balance":"2440.81", + "value":"-5.48" + } + }, + { + "id":"0c51272c-b055-440b-a219-5862bbabb36b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T05:59:56.463Z", + "completed":"2017-06-14T05:59:56.463Z", + "new_balance":"2488.68", + "value":"47.87" + } + }, + { + "id":"dba72fbe-e501-4c3a-bac1-52c258680901", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T12:00:53.629Z", + "completed":"2017-06-14T12:00:53.629Z", + "new_balance":"2481.49", + "value":"-7.19" + } + }, + { + "id":"a423c08c-425e-4a97-88bc-61ec8a734438", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:32:50.646Z", + "completed":"2017-06-14T13:32:50.646Z", + "new_balance":"2488.33", + "value":"6.84" + } + }, + { + "id":"0be05256-35da-4aba-8c4c-c323e6397d85", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T07:42:44.563Z", + "completed":"2017-06-16T07:42:44.563Z", + "new_balance":"2438.11", + "value":"-50.22" + } + }, + { + "id":"051ef3a2-0867-4387-a036-5513577d9031", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T20:57:17.626Z", + "completed":"2017-06-16T20:57:17.626Z", + "new_balance":"2468.38", + "value":"30.27" + } + }, + { + "id":"ad9b4bc7-45c0-431a-8ff7-6d7e2f5dbdb7", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T10:43:24.028Z", + "completed":"2017-06-21T10:43:24.028Z", + "new_balance":"2399.30", + "value":"-69.08" + } + }, + { + "id":"c4bf59ee-7e1e-4983-beb2-a76fbfe2cf55", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T11:07:26.205Z", + "completed":"2017-06-21T11:07:26.205Z", + "new_balance":"2449.38", + "value":"50.08" + } + }, + { + "id":"c4742360-2259-42a1-8a0f-834bdd7f96c6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:57:21.592Z", + "completed":"2017-06-21T14:57:21.592Z", + "new_balance":"2610.19", + "value":"160.81" + } + }, + { + "id":"f2f26571-9178-4dba-8bda-b324827cbea4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T18:19:47.549Z", + "completed":"2017-06-21T18:19:47.549Z", + "new_balance":"3019.01", + "value":"408.82" + } + }, + { + "id":"ab7ab48e-9d4e-4f95-94f1-f18d81fa1ba3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T01:49:13.125Z", + "completed":"2017-06-30T01:49:13.125Z", + "new_balance":"3049.28", + "value":"30.27" + } + }, + { + "id":"322139a2-45e6-4872-a0f8-3238ce53be0c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T20:13:06.808Z", + "completed":"2017-06-30T20:13:06.808Z", + "new_balance":"3070.17", + "value":"20.89" + } + }, + { + "id":"fb8da42e-7b7c-4510-a008-c58e2e5601c2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T02:14:32.171Z", + "completed":"2017-09-01T02:14:32.171Z", + "new_balance":"3013.36", + "value":"-56.81" + } + }, + { + "id":"1a2470ab-9cfa-4340-8c7a-67bd0938acc8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T02:26:20.988Z", + "completed":"2017-09-01T02:26:20.988Z", + "new_balance":"2991.00", + "value":"-22.36" + } + }, + { + "id":"679f2603-76cd-43ed-8758-f2d43c17545b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T04:00:41.766Z", + "completed":"2017-09-01T04:00:41.766Z", + "new_balance":"2967.76", + "value":"-23.24" + } + }, + { + "id":"d07bc9b3-5b8e-49f5-9d3b-a2b498a0bc3d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:52:09.077Z", + "completed":"2017-09-01T05:52:09.077Z", + "new_balance":"2954.66", + "value":"-13.10" + } + }, + { + "id":"59576ed4-b177-4197-94f9-e490660dfe1e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:14:11.363Z", + "completed":"2017-09-01T06:14:11.363Z", + "new_balance":"2677.18", + "value":"-277.48" + } + }, + { + "id":"001077f7-0801-4e63-a9a2-831ed5e9b014", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T19:39:53.224Z", + "completed":"2017-09-01T19:39:53.224Z", + "new_balance":"2380.58", + "value":"-296.60" + } + }, + { + "id":"87a6fe39-e048-4453-8be3-f51601cc94fa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T09:24:09.805Z", + "completed":"2017-09-12T09:24:09.805Z", + "new_balance":"2376.40", + "value":"-4.18" + } + }, + { + "id":"6df00ee6-8f34-434b-8a31-69963993331d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T09:52:43.420Z", + "completed":"2017-09-12T09:52:43.420Z", + "new_balance":"2319.59", + "value":"-56.81" + } + }, + { + "id":"f81ed790-9faa-4b3c-828b-445d189a03bf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T19:41:17.600Z", + "completed":"2017-09-12T19:41:17.600Z", + "new_balance":"2296.35", + "value":"-23.24" + } + }, + { + "id":"0a21c5ec-4b0a-4bdf-9d70-21be9609addb", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T21:25:01.542Z", + "completed":"2017-09-12T21:25:01.542Z", + "new_balance":"2291.20", + "value":"-5.15" + } + }, + { + "id":"dcd21f63-2b70-4e16-a099-d9d7ad73cb6c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T04:21:44.941Z", + "completed":"2017-09-15T04:21:44.941Z", + "new_balance":"2321.47", + "value":"30.27" + } + }, + { + "id":"374b955f-bee5-407d-9394-dacdfcbe8a3c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T10:32:00.455Z", + "completed":"2017-09-15T10:32:00.455Z", + "new_balance":"2482.28", + "value":"160.81" + } + }, + { + "id":"02c5cd92-b5ac-4e1a-96a5-e208b721a7d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T03:36:34.614Z", + "completed":"2017-09-17T03:36:34.614Z", + "new_balance":"2476.80", + "value":"-5.48" + } + }, + { + "id":"2ac983fd-be2d-4e83-b02e-f8aade05c90e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T07:59:29.581Z", + "completed":"2017-09-17T07:59:29.581Z", + "new_balance":"2470.27", + "value":"-6.53" + } + }, + { + "id":"1ba70dd9-b988-44e2-9ac1-d1ad8606074a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T09:19:49.855Z", + "completed":"2017-09-17T09:19:49.855Z", + "new_balance":"2561.23", + "value":"90.96" + } + }, + { + "id":"f4c68da8-2a17-4a7a-a840-06b1c355844a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T14:37:54.411Z", + "completed":"2017-09-19T14:37:54.411Z", + "new_balance":"2609.10", + "value":"47.87" + } + }, + { + "id":"d7c482b6-5f6b-46df-a2d3-e7db508e6a80", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:33:33.277Z", + "completed":"2017-09-21T05:33:33.277Z", + "new_balance":"2615.94", + "value":"6.84" + } + }, + { + "id":"249681ae-229f-41de-9f47-20961cfa90e8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T07:16:47.781Z", + "completed":"2017-09-21T07:16:47.781Z", + "new_balance":"2608.75", + "value":"-7.19" + } + }, + { + "id":"a65bafdb-7ef2-47c6-b408-a07e01f11194", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T13:57:29.133Z", + "completed":"2017-09-24T13:57:29.133Z", + "new_balance":"2558.53", + "value":"-50.22" + } + }, + { + "id":"1898a0b0-096f-42a3-b1cf-c611f5540f16", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T21:40:16.842Z", + "completed":"2017-09-24T21:40:16.842Z", + "new_balance":"2588.80", + "value":"30.27" + } + }, + { + "id":"7e0ffadc-9335-4dcf-a167-218ec49eed69", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T07:10:44.448Z", + "completed":"2017-09-25T07:10:44.448Z", + "new_balance":"2519.72", + "value":"-69.08" + } + }, + { + "id":"e769ae3d-bf10-4824-8c46-765f534762b3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T09:24:38.931Z", + "completed":"2017-09-25T09:24:38.931Z", + "new_balance":"2569.80", + "value":"50.08" + } + }, + { + "id":"2de053e0-4494-42a2-ac15-c3d7b4ec8729", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T05:34:00.680Z", + "completed":"2017-09-28T05:34:00.680Z", + "new_balance":"2978.62", + "value":"408.82" + } + }, + { + "id":"a8f10ecd-5118-42f3-8d8d-42d64b2979d3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T12:09:00.996Z", + "completed":"2017-09-28T12:09:00.996Z", + "new_balance":"3139.43", + "value":"160.81" + } + }, + { + "id":"23104ee5-bc31-4c4d-bbd0-05879378da57", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T05:16:47.222Z", + "completed":"2017-09-30T05:16:47.222Z", + "new_balance":"3160.32", + "value":"20.89" + } + }, + { + "id":"f54ed057-a4b3-4387-9213-2506b0079315", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T06:20:56.492Z", + "completed":"2017-09-30T06:20:56.492Z", + "new_balance":"3190.59", + "value":"30.27" + } + }, + { + "id":"23460593-d985-45ed-a81c-cde3e9a88c52", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T00:59:21.177Z", + "completed":"2017-12-01T00:59:21.177Z", + "new_balance":"3168.23", + "value":"-22.36" + } + }, + { + "id":"01f2613e-4e60-4788-a69d-170772c382c9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T04:21:38.878Z", + "completed":"2017-12-01T04:21:38.878Z", + "new_balance":"3111.42", + "value":"-56.81" + } + }, + { + "id":"05471324-9b00-4ad6-a77a-7810a8a51767", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T04:48:54.124Z", + "completed":"2017-12-01T04:48:54.124Z", + "new_balance":"3088.18", + "value":"-23.24" + } + }, + { + "id":"91fe4e87-a3d6-49f3-b838-292d3a88b49a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T06:38:12.251Z", + "completed":"2017-12-01T06:38:12.251Z", + "new_balance":"2810.70", + "value":"-277.48" + } + }, + { + "id":"e990eb37-e79c-497d-8ada-7ec4fcb79e35", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T13:40:44.810Z", + "completed":"2017-12-01T13:40:44.810Z", + "new_balance":"2514.10", + "value":"-296.60" + } + }, + { + "id":"cf99d92e-cd68-4729-acb3-564be576f618", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T17:07:18.385Z", + "completed":"2017-12-01T17:07:18.385Z", + "new_balance":"2501.00", + "value":"-13.10" + } + }, + { + "id":"bb67c4f7-93aa-4535-821b-0fcd683cec72", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T13:31:18.785Z", + "completed":"2017-12-04T13:31:18.785Z", + "new_balance":"2495.85", + "value":"-5.15" + } + }, + { + "id":"bc8327e5-55ae-44ce-b73a-3ca7c362d9b6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T14:05:37.384Z", + "completed":"2017-12-04T14:05:37.384Z", + "new_balance":"2491.67", + "value":"-4.18" + } + }, + { + "id":"7f184e55-8927-46d4-a44d-be166da3a0b2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T10:37:41.987Z", + "completed":"2017-12-05T10:37:41.987Z", + "new_balance":"2434.86", + "value":"-56.81" + } + }, + { + "id":"45adeb20-6906-4a57-82a8-610ffd577296", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T16:48:23.902Z", + "completed":"2017-12-05T16:48:23.902Z", + "new_balance":"2411.62", + "value":"-23.24" + } + }, + { + "id":"d094db36-1b8c-4837-8367-cc0fab92af15", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T06:00:00.601Z", + "completed":"2017-12-07T06:00:00.601Z", + "new_balance":"2572.43", + "value":"160.81" + } + }, + { + "id":"21a18efe-4bc9-42dc-b947-e7f061a11aac", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T16:41:15.217Z", + "completed":"2017-12-07T16:41:15.217Z", + "new_balance":"2602.70", + "value":"30.27" + } + }, + { + "id":"e8ec0efd-6733-4346-a9a7-d137e977085b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T19:44:56.432Z", + "completed":"2017-12-07T19:44:56.432Z", + "new_balance":"2596.17", + "value":"-6.53" + } + }, + { + "id":"6aa89eaa-7417-47f4-b350-e50b62045875", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T23:41:08.062Z", + "completed":"2017-12-07T23:41:08.062Z", + "new_balance":"2687.13", + "value":"90.96" + } + }, + { + "id":"0d6822d8-a17e-42c2-b7c6-6d8391029d4d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T00:55:55.260Z", + "completed":"2017-12-11T00:55:55.260Z", + "new_balance":"2681.65", + "value":"-5.48" + } + }, + { + "id":"b5fdd14f-c970-4171-9d85-66fe8dc8b353", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T03:13:52.967Z", + "completed":"2017-12-14T03:13:52.967Z", + "new_balance":"2674.46", + "value":"-7.19" + } + }, + { + "id":"9db490b7-4c29-4a53-9391-57a7f4d402f5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T07:49:01.484Z", + "completed":"2017-12-14T07:49:01.484Z", + "new_balance":"2681.30", + "value":"6.84" + } + }, + { + "id":"3361bfd0-c13b-4c2c-834e-f56bdd3be143", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:00:35.420Z", + "completed":"2017-12-14T15:00:35.420Z", + "new_balance":"2729.17", + "value":"47.87" + } + }, + { + "id":"a198a89b-b837-4ae1-b904-aeea2623f9ac", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T08:11:47.686Z", + "completed":"2017-12-16T08:11:47.686Z", + "new_balance":"2678.95", + "value":"-50.22" + } + }, + { + "id":"05fe3969-654b-442b-b95c-7b6900de381c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T13:45:43.168Z", + "completed":"2017-12-16T13:45:43.168Z", + "new_balance":"2709.22", + "value":"30.27" + } + }, + { + "id":"b36bf282-de87-4579-ac25-2ec005b2d575", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T05:13:32.406Z", + "completed":"2017-12-21T05:13:32.406Z", + "new_balance":"2759.30", + "value":"50.08" + } + }, + { + "id":"a37758a7-643f-4f4b-a20b-730f5c3179f8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T10:43:37.714Z", + "completed":"2017-12-21T10:43:37.714Z", + "new_balance":"2920.11", + "value":"160.81" + } + }, + { + "id":"8ea45ec7-81a7-49a9-aa9f-2e143324a29d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T11:33:16.079Z", + "completed":"2017-12-21T11:33:16.079Z", + "new_balance":"3328.93", + "value":"408.82" + } + }, + { + "id":"b11e9923-657e-44cd-a7b5-d6017735a303", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T13:35:21.556Z", + "completed":"2017-12-21T13:35:21.556Z", + "new_balance":"3259.85", + "value":"-69.08" + } + }, + { + "id":"a0d90250-aa9e-4c8f-88d2-1719a3d37188", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T06:47:53.497Z", + "completed":"2017-12-30T06:47:53.497Z", + "new_balance":"3290.12", + "value":"30.27" + } + }, + { + "id":"1417c352-8e5a-4cd7-ab94-7898983b1b59", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T23:01:27.626Z", + "completed":"2017-12-30T23:01:27.626Z", + "new_balance":"3311.01", + "value":"20.89" + } + }, + { + "id":"130fea5c-23c1-43fa-b874-f342ed72a8d4", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T01:29:41.860Z", + "completed":"2016-03-02T01:29:41.860Z", + "new_balance":"13246.16", + "value":"-28.87" + } + }, + { + "id":"00c62106-1988-4317-9c08-416fcbe7d28a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:49:40.922Z", + "completed":"2016-03-02T07:49:40.922Z", + "new_balance":"13127.84", + "value":"-118.32" + } + }, + { + "id":"dc088f02-3113-4e29-b9eb-6f930e678f1c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T10:57:18.765Z", + "completed":"2016-03-03T10:57:18.765Z", + "new_balance":"13120.65", + "value":"-7.19" + } + }, + { + "id":"035adaa8-4527-4683-a6ed-1c2f90b898aa", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T21:51:28.593Z", + "completed":"2016-03-03T21:51:28.593Z", + "new_balance":"12670.94", + "value":"-449.71" + } + }, + { + "id":"765c0a45-a847-4d4d-9389-3a7334b5e09b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T14:32:06.562Z", + "completed":"2016-03-04T14:32:06.562Z", + "new_balance":"12663.84", + "value":"-7.10" + } + }, + { + "id":"254f252a-6d3d-4dd7-a673-283fc806e968", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T16:44:21.939Z", + "completed":"2016-03-04T16:44:21.939Z", + "new_balance":"12631.63", + "value":"-32.21" + } + }, + { + "id":"0ff446a3-475d-499d-84c2-57fe5ec904e3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T06:48:24.113Z", + "completed":"2016-03-07T06:48:24.113Z", + "new_balance":"12626.48", + "value":"-5.15" + } + }, + { + "id":"f0493a2d-1303-48dd-99e6-7d3bde905116", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T02:06:12.330Z", + "completed":"2016-03-09T02:06:12.330Z", + "new_balance":"12508.16", + "value":"-118.32" + } + }, + { + "id":"a09380a8-5fb6-4800-8d04-9aad916be2e0", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T18:35:07.165Z", + "completed":"2016-03-16T18:35:07.165Z", + "new_balance":"12423.24", + "value":"-84.92" + } + }, + { + "id":"a192995b-a887-4810-82a3-ee74bf3f3906", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T11:35:39.302Z", + "completed":"2016-03-25T11:35:39.302Z", + "new_balance":"12338.32", + "value":"-84.92" + } + }, + { + "id":"cf56de2e-a6f0-4e3c-a674-e5cedca4cc9f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T21:42:04.641Z", + "completed":"2016-03-30T21:42:04.641Z", + "new_balance":"12060.84", + "value":"-277.48" + } + }, + { + "id":"d3a3d40f-5baa-4bdb-8011-eb66724e5eee", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T03:33:59.886Z", + "completed":"2016-06-07T03:33:59.886Z", + "new_balance":"11611.13", + "value":"-449.71" + } + }, + { + "id":"210b4af3-7309-48a3-8a4a-07e103d2401c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T06:19:58.389Z", + "completed":"2016-06-07T06:19:58.389Z", + "new_balance":"11582.26", + "value":"-28.87" + } + }, + { + "id":"1f86d92e-a651-409a-8264-8c91e18003e6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:10:19.318Z", + "completed":"2016-06-07T13:10:19.318Z", + "new_balance":"11463.94", + "value":"-118.32" + } + }, + { + "id":"ea1c75e8-7edd-45df-be5b-c8dd385f1b7b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T00:59:32.293Z", + "completed":"2016-06-10T00:59:32.293Z", + "new_balance":"11456.84", + "value":"-7.10" + } + }, + { + "id":"6da1a1da-0c77-474d-9bcb-e6f8193bed85", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T16:20:59.165Z", + "completed":"2016-06-14T16:20:59.165Z", + "new_balance":"11424.63", + "value":"-32.21" + } + }, + { + "id":"acf59d94-bc3c-4e58-b81e-647635ee1049", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T10:58:29.833Z", + "completed":"2016-06-19T10:58:29.833Z", + "new_balance":"11417.44", + "value":"-7.19" + } + }, + { + "id":"8cd6e793-1ca7-4fab-9d66-dca0b48a5922", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T20:54:11.398Z", + "completed":"2016-06-19T20:54:11.398Z", + "new_balance":"11412.29", + "value":"-5.15" + } + }, + { + "id":"21109553-8641-46df-ac25-c777cf6c3d2d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T12:21:53.679Z", + "completed":"2016-06-20T12:21:53.679Z", + "new_balance":"11293.97", + "value":"-118.32" + } + }, + { + "id":"93928678-e7c0-45f3-8096-4b27603b5296", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T01:15:57.581Z", + "completed":"2016-06-28T01:15:57.581Z", + "new_balance":"11209.05", + "value":"-84.92" + } + }, + { + "id":"02a1c2e8-e7a7-4206-b758-2ba52420c7c8", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T07:00:51.347Z", + "completed":"2016-07-01T07:00:51.347Z", + "new_balance":"10931.57", + "value":"-277.48" + } + }, + { + "id":"9745257f-4d8a-4458-abdb-8f549759f8c3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T07:12:16.933Z", + "completed":"2016-07-01T07:12:16.933Z", + "new_balance":"10846.65", + "value":"-84.92" + } + }, + { + "id":"d134ad59-3ae4-4570-8521-5ea60e35b18f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T14:40:14.119Z", + "completed":"2016-09-02T14:40:14.119Z", + "new_balance":"10817.78", + "value":"-28.87" + } + }, + { + "id":"e22f1d18-02b2-4cc8-b2a5-9ff8d0f918c2", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T20:59:59.695Z", + "completed":"2016-09-02T20:59:59.695Z", + "new_balance":"10699.46", + "value":"-118.32" + } + }, + { + "id":"fa54afc3-a93d-4dd0-820f-9ca8bde76cff", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T02:04:26.060Z", + "completed":"2016-09-03T02:04:26.060Z", + "new_balance":"10249.75", + "value":"-449.71" + } + }, + { + "id":"9d2442b0-a413-4a3a-8aa4-241c828ac3ec", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T11:07:24.372Z", + "completed":"2016-09-03T11:07:24.372Z", + "new_balance":"10242.56", + "value":"-7.19" + } + }, + { + "id":"c32a10c5-86e4-45c8-b9f8-484bd42f2e1c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T14:14:00.175Z", + "completed":"2016-09-03T14:14:00.175Z", + "new_balance":"10238.38", + "value":"-4.18" + } + }, + { + "id":"7e1b1d5e-3d8a-4a77-846e-d44274adb088", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T10:48:54.204Z", + "completed":"2016-09-04T10:48:54.204Z", + "new_balance":"10206.17", + "value":"-32.21" + } + }, + { + "id":"8e7d8db9-db3d-49ee-b58d-76b9fdced985", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T12:42:35.008Z", + "completed":"2016-09-07T12:42:35.008Z", + "new_balance":"10201.02", + "value":"-5.15" + } + }, + { + "id":"399093ef-91a4-4014-9f7c-1332cfdbec44", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T09:40:03.415Z", + "completed":"2016-09-09T09:40:03.415Z", + "new_balance":"10082.70", + "value":"-118.32" + } + }, + { + "id":"68690fa5-9bc4-41f5-8aac-da75bbdb614d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T11:54:09.205Z", + "completed":"2016-09-16T11:54:09.205Z", + "new_balance":"9997.78", + "value":"-84.92" + } + }, + { + "id":"c5cb9401-6b7a-4453-aeac-3115b790e3ad", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T06:10:20.077Z", + "completed":"2016-09-25T06:10:20.077Z", + "new_balance":"9912.86", + "value":"-84.92" + } + }, + { + "id":"a026a879-ceb0-48bf-89a4-71d82ab7cfce", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T12:59:36.159Z", + "completed":"2016-09-30T12:59:36.159Z", + "new_balance":"9635.38", + "value":"-277.48" + } + }, + { + "id":"1c0eb01f-d484-4852-ab9a-2996c6161fc9", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T14:45:30.299Z", + "completed":"2016-12-07T14:45:30.299Z", + "new_balance":"9606.51", + "value":"-28.87" + } + }, + { + "id":"1ac2738c-6e6d-4218-bf67-41e6cb9a05da", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T19:06:43.606Z", + "completed":"2016-12-07T19:06:43.606Z", + "new_balance":"9488.19", + "value":"-118.32" + } + }, + { + "id":"d0b94442-ef1c-4c60-be7d-f938f9a8d597", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T20:27:48.534Z", + "completed":"2016-12-07T20:27:48.534Z", + "new_balance":"9038.48", + "value":"-449.71" + } + }, + { + "id":"f2f7cd06-c723-4e60-b4d9-900ef824771d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T05:07:13.127Z", + "completed":"2016-12-11T05:07:13.127Z", + "new_balance":"9031.29", + "value":"-7.19" + } + }, + { + "id":"b2507e28-75b8-4241-b835-ae5a0032f6dc", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T10:28:04.282Z", + "completed":"2016-12-11T10:28:04.282Z", + "new_balance":"9024.19", + "value":"-7.10" + } + }, + { + "id":"cb1c5122-0e0f-46fc-80aa-6dbbb15dc269", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T20:30:37.915Z", + "completed":"2016-12-14T20:30:37.915Z", + "new_balance":"8991.98", + "value":"-32.21" + } + }, + { + "id":"05eb573f-a867-4bd4-911b-563e3da06840", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:50:24.609Z", + "completed":"2016-12-20T17:50:24.609Z", + "new_balance":"8986.83", + "value":"-5.15" + } + }, + { + "id":"f9ae8735-964e-482a-8e42-9ea9e2e930d9", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T02:17:05.226Z", + "completed":"2016-12-22T02:17:05.226Z", + "new_balance":"8868.51", + "value":"-118.32" + } + }, + { + "id":"1b6b03b4-51a8-44f1-800d-b9cc2b496d09", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T22:49:30.981Z", + "completed":"2016-12-28T22:49:30.981Z", + "new_balance":"8783.59", + "value":"-84.92" + } + }, + { + "id":"d7a6480e-4a99-47aa-a6b5-aec2b9142d39", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T03:27:04.315Z", + "completed":"2016-12-31T03:27:04.315Z", + "new_balance":"8698.67", + "value":"-84.92" + } + }, + { + "id":"6dcf9888-3e16-42e3-a506-650c6b17e489", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:26:37.047Z", + "completed":"2016-12-31T16:26:37.047Z", + "new_balance":"8421.19", + "value":"-277.48" + } + }, + { + "id":"0eadf9ba-6442-4868-a2d7-48d7c9dda964", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T03:08:06.458Z", + "completed":"2017-03-02T03:08:06.458Z", + "new_balance":"8302.87", + "value":"-118.32" + } + }, + { + "id":"fcb69983-19ec-46f7-a323-1842b640d97c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T21:02:04.845Z", + "completed":"2017-03-02T21:02:04.845Z", + "new_balance":"8274.00", + "value":"-28.87" + } + }, + { + "id":"549769fb-bd79-4747-ac43-74d1df197ec6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T09:44:09.954Z", + "completed":"2017-03-03T09:44:09.954Z", + "new_balance":"8266.81", + "value":"-7.19" + } + }, + { + "id":"cccdc725-1d65-4607-bbb8-50105b86eb01", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T13:27:18.488Z", + "completed":"2017-03-03T13:27:18.488Z", + "new_balance":"7817.10", + "value":"-449.71" + } + }, + { + "id":"f3b0d088-f01b-4dff-9bb8-2e6562308570", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T02:38:57.789Z", + "completed":"2017-03-04T02:38:57.789Z", + "new_balance":"7810.00", + "value":"-7.10" + } + }, + { + "id":"4a73236f-517f-45b9-bab2-aa60b03b3808", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T15:13:20.363Z", + "completed":"2017-03-04T15:13:20.363Z", + "new_balance":"7777.79", + "value":"-32.21" + } + }, + { + "id":"542d3a56-a358-40eb-a3b1-9a5c184e968b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T14:53:51.887Z", + "completed":"2017-03-07T14:53:51.887Z", + "new_balance":"7772.64", + "value":"-5.15" + } + }, + { + "id":"a01636d8-dbe3-4abc-80f9-c34767290a8c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T08:42:52.833Z", + "completed":"2017-03-09T08:42:52.833Z", + "new_balance":"7654.32", + "value":"-118.32" + } + }, + { + "id":"d9fd5089-0e61-4c3d-b804-a937933fb163", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T05:16:38.773Z", + "completed":"2017-03-16T05:16:38.773Z", + "new_balance":"7569.40", + "value":"-84.92" + } + }, + { + "id":"7a9e4197-29f7-42a9-9d9e-0b8de0e9d1c5", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T02:19:45.874Z", + "completed":"2017-03-25T02:19:45.874Z", + "new_balance":"7484.48", + "value":"-84.92" + } + }, + { + "id":"84b7769a-d346-4a6c-aa93-39633ba4b5cf", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T11:04:49.981Z", + "completed":"2017-03-30T11:04:49.981Z", + "new_balance":"7207.00", + "value":"-277.48" + } + }, + { + "id":"f0e98f0c-89a2-4f53-a1d1-08138bb6126e", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T01:38:20.562Z", + "completed":"2017-06-07T01:38:20.562Z", + "new_balance":"6757.29", + "value":"-449.71" + } + }, + { + "id":"186ff641-9f4d-489d-a464-7ed145ff5ca8", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T03:21:02.481Z", + "completed":"2017-06-07T03:21:02.481Z", + "new_balance":"6728.42", + "value":"-28.87" + } + }, + { + "id":"9b46df02-653e-4556-865d-3a09f2d2d631", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T16:17:25.163Z", + "completed":"2017-06-07T16:17:25.163Z", + "new_balance":"6610.10", + "value":"-118.32" + } + }, + { + "id":"ccacfe1a-55cf-4c12-94a5-28c51bf05071", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:55:32.159Z", + "completed":"2017-06-10T02:55:32.159Z", + "new_balance":"6603.00", + "value":"-7.10" + } + }, + { + "id":"ad5f6956-e0aa-4792-8b0a-80ff46226dbb", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T18:44:47.701Z", + "completed":"2017-06-14T18:44:47.701Z", + "new_balance":"6570.79", + "value":"-32.21" + } + }, + { + "id":"76520917-e7ec-4964-8f4c-a074aafbdf40", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T05:55:25.731Z", + "completed":"2017-06-19T05:55:25.731Z", + "new_balance":"6563.60", + "value":"-7.19" + } + }, + { + "id":"2d522376-8255-461d-bd0d-a7495d970a26", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T12:32:13.721Z", + "completed":"2017-06-19T12:32:13.721Z", + "new_balance":"6558.45", + "value":"-5.15" + } + }, + { + "id":"764e77fb-6945-48be-87dc-f729d5ddd050", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T01:21:34.050Z", + "completed":"2017-06-20T01:21:34.050Z", + "new_balance":"6440.13", + "value":"-118.32" + } + }, + { + "id":"28f02331-8086-47b7-817a-d83101bf1d59", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T19:04:58.415Z", + "completed":"2017-06-28T19:04:58.415Z", + "new_balance":"6355.21", + "value":"-84.92" + } + }, + { + "id":"7beeed55-f93e-4449-a5c0-8f0b2fbc4947", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T00:51:00.524Z", + "completed":"2017-07-01T00:51:00.524Z", + "new_balance":"6270.29", + "value":"-84.92" + } + }, + { + "id":"eed4917c-6edb-48b5-8a39-198fb70d656a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T11:02:52.226Z", + "completed":"2017-07-01T11:02:52.226Z", + "new_balance":"5992.81", + "value":"-277.48" + } + }, + { + "id":"a959aab4-f066-43d7-91e4-0a5d6de37363", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T05:39:26.582Z", + "completed":"2017-09-02T05:39:26.582Z", + "new_balance":"5874.49", + "value":"-118.32" + } + }, + { + "id":"994acd66-0a91-4df7-96e6-c73325897c9a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T19:30:53.198Z", + "completed":"2017-09-02T19:30:53.198Z", + "new_balance":"5845.62", + "value":"-28.87" + } + }, + { + "id":"8454d66d-24ae-4bf6-ab97-b9538813add6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T07:15:32.379Z", + "completed":"2017-09-03T07:15:32.379Z", + "new_balance":"5838.43", + "value":"-7.19" + } + }, + { + "id":"ba731d87-977f-4227-8db3-157d4b8a54bd", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T09:26:19.936Z", + "completed":"2017-09-03T09:26:19.936Z", + "new_balance":"5834.25", + "value":"-4.18" + } + }, + { + "id":"6adf6fcf-a417-4dd6-b04c-071826f17116", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T13:41:58.992Z", + "completed":"2017-09-03T13:41:58.992Z", + "new_balance":"5384.54", + "value":"-449.71" + } + }, + { + "id":"898eb380-3282-4c50-ab83-b0de8690f461", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T16:57:09.636Z", + "completed":"2017-09-04T16:57:09.636Z", + "new_balance":"5352.33", + "value":"-32.21" + } + }, + { + "id":"00af6f84-e32a-4f3c-a455-25ee1b37af22", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T06:32:45.058Z", + "completed":"2017-09-07T06:32:45.058Z", + "new_balance":"5347.18", + "value":"-5.15" + } + }, + { + "id":"3e8be691-62e9-4729-affd-1613dc084df4", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T19:54:14.165Z", + "completed":"2017-09-09T19:54:14.165Z", + "new_balance":"5228.86", + "value":"-118.32" + } + }, + { + "id":"fef6d839-3cf9-413e-90cf-3809be87efb6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T15:17:12.001Z", + "completed":"2017-09-16T15:17:12.001Z", + "new_balance":"5143.94", + "value":"-84.92" + } + }, + { + "id":"1550c4df-fc99-4111-8db1-0f6fe875f15d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T22:23:23.167Z", + "completed":"2017-09-25T22:23:23.167Z", + "new_balance":"5059.02", + "value":"-84.92" + } + }, + { + "id":"d6ad5f52-4aca-46f5-9b0a-1cb02200d4d3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T04:28:15.913Z", + "completed":"2017-09-30T04:28:15.913Z", + "new_balance":"4781.54", + "value":"-277.48" + } + }, + { + "id":"676a8ad4-b07c-4f79-9b72-75d983cab600", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T08:58:05.613Z", + "completed":"2017-12-07T08:58:05.613Z", + "new_balance":"4663.22", + "value":"-118.32" + } + }, + { + "id":"3a28ce23-cacd-47d2-9ad8-927026f26da6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T10:34:27.657Z", + "completed":"2017-12-07T10:34:27.657Z", + "new_balance":"4213.51", + "value":"-449.71" + } + }, + { + "id":"96012345-7682-4187-af0c-c0f9e34cb95f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T18:29:50.832Z", + "completed":"2017-12-07T18:29:50.832Z", + "new_balance":"4184.64", + "value":"-28.87" + } + }, + { + "id":"acc8c123-0e8e-4fa3-9c17-3835b8e86f16", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T00:59:55.999Z", + "completed":"2017-12-11T00:59:55.999Z", + "new_balance":"4177.54", + "value":"-7.10" + } + }, + { + "id":"e7ad1cb8-9250-47ac-bd56-411a4c78f1da", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T07:46:09.222Z", + "completed":"2017-12-11T07:46:09.222Z", + "new_balance":"4170.35", + "value":"-7.19" + } + }, + { + "id":"7e8a26b2-1415-4fbc-9951-fff90574f30a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T23:02:55.035Z", + "completed":"2017-12-14T23:02:55.035Z", + "new_balance":"4138.14", + "value":"-32.21" + } + }, + { + "id":"a4878847-937b-468c-b72c-67198639dc48", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T03:51:58.901Z", + "completed":"2017-12-20T03:51:58.901Z", + "new_balance":"4132.99", + "value":"-5.15" + } + }, + { + "id":"1ec265ec-f185-4a4d-804a-cd30e015f2bb", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T16:02:27.793Z", + "completed":"2017-12-22T16:02:27.793Z", + "new_balance":"4014.67", + "value":"-118.32" + } + }, + { + "id":"ff601e97-141f-45b6-915f-34d6b3c7deb3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:47:07.178Z", + "completed":"2017-12-28T01:47:07.178Z", + "new_balance":"3929.75", + "value":"-84.92" + } + }, + { + "id":"ca9b7038-a90c-402a-afbe-55eb74db27c1", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T08:38:16.827Z", + "completed":"2017-12-31T08:38:16.827Z", + "new_balance":"3652.27", + "value":"-277.48" + } + }, + { + "id":"c770d522-3543-4aa2-9272-cb9ffa964a52", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T21:24:49.687Z", + "completed":"2017-12-31T21:24:49.687Z", + "new_balance":"3567.35", + "value":"-84.92" + } + }, + { + "id":"5354a641-2b86-4002-8215-cbedbab46adb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T01:13:22.710Z", + "completed":"2016-03-01T01:13:22.710Z", + "new_balance":"11776.36", + "value":"-317.21" + } + }, + { + "id":"28fdb4e1-ffaa-4cd5-86f0-34484238deeb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T02:35:37.064Z", + "completed":"2016-03-01T02:35:37.064Z", + "new_balance":"11044.51", + "value":"-731.85" + } + }, + { + "id":"6f1661e7-7860-4bdd-ad5e-4e9125eaf0b7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T05:57:10.518Z", + "completed":"2016-03-01T05:57:10.518Z", + "new_balance":"7350.74", + "value":"-3693.77" + } + }, + { + "id":"3ade835d-e31d-4783-8160-1100566398f5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T18:02:18.688Z", + "completed":"2016-03-01T18:02:18.688Z", + "new_balance":"7152.83", + "value":"-197.91" + } + }, + { + "id":"97718770-dbf0-4924-803a-52fd1e06fa83", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T23:21:50.369Z", + "completed":"2016-03-01T23:21:50.369Z", + "new_balance":"4521.62", + "value":"-2631.21" + } + }, + { + "id":"a3c7b6d2-5106-4b56-a3ca-d83c48fef4bb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:32:49.815Z", + "completed":"2016-03-01T23:32:49.815Z", + "new_balance":"4358.14", + "value":"-163.48" + } + }, + { + "id":"b1d8c3fd-4286-4ed4-84e7-8443582d326a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T03:22:50.535Z", + "completed":"2016-03-12T03:22:50.535Z", + "new_balance":"4040.93", + "value":"-317.21" + } + }, + { + "id":"26d5e771-40e9-4534-bf70-5871308ee4c0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T05:54:23.319Z", + "completed":"2016-03-12T05:54:23.319Z", + "new_balance":"3309.08", + "value":"-731.85" + } + }, + { + "id":"a564982f-c5fe-44d9-9f0f-8176bcc8b2b2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T12:36:58.440Z", + "completed":"2016-03-12T12:36:58.440Z", + "new_balance":"3255.90", + "value":"-53.18" + } + }, + { + "id":"b931b434-a159-4d4f-86ea-9f0bc27daa02", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:34:41.847Z", + "completed":"2016-03-12T15:34:41.847Z", + "new_balance":"3209.00", + "value":"-46.90" + } + }, + { + "id":"b6f8294d-a96d-4f9c-9d92-b22ac1854a88", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T12:56:21.401Z", + "completed":"2016-03-14T12:56:21.401Z", + "new_balance":"5100.32", + "value":"1891.32" + } + }, + { + "id":"9d96f29a-c19e-4428-a2fc-bc5773d8c584", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T13:51:35.234Z", + "completed":"2016-03-15T13:51:35.234Z", + "new_balance":"5327.71", + "value":"227.39" + } + }, + { + "id":"76e6726e-cd09-4cb8-90e5-9d1c56c2f85f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T23:35:36.412Z", + "completed":"2016-03-16T23:35:36.412Z", + "new_balance":"6228.69", + "value":"900.98" + } + }, + { + "id":"99c24ca2-c397-4c2a-8c26-522825863fd3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T01:13:34.136Z", + "completed":"2016-03-17T01:13:34.136Z", + "new_balance":"6177.59", + "value":"-51.10" + } + }, + { + "id":"bec49a2b-110d-4b79-87a3-479f236f33df", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:35:41.571Z", + "completed":"2016-03-17T12:35:41.571Z", + "new_balance":"6098.51", + "value":"-79.08" + } + }, + { + "id":"37e202c1-a2f0-48dc-9a0c-aeb2a2f539da", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T12:19:08.480Z", + "completed":"2016-03-19T12:19:08.480Z", + "new_balance":"6548.51", + "value":"450.00" + } + }, + { + "id":"78f1b18e-b7c6-405a-b494-f37c50082e8d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T06:59:17.817Z", + "completed":"2016-03-21T06:59:17.817Z", + "new_balance":"6609.76", + "value":"61.25" + } + }, + { + "id":"a8084b71-e896-4953-9cf0-d510d2989daa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T19:16:39.467Z", + "completed":"2016-03-21T19:16:39.467Z", + "new_balance":"6535.83", + "value":"-73.93" + } + }, + { + "id":"f2514e77-47fd-478b-ba9c-e1c9940dbc99", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T09:16:35.223Z", + "completed":"2016-03-24T09:16:35.223Z", + "new_balance":"6763.22", + "value":"227.39" + } + }, + { + "id":"6dff50ab-4230-4c4f-a989-4a0cc14c5b38", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T19:26:12.011Z", + "completed":"2016-03-24T19:26:12.011Z", + "new_balance":"6236.66", + "value":"-526.56" + } + }, + { + "id":"78144675-38f6-49ac-af5d-9b0dfaaf19e0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T02:12:03.707Z", + "completed":"2016-03-25T02:12:03.707Z", + "new_balance":"5569.51", + "value":"-667.15" + } + }, + { + "id":"f6f0db22-e457-4799-8732-8e8d6cad1d34", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T12:03:10.416Z", + "completed":"2016-03-25T12:03:10.416Z", + "new_balance":"6023.16", + "value":"453.65" + } + }, + { + "id":"a48aa454-6b62-49ff-ab0d-a461aad4e27c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T02:57:38.103Z", + "completed":"2016-03-28T02:57:38.103Z", + "new_balance":"7914.48", + "value":"1891.32" + } + }, + { + "id":"34724e40-592e-45aa-84ec-774c9acadddf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T21:29:03.823Z", + "completed":"2016-03-28T21:29:03.823Z", + "new_balance":"10997.35", + "value":"3082.87" + } + }, + { + "id":"5d70f0d4-b0b3-4ed0-82ed-cf935456d8f2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T05:55:26.107Z", + "completed":"2016-03-30T05:55:26.107Z", + "new_balance":"11224.74", + "value":"227.39" + } + }, + { + "id":"834ecc4a-e20e-4e02-9582-6fa61ce56f52", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T06:06:01.983Z", + "completed":"2016-03-30T06:06:01.983Z", + "new_balance":"11452.36", + "value":"227.62" + } + }, + { + "id":"410d3cd2-fbc7-4819-93eb-ba0cdd05a2ac", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T03:34:02.822Z", + "completed":"2016-06-01T03:34:02.822Z", + "new_balance":"8821.15", + "value":"-2631.21" + } + }, + { + "id":"6beb6bc0-c968-4d2d-a837-921701406f9c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T04:20:45.744Z", + "completed":"2016-06-01T04:20:45.744Z", + "new_balance":"8089.30", + "value":"-731.85" + } + }, + { + "id":"0bbcf3c9-5e18-4fb1-a5fb-c26d1a472514", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:24:03.642Z", + "completed":"2016-06-01T04:24:03.642Z", + "new_balance":"7925.82", + "value":"-163.48" + } + }, + { + "id":"95953295-5871-4737-abf1-ff74cdd5d12a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T06:14:56.756Z", + "completed":"2016-06-01T06:14:56.756Z", + "new_balance":"4232.05", + "value":"-3693.77" + } + }, + { + "id":"83277eda-2e61-4464-b596-72f813b9f300", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T11:20:44.394Z", + "completed":"2016-06-01T11:20:44.394Z", + "new_balance":"3914.84", + "value":"-317.21" + } + }, + { + "id":"a63bafeb-363d-4274-bb40-6bdf6c59fb1b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T11:25:43.068Z", + "completed":"2016-06-01T11:25:43.068Z", + "new_balance":"3716.93", + "value":"-197.91" + } + }, + { + "id":"1f2c96e2-ec5b-4855-a0e1-2dfaeb0f0ee2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T21:56:26.345Z", + "completed":"2016-06-04T21:56:26.345Z", + "new_balance":"3670.03", + "value":"-46.90" + } + }, + { + "id":"914756ae-334f-4d10-880c-df82e9b480a6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T23:38:09.746Z", + "completed":"2016-06-04T23:38:09.746Z", + "new_balance":"3616.85", + "value":"-53.18" + } + }, + { + "id":"0130854e-eb30-4d2a-b7f0-c65f804cb166", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T03:39:00.787Z", + "completed":"2016-06-05T03:39:00.787Z", + "new_balance":"3299.64", + "value":"-317.21" + } + }, + { + "id":"7adb6d06-b439-49c3-8bdc-5a431f795822", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T12:28:32.395Z", + "completed":"2016-06-05T12:28:32.395Z", + "new_balance":"2567.79", + "value":"-731.85" + } + }, + { + "id":"c175663d-51af-43d1-8a14-83a42f9b1ff3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:24:50.456Z", + "completed":"2016-06-07T00:24:50.456Z", + "new_balance":"4459.11", + "value":"1891.32" + } + }, + { + "id":"9628d0eb-89fb-4ed7-a96b-479dfd85954b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T10:55:41.529Z", + "completed":"2016-06-07T10:55:41.529Z", + "new_balance":"4408.01", + "value":"-51.10" + } + }, + { + "id":"7b10a834-968d-4f4e-8241-19806774d2ca", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T17:32:44.327Z", + "completed":"2016-06-07T17:32:44.327Z", + "new_balance":"5308.99", + "value":"900.98" + } + }, + { + "id":"e7db6d90-d285-468e-a06a-f0bc751fa92b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T23:45:23.256Z", + "completed":"2016-06-07T23:45:23.256Z", + "new_balance":"5536.38", + "value":"227.39" + } + }, + { + "id":"ef285570-a748-4fee-a5e3-f9f92add7c7e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T10:54:56.080Z", + "completed":"2016-06-11T10:54:56.080Z", + "new_balance":"5457.30", + "value":"-79.08" + } + }, + { + "id":"64e9995a-53ae-46fe-a59d-00f3abea309f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:05:37.998Z", + "completed":"2016-06-14T09:05:37.998Z", + "new_balance":"5907.30", + "value":"450.00" + } + }, + { + "id":"6b0ff083-ed1f-4e9e-bd54-982422cc5060", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T18:21:27.085Z", + "completed":"2016-06-14T18:21:27.085Z", + "new_balance":"5968.55", + "value":"61.25" + } + }, + { + "id":"3a126874-5f81-42c8-a02e-4c55eb96a541", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T21:09:15.720Z", + "completed":"2016-06-14T21:09:15.720Z", + "new_balance":"5894.62", + "value":"-73.93" + } + }, + { + "id":"4a797f4c-a71d-4739-bbeb-103e882078b4", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T11:10:28.307Z", + "completed":"2016-06-16T11:10:28.307Z", + "new_balance":"6122.01", + "value":"227.39" + } + }, + { + "id":"9cd15fbe-9c26-4a15-ad01-64e2230e611b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T17:34:29.399Z", + "completed":"2016-06-16T17:34:29.399Z", + "new_balance":"5595.45", + "value":"-526.56" + } + }, + { + "id":"b04a3fee-21be-4c09-8823-d37387955aaa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T06:15:16.828Z", + "completed":"2016-06-21T06:15:16.828Z", + "new_balance":"7486.77", + "value":"1891.32" + } + }, + { + "id":"789761c5-66fa-4ceb-83b9-d43a8ed31f27", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T07:50:46.112Z", + "completed":"2016-06-21T07:50:46.112Z", + "new_balance":"7940.42", + "value":"453.65" + } + }, + { + "id":"88b79c6c-2f1a-40aa-8039-9857b438c2e6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T10:46:18.518Z", + "completed":"2016-06-21T10:46:18.518Z", + "new_balance":"7273.27", + "value":"-667.15" + } + }, + { + "id":"68228091-617e-4080-a55e-38858064cbcf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T16:27:43.491Z", + "completed":"2016-06-21T16:27:43.491Z", + "new_balance":"10356.14", + "value":"3082.87" + } + }, + { + "id":"e0fd67e5-a084-4707-9a16-18b0f568d62a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T09:13:48.036Z", + "completed":"2016-06-30T09:13:48.036Z", + "new_balance":"10583.53", + "value":"227.39" + } + }, + { + "id":"1aa50a7e-9bb5-44ed-a0eb-f0fa3c86ee77", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T14:34:45.875Z", + "completed":"2016-06-30T14:34:45.875Z", + "new_balance":"10811.15", + "value":"227.62" + } + }, + { + "id":"0513a067-c316-4d15-8660-46586f0cf5d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T04:02:01.635Z", + "completed":"2016-09-01T04:02:01.635Z", + "new_balance":"10493.94", + "value":"-317.21" + } + }, + { + "id":"ba44cba2-e4e2-4f24-bc42-846eec310b11", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T05:44:19.792Z", + "completed":"2016-09-01T05:44:19.792Z", + "new_balance":"10296.03", + "value":"-197.91" + } + }, + { + "id":"c7380117-884c-405e-90f2-50f8d20b0a8a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T08:34:43.823Z", + "completed":"2016-09-01T08:34:43.823Z", + "new_balance":"6602.26", + "value":"-3693.77" + } + }, + { + "id":"c307a515-e234-4a29-be3e-acf171409a21", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T14:59:48.861Z", + "completed":"2016-09-01T14:59:48.861Z", + "new_balance":"6438.78", + "value":"-163.48" + } + }, + { + "id":"0cd73522-c98e-4b8e-9d1d-b0f65c2c1305", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T18:53:36.169Z", + "completed":"2016-09-01T18:53:36.169Z", + "new_balance":"3807.57", + "value":"-2631.21" + } + }, + { + "id":"a9921356-0aa6-4aa6-af3b-f99c7928fc2b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T23:11:48.149Z", + "completed":"2016-09-01T23:11:48.149Z", + "new_balance":"3075.72", + "value":"-731.85" + } + }, + { + "id":"d1002966-3eca-4b58-bc17-03cccc2189a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T06:00:44.355Z", + "completed":"2016-09-12T06:00:44.355Z", + "new_balance":"2758.51", + "value":"-317.21" + } + }, + { + "id":"d896373a-49dc-4660-85cf-c879134b84f7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:22:40.986Z", + "completed":"2016-09-12T10:22:40.986Z", + "new_balance":"2711.61", + "value":"-46.90" + } + }, + { + "id":"9f658551-47c4-4ec4-9130-e563b57964ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T11:46:06.142Z", + "completed":"2016-09-12T11:46:06.142Z", + "new_balance":"2658.43", + "value":"-53.18" + } + }, + { + "id":"f53e17e2-8d1c-41f2-bdc8-97520d007097", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T15:05:09.453Z", + "completed":"2016-09-12T15:05:09.453Z", + "new_balance":"1926.58", + "value":"-731.85" + } + }, + { + "id":"81876b4a-c969-465a-83fd-f09f793a0120", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T00:27:19.945Z", + "completed":"2016-09-15T00:27:19.945Z", + "new_balance":"2153.97", + "value":"227.39" + } + }, + { + "id":"ca5941f0-c8ab-48d4-9f91-6d7a9dac1ebe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T23:04:12.491Z", + "completed":"2016-09-15T23:04:12.491Z", + "new_balance":"4045.29", + "value":"1891.32" + } + }, + { + "id":"0b85e141-78ba-47a2-abaf-9cf53bdb1d57", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T09:00:49.404Z", + "completed":"2016-09-17T09:00:49.404Z", + "new_balance":"3994.19", + "value":"-51.10" + } + }, + { + "id":"4671117d-a456-4fa9-973d-580bdc77f392", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T17:06:46.255Z", + "completed":"2016-09-17T17:06:46.255Z", + "new_balance":"3915.11", + "value":"-79.08" + } + }, + { + "id":"12920d5a-e2c9-481b-aaad-8b1d987fe5c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:50:45.043Z", + "completed":"2016-09-17T19:50:45.043Z", + "new_balance":"4816.09", + "value":"900.98" + } + }, + { + "id":"0efaab58-b37f-4da5-a580-fd6d111164a8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T02:46:38.462Z", + "completed":"2016-09-19T02:46:38.462Z", + "new_balance":"5266.09", + "value":"450.00" + } + }, + { + "id":"2729bfb9-e5dc-489c-8dad-3db27bff9ff4", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T04:21:34.307Z", + "completed":"2016-09-21T04:21:34.307Z", + "new_balance":"5192.16", + "value":"-73.93" + } + }, + { + "id":"2b2bad17-3b96-4156-a999-6628e2b8dffe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T16:21:26.214Z", + "completed":"2016-09-21T16:21:26.214Z", + "new_balance":"5253.41", + "value":"61.25" + } + }, + { + "id":"f39f88c7-9b55-45ae-ac8c-6d7bf23dcf33", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T15:52:59.482Z", + "completed":"2016-09-24T15:52:59.482Z", + "new_balance":"4726.85", + "value":"-526.56" + } + }, + { + "id":"86a2a027-bc75-433d-9b43-a6838c62874f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T21:20:28.536Z", + "completed":"2016-09-24T21:20:28.536Z", + "new_balance":"4954.24", + "value":"227.39" + } + }, + { + "id":"5f86c202-c079-4284-96b8-d82fa5227ecf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:15:51.695Z", + "completed":"2016-09-25T03:15:51.695Z", + "new_balance":"4287.09", + "value":"-667.15" + } + }, + { + "id":"781db7c0-8b74-4078-8019-46fb2f4edb16", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T21:14:06.121Z", + "completed":"2016-09-25T21:14:06.121Z", + "new_balance":"4740.74", + "value":"453.65" + } + }, + { + "id":"f14b8f4d-2e6d-408c-8b84-63010f0c1bb0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T03:33:43.493Z", + "completed":"2016-09-28T03:33:43.493Z", + "new_balance":"6632.06", + "value":"1891.32" + } + }, + { + "id":"f8b4d125-3648-4a66-a206-d1fe8136c616", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T20:18:22.637Z", + "completed":"2016-09-28T20:18:22.637Z", + "new_balance":"9714.93", + "value":"3082.87" + } + }, + { + "id":"39a0d991-efdb-49c3-88ab-eb1a9516f28a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T11:58:22.035Z", + "completed":"2016-09-30T11:58:22.035Z", + "new_balance":"9942.32", + "value":"227.39" + } + }, + { + "id":"9b11a8a3-bf0b-47a1-b97f-e773ebe55ca1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:09:55.827Z", + "completed":"2016-09-30T14:09:55.827Z", + "new_balance":"10169.94", + "value":"227.62" + } + }, + { + "id":"98bf5815-bcd5-4cc7-8beb-1915234f3d33", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T00:24:06.326Z", + "completed":"2016-12-01T00:24:06.326Z", + "new_balance":"9438.09", + "value":"-731.85" + } + }, + { + "id":"b030d02e-1458-4f50-b313-e785e856d684", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T03:56:30.254Z", + "completed":"2016-12-01T03:56:30.254Z", + "new_balance":"5744.32", + "value":"-3693.77" + } + }, + { + "id":"7c1ab632-bfb4-4778-a2b3-cee74ae8e862", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T04:54:32.441Z", + "completed":"2016-12-01T04:54:32.441Z", + "new_balance":"5427.11", + "value":"-317.21" + } + }, + { + "id":"c3e7618c-e97e-47c5-9a4f-de2f85a01f44", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:48:01.874Z", + "completed":"2016-12-01T13:48:01.874Z", + "new_balance":"5263.63", + "value":"-163.48" + } + }, + { + "id":"8bb7c6d0-1e9d-44d3-ab93-2643b75591a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T19:38:01.429Z", + "completed":"2016-12-01T19:38:01.429Z", + "new_balance":"2632.42", + "value":"-2631.21" + } + }, + { + "id":"03ad8691-e641-46ce-8042-6cedc5c54865", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T22:15:52.581Z", + "completed":"2016-12-01T22:15:52.581Z", + "new_balance":"2434.51", + "value":"-197.91" + } + }, + { + "id":"e6fdb53e-0487-48bb-9bea-45f70b2fb3ff", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:03:21.939Z", + "completed":"2016-12-04T14:03:21.939Z", + "new_balance":"2381.33", + "value":"-53.18" + } + }, + { + "id":"ecab8755-52ab-4ad5-b0e8-260fb70db3d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T17:10:57.771Z", + "completed":"2016-12-04T17:10:57.771Z", + "new_balance":"2334.43", + "value":"-46.90" + } + }, + { + "id":"21b54905-7049-4e82-aa77-14bfe7b4e8fc", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T14:44:41.881Z", + "completed":"2016-12-05T14:44:41.881Z", + "new_balance":"2017.22", + "value":"-317.21" + } + }, + { + "id":"b84b5865-ba9e-4747-a835-9f7a9d8bb6a5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T19:42:23.306Z", + "completed":"2016-12-05T19:42:23.306Z", + "new_balance":"1285.37", + "value":"-731.85" + } + }, + { + "id":"f01df27f-ed95-4a23-a60a-d9debb8f6c44", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:36:54.097Z", + "completed":"2016-12-07T03:36:54.097Z", + "new_balance":"1234.27", + "value":"-51.10" + } + }, + { + "id":"9f8c3a0d-b85b-4c0e-bd13-a74b7a194123", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T10:56:07.215Z", + "completed":"2016-12-07T10:56:07.215Z", + "new_balance":"1461.66", + "value":"227.39" + } + }, + { + "id":"65c849da-30e1-49c6-90e8-fb590bf317c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:39:56.795Z", + "completed":"2016-12-07T11:39:56.795Z", + "new_balance":"3352.98", + "value":"1891.32" + } + }, + { + "id":"64e2e77c-dcb9-4a8b-b125-b52a9e182c62", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T17:31:09.987Z", + "completed":"2016-12-07T17:31:09.987Z", + "new_balance":"4253.96", + "value":"900.98" + } + }, + { + "id":"ab97b7e4-b49a-4bc2-ba5a-5d195fb6371a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T06:25:25.728Z", + "completed":"2016-12-11T06:25:25.728Z", + "new_balance":"4174.88", + "value":"-79.08" + } + }, + { + "id":"02d88f3c-245c-4e43-b7f5-2954d0085ba0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T00:22:04.783Z", + "completed":"2016-12-14T00:22:04.783Z", + "new_balance":"4236.13", + "value":"61.25" + } + }, + { + "id":"0f1bb741-c5b0-42ad-97ef-c9831540c87f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:01:37.201Z", + "completed":"2016-12-14T01:01:37.201Z", + "new_balance":"4162.20", + "value":"-73.93" + } + }, + { + "id":"73e8023f-d942-4ef2-933b-9a6c9bcfec48", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T06:41:09.577Z", + "completed":"2016-12-14T06:41:09.577Z", + "new_balance":"4612.20", + "value":"450.00" + } + }, + { + "id":"f6a692fc-d40b-4839-916e-9419dd35712a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T03:45:57.734Z", + "completed":"2016-12-16T03:45:57.734Z", + "new_balance":"4839.59", + "value":"227.39" + } + }, + { + "id":"12e09fe9-8f3a-4067-af66-9fe237790505", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:23:16.554Z", + "completed":"2016-12-16T06:23:16.554Z", + "new_balance":"4313.03", + "value":"-526.56" + } + }, + { + "id":"33c09be7-3507-40b5-998a-e4dc48ccf041", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T03:01:38.993Z", + "completed":"2016-12-21T03:01:38.993Z", + "new_balance":"4766.68", + "value":"453.65" + } + }, + { + "id":"d2a3c904-a258-4a05-ad22-a710e5eb596a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T03:45:38.884Z", + "completed":"2016-12-21T03:45:38.884Z", + "new_balance":"4099.53", + "value":"-667.15" + } + }, + { + "id":"1a5e089f-46ad-4f57-ae6b-aa9e2d60e260", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:05:30.558Z", + "completed":"2016-12-21T19:05:30.558Z", + "new_balance":"7182.40", + "value":"3082.87" + } + }, + { + "id":"a0143b6e-ec20-4e63-820c-afb189bf9127", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T21:20:45.548Z", + "completed":"2016-12-21T21:20:45.548Z", + "new_balance":"9073.72", + "value":"1891.32" + } + }, + { + "id":"d7c41bd8-a10e-4380-b018-e14274b5ab3f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T12:45:03.932Z", + "completed":"2016-12-30T12:45:03.932Z", + "new_balance":"9301.11", + "value":"227.39" + } + }, + { + "id":"3829ec4f-5fdb-4861-b242-fca58c226fba", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T13:11:04.138Z", + "completed":"2016-12-30T13:11:04.138Z", + "new_balance":"9528.73", + "value":"227.62" + } + }, + { + "id":"83167d85-4e7b-4da6-a7af-2057e49386d1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T02:08:14.852Z", + "completed":"2017-03-01T02:08:14.852Z", + "new_balance":"9365.25", + "value":"-163.48" + } + }, + { + "id":"b6b97ccb-ec0e-4a9b-bb1b-65f0bbfd8119", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T07:13:10.017Z", + "completed":"2017-03-01T07:13:10.017Z", + "new_balance":"8633.40", + "value":"-731.85" + } + }, + { + "id":"3166d488-3287-40b3-8b10-e1b486f5de21", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T08:04:41.159Z", + "completed":"2017-03-01T08:04:41.159Z", + "new_balance":"6002.19", + "value":"-2631.21" + } + }, + { + "id":"94ceec72-a57b-4c8f-a184-b56e145f57d6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T12:53:23.840Z", + "completed":"2017-03-01T12:53:23.840Z", + "new_balance":"2308.42", + "value":"-3693.77" + } + }, + { + "id":"ecbcfadf-3e4d-438c-9da2-84aeeea91e8f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T16:19:34.897Z", + "completed":"2017-03-01T16:19:34.897Z", + "new_balance":"2110.51", + "value":"-197.91" + } + }, + { + "id":"b3f5da6a-7f16-4931-a8ee-863feb370c88", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T17:15:37.491Z", + "completed":"2017-03-01T17:15:37.491Z", + "new_balance":"1793.30", + "value":"-317.21" + } + }, + { + "id":"d3991589-fcf5-46d6-a6d5-332515ccfd0a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T03:56:29.992Z", + "completed":"2017-03-12T03:56:29.992Z", + "new_balance":"1740.12", + "value":"-53.18" + } + }, + { + "id":"bea7b298-06c9-4716-9ced-47d274e4870b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T12:29:08.447Z", + "completed":"2017-03-12T12:29:08.447Z", + "new_balance":"1008.27", + "value":"-731.85" + } + }, + { + "id":"19ec8d92-3460-49d6-9968-081d661e7c84", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:31:13.990Z", + "completed":"2017-03-12T12:31:13.990Z", + "new_balance":"961.37", + "value":"-46.90" + } + }, + { + "id":"966d60d5-b647-4b86-bc02-a15415b6e674", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T16:38:51.106Z", + "completed":"2017-03-12T16:38:51.106Z", + "new_balance":"644.16", + "value":"-317.21" + } + }, + { + "id":"7769e8be-0b78-436a-8021-a293dbaf8571", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T22:05:39.701Z", + "completed":"2017-03-14T22:05:39.701Z", + "new_balance":"2535.48", + "value":"1891.32" + } + }, + { + "id":"0d7a0c3b-bd0f-4f9d-ae87-94e4b4399c03", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T20:10:41.579Z", + "completed":"2017-03-15T20:10:41.579Z", + "new_balance":"2762.87", + "value":"227.39" + } + }, + { + "id":"71975edd-da4e-4e3e-81a3-048d312b0200", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T14:24:44.873Z", + "completed":"2017-03-16T14:24:44.873Z", + "new_balance":"3663.85", + "value":"900.98" + } + }, + { + "id":"871d2d95-8e1f-4690-8159-2b8b37ffafb6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T01:20:04.153Z", + "completed":"2017-03-17T01:20:04.153Z", + "new_balance":"3612.75", + "value":"-51.10" + } + }, + { + "id":"83f59724-de9d-4ed6-b72a-b4d0466ddeb3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T07:10:16.654Z", + "completed":"2017-03-17T07:10:16.654Z", + "new_balance":"3533.67", + "value":"-79.08" + } + }, + { + "id":"49357121-0e5f-4a19-8129-b4ed7cad17d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:30:11.685Z", + "completed":"2017-03-19T15:30:11.685Z", + "new_balance":"3983.67", + "value":"450.00" + } + }, + { + "id":"8c600521-c797-4e4c-852f-838fc3dbd439", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T09:39:33.299Z", + "completed":"2017-03-21T09:39:33.299Z", + "new_balance":"4044.92", + "value":"61.25" + } + }, + { + "id":"2b9631a6-eccb-4386-b824-fb048ea77fe1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T23:09:20.292Z", + "completed":"2017-03-21T23:09:20.292Z", + "new_balance":"3970.99", + "value":"-73.93" + } + }, + { + "id":"81c0c28c-71a7-4996-a689-1a3de6103e0f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T07:37:57.091Z", + "completed":"2017-03-24T07:37:57.091Z", + "new_balance":"4198.38", + "value":"227.39" + } + }, + { + "id":"23d24e03-1834-4965-86df-3ee885ddc02c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T20:34:35.331Z", + "completed":"2017-03-24T20:34:35.331Z", + "new_balance":"3671.82", + "value":"-526.56" + } + }, + { + "id":"3384c941-abca-4f8c-844e-c215c2708d65", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T05:04:43.850Z", + "completed":"2017-03-25T05:04:43.850Z", + "new_balance":"3004.67", + "value":"-667.15" + } + }, + { + "id":"46de3daf-2044-4aea-8eb8-37320fd4ff47", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T06:45:05.300Z", + "completed":"2017-03-25T06:45:05.300Z", + "new_balance":"3458.32", + "value":"453.65" + } + }, + { + "id":"155ccc0b-6a99-4714-b012-4a8c8ae6db02", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T11:23:52.710Z", + "completed":"2017-03-28T11:23:52.710Z", + "new_balance":"5349.64", + "value":"1891.32" + } + }, + { + "id":"5f8206a1-814b-45d6-b668-4091ddec2af1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:43:14.585Z", + "completed":"2017-03-28T16:43:14.585Z", + "new_balance":"8432.51", + "value":"3082.87" + } + }, + { + "id":"bea80e38-f7fd-49de-a27d-af88fee7373d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T04:05:29.269Z", + "completed":"2017-03-30T04:05:29.269Z", + "new_balance":"8659.90", + "value":"227.39" + } + }, + { + "id":"f4fb007c-c388-49e6-9f82-3fa2092b2e58", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T14:09:06.289Z", + "completed":"2017-03-30T14:09:06.289Z", + "new_balance":"8887.52", + "value":"227.62" + } + }, + { + "id":"7264dbb3-1602-484f-b94e-18d5ea4c9c76", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T07:04:18.927Z", + "completed":"2017-06-01T07:04:18.927Z", + "new_balance":"5193.75", + "value":"-3693.77" + } + }, + { + "id":"5ee0b533-469e-46c7-bb55-21cf9635d8d0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T09:00:39.524Z", + "completed":"2017-06-01T09:00:39.524Z", + "new_balance":"4995.84", + "value":"-197.91" + } + }, + { + "id":"443cf298-d068-4028-9aa3-b7166767e327", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:57:35.649Z", + "completed":"2017-06-01T13:57:35.649Z", + "new_balance":"4263.99", + "value":"-731.85" + } + }, + { + "id":"b102295e-467a-4ca5-a639-957bf1c3209e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T15:12:11.619Z", + "completed":"2017-06-01T15:12:11.619Z", + "new_balance":"1632.78", + "value":"-2631.21" + } + }, + { + "id":"65e02fd3-1eb2-44a9-aee7-3d0b6e14955f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T16:56:04.951Z", + "completed":"2017-06-01T16:56:04.951Z", + "new_balance":"1469.30", + "value":"-163.48" + } + }, + { + "id":"ef69cfbb-a3c2-46bb-a6a3-159ea8454cf6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T19:04:01.920Z", + "completed":"2017-06-01T19:04:01.920Z", + "new_balance":"1152.09", + "value":"-317.21" + } + }, + { + "id":"6b33fcdb-0396-4ebd-a106-2f08884614cb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T04:38:13.304Z", + "completed":"2017-06-04T04:38:13.304Z", + "new_balance":"1098.91", + "value":"-53.18" + } + }, + { + "id":"beeb994e-a487-4eba-b1c0-b2973d8aed6a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:57:49.333Z", + "completed":"2017-06-04T11:57:49.333Z", + "new_balance":"1052.01", + "value":"-46.90" + } + }, + { + "id":"e1d394cb-cc1c-4920-abc2-a0577d4feb6f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T04:22:02.870Z", + "completed":"2017-06-05T04:22:02.870Z", + "new_balance":"320.16", + "value":"-731.85" + } + }, + { + "id":"6241c100-697a-4652-93ba-9a0699e6eb00", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T09:00:24.424Z", + "completed":"2017-06-05T09:00:24.424Z", + "new_balance":"2.95", + "value":"-317.21" + } + }, + { + "id":"28d7566d-86e3-47d1-891d-f2d2916953bf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T02:41:26.747Z", + "completed":"2017-06-07T02:41:26.747Z", + "new_balance":"903.93", + "value":"900.98" + } + }, + { + "id":"c0eeb1c1-d922-429e-9034-fdf38dc9b382", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:29:31.236Z", + "completed":"2017-06-07T08:29:31.236Z", + "new_balance":"2795.25", + "value":"1891.32" + } + }, + { + "id":"bb1022a1-e8ba-4296-9dfa-61cd8c27eef5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T09:33:04.537Z", + "completed":"2017-06-07T09:33:04.537Z", + "new_balance":"2744.15", + "value":"-51.10" + } + }, + { + "id":"425ae611-1b81-453a-8e78-15c3c7b61909", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T14:15:42.654Z", + "completed":"2017-06-07T14:15:42.654Z", + "new_balance":"2971.54", + "value":"227.39" + } + }, + { + "id":"9c5ae538-d642-4617-bb5e-d1be4a367a1f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T05:22:20.531Z", + "completed":"2017-06-11T05:22:20.531Z", + "new_balance":"2892.46", + "value":"-79.08" + } + }, + { + "id":"ac73600d-7766-4170-b7fd-c72b78e9baac", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T02:19:18.206Z", + "completed":"2017-06-14T02:19:18.206Z", + "new_balance":"2818.53", + "value":"-73.93" + } + }, + { + "id":"1e631341-a6d5-4cf2-8869-b1462b598c94", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T15:50:25.604Z", + "completed":"2017-06-14T15:50:25.604Z", + "new_balance":"3268.53", + "value":"450.00" + } + }, + { + "id":"9cd60a29-ba78-45ff-b02f-43b0866da9c9", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T22:43:50.243Z", + "completed":"2017-06-14T22:43:50.243Z", + "new_balance":"3329.78", + "value":"61.25" + } + }, + { + "id":"53891cd2-5c5e-4705-a3b3-8100bc10c7bb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T18:49:57.174Z", + "completed":"2017-06-16T18:49:57.174Z", + "new_balance":"3557.17", + "value":"227.39" + } + }, + { + "id":"1c2ffd26-345c-4024-867d-c243ef7728c2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T23:26:47.722Z", + "completed":"2017-06-16T23:26:47.722Z", + "new_balance":"3030.61", + "value":"-526.56" + } + }, + { + "id":"5bff8510-decd-4e9f-a4ec-1971ee13198b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T12:37:13.809Z", + "completed":"2017-06-21T12:37:13.809Z", + "new_balance":"2363.46", + "value":"-667.15" + } + }, + { + "id":"88bc0660-34b1-4a8f-8e60-7e84e5bccd10", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:21:25.871Z", + "completed":"2017-06-21T14:21:25.871Z", + "new_balance":"5446.33", + "value":"3082.87" + } + }, + { + "id":"c046b00b-732a-49dc-a5dd-9eaaaca24a6a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:17:01.708Z", + "completed":"2017-06-21T20:17:01.708Z", + "new_balance":"7337.65", + "value":"1891.32" + } + }, + { + "id":"d6e428ad-ea3a-41cf-8298-fbe851d52eb7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T22:49:55.187Z", + "completed":"2017-06-21T22:49:55.187Z", + "new_balance":"7791.30", + "value":"453.65" + } + }, + { + "id":"cbc1d1b8-7081-44f9-9182-65ebc8dcf4ed", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T09:24:55.004Z", + "completed":"2017-06-30T09:24:55.004Z", + "new_balance":"8018.92", + "value":"227.62" + } + }, + { + "id":"bd93de9d-4357-4201-a8d3-242c54de9091", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T18:38:56.280Z", + "completed":"2017-06-30T18:38:56.280Z", + "new_balance":"8246.31", + "value":"227.39" + } + }, + { + "id":"0aa23e1a-e6c1-48a5-b409-4089cc143813", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T01:18:07.072Z", + "completed":"2017-09-01T01:18:07.072Z", + "new_balance":"5615.10", + "value":"-2631.21" + } + }, + { + "id":"67b3ece2-5345-4be5-a140-75407af2ae7b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T13:52:36.247Z", + "completed":"2017-09-01T13:52:36.247Z", + "new_balance":"1921.33", + "value":"-3693.77" + } + }, + { + "id":"4ec259b3-630e-4831-8e8a-fcbefedbebb6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T14:29:18.243Z", + "completed":"2017-09-01T14:29:18.243Z", + "new_balance":"1757.85", + "value":"-163.48" + } + }, + { + "id":"11525607-7741-4d87-a76f-c05814b26d9c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T17:50:01.828Z", + "completed":"2017-09-01T17:50:01.828Z", + "new_balance":"1559.94", + "value":"-197.91" + } + }, + { + "id":"b0470d69-3cd7-4e7c-a3e1-f5dc43ba5095", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T17:55:41.097Z", + "completed":"2017-09-01T17:55:41.097Z", + "new_balance":"1242.73", + "value":"-317.21" + } + }, + { + "id":"c6f6f044-535d-4bb0-b7c1-44f29a3667da", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T18:13:46.839Z", + "completed":"2017-09-01T18:13:46.839Z", + "new_balance":"510.88", + "value":"-731.85" + } + }, + { + "id":"6233dbe7-7169-46cf-b341-457d64e331fa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T00:06:28.228Z", + "completed":"2017-09-12T00:06:28.228Z", + "new_balance":"463.98", + "value":"-46.90" + } + }, + { + "id":"9f164df2-8ca5-4a2d-80c5-1bdf9a683b65", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T14:05:07.662Z", + "completed":"2017-09-12T14:05:07.662Z", + "new_balance":"410.80", + "value":"-53.18" + } + }, + { + "id":"de8f912e-6f73-4298-971e-2f5d5b466788", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T17:12:02.960Z", + "completed":"2017-09-12T17:12:02.960Z", + "new_balance":"-321.05", + "value":"-731.85" + } + }, + { + "id":"88afa335-a756-44ea-a2a7-b5f5eda02989", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T22:40:09.744Z", + "completed":"2017-09-12T22:40:09.744Z", + "new_balance":"-638.26", + "value":"-317.21" + } + }, + { + "id":"743e1bab-3b23-4a3b-bb63-318640a401ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T09:19:35.484Z", + "completed":"2017-09-15T09:19:35.484Z", + "new_balance":"-410.87", + "value":"227.39" + } + }, + { + "id":"e2ef15fa-8d4a-4ce6-b6c9-11cb34a18e9e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T18:15:20.389Z", + "completed":"2017-09-15T18:15:20.389Z", + "new_balance":"1480.45", + "value":"1891.32" + } + }, + { + "id":"ebff3e1b-cbaa-48a4-83f7-6974ba8ca96c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T00:19:51.014Z", + "completed":"2017-09-17T00:19:51.014Z", + "new_balance":"1429.35", + "value":"-51.10" + } + }, + { + "id":"e87936b9-2ee4-4050-85fe-0c33e2b2fb30", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T06:02:53.526Z", + "completed":"2017-09-17T06:02:53.526Z", + "new_balance":"2330.33", + "value":"900.98" + } + }, + { + "id":"6f185857-9faa-4c74-a2a2-2d6b785d733d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T10:31:14.303Z", + "completed":"2017-09-17T10:31:14.303Z", + "new_balance":"2251.25", + "value":"-79.08" + } + }, + { + "id":"f8b2eb34-5fb3-45a3-9941-cf2d007fb44e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T17:04:24.722Z", + "completed":"2017-09-19T17:04:24.722Z", + "new_balance":"2701.25", + "value":"450.00" + } + }, + { + "id":"8a4223c3-fad2-4283-90b2-e86a5bdb1f78", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:40:19.690Z", + "completed":"2017-09-21T05:40:19.690Z", + "new_balance":"2762.50", + "value":"61.25" + } + }, + { + "id":"c87dc568-9398-4b4f-959c-28c35aede354", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T16:31:00.625Z", + "completed":"2017-09-21T16:31:00.625Z", + "new_balance":"2688.57", + "value":"-73.93" + } + }, + { + "id":"0004d953-7346-4c39-b038-1654e208c224", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T04:53:06.800Z", + "completed":"2017-09-24T04:53:06.800Z", + "new_balance":"2162.01", + "value":"-526.56" + } + }, + { + "id":"511972ec-71e6-4c4d-bd4b-bc3162f8c765", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T17:46:57.888Z", + "completed":"2017-09-24T17:46:57.888Z", + "new_balance":"2389.40", + "value":"227.39" + } + }, + { + "id":"82103a6d-32db-4196-84a1-edf8e4a101ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T23:13:18.945Z", + "completed":"2017-09-25T23:13:18.945Z", + "new_balance":"2843.05", + "value":"453.65" + } + }, + { + "id":"77e76069-5a4c-4972-a098-1c22c4b17f28", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T23:38:40.302Z", + "completed":"2017-09-25T23:38:40.302Z", + "new_balance":"2175.90", + "value":"-667.15" + } + }, + { + "id":"c213c575-b9cc-466e-89c0-1a7fd305d0ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T11:42:00.602Z", + "completed":"2017-09-28T11:42:00.602Z", + "new_balance":"4067.22", + "value":"1891.32" + } + }, + { + "id":"109b2cdd-e3d3-443c-af9b-03f37a6a0c0e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T21:06:02.849Z", + "completed":"2017-09-28T21:06:02.849Z", + "new_balance":"7150.09", + "value":"3082.87" + } + }, + { + "id":"4e41753c-55b1-48fe-9a5c-965e7db84601", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T06:49:56.888Z", + "completed":"2017-09-30T06:49:56.888Z", + "new_balance":"7377.71", + "value":"227.62" + } + }, + { + "id":"c0dae5c1-1fd1-4070-849e-8dacd9c69a78", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T10:15:58.424Z", + "completed":"2017-09-30T10:15:58.424Z", + "new_balance":"7605.10", + "value":"227.39" + } + }, + { + "id":"d5cabcea-8783-43f9-b87c-4fac110eee1e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T00:47:18.312Z", + "completed":"2017-12-01T00:47:18.312Z", + "new_balance":"3911.33", + "value":"-3693.77" + } + }, + { + "id":"091cb9e7-93a7-42b0-8a1b-82bcc1ef9cfe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T00:59:19.303Z", + "completed":"2017-12-01T00:59:19.303Z", + "new_balance":"3179.48", + "value":"-731.85" + } + }, + { + "id":"59e33791-4f83-4d9a-b4bf-ed00d406ae15", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T01:13:36.035Z", + "completed":"2017-12-01T01:13:36.035Z", + "new_balance":"2981.57", + "value":"-197.91" + } + }, + { + "id":"e1d997bf-1bfe-4929-92ee-0d18f71002c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T11:08:12.584Z", + "completed":"2017-12-01T11:08:12.584Z", + "new_balance":"2664.36", + "value":"-317.21" + } + }, + { + "id":"70bdf6d4-1b8b-458a-adb5-43a94aaa60f5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T16:00:33.390Z", + "completed":"2017-12-01T16:00:33.390Z", + "new_balance":"2500.88", + "value":"-163.48" + } + }, + { + "id":"80a8c30c-e77d-49e6-bc38-ecea4a607348", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T20:36:06.592Z", + "completed":"2017-12-01T20:36:06.592Z", + "new_balance":"-130.33", + "value":"-2631.21" + } + }, + { + "id":"226756d6-75a3-4b3a-bd64-5fcc822d2a1c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:48:47.278Z", + "completed":"2017-12-04T00:48:47.278Z", + "new_balance":"-177.23", + "value":"-46.90" + } + }, + { + "id":"1d9ce354-3baf-48d5-8954-e1a2b4224d8d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T18:04:24.279Z", + "completed":"2017-12-04T18:04:24.279Z", + "new_balance":"-230.41", + "value":"-53.18" + } + }, + { + "id":"eed868be-ad53-46c3-95dd-770a459745d0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T01:42:33.168Z", + "completed":"2017-12-05T01:42:33.168Z", + "new_balance":"-962.26", + "value":"-731.85" + } + }, + { + "id":"9434703a-6b62-4ac4-b0db-3acd81389e09", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T22:54:30.844Z", + "completed":"2017-12-05T22:54:30.844Z", + "new_balance":"-1279.47", + "value":"-317.21" + } + }, + { + "id":"1b43351f-c595-47b3-9875-6795e30546ef", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T00:52:11.644Z", + "completed":"2017-12-07T00:52:11.644Z", + "new_balance":"-1330.57", + "value":"-51.10" + } + }, + { + "id":"74a00a6e-c179-4fe4-bda3-59a9b6e3a55a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T07:57:31.850Z", + "completed":"2017-12-07T07:57:31.850Z", + "new_balance":"-429.59", + "value":"900.98" + } + }, + { + "id":"b7593763-ce98-4ba2-936e-3500d5710825", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T12:56:27.231Z", + "completed":"2017-12-07T12:56:27.231Z", + "new_balance":"1461.73", + "value":"1891.32" + } + }, + { + "id":"462e6782-d5a2-4302-bbee-20f52dc1a03a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T12:58:25.728Z", + "completed":"2017-12-07T12:58:25.728Z", + "new_balance":"1689.12", + "value":"227.39" + } + }, + { + "id":"d214309a-6246-4a69-ae71-49dfb8a531d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T12:44:39.839Z", + "completed":"2017-12-11T12:44:39.839Z", + "new_balance":"1610.04", + "value":"-79.08" + } + }, + { + "id":"f1239f51-f8fa-4464-acd6-ee4153105c37", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:29:06.819Z", + "completed":"2017-12-14T06:29:06.819Z", + "new_balance":"2060.04", + "value":"450.00" + } + }, + { + "id":"6b3d2270-1e4c-47b4-a44f-2e036d53f0fe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:34:35.358Z", + "completed":"2017-12-14T19:34:35.358Z", + "new_balance":"1986.11", + "value":"-73.93" + } + }, + { + "id":"8d9b491a-1e4b-4e18-8fef-aec6e290e298", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:56:28.900Z", + "completed":"2017-12-14T19:56:28.900Z", + "new_balance":"2047.36", + "value":"61.25" + } + }, + { + "id":"5b792063-48f5-433b-bb96-99a4bc711c52", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T00:13:30.162Z", + "completed":"2017-12-16T00:13:30.162Z", + "new_balance":"1520.80", + "value":"-526.56" + } + }, + { + "id":"9f8bb80e-5bc2-48b2-a9da-e4ed44fa7486", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T18:57:51.005Z", + "completed":"2017-12-16T18:57:51.005Z", + "new_balance":"1748.19", + "value":"227.39" + } + }, + { + "id":"bc5815be-dad4-4687-9230-ac60d561ac79", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T01:44:06.257Z", + "completed":"2017-12-21T01:44:06.257Z", + "new_balance":"3639.51", + "value":"1891.32" + } + }, + { + "id":"0c708003-c597-43bf-83e1-86441efa4d27", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T02:21:40.920Z", + "completed":"2017-12-21T02:21:40.920Z", + "new_balance":"6722.38", + "value":"3082.87" + } + }, + { + "id":"cf92cdb4-8329-4298-b6af-817a1387d1a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T09:12:24.454Z", + "completed":"2017-12-21T09:12:24.454Z", + "new_balance":"7176.03", + "value":"453.65" + } + }, + { + "id":"3f8c9d0e-457e-4ec7-ac98-056e1fb9f79f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T15:27:41.857Z", + "completed":"2017-12-21T15:27:41.857Z", + "new_balance":"6508.88", + "value":"-667.15" + } + }, + { + "id":"e8982d9e-8e4e-433d-83ef-918204e957a8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T01:30:58.624Z", + "completed":"2017-12-30T01:30:58.624Z", + "new_balance":"6736.27", + "value":"227.39" + } + }, + { + "id":"00f0a936-ed04-4d3e-a963-bec3f7868d99", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T17:08:32.824Z", + "completed":"2017-12-30T17:08:32.824Z", + "new_balance":"6963.89", + "value":"227.62" + } + }, + { + "id":"911e65d8-4121-47d5-800c-a610391f31ac", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T05:03:55.349Z", + "completed":"2016-03-01T05:03:55.349Z", + "new_balance":"3584.78", + "value":"-23.24" + } + }, + { + "id":"28b39016-b5ec-4c54-be6f-d8a26efc8fc9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T06:00:39.963Z", + "completed":"2016-03-01T06:00:39.963Z", + "new_balance":"3288.18", + "value":"-296.60" + } + }, + { + "id":"b88367aa-d7eb-400d-b97d-745ac65ced48", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T09:27:41.602Z", + "completed":"2016-03-01T09:27:41.602Z", + "new_balance":"3010.70", + "value":"-277.48" + } + }, + { + "id":"64aafcba-e180-4aa0-b86b-e85076f6f5fc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T10:03:53.640Z", + "completed":"2016-03-01T10:03:53.640Z", + "new_balance":"2953.89", + "value":"-56.81" + } + }, + { + "id":"8163e88a-140d-47aa-b76f-a3aa93d845f6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T17:33:46.258Z", + "completed":"2016-03-01T17:33:46.258Z", + "new_balance":"2931.53", + "value":"-22.36" + } + }, + { + "id":"25400222-9a50-45cf-914b-de4315c30c49", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:58:24.817Z", + "completed":"2016-03-01T23:58:24.817Z", + "new_balance":"2918.43", + "value":"-13.10" + } + }, + { + "id":"d1f0dc41-afb1-47af-852c-94222d7dd7df", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T04:32:25.162Z", + "completed":"2016-03-12T04:32:25.162Z", + "new_balance":"2914.25", + "value":"-4.18" + } + }, + { + "id":"24610f39-caab-4363-b516-10352b88e6f0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T15:39:46.706Z", + "completed":"2016-03-12T15:39:46.706Z", + "new_balance":"2909.10", + "value":"-5.15" + } + }, + { + "id":"56400769-bcbd-48dc-963b-1ee366edace4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T19:42:56.763Z", + "completed":"2016-03-12T19:42:56.763Z", + "new_balance":"2852.29", + "value":"-56.81" + } + }, + { + "id":"8e0cf3c5-ff15-4a8f-bb3c-e1cbfd5e4d7a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T20:07:25.713Z", + "completed":"2016-03-12T20:07:25.713Z", + "new_balance":"2829.05", + "value":"-23.24" + } + }, + { + "id":"3122b6c7-e104-4e20-baad-5ebeb2e87a95", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T05:56:21.801Z", + "completed":"2016-03-14T05:56:21.801Z", + "new_balance":"2989.86", + "value":"160.81" + } + }, + { + "id":"ade57b76-81b9-474f-8543-6203c95416dc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T22:01:19.304Z", + "completed":"2016-03-15T22:01:19.304Z", + "new_balance":"3020.13", + "value":"30.27" + } + }, + { + "id":"3a2f93cc-64b1-4694-8d0f-60e6e8a39375", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T14:34:02.664Z", + "completed":"2016-03-16T14:34:02.664Z", + "new_balance":"3111.09", + "value":"90.96" + } + }, + { + "id":"da7a9546-3c98-4b62-bf5c-b31ef000a526", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T04:30:01.010Z", + "completed":"2016-03-17T04:30:01.010Z", + "new_balance":"3104.56", + "value":"-6.53" + } + }, + { + "id":"94f9aa08-d061-4258-bc1a-9dd7f1f60a99", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T11:19:42.858Z", + "completed":"2016-03-17T11:19:42.858Z", + "new_balance":"3099.08", + "value":"-5.48" + } + }, + { + "id":"421c9050-176f-41c9-8b31-b402323dd675", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T20:04:41.358Z", + "completed":"2016-03-19T20:04:41.358Z", + "new_balance":"3146.95", + "value":"47.87" + } + }, + { + "id":"b5727137-cdf5-4200-b725-01125c813126", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T14:04:06.909Z", + "completed":"2016-03-21T14:04:06.909Z", + "new_balance":"3139.76", + "value":"-7.19" + } + }, + { + "id":"e26c2443-2ce9-4d4c-9957-30b571a615d3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T17:54:16.004Z", + "completed":"2016-03-21T17:54:16.004Z", + "new_balance":"3146.60", + "value":"6.84" + } + }, + { + "id":"61f86232-dc3d-4d89-9bff-4e14ab98d4d7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T02:00:01.008Z", + "completed":"2016-03-24T02:00:01.008Z", + "new_balance":"3176.87", + "value":"30.27" + } + }, + { + "id":"817e76cf-8ccd-44da-80f3-2777ac401cf8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T21:06:08.648Z", + "completed":"2016-03-24T21:06:08.648Z", + "new_balance":"3126.65", + "value":"-50.22" + } + }, + { + "id":"8e61ca16-e282-455e-ae08-f3ab9cb240d3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T21:32:20.498Z", + "completed":"2016-03-25T21:32:20.498Z", + "new_balance":"3176.73", + "value":"50.08" + } + }, + { + "id":"2a17c24e-b336-47da-8a00-656229659b85", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T21:57:31.824Z", + "completed":"2016-03-25T21:57:31.824Z", + "new_balance":"3107.65", + "value":"-69.08" + } + }, + { + "id":"fa8ba922-7434-4980-b69d-a119337f3a05", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T01:01:33.338Z", + "completed":"2016-03-28T01:01:33.338Z", + "new_balance":"3268.46", + "value":"160.81" + } + }, + { + "id":"42562d41-55e1-4649-b6e7-df4aa6b25dad", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T21:03:09.847Z", + "completed":"2016-03-28T21:03:09.847Z", + "new_balance":"3677.28", + "value":"408.82" + } + }, + { + "id":"aa8d6919-bad5-4093-a2db-bb8c1039cd66", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T14:54:47.085Z", + "completed":"2016-03-30T14:54:47.085Z", + "new_balance":"3707.55", + "value":"30.27" + } + }, + { + "id":"62ea02ea-104a-4214-8845-6ef9f1ad3a37", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T21:46:29.455Z", + "completed":"2016-03-30T21:46:29.455Z", + "new_balance":"3728.44", + "value":"20.89" + } + }, + { + "id":"c8fa2c82-98c0-4c84-9993-cbf78204131c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T01:33:04.310Z", + "completed":"2016-06-01T01:33:04.310Z", + "new_balance":"3450.96", + "value":"-277.48" + } + }, + { + "id":"bd086cf6-3b71-477a-a2a1-67a037c5d9aa", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T03:35:28.348Z", + "completed":"2016-06-01T03:35:28.348Z", + "new_balance":"3394.15", + "value":"-56.81" + } + }, + { + "id":"5bf9a6bd-93d2-4f21-9956-6901763c226b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:24:24.035Z", + "completed":"2016-06-01T04:24:24.035Z", + "new_balance":"3381.05", + "value":"-13.10" + } + }, + { + "id":"d92ed283-cd65-4c5b-9bc5-107adde60d8d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T12:43:39.734Z", + "completed":"2016-06-01T12:43:39.734Z", + "new_balance":"3084.45", + "value":"-296.60" + } + }, + { + "id":"e5f697f9-f151-49c0-aa56-f5627a7ed7d9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T19:32:13.448Z", + "completed":"2016-06-01T19:32:13.448Z", + "new_balance":"3061.21", + "value":"-23.24" + } + }, + { + "id":"f510f9a8-8f7d-4865-a9b4-44272c1378a9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T19:44:59.750Z", + "completed":"2016-06-01T19:44:59.750Z", + "new_balance":"3038.85", + "value":"-22.36" + } + }, + { + "id":"549c5a2b-8218-4f87-bb3e-433b48649da2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:03:50.924Z", + "completed":"2016-06-04T09:03:50.924Z", + "new_balance":"3033.70", + "value":"-5.15" + } + }, + { + "id":"ce01f4eb-cf18-4b10-b1b7-a517c3003b34", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T16:37:54.078Z", + "completed":"2016-06-04T16:37:54.078Z", + "new_balance":"3029.52", + "value":"-4.18" + } + }, + { + "id":"f9086fff-7432-4843-9643-660fe26a7a53", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T14:57:13.563Z", + "completed":"2016-06-05T14:57:13.563Z", + "new_balance":"2972.71", + "value":"-56.81" + } + }, + { + "id":"c008463f-ad47-4856-9b19-197f4690abd6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T20:28:07.424Z", + "completed":"2016-06-05T20:28:07.424Z", + "new_balance":"2949.47", + "value":"-23.24" + } + }, + { + "id":"cb26c2f5-ae82-4c43-85b2-a71dfc530d81", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T01:12:52.629Z", + "completed":"2016-06-07T01:12:52.629Z", + "new_balance":"2942.94", + "value":"-6.53" + } + }, + { + "id":"8b5d5c93-9204-4651-bc05-d8436737bb3b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T04:13:04.075Z", + "completed":"2016-06-07T04:13:04.075Z", + "new_balance":"2973.21", + "value":"30.27" + } + }, + { + "id":"7135508b-7cdd-47e2-90d2-9ab587be0f35", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T08:59:26.448Z", + "completed":"2016-06-07T08:59:26.448Z", + "new_balance":"3134.02", + "value":"160.81" + } + }, + { + "id":"e0f64087-b481-4fab-8e29-223f95ed17b3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:54:03.279Z", + "completed":"2016-06-07T11:54:03.279Z", + "new_balance":"3224.98", + "value":"90.96" + } + }, + { + "id":"be935c51-f4e7-49d0-9d68-937f7d7182a0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T04:24:49.557Z", + "completed":"2016-06-11T04:24:49.557Z", + "new_balance":"3219.50", + "value":"-5.48" + } + }, + { + "id":"308d9407-ca60-4175-bf31-3c91213e90df", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T05:02:49.914Z", + "completed":"2016-06-14T05:02:49.914Z", + "new_balance":"3226.34", + "value":"6.84" + } + }, + { + "id":"a8c8bbb6-369d-4540-9a43-c7a9955ec14a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T08:49:50.257Z", + "completed":"2016-06-14T08:49:50.257Z", + "new_balance":"3219.15", + "value":"-7.19" + } + }, + { + "id":"b5f3e08c-d3b3-4486-bde2-6e3bcdbd9fd9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T14:10:45.942Z", + "completed":"2016-06-14T14:10:45.942Z", + "new_balance":"3267.02", + "value":"47.87" + } + }, + { + "id":"fb6c9bbd-1472-460a-9267-3dfebf99770f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T16:34:01.294Z", + "completed":"2016-06-16T16:34:01.294Z", + "new_balance":"3216.80", + "value":"-50.22" + } + }, + { + "id":"3d175141-1554-4d9d-be65-06238f8eeff8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T17:15:15.817Z", + "completed":"2016-06-16T17:15:15.817Z", + "new_balance":"3247.07", + "value":"30.27" + } + }, + { + "id":"70f3865b-0423-4867-a338-ac1471cec42e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T00:14:24.776Z", + "completed":"2016-06-21T00:14:24.776Z", + "new_balance":"3297.15", + "value":"50.08" + } + }, + { + "id":"d7f478eb-c91e-4315-910e-95c88f646e0d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T15:42:07.476Z", + "completed":"2016-06-21T15:42:07.476Z", + "new_balance":"3228.07", + "value":"-69.08" + } + }, + { + "id":"5bb5a2c8-c7f9-4436-bb20-b1e9b1792540", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T20:50:31.911Z", + "completed":"2016-06-21T20:50:31.911Z", + "new_balance":"3388.88", + "value":"160.81" + } + }, + { + "id":"5070099c-1edd-48ec-9bdb-37982888a403", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T21:54:29.985Z", + "completed":"2016-06-21T21:54:29.985Z", + "new_balance":"3797.70", + "value":"408.82" + } + }, + { + "id":"407b34f0-e573-4110-a428-19d6f6442cf1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T13:05:50.821Z", + "completed":"2016-06-30T13:05:50.821Z", + "new_balance":"3818.59", + "value":"20.89" + } + }, + { + "id":"e7b11e58-db7a-4bc3-9299-d4cef61a8c9f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T16:58:12.197Z", + "completed":"2016-06-30T16:58:12.197Z", + "new_balance":"3848.86", + "value":"30.27" + } + }, + { + "id":"4ab48261-819d-4203-b33b-834ba48c859a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T04:45:45.396Z", + "completed":"2016-09-01T04:45:45.396Z", + "new_balance":"3825.62", + "value":"-23.24" + } + }, + { + "id":"6362b88a-0d4d-445d-b0b6-626de6b67b37", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T07:04:24.785Z", + "completed":"2016-09-01T07:04:24.785Z", + "new_balance":"3529.02", + "value":"-296.60" + } + }, + { + "id":"db9ae066-9639-489b-815f-c7602b0e911e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T15:50:58.697Z", + "completed":"2016-09-01T15:50:58.697Z", + "new_balance":"3515.92", + "value":"-13.10" + } + }, + { + "id":"5f896479-0d82-458b-a3c8-536848bb320e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T19:01:03.065Z", + "completed":"2016-09-01T19:01:03.065Z", + "new_balance":"3493.56", + "value":"-22.36" + } + }, + { + "id":"b271bb8d-dd52-49f8-a8bc-7ba9b745a64d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T20:52:20.641Z", + "completed":"2016-09-01T20:52:20.641Z", + "new_balance":"3436.75", + "value":"-56.81" + } + }, + { + "id":"fbc08c38-386f-46c5-81c3-97120e263786", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T22:47:15.690Z", + "completed":"2016-09-01T22:47:15.690Z", + "new_balance":"3159.27", + "value":"-277.48" + } + }, + { + "id":"2e08c1f3-3283-40b9-bd7d-6c11e543f5cf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T04:28:32.515Z", + "completed":"2016-09-12T04:28:32.515Z", + "new_balance":"3136.03", + "value":"-23.24" + } + }, + { + "id":"bc4d2e60-7988-457b-81a0-24d880fe1ec6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T11:51:49.480Z", + "completed":"2016-09-12T11:51:49.480Z", + "new_balance":"3130.88", + "value":"-5.15" + } + }, + { + "id":"ad464b30-7ff7-48f3-b73d-1ba3106a938f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T14:37:58.979Z", + "completed":"2016-09-12T14:37:58.979Z", + "new_balance":"3074.07", + "value":"-56.81" + } + }, + { + "id":"e1fd1be3-1072-4b84-8d1a-c62fdbd082a9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T20:32:26.274Z", + "completed":"2016-09-12T20:32:26.274Z", + "new_balance":"3069.89", + "value":"-4.18" + } + }, + { + "id":"7e8e9147-9d75-49cb-b79f-ff3bd2818b52", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T18:11:28.172Z", + "completed":"2016-09-15T18:11:28.172Z", + "new_balance":"3230.70", + "value":"160.81" + } + }, + { + "id":"25841487-d80f-4a68-a6e1-c7ca437583a3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T19:01:57.582Z", + "completed":"2016-09-15T19:01:57.582Z", + "new_balance":"3260.97", + "value":"30.27" + } + }, + { + "id":"909d8c14-a3b0-4aa0-a377-9bbc81b186d4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T03:09:53.658Z", + "completed":"2016-09-17T03:09:53.658Z", + "new_balance":"3255.49", + "value":"-5.48" + } + }, + { + "id":"ce096ad1-9331-4e5c-9d75-7af7f492d7b4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T14:52:36.546Z", + "completed":"2016-09-17T14:52:36.546Z", + "new_balance":"3248.96", + "value":"-6.53" + } + }, + { + "id":"c2d58ac1-e742-4527-8d48-d070288f93ff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T17:44:41.338Z", + "completed":"2016-09-17T17:44:41.338Z", + "new_balance":"3339.92", + "value":"90.96" + } + }, + { + "id":"0d9aaea4-3fdf-477d-9fd3-21617ddfb276", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T16:33:29.225Z", + "completed":"2016-09-19T16:33:29.225Z", + "new_balance":"3387.79", + "value":"47.87" + } + }, + { + "id":"32e2912e-c053-4fe1-976c-b65a7086b6d0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T13:01:44.192Z", + "completed":"2016-09-21T13:01:44.192Z", + "new_balance":"3394.63", + "value":"6.84" + } + }, + { + "id":"af5d9f7f-e7a8-473b-94b4-f63a06c53597", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T22:44:10.639Z", + "completed":"2016-09-21T22:44:10.639Z", + "new_balance":"3387.44", + "value":"-7.19" + } + }, + { + "id":"be28e7de-303e-472a-9421-527ba0fdbb48", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T00:16:09.329Z", + "completed":"2016-09-24T00:16:09.329Z", + "new_balance":"3417.71", + "value":"30.27" + } + }, + { + "id":"cf1af8a2-5cc5-4198-87dd-e6b76daad352", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T07:59:16.523Z", + "completed":"2016-09-24T07:59:16.523Z", + "new_balance":"3367.49", + "value":"-50.22" + } + }, + { + "id":"8c4b4399-6cbd-44ff-8de4-aa8cb5164d53", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T11:52:32.584Z", + "completed":"2016-09-25T11:52:32.584Z", + "new_balance":"3417.57", + "value":"50.08" + } + }, + { + "id":"2d4a908c-161f-4f12-acd9-b697b99e2bd8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T15:44:00.776Z", + "completed":"2016-09-25T15:44:00.776Z", + "new_balance":"3348.49", + "value":"-69.08" + } + }, + { + "id":"d97b27aa-7d0d-42f9-99e6-499a26cae59b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T04:30:13.584Z", + "completed":"2016-09-28T04:30:13.584Z", + "new_balance":"3757.31", + "value":"408.82" + } + }, + { + "id":"efc3ec33-fd26-49d9-b959-b2319e1d640e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T07:30:38.449Z", + "completed":"2016-09-28T07:30:38.449Z", + "new_balance":"3918.12", + "value":"160.81" + } + }, + { + "id":"bb37fc3d-f825-4f2b-8bd2-f2727da02dbd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T07:03:56.687Z", + "completed":"2016-09-30T07:03:56.687Z", + "new_balance":"3948.39", + "value":"30.27" + } + }, + { + "id":"91771df6-31fe-4944-b744-dd7f91517a69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T12:53:45.353Z", + "completed":"2016-09-30T12:53:45.353Z", + "new_balance":"3969.28", + "value":"20.89" + } + }, + { + "id":"82a25917-21fc-446a-bba3-9f764d68f75d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T02:40:16.755Z", + "completed":"2016-12-01T02:40:16.755Z", + "new_balance":"3946.04", + "value":"-23.24" + } + }, + { + "id":"6d5d7093-666f-49c1-bc2b-0071880cec63", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T05:12:03.698Z", + "completed":"2016-12-01T05:12:03.698Z", + "new_balance":"3923.68", + "value":"-22.36" + } + }, + { + "id":"47e01892-5f7d-4e01-b3b2-1f1f507e094e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T05:19:39.859Z", + "completed":"2016-12-01T05:19:39.859Z", + "new_balance":"3866.87", + "value":"-56.81" + } + }, + { + "id":"644f242e-d8f8-46a0-8beb-ff4b176f04c6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T05:48:30.195Z", + "completed":"2016-12-01T05:48:30.195Z", + "new_balance":"3853.77", + "value":"-13.10" + } + }, + { + "id":"2cc1d86c-81b4-4c61-b0e1-8c9900fd1f5e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T10:40:51.711Z", + "completed":"2016-12-01T10:40:51.711Z", + "new_balance":"3576.29", + "value":"-277.48" + } + }, + { + "id":"cb52875c-6e86-48cc-b3ce-7e97912b44bd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T11:13:22.631Z", + "completed":"2016-12-01T11:13:22.631Z", + "new_balance":"3279.69", + "value":"-296.60" + } + }, + { + "id":"187efff7-4cde-4438-98ee-e3a07e19dba1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T06:10:23.589Z", + "completed":"2016-12-04T06:10:23.589Z", + "new_balance":"3274.54", + "value":"-5.15" + } + }, + { + "id":"f1df9b3f-b50e-41b3-ac09-a247ffc8f47f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:06:13.549Z", + "completed":"2016-12-04T21:06:13.549Z", + "new_balance":"3270.36", + "value":"-4.18" + } + }, + { + "id":"d926ab1f-f0eb-4d4e-8143-f91cf58c3b23", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T06:01:14.600Z", + "completed":"2016-12-05T06:01:14.600Z", + "new_balance":"3213.55", + "value":"-56.81" + } + }, + { + "id":"39cfaaf2-4f9c-49ad-9ee3-89974e2e9f7e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T23:05:58.650Z", + "completed":"2016-12-05T23:05:58.650Z", + "new_balance":"3190.31", + "value":"-23.24" + } + }, + { + "id":"b79c901a-863f-497b-bdc6-13382280499c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T01:53:39.333Z", + "completed":"2016-12-07T01:53:39.333Z", + "new_balance":"3281.27", + "value":"90.96" + } + }, + { + "id":"04ac6020-f38d-436b-8f86-dca76085e5ec", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T10:32:06.531Z", + "completed":"2016-12-07T10:32:06.531Z", + "new_balance":"3311.54", + "value":"30.27" + } + }, + { + "id":"1df08eba-e406-4fad-8f51-c30916637c2f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T12:59:46.244Z", + "completed":"2016-12-07T12:59:46.244Z", + "new_balance":"3472.35", + "value":"160.81" + } + }, + { + "id":"c0ce0555-a3d5-4440-a6e4-f8849ec139d4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T13:58:40.415Z", + "completed":"2016-12-07T13:58:40.415Z", + "new_balance":"3465.82", + "value":"-6.53" + } + }, + { + "id":"d1d395ae-7b23-4234-9629-afc50c708fe2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T08:59:57.073Z", + "completed":"2016-12-11T08:59:57.073Z", + "new_balance":"3460.34", + "value":"-5.48" + } + }, + { + "id":"c70de2b0-decb-4572-b776-b7e05c16a949", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T05:46:53.119Z", + "completed":"2016-12-14T05:46:53.119Z", + "new_balance":"3508.21", + "value":"47.87" + } + }, + { + "id":"40a1e1af-a3bf-4328-9c60-8727d9aa2d7d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T18:11:24.104Z", + "completed":"2016-12-14T18:11:24.104Z", + "new_balance":"3515.05", + "value":"6.84" + } + }, + { + "id":"36130575-bd44-4a25-8a74-2119a1b5df18", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:32:34.571Z", + "completed":"2016-12-14T21:32:34.571Z", + "new_balance":"3507.86", + "value":"-7.19" + } + }, + { + "id":"ff714bb9-273b-47bf-9b1d-702b863844cd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T12:30:33.311Z", + "completed":"2016-12-16T12:30:33.311Z", + "new_balance":"3457.64", + "value":"-50.22" + } + }, + { + "id":"120c99c2-51a7-4726-8959-18d832e6da69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T18:29:15.544Z", + "completed":"2016-12-16T18:29:15.544Z", + "new_balance":"3487.91", + "value":"30.27" + } + }, + { + "id":"da82badc-c058-4691-9105-8b7aea9c2cf1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T11:11:07.528Z", + "completed":"2016-12-21T11:11:07.528Z", + "new_balance":"3896.73", + "value":"408.82" + } + }, + { + "id":"b2857757-a759-4c45-a03a-f2503250f254", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T11:27:42.645Z", + "completed":"2016-12-21T11:27:42.645Z", + "new_balance":"3827.65", + "value":"-69.08" + } + }, + { + "id":"d0df0ce5-0b15-42e9-827d-dd33d3f70dec", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T14:09:37.962Z", + "completed":"2016-12-21T14:09:37.962Z", + "new_balance":"3988.46", + "value":"160.81" + } + }, + { + "id":"9f4c8bfd-747c-409b-8c3f-5d590451e3d6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T16:50:24.724Z", + "completed":"2016-12-21T16:50:24.724Z", + "new_balance":"4038.54", + "value":"50.08" + } + }, + { + "id":"4994f357-ad8b-477d-915d-aeae165fbf6a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T00:37:50.485Z", + "completed":"2016-12-30T00:37:50.485Z", + "new_balance":"4068.81", + "value":"30.27" + } + }, + { + "id":"27b64aa5-d65b-47b9-963e-e642d2984d93", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T20:57:38.791Z", + "completed":"2016-12-30T20:57:38.791Z", + "new_balance":"4089.70", + "value":"20.89" + } + }, + { + "id":"20919e88-a653-4daf-9134-1298c43478f0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T02:47:14.962Z", + "completed":"2017-03-01T02:47:14.962Z", + "new_balance":"4076.60", + "value":"-13.10" + } + }, + { + "id":"41c15799-3518-4e4e-9f88-2c07436b89d5", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T02:55:06.948Z", + "completed":"2017-03-01T02:55:06.948Z", + "new_balance":"3780.00", + "value":"-296.60" + } + }, + { + "id":"ff5847b3-d9d0-44ff-9e8e-3699c5ecddc9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T07:58:57.671Z", + "completed":"2017-03-01T07:58:57.671Z", + "new_balance":"3757.64", + "value":"-22.36" + } + }, + { + "id":"0f79d18b-9fdb-447f-a3f6-877abd8c8062", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T16:13:17.102Z", + "completed":"2017-03-01T16:13:17.102Z", + "new_balance":"3734.40", + "value":"-23.24" + } + }, + { + "id":"7c77149f-f148-459e-88c9-6bec9b1516d6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T17:02:45.414Z", + "completed":"2017-03-01T17:02:45.414Z", + "new_balance":"3677.59", + "value":"-56.81" + } + }, + { + "id":"9dc81083-1792-4822-be15-b4b2d3967a47", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T22:42:13.190Z", + "completed":"2017-03-01T22:42:13.190Z", + "new_balance":"3400.11", + "value":"-277.48" + } + }, + { + "id":"2e06b836-3447-49a1-88dc-a019a54eb8f6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T01:31:04.812Z", + "completed":"2017-03-12T01:31:04.812Z", + "new_balance":"3376.87", + "value":"-23.24" + } + }, + { + "id":"76354d34-da4d-4cd0-ac43-15f341e5872f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T08:55:06.509Z", + "completed":"2017-03-12T08:55:06.509Z", + "new_balance":"3372.69", + "value":"-4.18" + } + }, + { + "id":"4d6a1172-f5e5-4088-bed7-996ade442ec4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T08:55:37.336Z", + "completed":"2017-03-12T08:55:37.336Z", + "new_balance":"3367.54", + "value":"-5.15" + } + }, + { + "id":"380ee848-2300-4399-82e4-401f77d3f3d7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T21:48:49.530Z", + "completed":"2017-03-12T21:48:49.530Z", + "new_balance":"3310.73", + "value":"-56.81" + } + }, + { + "id":"2494dcf1-2e68-44e7-a159-d6b53ebb6376", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T00:32:47.263Z", + "completed":"2017-03-14T00:32:47.263Z", + "new_balance":"3471.54", + "value":"160.81" + } + }, + { + "id":"7f01bbaa-f736-4827-b3dd-7aa05ed60ab8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T10:39:42.221Z", + "completed":"2017-03-15T10:39:42.221Z", + "new_balance":"3501.81", + "value":"30.27" + } + }, + { + "id":"b9bb3f0b-2113-4770-bed2-c64b73693679", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T21:19:44.503Z", + "completed":"2017-03-16T21:19:44.503Z", + "new_balance":"3592.77", + "value":"90.96" + } + }, + { + "id":"80aca2f2-7de9-455d-a8c8-159e1302a48c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:24:57.065Z", + "completed":"2017-03-17T12:24:57.065Z", + "new_balance":"3587.29", + "value":"-5.48" + } + }, + { + "id":"0e9ea020-6429-45a5-b1aa-d301b5885f30", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T18:43:14.258Z", + "completed":"2017-03-17T18:43:14.258Z", + "new_balance":"3580.76", + "value":"-6.53" + } + }, + { + "id":"c3f934fc-8c21-425f-9c17-ac08088dd2ca", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T19:20:21.433Z", + "completed":"2017-03-19T19:20:21.433Z", + "new_balance":"3628.63", + "value":"47.87" + } + }, + { + "id":"a1a3d2d0-dafd-4f96-95f8-eaee50ef0aee", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T02:07:19.772Z", + "completed":"2017-03-21T02:07:19.772Z", + "new_balance":"3621.44", + "value":"-7.19" + } + }, + { + "id":"4506ba4b-190f-42fc-b434-d410804e483f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T23:36:47.906Z", + "completed":"2017-03-21T23:36:47.906Z", + "new_balance":"3628.28", + "value":"6.84" + } + }, + { + "id":"bb2424e2-ff45-4114-b581-409f876f50d2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T18:56:22.947Z", + "completed":"2017-03-24T18:56:22.947Z", + "new_balance":"3578.06", + "value":"-50.22" + } + }, + { + "id":"2ce8c3f8-e39b-4189-a0fc-392f46923f8f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T21:55:08.442Z", + "completed":"2017-03-24T21:55:08.442Z", + "new_balance":"3608.33", + "value":"30.27" + } + }, + { + "id":"f1cb0edf-335d-4c0f-b9aa-c983d85949ed", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T14:15:11.789Z", + "completed":"2017-03-25T14:15:11.789Z", + "new_balance":"3658.41", + "value":"50.08" + } + }, + { + "id":"8606bd1d-9192-4c5b-afad-c7ed2733d3a7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T17:36:47.146Z", + "completed":"2017-03-25T17:36:47.146Z", + "new_balance":"3589.33", + "value":"-69.08" + } + }, + { + "id":"3edee864-0191-4ebf-86aa-e94ea02ab454", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T00:08:30.096Z", + "completed":"2017-03-28T00:08:30.096Z", + "new_balance":"3998.15", + "value":"408.82" + } + }, + { + "id":"a612aecc-7410-425f-b291-af5cecb3729e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T00:12:57.306Z", + "completed":"2017-03-28T00:12:57.306Z", + "new_balance":"4158.96", + "value":"160.81" + } + }, + { + "id":"44e2e13e-e4e7-41bc-87b4-00fb8115d4f8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T04:12:49.370Z", + "completed":"2017-03-30T04:12:49.370Z", + "new_balance":"4179.85", + "value":"20.89" + } + }, + { + "id":"b2ade28a-33ee-457c-a91d-5a2f094eeb54", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T23:06:10.659Z", + "completed":"2017-03-30T23:06:10.659Z", + "new_balance":"4210.12", + "value":"30.27" + } + }, + { + "id":"312198e4-40af-4edf-965c-f4a4a819dd3b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T00:46:38.594Z", + "completed":"2017-06-01T00:46:38.594Z", + "new_balance":"4186.88", + "value":"-23.24" + } + }, + { + "id":"98d39e5a-5556-4a1c-8aa0-6d0eb92d884c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T01:05:59.909Z", + "completed":"2017-06-01T01:05:59.909Z", + "new_balance":"4164.52", + "value":"-22.36" + } + }, + { + "id":"af6333df-98ba-4e35-a131-a37dc9e2728c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T11:10:44.955Z", + "completed":"2017-06-01T11:10:44.955Z", + "new_balance":"4107.71", + "value":"-56.81" + } + }, + { + "id":"147ccfeb-e469-4edb-b179-f90a11cccd9d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T11:58:42.749Z", + "completed":"2017-06-01T11:58:42.749Z", + "new_balance":"3830.23", + "value":"-277.48" + } + }, + { + "id":"0bc36ca4-494a-4c10-83fc-d135102b838c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T15:16:30.728Z", + "completed":"2017-06-01T15:16:30.728Z", + "new_balance":"3533.63", + "value":"-296.60" + } + }, + { + "id":"5daa7394-f436-4e43-a087-a6bfe8672eff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T22:20:43.120Z", + "completed":"2017-06-01T22:20:43.120Z", + "new_balance":"3520.53", + "value":"-13.10" + } + }, + { + "id":"c647afdc-658c-4a4d-ad8e-eae466c511ab", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:58:23.851Z", + "completed":"2017-06-04T07:58:23.851Z", + "new_balance":"3515.38", + "value":"-5.15" + } + }, + { + "id":"e25aa3ea-7937-4a89-9d5f-95002f76c360", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:15:07.944Z", + "completed":"2017-06-04T19:15:07.944Z", + "new_balance":"3511.20", + "value":"-4.18" + } + }, + { + "id":"f25ed237-6dda-41f0-bd05-f9fa29a69811", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T00:04:11.205Z", + "completed":"2017-06-05T00:04:11.205Z", + "new_balance":"3487.96", + "value":"-23.24" + } + }, + { + "id":"db950591-736c-4163-86be-f33cc2894f44", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T19:09:48.160Z", + "completed":"2017-06-05T19:09:48.160Z", + "new_balance":"3431.15", + "value":"-56.81" + } + }, + { + "id":"ee2f41d9-2060-459d-8c46-98570b668a17", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T04:21:54.971Z", + "completed":"2017-06-07T04:21:54.971Z", + "new_balance":"3424.62", + "value":"-6.53" + } + }, + { + "id":"8eb25842-2f38-4dbb-b61b-0099d6709ba0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T07:20:40.209Z", + "completed":"2017-06-07T07:20:40.209Z", + "new_balance":"3585.43", + "value":"160.81" + } + }, + { + "id":"821ce9be-c89d-440d-8533-d8c789e68f9f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T10:59:32.996Z", + "completed":"2017-06-07T10:59:32.996Z", + "new_balance":"3615.70", + "value":"30.27" + } + }, + { + "id":"a7ab0895-8efc-4bd9-b447-1e9b40180ecc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T21:16:32.808Z", + "completed":"2017-06-07T21:16:32.808Z", + "new_balance":"3706.66", + "value":"90.96" + } + }, + { + "id":"4d452d13-9f33-4ce3-93f1-6b55d60233bf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T03:49:07.541Z", + "completed":"2017-06-11T03:49:07.541Z", + "new_balance":"3701.18", + "value":"-5.48" + } + }, + { + "id":"1a4d5d41-5329-4893-9301-6d8cb58b9876", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T02:38:22.885Z", + "completed":"2017-06-14T02:38:22.885Z", + "new_balance":"3749.05", + "value":"47.87" + } + }, + { + "id":"b1efa001-8a09-4d3e-95fc-d50316a5a0f2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T03:58:06.781Z", + "completed":"2017-06-14T03:58:06.781Z", + "new_balance":"3741.86", + "value":"-7.19" + } + }, + { + "id":"872ef453-00dd-4a35-9a7d-229e75005766", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T11:52:53.458Z", + "completed":"2017-06-14T11:52:53.458Z", + "new_balance":"3748.70", + "value":"6.84" + } + }, + { + "id":"2ea88bab-5a38-468b-b653-0a020592a0e9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T01:08:57.053Z", + "completed":"2017-06-16T01:08:57.053Z", + "new_balance":"3698.48", + "value":"-50.22" + } + }, + { + "id":"713d47c2-cd09-44ab-9096-fb24c4630a65", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T06:57:48.229Z", + "completed":"2017-06-16T06:57:48.229Z", + "new_balance":"3728.75", + "value":"30.27" + } + }, + { + "id":"3d509602-4039-4404-b8d4-82415a31562c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T06:57:16.615Z", + "completed":"2017-06-21T06:57:16.615Z", + "new_balance":"4137.57", + "value":"408.82" + } + }, + { + "id":"aab569e1-2a0f-47e2-a33b-9d4c50d82815", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T08:29:02.237Z", + "completed":"2017-06-21T08:29:02.237Z", + "new_balance":"4068.49", + "value":"-69.08" + } + }, + { + "id":"d670553e-a1e0-43cc-820d-0fce50304f8c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T15:24:36.745Z", + "completed":"2017-06-21T15:24:36.745Z", + "new_balance":"4118.57", + "value":"50.08" + } + }, + { + "id":"7d7a1cb7-03e8-4fa5-9e09-a515f0a6dd03", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T16:45:22.281Z", + "completed":"2017-06-21T16:45:22.281Z", + "new_balance":"4279.38", + "value":"160.81" + } + }, + { + "id":"1bf56e29-7b7b-4001-b64d-f53654ef2033", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T03:45:44.680Z", + "completed":"2017-06-30T03:45:44.680Z", + "new_balance":"4309.65", + "value":"30.27" + } + }, + { + "id":"3c1ba272-495d-4a4e-9f01-8b491db96e69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T17:49:58.379Z", + "completed":"2017-06-30T17:49:58.379Z", + "new_balance":"4330.54", + "value":"20.89" + } + }, + { + "id":"55d2deb0-0f19-4744-a62b-6b4842463e02", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T02:02:13.680Z", + "completed":"2017-09-01T02:02:13.680Z", + "new_balance":"4273.73", + "value":"-56.81" + } + }, + { + "id":"bbbeaa8c-56e5-46da-ae3d-b58a0e89ebff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:39:54.701Z", + "completed":"2017-09-01T05:39:54.701Z", + "new_balance":"4260.63", + "value":"-13.10" + } + }, + { + "id":"4b8af717-57dc-4f3c-aabe-0486698cf6aa", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T09:07:28.382Z", + "completed":"2017-09-01T09:07:28.382Z", + "new_balance":"4237.39", + "value":"-23.24" + } + }, + { + "id":"1b9c5c23-9df2-468a-9462-0ab920344e6a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T10:03:11.341Z", + "completed":"2017-09-01T10:03:11.341Z", + "new_balance":"4215.03", + "value":"-22.36" + } + }, + { + "id":"6385dec0-1b5a-44fd-8df4-d9573a35a7ff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T10:52:27.567Z", + "completed":"2017-09-01T10:52:27.567Z", + "new_balance":"3918.43", + "value":"-296.60" + } + }, + { + "id":"0d6d040f-ac6b-4eda-982e-68f03c4192d1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T12:38:28.965Z", + "completed":"2017-09-01T12:38:28.965Z", + "new_balance":"3640.95", + "value":"-277.48" + } + }, + { + "id":"be04f2fb-9bd0-4e03-afab-a56322f1196b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T06:25:55.753Z", + "completed":"2017-09-12T06:25:55.753Z", + "new_balance":"3617.71", + "value":"-23.24" + } + }, + { + "id":"65b21a63-bbf7-4499-a566-b90843346aa4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T06:29:18.845Z", + "completed":"2017-09-12T06:29:18.845Z", + "new_balance":"3613.53", + "value":"-4.18" + } + }, + { + "id":"837ef0ef-c906-4ee9-8bc8-195b8dc5cf10", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T16:00:48.229Z", + "completed":"2017-09-12T16:00:48.229Z", + "new_balance":"3608.38", + "value":"-5.15" + } + }, + { + "id":"9a940a76-0fce-4fff-b3c0-bd3938fc2279", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:54:20.118Z", + "completed":"2017-09-12T16:54:20.118Z", + "new_balance":"3551.57", + "value":"-56.81" + } + }, + { + "id":"645db0ab-a7b1-4013-91dd-bbd967711992", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T13:25:56.308Z", + "completed":"2017-09-15T13:25:56.308Z", + "new_balance":"3712.38", + "value":"160.81" + } + }, + { + "id":"4c8da840-6dd5-480a-8dba-1c4211c41cdc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T15:09:54.759Z", + "completed":"2017-09-15T15:09:54.759Z", + "new_balance":"3742.65", + "value":"30.27" + } + }, + { + "id":"f3d37ea5-e1d7-4d83-a404-e1bdcf7d2808", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T06:44:55.709Z", + "completed":"2017-09-17T06:44:55.709Z", + "new_balance":"3737.17", + "value":"-5.48" + } + }, + { + "id":"2f74936b-0515-4325-af38-14e05ea4819d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T11:59:40.802Z", + "completed":"2017-09-17T11:59:40.802Z", + "new_balance":"3730.64", + "value":"-6.53" + } + }, + { + "id":"f7bc3de7-8553-47cd-b847-5ad22cfee57a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T22:27:21.315Z", + "completed":"2017-09-17T22:27:21.315Z", + "new_balance":"3821.60", + "value":"90.96" + } + }, + { + "id":"7a6bca9e-9929-417c-b99c-faee3579904b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T21:20:17.170Z", + "completed":"2017-09-19T21:20:17.170Z", + "new_balance":"3869.47", + "value":"47.87" + } + }, + { + "id":"75f99a98-4a3e-4d57-8f67-1a07f2e61d4b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T10:51:11.454Z", + "completed":"2017-09-21T10:51:11.454Z", + "new_balance":"3862.28", + "value":"-7.19" + } + }, + { + "id":"2aca4185-63fd-4d91-81b1-8cc913ffb775", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:00:13.984Z", + "completed":"2017-09-21T14:00:13.984Z", + "new_balance":"3869.12", + "value":"6.84" + } + }, + { + "id":"bb3b5322-3ae8-4ed5-b6c9-2c79bab39a3f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T04:01:26.433Z", + "completed":"2017-09-24T04:01:26.433Z", + "new_balance":"3899.39", + "value":"30.27" + } + }, + { + "id":"7c3212b5-ffe9-4d92-bdad-5f377b077105", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T21:56:25.183Z", + "completed":"2017-09-24T21:56:25.183Z", + "new_balance":"3849.17", + "value":"-50.22" + } + }, + { + "id":"ed9486a6-fa7e-4065-9a73-b23882c65696", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T10:02:38.040Z", + "completed":"2017-09-25T10:02:38.040Z", + "new_balance":"3780.09", + "value":"-69.08" + } + }, + { + "id":"41094bc4-12cc-4987-9cc4-1be2e64ee51b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T10:26:17.366Z", + "completed":"2017-09-25T10:26:17.366Z", + "new_balance":"3830.17", + "value":"50.08" + } + }, + { + "id":"05185365-7a4e-48b7-9368-e0ae9ba686f5", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T05:59:27.393Z", + "completed":"2017-09-28T05:59:27.393Z", + "new_balance":"3990.98", + "value":"160.81" + } + }, + { + "id":"66cad4a9-b7a2-425d-9dbb-e9e63c712460", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T21:22:37.378Z", + "completed":"2017-09-28T21:22:37.378Z", + "new_balance":"4399.80", + "value":"408.82" + } + }, + { + "id":"ffe7ef8e-1553-4029-b0f3-8f7dd022b090", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T04:05:51.405Z", + "completed":"2017-09-30T04:05:51.405Z", + "new_balance":"4420.69", + "value":"20.89" + } + }, + { + "id":"e1d5a02a-ac22-4236-8b07-7d84ca5f3bfe", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T16:38:19.303Z", + "completed":"2017-09-30T16:38:19.303Z", + "new_balance":"4450.96", + "value":"30.27" + } + }, + { + "id":"daa9265d-a0b1-4cd0-ab8d-dbd3f36839f2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T02:31:53.758Z", + "completed":"2017-12-01T02:31:53.758Z", + "new_balance":"4428.60", + "value":"-22.36" + } + }, + { + "id":"88b95b52-08c3-4915-bdfa-44815a5dc48e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T03:25:09.280Z", + "completed":"2017-12-01T03:25:09.280Z", + "new_balance":"4151.12", + "value":"-277.48" + } + }, + { + "id":"8be69934-d13c-4337-b107-75c359e99b88", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:30:43.920Z", + "completed":"2017-12-01T07:30:43.920Z", + "new_balance":"4094.31", + "value":"-56.81" + } + }, + { + "id":"bacc55e2-3ccb-441e-8716-ee26da5b47e1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T10:32:15.482Z", + "completed":"2017-12-01T10:32:15.482Z", + "new_balance":"4071.07", + "value":"-23.24" + } + }, + { + "id":"9cfca4fd-41e8-4161-9cad-d0c393656aa3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T13:24:10.336Z", + "completed":"2017-12-01T13:24:10.336Z", + "new_balance":"4057.97", + "value":"-13.10" + } + }, + { + "id":"b3afdf3d-c681-45a5-bd69-54cbb3be20dc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T23:30:45.274Z", + "completed":"2017-12-01T23:30:45.274Z", + "new_balance":"3761.37", + "value":"-296.60" + } + }, + { + "id":"e3b99100-cebb-4c57-8423-2afda20ce4b4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T02:16:39.643Z", + "completed":"2017-12-04T02:16:39.643Z", + "new_balance":"3756.22", + "value":"-5.15" + } + }, + { + "id":"a42e793a-8c7d-4351-9aa4-789501303a3e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:03:19.929Z", + "completed":"2017-12-04T10:03:19.929Z", + "new_balance":"3752.04", + "value":"-4.18" + } + }, + { + "id":"b7e5ffbc-5f5e-4afc-b1f4-217c8cae15d9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T04:27:30.203Z", + "completed":"2017-12-05T04:27:30.203Z", + "new_balance":"3728.80", + "value":"-23.24" + } + }, + { + "id":"711a75db-5206-42f0-9772-0f156cbb4314", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T05:10:21.897Z", + "completed":"2017-12-05T05:10:21.897Z", + "new_balance":"3671.99", + "value":"-56.81" + } + }, + { + "id":"08f889c4-eff3-4d5f-af5a-f6ffa401e5ea", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T01:02:00.220Z", + "completed":"2017-12-07T01:02:00.220Z", + "new_balance":"3762.95", + "value":"90.96" + } + }, + { + "id":"c13c6048-d9d0-49d3-99e3-a3ae6ebe6a42", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:41:05.087Z", + "completed":"2017-12-07T10:41:05.087Z", + "new_balance":"3923.76", + "value":"160.81" + } + }, + { + "id":"28c5e0de-05fb-43be-9351-588e2943a203", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T14:14:30.816Z", + "completed":"2017-12-07T14:14:30.816Z", + "new_balance":"3954.03", + "value":"30.27" + } + }, + { + "id":"d9d792d3-d32f-40a5-9b0d-79fb31d4e997", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:47:26.632Z", + "completed":"2017-12-07T21:47:26.632Z", + "new_balance":"3947.50", + "value":"-6.53" + } + }, + { + "id":"6fd21a7b-c7e5-4cc7-84cb-2c25ae339fad", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T11:43:56.565Z", + "completed":"2017-12-11T11:43:56.565Z", + "new_balance":"3942.02", + "value":"-5.48" + } + }, + { + "id":"f931a4a7-ebbb-45b1-8bdf-42c35c5cea4b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T10:12:45.170Z", + "completed":"2017-12-14T10:12:45.170Z", + "new_balance":"3989.89", + "value":"47.87" + } + }, + { + "id":"ab53fe31-33f4-41d3-bb9c-7bbfed569a5c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T13:05:01.407Z", + "completed":"2017-12-14T13:05:01.407Z", + "new_balance":"3996.73", + "value":"6.84" + } + }, + { + "id":"96b08944-b5cd-4da8-a808-31c8b79f9b33", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:17:38.010Z", + "completed":"2017-12-14T19:17:38.010Z", + "new_balance":"3989.54", + "value":"-7.19" + } + }, + { + "id":"1b51996b-4ccc-47af-a392-e4f981eaf97d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T02:04:21.791Z", + "completed":"2017-12-16T02:04:21.791Z", + "new_balance":"3939.32", + "value":"-50.22" + } + }, + { + "id":"9f47e559-fe6f-486a-b681-2a29c76b9e5b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T14:26:56.925Z", + "completed":"2017-12-16T14:26:56.925Z", + "new_balance":"3969.59", + "value":"30.27" + } + }, + { + "id":"fa46bca7-925e-4732-be51-a84ff99a213f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T04:15:41.450Z", + "completed":"2017-12-21T04:15:41.450Z", + "new_balance":"3900.51", + "value":"-69.08" + } + }, + { + "id":"3a55b564-b509-4d35-b612-7973ca4a3e6b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T05:37:30.673Z", + "completed":"2017-12-21T05:37:30.673Z", + "new_balance":"3950.59", + "value":"50.08" + } + }, + { + "id":"ce770786-a5a7-4de8-a2c9-be19c4be3423", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T06:40:33.410Z", + "completed":"2017-12-21T06:40:33.410Z", + "new_balance":"4111.40", + "value":"160.81" + } + }, + { + "id":"b0bf4a7d-4007-4af9-921c-2ce3154379cf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T22:58:05.224Z", + "completed":"2017-12-21T22:58:05.224Z", + "new_balance":"4520.22", + "value":"408.82" + } + }, + { + "id":"46f743a7-9c8e-45c2-85e8-862728532833", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T16:39:52.866Z", + "completed":"2017-12-30T16:39:52.866Z", + "new_balance":"4541.11", + "value":"20.89" + } + }, + { + "id":"270a89f2-8564-428c-946d-3c1c0c5837b8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T21:04:02.455Z", + "completed":"2017-12-30T21:04:02.455Z", + "new_balance":"4571.38", + "value":"30.27" + } + }, + { + "id":"e313008a-aa7a-453a-9f8b-2732b515e614", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T01:33:54.831Z", + "completed":"2016-03-01T01:33:54.831Z", + "new_balance":"5641.40", + "value":"-4.61" + } + }, + { + "id":"340f649e-bd34-4ba8-af39-f5ef62d1cc46", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T12:43:49.457Z", + "completed":"2016-03-02T12:43:49.457Z", + "new_balance":"5634.21", + "value":"-7.19" + } + }, + { + "id":"42fea56d-ec86-427b-a036-84fa8d4754f5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T02:42:36.568Z", + "completed":"2016-03-06T02:42:36.568Z", + "new_balance":"5627.68", + "value":"-6.53" + } + }, + { + "id":"dac11108-995a-4d35-ba61-a4018e8940b1", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T11:45:06.851Z", + "completed":"2016-03-11T11:45:06.851Z", + "new_balance":"5627.03", + "value":"-0.65" + } + }, + { + "id":"d77607f6-4500-4f9d-b7f9-260b206179dd", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T14:16:34.494Z", + "completed":"2016-03-13T14:16:34.494Z", + "new_balance":"5626.69", + "value":"-0.34" + } + }, + { + "id":"3821cdc0-fc92-4542-98e7-30d5c6814904", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T13:19:21.453Z", + "completed":"2016-03-16T13:19:21.453Z", + "new_balance":"5603.45", + "value":"-23.24" + } + }, + { + "id":"4eced185-1224-4bce-bd2f-8640d4d3f6f4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T08:15:51.341Z", + "completed":"2016-03-17T08:15:51.341Z", + "new_balance":"5599.18", + "value":"-4.27" + } + }, + { + "id":"6a52cf54-528b-4d69-b16c-dd346ed232c3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T12:34:27.727Z", + "completed":"2016-03-17T12:34:27.727Z", + "new_balance":"5586.08", + "value":"-13.10" + } + }, + { + "id":"25942afe-0470-447d-a57a-6665427f3468", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T20:59:36.847Z", + "completed":"2016-03-19T20:59:36.847Z", + "new_balance":"5585.74", + "value":"-0.34" + } + }, + { + "id":"daf4fabc-c0f1-4ff7-ba87-c53e04367bdd", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T18:40:32.400Z", + "completed":"2016-03-21T18:40:32.400Z", + "new_balance":"5583.42", + "value":"-2.32" + } + }, + { + "id":"5797fa38-f54c-4388-9433-99ecf22573bf", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T11:25:43.758Z", + "completed":"2016-03-23T11:25:43.758Z", + "new_balance":"5578.81", + "value":"-4.61" + } + }, + { + "id":"3d8568fa-cd54-4763-b3f1-0f6efe873ad7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T09:09:48.516Z", + "completed":"2016-03-24T09:09:48.516Z", + "new_balance":"5578.16", + "value":"-0.65" + } + }, + { + "id":"686cdd29-0d8c-4d6f-8e80-6d1a22bd08cb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T23:42:47.916Z", + "completed":"2016-03-26T23:42:47.916Z", + "new_balance":"5577.01", + "value":"-1.15" + } + }, + { + "id":"cdad70e7-00e3-41ba-a329-a2e28038a185", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T10:14:16.486Z", + "completed":"2016-04-01T10:14:16.486Z", + "new_balance":"5575.86", + "value":"-1.15" + } + }, + { + "id":"e37950fa-00f3-4292-a8ae-5da50b8d1c00", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T16:16:18.461Z", + "completed":"2016-06-01T16:16:18.461Z", + "new_balance":"5571.25", + "value":"-4.61" + } + }, + { + "id":"20ba1f5f-b026-4c7d-8cd5-47e2f5df7178", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T16:08:38.327Z", + "completed":"2016-06-04T16:08:38.327Z", + "new_balance":"5564.06", + "value":"-7.19" + } + }, + { + "id":"ef512001-2cab-4bf3-948e-2b24cc2b1fd4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T21:53:02.940Z", + "completed":"2016-06-19T21:53:02.940Z", + "new_balance":"5557.53", + "value":"-6.53" + } + }, + { + "id":"a09b709c-5ce1-4914-b98c-030ccd185ee5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T12:46:03.025Z", + "completed":"2016-06-21T12:46:03.025Z", + "new_balance":"5556.88", + "value":"-0.65" + } + }, + { + "id":"12ea88d3-39ac-4a0b-b7db-ab8b2c434d96", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T22:43:17.850Z", + "completed":"2016-06-24T22:43:17.850Z", + "new_balance":"5556.54", + "value":"-0.34" + } + }, + { + "id":"2f9e38a2-a5ea-4813-9490-d05fb4985c0f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T06:59:04.862Z", + "completed":"2016-06-28T06:59:04.862Z", + "new_balance":"5552.27", + "value":"-4.27" + } + }, + { + "id":"878223a2-2d01-40ea-87d6-7fb64174cb19", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T08:04:36.888Z", + "completed":"2016-06-28T08:04:36.888Z", + "new_balance":"5539.17", + "value":"-13.10" + } + }, + { + "id":"669d7192-5e32-49ba-a7c0-bb54b93636d0", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T22:39:04.962Z", + "completed":"2016-06-28T22:39:04.962Z", + "new_balance":"5515.93", + "value":"-23.24" + } + }, + { + "id":"271cdf07-17d7-4edc-a416-d0fdc4f16eac", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T03:06:32.890Z", + "completed":"2016-06-29T03:06:32.890Z", + "new_balance":"5515.59", + "value":"-0.34" + } + }, + { + "id":"b58b5aca-140e-4fde-accc-c7d98ca17511", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T09:35:04.349Z", + "completed":"2016-06-30T09:35:04.349Z", + "new_balance":"5510.98", + "value":"-4.61" + } + }, + { + "id":"517fce1b-da0b-41bc-8b7f-ec4450621e07", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T12:39:27.515Z", + "completed":"2016-06-30T12:39:27.515Z", + "new_balance":"5508.66", + "value":"-2.32" + } + }, + { + "id":"6d7da8f5-aec9-4e60-ac33-b5a14cb252d5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T22:26:41.739Z", + "completed":"2016-06-30T22:26:41.739Z", + "new_balance":"5508.01", + "value":"-0.65" + } + }, + { + "id":"56e768fc-260e-4d08-a6b6-990287531c8b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T01:23:17.359Z", + "completed":"2016-09-01T01:23:17.359Z", + "new_balance":"5506.16", + "value":"-1.85" + } + }, + { + "id":"deb3410f-a8dd-412d-a1fe-f54856d8ef3a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T12:14:34.144Z", + "completed":"2016-09-02T12:14:34.144Z", + "new_balance":"5498.97", + "value":"-7.19" + } + }, + { + "id":"e7f9730a-d5a5-4f42-b2b4-61b86502328c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T07:06:03.179Z", + "completed":"2016-09-07T07:06:03.179Z", + "new_balance":"5492.44", + "value":"-6.53" + } + }, + { + "id":"8ee7545f-09ac-498b-8fd9-42f8b1bef19f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T07:23:03.727Z", + "completed":"2016-09-11T07:23:03.727Z", + "new_balance":"5491.79", + "value":"-0.65" + } + }, + { + "id":"ea25ac49-d516-4314-ac5f-e3c842c84906", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T01:33:46.175Z", + "completed":"2016-09-15T01:33:46.175Z", + "new_balance":"5490.39", + "value":"-1.40" + } + }, + { + "id":"a803dc26-8caf-42b0-ae97-9c571456330e", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T01:46:05.524Z", + "completed":"2016-09-17T01:46:05.524Z", + "new_balance":"5467.15", + "value":"-23.24" + } + }, + { + "id":"b214d44b-810b-4d93-85db-22127dd774df", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T11:14:52.479Z", + "completed":"2016-09-17T11:14:52.479Z", + "new_balance":"5462.88", + "value":"-4.27" + } + }, + { + "id":"f41eb145-587c-407b-b0d5-134e52fbe328", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T23:19:29.393Z", + "completed":"2016-09-17T23:19:29.393Z", + "new_balance":"5449.78", + "value":"-13.10" + } + }, + { + "id":"d4ef14e3-1afb-4838-b19d-88cb0aaa3de9", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T13:53:30.082Z", + "completed":"2016-09-19T13:53:30.082Z", + "new_balance":"5449.44", + "value":"-0.34" + } + }, + { + "id":"8636610c-1bb7-45bb-9e2a-2664b970da1d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T23:53:32.419Z", + "completed":"2016-09-21T23:53:32.419Z", + "new_balance":"5447.12", + "value":"-2.32" + } + }, + { + "id":"17e52cf4-6ad4-408a-92dd-5d733e97808a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T22:14:31.205Z", + "completed":"2016-09-23T22:14:31.205Z", + "new_balance":"5442.51", + "value":"-4.61" + } + }, + { + "id":"43f62060-d935-4926-b383-c224be105337", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T04:34:45.488Z", + "completed":"2016-09-24T04:34:45.488Z", + "new_balance":"5441.86", + "value":"-0.65" + } + }, + { + "id":"424af69f-3a78-4663-9da4-65f5d2578e50", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T01:40:26.738Z", + "completed":"2016-09-27T01:40:26.738Z", + "new_balance":"5440.71", + "value":"-1.15" + } + }, + { + "id":"39da9b74-1cbd-43e2-b5cc-5855be5c6205", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T19:56:35.269Z", + "completed":"2016-10-01T19:56:35.269Z", + "new_balance":"5439.56", + "value":"-1.15" + } + }, + { + "id":"e24ebeea-c6e4-46b4-9a9f-f3599b850c5a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T02:40:24.410Z", + "completed":"2016-12-01T02:40:24.410Z", + "new_balance":"5434.95", + "value":"-4.61" + } + }, + { + "id":"cf897364-338f-41c7-881c-a765ea911344", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T03:29:45.039Z", + "completed":"2016-12-04T03:29:45.039Z", + "new_balance":"5427.76", + "value":"-7.19" + } + }, + { + "id":"a5d452a8-9cad-40f5-9632-cda77a3f253b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T12:02:00.360Z", + "completed":"2016-12-19T12:02:00.360Z", + "new_balance":"5421.23", + "value":"-6.53" + } + }, + { + "id":"23ce88fa-a919-48eb-8bc7-4f6c9cf904d8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T06:44:44.678Z", + "completed":"2016-12-24T06:44:44.678Z", + "new_balance":"5420.89", + "value":"-0.34" + } + }, + { + "id":"3135995b-6344-4f8f-9709-547b37701e37", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T12:23:21.547Z", + "completed":"2016-12-24T12:23:21.547Z", + "new_balance":"5420.24", + "value":"-0.65" + } + }, + { + "id":"32225484-7e36-48a3-8985-c3d3a9a9b8c8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T01:40:09.513Z", + "completed":"2016-12-28T01:40:09.513Z", + "new_balance":"5397.00", + "value":"-23.24" + } + }, + { + "id":"fd746c04-2ad4-4519-b61c-7c334b690172", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T06:05:51.378Z", + "completed":"2016-12-28T06:05:51.378Z", + "new_balance":"5383.90", + "value":"-13.10" + } + }, + { + "id":"f23c76c0-55c7-4326-82da-ff1e044c2665", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T13:53:31.654Z", + "completed":"2016-12-28T13:53:31.654Z", + "new_balance":"5379.63", + "value":"-4.27" + } + }, + { + "id":"3edcc225-50ed-47ec-b904-88b5bf6ef139", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T02:26:12.434Z", + "completed":"2016-12-29T02:26:12.434Z", + "new_balance":"5379.29", + "value":"-0.34" + } + }, + { + "id":"71bc9c62-3bcb-4f3f-94e4-bed0c2302127", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T06:59:23.168Z", + "completed":"2016-12-30T06:59:23.168Z", + "new_balance":"5374.68", + "value":"-4.61" + } + }, + { + "id":"09881a11-f6ae-4132-8b47-0981769ca840", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T09:57:13.060Z", + "completed":"2016-12-30T09:57:13.060Z", + "new_balance":"5374.03", + "value":"-0.65" + } + }, + { + "id":"5dc5b1af-4a07-4492-9dc7-bded250f5a87", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T15:48:18.900Z", + "completed":"2016-12-30T15:48:18.900Z", + "new_balance":"5371.71", + "value":"-2.32" + } + }, + { + "id":"2f4dde83-d219-4859-8860-9b9cfc09929c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T06:49:57.009Z", + "completed":"2017-03-01T06:49:57.009Z", + "new_balance":"5367.10", + "value":"-4.61" + } + }, + { + "id":"78d6859e-fc23-4c3d-a79b-debcea99f533", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T01:35:33.611Z", + "completed":"2017-03-02T01:35:33.611Z", + "new_balance":"5359.91", + "value":"-7.19" + } + }, + { + "id":"1fd05b19-7ee1-44ec-b47f-3e6f343d2a86", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T16:47:09.337Z", + "completed":"2017-03-06T16:47:09.337Z", + "new_balance":"5353.38", + "value":"-6.53" + } + }, + { + "id":"60840545-1828-4530-bc4c-9d2d7e143ded", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T22:11:43.509Z", + "completed":"2017-03-11T22:11:43.509Z", + "new_balance":"5352.73", + "value":"-0.65" + } + }, + { + "id":"aa6af343-47dd-461a-afc9-543b3c805202", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T06:32:03.629Z", + "completed":"2017-03-13T06:32:03.629Z", + "new_balance":"5352.39", + "value":"-0.34" + } + }, + { + "id":"ae4e8be3-46fe-4e99-aea4-027fa23a9ab7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T16:52:26.149Z", + "completed":"2017-03-16T16:52:26.149Z", + "new_balance":"5329.15", + "value":"-23.24" + } + }, + { + "id":"f59cd970-c6b9-4830-bf38-0708db638ceb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T02:58:27.703Z", + "completed":"2017-03-17T02:58:27.703Z", + "new_balance":"5316.05", + "value":"-13.10" + } + }, + { + "id":"ba53c199-7ba7-47c2-b831-49f2f057d474", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T04:22:06.652Z", + "completed":"2017-03-17T04:22:06.652Z", + "new_balance":"5311.78", + "value":"-4.27" + } + }, + { + "id":"e1bf92cb-bc41-4fed-bea4-0058b35b2a0d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T04:00:57.813Z", + "completed":"2017-03-19T04:00:57.813Z", + "new_balance":"5311.44", + "value":"-0.34" + } + }, + { + "id":"f90a0927-eb5a-466a-82c9-52e3612b6b78", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T20:07:34.461Z", + "completed":"2017-03-21T20:07:34.461Z", + "new_balance":"5309.12", + "value":"-2.32" + } + }, + { + "id":"8bb7f1d8-5f5b-447b-b5df-d533c42a9216", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T16:00:12.687Z", + "completed":"2017-03-23T16:00:12.687Z", + "new_balance":"5304.51", + "value":"-4.61" + } + }, + { + "id":"cefc2fed-b062-4331-a620-9d7524973fd8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T19:22:24.752Z", + "completed":"2017-03-24T19:22:24.752Z", + "new_balance":"5303.86", + "value":"-0.65" + } + }, + { + "id":"d549cfcc-61d3-4abf-b733-7a20d95c3a0c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T18:19:34.504Z", + "completed":"2017-03-26T18:19:34.504Z", + "new_balance":"5302.71", + "value":"-1.15" + } + }, + { + "id":"b231cc8d-ea97-4414-9451-48b970f1f885", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T00:56:45.419Z", + "completed":"2017-04-01T00:56:45.419Z", + "new_balance":"5301.56", + "value":"-1.15" + } + }, + { + "id":"7edf8d34-9545-4489-b14c-04b6d9caddbe", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T01:46:42.970Z", + "completed":"2017-06-01T01:46:42.970Z", + "new_balance":"5296.95", + "value":"-4.61" + } + }, + { + "id":"171702a7-35e7-46be-8e1e-aea49ce06ef8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T19:37:57.512Z", + "completed":"2017-06-04T19:37:57.512Z", + "new_balance":"5289.76", + "value":"-7.19" + } + }, + { + "id":"1cd87043-426d-4648-a016-574e373cbca4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T17:58:09.128Z", + "completed":"2017-06-19T17:58:09.128Z", + "new_balance":"5283.23", + "value":"-6.53" + } + }, + { + "id":"bc87b8b7-0bc3-495b-b167-1687bcbbdb06", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T15:12:03.451Z", + "completed":"2017-06-21T15:12:03.451Z", + "new_balance":"5282.58", + "value":"-0.65" + } + }, + { + "id":"5501238f-0179-46f4-b43d-30001645c231", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T18:47:52.488Z", + "completed":"2017-06-24T18:47:52.488Z", + "new_balance":"5282.24", + "value":"-0.34" + } + }, + { + "id":"bddc711c-2eed-405e-807e-81a08e8be3ea", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T04:14:04.169Z", + "completed":"2017-06-28T04:14:04.169Z", + "new_balance":"5277.97", + "value":"-4.27" + } + }, + { + "id":"9f204422-0725-4a92-a63e-28b4cc3ab46c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T05:51:14.922Z", + "completed":"2017-06-28T05:51:14.922Z", + "new_balance":"5264.87", + "value":"-13.10" + } + }, + { + "id":"2b10395e-2ee4-4375-9725-51a303edc9a6", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T06:14:59.774Z", + "completed":"2017-06-28T06:14:59.774Z", + "new_balance":"5241.63", + "value":"-23.24" + } + }, + { + "id":"606c1e29-d2d9-4ec4-a36b-8f32f7d78194", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T06:31:35.268Z", + "completed":"2017-06-29T06:31:35.268Z", + "new_balance":"5241.29", + "value":"-0.34" + } + }, + { + "id":"6910f444-b4e9-460c-9476-ccf5199c40a5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T05:17:44.335Z", + "completed":"2017-06-30T05:17:44.335Z", + "new_balance":"5240.64", + "value":"-0.65" + } + }, + { + "id":"f2a59c5c-94f4-48aa-a627-a335951eafde", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T15:49:26.024Z", + "completed":"2017-06-30T15:49:26.024Z", + "new_balance":"5238.32", + "value":"-2.32" + } + }, + { + "id":"36766d2e-501b-49b4-8629-0063b560dd73", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T19:14:51.024Z", + "completed":"2017-06-30T19:14:51.024Z", + "new_balance":"5233.71", + "value":"-4.61" + } + }, + { + "id":"6d83a136-e70c-4a7f-9656-26076812a353", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T11:01:02.956Z", + "completed":"2017-09-01T11:01:02.956Z", + "new_balance":"5231.86", + "value":"-1.85" + } + }, + { + "id":"08c4814a-943d-454e-9da9-4780e95a902d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T07:54:31.031Z", + "completed":"2017-09-02T07:54:31.031Z", + "new_balance":"5224.67", + "value":"-7.19" + } + }, + { + "id":"61aaa258-974f-407c-b006-723076be29f7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T01:38:57.197Z", + "completed":"2017-09-07T01:38:57.197Z", + "new_balance":"5218.14", + "value":"-6.53" + } + }, + { + "id":"531e0b89-f96c-476d-8658-9f7d3e1e76a8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T01:13:19.104Z", + "completed":"2017-09-11T01:13:19.104Z", + "new_balance":"5217.49", + "value":"-0.65" + } + }, + { + "id":"463d9f9b-e9b5-455c-b91c-c3d8c5bf43d3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T06:36:42.986Z", + "completed":"2017-09-15T06:36:42.986Z", + "new_balance":"5216.09", + "value":"-1.40" + } + }, + { + "id":"8e9025bb-9412-4b6e-b784-e1e6f7ce9925", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T02:17:23.003Z", + "completed":"2017-09-17T02:17:23.003Z", + "new_balance":"5211.82", + "value":"-4.27" + } + }, + { + "id":"f569a92e-52ac-4326-90b7-56d07fb734be", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T06:28:50.511Z", + "completed":"2017-09-17T06:28:50.511Z", + "new_balance":"5198.72", + "value":"-13.10" + } + }, + { + "id":"6ebece39-4fe1-415b-ab59-be90731d80b5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T10:33:18.830Z", + "completed":"2017-09-17T10:33:18.830Z", + "new_balance":"5175.48", + "value":"-23.24" + } + }, + { + "id":"1529a73a-d8ad-46ff-865d-860fc3b2c6ba", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T09:31:13.788Z", + "completed":"2017-09-19T09:31:13.788Z", + "new_balance":"5175.14", + "value":"-0.34" + } + }, + { + "id":"2feb7869-8e8a-4477-bcf5-b34247d05d1c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T03:06:00.658Z", + "completed":"2017-09-21T03:06:00.658Z", + "new_balance":"5172.82", + "value":"-2.32" + } + }, + { + "id":"99aeaa93-39e6-4295-8c35-0e19263a340e", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T10:48:33.372Z", + "completed":"2017-09-23T10:48:33.372Z", + "new_balance":"5168.21", + "value":"-4.61" + } + }, + { + "id":"61d432f4-847b-41ce-98b2-855cdddfcda3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T13:35:24.824Z", + "completed":"2017-09-24T13:35:24.824Z", + "new_balance":"5167.56", + "value":"-0.65" + } + }, + { + "id":"761e0fc7-7632-4875-963e-e00eb7635448", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:37:53.272Z", + "completed":"2017-09-27T21:37:53.272Z", + "new_balance":"5166.41", + "value":"-1.15" + } + }, + { + "id":"ec63c150-b2a5-4e88-b971-2773a8902131", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T21:13:36.126Z", + "completed":"2017-10-01T21:13:36.126Z", + "new_balance":"5165.26", + "value":"-1.15" + } + }, + { + "id":"51b9c7d0-1b66-4313-a517-a8d4a2aa3e17", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T06:18:31.340Z", + "completed":"2017-12-01T06:18:31.340Z", + "new_balance":"5160.65", + "value":"-4.61" + } + }, + { + "id":"ae3719ca-8369-4b5e-aec8-9064d567e791", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T17:36:43.454Z", + "completed":"2017-12-04T17:36:43.454Z", + "new_balance":"5153.46", + "value":"-7.19" + } + }, + { + "id":"0151f947-6a45-4b28-b0c1-d513ecf7b955", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:19:49.471Z", + "completed":"2017-12-19T10:19:49.471Z", + "new_balance":"5146.93", + "value":"-6.53" + } + }, + { + "id":"dec22126-0ad7-4a6e-9148-f0b661eff4cc", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T01:36:27.383Z", + "completed":"2017-12-24T01:36:27.383Z", + "new_balance":"5146.59", + "value":"-0.34" + } + }, + { + "id":"ebadb793-4731-4956-8b5c-024589b46edb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T23:58:25.516Z", + "completed":"2017-12-24T23:58:25.516Z", + "new_balance":"5145.94", + "value":"-0.65" + } + }, + { + "id":"613e1ef8-b830-4d49-8e43-540185837cd2", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T04:04:32.242Z", + "completed":"2017-12-28T04:04:32.242Z", + "new_balance":"5122.70", + "value":"-23.24" + } + }, + { + "id":"e29fd47b-4024-4e21-83fa-cb7548b905f3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T17:22:56.100Z", + "completed":"2017-12-28T17:22:56.100Z", + "new_balance":"5109.60", + "value":"-13.10" + } + }, + { + "id":"02b12587-843f-4caa-8b81-07319412a46f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T22:39:36.407Z", + "completed":"2017-12-28T22:39:36.407Z", + "new_balance":"5105.33", + "value":"-4.27" + } + }, + { + "id":"304d398e-c5d1-478c-a790-bc917a2e1ed7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T14:08:42.713Z", + "completed":"2017-12-29T14:08:42.713Z", + "new_balance":"5104.99", + "value":"-0.34" + } + }, + { + "id":"01431f90-a831-46d9-bf52-ee71b3c0dac6", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T00:16:15.155Z", + "completed":"2017-12-30T00:16:15.155Z", + "new_balance":"5100.38", + "value":"-4.61" + } + }, + { + "id":"53c862c3-4e66-46bf-9f95-6d38b2217f9b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T05:11:21.279Z", + "completed":"2017-12-30T05:11:21.279Z", + "new_balance":"5098.06", + "value":"-2.32" + } + }, + { + "id":"7f2494d9-d7cf-43b2-a2aa-b60c3671e9e7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T10:07:09.543Z", + "completed":"2017-12-30T10:07:09.543Z", + "new_balance":"5097.41", + "value":"-0.65" + } + }, + { + "id":"f9a55fc2-3e09-4269-a80a-96b506aa33c6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T03:06:45.017Z", + "completed":"2016-03-01T03:06:45.017Z", + "new_balance":"6871.54", + "value":"-317.21" + } + }, + { + "id":"46b6b150-2234-4e9e-bc62-24fe9e32df58", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T04:05:35.267Z", + "completed":"2016-03-01T04:05:35.267Z", + "new_balance":"6673.63", + "value":"-197.91" + } + }, + { + "id":"9ad11c8e-2ed8-40c1-a6a9-2f508a0633f2", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T05:12:12.675Z", + "completed":"2016-03-01T05:12:12.675Z", + "new_balance":"4042.42", + "value":"-2631.21" + } + }, + { + "id":"4717b1d3-f04c-4780-b227-b756e281c9ee", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T19:46:27.595Z", + "completed":"2016-03-01T19:46:27.595Z", + "new_balance":"3878.94", + "value":"-163.48" + } + }, + { + "id":"35ab2cba-8135-4912-81bb-0273bb963e9a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T22:18:25.179Z", + "completed":"2016-03-01T22:18:25.179Z", + "new_balance":"185.17", + "value":"-3693.77" + } + }, + { + "id":"ea98e92a-1f5c-4365-9584-77430a72e2d9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T22:58:47.270Z", + "completed":"2016-03-01T22:58:47.270Z", + "new_balance":"-546.68", + "value":"-731.85" + } + }, + { + "id":"3f7ee0be-cc9e-44ee-a827-8719031f4f5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T02:28:44.542Z", + "completed":"2016-03-12T02:28:44.542Z", + "new_balance":"-1278.53", + "value":"-731.85" + } + }, + { + "id":"07c5f5fe-1f86-427e-9c9a-1844d88b63c7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T09:33:59.461Z", + "completed":"2016-03-12T09:33:59.461Z", + "new_balance":"-1325.43", + "value":"-46.90" + } + }, + { + "id":"92f14620-8391-40dd-9c2b-e7102534039d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T14:58:51.899Z", + "completed":"2016-03-12T14:58:51.899Z", + "new_balance":"-1642.64", + "value":"-317.21" + } + }, + { + "id":"b5ed4c84-65cb-4349-a5b1-214218bebb8f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T18:36:37.398Z", + "completed":"2016-03-12T18:36:37.398Z", + "new_balance":"-1695.82", + "value":"-53.18" + } + }, + { + "id":"4e5eac22-a649-46c9-ae8f-eaa11d5c4569", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T01:20:44.609Z", + "completed":"2016-03-14T01:20:44.609Z", + "new_balance":"195.50", + "value":"1891.32" + } + }, + { + "id":"5f759919-3b2c-4a1c-8b6e-02abb7545d7f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T06:36:33.221Z", + "completed":"2016-03-15T06:36:33.221Z", + "new_balance":"422.89", + "value":"227.39" + } + }, + { + "id":"2cd93d52-663e-468f-b6d6-b1a4dc225f99", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T00:04:28.472Z", + "completed":"2016-03-16T00:04:28.472Z", + "new_balance":"1323.87", + "value":"900.98" + } + }, + { + "id":"ccbe13c6-ace3-4156-ab02-5d3696bc54a3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T02:42:24.448Z", + "completed":"2016-03-17T02:42:24.448Z", + "new_balance":"1272.77", + "value":"-51.10" + } + }, + { + "id":"fffd7d60-b724-4940-b99d-d899aa46a49d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:51:01.327Z", + "completed":"2016-03-17T12:51:01.327Z", + "new_balance":"1193.69", + "value":"-79.08" + } + }, + { + "id":"f798d84a-66aa-45c4-b7cc-140be808662b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T22:04:10.271Z", + "completed":"2016-03-19T22:04:10.271Z", + "new_balance":"1643.69", + "value":"450.00" + } + }, + { + "id":"d3e92458-f2e8-42b0-a3b7-a9344f427d30", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T10:04:36.988Z", + "completed":"2016-03-21T10:04:36.988Z", + "new_balance":"1569.76", + "value":"-73.93" + } + }, + { + "id":"38143be1-bcdf-49e0-bf2f-0c1c7ab0feda", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T20:00:35.700Z", + "completed":"2016-03-21T20:00:35.700Z", + "new_balance":"1631.01", + "value":"61.25" + } + }, + { + "id":"aebf2662-7579-42dc-bd47-62c434752bd8", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:04:25.151Z", + "completed":"2016-03-24T01:04:25.151Z", + "new_balance":"1858.40", + "value":"227.39" + } + }, + { + "id":"3c84fb8b-7336-4168-9498-645d66afa679", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T14:16:51.033Z", + "completed":"2016-03-24T14:16:51.033Z", + "new_balance":"1331.84", + "value":"-526.56" + } + }, + { + "id":"1400c624-31a5-4545-bf38-a10f11894c7c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:32:07.166Z", + "completed":"2016-03-25T05:32:07.166Z", + "new_balance":"664.69", + "value":"-667.15" + } + }, + { + "id":"6ad60b55-7762-4507-8d97-a7a1533e6f64", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T09:10:56.505Z", + "completed":"2016-03-25T09:10:56.505Z", + "new_balance":"1118.34", + "value":"453.65" + } + }, + { + "id":"ab917bc8-4ad4-4f5b-80fb-20bc17cfe445", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T11:46:02.146Z", + "completed":"2016-03-28T11:46:02.146Z", + "new_balance":"3009.66", + "value":"1891.32" + } + }, + { + "id":"9a60b892-baaa-48b4-9cdb-9a0e8d0d81b9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T14:57:04.912Z", + "completed":"2016-03-28T14:57:04.912Z", + "new_balance":"6092.53", + "value":"3082.87" + } + }, + { + "id":"89576027-cdfc-47e8-9275-2fb16d93a6da", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T03:39:54.574Z", + "completed":"2016-03-30T03:39:54.574Z", + "new_balance":"6320.15", + "value":"227.62" + } + }, + { + "id":"154b6e69-ddd3-4457-8279-cb2970ee8eae", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T16:02:11.558Z", + "completed":"2016-03-30T16:02:11.558Z", + "new_balance":"6547.54", + "value":"227.39" + } + }, + { + "id":"6ef305c7-3b69-4a53-8880-65d89579bec7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T00:24:52.486Z", + "completed":"2016-06-01T00:24:52.486Z", + "new_balance":"6230.33", + "value":"-317.21" + } + }, + { + "id":"294ecc63-7dff-4068-b2e7-6e515377f8b6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T01:02:46.683Z", + "completed":"2016-06-01T01:02:46.683Z", + "new_balance":"6032.42", + "value":"-197.91" + } + }, + { + "id":"c81ae1e7-a7d5-446d-a36f-dc8273bfc7e1", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T07:57:49.098Z", + "completed":"2016-06-01T07:57:49.098Z", + "new_balance":"5868.94", + "value":"-163.48" + } + }, + { + "id":"332f640d-c071-43d5-9f04-bc6c44a0ee51", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T16:56:01.175Z", + "completed":"2016-06-01T16:56:01.175Z", + "new_balance":"3237.73", + "value":"-2631.21" + } + }, + { + "id":"a367e3f6-5deb-4c4c-8f54-3fb0c1f1a79d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T17:57:28.796Z", + "completed":"2016-06-01T17:57:28.796Z", + "new_balance":"-456.04", + "value":"-3693.77" + } + }, + { + "id":"b5c04f15-5ff3-4d2c-bcdc-2df1ef0cb941", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T22:23:19.133Z", + "completed":"2016-06-01T22:23:19.133Z", + "new_balance":"-1187.89", + "value":"-731.85" + } + }, + { + "id":"af31eca7-7719-4454-9789-7a1f8b421249", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:41:21.505Z", + "completed":"2016-06-04T01:41:21.505Z", + "new_balance":"-1241.07", + "value":"-53.18" + } + }, + { + "id":"adb5b19f-345f-456d-8b83-11f6d3e93662", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:50:22.824Z", + "completed":"2016-06-04T04:50:22.824Z", + "new_balance":"-1287.97", + "value":"-46.90" + } + }, + { + "id":"15212088-b8e3-4ca0-b411-b890ab0d5105", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T09:44:55.254Z", + "completed":"2016-06-05T09:44:55.254Z", + "new_balance":"-1605.18", + "value":"-317.21" + } + }, + { + "id":"2dd83170-4a01-4284-8c61-1ea9001d50ee", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T19:45:31.295Z", + "completed":"2016-06-05T19:45:31.295Z", + "new_balance":"-2337.03", + "value":"-731.85" + } + }, + { + "id":"d8a9bc02-136a-4e38-a640-b7162ceebb8d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T09:16:43.298Z", + "completed":"2016-06-07T09:16:43.298Z", + "new_balance":"-445.71", + "value":"1891.32" + } + }, + { + "id":"2616e105-ab0a-4220-a1f9-c616ae93275d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T13:36:20.168Z", + "completed":"2016-06-07T13:36:20.168Z", + "new_balance":"-218.32", + "value":"227.39" + } + }, + { + "id":"e94dd737-1464-425c-b323-61197c436660", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T16:10:35.544Z", + "completed":"2016-06-07T16:10:35.544Z", + "new_balance":"682.66", + "value":"900.98" + } + }, + { + "id":"52bbd0d8-67e5-4830-b964-2405ea5bffdd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T17:46:23.157Z", + "completed":"2016-06-07T17:46:23.157Z", + "new_balance":"631.56", + "value":"-51.10" + } + }, + { + "id":"7808f1e8-69e7-49e7-94bd-0654da95cf7a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T15:47:22.117Z", + "completed":"2016-06-11T15:47:22.117Z", + "new_balance":"552.48", + "value":"-79.08" + } + }, + { + "id":"c650722e-2fb3-42cd-9995-a1e0b4b4fd2a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T01:45:10.608Z", + "completed":"2016-06-14T01:45:10.608Z", + "new_balance":"1002.48", + "value":"450.00" + } + }, + { + "id":"5ff1d0c8-ded0-4153-b030-f94b5f9b53aa", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T08:11:47.829Z", + "completed":"2016-06-14T08:11:47.829Z", + "new_balance":"1063.73", + "value":"61.25" + } + }, + { + "id":"93fd321c-7db1-4b9c-91d2-beae29c3c786", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T12:49:39.148Z", + "completed":"2016-06-14T12:49:39.148Z", + "new_balance":"989.80", + "value":"-73.93" + } + }, + { + "id":"b3f338cb-96e8-4668-b225-74d3a0815899", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T12:24:49.589Z", + "completed":"2016-06-16T12:24:49.589Z", + "new_balance":"1217.19", + "value":"227.39" + } + }, + { + "id":"3a14f4e4-0d6c-4a56-8cc8-10b6b7b26da7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T15:45:36.018Z", + "completed":"2016-06-16T15:45:36.018Z", + "new_balance":"690.63", + "value":"-526.56" + } + }, + { + "id":"c0ab3f4b-4e14-40c9-938a-df96f08db404", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T01:27:29.207Z", + "completed":"2016-06-21T01:27:29.207Z", + "new_balance":"23.48", + "value":"-667.15" + } + }, + { + "id":"b6ff2ead-a268-48f4-9c59-974b32796816", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T11:03:16.593Z", + "completed":"2016-06-21T11:03:16.593Z", + "new_balance":"1914.80", + "value":"1891.32" + } + }, + { + "id":"af0e2cd4-f206-4a8b-9739-3a26ad871359", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T15:48:11.566Z", + "completed":"2016-06-21T15:48:11.566Z", + "new_balance":"4997.67", + "value":"3082.87" + } + }, + { + "id":"52b60e59-a1d0-447a-92e8-4601fda7fd84", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:55:10.685Z", + "completed":"2016-06-21T23:55:10.685Z", + "new_balance":"5451.32", + "value":"453.65" + } + }, + { + "id":"f3155648-7bf2-4a17-8f11-cdbec580c219", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T14:25:54.268Z", + "completed":"2016-06-30T14:25:54.268Z", + "new_balance":"5678.71", + "value":"227.39" + } + }, + { + "id":"13c66ed3-f985-4fd8-8884-162f5d26bb24", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T17:04:18.381Z", + "completed":"2016-06-30T17:04:18.381Z", + "new_balance":"5906.33", + "value":"227.62" + } + }, + { + "id":"655651fe-9fbb-4cb8-af4d-1912f19054f3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T01:26:18.985Z", + "completed":"2016-09-01T01:26:18.985Z", + "new_balance":"5708.42", + "value":"-197.91" + } + }, + { + "id":"f04191ea-b54e-4764-81b9-f2bee52d6360", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T05:22:30.334Z", + "completed":"2016-09-01T05:22:30.334Z", + "new_balance":"3077.21", + "value":"-2631.21" + } + }, + { + "id":"ceee26ee-1544-4aea-af1d-8c53c266469b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T08:17:02.284Z", + "completed":"2016-09-01T08:17:02.284Z", + "new_balance":"2345.36", + "value":"-731.85" + } + }, + { + "id":"ec619507-5321-4b85-80ab-471df407dee3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T15:18:57.081Z", + "completed":"2016-09-01T15:18:57.081Z", + "new_balance":"2181.88", + "value":"-163.48" + } + }, + { + "id":"d565ff1f-269a-4066-8391-e76e1ceb1d6a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T17:57:54.757Z", + "completed":"2016-09-01T17:57:54.757Z", + "new_balance":"1864.67", + "value":"-317.21" + } + }, + { + "id":"c54cf744-0f34-4a07-9d86-09c94c7dcf17", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T18:54:07.274Z", + "completed":"2016-09-01T18:54:07.274Z", + "new_balance":"-1829.10", + "value":"-3693.77" + } + }, + { + "id":"6a7e38bf-d6cc-4791-9fb6-da94cccf1114", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T01:15:07.627Z", + "completed":"2016-09-12T01:15:07.627Z", + "new_balance":"-2146.31", + "value":"-317.21" + } + }, + { + "id":"b96402b7-8e9f-400f-96aa-774e37343302", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T09:21:38.863Z", + "completed":"2016-09-12T09:21:38.863Z", + "new_balance":"-2193.21", + "value":"-46.90" + } + }, + { + "id":"7e85e267-b93b-4906-9cc9-8e4b00280c1b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T13:08:33.924Z", + "completed":"2016-09-12T13:08:33.924Z", + "new_balance":"-2246.39", + "value":"-53.18" + } + }, + { + "id":"a43dd407-2288-42c0-babf-8de64bce225d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T19:59:14.884Z", + "completed":"2016-09-12T19:59:14.884Z", + "new_balance":"-2978.24", + "value":"-731.85" + } + }, + { + "id":"bea37dee-f9b3-4bf3-9fb4-bb99e0154f5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T06:39:10.603Z", + "completed":"2016-09-15T06:39:10.603Z", + "new_balance":"-2750.85", + "value":"227.39" + } + }, + { + "id":"b3fb82ca-cfbb-4aa3-b307-497bb3fb9702", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T13:47:30.370Z", + "completed":"2016-09-15T13:47:30.370Z", + "new_balance":"-859.53", + "value":"1891.32" + } + }, + { + "id":"b175c78e-f5b2-4f93-ace6-ea9f4647cbc3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T01:31:18.777Z", + "completed":"2016-09-17T01:31:18.777Z", + "new_balance":"41.45", + "value":"900.98" + } + }, + { + "id":"2947142f-776a-45a6-b12f-4d1e888be7db", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:17:57.316Z", + "completed":"2016-09-17T12:17:57.316Z", + "new_balance":"-9.65", + "value":"-51.10" + } + }, + { + "id":"331aa50e-d544-49a2-9405-28ab80d65a9b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T17:41:10.650Z", + "completed":"2016-09-17T17:41:10.650Z", + "new_balance":"-88.73", + "value":"-79.08" + } + }, + { + "id":"c588887c-9a97-48b4-8aac-f01b36ecf424", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T11:27:52.162Z", + "completed":"2016-09-19T11:27:52.162Z", + "new_balance":"361.27", + "value":"450.00" + } + }, + { + "id":"0558a3bd-841b-413d-b707-489663572673", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T18:11:35.705Z", + "completed":"2016-09-21T18:11:35.705Z", + "new_balance":"422.52", + "value":"61.25" + } + }, + { + "id":"3c14b400-8e52-4247-845a-787841cc8988", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T22:02:52.578Z", + "completed":"2016-09-21T22:02:52.578Z", + "new_balance":"348.59", + "value":"-73.93" + } + }, + { + "id":"9d943f2f-c25b-4451-9bcc-4147b99370c9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T22:08:00.542Z", + "completed":"2016-09-24T22:08:00.542Z", + "new_balance":"575.98", + "value":"227.39" + } + }, + { + "id":"c35f26cf-db3b-41a7-b344-b5990ff84a6c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T23:50:51.122Z", + "completed":"2016-09-24T23:50:51.122Z", + "new_balance":"49.42", + "value":"-526.56" + } + }, + { + "id":"9585987f-4af6-4942-b7cc-70a874189eab", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T07:57:02.616Z", + "completed":"2016-09-25T07:57:02.616Z", + "new_balance":"-617.73", + "value":"-667.15" + } + }, + { + "id":"88f54cfb-affb-40aa-ad4c-9db959195848", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T13:18:15.461Z", + "completed":"2016-09-25T13:18:15.461Z", + "new_balance":"-164.08", + "value":"453.65" + } + }, + { + "id":"4cd29c3e-43dd-49b4-ac4e-a6f28c4230bd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T14:08:17.084Z", + "completed":"2016-09-28T14:08:17.084Z", + "new_balance":"1727.24", + "value":"1891.32" + } + }, + { + "id":"b563b62a-61db-47d7-8358-7f850dc3e641", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T19:50:47.314Z", + "completed":"2016-09-28T19:50:47.314Z", + "new_balance":"4810.11", + "value":"3082.87" + } + }, + { + "id":"196aa069-6600-41e5-81c9-cf8d34b4ac5e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:17:04.867Z", + "completed":"2016-09-30T14:17:04.867Z", + "new_balance":"5037.50", + "value":"227.39" + } + }, + { + "id":"19a735ea-4581-4078-9dbb-d9a608fa0bf4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T22:49:21.672Z", + "completed":"2016-09-30T22:49:21.672Z", + "new_balance":"5265.12", + "value":"227.62" + } + }, + { + "id":"e628358b-a1aa-41c8-a151-ce7c87492ffc", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T06:36:45.794Z", + "completed":"2016-12-01T06:36:45.794Z", + "new_balance":"2633.91", + "value":"-2631.21" + } + }, + { + "id":"720a8a01-8332-4c69-ba06-8f1eb350b2a4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T12:26:13.557Z", + "completed":"2016-12-01T12:26:13.557Z", + "new_balance":"2436.00", + "value":"-197.91" + } + }, + { + "id":"b2948071-12a2-461c-944c-e67d3fe0233a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T16:34:11.006Z", + "completed":"2016-12-01T16:34:11.006Z", + "new_balance":"1704.15", + "value":"-731.85" + } + }, + { + "id":"209bf902-de6a-4cbc-9d99-49c396a39b45", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T19:36:39.054Z", + "completed":"2016-12-01T19:36:39.054Z", + "new_balance":"1386.94", + "value":"-317.21" + } + }, + { + "id":"e5bd803c-4da9-4985-88db-2b44d9185592", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T21:41:21.396Z", + "completed":"2016-12-01T21:41:21.396Z", + "new_balance":"-2306.83", + "value":"-3693.77" + } + }, + { + "id":"0770452f-d7ee-4c4a-aa0d-1cf914c0b996", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T21:43:44.761Z", + "completed":"2016-12-01T21:43:44.761Z", + "new_balance":"-2470.31", + "value":"-163.48" + } + }, + { + "id":"f4e77bb3-d381-47ef-a148-dbde1185e2cb", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:55:57.495Z", + "completed":"2016-12-04T01:55:57.495Z", + "new_balance":"-2523.49", + "value":"-53.18" + } + }, + { + "id":"5c06b7f8-515d-4c66-a9f7-c555f5d84b5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T06:42:08.384Z", + "completed":"2016-12-04T06:42:08.384Z", + "new_balance":"-2570.39", + "value":"-46.90" + } + }, + { + "id":"4f69c2c7-ac3c-432f-b765-a1bd89fd533d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T00:35:20.814Z", + "completed":"2016-12-05T00:35:20.814Z", + "new_balance":"-3302.24", + "value":"-731.85" + } + }, + { + "id":"6d606cd2-5d82-405c-9253-d1a792858c04", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T12:47:26.381Z", + "completed":"2016-12-05T12:47:26.381Z", + "new_balance":"-3619.45", + "value":"-317.21" + } + }, + { + "id":"0d477e46-6b5c-4192-bf15-69ac700aabbc", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:45:38.234Z", + "completed":"2016-12-07T03:45:38.234Z", + "new_balance":"-3670.55", + "value":"-51.10" + } + }, + { + "id":"90c461f5-10db-4fc8-9993-f712d0ada28a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T11:20:07.469Z", + "completed":"2016-12-07T11:20:07.469Z", + "new_balance":"-2769.57", + "value":"900.98" + } + }, + { + "id":"72a3b05d-5f4a-440f-9539-939e53385111", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T17:46:51.498Z", + "completed":"2016-12-07T17:46:51.498Z", + "new_balance":"-878.25", + "value":"1891.32" + } + }, + { + "id":"6582a5db-da7c-4fc7-afd3-bfcaef3e6007", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T22:50:24.016Z", + "completed":"2016-12-07T22:50:24.016Z", + "new_balance":"-650.86", + "value":"227.39" + } + }, + { + "id":"886968cc-06ed-4d3d-b354-f29a1c486975", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T01:55:26.796Z", + "completed":"2016-12-11T01:55:26.796Z", + "new_balance":"-729.94", + "value":"-79.08" + } + }, + { + "id":"25d5dd39-b894-4125-92f3-b480b79cb536", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T09:15:47.494Z", + "completed":"2016-12-14T09:15:47.494Z", + "new_balance":"-668.69", + "value":"61.25" + } + }, + { + "id":"c8a9d767-d05e-4f64-8422-18445f610748", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T10:06:56.299Z", + "completed":"2016-12-14T10:06:56.299Z", + "new_balance":"-742.62", + "value":"-73.93" + } + }, + { + "id":"c5dc11e5-b816-4f5f-ac93-dfc5a2959a90", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T15:21:47.742Z", + "completed":"2016-12-14T15:21:47.742Z", + "new_balance":"-292.62", + "value":"450.00" + } + }, + { + "id":"66b0db08-f94d-4b92-bb35-d915b8e14f74", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T01:12:11.514Z", + "completed":"2016-12-16T01:12:11.514Z", + "new_balance":"-819.18", + "value":"-526.56" + } + }, + { + "id":"9fea5c37-370b-4f28-80e2-21de423e7bdb", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T20:31:31.636Z", + "completed":"2016-12-16T20:31:31.636Z", + "new_balance":"-591.79", + "value":"227.39" + } + }, + { + "id":"3afbef63-7cb2-47b7-88c7-a59c6b748d61", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T05:16:45.958Z", + "completed":"2016-12-21T05:16:45.958Z", + "new_balance":"1299.53", + "value":"1891.32" + } + }, + { + "id":"ac1a15e8-d15d-4fe7-b0d0-5903260e1071", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T12:55:41.449Z", + "completed":"2016-12-21T12:55:41.449Z", + "new_balance":"1753.18", + "value":"453.65" + } + }, + { + "id":"b8e9b0be-66ac-4afb-9bac-e68c05ff5d08", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T21:28:39.886Z", + "completed":"2016-12-21T21:28:39.886Z", + "new_balance":"1086.03", + "value":"-667.15" + } + }, + { + "id":"192ffd80-d3a4-411d-8f38-d4e86f678306", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T22:05:32.639Z", + "completed":"2016-12-21T22:05:32.639Z", + "new_balance":"4168.90", + "value":"3082.87" + } + }, + { + "id":"7e05a982-8dbc-41fd-9746-248df984a71d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T18:30:15.569Z", + "completed":"2016-12-30T18:30:15.569Z", + "new_balance":"4396.29", + "value":"227.39" + } + }, + { + "id":"40fe3a8c-31a4-4112-90b9-b728d7dbc2ef", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T22:30:34.928Z", + "completed":"2016-12-30T22:30:34.928Z", + "new_balance":"4623.91", + "value":"227.62" + } + }, + { + "id":"500c7396-2a99-4473-ac29-10b5fc1ba03d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T00:53:41.673Z", + "completed":"2017-03-01T00:53:41.673Z", + "new_balance":"3892.06", + "value":"-731.85" + } + }, + { + "id":"6de7069f-f1a5-4e8e-a2b3-a92201000aba", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T03:14:14.937Z", + "completed":"2017-03-01T03:14:14.937Z", + "new_balance":"3694.15", + "value":"-197.91" + } + }, + { + "id":"48154e4a-af8b-407e-af57-ba766f21277c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T07:10:36.168Z", + "completed":"2017-03-01T07:10:36.168Z", + "new_balance":"0.38", + "value":"-3693.77" + } + }, + { + "id":"0cd4014c-3c43-40de-8939-8d66ca541c09", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T07:47:42.044Z", + "completed":"2017-03-01T07:47:42.044Z", + "new_balance":"-316.83", + "value":"-317.21" + } + }, + { + "id":"2dbcd8e8-290e-4e99-9ea9-edf123c179ad", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T21:01:48.014Z", + "completed":"2017-03-01T21:01:48.014Z", + "new_balance":"-480.31", + "value":"-163.48" + } + }, + { + "id":"a8cf8c38-98c7-4c08-a9ab-bd50b16f8bba", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T21:11:08.435Z", + "completed":"2017-03-01T21:11:08.435Z", + "new_balance":"-3111.52", + "value":"-2631.21" + } + }, + { + "id":"e263fced-7f92-4e08-89ad-88fd2647fba6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T05:43:21.337Z", + "completed":"2017-03-12T05:43:21.337Z", + "new_balance":"-3428.73", + "value":"-317.21" + } + }, + { + "id":"b3bf0be9-8232-475d-88df-83ac440ecf27", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T10:03:57.322Z", + "completed":"2017-03-12T10:03:57.322Z", + "new_balance":"-4160.58", + "value":"-731.85" + } + }, + { + "id":"a1c926f8-3b47-47f5-9812-178c6508b424", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T10:36:45.244Z", + "completed":"2017-03-12T10:36:45.244Z", + "new_balance":"-4207.48", + "value":"-46.90" + } + }, + { + "id":"f39daa91-6171-432a-be68-1dbf29af8b4a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T22:54:05.618Z", + "completed":"2017-03-12T22:54:05.618Z", + "new_balance":"-4260.66", + "value":"-53.18" + } + }, + { + "id":"4da1690c-be79-4c9d-9dc6-888d88e0d675", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T13:16:09.297Z", + "completed":"2017-03-14T13:16:09.297Z", + "new_balance":"-2369.34", + "value":"1891.32" + } + }, + { + "id":"d90f9887-3ec5-46a4-ba88-4ee0f9c1cf21", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T12:48:28.690Z", + "completed":"2017-03-15T12:48:28.690Z", + "new_balance":"-2141.95", + "value":"227.39" + } + }, + { + "id":"116bf671-ce7a-4eb2-b61d-2eeb25d691c2", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T20:35:03.733Z", + "completed":"2017-03-16T20:35:03.733Z", + "new_balance":"-1240.97", + "value":"900.98" + } + }, + { + "id":"1601457f-46b3-49c4-8d41-3209d9b71f70", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T02:27:39.443Z", + "completed":"2017-03-17T02:27:39.443Z", + "new_balance":"-1320.05", + "value":"-79.08" + } + }, + { + "id":"6ed0773e-ace4-4b22-b5be-796ae6bbbe94", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T22:19:38.245Z", + "completed":"2017-03-17T22:19:38.245Z", + "new_balance":"-1371.15", + "value":"-51.10" + } + }, + { + "id":"6fea2ba6-708d-47a7-a910-f71c65838545", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:13:50.323Z", + "completed":"2017-03-19T15:13:50.323Z", + "new_balance":"-921.15", + "value":"450.00" + } + }, + { + "id":"97a67ba2-bd60-411f-bea2-38742bf59e3d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T09:54:26.625Z", + "completed":"2017-03-21T09:54:26.625Z", + "new_balance":"-859.90", + "value":"61.25" + } + }, + { + "id":"ab39e64d-c57d-4139-bf4c-e98ec602148c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T21:14:55.011Z", + "completed":"2017-03-21T21:14:55.011Z", + "new_balance":"-933.83", + "value":"-73.93" + } + }, + { + "id":"a1bf75ea-8ef2-4d2e-ba6c-eb87baee19a0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T03:32:35.804Z", + "completed":"2017-03-24T03:32:35.804Z", + "new_balance":"-1460.39", + "value":"-526.56" + } + }, + { + "id":"05aa8e56-e7fa-4e00-8ae4-49fac878d59c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T04:55:42.452Z", + "completed":"2017-03-24T04:55:42.452Z", + "new_balance":"-1233.00", + "value":"227.39" + } + }, + { + "id":"61cd3ee6-35b4-4908-a251-2a2d472277af", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:42:58.528Z", + "completed":"2017-03-25T14:42:58.528Z", + "new_balance":"-1900.15", + "value":"-667.15" + } + }, + { + "id":"cff891a8-45aa-49e9-ae0d-13c90c0725ef", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T14:55:56.179Z", + "completed":"2017-03-25T14:55:56.179Z", + "new_balance":"-1446.50", + "value":"453.65" + } + }, + { + "id":"24027688-437e-4fb0-a03c-849c5fa34ab3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T06:08:26.228Z", + "completed":"2017-03-28T06:08:26.228Z", + "new_balance":"1636.37", + "value":"3082.87" + } + }, + { + "id":"0a01a80e-c31d-4a18-a28f-bf444cd73f9d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T15:51:30.437Z", + "completed":"2017-03-28T15:51:30.437Z", + "new_balance":"3527.69", + "value":"1891.32" + } + }, + { + "id":"26491beb-5293-4432-964a-af53da2efc2f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T13:49:14.719Z", + "completed":"2017-03-30T13:49:14.719Z", + "new_balance":"3755.08", + "value":"227.39" + } + }, + { + "id":"1ae861f6-1a39-49c5-b172-70273efbce36", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T22:58:39.512Z", + "completed":"2017-03-30T22:58:39.512Z", + "new_balance":"3982.70", + "value":"227.62" + } + }, + { + "id":"3ed5010c-afd3-43a9-9876-10bfa1ff8172", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T00:58:39.086Z", + "completed":"2017-06-01T00:58:39.086Z", + "new_balance":"3665.49", + "value":"-317.21" + } + }, + { + "id":"cd406e3d-dcb5-4d4b-91eb-33d9e850b34c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T10:33:38.362Z", + "completed":"2017-06-01T10:33:38.362Z", + "new_balance":"3502.01", + "value":"-163.48" + } + }, + { + "id":"686cb028-f9dc-438b-86d9-40ddd8fce56f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T14:00:56.466Z", + "completed":"2017-06-01T14:00:56.466Z", + "new_balance":"3304.10", + "value":"-197.91" + } + }, + { + "id":"d248af47-9673-4d48-9b95-26fdf57d6a5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T15:36:09.331Z", + "completed":"2017-06-01T15:36:09.331Z", + "new_balance":"2572.25", + "value":"-731.85" + } + }, + { + "id":"41157019-8a88-4d8b-bf47-7ee779785e5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T17:52:08.561Z", + "completed":"2017-06-01T17:52:08.561Z", + "new_balance":"-1121.52", + "value":"-3693.77" + } + }, + { + "id":"f847a37d-df9c-4137-bbd5-8c3a0d41d75c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T18:51:40.027Z", + "completed":"2017-06-01T18:51:40.027Z", + "new_balance":"-3752.73", + "value":"-2631.21" + } + }, + { + "id":"b84ad335-532d-44e5-a73c-a47e26358962", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:29:52.625Z", + "completed":"2017-06-04T06:29:52.625Z", + "new_balance":"-3805.91", + "value":"-53.18" + } + }, + { + "id":"be388de7-7c43-4594-ac0a-07a5d860c584", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T14:17:01.606Z", + "completed":"2017-06-04T14:17:01.606Z", + "new_balance":"-3852.81", + "value":"-46.90" + } + }, + { + "id":"9ab10e1d-05fc-48d9-8b1c-f0538f759b5d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T06:13:55.910Z", + "completed":"2017-06-05T06:13:55.910Z", + "new_balance":"-4584.66", + "value":"-731.85" + } + }, + { + "id":"5b3d19e4-4f0b-4ca7-9796-bc58fb93ab18", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T20:33:12.465Z", + "completed":"2017-06-05T20:33:12.465Z", + "new_balance":"-4901.87", + "value":"-317.21" + } + }, + { + "id":"87b43d16-b2f2-4aa4-8b5a-192a0676541b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:58:50.342Z", + "completed":"2017-06-07T08:58:50.342Z", + "new_balance":"-4674.48", + "value":"227.39" + } + }, + { + "id":"d6678d23-a409-45b6-a75e-96c13aad037a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T10:45:11.205Z", + "completed":"2017-06-07T10:45:11.205Z", + "new_balance":"-3773.50", + "value":"900.98" + } + }, + { + "id":"fef2020c-2343-4862-8337-6736de36654a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T11:31:38.848Z", + "completed":"2017-06-07T11:31:38.848Z", + "new_balance":"-1882.18", + "value":"1891.32" + } + }, + { + "id":"b02d245d-7187-4ae3-83fc-27025c586fbe", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T15:49:09.618Z", + "completed":"2017-06-07T15:49:09.618Z", + "new_balance":"-1933.28", + "value":"-51.10" + } + }, + { + "id":"38258084-dd58-455b-8228-029618883a1b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T16:00:59.199Z", + "completed":"2017-06-11T16:00:59.199Z", + "new_balance":"-2012.36", + "value":"-79.08" + } + }, + { + "id":"e2c8fd66-8bda-49fe-befd-9cb8cf78551e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T10:36:06.739Z", + "completed":"2017-06-14T10:36:06.739Z", + "new_balance":"-1951.11", + "value":"61.25" + } + }, + { + "id":"48cb12c4-41c7-41d9-862f-1abe28337ce8", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:31:46.131Z", + "completed":"2017-06-14T13:31:46.131Z", + "new_balance":"-2025.04", + "value":"-73.93" + } + }, + { + "id":"540f8d2a-cff6-402e-9d7d-0496d702aa5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T16:56:25.004Z", + "completed":"2017-06-14T16:56:25.004Z", + "new_balance":"-1575.04", + "value":"450.00" + } + }, + { + "id":"f149fffd-5966-4f66-af14-6712628eff68", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T06:21:40.161Z", + "completed":"2017-06-16T06:21:40.161Z", + "new_balance":"-2101.60", + "value":"-526.56" + } + }, + { + "id":"6c0e8d5b-db81-48c5-bd07-633078486c34", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T17:04:58.931Z", + "completed":"2017-06-16T17:04:58.931Z", + "new_balance":"-1874.21", + "value":"227.39" + } + }, + { + "id":"2342e7c7-639f-456b-a52c-9d9f01248467", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T16:45:04.201Z", + "completed":"2017-06-21T16:45:04.201Z", + "new_balance":"17.11", + "value":"1891.32" + } + }, + { + "id":"175db885-2c68-4136-a6b8-b519416889d0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T17:13:50.415Z", + "completed":"2017-06-21T17:13:50.415Z", + "new_balance":"3099.98", + "value":"3082.87" + } + }, + { + "id":"8776ccde-5ca4-4354-a694-6827ec458a65", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T18:34:30.806Z", + "completed":"2017-06-21T18:34:30.806Z", + "new_balance":"2432.83", + "value":"-667.15" + } + }, + { + "id":"907e8bce-de0d-4748-a2d2-1134865136e4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:37:27.723Z", + "completed":"2017-06-21T20:37:27.723Z", + "new_balance":"2886.48", + "value":"453.65" + } + }, + { + "id":"cbd59d50-84f6-47fb-92d8-bf6f0bd20055", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T04:14:35.039Z", + "completed":"2017-06-30T04:14:35.039Z", + "new_balance":"3114.10", + "value":"227.62" + } + }, + { + "id":"06ac444d-9de1-4ef0-945a-6760ece9e38a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T21:59:26.756Z", + "completed":"2017-06-30T21:59:26.756Z", + "new_balance":"3341.49", + "value":"227.39" + } + }, + { + "id":"b75c5e96-223b-4eb8-9bd2-63c51aec1793", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T03:50:00.267Z", + "completed":"2017-09-01T03:50:00.267Z", + "new_balance":"3143.58", + "value":"-197.91" + } + }, + { + "id":"0261f85f-be8b-4d7f-b299-135ab0744e2a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:37:03.548Z", + "completed":"2017-09-01T05:37:03.548Z", + "new_balance":"2980.10", + "value":"-163.48" + } + }, + { + "id":"ddd5586c-8ecd-42f0-ba5b-2f1a4021b39b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:46:55.138Z", + "completed":"2017-09-01T06:46:55.138Z", + "new_balance":"348.89", + "value":"-2631.21" + } + }, + { + "id":"5275514a-7288-422f-a4f1-a6aaab3a8a5d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T13:14:46.651Z", + "completed":"2017-09-01T13:14:46.651Z", + "new_balance":"31.68", + "value":"-317.21" + } + }, + { + "id":"6c646b52-48e6-47c6-858e-e8191451aab0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T15:31:50.331Z", + "completed":"2017-09-01T15:31:50.331Z", + "new_balance":"-700.17", + "value":"-731.85" + } + }, + { + "id":"a2dc9889-ffb2-45df-b516-3aae73be3e5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T23:20:23.191Z", + "completed":"2017-09-01T23:20:23.191Z", + "new_balance":"-4393.94", + "value":"-3693.77" + } + }, + { + "id":"93aa0932-626a-4d2d-a8f9-2108679d6a89", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T03:31:27.921Z", + "completed":"2017-09-12T03:31:27.921Z", + "new_balance":"-4447.12", + "value":"-53.18" + } + }, + { + "id":"ba6581f8-cf2f-4668-a521-6a3cfa0a67b5", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T03:57:55.277Z", + "completed":"2017-09-12T03:57:55.277Z", + "new_balance":"-5178.97", + "value":"-731.85" + } + }, + { + "id":"05dc36c4-e436-43e0-a59d-3aa968f944b6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T22:14:16.638Z", + "completed":"2017-09-12T22:14:16.638Z", + "new_balance":"-5225.87", + "value":"-46.90" + } + }, + { + "id":"698a355b-acb1-4826-ba19-155747f3c00c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T22:55:35.069Z", + "completed":"2017-09-12T22:55:35.069Z", + "new_balance":"-5543.08", + "value":"-317.21" + } + }, + { + "id":"476d9e54-44cb-45e1-bee8-6d71dad72807", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T17:06:27.617Z", + "completed":"2017-09-15T17:06:27.617Z", + "new_balance":"-3651.76", + "value":"1891.32" + } + }, + { + "id":"2773467e-d5b0-44ba-97a4-0257fe8d19dd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T19:37:34.885Z", + "completed":"2017-09-15T19:37:34.885Z", + "new_balance":"-3424.37", + "value":"227.39" + } + }, + { + "id":"81341af6-cf65-406d-96eb-a785ee828b83", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T11:19:25.183Z", + "completed":"2017-09-17T11:19:25.183Z", + "new_balance":"-3503.45", + "value":"-79.08" + } + }, + { + "id":"fbbe45fd-9984-4907-9f86-352fa06f05a4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T12:54:37.518Z", + "completed":"2017-09-17T12:54:37.518Z", + "new_balance":"-3554.55", + "value":"-51.10" + } + }, + { + "id":"676db106-93a1-49f3-8d4a-4f0a8ca1e9d5", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T15:40:55.240Z", + "completed":"2017-09-17T15:40:55.240Z", + "new_balance":"-2653.57", + "value":"900.98" + } + }, + { + "id":"c5019a81-b3cf-4c1b-b38b-5db286a5354c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T18:23:29.163Z", + "completed":"2017-09-19T18:23:29.163Z", + "new_balance":"-2203.57", + "value":"450.00" + } + }, + { + "id":"281a2b1f-4239-4e38-89c4-939188c9dbe4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T15:05:57.845Z", + "completed":"2017-09-21T15:05:57.845Z", + "new_balance":"-2142.32", + "value":"61.25" + } + }, + { + "id":"22ddd208-7f23-4ec1-9f25-2253baa20028", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T18:53:36.579Z", + "completed":"2017-09-21T18:53:36.579Z", + "new_balance":"-2216.25", + "value":"-73.93" + } + }, + { + "id":"c8f88baf-437b-47dd-98da-79c01c4f319c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T00:42:45.118Z", + "completed":"2017-09-24T00:42:45.118Z", + "new_balance":"-1988.86", + "value":"227.39" + } + }, + { + "id":"fd76d565-4b20-49f4-9bcb-2436f1d82670", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T23:06:52.985Z", + "completed":"2017-09-24T23:06:52.985Z", + "new_balance":"-2515.42", + "value":"-526.56" + } + }, + { + "id":"b976a502-682d-43ec-9216-2c29754584b0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T08:48:03.982Z", + "completed":"2017-09-25T08:48:03.982Z", + "new_balance":"-3182.57", + "value":"-667.15" + } + }, + { + "id":"0562db56-65af-4875-8b4d-75869faf11d0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T12:41:21.646Z", + "completed":"2017-09-25T12:41:21.646Z", + "new_balance":"-2728.92", + "value":"453.65" + } + }, + { + "id":"a381a0a7-aec0-434e-a06c-8b42fe411d33", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T08:40:36.975Z", + "completed":"2017-09-28T08:40:36.975Z", + "new_balance":"-837.60", + "value":"1891.32" + } + }, + { + "id":"0b457a40-19d0-4c68-8fdf-cdf418dc69e0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T12:33:42.232Z", + "completed":"2017-09-28T12:33:42.232Z", + "new_balance":"2245.27", + "value":"3082.87" + } + }, + { + "id":"82399570-ee96-4105-ba7b-9434b788fad4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T00:33:13.566Z", + "completed":"2017-09-30T00:33:13.566Z", + "new_balance":"2472.66", + "value":"227.39" + } + }, + { + "id":"e39ca9b9-d3a0-499f-8068-3b0bfe83c82a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T08:54:58.108Z", + "completed":"2017-09-30T08:54:58.108Z", + "new_balance":"2700.28", + "value":"227.62" + } + }, + { + "id":"19f1e5b2-ae05-4c82-a509-82901fb2f95b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T00:40:50.003Z", + "completed":"2017-12-01T00:40:50.003Z", + "new_balance":"1968.43", + "value":"-731.85" + } + }, + { + "id":"2b0406fe-f003-46b5-a8a8-cf936141b91e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T02:00:21.996Z", + "completed":"2017-12-01T02:00:21.996Z", + "new_balance":"1804.95", + "value":"-163.48" + } + }, + { + "id":"2eec1798-cc07-4874-8d99-570341334392", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T06:54:45.063Z", + "completed":"2017-12-01T06:54:45.063Z", + "new_balance":"1487.74", + "value":"-317.21" + } + }, + { + "id":"76060008-ecc8-47e8-84ac-c14cba088f6f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T09:24:08.107Z", + "completed":"2017-12-01T09:24:08.107Z", + "new_balance":"-1143.47", + "value":"-2631.21" + } + }, + { + "id":"4d323b15-a5ed-4564-93e8-a157b1d77505", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T13:03:30.553Z", + "completed":"2017-12-01T13:03:30.553Z", + "new_balance":"-4837.24", + "value":"-3693.77" + } + }, + { + "id":"fb7659a0-feaf-478d-8f8e-a5af22d70713", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T19:22:49.014Z", + "completed":"2017-12-01T19:22:49.014Z", + "new_balance":"-5035.15", + "value":"-197.91" + } + }, + { + "id":"64442c0b-3948-48f5-bb48-68f677520fd6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:52:57.087Z", + "completed":"2017-12-04T00:52:57.087Z", + "new_balance":"-5082.05", + "value":"-46.90" + } + }, + { + "id":"6626bc78-ac63-4c7f-9593-c3d2e83429ff", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:24:24.330Z", + "completed":"2017-12-04T16:24:24.330Z", + "new_balance":"-5135.23", + "value":"-53.18" + } + }, + { + "id":"b418ccf6-bd6b-442a-aeef-67ed9a97ae36", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T03:26:25.715Z", + "completed":"2017-12-05T03:26:25.715Z", + "new_balance":"-5867.08", + "value":"-731.85" + } + }, + { + "id":"9c683d41-c8b9-4c37-a078-091d909f59fa", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T06:24:10.137Z", + "completed":"2017-12-05T06:24:10.137Z", + "new_balance":"-6184.29", + "value":"-317.21" + } + }, + { + "id":"3affc922-e93b-48ac-9f54-b7024edf2c0e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:27:05.788Z", + "completed":"2017-12-07T03:27:05.788Z", + "new_balance":"-5956.90", + "value":"227.39" + } + }, + { + "id":"73dd924b-bc18-46f1-b64d-0296ac346338", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T16:45:15.471Z", + "completed":"2017-12-07T16:45:15.471Z", + "new_balance":"-5055.92", + "value":"900.98" + } + }, + { + "id":"980a8737-8d07-4703-9e76-f42301f124e1", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T17:15:57.021Z", + "completed":"2017-12-07T17:15:57.021Z", + "new_balance":"-5107.02", + "value":"-51.10" + } + }, + { + "id":"7e015841-a064-4b9f-ac22-50fcd761d85e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:40:10.203Z", + "completed":"2017-12-07T21:40:10.203Z", + "new_balance":"-3215.70", + "value":"1891.32" + } + }, + { + "id":"bce22101-69f0-4c9c-979a-ab8bd3a90532", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T23:05:37.361Z", + "completed":"2017-12-11T23:05:37.361Z", + "new_balance":"-3294.78", + "value":"-79.08" + } + }, + { + "id":"44cd0b0c-d1da-4068-83f7-1c988e2b821a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T03:33:01.633Z", + "completed":"2017-12-14T03:33:01.633Z", + "new_balance":"-3233.53", + "value":"61.25" + } + }, + { + "id":"40925ab3-bd80-4883-a83c-946099148e71", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T11:38:54.123Z", + "completed":"2017-12-14T11:38:54.123Z", + "new_balance":"-2783.53", + "value":"450.00" + } + }, + { + "id":"b4d8deec-cbfb-44a8-99c8-837fe3c9b75e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T13:19:28.816Z", + "completed":"2017-12-14T13:19:28.816Z", + "new_balance":"-2857.46", + "value":"-73.93" + } + }, + { + "id":"265a5413-9218-4001-8ff2-e5e68e545401", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T07:55:35.628Z", + "completed":"2017-12-16T07:55:35.628Z", + "new_balance":"-3384.02", + "value":"-526.56" + } + }, + { + "id":"e59dd2ae-73b8-4a0b-8079-7da4e9dc2c84", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T11:00:58.664Z", + "completed":"2017-12-16T11:00:58.664Z", + "new_balance":"-3156.63", + "value":"227.39" + } + }, + { + "id":"2df57a9c-7f2b-4876-b933-46840d524e71", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T00:57:29.636Z", + "completed":"2017-12-21T00:57:29.636Z", + "new_balance":"-3823.78", + "value":"-667.15" + } + }, + { + "id":"7ac5078f-01bf-4f82-b74b-aa595b76cb1c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T12:53:50.670Z", + "completed":"2017-12-21T12:53:50.670Z", + "new_balance":"-740.91", + "value":"3082.87" + } + }, + { + "id":"19a6d1e6-3d7a-4d4f-b0e4-9350cb729000", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T13:29:55.857Z", + "completed":"2017-12-21T13:29:55.857Z", + "new_balance":"-287.26", + "value":"453.65" + } + }, + { + "id":"8790c752-04c5-4a4f-abe6-b356775ccd91", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T16:22:03.232Z", + "completed":"2017-12-21T16:22:03.232Z", + "new_balance":"1604.06", + "value":"1891.32" + } + }, + { + "id":"0eb02f0f-e619-413e-b51a-b501c24e0715", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T01:46:28.984Z", + "completed":"2017-12-30T01:46:28.984Z", + "new_balance":"1831.68", + "value":"227.62" + } + }, + { + "id":"d0922df2-95e0-4ce6-b50c-311fe7302509", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T07:31:17.012Z", + "completed":"2017-12-30T07:31:17.012Z", + "new_balance":"2059.07", + "value":"227.39" + } + } + ], + "branches":[], + "atms":[], + "products":[ + { + "bank_id":"hsbc.01.uk.uk", + "code":"3bb3-M35", + "name":"OFFSET FLEXIBLE MORTGAGE", + "category":"Mortgage", + "family":"Mortgage", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"0e77-H44", + "name":"Gold", + "category":"Account", + "family":"Service", + "super_family":"Service", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"2cbe-J87", + "name":"Premier Mastercard", + "category":"Credit Card", + "family":"Credit Card", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"5f80-JF", + "name":"Loan Quote", + "category":"Loan", + "family":"Loan", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"c161-KJH", + "name":"Generic Savings", + "category":"Savings", + "family":"Credit", + "super_family":"Credit", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"aeab-FDFD", + "name":"Generic Overdraft Product", + "category":"Overdraft", + "family":"Loan", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"4fdf-DS", + "name":"Generic Credit Card Product", + "category":"Credit Card", + "family":"Credit Card", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"3478-FDS", + "name":"OFFSET FLEXIBLE MORTGAGE", + "category":"Mortgage", + "family":"Mortgage", + "super_family":"Lending", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + }, + { + "bank_id":"hsbc.01.uk.uk", + "code":"f4e7-F45", + "name":"RESERVE ACCOUNT", + "category":"Account", + "family":"Service", + "super_family":"Service", + "more_info_url":"", + "meta":{ + "license":{ + "id":"copyright", + "name":"Copyright" + } + } + } + ], + "crm_events":[ + { + "id":"427779b0-dcd9-484d-952d-a6ddee75f6a6", + "bank_id":"hsbc.01.uk.uk", + "customer":{ + "name":"Dennis Uk.01", + "number":"uk279117540" + }, + "category":"TEST CATEGORY", + "detail":"TEST DETAIL", + "channel":"Test Channel", + "actual_date":"2015-02-14T00:00:00.000Z" + }, + { + "id":"9b2e5771-8b9d-4fb8-88fd-04543fe5ab64", + "bank_id":"hsbc.01.hk.hsbc", + "customer":{ + "name":"Dennis Hk.01", + "number":"hsbc267111767" + }, + "category":"TEST CATEGORY", + "detail":"TEST DETAIL", + "channel":"Test Channel", + "actual_date":"2015-02-14T00:00:00.000Z" + } + ] +} \ No newline at end of file diff --git a/example_input/transactions.json b/example_input/transactions.json new file mode 100644 index 0000000..df0e1fd --- /dev/null +++ b/example_input/transactions.json @@ -0,0 +1,400900 @@ +{ + "transactions":[ + { + "id":"264bd920-368c-4e58-9b4b-b3e7ee53d3c5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T07:09:20.434Z", + "completed":"2016-01-01T07:09:20.434Z", + "new_balance":"6247.65", + "value":"-7.70" + } + }, + { + "id":"5dfb5bf0-dcbb-4980-8922-96b7aa6e61b9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T09:01:59.694Z", + "completed":"2016-01-01T09:01:59.694Z", + "new_balance":"6244.21", + "value":"-3.44" + } + }, + { + "id":"48fc4ab1-8ced-46d6-9816-0c4849504600", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T18:38:56.001Z", + "completed":"2016-01-01T18:38:56.001Z", + "new_balance":"6240.03", + "value":"-4.18" + } + }, + { + "id":"6eaa029d-4225-4aa9-b93e-de578511ee3c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T20:18:22.673Z", + "completed":"2016-01-01T20:18:22.673Z", + "new_balance":"6236.59", + "value":"-3.44" + } + }, + { + "id":"093d47c2-8f53-488b-a8d6-6763f54f63a7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T17:22:16.212Z", + "completed":"2016-01-05T17:22:16.212Z", + "new_balance":"6226.55", + "value":"-10.04" + } + }, + { + "id":"12f8f6ab-2703-4b9b-8cfb-22adc42ababe", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T19:44:43.667Z", + "completed":"2016-01-05T19:44:43.667Z", + "new_balance":"6219.25", + "value":"-7.30" + } + }, + { + "id":"d4e392ae-5176-4fb4-a031-f55bae3316bd", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T21:38:36.359Z", + "completed":"2016-01-08T21:38:36.359Z", + "new_balance":"6217.85", + "value":"-1.40" + } + }, + { + "id":"e7475738-3078-4b8e-841b-5284cbc27d49", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T17:13:19.898Z", + "completed":"2016-01-10T17:13:19.898Z", + "new_balance":"6213.19", + "value":"-4.66" + } + }, + { + "id":"ac3ceda1-6520-4fc0-8c72-7262e5afb94c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T22:14:19.923Z", + "completed":"2016-01-11T22:14:19.923Z", + "new_balance":"6207.78", + "value":"-5.41" + } + }, + { + "id":"c8467c2b-dd91-4183-8f76-bada023b4c25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T12:10:27.658Z", + "completed":"2016-01-12T12:10:27.658Z", + "new_balance":"6204.34", + "value":"-3.44" + } + }, + { + "id":"d063669f-2952-495c-88bf-58631921c7a0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:25:52.984Z", + "completed":"2016-01-13T03:25:52.984Z", + "new_balance":"6203.88", + "value":"-0.46" + } + }, + { + "id":"92752cc6-0638-4556-a648-5224faa55dea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T22:38:11.921Z", + "completed":"2016-01-13T22:38:11.921Z", + "new_balance":"6203.37", + "value":"-0.51" + } + }, + { + "id":"cc353af3-9ab4-45f0-b189-6291fbac4887", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T01:07:55.340Z", + "completed":"2016-01-16T01:07:55.340Z", + "new_balance":"6193.85", + "value":"-9.52" + } + }, + { + "id":"d2f96cd0-acb8-430b-8066-acf6100e53cb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T12:56:55.754Z", + "completed":"2016-01-19T12:56:55.754Z", + "new_balance":"6187.02", + "value":"-6.83" + } + }, + { + "id":"2ca64f72-7738-479c-85db-c04bd2b9c03f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T22:14:04.796Z", + "completed":"2016-01-19T22:14:04.796Z", + "new_balance":"6179.72", + "value":"-7.30" + } + }, + { + "id":"18623a97-4e20-4542-98f8-36abc2e8d88f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T02:12:54.573Z", + "completed":"2016-01-24T02:12:54.573Z", + "new_balance":"6177.04", + "value":"-2.68" + } + }, + { + "id":"b6151c2d-9124-4c49-bbb7-93ec078d8d45", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T14:46:00.653Z", + "completed":"2016-01-27T14:46:00.653Z", + "new_balance":"6173.37", + "value":"-3.67" + } + }, + { + "id":"bd04eaa3-b80c-434f-96a1-fad7f2dfac69", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T15:26:31.402Z", + "completed":"2016-01-27T15:26:31.402Z", + "new_balance":"6408.33", + "value":"234.96" + } + }, + { + "id":"436d7f9a-38a6-4820-ae6e-305a60169fd0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T12:06:35.269Z", + "completed":"2016-01-31T12:06:35.269Z", + "new_balance":"6385.09", + "value":"-23.24" + } + }, + { + "id":"c3f9b654-93fc-4852-9f9f-0b77988fb7b7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:00:41.773Z", + "completed":"2016-02-01T02:00:41.773Z", + "new_balance":"6380.91", + "value":"-4.18" + } + }, + { + "id":"8ea1b3f5-0ad0-4aee-a841-55b1fdc9bda7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T16:43:23.994Z", + "completed":"2016-02-01T16:43:23.994Z", + "new_balance":"6377.47", + "value":"-3.44" + } + }, + { + "id":"fa857414-92ef-4f90-aa65-12f70848d630", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T20:16:57.560Z", + "completed":"2016-02-01T20:16:57.560Z", + "new_balance":"6369.77", + "value":"-7.70" + } + }, + { + "id":"ceb471c1-d199-48ea-a824-ba0fcf3da655", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T23:45:53.681Z", + "completed":"2016-02-01T23:45:53.681Z", + "new_balance":"6366.33", + "value":"-3.44" + } + }, + { + "id":"6d55aaf0-e034-4c23-9814-6cedaf90ea3b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T01:24:11.899Z", + "completed":"2016-02-03T01:24:11.899Z", + "new_balance":"6365.63", + "value":"-0.70" + } + }, + { + "id":"a04a3e5b-9c8e-4ecc-ae8a-b09c6f12ce74", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T03:44:44.350Z", + "completed":"2016-02-04T03:44:44.350Z", + "new_balance":"6358.33", + "value":"-7.30" + } + }, + { + "id":"1250f374-b30a-4f4e-9c7d-dbc99b843492", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T00:36:18.123Z", + "completed":"2016-02-06T00:36:18.123Z", + "new_balance":"6348.23", + "value":"-10.10" + } + }, + { + "id":"2dd02b0d-f086-456b-9959-6f9fdcb816e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T06:14:50.902Z", + "completed":"2016-02-06T06:14:50.902Z", + "new_balance":"6338.77", + "value":"-9.46" + } + }, + { + "id":"4d949833-12f3-4c19-9a43-3a6f97ecdbf4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T01:59:22.002Z", + "completed":"2016-02-07T01:59:22.002Z", + "new_balance":"6334.97", + "value":"-3.80" + } + }, + { + "id":"e79d2542-24eb-44d7-987a-77de2cd54bbc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T22:10:52.675Z", + "completed":"2016-02-08T22:10:52.675Z", + "new_balance":"6333.85", + "value":"-1.12" + } + }, + { + "id":"f90caa64-8bb9-4d93-b28c-2449715dae48", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T11:28:19.953Z", + "completed":"2016-02-09T11:28:19.953Z", + "new_balance":"6329.26", + "value":"-4.59" + } + }, + { + "id":"c46afb2e-08cf-49fa-8b09-bc1e54be0f95", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T03:58:43.655Z", + "completed":"2016-02-11T03:58:43.655Z", + "new_balance":"6326.86", + "value":"-2.40" + } + }, + { + "id":"1bbfbad2-94a5-47d2-bfb0-fe3aae15c450", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T03:27:40.176Z", + "completed":"2016-02-13T03:27:40.176Z", + "new_balance":"6323.98", + "value":"-2.88" + } + }, + { + "id":"75b1e931-e734-4fcc-8a23-9a5e1eaea77e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T13:20:50.963Z", + "completed":"2016-02-17T13:20:50.963Z", + "new_balance":"6323.46", + "value":"-0.52" + } + }, + { + "id":"2c7f457f-53b9-4e35-a2c8-1e2235803bb5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T18:16:00.516Z", + "completed":"2016-02-19T18:16:00.516Z", + "new_balance":"6318.28", + "value":"-5.18" + } + }, + { + "id":"94021c72-e37e-460b-a532-04c7c12acb37", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T19:23:00.475Z", + "completed":"2016-02-21T19:23:00.475Z", + "new_balance":"6310.98", + "value":"-7.30" + } + }, + { + "id":"89daca29-802e-4054-a43b-f14fb253865c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T00:15:50.494Z", + "completed":"2016-02-24T00:15:50.494Z", + "new_balance":"6307.31", + "value":"-3.67" + } + }, + { + "id":"64eb9d60-2c08-4eb0-8286-86c4facaf2c9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T21:55:20.086Z", + "completed":"2016-02-26T21:55:20.086Z", + "new_balance":"6542.27", + "value":"234.96" + } + }, + { + "id":"2801a83c-98fe-4e14-8478-826d09e14ceb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T03:17:44.721Z", + "completed":"2016-03-01T03:17:44.721Z", + "new_balance":"6538.83", + "value":"-3.44" + } + }, + { + "id":"9a7bf04f-167b-42e3-976b-b8a30ca692e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T04:38:03.511Z", + "completed":"2016-03-01T04:38:03.511Z", + "new_balance":"6531.13", + "value":"-7.70" + } + }, + { + "id":"17939242-9e43-467d-8693-c8b053cc5ed2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T11:18:21.041Z", + "completed":"2016-03-01T11:18:21.041Z", + "new_balance":"6526.95", + "value":"-4.18" + } + }, + { + "id":"70916187-c897-4dd8-8e79-6ed70b405e6d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:46:23.894Z", + "completed":"2016-03-01T16:46:23.894Z", + "new_balance":"6523.51", + "value":"-3.44" + } + }, + { + "id":"4b0eaa7d-1e41-4ef7-a7eb-4c83d96736e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T03:32:16.863Z", + "completed":"2016-03-09T03:32:16.863Z", + "new_balance":"6517.69", + "value":"-5.82" + } + }, + { + "id":"98936cd9-ec3d-4390-90d1-3f8699d2e085", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T14:28:46.490Z", + "completed":"2016-03-09T14:28:46.490Z", + "new_balance":"6510.43", + "value":"-7.26" + } + }, + { + "id":"4f7efdaf-d5b2-4b2a-93b4-a779fdd62d8e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T23:32:36.287Z", + "completed":"2016-03-17T23:32:36.287Z", + "new_balance":"6502.69", + "value":"-7.74" + } + }, + { + "id":"557e401f-3f1b-4ce0-ad67-a3a582c60490", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T11:41:39.679Z", + "completed":"2016-03-18T11:41:39.679Z", + "new_balance":"6498.28", + "value":"-4.41" + } + }, + { + "id":"fbe97604-d50b-41fe-bdf8-e6182ddcbea6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T16:41:48.268Z", + "completed":"2016-03-18T16:41:48.268Z", + "new_balance":"6490.54", + "value":"-7.74" + } + }, + { + "id":"59661f85-7507-4243-9e7c-24cdaaef8613", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T16:51:53.443Z", + "completed":"2016-03-18T16:51:53.443Z", + "new_balance":"6489.93", + "value":"-0.61" + } + }, + { + "id":"2ac3dd80-8ea5-4bbb-812c-77b86dc69831", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T22:33:58.213Z", + "completed":"2016-03-18T22:33:58.213Z", + "new_balance":"6485.86", + "value":"-4.07" + } + }, + { + "id":"f4744e82-6fe0-403b-b91e-6b949adc41a8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T20:15:54.298Z", + "completed":"2016-03-22T20:15:54.298Z", + "new_balance":"6475.85", + "value":"-10.01" + } + }, + { + "id":"8315d131-a9a0-434f-93c7-c0fa1e50a9d3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T04:03:06.217Z", + "completed":"2016-03-29T04:03:06.217Z", + "new_balance":"6472.18", + "value":"-3.67" + } + }, + { + "id":"91f8899d-ca6f-484e-a038-c1bacddd9092", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T06:27:49.555Z", + "completed":"2016-03-29T06:27:49.555Z", + "new_balance":"6707.14", + "value":"234.96" + } + }, + { + "id":"21b095f7-5b74-4653-b8eb-95c60d6b1ab8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T21:52:29.557Z", + "completed":"2016-03-31T21:52:29.557Z", + "new_balance":"6683.90", + "value":"-23.24" + } + }, + { + "id":"008919c2-03d7-4f03-9ff0-2533a456747c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T02:18:26.459Z", + "completed":"2016-04-01T02:18:26.459Z", + "new_balance":"6680.46", + "value":"-3.44" + } + }, + { + "id":"628c34e6-1867-48e4-b79c-cda49b1c9f24", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T09:32:04.307Z", + "completed":"2016-04-01T09:32:04.307Z", + "new_balance":"6672.76", + "value":"-7.70" + } + }, + { + "id":"c2573654-92e1-4377-991f-5efc028ea58b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:25:14.199Z", + "completed":"2016-04-01T14:25:14.199Z", + "new_balance":"6669.32", + "value":"-3.44" + } + }, + { + "id":"a770b90c-a45e-4cec-aef5-bcf5e705946c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T17:32:55.185Z", + "completed":"2016-04-01T17:32:55.185Z", + "new_balance":"6665.14", + "value":"-4.18" + } + }, + { + "id":"b7d287c6-e465-47f4-9992-ba89cb5c4049", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T16:05:36.146Z", + "completed":"2016-04-02T16:05:36.146Z", + "new_balance":"6657.58", + "value":"-7.56" + } + }, + { + "id":"9f87435d-058a-4eb4-8170-a62cad316832", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T04:05:00.419Z", + "completed":"2016-04-05T04:05:00.419Z", + "new_balance":"6654.14", + "value":"-3.44" + } + }, + { + "id":"2684f70b-1618-4345-8f2a-0d53164d68d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T05:01:54.496Z", + "completed":"2016-04-05T05:01:54.496Z", + "new_balance":"6653.55", + "value":"-0.59" + } + }, + { + "id":"6694ca6f-d6d3-4c6c-a320-577e90c74e17", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T07:44:57.260Z", + "completed":"2016-04-05T07:44:57.260Z", + "new_balance":"6652.85", + "value":"-0.70" + } + }, + { + "id":"1621c948-3b9a-419c-88bd-e76a63214f40", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T19:46:49.703Z", + "completed":"2016-04-05T19:46:49.703Z", + "new_balance":"6645.55", + "value":"-7.30" + } + }, + { + "id":"44c7ca49-8fcb-4f71-9da8-3142c754ed68", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T21:22:25.330Z", + "completed":"2016-04-05T21:22:25.330Z", + "new_balance":"6644.31", + "value":"-1.24" + } + }, + { + "id":"7a5829f2-c983-4c87-8da9-c98fb01744e9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T22:29:46.259Z", + "completed":"2016-04-05T22:29:46.259Z", + "new_balance":"6640.13", + "value":"-4.18" + } + }, + { + "id":"0a922a5b-f1f8-4ccd-b645-1a98c7b25443", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T22:37:46.224Z", + "completed":"2016-04-05T22:37:46.224Z", + "new_balance":"6634.68", + "value":"-5.45" + } + }, + { + "id":"3ac99af0-716e-43b7-9e5b-03ae3266df2d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T16:56:26.783Z", + "completed":"2016-04-08T16:56:26.783Z", + "new_balance":"6626.59", + "value":"-8.09" + } + }, + { + "id":"cac8c30c-3539-402d-95d9-76682d78fdf9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T15:29:47.275Z", + "completed":"2016-04-10T15:29:47.275Z", + "new_balance":"6620.47", + "value":"-6.12" + } + }, + { + "id":"53084dff-1de3-4ad1-8987-4e6abd28a640", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T06:29:34.203Z", + "completed":"2016-04-11T06:29:34.203Z", + "new_balance":"6613.17", + "value":"-7.30" + } + }, + { + "id":"9dda2936-c103-41a7-afcf-bbe96e337ca2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T11:19:45.769Z", + "completed":"2016-04-11T11:19:45.769Z", + "new_balance":"6610.49", + "value":"-2.68" + } + }, + { + "id":"e9c04ae7-474b-4e5f-81a5-fd9a5777155b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T12:07:13.035Z", + "completed":"2016-04-13T12:07:13.035Z", + "new_balance":"6606.82", + "value":"-3.67" + } + }, + { + "id":"26531c69-39ae-4afb-a1f0-29267b44e012", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T09:00:36.065Z", + "completed":"2016-04-18T09:00:36.065Z", + "new_balance":"6841.78", + "value":"234.96" + } + }, + { + "id":"3073e8ab-beb3-481f-bab7-7dfcb82d32a6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T10:37:13.329Z", + "completed":"2016-04-25T10:37:13.329Z", + "new_balance":"6818.54", + "value":"-23.24" + } + }, + { + "id":"666b3735-845f-4977-b2cc-dd2d75614a34", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T07:02:29.375Z", + "completed":"2016-05-02T07:02:29.375Z", + "new_balance":"6810.84", + "value":"-7.70" + } + }, + { + "id":"8f4a058a-ebbd-4ec0-8f40-502eb841477c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T08:44:00.513Z", + "completed":"2016-05-02T08:44:00.513Z", + "new_balance":"6807.40", + "value":"-3.44" + } + }, + { + "id":"bb83481d-3067-4585-b940-03709f784dd9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T17:44:29.271Z", + "completed":"2016-05-02T17:44:29.271Z", + "new_balance":"6803.22", + "value":"-4.18" + } + }, + { + "id":"904011c8-c30b-4fe4-b032-2af55c6c4fc0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T22:36:38.541Z", + "completed":"2016-05-02T22:36:38.541Z", + "new_balance":"6799.78", + "value":"-3.44" + } + }, + { + "id":"def5f8b1-28c8-42a5-b435-d51abda09d07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T02:58:24.328Z", + "completed":"2016-05-04T02:58:24.328Z", + "new_balance":"6799.08", + "value":"-0.70" + } + }, + { + "id":"630d80f0-f81d-4ded-91f0-224a13b60dcc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T21:26:22.328Z", + "completed":"2016-05-04T21:26:22.328Z", + "new_balance":"6791.78", + "value":"-7.30" + } + }, + { + "id":"55b498c8-4085-40f1-8373-093e69e46513", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T17:00:23.548Z", + "completed":"2016-05-06T17:00:23.548Z", + "new_balance":"6784.34", + "value":"-7.44" + } + }, + { + "id":"db9601aa-0f97-44e8-96c9-5f0dfa74af43", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T00:51:57.643Z", + "completed":"2016-05-07T00:51:57.643Z", + "new_balance":"6776.78", + "value":"-7.56" + } + }, + { + "id":"3cea6e89-2e74-4a20-b878-e3309296b157", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T08:45:27.343Z", + "completed":"2016-05-07T08:45:27.343Z", + "new_balance":"6774.07", + "value":"-2.71" + } + }, + { + "id":"7d91d296-9a57-4de4-9e1c-d3b86bb8179f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T19:33:12.480Z", + "completed":"2016-05-09T19:33:12.480Z", + "new_balance":"6772.83", + "value":"-1.24" + } + }, + { + "id":"849cf451-850c-4525-a2cd-420eda3331fb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T23:08:09.983Z", + "completed":"2016-05-09T23:08:09.983Z", + "new_balance":"6768.24", + "value":"-4.59" + } + }, + { + "id":"96850b5b-59e5-491f-b9c3-5880a16895fd", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T03:16:22.850Z", + "completed":"2016-05-13T03:16:22.850Z", + "new_balance":"6766.11", + "value":"-2.13" + } + }, + { + "id":"cc21aa0b-6af8-4de0-83d0-9494a790ae40", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T05:16:05.243Z", + "completed":"2016-05-13T05:16:05.243Z", + "new_balance":"6765.41", + "value":"-0.70" + } + }, + { + "id":"37d3ed2b-f21b-4971-9578-847f909a0508", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T11:25:13.708Z", + "completed":"2016-05-13T11:25:13.708Z", + "new_balance":"6762.70", + "value":"-2.71" + } + }, + { + "id":"92df9281-ea78-4ddc-8402-2192ec41ccd6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T01:59:19.618Z", + "completed":"2016-05-14T01:59:19.618Z", + "new_balance":"6758.24", + "value":"-4.46" + } + }, + { + "id":"e661e5d3-81dc-421b-bb6c-ede4e6a40691", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T05:23:36.001Z", + "completed":"2016-05-14T05:23:36.001Z", + "new_balance":"6750.94", + "value":"-7.30" + } + }, + { + "id":"0ec2e9ae-23ea-4664-aa80-ec0b71ce2070", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T07:00:10.148Z", + "completed":"2016-05-15T07:00:10.148Z", + "new_balance":"6747.27", + "value":"-3.67" + } + }, + { + "id":"30758e82-3fc7-4b5b-af36-9cbfba512976", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T03:32:35.280Z", + "completed":"2016-05-30T03:32:35.280Z", + "new_balance":"6982.23", + "value":"234.96" + } + }, + { + "id":"6527e3f1-ad40-42bc-890b-6870b913a1ea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T08:49:41.928Z", + "completed":"2016-05-30T08:49:41.928Z", + "new_balance":"6958.99", + "value":"-23.24" + } + }, + { + "id":"93a0b348-c67b-46b4-8bd4-65bc78ead148", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T03:01:11.444Z", + "completed":"2016-06-01T03:01:11.444Z", + "new_balance":"6955.55", + "value":"-3.44" + } + }, + { + "id":"34453c81-567d-4237-a824-516c0c872153", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T08:01:44.446Z", + "completed":"2016-06-01T08:01:44.446Z", + "new_balance":"6947.85", + "value":"-7.70" + } + }, + { + "id":"b017bea6-f5e1-4742-ae7f-30d347f8b070", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T21:00:55.345Z", + "completed":"2016-06-01T21:00:55.345Z", + "new_balance":"6943.67", + "value":"-4.18" + } + }, + { + "id":"f003026d-4b1d-4049-9d07-89c72924bcd7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T23:22:26.778Z", + "completed":"2016-06-01T23:22:26.778Z", + "new_balance":"6940.23", + "value":"-3.44" + } + }, + { + "id":"0f41cdf3-9f18-4251-9089-93d249626857", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T22:29:43.663Z", + "completed":"2016-06-04T22:29:43.663Z", + "new_balance":"6932.97", + "value":"-7.26" + } + }, + { + "id":"109df7c9-b56b-41b5-91e1-4e9a74d97590", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T23:01:40.672Z", + "completed":"2016-06-04T23:01:40.672Z", + "new_balance":"6927.15", + "value":"-5.82" + } + }, + { + "id":"49422661-ad5e-4001-8b84-701c9231a02a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T04:57:39.934Z", + "completed":"2016-06-11T04:57:39.934Z", + "new_balance":"6919.41", + "value":"-7.74" + } + }, + { + "id":"82e19891-a4ab-4173-9dc5-f2c8d54809f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T09:29:54.756Z", + "completed":"2016-06-11T09:29:54.756Z", + "new_balance":"6911.67", + "value":"-7.74" + } + }, + { + "id":"273b5cc8-fcf6-4305-8f65-62d37e3a57d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T17:50:27.067Z", + "completed":"2016-06-11T17:50:27.067Z", + "new_balance":"6907.26", + "value":"-4.41" + } + }, + { + "id":"4af12033-ebeb-4f73-831d-6e6a69b16fc8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T13:13:53.541Z", + "completed":"2016-06-12T13:13:53.541Z", + "new_balance":"6903.19", + "value":"-4.07" + } + }, + { + "id":"8accc874-3616-4e37-a866-41916ab62ad4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T21:12:05.210Z", + "completed":"2016-06-12T21:12:05.210Z", + "new_balance":"6902.58", + "value":"-0.61" + } + }, + { + "id":"a74e7dad-a27e-4564-bc24-722f45851af2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:37:06.549Z", + "completed":"2016-06-16T00:37:06.549Z", + "new_balance":"6892.57", + "value":"-10.01" + } + }, + { + "id":"db7b04bd-e9fd-466a-9be3-2b4d21c67796", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T03:20:50.914Z", + "completed":"2016-06-29T03:20:50.914Z", + "new_balance":"6888.90", + "value":"-3.67" + } + }, + { + "id":"443c5a0b-3609-4fea-9775-6c0cb5991015", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T10:11:11.475Z", + "completed":"2016-06-30T10:11:11.475Z", + "new_balance":"7123.86", + "value":"234.96" + } + }, + { + "id":"e340b690-0925-4dda-bb04-cbb59713eda7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T22:41:34.801Z", + "completed":"2016-06-30T22:41:34.801Z", + "new_balance":"7100.62", + "value":"-23.24" + } + }, + { + "id":"af156790-0252-473e-8670-90b8e2d8c6d3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T02:01:11.669Z", + "completed":"2016-07-01T02:01:11.669Z", + "new_balance":"7097.18", + "value":"-3.44" + } + }, + { + "id":"81f5d4d2-6fbf-4dd7-9905-9f55cf73cf96", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T04:05:57.531Z", + "completed":"2016-07-01T04:05:57.531Z", + "new_balance":"7093.00", + "value":"-4.18" + } + }, + { + "id":"1e1d5965-151e-4bad-8c24-1eb7a0b6fe12", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T11:45:41.551Z", + "completed":"2016-07-01T11:45:41.551Z", + "new_balance":"7089.56", + "value":"-3.44" + } + }, + { + "id":"c6e50795-c70b-4f1b-aa4f-e9c07b68e538", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T19:32:14.718Z", + "completed":"2016-07-01T19:32:14.718Z", + "new_balance":"7081.86", + "value":"-7.70" + } + }, + { + "id":"8e9fb5dd-d8de-4174-bcb4-74415e88a573", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T01:24:28.228Z", + "completed":"2016-07-05T01:24:28.228Z", + "new_balance":"7071.82", + "value":"-10.04" + } + }, + { + "id":"839a4444-8f64-4b24-9324-e0e8f32943eb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T15:19:20.319Z", + "completed":"2016-07-05T15:19:20.319Z", + "new_balance":"7064.52", + "value":"-7.30" + } + }, + { + "id":"df0fb3cb-d5e9-400a-a7f7-bd673649e369", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T06:51:16.259Z", + "completed":"2016-07-08T06:51:16.259Z", + "new_balance":"7063.12", + "value":"-1.40" + } + }, + { + "id":"6b2bff85-e4d5-4f4c-999e-e30b89b46dc2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T09:47:45.943Z", + "completed":"2016-07-10T09:47:45.943Z", + "new_balance":"7058.46", + "value":"-4.66" + } + }, + { + "id":"0ca63a8a-8ee3-4449-b1c3-fa33fb4ce657", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T01:12:59.469Z", + "completed":"2016-07-12T01:12:59.469Z", + "new_balance":"7055.02", + "value":"-3.44" + } + }, + { + "id":"ac15a0b3-8410-4eea-beda-93b437daaa9a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T14:43:10.878Z", + "completed":"2016-07-12T14:43:10.878Z", + "new_balance":"7049.61", + "value":"-5.41" + } + }, + { + "id":"b94f3dbe-29fd-4c6a-9064-7425797b04f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T03:48:19.721Z", + "completed":"2016-07-13T03:48:19.721Z", + "new_balance":"7049.10", + "value":"-0.51" + } + }, + { + "id":"eb1cdea7-4984-451e-9ef6-df19c2b7c738", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T21:26:29.066Z", + "completed":"2016-07-13T21:26:29.066Z", + "new_balance":"7048.64", + "value":"-0.46" + } + }, + { + "id":"a0ca7d8d-b8a2-47bc-8f21-49347683958e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T12:34:31.685Z", + "completed":"2016-07-18T12:34:31.685Z", + "new_balance":"7039.12", + "value":"-9.52" + } + }, + { + "id":"2571f39c-d156-4acc-b24c-c48288e2cbec", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T11:29:09.924Z", + "completed":"2016-07-20T11:29:09.924Z", + "new_balance":"7032.29", + "value":"-6.83" + } + }, + { + "id":"65f97d5a-b65c-4428-a6f0-c631701ee5b5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T22:20:01.023Z", + "completed":"2016-07-20T22:20:01.023Z", + "new_balance":"7024.99", + "value":"-7.30" + } + }, + { + "id":"448f7ce9-904c-43d0-8c37-2a799ff080d9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T07:36:09.799Z", + "completed":"2016-07-24T07:36:09.799Z", + "new_balance":"7022.31", + "value":"-2.68" + } + }, + { + "id":"6207ffff-5c9f-451a-959a-0f56e90d3dcb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T12:52:30.871Z", + "completed":"2016-07-29T12:52:30.871Z", + "new_balance":"7018.64", + "value":"-3.67" + } + }, + { + "id":"0f9dc51c-701f-424a-a0bc-81d22486c251", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T19:13:10.359Z", + "completed":"2016-07-29T19:13:10.359Z", + "new_balance":"7253.60", + "value":"234.96" + } + }, + { + "id":"24c6e6fe-b70f-459f-9ad3-77c239b61c45", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:34:48.650Z", + "completed":"2016-07-30T05:34:48.650Z", + "new_balance":"7230.36", + "value":"-23.24" + } + }, + { + "id":"db17c842-b92a-4415-b364-437cd2727b1d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T08:28:36.238Z", + "completed":"2016-08-01T08:28:36.238Z", + "new_balance":"7226.18", + "value":"-4.18" + } + }, + { + "id":"d9e63c3a-cc07-42f5-83bc-5fee34ddd9d0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T16:27:13.674Z", + "completed":"2016-08-01T16:27:13.674Z", + "new_balance":"7222.74", + "value":"-3.44" + } + }, + { + "id":"33a06d5b-3712-4bbb-9f3c-6cdd111ca8bb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T20:48:02.732Z", + "completed":"2016-08-01T20:48:02.732Z", + "new_balance":"7215.04", + "value":"-7.70" + } + }, + { + "id":"cfb67a2b-3c9b-4fba-a579-3493f07b2119", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T22:34:15.972Z", + "completed":"2016-08-01T22:34:15.972Z", + "new_balance":"7211.60", + "value":"-3.44" + } + }, + { + "id":"59752419-a125-4831-8a9b-3463dce2369c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T22:03:15.421Z", + "completed":"2016-08-03T22:03:15.421Z", + "new_balance":"7210.90", + "value":"-0.70" + } + }, + { + "id":"3e7106cf-070c-4064-a0c7-9a0528ffa090", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T15:20:26.922Z", + "completed":"2016-08-04T15:20:26.922Z", + "new_balance":"7203.60", + "value":"-7.30" + } + }, + { + "id":"e30e5e35-cf8d-4bf5-8613-ff23907a0917", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:22:30.591Z", + "completed":"2016-08-08T03:22:30.591Z", + "new_balance":"7202.48", + "value":"-1.12" + } + }, + { + "id":"5c33516c-1e6a-403f-a4b3-2b3744100d07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T07:12:48.884Z", + "completed":"2016-08-08T07:12:48.884Z", + "new_balance":"7192.38", + "value":"-10.10" + } + }, + { + "id":"77a53ef7-f634-46a4-b61a-381264124d22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T07:15:53.788Z", + "completed":"2016-08-08T07:15:53.788Z", + "new_balance":"7182.92", + "value":"-9.46" + } + }, + { + "id":"10bf6d01-5d4e-4f92-86ed-0f8e36688be0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T23:42:33.467Z", + "completed":"2016-08-08T23:42:33.467Z", + "new_balance":"7179.12", + "value":"-3.80" + } + }, + { + "id":"700ad0e0-4f5b-4066-8f40-308658ab8442", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T01:59:07.174Z", + "completed":"2016-08-09T01:59:07.174Z", + "new_balance":"7174.53", + "value":"-4.59" + } + }, + { + "id":"8da7ca9d-4a0c-4576-b34f-332fd3fb3d29", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T15:09:34.760Z", + "completed":"2016-08-14T15:09:34.760Z", + "new_balance":"7172.13", + "value":"-2.40" + } + }, + { + "id":"47e8c23e-d19b-473e-8eff-fbd799f137ea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T01:05:27.368Z", + "completed":"2016-08-15T01:05:27.368Z", + "new_balance":"7169.25", + "value":"-2.88" + } + }, + { + "id":"ddd8a3cd-162f-4553-9fd7-8caed9e0adbc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T23:23:14.694Z", + "completed":"2016-08-19T23:23:14.694Z", + "new_balance":"7168.73", + "value":"-0.52" + } + }, + { + "id":"d6d0d176-7b00-498c-ba2a-56b8879ebcce", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T06:49:18.830Z", + "completed":"2016-08-22T06:49:18.830Z", + "new_balance":"7163.55", + "value":"-5.18" + } + }, + { + "id":"4b9eba58-855e-4b07-9ca0-f5cb22fbaee1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T08:41:37.474Z", + "completed":"2016-08-26T08:41:37.474Z", + "new_balance":"7156.25", + "value":"-7.30" + } + }, + { + "id":"7b202608-15c4-4055-8b47-0d8967288e25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T09:36:47.582Z", + "completed":"2016-08-28T09:36:47.582Z", + "new_balance":"7133.01", + "value":"-23.24" + } + }, + { + "id":"bc8a33e1-cf64-424d-89a8-9b002ca370e2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T00:49:00.901Z", + "completed":"2016-08-29T00:49:00.901Z", + "new_balance":"7367.97", + "value":"234.96" + } + }, + { + "id":"da497405-9da8-4bde-995f-630f7809a35d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T09:23:54.393Z", + "completed":"2016-08-29T09:23:54.393Z", + "new_balance":"7364.30", + "value":"-3.67" + } + }, + { + "id":"a44a144d-8916-4242-8cbd-a95cbb5a7f63", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T13:18:31.626Z", + "completed":"2016-08-30T13:18:31.626Z", + "new_balance":"7341.06", + "value":"-23.24" + } + }, + { + "id":"825f01b4-828a-4202-a5f8-545f0d0c4e4b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T03:33:10.983Z", + "completed":"2016-09-01T03:33:10.983Z", + "new_balance":"7333.36", + "value":"-7.70" + } + }, + { + "id":"c623666e-999d-40c6-b998-3fa9fc87721e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:26:36.784Z", + "completed":"2016-09-01T09:26:36.784Z", + "new_balance":"7329.92", + "value":"-3.44" + } + }, + { + "id":"abec0251-4061-4d10-9feb-eb124ba03b2f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T12:39:01.551Z", + "completed":"2016-09-01T12:39:01.551Z", + "new_balance":"7326.48", + "value":"-3.44" + } + }, + { + "id":"bf7acedb-f9c4-4122-802c-4ed440e6b111", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T21:10:04.860Z", + "completed":"2016-09-01T21:10:04.860Z", + "new_balance":"7322.30", + "value":"-4.18" + } + }, + { + "id":"387a4091-6e17-4821-983e-356ad990838a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T01:41:03.610Z", + "completed":"2016-09-09T01:41:03.610Z", + "new_balance":"7315.04", + "value":"-7.26" + } + }, + { + "id":"77fc7164-58ff-4c24-932b-63c3850a6fb5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T13:56:16.428Z", + "completed":"2016-09-09T13:56:16.428Z", + "new_balance":"7309.22", + "value":"-5.82" + } + }, + { + "id":"b770d1c7-b662-4d27-94a7-1658e49e62b6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T21:31:04.261Z", + "completed":"2016-09-17T21:31:04.261Z", + "new_balance":"7301.48", + "value":"-7.74" + } + }, + { + "id":"92004f99-9053-4818-9487-a4b75cac430b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T08:50:44.154Z", + "completed":"2016-09-18T08:50:44.154Z", + "new_balance":"7293.74", + "value":"-7.74" + } + }, + { + "id":"29854725-7fa6-473d-85d4-76381c3bf608", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T09:14:56.629Z", + "completed":"2016-09-18T09:14:56.629Z", + "new_balance":"7293.13", + "value":"-0.61" + } + }, + { + "id":"3882571e-30b2-4763-8373-88e08cc9474f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T18:10:36.735Z", + "completed":"2016-09-18T18:10:36.735Z", + "new_balance":"7288.72", + "value":"-4.41" + } + }, + { + "id":"ea46461b-5f47-4e02-aea8-9c36721ea2d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T23:00:46.949Z", + "completed":"2016-09-18T23:00:46.949Z", + "new_balance":"7284.65", + "value":"-4.07" + } + }, + { + "id":"96abe2d6-5644-4c9c-bdfe-ceaf678a7633", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T11:20:58.951Z", + "completed":"2016-09-22T11:20:58.951Z", + "new_balance":"7274.64", + "value":"-10.01" + } + }, + { + "id":"18c8fe44-669e-47fd-aeb6-5b756ff8c987", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T08:27:12.383Z", + "completed":"2016-09-29T08:27:12.383Z", + "new_balance":"7509.60", + "value":"234.96" + } + }, + { + "id":"31185731-16a4-41a8-ac9e-f474f349eb73", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T23:51:30.831Z", + "completed":"2016-09-29T23:51:30.831Z", + "new_balance":"7505.93", + "value":"-3.67" + } + }, + { + "id":"fccd718d-6805-4893-8250-76fc6eb48b8f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T13:24:38.158Z", + "completed":"2016-09-30T13:24:38.158Z", + "new_balance":"7482.69", + "value":"-23.24" + } + }, + { + "id":"74b2827f-0e1b-48c7-ae6a-151b3d5216f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T13:51:59.208Z", + "completed":"2016-10-01T13:51:59.208Z", + "new_balance":"7479.25", + "value":"-3.44" + } + }, + { + "id":"3783c678-8fde-497b-b55f-1abff89b02cc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T17:43:20.420Z", + "completed":"2016-10-01T17:43:20.420Z", + "new_balance":"7471.55", + "value":"-7.70" + } + }, + { + "id":"342d7a4f-ae65-40b7-baa0-8d5e59c442b5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T21:49:05.095Z", + "completed":"2016-10-01T21:49:05.095Z", + "new_balance":"7467.37", + "value":"-4.18" + } + }, + { + "id":"35ea23cc-76b5-401d-b177-6b4a20c850a4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T23:11:32.648Z", + "completed":"2016-10-01T23:11:32.648Z", + "new_balance":"7463.93", + "value":"-3.44" + } + }, + { + "id":"53ca2afa-a7e3-4e84-be0d-286a605e1568", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T11:53:24.171Z", + "completed":"2016-10-02T11:53:24.171Z", + "new_balance":"7456.37", + "value":"-7.56" + } + }, + { + "id":"43f50383-81a6-4293-877a-d7a33078ee9c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T00:29:55.788Z", + "completed":"2016-10-05T00:29:55.788Z", + "new_balance":"7455.67", + "value":"-0.70" + } + }, + { + "id":"dd78e92b-a08c-4f4c-bcd5-38e3494da5e2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T01:49:19.433Z", + "completed":"2016-10-05T01:49:19.433Z", + "new_balance":"7455.08", + "value":"-0.59" + } + }, + { + "id":"aff02b9c-670c-47d7-b368-d00b431a8694", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T08:00:14.252Z", + "completed":"2016-10-05T08:00:14.252Z", + "new_balance":"7447.78", + "value":"-7.30" + } + }, + { + "id":"fec48fa4-b62f-4b37-8c01-2766df2d2158", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T10:34:12.746Z", + "completed":"2016-10-05T10:34:12.746Z", + "new_balance":"7442.33", + "value":"-5.45" + } + }, + { + "id":"eeaadccd-2ffb-4b1d-97c7-741c6554f498", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:23:32.080Z", + "completed":"2016-10-05T14:23:32.080Z", + "new_balance":"7441.09", + "value":"-1.24" + } + }, + { + "id":"e5d6eabe-6bc7-4770-8e0b-a80520466381", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T18:56:29.286Z", + "completed":"2016-10-05T18:56:29.286Z", + "new_balance":"7436.91", + "value":"-4.18" + } + }, + { + "id":"59ea1050-39ad-4064-bc9d-3fde088bc79e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T22:21:35.785Z", + "completed":"2016-10-05T22:21:35.785Z", + "new_balance":"7433.47", + "value":"-3.44" + } + }, + { + "id":"608caeeb-3bc8-43fe-b473-d0005c2edbfb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T06:03:21.966Z", + "completed":"2016-10-09T06:03:21.966Z", + "new_balance":"7425.38", + "value":"-8.09" + } + }, + { + "id":"4a05c4f7-0183-4387-a91b-1392c339c138", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T12:35:29.580Z", + "completed":"2016-10-11T12:35:29.580Z", + "new_balance":"7419.26", + "value":"-6.12" + } + }, + { + "id":"70c76778-3ae8-4eb7-a5ab-82dd9b47cb0d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T13:50:44.062Z", + "completed":"2016-10-12T13:50:44.062Z", + "new_balance":"7416.58", + "value":"-2.68" + } + }, + { + "id":"1c6af9c5-e017-4a1d-bfbe-8cf8f9a3b874", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T23:09:48.313Z", + "completed":"2016-10-12T23:09:48.313Z", + "new_balance":"7409.28", + "value":"-7.30" + } + }, + { + "id":"1f60304c-4f2d-4b66-a75f-7dfab92cd73b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T18:56:02.183Z", + "completed":"2016-10-20T18:56:02.183Z", + "new_balance":"7405.61", + "value":"-3.67" + } + }, + { + "id":"1c01ce18-3ded-48c1-b1a6-903a6d086586", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T23:43:10.281Z", + "completed":"2016-10-29T23:43:10.281Z", + "new_balance":"7640.57", + "value":"234.96" + } + }, + { + "id":"b8043ab2-91be-49f4-b9f3-9f0105a8cd8f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T04:43:02.876Z", + "completed":"2016-10-30T04:43:02.876Z", + "new_balance":"7617.33", + "value":"-23.24" + } + }, + { + "id":"59aa3b77-5c34-4e68-8f62-976c545d55b4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T11:43:15.873Z", + "completed":"2016-11-02T11:43:15.873Z", + "new_balance":"7613.15", + "value":"-4.18" + } + }, + { + "id":"f2bea0a6-10ba-4cdb-b419-253b2b0e3074", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T12:32:06.811Z", + "completed":"2016-11-02T12:32:06.811Z", + "new_balance":"7605.45", + "value":"-7.70" + } + }, + { + "id":"49e180d1-14f8-473f-9f9c-87901857f72c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T14:56:47.183Z", + "completed":"2016-11-02T14:56:47.183Z", + "new_balance":"7602.01", + "value":"-3.44" + } + }, + { + "id":"e1333329-630f-401c-91e4-dc906a6266db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T15:29:43.451Z", + "completed":"2016-11-02T15:29:43.451Z", + "new_balance":"7598.57", + "value":"-3.44" + } + }, + { + "id":"13dda293-97a5-4ccf-8e43-197803a0ce41", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T14:23:32.204Z", + "completed":"2016-11-04T14:23:32.204Z", + "new_balance":"7597.87", + "value":"-0.70" + } + }, + { + "id":"84b3a95a-a0c5-417c-9837-2e4015ac7eee", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T18:00:12.703Z", + "completed":"2016-11-04T18:00:12.703Z", + "new_balance":"7590.57", + "value":"-7.30" + } + }, + { + "id":"c415e436-8e56-4060-9279-fe4d8f019cea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:13:27.230Z", + "completed":"2016-11-06T13:13:27.230Z", + "new_balance":"7583.13", + "value":"-7.44" + } + }, + { + "id":"92cacb31-7bba-4ed4-a41d-6ebdc363c236", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T01:18:35.110Z", + "completed":"2016-11-07T01:18:35.110Z", + "new_balance":"7575.57", + "value":"-7.56" + } + }, + { + "id":"86d4b377-ed8c-4410-85e8-a8c578df9f72", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T10:25:16.312Z", + "completed":"2016-11-07T10:25:16.312Z", + "new_balance":"7572.86", + "value":"-2.71" + } + }, + { + "id":"938b3adf-766f-44c0-9429-065ee107f35a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T09:37:15.064Z", + "completed":"2016-11-09T09:37:15.064Z", + "new_balance":"7571.62", + "value":"-1.24" + } + }, + { + "id":"4c5ea67b-7cff-435c-be4c-3ba86c5d36e0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T15:48:50.558Z", + "completed":"2016-11-09T15:48:50.558Z", + "new_balance":"7567.03", + "value":"-4.59" + } + }, + { + "id":"21381868-accf-4655-8cb5-6fe1305ae30b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T16:37:31.048Z", + "completed":"2016-11-13T16:37:31.048Z", + "new_balance":"7564.90", + "value":"-2.13" + } + }, + { + "id":"6d4155c2-039c-4327-9882-8f48f8e5720d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T17:02:10.701Z", + "completed":"2016-11-13T17:02:10.701Z", + "new_balance":"7564.20", + "value":"-0.70" + } + }, + { + "id":"a067ed82-0a6f-4d6e-a0d7-a684cb780654", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T22:12:23.192Z", + "completed":"2016-11-13T22:12:23.192Z", + "new_balance":"7561.49", + "value":"-2.71" + } + }, + { + "id":"4960b122-9ae0-4ff3-9a56-e8cf4b7e7035", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T06:31:18.537Z", + "completed":"2016-11-14T06:31:18.537Z", + "new_balance":"7557.03", + "value":"-4.46" + } + }, + { + "id":"485a537b-0eb1-4f65-b969-e75f70380a17", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:45:00.388Z", + "completed":"2016-11-14T17:45:00.388Z", + "new_balance":"7549.73", + "value":"-7.30" + } + }, + { + "id":"fd8f4915-e059-43fb-88bd-fc2b4723e7d2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T06:41:09.365Z", + "completed":"2016-11-15T06:41:09.365Z", + "new_balance":"7546.06", + "value":"-3.67" + } + }, + { + "id":"6ab9f2a2-c82f-4f6a-971e-863ffe641e2a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T10:18:57.941Z", + "completed":"2016-11-30T10:18:57.941Z", + "new_balance":"7522.82", + "value":"-23.24" + } + }, + { + "id":"09b12693-e758-4941-962d-7b459e1cafdb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T19:38:56.310Z", + "completed":"2016-11-30T19:38:56.310Z", + "new_balance":"7757.78", + "value":"234.96" + } + }, + { + "id":"726b50f0-6186-4bef-a02e-ce1d779634ca", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T02:17:30.868Z", + "completed":"2016-12-01T02:17:30.868Z", + "new_balance":"7754.34", + "value":"-3.44" + } + }, + { + "id":"e9da6409-232e-49d1-b432-03ebd4481c5c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T18:02:36.314Z", + "completed":"2016-12-01T18:02:36.314Z", + "new_balance":"7750.16", + "value":"-4.18" + } + }, + { + "id":"9baeb777-ef7b-470b-a6fb-49b5f9f2d85e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T21:08:03.297Z", + "completed":"2016-12-01T21:08:03.297Z", + "new_balance":"7746.72", + "value":"-3.44" + } + }, + { + "id":"9b390b23-abd3-4f70-aa87-0eb44810b8fc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T23:08:08.891Z", + "completed":"2016-12-01T23:08:08.891Z", + "new_balance":"7739.02", + "value":"-7.70" + } + }, + { + "id":"f36f6a03-cbcc-4d4e-9045-a229825ca79c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T01:17:01.631Z", + "completed":"2016-12-04T01:17:01.631Z", + "new_balance":"7731.76", + "value":"-7.26" + } + }, + { + "id":"64563bc7-c261-4b54-8d99-e4e0d106d5ac", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T09:56:17.746Z", + "completed":"2016-12-04T09:56:17.746Z", + "new_balance":"7725.94", + "value":"-5.82" + } + }, + { + "id":"5779edd0-33df-4507-b7e4-93eb7f7730a9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:30:40.361Z", + "completed":"2016-12-11T06:30:40.361Z", + "new_balance":"7721.53", + "value":"-4.41" + } + }, + { + "id":"5b2b9e93-e0e1-4858-b257-2e8b233f2422", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T13:11:22.682Z", + "completed":"2016-12-11T13:11:22.682Z", + "new_balance":"7713.79", + "value":"-7.74" + } + }, + { + "id":"55453275-a5ec-4f3d-a6f1-5acc4ea02920", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T15:22:41.246Z", + "completed":"2016-12-11T15:22:41.246Z", + "new_balance":"7706.05", + "value":"-7.74" + } + }, + { + "id":"18601b62-3e74-438d-b46d-713daab691cf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T08:08:32.464Z", + "completed":"2016-12-12T08:08:32.464Z", + "new_balance":"7705.44", + "value":"-0.61" + } + }, + { + "id":"be19a453-9657-4cff-b9be-acd1cce3e3d7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T19:59:20.101Z", + "completed":"2016-12-12T19:59:20.101Z", + "new_balance":"7701.37", + "value":"-4.07" + } + }, + { + "id":"f9f84b86-5e8b-4af3-8697-e1a512474027", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T13:46:50.997Z", + "completed":"2016-12-16T13:46:50.997Z", + "new_balance":"7691.36", + "value":"-10.01" + } + }, + { + "id":"52bccbbc-6aa0-4a1d-8506-5f5b25419914", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T04:00:45.667Z", + "completed":"2016-12-29T04:00:45.667Z", + "new_balance":"7687.69", + "value":"-3.67" + } + }, + { + "id":"6996aaea-3ff9-4e5e-965f-e5fff5f462e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T07:51:45.470Z", + "completed":"2016-12-30T07:51:45.470Z", + "new_balance":"7664.45", + "value":"-23.24" + } + }, + { + "id":"76f350b4-242a-421d-8bd6-daad03e5948b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T14:23:39.086Z", + "completed":"2016-12-30T14:23:39.086Z", + "new_balance":"7899.41", + "value":"234.96" + } + }, + { + "id":"ed56b825-a20f-4eea-a8fc-6c77a3b50729", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T08:59:58.291Z", + "completed":"2017-01-01T08:59:58.291Z", + "new_balance":"7895.23", + "value":"-4.18" + } + }, + { + "id":"7860a468-2f74-4df3-8ebd-774158781ddb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T13:28:17.832Z", + "completed":"2017-01-01T13:28:17.832Z", + "new_balance":"7887.53", + "value":"-7.70" + } + }, + { + "id":"5c63ab2a-03a6-4a24-8542-9acc8c81005c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T17:24:08.279Z", + "completed":"2017-01-01T17:24:08.279Z", + "new_balance":"7884.09", + "value":"-3.44" + } + }, + { + "id":"ae713dfe-d937-43d2-be2a-4949717078ee", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T18:37:52.774Z", + "completed":"2017-01-01T18:37:52.774Z", + "new_balance":"7880.65", + "value":"-3.44" + } + }, + { + "id":"841f99a3-0dd5-4177-b2eb-138c1e0e2b8a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T05:08:03.509Z", + "completed":"2017-01-05T05:08:03.509Z", + "new_balance":"7870.61", + "value":"-10.04" + } + }, + { + "id":"f1b7e4c9-5d46-4dea-befa-07bec9417b27", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T20:24:14.966Z", + "completed":"2017-01-05T20:24:14.966Z", + "new_balance":"7863.31", + "value":"-7.30" + } + }, + { + "id":"77485417-cd6b-4b4d-a9e7-fe222b8bbcef", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T01:46:58.783Z", + "completed":"2017-01-08T01:46:58.783Z", + "new_balance":"7861.91", + "value":"-1.40" + } + }, + { + "id":"6b684997-f77e-4278-8013-dd1ddd20a75c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T06:05:48.927Z", + "completed":"2017-01-10T06:05:48.927Z", + "new_balance":"7857.25", + "value":"-4.66" + } + }, + { + "id":"31844ef8-e797-4706-8da6-856e9873c884", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T00:53:11.314Z", + "completed":"2017-01-11T00:53:11.314Z", + "new_balance":"7851.84", + "value":"-5.41" + } + }, + { + "id":"df5f3fb3-241d-4599-8686-aeb65e02c65e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T10:12:50.889Z", + "completed":"2017-01-12T10:12:50.889Z", + "new_balance":"7848.40", + "value":"-3.44" + } + }, + { + "id":"73a58650-3d98-415d-acc0-cd5e6e60d454", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T10:19:07.227Z", + "completed":"2017-01-13T10:19:07.227Z", + "new_balance":"7847.89", + "value":"-0.51" + } + }, + { + "id":"6456cacc-00cb-4795-8ad7-6be15984ff99", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T18:46:07.626Z", + "completed":"2017-01-13T18:46:07.626Z", + "new_balance":"7847.43", + "value":"-0.46" + } + }, + { + "id":"4a4fd7a5-8bf1-46c0-aac8-5668a22d23b9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T00:16:14.966Z", + "completed":"2017-01-16T00:16:14.966Z", + "new_balance":"7837.91", + "value":"-9.52" + } + }, + { + "id":"df0967fa-ae5a-418a-8b05-4ebcfdb97eaa", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T05:45:24.149Z", + "completed":"2017-01-19T05:45:24.149Z", + "new_balance":"7831.08", + "value":"-6.83" + } + }, + { + "id":"ca1b51f0-85b5-43f2-8f9c-4fd3f80ebe25", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T11:58:23.109Z", + "completed":"2017-01-19T11:58:23.109Z", + "new_balance":"7823.78", + "value":"-7.30" + } + }, + { + "id":"7a5faf50-1db7-4af7-9f94-430bbdb68927", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T08:12:05.094Z", + "completed":"2017-01-24T08:12:05.094Z", + "new_balance":"7821.10", + "value":"-2.68" + } + }, + { + "id":"7844cd4d-8dfb-4a12-9c13-d87ade4018a3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T13:45:27.752Z", + "completed":"2017-01-27T13:45:27.752Z", + "new_balance":"7817.43", + "value":"-3.67" + } + }, + { + "id":"d945f8d9-a20f-4f7e-af11-088be99f9dd4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T21:09:28.745Z", + "completed":"2017-01-27T21:09:28.745Z", + "new_balance":"8052.39", + "value":"234.96" + } + }, + { + "id":"2495e90c-c780-4905-98e8-338ec859f70c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T11:21:55.507Z", + "completed":"2017-01-31T11:21:55.507Z", + "new_balance":"8029.15", + "value":"-23.24" + } + }, + { + "id":"2d913c39-2781-452a-8aa5-a156f0a01ae7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T03:34:17.726Z", + "completed":"2017-02-01T03:34:17.726Z", + "new_balance":"8024.97", + "value":"-4.18" + } + }, + { + "id":"3ca9e934-bfda-4ea1-862b-8cd17c691e96", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T05:46:08.859Z", + "completed":"2017-02-01T05:46:08.859Z", + "new_balance":"8017.27", + "value":"-7.70" + } + }, + { + "id":"4cec40fe-7b16-4320-a2f7-b1c0ab545cc2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T14:01:53.533Z", + "completed":"2017-02-01T14:01:53.533Z", + "new_balance":"8013.83", + "value":"-3.44" + } + }, + { + "id":"2883e86c-1aef-4055-8879-61c40da0aaa4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T16:00:02.306Z", + "completed":"2017-02-01T16:00:02.306Z", + "new_balance":"8010.39", + "value":"-3.44" + } + }, + { + "id":"4918b151-a694-4c1d-ae89-afb0eb0fb1c0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T18:38:43.240Z", + "completed":"2017-02-03T18:38:43.240Z", + "new_balance":"8009.69", + "value":"-0.70" + } + }, + { + "id":"edf8b000-a45e-4280-a42b-c1d7145207d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T03:35:25.514Z", + "completed":"2017-02-04T03:35:25.514Z", + "new_balance":"8002.39", + "value":"-7.30" + } + }, + { + "id":"1fdbff30-720e-4436-9f6d-5d6955ece48f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T06:48:42.761Z", + "completed":"2017-02-06T06:48:42.761Z", + "new_balance":"7992.93", + "value":"-9.46" + } + }, + { + "id":"5883cdfd-652f-4715-aece-fb5dc3d3470c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T11:19:46.314Z", + "completed":"2017-02-06T11:19:46.314Z", + "new_balance":"7982.83", + "value":"-10.10" + } + }, + { + "id":"78980721-7482-4405-a219-b952cc7e86fb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T14:53:22.977Z", + "completed":"2017-02-07T14:53:22.977Z", + "new_balance":"7979.03", + "value":"-3.80" + } + }, + { + "id":"9808411e-8f69-4ac4-9e21-54d216c9db97", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T00:00:32.869Z", + "completed":"2017-02-08T00:00:32.869Z", + "new_balance":"7977.91", + "value":"-1.12" + } + }, + { + "id":"f2df96bc-8980-4785-95ff-4746b3e6e8ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T05:27:47.801Z", + "completed":"2017-02-09T05:27:47.801Z", + "new_balance":"7973.32", + "value":"-4.59" + } + }, + { + "id":"547885d8-6676-4df0-a5e1-7af58b000bb6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:04:29.764Z", + "completed":"2017-02-11T05:04:29.764Z", + "new_balance":"7970.92", + "value":"-2.40" + } + }, + { + "id":"d48b7191-2294-4abd-aed1-af87931cd4fc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T21:04:23.905Z", + "completed":"2017-02-13T21:04:23.905Z", + "new_balance":"7968.04", + "value":"-2.88" + } + }, + { + "id":"054e0d3d-2796-42b3-8a1f-7a13576c9389", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T07:27:42.396Z", + "completed":"2017-02-17T07:27:42.396Z", + "new_balance":"7967.52", + "value":"-0.52" + } + }, + { + "id":"ba59e979-7c48-43a9-b251-0e682a5ce80c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T23:10:09.296Z", + "completed":"2017-02-19T23:10:09.296Z", + "new_balance":"7962.34", + "value":"-5.18" + } + }, + { + "id":"ab50714d-e283-40f1-89ca-b12677f5b72c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T14:17:21.377Z", + "completed":"2017-02-21T14:17:21.377Z", + "new_balance":"7955.04", + "value":"-7.30" + } + }, + { + "id":"9b1cc31c-6f6c-4f3f-9c5a-cd040f958848", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T10:45:42.225Z", + "completed":"2017-02-24T10:45:42.225Z", + "new_balance":"7951.37", + "value":"-3.67" + } + }, + { + "id":"3512fd15-b75f-4256-b91e-36ac9ab95f02", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T17:18:37.488Z", + "completed":"2017-02-26T17:18:37.488Z", + "new_balance":"8186.33", + "value":"234.96" + } + }, + { + "id":"5b970ca8-5e09-4b49-bad6-428c010a5f02", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T04:26:32.437Z", + "completed":"2017-03-01T04:26:32.437Z", + "new_balance":"8182.89", + "value":"-3.44" + } + }, + { + "id":"cc1a94f1-1b0c-4b0a-9cf1-19182ceb1c89", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T08:23:12.788Z", + "completed":"2017-03-01T08:23:12.788Z", + "new_balance":"8179.45", + "value":"-3.44" + } + }, + { + "id":"a90fd3dc-d046-419d-891b-3d298d35a01a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T17:00:35.617Z", + "completed":"2017-03-01T17:00:35.617Z", + "new_balance":"8171.75", + "value":"-7.70" + } + }, + { + "id":"00447888-3abb-4c29-be88-e03561039a22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T19:51:40.192Z", + "completed":"2017-03-01T19:51:40.192Z", + "new_balance":"8167.57", + "value":"-4.18" + } + }, + { + "id":"8674bf10-0360-42a3-a475-ddca4a2cc26c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T03:15:13.449Z", + "completed":"2017-03-09T03:15:13.449Z", + "new_balance":"8161.75", + "value":"-5.82" + } + }, + { + "id":"a8b7a70f-78d1-4f9a-956c-d8c35f6eff68", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T19:56:10.704Z", + "completed":"2017-03-09T19:56:10.704Z", + "new_balance":"8154.49", + "value":"-7.26" + } + }, + { + "id":"2a8d222d-894b-42d1-a738-0846e976d55c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T15:06:20.590Z", + "completed":"2017-03-17T15:06:20.590Z", + "new_balance":"8146.75", + "value":"-7.74" + } + }, + { + "id":"8f108fa3-b255-4377-bc4e-6fbadd01e613", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T02:07:37.804Z", + "completed":"2017-03-18T02:07:37.804Z", + "new_balance":"8146.14", + "value":"-0.61" + } + }, + { + "id":"9ed6ce05-40a1-4b17-8a10-295d5d9b7495", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T03:41:34.767Z", + "completed":"2017-03-18T03:41:34.767Z", + "new_balance":"8138.40", + "value":"-7.74" + } + }, + { + "id":"1cddac20-43a7-4bc7-a473-4eada01c78d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T04:52:33.238Z", + "completed":"2017-03-18T04:52:33.238Z", + "new_balance":"8133.99", + "value":"-4.41" + } + }, + { + "id":"23d25888-e5e1-4a11-a504-135a5c294c0b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T06:23:20.201Z", + "completed":"2017-03-18T06:23:20.201Z", + "new_balance":"8129.92", + "value":"-4.07" + } + }, + { + "id":"c108bced-9f05-488f-9059-c8598ec4e16f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T07:45:32.595Z", + "completed":"2017-03-22T07:45:32.595Z", + "new_balance":"8119.91", + "value":"-10.01" + } + }, + { + "id":"d96ed90c-c961-4d77-8a3c-2cafca395fe8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T15:21:21.360Z", + "completed":"2017-03-29T15:21:21.360Z", + "new_balance":"8354.87", + "value":"234.96" + } + }, + { + "id":"433b95fa-ae35-478c-b675-a80355de3c39", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T19:53:51.831Z", + "completed":"2017-03-29T19:53:51.831Z", + "new_balance":"8351.20", + "value":"-3.67" + } + }, + { + "id":"8a16f96a-31bc-4f24-9041-b4752c32ea9d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T21:51:52.564Z", + "completed":"2017-03-31T21:51:52.564Z", + "new_balance":"8327.96", + "value":"-23.24" + } + }, + { + "id":"676240ab-fc9f-43f5-a33a-7d9b9239867a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T01:48:40.167Z", + "completed":"2017-04-01T01:48:40.167Z", + "new_balance":"8320.26", + "value":"-7.70" + } + }, + { + "id":"17a8e46b-1b1a-4b8a-9211-ac3330d78ad9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T05:44:54.059Z", + "completed":"2017-04-01T05:44:54.059Z", + "new_balance":"8316.82", + "value":"-3.44" + } + }, + { + "id":"9524eed4-b2df-40b7-8f9d-afcb64a456a6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T07:38:17.329Z", + "completed":"2017-04-01T07:38:17.329Z", + "new_balance":"8312.64", + "value":"-4.18" + } + }, + { + "id":"bcdcb091-4c3e-4c68-b378-a05978c266f2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T19:32:30.901Z", + "completed":"2017-04-01T19:32:30.901Z", + "new_balance":"8309.20", + "value":"-3.44" + } + }, + { + "id":"48a06ee6-2dab-44e8-99c4-3c5a2ac2618c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T06:37:16.494Z", + "completed":"2017-04-02T06:37:16.494Z", + "new_balance":"8301.64", + "value":"-7.56" + } + }, + { + "id":"11b2e7c3-e8d6-4f69-a196-4881e61cea22", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T00:22:33.979Z", + "completed":"2017-04-05T00:22:33.979Z", + "new_balance":"8296.19", + "value":"-5.45" + } + }, + { + "id":"a8d810b1-1e9c-4032-98b4-db69928a660d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T02:24:10.339Z", + "completed":"2017-04-05T02:24:10.339Z", + "new_balance":"8295.49", + "value":"-0.70" + } + }, + { + "id":"de3ffc37-974d-476a-a68d-d17b1d0e9d56", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T10:13:47.191Z", + "completed":"2017-04-05T10:13:47.191Z", + "new_balance":"8294.90", + "value":"-0.59" + } + }, + { + "id":"3ff8e06f-968a-4046-aa38-68291b23bea2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T10:29:28.792Z", + "completed":"2017-04-05T10:29:28.792Z", + "new_balance":"8291.46", + "value":"-3.44" + } + }, + { + "id":"7b3b724e-6c48-4d56-9206-7a9eb3e45c5b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:43:13.070Z", + "completed":"2017-04-05T10:43:13.070Z", + "new_balance":"8290.22", + "value":"-1.24" + } + }, + { + "id":"bcfb1714-0228-4e48-89f0-cb9d4bb26082", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T13:30:29.263Z", + "completed":"2017-04-05T13:30:29.263Z", + "new_balance":"8282.92", + "value":"-7.30" + } + }, + { + "id":"0aaf138b-9fda-43f9-960b-711a173cf1c8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T16:01:27.712Z", + "completed":"2017-04-05T16:01:27.712Z", + "new_balance":"8278.74", + "value":"-4.18" + } + }, + { + "id":"6d04d280-3806-4087-a157-0dc3b0581369", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T10:43:05.159Z", + "completed":"2017-04-08T10:43:05.159Z", + "new_balance":"8270.65", + "value":"-8.09" + } + }, + { + "id":"53228680-e85d-4858-b7b0-6434c3e8c323", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T04:38:06.997Z", + "completed":"2017-04-10T04:38:06.997Z", + "new_balance":"8264.53", + "value":"-6.12" + } + }, + { + "id":"07ca145b-745f-4577-b9df-26e014ba2f61", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T10:50:15.860Z", + "completed":"2017-04-11T10:50:15.860Z", + "new_balance":"8261.85", + "value":"-2.68" + } + }, + { + "id":"9e47593f-bf73-4681-8004-3851c50134ae", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T10:52:14.676Z", + "completed":"2017-04-11T10:52:14.676Z", + "new_balance":"8254.55", + "value":"-7.30" + } + }, + { + "id":"0234d346-ee63-4051-b199-dd784ae03bad", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T02:55:05.242Z", + "completed":"2017-04-13T02:55:05.242Z", + "new_balance":"8250.88", + "value":"-3.67" + } + }, + { + "id":"92c2b344-5b52-4bc1-8257-b1fcaa13cb61", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T07:12:32.089Z", + "completed":"2017-04-18T07:12:32.089Z", + "new_balance":"8485.84", + "value":"234.96" + } + }, + { + "id":"43d76edf-854d-4e2b-aa31-3d6c5474059d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T11:52:11.113Z", + "completed":"2017-04-25T11:52:11.113Z", + "new_balance":"8462.60", + "value":"-23.24" + } + }, + { + "id":"fbee86c4-db4f-455f-864d-f05b46e983d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T12:53:31.190Z", + "completed":"2017-05-02T12:53:31.190Z", + "new_balance":"8459.16", + "value":"-3.44" + } + }, + { + "id":"af297639-61f1-4972-8cfc-b3b775eb4399", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T17:02:21.912Z", + "completed":"2017-05-02T17:02:21.912Z", + "new_balance":"8451.46", + "value":"-7.70" + } + }, + { + "id":"c033be07-a898-4656-815b-604b0d6e9a13", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T20:42:16.044Z", + "completed":"2017-05-02T20:42:16.044Z", + "new_balance":"8447.28", + "value":"-4.18" + } + }, + { + "id":"18d9fcf5-4291-4b3f-9134-9b65c5bce4f4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T23:50:31.064Z", + "completed":"2017-05-02T23:50:31.064Z", + "new_balance":"8443.84", + "value":"-3.44" + } + }, + { + "id":"53b4db3b-c49a-4aa1-a6c9-cc6e4e6997a1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:00:52.090Z", + "completed":"2017-05-04T09:00:52.090Z", + "new_balance":"8443.14", + "value":"-0.70" + } + }, + { + "id":"b5cdd1be-be6f-4d1d-9617-cc3443b07ac7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:46:27.864Z", + "completed":"2017-05-04T09:46:27.864Z", + "new_balance":"8435.84", + "value":"-7.30" + } + }, + { + "id":"e1af1191-b965-43dc-978b-f0e64fefac97", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T02:07:28.925Z", + "completed":"2017-05-06T02:07:28.925Z", + "new_balance":"8428.40", + "value":"-7.44" + } + }, + { + "id":"07519c84-6edc-4666-88fa-3b679fd62270", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T16:04:30.751Z", + "completed":"2017-05-07T16:04:30.751Z", + "new_balance":"8420.84", + "value":"-7.56" + } + }, + { + "id":"99fc3079-0bac-45e4-90e3-6165d281379b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T18:19:45.439Z", + "completed":"2017-05-07T18:19:45.439Z", + "new_balance":"8418.13", + "value":"-2.71" + } + }, + { + "id":"f83b3c25-2b39-4a1e-b854-5437945b5b7e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T04:12:20.504Z", + "completed":"2017-05-09T04:12:20.504Z", + "new_balance":"8413.54", + "value":"-4.59" + } + }, + { + "id":"ea815dbd-d18f-4d79-97b0-9eb2458c38e5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T10:55:50.262Z", + "completed":"2017-05-09T10:55:50.262Z", + "new_balance":"8412.30", + "value":"-1.24" + } + }, + { + "id":"47702aa3-76f4-4ea1-8116-db62aa18372f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T14:29:05.389Z", + "completed":"2017-05-13T14:29:05.389Z", + "new_balance":"8409.59", + "value":"-2.71" + } + }, + { + "id":"baadeddf-b357-4cc8-ab45-8580037ae565", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T16:43:24.805Z", + "completed":"2017-05-13T16:43:24.805Z", + "new_balance":"8408.89", + "value":"-0.70" + } + }, + { + "id":"a7841df4-3337-46d0-98b3-249b2840d3db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T17:36:46.649Z", + "completed":"2017-05-13T17:36:46.649Z", + "new_balance":"8406.76", + "value":"-2.13" + } + }, + { + "id":"e5a96953-268c-4957-9660-d5426f4a10e3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T04:27:24.362Z", + "completed":"2017-05-14T04:27:24.362Z", + "new_balance":"8402.30", + "value":"-4.46" + } + }, + { + "id":"ca21d9a5-c78e-4fc8-9402-0bbfac83cf6f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T12:17:03.089Z", + "completed":"2017-05-14T12:17:03.089Z", + "new_balance":"8395.00", + "value":"-7.30" + } + }, + { + "id":"3eaefc08-72d6-4a6f-8cb2-10a0cb756001", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T12:56:36.887Z", + "completed":"2017-05-15T12:56:36.887Z", + "new_balance":"8391.33", + "value":"-3.67" + } + }, + { + "id":"ec83a52f-1708-4f00-b713-22e2dd7eb746", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T11:01:08.870Z", + "completed":"2017-05-30T11:01:08.870Z", + "new_balance":"8368.09", + "value":"-23.24" + } + }, + { + "id":"a9c01568-9cd6-4821-85bb-09dba6187016", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T16:15:59.412Z", + "completed":"2017-05-30T16:15:59.412Z", + "new_balance":"8603.05", + "value":"234.96" + } + }, + { + "id":"a1afa481-72b4-45bd-aa57-a3c647e8d6a9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T08:17:03.910Z", + "completed":"2017-06-01T08:17:03.910Z", + "new_balance":"8599.61", + "value":"-3.44" + } + }, + { + "id":"adf9056c-a5b1-4c5d-badd-2a6f4ff8de63", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T10:31:06.841Z", + "completed":"2017-06-01T10:31:06.841Z", + "new_balance":"8591.91", + "value":"-7.70" + } + }, + { + "id":"76ce05b6-365f-4309-bdf0-8c83b4e55cd4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T11:15:19.135Z", + "completed":"2017-06-01T11:15:19.135Z", + "new_balance":"8587.73", + "value":"-4.18" + } + }, + { + "id":"87f7dc7e-ce73-4e31-8064-4e4555ab31b8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T18:33:35.345Z", + "completed":"2017-06-01T18:33:35.345Z", + "new_balance":"8584.29", + "value":"-3.44" + } + }, + { + "id":"b3fc71d4-3f9c-469c-b462-a485d15c32d1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T07:36:14.745Z", + "completed":"2017-06-04T07:36:14.745Z", + "new_balance":"8578.47", + "value":"-5.82" + } + }, + { + "id":"512b9eac-cf45-4103-8eba-9db8944d1c11", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T13:14:05.092Z", + "completed":"2017-06-04T13:14:05.092Z", + "new_balance":"8571.21", + "value":"-7.26" + } + }, + { + "id":"9aa8d897-4626-46d3-9e36-1dcd10b56cea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T00:20:50.004Z", + "completed":"2017-06-11T00:20:50.004Z", + "new_balance":"8563.47", + "value":"-7.74" + } + }, + { + "id":"e3f54a1f-bc89-4c8a-b26b-ce60ec6f86f3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T16:54:19.031Z", + "completed":"2017-06-11T16:54:19.031Z", + "new_balance":"8555.73", + "value":"-7.74" + } + }, + { + "id":"21ade438-b913-464e-a69b-81d27291ad77", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T23:06:09.557Z", + "completed":"2017-06-11T23:06:09.557Z", + "new_balance":"8551.32", + "value":"-4.41" + } + }, + { + "id":"8e62bc2b-4ae3-49c4-9972-fd86d4561b04", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T11:24:15.639Z", + "completed":"2017-06-12T11:24:15.639Z", + "new_balance":"8547.25", + "value":"-4.07" + } + }, + { + "id":"f4ab3d11-74a4-4f08-a623-424e797145bb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T12:02:47.537Z", + "completed":"2017-06-12T12:02:47.537Z", + "new_balance":"8546.64", + "value":"-0.61" + } + }, + { + "id":"8b53cb88-11b7-4e32-9d99-08c55ab2bb64", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T06:09:58.748Z", + "completed":"2017-06-16T06:09:58.748Z", + "new_balance":"8536.63", + "value":"-10.01" + } + }, + { + "id":"a683a575-d301-4d5b-94a6-5aa962714d90", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T01:05:23.556Z", + "completed":"2017-06-29T01:05:23.556Z", + "new_balance":"8532.96", + "value":"-3.67" + } + }, + { + "id":"cd070298-fd74-4b10-946f-4cbdb3af6ecf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T07:34:59.091Z", + "completed":"2017-06-30T07:34:59.091Z", + "new_balance":"8509.72", + "value":"-23.24" + } + }, + { + "id":"e2286abb-cb38-4d77-9d8b-6885524cd182", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T21:37:57.448Z", + "completed":"2017-06-30T21:37:57.448Z", + "new_balance":"8744.68", + "value":"234.96" + } + }, + { + "id":"793374ae-8d8b-4628-b6cb-c5397620045a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T06:44:25.463Z", + "completed":"2017-07-01T06:44:25.463Z", + "new_balance":"8740.50", + "value":"-4.18" + } + }, + { + "id":"e4777d45-ce96-48f8-9219-5c0dfbe721c7", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T20:33:33.344Z", + "completed":"2017-07-01T20:33:33.344Z", + "new_balance":"8737.06", + "value":"-3.44" + } + }, + { + "id":"441aea69-51f8-4b39-a7de-a94dfb344c43", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T21:31:41.649Z", + "completed":"2017-07-01T21:31:41.649Z", + "new_balance":"8729.36", + "value":"-7.70" + } + }, + { + "id":"9933a19d-cde8-487f-97e2-5c5f782f3a07", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T22:10:30.547Z", + "completed":"2017-07-01T22:10:30.547Z", + "new_balance":"8725.92", + "value":"-3.44" + } + }, + { + "id":"1a3e29a3-402e-47a6-9124-91d4753c76d6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T11:08:05.923Z", + "completed":"2017-07-05T11:08:05.923Z", + "new_balance":"8715.88", + "value":"-10.04" + } + }, + { + "id":"28729dc6-8ef8-4071-81b3-84b902d6379e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T14:07:29.961Z", + "completed":"2017-07-05T14:07:29.961Z", + "new_balance":"8708.58", + "value":"-7.30" + } + }, + { + "id":"e1783fe1-4b80-4fde-949b-5ce2aceab5a2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T05:22:35.725Z", + "completed":"2017-07-08T05:22:35.725Z", + "new_balance":"8707.18", + "value":"-1.40" + } + }, + { + "id":"4347cefe-cc9a-4fe8-bee3-48c9c33d0306", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T15:29:11.370Z", + "completed":"2017-07-10T15:29:11.370Z", + "new_balance":"8702.52", + "value":"-4.66" + } + }, + { + "id":"7fc964bb-d7d6-48b9-b4af-b8e0b833fe34", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T04:08:51.322Z", + "completed":"2017-07-12T04:08:51.322Z", + "new_balance":"8697.11", + "value":"-5.41" + } + }, + { + "id":"af8c2844-a4f2-470d-b82b-554c0bf1ffff", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T14:55:09.018Z", + "completed":"2017-07-12T14:55:09.018Z", + "new_balance":"8693.67", + "value":"-3.44" + } + }, + { + "id":"793c5e35-81e3-4718-913b-9d72c83867c6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T02:48:19.465Z", + "completed":"2017-07-13T02:48:19.465Z", + "new_balance":"8693.21", + "value":"-0.46" + } + }, + { + "id":"beee65cb-cee5-4b62-92f2-fb0501f052be", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T09:08:07.059Z", + "completed":"2017-07-13T09:08:07.059Z", + "new_balance":"8692.70", + "value":"-0.51" + } + }, + { + "id":"ff2040c8-3f18-4354-960e-41359a1ac2af", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T15:37:54.684Z", + "completed":"2017-07-18T15:37:54.684Z", + "new_balance":"8683.18", + "value":"-9.52" + } + }, + { + "id":"ba78773b-84ec-4640-a6cc-d6ab0871666e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T02:17:16.317Z", + "completed":"2017-07-20T02:17:16.317Z", + "new_balance":"8676.35", + "value":"-6.83" + } + }, + { + "id":"959dcd85-abd8-4d8e-9dbe-0b51edfab2df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T19:45:44.124Z", + "completed":"2017-07-20T19:45:44.124Z", + "new_balance":"8669.05", + "value":"-7.30" + } + }, + { + "id":"ffa6e862-3420-4401-9166-9a74cd101fbf", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T01:15:28.793Z", + "completed":"2017-07-24T01:15:28.793Z", + "new_balance":"8666.37", + "value":"-2.68" + } + }, + { + "id":"c163b0e3-183f-4ecf-a23f-5be938688ee1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T12:55:19.884Z", + "completed":"2017-07-29T12:55:19.884Z", + "new_balance":"8901.33", + "value":"234.96" + } + }, + { + "id":"9952a119-cc60-44ca-960d-6fdd9984f0b6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T23:33:38.873Z", + "completed":"2017-07-29T23:33:38.873Z", + "new_balance":"8897.66", + "value":"-3.67" + } + }, + { + "id":"29a3f090-8a57-4c19-bc99-64bc334941a8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T12:41:32.466Z", + "completed":"2017-07-30T12:41:32.466Z", + "new_balance":"8874.42", + "value":"-23.24" + } + }, + { + "id":"5d33c152-e6ce-40ca-abdb-0ff8eb171085", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:45:51.083Z", + "completed":"2017-08-01T00:45:51.083Z", + "new_balance":"8870.98", + "value":"-3.44" + } + }, + { + "id":"9f33721b-7d02-4378-acfe-c2580721df46", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T01:50:59.544Z", + "completed":"2017-08-01T01:50:59.544Z", + "new_balance":"8867.54", + "value":"-3.44" + } + }, + { + "id":"658f7f59-e0e1-487f-b1b7-1cb0f242e7db", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T19:21:53.608Z", + "completed":"2017-08-01T19:21:53.608Z", + "new_balance":"8863.36", + "value":"-4.18" + } + }, + { + "id":"4277ce9e-e95d-4899-8221-14265edc61bc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T19:31:25.732Z", + "completed":"2017-08-01T19:31:25.732Z", + "new_balance":"8855.66", + "value":"-7.70" + } + }, + { + "id":"b89cd666-8a5c-4e04-8c95-577d12a8f2c8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T14:21:08.501Z", + "completed":"2017-08-03T14:21:08.501Z", + "new_balance":"8854.96", + "value":"-0.70" + } + }, + { + "id":"d2674877-e5c7-4f2c-92af-be3c51f5dd4b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T17:38:11.603Z", + "completed":"2017-08-04T17:38:11.603Z", + "new_balance":"8847.66", + "value":"-7.30" + } + }, + { + "id":"5a1e0f6c-6495-4cc3-bef8-dcc6957e4c2e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T00:04:46.501Z", + "completed":"2017-08-08T00:04:46.501Z", + "new_balance":"8846.54", + "value":"-1.12" + } + }, + { + "id":"e951cd14-d76c-47b3-86e9-ffa80b340c9c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T02:00:08.887Z", + "completed":"2017-08-08T02:00:08.887Z", + "new_balance":"8837.08", + "value":"-9.46" + } + }, + { + "id":"f5f09ace-97ed-42bd-94d1-95a71ca3d3ff", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:41:13.720Z", + "completed":"2017-08-08T04:41:13.720Z", + "new_balance":"8826.98", + "value":"-10.10" + } + }, + { + "id":"e687b1be-6934-48cb-aaa1-c40c7b5cf76c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T13:25:40.846Z", + "completed":"2017-08-08T13:25:40.846Z", + "new_balance":"8823.18", + "value":"-3.80" + } + }, + { + "id":"9fed7c80-1685-4f92-b7e4-ce169aecef8e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T03:02:26.199Z", + "completed":"2017-08-09T03:02:26.199Z", + "new_balance":"8818.59", + "value":"-4.59" + } + }, + { + "id":"0b211ccd-26f6-4313-8dfd-475a1fd01139", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T10:16:11.763Z", + "completed":"2017-08-14T10:16:11.763Z", + "new_balance":"8816.19", + "value":"-2.40" + } + }, + { + "id":"91f69011-a9e7-4ffd-8ce9-cc9fcbde9528", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T19:57:22.438Z", + "completed":"2017-08-15T19:57:22.438Z", + "new_balance":"8813.31", + "value":"-2.88" + } + }, + { + "id":"c8dd2fad-10b7-4525-968b-3669123f149c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T00:56:05.086Z", + "completed":"2017-08-19T00:56:05.086Z", + "new_balance":"8812.79", + "value":"-0.52" + } + }, + { + "id":"d59ad039-645c-49d6-88d3-097f03b581ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T17:56:48.782Z", + "completed":"2017-08-22T17:56:48.782Z", + "new_balance":"8807.61", + "value":"-5.18" + } + }, + { + "id":"9f75cf2f-5766-4a7e-9a0b-265d316ea2c4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T00:40:42.715Z", + "completed":"2017-08-26T00:40:42.715Z", + "new_balance":"8800.31", + "value":"-7.30" + } + }, + { + "id":"2f7009c7-94c7-4134-9a00-a373cf858104", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T09:38:03.005Z", + "completed":"2017-08-28T09:38:03.005Z", + "new_balance":"8777.07", + "value":"-23.24" + } + }, + { + "id":"f6ed6ba9-d2ae-465a-a8a6-cd0e392d8934", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T00:54:40.939Z", + "completed":"2017-08-29T00:54:40.939Z", + "new_balance":"9012.03", + "value":"234.96" + } + }, + { + "id":"ac3e5e07-505b-4cf9-929f-93a716a316f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T19:19:07.027Z", + "completed":"2017-08-29T19:19:07.027Z", + "new_balance":"9008.36", + "value":"-3.67" + } + }, + { + "id":"65bcb1ca-9ee0-4efc-bd32-53d4d4be642e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T09:05:09.217Z", + "completed":"2017-08-30T09:05:09.217Z", + "new_balance":"8985.12", + "value":"-23.24" + } + }, + { + "id":"3ee5f50d-c705-4cde-bcdd-e390808d2711", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T04:20:06.843Z", + "completed":"2017-09-01T04:20:06.843Z", + "new_balance":"8977.42", + "value":"-7.70" + } + }, + { + "id":"0206094b-5c21-46c6-8921-b06e816d13ef", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T10:22:22.526Z", + "completed":"2017-09-01T10:22:22.526Z", + "new_balance":"8973.24", + "value":"-4.18" + } + }, + { + "id":"9f46368c-1e29-48ba-bd0a-89c6a472b13f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T11:30:22.065Z", + "completed":"2017-09-01T11:30:22.065Z", + "new_balance":"8969.80", + "value":"-3.44" + } + }, + { + "id":"e8e7fbc3-b6e1-4982-93b0-9c339b63c334", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T17:39:41.493Z", + "completed":"2017-09-01T17:39:41.493Z", + "new_balance":"8966.36", + "value":"-3.44" + } + }, + { + "id":"e089c4e4-61a0-4a41-b7b5-ed25c1524c41", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T03:26:31.267Z", + "completed":"2017-09-09T03:26:31.267Z", + "new_balance":"8960.54", + "value":"-5.82" + } + }, + { + "id":"cc834413-aa19-4c2d-8266-2b9d646978c3", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T13:02:39.522Z", + "completed":"2017-09-09T13:02:39.522Z", + "new_balance":"8953.28", + "value":"-7.26" + } + }, + { + "id":"3dcd57f8-ac5a-4aea-ae9f-0df9046b062b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T19:16:25.627Z", + "completed":"2017-09-17T19:16:25.627Z", + "new_balance":"8945.54", + "value":"-7.74" + } + }, + { + "id":"1cf1158d-0ce8-4f53-a804-db4aabe9e1ed", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T01:18:16.290Z", + "completed":"2017-09-18T01:18:16.290Z", + "new_balance":"8944.93", + "value":"-0.61" + } + }, + { + "id":"562b34e8-8292-4645-ba67-d9cd5a082fd5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T03:57:10.244Z", + "completed":"2017-09-18T03:57:10.244Z", + "new_balance":"8937.19", + "value":"-7.74" + } + }, + { + "id":"31bebcf4-640c-4dd0-b7e7-b11da2607bb6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:06:17.288Z", + "completed":"2017-09-18T10:06:17.288Z", + "new_balance":"8932.78", + "value":"-4.41" + } + }, + { + "id":"ff0ce033-27d1-4c60-8dd4-686c53e591a4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T19:03:24.845Z", + "completed":"2017-09-18T19:03:24.845Z", + "new_balance":"8928.71", + "value":"-4.07" + } + }, + { + "id":"cc834ac5-9d22-47df-8c43-fafa63e18b03", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T04:27:29.915Z", + "completed":"2017-09-22T04:27:29.915Z", + "new_balance":"8918.70", + "value":"-10.01" + } + }, + { + "id":"0ece06d6-9538-4325-9adc-ee4e2d26abaa", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T09:05:51.574Z", + "completed":"2017-09-29T09:05:51.574Z", + "new_balance":"8915.03", + "value":"-3.67" + } + }, + { + "id":"de908010-d594-48d5-857e-b1c915f02299", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T13:45:05.291Z", + "completed":"2017-09-29T13:45:05.291Z", + "new_balance":"9149.99", + "value":"234.96" + } + }, + { + "id":"85eace85-00c9-4b35-9350-a47c1fd73d35", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T02:58:29.789Z", + "completed":"2017-09-30T02:58:29.789Z", + "new_balance":"9126.75", + "value":"-23.24" + } + }, + { + "id":"e708ae67-931c-43f7-9ae3-3e77300c9e26", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T05:46:34.255Z", + "completed":"2017-10-01T05:46:34.255Z", + "new_balance":"9119.05", + "value":"-7.70" + } + }, + { + "id":"b4ddf3b7-e65f-4f4e-b8d5-795b82fc81d4", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T09:20:40.919Z", + "completed":"2017-10-01T09:20:40.919Z", + "new_balance":"9115.61", + "value":"-3.44" + } + }, + { + "id":"1f27f61f-bd14-4b59-ab10-7a833b8d3fea", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T09:55:20.034Z", + "completed":"2017-10-01T09:55:20.034Z", + "new_balance":"9111.43", + "value":"-4.18" + } + }, + { + "id":"a64c5fd7-9819-42fc-af4e-d1d07bc9a2df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T13:58:03.781Z", + "completed":"2017-10-01T13:58:03.781Z", + "new_balance":"9107.99", + "value":"-3.44" + } + }, + { + "id":"3374e2c4-c42a-4646-842c-1a66bb6cebc5", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T17:52:01.895Z", + "completed":"2017-10-02T17:52:01.895Z", + "new_balance":"9100.43", + "value":"-7.56" + } + }, + { + "id":"7d0d9bca-a860-4fa9-a5a1-366ad9cd494f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T02:25:01.772Z", + "completed":"2017-10-05T02:25:01.772Z", + "new_balance":"9096.25", + "value":"-4.18" + } + }, + { + "id":"5070a112-bf90-423d-a51f-97fea339deed", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T03:09:36.558Z", + "completed":"2017-10-05T03:09:36.558Z", + "new_balance":"9090.80", + "value":"-5.45" + } + }, + { + "id":"04f338e0-b4c1-4b55-9ac6-7debe0430a98", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T05:18:05.937Z", + "completed":"2017-10-05T05:18:05.937Z", + "new_balance":"9090.10", + "value":"-0.70" + } + }, + { + "id":"afbe2658-633c-48f6-8359-4269607d269c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T05:40:47.846Z", + "completed":"2017-10-05T05:40:47.846Z", + "new_balance":"9089.51", + "value":"-0.59" + } + }, + { + "id":"d93e22f4-0af7-4d60-8419-bcad0af5a33a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T07:16:05.768Z", + "completed":"2017-10-05T07:16:05.768Z", + "new_balance":"9086.07", + "value":"-3.44" + } + }, + { + "id":"cf63a04d-101c-488f-9fca-49e294274ad8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T13:28:53.089Z", + "completed":"2017-10-05T13:28:53.089Z", + "new_balance":"9078.77", + "value":"-7.30" + } + }, + { + "id":"48e995fc-78a5-4e8c-be48-1bb3ea82ba2f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T19:43:49.196Z", + "completed":"2017-10-05T19:43:49.196Z", + "new_balance":"9077.53", + "value":"-1.24" + } + }, + { + "id":"79f1cee1-a1ea-42f8-a3fe-83cebe55649d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T14:38:02.283Z", + "completed":"2017-10-09T14:38:02.283Z", + "new_balance":"9069.44", + "value":"-8.09" + } + }, + { + "id":"5b7bdc05-b85a-43b2-9a14-1a5e376ba018", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T15:04:07.247Z", + "completed":"2017-10-11T15:04:07.247Z", + "new_balance":"9063.32", + "value":"-6.12" + } + }, + { + "id":"c78f75d9-e1b5-4b8d-aaef-2de45a90cdc0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T13:36:23.589Z", + "completed":"2017-10-12T13:36:23.589Z", + "new_balance":"9056.02", + "value":"-7.30" + } + }, + { + "id":"bffc6492-24ba-450b-95b5-09867189a0f9", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T15:58:06.541Z", + "completed":"2017-10-12T15:58:06.541Z", + "new_balance":"9053.34", + "value":"-2.68" + } + }, + { + "id":"e82cdcb2-8b46-43dd-86ff-49dbb363b4f0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T01:32:57.514Z", + "completed":"2017-10-20T01:32:57.514Z", + "new_balance":"9049.67", + "value":"-3.67" + } + }, + { + "id":"e2315a79-f7a4-4c06-a330-76edc171635b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T16:09:36.327Z", + "completed":"2017-10-29T16:09:36.327Z", + "new_balance":"9284.63", + "value":"234.96" + } + }, + { + "id":"0e7f9c15-799a-40e6-a281-264c1a5bf06c", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T09:39:54.297Z", + "completed":"2017-10-30T09:39:54.297Z", + "new_balance":"9261.39", + "value":"-23.24" + } + }, + { + "id":"e6998615-dd15-4b7f-bc45-e90af8f4bd56", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T02:50:03.591Z", + "completed":"2017-11-02T02:50:03.591Z", + "new_balance":"9257.21", + "value":"-4.18" + } + }, + { + "id":"8624566c-4441-40c8-aa91-3841dfe88679", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T07:56:05.936Z", + "completed":"2017-11-02T07:56:05.936Z", + "new_balance":"9253.77", + "value":"-3.44" + } + }, + { + "id":"b4fc893d-92bf-44ec-aa1e-7de9ff37cdf2", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T15:32:10.918Z", + "completed":"2017-11-02T15:32:10.918Z", + "new_balance":"9250.33", + "value":"-3.44" + } + }, + { + "id":"58d26b3f-d081-451d-81c5-692a07ebf1b0", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T17:35:23.246Z", + "completed":"2017-11-02T17:35:23.246Z", + "new_balance":"9242.63", + "value":"-7.70" + } + }, + { + "id":"bc2eadf3-24d4-4983-98d7-c492e9f9dfce", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T09:15:33.845Z", + "completed":"2017-11-04T09:15:33.845Z", + "new_balance":"9235.33", + "value":"-7.30" + } + }, + { + "id":"9f7c52be-c71f-4bfd-ad02-8e3b08970f4f", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T14:38:27.722Z", + "completed":"2017-11-04T14:38:27.722Z", + "new_balance":"9234.63", + "value":"-0.70" + } + }, + { + "id":"912f0a8a-5e4e-42aa-877a-996aae9aa6ab", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T01:15:03.295Z", + "completed":"2017-11-06T01:15:03.295Z", + "new_balance":"9227.19", + "value":"-7.44" + } + }, + { + "id":"de607fba-0af2-4170-adae-8dc9acef2481", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T12:36:19.463Z", + "completed":"2017-11-07T12:36:19.463Z", + "new_balance":"9219.63", + "value":"-7.56" + } + }, + { + "id":"52b5eebf-3c03-4069-9750-1c4568fb06e6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T14:33:26.165Z", + "completed":"2017-11-07T14:33:26.165Z", + "new_balance":"9216.92", + "value":"-2.71" + } + }, + { + "id":"042ca9dd-9c29-46b8-ade9-28bc759760f6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T12:44:57.036Z", + "completed":"2017-11-09T12:44:57.036Z", + "new_balance":"9212.33", + "value":"-4.59" + } + }, + { + "id":"26f0ca16-abd4-4d20-a1af-74be82d0d174", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T23:38:45.459Z", + "completed":"2017-11-09T23:38:45.459Z", + "new_balance":"9211.09", + "value":"-1.24" + } + }, + { + "id":"d88ebcfd-ca61-4043-9caa-e4dab012dac6", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T01:48:29.574Z", + "completed":"2017-11-13T01:48:29.574Z", + "new_balance":"9208.38", + "value":"-2.71" + } + }, + { + "id":"586ea9e4-fea9-4a0d-9fc9-082cb2f3785e", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T02:16:54.807Z", + "completed":"2017-11-13T02:16:54.807Z", + "new_balance":"9207.68", + "value":"-0.70" + } + }, + { + "id":"19681122-dadd-4a61-8879-ff03d5adfef8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T10:48:25.564Z", + "completed":"2017-11-13T10:48:25.564Z", + "new_balance":"9205.55", + "value":"-2.13" + } + }, + { + "id":"32b968b8-42ee-4e12-ad9b-eb57c80f92df", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T13:34:39.964Z", + "completed":"2017-11-14T13:34:39.964Z", + "new_balance":"9198.25", + "value":"-7.30" + } + }, + { + "id":"42608c28-6294-4cb2-9c3b-730b3b03c752", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T14:12:47.563Z", + "completed":"2017-11-14T14:12:47.563Z", + "new_balance":"9193.79", + "value":"-4.46" + } + }, + { + "id":"e5430bd9-cdb3-4e8f-8f0d-ff80248fafb8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T10:39:38.832Z", + "completed":"2017-11-15T10:39:38.832Z", + "new_balance":"9190.12", + "value":"-3.67" + } + }, + { + "id":"89fd2fd5-a9b7-45ab-8941-09b4f6080412", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:46:09.758Z", + "completed":"2017-11-30T00:46:09.758Z", + "new_balance":"9166.88", + "value":"-23.24" + } + }, + { + "id":"312fb4f8-2b5a-4d89-b7c8-0e3814b2387a", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T16:15:34.593Z", + "completed":"2017-11-30T16:15:34.593Z", + "new_balance":"9401.84", + "value":"234.96" + } + }, + { + "id":"f1e7f166-756e-4936-b985-581370b43c28", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T00:43:29.131Z", + "completed":"2017-12-01T00:43:29.131Z", + "new_balance":"9397.66", + "value":"-4.18" + } + }, + { + "id":"fa9ab814-37de-473a-b05c-c7b8b7be7637", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:24:58.876Z", + "completed":"2017-12-01T02:24:58.876Z", + "new_balance":"9394.22", + "value":"-3.44" + } + }, + { + "id":"c7af8c7d-3fc4-4d1e-8c78-4c23fbc0dbfb", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:04:01.201Z", + "completed":"2017-12-01T06:04:01.201Z", + "new_balance":"9390.78", + "value":"-3.44" + } + }, + { + "id":"d7c8b165-07a3-4224-b003-4ab28ba3178b", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T13:56:10.781Z", + "completed":"2017-12-01T13:56:10.781Z", + "new_balance":"9383.08", + "value":"-7.70" + } + }, + { + "id":"a6f6cdbd-0b71-4006-8ef0-f61eafc54a5d", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T17:47:45.239Z", + "completed":"2017-12-04T17:47:45.239Z", + "new_balance":"9377.26", + "value":"-5.82" + } + }, + { + "id":"09634935-b97b-44de-9942-c53eff3e26b1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T19:09:17.076Z", + "completed":"2017-12-04T19:09:17.076Z", + "new_balance":"9370.00", + "value":"-7.26" + } + }, + { + "id":"c9439315-19ce-45b7-8be7-d36418231373", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T00:47:38.394Z", + "completed":"2017-12-11T00:47:38.394Z", + "new_balance":"9362.26", + "value":"-7.74" + } + }, + { + "id":"c6fec4a7-c1d7-41bf-b057-3cfdb69ee257", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T01:55:57.692Z", + "completed":"2017-12-11T01:55:57.692Z", + "new_balance":"9354.52", + "value":"-7.74" + } + }, + { + "id":"d2ed6432-35a3-4a15-b504-bdf46d95aaa8", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:56:06.488Z", + "completed":"2017-12-11T06:56:06.488Z", + "new_balance":"9350.11", + "value":"-4.41" + } + }, + { + "id":"4497cb5a-d144-414d-9381-12cda87bdaca", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T00:53:07.662Z", + "completed":"2017-12-12T00:53:07.662Z", + "new_balance":"9349.50", + "value":"-0.61" + } + }, + { + "id":"51c6484d-e81e-4fdb-a000-bd32d63678bc", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T07:16:44.100Z", + "completed":"2017-12-12T07:16:44.100Z", + "new_balance":"9345.43", + "value":"-4.07" + } + }, + { + "id":"d898d74d-38f4-48e3-bfee-a1d02e89e720", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:20:27.577Z", + "completed":"2017-12-16T02:20:27.577Z", + "new_balance":"9335.42", + "value":"-10.01" + } + }, + { + "id":"78b01d3c-f876-4fa7-990e-b98bb2cf5307", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T17:25:32.023Z", + "completed":"2017-12-29T17:25:32.023Z", + "new_balance":"9331.75", + "value":"-3.67" + } + }, + { + "id":"efba08c6-c2c0-4f49-b19c-cbaafcf19709", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T06:01:18.399Z", + "completed":"2017-12-30T06:01:18.399Z", + "new_balance":"9566.71", + "value":"234.96" + } + }, + { + "id":"ed638407-64c6-43ed-a120-57e14f1216f1", + "this_account":{ + "id":"006c1ed9-5a41-463d-a02b-4c4dce97f868", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T19:03:25.242Z", + "completed":"2017-12-30T19:03:25.242Z", + "new_balance":"9543.47", + "value":"-23.24" + } + }, + { + "id":"3e84082f-455a-4587-8be2-87e6a6a6b4c8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T11:07:59.531Z", + "completed":"2016-03-01T11:07:59.531Z", + "new_balance":"13244.52", + "value":"-45.51" + } + }, + { + "id":"47732df2-5d0c-4cf9-b632-ddfc8bde2f0f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T16:30:48.795Z", + "completed":"2016-03-02T16:30:48.795Z", + "new_balance":"13170.59", + "value":"-73.93" + } + }, + { + "id":"49e1ff64-fa14-4bdf-929c-145e34145643", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T00:24:33.086Z", + "completed":"2016-03-06T00:24:33.086Z", + "new_balance":"13119.49", + "value":"-51.10" + } + }, + { + "id":"d4fcba01-b6ac-40fe-97df-234ccd9b16ea", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T23:42:31.302Z", + "completed":"2016-03-11T23:42:31.302Z", + "new_balance":"13112.80", + "value":"-6.69" + } + }, + { + "id":"b6db6d8a-049e-4774-bca2-9eba6ce115b3", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T02:49:30.168Z", + "completed":"2016-03-13T02:49:30.168Z", + "new_balance":"13109.10", + "value":"-3.70" + } + }, + { + "id":"69dd4a41-343c-4937-bd7a-8038cbc76012", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T10:42:16.680Z", + "completed":"2016-03-16T10:42:16.680Z", + "new_balance":"12791.89", + "value":"-317.21" + } + }, + { + "id":"0f05ea13-14cf-4316-9f2f-ad27f80e936d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T01:39:20.905Z", + "completed":"2016-03-17T01:39:20.905Z", + "new_balance":"12749.55", + "value":"-42.34" + } + }, + { + "id":"81b47a30-9b8b-4375-a178-16108dfa0bfc", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T14:37:17.872Z", + "completed":"2016-03-17T14:37:17.872Z", + "new_balance":"12586.07", + "value":"-163.48" + } + }, + { + "id":"5fc25a81-6109-4424-be30-7759362ab487", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T02:19:30.412Z", + "completed":"2016-03-19T02:19:30.412Z", + "new_balance":"12582.37", + "value":"-3.70" + } + }, + { + "id":"0d08a64e-d299-4955-9f70-e76e9ee5c4a8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T13:42:00.646Z", + "completed":"2016-03-21T13:42:00.646Z", + "new_balance":"12562.79", + "value":"-19.58" + } + }, + { + "id":"a194f2fb-3467-4cda-a375-40d00dcce476", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T20:02:55.230Z", + "completed":"2016-03-23T20:02:55.230Z", + "new_balance":"12517.28", + "value":"-45.51" + } + }, + { + "id":"6627ef24-c840-4d1b-8278-07938dce21cc", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T07:25:11.087Z", + "completed":"2016-03-24T07:25:11.087Z", + "new_balance":"12510.59", + "value":"-6.69" + } + }, + { + "id":"0be12a06-cbbd-4aea-a70a-269d1ac6878b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T09:08:41.518Z", + "completed":"2016-03-26T09:08:41.518Z", + "new_balance":"12497.58", + "value":"-13.01" + } + }, + { + "id":"fa72b1e1-2635-4d34-941a-a17b5d7ba69f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T19:23:14.895Z", + "completed":"2016-04-01T19:23:14.895Z", + "new_balance":"12484.57", + "value":"-13.01" + } + }, + { + "id":"30b22911-4c1f-42c1-9422-f9510ffffbcf", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T04:24:20.092Z", + "completed":"2016-06-01T04:24:20.092Z", + "new_balance":"12439.06", + "value":"-45.51" + } + }, + { + "id":"814c107c-5231-4882-816f-24e2bd1ffa8a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T14:39:14.990Z", + "completed":"2016-06-04T14:39:14.990Z", + "new_balance":"12365.13", + "value":"-73.93" + } + }, + { + "id":"3cf5429f-a7e0-4282-a9f7-b9d0de7c034f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T10:51:43.980Z", + "completed":"2016-06-19T10:51:43.980Z", + "new_balance":"12314.03", + "value":"-51.10" + } + }, + { + "id":"e41adf65-4ca4-4d9f-a97d-6e6ed95eab6e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T15:46:09.777Z", + "completed":"2016-06-21T15:46:09.777Z", + "new_balance":"12307.34", + "value":"-6.69" + } + }, + { + "id":"d80f0c94-d77b-4331-bb3f-59b4e6f14c18", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T10:26:50.492Z", + "completed":"2016-06-24T10:26:50.492Z", + "new_balance":"12303.64", + "value":"-3.70" + } + }, + { + "id":"57cec184-7bf3-4bdc-a11b-464d86ef39e5", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T08:52:43.401Z", + "completed":"2016-06-28T08:52:43.401Z", + "new_balance":"11986.43", + "value":"-317.21" + } + }, + { + "id":"93907ec8-6811-4c34-b031-7b1547ff4e88", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T09:05:40.737Z", + "completed":"2016-06-28T09:05:40.737Z", + "new_balance":"11822.95", + "value":"-163.48" + } + }, + { + "id":"36877aaa-2439-445c-bbad-89444a6407a2", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T12:33:49.074Z", + "completed":"2016-06-28T12:33:49.074Z", + "new_balance":"11780.61", + "value":"-42.34" + } + }, + { + "id":"151726b2-2691-40de-b597-b0a662eec94c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T15:05:46.079Z", + "completed":"2016-06-29T15:05:46.079Z", + "new_balance":"11776.91", + "value":"-3.70" + } + }, + { + "id":"18b86d70-8653-42aa-b69a-4a7ffa470216", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T01:36:03.547Z", + "completed":"2016-06-30T01:36:03.547Z", + "new_balance":"11770.22", + "value":"-6.69" + } + }, + { + "id":"bbc7d1a4-828d-4c60-a058-0467250fc31b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T01:40:34.607Z", + "completed":"2016-06-30T01:40:34.607Z", + "new_balance":"11724.71", + "value":"-45.51" + } + }, + { + "id":"d50b4ac6-5835-4a55-8f03-b3bb3a8c7556", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T09:34:43.094Z", + "completed":"2016-06-30T09:34:43.094Z", + "new_balance":"11705.13", + "value":"-19.58" + } + }, + { + "id":"60de354b-946f-4ddd-9f67-769b31058c09", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T01:58:01.275Z", + "completed":"2016-09-01T01:58:01.275Z", + "new_balance":"11681.27", + "value":"-23.86" + } + }, + { + "id":"c3cc292e-29c0-49ed-bb0f-8b3549e6ea0c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T23:49:37.887Z", + "completed":"2016-09-02T23:49:37.887Z", + "new_balance":"11607.34", + "value":"-73.93" + } + }, + { + "id":"32fecc67-305f-45a7-90e4-afa0145869f4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T12:45:01.697Z", + "completed":"2016-09-07T12:45:01.697Z", + "new_balance":"11556.24", + "value":"-51.10" + } + }, + { + "id":"8fd94c2b-af92-45e8-a953-6eb1a1d35873", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T10:15:00.741Z", + "completed":"2016-09-11T10:15:00.741Z", + "new_balance":"11549.55", + "value":"-6.69" + } + }, + { + "id":"b7e45ba2-8bc4-4714-926c-08c328822ebb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T01:09:11.532Z", + "completed":"2016-09-15T01:09:11.532Z", + "new_balance":"11538.64", + "value":"-10.91" + } + }, + { + "id":"e941cd41-a26e-4f13-aab4-67af805a84c4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T00:04:02.032Z", + "completed":"2016-09-17T00:04:02.032Z", + "new_balance":"11375.16", + "value":"-163.48" + } + }, + { + "id":"8c78d2ff-0487-47f6-8498-8c8cf7cd1f6d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T14:31:53.386Z", + "completed":"2016-09-17T14:31:53.386Z", + "new_balance":"11057.95", + "value":"-317.21" + } + }, + { + "id":"971a2180-5da7-4953-b324-6886303335a7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T19:13:51.576Z", + "completed":"2016-09-17T19:13:51.576Z", + "new_balance":"11015.61", + "value":"-42.34" + } + }, + { + "id":"4f46e88e-0dc4-48a8-b5a1-6cd797cb70eb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T07:12:49.135Z", + "completed":"2016-09-19T07:12:49.135Z", + "new_balance":"11011.91", + "value":"-3.70" + } + }, + { + "id":"aac45f26-571a-4b9e-94e6-f0cff80171ad", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T16:48:04.278Z", + "completed":"2016-09-21T16:48:04.278Z", + "new_balance":"10992.33", + "value":"-19.58" + } + }, + { + "id":"244cd82e-965a-44ad-9589-67e3913b8deb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T17:05:21.591Z", + "completed":"2016-09-23T17:05:21.591Z", + "new_balance":"10946.82", + "value":"-45.51" + } + }, + { + "id":"33e16312-88a4-411c-9aab-4917ad11051b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T20:41:39.812Z", + "completed":"2016-09-24T20:41:39.812Z", + "new_balance":"10940.13", + "value":"-6.69" + } + }, + { + "id":"063aaca5-c089-465f-8c66-c42da260f66e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T22:40:02.888Z", + "completed":"2016-09-27T22:40:02.888Z", + "new_balance":"10927.12", + "value":"-13.01" + } + }, + { + "id":"4897ab13-92e7-4494-ab72-04c6480234b5", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T19:15:35.233Z", + "completed":"2016-10-01T19:15:35.233Z", + "new_balance":"10914.11", + "value":"-13.01" + } + }, + { + "id":"883c1e19-a84a-4cd0-ba7a-69d9ecd524f1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:00:21.794Z", + "completed":"2016-12-01T15:00:21.794Z", + "new_balance":"10868.60", + "value":"-45.51" + } + }, + { + "id":"c63743de-aea5-4bb2-a62a-0125f5c0e06b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T15:45:41.746Z", + "completed":"2016-12-04T15:45:41.746Z", + "new_balance":"10794.67", + "value":"-73.93" + } + }, + { + "id":"69a6f5c3-110c-4547-9607-f9dbd22d8683", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T11:12:59.950Z", + "completed":"2016-12-19T11:12:59.950Z", + "new_balance":"10743.57", + "value":"-51.10" + } + }, + { + "id":"a1c7f94d-2b36-44b5-aceb-957b55e1d870", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T01:29:14.983Z", + "completed":"2016-12-24T01:29:14.983Z", + "new_balance":"10736.88", + "value":"-6.69" + } + }, + { + "id":"591e7b26-2fe0-4e58-998a-12ac379f3e86", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T02:08:31.520Z", + "completed":"2016-12-24T02:08:31.520Z", + "new_balance":"10733.18", + "value":"-3.70" + } + }, + { + "id":"9094d0f1-a666-4f39-bb2f-d1c05839e22f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T04:25:03.540Z", + "completed":"2016-12-28T04:25:03.540Z", + "new_balance":"10569.70", + "value":"-163.48" + } + }, + { + "id":"043a4243-2cad-4c2d-bede-2982356c59a3", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T07:12:29.652Z", + "completed":"2016-12-28T07:12:29.652Z", + "new_balance":"10527.36", + "value":"-42.34" + } + }, + { + "id":"4b8f9ba2-b45e-447b-8f19-43c451d32a4c", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T17:17:01.209Z", + "completed":"2016-12-28T17:17:01.209Z", + "new_balance":"10210.15", + "value":"-317.21" + } + }, + { + "id":"2e5e6083-f215-4dfd-ae3d-9a07621dae3b", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T14:30:35.586Z", + "completed":"2016-12-29T14:30:35.586Z", + "new_balance":"10206.45", + "value":"-3.70" + } + }, + { + "id":"329aab55-097b-4330-a8a6-04b9b2f022d0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T02:48:47.489Z", + "completed":"2016-12-30T02:48:47.489Z", + "new_balance":"10160.94", + "value":"-45.51" + } + }, + { + "id":"31f5dbc3-afa3-407d-9d24-9a8e4a9d5424", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T21:35:24.846Z", + "completed":"2016-12-30T21:35:24.846Z", + "new_balance":"10141.36", + "value":"-19.58" + } + }, + { + "id":"35b897e4-3929-416f-999d-3b5a1f92f2c0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T22:05:35.339Z", + "completed":"2016-12-30T22:05:35.339Z", + "new_balance":"10134.67", + "value":"-6.69" + } + }, + { + "id":"2560c2e3-0a95-4a85-871b-f0c24b392946", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T17:37:00.099Z", + "completed":"2017-03-01T17:37:00.099Z", + "new_balance":"10089.16", + "value":"-45.51" + } + }, + { + "id":"a9a758a9-3b7c-487b-9221-9a5b43fbc32a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T05:28:06.834Z", + "completed":"2017-03-02T05:28:06.834Z", + "new_balance":"10015.23", + "value":"-73.93" + } + }, + { + "id":"7ec38fe2-f6a3-48fe-9692-3d4ac8962d20", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T05:42:09.417Z", + "completed":"2017-03-06T05:42:09.417Z", + "new_balance":"9964.13", + "value":"-51.10" + } + }, + { + "id":"97316957-cc19-4593-a370-b278783f6586", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T20:39:56.517Z", + "completed":"2017-03-11T20:39:56.517Z", + "new_balance":"9957.44", + "value":"-6.69" + } + }, + { + "id":"29cf1768-3a6b-4da0-81a1-57672033be7a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T12:34:23.704Z", + "completed":"2017-03-13T12:34:23.704Z", + "new_balance":"9953.74", + "value":"-3.70" + } + }, + { + "id":"119ec242-6df6-478c-9526-1a12a76c3383", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T05:05:15.453Z", + "completed":"2017-03-16T05:05:15.453Z", + "new_balance":"9636.53", + "value":"-317.21" + } + }, + { + "id":"6ee727e7-3e6f-497a-ae5f-75486f2b34e2", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T11:05:40.350Z", + "completed":"2017-03-17T11:05:40.350Z", + "new_balance":"9594.19", + "value":"-42.34" + } + }, + { + "id":"81006ac5-1652-4289-be8b-1c18b6281434", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T23:05:38.828Z", + "completed":"2017-03-17T23:05:38.828Z", + "new_balance":"9430.71", + "value":"-163.48" + } + }, + { + "id":"7a3ebd98-7c61-4ae6-803c-32b7183d4da8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T09:39:33.235Z", + "completed":"2017-03-19T09:39:33.235Z", + "new_balance":"9427.01", + "value":"-3.70" + } + }, + { + "id":"af012ebe-99d5-4cb7-944f-1f7f8eff6138", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T09:38:27.311Z", + "completed":"2017-03-21T09:38:27.311Z", + "new_balance":"9407.43", + "value":"-19.58" + } + }, + { + "id":"7b9bb87a-5de9-4d44-b07a-07712faa77a0", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T00:46:19.603Z", + "completed":"2017-03-23T00:46:19.603Z", + "new_balance":"9361.92", + "value":"-45.51" + } + }, + { + "id":"7b059b60-8b32-4bd9-832e-98eeda24b391", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T23:23:13.670Z", + "completed":"2017-03-24T23:23:13.670Z", + "new_balance":"9355.23", + "value":"-6.69" + } + }, + { + "id":"9f7f828b-82a1-4355-b13a-bbe1bc92889f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T20:18:50.774Z", + "completed":"2017-03-26T20:18:50.774Z", + "new_balance":"9342.22", + "value":"-13.01" + } + }, + { + "id":"dd6d4d3a-4529-452b-b8dc-7244e355a0b1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T19:28:20.154Z", + "completed":"2017-04-01T19:28:20.154Z", + "new_balance":"9329.21", + "value":"-13.01" + } + }, + { + "id":"62cb00a5-d712-471e-a9cf-5cf34749d129", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T19:43:45.122Z", + "completed":"2017-06-01T19:43:45.122Z", + "new_balance":"9283.70", + "value":"-45.51" + } + }, + { + "id":"da2e73ec-373c-48d5-a7eb-85c7fe5c4386", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T09:38:15.852Z", + "completed":"2017-06-04T09:38:15.852Z", + "new_balance":"9209.77", + "value":"-73.93" + } + }, + { + "id":"872f66e9-250f-4ff9-8403-5bb643dc7622", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T22:31:57.212Z", + "completed":"2017-06-19T22:31:57.212Z", + "new_balance":"9158.67", + "value":"-51.10" + } + }, + { + "id":"fd377a2c-4255-4394-beda-dbe097d4fefb", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T01:43:28.077Z", + "completed":"2017-06-21T01:43:28.077Z", + "new_balance":"9151.98", + "value":"-6.69" + } + }, + { + "id":"4ab262d2-c09c-4bbb-9b1f-3d5b7c229dfd", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T02:07:50.676Z", + "completed":"2017-06-24T02:07:50.676Z", + "new_balance":"9148.28", + "value":"-3.70" + } + }, + { + "id":"cc46a9d1-74b9-4986-8f88-ce4937095e4d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T04:40:27.053Z", + "completed":"2017-06-28T04:40:27.053Z", + "new_balance":"8984.80", + "value":"-163.48" + } + }, + { + "id":"1d42c52c-78a4-4ffd-802e-78d0652645e7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T05:07:41.672Z", + "completed":"2017-06-28T05:07:41.672Z", + "new_balance":"8667.59", + "value":"-317.21" + } + }, + { + "id":"ff3c89e9-6008-430b-a210-e107ed727d07", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T13:39:07.536Z", + "completed":"2017-06-28T13:39:07.536Z", + "new_balance":"8625.25", + "value":"-42.34" + } + }, + { + "id":"b1fb8b1a-d13a-4ecc-aa33-c84463484314", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T15:01:01.180Z", + "completed":"2017-06-29T15:01:01.180Z", + "new_balance":"8621.55", + "value":"-3.70" + } + }, + { + "id":"f49a3824-1bfe-4eb6-9d36-e9dbb950220e", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T09:18:26.729Z", + "completed":"2017-06-30T09:18:26.729Z", + "new_balance":"8576.04", + "value":"-45.51" + } + }, + { + "id":"d4e278b5-7d50-4ea2-bdce-b78caf8e746f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T09:48:26.133Z", + "completed":"2017-06-30T09:48:26.133Z", + "new_balance":"8556.46", + "value":"-19.58" + } + }, + { + "id":"6e1e9cb9-272b-4e25-9b86-28a1a161c33a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T13:45:59.758Z", + "completed":"2017-06-30T13:45:59.758Z", + "new_balance":"8549.77", + "value":"-6.69" + } + }, + { + "id":"d9c6969a-de23-49ea-90c1-43dfbe3104b1", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T00:07:08.379Z", + "completed":"2017-09-01T00:07:08.379Z", + "new_balance":"8525.91", + "value":"-23.86" + } + }, + { + "id":"ad9134ac-e7d5-4b46-a5fc-50a036209f90", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T18:45:52.169Z", + "completed":"2017-09-02T18:45:52.169Z", + "new_balance":"8451.98", + "value":"-73.93" + } + }, + { + "id":"8c8f83c3-f6d4-4666-b5fb-45f9b3937027", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T12:32:36.905Z", + "completed":"2017-09-07T12:32:36.905Z", + "new_balance":"8400.88", + "value":"-51.10" + } + }, + { + "id":"562bd015-d4ba-4f77-a318-4ccfe2d5ba0a", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T12:32:16.360Z", + "completed":"2017-09-11T12:32:16.360Z", + "new_balance":"8394.19", + "value":"-6.69" + } + }, + { + "id":"61617206-a65a-4f64-8f48-70db32b39460", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T10:05:11.167Z", + "completed":"2017-09-15T10:05:11.167Z", + "new_balance":"8383.28", + "value":"-10.91" + } + }, + { + "id":"1e064b67-2130-420c-80c2-b3e80d55d9f4", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T02:05:41.358Z", + "completed":"2017-09-17T02:05:41.358Z", + "new_balance":"8340.94", + "value":"-42.34" + } + }, + { + "id":"6c447cb1-4ed7-42f0-a577-cf54cda2d445", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T20:33:33.941Z", + "completed":"2017-09-17T20:33:33.941Z", + "new_balance":"8177.46", + "value":"-163.48" + } + }, + { + "id":"efde1347-05c4-4e32-8ec0-8dea12476f77", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T21:33:46.484Z", + "completed":"2017-09-17T21:33:46.484Z", + "new_balance":"7860.25", + "value":"-317.21" + } + }, + { + "id":"ba837a70-ba7a-431c-b025-4f5504ae858f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T06:42:25.043Z", + "completed":"2017-09-19T06:42:25.043Z", + "new_balance":"7856.55", + "value":"-3.70" + } + }, + { + "id":"5d80e092-4111-4edb-91a9-431065c66618", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T11:49:29.220Z", + "completed":"2017-09-21T11:49:29.220Z", + "new_balance":"7836.97", + "value":"-19.58" + } + }, + { + "id":"c619228a-a08b-4cbd-8d35-0166510d3a58", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T12:51:37.996Z", + "completed":"2017-09-23T12:51:37.996Z", + "new_balance":"7791.46", + "value":"-45.51" + } + }, + { + "id":"f8144f04-1239-4927-b91e-f7c44b57e02f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T10:57:15.429Z", + "completed":"2017-09-24T10:57:15.429Z", + "new_balance":"7784.77", + "value":"-6.69" + } + }, + { + "id":"daa324b8-6a65-4faf-bc04-547ff78a8d20", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:25:52.580Z", + "completed":"2017-09-27T21:25:52.580Z", + "new_balance":"7771.76", + "value":"-13.01" + } + }, + { + "id":"3ff80b07-36fa-4dcd-820d-e35a79a58995", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T19:37:39.324Z", + "completed":"2017-10-01T19:37:39.324Z", + "new_balance":"7758.75", + "value":"-13.01" + } + }, + { + "id":"18c1e259-76ca-440d-a1ec-50d6c803e157", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T11:02:37.782Z", + "completed":"2017-12-01T11:02:37.782Z", + "new_balance":"7713.24", + "value":"-45.51" + } + }, + { + "id":"0696880b-00df-4df1-904b-6e7bad939e2f", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T09:31:58.431Z", + "completed":"2017-12-04T09:31:58.431Z", + "new_balance":"7639.31", + "value":"-73.93" + } + }, + { + "id":"d7e47d17-9031-4430-bcec-57ce2c052f22", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T17:16:26.250Z", + "completed":"2017-12-19T17:16:26.250Z", + "new_balance":"7588.21", + "value":"-51.10" + } + }, + { + "id":"14861ebc-b46f-46ed-9440-2f5172265a45", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T09:20:59.792Z", + "completed":"2017-12-24T09:20:59.792Z", + "new_balance":"7581.52", + "value":"-6.69" + } + }, + { + "id":"1e26219e-d5a3-4b05-842b-66dcdb046224", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T19:16:15.627Z", + "completed":"2017-12-24T19:16:15.627Z", + "new_balance":"7577.82", + "value":"-3.70" + } + }, + { + "id":"05633228-44b9-439e-a353-4878a39e5cb8", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T05:14:32.772Z", + "completed":"2017-12-28T05:14:32.772Z", + "new_balance":"7260.61", + "value":"-317.21" + } + }, + { + "id":"fb601258-d5c1-4902-a38b-11bea24a0e56", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T08:50:24.384Z", + "completed":"2017-12-28T08:50:24.384Z", + "new_balance":"7218.27", + "value":"-42.34" + } + }, + { + "id":"a45395b3-7b8e-463c-a541-1ddc7402b147", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T17:43:47.436Z", + "completed":"2017-12-28T17:43:47.436Z", + "new_balance":"7054.79", + "value":"-163.48" + } + }, + { + "id":"594b8aa8-92e9-4e76-b7d7-2d4ba4484561", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T00:40:26.963Z", + "completed":"2017-12-29T00:40:26.963Z", + "new_balance":"7051.09", + "value":"-3.70" + } + }, + { + "id":"e280da76-00de-42ee-b769-61bb5595390d", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T08:32:40.160Z", + "completed":"2017-12-30T08:32:40.160Z", + "new_balance":"7044.40", + "value":"-6.69" + } + }, + { + "id":"54402aca-f36a-4e4a-8b70-36fc9d8944a7", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T13:06:47.984Z", + "completed":"2017-12-30T13:06:47.984Z", + "new_balance":"6998.89", + "value":"-45.51" + } + }, + { + "id":"5b9d1db1-fe2c-4fef-a9b2-836aa6863f24", + "this_account":{ + "id":"02e4c69f-e114-4e15-b69b-c2f7dcebab1b", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T15:00:28.923Z", + "completed":"2017-12-30T15:00:28.923Z", + "new_balance":"6979.31", + "value":"-19.58" + } + }, + { + "id":"12e13484-b35e-45fe-a308-4f78fc6ea0df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T00:11:00.053Z", + "completed":"2016-01-01T00:11:00.053Z", + "new_balance":"7740.58", + "value":"1680.41" + } + }, + { + "id":"579b2f07-5813-4e6f-a05e-e755fdd38945", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T05:09:20.188Z", + "completed":"2016-01-01T05:09:20.188Z", + "new_balance":"8763.00", + "value":"1022.42" + } + }, + { + "id":"a3e95969-90f9-4954-8921-374bc7a5620a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T15:57:56.021Z", + "completed":"2016-01-02T15:57:56.021Z", + "new_balance":"8355.43", + "value":"-407.57" + } + }, + { + "id":"5d0aa51d-2557-4f40-ba79-f71d1259dd9b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T01:54:40.917Z", + "completed":"2016-01-03T01:54:40.917Z", + "new_balance":"8337.81", + "value":"-17.62" + } + }, + { + "id":"f2218939-2439-405b-bfab-951f92dcec19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T12:33:40.515Z", + "completed":"2016-01-03T12:33:40.515Z", + "new_balance":"8291.01", + "value":"-46.80" + } + }, + { + "id":"944b543a-741d-4c6a-8a86-d516284d3a0e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T20:47:14.616Z", + "completed":"2016-01-03T20:47:14.616Z", + "new_balance":"8284.63", + "value":"-6.38" + } + }, + { + "id":"02ed9b49-7e7a-481d-9c92-c0ee6ea46750", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:14:12.225Z", + "completed":"2016-01-04T18:14:12.225Z", + "new_balance":"8273.72", + "value":"-10.91" + } + }, + { + "id":"a3245435-3bbc-4d76-aeb9-30a8a3db4c37", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T14:23:52.905Z", + "completed":"2016-01-05T14:23:52.905Z", + "new_balance":"8266.73", + "value":"-6.99" + } + }, + { + "id":"ad57594e-0c36-4e5d-b358-1bf7deb58003", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T07:33:04.581Z", + "completed":"2016-01-07T07:33:04.581Z", + "new_balance":"8247.57", + "value":"-19.16" + } + }, + { + "id":"185c147c-4d92-4049-9909-e314abf4163c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T16:44:13.888Z", + "completed":"2016-01-07T16:44:13.888Z", + "new_balance":"8222.64", + "value":"-24.93" + } + }, + { + "id":"8a876a37-5222-4821-8b01-414d73671afe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T04:59:21.535Z", + "completed":"2016-01-08T04:59:21.535Z", + "new_balance":"8207.65", + "value":"-14.99" + } + }, + { + "id":"da82c2fe-1357-443e-a97c-263e775a477b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T19:21:14.246Z", + "completed":"2016-01-08T19:21:14.246Z", + "new_balance":"8191.64", + "value":"-16.01" + } + }, + { + "id":"9471ea9a-e860-4984-b718-573a9fe52c04", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T17:36:15.372Z", + "completed":"2016-01-09T17:36:15.372Z", + "new_balance":"8146.58", + "value":"-45.06" + } + }, + { + "id":"edd2491d-73a2-4e36-b332-fab3075f5914", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T21:15:13.300Z", + "completed":"2016-01-09T21:15:13.300Z", + "new_balance":"8117.42", + "value":"-29.16" + } + }, + { + "id":"282a0c4a-22fd-4e65-932d-3bc91d55ddc0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T01:04:04.645Z", + "completed":"2016-01-10T01:04:04.645Z", + "new_balance":"8072.94", + "value":"-44.48" + } + }, + { + "id":"68de0c2e-195e-47b4-9aa4-fbd204c0b6f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T18:24:32.529Z", + "completed":"2016-01-10T18:24:32.529Z", + "new_balance":"7968.22", + "value":"-104.72" + } + }, + { + "id":"3abe6704-85b9-4bc8-bc5b-3cbf4d1ef546", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:14:39.366Z", + "completed":"2016-01-11T02:14:39.366Z", + "new_balance":"7962.45", + "value":"-5.77" + } + }, + { + "id":"a9a2a100-2dcb-41fe-8d4f-95d3ca4614fe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T06:17:53.662Z", + "completed":"2016-01-11T06:17:53.662Z", + "new_balance":"7883.37", + "value":"-79.08" + } + }, + { + "id":"907e908b-f5ae-4b09-95c6-98b3fd35f91c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T06:40:17.275Z", + "completed":"2016-01-11T06:40:17.275Z", + "new_balance":"7974.25", + "value":"90.88" + } + }, + { + "id":"375fb030-9926-4b73-95f7-40ea7e4331c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T11:06:32.699Z", + "completed":"2016-01-12T11:06:32.699Z", + "new_balance":"7964.18", + "value":"-10.07" + } + }, + { + "id":"e704ed28-365e-4095-a959-678100fa36c8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T23:30:13.811Z", + "completed":"2016-01-15T23:30:13.811Z", + "new_balance":"7938.78", + "value":"-25.40" + } + }, + { + "id":"211f1443-477d-42c2-b9ac-340f2dc223ae", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T07:07:48.110Z", + "completed":"2016-01-16T07:07:48.110Z", + "new_balance":"7907.97", + "value":"-30.81" + } + }, + { + "id":"1ea0d3de-e638-4a2b-bf67-a52720b300bd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T14:11:57.517Z", + "completed":"2016-01-17T14:11:57.517Z", + "new_balance":"7893.14", + "value":"-14.83" + } + }, + { + "id":"68ba3d13-cf0a-42f4-ab7d-731228d0170a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T21:36:42.291Z", + "completed":"2016-01-20T21:36:42.291Z", + "new_balance":"7886.15", + "value":"-6.99" + } + }, + { + "id":"0846f58c-878f-4ddc-9c3a-287e4643c29b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T10:41:07.673Z", + "completed":"2016-01-21T10:41:07.673Z", + "new_balance":"7837.37", + "value":"-48.78" + } + }, + { + "id":"63875881-60c4-4b04-ac7f-1f6665a8607f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T05:46:59.114Z", + "completed":"2016-01-23T05:46:59.114Z", + "new_balance":"7639.46", + "value":"-197.91" + } + }, + { + "id":"f01977e4-b8d0-4d0e-ab43-225ee028c7ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:56:32.849Z", + "completed":"2016-02-01T02:56:32.849Z", + "new_balance":"8661.88", + "value":"1022.42" + } + }, + { + "id":"b3b18fb1-1568-4da4-9b07-030baa4ed4a3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T01:15:19.132Z", + "completed":"2016-02-03T01:15:19.132Z", + "new_balance":"8498.40", + "value":"-163.48" + } + }, + { + "id":"6ec88435-d1e6-4ac6-a9c3-99ee54089b3e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T11:41:39.803Z", + "completed":"2016-02-03T11:41:39.803Z", + "new_balance":"8090.83", + "value":"-407.57" + } + }, + { + "id":"8e2acbfe-cd4c-4605-bc0c-3249c921f0e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T18:15:04.530Z", + "completed":"2016-02-04T18:15:04.530Z", + "new_balance":"8076.32", + "value":"-14.51" + } + }, + { + "id":"1d0f2192-3f2c-4aea-b75e-18fb193db78f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T23:34:46.848Z", + "completed":"2016-02-05T23:34:46.848Z", + "new_balance":"8069.83", + "value":"-6.49" + } + }, + { + "id":"f0a6737a-303e-4dca-a1db-472c13305615", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T08:24:39.507Z", + "completed":"2016-02-06T08:24:39.507Z", + "new_balance":"8045.03", + "value":"-24.80" + } + }, + { + "id":"f3d9afe0-ef2d-4618-af7c-c4580d2238fa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T12:47:56.292Z", + "completed":"2016-02-07T12:47:56.292Z", + "new_balance":"7940.31", + "value":"-104.72" + } + }, + { + "id":"97a386e4-4888-4f4b-83de-1977b5d89a3a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T13:09:04.312Z", + "completed":"2016-02-07T13:09:04.312Z", + "new_balance":"7911.15", + "value":"-29.16" + } + }, + { + "id":"926bab72-d650-4e02-bb5d-ccf6d306a1cc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T15:27:07.157Z", + "completed":"2016-02-07T15:27:07.157Z", + "new_balance":"7869.80", + "value":"-41.35" + } + }, + { + "id":"b3f335ac-42ff-47d8-8d4d-e62942319cc0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T23:29:51.019Z", + "completed":"2016-02-08T23:29:51.019Z", + "new_balance":"7819.24", + "value":"-50.56" + } + }, + { + "id":"a24a1aa5-073f-40ba-82f3-597224c2f2f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T10:00:06.286Z", + "completed":"2016-02-09T10:00:06.286Z", + "new_balance":"7793.44", + "value":"-25.80" + } + }, + { + "id":"cde0d322-b8f2-4767-b276-f8e11382a408", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T20:35:04.024Z", + "completed":"2016-02-10T20:35:04.024Z", + "new_balance":"7786.45", + "value":"-6.99" + } + }, + { + "id":"bb9779d3-09e1-4d51-9a10-ecbb0cc325c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T18:10:21.720Z", + "completed":"2016-02-12T18:10:21.720Z", + "new_balance":"7751.26", + "value":"-35.19" + } + }, + { + "id":"448e9580-b7e9-4cb5-952e-31bacd306442", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T09:25:08.793Z", + "completed":"2016-02-14T09:25:08.793Z", + "new_balance":"7722.10", + "value":"-29.16" + } + }, + { + "id":"fe4ce81c-085a-43b7-9835-1f3aa9483db6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T13:11:53.132Z", + "completed":"2016-02-16T13:11:53.132Z", + "new_balance":"7716.33", + "value":"-5.77" + } + }, + { + "id":"a646da34-dd04-4da7-82b2-c02cb468ed53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T18:51:25.842Z", + "completed":"2016-02-16T18:51:25.842Z", + "new_balance":"7670.82", + "value":"-45.51" + } + }, + { + "id":"f9c0c1da-e8ba-4329-937e-2af89f9d79d5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T02:49:17.082Z", + "completed":"2016-02-18T02:49:17.082Z", + "new_balance":"7662.42", + "value":"-8.40" + } + }, + { + "id":"5e76b4e2-5f71-4163-b87d-3cd93f9ccf0b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T05:03:44.850Z", + "completed":"2016-02-21T05:03:44.850Z", + "new_balance":"7613.64", + "value":"-48.78" + } + }, + { + "id":"9832163b-acdc-496b-885c-08582c9f05ab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T12:29:35.438Z", + "completed":"2016-02-21T12:29:35.438Z", + "new_balance":"7727.78", + "value":"114.14" + } + }, + { + "id":"43e04817-9080-4caa-a16e-dbd864a0f8aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T22:17:52.402Z", + "completed":"2016-02-27T22:17:52.402Z", + "new_balance":"7529.87", + "value":"-197.91" + } + }, + { + "id":"7fb6681d-a953-42b2-8bae-4ae5be066fb6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T15:51:04.523Z", + "completed":"2016-03-01T15:51:04.523Z", + "new_balance":"8552.29", + "value":"1022.42" + } + }, + { + "id":"cc44e159-ee02-40e6-ae31-6feaad04f3d7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T13:41:17.547Z", + "completed":"2016-03-03T13:41:17.547Z", + "new_balance":"8144.72", + "value":"-407.57" + } + }, + { + "id":"93c25c3b-e603-41dc-adfb-859066a8c09d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T06:02:06.878Z", + "completed":"2016-03-04T06:02:06.878Z", + "new_balance":"8113.91", + "value":"-30.81" + } + }, + { + "id":"0f382fb0-a495-4bd9-8e46-78059b821cd2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T20:16:45.003Z", + "completed":"2016-03-04T20:16:45.003Z", + "new_balance":"8082.46", + "value":"-31.45" + } + }, + { + "id":"860a15a5-c95f-4089-8fca-20ad2b9f016e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T22:56:43.969Z", + "completed":"2016-03-04T22:56:43.969Z", + "new_balance":"8065.46", + "value":"-17.00" + } + }, + { + "id":"f4e3641f-8054-4873-996e-7d40c457e5f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T23:24:41.602Z", + "completed":"2016-03-04T23:24:41.602Z", + "new_balance":"8019.95", + "value":"-45.51" + } + }, + { + "id":"99bd51d1-ab86-4f43-9eb2-5de03c63ec42", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T00:27:37.860Z", + "completed":"2016-03-05T00:27:37.860Z", + "new_balance":"7974.41", + "value":"-45.54" + } + }, + { + "id":"a4f51f76-f4c8-4283-bb47-07c0b3cae153", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T03:22:06.431Z", + "completed":"2016-03-05T03:22:06.431Z", + "new_balance":"7968.64", + "value":"-5.77" + } + }, + { + "id":"15dfce50-f5ff-4650-849c-4a6b1ffa8962", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T08:20:41.948Z", + "completed":"2016-03-05T08:20:41.948Z", + "new_balance":"7954.58", + "value":"-14.06" + } + }, + { + "id":"762f6ddb-770d-49ad-8ec2-1588cdc98ba8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T11:52:17.859Z", + "completed":"2016-03-05T11:52:17.859Z", + "new_balance":"7849.86", + "value":"-104.72" + } + }, + { + "id":"38f80eb6-b86d-4f81-9777-fa432f876700", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T02:08:52.198Z", + "completed":"2016-03-06T02:08:52.198Z", + "new_balance":"7768.07", + "value":"-81.79" + } + }, + { + "id":"92f61221-947c-402a-a4a4-fb3cf9d461a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T20:09:56.213Z", + "completed":"2016-03-06T20:09:56.213Z", + "new_balance":"7668.95", + "value":"-99.12" + } + }, + { + "id":"8ece3b51-d70c-4aa7-97a6-18d66ee5c742", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T05:19:17.731Z", + "completed":"2016-03-07T05:19:17.731Z", + "new_balance":"7663.18", + "value":"-5.77" + } + }, + { + "id":"eafda1e3-94d4-4a04-9ec2-315d4dc826da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T13:05:49.991Z", + "completed":"2016-03-07T13:05:49.991Z", + "new_balance":"7655.57", + "value":"-7.61" + } + }, + { + "id":"9c7244cb-2ce4-476b-821c-75ff30ee633f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T01:53:49.260Z", + "completed":"2016-03-08T01:53:49.260Z", + "new_balance":"7647.96", + "value":"-7.61" + } + }, + { + "id":"f75917ef-6fbf-469d-ae30-7e59820be845", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T16:50:14.039Z", + "completed":"2016-03-08T16:50:14.039Z", + "new_balance":"7639.44", + "value":"-8.52" + } + }, + { + "id":"a4aa1329-6ef7-4772-a7ee-de5e764e9256", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T01:41:58.037Z", + "completed":"2016-03-10T01:41:58.037Z", + "new_balance":"7607.10", + "value":"-32.34" + } + }, + { + "id":"0a7924b0-5fa3-433b-bf5f-521697c80f68", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T03:20:09.600Z", + "completed":"2016-03-11T03:20:09.600Z", + "new_balance":"7594.73", + "value":"-12.37" + } + }, + { + "id":"3188c476-f3ed-4931-a091-40f1c67973a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T12:38:41.218Z", + "completed":"2016-03-11T12:38:41.218Z", + "new_balance":"7570.43", + "value":"-24.30" + } + }, + { + "id":"09c9c617-1afa-4fe9-ae51-769fec466747", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T23:49:41.825Z", + "completed":"2016-03-11T23:49:41.825Z", + "new_balance":"7564.66", + "value":"-5.77" + } + }, + { + "id":"5b7adb01-8156-4764-94c7-a8c1a25e5fa3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T01:05:19.157Z", + "completed":"2016-03-12T01:05:19.157Z", + "new_balance":"7558.89", + "value":"-5.77" + } + }, + { + "id":"0cd98450-381f-44ac-a7ab-ab04509f9722", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T06:50:51.650Z", + "completed":"2016-03-12T06:50:51.650Z", + "new_balance":"7457.63", + "value":"-101.26" + } + }, + { + "id":"e52a8b8c-f3b4-448a-beb5-4bd33f910600", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:56:10.242Z", + "completed":"2016-03-12T15:56:10.242Z", + "new_balance":"7391.45", + "value":"-66.18" + } + }, + { + "id":"00db8c28-99cf-4f36-897c-8a0e5d3a583d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T18:09:36.524Z", + "completed":"2016-03-12T18:09:36.524Z", + "new_balance":"7372.29", + "value":"-19.16" + } + }, + { + "id":"b16f4362-6d31-4a0d-85b2-6dcbe22342d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T02:04:00.075Z", + "completed":"2016-03-13T02:04:00.075Z", + "new_balance":"7329.80", + "value":"-42.49" + } + }, + { + "id":"52090c9f-d4a7-4508-9501-0fc185d4ea46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T23:50:11.338Z", + "completed":"2016-03-13T23:50:11.338Z", + "new_balance":"7324.03", + "value":"-5.77" + } + }, + { + "id":"f441ae31-b9e4-40d9-a363-07974d22af2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T08:14:26.115Z", + "completed":"2016-03-15T08:14:26.115Z", + "new_balance":"7275.14", + "value":"-48.89" + } + }, + { + "id":"855c60a2-2770-43cb-bb1f-7b7ed4e5385b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T19:37:05.779Z", + "completed":"2016-03-15T19:37:05.779Z", + "new_balance":"7232.91", + "value":"-42.23" + } + }, + { + "id":"4e88a945-db8f-4224-ac2e-77fa57c993cd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T17:21:35.359Z", + "completed":"2016-03-17T17:21:35.359Z", + "new_balance":"7188.94", + "value":"-43.97" + } + }, + { + "id":"297e6b10-b4c5-4c0d-a924-2b222793b17f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T23:40:59.267Z", + "completed":"2016-03-18T23:40:59.267Z", + "new_balance":"7091.44", + "value":"-97.50" + } + }, + { + "id":"fb6b72ab-53a7-466f-af98-c4fae4e4747c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T08:05:26.952Z", + "completed":"2016-03-20T08:05:26.952Z", + "new_balance":"6987.12", + "value":"-104.32" + } + }, + { + "id":"91ab516f-6896-47ae-b1ff-0833f1088dd5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T15:09:26.546Z", + "completed":"2016-03-22T15:09:26.546Z", + "new_balance":"6946.80", + "value":"-40.32" + } + }, + { + "id":"34281bb5-efbc-40f2-ba35-fab888504ac8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T02:49:19.231Z", + "completed":"2016-03-25T02:49:19.231Z", + "new_balance":"6941.03", + "value":"-5.77" + } + }, + { + "id":"48087528-7f3d-4657-905b-dcd0fd7026c5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T22:54:45.730Z", + "completed":"2016-03-25T22:54:45.730Z", + "new_balance":"6928.02", + "value":"-13.01" + } + }, + { + "id":"3860c33a-53a7-49f7-9904-df2a9d3ce42b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T08:28:30.300Z", + "completed":"2016-03-26T08:28:30.300Z", + "new_balance":"6915.23", + "value":"-12.79" + } + }, + { + "id":"0b00d473-c346-4921-9e17-a3f1e31eaefe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T09:54:25.065Z", + "completed":"2016-03-26T09:54:25.065Z", + "new_balance":"6889.61", + "value":"-25.62" + } + }, + { + "id":"fa9d94ef-911d-4e0e-bae3-c09a47d88d19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:56:44.101Z", + "completed":"2016-03-27T22:56:44.101Z", + "new_balance":"6875.42", + "value":"-14.19" + } + }, + { + "id":"4efbe283-67af-491e-9119-690e8c4273d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T02:23:44.852Z", + "completed":"2016-03-28T02:23:44.852Z", + "new_balance":"6826.64", + "value":"-48.78" + } + }, + { + "id":"aebf24c1-f171-4b97-ac6e-d36080ff7c10", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T13:17:55.519Z", + "completed":"2016-03-31T13:17:55.519Z", + "new_balance":"6628.73", + "value":"-197.91" + } + }, + { + "id":"fb077707-07e0-43fe-a4eb-135801f1e00f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T00:50:42.858Z", + "completed":"2016-04-01T00:50:42.858Z", + "new_balance":"8309.14", + "value":"1680.41" + } + }, + { + "id":"56f84085-a55b-4278-a8d0-accc90367047", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T08:24:47.708Z", + "completed":"2016-04-01T08:24:47.708Z", + "new_balance":"7901.57", + "value":"-407.57" + } + }, + { + "id":"b867135f-be27-417c-afe0-f534557dae91", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T14:48:49.351Z", + "completed":"2016-04-01T14:48:49.351Z", + "new_balance":"8923.99", + "value":"1022.42" + } + }, + { + "id":"a92a61f4-dab7-4a35-83d9-b3457298b38b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T06:53:45.141Z", + "completed":"2016-04-03T06:53:45.141Z", + "new_balance":"8917.61", + "value":"-6.38" + } + }, + { + "id":"ec15738e-533b-4103-a9a6-fe06734728f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T09:32:24.743Z", + "completed":"2016-04-03T09:32:24.743Z", + "new_balance":"8870.81", + "value":"-46.80" + } + }, + { + "id":"b205faa0-ac51-435e-8a33-257e09d14730", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T15:44:29.828Z", + "completed":"2016-04-03T15:44:29.828Z", + "new_balance":"8853.19", + "value":"-17.62" + } + }, + { + "id":"737e2960-2b94-4373-9bd3-aade87215e10", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T02:55:52.681Z", + "completed":"2016-04-05T02:55:52.681Z", + "new_balance":"8846.20", + "value":"-6.99" + } + }, + { + "id":"4f039ea5-e984-47f4-bf83-e5acce6963ec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T13:59:21.381Z", + "completed":"2016-04-05T13:59:21.381Z", + "new_balance":"8835.29", + "value":"-10.91" + } + }, + { + "id":"cba2041e-c279-42cd-ac08-bf25245bfa8f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T09:34:34.602Z", + "completed":"2016-04-06T09:34:34.602Z", + "new_balance":"8810.36", + "value":"-24.93" + } + }, + { + "id":"d0ae9494-ae01-4352-93ab-af7844a408d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T20:49:47.404Z", + "completed":"2016-04-09T20:49:47.404Z", + "new_balance":"8791.20", + "value":"-19.16" + } + }, + { + "id":"4debfaaa-6b00-4f9f-b2b5-b3b0bce70f57", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T21:11:31.635Z", + "completed":"2016-04-10T21:11:31.635Z", + "new_balance":"8776.21", + "value":"-14.99" + } + }, + { + "id":"adba128c-cc75-4cd9-b9a6-e166faf1ebae", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T09:14:22.171Z", + "completed":"2016-04-11T09:14:22.171Z", + "new_balance":"8747.05", + "value":"-29.16" + } + }, + { + "id":"7d6ed210-6ca8-4a2d-957c-740c08686f95", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:42:57.738Z", + "completed":"2016-04-11T14:42:57.738Z", + "new_balance":"8731.04", + "value":"-16.01" + } + }, + { + "id":"f304f72f-1ad5-46ca-b8a1-d2f13d024789", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T03:21:27.738Z", + "completed":"2016-04-13T03:21:27.738Z", + "new_balance":"8626.32", + "value":"-104.72" + } + }, + { + "id":"669ba93c-bb66-4a30-8af2-752ebe20e922", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T15:09:12.644Z", + "completed":"2016-04-13T15:09:12.644Z", + "new_balance":"8581.26", + "value":"-45.06" + } + }, + { + "id":"74cafd0d-7336-42a9-8907-7e84aa075b31", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T09:29:58.267Z", + "completed":"2016-04-15T09:29:58.267Z", + "new_balance":"8536.78", + "value":"-44.48" + } + }, + { + "id":"521cc89b-1f86-4cc3-b305-d6804925993d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T09:08:18.441Z", + "completed":"2016-04-16T09:08:18.441Z", + "new_balance":"8526.71", + "value":"-10.07" + } + }, + { + "id":"a3b6f996-146b-4652-86f5-d8f88b96bde7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T23:18:38.045Z", + "completed":"2016-04-16T23:18:38.045Z", + "new_balance":"8520.94", + "value":"-5.77" + } + }, + { + "id":"cf389369-1e98-4c6a-9929-fb1816a8466d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:36:01.924Z", + "completed":"2016-04-18T16:36:01.924Z", + "new_balance":"8441.86", + "value":"-79.08" + } + }, + { + "id":"5e8ec402-ea36-45e8-88e5-3f2f08876859", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T07:32:34.207Z", + "completed":"2016-04-23T07:32:34.207Z", + "new_balance":"8416.46", + "value":"-25.40" + } + }, + { + "id":"5c6d9667-51db-48dd-83e7-1bb0d4f113f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T06:04:25.466Z", + "completed":"2016-04-24T06:04:25.466Z", + "new_balance":"8401.63", + "value":"-14.83" + } + }, + { + "id":"d2fe3de0-fd93-4c2c-84c2-0393481a81de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T16:26:16.402Z", + "completed":"2016-04-24T16:26:16.402Z", + "new_balance":"8370.82", + "value":"-30.81" + } + }, + { + "id":"96ae7f7b-c219-410a-9c16-856b2fb4d5e1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T06:55:46.806Z", + "completed":"2016-04-26T06:55:46.806Z", + "new_balance":"8363.83", + "value":"-6.99" + } + }, + { + "id":"7f084ee9-1e5e-441f-aba0-5320e705e1a7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T04:54:03.683Z", + "completed":"2016-04-28T04:54:03.683Z", + "new_balance":"8315.05", + "value":"-48.78" + } + }, + { + "id":"9dac4ece-c0dd-4d6c-8fbc-c2041ac54ee9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T19:17:23.490Z", + "completed":"2016-04-28T19:17:23.490Z", + "new_balance":"8117.14", + "value":"-197.91" + } + }, + { + "id":"1292b2c9-b014-4f5a-bac8-2d9ae9f13e02", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T06:05:17.101Z", + "completed":"2016-05-02T06:05:17.101Z", + "new_balance":"7953.66", + "value":"-163.48" + } + }, + { + "id":"14594fac-8971-468e-a7fe-51c911229faa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T13:19:27.339Z", + "completed":"2016-05-02T13:19:27.339Z", + "new_balance":"7546.09", + "value":"-407.57" + } + }, + { + "id":"717558e3-bf57-43c4-8962-3b1151ee3ae5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T16:21:57.724Z", + "completed":"2016-05-02T16:21:57.724Z", + "new_balance":"7539.60", + "value":"-6.49" + } + }, + { + "id":"f52865f9-726f-492c-8a9e-ed625b089285", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T21:36:09.096Z", + "completed":"2016-05-02T21:36:09.096Z", + "new_balance":"7525.09", + "value":"-14.51" + } + }, + { + "id":"07e71ffd-88d6-4cde-9cec-5a54cf12d109", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T01:05:07.449Z", + "completed":"2016-05-06T01:05:07.449Z", + "new_balance":"7500.29", + "value":"-24.80" + } + }, + { + "id":"4c9540b6-6e1c-4589-a696-10994d511980", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T03:22:36.891Z", + "completed":"2016-05-06T03:22:36.891Z", + "new_balance":"7471.13", + "value":"-29.16" + } + }, + { + "id":"fbbdf13a-01cd-4070-ba66-712466f28657", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T07:08:22.277Z", + "completed":"2016-05-07T07:08:22.277Z", + "new_balance":"7429.78", + "value":"-41.35" + } + }, + { + "id":"d6c0bb46-f099-4af8-8339-8f1cd80648be", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T23:07:44.930Z", + "completed":"2016-05-07T23:07:44.930Z", + "new_balance":"7325.06", + "value":"-104.72" + } + }, + { + "id":"5ae0abea-5a62-4a83-b9bb-12a6d22af836", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T05:47:10.908Z", + "completed":"2016-05-09T05:47:10.908Z", + "new_balance":"8347.48", + "value":"1022.42" + } + }, + { + "id":"ae88c499-455d-40ae-8c36-8a982e1ec95f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T06:50:21.251Z", + "completed":"2016-05-14T06:50:21.251Z", + "new_balance":"8321.68", + "value":"-25.80" + } + }, + { + "id":"087d2892-8712-4ad4-a487-c98125a474fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T23:10:45.978Z", + "completed":"2016-05-14T23:10:45.978Z", + "new_balance":"8271.12", + "value":"-50.56" + } + }, + { + "id":"65b84efa-0c85-44dd-b702-3906c6ab913f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T02:24:42.535Z", + "completed":"2016-05-16T02:24:42.535Z", + "new_balance":"8264.13", + "value":"-6.99" + } + }, + { + "id":"adfa6f94-1dab-4740-ad04-d912da6c2a4c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T07:52:49.180Z", + "completed":"2016-05-21T07:52:49.180Z", + "new_balance":"8228.94", + "value":"-35.19" + } + }, + { + "id":"ac688909-ebf9-478a-bd43-6ca884916462", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T09:07:54.030Z", + "completed":"2016-05-23T09:07:54.030Z", + "new_balance":"8199.78", + "value":"-29.16" + } + }, + { + "id":"588f71fc-8bc3-4e96-b663-f44357578997", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T18:44:20.272Z", + "completed":"2016-05-23T18:44:20.272Z", + "new_balance":"8194.01", + "value":"-5.77" + } + }, + { + "id":"85b4a9a9-cdca-4876-b849-14dde223a0f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T00:40:00.311Z", + "completed":"2016-05-24T00:40:00.311Z", + "new_balance":"8148.50", + "value":"-45.51" + } + }, + { + "id":"ec6365ca-568e-47a9-8b45-6ad82f638b9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T05:36:07.666Z", + "completed":"2016-05-27T05:36:07.666Z", + "new_balance":"8140.10", + "value":"-8.40" + } + }, + { + "id":"aa738216-a3e0-436f-b17d-09670a926519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T21:16:59.996Z", + "completed":"2016-05-30T21:16:59.996Z", + "new_balance":"7942.19", + "value":"-197.91" + } + }, + { + "id":"4f25e996-750d-487c-86b7-8d4f5f041578", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T23:29:49.845Z", + "completed":"2016-05-30T23:29:49.845Z", + "new_balance":"7893.41", + "value":"-48.78" + } + }, + { + "id":"db4fb585-890c-4e9c-98dd-f98b5331d4ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T00:24:27.140Z", + "completed":"2016-06-01T00:24:27.140Z", + "new_balance":"7485.84", + "value":"-407.57" + } + }, + { + "id":"390fed6f-58c8-4a5a-a6e6-f9ee99296f16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T02:32:57.976Z", + "completed":"2016-06-01T02:32:57.976Z", + "new_balance":"8508.26", + "value":"1022.42" + } + }, + { + "id":"e7bb0d98-6afd-41c7-b7c4-ece1c2c026d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T04:33:49.072Z", + "completed":"2016-06-04T04:33:49.072Z", + "new_balance":"8491.26", + "value":"-17.00" + } + }, + { + "id":"b92c1b98-56ae-4cb3-bdd2-ae972a0ac98b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:11:34.720Z", + "completed":"2016-06-04T15:11:34.720Z", + "new_balance":"8459.81", + "value":"-31.45" + } + }, + { + "id":"a593fcb8-4536-482b-b737-60454ddbcc51", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T05:56:52.879Z", + "completed":"2016-06-11T05:56:52.879Z", + "new_balance":"8429.00", + "value":"-30.81" + } + }, + { + "id":"b897a6de-eb3b-4886-be78-b710aba2cdbd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T08:22:55.943Z", + "completed":"2016-06-11T08:22:55.943Z", + "new_balance":"8383.49", + "value":"-45.51" + } + }, + { + "id":"331c3ff3-4003-4146-9bb9-206691e58b7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T02:37:28.899Z", + "completed":"2016-06-12T02:37:28.899Z", + "new_balance":"8369.43", + "value":"-14.06" + } + }, + { + "id":"48da9ec8-61da-4131-8f73-454e64775a73", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T08:01:48.300Z", + "completed":"2016-06-12T08:01:48.300Z", + "new_balance":"8363.66", + "value":"-5.77" + } + }, + { + "id":"b1dbb999-7e5f-4ba0-8a1c-69b6de9ba49a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T19:35:00.667Z", + "completed":"2016-06-12T19:35:00.667Z", + "new_balance":"8258.94", + "value":"-104.72" + } + }, + { + "id":"0fb192fa-5b51-48a8-b86c-1bafb171bb8d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T14:35:51.711Z", + "completed":"2016-06-13T14:35:51.711Z", + "new_balance":"8213.40", + "value":"-45.54" + } + }, + { + "id":"c8b08be2-e03f-4fd0-9c52-95c36cafe3ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:53:38.575Z", + "completed":"2016-06-13T22:53:38.575Z", + "new_balance":"8114.28", + "value":"-99.12" + } + }, + { + "id":"87470c06-4c70-4d57-965d-28b0ddbe5b80", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T23:08:34.690Z", + "completed":"2016-06-13T23:08:34.690Z", + "new_balance":"8032.49", + "value":"-81.79" + } + }, + { + "id":"4f783972-d343-416d-8348-dc5a9e1a233c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T04:24:23.049Z", + "completed":"2016-06-14T04:24:23.049Z", + "new_balance":"8026.72", + "value":"-5.77" + } + }, + { + "id":"ace4bdc8-7e07-494a-8ab5-b228fffbe8e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T08:35:20.032Z", + "completed":"2016-06-14T08:35:20.032Z", + "new_balance":"8019.11", + "value":"-7.61" + } + }, + { + "id":"6a735f21-8cfd-4bce-8dce-6a5564f13cf1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T11:48:08.570Z", + "completed":"2016-06-14T11:48:08.570Z", + "new_balance":"8011.50", + "value":"-7.61" + } + }, + { + "id":"4ec0eae8-0065-4e48-8994-bf9dc5421516", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T06:23:31.531Z", + "completed":"2016-06-15T06:23:31.531Z", + "new_balance":"7979.16", + "value":"-32.34" + } + }, + { + "id":"5adeb1a8-a00d-4303-8f06-9aaf6f45ad43", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T09:15:01.548Z", + "completed":"2016-06-15T09:15:01.548Z", + "new_balance":"7970.64", + "value":"-8.52" + } + }, + { + "id":"2d1e40b1-e48d-4c4d-bcac-1502e6f3df94", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T19:16:31.814Z", + "completed":"2016-06-15T19:16:31.814Z", + "new_balance":"7964.87", + "value":"-5.77" + } + }, + { + "id":"343da199-9294-4717-b07d-aea326b8a25c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T03:01:41.904Z", + "completed":"2016-06-16T03:01:41.904Z", + "new_balance":"7940.57", + "value":"-24.30" + } + }, + { + "id":"10247868-3c3f-430b-8421-12bcd3137102", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T02:24:36.322Z", + "completed":"2016-06-17T02:24:36.322Z", + "new_balance":"7928.20", + "value":"-12.37" + } + }, + { + "id":"44b7f80d-59e0-496c-87bd-2f175b843000", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T04:11:03.156Z", + "completed":"2016-06-18T04:11:03.156Z", + "new_balance":"7885.71", + "value":"-42.49" + } + }, + { + "id":"dca27f67-aac6-4b53-b2a7-9c108452b861", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T08:50:16.675Z", + "completed":"2016-06-18T08:50:16.675Z", + "new_balance":"7866.55", + "value":"-19.16" + } + }, + { + "id":"a5e34900-bc40-4dd1-ab3f-84bba85b719e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T09:55:45.670Z", + "completed":"2016-06-18T09:55:45.670Z", + "new_balance":"7860.78", + "value":"-5.77" + } + }, + { + "id":"927a3b59-7060-4a10-986a-188653652653", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T12:04:08.718Z", + "completed":"2016-06-18T12:04:08.718Z", + "new_balance":"7794.60", + "value":"-66.18" + } + }, + { + "id":"3dbb9ec0-b5e6-4989-9780-4b7d75c3c8fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T21:34:49.262Z", + "completed":"2016-06-18T21:34:49.262Z", + "new_balance":"7693.34", + "value":"-101.26" + } + }, + { + "id":"9fc4c8f8-21bf-4e35-be48-e3f504b7a743", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T22:15:49.081Z", + "completed":"2016-06-18T22:15:49.081Z", + "new_balance":"7687.57", + "value":"-5.77" + } + }, + { + "id":"c6f21af2-a8f2-4fe4-8fc7-243886917651", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T02:00:41.059Z", + "completed":"2016-06-19T02:00:41.059Z", + "new_balance":"7645.34", + "value":"-42.23" + } + }, + { + "id":"fdc39b96-a555-4277-8a41-39ff4817fd51", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T13:56:27.988Z", + "completed":"2016-06-19T13:56:27.988Z", + "new_balance":"7596.45", + "value":"-48.89" + } + }, + { + "id":"661574e7-4ef4-4400-bab7-bea69691dc5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T15:03:06.649Z", + "completed":"2016-06-19T15:03:06.649Z", + "new_balance":"7552.48", + "value":"-43.97" + } + }, + { + "id":"44e266b9-a18b-4c82-a7d5-f4a968164cbf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T20:03:31.025Z", + "completed":"2016-06-21T20:03:31.025Z", + "new_balance":"7448.16", + "value":"-104.32" + } + }, + { + "id":"fcc617f3-d6eb-4881-84ad-e2072f7de389", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T22:21:28.105Z", + "completed":"2016-06-21T22:21:28.105Z", + "new_balance":"7350.66", + "value":"-97.50" + } + }, + { + "id":"22648557-6013-4852-9c55-4bac5e2d904c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T00:01:24.558Z", + "completed":"2016-06-22T00:01:24.558Z", + "new_balance":"7310.34", + "value":"-40.32" + } + }, + { + "id":"23240058-1200-49d8-9cf9-117e5c9a75f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T19:13:43.446Z", + "completed":"2016-06-22T19:13:43.446Z", + "new_balance":"7297.33", + "value":"-13.01" + } + }, + { + "id":"1ac9b4a8-95fc-4db3-8bb5-f7196bb31f21", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T23:34:15.470Z", + "completed":"2016-06-22T23:34:15.470Z", + "new_balance":"7291.56", + "value":"-5.77" + } + }, + { + "id":"7fd9295b-ce7c-4568-aa54-6bb11fac6fbe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:10:15.702Z", + "completed":"2016-06-23T16:10:15.702Z", + "new_balance":"7278.77", + "value":"-12.79" + } + }, + { + "id":"3827e677-bc75-4365-95f0-282fce9835f7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T06:40:38.772Z", + "completed":"2016-06-24T06:40:38.772Z", + "new_balance":"7253.15", + "value":"-25.62" + } + }, + { + "id":"d6aacb38-a1b1-461b-8b78-22107f307239", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T10:30:18.306Z", + "completed":"2016-06-26T10:30:18.306Z", + "new_balance":"7238.96", + "value":"-14.19" + } + }, + { + "id":"e11726bf-2d74-4403-abcb-ea8e1af34eb8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T07:57:41.543Z", + "completed":"2016-06-30T07:57:41.543Z", + "new_balance":"7041.05", + "value":"-197.91" + } + }, + { + "id":"1153fed0-4425-4c64-aed5-a7b0a9b980d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T21:31:15.467Z", + "completed":"2016-06-30T21:31:15.467Z", + "new_balance":"6992.27", + "value":"-48.78" + } + }, + { + "id":"e2222585-25e1-4811-9b81-ad3df58a3d39", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T10:23:55.775Z", + "completed":"2016-07-01T10:23:55.775Z", + "new_balance":"8014.69", + "value":"1022.42" + } + }, + { + "id":"6dfa7633-c907-488e-b102-bcb6deae0db0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:03:28.615Z", + "completed":"2016-07-01T18:03:28.615Z", + "new_balance":"9695.10", + "value":"1680.41" + } + }, + { + "id":"fa9dc7de-aaec-4bae-9839-15cf89395a0e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T12:57:21.849Z", + "completed":"2016-07-03T12:57:21.849Z", + "new_balance":"9287.53", + "value":"-407.57" + } + }, + { + "id":"5e9a24d1-0a3c-4b62-82af-68f048a1ba95", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T09:00:26.736Z", + "completed":"2016-07-04T09:00:26.736Z", + "new_balance":"9240.73", + "value":"-46.80" + } + }, + { + "id":"6e69c2a0-9344-4e05-b919-7cf5f2319ea9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T10:46:25.729Z", + "completed":"2016-07-04T10:46:25.729Z", + "new_balance":"9234.35", + "value":"-6.38" + } + }, + { + "id":"3e33e991-a55e-4ab6-91a5-e35f7d59b466", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T12:35:28.951Z", + "completed":"2016-07-04T12:35:28.951Z", + "new_balance":"9216.73", + "value":"-17.62" + } + }, + { + "id":"31c2ebaa-a603-411d-826e-dd1888d62958", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T10:33:15.539Z", + "completed":"2016-07-05T10:33:15.539Z", + "new_balance":"9205.82", + "value":"-10.91" + } + }, + { + "id":"6fef0072-c1a1-4527-b37f-198778360365", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T08:54:56.215Z", + "completed":"2016-07-07T08:54:56.215Z", + "new_balance":"9198.83", + "value":"-6.99" + } + }, + { + "id":"be34db99-4d4c-447d-b267-646a6bfaa54e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T02:19:22.679Z", + "completed":"2016-07-11T02:19:22.679Z", + "new_balance":"9183.84", + "value":"-14.99" + } + }, + { + "id":"9c29a395-b9b7-4ab1-98f5-e583f9eb2142", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T04:22:03.900Z", + "completed":"2016-07-11T04:22:03.900Z", + "new_balance":"9164.68", + "value":"-19.16" + } + }, + { + "id":"955ba6d7-8955-4618-be9c-8fdc5b074cad", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T15:29:24.555Z", + "completed":"2016-07-11T15:29:24.555Z", + "new_balance":"9148.67", + "value":"-16.01" + } + }, + { + "id":"37e96d5a-c787-4fdb-a637-6b9356e8d3da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T17:10:30.414Z", + "completed":"2016-07-11T17:10:30.414Z", + "new_balance":"9123.74", + "value":"-24.93" + } + }, + { + "id":"9d1d6de5-ca8e-424a-96e9-05c181966383", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T21:54:22.000Z", + "completed":"2016-07-11T21:54:22.000Z", + "new_balance":"9094.58", + "value":"-29.16" + } + }, + { + "id":"6bd7f54f-3348-463e-b27c-f1e7312c455d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T07:57:31.992Z", + "completed":"2016-07-13T07:57:31.992Z", + "new_balance":"8989.86", + "value":"-104.72" + } + }, + { + "id":"8774872e-f934-49f5-971e-39189fb7a0ea", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T23:07:58.737Z", + "completed":"2016-07-13T23:07:58.737Z", + "new_balance":"8944.80", + "value":"-45.06" + } + }, + { + "id":"3610d5cf-8331-4ffe-87f8-046c163397a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T00:47:01.805Z", + "completed":"2016-07-16T00:47:01.805Z", + "new_balance":"8900.32", + "value":"-44.48" + } + }, + { + "id":"d0aef306-ed95-4eda-bf9a-f4ec540430b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T21:39:41.083Z", + "completed":"2016-07-16T21:39:41.083Z", + "new_balance":"8991.20", + "value":"90.88" + } + }, + { + "id":"b86e64ba-91fb-4691-905b-bcfb6a3a43f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T04:03:06.276Z", + "completed":"2016-07-17T04:03:06.276Z", + "new_balance":"8985.43", + "value":"-5.77" + } + }, + { + "id":"f942850e-e4e6-482f-87ec-7915338c5632", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:22:35.741Z", + "completed":"2016-07-17T16:22:35.741Z", + "new_balance":"8975.36", + "value":"-10.07" + } + }, + { + "id":"f24f7785-1fa3-4f01-bb3c-70329857dd2e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T17:06:23.551Z", + "completed":"2016-07-19T17:06:23.551Z", + "new_balance":"8896.28", + "value":"-79.08" + } + }, + { + "id":"514ffd14-b1ff-4e5b-a29c-df5670849cbc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T05:47:38.275Z", + "completed":"2016-07-21T05:47:38.275Z", + "new_balance":"8870.88", + "value":"-25.40" + } + }, + { + "id":"a1fee849-0dc6-42ee-a21d-4e7ed1a2072f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T16:02:56.883Z", + "completed":"2016-07-23T16:02:56.883Z", + "new_balance":"8840.07", + "value":"-30.81" + } + }, + { + "id":"b8e22065-51f5-42c4-9bfb-54cdb3362016", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T05:21:59.487Z", + "completed":"2016-07-25T05:21:59.487Z", + "new_balance":"8825.24", + "value":"-14.83" + } + }, + { + "id":"b8231b2d-3c2b-4429-8931-c42975175188", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T22:03:34.479Z", + "completed":"2016-07-27T22:03:34.479Z", + "new_balance":"8818.25", + "value":"-6.99" + } + }, + { + "id":"a21100c8-982d-47af-9cbb-191687cf5d93", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T13:14:24.061Z", + "completed":"2016-07-28T13:14:24.061Z", + "new_balance":"8620.34", + "value":"-197.91" + } + }, + { + "id":"b8929e30-5153-4030-bdee-5c289b658848", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T15:22:52.320Z", + "completed":"2016-07-28T15:22:52.320Z", + "new_balance":"8571.56", + "value":"-48.78" + } + }, + { + "id":"ffe3f81d-1476-4a82-809b-8399f74dcea1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T05:57:14.728Z", + "completed":"2016-08-01T05:57:14.728Z", + "new_balance":"9593.98", + "value":"1022.42" + } + }, + { + "id":"e5aee9b7-ae64-47a8-891e-0899f332c8ff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T03:37:02.755Z", + "completed":"2016-08-03T03:37:02.755Z", + "new_balance":"9430.50", + "value":"-163.48" + } + }, + { + "id":"74c79b2f-ab27-4da7-9a89-0f8c539cea9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:40:50.377Z", + "completed":"2016-08-03T09:40:50.377Z", + "new_balance":"9022.93", + "value":"-407.57" + } + }, + { + "id":"3fe80e11-322e-419a-94d7-0fae08083fdf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T15:25:07.212Z", + "completed":"2016-08-04T15:25:07.212Z", + "new_balance":"9008.42", + "value":"-14.51" + } + }, + { + "id":"9a37d340-abe6-4707-8851-9a1b36243d5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T15:59:28.754Z", + "completed":"2016-08-07T15:59:28.754Z", + "new_balance":"9001.93", + "value":"-6.49" + } + }, + { + "id":"4e539275-1c97-4613-bf72-c016eeb35f33", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T23:02:47.958Z", + "completed":"2016-08-07T23:02:47.958Z", + "new_balance":"8972.77", + "value":"-29.16" + } + }, + { + "id":"9bf30b87-c44d-4e21-9818-14465fc050ad", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T23:05:54.203Z", + "completed":"2016-08-07T23:05:54.203Z", + "new_balance":"8947.97", + "value":"-24.80" + } + }, + { + "id":"299a3d06-70d6-4a06-a019-7bfacceb199a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T00:55:04.298Z", + "completed":"2016-08-08T00:55:04.298Z", + "new_balance":"8906.62", + "value":"-41.35" + } + }, + { + "id":"04218216-9c12-4176-80f0-e5800aeee3d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T09:39:41.011Z", + "completed":"2016-08-08T09:39:41.011Z", + "new_balance":"8801.90", + "value":"-104.72" + } + }, + { + "id":"0f00579f-6a66-46ab-8cbe-7c9a47b018b6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T22:13:51.621Z", + "completed":"2016-08-08T22:13:51.621Z", + "new_balance":"8751.34", + "value":"-50.56" + } + }, + { + "id":"92cd8ee0-8ab0-49bb-b904-5dd72c266dfd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T10:18:09.959Z", + "completed":"2016-08-09T10:18:09.959Z", + "new_balance":"8725.54", + "value":"-25.80" + } + }, + { + "id":"f114e7e0-96e2-4454-a43f-f7bd9fa53ee2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T23:30:56.576Z", + "completed":"2016-08-11T23:30:56.576Z", + "new_balance":"8718.55", + "value":"-6.99" + } + }, + { + "id":"6fd2cf7c-9f9a-4152-8d96-4b21d5c5ad9b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T06:27:31.760Z", + "completed":"2016-08-14T06:27:31.760Z", + "new_balance":"8683.36", + "value":"-35.19" + } + }, + { + "id":"11a3cf76-a79d-40d1-9b21-84d30303ac35", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T21:01:46.069Z", + "completed":"2016-08-15T21:01:46.069Z", + "new_balance":"8654.20", + "value":"-29.16" + } + }, + { + "id":"eb87d410-ff83-4a19-8bdd-9a6e928d5de0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T05:57:45.182Z", + "completed":"2016-08-17T05:57:45.182Z", + "new_balance":"8648.43", + "value":"-5.77" + } + }, + { + "id":"1e40d643-c656-404a-8b5b-6dad9b74a541", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T18:52:47.826Z", + "completed":"2016-08-17T18:52:47.826Z", + "new_balance":"8602.92", + "value":"-45.51" + } + }, + { + "id":"c0461609-48ed-4317-92e2-9dbcca0d867d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T12:00:41.056Z", + "completed":"2016-08-19T12:00:41.056Z", + "new_balance":"8594.52", + "value":"-8.40" + } + }, + { + "id":"b8d15bef-39b9-49ec-a072-9d243b56f2bc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T01:45:14.764Z", + "completed":"2016-08-25T01:45:14.764Z", + "new_balance":"8708.66", + "value":"114.14" + } + }, + { + "id":"04f1887c-ffae-44a1-a80e-5b4fad3e18b8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T09:04:17.481Z", + "completed":"2016-08-28T09:04:17.481Z", + "new_balance":"8510.75", + "value":"-197.91" + } + }, + { + "id":"b7ed2cde-ecaf-4dc6-8d10-73fa2c8241eb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T15:34:11.437Z", + "completed":"2016-08-28T15:34:11.437Z", + "new_balance":"8461.97", + "value":"-48.78" + } + }, + { + "id":"ff4abf07-c07e-4dfa-850c-8e08fd65c699", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T01:02:03.162Z", + "completed":"2016-09-01T01:02:03.162Z", + "new_balance":"9484.39", + "value":"1022.42" + } + }, + { + "id":"8407b9df-fc87-48bc-8324-cf16cb7f6ad7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T01:11:23.790Z", + "completed":"2016-09-03T01:11:23.790Z", + "new_balance":"9076.82", + "value":"-407.57" + } + }, + { + "id":"dfd4891c-9d8f-4cb1-a35c-358a5ea292e8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T03:49:52.193Z", + "completed":"2016-09-04T03:49:52.193Z", + "new_balance":"9045.37", + "value":"-31.45" + } + }, + { + "id":"8bc0d4f9-ea6f-4817-9e01-bb2f07c7d433", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T09:27:22.095Z", + "completed":"2016-09-04T09:27:22.095Z", + "new_balance":"8999.86", + "value":"-45.51" + } + }, + { + "id":"7f7f7c9d-ffbc-4751-95cc-466dcd4d885f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T20:05:57.315Z", + "completed":"2016-09-04T20:05:57.315Z", + "new_balance":"8969.05", + "value":"-30.81" + } + }, + { + "id":"af671919-4f94-4dcb-8a67-dec204b6dc29", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T23:00:32.305Z", + "completed":"2016-09-04T23:00:32.305Z", + "new_balance":"8952.05", + "value":"-17.00" + } + }, + { + "id":"1075033e-54fe-4dbc-addc-e90ad3b025c0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T01:50:52.500Z", + "completed":"2016-09-05T01:50:52.500Z", + "new_balance":"8906.51", + "value":"-45.54" + } + }, + { + "id":"4eb8e894-2434-4ffa-ae80-6253ece2e7de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T02:46:29.473Z", + "completed":"2016-09-05T02:46:29.473Z", + "new_balance":"8900.74", + "value":"-5.77" + } + }, + { + "id":"17e19b08-8466-4ea4-a58b-656f8c11cfac", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T07:04:47.676Z", + "completed":"2016-09-05T07:04:47.676Z", + "new_balance":"8886.68", + "value":"-14.06" + } + }, + { + "id":"aa7b0015-a6fa-48b7-a69c-790a099b2830", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T15:24:20.591Z", + "completed":"2016-09-05T15:24:20.591Z", + "new_balance":"8804.89", + "value":"-81.79" + } + }, + { + "id":"11eddfc8-5073-4cce-a96a-99e91e2f427f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T15:24:37.302Z", + "completed":"2016-09-05T15:24:37.302Z", + "new_balance":"8700.17", + "value":"-104.72" + } + }, + { + "id":"bbac878d-7768-42a5-a9f7-37b476347c7d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T19:13:05.634Z", + "completed":"2016-09-05T19:13:05.634Z", + "new_balance":"8601.05", + "value":"-99.12" + } + }, + { + "id":"66b81f9f-799f-480c-a6f7-e5eebed11f97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T02:03:09.926Z", + "completed":"2016-09-07T02:03:09.926Z", + "new_balance":"8595.28", + "value":"-5.77" + } + }, + { + "id":"09482c02-03e2-4857-99ab-053f0a38268f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T08:02:14.223Z", + "completed":"2016-09-07T08:02:14.223Z", + "new_balance":"8587.67", + "value":"-7.61" + } + }, + { + "id":"cd1a303e-4dcb-4065-ad7d-2e142bf5c29c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T11:15:48.230Z", + "completed":"2016-09-07T11:15:48.230Z", + "new_balance":"8579.15", + "value":"-8.52" + } + }, + { + "id":"49f0c021-5b55-43aa-bd4e-78d0b7b2611e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T14:21:21.226Z", + "completed":"2016-09-07T14:21:21.226Z", + "new_balance":"8571.54", + "value":"-7.61" + } + }, + { + "id":"d4fe3cac-2fba-4d45-b16d-d529f8e7c731", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T05:39:43.842Z", + "completed":"2016-09-10T05:39:43.842Z", + "new_balance":"8539.20", + "value":"-32.34" + } + }, + { + "id":"d1946942-d08c-438d-b3f4-9902c004c546", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T02:34:44.878Z", + "completed":"2016-09-11T02:34:44.878Z", + "new_balance":"8514.90", + "value":"-24.30" + } + }, + { + "id":"5aa6d58b-3a7f-483d-a4c5-78a4b6681cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T09:27:30.811Z", + "completed":"2016-09-11T09:27:30.811Z", + "new_balance":"8502.53", + "value":"-12.37" + } + }, + { + "id":"5e30670f-6994-4bf6-87a2-62b614969502", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T13:32:47.318Z", + "completed":"2016-09-11T13:32:47.318Z", + "new_balance":"8496.76", + "value":"-5.77" + } + }, + { + "id":"7bd33a2b-c0c2-402b-90a7-b40004b3c40f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T04:11:59.317Z", + "completed":"2016-09-12T04:11:59.317Z", + "new_balance":"8490.99", + "value":"-5.77" + } + }, + { + "id":"ac318c87-0685-4f2a-b1bd-ee194cc77a1f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T06:34:14.183Z", + "completed":"2016-09-12T06:34:14.183Z", + "new_balance":"8424.81", + "value":"-66.18" + } + }, + { + "id":"cdc154a8-f1ec-46e8-82f9-0ef926270c87", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T20:22:55.476Z", + "completed":"2016-09-12T20:22:55.476Z", + "new_balance":"8405.65", + "value":"-19.16" + } + }, + { + "id":"0e1d8582-aa03-4f3a-92b7-bb56fc5433db", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T23:16:21.353Z", + "completed":"2016-09-12T23:16:21.353Z", + "new_balance":"8304.39", + "value":"-101.26" + } + }, + { + "id":"1d7bd41e-a814-4fe8-af06-fa5231f3f619", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T21:06:59.681Z", + "completed":"2016-09-13T21:06:59.681Z", + "new_balance":"8261.90", + "value":"-42.49" + } + }, + { + "id":"ae6658c4-8639-4f08-895c-4c1d8a26b392", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T04:56:18.131Z", + "completed":"2016-09-14T04:56:18.131Z", + "new_balance":"8219.67", + "value":"-42.23" + } + }, + { + "id":"e67dd235-5057-451b-8679-8c41f136315c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T17:25:28.911Z", + "completed":"2016-09-14T17:25:28.911Z", + "new_balance":"8213.90", + "value":"-5.77" + } + }, + { + "id":"d8fdadbc-a547-43f6-809a-e8dca7876bd7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T06:39:35.781Z", + "completed":"2016-09-16T06:39:35.781Z", + "new_balance":"8165.01", + "value":"-48.89" + } + }, + { + "id":"a18c5d34-88aa-431e-8492-6d21ad179e7f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T06:15:07.363Z", + "completed":"2016-09-18T06:15:07.363Z", + "new_balance":"8121.04", + "value":"-43.97" + } + }, + { + "id":"ae140b94-bc04-4175-ba31-1ec64d8e15ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T05:13:41.121Z", + "completed":"2016-09-21T05:13:41.121Z", + "new_balance":"8023.54", + "value":"-97.50" + } + }, + { + "id":"13baf905-8f5b-4c6c-83a5-e8935338d762", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T16:26:08.882Z", + "completed":"2016-09-21T16:26:08.882Z", + "new_balance":"7919.22", + "value":"-104.32" + } + }, + { + "id":"82ad89a1-0397-4763-8058-9a38bc35ca07", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T04:40:09.139Z", + "completed":"2016-09-23T04:40:09.139Z", + "new_balance":"7878.90", + "value":"-40.32" + } + }, + { + "id":"ff297378-fae9-4014-9964-8368f816b415", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T06:23:47.529Z", + "completed":"2016-09-24T06:23:47.529Z", + "new_balance":"7873.13", + "value":"-5.77" + } + }, + { + "id":"41ce6892-b54e-42e3-8c04-f4572bdf13bd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T05:06:44.688Z", + "completed":"2016-09-26T05:06:44.688Z", + "new_balance":"7847.51", + "value":"-25.62" + } + }, + { + "id":"c5f8d475-46f2-44c2-ae28-68eeb7841469", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T08:41:06.074Z", + "completed":"2016-09-26T08:41:06.074Z", + "new_balance":"7834.50", + "value":"-13.01" + } + }, + { + "id":"675f79d1-8dd2-4c46-b941-e187a00eddb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T12:20:58.236Z", + "completed":"2016-09-26T12:20:58.236Z", + "new_balance":"7821.71", + "value":"-12.79" + } + }, + { + "id":"e481a28f-4bda-4e64-a50a-ce522768c350", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T05:31:16.133Z", + "completed":"2016-09-27T05:31:16.133Z", + "new_balance":"7807.52", + "value":"-14.19" + } + }, + { + "id":"ff7d2f9e-c4e1-4e92-9316-2848a8efdf24", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T13:58:34.422Z", + "completed":"2016-09-28T13:58:34.422Z", + "new_balance":"7758.74", + "value":"-48.78" + } + }, + { + "id":"f5ace5c7-f371-42cc-a36f-61b96f087523", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T21:45:18.235Z", + "completed":"2016-09-28T21:45:18.235Z", + "new_balance":"7560.83", + "value":"-197.91" + } + }, + { + "id":"3c34884f-9a7e-4bc2-9eb1-3fb149c4c3fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T09:35:51.670Z", + "completed":"2016-10-01T09:35:51.670Z", + "new_balance":"7153.26", + "value":"-407.57" + } + }, + { + "id":"86615fde-54f8-480e-acbb-3fe85182cf44", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:07:36.046Z", + "completed":"2016-10-01T19:07:36.046Z", + "new_balance":"8175.68", + "value":"1022.42" + } + }, + { + "id":"2355c171-0df9-44bd-a1b7-01711df87ea5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T20:31:39.980Z", + "completed":"2016-10-01T20:31:39.980Z", + "new_balance":"9856.09", + "value":"1680.41" + } + }, + { + "id":"6d7ebd3a-3ea0-4cef-8064-e0493257e757", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T15:00:02.492Z", + "completed":"2016-10-03T15:00:02.492Z", + "new_balance":"9809.29", + "value":"-46.80" + } + }, + { + "id":"26d8f056-e7cb-4156-b707-57e14b8c15fd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T15:05:24.591Z", + "completed":"2016-10-03T15:05:24.591Z", + "new_balance":"9802.91", + "value":"-6.38" + } + }, + { + "id":"6c02335f-14dc-4471-9257-925897b01d48", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T21:14:02.783Z", + "completed":"2016-10-03T21:14:02.783Z", + "new_balance":"9785.29", + "value":"-17.62" + } + }, + { + "id":"ace4e2bb-9ca2-45ae-87e7-2ec394bc1128", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T08:08:20.020Z", + "completed":"2016-10-05T08:08:20.020Z", + "new_balance":"9774.38", + "value":"-10.91" + } + }, + { + "id":"831b8065-cd80-4959-8749-4c13ad55b1df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T14:42:13.728Z", + "completed":"2016-10-05T14:42:13.728Z", + "new_balance":"9767.39", + "value":"-6.99" + } + }, + { + "id":"d4c8d8ab-6484-43d7-8ed5-e346593d11ac", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T17:40:59.074Z", + "completed":"2016-10-06T17:40:59.074Z", + "new_balance":"9742.46", + "value":"-24.93" + } + }, + { + "id":"f07a8be6-29fc-4032-a3f8-abe68485db7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T02:41:14.344Z", + "completed":"2016-10-09T02:41:14.344Z", + "new_balance":"9723.30", + "value":"-19.16" + } + }, + { + "id":"c2ab6781-e215-44ca-9d05-cbf40648b089", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:45:43.379Z", + "completed":"2016-10-10T17:45:43.379Z", + "new_balance":"9708.31", + "value":"-14.99" + } + }, + { + "id":"c15ff94c-816c-42c6-be04-d87852e29276", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:33:43.580Z", + "completed":"2016-10-11T09:33:43.580Z", + "new_balance":"9692.30", + "value":"-16.01" + } + }, + { + "id":"f0aaa40c-c115-49ea-a9b1-8ecf27f17bd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T21:44:38.851Z", + "completed":"2016-10-11T21:44:38.851Z", + "new_balance":"9663.14", + "value":"-29.16" + } + }, + { + "id":"0eae1646-6376-4bd0-b1ff-ed7cb9538fdc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T19:44:50.466Z", + "completed":"2016-10-14T19:44:50.466Z", + "new_balance":"9618.08", + "value":"-45.06" + } + }, + { + "id":"df39e2c9-59a8-44d7-95a6-752bf0085396", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T22:37:32.422Z", + "completed":"2016-10-14T22:37:32.422Z", + "new_balance":"9513.36", + "value":"-104.72" + } + }, + { + "id":"89b058b9-5fdf-4e0d-8f22-c2eb7d2023e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T15:38:18.550Z", + "completed":"2016-10-17T15:38:18.550Z", + "new_balance":"9468.88", + "value":"-44.48" + } + }, + { + "id":"5a14549c-f013-4bb2-b5ad-76d62896f39f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T04:03:57.638Z", + "completed":"2016-10-18T04:03:57.638Z", + "new_balance":"9463.11", + "value":"-5.77" + } + }, + { + "id":"2afe4353-5b89-4bbf-9f5a-5ac7104c361f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T13:17:19.649Z", + "completed":"2016-10-18T13:17:19.649Z", + "new_balance":"9384.03", + "value":"-79.08" + } + }, + { + "id":"98b19bb8-45e7-45a2-bcc5-4be77a6c552a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T22:16:46.796Z", + "completed":"2016-10-18T22:16:46.796Z", + "new_balance":"9373.96", + "value":"-10.07" + } + }, + { + "id":"2261244c-824f-4fb4-9f01-30011eda6d2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T18:47:31.489Z", + "completed":"2016-10-23T18:47:31.489Z", + "new_balance":"9348.56", + "value":"-25.40" + } + }, + { + "id":"87a48891-1d05-4991-84b6-3720814d513d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T14:13:40.875Z", + "completed":"2016-10-24T14:13:40.875Z", + "new_balance":"9333.73", + "value":"-14.83" + } + }, + { + "id":"3ce0ce4d-d478-43ed-8f86-1941a552228e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T22:57:38.309Z", + "completed":"2016-10-24T22:57:38.309Z", + "new_balance":"9302.92", + "value":"-30.81" + } + }, + { + "id":"1b02cd0e-a80c-4903-8f56-6c3abc48b471", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T19:52:47.734Z", + "completed":"2016-10-26T19:52:47.734Z", + "new_balance":"9295.93", + "value":"-6.99" + } + }, + { + "id":"4c1478f0-259b-42cc-bd7c-28be6aa7b538", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T08:17:15.519Z", + "completed":"2016-10-30T08:17:15.519Z", + "new_balance":"9098.02", + "value":"-197.91" + } + }, + { + "id":"e6295175-798d-4bc5-8c0c-e71a41c8e5a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:32:17.895Z", + "completed":"2016-10-30T15:32:17.895Z", + "new_balance":"9049.24", + "value":"-48.78" + } + }, + { + "id":"a494c820-b892-4abe-83b5-14f7144dd519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T00:51:59.963Z", + "completed":"2016-11-02T00:51:59.963Z", + "new_balance":"9042.75", + "value":"-6.49" + } + }, + { + "id":"d9b06d02-e51f-4315-81cc-5cd66b975ce4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T10:43:04.689Z", + "completed":"2016-11-02T10:43:04.689Z", + "new_balance":"8635.18", + "value":"-407.57" + } + }, + { + "id":"e792ffbd-adeb-4206-9627-9dff8f125dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T16:22:00.450Z", + "completed":"2016-11-02T16:22:00.450Z", + "new_balance":"8620.67", + "value":"-14.51" + } + }, + { + "id":"8dec409a-e43d-4b98-b60f-4fb993eb091a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T16:30:33.286Z", + "completed":"2016-11-02T16:30:33.286Z", + "new_balance":"8457.19", + "value":"-163.48" + } + }, + { + "id":"628bfd9e-52f1-46e2-84e3-b576e5493859", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T16:10:43.391Z", + "completed":"2016-11-06T16:10:43.391Z", + "new_balance":"8428.03", + "value":"-29.16" + } + }, + { + "id":"3152162b-7d88-49a3-af15-c01456e744a3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T18:49:13.602Z", + "completed":"2016-11-06T18:49:13.602Z", + "new_balance":"8403.23", + "value":"-24.80" + } + }, + { + "id":"14e0f809-bf3a-474e-b4a2-c961a78a95b4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T13:01:19.006Z", + "completed":"2016-11-07T13:01:19.006Z", + "new_balance":"8298.51", + "value":"-104.72" + } + }, + { + "id":"6c6e10da-c0d2-462a-8686-12faed9e01d6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T21:36:21.796Z", + "completed":"2016-11-07T21:36:21.796Z", + "new_balance":"8257.16", + "value":"-41.35" + } + }, + { + "id":"ba4b34e1-6d15-46ca-8744-17b2c2c00e63", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T16:06:30.061Z", + "completed":"2016-11-09T16:06:30.061Z", + "new_balance":"9279.58", + "value":"1022.42" + } + }, + { + "id":"f578118a-40d4-4b07-adfb-38d57df58f9d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:47:59.372Z", + "completed":"2016-11-14T01:47:59.372Z", + "new_balance":"9229.02", + "value":"-50.56" + } + }, + { + "id":"891624da-7a3f-4366-b2c5-4124b718b7d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T21:56:53.641Z", + "completed":"2016-11-14T21:56:53.641Z", + "new_balance":"9203.22", + "value":"-25.80" + } + }, + { + "id":"1b2443af-90f8-4236-9321-ca7ada06d8a0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T07:03:16.074Z", + "completed":"2016-11-16T07:03:16.074Z", + "new_balance":"9196.23", + "value":"-6.99" + } + }, + { + "id":"ceb8c67c-808f-42c1-b7dc-9603361d8d43", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T21:49:34.101Z", + "completed":"2016-11-20T21:49:34.101Z", + "new_balance":"9161.04", + "value":"-35.19" + } + }, + { + "id":"df53f159-5623-4df7-ad3a-7e65e4a86791", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T03:00:24.838Z", + "completed":"2016-11-23T03:00:24.838Z", + "new_balance":"9115.53", + "value":"-45.51" + } + }, + { + "id":"34bcf8ab-a3c9-4298-a98f-0542f8addb31", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T03:19:08.495Z", + "completed":"2016-11-23T03:19:08.495Z", + "new_balance":"9086.37", + "value":"-29.16" + } + }, + { + "id":"9f2f2031-c2ad-4d9b-887f-5bbc2df64a09", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T18:55:54.503Z", + "completed":"2016-11-23T18:55:54.503Z", + "new_balance":"9080.60", + "value":"-5.77" + } + }, + { + "id":"87c01220-bfd6-47d8-8729-7781d5969e04", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T05:16:04.035Z", + "completed":"2016-11-28T05:16:04.035Z", + "new_balance":"9072.20", + "value":"-8.40" + } + }, + { + "id":"d6c45050-9bfa-4b75-b77e-218323b2fe99", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T00:05:25.258Z", + "completed":"2016-11-30T00:05:25.258Z", + "new_balance":"8874.29", + "value":"-197.91" + } + }, + { + "id":"31cacd0f-d38e-4bd4-816a-be4398c65a40", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T11:45:46.072Z", + "completed":"2016-11-30T11:45:46.072Z", + "new_balance":"8825.51", + "value":"-48.78" + } + }, + { + "id":"808b8264-33ac-4878-80e4-82d356ec315b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T00:35:17.566Z", + "completed":"2016-12-01T00:35:17.566Z", + "new_balance":"8417.94", + "value":"-407.57" + } + }, + { + "id":"f515bef8-4948-42f3-8738-6250dd8e359b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T13:17:39.634Z", + "completed":"2016-12-01T13:17:39.634Z", + "new_balance":"9440.36", + "value":"1022.42" + } + }, + { + "id":"0113c842-af2e-42f0-85ab-9b249d96698f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T11:00:18.899Z", + "completed":"2016-12-04T11:00:18.899Z", + "new_balance":"9408.91", + "value":"-31.45" + } + }, + { + "id":"b83d151d-63e7-4aa0-a3b2-d9ca9d55cf83", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T11:29:32.254Z", + "completed":"2016-12-04T11:29:32.254Z", + "new_balance":"9391.91", + "value":"-17.00" + } + }, + { + "id":"ffd9515c-bcd1-4dbf-8c5c-259303f422e7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T18:02:51.385Z", + "completed":"2016-12-11T18:02:51.385Z", + "new_balance":"9346.40", + "value":"-45.51" + } + }, + { + "id":"84fa37a6-decb-457f-bd23-df3bd5b521c9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T20:51:38.751Z", + "completed":"2016-12-11T20:51:38.751Z", + "new_balance":"9315.59", + "value":"-30.81" + } + }, + { + "id":"25a21a8e-2934-4327-9b87-e0dccdbd1e7a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:25:36.061Z", + "completed":"2016-12-14T03:25:36.061Z", + "new_balance":"9309.82", + "value":"-5.77" + } + }, + { + "id":"6bd3dd1e-c579-40e2-a4b6-69c943aa678d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T04:49:19.297Z", + "completed":"2016-12-14T04:49:19.297Z", + "new_balance":"9228.03", + "value":"-81.79" + } + }, + { + "id":"e25da2ff-f2ea-41e4-a819-ca9555c5a8cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T10:59:37.281Z", + "completed":"2016-12-14T10:59:37.281Z", + "new_balance":"9220.42", + "value":"-7.61" + } + }, + { + "id":"c18d173d-a9e4-4726-abcc-8ff395afa21b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T15:16:42.340Z", + "completed":"2016-12-14T15:16:42.340Z", + "new_balance":"9212.81", + "value":"-7.61" + } + }, + { + "id":"3c44ab72-a604-4da0-a794-0b9f8dbc93c4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T17:49:11.810Z", + "completed":"2016-12-14T17:49:11.810Z", + "new_balance":"9207.04", + "value":"-5.77" + } + }, + { + "id":"2ca1e673-731c-4774-83ca-cdc6f7a8bf61", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T20:07:25.617Z", + "completed":"2016-12-14T20:07:25.617Z", + "new_balance":"9161.50", + "value":"-45.54" + } + }, + { + "id":"d3145c94-f2f9-4869-9214-28e39834f77e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T20:37:38.855Z", + "completed":"2016-12-14T20:37:38.855Z", + "new_balance":"9147.44", + "value":"-14.06" + } + }, + { + "id":"1c730a04-55c1-4422-82fa-08c364e539e8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T20:46:57.565Z", + "completed":"2016-12-14T20:46:57.565Z", + "new_balance":"9042.72", + "value":"-104.72" + } + }, + { + "id":"e50a7e0a-450a-42bb-98aa-1df8132eb927", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T21:29:37.304Z", + "completed":"2016-12-14T21:29:37.304Z", + "new_balance":"8943.60", + "value":"-99.12" + } + }, + { + "id":"1802f755-b3d0-45fa-861a-dc31bb4c3508", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T04:58:08.028Z", + "completed":"2016-12-15T04:58:08.028Z", + "new_balance":"8937.83", + "value":"-5.77" + } + }, + { + "id":"33c789ac-8c14-40fe-bf5a-d12797bc8c13", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T05:19:44.803Z", + "completed":"2016-12-15T05:19:44.803Z", + "new_balance":"8929.31", + "value":"-8.52" + } + }, + { + "id":"57eb6f66-3ca3-4a9c-bc27-b4d2af779ea5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:00:17.333Z", + "completed":"2016-12-15T18:00:17.333Z", + "new_balance":"8896.97", + "value":"-32.34" + } + }, + { + "id":"c0362b0a-5923-48c4-a4a3-6e928452782f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T00:27:08.374Z", + "completed":"2016-12-18T00:27:08.374Z", + "new_balance":"8854.48", + "value":"-42.49" + } + }, + { + "id":"e6c595a3-982b-4495-8a65-e212216eaac1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T04:26:39.790Z", + "completed":"2016-12-18T04:26:39.790Z", + "new_balance":"8753.22", + "value":"-101.26" + } + }, + { + "id":"78f20d52-6044-4633-928b-d327aad9d553", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T09:09:50.427Z", + "completed":"2016-12-18T09:09:50.427Z", + "new_balance":"8734.06", + "value":"-19.16" + } + }, + { + "id":"011b2e19-ff3f-43cb-bf06-a4daf56b54e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T09:35:25.727Z", + "completed":"2016-12-18T09:35:25.727Z", + "new_balance":"8721.69", + "value":"-12.37" + } + }, + { + "id":"8539b7e3-51b1-4d97-bd6b-bf067f9731dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T14:39:55.459Z", + "completed":"2016-12-18T14:39:55.459Z", + "new_balance":"8697.39", + "value":"-24.30" + } + }, + { + "id":"ee0ceafe-b26e-4101-a65f-473ba66785be", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T15:08:10.896Z", + "completed":"2016-12-18T15:08:10.896Z", + "new_balance":"8691.62", + "value":"-5.77" + } + }, + { + "id":"85e76302-00dd-4266-bd18-60d8aaa523a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:34:12.582Z", + "completed":"2016-12-18T20:34:12.582Z", + "new_balance":"8625.44", + "value":"-66.18" + } + }, + { + "id":"e9a40c76-7839-4550-b4c3-ee3798b8caf5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T22:26:37.078Z", + "completed":"2016-12-18T22:26:37.078Z", + "new_balance":"8619.67", + "value":"-5.77" + } + }, + { + "id":"b6343400-aac2-4f31-a664-a1c592a05e5a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:34:53.090Z", + "completed":"2016-12-19T02:34:53.090Z", + "new_balance":"8575.70", + "value":"-43.97" + } + }, + { + "id":"dc9e1f8a-f23a-4dab-99c6-204b86600af9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T11:33:48.652Z", + "completed":"2016-12-19T11:33:48.652Z", + "new_balance":"8533.47", + "value":"-42.23" + } + }, + { + "id":"53508d2a-9642-4f2c-8f3d-f0747d352b55", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T12:09:55.627Z", + "completed":"2016-12-19T12:09:55.627Z", + "new_balance":"8484.58", + "value":"-48.89" + } + }, + { + "id":"5ed7d82d-375f-4a39-88b9-fb85cd68376f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T02:30:26.481Z", + "completed":"2016-12-21T02:30:26.481Z", + "new_balance":"8471.57", + "value":"-13.01" + } + }, + { + "id":"860c2835-4107-4200-9214-0ed2731c8a14", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T05:07:40.336Z", + "completed":"2016-12-21T05:07:40.336Z", + "new_balance":"8431.25", + "value":"-40.32" + } + }, + { + "id":"53dfca3d-3a74-4113-af93-1817e7df86e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T12:14:43.393Z", + "completed":"2016-12-21T12:14:43.393Z", + "new_balance":"8326.93", + "value":"-104.32" + } + }, + { + "id":"718973ee-7e0b-4ae8-83e2-fd6826c0f475", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T20:26:53.255Z", + "completed":"2016-12-21T20:26:53.255Z", + "new_balance":"8321.16", + "value":"-5.77" + } + }, + { + "id":"5dacc77e-58ac-4d74-aec1-06662f2063cf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T22:01:47.958Z", + "completed":"2016-12-21T22:01:47.958Z", + "new_balance":"8223.66", + "value":"-97.50" + } + }, + { + "id":"53c2fdc8-ee72-4f81-a9a6-df5365cd5f52", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T00:07:51.721Z", + "completed":"2016-12-24T00:07:51.721Z", + "new_balance":"8209.47", + "value":"-14.19" + } + }, + { + "id":"2f016236-6a04-4691-8f42-454738da43da", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T07:50:48.575Z", + "completed":"2016-12-24T07:50:48.575Z", + "new_balance":"8196.68", + "value":"-12.79" + } + }, + { + "id":"2cc3bf54-0f00-408b-9076-9249a6ada99b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T20:57:11.967Z", + "completed":"2016-12-24T20:57:11.967Z", + "new_balance":"8171.06", + "value":"-25.62" + } + }, + { + "id":"481bf84c-79b9-4318-a91c-0eff955f3c46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T02:14:07.441Z", + "completed":"2016-12-30T02:14:07.441Z", + "new_balance":"7973.15", + "value":"-197.91" + } + }, + { + "id":"19d874fe-82ea-4d21-9032-ddb0a3d173f5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T11:40:47.424Z", + "completed":"2016-12-30T11:40:47.424Z", + "new_balance":"7924.37", + "value":"-48.78" + } + }, + { + "id":"48889522-6e17-49d3-bcd2-048c49ca9ae6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T08:18:32.760Z", + "completed":"2017-01-01T08:18:32.760Z", + "new_balance":"8946.79", + "value":"1022.42" + } + }, + { + "id":"9c197f17-1df4-4418-91aa-1f0557e7cf90", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T11:09:07.822Z", + "completed":"2017-01-01T11:09:07.822Z", + "new_balance":"10627.20", + "value":"1680.41" + } + }, + { + "id":"8a2693fd-1347-49c2-9f8a-a0c78c80a945", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T19:08:10.390Z", + "completed":"2017-01-02T19:08:10.390Z", + "new_balance":"10219.63", + "value":"-407.57" + } + }, + { + "id":"d67173f3-e502-4a26-8d06-966e4f8e7ba6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T05:30:36.767Z", + "completed":"2017-01-03T05:30:36.767Z", + "new_balance":"10172.83", + "value":"-46.80" + } + }, + { + "id":"2a9959a4-dd1a-4f2c-b548-14b168458e6f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T10:50:13.949Z", + "completed":"2017-01-03T10:50:13.949Z", + "new_balance":"10155.21", + "value":"-17.62" + } + }, + { + "id":"57ea1cd2-6bb5-4909-9351-5e2f71640937", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T20:48:00.562Z", + "completed":"2017-01-03T20:48:00.562Z", + "new_balance":"10148.83", + "value":"-6.38" + } + }, + { + "id":"400d520b-f8aa-4e86-bfa4-098d8e4a45cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T00:43:51.690Z", + "completed":"2017-01-04T00:43:51.690Z", + "new_balance":"10137.92", + "value":"-10.91" + } + }, + { + "id":"6ffe3f58-a33c-478a-8b4c-d0f346df605f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T17:23:24.131Z", + "completed":"2017-01-05T17:23:24.131Z", + "new_balance":"10130.93", + "value":"-6.99" + } + }, + { + "id":"3e3b6f3f-c51a-452c-a3dc-976bbdfba777", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T11:16:15.614Z", + "completed":"2017-01-07T11:16:15.614Z", + "new_balance":"10106.00", + "value":"-24.93" + } + }, + { + "id":"77a7353a-f188-4368-8ae3-6ced408afac3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T16:26:53.985Z", + "completed":"2017-01-07T16:26:53.985Z", + "new_balance":"10086.84", + "value":"-19.16" + } + }, + { + "id":"d8a883d0-7e3d-433d-af08-61bd5f9f0b3f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T12:09:23.299Z", + "completed":"2017-01-08T12:09:23.299Z", + "new_balance":"10070.83", + "value":"-16.01" + } + }, + { + "id":"6ea3ad5d-2cb8-4964-bb0d-3d17db0f48ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T16:47:16.968Z", + "completed":"2017-01-08T16:47:16.968Z", + "new_balance":"10055.84", + "value":"-14.99" + } + }, + { + "id":"3f8d338e-ebd6-4e06-8a1c-2be079868866", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T18:40:42.391Z", + "completed":"2017-01-09T18:40:42.391Z", + "new_balance":"10026.68", + "value":"-29.16" + } + }, + { + "id":"fc3f7077-9931-465b-82c5-87bce1f1e7ba", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T22:38:07.128Z", + "completed":"2017-01-09T22:38:07.128Z", + "new_balance":"9981.62", + "value":"-45.06" + } + }, + { + "id":"81afc404-ab4c-4a8d-8672-bcde08547a20", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T15:20:28.766Z", + "completed":"2017-01-10T15:20:28.766Z", + "new_balance":"9876.90", + "value":"-104.72" + } + }, + { + "id":"fc4767f7-70ff-41e6-98c4-975ca444ddd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T22:34:01.153Z", + "completed":"2017-01-10T22:34:01.153Z", + "new_balance":"9832.42", + "value":"-44.48" + } + }, + { + "id":"1c51518b-31e7-4f90-912a-d8a2237d5e91", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T07:16:47.026Z", + "completed":"2017-01-11T07:16:47.026Z", + "new_balance":"9826.65", + "value":"-5.77" + } + }, + { + "id":"a35245db-f61b-4c5d-8403-2b8826a45a03", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T18:58:27.401Z", + "completed":"2017-01-11T18:58:27.401Z", + "new_balance":"9917.53", + "value":"90.88" + } + }, + { + "id":"041afaa5-d08c-4cd9-b698-0c98bfbb25e6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T19:21:31.584Z", + "completed":"2017-01-11T19:21:31.584Z", + "new_balance":"9838.45", + "value":"-79.08" + } + }, + { + "id":"a8ca563c-b33b-4a74-ba04-c53caa5e55d0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T05:53:29.312Z", + "completed":"2017-01-12T05:53:29.312Z", + "new_balance":"9828.38", + "value":"-10.07" + } + }, + { + "id":"01dad9df-83a6-40a1-98d3-06916e2bc156", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T13:18:56.150Z", + "completed":"2017-01-15T13:18:56.150Z", + "new_balance":"9802.98", + "value":"-25.40" + } + }, + { + "id":"a6a8357b-8037-4063-9d8f-51ab05755b79", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T06:30:00.182Z", + "completed":"2017-01-16T06:30:00.182Z", + "new_balance":"9772.17", + "value":"-30.81" + } + }, + { + "id":"b81db83a-d784-4935-9e35-2c65a56a247c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:24:06.700Z", + "completed":"2017-01-17T18:24:06.700Z", + "new_balance":"9757.34", + "value":"-14.83" + } + }, + { + "id":"9a0882f2-a83d-4336-9cc6-70c5b2908ed9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T15:47:30.269Z", + "completed":"2017-01-20T15:47:30.269Z", + "new_balance":"9750.35", + "value":"-6.99" + } + }, + { + "id":"a3d6603f-1622-46b8-a557-a90485344fec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T11:03:34.914Z", + "completed":"2017-01-21T11:03:34.914Z", + "new_balance":"9701.57", + "value":"-48.78" + } + }, + { + "id":"3addf1d5-df7f-42b9-b810-94b817668c55", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T02:15:06.986Z", + "completed":"2017-01-23T02:15:06.986Z", + "new_balance":"9503.66", + "value":"-197.91" + } + }, + { + "id":"0f01112a-1a3b-4511-82f6-70d415735864", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T00:11:03.265Z", + "completed":"2017-02-01T00:11:03.265Z", + "new_balance":"10526.08", + "value":"1022.42" + } + }, + { + "id":"4bddcf35-7983-4af5-b2c3-8108068a9556", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T21:53:10.485Z", + "completed":"2017-02-03T21:53:10.485Z", + "new_balance":"10118.51", + "value":"-407.57" + } + }, + { + "id":"37fc49d0-7df7-453f-8d32-2a6baaac5919", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T22:12:11.784Z", + "completed":"2017-02-03T22:12:11.784Z", + "new_balance":"9955.03", + "value":"-163.48" + } + }, + { + "id":"3bc7b74f-f3f0-4b05-a1bb-84be43df1bc1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T15:48:41.781Z", + "completed":"2017-02-04T15:48:41.781Z", + "new_balance":"9940.52", + "value":"-14.51" + } + }, + { + "id":"070c5206-be86-4c30-8296-e0efadfd8cf8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T07:34:58.896Z", + "completed":"2017-02-05T07:34:58.896Z", + "new_balance":"9934.03", + "value":"-6.49" + } + }, + { + "id":"c658fda5-3878-46a7-9ca4-9f5137360158", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:10:49.995Z", + "completed":"2017-02-06T14:10:49.995Z", + "new_balance":"9909.23", + "value":"-24.80" + } + }, + { + "id":"d60cdb95-2c89-4688-bbb1-927d6c4c45b9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T08:32:07.099Z", + "completed":"2017-02-07T08:32:07.099Z", + "new_balance":"9804.51", + "value":"-104.72" + } + }, + { + "id":"398fedfb-3ac6-4f6d-b19a-39518f66d68f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T10:04:24.205Z", + "completed":"2017-02-07T10:04:24.205Z", + "new_balance":"9775.35", + "value":"-29.16" + } + }, + { + "id":"4cd7d433-cc9a-46c6-a4a1-e22a4ebbfc25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T23:20:49.345Z", + "completed":"2017-02-07T23:20:49.345Z", + "new_balance":"9734.00", + "value":"-41.35" + } + }, + { + "id":"ace378a1-db71-4110-8a9d-ac03b028db2e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:33:38.784Z", + "completed":"2017-02-08T07:33:38.784Z", + "new_balance":"9683.44", + "value":"-50.56" + } + }, + { + "id":"3d4548ff-81ff-4144-b8aa-65b1085bb78e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T01:51:00.411Z", + "completed":"2017-02-09T01:51:00.411Z", + "new_balance":"9657.64", + "value":"-25.80" + } + }, + { + "id":"07b89146-827a-496c-b019-56eaa4637a7f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T20:45:34.806Z", + "completed":"2017-02-10T20:45:34.806Z", + "new_balance":"9650.65", + "value":"-6.99" + } + }, + { + "id":"994625a0-7aa5-4b0f-8cad-f68f4e4f6262", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T05:49:44.406Z", + "completed":"2017-02-12T05:49:44.406Z", + "new_balance":"9615.46", + "value":"-35.19" + } + }, + { + "id":"4a3493b8-1dbb-4a2f-8a5e-c81bbc497f42", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T07:30:33.374Z", + "completed":"2017-02-14T07:30:33.374Z", + "new_balance":"9586.30", + "value":"-29.16" + } + }, + { + "id":"46a2f49b-42dc-48c0-9d7c-1b64d1d7a566", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T02:44:52.144Z", + "completed":"2017-02-16T02:44:52.144Z", + "new_balance":"9580.53", + "value":"-5.77" + } + }, + { + "id":"5645f1f3-6284-47b4-9211-aca2a3e4b8fd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T18:22:37.078Z", + "completed":"2017-02-16T18:22:37.078Z", + "new_balance":"9535.02", + "value":"-45.51" + } + }, + { + "id":"34f137aa-d007-4283-ba52-d75cb4c7be1e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T15:35:35.564Z", + "completed":"2017-02-18T15:35:35.564Z", + "new_balance":"9526.62", + "value":"-8.40" + } + }, + { + "id":"91f9f466-ce1c-4abd-8d5d-ffd7e3b2f900", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T04:45:43.285Z", + "completed":"2017-02-21T04:45:43.285Z", + "new_balance":"9477.84", + "value":"-48.78" + } + }, + { + "id":"49f12346-1f8a-48d0-bb8f-f9c13b4d4a52", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T19:16:08.239Z", + "completed":"2017-02-21T19:16:08.239Z", + "new_balance":"9591.98", + "value":"114.14" + } + }, + { + "id":"bac9d910-60d0-48ad-bf2e-d1ae1fd90950", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:21:56.245Z", + "completed":"2017-02-27T17:21:56.245Z", + "new_balance":"9394.07", + "value":"-197.91" + } + }, + { + "id":"4d06ee4c-daf9-47d3-a63b-4fb0bdf27d6c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T00:26:31.439Z", + "completed":"2017-03-01T00:26:31.439Z", + "new_balance":"10416.49", + "value":"1022.42" + } + }, + { + "id":"571b36a0-4024-46ae-85cc-4ef46dc79463", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T07:00:44.597Z", + "completed":"2017-03-03T07:00:44.597Z", + "new_balance":"10008.92", + "value":"-407.57" + } + }, + { + "id":"5190f8ea-cd00-411e-a9b0-e168009adece", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:49:13.940Z", + "completed":"2017-03-04T11:49:13.940Z", + "new_balance":"9978.11", + "value":"-30.81" + } + }, + { + "id":"e8bfbed4-8dfa-4f59-a4a0-c3ae09795547", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T14:20:11.429Z", + "completed":"2017-03-04T14:20:11.429Z", + "new_balance":"9946.66", + "value":"-31.45" + } + }, + { + "id":"6b79cae2-40ec-4495-9290-215d59de8405", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T17:30:31.544Z", + "completed":"2017-03-04T17:30:31.544Z", + "new_balance":"9929.66", + "value":"-17.00" + } + }, + { + "id":"165f0834-2ace-47f5-aa06-8065dd337d77", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T19:52:15.823Z", + "completed":"2017-03-04T19:52:15.823Z", + "new_balance":"9884.15", + "value":"-45.51" + } + }, + { + "id":"9cc4cdfd-3058-49c8-b1ea-150bd15304f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T04:10:02.022Z", + "completed":"2017-03-05T04:10:02.022Z", + "new_balance":"9878.38", + "value":"-5.77" + } + }, + { + "id":"2c5a71a4-91d4-4f8f-9802-c2ba612676a6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T12:26:25.780Z", + "completed":"2017-03-05T12:26:25.780Z", + "new_balance":"9773.66", + "value":"-104.72" + } + }, + { + "id":"a7336134-9033-4065-af6e-666528cf7787", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T12:42:01.310Z", + "completed":"2017-03-05T12:42:01.310Z", + "new_balance":"9759.60", + "value":"-14.06" + } + }, + { + "id":"9019c57e-d8ac-436d-bd85-8b35f7eea0f3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T21:41:16.528Z", + "completed":"2017-03-05T21:41:16.528Z", + "new_balance":"9714.06", + "value":"-45.54" + } + }, + { + "id":"21a90e96-a3df-4012-80e8-17127015eb7e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T16:21:14.569Z", + "completed":"2017-03-06T16:21:14.569Z", + "new_balance":"9632.27", + "value":"-81.79" + } + }, + { + "id":"0d4d71ee-fc07-4eef-8954-bfcb9d636472", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T22:30:51.121Z", + "completed":"2017-03-06T22:30:51.121Z", + "new_balance":"9533.15", + "value":"-99.12" + } + }, + { + "id":"152ab17d-7475-498b-a789-943097568544", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T16:32:04.058Z", + "completed":"2017-03-07T16:32:04.058Z", + "new_balance":"9527.38", + "value":"-5.77" + } + }, + { + "id":"4cebee3e-6abd-4754-947e-cec4894e3a62", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T21:04:06.945Z", + "completed":"2017-03-07T21:04:06.945Z", + "new_balance":"9519.77", + "value":"-7.61" + } + }, + { + "id":"86860030-cece-4183-aba5-9e8e34eef6b1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T12:49:50.937Z", + "completed":"2017-03-08T12:49:50.937Z", + "new_balance":"9512.16", + "value":"-7.61" + } + }, + { + "id":"268c601b-263e-49ba-9d2a-25b7c47dfc01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:40:41.606Z", + "completed":"2017-03-08T16:40:41.606Z", + "new_balance":"9503.64", + "value":"-8.52" + } + }, + { + "id":"f6725ded-a886-4496-a338-61cf41a1f15c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T00:04:09.727Z", + "completed":"2017-03-10T00:04:09.727Z", + "new_balance":"9471.30", + "value":"-32.34" + } + }, + { + "id":"1f6b6bfe-9634-43bf-a38b-ceb8a303e287", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:23:25.753Z", + "completed":"2017-03-11T07:23:25.753Z", + "new_balance":"9458.93", + "value":"-12.37" + } + }, + { + "id":"331e3c0c-b5c1-401d-ae03-7ee7aea98104", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T16:33:14.912Z", + "completed":"2017-03-11T16:33:14.912Z", + "new_balance":"9434.63", + "value":"-24.30" + } + }, + { + "id":"6fd918f9-58cb-418a-94bc-f90cb8fcbc35", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T18:02:53.747Z", + "completed":"2017-03-11T18:02:53.747Z", + "new_balance":"9428.86", + "value":"-5.77" + } + }, + { + "id":"7c079486-b3e6-4b89-a691-72d44eeca95a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:39:20.569Z", + "completed":"2017-03-12T12:39:20.569Z", + "new_balance":"9362.68", + "value":"-66.18" + } + }, + { + "id":"4314fb1c-9c55-4eab-be9b-d0761665a9f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:03:00.993Z", + "completed":"2017-03-12T14:03:00.993Z", + "new_balance":"9343.52", + "value":"-19.16" + } + }, + { + "id":"3512976b-5854-4481-8231-8c5985f45b4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T20:11:03.488Z", + "completed":"2017-03-12T20:11:03.488Z", + "new_balance":"9337.75", + "value":"-5.77" + } + }, + { + "id":"62adaf84-dd22-4ac6-83fa-13d68eb76bf2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:48:16.388Z", + "completed":"2017-03-12T20:48:16.388Z", + "new_balance":"9236.49", + "value":"-101.26" + } + }, + { + "id":"2815a15f-c660-4eb5-95c5-fd5bffeaaab8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T20:07:23.906Z", + "completed":"2017-03-13T20:07:23.906Z", + "new_balance":"9230.72", + "value":"-5.77" + } + }, + { + "id":"66efc008-5a89-455b-999a-bed6f8d0f898", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T21:12:11.260Z", + "completed":"2017-03-13T21:12:11.260Z", + "new_balance":"9188.23", + "value":"-42.49" + } + }, + { + "id":"fdc060f2-a057-4a7d-a907-ca54bf490b00", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T13:06:36.339Z", + "completed":"2017-03-15T13:06:36.339Z", + "new_balance":"9139.34", + "value":"-48.89" + } + }, + { + "id":"a714ddc4-d560-49e8-a339-dcac061c8398", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:59:10.161Z", + "completed":"2017-03-15T20:59:10.161Z", + "new_balance":"9097.11", + "value":"-42.23" + } + }, + { + "id":"4e7521e4-ecb7-4901-9d4e-541da7db90a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T15:48:37.211Z", + "completed":"2017-03-17T15:48:37.211Z", + "new_balance":"9053.14", + "value":"-43.97" + } + }, + { + "id":"062416be-729d-4fa1-b0e4-8ff9cc6d2879", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T22:14:30.861Z", + "completed":"2017-03-18T22:14:30.861Z", + "new_balance":"8955.64", + "value":"-97.50" + } + }, + { + "id":"1bcb43d8-3160-4be7-b3af-e388addc80ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T05:16:43.131Z", + "completed":"2017-03-20T05:16:43.131Z", + "new_balance":"8851.32", + "value":"-104.32" + } + }, + { + "id":"fe2ada6b-f7d0-489b-8920-3eaf2ed2caf3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T01:27:05.473Z", + "completed":"2017-03-22T01:27:05.473Z", + "new_balance":"8811.00", + "value":"-40.32" + } + }, + { + "id":"8e5ac2a8-fbd3-4f27-bce8-2cd36a6d1e27", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T00:23:57.570Z", + "completed":"2017-03-25T00:23:57.570Z", + "new_balance":"8805.23", + "value":"-5.77" + } + }, + { + "id":"9fecb3b0-fec2-4ccb-9557-9913d748c6b3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T11:13:25.300Z", + "completed":"2017-03-25T11:13:25.300Z", + "new_balance":"8792.22", + "value":"-13.01" + } + }, + { + "id":"973141db-6b4b-43b8-a7e8-5b8adffc83a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T08:01:15.253Z", + "completed":"2017-03-26T08:01:15.253Z", + "new_balance":"8766.60", + "value":"-25.62" + } + }, + { + "id":"8b90f49a-e25c-41cd-abac-7ee02d39342f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T12:12:48.423Z", + "completed":"2017-03-26T12:12:48.423Z", + "new_balance":"8753.81", + "value":"-12.79" + } + }, + { + "id":"65fc82a7-3123-4bb5-8f48-66b9dc4731ab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T06:26:54.784Z", + "completed":"2017-03-27T06:26:54.784Z", + "new_balance":"8739.62", + "value":"-14.19" + } + }, + { + "id":"d56dc972-dfdf-4e40-8e36-bbeec76190f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T06:14:23.736Z", + "completed":"2017-03-28T06:14:23.736Z", + "new_balance":"8690.84", + "value":"-48.78" + } + }, + { + "id":"40c9bf2e-81f0-4fea-bbd0-84ee7645de41", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T03:41:33.858Z", + "completed":"2017-03-31T03:41:33.858Z", + "new_balance":"8492.93", + "value":"-197.91" + } + }, + { + "id":"c8efbc47-8a8f-4dcf-a5b4-b51a75bc0972", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T00:04:57.941Z", + "completed":"2017-04-01T00:04:57.941Z", + "new_balance":"10173.34", + "value":"1680.41" + } + }, + { + "id":"59a0cdad-98dd-4f72-a742-292b9bb70012", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T00:36:30.309Z", + "completed":"2017-04-01T00:36:30.309Z", + "new_balance":"11195.76", + "value":"1022.42" + } + }, + { + "id":"6de76e76-cc31-4613-970b-bbee35d2db97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T20:36:47.581Z", + "completed":"2017-04-01T20:36:47.581Z", + "new_balance":"10788.19", + "value":"-407.57" + } + }, + { + "id":"f06970e4-d5bc-4a58-abf6-29d1384307de", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T05:49:27.875Z", + "completed":"2017-04-03T05:49:27.875Z", + "new_balance":"10741.39", + "value":"-46.80" + } + }, + { + "id":"41d61556-4333-46f7-ab10-baa970cf0bd9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T08:18:27.549Z", + "completed":"2017-04-03T08:18:27.549Z", + "new_balance":"10723.77", + "value":"-17.62" + } + }, + { + "id":"d7d8f4cc-fb0f-4bc5-ac68-b01317ef671c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T09:42:21.181Z", + "completed":"2017-04-03T09:42:21.181Z", + "new_balance":"10717.39", + "value":"-6.38" + } + }, + { + "id":"20dc3df2-0561-47e1-9769-3bd7aca7b960", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T05:27:14.421Z", + "completed":"2017-04-05T05:27:14.421Z", + "new_balance":"10710.40", + "value":"-6.99" + } + }, + { + "id":"e6d0de85-d78c-4844-9d89-f96d9e5984d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:47:54.551Z", + "completed":"2017-04-05T15:47:54.551Z", + "new_balance":"10699.49", + "value":"-10.91" + } + }, + { + "id":"41ae0136-5b0a-405e-82c7-ad00b762b614", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T16:05:55.626Z", + "completed":"2017-04-06T16:05:55.626Z", + "new_balance":"10674.56", + "value":"-24.93" + } + }, + { + "id":"16cde98d-fdde-4ca1-ac16-70beef0acc16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T10:33:35.983Z", + "completed":"2017-04-09T10:33:35.983Z", + "new_balance":"10655.40", + "value":"-19.16" + } + }, + { + "id":"3edb21e8-10b6-4936-8a53-903aa3c0023d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T05:29:53.926Z", + "completed":"2017-04-10T05:29:53.926Z", + "new_balance":"10640.41", + "value":"-14.99" + } + }, + { + "id":"96550bf7-9a7c-4866-bfed-7256383c0470", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T00:21:45.353Z", + "completed":"2017-04-11T00:21:45.353Z", + "new_balance":"10611.25", + "value":"-29.16" + } + }, + { + "id":"b7cf0300-792a-4ed6-a40e-7fe603787ac4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T18:03:40.594Z", + "completed":"2017-04-11T18:03:40.594Z", + "new_balance":"10595.24", + "value":"-16.01" + } + }, + { + "id":"c6dfe9f8-bd18-4b0d-b805-d94fd68afacd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T05:13:53.215Z", + "completed":"2017-04-13T05:13:53.215Z", + "new_balance":"10550.18", + "value":"-45.06" + } + }, + { + "id":"54c2d3a8-0aec-443a-b31e-58420aaa4119", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T19:45:25.768Z", + "completed":"2017-04-13T19:45:25.768Z", + "new_balance":"10445.46", + "value":"-104.72" + } + }, + { + "id":"b81acea2-9cd3-4dcf-a325-5928fa4893b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T12:32:41.401Z", + "completed":"2017-04-15T12:32:41.401Z", + "new_balance":"10400.98", + "value":"-44.48" + } + }, + { + "id":"c3492f84-2a89-43e7-8d8d-e88855443959", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T02:36:51.185Z", + "completed":"2017-04-16T02:36:51.185Z", + "new_balance":"10395.21", + "value":"-5.77" + } + }, + { + "id":"fbc651ea-d84e-4636-a5f1-31b66f067cc9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T10:27:48.605Z", + "completed":"2017-04-16T10:27:48.605Z", + "new_balance":"10385.14", + "value":"-10.07" + } + }, + { + "id":"1eaaa6a0-9a35-405f-b21b-2c920d191e7c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T03:46:07.701Z", + "completed":"2017-04-18T03:46:07.701Z", + "new_balance":"10306.06", + "value":"-79.08" + } + }, + { + "id":"25079892-6626-4497-ba3f-df109cc59d3b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T18:05:39.771Z", + "completed":"2017-04-23T18:05:39.771Z", + "new_balance":"10280.66", + "value":"-25.40" + } + }, + { + "id":"58238cd2-55b2-440b-8434-12d7bce02f07", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T16:15:58.844Z", + "completed":"2017-04-24T16:15:58.844Z", + "new_balance":"10249.85", + "value":"-30.81" + } + }, + { + "id":"daa0058e-6c1b-4ad3-aa13-36f7d2f3636f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T16:48:15.757Z", + "completed":"2017-04-24T16:48:15.757Z", + "new_balance":"10235.02", + "value":"-14.83" + } + }, + { + "id":"f59c28b1-aa38-4d63-bde4-cf76c47781d7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T02:28:34.108Z", + "completed":"2017-04-26T02:28:34.108Z", + "new_balance":"10228.03", + "value":"-6.99" + } + }, + { + "id":"35374aac-c70a-48ad-bb10-52c10a37ceab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T00:16:02.914Z", + "completed":"2017-04-28T00:16:02.914Z", + "new_balance":"10179.25", + "value":"-48.78" + } + }, + { + "id":"d764909a-cdb2-4bcc-8dc0-1c2c5888a3dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T21:28:22.698Z", + "completed":"2017-04-28T21:28:22.698Z", + "new_balance":"9981.34", + "value":"-197.91" + } + }, + { + "id":"3c17051c-3561-4da5-9c19-6419dad80624", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T00:58:01.724Z", + "completed":"2017-05-02T00:58:01.724Z", + "new_balance":"9966.83", + "value":"-14.51" + } + }, + { + "id":"f6c8066f-3915-4910-a897-503a97b3392c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T10:57:36.707Z", + "completed":"2017-05-02T10:57:36.707Z", + "new_balance":"9803.35", + "value":"-163.48" + } + }, + { + "id":"c70cb887-a777-4de8-8065-8a7a14aad11f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T15:25:43.354Z", + "completed":"2017-05-02T15:25:43.354Z", + "new_balance":"9796.86", + "value":"-6.49" + } + }, + { + "id":"cfb0fdad-e9e1-4e13-ac84-b63058409d0d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T16:25:17.833Z", + "completed":"2017-05-02T16:25:17.833Z", + "new_balance":"9389.29", + "value":"-407.57" + } + }, + { + "id":"b412da75-9bec-4ef6-867a-570c0c7d73fb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T04:26:13.084Z", + "completed":"2017-05-06T04:26:13.084Z", + "new_balance":"9364.49", + "value":"-24.80" + } + }, + { + "id":"a96955a2-79b3-4980-bae4-b5d9f1eb5e77", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T21:19:12.678Z", + "completed":"2017-05-06T21:19:12.678Z", + "new_balance":"9335.33", + "value":"-29.16" + } + }, + { + "id":"3be7c34f-9f3f-4481-8b6d-aa3fdbaed978", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T04:20:15.900Z", + "completed":"2017-05-07T04:20:15.900Z", + "new_balance":"9230.61", + "value":"-104.72" + } + }, + { + "id":"b6c523ba-b7d7-4d5f-92af-6ddfaa4322c3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T21:56:27.169Z", + "completed":"2017-05-07T21:56:27.169Z", + "new_balance":"9189.26", + "value":"-41.35" + } + }, + { + "id":"30838ead-bb7c-4702-ad92-72ee8eeba9ca", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T15:32:01.445Z", + "completed":"2017-05-09T15:32:01.445Z", + "new_balance":"10211.68", + "value":"1022.42" + } + }, + { + "id":"d56e11b0-3e3a-49ca-996f-cb693dacb463", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T17:40:33.482Z", + "completed":"2017-05-14T17:40:33.482Z", + "new_balance":"10161.12", + "value":"-50.56" + } + }, + { + "id":"d9fdbb99-4898-433f-9f4a-b90539dfc04f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T20:15:09.570Z", + "completed":"2017-05-14T20:15:09.570Z", + "new_balance":"10135.32", + "value":"-25.80" + } + }, + { + "id":"8f146660-3b81-4615-9059-1853297665cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T15:47:11.797Z", + "completed":"2017-05-16T15:47:11.797Z", + "new_balance":"10128.33", + "value":"-6.99" + } + }, + { + "id":"e6fe333a-116a-46a2-813d-45d9028559db", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T03:18:09.274Z", + "completed":"2017-05-21T03:18:09.274Z", + "new_balance":"10093.14", + "value":"-35.19" + } + }, + { + "id":"958e04ea-2a1a-4b5d-8cbf-230c6a240922", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T00:46:35.105Z", + "completed":"2017-05-23T00:46:35.105Z", + "new_balance":"10087.37", + "value":"-5.77" + } + }, + { + "id":"1528f700-bc2b-4dd6-b3e4-3441530bad53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T23:52:44.940Z", + "completed":"2017-05-23T23:52:44.940Z", + "new_balance":"10058.21", + "value":"-29.16" + } + }, + { + "id":"79f4004d-1cad-4a98-b9c7-806063605c25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T19:00:37.785Z", + "completed":"2017-05-24T19:00:37.785Z", + "new_balance":"10012.70", + "value":"-45.51" + } + }, + { + "id":"4cf7121e-d886-403d-aae6-55e7e7d91ea0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:19:53.086Z", + "completed":"2017-05-27T07:19:53.086Z", + "new_balance":"10004.30", + "value":"-8.40" + } + }, + { + "id":"d423b926-1979-4975-8804-8d3df642740f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T09:43:29.699Z", + "completed":"2017-05-30T09:43:29.699Z", + "new_balance":"9955.52", + "value":"-48.78" + } + }, + { + "id":"3562e041-932c-455c-bb68-4db8f4b64b75", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T17:33:51.266Z", + "completed":"2017-05-30T17:33:51.266Z", + "new_balance":"9757.61", + "value":"-197.91" + } + }, + { + "id":"15e9e429-f3f5-4fb3-9841-66240154a641", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T00:57:19.922Z", + "completed":"2017-06-01T00:57:19.922Z", + "new_balance":"10780.03", + "value":"1022.42" + } + }, + { + "id":"e7a0ba77-90b1-4641-a1d2-1bba76a57e74", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T06:21:12.470Z", + "completed":"2017-06-01T06:21:12.470Z", + "new_balance":"10372.46", + "value":"-407.57" + } + }, + { + "id":"59570eee-e23b-411d-b170-906f712d96cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T02:08:26.413Z", + "completed":"2017-06-04T02:08:26.413Z", + "new_balance":"10341.01", + "value":"-31.45" + } + }, + { + "id":"92ca3dbe-8c50-454d-953a-f6c0d0b9fe2b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T18:09:46.368Z", + "completed":"2017-06-04T18:09:46.368Z", + "new_balance":"10324.01", + "value":"-17.00" + } + }, + { + "id":"9128477b-6d47-4b6c-9c4b-d8fd02dc749d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T01:56:09.566Z", + "completed":"2017-06-11T01:56:09.566Z", + "new_balance":"10278.50", + "value":"-45.51" + } + }, + { + "id":"0f2c8a9c-91b8-4700-8b6f-ba04932d270f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:09:39.942Z", + "completed":"2017-06-11T22:09:39.942Z", + "new_balance":"10247.69", + "value":"-30.81" + } + }, + { + "id":"edc6ddb2-d5ba-4589-9d02-b31ea3d58fb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T07:58:54.107Z", + "completed":"2017-06-12T07:58:54.107Z", + "new_balance":"10233.63", + "value":"-14.06" + } + }, + { + "id":"99989970-a963-4013-baa1-fc5242cc3a97", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T11:28:11.491Z", + "completed":"2017-06-12T11:28:11.491Z", + "new_balance":"10128.91", + "value":"-104.72" + } + }, + { + "id":"900b7138-1a8d-4acf-ba34-5ef1ad4c5b36", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T22:20:57.828Z", + "completed":"2017-06-12T22:20:57.828Z", + "new_balance":"10123.14", + "value":"-5.77" + } + }, + { + "id":"143ee207-a62b-491f-af0c-d4ea0be6f88d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T02:11:06.970Z", + "completed":"2017-06-13T02:11:06.970Z", + "new_balance":"10077.60", + "value":"-45.54" + } + }, + { + "id":"72e024e3-aeb0-43b5-a274-e50c9bc78ec5", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T15:12:49.438Z", + "completed":"2017-06-13T15:12:49.438Z", + "new_balance":"9978.48", + "value":"-99.12" + } + }, + { + "id":"f2bd815b-37bc-44b4-9548-29ea2a139c19", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T15:56:32.766Z", + "completed":"2017-06-13T15:56:32.766Z", + "new_balance":"9896.69", + "value":"-81.79" + } + }, + { + "id":"1c12895a-9523-47f9-b1e6-cde4dc3543c1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T00:42:56.220Z", + "completed":"2017-06-14T00:42:56.220Z", + "new_balance":"9889.08", + "value":"-7.61" + } + }, + { + "id":"71e299da-c8b3-4731-b0a3-a3b6c425e067", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T13:18:11.017Z", + "completed":"2017-06-14T13:18:11.017Z", + "new_balance":"9883.31", + "value":"-5.77" + } + }, + { + "id":"128a6dec-8abe-4d55-b4cc-894335136958", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T21:45:32.673Z", + "completed":"2017-06-14T21:45:32.673Z", + "new_balance":"9875.70", + "value":"-7.61" + } + }, + { + "id":"c1c97c07-c597-49d3-89b9-d5c3b4083cab", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T03:33:19.467Z", + "completed":"2017-06-15T03:33:19.467Z", + "new_balance":"9867.18", + "value":"-8.52" + } + }, + { + "id":"39acb4c1-6520-4b2d-920f-897071612043", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T14:01:55.075Z", + "completed":"2017-06-15T14:01:55.075Z", + "new_balance":"9834.84", + "value":"-32.34" + } + }, + { + "id":"ff861622-fce6-496a-8666-c8d4993e26df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T16:54:44.589Z", + "completed":"2017-06-15T16:54:44.589Z", + "new_balance":"9829.07", + "value":"-5.77" + } + }, + { + "id":"fea52f84-6779-4be9-92a0-000015fcb551", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T21:09:12.146Z", + "completed":"2017-06-16T21:09:12.146Z", + "new_balance":"9804.77", + "value":"-24.30" + } + }, + { + "id":"65942e55-6953-4706-b941-151f729c612b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T01:45:38.718Z", + "completed":"2017-06-17T01:45:38.718Z", + "new_balance":"9792.40", + "value":"-12.37" + } + }, + { + "id":"b31b4bff-0184-49f9-8e69-84f13a12ec69", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T00:49:14.601Z", + "completed":"2017-06-18T00:49:14.601Z", + "new_balance":"9726.22", + "value":"-66.18" + } + }, + { + "id":"84dd6c06-8f52-453a-a8b5-ac8223332fda", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T02:08:48.085Z", + "completed":"2017-06-18T02:08:48.085Z", + "new_balance":"9720.45", + "value":"-5.77" + } + }, + { + "id":"a2e44ec6-d5f6-43cb-be08-48abb30f63ef", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T03:10:05.145Z", + "completed":"2017-06-18T03:10:05.145Z", + "new_balance":"9701.29", + "value":"-19.16" + } + }, + { + "id":"e073b69b-65e1-41a4-8ee0-a699779cf515", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T12:32:50.431Z", + "completed":"2017-06-18T12:32:50.431Z", + "new_balance":"9658.80", + "value":"-42.49" + } + }, + { + "id":"deee1485-00ec-4a77-88a9-79f583fedfc1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T16:24:55.875Z", + "completed":"2017-06-18T16:24:55.875Z", + "new_balance":"9557.54", + "value":"-101.26" + } + }, + { + "id":"b54025ab-b69c-4e83-83b0-5fbf5fba97fc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T18:54:29.024Z", + "completed":"2017-06-18T18:54:29.024Z", + "new_balance":"9551.77", + "value":"-5.77" + } + }, + { + "id":"933bc3d4-ccf2-4217-b02f-46d03417da23", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T01:11:33.975Z", + "completed":"2017-06-19T01:11:33.975Z", + "new_balance":"9502.88", + "value":"-48.89" + } + }, + { + "id":"5b9af6d4-0965-4802-bd8a-06180d1a8c0f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T04:43:21.542Z", + "completed":"2017-06-19T04:43:21.542Z", + "new_balance":"9458.91", + "value":"-43.97" + } + }, + { + "id":"9f51dda5-6c16-42ea-8c1b-58cea0baa037", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:12:17.172Z", + "completed":"2017-06-19T21:12:17.172Z", + "new_balance":"9416.68", + "value":"-42.23" + } + }, + { + "id":"11736261-0844-4e40-b92d-eb6cf13e08ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T01:53:25.848Z", + "completed":"2017-06-21T01:53:25.848Z", + "new_balance":"9319.18", + "value":"-97.50" + } + }, + { + "id":"98c37960-42da-443d-ba9e-59467e1c7ec2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T07:02:55.403Z", + "completed":"2017-06-21T07:02:55.403Z", + "new_balance":"9214.86", + "value":"-104.32" + } + }, + { + "id":"0429a7ed-6eb0-47c2-8653-57c0c353b74a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T10:24:31.327Z", + "completed":"2017-06-22T10:24:31.327Z", + "new_balance":"9201.85", + "value":"-13.01" + } + }, + { + "id":"a40b68cc-c76f-4acc-b716-bb9300203248", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T10:57:11.795Z", + "completed":"2017-06-22T10:57:11.795Z", + "new_balance":"9196.08", + "value":"-5.77" + } + }, + { + "id":"883203b0-ce60-4c49-b350-cfc6a13441f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T12:40:57.146Z", + "completed":"2017-06-22T12:40:57.146Z", + "new_balance":"9155.76", + "value":"-40.32" + } + }, + { + "id":"48746ed7-8615-4186-beb2-0a55b946ee24", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T10:10:15.540Z", + "completed":"2017-06-23T10:10:15.540Z", + "new_balance":"9142.97", + "value":"-12.79" + } + }, + { + "id":"d4bf61de-4095-4f17-a942-b6601881a07b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T13:52:03.412Z", + "completed":"2017-06-24T13:52:03.412Z", + "new_balance":"9117.35", + "value":"-25.62" + } + }, + { + "id":"4f2a8d81-e063-4406-b0c2-7c87e7c7702c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T18:07:24.304Z", + "completed":"2017-06-26T18:07:24.304Z", + "new_balance":"9103.16", + "value":"-14.19" + } + }, + { + "id":"8cb11fed-53e1-47c3-bf05-5498631d5797", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T05:14:45.783Z", + "completed":"2017-06-30T05:14:45.783Z", + "new_balance":"8905.25", + "value":"-197.91" + } + }, + { + "id":"6a8d6b8b-c965-4e63-976a-4e0b7c5484d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:55:31.705Z", + "completed":"2017-06-30T20:55:31.705Z", + "new_balance":"8856.47", + "value":"-48.78" + } + }, + { + "id":"24b8545f-b967-4881-bcfc-e58a70749c50", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T10:35:37.983Z", + "completed":"2017-07-01T10:35:37.983Z", + "new_balance":"10536.88", + "value":"1680.41" + } + }, + { + "id":"0752ee8e-29c3-432e-bb4a-49acc2c2b8f4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T19:00:57.784Z", + "completed":"2017-07-01T19:00:57.784Z", + "new_balance":"11559.30", + "value":"1022.42" + } + }, + { + "id":"beaae88b-c269-49aa-bf45-85d6daad19f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T03:01:45.896Z", + "completed":"2017-07-03T03:01:45.896Z", + "new_balance":"11151.73", + "value":"-407.57" + } + }, + { + "id":"b5f9cc5a-9d75-4663-99e7-d02b7d928b6d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T07:08:32.446Z", + "completed":"2017-07-04T07:08:32.446Z", + "new_balance":"11104.93", + "value":"-46.80" + } + }, + { + "id":"5168a4fa-097c-43f5-a819-af3a84f3facd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T07:25:18.215Z", + "completed":"2017-07-04T07:25:18.215Z", + "new_balance":"11087.31", + "value":"-17.62" + } + }, + { + "id":"f8cd2ab4-e63a-4b9a-8569-2d00238a2218", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T09:02:32.841Z", + "completed":"2017-07-04T09:02:32.841Z", + "new_balance":"11080.93", + "value":"-6.38" + } + }, + { + "id":"bccd01f8-6af3-4a61-9c53-769b07fff9ee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T19:28:17.422Z", + "completed":"2017-07-05T19:28:17.422Z", + "new_balance":"11070.02", + "value":"-10.91" + } + }, + { + "id":"a416193c-7157-4a6a-9f47-16dcb204289e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T11:56:55.244Z", + "completed":"2017-07-07T11:56:55.244Z", + "new_balance":"11063.03", + "value":"-6.99" + } + }, + { + "id":"f5f020de-bf85-40ea-b193-52aee485423a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T00:07:41.771Z", + "completed":"2017-07-11T00:07:41.771Z", + "new_balance":"11033.87", + "value":"-29.16" + } + }, + { + "id":"0a1bf786-3112-4f23-8cac-db7d657688e7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T00:48:40.101Z", + "completed":"2017-07-11T00:48:40.101Z", + "new_balance":"11018.88", + "value":"-14.99" + } + }, + { + "id":"9f1c7d62-ea04-4705-a04d-fc1a3f90e7eb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T07:38:08.949Z", + "completed":"2017-07-11T07:38:08.949Z", + "new_balance":"11002.87", + "value":"-16.01" + } + }, + { + "id":"dfd2d7f7-4711-4b43-b8d3-07a3773e6d5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T18:36:07.155Z", + "completed":"2017-07-11T18:36:07.155Z", + "new_balance":"10977.94", + "value":"-24.93" + } + }, + { + "id":"daf31cb8-2728-4de1-abae-83a7ad2bab98", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T19:03:41.392Z", + "completed":"2017-07-11T19:03:41.392Z", + "new_balance":"10958.78", + "value":"-19.16" + } + }, + { + "id":"8665388e-1edf-4fc6-ac28-24caf2e94f25", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T06:24:59.238Z", + "completed":"2017-07-13T06:24:59.238Z", + "new_balance":"10913.72", + "value":"-45.06" + } + }, + { + "id":"4be45679-f214-409f-af42-bf8572a5979f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T11:21:41.208Z", + "completed":"2017-07-13T11:21:41.208Z", + "new_balance":"10809.00", + "value":"-104.72" + } + }, + { + "id":"d85975e7-3182-4c1e-bc97-827db3b01b34", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T04:40:26.689Z", + "completed":"2017-07-16T04:40:26.689Z", + "new_balance":"10764.52", + "value":"-44.48" + } + }, + { + "id":"32de7df7-9f6a-4ae1-9ece-f9959dea6ef6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:14:23.445Z", + "completed":"2017-07-16T06:14:23.445Z", + "new_balance":"10855.40", + "value":"90.88" + } + }, + { + "id":"7b8b4b36-e569-4480-bf34-5a24bf239c17", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T00:10:12.863Z", + "completed":"2017-07-17T00:10:12.863Z", + "new_balance":"10845.33", + "value":"-10.07" + } + }, + { + "id":"24e134db-227c-4a59-abd5-4a67fc40cace", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T14:47:54.332Z", + "completed":"2017-07-17T14:47:54.332Z", + "new_balance":"10839.56", + "value":"-5.77" + } + }, + { + "id":"6ad32420-69b0-4590-9eb5-7bbf2334eae2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T18:02:37.675Z", + "completed":"2017-07-19T18:02:37.675Z", + "new_balance":"10760.48", + "value":"-79.08" + } + }, + { + "id":"ee040448-8058-4ab2-8e6f-49342ca04e06", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T16:21:00.770Z", + "completed":"2017-07-21T16:21:00.770Z", + "new_balance":"10735.08", + "value":"-25.40" + } + }, + { + "id":"d8a9858b-5812-4334-8c4b-05d01db9ebee", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T16:20:15.823Z", + "completed":"2017-07-23T16:20:15.823Z", + "new_balance":"10704.27", + "value":"-30.81" + } + }, + { + "id":"7e3242b5-0dce-4fea-a3bd-f204623d7fff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:08:06.731Z", + "completed":"2017-07-25T03:08:06.731Z", + "new_balance":"10689.44", + "value":"-14.83" + } + }, + { + "id":"cac56d85-abc5-486f-bbfe-1eeadcaa1791", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T03:22:24.302Z", + "completed":"2017-07-27T03:22:24.302Z", + "new_balance":"10682.45", + "value":"-6.99" + } + }, + { + "id":"59c4e00b-dae6-437b-aa57-4dd3ec409519", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T00:53:56.500Z", + "completed":"2017-07-28T00:53:56.500Z", + "new_balance":"10633.67", + "value":"-48.78" + } + }, + { + "id":"6226d6ca-bdd5-48b0-8451-b36513f72e26", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T18:38:17.912Z", + "completed":"2017-07-28T18:38:17.912Z", + "new_balance":"10435.76", + "value":"-197.91" + } + }, + { + "id":"5b2ba2c0-982b-4b9c-9d60-f445cb1914c4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T06:21:34.118Z", + "completed":"2017-08-01T06:21:34.118Z", + "new_balance":"11458.18", + "value":"1022.42" + } + }, + { + "id":"54fb0ac1-81fd-4ba4-beaf-396fe3a000b0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T12:37:46.069Z", + "completed":"2017-08-03T12:37:46.069Z", + "new_balance":"11050.61", + "value":"-407.57" + } + }, + { + "id":"d1daf109-788e-46e8-ac3b-5710492cd6f2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:23:58.190Z", + "completed":"2017-08-03T17:23:58.190Z", + "new_balance":"10887.13", + "value":"-163.48" + } + }, + { + "id":"c7e40587-f73e-48c7-9dea-05e3beb94741", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T20:11:02.512Z", + "completed":"2017-08-04T20:11:02.512Z", + "new_balance":"10872.62", + "value":"-14.51" + } + }, + { + "id":"0c519dee-32c2-4a27-95e9-4c96fa2471cc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T03:37:10.973Z", + "completed":"2017-08-07T03:37:10.973Z", + "new_balance":"10866.13", + "value":"-6.49" + } + }, + { + "id":"0c22e14d-6001-4e02-a1b6-d357119642c7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T17:52:03.664Z", + "completed":"2017-08-07T17:52:03.664Z", + "new_balance":"10841.33", + "value":"-24.80" + } + }, + { + "id":"41496271-bfd7-4c69-8f5d-f1e78009d727", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T18:23:49.482Z", + "completed":"2017-08-07T18:23:49.482Z", + "new_balance":"10812.17", + "value":"-29.16" + } + }, + { + "id":"f0b0e9be-2585-4c4d-a5fb-420fc640d7ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T00:04:08.181Z", + "completed":"2017-08-08T00:04:08.181Z", + "new_balance":"10707.45", + "value":"-104.72" + } + }, + { + "id":"3f2f0564-67ac-47c7-979a-7e8706627532", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T04:03:45.007Z", + "completed":"2017-08-08T04:03:45.007Z", + "new_balance":"10656.89", + "value":"-50.56" + } + }, + { + "id":"67526128-f79b-47d8-b2d7-97bb8130bf6b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T15:59:40.961Z", + "completed":"2017-08-08T15:59:40.961Z", + "new_balance":"10615.54", + "value":"-41.35" + } + }, + { + "id":"4477e86f-12db-4e64-992d-c510f085c541", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T23:13:00.779Z", + "completed":"2017-08-09T23:13:00.779Z", + "new_balance":"10589.74", + "value":"-25.80" + } + }, + { + "id":"1aa6ed2d-350d-43c5-a57b-a1d2598217b9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T15:10:36.775Z", + "completed":"2017-08-11T15:10:36.775Z", + "new_balance":"10582.75", + "value":"-6.99" + } + }, + { + "id":"b83fdd52-b33e-419e-9394-e33ae42a5fc6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T11:17:24.300Z", + "completed":"2017-08-14T11:17:24.300Z", + "new_balance":"10547.56", + "value":"-35.19" + } + }, + { + "id":"b314f3a1-2837-45b0-b471-4f5ef4a385bc", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T06:29:25.322Z", + "completed":"2017-08-15T06:29:25.322Z", + "new_balance":"10518.40", + "value":"-29.16" + } + }, + { + "id":"6777cb70-b7d1-41ee-8ad3-f65b950ad18c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T01:36:24.843Z", + "completed":"2017-08-17T01:36:24.843Z", + "new_balance":"10472.89", + "value":"-45.51" + } + }, + { + "id":"593305e9-d814-49a1-aa9f-54e3ab513e74", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T08:34:12.350Z", + "completed":"2017-08-17T08:34:12.350Z", + "new_balance":"10467.12", + "value":"-5.77" + } + }, + { + "id":"cb0b8fc0-7322-4926-a865-167c19366792", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T19:41:26.186Z", + "completed":"2017-08-19T19:41:26.186Z", + "new_balance":"10458.72", + "value":"-8.40" + } + }, + { + "id":"0037699e-4b35-4225-9912-2895f3c955f7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T05:16:34.813Z", + "completed":"2017-08-25T05:16:34.813Z", + "new_balance":"10572.86", + "value":"114.14" + } + }, + { + "id":"26f25e22-7b9e-4d2c-bb29-771a8d4a9f02", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T04:56:26.498Z", + "completed":"2017-08-28T04:56:26.498Z", + "new_balance":"10524.08", + "value":"-48.78" + } + }, + { + "id":"14d0f464-3d1b-429a-9beb-e17d673fedd1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T11:57:12.729Z", + "completed":"2017-08-28T11:57:12.729Z", + "new_balance":"10326.17", + "value":"-197.91" + } + }, + { + "id":"08815fb7-5ef9-408c-ac57-c1eab48ba148", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T11:16:43.044Z", + "completed":"2017-09-01T11:16:43.044Z", + "new_balance":"11348.59", + "value":"1022.42" + } + }, + { + "id":"1ead05d9-7ed5-4d7d-8b83-2c48bd39b015", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T19:36:09.228Z", + "completed":"2017-09-03T19:36:09.228Z", + "new_balance":"10941.02", + "value":"-407.57" + } + }, + { + "id":"fa28ba67-da25-444d-9ee6-0e84b3dd0da9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T11:27:46.272Z", + "completed":"2017-09-04T11:27:46.272Z", + "new_balance":"10895.51", + "value":"-45.51" + } + }, + { + "id":"b40dbb66-eed4-4555-b598-8a4bd4af8dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:22:39.016Z", + "completed":"2017-09-04T19:22:39.016Z", + "new_balance":"10864.06", + "value":"-31.45" + } + }, + { + "id":"e9d0b196-4d16-4b5e-bb6a-d42ca5e4b717", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T21:40:12.787Z", + "completed":"2017-09-04T21:40:12.787Z", + "new_balance":"10833.25", + "value":"-30.81" + } + }, + { + "id":"f344bf43-5bbc-4bba-884d-5dde883d5a6b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T23:08:42.610Z", + "completed":"2017-09-04T23:08:42.610Z", + "new_balance":"10816.25", + "value":"-17.00" + } + }, + { + "id":"c7b4864d-49b1-40e0-a511-df72b202da21", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T05:28:00.940Z", + "completed":"2017-09-05T05:28:00.940Z", + "new_balance":"10734.46", + "value":"-81.79" + } + }, + { + "id":"7eada753-dad7-4b61-be44-1f8156fb5b16", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T06:41:57.734Z", + "completed":"2017-09-05T06:41:57.734Z", + "new_balance":"10728.69", + "value":"-5.77" + } + }, + { + "id":"4599df6c-75c1-4e08-bd8d-b1f5ca70031d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T06:44:24.936Z", + "completed":"2017-09-05T06:44:24.936Z", + "new_balance":"10714.63", + "value":"-14.06" + } + }, + { + "id":"766feeae-0a2a-4205-b76a-d33224826b79", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T07:29:27.545Z", + "completed":"2017-09-05T07:29:27.545Z", + "new_balance":"10669.09", + "value":"-45.54" + } + }, + { + "id":"5a0eebbd-ab5b-4567-b547-f66299a9ffa1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T10:54:21.791Z", + "completed":"2017-09-05T10:54:21.791Z", + "new_balance":"10564.37", + "value":"-104.72" + } + }, + { + "id":"5c173071-3148-4c0c-9611-29a087037e6c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T20:48:27.456Z", + "completed":"2017-09-05T20:48:27.456Z", + "new_balance":"10465.25", + "value":"-99.12" + } + }, + { + "id":"a0eebf59-3a51-4b5a-96bd-cce1479b7a8e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T02:49:48.187Z", + "completed":"2017-09-07T02:49:48.187Z", + "new_balance":"10457.64", + "value":"-7.61" + } + }, + { + "id":"d54b598e-5969-415a-8061-9f25baad01cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T06:34:46.753Z", + "completed":"2017-09-07T06:34:46.753Z", + "new_balance":"10451.87", + "value":"-5.77" + } + }, + { + "id":"f7c3afae-23a4-49f3-9302-0cc6bbde4a0a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T17:55:28.146Z", + "completed":"2017-09-07T17:55:28.146Z", + "new_balance":"10443.35", + "value":"-8.52" + } + }, + { + "id":"f17b9375-9650-47a5-ad3e-87635d69f3a9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T23:56:28.872Z", + "completed":"2017-09-07T23:56:28.872Z", + "new_balance":"10435.74", + "value":"-7.61" + } + }, + { + "id":"de2812e2-a8d2-4c08-9a10-5c60e90039f8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T18:40:05.928Z", + "completed":"2017-09-10T18:40:05.928Z", + "new_balance":"10403.40", + "value":"-32.34" + } + }, + { + "id":"f0f82d47-7a1b-4e79-b87e-b58dce556090", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T00:22:23.361Z", + "completed":"2017-09-11T00:22:23.361Z", + "new_balance":"10397.63", + "value":"-5.77" + } + }, + { + "id":"74747697-ca67-4023-bb20-3b9fb6d8e6a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T05:54:32.994Z", + "completed":"2017-09-11T05:54:32.994Z", + "new_balance":"10373.33", + "value":"-24.30" + } + }, + { + "id":"0d37e23b-5a03-4da1-8e7b-3814654b1e01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T18:35:36.174Z", + "completed":"2017-09-11T18:35:36.174Z", + "new_balance":"10360.96", + "value":"-12.37" + } + }, + { + "id":"663456c2-d9bd-4ab9-9e7b-db5266597975", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T02:00:47.386Z", + "completed":"2017-09-12T02:00:47.386Z", + "new_balance":"10294.78", + "value":"-66.18" + } + }, + { + "id":"5e0a859b-4400-47a9-8cba-e661555c5c01", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T06:38:21.971Z", + "completed":"2017-09-12T06:38:21.971Z", + "new_balance":"10289.01", + "value":"-5.77" + } + }, + { + "id":"d253f8c0-1b92-4e8f-9ba7-ff3b10fee1c9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T12:57:22.297Z", + "completed":"2017-09-12T12:57:22.297Z", + "new_balance":"10269.85", + "value":"-19.16" + } + }, + { + "id":"29f7440d-c9bf-47b5-9062-d0ed37ef64aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T18:44:29.905Z", + "completed":"2017-09-12T18:44:29.905Z", + "new_balance":"10168.59", + "value":"-101.26" + } + }, + { + "id":"bdaccb42-f8ca-42e1-b38a-ab27528f45ce", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T20:35:18.616Z", + "completed":"2017-09-13T20:35:18.616Z", + "new_balance":"10126.10", + "value":"-42.49" + } + }, + { + "id":"6f69739c-44a9-48c5-a8e5-acdeb5dbf3df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T04:15:12.002Z", + "completed":"2017-09-14T04:15:12.002Z", + "new_balance":"10120.33", + "value":"-5.77" + } + }, + { + "id":"3069ccd5-fa40-4126-be80-62aaac304ebf", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:43:16.709Z", + "completed":"2017-09-14T05:43:16.709Z", + "new_balance":"10078.10", + "value":"-42.23" + } + }, + { + "id":"5098b190-19f9-47cf-8fcf-d5d9ab0b3f5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T07:26:16.321Z", + "completed":"2017-09-16T07:26:16.321Z", + "new_balance":"10029.21", + "value":"-48.89" + } + }, + { + "id":"2ea51b73-ebda-49e4-80ed-e6a19f164909", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T11:03:24.138Z", + "completed":"2017-09-18T11:03:24.138Z", + "new_balance":"9985.24", + "value":"-43.97" + } + }, + { + "id":"3f879b45-2e11-4797-8c9c-8acf33fc4a63", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T04:02:09.669Z", + "completed":"2017-09-21T04:02:09.669Z", + "new_balance":"9880.92", + "value":"-104.32" + } + }, + { + "id":"b8a69a9b-5a0e-4907-849f-2f0fee24b765", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T16:08:11.961Z", + "completed":"2017-09-21T16:08:11.961Z", + "new_balance":"9783.42", + "value":"-97.50" + } + }, + { + "id":"71fda03c-200f-42ce-93db-becf404b0372", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T16:25:47.740Z", + "completed":"2017-09-23T16:25:47.740Z", + "new_balance":"9743.10", + "value":"-40.32" + } + }, + { + "id":"b937b5eb-3e7c-4d78-b3d0-e1192e61606b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T22:53:14.236Z", + "completed":"2017-09-24T22:53:14.236Z", + "new_balance":"9737.33", + "value":"-5.77" + } + }, + { + "id":"64b0ad8b-5ab0-4f18-a80a-fdb1fa1b82e6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T03:15:58.112Z", + "completed":"2017-09-26T03:15:58.112Z", + "new_balance":"9724.54", + "value":"-12.79" + } + }, + { + "id":"e7691790-d5e7-4c93-8d34-429f4b6a32a1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T15:20:53.252Z", + "completed":"2017-09-26T15:20:53.252Z", + "new_balance":"9711.53", + "value":"-13.01" + } + }, + { + "id":"e9bfd08f-d8d0-40b1-8397-2d58ea6faf7d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T23:45:49.942Z", + "completed":"2017-09-26T23:45:49.942Z", + "new_balance":"9685.91", + "value":"-25.62" + } + }, + { + "id":"063d95e5-2c05-44e8-85ad-9712c3949cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T08:23:31.801Z", + "completed":"2017-09-27T08:23:31.801Z", + "new_balance":"9671.72", + "value":"-14.19" + } + }, + { + "id":"1a48e5c6-d5a7-446e-b38a-28c6a0a846f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T06:27:51.886Z", + "completed":"2017-09-28T06:27:51.886Z", + "new_balance":"9473.81", + "value":"-197.91" + } + }, + { + "id":"057c2db5-92de-4bf5-99b7-a35e28de9128", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T16:24:36.188Z", + "completed":"2017-09-28T16:24:36.188Z", + "new_balance":"9425.03", + "value":"-48.78" + } + }, + { + "id":"f77d7479-7d53-4a6a-a508-01afde30a1b7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T02:26:03.421Z", + "completed":"2017-10-01T02:26:03.421Z", + "new_balance":"11105.44", + "value":"1680.41" + } + }, + { + "id":"08a4e90f-e65a-4833-9943-135bf1735db7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T10:25:49.120Z", + "completed":"2017-10-01T10:25:49.120Z", + "new_balance":"10697.87", + "value":"-407.57" + } + }, + { + "id":"713230ad-59c4-4a15-af7e-ed0ec6886a0a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T19:48:18.116Z", + "completed":"2017-10-01T19:48:18.116Z", + "new_balance":"11720.29", + "value":"1022.42" + } + }, + { + "id":"b37ddee0-0392-4746-a2e0-05ba2f615f54", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:07:00.423Z", + "completed":"2017-10-03T11:07:00.423Z", + "new_balance":"11702.67", + "value":"-17.62" + } + }, + { + "id":"35f3a37e-4270-484d-b5b2-761508eb42cb", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T17:44:13.750Z", + "completed":"2017-10-03T17:44:13.750Z", + "new_balance":"11655.87", + "value":"-46.80" + } + }, + { + "id":"c2fb4a9b-cc25-4a8b-acfb-96594074126a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T20:00:48.348Z", + "completed":"2017-10-03T20:00:48.348Z", + "new_balance":"11649.49", + "value":"-6.38" + } + }, + { + "id":"09fe0cf0-7b80-4189-8a82-36ec1f037dff", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T13:05:01.253Z", + "completed":"2017-10-05T13:05:01.253Z", + "new_balance":"11638.58", + "value":"-10.91" + } + }, + { + "id":"8fc56a75-62c3-4011-b0c9-754bcb6f58d8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T18:21:26.964Z", + "completed":"2017-10-05T18:21:26.964Z", + "new_balance":"11631.59", + "value":"-6.99" + } + }, + { + "id":"b29e7891-808c-43fd-9951-7cd6e8428946", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T06:51:43.791Z", + "completed":"2017-10-06T06:51:43.791Z", + "new_balance":"11606.66", + "value":"-24.93" + } + }, + { + "id":"92dd2b73-cf06-4dfa-9015-e090677d52d2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T10:05:49.139Z", + "completed":"2017-10-09T10:05:49.139Z", + "new_balance":"11587.50", + "value":"-19.16" + } + }, + { + "id":"14f60b3d-81c2-495d-a792-f5f202aba90a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T08:44:24.503Z", + "completed":"2017-10-10T08:44:24.503Z", + "new_balance":"11572.51", + "value":"-14.99" + } + }, + { + "id":"9bfd4711-594a-47c5-9e96-e2fca83f88e9", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T02:26:17.874Z", + "completed":"2017-10-11T02:26:17.874Z", + "new_balance":"11556.50", + "value":"-16.01" + } + }, + { + "id":"f1e82924-849c-40e6-82ca-d7d624767ad2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T15:51:17.292Z", + "completed":"2017-10-11T15:51:17.292Z", + "new_balance":"11527.34", + "value":"-29.16" + } + }, + { + "id":"4bf079c9-fc17-420d-be24-ee9c5e521b30", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T11:09:05.566Z", + "completed":"2017-10-14T11:09:05.566Z", + "new_balance":"11422.62", + "value":"-104.72" + } + }, + { + "id":"15429941-9258-451e-ae67-756ec2b5cc46", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T14:44:27.075Z", + "completed":"2017-10-14T14:44:27.075Z", + "new_balance":"11377.56", + "value":"-45.06" + } + }, + { + "id":"2277ec8b-2fc7-4ee5-9e1e-1bebb8c81afd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T16:28:07.786Z", + "completed":"2017-10-17T16:28:07.786Z", + "new_balance":"11333.08", + "value":"-44.48" + } + }, + { + "id":"4a830da8-14cc-469e-9d02-1571aec65037", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T14:45:26.534Z", + "completed":"2017-10-18T14:45:26.534Z", + "new_balance":"11323.01", + "value":"-10.07" + } + }, + { + "id":"35a6d9ae-22d7-450a-9984-81018787e2c1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T15:50:29.056Z", + "completed":"2017-10-18T15:50:29.056Z", + "new_balance":"11243.93", + "value":"-79.08" + } + }, + { + "id":"d16a6cb7-4dce-40e9-b9e7-f40f6a5d641d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T21:06:48.707Z", + "completed":"2017-10-18T21:06:48.707Z", + "new_balance":"11238.16", + "value":"-5.77" + } + }, + { + "id":"0b468b53-4e94-4277-95c1-0a14493ea971", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T02:53:04.676Z", + "completed":"2017-10-23T02:53:04.676Z", + "new_balance":"11212.76", + "value":"-25.40" + } + }, + { + "id":"59e97853-b619-4fd9-8502-c4682fd7a18b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T01:43:49.405Z", + "completed":"2017-10-24T01:43:49.405Z", + "new_balance":"11197.93", + "value":"-14.83" + } + }, + { + "id":"2a600041-3a18-418d-b9f2-39d9dd579854", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:46:37.552Z", + "completed":"2017-10-24T15:46:37.552Z", + "new_balance":"11167.12", + "value":"-30.81" + } + }, + { + "id":"bfbfbdb9-2ec1-48cf-a6af-988f8f57bbe7", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T23:25:05.005Z", + "completed":"2017-10-26T23:25:05.005Z", + "new_balance":"11160.13", + "value":"-6.99" + } + }, + { + "id":"1b66d4d5-ea51-4613-88c8-dc376ddd3549", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T05:06:56.218Z", + "completed":"2017-10-30T05:06:56.218Z", + "new_balance":"11111.35", + "value":"-48.78" + } + }, + { + "id":"daceddda-dac7-47c1-9e85-cf12eb2f13f1", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T23:34:36.440Z", + "completed":"2017-10-30T23:34:36.440Z", + "new_balance":"10913.44", + "value":"-197.91" + } + }, + { + "id":"533e2b18-4842-49a0-84ec-f81df091019d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:01:31.607Z", + "completed":"2017-11-02T02:01:31.607Z", + "new_balance":"10906.95", + "value":"-6.49" + } + }, + { + "id":"80543018-5160-4611-9d23-9cec8fda4c41", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T11:17:38.050Z", + "completed":"2017-11-02T11:17:38.050Z", + "new_balance":"10892.44", + "value":"-14.51" + } + }, + { + "id":"4bcc40ea-a04a-4513-a497-9319e982817e", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T13:07:47.073Z", + "completed":"2017-11-02T13:07:47.073Z", + "new_balance":"10728.96", + "value":"-163.48" + } + }, + { + "id":"6c28543a-009c-4cd3-b8ba-5587ccd5b975", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T18:46:01.557Z", + "completed":"2017-11-02T18:46:01.557Z", + "new_balance":"10321.39", + "value":"-407.57" + } + }, + { + "id":"038255d5-ba9f-4d5f-8100-bd3ec56ea0f3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T00:39:25.003Z", + "completed":"2017-11-06T00:39:25.003Z", + "new_balance":"10292.23", + "value":"-29.16" + } + }, + { + "id":"69e93949-c187-4fc6-b92e-9486113aa7fe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T02:30:30.934Z", + "completed":"2017-11-06T02:30:30.934Z", + "new_balance":"10267.43", + "value":"-24.80" + } + }, + { + "id":"2a4c922e-5b12-4f6f-8405-3fcc25cb4606", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T00:26:12.983Z", + "completed":"2017-11-07T00:26:12.983Z", + "new_balance":"10162.71", + "value":"-104.72" + } + }, + { + "id":"5e776a4d-36d9-4038-8ffd-a8cd06b76592", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:57:02.886Z", + "completed":"2017-11-07T04:57:02.886Z", + "new_balance":"10121.36", + "value":"-41.35" + } + }, + { + "id":"84786ff3-bc01-4a5e-b952-1f3f95a1bde3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T13:46:05.306Z", + "completed":"2017-11-09T13:46:05.306Z", + "new_balance":"11143.78", + "value":"1022.42" + } + }, + { + "id":"84e968e3-fe5f-44ce-a7ae-c47d23007cb3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:17:29.268Z", + "completed":"2017-11-14T06:17:29.268Z", + "new_balance":"11093.22", + "value":"-50.56" + } + }, + { + "id":"45b8acf9-f147-43d9-a205-8ec6669d2dd0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T08:35:52.580Z", + "completed":"2017-11-14T08:35:52.580Z", + "new_balance":"11067.42", + "value":"-25.80" + } + }, + { + "id":"c911651e-f90a-4b3d-aff1-65cdf88ed180", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T18:53:55.131Z", + "completed":"2017-11-16T18:53:55.131Z", + "new_balance":"11060.43", + "value":"-6.99" + } + }, + { + "id":"2a279071-e99e-4ecc-9ece-255fffd3c189", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T19:51:00.562Z", + "completed":"2017-11-20T19:51:00.562Z", + "new_balance":"11025.24", + "value":"-35.19" + } + }, + { + "id":"d5bad611-c5d7-401a-9fba-ce3a30f976f6", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T06:34:04.399Z", + "completed":"2017-11-23T06:34:04.399Z", + "new_balance":"11019.47", + "value":"-5.77" + } + }, + { + "id":"ad19ee13-6d4a-4acf-941b-821516d975a8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T11:19:49.814Z", + "completed":"2017-11-23T11:19:49.814Z", + "new_balance":"10990.31", + "value":"-29.16" + } + }, + { + "id":"3f852a54-a3c0-4dac-b675-84db7b6d6535", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T11:34:20.837Z", + "completed":"2017-11-23T11:34:20.837Z", + "new_balance":"10944.80", + "value":"-45.51" + } + }, + { + "id":"6243abc6-4095-4fb9-a3ab-b03cadc84bd8", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T11:21:07.267Z", + "completed":"2017-11-28T11:21:07.267Z", + "new_balance":"10936.40", + "value":"-8.40" + } + }, + { + "id":"03a113c7-2986-422d-8187-f82e43968eb2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T04:12:09.119Z", + "completed":"2017-11-30T04:12:09.119Z", + "new_balance":"10738.49", + "value":"-197.91" + } + }, + { + "id":"3d1f8860-236a-4172-96d6-29834035f2ba", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T20:17:38.943Z", + "completed":"2017-11-30T20:17:38.943Z", + "new_balance":"10689.71", + "value":"-48.78" + } + }, + { + "id":"a966f8a9-ecba-46df-8988-bf16c5823842", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T12:12:55.351Z", + "completed":"2017-12-01T12:12:55.351Z", + "new_balance":"10282.14", + "value":"-407.57" + } + }, + { + "id":"0b721c5b-aa87-4997-947a-7ccc90e4a19a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T12:54:53.783Z", + "completed":"2017-12-01T12:54:53.783Z", + "new_balance":"11304.56", + "value":"1022.42" + } + }, + { + "id":"e7969ef1-1587-4fb8-8a90-43f9dde275e3", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T11:15:41.071Z", + "completed":"2017-12-04T11:15:41.071Z", + "new_balance":"11287.56", + "value":"-17.00" + } + }, + { + "id":"8fc4ea23-b9ac-487d-a8b9-fe4e815b98a0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:12:20.433Z", + "completed":"2017-12-04T21:12:20.433Z", + "new_balance":"11256.11", + "value":"-31.45" + } + }, + { + "id":"7013a426-4e00-4c1f-a442-cfaaa116469b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T03:37:48.718Z", + "completed":"2017-12-11T03:37:48.718Z", + "new_balance":"11210.60", + "value":"-45.51" + } + }, + { + "id":"84142765-843b-4f9e-9533-84364765d395", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T17:35:00.263Z", + "completed":"2017-12-11T17:35:00.263Z", + "new_balance":"11179.79", + "value":"-30.81" + } + }, + { + "id":"ef9fd024-79d7-4bb4-8e81-1ff71ef420dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T00:55:45.344Z", + "completed":"2017-12-14T00:55:45.344Z", + "new_balance":"11172.18", + "value":"-7.61" + } + }, + { + "id":"74bd0dc3-aada-43a7-97f3-9fc2f6686ca0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T03:01:06.779Z", + "completed":"2017-12-14T03:01:06.779Z", + "new_balance":"11166.41", + "value":"-5.77" + } + }, + { + "id":"510e441f-6c90-4a82-8b78-0ba6541122f0", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T10:11:44.957Z", + "completed":"2017-12-14T10:11:44.957Z", + "new_balance":"11120.87", + "value":"-45.54" + } + }, + { + "id":"63a5b2c8-082e-48fc-b346-8111c8c0e17b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T14:23:37.738Z", + "completed":"2017-12-14T14:23:37.738Z", + "new_balance":"11106.81", + "value":"-14.06" + } + }, + { + "id":"a974f401-5b32-4d5c-a724-92d1e665f86c", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T14:34:17.406Z", + "completed":"2017-12-14T14:34:17.406Z", + "new_balance":"11101.04", + "value":"-5.77" + } + }, + { + "id":"b040db06-0e72-49af-883d-42d0b634d242", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T16:06:45.820Z", + "completed":"2017-12-14T16:06:45.820Z", + "new_balance":"11001.92", + "value":"-99.12" + } + }, + { + "id":"0c684ab8-a131-4938-bcff-188fc63a9953", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T19:29:09.920Z", + "completed":"2017-12-14T19:29:09.920Z", + "new_balance":"10994.31", + "value":"-7.61" + } + }, + { + "id":"c4163520-f9e9-4e8c-9c69-bfb1e948f85b", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T20:10:10.181Z", + "completed":"2017-12-14T20:10:10.181Z", + "new_balance":"10912.52", + "value":"-81.79" + } + }, + { + "id":"05f37e15-2171-4b17-bd2c-242c3b0b2109", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T21:20:41.491Z", + "completed":"2017-12-14T21:20:41.491Z", + "new_balance":"10807.80", + "value":"-104.72" + } + }, + { + "id":"73879090-1efb-4b32-bc3a-5a40f8dd3f1a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T01:38:29.188Z", + "completed":"2017-12-15T01:38:29.188Z", + "new_balance":"10799.28", + "value":"-8.52" + } + }, + { + "id":"f4101ea5-6100-4df1-bde2-aedafb35edc4", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T01:48:24.318Z", + "completed":"2017-12-15T01:48:24.318Z", + "new_balance":"10766.94", + "value":"-32.34" + } + }, + { + "id":"19b5626b-10c2-48fa-b7e4-8b74b06a25dd", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T07:59:11.357Z", + "completed":"2017-12-15T07:59:11.357Z", + "new_balance":"10761.17", + "value":"-5.77" + } + }, + { + "id":"1f9f7b32-6edb-40a0-a00b-a8a71f88b24a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T05:42:21.861Z", + "completed":"2017-12-18T05:42:21.861Z", + "new_balance":"10742.01", + "value":"-19.16" + } + }, + { + "id":"de52e0df-6d34-4574-8333-cb0c559e827a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T05:48:17.025Z", + "completed":"2017-12-18T05:48:17.025Z", + "new_balance":"10699.52", + "value":"-42.49" + } + }, + { + "id":"396b7315-e2af-44d6-b76a-028501023914", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T07:10:47.632Z", + "completed":"2017-12-18T07:10:47.632Z", + "new_balance":"10693.75", + "value":"-5.77" + } + }, + { + "id":"4348f5e9-5aca-4910-9dd6-6ea838a4f102", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T14:08:02.337Z", + "completed":"2017-12-18T14:08:02.337Z", + "new_balance":"10592.49", + "value":"-101.26" + } + }, + { + "id":"46a1ebf5-8141-4563-81be-b1756fa823ec", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T18:25:01.902Z", + "completed":"2017-12-18T18:25:01.902Z", + "new_balance":"10586.72", + "value":"-5.77" + } + }, + { + "id":"f45345aa-349c-48d9-b42f-367fb8831352", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T18:46:26.211Z", + "completed":"2017-12-18T18:46:26.211Z", + "new_balance":"10562.42", + "value":"-24.30" + } + }, + { + "id":"eb41a949-0714-4f16-94bc-30d3288dd6df", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T21:48:27.403Z", + "completed":"2017-12-18T21:48:27.403Z", + "new_balance":"10496.24", + "value":"-66.18" + } + }, + { + "id":"f2ffae5a-5893-4af7-be6a-ddc3a5d497e2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T22:13:27.135Z", + "completed":"2017-12-18T22:13:27.135Z", + "new_balance":"10483.87", + "value":"-12.37" + } + }, + { + "id":"260de06c-2035-4a32-a420-ad5a163d3173", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T05:24:41.941Z", + "completed":"2017-12-19T05:24:41.941Z", + "new_balance":"10439.90", + "value":"-43.97" + } + }, + { + "id":"59809057-7a40-4742-873b-d1a97ee6e2aa", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:08:07.444Z", + "completed":"2017-12-19T11:08:07.444Z", + "new_balance":"10397.67", + "value":"-42.23" + } + }, + { + "id":"0e280d89-bab5-400c-b03b-4deb0c223634", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T20:03:05.158Z", + "completed":"2017-12-19T20:03:05.158Z", + "new_balance":"10348.78", + "value":"-48.89" + } + }, + { + "id":"d54ed47c-6cec-4350-90eb-456842af764a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T02:49:02.053Z", + "completed":"2017-12-21T02:49:02.053Z", + "new_balance":"10335.77", + "value":"-13.01" + } + }, + { + "id":"1cd802b9-954d-4fa4-984e-05e80638625a", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T05:10:14.821Z", + "completed":"2017-12-21T05:10:14.821Z", + "new_balance":"10295.45", + "value":"-40.32" + } + }, + { + "id":"1f9f62e1-0a14-4c71-9a81-dc4b717dfd87", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T09:27:17.674Z", + "completed":"2017-12-21T09:27:17.674Z", + "new_balance":"10191.13", + "value":"-104.32" + } + }, + { + "id":"f90c6bd2-c7a3-44e6-801e-36fe23126bc2", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T13:33:00.957Z", + "completed":"2017-12-21T13:33:00.957Z", + "new_balance":"10185.36", + "value":"-5.77" + } + }, + { + "id":"20bf8cde-5f2b-4946-b2f4-520197f46f4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T16:47:16.292Z", + "completed":"2017-12-21T16:47:16.292Z", + "new_balance":"10087.86", + "value":"-97.50" + } + }, + { + "id":"cae27447-b26a-4129-9966-be7acd502e5d", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T05:05:06.322Z", + "completed":"2017-12-24T05:05:06.322Z", + "new_balance":"10073.67", + "value":"-14.19" + } + }, + { + "id":"5f610e6e-4d37-4e96-b531-c2f50b4a2768", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T22:22:52.231Z", + "completed":"2017-12-24T22:22:52.231Z", + "new_balance":"10060.88", + "value":"-12.79" + } + }, + { + "id":"37169def-5934-4d19-ab20-ae0bf1800e53", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T22:58:16.589Z", + "completed":"2017-12-24T22:58:16.589Z", + "new_balance":"10035.26", + "value":"-25.62" + } + }, + { + "id":"e42746e8-6f02-449b-9d5c-aad9e083ecfe", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T06:43:51.158Z", + "completed":"2017-12-30T06:43:51.158Z", + "new_balance":"9837.35", + "value":"-197.91" + } + }, + { + "id":"3b420caa-7629-45f3-9ad5-1fcb6084cf4f", + "this_account":{ + "id":"04eaf04d-656b-486f-96b2-0c17ccbdd860", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T20:20:32.295Z", + "completed":"2017-12-30T20:20:32.295Z", + "new_balance":"9788.57", + "value":"-48.78" + } + }, + { + "id":"cb405dbc-0c8d-4c6f-b4ed-f2a23d828b86", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T00:23:04.438Z", + "completed":"2016-01-01T00:23:04.438Z", + "new_balance":"5326.65", + "value":"-104.72" + } + }, + { + "id":"3f2acc53-c678-4ab3-a7b8-d8b5d2221160", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T06:01:05.450Z", + "completed":"2016-01-01T06:01:05.450Z", + "new_balance":"5279.75", + "value":"-46.90" + } + }, + { + "id":"6fa5207a-3703-485e-84dd-5a313f953d92", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T10:07:01.096Z", + "completed":"2016-01-01T10:07:01.096Z", + "new_balance":"5245.32", + "value":"-34.43" + } + }, + { + "id":"5883a4d0-ade2-47cd-9717-156f31782200", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:17:28.322Z", + "completed":"2016-01-01T19:17:28.322Z", + "new_balance":"5210.89", + "value":"-34.43" + } + }, + { + "id":"4f7d16c6-c804-4f5b-aa9c-1be6733eefd5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T06:40:35.691Z", + "completed":"2016-01-05T06:40:35.691Z", + "new_balance":"5129.68", + "value":"-81.21" + } + }, + { + "id":"d664871f-6036-400e-a6df-438eff534a0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T17:57:53.390Z", + "completed":"2016-01-05T17:57:53.390Z", + "new_balance":"5062.23", + "value":"-67.45" + } + }, + { + "id":"12b91762-e5b4-4b35-b923-d8cacd16675f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T01:58:44.085Z", + "completed":"2016-01-08T01:58:44.085Z", + "new_balance":"5051.32", + "value":"-10.91" + } + }, + { + "id":"f6a0d420-7783-4903-9b68-275c69128f7d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T14:12:19.044Z", + "completed":"2016-01-10T14:12:19.044Z", + "new_balance":"5004.86", + "value":"-46.46" + } + }, + { + "id":"846f4aff-d9df-4d0b-a399-f3042c526f07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T07:27:16.562Z", + "completed":"2016-01-11T07:27:16.562Z", + "new_balance":"4948.22", + "value":"-56.64" + } + }, + { + "id":"28970c20-19e3-495f-9b13-2575513f2996", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T23:10:21.010Z", + "completed":"2016-01-12T23:10:21.010Z", + "new_balance":"4913.79", + "value":"-34.43" + } + }, + { + "id":"d168c5c3-a55a-45fc-96f1-b4772e18557f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T05:11:39.823Z", + "completed":"2016-01-13T05:11:39.823Z", + "new_balance":"4908.14", + "value":"-5.65" + } + }, + { + "id":"da5efa70-0c03-4edd-8db5-d7396655b431", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T13:29:50.938Z", + "completed":"2016-01-13T13:29:50.938Z", + "new_balance":"4904.55", + "value":"-3.59" + } + }, + { + "id":"9703778f-10d2-450f-baed-09ba485c5ca8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T18:16:25.245Z", + "completed":"2016-01-16T18:16:25.245Z", + "new_balance":"4821.46", + "value":"-83.09" + } + }, + { + "id":"8c00c7d5-1cdf-4c00-bb7f-394d381c199d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T00:01:41.495Z", + "completed":"2016-01-19T00:01:41.495Z", + "new_balance":"4740.02", + "value":"-81.44" + } + }, + { + "id":"b9e23f7a-699c-4983-a7e4-fcf14783742a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T18:40:14.791Z", + "completed":"2016-01-19T18:40:14.791Z", + "new_balance":"4658.81", + "value":"-81.21" + } + }, + { + "id":"1d21f5de-ac19-4c74-9de7-f274e4a8b3de", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T21:08:35.590Z", + "completed":"2016-01-24T21:08:35.590Z", + "new_balance":"4631.36", + "value":"-27.45" + } + }, + { + "id":"83c3d723-3b11-4ec6-ae19-1180fd4540c0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T08:26:03.722Z", + "completed":"2016-01-27T08:26:03.722Z", + "new_balance":"4603.38", + "value":"-27.98" + } + }, + { + "id":"004cbf5a-1447-4ac2-bffa-3f04eff887f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T12:46:32.875Z", + "completed":"2016-01-27T12:46:32.875Z", + "new_balance":"6953.59", + "value":"2350.21" + } + }, + { + "id":"6692bebc-e1d7-4da5-802e-ab8d77dc9967", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T07:29:34.580Z", + "completed":"2016-01-31T07:29:34.580Z", + "new_balance":"6636.38", + "value":"-317.21" + } + }, + { + "id":"ec267b39-1552-4c05-b59f-777767248095", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T00:38:35.328Z", + "completed":"2016-02-01T00:38:35.328Z", + "new_balance":"6531.66", + "value":"-104.72" + } + }, + { + "id":"c33dcde0-d7f7-4b6c-a1d6-4892684f63bc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T09:07:28.795Z", + "completed":"2016-02-01T09:07:28.795Z", + "new_balance":"6484.76", + "value":"-46.90" + } + }, + { + "id":"d1d571f8-e660-4780-8740-24ae06e2b652", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T20:27:04.948Z", + "completed":"2016-02-01T20:27:04.948Z", + "new_balance":"6450.33", + "value":"-34.43" + } + }, + { + "id":"c7980d36-b9cb-4f6d-8122-4817f5f297bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T21:02:21.923Z", + "completed":"2016-02-01T21:02:21.923Z", + "new_balance":"6415.90", + "value":"-34.43" + } + }, + { + "id":"d0e714f3-af42-4ee9-91ce-8d56d8c175da", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T20:54:15.599Z", + "completed":"2016-02-03T20:54:15.599Z", + "new_balance":"6409.18", + "value":"-6.72" + } + }, + { + "id":"01700398-b850-46f5-97c4-d69af7cb0cac", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T05:24:59.597Z", + "completed":"2016-02-04T05:24:59.597Z", + "new_balance":"6327.97", + "value":"-81.21" + } + }, + { + "id":"fdb60910-7c82-4ebc-ab75-b167d58ca1b8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T01:15:36.291Z", + "completed":"2016-02-06T01:15:36.291Z", + "new_balance":"6246.80", + "value":"-81.17" + } + }, + { + "id":"f9201705-1f4e-4ad2-bc3e-97d10c4e1f36", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T19:36:53.824Z", + "completed":"2016-02-06T19:36:53.824Z", + "new_balance":"6139.99", + "value":"-106.81" + } + }, + { + "id":"c790bb31-0156-4e24-a83d-af08d06cdeaa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T05:22:40.347Z", + "completed":"2016-02-07T05:22:40.347Z", + "new_balance":"6111.96", + "value":"-28.03" + } + }, + { + "id":"6ebcf7a6-08ed-40bb-a614-b3144a2910c0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T15:22:32.163Z", + "completed":"2016-02-08T15:22:32.163Z", + "new_balance":"6096.67", + "value":"-15.29" + } + }, + { + "id":"e369b89c-6f19-49f0-b55b-e5bc02f59ade", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:09:38.374Z", + "completed":"2016-02-09T00:09:38.374Z", + "new_balance":"6053.72", + "value":"-42.95" + } + }, + { + "id":"0cd0892a-4b15-412b-929b-10844d37ddfb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T07:39:22.517Z", + "completed":"2016-02-11T07:39:22.517Z", + "new_balance":"6026.99", + "value":"-26.73" + } + }, + { + "id":"d7b4e277-81c6-4a06-955b-117a1e7d64a9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T18:47:13.116Z", + "completed":"2016-02-13T18:47:13.116Z", + "new_balance":"5985.45", + "value":"-41.54" + } + }, + { + "id":"eaa1dae9-f85b-4e3a-bc09-6232a9e29974", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T20:51:46.275Z", + "completed":"2016-02-17T20:51:46.275Z", + "new_balance":"5978.46", + "value":"-6.99" + } + }, + { + "id":"b254fc57-edcd-4b7f-9585-6a1349bf3184", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T19:50:34.654Z", + "completed":"2016-02-19T19:50:34.654Z", + "new_balance":"5928.52", + "value":"-49.94" + } + }, + { + "id":"d7b60969-1642-4c0a-9831-0b29ddacbe5e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T23:10:49.586Z", + "completed":"2016-02-21T23:10:49.586Z", + "new_balance":"5847.31", + "value":"-81.21" + } + }, + { + "id":"129eb8bb-c771-44dc-a4e9-bc6f02541790", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T12:13:52.977Z", + "completed":"2016-02-24T12:13:52.977Z", + "new_balance":"5819.33", + "value":"-27.98" + } + }, + { + "id":"965a7608-861d-43bb-93bd-810e0a99bb08", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T19:36:12.742Z", + "completed":"2016-02-26T19:36:12.742Z", + "new_balance":"8169.54", + "value":"2350.21" + } + }, + { + "id":"77d2877d-6d1b-41a1-acb7-bec608abd438", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T01:21:29.650Z", + "completed":"2016-03-01T01:21:29.650Z", + "new_balance":"8135.11", + "value":"-34.43" + } + }, + { + "id":"ca4dd8bb-e550-4f1a-8987-6d71bca2c3fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T02:48:54.258Z", + "completed":"2016-03-01T02:48:54.258Z", + "new_balance":"8088.21", + "value":"-46.90" + } + }, + { + "id":"7a6b5a21-f866-4258-86b0-71c1e8b64001", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T04:16:24.254Z", + "completed":"2016-03-01T04:16:24.254Z", + "new_balance":"8053.78", + "value":"-34.43" + } + }, + { + "id":"cabec60a-b5ab-4907-857c-78d07971aac8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T12:00:16.417Z", + "completed":"2016-03-01T12:00:16.417Z", + "new_balance":"7949.06", + "value":"-104.72" + } + }, + { + "id":"c3901431-38a1-4b88-bdaa-c076a11bf544", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T10:11:02.778Z", + "completed":"2016-03-09T10:11:02.778Z", + "new_balance":"7885.49", + "value":"-63.57" + } + }, + { + "id":"7644a408-5e9f-489e-8ab6-8b9cffb52837", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T18:43:25.079Z", + "completed":"2016-03-09T18:43:25.079Z", + "new_balance":"7824.12", + "value":"-61.37" + } + }, + { + "id":"bceb16bd-93ce-4d79-84e1-3e8f56f237aa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T09:48:07.514Z", + "completed":"2016-03-17T09:48:07.514Z", + "new_balance":"7735.63", + "value":"-88.49" + } + }, + { + "id":"5b14d15f-40f3-4b0a-8e73-bc7597387cbf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T00:43:11.081Z", + "completed":"2016-03-18T00:43:11.081Z", + "new_balance":"7728.86", + "value":"-6.77" + } + }, + { + "id":"4cce9669-b298-409b-9dd6-735a36a4cf41", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T12:44:13.350Z", + "completed":"2016-03-18T12:44:13.350Z", + "new_balance":"7689.22", + "value":"-39.64" + } + }, + { + "id":"dc18db07-ba98-4662-8734-7c1afaa767ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T13:22:47.156Z", + "completed":"2016-03-18T13:22:47.156Z", + "new_balance":"7643.75", + "value":"-45.47" + } + }, + { + "id":"1c2698d7-6518-4843-9de6-2014b525243b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T19:04:55.945Z", + "completed":"2016-03-18T19:04:55.945Z", + "new_balance":"7561.96", + "value":"-81.79" + } + }, + { + "id":"1f5f6d9d-4279-4799-b0c7-472d257a607e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T17:43:07.753Z", + "completed":"2016-03-22T17:43:07.753Z", + "new_balance":"7457.77", + "value":"-104.19" + } + }, + { + "id":"9ecfd09f-eff3-4092-b349-d78985e62ef9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T05:04:45.506Z", + "completed":"2016-03-29T05:04:45.506Z", + "new_balance":"9807.98", + "value":"2350.21" + } + }, + { + "id":"9de2771d-1a54-4a7d-a623-e5db99f2da5d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T18:01:01.089Z", + "completed":"2016-03-29T18:01:01.089Z", + "new_balance":"9780.00", + "value":"-27.98" + } + }, + { + "id":"ae32b495-ef6f-4e67-b25d-f413fbc9934f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T04:24:50.350Z", + "completed":"2016-03-31T04:24:50.350Z", + "new_balance":"9462.79", + "value":"-317.21" + } + }, + { + "id":"91aa6b3d-80dd-4d9b-adb7-3d037cd961f6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T04:39:48.044Z", + "completed":"2016-04-01T04:39:48.044Z", + "new_balance":"9358.07", + "value":"-104.72" + } + }, + { + "id":"88258922-c7df-4c18-a421-1bf0826d26e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T08:09:00.962Z", + "completed":"2016-04-01T08:09:00.962Z", + "new_balance":"9311.17", + "value":"-46.90" + } + }, + { + "id":"03aa7182-29f4-4565-bc25-ee39a7167556", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T13:43:37.991Z", + "completed":"2016-04-01T13:43:37.991Z", + "new_balance":"9276.74", + "value":"-34.43" + } + }, + { + "id":"f4e29594-9c8a-45f0-99f5-ff1341162eda", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:58:04.311Z", + "completed":"2016-04-01T21:58:04.311Z", + "new_balance":"9242.31", + "value":"-34.43" + } + }, + { + "id":"1664e5fc-1300-4376-8474-c9605294dd2b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T16:30:49.203Z", + "completed":"2016-04-02T16:30:49.203Z", + "new_balance":"9147.98", + "value":"-94.33" + } + }, + { + "id":"a738e9bc-f5c7-4d7f-889a-5befdc80a9a9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T03:16:59.578Z", + "completed":"2016-04-05T03:16:59.578Z", + "new_balance":"9093.14", + "value":"-54.84" + } + }, + { + "id":"c6757724-375e-4b6c-a4c7-d3da0d49dac6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T04:01:41.199Z", + "completed":"2016-04-05T04:01:41.199Z", + "new_balance":"9088.50", + "value":"-4.64" + } + }, + { + "id":"70c14433-272f-4123-a600-66777d569ed1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T04:11:11.494Z", + "completed":"2016-04-05T04:11:11.494Z", + "new_balance":"9047.07", + "value":"-41.43" + } + }, + { + "id":"854bab0c-5047-4ee5-a2fa-71203389dc6c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T08:19:38.025Z", + "completed":"2016-04-05T08:19:38.025Z", + "new_balance":"9012.64", + "value":"-34.43" + } + }, + { + "id":"46c0d904-b49e-4217-a6e1-c52411f6aaf3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T11:40:25.371Z", + "completed":"2016-04-05T11:40:25.371Z", + "new_balance":"9006.06", + "value":"-6.58" + } + }, + { + "id":"bef034fb-7487-46b9-b901-fb148a7bf3b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T14:21:09.161Z", + "completed":"2016-04-05T14:21:09.161Z", + "new_balance":"8994.13", + "value":"-11.93" + } + }, + { + "id":"5be6b6f1-a333-4d6f-a295-bed162cf9684", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T17:33:33.576Z", + "completed":"2016-04-05T17:33:33.576Z", + "new_balance":"8912.92", + "value":"-81.21" + } + }, + { + "id":"bae59b2c-1d3f-4779-8838-22a7b3490828", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T06:56:11.355Z", + "completed":"2016-04-08T06:56:11.355Z", + "new_balance":"8815.00", + "value":"-97.92" + } + }, + { + "id":"3206fc3b-62fa-4bdd-8dc5-174d00d58a81", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T01:02:38.969Z", + "completed":"2016-04-10T01:02:38.969Z", + "new_balance":"8758.87", + "value":"-56.13" + } + }, + { + "id":"ac8172a4-0fff-4898-9060-86cf11c2c69d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T01:42:54.552Z", + "completed":"2016-04-11T01:42:54.552Z", + "new_balance":"8677.66", + "value":"-81.21" + } + }, + { + "id":"c210170a-e082-44c5-97f1-489eed8753be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T06:06:46.792Z", + "completed":"2016-04-11T06:06:46.792Z", + "new_balance":"8650.21", + "value":"-27.45" + } + }, + { + "id":"5e6efdf0-7cd6-4938-ac2e-c81ad4a0f6be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:26:09.685Z", + "completed":"2016-04-13T06:26:09.685Z", + "new_balance":"8622.23", + "value":"-27.98" + } + }, + { + "id":"9f880ffe-587f-430d-91c6-ed6c15ec51fd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T13:25:42.595Z", + "completed":"2016-04-18T13:25:42.595Z", + "new_balance":"10972.44", + "value":"2350.21" + } + }, + { + "id":"ef993e8b-9345-4423-9c14-26f1332db903", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:31:10.636Z", + "completed":"2016-04-25T19:31:10.636Z", + "new_balance":"10655.23", + "value":"-317.21" + } + }, + { + "id":"99eebbc6-4794-4806-9d25-d13207051303", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T03:33:27.267Z", + "completed":"2016-05-02T03:33:27.267Z", + "new_balance":"10620.80", + "value":"-34.43" + } + }, + { + "id":"40bd2d0f-8564-4d49-be15-ef4954f36e06", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T12:48:13.370Z", + "completed":"2016-05-02T12:48:13.370Z", + "new_balance":"10573.90", + "value":"-46.90" + } + }, + { + "id":"094c1997-009a-48c2-9b31-aa0a9e59c838", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T14:58:46.626Z", + "completed":"2016-05-02T14:58:46.626Z", + "new_balance":"10469.18", + "value":"-104.72" + } + }, + { + "id":"24ad1e0b-2dc0-4a0a-93f7-14db4c2282c3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T16:01:39.282Z", + "completed":"2016-05-02T16:01:39.282Z", + "new_balance":"10434.75", + "value":"-34.43" + } + }, + { + "id":"742ddce0-65e2-45c0-8100-1f2e352dbc1c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T03:13:33.049Z", + "completed":"2016-05-04T03:13:33.049Z", + "new_balance":"10428.17", + "value":"-6.58" + } + }, + { + "id":"3f8dbdf5-dba6-4ab1-b70d-98bfa8029e3c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T19:06:04.976Z", + "completed":"2016-05-04T19:06:04.976Z", + "new_balance":"10346.96", + "value":"-81.21" + } + }, + { + "id":"1817dcd3-c829-499b-a1fb-88fd10dec123", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T01:19:13.109Z", + "completed":"2016-05-06T01:19:13.109Z", + "new_balance":"10266.75", + "value":"-80.21" + } + }, + { + "id":"53f00df2-38b1-49ae-830b-c71d54aaf41d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T16:28:00.211Z", + "completed":"2016-05-07T16:28:00.211Z", + "new_balance":"10232.24", + "value":"-34.51" + } + }, + { + "id":"8fe8a2ec-d103-49e6-b3be-47a265fb8ea0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T20:38:15.590Z", + "completed":"2016-05-07T20:38:15.590Z", + "new_balance":"10137.91", + "value":"-94.33" + } + }, + { + "id":"61144fcb-4d39-4630-9b3a-93cea69c9e41", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T14:55:33.842Z", + "completed":"2016-05-09T14:55:33.842Z", + "new_balance":"10094.96", + "value":"-42.95" + } + }, + { + "id":"42cefc1a-8e47-4505-b236-bb7bf1ae1747", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T17:43:31.561Z", + "completed":"2016-05-09T17:43:31.561Z", + "new_balance":"10083.03", + "value":"-11.93" + } + }, + { + "id":"f2ed61d9-7d82-4c74-841e-36aad2cde03b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T00:00:57.869Z", + "completed":"2016-05-13T00:00:57.869Z", + "new_balance":"10054.84", + "value":"-28.19" + } + }, + { + "id":"3aaf2b50-1491-45a3-8681-c3b038209afd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T07:23:40.301Z", + "completed":"2016-05-13T07:23:40.301Z", + "new_balance":"10048.26", + "value":"-6.58" + } + }, + { + "id":"20c77ff0-73fb-4a48-b5a5-9311929d8782", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T23:53:14.466Z", + "completed":"2016-05-13T23:53:14.466Z", + "new_balance":"10013.75", + "value":"-34.51" + } + }, + { + "id":"8af8e8e2-44dd-4d97-ada2-0622e589783c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T04:49:09.137Z", + "completed":"2016-05-14T04:49:09.137Z", + "new_balance":"9948.52", + "value":"-65.23" + } + }, + { + "id":"73f40eee-a3b6-4b18-ac04-68adb34ebe20", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T11:08:33.665Z", + "completed":"2016-05-14T11:08:33.665Z", + "new_balance":"9867.31", + "value":"-81.21" + } + }, + { + "id":"fd7ac8d4-7611-405f-baf6-7d48ee02bad7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T07:50:58.249Z", + "completed":"2016-05-15T07:50:58.249Z", + "new_balance":"9839.33", + "value":"-27.98" + } + }, + { + "id":"bd871cbd-ebe6-4341-93b1-2d8aa0316848", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T00:36:25.594Z", + "completed":"2016-05-30T00:36:25.594Z", + "new_balance":"12189.54", + "value":"2350.21" + } + }, + { + "id":"6569f661-8085-4b7e-abbb-a61faf38e560", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T13:27:26.584Z", + "completed":"2016-05-30T13:27:26.584Z", + "new_balance":"11872.33", + "value":"-317.21" + } + }, + { + "id":"67d332d3-0c84-4cd6-9876-5d3e4a9fb1d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T12:44:27.349Z", + "completed":"2016-06-01T12:44:27.349Z", + "new_balance":"11837.90", + "value":"-34.43" + } + }, + { + "id":"5ef5a08a-da4d-4c09-b919-3df2283bded6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T12:59:49.372Z", + "completed":"2016-06-01T12:59:49.372Z", + "new_balance":"11733.18", + "value":"-104.72" + } + }, + { + "id":"21c3e30d-4551-4bc6-b483-f06c4a4e3241", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:49:31.478Z", + "completed":"2016-06-01T16:49:31.478Z", + "new_balance":"11698.75", + "value":"-34.43" + } + }, + { + "id":"48de9d4d-bdcc-4c17-86d0-0d8ded95f7dc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T17:27:35.917Z", + "completed":"2016-06-01T17:27:35.917Z", + "new_balance":"11651.85", + "value":"-46.90" + } + }, + { + "id":"ca1d07b9-0ed6-47f1-ba93-08bfd6bd7398", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T06:27:13.322Z", + "completed":"2016-06-04T06:27:13.322Z", + "new_balance":"11588.28", + "value":"-63.57" + } + }, + { + "id":"7b9712b7-c15a-4ffc-aa2c-be0bc956bbc2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:06:36.424Z", + "completed":"2016-06-04T14:06:36.424Z", + "new_balance":"11526.91", + "value":"-61.37" + } + }, + { + "id":"a29d9dc3-3cea-4833-9847-f0e8ef16fd10", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T01:07:16.985Z", + "completed":"2016-06-11T01:07:16.985Z", + "new_balance":"11438.42", + "value":"-88.49" + } + }, + { + "id":"62d06d59-d004-4273-afd9-d57cf5283c4b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T13:17:50.076Z", + "completed":"2016-06-11T13:17:50.076Z", + "new_balance":"11392.95", + "value":"-45.47" + } + }, + { + "id":"fc7aec62-b9dd-45a4-9435-ae2eed72bf62", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T20:54:12.839Z", + "completed":"2016-06-11T20:54:12.839Z", + "new_balance":"11311.16", + "value":"-81.79" + } + }, + { + "id":"eaea77b7-255d-412b-9a4d-d4bba2f2947b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T11:30:00.277Z", + "completed":"2016-06-12T11:30:00.277Z", + "new_balance":"11271.52", + "value":"-39.64" + } + }, + { + "id":"8649380b-ff26-4643-81ab-a243230d4597", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T13:55:19.908Z", + "completed":"2016-06-12T13:55:19.908Z", + "new_balance":"11264.75", + "value":"-6.77" + } + }, + { + "id":"8e9f97e2-60bf-4f83-bd1b-2c90412d20e2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T05:25:55.775Z", + "completed":"2016-06-16T05:25:55.775Z", + "new_balance":"11160.56", + "value":"-104.19" + } + }, + { + "id":"28d91126-64bc-475c-8427-4ddc95ac126a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T19:52:57.746Z", + "completed":"2016-06-29T19:52:57.746Z", + "new_balance":"11132.58", + "value":"-27.98" + } + }, + { + "id":"9a2aa559-c2a9-4132-8415-a43908cb0230", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T15:52:59.182Z", + "completed":"2016-06-30T15:52:59.182Z", + "new_balance":"10815.37", + "value":"-317.21" + } + }, + { + "id":"7133143f-5253-4c16-bce8-fdc731b85a16", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T18:04:14.250Z", + "completed":"2016-06-30T18:04:14.250Z", + "new_balance":"13165.58", + "value":"2350.21" + } + }, + { + "id":"27ec5a2e-36d5-463f-b2b0-bcf920ced937", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:02:05.716Z", + "completed":"2016-07-01T02:02:05.716Z", + "new_balance":"13118.68", + "value":"-46.90" + } + }, + { + "id":"9efbd9c1-d09d-422f-b095-e67c2b730e0c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T13:19:49.136Z", + "completed":"2016-07-01T13:19:49.136Z", + "new_balance":"13013.96", + "value":"-104.72" + } + }, + { + "id":"368a3cfc-cf80-429b-a085-ca3c4d985fc3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T13:34:20.692Z", + "completed":"2016-07-01T13:34:20.692Z", + "new_balance":"12979.53", + "value":"-34.43" + } + }, + { + "id":"fa1eede3-6141-4d4c-92b7-c0a76a213fa0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T20:52:43.469Z", + "completed":"2016-07-01T20:52:43.469Z", + "new_balance":"12945.10", + "value":"-34.43" + } + }, + { + "id":"79fff2ea-a47a-42e8-85e0-11623ccdc83a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T15:23:24.188Z", + "completed":"2016-07-05T15:23:24.188Z", + "new_balance":"12863.89", + "value":"-81.21" + } + }, + { + "id":"e47d353b-3a3c-4d2a-9693-0a2104c4cd6a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T23:03:16.576Z", + "completed":"2016-07-05T23:03:16.576Z", + "new_balance":"12796.44", + "value":"-67.45" + } + }, + { + "id":"18b04500-ef0f-4f52-bede-9fa4034b8367", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T12:39:08.123Z", + "completed":"2016-07-08T12:39:08.123Z", + "new_balance":"12785.53", + "value":"-10.91" + } + }, + { + "id":"89fa7185-514e-4e6b-b1df-8f8bbc34f676", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T13:25:47.249Z", + "completed":"2016-07-10T13:25:47.249Z", + "new_balance":"12739.07", + "value":"-46.46" + } + }, + { + "id":"169b70e9-5533-44ef-bbe8-a0378843cac6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T13:11:02.014Z", + "completed":"2016-07-12T13:11:02.014Z", + "new_balance":"12704.64", + "value":"-34.43" + } + }, + { + "id":"558fa186-e16c-42c2-95ab-a8db57bd03f2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T17:18:22.709Z", + "completed":"2016-07-12T17:18:22.709Z", + "new_balance":"12648.00", + "value":"-56.64" + } + }, + { + "id":"adf1cefe-150d-4045-a4d0-12174d0b9194", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T21:51:11.942Z", + "completed":"2016-07-13T21:51:11.942Z", + "new_balance":"12644.41", + "value":"-3.59" + } + }, + { + "id":"bdbebaea-d0e5-4a4b-9bea-efd757cc67a0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T22:12:22.807Z", + "completed":"2016-07-13T22:12:22.807Z", + "new_balance":"12638.76", + "value":"-5.65" + } + }, + { + "id":"17d6d8f7-81c5-49fc-addf-5d5f5a08f4b2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T18:30:19.436Z", + "completed":"2016-07-18T18:30:19.436Z", + "new_balance":"12555.67", + "value":"-83.09" + } + }, + { + "id":"8aef94bd-a44f-4db0-b732-4a1fa7b04364", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T02:17:22.692Z", + "completed":"2016-07-20T02:17:22.692Z", + "new_balance":"12474.46", + "value":"-81.21" + } + }, + { + "id":"a4b0cf80-98ff-479c-b588-5f59123af7c5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T12:51:45.746Z", + "completed":"2016-07-20T12:51:45.746Z", + "new_balance":"12393.02", + "value":"-81.44" + } + }, + { + "id":"37f2bdfd-ce5e-4de5-9065-dec198a52fb4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T06:29:28.612Z", + "completed":"2016-07-24T06:29:28.612Z", + "new_balance":"12365.57", + "value":"-27.45" + } + }, + { + "id":"a91b7774-9143-4893-b67d-6efedf63ddb4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T05:38:44.802Z", + "completed":"2016-07-29T05:38:44.802Z", + "new_balance":"14715.78", + "value":"2350.21" + } + }, + { + "id":"1bdffa29-7459-4d9a-bfed-8c5fef5d50ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T18:25:55.457Z", + "completed":"2016-07-29T18:25:55.457Z", + "new_balance":"14687.80", + "value":"-27.98" + } + }, + { + "id":"7ce0522c-94b9-4aa4-b790-60fc7a4016ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T03:57:39.975Z", + "completed":"2016-07-30T03:57:39.975Z", + "new_balance":"14370.59", + "value":"-317.21" + } + }, + { + "id":"16d19f3d-8187-4b03-9952-da80207e5f76", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T02:26:07.098Z", + "completed":"2016-08-01T02:26:07.098Z", + "new_balance":"14336.16", + "value":"-34.43" + } + }, + { + "id":"131bc6e7-95e1-4769-8734-31cbf6710468", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T05:05:32.013Z", + "completed":"2016-08-01T05:05:32.013Z", + "new_balance":"14301.73", + "value":"-34.43" + } + }, + { + "id":"e86a3347-536e-4980-bd96-433d51b78b17", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T13:39:52.174Z", + "completed":"2016-08-01T13:39:52.174Z", + "new_balance":"14254.83", + "value":"-46.90" + } + }, + { + "id":"99d82888-dfe4-4e20-8261-514ab1663d00", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T21:03:12.434Z", + "completed":"2016-08-01T21:03:12.434Z", + "new_balance":"14150.11", + "value":"-104.72" + } + }, + { + "id":"71023cf7-c620-4b6f-986b-cb6934b5a046", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T14:03:01.926Z", + "completed":"2016-08-03T14:03:01.926Z", + "new_balance":"14143.39", + "value":"-6.72" + } + }, + { + "id":"513998d7-c9e1-48b4-8281-35933c9ec093", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T12:44:29.764Z", + "completed":"2016-08-04T12:44:29.764Z", + "new_balance":"14062.18", + "value":"-81.21" + } + }, + { + "id":"64a9d435-ef2b-4019-83cd-4c8b92fd0f02", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T05:10:57.580Z", + "completed":"2016-08-08T05:10:57.580Z", + "new_balance":"14046.89", + "value":"-15.29" + } + }, + { + "id":"d628eec0-2a0d-4efb-a816-2f5d82797279", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T13:32:20.416Z", + "completed":"2016-08-08T13:32:20.416Z", + "new_balance":"13940.08", + "value":"-106.81" + } + }, + { + "id":"771c69e4-216d-4b85-ae73-943edbebd28b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:02:56.737Z", + "completed":"2016-08-08T22:02:56.737Z", + "new_balance":"13858.91", + "value":"-81.17" + } + }, + { + "id":"284e56af-9063-46e7-a853-1e8d93802ed3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:41:46.003Z", + "completed":"2016-08-08T22:41:46.003Z", + "new_balance":"13830.88", + "value":"-28.03" + } + }, + { + "id":"66aa4c58-f38a-44bb-b8ea-5c4f66e1d2bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:31:27.351Z", + "completed":"2016-08-09T16:31:27.351Z", + "new_balance":"13787.93", + "value":"-42.95" + } + }, + { + "id":"2f9e2011-2120-4306-905c-b52633d66ca0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T23:16:33.331Z", + "completed":"2016-08-14T23:16:33.331Z", + "new_balance":"13761.20", + "value":"-26.73" + } + }, + { + "id":"ac15f677-dd2a-45b2-9cb0-89c75fdb94a6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T10:17:21.464Z", + "completed":"2016-08-15T10:17:21.464Z", + "new_balance":"13719.66", + "value":"-41.54" + } + }, + { + "id":"4a81caa1-cf93-45db-9ea0-fb08a2ae290c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T18:45:50.083Z", + "completed":"2016-08-19T18:45:50.083Z", + "new_balance":"13712.67", + "value":"-6.99" + } + }, + { + "id":"5177b58a-f23b-42f3-a383-03a49b58d62a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T03:23:19.517Z", + "completed":"2016-08-22T03:23:19.517Z", + "new_balance":"13662.73", + "value":"-49.94" + } + }, + { + "id":"f18ea616-4013-4982-9f53-e66cf4ac6522", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T07:31:53.881Z", + "completed":"2016-08-26T07:31:53.881Z", + "new_balance":"13581.52", + "value":"-81.21" + } + }, + { + "id":"c814d7ec-37ac-471c-be3f-37428aac795f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T06:38:43.835Z", + "completed":"2016-08-28T06:38:43.835Z", + "new_balance":"13264.31", + "value":"-317.21" + } + }, + { + "id":"d69697c3-a548-4edd-bb47-95237057a30b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T08:31:51.058Z", + "completed":"2016-08-29T08:31:51.058Z", + "new_balance":"15614.52", + "value":"2350.21" + } + }, + { + "id":"9b59bcc1-9d96-4ead-a453-482318374819", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T10:05:00.034Z", + "completed":"2016-08-29T10:05:00.034Z", + "new_balance":"15586.54", + "value":"-27.98" + } + }, + { + "id":"b28f90aa-3b6a-477d-a342-94b8e9c1812c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T10:39:18.783Z", + "completed":"2016-08-30T10:39:18.783Z", + "new_balance":"15269.33", + "value":"-317.21" + } + }, + { + "id":"815e2d25-239d-4c00-8827-76c64bedfee3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T04:01:56.589Z", + "completed":"2016-09-01T04:01:56.589Z", + "new_balance":"15222.43", + "value":"-46.90" + } + }, + { + "id":"54e69357-c63d-4815-b453-948020adbe97", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T05:07:25.233Z", + "completed":"2016-09-01T05:07:25.233Z", + "new_balance":"15188.00", + "value":"-34.43" + } + }, + { + "id":"7029baad-2506-4d3b-b89d-75251e123dcf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T06:30:44.592Z", + "completed":"2016-09-01T06:30:44.592Z", + "new_balance":"15083.28", + "value":"-104.72" + } + }, + { + "id":"885a7458-fd03-4b9e-9724-779e9b9e8b6c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:10:32.418Z", + "completed":"2016-09-01T09:10:32.418Z", + "new_balance":"15048.85", + "value":"-34.43" + } + }, + { + "id":"ebb9acbe-1400-48bb-9f14-0a42efab83af", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T06:37:21.870Z", + "completed":"2016-09-09T06:37:21.870Z", + "new_balance":"14985.28", + "value":"-63.57" + } + }, + { + "id":"2e8e3124-98b4-4eb2-acba-8f01162dac32", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T16:36:57.061Z", + "completed":"2016-09-09T16:36:57.061Z", + "new_balance":"14923.91", + "value":"-61.37" + } + }, + { + "id":"4b71bb00-2046-4de4-b4e2-141af873c1f7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T05:49:25.144Z", + "completed":"2016-09-17T05:49:25.144Z", + "new_balance":"14835.42", + "value":"-88.49" + } + }, + { + "id":"b3c102f5-c2a4-4d0d-a8ca-c049f6826643", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T04:04:33.095Z", + "completed":"2016-09-18T04:04:33.095Z", + "new_balance":"14795.78", + "value":"-39.64" + } + }, + { + "id":"a12eb449-2cb5-4155-baba-eecea6bd1720", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T12:41:02.397Z", + "completed":"2016-09-18T12:41:02.397Z", + "new_balance":"14750.31", + "value":"-45.47" + } + }, + { + "id":"05bc20ca-a421-4290-b396-d312c0f7cd02", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T13:39:57.327Z", + "completed":"2016-09-18T13:39:57.327Z", + "new_balance":"14668.52", + "value":"-81.79" + } + }, + { + "id":"5b0fc6db-f367-4736-b94e-cf86ccdf6fba", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T19:11:40.722Z", + "completed":"2016-09-18T19:11:40.722Z", + "new_balance":"14661.75", + "value":"-6.77" + } + }, + { + "id":"9696cc80-9946-4b9e-8c7f-e8d1166e3404", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T08:45:13.846Z", + "completed":"2016-09-22T08:45:13.846Z", + "new_balance":"14557.56", + "value":"-104.19" + } + }, + { + "id":"0e665e66-5325-4c3c-8b47-9bc34f7b8952", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T13:13:16.547Z", + "completed":"2016-09-29T13:13:16.547Z", + "new_balance":"16907.77", + "value":"2350.21" + } + }, + { + "id":"4892c2db-7c91-4921-85fb-4278fb86aed9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T20:48:55.055Z", + "completed":"2016-09-29T20:48:55.055Z", + "new_balance":"16879.79", + "value":"-27.98" + } + }, + { + "id":"5d0c457e-0932-448d-b202-384ccfa329b4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T17:57:50.338Z", + "completed":"2016-09-30T17:57:50.338Z", + "new_balance":"16562.58", + "value":"-317.21" + } + }, + { + "id":"0822157b-09b7-4687-be07-80a388a1981b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T03:26:14.250Z", + "completed":"2016-10-01T03:26:14.250Z", + "new_balance":"16528.15", + "value":"-34.43" + } + }, + { + "id":"0adb1f9a-42a0-4c9b-a8e1-188e6009bc8e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T05:31:30.335Z", + "completed":"2016-10-01T05:31:30.335Z", + "new_balance":"16481.25", + "value":"-46.90" + } + }, + { + "id":"6f831f67-5d52-401b-b918-e6cbe57a4148", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T17:49:42.080Z", + "completed":"2016-10-01T17:49:42.080Z", + "new_balance":"16376.53", + "value":"-104.72" + } + }, + { + "id":"313a7257-11fa-484e-a142-6e83663a4db9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T23:13:51.523Z", + "completed":"2016-10-01T23:13:51.523Z", + "new_balance":"16342.10", + "value":"-34.43" + } + }, + { + "id":"28d457d4-99aa-4bb6-b17a-d35bf384e168", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T17:41:49.513Z", + "completed":"2016-10-02T17:41:49.513Z", + "new_balance":"16247.77", + "value":"-94.33" + } + }, + { + "id":"dd69b8bd-6355-49f6-a32d-2786a786921f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T02:25:22.993Z", + "completed":"2016-10-05T02:25:22.993Z", + "new_balance":"16206.34", + "value":"-41.43" + } + }, + { + "id":"b90e6a5c-2050-494f-af1f-c13818af5dd0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T06:49:58.254Z", + "completed":"2016-10-05T06:49:58.254Z", + "new_balance":"16125.13", + "value":"-81.21" + } + }, + { + "id":"9ac06ddf-1cd4-436c-b52c-45980a3ad282", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T07:12:13.857Z", + "completed":"2016-10-05T07:12:13.857Z", + "new_balance":"16113.20", + "value":"-11.93" + } + }, + { + "id":"e77e5384-be3f-456f-b4ea-dfba49ef70fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T13:05:41.449Z", + "completed":"2016-10-05T13:05:41.449Z", + "new_balance":"16078.77", + "value":"-34.43" + } + }, + { + "id":"204c115a-635b-4dda-bb13-b35157b8554d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T18:48:00.797Z", + "completed":"2016-10-05T18:48:00.797Z", + "new_balance":"16074.13", + "value":"-4.64" + } + }, + { + "id":"8a58a036-0db0-4460-bbe9-29368a6323fa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T20:42:31.485Z", + "completed":"2016-10-05T20:42:31.485Z", + "new_balance":"16019.29", + "value":"-54.84" + } + }, + { + "id":"767a61b4-3680-48c8-be22-a154a8fe6b35", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T22:29:27.561Z", + "completed":"2016-10-05T22:29:27.561Z", + "new_balance":"16012.71", + "value":"-6.58" + } + }, + { + "id":"fe462e31-dd39-4728-81d2-e56e5d18b616", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T02:40:53.995Z", + "completed":"2016-10-09T02:40:53.995Z", + "new_balance":"15914.79", + "value":"-97.92" + } + }, + { + "id":"e6dab681-e2b0-45af-b824-671c53142eb9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T05:28:52.930Z", + "completed":"2016-10-11T05:28:52.930Z", + "new_balance":"15858.66", + "value":"-56.13" + } + }, + { + "id":"ff7eda2b-9558-4021-b6c8-47a136bf507f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T04:08:00.995Z", + "completed":"2016-10-12T04:08:00.995Z", + "new_balance":"15777.45", + "value":"-81.21" + } + }, + { + "id":"ab12e5a3-fd57-44d8-afe8-58a05424f708", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T08:57:10.830Z", + "completed":"2016-10-12T08:57:10.830Z", + "new_balance":"15750.00", + "value":"-27.45" + } + }, + { + "id":"27a1208d-72d4-4ee1-9cdd-0608251e220f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T14:03:26.373Z", + "completed":"2016-10-20T14:03:26.373Z", + "new_balance":"15722.02", + "value":"-27.98" + } + }, + { + "id":"23ff7ea9-ca32-45cf-a64e-9be8739df136", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T01:23:50.222Z", + "completed":"2016-10-29T01:23:50.222Z", + "new_balance":"18072.23", + "value":"2350.21" + } + }, + { + "id":"1ac0cbfa-079c-48e2-8af7-969556a29006", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T13:36:47.182Z", + "completed":"2016-10-30T13:36:47.182Z", + "new_balance":"17755.02", + "value":"-317.21" + } + }, + { + "id":"9a5ec09c-ec3b-49f5-adbe-5184ff5085ce", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T01:55:31.674Z", + "completed":"2016-11-02T01:55:31.674Z", + "new_balance":"17650.30", + "value":"-104.72" + } + }, + { + "id":"814bfd37-381e-4b20-a8ec-195e1a354aa3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T11:34:25.160Z", + "completed":"2016-11-02T11:34:25.160Z", + "new_balance":"17615.87", + "value":"-34.43" + } + }, + { + "id":"6d7b6b1d-4105-48d5-887d-fc712ffba24c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T12:10:35.730Z", + "completed":"2016-11-02T12:10:35.730Z", + "new_balance":"17568.97", + "value":"-46.90" + } + }, + { + "id":"6eee3c68-c48b-41a3-a247-5c53d447d6ff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T21:00:01.075Z", + "completed":"2016-11-02T21:00:01.075Z", + "new_balance":"17534.54", + "value":"-34.43" + } + }, + { + "id":"52f764e3-926a-4b07-8402-0d226c9e906f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T11:13:54.237Z", + "completed":"2016-11-04T11:13:54.237Z", + "new_balance":"17527.96", + "value":"-6.58" + } + }, + { + "id":"c8fe048b-6df1-4557-b997-6668a138fb8b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T21:36:14.390Z", + "completed":"2016-11-04T21:36:14.390Z", + "new_balance":"17446.75", + "value":"-81.21" + } + }, + { + "id":"d284d1dc-7f93-45e2-8ab2-7c7c27a1c689", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:40:51.669Z", + "completed":"2016-11-06T13:40:51.669Z", + "new_balance":"17366.54", + "value":"-80.21" + } + }, + { + "id":"4dfbfa96-d90e-4db2-a8a8-f24c0283baeb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T03:24:49.646Z", + "completed":"2016-11-07T03:24:49.646Z", + "new_balance":"17272.21", + "value":"-94.33" + } + }, + { + "id":"f723eb79-2561-4f42-aa23-a74934f5b1ab", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T05:29:17.943Z", + "completed":"2016-11-07T05:29:17.943Z", + "new_balance":"17237.70", + "value":"-34.51" + } + }, + { + "id":"3a0ab472-2190-4b0f-8a2f-f9c3b205944a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T11:10:38.923Z", + "completed":"2016-11-09T11:10:38.923Z", + "new_balance":"17225.77", + "value":"-11.93" + } + }, + { + "id":"e259717a-db11-4099-a5e7-f5aa0930819c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T16:39:45.010Z", + "completed":"2016-11-09T16:39:45.010Z", + "new_balance":"17182.82", + "value":"-42.95" + } + }, + { + "id":"abba86b1-dd78-4090-81a1-80dd35fde40b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T00:21:37.660Z", + "completed":"2016-11-13T00:21:37.660Z", + "new_balance":"17154.63", + "value":"-28.19" + } + }, + { + "id":"44f93a97-1f1e-4633-947b-7bf7b1226eff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T19:38:11.410Z", + "completed":"2016-11-13T19:38:11.410Z", + "new_balance":"17148.05", + "value":"-6.58" + } + }, + { + "id":"143014ea-8f34-4773-ae49-9df7f8f2b860", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T21:08:37.038Z", + "completed":"2016-11-13T21:08:37.038Z", + "new_balance":"17113.54", + "value":"-34.51" + } + }, + { + "id":"d97dffc7-6da9-4be8-8b95-f6362c461a2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T15:46:10.472Z", + "completed":"2016-11-14T15:46:10.472Z", + "new_balance":"17032.33", + "value":"-81.21" + } + }, + { + "id":"c09cc8d2-a0fb-4fda-a95f-e87d3bce0681", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T22:35:23.846Z", + "completed":"2016-11-14T22:35:23.846Z", + "new_balance":"16967.10", + "value":"-65.23" + } + }, + { + "id":"9083460b-13e2-4679-9c7c-006bdaf12307", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T10:59:21.828Z", + "completed":"2016-11-15T10:59:21.828Z", + "new_balance":"16939.12", + "value":"-27.98" + } + }, + { + "id":"02ec6e7f-0516-49ba-bd71-eeb49d2260f1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T16:45:27.337Z", + "completed":"2016-11-30T16:45:27.337Z", + "new_balance":"16621.91", + "value":"-317.21" + } + }, + { + "id":"1214f5b8-6031-478c-be50-e912989b0c39", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T17:20:54.738Z", + "completed":"2016-11-30T17:20:54.738Z", + "new_balance":"18972.12", + "value":"2350.21" + } + }, + { + "id":"781026ef-069c-47b9-b5f5-0b74d0adec28", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T03:39:31.011Z", + "completed":"2016-12-01T03:39:31.011Z", + "new_balance":"18937.69", + "value":"-34.43" + } + }, + { + "id":"d4c6143e-f4d8-49f5-8046-84128f3e4ed3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T12:19:47.890Z", + "completed":"2016-12-01T12:19:47.890Z", + "new_balance":"18832.97", + "value":"-104.72" + } + }, + { + "id":"7daf128c-1fb6-4e9a-bc0d-c60100993719", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T16:01:01.103Z", + "completed":"2016-12-01T16:01:01.103Z", + "new_balance":"18798.54", + "value":"-34.43" + } + }, + { + "id":"dd5bf90c-2ecf-4c3e-9f37-e9b9386bdcf2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T21:16:57.079Z", + "completed":"2016-12-01T21:16:57.079Z", + "new_balance":"18751.64", + "value":"-46.90" + } + }, + { + "id":"93741059-6e82-4e06-bc1e-8a090e1e9ae7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T08:06:52.175Z", + "completed":"2016-12-04T08:06:52.175Z", + "new_balance":"18688.07", + "value":"-63.57" + } + }, + { + "id":"7c5181f7-e16c-4563-82c1-c7f86960d701", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T22:28:15.365Z", + "completed":"2016-12-04T22:28:15.365Z", + "new_balance":"18626.70", + "value":"-61.37" + } + }, + { + "id":"9d1dcda9-cfbb-47c6-a1ca-5cf9b95f71be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T05:33:03.672Z", + "completed":"2016-12-11T05:33:03.672Z", + "new_balance":"18538.21", + "value":"-88.49" + } + }, + { + "id":"0aea7df4-ed4a-43c3-9023-c316ba2d1163", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T07:00:27.314Z", + "completed":"2016-12-11T07:00:27.314Z", + "new_balance":"18456.42", + "value":"-81.79" + } + }, + { + "id":"b821f077-2d49-4a4d-b598-e7f67f9c9ce2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T14:08:01.434Z", + "completed":"2016-12-11T14:08:01.434Z", + "new_balance":"18410.95", + "value":"-45.47" + } + }, + { + "id":"416394d6-5c66-4bc0-8406-d07e5dba4038", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T01:03:45.717Z", + "completed":"2016-12-12T01:03:45.717Z", + "new_balance":"18404.18", + "value":"-6.77" + } + }, + { + "id":"059dfa13-66d2-4815-8c89-2c0dcc86d3bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T01:46:01.552Z", + "completed":"2016-12-12T01:46:01.552Z", + "new_balance":"18364.54", + "value":"-39.64" + } + }, + { + "id":"72461ed8-6021-46ce-93a5-83b7dcd675dc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T15:14:21.956Z", + "completed":"2016-12-16T15:14:21.956Z", + "new_balance":"18260.35", + "value":"-104.19" + } + }, + { + "id":"0818e410-3a43-419e-9f55-3668064835fc", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T06:01:21.383Z", + "completed":"2016-12-29T06:01:21.383Z", + "new_balance":"18232.37", + "value":"-27.98" + } + }, + { + "id":"e317df58-7cce-4016-83f6-4b2e2c949e3e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T01:44:34.103Z", + "completed":"2016-12-30T01:44:34.103Z", + "new_balance":"20582.58", + "value":"2350.21" + } + }, + { + "id":"6fe7ad4d-8ed2-4db8-b1fc-162895208481", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T21:06:14.867Z", + "completed":"2016-12-30T21:06:14.867Z", + "new_balance":"20265.37", + "value":"-317.21" + } + }, + { + "id":"d905b3ed-e293-45e4-9b66-f2e2711abac1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T04:00:55.366Z", + "completed":"2017-01-01T04:00:55.366Z", + "new_balance":"20230.94", + "value":"-34.43" + } + }, + { + "id":"6f21d009-428d-43a7-9dc1-056df67c8c18", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:21:20.700Z", + "completed":"2017-01-01T13:21:20.700Z", + "new_balance":"20196.51", + "value":"-34.43" + } + }, + { + "id":"fd4bf426-8bad-4c8c-a4e1-9500abdef8f1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T21:12:02.403Z", + "completed":"2017-01-01T21:12:02.403Z", + "new_balance":"20091.79", + "value":"-104.72" + } + }, + { + "id":"6d5ef817-6f5c-4e3f-ac75-bf255e69ace7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T22:21:55.056Z", + "completed":"2017-01-01T22:21:55.056Z", + "new_balance":"20044.89", + "value":"-46.90" + } + }, + { + "id":"3d768e51-155b-4d2d-a967-d2a6579d1efd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T09:19:46.830Z", + "completed":"2017-01-05T09:19:46.830Z", + "new_balance":"19977.44", + "value":"-67.45" + } + }, + { + "id":"ccd43bfa-8980-43b4-85bd-5535fa0f2d8b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T20:53:14.798Z", + "completed":"2017-01-05T20:53:14.798Z", + "new_balance":"19896.23", + "value":"-81.21" + } + }, + { + "id":"b7f39f1c-9e8c-435e-bd13-87ecbf464eb3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T19:03:43.637Z", + "completed":"2017-01-08T19:03:43.637Z", + "new_balance":"19885.32", + "value":"-10.91" + } + }, + { + "id":"e92bc955-2c0b-4dd0-94ce-e39df580dd17", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T04:32:36.740Z", + "completed":"2017-01-10T04:32:36.740Z", + "new_balance":"19838.86", + "value":"-46.46" + } + }, + { + "id":"a80f983a-8bb1-4955-b16c-599ebd5e3d3f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T02:24:15.839Z", + "completed":"2017-01-11T02:24:15.839Z", + "new_balance":"19782.22", + "value":"-56.64" + } + }, + { + "id":"58e61efe-f8f5-498b-acbb-8ef49a53d6bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T08:32:02.041Z", + "completed":"2017-01-12T08:32:02.041Z", + "new_balance":"19747.79", + "value":"-34.43" + } + }, + { + "id":"bcda31bc-40d9-49b5-a87a-b05d4f8515fd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T09:32:03.756Z", + "completed":"2017-01-13T09:32:03.756Z", + "new_balance":"19742.14", + "value":"-5.65" + } + }, + { + "id":"2f4b9130-2e06-40f0-9c9a-8e87a8814d6e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T23:49:40.256Z", + "completed":"2017-01-13T23:49:40.256Z", + "new_balance":"19738.55", + "value":"-3.59" + } + }, + { + "id":"95aaf367-cd91-426b-a640-3bf2cb224d11", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T14:51:59.697Z", + "completed":"2017-01-16T14:51:59.697Z", + "new_balance":"19655.46", + "value":"-83.09" + } + }, + { + "id":"6f207358-17e3-44b9-8d2e-c598d705308d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T03:23:09.463Z", + "completed":"2017-01-19T03:23:09.463Z", + "new_balance":"19574.25", + "value":"-81.21" + } + }, + { + "id":"b6f68b12-afb1-422d-95e8-24f0cc774a64", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T15:46:38.556Z", + "completed":"2017-01-19T15:46:38.556Z", + "new_balance":"19492.81", + "value":"-81.44" + } + }, + { + "id":"f534128a-fe22-4128-b386-f9f68418ce85", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:53:52.626Z", + "completed":"2017-01-24T23:53:52.626Z", + "new_balance":"19465.36", + "value":"-27.45" + } + }, + { + "id":"2d2bf934-ac99-47f7-8cc5-88eb73aabcf5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T12:30:41.876Z", + "completed":"2017-01-27T12:30:41.876Z", + "new_balance":"19437.38", + "value":"-27.98" + } + }, + { + "id":"b721edb1-e64d-4eda-9dac-199401fe440e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T15:09:55.671Z", + "completed":"2017-01-27T15:09:55.671Z", + "new_balance":"21787.59", + "value":"2350.21" + } + }, + { + "id":"bc1d319d-6f93-46bb-8d6e-a1c8c91dca80", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T15:58:34.680Z", + "completed":"2017-01-31T15:58:34.680Z", + "new_balance":"21470.38", + "value":"-317.21" + } + }, + { + "id":"f09235d7-b841-4f3c-a10d-7cae23c1f335", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T01:36:23.998Z", + "completed":"2017-02-01T01:36:23.998Z", + "new_balance":"21423.48", + "value":"-46.90" + } + }, + { + "id":"994a748b-e1f6-4b78-a2be-bdc0cc1398d4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T02:39:51.511Z", + "completed":"2017-02-01T02:39:51.511Z", + "new_balance":"21389.05", + "value":"-34.43" + } + }, + { + "id":"1cde8346-0120-418f-976e-7807034ba669", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T06:48:57.637Z", + "completed":"2017-02-01T06:48:57.637Z", + "new_balance":"21354.62", + "value":"-34.43" + } + }, + { + "id":"8f6214c6-daa7-46bc-838e-4b2bacf57dfe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T21:34:09.279Z", + "completed":"2017-02-01T21:34:09.279Z", + "new_balance":"21249.90", + "value":"-104.72" + } + }, + { + "id":"d449bde9-a946-4b3d-a94f-7fb145039aa2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T19:29:10.789Z", + "completed":"2017-02-03T19:29:10.789Z", + "new_balance":"21243.18", + "value":"-6.72" + } + }, + { + "id":"5b2f32e7-803d-4124-8720-914aa28b08f3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T00:07:51.096Z", + "completed":"2017-02-04T00:07:51.096Z", + "new_balance":"21161.97", + "value":"-81.21" + } + }, + { + "id":"e51d330a-a0f5-4c99-bbcb-9eda9eaa1f62", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T01:59:43.012Z", + "completed":"2017-02-06T01:59:43.012Z", + "new_balance":"21080.80", + "value":"-81.17" + } + }, + { + "id":"937d336b-5529-48b7-94bf-926c031c25f3", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T07:37:33.924Z", + "completed":"2017-02-06T07:37:33.924Z", + "new_balance":"20973.99", + "value":"-106.81" + } + }, + { + "id":"6e90c39f-dc7f-4f71-ba1c-cd67ff134742", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T13:04:18.648Z", + "completed":"2017-02-07T13:04:18.648Z", + "new_balance":"20945.96", + "value":"-28.03" + } + }, + { + "id":"6e60bac2-93d9-4e3f-9d34-68fcbdb30f51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T13:14:00.180Z", + "completed":"2017-02-08T13:14:00.180Z", + "new_balance":"20930.67", + "value":"-15.29" + } + }, + { + "id":"adad345c-d865-40e2-ab2d-9638de192baa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T03:38:21.314Z", + "completed":"2017-02-09T03:38:21.314Z", + "new_balance":"20887.72", + "value":"-42.95" + } + }, + { + "id":"85cd3a9d-cc85-4b39-ad6a-cb7963fad1d7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T06:58:01.284Z", + "completed":"2017-02-11T06:58:01.284Z", + "new_balance":"20860.99", + "value":"-26.73" + } + }, + { + "id":"0a2d5020-5d65-431e-abaa-45451c3f2189", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T03:08:32.561Z", + "completed":"2017-02-13T03:08:32.561Z", + "new_balance":"20819.45", + "value":"-41.54" + } + }, + { + "id":"deca7495-cf01-47fb-ba13-96172d7113ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T16:11:21.592Z", + "completed":"2017-02-17T16:11:21.592Z", + "new_balance":"20812.46", + "value":"-6.99" + } + }, + { + "id":"91d7c0d1-6647-4544-a2a0-bd39abf124df", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T16:35:07.927Z", + "completed":"2017-02-19T16:35:07.927Z", + "new_balance":"20762.52", + "value":"-49.94" + } + }, + { + "id":"0745f447-0f20-45be-b174-501d3ab2e800", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T10:19:46.499Z", + "completed":"2017-02-21T10:19:46.499Z", + "new_balance":"20681.31", + "value":"-81.21" + } + }, + { + "id":"fa24050e-73a9-4eb4-a911-6751ded6071f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T02:14:06.122Z", + "completed":"2017-02-24T02:14:06.122Z", + "new_balance":"20653.33", + "value":"-27.98" + } + }, + { + "id":"a05455cf-4392-474c-a18b-e4cf7196a95f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T22:21:07.946Z", + "completed":"2017-02-26T22:21:07.946Z", + "new_balance":"23003.54", + "value":"2350.21" + } + }, + { + "id":"70e031e6-930d-494f-ba04-f8484b357548", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T01:53:27.238Z", + "completed":"2017-03-01T01:53:27.238Z", + "new_balance":"22898.82", + "value":"-104.72" + } + }, + { + "id":"6d63143c-4a9d-4679-95aa-6b9986d0203c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:42:38.438Z", + "completed":"2017-03-01T06:42:38.438Z", + "new_balance":"22864.39", + "value":"-34.43" + } + }, + { + "id":"8fc23574-302a-48bc-b69d-46570c10cbab", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T12:03:08.582Z", + "completed":"2017-03-01T12:03:08.582Z", + "new_balance":"22829.96", + "value":"-34.43" + } + }, + { + "id":"975b57ac-4a95-467f-a5e9-3459ed619cb9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T12:38:32.042Z", + "completed":"2017-03-01T12:38:32.042Z", + "new_balance":"22783.06", + "value":"-46.90" + } + }, + { + "id":"238cb3a0-b083-4006-a8d1-b80b1f8d0f8a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:04:59.099Z", + "completed":"2017-03-09T10:04:59.099Z", + "new_balance":"22721.69", + "value":"-61.37" + } + }, + { + "id":"677da5ac-2f08-465f-aa8d-80787dedbb2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T23:31:01.123Z", + "completed":"2017-03-09T23:31:01.123Z", + "new_balance":"22658.12", + "value":"-63.57" + } + }, + { + "id":"67b7b794-89f8-4c6d-829c-87f431fad7f6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T09:53:20.354Z", + "completed":"2017-03-17T09:53:20.354Z", + "new_balance":"22569.63", + "value":"-88.49" + } + }, + { + "id":"d461c1be-6878-440d-b1dc-856d09e6c0aa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T10:00:31.139Z", + "completed":"2017-03-18T10:00:31.139Z", + "new_balance":"22524.16", + "value":"-45.47" + } + }, + { + "id":"d7373738-5291-40d7-8fb1-b78f5db3e641", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T16:56:30.757Z", + "completed":"2017-03-18T16:56:30.757Z", + "new_balance":"22517.39", + "value":"-6.77" + } + }, + { + "id":"d7027447-e83a-4541-ae9d-d694231a2bbd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T18:23:30.914Z", + "completed":"2017-03-18T18:23:30.914Z", + "new_balance":"22435.60", + "value":"-81.79" + } + }, + { + "id":"8c9ad0e8-e9d2-4abd-940e-aa749d9f1807", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T20:32:14.219Z", + "completed":"2017-03-18T20:32:14.219Z", + "new_balance":"22395.96", + "value":"-39.64" + } + }, + { + "id":"d1a6368e-d5c3-43b2-bd68-c878ab8a1f00", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T00:24:17.450Z", + "completed":"2017-03-22T00:24:17.450Z", + "new_balance":"22291.77", + "value":"-104.19" + } + }, + { + "id":"6f72837c-3b2f-4612-ac6d-c612f91484b1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T01:31:59.176Z", + "completed":"2017-03-29T01:31:59.176Z", + "new_balance":"22263.79", + "value":"-27.98" + } + }, + { + "id":"460cac74-13cb-4de6-84a9-e396b0d312ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T18:11:55.361Z", + "completed":"2017-03-29T18:11:55.361Z", + "new_balance":"24614.00", + "value":"2350.21" + } + }, + { + "id":"916db084-edab-4061-8de2-a4ce87c8d675", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T01:47:44.078Z", + "completed":"2017-03-31T01:47:44.078Z", + "new_balance":"24296.79", + "value":"-317.21" + } + }, + { + "id":"c85f5fbe-d059-4881-8be2-566e7d68f7f8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:05:11.737Z", + "completed":"2017-04-01T00:05:11.737Z", + "new_balance":"24262.36", + "value":"-34.43" + } + }, + { + "id":"b36eb0aa-0f39-4228-be89-702bc23a5a4c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T05:05:05.250Z", + "completed":"2017-04-01T05:05:05.250Z", + "new_balance":"24227.93", + "value":"-34.43" + } + }, + { + "id":"3b1da68d-cebf-4f29-b8dd-9e5ed14bcca8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T10:12:17.383Z", + "completed":"2017-04-01T10:12:17.383Z", + "new_balance":"24181.03", + "value":"-46.90" + } + }, + { + "id":"6fee5731-c9dc-4f7f-a8bb-f9213f9b6ff6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T18:38:16.300Z", + "completed":"2017-04-01T18:38:16.300Z", + "new_balance":"24076.31", + "value":"-104.72" + } + }, + { + "id":"24bee432-a3f7-4871-86c5-bcfef712d55e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T15:08:03.355Z", + "completed":"2017-04-02T15:08:03.355Z", + "new_balance":"23981.98", + "value":"-94.33" + } + }, + { + "id":"0c607d44-91de-487f-b64c-ac552b0bebb7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T01:37:26.417Z", + "completed":"2017-04-05T01:37:26.417Z", + "new_balance":"23975.40", + "value":"-6.58" + } + }, + { + "id":"cf6ecb59-a704-4548-8b71-fff8287c90b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T02:57:06.980Z", + "completed":"2017-04-05T02:57:06.980Z", + "new_balance":"23970.76", + "value":"-4.64" + } + }, + { + "id":"8368f271-5e29-4ae3-b4fd-13b8b55d9354", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T05:29:39.704Z", + "completed":"2017-04-05T05:29:39.704Z", + "new_balance":"23936.33", + "value":"-34.43" + } + }, + { + "id":"45e98f34-8e25-4743-9b5b-c64f12e4500e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:51:55.382Z", + "completed":"2017-04-05T10:51:55.382Z", + "new_balance":"23924.40", + "value":"-11.93" + } + }, + { + "id":"305505b6-48db-4639-9c06-c4fa55102ef2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T12:54:49.636Z", + "completed":"2017-04-05T12:54:49.636Z", + "new_balance":"23843.19", + "value":"-81.21" + } + }, + { + "id":"78dd0594-3bb0-4dec-a5ff-f9eebdb3ccd0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T23:01:30.382Z", + "completed":"2017-04-05T23:01:30.382Z", + "new_balance":"23801.76", + "value":"-41.43" + } + }, + { + "id":"4844e8d9-6020-4b8e-a154-3b3c5339329d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T23:50:07.409Z", + "completed":"2017-04-05T23:50:07.409Z", + "new_balance":"23746.92", + "value":"-54.84" + } + }, + { + "id":"51257f83-dc2d-42e2-9858-2b6d7dda90ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T10:02:26.998Z", + "completed":"2017-04-08T10:02:26.998Z", + "new_balance":"23649.00", + "value":"-97.92" + } + }, + { + "id":"3d40876b-b43b-4540-bf17-f59f0beb1986", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T03:30:21.411Z", + "completed":"2017-04-10T03:30:21.411Z", + "new_balance":"23592.87", + "value":"-56.13" + } + }, + { + "id":"d1ca4ef2-166b-4b20-8c46-93440c177cb2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T03:31:21.375Z", + "completed":"2017-04-11T03:31:21.375Z", + "new_balance":"23565.42", + "value":"-27.45" + } + }, + { + "id":"3faa8ee8-6f5c-476d-a52c-6df80889663e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T10:03:39.796Z", + "completed":"2017-04-11T10:03:39.796Z", + "new_balance":"23484.21", + "value":"-81.21" + } + }, + { + "id":"8f30d731-1e4a-4803-a2fd-c83bedda8095", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T00:10:42.668Z", + "completed":"2017-04-13T00:10:42.668Z", + "new_balance":"23456.23", + "value":"-27.98" + } + }, + { + "id":"9e789cf2-a51a-4aaa-b2c2-b8a6bebcca78", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T09:18:48.477Z", + "completed":"2017-04-18T09:18:48.477Z", + "new_balance":"25806.44", + "value":"2350.21" + } + }, + { + "id":"5aaa0dbc-f77b-4d58-bf2b-a98675b67136", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T22:28:36.754Z", + "completed":"2017-04-25T22:28:36.754Z", + "new_balance":"25489.23", + "value":"-317.21" + } + }, + { + "id":"dad403b7-260c-45e2-8435-26be163da5ba", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T13:29:09.783Z", + "completed":"2017-05-02T13:29:09.783Z", + "new_balance":"25454.80", + "value":"-34.43" + } + }, + { + "id":"cdd33520-4cf8-4df9-9df3-49fbfb238d4c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T13:48:03.004Z", + "completed":"2017-05-02T13:48:03.004Z", + "new_balance":"25420.37", + "value":"-34.43" + } + }, + { + "id":"359f1fc2-88cd-4221-b375-62921265dd4d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T14:33:05.144Z", + "completed":"2017-05-02T14:33:05.144Z", + "new_balance":"25315.65", + "value":"-104.72" + } + }, + { + "id":"893b18d5-d3b8-4fc4-886c-197c9b22eed0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T17:54:12.964Z", + "completed":"2017-05-02T17:54:12.964Z", + "new_balance":"25268.75", + "value":"-46.90" + } + }, + { + "id":"18ce8cb5-a0bf-43ba-9bef-4fd88bbc0c08", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T05:29:38.465Z", + "completed":"2017-05-04T05:29:38.465Z", + "new_balance":"25262.17", + "value":"-6.58" + } + }, + { + "id":"9e8971d1-5832-4c50-b271-44c7184ebb0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T23:55:11.691Z", + "completed":"2017-05-04T23:55:11.691Z", + "new_balance":"25180.96", + "value":"-81.21" + } + }, + { + "id":"36ce17fb-6394-4ccf-8d2f-7704f31be941", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T07:20:52.216Z", + "completed":"2017-05-06T07:20:52.216Z", + "new_balance":"25100.75", + "value":"-80.21" + } + }, + { + "id":"5b84fef1-bdc4-4ef3-acdb-45405fb94221", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T15:52:57.291Z", + "completed":"2017-05-07T15:52:57.291Z", + "new_balance":"25066.24", + "value":"-34.51" + } + }, + { + "id":"12290b43-5685-4069-ba2b-aa2e2a7c9292", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T20:39:07.432Z", + "completed":"2017-05-07T20:39:07.432Z", + "new_balance":"24971.91", + "value":"-94.33" + } + }, + { + "id":"a1d6a801-ffc5-4418-a397-19cae75375ec", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T02:47:52.064Z", + "completed":"2017-05-09T02:47:52.064Z", + "new_balance":"24928.96", + "value":"-42.95" + } + }, + { + "id":"558fe547-4ed1-4b6d-970b-648054be51d9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T10:07:26.414Z", + "completed":"2017-05-09T10:07:26.414Z", + "new_balance":"24917.03", + "value":"-11.93" + } + }, + { + "id":"c3688f30-b85a-454e-bec0-76a3b1f1f6d1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T04:03:32.977Z", + "completed":"2017-05-13T04:03:32.977Z", + "new_balance":"24882.52", + "value":"-34.51" + } + }, + { + "id":"3e0819dd-35b5-4e79-914b-061f3866c446", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T09:24:30.394Z", + "completed":"2017-05-13T09:24:30.394Z", + "new_balance":"24875.94", + "value":"-6.58" + } + }, + { + "id":"3fb8c39e-bf39-48a7-82ac-9bb00b1c163e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T23:45:28.015Z", + "completed":"2017-05-13T23:45:28.015Z", + "new_balance":"24847.75", + "value":"-28.19" + } + }, + { + "id":"4f3b86ac-2d03-4cc8-b789-49f74a724021", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T01:32:38.451Z", + "completed":"2017-05-14T01:32:38.451Z", + "new_balance":"24766.54", + "value":"-81.21" + } + }, + { + "id":"2163904b-a866-409d-8485-1179002a4b1c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T22:06:20.701Z", + "completed":"2017-05-14T22:06:20.701Z", + "new_balance":"24701.31", + "value":"-65.23" + } + }, + { + "id":"1690dd52-6ddc-4bb8-8a54-3b2962dd9caf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T03:23:33.655Z", + "completed":"2017-05-15T03:23:33.655Z", + "new_balance":"24673.33", + "value":"-27.98" + } + }, + { + "id":"413d7751-ac6d-4a39-bed3-7c2ca7e4cb7c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T15:06:27.950Z", + "completed":"2017-05-30T15:06:27.950Z", + "new_balance":"27023.54", + "value":"2350.21" + } + }, + { + "id":"4f10b464-5846-4e49-ba69-3460542b4ef4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T16:33:14.167Z", + "completed":"2017-05-30T16:33:14.167Z", + "new_balance":"26706.33", + "value":"-317.21" + } + }, + { + "id":"572f19e6-f3de-4f7e-a70d-5a3549facc8f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T01:13:32.308Z", + "completed":"2017-06-01T01:13:32.308Z", + "new_balance":"26671.90", + "value":"-34.43" + } + }, + { + "id":"358ae6d0-abff-4973-918a-36262da578bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T03:50:22.896Z", + "completed":"2017-06-01T03:50:22.896Z", + "new_balance":"26625.00", + "value":"-46.90" + } + }, + { + "id":"6580f854-19be-47e5-9098-228d4828ff5c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T04:37:54.910Z", + "completed":"2017-06-01T04:37:54.910Z", + "new_balance":"26590.57", + "value":"-34.43" + } + }, + { + "id":"759b6e0a-bbe2-41b2-bbd7-288f802fcf05", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T20:19:27.696Z", + "completed":"2017-06-01T20:19:27.696Z", + "new_balance":"26485.85", + "value":"-104.72" + } + }, + { + "id":"0c7e65fc-4757-488c-b24f-aa3b4b19952a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T00:03:31.591Z", + "completed":"2017-06-04T00:03:31.591Z", + "new_balance":"26424.48", + "value":"-61.37" + } + }, + { + "id":"4f523c0e-5638-45e1-a49c-465e4dac47bb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T08:48:54.945Z", + "completed":"2017-06-04T08:48:54.945Z", + "new_balance":"26360.91", + "value":"-63.57" + } + }, + { + "id":"c2de5f4e-0c17-409f-99b2-79cad4acb8f0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T09:31:32.875Z", + "completed":"2017-06-11T09:31:32.875Z", + "new_balance":"26279.12", + "value":"-81.79" + } + }, + { + "id":"88fc5561-c053-415f-a109-bbeb9c7a9d2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T12:16:17.400Z", + "completed":"2017-06-11T12:16:17.400Z", + "new_balance":"26233.65", + "value":"-45.47" + } + }, + { + "id":"7121008c-e3d5-4989-a446-0e51677f02e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:24:26.558Z", + "completed":"2017-06-11T14:24:26.558Z", + "new_balance":"26145.16", + "value":"-88.49" + } + }, + { + "id":"35df6c2b-58aa-4228-ae7a-8c14eb59e969", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T12:22:51.602Z", + "completed":"2017-06-12T12:22:51.602Z", + "new_balance":"26138.39", + "value":"-6.77" + } + }, + { + "id":"7bbf85e4-c087-4a3b-b8f2-b6ef00e24faf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T15:05:30.284Z", + "completed":"2017-06-12T15:05:30.284Z", + "new_balance":"26098.75", + "value":"-39.64" + } + }, + { + "id":"ad9724cb-6747-4104-8bea-f8afd65e50bd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T22:50:53.693Z", + "completed":"2017-06-16T22:50:53.693Z", + "new_balance":"25994.56", + "value":"-104.19" + } + }, + { + "id":"a06f1a44-ef29-4727-8275-701005ea7c0b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T21:28:51.067Z", + "completed":"2017-06-29T21:28:51.067Z", + "new_balance":"25966.58", + "value":"-27.98" + } + }, + { + "id":"5fc888c3-ba00-4cc6-aa81-49ed5e5dcde4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T05:42:44.000Z", + "completed":"2017-06-30T05:42:44.000Z", + "new_balance":"25649.37", + "value":"-317.21" + } + }, + { + "id":"312056ed-114f-4edb-80c6-174fb60c2c1a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T13:23:42.885Z", + "completed":"2017-06-30T13:23:42.885Z", + "new_balance":"27999.58", + "value":"2350.21" + } + }, + { + "id":"283d1d89-64ec-4cb3-a9d4-c01912eba0f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T10:43:22.333Z", + "completed":"2017-07-01T10:43:22.333Z", + "new_balance":"27965.15", + "value":"-34.43" + } + }, + { + "id":"15c56c09-f425-42a5-92b7-dd8e22879d07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T19:50:30.436Z", + "completed":"2017-07-01T19:50:30.436Z", + "new_balance":"27930.72", + "value":"-34.43" + } + }, + { + "id":"dcc4b28f-d7db-4527-bf85-876beac49506", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T19:54:22.628Z", + "completed":"2017-07-01T19:54:22.628Z", + "new_balance":"27883.82", + "value":"-46.90" + } + }, + { + "id":"2a2d5695-108f-4fe0-88f3-fa8ec79d2dff", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T22:49:47.055Z", + "completed":"2017-07-01T22:49:47.055Z", + "new_balance":"27779.10", + "value":"-104.72" + } + }, + { + "id":"56a672f0-4ab5-4d82-a828-0351721da587", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T01:04:44.716Z", + "completed":"2017-07-05T01:04:44.716Z", + "new_balance":"27711.65", + "value":"-67.45" + } + }, + { + "id":"4cecb228-d100-47d8-be9b-f3ab4753b21d", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T08:53:54.606Z", + "completed":"2017-07-05T08:53:54.606Z", + "new_balance":"27630.44", + "value":"-81.21" + } + }, + { + "id":"adc3e1c9-1ca1-4ccd-a32c-255cd9303a38", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T01:41:35.482Z", + "completed":"2017-07-08T01:41:35.482Z", + "new_balance":"27619.53", + "value":"-10.91" + } + }, + { + "id":"49b04292-a5f0-4a44-aae0-646a79ff2e28", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T18:22:01.916Z", + "completed":"2017-07-10T18:22:01.916Z", + "new_balance":"27573.07", + "value":"-46.46" + } + }, + { + "id":"06cb7cc9-39e2-4f33-ab68-d9a009fa61be", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T09:43:06.978Z", + "completed":"2017-07-12T09:43:06.978Z", + "new_balance":"27516.43", + "value":"-56.64" + } + }, + { + "id":"7ac04034-18b8-436d-8189-3e1dfbe5c8fe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T14:21:56.832Z", + "completed":"2017-07-12T14:21:56.832Z", + "new_balance":"27482.00", + "value":"-34.43" + } + }, + { + "id":"b5519e2d-b590-4b35-87d9-d83375ebf9c5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T14:06:18.357Z", + "completed":"2017-07-13T14:06:18.357Z", + "new_balance":"27478.41", + "value":"-3.59" + } + }, + { + "id":"7de5c15a-37a5-45e5-9cf1-b1c7be9e0ea7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T14:23:14.327Z", + "completed":"2017-07-13T14:23:14.327Z", + "new_balance":"27472.76", + "value":"-5.65" + } + }, + { + "id":"a5762c25-5ae3-49d7-a061-452ebc7848f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T01:41:37.069Z", + "completed":"2017-07-18T01:41:37.069Z", + "new_balance":"27389.67", + "value":"-83.09" + } + }, + { + "id":"b93d53c1-4f35-41f4-b18c-2aa4fb75f220", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T11:12:01.010Z", + "completed":"2017-07-20T11:12:01.010Z", + "new_balance":"27308.46", + "value":"-81.21" + } + }, + { + "id":"a54336af-f68a-4446-9545-4a61335431ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T13:25:24.570Z", + "completed":"2017-07-20T13:25:24.570Z", + "new_balance":"27227.02", + "value":"-81.44" + } + }, + { + "id":"c18d5a9a-8eee-48b7-bdf7-1ae42b9a0440", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T10:27:01.259Z", + "completed":"2017-07-24T10:27:01.259Z", + "new_balance":"27199.57", + "value":"-27.45" + } + }, + { + "id":"10ed39d1-1b40-4ba0-831d-bff464c3ea4e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T08:45:59.520Z", + "completed":"2017-07-29T08:45:59.520Z", + "new_balance":"27171.59", + "value":"-27.98" + } + }, + { + "id":"e8447349-6d01-491a-8405-9b9a2c33ae82", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T20:58:56.063Z", + "completed":"2017-07-29T20:58:56.063Z", + "new_balance":"29521.80", + "value":"2350.21" + } + }, + { + "id":"bd2f8908-8cf7-43f7-b7f0-3e3833b2e249", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T03:41:09.945Z", + "completed":"2017-07-30T03:41:09.945Z", + "new_balance":"29204.59", + "value":"-317.21" + } + }, + { + "id":"041311f1-e494-4d6b-bd8c-d8ded071665a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T02:23:21.554Z", + "completed":"2017-08-01T02:23:21.554Z", + "new_balance":"29099.87", + "value":"-104.72" + } + }, + { + "id":"65ec911f-e5b6-4b43-8242-21045110021a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T03:08:54.137Z", + "completed":"2017-08-01T03:08:54.137Z", + "new_balance":"29065.44", + "value":"-34.43" + } + }, + { + "id":"f747a044-349b-41a0-a39d-452bccb32abe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T07:55:50.980Z", + "completed":"2017-08-01T07:55:50.980Z", + "new_balance":"29031.01", + "value":"-34.43" + } + }, + { + "id":"083c6f5f-daf8-4cbb-9a4d-49aa28413b51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T16:33:21.070Z", + "completed":"2017-08-01T16:33:21.070Z", + "new_balance":"28984.11", + "value":"-46.90" + } + }, + { + "id":"7836630c-fc45-4ec7-8198-330208b3ef2f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T04:41:52.295Z", + "completed":"2017-08-03T04:41:52.295Z", + "new_balance":"28977.39", + "value":"-6.72" + } + }, + { + "id":"d92baf7a-337d-496e-ae67-b428cc6badb5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T05:57:23.520Z", + "completed":"2017-08-04T05:57:23.520Z", + "new_balance":"28896.18", + "value":"-81.21" + } + }, + { + "id":"3e555b86-c8e4-4f98-9399-b4d30e6442e7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T01:15:34.776Z", + "completed":"2017-08-08T01:15:34.776Z", + "new_balance":"28880.89", + "value":"-15.29" + } + }, + { + "id":"43a5ad8a-c46d-4bd8-baa8-d7f9ab61f82c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T03:30:22.819Z", + "completed":"2017-08-08T03:30:22.819Z", + "new_balance":"28774.08", + "value":"-106.81" + } + }, + { + "id":"fca7a453-0d6a-4a35-ae6b-b3e5c2ec2134", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:14:09.073Z", + "completed":"2017-08-08T04:14:09.073Z", + "new_balance":"28692.91", + "value":"-81.17" + } + }, + { + "id":"8e1643af-b03a-41f9-a6f2-64f99b0f0674", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T04:17:08.114Z", + "completed":"2017-08-08T04:17:08.114Z", + "new_balance":"28664.88", + "value":"-28.03" + } + }, + { + "id":"aafea28d-b197-4321-a9e5-25c946740d4b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T04:56:57.575Z", + "completed":"2017-08-09T04:56:57.575Z", + "new_balance":"28621.93", + "value":"-42.95" + } + }, + { + "id":"ecd168ba-926f-4406-9c52-51eccf19ef34", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T17:25:29.084Z", + "completed":"2017-08-14T17:25:29.084Z", + "new_balance":"28595.20", + "value":"-26.73" + } + }, + { + "id":"5935518c-c743-41e7-a78f-171fe69a03bf", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T15:22:34.407Z", + "completed":"2017-08-15T15:22:34.407Z", + "new_balance":"28553.66", + "value":"-41.54" + } + }, + { + "id":"cfaca8de-7042-47d8-810e-cecd8c6050e6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T06:18:04.693Z", + "completed":"2017-08-19T06:18:04.693Z", + "new_balance":"28546.67", + "value":"-6.99" + } + }, + { + "id":"64cb911a-60eb-4c0a-a1db-79a97935ffbd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T04:33:02.498Z", + "completed":"2017-08-22T04:33:02.498Z", + "new_balance":"28496.73", + "value":"-49.94" + } + }, + { + "id":"fb8a45cc-caeb-4453-8b50-7f4cebce87ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T13:43:27.207Z", + "completed":"2017-08-26T13:43:27.207Z", + "new_balance":"28415.52", + "value":"-81.21" + } + }, + { + "id":"376cb6a5-1acd-48c4-91dd-87b9be4611d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T19:00:02.093Z", + "completed":"2017-08-28T19:00:02.093Z", + "new_balance":"28098.31", + "value":"-317.21" + } + }, + { + "id":"7769a798-2b0e-408b-bfe7-1aca06244896", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T02:41:08.706Z", + "completed":"2017-08-29T02:41:08.706Z", + "new_balance":"30448.52", + "value":"2350.21" + } + }, + { + "id":"db7f33de-5d50-4600-89ae-60057f61e91f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T07:27:22.411Z", + "completed":"2017-08-29T07:27:22.411Z", + "new_balance":"30420.54", + "value":"-27.98" + } + }, + { + "id":"eb707cbc-e124-48cc-bceb-b359f580c5f9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T03:27:23.755Z", + "completed":"2017-08-30T03:27:23.755Z", + "new_balance":"30103.33", + "value":"-317.21" + } + }, + { + "id":"668a8815-8ef4-47c5-b019-638a81253c89", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T05:24:44.170Z", + "completed":"2017-09-01T05:24:44.170Z", + "new_balance":"30056.43", + "value":"-46.90" + } + }, + { + "id":"56948622-57de-431d-ada0-3dc880aacaf5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T08:50:28.055Z", + "completed":"2017-09-01T08:50:28.055Z", + "new_balance":"29951.71", + "value":"-104.72" + } + }, + { + "id":"4378629c-e1be-46bb-ba79-12498aee3035", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T16:41:39.051Z", + "completed":"2017-09-01T16:41:39.051Z", + "new_balance":"29917.28", + "value":"-34.43" + } + }, + { + "id":"ac5a2fda-bff6-4730-a37f-7fcfdaa6ff68", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T19:00:24.619Z", + "completed":"2017-09-01T19:00:24.619Z", + "new_balance":"29882.85", + "value":"-34.43" + } + }, + { + "id":"b1b5be1f-d804-4284-b9f7-438b338bc1cd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T10:23:16.869Z", + "completed":"2017-09-09T10:23:16.869Z", + "new_balance":"29819.28", + "value":"-63.57" + } + }, + { + "id":"8e879be8-ee02-46d4-9881-f5bb22fe1f10", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T14:42:51.656Z", + "completed":"2017-09-09T14:42:51.656Z", + "new_balance":"29757.91", + "value":"-61.37" + } + }, + { + "id":"79f54949-069e-4609-b452-7d8e833a5a37", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:41:15.943Z", + "completed":"2017-09-17T13:41:15.943Z", + "new_balance":"29669.42", + "value":"-88.49" + } + }, + { + "id":"ff552689-11b7-4093-8c6e-6a69eca1c243", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:57:11.371Z", + "completed":"2017-09-18T07:57:11.371Z", + "new_balance":"29662.65", + "value":"-6.77" + } + }, + { + "id":"122ae526-c076-4bb8-9a41-f27f210a9ce1", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T11:55:35.912Z", + "completed":"2017-09-18T11:55:35.912Z", + "new_balance":"29617.18", + "value":"-45.47" + } + }, + { + "id":"774f4656-90f7-4756-b975-b369a3a69da8", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T14:24:31.467Z", + "completed":"2017-09-18T14:24:31.467Z", + "new_balance":"29577.54", + "value":"-39.64" + } + }, + { + "id":"8b16e5e1-9ee9-45c8-b5e7-9269dea091b4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T21:22:00.434Z", + "completed":"2017-09-18T21:22:00.434Z", + "new_balance":"29495.75", + "value":"-81.79" + } + }, + { + "id":"f08f3496-8bbb-4bda-90aa-85511f91c98f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T18:11:30.112Z", + "completed":"2017-09-22T18:11:30.112Z", + "new_balance":"29391.56", + "value":"-104.19" + } + }, + { + "id":"8620b464-0484-42e1-882b-adc2a2204c3c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T09:58:56.721Z", + "completed":"2017-09-29T09:58:56.721Z", + "new_balance":"29363.58", + "value":"-27.98" + } + }, + { + "id":"e0e9ff21-c11b-4a32-b589-b338297b84b6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T19:48:19.631Z", + "completed":"2017-09-29T19:48:19.631Z", + "new_balance":"31713.79", + "value":"2350.21" + } + }, + { + "id":"fb6ea6c2-fc10-4f33-8b3f-63af1b8e03f7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T05:09:25.332Z", + "completed":"2017-09-30T05:09:25.332Z", + "new_balance":"31396.58", + "value":"-317.21" + } + }, + { + "id":"ab55b2e7-5d2b-4543-86f3-0062cc0768eb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T03:33:01.819Z", + "completed":"2017-10-01T03:33:01.819Z", + "new_balance":"31362.15", + "value":"-34.43" + } + }, + { + "id":"a63fc2f8-9aa5-427a-9040-e4208a0dc20a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T05:07:02.519Z", + "completed":"2017-10-01T05:07:02.519Z", + "new_balance":"31315.25", + "value":"-46.90" + } + }, + { + "id":"2fafa685-ab1f-4121-963e-ee297ddb71d6", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T05:56:38.912Z", + "completed":"2017-10-01T05:56:38.912Z", + "new_balance":"31280.82", + "value":"-34.43" + } + }, + { + "id":"f999978e-b230-4d7c-a158-b05a6ac6fd07", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T09:38:00.290Z", + "completed":"2017-10-01T09:38:00.290Z", + "new_balance":"31176.10", + "value":"-104.72" + } + }, + { + "id":"bd4a6a7d-b0cb-4cbd-a364-399de8075565", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T07:43:52.790Z", + "completed":"2017-10-02T07:43:52.790Z", + "new_balance":"31081.77", + "value":"-94.33" + } + }, + { + "id":"36e1f472-01ba-4659-958f-004ea80bfd5f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T09:38:28.910Z", + "completed":"2017-10-05T09:38:28.910Z", + "new_balance":"31077.13", + "value":"-4.64" + } + }, + { + "id":"61ea223a-0d8a-46a1-9bfc-d57f527b6fb2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:01:48.013Z", + "completed":"2017-10-05T10:01:48.013Z", + "new_balance":"30995.92", + "value":"-81.21" + } + }, + { + "id":"23f47905-aee6-4bd3-9d54-93245caa68e2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T15:10:08.488Z", + "completed":"2017-10-05T15:10:08.488Z", + "new_balance":"30983.99", + "value":"-11.93" + } + }, + { + "id":"4a49dd2d-a606-4fda-8043-43edcb710fb0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T16:22:00.297Z", + "completed":"2017-10-05T16:22:00.297Z", + "new_balance":"30977.41", + "value":"-6.58" + } + }, + { + "id":"394fbaa4-acc2-44f5-bd22-be3628d75864", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T18:40:56.113Z", + "completed":"2017-10-05T18:40:56.113Z", + "new_balance":"30935.98", + "value":"-41.43" + } + }, + { + "id":"7c29add5-d248-4676-bc58-e92581246c69", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T21:49:03.613Z", + "completed":"2017-10-05T21:49:03.613Z", + "new_balance":"30901.55", + "value":"-34.43" + } + }, + { + "id":"8344f437-4105-4d49-90ba-d387a76af874", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T22:12:48.059Z", + "completed":"2017-10-05T22:12:48.059Z", + "new_balance":"30846.71", + "value":"-54.84" + } + }, + { + "id":"078d410d-03da-424c-a83b-fe256ea5d6a7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T17:01:51.432Z", + "completed":"2017-10-09T17:01:51.432Z", + "new_balance":"30748.79", + "value":"-97.92" + } + }, + { + "id":"f51417e3-648e-4a69-bad1-53616210ca83", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T22:24:45.812Z", + "completed":"2017-10-11T22:24:45.812Z", + "new_balance":"30692.66", + "value":"-56.13" + } + }, + { + "id":"8b167963-40f8-40a1-b945-dffc8115d70f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T13:04:48.631Z", + "completed":"2017-10-12T13:04:48.631Z", + "new_balance":"30665.21", + "value":"-27.45" + } + }, + { + "id":"cef93ce3-caee-4f25-bfc8-16457779ebfa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T22:42:06.656Z", + "completed":"2017-10-12T22:42:06.656Z", + "new_balance":"30584.00", + "value":"-81.21" + } + }, + { + "id":"1f4a2299-c4af-4da2-938e-8b06e6b0e919", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T08:39:50.042Z", + "completed":"2017-10-20T08:39:50.042Z", + "new_balance":"30556.02", + "value":"-27.98" + } + }, + { + "id":"6c1816cc-c3cb-4af8-8b02-c54c7b1d5148", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T20:00:47.975Z", + "completed":"2017-10-29T20:00:47.975Z", + "new_balance":"32906.23", + "value":"2350.21" + } + }, + { + "id":"67b5e7a1-01b3-45b9-987a-62cc0c7e3fd7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T04:05:20.887Z", + "completed":"2017-10-30T04:05:20.887Z", + "new_balance":"32589.02", + "value":"-317.21" + } + }, + { + "id":"05def60c-96a5-4fd8-bc22-20894b93e951", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T04:37:28.965Z", + "completed":"2017-11-02T04:37:28.965Z", + "new_balance":"32554.59", + "value":"-34.43" + } + }, + { + "id":"05541894-2b56-4b54-8f38-b4562f5e2a61", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T20:42:12.760Z", + "completed":"2017-11-02T20:42:12.760Z", + "new_balance":"32520.16", + "value":"-34.43" + } + }, + { + "id":"55416ab6-9a28-4289-9818-c4599a9f62dd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T23:08:31.001Z", + "completed":"2017-11-02T23:08:31.001Z", + "new_balance":"32473.26", + "value":"-46.90" + } + }, + { + "id":"bcb7df33-b653-4ca8-9fb9-37f9f73c62e5", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T23:11:05.882Z", + "completed":"2017-11-02T23:11:05.882Z", + "new_balance":"32368.54", + "value":"-104.72" + } + }, + { + "id":"dead8267-55be-443b-ba83-463ff5226e77", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T01:16:12.183Z", + "completed":"2017-11-04T01:16:12.183Z", + "new_balance":"32287.33", + "value":"-81.21" + } + }, + { + "id":"cf9d6b92-027e-4b42-9daf-b9cac69f00f4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T01:27:13.206Z", + "completed":"2017-11-04T01:27:13.206Z", + "new_balance":"32280.75", + "value":"-6.58" + } + }, + { + "id":"d146233d-120a-4344-9362-0c596a184ecb", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T22:57:43.598Z", + "completed":"2017-11-06T22:57:43.598Z", + "new_balance":"32200.54", + "value":"-80.21" + } + }, + { + "id":"5b1cc743-e290-4a2a-9898-ba0c8181307e", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T06:37:22.291Z", + "completed":"2017-11-07T06:37:22.291Z", + "new_balance":"32166.03", + "value":"-34.51" + } + }, + { + "id":"b7b48bde-d564-422c-b557-fcf42c64b73f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T17:06:34.525Z", + "completed":"2017-11-07T17:06:34.525Z", + "new_balance":"32071.70", + "value":"-94.33" + } + }, + { + "id":"ad820210-6895-4dcc-a406-b8dfb3a9b0a2", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T01:11:59.101Z", + "completed":"2017-11-09T01:11:59.101Z", + "new_balance":"32059.77", + "value":"-11.93" + } + }, + { + "id":"13618198-cf8a-4ff0-aa0d-24d3e32017ad", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T07:56:14.120Z", + "completed":"2017-11-09T07:56:14.120Z", + "new_balance":"32016.82", + "value":"-42.95" + } + }, + { + "id":"25088263-8345-46fb-8890-f2926fe8bf67", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T03:17:46.747Z", + "completed":"2017-11-13T03:17:46.747Z", + "new_balance":"32010.24", + "value":"-6.58" + } + }, + { + "id":"58fa2ec5-6324-4ad3-8d7a-901d01ad372c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T19:03:49.777Z", + "completed":"2017-11-13T19:03:49.777Z", + "new_balance":"31982.05", + "value":"-28.19" + } + }, + { + "id":"a960c077-fcff-4456-a88a-d0ae2040878a", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T22:28:27.438Z", + "completed":"2017-11-13T22:28:27.438Z", + "new_balance":"31947.54", + "value":"-34.51" + } + }, + { + "id":"60eb9437-0060-4093-94b5-9347980d6df7", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T00:39:19.644Z", + "completed":"2017-11-14T00:39:19.644Z", + "new_balance":"31882.31", + "value":"-65.23" + } + }, + { + "id":"b662c55b-8d37-4654-a8bd-757df0491cfa", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T19:58:47.313Z", + "completed":"2017-11-14T19:58:47.313Z", + "new_balance":"31801.10", + "value":"-81.21" + } + }, + { + "id":"4ac735b5-deb5-4b0a-a10d-083f123e9ba4", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T03:33:30.390Z", + "completed":"2017-11-15T03:33:30.390Z", + "new_balance":"31773.12", + "value":"-27.98" + } + }, + { + "id":"e1cc0367-2154-41aa-bbe7-2fb01747b30b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T07:04:38.969Z", + "completed":"2017-11-30T07:04:38.969Z", + "new_balance":"34123.33", + "value":"2350.21" + } + }, + { + "id":"9aa2e200-f733-4f36-b45a-cdfc4377d6de", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T16:00:29.047Z", + "completed":"2017-11-30T16:00:29.047Z", + "new_balance":"33806.12", + "value":"-317.21" + } + }, + { + "id":"80d2110b-c07b-4daf-9fb4-9d25a37086e9", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T03:19:12.980Z", + "completed":"2017-12-01T03:19:12.980Z", + "new_balance":"33759.22", + "value":"-46.90" + } + }, + { + "id":"381cef2b-6c2e-4a01-9a94-2a489f005760", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:19:57.773Z", + "completed":"2017-12-01T06:19:57.773Z", + "new_balance":"33724.79", + "value":"-34.43" + } + }, + { + "id":"0cf7c6b9-1daf-4be3-9862-9d31d0358e51", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T20:38:19.270Z", + "completed":"2017-12-01T20:38:19.270Z", + "new_balance":"33690.36", + "value":"-34.43" + } + }, + { + "id":"7dfd3a7e-557f-4a1b-b2cb-8d36147451fe", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T23:42:09.224Z", + "completed":"2017-12-01T23:42:09.224Z", + "new_balance":"33585.64", + "value":"-104.72" + } + }, + { + "id":"d43cef9c-409e-42c1-a7da-2a05fb0141a0", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T06:49:16.723Z", + "completed":"2017-12-04T06:49:16.723Z", + "new_balance":"33524.27", + "value":"-61.37" + } + }, + { + "id":"b9f4b1b0-be45-40f8-8dc0-466a40e8fb64", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T08:53:30.681Z", + "completed":"2017-12-04T08:53:30.681Z", + "new_balance":"33460.70", + "value":"-63.57" + } + }, + { + "id":"13661a32-ade9-453b-9376-91fed6c5513c", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T00:23:22.844Z", + "completed":"2017-12-11T00:23:22.844Z", + "new_balance":"33372.21", + "value":"-88.49" + } + }, + { + "id":"d5266a1b-6b4c-42c8-8684-c8f431ac2734", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T02:20:46.734Z", + "completed":"2017-12-11T02:20:46.734Z", + "new_balance":"33290.42", + "value":"-81.79" + } + }, + { + "id":"d1640e82-af8c-416a-ac3f-0f8742e130bd", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:30:28.737Z", + "completed":"2017-12-11T06:30:28.737Z", + "new_balance":"33244.95", + "value":"-45.47" + } + }, + { + "id":"63ddf6d5-f395-4612-8cc0-186b75b69f9f", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T14:36:05.787Z", + "completed":"2017-12-12T14:36:05.787Z", + "new_balance":"33238.18", + "value":"-6.77" + } + }, + { + "id":"008ba4d6-a253-4e1e-83e2-2a95efbef196", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T19:45:38.636Z", + "completed":"2017-12-12T19:45:38.636Z", + "new_balance":"33198.54", + "value":"-39.64" + } + }, + { + "id":"5141f739-c4a2-4818-986f-c99c2925c1ee", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T04:27:14.466Z", + "completed":"2017-12-16T04:27:14.466Z", + "new_balance":"33094.35", + "value":"-104.19" + } + }, + { + "id":"5e0549a0-99bf-44e5-bcd8-96199f64f801", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T19:56:37.632Z", + "completed":"2017-12-29T19:56:37.632Z", + "new_balance":"33066.37", + "value":"-27.98" + } + }, + { + "id":"ccf2bc3c-2191-4321-b1f9-110b6401b36b", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T09:18:39.778Z", + "completed":"2017-12-30T09:18:39.778Z", + "new_balance":"32749.16", + "value":"-317.21" + } + }, + { + "id":"71828994-82d2-44f0-98a7-2397842d1e69", + "this_account":{ + "id":"089137b1-91c4-43d6-a256-37dcd31ea18d", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T17:04:23.264Z", + "completed":"2017-12-30T17:04:23.264Z", + "new_balance":"35099.37", + "value":"2350.21" + } + }, + { + "id":"8aa6c1b9-3d69-4fdf-a8c9-47a0dbb56609", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T16:26:42.574Z", + "completed":"2016-03-01T16:26:42.574Z", + "new_balance":"3707.25", + "value":"-4.61" + } + }, + { + "id":"f86b4fb5-4dd3-4549-b3af-246612cdbdd0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T09:56:45.725Z", + "completed":"2016-03-02T09:56:45.725Z", + "new_balance":"3700.06", + "value":"-7.19" + } + }, + { + "id":"0e2dd05d-93d0-4e14-9430-9db43cd546a0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T05:10:46.387Z", + "completed":"2016-03-06T05:10:46.387Z", + "new_balance":"3693.53", + "value":"-6.53" + } + }, + { + "id":"b2d0614f-d1ee-425f-af88-0d740fa090e3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T15:31:49.116Z", + "completed":"2016-03-11T15:31:49.116Z", + "new_balance":"3692.88", + "value":"-0.65" + } + }, + { + "id":"c2716186-fb5f-48f8-9e35-daf96b482675", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T18:17:43.072Z", + "completed":"2016-03-13T18:17:43.072Z", + "new_balance":"3692.54", + "value":"-0.34" + } + }, + { + "id":"1794dfb2-d700-48df-a2da-61ee61a39de8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T02:22:09.110Z", + "completed":"2016-03-16T02:22:09.110Z", + "new_balance":"3669.30", + "value":"-23.24" + } + }, + { + "id":"b57fdcab-4997-40d4-a79b-87225f956633", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T01:28:42.005Z", + "completed":"2016-03-17T01:28:42.005Z", + "new_balance":"3656.20", + "value":"-13.10" + } + }, + { + "id":"6e8ba5ac-4b9e-4463-b554-d177fdc76738", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T14:45:59.946Z", + "completed":"2016-03-17T14:45:59.946Z", + "new_balance":"3651.93", + "value":"-4.27" + } + }, + { + "id":"2e4272d7-f89d-4c42-802b-ed2e5275c51c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T23:12:16.416Z", + "completed":"2016-03-19T23:12:16.416Z", + "new_balance":"3651.59", + "value":"-0.34" + } + }, + { + "id":"c81dbb96-22c2-42c4-8c07-a17081b6a363", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T06:09:01.905Z", + "completed":"2016-03-21T06:09:01.905Z", + "new_balance":"3649.27", + "value":"-2.32" + } + }, + { + "id":"520292bc-89bc-43c7-bf4f-ee4e650c257d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T05:41:23.440Z", + "completed":"2016-03-23T05:41:23.440Z", + "new_balance":"3644.66", + "value":"-4.61" + } + }, + { + "id":"7181a520-b5df-431d-99e8-a75e162dcf0a", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T14:39:46.998Z", + "completed":"2016-03-24T14:39:46.998Z", + "new_balance":"3644.01", + "value":"-0.65" + } + }, + { + "id":"c3688717-b519-41f1-a65c-1833b258653b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T23:31:22.877Z", + "completed":"2016-03-26T23:31:22.877Z", + "new_balance":"3642.86", + "value":"-1.15" + } + }, + { + "id":"0441d666-8eab-462b-a7c5-148c0aa450da", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T08:14:49.231Z", + "completed":"2016-04-01T08:14:49.231Z", + "new_balance":"3641.71", + "value":"-1.15" + } + }, + { + "id":"4bac4265-75a4-4683-ad47-1c86c274c973", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T11:35:46.191Z", + "completed":"2016-06-01T11:35:46.191Z", + "new_balance":"3637.10", + "value":"-4.61" + } + }, + { + "id":"521d0dfd-c52d-444e-a260-45dfc28497eb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T18:06:40.330Z", + "completed":"2016-06-04T18:06:40.330Z", + "new_balance":"3629.91", + "value":"-7.19" + } + }, + { + "id":"8930940c-d7f9-4b87-ba2a-c5ef202e2af2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T06:42:53.071Z", + "completed":"2016-06-19T06:42:53.071Z", + "new_balance":"3623.38", + "value":"-6.53" + } + }, + { + "id":"787e3c5f-1c5e-476b-982f-4b9ec41338fb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T00:26:12.190Z", + "completed":"2016-06-21T00:26:12.190Z", + "new_balance":"3622.73", + "value":"-0.65" + } + }, + { + "id":"89802208-8317-4c88-882f-cf642cea017f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T14:33:11.403Z", + "completed":"2016-06-24T14:33:11.403Z", + "new_balance":"3622.39", + "value":"-0.34" + } + }, + { + "id":"0914f7d6-85f2-4b72-86b0-af7972874703", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T02:24:05.326Z", + "completed":"2016-06-28T02:24:05.326Z", + "new_balance":"3618.12", + "value":"-4.27" + } + }, + { + "id":"e7adf460-ce6b-4b5e-8b1b-7664b7a941d8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T12:15:33.899Z", + "completed":"2016-06-28T12:15:33.899Z", + "new_balance":"3605.02", + "value":"-13.10" + } + }, + { + "id":"7cab66e7-a523-4362-aca7-37993e6d1369", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T23:43:06.337Z", + "completed":"2016-06-28T23:43:06.337Z", + "new_balance":"3581.78", + "value":"-23.24" + } + }, + { + "id":"8e711a5d-af29-455e-8607-c9db4d056aa6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T03:17:06.847Z", + "completed":"2016-06-29T03:17:06.847Z", + "new_balance":"3581.44", + "value":"-0.34" + } + }, + { + "id":"f299fbf9-6ab2-45a0-bdaf-e8a5e55cfd62", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T03:00:08.208Z", + "completed":"2016-06-30T03:00:08.208Z", + "new_balance":"3576.83", + "value":"-4.61" + } + }, + { + "id":"47b2b430-0f4e-41e5-b1b7-efc3a96ffd36", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T04:42:19.809Z", + "completed":"2016-06-30T04:42:19.809Z", + "new_balance":"3574.51", + "value":"-2.32" + } + }, + { + "id":"a78238d4-719d-436d-894f-ca686ae4adc2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T06:44:35.508Z", + "completed":"2016-06-30T06:44:35.508Z", + "new_balance":"3573.86", + "value":"-0.65" + } + }, + { + "id":"f0c694d0-73b3-4283-b2e0-9700112fcebe", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T23:29:38.060Z", + "completed":"2016-09-01T23:29:38.060Z", + "new_balance":"3572.01", + "value":"-1.85" + } + }, + { + "id":"159d94fe-d674-4109-b13f-1bb51f9f764e", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T11:01:56.625Z", + "completed":"2016-09-02T11:01:56.625Z", + "new_balance":"3564.82", + "value":"-7.19" + } + }, + { + "id":"72cfc5d7-af6d-4d9e-b425-5849be6386bc", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T19:40:05.966Z", + "completed":"2016-09-07T19:40:05.966Z", + "new_balance":"3558.29", + "value":"-6.53" + } + }, + { + "id":"f56f6b0e-82b1-4782-a4a7-a2f7afc88ada", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T11:42:53.713Z", + "completed":"2016-09-11T11:42:53.713Z", + "new_balance":"3557.64", + "value":"-0.65" + } + }, + { + "id":"052236a9-6268-4576-9a01-e42f7865a347", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T23:23:45.093Z", + "completed":"2016-09-15T23:23:45.093Z", + "new_balance":"3556.24", + "value":"-1.40" + } + }, + { + "id":"045d58d1-fa82-48af-9447-f9bebc825028", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T09:57:16.519Z", + "completed":"2016-09-17T09:57:16.519Z", + "new_balance":"3551.97", + "value":"-4.27" + } + }, + { + "id":"31673a93-7251-4eee-b261-295c49561e22", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T17:50:09.475Z", + "completed":"2016-09-17T17:50:09.475Z", + "new_balance":"3538.87", + "value":"-13.10" + } + }, + { + "id":"52c0dc39-094d-4351-9eb6-59a83bc4603b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T19:04:49.553Z", + "completed":"2016-09-17T19:04:49.553Z", + "new_balance":"3515.63", + "value":"-23.24" + } + }, + { + "id":"df2ecd16-db89-468b-bcd2-412bf0b23fe0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T18:50:49.330Z", + "completed":"2016-09-19T18:50:49.330Z", + "new_balance":"3515.29", + "value":"-0.34" + } + }, + { + "id":"36d9efd5-4299-4491-914a-c6a268d2ebd4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T04:50:02.134Z", + "completed":"2016-09-21T04:50:02.134Z", + "new_balance":"3512.97", + "value":"-2.32" + } + }, + { + "id":"20a5cd92-a69b-4d30-b7cc-e652eed2b4d6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T22:35:54.932Z", + "completed":"2016-09-23T22:35:54.932Z", + "new_balance":"3508.36", + "value":"-4.61" + } + }, + { + "id":"50707381-188a-4c06-b93b-59b357b28e53", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T05:24:55.073Z", + "completed":"2016-09-24T05:24:55.073Z", + "new_balance":"3507.71", + "value":"-0.65" + } + }, + { + "id":"886c5615-66f8-49ff-a2a6-33f1d1f3aa60", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T20:55:17.950Z", + "completed":"2016-09-27T20:55:17.950Z", + "new_balance":"3506.56", + "value":"-1.15" + } + }, + { + "id":"2ae0ca89-a1d8-4944-a4a2-7d5da9da1f92", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T02:46:40.359Z", + "completed":"2016-10-01T02:46:40.359Z", + "new_balance":"3505.41", + "value":"-1.15" + } + }, + { + "id":"6dab2372-94ce-4870-a71f-5641d5ff0f75", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:27:06.378Z", + "completed":"2016-12-01T15:27:06.378Z", + "new_balance":"3500.80", + "value":"-4.61" + } + }, + { + "id":"fb3c7fda-b970-49a6-a36e-33d464002314", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T21:49:32.245Z", + "completed":"2016-12-04T21:49:32.245Z", + "new_balance":"3493.61", + "value":"-7.19" + } + }, + { + "id":"dfd08aad-5ae1-4c40-ad0e-95288cdd2f7d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T00:07:42.567Z", + "completed":"2016-12-19T00:07:42.567Z", + "new_balance":"3487.08", + "value":"-6.53" + } + }, + { + "id":"cb85e520-b361-419d-9db9-0b2df2dff498", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T07:34:27.812Z", + "completed":"2016-12-24T07:34:27.812Z", + "new_balance":"3486.74", + "value":"-0.34" + } + }, + { + "id":"4b169672-06e0-4374-a4fc-860de3e2ea94", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T22:57:30.731Z", + "completed":"2016-12-24T22:57:30.731Z", + "new_balance":"3486.09", + "value":"-0.65" + } + }, + { + "id":"304382c0-2ff0-4f67-bb85-7172b2f599f2", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T02:25:26.793Z", + "completed":"2016-12-28T02:25:26.793Z", + "new_balance":"3481.82", + "value":"-4.27" + } + }, + { + "id":"8769697b-4919-4b0e-bbd4-4ccc3c388eeb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T12:26:49.362Z", + "completed":"2016-12-28T12:26:49.362Z", + "new_balance":"3468.72", + "value":"-13.10" + } + }, + { + "id":"7d28e5d4-bd28-4444-9818-39140804e2a8", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T15:24:24.082Z", + "completed":"2016-12-28T15:24:24.082Z", + "new_balance":"3445.48", + "value":"-23.24" + } + }, + { + "id":"b5e78f23-71db-428e-8d10-3ccf492808f1", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T11:30:46.985Z", + "completed":"2016-12-29T11:30:46.985Z", + "new_balance":"3445.14", + "value":"-0.34" + } + }, + { + "id":"1d698842-919d-4dcb-8945-2f27b301d227", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T00:22:13.962Z", + "completed":"2016-12-30T00:22:13.962Z", + "new_balance":"3444.49", + "value":"-0.65" + } + }, + { + "id":"fe8c44eb-e2d6-4b88-bbcd-40b2d66b43f7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T10:06:51.382Z", + "completed":"2016-12-30T10:06:51.382Z", + "new_balance":"3442.17", + "value":"-2.32" + } + }, + { + "id":"1c57b9a5-22ad-4afc-a0c8-fb0203301aa4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T18:07:16.474Z", + "completed":"2016-12-30T18:07:16.474Z", + "new_balance":"3437.56", + "value":"-4.61" + } + }, + { + "id":"9dea54eb-11ad-4c8a-810b-3c4e6cacb321", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T00:12:33.588Z", + "completed":"2017-03-01T00:12:33.588Z", + "new_balance":"3432.95", + "value":"-4.61" + } + }, + { + "id":"f01c5cc9-8136-4872-9f8d-08c88d88c174", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T04:18:43.611Z", + "completed":"2017-03-02T04:18:43.611Z", + "new_balance":"3425.76", + "value":"-7.19" + } + }, + { + "id":"8bbc60cd-709e-40e8-adb9-8c3ca1628f34", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T14:24:01.601Z", + "completed":"2017-03-06T14:24:01.601Z", + "new_balance":"3419.23", + "value":"-6.53" + } + }, + { + "id":"c7802e48-ee5a-4630-9e86-f5a154695c17", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T08:34:57.392Z", + "completed":"2017-03-11T08:34:57.392Z", + "new_balance":"3418.58", + "value":"-0.65" + } + }, + { + "id":"1514c4a5-bf9b-4bb0-a072-823a1efb8727", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T08:58:16.442Z", + "completed":"2017-03-13T08:58:16.442Z", + "new_balance":"3418.24", + "value":"-0.34" + } + }, + { + "id":"60aa12df-e7c9-41fe-b74c-c29e53cbd28d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T12:17:31.764Z", + "completed":"2017-03-16T12:17:31.764Z", + "new_balance":"3395.00", + "value":"-23.24" + } + }, + { + "id":"609a2774-6c03-47fc-9a55-be3a06ca3fa7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T05:36:39.633Z", + "completed":"2017-03-17T05:36:39.633Z", + "new_balance":"3381.90", + "value":"-13.10" + } + }, + { + "id":"dff4ea5f-bfdc-4107-bd5c-137bf62bf9fd", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T06:34:12.257Z", + "completed":"2017-03-17T06:34:12.257Z", + "new_balance":"3377.63", + "value":"-4.27" + } + }, + { + "id":"c94dd8b1-2237-4a9f-ad0a-2aef6edfe84f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T11:12:25.059Z", + "completed":"2017-03-19T11:12:25.059Z", + "new_balance":"3377.29", + "value":"-0.34" + } + }, + { + "id":"e7e50725-ade6-489e-a591-ccc6e6b3d7c6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T09:14:46.812Z", + "completed":"2017-03-21T09:14:46.812Z", + "new_balance":"3374.97", + "value":"-2.32" + } + }, + { + "id":"5f678d66-197d-4475-832f-ddeacd509e19", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T04:30:14.455Z", + "completed":"2017-03-23T04:30:14.455Z", + "new_balance":"3370.36", + "value":"-4.61" + } + }, + { + "id":"6d01da08-7438-4940-ba9b-43059293bb6b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T03:58:36.623Z", + "completed":"2017-03-24T03:58:36.623Z", + "new_balance":"3369.71", + "value":"-0.65" + } + }, + { + "id":"760abe84-f531-4af0-890c-c35ee7eb7cf9", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T00:43:16.364Z", + "completed":"2017-03-26T00:43:16.364Z", + "new_balance":"3368.56", + "value":"-1.15" + } + }, + { + "id":"28cbc0ef-4d8a-4d14-b5fc-8879ad252258", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T07:52:16.384Z", + "completed":"2017-04-01T07:52:16.384Z", + "new_balance":"3367.41", + "value":"-1.15" + } + }, + { + "id":"7f65cd8f-713d-41c1-a016-5db494ae538d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T18:24:52.000Z", + "completed":"2017-06-01T18:24:52.000Z", + "new_balance":"3362.80", + "value":"-4.61" + } + }, + { + "id":"2fce688b-de39-468f-9197-c15e3f73e67c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T11:59:32.983Z", + "completed":"2017-06-04T11:59:32.983Z", + "new_balance":"3355.61", + "value":"-7.19" + } + }, + { + "id":"58d6c67d-618b-405e-a54d-e37eaa8d64d6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T09:19:17.699Z", + "completed":"2017-06-19T09:19:17.699Z", + "new_balance":"3349.08", + "value":"-6.53" + } + }, + { + "id":"49284769-7611-45ed-958c-012e6e882ec5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T20:24:47.276Z", + "completed":"2017-06-21T20:24:47.276Z", + "new_balance":"3348.43", + "value":"-0.65" + } + }, + { + "id":"86c19f5d-b4ac-4fc1-aee7-eea6a77e2eb4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T22:22:38.413Z", + "completed":"2017-06-24T22:22:38.413Z", + "new_balance":"3348.09", + "value":"-0.34" + } + }, + { + "id":"5a4efccb-d263-48b9-be8f-516415b3d6e7", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T00:04:59.473Z", + "completed":"2017-06-28T00:04:59.473Z", + "new_balance":"3343.82", + "value":"-4.27" + } + }, + { + "id":"7de19532-2823-4260-8c11-8400fb3b08c3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T21:26:32.190Z", + "completed":"2017-06-28T21:26:32.190Z", + "new_balance":"3320.58", + "value":"-23.24" + } + }, + { + "id":"3765b48a-7661-4174-9037-2d31dc9a10ab", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T23:49:30.193Z", + "completed":"2017-06-28T23:49:30.193Z", + "new_balance":"3307.48", + "value":"-13.10" + } + }, + { + "id":"6b10e3db-8616-4836-8cf3-e7ce7da86133", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T09:31:04.493Z", + "completed":"2017-06-29T09:31:04.493Z", + "new_balance":"3307.14", + "value":"-0.34" + } + }, + { + "id":"365486ca-b90c-4bee-809b-37dee4bce3b0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T05:59:58.250Z", + "completed":"2017-06-30T05:59:58.250Z", + "new_balance":"3302.53", + "value":"-4.61" + } + }, + { + "id":"aeab4da3-3cf5-48db-af9a-09cc683d16a3", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:50:19.579Z", + "completed":"2017-06-30T10:50:19.579Z", + "new_balance":"3301.88", + "value":"-0.65" + } + }, + { + "id":"9868776c-f326-4be4-8747-8ea2331f406d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T21:27:43.817Z", + "completed":"2017-06-30T21:27:43.817Z", + "new_balance":"3299.56", + "value":"-2.32" + } + }, + { + "id":"bbe3f7c0-36ad-4bba-af85-8ec34637d1f0", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T14:47:37.227Z", + "completed":"2017-09-01T14:47:37.227Z", + "new_balance":"3297.71", + "value":"-1.85" + } + }, + { + "id":"ba7a2aa2-9c94-420e-9621-f2395b0631e5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T08:43:52.487Z", + "completed":"2017-09-02T08:43:52.487Z", + "new_balance":"3290.52", + "value":"-7.19" + } + }, + { + "id":"1f6be143-893c-4c8b-bb5f-74c6bb75df60", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T13:35:22.810Z", + "completed":"2017-09-07T13:35:22.810Z", + "new_balance":"3283.99", + "value":"-6.53" + } + }, + { + "id":"4386190b-adce-4b2c-9a97-219274755022", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T00:34:06.611Z", + "completed":"2017-09-11T00:34:06.611Z", + "new_balance":"3283.34", + "value":"-0.65" + } + }, + { + "id":"262c5807-6c3f-4e2a-ad50-cb3519f7fc3d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T17:42:38.991Z", + "completed":"2017-09-15T17:42:38.991Z", + "new_balance":"3281.94", + "value":"-1.40" + } + }, + { + "id":"cb9b6f64-8310-4e9d-8019-6962b090cd9f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T10:10:09.765Z", + "completed":"2017-09-17T10:10:09.765Z", + "new_balance":"3268.84", + "value":"-13.10" + } + }, + { + "id":"c47ce41f-10c9-4c8f-bf17-787a8927f3c6", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T12:00:34.090Z", + "completed":"2017-09-17T12:00:34.090Z", + "new_balance":"3245.60", + "value":"-23.24" + } + }, + { + "id":"e2659b9d-d504-41ab-9507-bdb0edf6ec4f", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T13:37:30.772Z", + "completed":"2017-09-17T13:37:30.772Z", + "new_balance":"3241.33", + "value":"-4.27" + } + }, + { + "id":"337ca840-cb00-4939-975d-b3ce0752df48", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T08:26:06.910Z", + "completed":"2017-09-19T08:26:06.910Z", + "new_balance":"3240.99", + "value":"-0.34" + } + }, + { + "id":"8548ecfe-0e84-4b43-9951-0026fad417c4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T19:09:59.192Z", + "completed":"2017-09-21T19:09:59.192Z", + "new_balance":"3238.67", + "value":"-2.32" + } + }, + { + "id":"2ea2f695-aba1-4515-9052-45d5ff3b130e", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T08:54:46.076Z", + "completed":"2017-09-23T08:54:46.076Z", + "new_balance":"3234.06", + "value":"-4.61" + } + }, + { + "id":"79d591d1-6038-4398-a0b3-1b9924d82eeb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T07:21:02.426Z", + "completed":"2017-09-24T07:21:02.426Z", + "new_balance":"3233.41", + "value":"-0.65" + } + }, + { + "id":"3b5e0ab4-2d6e-4b41-8551-7f929d969ad5", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T18:29:17.388Z", + "completed":"2017-09-27T18:29:17.388Z", + "new_balance":"3232.26", + "value":"-1.15" + } + }, + { + "id":"c56ee34e-290a-4dad-8d3f-1efc08e6139d", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T07:21:26.258Z", + "completed":"2017-10-01T07:21:26.258Z", + "new_balance":"3231.11", + "value":"-1.15" + } + }, + { + "id":"1e179fd6-c711-4bfe-b6bd-25d1ed2144bb", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T20:02:50.227Z", + "completed":"2017-12-01T20:02:50.227Z", + "new_balance":"3226.50", + "value":"-4.61" + } + }, + { + "id":"70446655-6027-4819-8507-fa1684e56e87", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T18:38:54.578Z", + "completed":"2017-12-04T18:38:54.578Z", + "new_balance":"3219.31", + "value":"-7.19" + } + }, + { + "id":"2e53c72b-e25e-4612-a288-d3d062603b6b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T05:02:01.249Z", + "completed":"2017-12-19T05:02:01.249Z", + "new_balance":"3212.78", + "value":"-6.53" + } + }, + { + "id":"71e49d0e-e049-446d-b424-f2275927f467", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T00:43:54.382Z", + "completed":"2017-12-24T00:43:54.382Z", + "new_balance":"3212.13", + "value":"-0.65" + } + }, + { + "id":"a70ad47c-5c41-4059-bf60-5aa777a33093", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T11:54:16.222Z", + "completed":"2017-12-24T11:54:16.222Z", + "new_balance":"3211.79", + "value":"-0.34" + } + }, + { + "id":"2a108ec8-6ae8-475d-99f2-515de3d27271", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T10:03:07.451Z", + "completed":"2017-12-28T10:03:07.451Z", + "new_balance":"3207.52", + "value":"-4.27" + } + }, + { + "id":"627765c2-e785-4574-9391-a9c8edb900f4", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T10:10:34.747Z", + "completed":"2017-12-28T10:10:34.747Z", + "new_balance":"3184.28", + "value":"-23.24" + } + }, + { + "id":"f5b1fc5a-fb1f-480a-89d8-50a1b476c655", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T22:44:41.578Z", + "completed":"2017-12-28T22:44:41.578Z", + "new_balance":"3171.18", + "value":"-13.10" + } + }, + { + "id":"7952f20f-1a99-4c3c-980f-d86bb9ade941", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T19:48:08.112Z", + "completed":"2017-12-29T19:48:08.112Z", + "new_balance":"3170.84", + "value":"-0.34" + } + }, + { + "id":"40b70a0a-fcb6-42c8-879d-78675889033b", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T18:34:28.174Z", + "completed":"2017-12-30T18:34:28.174Z", + "new_balance":"3168.52", + "value":"-2.32" + } + }, + { + "id":"cc279f02-8c14-44aa-b9cf-2001e7a2590a", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T19:25:16.022Z", + "completed":"2017-12-30T19:25:16.022Z", + "new_balance":"3163.91", + "value":"-4.61" + } + }, + { + "id":"afa44d3f-e82d-48c8-abd6-8e8ea395d32c", + "this_account":{ + "id":"0bdf2a41-372b-4c09-963a-e3a21c5ba69a", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T22:38:53.934Z", + "completed":"2017-12-30T22:38:53.934Z", + "new_balance":"3163.26", + "value":"-0.65" + } + }, + { + "id":"99f49667-d14e-49f1-94cc-9a609ed7b909", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T03:26:15.870Z", + "completed":"2016-01-01T03:26:15.870Z", + "new_balance":"21315.98", + "value":"-134.48" + } + }, + { + "id":"4040090e-4858-4e24-a5e1-f449eafe487d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T08:01:06.151Z", + "completed":"2016-01-01T08:01:06.151Z", + "new_balance":"21281.55", + "value":"-34.43" + } + }, + { + "id":"135149fc-d71e-49aa-84fc-e246d802b056", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T12:54:28.660Z", + "completed":"2016-01-01T12:54:28.660Z", + "new_balance":"21247.12", + "value":"-34.43" + } + }, + { + "id":"d554a15a-c401-458b-bc25-cc6fdd7f98eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T13:39:19.771Z", + "completed":"2016-01-01T13:39:19.771Z", + "new_balance":"20736.58", + "value":"-510.54" + } + }, + { + "id":"f6a1f660-2391-4311-be45-50beb7c657c5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T16:37:29.763Z", + "completed":"2016-01-01T16:37:29.763Z", + "new_balance":"20706.70", + "value":"-29.88" + } + }, + { + "id":"47ac533b-5d53-4e78-8874-8b0fd6aad094", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T18:20:04.647Z", + "completed":"2016-01-01T18:20:04.647Z", + "new_balance":"20653.52", + "value":"-53.18" + } + }, + { + "id":"47b9818c-6997-4c53-be29-bfb7ae363c66", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T11:07:08.242Z", + "completed":"2016-01-02T11:07:08.242Z", + "new_balance":"20566.96", + "value":"-86.56" + } + }, + { + "id":"9a8d4355-8c3a-4de4-9c6b-c75ffb67e7f2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T23:49:26.300Z", + "completed":"2016-01-02T23:49:26.300Z", + "new_balance":"20494.97", + "value":"-71.99" + } + }, + { + "id":"8d9bb7f4-07ca-4bd6-9e26-3abd90c7e3f9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T05:11:15.505Z", + "completed":"2016-01-04T05:11:15.505Z", + "new_balance":"20457.78", + "value":"-37.19" + } + }, + { + "id":"2cba1fa5-86d2-497f-a7ad-63be111ecfca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T20:24:27.780Z", + "completed":"2016-01-04T20:24:27.780Z", + "new_balance":"20423.00", + "value":"-34.78" + } + }, + { + "id":"8eea9090-e3b1-4058-811f-6ae509ca9d7f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T15:38:11.492Z", + "completed":"2016-01-07T15:38:11.492Z", + "new_balance":"20349.07", + "value":"-73.93" + } + }, + { + "id":"c626e1dd-56d3-4e58-8e54-81703cf6d65a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T00:40:39.352Z", + "completed":"2016-01-09T00:40:39.352Z", + "new_balance":"20345.48", + "value":"-3.59" + } + }, + { + "id":"322bd933-6a4b-4acc-beb6-5847ab771e49", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T03:56:26.534Z", + "completed":"2016-01-10T03:56:26.534Z", + "new_balance":"20318.03", + "value":"-27.45" + } + }, + { + "id":"d2fdcb51-8640-4c16-8d96-d8932fb6896d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T21:13:55.506Z", + "completed":"2016-01-12T21:13:55.506Z", + "new_balance":"20286.74", + "value":"-31.29" + } + }, + { + "id":"157b0122-3017-4ce4-8611-0a9453be6dc8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T05:58:46.871Z", + "completed":"2016-01-15T05:58:46.871Z", + "new_balance":"20271.92", + "value":"-14.82" + } + }, + { + "id":"0e975561-c230-4b52-a1fa-a90b586d842c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T23:58:25.256Z", + "completed":"2016-01-15T23:58:25.256Z", + "new_balance":"20264.76", + "value":"-7.16" + } + }, + { + "id":"38075d18-d031-4683-9b10-e71093725daa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T09:50:38.547Z", + "completed":"2016-01-17T09:50:38.547Z", + "new_balance":"20242.51", + "value":"-22.25" + } + }, + { + "id":"4e052e1d-58be-4584-a425-fd3b55be46a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T21:40:18.171Z", + "completed":"2016-01-19T21:40:18.171Z", + "new_balance":"20053.24", + "value":"-189.27" + } + }, + { + "id":"59160adc-89ee-42dc-a6bc-1b3d63bc753a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T14:07:43.400Z", + "completed":"2016-01-20T14:07:43.400Z", + "new_balance":"20046.53", + "value":"-6.71" + } + }, + { + "id":"9028ed54-d0cd-468d-9100-79eec1dad8bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T04:12:08.396Z", + "completed":"2016-01-22T04:12:08.396Z", + "new_balance":"20001.29", + "value":"-45.24" + } + }, + { + "id":"814e0452-7434-41d7-ad8e-4e66cf3db75a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T21:54:07.707Z", + "completed":"2016-01-22T21:54:07.707Z", + "new_balance":"19991.59", + "value":"-9.70" + } + }, + { + "id":"1b768f69-280e-4e20-87c4-874a60f0647a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T16:46:18.684Z", + "completed":"2016-01-24T16:46:18.684Z", + "new_balance":"19959.31", + "value":"-32.28" + } + }, + { + "id":"ea746836-c94a-4c94-abba-aaccf5b7629d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T02:40:08.218Z", + "completed":"2016-01-25T02:40:08.218Z", + "new_balance":"19952.60", + "value":"-6.71" + } + }, + { + "id":"4c3096d5-9622-405b-861d-84a42931b13c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T20:38:54.442Z", + "completed":"2016-01-25T20:38:54.442Z", + "new_balance":"19910.08", + "value":"-42.52" + } + }, + { + "id":"46c9c878-7056-42ee-94ce-b296c77b0692", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T08:33:35.289Z", + "completed":"2016-01-26T08:33:35.289Z", + "new_balance":"19846.51", + "value":"-63.57" + } + }, + { + "id":"53a18d03-ceb3-4ea1-b228-af99f7e1d18c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T00:19:07.669Z", + "completed":"2016-02-01T00:19:07.669Z", + "new_balance":"19793.33", + "value":"-53.18" + } + }, + { + "id":"20916029-8743-4990-a5a4-fb7b44f82099", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T01:58:37.676Z", + "completed":"2016-02-01T01:58:37.676Z", + "new_balance":"19758.90", + "value":"-34.43" + } + }, + { + "id":"f2ba33d4-ffb1-410b-8cd4-ea7c778ef3d8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T03:10:46.714Z", + "completed":"2016-02-01T03:10:46.714Z", + "new_balance":"19729.02", + "value":"-29.88" + } + }, + { + "id":"62fd02b0-4215-447a-bb58-77fd6d074671", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T09:31:34.310Z", + "completed":"2016-02-01T09:31:34.310Z", + "new_balance":"19594.54", + "value":"-134.48" + } + }, + { + "id":"d13faa53-f478-4e42-9683-301089adaef9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:20:21.764Z", + "completed":"2016-02-01T10:20:21.764Z", + "new_balance":"21274.95", + "value":"1680.41" + } + }, + { + "id":"fbd35887-4b99-4db7-a1e0-e417098da492", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T15:47:45.012Z", + "completed":"2016-02-01T15:47:45.012Z", + "new_balance":"20764.41", + "value":"-510.54" + } + }, + { + "id":"841a3e88-9ffb-4329-a585-048340c4dfd7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T07:03:00.475Z", + "completed":"2016-02-02T07:03:00.475Z", + "new_balance":"20749.77", + "value":"-14.64" + } + }, + { + "id":"66af7539-a2eb-4789-8683-15610416f4b5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T19:12:57.104Z", + "completed":"2016-02-02T19:12:57.104Z", + "new_balance":"20663.21", + "value":"-86.56" + } + }, + { + "id":"f2f07618-dc88-4679-bf98-a0f64dcc74d8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T21:43:28.710Z", + "completed":"2016-02-02T21:43:28.710Z", + "new_balance":"20647.28", + "value":"-15.93" + } + }, + { + "id":"3cc3ea9d-e4f8-4c63-9024-4aea3e60153a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T15:11:23.575Z", + "completed":"2016-02-03T15:11:23.575Z", + "new_balance":"20619.27", + "value":"-28.01" + } + }, + { + "id":"3b40543a-83aa-44f9-b639-7244505c64c7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T20:53:43.031Z", + "completed":"2016-02-03T20:53:43.031Z", + "new_balance":"20595.90", + "value":"-23.37" + } + }, + { + "id":"a9179d84-fc8d-4817-a308-92f109be5d80", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T23:52:22.346Z", + "completed":"2016-02-03T23:52:22.346Z", + "new_balance":"20570.10", + "value":"-25.80" + } + }, + { + "id":"4efa6012-979d-41e4-b11f-8ad9043736a6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T23:17:10.805Z", + "completed":"2016-02-06T23:17:10.805Z", + "new_balance":"20496.17", + "value":"-73.93" + } + }, + { + "id":"09aa9a34-6607-42cc-9e58-2b123776b0e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T01:38:45.508Z", + "completed":"2016-02-08T01:38:45.508Z", + "new_balance":"20492.08", + "value":"-4.09" + } + }, + { + "id":"5fca10e8-466c-4e6e-8133-d75b8060df32", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T16:28:09.553Z", + "completed":"2016-02-08T16:28:09.553Z", + "new_balance":"20464.23", + "value":"-27.85" + } + }, + { + "id":"e4064581-fdd7-463c-aeac-bb82664ea4e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T20:18:34.500Z", + "completed":"2016-02-08T20:18:34.500Z", + "new_balance":"20443.13", + "value":"-21.10" + } + }, + { + "id":"7ba07c97-b116-4a76-bd7b-99bb2217ce1e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T15:06:37.846Z", + "completed":"2016-02-09T15:06:37.846Z", + "new_balance":"20397.96", + "value":"-45.17" + } + }, + { + "id":"c41876b5-b505-4291-bf9b-5b6779786890", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T21:37:12.804Z", + "completed":"2016-02-09T21:37:12.804Z", + "new_balance":"20349.26", + "value":"-48.70" + } + }, + { + "id":"d7cbf9e2-9166-474e-91bd-890e9f468ea4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T23:07:09.240Z", + "completed":"2016-02-12T23:07:09.240Z", + "new_balance":"20343.49", + "value":"-5.77" + } + }, + { + "id":"546a4901-113a-4ff4-a8e6-687d3c158a26", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T09:11:46.470Z", + "completed":"2016-02-13T09:11:46.470Z", + "new_balance":"20299.70", + "value":"-43.79" + } + }, + { + "id":"0c58d94c-8ad6-4c64-89a2-a1c161c60994", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T09:55:07.598Z", + "completed":"2016-02-13T09:55:07.598Z", + "new_balance":"20291.18", + "value":"-8.52" + } + }, + { + "id":"23c59004-49f6-4f63-8c07-dac90dc96360", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T11:34:06.580Z", + "completed":"2016-02-13T11:34:06.580Z", + "new_balance":"20330.19", + "value":"39.01" + } + }, + { + "id":"022f6e7d-96cb-4c12-ad38-bfbc9619e3ab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:44:01.167Z", + "completed":"2016-02-14T14:44:01.167Z", + "new_balance":"20284.56", + "value":"-45.63" + } + }, + { + "id":"b4eee58e-37e5-4d96-8f1b-c2956b8f55af", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T02:24:23.929Z", + "completed":"2016-02-15T02:24:23.929Z", + "new_balance":"20259.00", + "value":"-25.56" + } + }, + { + "id":"f3a57b09-3720-4658-af6c-890b798925b2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T22:15:43.828Z", + "completed":"2016-02-28T22:15:43.828Z", + "new_balance":"20225.47", + "value":"-33.53" + } + }, + { + "id":"8728b641-14c7-4dbe-927f-2faca33ed032", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T05:56:00.884Z", + "completed":"2016-03-01T05:56:00.884Z", + "new_balance":"20191.04", + "value":"-34.43" + } + }, + { + "id":"db21fa94-a557-45a5-a4a3-0438b6188433", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T08:54:52.831Z", + "completed":"2016-03-01T08:54:52.831Z", + "new_balance":"19680.50", + "value":"-510.54" + } + }, + { + "id":"5a4d2251-d10d-4fae-96f4-5bfec42f6c6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T10:51:52.779Z", + "completed":"2016-03-01T10:51:52.779Z", + "new_balance":"19627.32", + "value":"-53.18" + } + }, + { + "id":"8985d853-4466-41a5-b78d-0be2095c48d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T16:37:37.380Z", + "completed":"2016-03-01T16:37:37.380Z", + "new_balance":"19597.44", + "value":"-29.88" + } + }, + { + "id":"4ad3e87c-1623-4796-b16a-7c32fa34b0b6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T19:56:49.625Z", + "completed":"2016-03-01T19:56:49.625Z", + "new_balance":"19462.96", + "value":"-134.48" + } + }, + { + "id":"7e7f4175-3c81-4a60-9d28-c4bafe021b66", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T23:40:14.383Z", + "completed":"2016-03-01T23:40:14.383Z", + "new_balance":"21143.37", + "value":"1680.41" + } + }, + { + "id":"d2fddd6c-3045-411d-8f3f-911d5d09430c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T15:31:29.681Z", + "completed":"2016-03-02T15:31:29.681Z", + "new_balance":"21056.81", + "value":"-86.56" + } + }, + { + "id":"b1c745dd-d5ec-4589-b104-a8786f1fc389", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T00:23:39.407Z", + "completed":"2016-03-04T00:23:39.407Z", + "new_balance":"21026.00", + "value":"-30.81" + } + }, + { + "id":"0b3e06ae-b75f-48ab-8646-97501ac83c52", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T02:16:01.457Z", + "completed":"2016-03-04T02:16:01.457Z", + "new_balance":"21019.53", + "value":"-6.47" + } + }, + { + "id":"1073118d-05c3-450c-93d0-947d6eb19c0d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T08:55:20.045Z", + "completed":"2016-03-04T08:55:20.045Z", + "new_balance":"20938.32", + "value":"-81.21" + } + }, + { + "id":"c6b54e79-d217-4150-8d6e-e8412853a0ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T15:33:14.269Z", + "completed":"2016-03-04T15:33:14.269Z", + "new_balance":"20927.79", + "value":"-10.53" + } + }, + { + "id":"508c9e89-578d-429f-9b2b-d49dcb6feefe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T09:28:26.559Z", + "completed":"2016-03-05T09:28:26.559Z", + "new_balance":"20886.56", + "value":"-41.23" + } + }, + { + "id":"2dd7857a-982c-491c-9262-00a26883dd57", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T22:47:53.414Z", + "completed":"2016-03-05T22:47:53.414Z", + "new_balance":"20881.79", + "value":"-4.77" + } + }, + { + "id":"0849935c-dd59-4785-b6ee-20a88c9b1cf8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:46:47.763Z", + "completed":"2016-03-06T02:46:47.763Z", + "new_balance":"20800.58", + "value":"-81.21" + } + }, + { + "id":"e4b2f215-5ce1-4728-8157-11c4ede76d0c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T08:27:38.153Z", + "completed":"2016-03-06T08:27:38.153Z", + "new_balance":"20716.78", + "value":"-83.80" + } + }, + { + "id":"2ee92f55-0ae9-4ea9-828e-f7f5746c7820", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T05:55:13.768Z", + "completed":"2016-03-07T05:55:13.768Z", + "new_balance":"20674.44", + "value":"-42.34" + } + }, + { + "id":"3bd0e208-7abc-43a3-98b7-6fc44ae767d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:46:06.523Z", + "completed":"2016-03-08T05:46:06.523Z", + "new_balance":"20590.64", + "value":"-83.80" + } + }, + { + "id":"85ac657e-f306-42e9-b808-51d0efce4845", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T09:49:51.978Z", + "completed":"2016-03-09T09:49:51.978Z", + "new_balance":"20587.06", + "value":"-3.58" + } + }, + { + "id":"288c067e-4fc9-4e6e-bb81-addd90f22166", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T00:16:16.959Z", + "completed":"2016-03-10T00:16:16.959Z", + "new_balance":"20495.59", + "value":"-91.47" + } + }, + { + "id":"846cec63-087b-48af-a30d-1e2bf1af0550", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:44:48.695Z", + "completed":"2016-03-11T08:44:48.695Z", + "new_balance":"20488.31", + "value":"-7.28" + } + }, + { + "id":"7d104465-b8f8-4aac-934a-1a09b2e81878", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T10:36:54.919Z", + "completed":"2016-03-12T10:36:54.919Z", + "new_balance":"20475.07", + "value":"-13.24" + } + }, + { + "id":"8926d843-72d1-4059-9a47-711b957dd9a7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T11:55:11.817Z", + "completed":"2016-03-12T11:55:11.817Z", + "new_balance":"20447.77", + "value":"-27.30" + } + }, + { + "id":"4a4d49de-6786-44e6-9e22-5110240ea085", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T05:59:45.954Z", + "completed":"2016-03-13T05:59:45.954Z", + "new_balance":"20401.76", + "value":"-46.01" + } + }, + { + "id":"aa661232-86a2-4c9e-80b3-3f3fe57a1247", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T20:21:10.661Z", + "completed":"2016-03-14T20:21:10.661Z", + "new_balance":"20394.77", + "value":"-6.99" + } + }, + { + "id":"c3c6678f-9136-4f11-8e5a-b20f55b40720", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T16:35:03.152Z", + "completed":"2016-03-16T16:35:03.152Z", + "new_balance":"20347.97", + "value":"-46.80" + } + }, + { + "id":"ebc39a09-d93a-449f-9db0-d51e540f8460", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T21:11:59.883Z", + "completed":"2016-03-16T21:11:59.883Z", + "new_balance":"20266.56", + "value":"-81.41" + } + }, + { + "id":"5f07cc4f-c16b-4f51-9910-e353b89cf1bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T06:28:39.736Z", + "completed":"2016-03-18T06:28:39.736Z", + "new_balance":"20259.57", + "value":"-6.99" + } + }, + { + "id":"fcb7670c-e563-4e70-b1d7-b860d29bfae9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T06:12:09.443Z", + "completed":"2016-03-19T06:12:09.443Z", + "new_balance":"20225.66", + "value":"-33.91" + } + }, + { + "id":"aa6b1f71-5e95-4767-8183-2c53ee549074", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T19:23:44.400Z", + "completed":"2016-03-19T19:23:44.400Z", + "new_balance":"20174.65", + "value":"-51.01" + } + }, + { + "id":"d9c170ad-1ded-444b-bb90-2d0afae07e33", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T21:35:02.638Z", + "completed":"2016-03-19T21:35:02.638Z", + "new_balance":"20137.70", + "value":"-36.95" + } + }, + { + "id":"6edf48fc-026d-4dc9-9aaa-eedbf159cbff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T03:17:35.832Z", + "completed":"2016-03-20T03:17:35.832Z", + "new_balance":"20078.80", + "value":"-58.90" + } + }, + { + "id":"e2620c4f-eeb1-4acb-b921-76a2e643943a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T04:59:40.735Z", + "completed":"2016-03-20T04:59:40.735Z", + "new_balance":"20005.29", + "value":"-73.51" + } + }, + { + "id":"9860b83a-d16b-4c35-9b51-7dbebbc459e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T22:06:51.418Z", + "completed":"2016-03-21T22:06:51.418Z", + "new_balance":"19998.82", + "value":"-6.47" + } + }, + { + "id":"89798ef0-c0ec-4ce7-8231-25b3943c4d05", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T22:38:45.258Z", + "completed":"2016-03-21T22:38:45.258Z", + "new_balance":"19992.94", + "value":"-5.88" + } + }, + { + "id":"af672553-8fa9-4ce4-935c-8c9880099374", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T13:25:27.951Z", + "completed":"2016-03-23T13:25:27.951Z", + "new_balance":"19981.71", + "value":"-11.23" + } + }, + { + "id":"ed4e1a8b-c81e-4c63-8979-f8a136b72da0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T23:53:20.110Z", + "completed":"2016-03-23T23:53:20.110Z", + "new_balance":"19936.20", + "value":"-45.51" + } + }, + { + "id":"71517e6e-8b14-412b-ba0a-d9d42ff069ca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T02:32:47.440Z", + "completed":"2016-03-24T02:32:47.440Z", + "new_balance":"19907.34", + "value":"-28.86" + } + }, + { + "id":"b6fa2590-6009-4ec8-a8c1-3d6a0fdecad4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T05:19:09.074Z", + "completed":"2016-03-25T05:19:09.074Z", + "new_balance":"19873.31", + "value":"-34.03" + } + }, + { + "id":"5dc12ab5-dbe5-4810-b6da-fc24e798c752", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:38:44.267Z", + "completed":"2016-03-25T23:38:44.267Z", + "new_balance":"19857.23", + "value":"-16.08" + } + }, + { + "id":"5f7c611b-fb8e-4dc8-967e-d191a1b0ef6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T13:18:30.770Z", + "completed":"2016-03-27T13:18:30.770Z", + "new_balance":"19667.96", + "value":"-189.27" + } + }, + { + "id":"47210ea8-d494-4cad-a782-2d35c6035424", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T06:36:06.063Z", + "completed":"2016-03-28T06:36:06.063Z", + "new_balance":"19640.99", + "value":"-26.97" + } + }, + { + "id":"b93a8615-08ba-4a03-b841-9b5a4b365c13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T04:35:27.727Z", + "completed":"2016-04-01T04:35:27.727Z", + "new_balance":"19611.11", + "value":"-29.88" + } + }, + { + "id":"c8827646-da53-4c26-870a-5b2b7175dfd6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T04:35:31.512Z", + "completed":"2016-04-01T04:35:31.512Z", + "new_balance":"19100.57", + "value":"-510.54" + } + }, + { + "id":"bd487fae-0906-4ece-9e00-3675be48bffe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T05:55:16.040Z", + "completed":"2016-04-01T05:55:16.040Z", + "new_balance":"18966.09", + "value":"-134.48" + } + }, + { + "id":"f46060ca-c884-459e-afd5-b6256ea0ad70", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:34:28.960Z", + "completed":"2016-04-01T09:34:28.960Z", + "new_balance":"18912.91", + "value":"-53.18" + } + }, + { + "id":"829ba2f2-4c93-46e0-ae4d-c1ad6ec50099", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T03:09:36.709Z", + "completed":"2016-04-02T03:09:36.709Z", + "new_balance":"18840.92", + "value":"-71.99" + } + }, + { + "id":"15e85e10-3aad-45b2-9f24-f5c32f62ef05", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T09:39:55.896Z", + "completed":"2016-04-02T09:39:55.896Z", + "new_balance":"18754.36", + "value":"-86.56" + } + }, + { + "id":"a69ff44a-85f7-4f52-a58c-fe1aa8d54c10", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:34:23.222Z", + "completed":"2016-04-03T01:34:23.222Z", + "new_balance":"18717.17", + "value":"-37.19" + } + }, + { + "id":"dc2fd2d6-bb75-4d0c-b6c0-666244542d1c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:14:06.465Z", + "completed":"2016-04-03T02:14:06.465Z", + "new_balance":"18679.98", + "value":"-37.19" + } + }, + { + "id":"8ed35ecb-aa23-49e6-97d4-3588ac0b45df", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T06:34:04.253Z", + "completed":"2016-04-03T06:34:04.253Z", + "new_balance":"18802.18", + "value":"122.20" + } + }, + { + "id":"03b37ccf-dee3-401c-ad3c-e1b5b1e8f73b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T11:23:52.792Z", + "completed":"2016-04-03T11:23:52.792Z", + "new_balance":"18767.40", + "value":"-34.78" + } + }, + { + "id":"82d061ea-cf97-4be7-84e9-481f97168470", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T23:11:24.325Z", + "completed":"2016-04-03T23:11:24.325Z", + "new_balance":"18840.23", + "value":"72.83" + } + }, + { + "id":"5d9cdf11-c20f-4e9c-b509-cace822fbdf4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T23:01:44.404Z", + "completed":"2016-04-04T23:01:44.404Z", + "new_balance":"18766.30", + "value":"-73.93" + } + }, + { + "id":"d076333c-a727-4021-8cfa-6b64f378fa35", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T15:55:14.188Z", + "completed":"2016-04-05T15:55:14.188Z", + "new_balance":"18738.85", + "value":"-27.45" + } + }, + { + "id":"9d023306-26de-4e1c-b429-d16e1886db47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T21:54:05.968Z", + "completed":"2016-04-05T21:54:05.968Z", + "new_balance":"18735.26", + "value":"-3.59" + } + }, + { + "id":"bf03f567-aa56-46f4-8bd6-20218990563a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T04:27:21.774Z", + "completed":"2016-04-07T04:27:21.774Z", + "new_balance":"18720.44", + "value":"-14.82" + } + }, + { + "id":"c7097486-25c6-4532-8237-025469d0f3dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T23:45:24.993Z", + "completed":"2016-04-07T23:45:24.993Z", + "new_balance":"18689.15", + "value":"-31.29" + } + }, + { + "id":"3438df1d-6ec1-4d57-a53c-d39e09feec6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T21:39:37.484Z", + "completed":"2016-04-08T21:39:37.484Z", + "new_balance":"18681.99", + "value":"-7.16" + } + }, + { + "id":"7ddcbbd5-b2a1-4c3e-807a-6fe059d6c055", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T07:13:20.538Z", + "completed":"2016-04-09T07:13:20.538Z", + "new_balance":"18659.74", + "value":"-22.25" + } + }, + { + "id":"559c231a-083a-4580-a886-4d8008836be2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T20:40:21.417Z", + "completed":"2016-04-09T20:40:21.417Z", + "new_balance":"18470.47", + "value":"-189.27" + } + }, + { + "id":"092eb2f8-6594-4363-9dd5-d440f6b1ed5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T23:44:49.525Z", + "completed":"2016-04-09T23:44:49.525Z", + "new_balance":"18463.76", + "value":"-6.71" + } + }, + { + "id":"2269765a-d616-433e-9408-22896d0c1ea7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T00:34:49.648Z", + "completed":"2016-04-10T00:34:49.648Z", + "new_balance":"18418.52", + "value":"-45.24" + } + }, + { + "id":"229e151b-ad54-4f62-abcc-903218eeaeab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T16:52:30.406Z", + "completed":"2016-04-17T16:52:30.406Z", + "new_balance":"18408.82", + "value":"-9.70" + } + }, + { + "id":"90dcdc24-7a69-488f-a0cd-6cc5b577a76c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T16:16:51.426Z", + "completed":"2016-04-18T16:16:51.426Z", + "new_balance":"18376.54", + "value":"-32.28" + } + }, + { + "id":"c1269dfb-e295-4f61-bd38-ec0a0dc6c29b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T23:59:50.107Z", + "completed":"2016-04-25T23:59:50.107Z", + "new_balance":"18334.02", + "value":"-42.52" + } + }, + { + "id":"5019b901-a5d3-4ea4-a5a0-7dcf1e0fbdae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T01:49:10.049Z", + "completed":"2016-04-26T01:49:10.049Z", + "new_balance":"18270.45", + "value":"-63.57" + } + }, + { + "id":"fbbd95bd-6ab7-4eb3-8f07-1cbb5569af48", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T23:02:05.127Z", + "completed":"2016-04-26T23:02:05.127Z", + "new_balance":"18263.74", + "value":"-6.71" + } + }, + { + "id":"99852bf8-6edb-4a93-866c-0c671d8e8f5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T00:22:05.592Z", + "completed":"2016-05-02T00:22:05.592Z", + "new_balance":"18229.31", + "value":"-34.43" + } + }, + { + "id":"72bae921-6782-44c3-9c77-c4fe91c5563f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T06:27:33.610Z", + "completed":"2016-05-02T06:27:33.610Z", + "new_balance":"18094.83", + "value":"-134.48" + } + }, + { + "id":"7e4a67f6-ea11-43ca-b0b7-f780a67670f6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T07:36:10.544Z", + "completed":"2016-05-02T07:36:10.544Z", + "new_balance":"17584.29", + "value":"-510.54" + } + }, + { + "id":"1999e58e-67b6-4cd0-b43d-9937025c6019", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T12:05:33.827Z", + "completed":"2016-05-02T12:05:33.827Z", + "new_balance":"17554.41", + "value":"-29.88" + } + }, + { + "id":"2d14fca6-4035-4d65-b5eb-971b546a1a9c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T12:42:56.149Z", + "completed":"2016-05-02T12:42:56.149Z", + "new_balance":"17501.23", + "value":"-53.18" + } + }, + { + "id":"5b91db92-b78f-49fc-9bc5-584de718bb37", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T12:45:07.773Z", + "completed":"2016-05-02T12:45:07.773Z", + "new_balance":"17414.67", + "value":"-86.56" + } + }, + { + "id":"914fdf82-6049-488a-8089-72174d3106e2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T18:23:27.872Z", + "completed":"2016-05-02T18:23:27.872Z", + "new_balance":"19095.08", + "value":"1680.41" + } + }, + { + "id":"90e12af7-9ea4-41f1-866c-150a31e2129d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T18:59:44.124Z", + "completed":"2016-05-02T18:59:44.124Z", + "new_balance":"19079.15", + "value":"-15.93" + } + }, + { + "id":"c738b9e3-7367-484e-bb74-1aa6ba1ad2fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T08:38:15.378Z", + "completed":"2016-05-03T08:38:15.378Z", + "new_balance":"19064.51", + "value":"-14.64" + } + }, + { + "id":"383e233d-18d9-440f-bd53-339896511797", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T23:07:45.905Z", + "completed":"2016-05-03T23:07:45.905Z", + "new_balance":"19041.14", + "value":"-23.37" + } + }, + { + "id":"11947764-5423-489f-afdf-12fde7e30a5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T03:32:06.056Z", + "completed":"2016-05-04T03:32:06.056Z", + "new_balance":"19015.34", + "value":"-25.80" + } + }, + { + "id":"9adc311f-da74-4128-88ed-2e4407823c0f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T06:21:22.980Z", + "completed":"2016-05-04T06:21:22.980Z", + "new_balance":"18987.33", + "value":"-28.01" + } + }, + { + "id":"d324c549-ac62-455d-a6bf-c49cd4baac9c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T23:18:41.487Z", + "completed":"2016-05-05T23:18:41.487Z", + "new_balance":"18913.40", + "value":"-73.93" + } + }, + { + "id":"d57ab500-ca11-4094-b29b-098c663fb47f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T13:29:27.169Z", + "completed":"2016-05-07T13:29:27.169Z", + "new_balance":"18909.31", + "value":"-4.09" + } + }, + { + "id":"fe59094b-98aa-42bb-83cb-05af8f76f235", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T14:32:53.511Z", + "completed":"2016-05-07T14:32:53.511Z", + "new_balance":"18881.46", + "value":"-27.85" + } + }, + { + "id":"aa63b444-27a6-476d-92b3-4f0633d04ca1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T14:11:22.463Z", + "completed":"2016-05-12T14:11:22.463Z", + "new_balance":"18860.36", + "value":"-21.10" + } + }, + { + "id":"7f0a96f4-5476-454f-a5db-397e303f2311", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T19:21:45.904Z", + "completed":"2016-05-12T19:21:45.904Z", + "new_balance":"18811.66", + "value":"-48.70" + } + }, + { + "id":"a80cef75-75b0-471a-8e08-9df3f6f3a8ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T03:03:06.523Z", + "completed":"2016-05-14T03:03:06.523Z", + "new_balance":"18766.49", + "value":"-45.17" + } + }, + { + "id":"50d6acd9-4977-4597-9074-c915368d33a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T19:31:54.937Z", + "completed":"2016-05-16T19:31:54.937Z", + "new_balance":"18760.72", + "value":"-5.77" + } + }, + { + "id":"e1c0b07b-5c8b-4ea5-b750-0c4c7dca9f6a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T18:49:57.988Z", + "completed":"2016-05-18T18:49:57.988Z", + "new_balance":"18752.20", + "value":"-8.52" + } + }, + { + "id":"f8a56f2c-728d-4ec3-b2e4-22879662bbd5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T21:03:04.017Z", + "completed":"2016-05-20T21:03:04.017Z", + "new_balance":"18791.21", + "value":"39.01" + } + }, + { + "id":"60494edd-1eea-40d8-bdaa-a6d69569af1f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T12:24:48.146Z", + "completed":"2016-05-21T12:24:48.146Z", + "new_balance":"18747.42", + "value":"-43.79" + } + }, + { + "id":"2b8a65be-9c5d-4b9c-9b64-0d45edff6093", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T23:36:53.339Z", + "completed":"2016-05-21T23:36:53.339Z", + "new_balance":"18701.79", + "value":"-45.63" + } + }, + { + "id":"7f32497b-b5c0-4695-a2f6-601c98a930f6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:51:38.499Z", + "completed":"2016-05-27T01:51:38.499Z", + "new_balance":"18668.26", + "value":"-33.53" + } + }, + { + "id":"2a02eabc-56dc-49ea-abc5-9d453e5b2f8d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:49:10.447Z", + "completed":"2016-05-27T15:49:10.447Z", + "new_balance":"18642.70", + "value":"-25.56" + } + }, + { + "id":"81b2779b-0ce6-41b5-9923-1314f92948e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T12:06:48.751Z", + "completed":"2016-06-01T12:06:48.751Z", + "new_balance":"18132.16", + "value":"-510.54" + } + }, + { + "id":"8e38d4a2-1684-498b-b519-c73b79b8d235", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:33:54.449Z", + "completed":"2016-06-01T15:33:54.449Z", + "new_balance":"17997.68", + "value":"-134.48" + } + }, + { + "id":"306b39b0-b451-40d8-a94f-b866c0524475", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T16:05:48.582Z", + "completed":"2016-06-01T16:05:48.582Z", + "new_balance":"19678.09", + "value":"1680.41" + } + }, + { + "id":"2cfaaa73-7152-400d-9b12-c03c6e67b0eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T16:16:24.109Z", + "completed":"2016-06-01T16:16:24.109Z", + "new_balance":"19643.66", + "value":"-34.43" + } + }, + { + "id":"33bb095c-b3da-4a1b-a5a7-c6d950a0ebc2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T18:53:21.350Z", + "completed":"2016-06-01T18:53:21.350Z", + "new_balance":"19590.48", + "value":"-53.18" + } + }, + { + "id":"7b866ee6-67d5-4443-a2c0-d53e9b8ed067", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T20:35:59.607Z", + "completed":"2016-06-01T20:35:59.607Z", + "new_balance":"19560.60", + "value":"-29.88" + } + }, + { + "id":"38d978de-9854-4e24-aeb8-870c2036dbb2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T00:09:12.372Z", + "completed":"2016-06-04T00:09:12.372Z", + "new_balance":"19474.04", + "value":"-86.56" + } + }, + { + "id":"5e728231-a396-44cb-a25c-5b2a09fc8eda", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:41:51.257Z", + "completed":"2016-06-04T15:41:51.257Z", + "new_balance":"19342.20", + "value":"-131.84" + } + }, + { + "id":"efc50793-6bfb-4c85-b980-58026ee90e4b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T19:29:11.047Z", + "completed":"2016-06-11T19:29:11.047Z", + "new_balance":"19311.39", + "value":"-30.81" + } + }, + { + "id":"e4ebf582-cf66-45b6-8711-2549e4f10ee8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T00:00:37.722Z", + "completed":"2016-06-12T00:00:37.722Z", + "new_balance":"19300.86", + "value":"-10.53" + } + }, + { + "id":"3cdce1bd-4b64-4be2-bd8a-a57e52840757", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T16:03:12.988Z", + "completed":"2016-06-13T16:03:12.988Z", + "new_balance":"19219.65", + "value":"-81.21" + } + }, + { + "id":"ff23f500-4475-4b1d-a987-0bffc42580aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T18:19:37.983Z", + "completed":"2016-06-13T18:19:37.983Z", + "new_balance":"19213.18", + "value":"-6.47" + } + }, + { + "id":"7697c510-a85b-45e8-a4ef-1fb571a510b3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T07:57:56.030Z", + "completed":"2016-06-16T07:57:56.030Z", + "new_balance":"19171.95", + "value":"-41.23" + } + }, + { + "id":"5270aaac-8ac2-4a45-a7c6-71d293e71fc4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T09:34:26.453Z", + "completed":"2016-06-17T09:34:26.453Z", + "new_balance":"19090.74", + "value":"-81.21" + } + }, + { + "id":"c2a30c9b-f56f-4388-8c4b-e03cc20d980e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T15:36:36.144Z", + "completed":"2016-06-17T15:36:36.144Z", + "new_balance":"19085.97", + "value":"-4.77" + } + }, + { + "id":"deac6123-6f72-4fef-ab25-5bb82ef974dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T20:42:56.040Z", + "completed":"2016-06-18T20:42:56.040Z", + "new_balance":"19002.17", + "value":"-83.80" + } + }, + { + "id":"5c6f30e4-3e32-4b86-bdae-226886126f46", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T08:12:58.202Z", + "completed":"2016-06-19T08:12:58.202Z", + "new_balance":"18959.83", + "value":"-42.34" + } + }, + { + "id":"45b07baa-330d-4e55-8e31-c432813cb26a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T10:36:38.577Z", + "completed":"2016-06-19T10:36:38.577Z", + "new_balance":"18876.03", + "value":"-83.80" + } + }, + { + "id":"b7277104-4779-45f2-890b-32aa9527ef4a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T05:51:18.752Z", + "completed":"2016-06-21T05:51:18.752Z", + "new_balance":"18784.56", + "value":"-91.47" + } + }, + { + "id":"8efe3d18-1ec8-4e74-bdfa-fb3f6e517a67", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T21:35:02.503Z", + "completed":"2016-06-21T21:35:02.503Z", + "new_balance":"18780.98", + "value":"-3.58" + } + }, + { + "id":"1a132ecc-8c21-4718-b0aa-d8304b8336eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T00:59:37.878Z", + "completed":"2016-06-23T00:59:37.878Z", + "new_balance":"18773.70", + "value":"-7.28" + } + }, + { + "id":"8b16bae4-3c9e-41d4-9c54-b6ca8973c5e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:59:35.917Z", + "completed":"2016-06-23T16:59:35.917Z", + "new_balance":"18746.40", + "value":"-27.30" + } + }, + { + "id":"4b2e7561-f94b-4c9b-a455-2b9059860e21", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T11:36:56.705Z", + "completed":"2016-06-24T11:36:56.705Z", + "new_balance":"18700.39", + "value":"-46.01" + } + }, + { + "id":"cee645e5-60f0-427b-a89a-d764f6fb536e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T16:15:25.103Z", + "completed":"2016-06-24T16:15:25.103Z", + "new_balance":"18687.15", + "value":"-13.24" + } + }, + { + "id":"e7f14207-80cb-42ef-8ca8-861c3854bca2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:27:09.125Z", + "completed":"2016-06-28T01:27:09.125Z", + "new_balance":"18680.16", + "value":"-6.99" + } + }, + { + "id":"dc0ea833-8489-4766-a025-55fa8687601f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T07:07:45.638Z", + "completed":"2016-06-28T07:07:45.638Z", + "new_balance":"18673.17", + "value":"-6.99" + } + }, + { + "id":"e6fa1897-a779-45ac-8313-11196ee90ebf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T08:42:37.697Z", + "completed":"2016-06-28T08:42:37.697Z", + "new_balance":"18591.76", + "value":"-81.41" + } + }, + { + "id":"ab9cba77-8e50-43e0-9475-7288ba44e5dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T14:08:03.662Z", + "completed":"2016-06-28T14:08:03.662Z", + "new_balance":"18544.96", + "value":"-46.80" + } + }, + { + "id":"fa4b3d21-ed13-4ea7-860c-d776e9b7ffcb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T03:50:45.897Z", + "completed":"2016-06-29T03:50:45.897Z", + "new_balance":"18486.06", + "value":"-58.90" + } + }, + { + "id":"a46a908e-7315-4a92-8955-3926944ee7e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T08:47:29.897Z", + "completed":"2016-06-29T08:47:29.897Z", + "new_balance":"18435.05", + "value":"-51.01" + } + }, + { + "id":"5117096b-a440-404b-b255-ed4e6e1fbf9b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T09:16:38.034Z", + "completed":"2016-06-29T09:16:38.034Z", + "new_balance":"18361.54", + "value":"-73.51" + } + }, + { + "id":"72c936e6-4444-4333-b3ac-27f7314f1895", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T15:12:03.424Z", + "completed":"2016-06-29T15:12:03.424Z", + "new_balance":"18324.59", + "value":"-36.95" + } + }, + { + "id":"d35af5df-e445-4769-a954-1c81cbb2fcf1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T21:54:45.238Z", + "completed":"2016-06-29T21:54:45.238Z", + "new_balance":"18290.68", + "value":"-33.91" + } + }, + { + "id":"88fcc730-a759-459a-880c-42599877887c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T22:40:00.254Z", + "completed":"2016-06-29T22:40:00.254Z", + "new_balance":"18284.21", + "value":"-6.47" + } + }, + { + "id":"70e075e0-47cd-466f-af6b-bce845e172c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T07:30:10.137Z", + "completed":"2016-06-30T07:30:10.137Z", + "new_balance":"18272.98", + "value":"-11.23" + } + }, + { + "id":"7a200d71-7c06-41b6-a806-43836af065c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T16:43:24.571Z", + "completed":"2016-06-30T16:43:24.571Z", + "new_balance":"18227.47", + "value":"-45.51" + } + }, + { + "id":"ffbd2cf3-f1a9-4f4c-9fd3-5520e7fd1f02", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T18:24:46.127Z", + "completed":"2016-06-30T18:24:46.127Z", + "new_balance":"18198.61", + "value":"-28.86" + } + }, + { + "id":"f25b27af-9ba2-4a68-849f-a500582764aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T18:48:29.623Z", + "completed":"2016-06-30T18:48:29.623Z", + "new_balance":"18192.73", + "value":"-5.88" + } + }, + { + "id":"106b0b4d-8f9a-4c6d-b6dd-bd158a0c4b0e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T02:35:22.193Z", + "completed":"2016-07-01T02:35:22.193Z", + "new_balance":"18158.30", + "value":"-34.43" + } + }, + { + "id":"fe1b1f0e-a79a-4983-9ab4-ade3c7385afd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T03:02:40.621Z", + "completed":"2016-07-01T03:02:40.621Z", + "new_balance":"18023.82", + "value":"-134.48" + } + }, + { + "id":"440ae0e4-f7c8-430f-9fa4-e4f3af0004e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T03:09:45.051Z", + "completed":"2016-07-01T03:09:45.051Z", + "new_balance":"18007.74", + "value":"-16.08" + } + }, + { + "id":"7835536f-2c45-4f32-8b02-e375a94993f8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T03:56:41.662Z", + "completed":"2016-07-01T03:56:41.662Z", + "new_balance":"17973.71", + "value":"-34.03" + } + }, + { + "id":"07d8a080-d8f8-4cee-8e17-aca52056336e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T10:56:05.100Z", + "completed":"2016-07-01T10:56:05.100Z", + "new_balance":"17784.44", + "value":"-189.27" + } + }, + { + "id":"20692abd-0754-4a4b-ae65-d47e1c97bbc0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:13:16.850Z", + "completed":"2016-07-01T11:13:16.850Z", + "new_balance":"17750.01", + "value":"-34.43" + } + }, + { + "id":"28545021-258e-41d2-ad55-f05a1dbec3eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T11:25:15.844Z", + "completed":"2016-07-01T11:25:15.844Z", + "new_balance":"17723.04", + "value":"-26.97" + } + }, + { + "id":"5d3d155d-2f66-4817-9582-82aef350c9e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T11:49:15.302Z", + "completed":"2016-07-01T11:49:15.302Z", + "new_balance":"17212.50", + "value":"-510.54" + } + }, + { + "id":"0fe40880-11ed-4fd3-9c46-e887f22d3aff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T16:42:46.604Z", + "completed":"2016-07-01T16:42:46.604Z", + "new_balance":"17159.32", + "value":"-53.18" + } + }, + { + "id":"dc406ba0-5306-4495-acf0-a94a947e1bdb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T20:49:02.973Z", + "completed":"2016-07-01T20:49:02.973Z", + "new_balance":"17129.44", + "value":"-29.88" + } + }, + { + "id":"56e915c5-f968-435a-853a-abe94054dfab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T16:02:24.487Z", + "completed":"2016-07-02T16:02:24.487Z", + "new_balance":"17042.88", + "value":"-86.56" + } + }, + { + "id":"8c2d8cfb-0110-4c15-b2c6-e24635f698db", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T04:02:32.133Z", + "completed":"2016-07-03T04:02:32.133Z", + "new_balance":"16947.45", + "value":"-95.43" + } + }, + { + "id":"b54b7edd-f5ee-4c06-924f-313c737626dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T23:18:26.871Z", + "completed":"2016-07-04T23:18:26.871Z", + "new_balance":"16931.67", + "value":"-15.78" + } + }, + { + "id":"477ecab3-f8fa-45df-8ec3-b4bfb36e86d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T11:16:19.263Z", + "completed":"2016-07-05T11:16:19.263Z", + "new_balance":"16857.74", + "value":"-73.93" + } + }, + { + "id":"e4325115-78d1-41c8-91a2-9364faeb7d47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T22:03:55.277Z", + "completed":"2016-07-05T22:03:55.277Z", + "new_balance":"16785.65", + "value":"-72.09" + } + }, + { + "id":"c5bc2375-edb5-463f-bd3e-b25fc1edc44a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T23:40:01.506Z", + "completed":"2016-07-06T23:40:01.506Z", + "new_balance":"16782.06", + "value":"-3.59" + } + }, + { + "id":"be398396-0396-45c0-ab49-00e1119908ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T04:17:11.319Z", + "completed":"2016-07-11T04:17:11.319Z", + "new_balance":"16754.61", + "value":"-27.45" + } + }, + { + "id":"c09a2ae8-6572-49d8-82be-1fc43c1c3198", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T07:30:47.491Z", + "completed":"2016-07-12T07:30:47.491Z", + "new_balance":"16723.32", + "value":"-31.29" + } + }, + { + "id":"dc3b0e8b-0aa4-428f-b7e3-b51a0530c1b8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T00:05:25.737Z", + "completed":"2016-07-14T00:05:25.737Z", + "new_balance":"16708.50", + "value":"-14.82" + } + }, + { + "id":"7d2b243a-56b9-473e-977d-c1c3cbc26d68", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T21:50:20.999Z", + "completed":"2016-07-16T21:50:20.999Z", + "new_balance":"16701.34", + "value":"-7.16" + } + }, + { + "id":"608e3a2a-b44d-4d00-8883-0b8b02b391ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T23:08:46.730Z", + "completed":"2016-07-18T23:08:46.730Z", + "new_balance":"16679.09", + "value":"-22.25" + } + }, + { + "id":"80a19d0e-cfa1-4ebe-80ca-3f5b485fc04a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T09:39:41.111Z", + "completed":"2016-07-20T09:39:41.111Z", + "new_balance":"16672.38", + "value":"-6.71" + } + }, + { + "id":"af80a04a-c5ad-41c1-9c42-8988208a4012", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T09:51:28.782Z", + "completed":"2016-07-20T09:51:28.782Z", + "new_balance":"16483.11", + "value":"-189.27" + } + }, + { + "id":"383649e6-f038-459f-8fbb-f8399faeadbe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T06:46:57.046Z", + "completed":"2016-07-24T06:46:57.046Z", + "new_balance":"16473.41", + "value":"-9.70" + } + }, + { + "id":"df300c60-93a4-4ba9-aaca-c5e9cdd53967", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T15:30:05.028Z", + "completed":"2016-07-24T15:30:05.028Z", + "new_balance":"16428.17", + "value":"-45.24" + } + }, + { + "id":"487684a7-5c6b-4ec1-83cc-eb3de27572ab", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T12:01:25.438Z", + "completed":"2016-07-25T12:01:25.438Z", + "new_balance":"16385.65", + "value":"-42.52" + } + }, + { + "id":"312214ef-8720-4e91-bd0a-00a671ee979c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T22:59:34.244Z", + "completed":"2016-07-25T22:59:34.244Z", + "new_balance":"16353.37", + "value":"-32.28" + } + }, + { + "id":"7846c687-df2b-42e8-b180-f05716af57a4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T14:01:34.861Z", + "completed":"2016-07-26T14:01:34.861Z", + "new_balance":"16289.80", + "value":"-63.57" + } + }, + { + "id":"0603b730-3f36-452d-8483-a1a42ef0965d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T18:11:26.037Z", + "completed":"2016-07-27T18:11:26.037Z", + "new_balance":"16283.09", + "value":"-6.71" + } + }, + { + "id":"36d23afd-279f-4a8a-a6ad-fa7b2c154774", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T00:14:28.440Z", + "completed":"2016-08-01T00:14:28.440Z", + "new_balance":"16229.91", + "value":"-53.18" + } + }, + { + "id":"e9f1f7e3-78f9-41ad-a829-97ee84ab24b2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:16:45.216Z", + "completed":"2016-08-01T02:16:45.216Z", + "new_balance":"16195.48", + "value":"-34.43" + } + }, + { + "id":"74676452-b6f7-4120-b958-47dfed8f628e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T06:17:35.602Z", + "completed":"2016-08-01T06:17:35.602Z", + "new_balance":"16061.00", + "value":"-134.48" + } + }, + { + "id":"4f400d58-3a74-43a9-b993-20f280ac2221", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T13:56:04.616Z", + "completed":"2016-08-01T13:56:04.616Z", + "new_balance":"15550.46", + "value":"-510.54" + } + }, + { + "id":"df6664e7-8ab0-46e7-93f3-75baed8d7f01", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T20:37:54.424Z", + "completed":"2016-08-01T20:37:54.424Z", + "new_balance":"15520.58", + "value":"-29.88" + } + }, + { + "id":"b06abb56-51ac-430e-a467-b82b97efe007", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T20:46:48.358Z", + "completed":"2016-08-01T20:46:48.358Z", + "new_balance":"17200.99", + "value":"1680.41" + } + }, + { + "id":"f858088c-d7f9-4fca-aed7-cd9308d3fee6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T19:59:48.594Z", + "completed":"2016-08-02T19:59:48.594Z", + "new_balance":"17114.43", + "value":"-86.56" + } + }, + { + "id":"287bdb32-a0e8-4f93-82e5-df099c93de8b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T03:39:20.863Z", + "completed":"2016-08-03T03:39:20.863Z", + "new_balance":"17110.84", + "value":"-3.59" + } + }, + { + "id":"c09c7a9e-8431-4799-a1cd-464cc8e1167e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T03:37:24.543Z", + "completed":"2016-08-04T03:37:24.543Z", + "new_balance":"17076.29", + "value":"-34.55" + } + }, + { + "id":"d84a8ad3-0ebb-42d4-8b3f-af2013080945", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T08:40:59.788Z", + "completed":"2016-08-07T08:40:59.788Z", + "new_balance":"17052.92", + "value":"-23.37" + } + }, + { + "id":"10b1fcc0-4a95-4702-9496-e879bba1d4b1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T05:58:57.124Z", + "completed":"2016-08-09T05:58:57.124Z", + "new_balance":"17024.91", + "value":"-28.01" + } + }, + { + "id":"e91eb893-baef-42cb-8290-86af110b8c92", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T06:37:33.583Z", + "completed":"2016-08-09T06:37:33.583Z", + "new_balance":"16999.11", + "value":"-25.80" + } + }, + { + "id":"ec4ab412-1688-4b21-b55b-32c9fc811227", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T18:30:21.806Z", + "completed":"2016-08-10T18:30:21.806Z", + "new_balance":"16925.18", + "value":"-73.93" + } + }, + { + "id":"da47da24-ee12-4e11-94fc-7d8748cb1162", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T07:39:04.279Z", + "completed":"2016-08-14T07:39:04.279Z", + "new_balance":"16921.09", + "value":"-4.09" + } + }, + { + "id":"d8c51f44-e6ef-4d65-af63-ef68a8b45557", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T01:17:10.077Z", + "completed":"2016-08-15T01:17:10.077Z", + "new_balance":"16885.16", + "value":"-35.93" + } + }, + { + "id":"ae38168d-193b-4ff5-af5e-2ff0e5235a99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T07:31:12.043Z", + "completed":"2016-08-15T07:31:12.043Z", + "new_balance":"16857.31", + "value":"-27.85" + } + }, + { + "id":"257e642e-8fd4-47de-8eaf-ece391e9753c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T09:24:16.871Z", + "completed":"2016-08-16T09:24:16.871Z", + "new_balance":"16808.61", + "value":"-48.70" + } + }, + { + "id":"51743d2f-718b-4141-90f4-ddfd6bae0024", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T01:37:02.181Z", + "completed":"2016-08-17T01:37:02.181Z", + "new_balance":"16763.44", + "value":"-45.17" + } + }, + { + "id":"2e66a69d-ff8a-428f-85dd-62f0d5d8e1e5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T16:42:39.069Z", + "completed":"2016-08-20T16:42:39.069Z", + "new_balance":"16754.92", + "value":"-8.52" + } + }, + { + "id":"0e0e08a1-6bfe-40da-889e-22745164ee73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T22:19:10.971Z", + "completed":"2016-08-20T22:19:10.971Z", + "new_balance":"16749.15", + "value":"-5.77" + } + }, + { + "id":"bbb6bbf0-6b02-4b25-9657-07e66b3ddc73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T10:47:47.894Z", + "completed":"2016-08-22T10:47:47.894Z", + "new_balance":"16788.16", + "value":"39.01" + } + }, + { + "id":"ae982e68-765f-4b64-9ede-4812775a80e6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T04:27:40.886Z", + "completed":"2016-08-23T04:27:40.886Z", + "new_balance":"16742.53", + "value":"-45.63" + } + }, + { + "id":"d73a1757-1d05-4981-9bde-31b09846e82d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T21:36:39.652Z", + "completed":"2016-08-23T21:36:39.652Z", + "new_balance":"16698.74", + "value":"-43.79" + } + }, + { + "id":"9367884e-575b-401c-9d4e-688e74a0e016", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T10:18:37.988Z", + "completed":"2016-08-28T10:18:37.988Z", + "new_balance":"16673.18", + "value":"-25.56" + } + }, + { + "id":"4ae52a2b-1796-439b-974f-adf3d5527ca5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T20:03:42.258Z", + "completed":"2016-08-28T20:03:42.258Z", + "new_balance":"16639.65", + "value":"-33.53" + } + }, + { + "id":"1ced60e2-0d88-4832-bdda-c62db5db4729", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T00:31:04.163Z", + "completed":"2016-09-01T00:31:04.163Z", + "new_balance":"16586.47", + "value":"-53.18" + } + }, + { + "id":"b4593c0a-0ff2-47c8-8df6-d75e69fee8bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T04:45:15.245Z", + "completed":"2016-09-01T04:45:15.245Z", + "new_balance":"16556.59", + "value":"-29.88" + } + }, + { + "id":"c3595176-efbd-486a-8521-9de3f3b2601b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T14:44:36.445Z", + "completed":"2016-09-01T14:44:36.445Z", + "new_balance":"16046.05", + "value":"-510.54" + } + }, + { + "id":"6abccc92-be7c-45c8-beed-862310954dae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:12:54.574Z", + "completed":"2016-09-01T16:12:54.574Z", + "new_balance":"15911.57", + "value":"-134.48" + } + }, + { + "id":"a02c36da-22fd-481b-ba8f-f6af60c2cd36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T16:23:17.101Z", + "completed":"2016-09-01T16:23:17.101Z", + "new_balance":"17591.98", + "value":"1680.41" + } + }, + { + "id":"0bf57262-dba6-4ca5-a363-a1b1ae37f01e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T18:52:36.207Z", + "completed":"2016-09-01T18:52:36.207Z", + "new_balance":"17557.55", + "value":"-34.43" + } + }, + { + "id":"cc791690-ffbf-4c26-a2ba-f589897af9f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T16:37:30.674Z", + "completed":"2016-09-02T16:37:30.674Z", + "new_balance":"17470.99", + "value":"-86.56" + } + }, + { + "id":"ee9577e8-cddf-435c-b4a9-d2a7f1f0acf4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T00:19:46.988Z", + "completed":"2016-09-04T00:19:46.988Z", + "new_balance":"17464.52", + "value":"-6.47" + } + }, + { + "id":"c6a424b3-f293-46af-ba3f-3c4da692c9a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T04:23:06.462Z", + "completed":"2016-09-04T04:23:06.462Z", + "new_balance":"17433.71", + "value":"-30.81" + } + }, + { + "id":"db65ae80-1c50-4ed0-b129-ea4e7330f420", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T12:15:20.884Z", + "completed":"2016-09-04T12:15:20.884Z", + "new_balance":"17423.18", + "value":"-10.53" + } + }, + { + "id":"5f09728e-1b13-40e1-9a6a-e0c9ac7b960a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T21:32:27.223Z", + "completed":"2016-09-04T21:32:27.223Z", + "new_balance":"17341.97", + "value":"-81.21" + } + }, + { + "id":"838f244d-a089-4987-ba80-3550a54d3e41", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T15:12:37.643Z", + "completed":"2016-09-05T15:12:37.643Z", + "new_balance":"17300.74", + "value":"-41.23" + } + }, + { + "id":"96f12b87-1df5-40af-9679-15a9d88325e8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T23:01:55.840Z", + "completed":"2016-09-05T23:01:55.840Z", + "new_balance":"17295.97", + "value":"-4.77" + } + }, + { + "id":"4107327e-302c-4d60-8487-a45f264da2c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T05:17:58.221Z", + "completed":"2016-09-06T05:17:58.221Z", + "new_balance":"17214.76", + "value":"-81.21" + } + }, + { + "id":"1b31e4d1-1aef-4bb9-8446-fae5f76418f4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T22:08:03.150Z", + "completed":"2016-09-06T22:08:03.150Z", + "new_balance":"17130.96", + "value":"-83.80" + } + }, + { + "id":"ce7e3bec-3db6-4115-ada2-cc401c369b6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T16:38:02.573Z", + "completed":"2016-09-08T16:38:02.573Z", + "new_balance":"17088.62", + "value":"-42.34" + } + }, + { + "id":"a4b82841-db17-4d0c-9f3a-e8f03202eaef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T23:57:40.600Z", + "completed":"2016-09-08T23:57:40.600Z", + "new_balance":"17004.82", + "value":"-83.80" + } + }, + { + "id":"7df1d7e6-cb88-44ff-a01e-b48722a4c701", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T00:15:11.843Z", + "completed":"2016-09-10T00:15:11.843Z", + "new_balance":"16913.35", + "value":"-91.47" + } + }, + { + "id":"a0ded7da-542f-413a-9a7c-a6639dd99c5c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T21:38:55.452Z", + "completed":"2016-09-10T21:38:55.452Z", + "new_balance":"16909.77", + "value":"-3.58" + } + }, + { + "id":"35b8c177-76a0-4932-abef-660da9a3b399", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T15:26:19.906Z", + "completed":"2016-09-11T15:26:19.906Z", + "new_balance":"16902.49", + "value":"-7.28" + } + }, + { + "id":"86adec40-4f1a-4ddf-93d8-21606005ea1a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T16:49:25.086Z", + "completed":"2016-09-12T16:49:25.086Z", + "new_balance":"16875.19", + "value":"-27.30" + } + }, + { + "id":"4ce3dd83-b689-4909-ab50-726d5066172b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T23:09:32.746Z", + "completed":"2016-09-12T23:09:32.746Z", + "new_balance":"16861.95", + "value":"-13.24" + } + }, + { + "id":"4f81349b-b2e3-4c4d-9e95-f436c57b5387", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T14:43:55.065Z", + "completed":"2016-09-13T14:43:55.065Z", + "new_balance":"16815.94", + "value":"-46.01" + } + }, + { + "id":"462949c8-c76c-44ce-b56a-22b2be67dffe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T13:35:13.526Z", + "completed":"2016-09-16T13:35:13.526Z", + "new_balance":"16808.95", + "value":"-6.99" + } + }, + { + "id":"bd0feda5-9667-47e4-9ce8-57ccbf3e9bc8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T07:22:12.845Z", + "completed":"2016-09-17T07:22:12.845Z", + "new_balance":"16762.15", + "value":"-46.80" + } + }, + { + "id":"65e4957e-c382-41ea-bb8f-d321a9b30590", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T12:48:39.679Z", + "completed":"2016-09-17T12:48:39.679Z", + "new_balance":"16680.74", + "value":"-81.41" + } + }, + { + "id":"63e60ba2-abe8-4ff2-9f32-d5cdc8edbd2b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:53:41.511Z", + "completed":"2016-09-18T17:53:41.511Z", + "new_balance":"16673.75", + "value":"-6.99" + } + }, + { + "id":"c97972f2-8ce2-44e2-b884-c8197e4401be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T02:30:24.072Z", + "completed":"2016-09-19T02:30:24.072Z", + "new_balance":"16622.74", + "value":"-51.01" + } + }, + { + "id":"2674b7e4-a268-4674-8404-7818d8b5c04f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T02:47:31.934Z", + "completed":"2016-09-19T02:47:31.934Z", + "new_balance":"16585.79", + "value":"-36.95" + } + }, + { + "id":"dd9760a7-9127-4980-ae9b-a2847ae44b13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T08:25:06.637Z", + "completed":"2016-09-19T08:25:06.637Z", + "new_balance":"16551.88", + "value":"-33.91" + } + }, + { + "id":"7b7c0b1d-97d6-4267-8636-90864cfc7292", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T03:56:55.627Z", + "completed":"2016-09-20T03:56:55.627Z", + "new_balance":"16492.98", + "value":"-58.90" + } + }, + { + "id":"51815a2d-4525-4058-ae08-b9053b8635f5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T09:47:01.389Z", + "completed":"2016-09-20T09:47:01.389Z", + "new_balance":"16419.47", + "value":"-73.51" + } + }, + { + "id":"4bf81f8c-3bd8-4dfe-90c0-d629c031d700", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T09:12:05.269Z", + "completed":"2016-09-21T09:12:05.269Z", + "new_balance":"16413.00", + "value":"-6.47" + } + }, + { + "id":"7236b8b6-a438-48ec-8b59-d7f3e23da8f7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T18:37:53.267Z", + "completed":"2016-09-21T18:37:53.267Z", + "new_balance":"16407.12", + "value":"-5.88" + } + }, + { + "id":"a5b49538-cbe6-4f51-87b2-ceade64007e4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T02:47:24.262Z", + "completed":"2016-09-23T02:47:24.262Z", + "new_balance":"16361.61", + "value":"-45.51" + } + }, + { + "id":"da017b99-441c-4dea-96cc-ef59fc9ee037", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T10:37:16.004Z", + "completed":"2016-09-23T10:37:16.004Z", + "new_balance":"16350.38", + "value":"-11.23" + } + }, + { + "id":"2c6598ff-a572-47e3-9087-23bd150264ef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T15:44:20.311Z", + "completed":"2016-09-24T15:44:20.311Z", + "new_balance":"16321.52", + "value":"-28.86" + } + }, + { + "id":"f06d887f-dd7e-4c0b-8b86-3c7a7490a121", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T08:03:59.174Z", + "completed":"2016-09-25T08:03:59.174Z", + "new_balance":"16305.44", + "value":"-16.08" + } + }, + { + "id":"94ce166b-41de-42aa-8c5f-488de3371ebe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T09:51:25.488Z", + "completed":"2016-09-25T09:51:25.488Z", + "new_balance":"16271.41", + "value":"-34.03" + } + }, + { + "id":"dfa5e989-ac09-4269-b3ab-dbfeb232d074", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:02:17.371Z", + "completed":"2016-09-27T15:02:17.371Z", + "new_balance":"16082.14", + "value":"-189.27" + } + }, + { + "id":"f6808270-4f9b-4fa2-bc3f-e6436d5ade51", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T07:08:52.106Z", + "completed":"2016-09-29T07:08:52.106Z", + "new_balance":"16055.17", + "value":"-26.97" + } + }, + { + "id":"166366d1-5122-4ba1-8a17-f0f0217809e0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T04:01:18.119Z", + "completed":"2016-10-01T04:01:18.119Z", + "new_balance":"16025.29", + "value":"-29.88" + } + }, + { + "id":"30ae85cf-2269-45e2-bc36-752a7c6f49fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T12:23:30.362Z", + "completed":"2016-10-01T12:23:30.362Z", + "new_balance":"15890.81", + "value":"-134.48" + } + }, + { + "id":"6c7707bd-7057-489d-9d37-7a539f07631f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T14:43:43.431Z", + "completed":"2016-10-01T14:43:43.431Z", + "new_balance":"15380.27", + "value":"-510.54" + } + }, + { + "id":"2eca973c-dc13-49d5-8cca-3551507b74a0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:57:26.079Z", + "completed":"2016-10-01T23:57:26.079Z", + "new_balance":"15327.09", + "value":"-53.18" + } + }, + { + "id":"a4bc320d-edde-480f-aeaa-06038ee3aa9f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T11:28:46.837Z", + "completed":"2016-10-02T11:28:46.837Z", + "new_balance":"15255.10", + "value":"-71.99" + } + }, + { + "id":"823986e9-71cb-4c64-8150-008fd55bde13", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T18:32:37.901Z", + "completed":"2016-10-02T18:32:37.901Z", + "new_balance":"15168.54", + "value":"-86.56" + } + }, + { + "id":"8aadb4f1-0adf-4b24-b916-eb7e3c65a773", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:21:52.090Z", + "completed":"2016-10-03T01:21:52.090Z", + "new_balance":"14436.69", + "value":"-731.85" + } + }, + { + "id":"e9b532eb-59f0-4818-bd2a-c32ca3015d89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:27:07.104Z", + "completed":"2016-10-03T01:27:07.104Z", + "new_balance":"14273.21", + "value":"-163.48" + } + }, + { + "id":"7a00a5c6-7885-4463-927d-48410f385108", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:28:14.272Z", + "completed":"2016-10-03T07:28:14.272Z", + "new_balance":"14236.02", + "value":"-37.19" + } + }, + { + "id":"1af2154c-99a1-4465-beda-2414e8516b3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T12:46:17.265Z", + "completed":"2016-10-03T12:46:17.265Z", + "new_balance":"14201.24", + "value":"-34.78" + } + }, + { + "id":"87ba369b-7d24-40ea-9d1f-2fdd1b40c5c2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T16:54:58.129Z", + "completed":"2016-10-03T16:54:58.129Z", + "new_balance":"14011.97", + "value":"-189.27" + } + }, + { + "id":"c780eeca-37e6-4e80-ae8f-15621f7f9512", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T00:22:47.063Z", + "completed":"2016-10-04T00:22:47.063Z", + "new_balance":"13938.04", + "value":"-73.93" + } + }, + { + "id":"e7b398fb-a88c-41df-ae70-14984e74920e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T10:30:33.003Z", + "completed":"2016-10-05T10:30:33.003Z", + "new_balance":"13910.59", + "value":"-27.45" + } + }, + { + "id":"0772b2f7-6a33-4207-853f-d366b0ac551b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T21:37:50.063Z", + "completed":"2016-10-05T21:37:50.063Z", + "new_balance":"13907.00", + "value":"-3.59" + } + }, + { + "id":"5b7cbf6e-69fc-4383-bb32-e8ea75559d8c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T04:54:07.157Z", + "completed":"2016-10-07T04:54:07.157Z", + "new_balance":"13892.18", + "value":"-14.82" + } + }, + { + "id":"cd6791dc-4f0c-4a58-b9bb-78ef413ce571", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T06:20:31.022Z", + "completed":"2016-10-07T06:20:31.022Z", + "new_balance":"13860.89", + "value":"-31.29" + } + }, + { + "id":"8d8d62d6-2b49-4751-a071-65ef2b19a817", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T16:07:11.490Z", + "completed":"2016-10-08T16:07:11.490Z", + "new_balance":"13853.73", + "value":"-7.16" + } + }, + { + "id":"a0dd4c6a-b029-488a-97ca-6eb3b62f2fa5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T09:38:30.475Z", + "completed":"2016-10-09T09:38:30.475Z", + "new_balance":"13847.02", + "value":"-6.71" + } + }, + { + "id":"3eca32d1-42e3-43a7-85c9-b19dd1be78dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T15:59:20.957Z", + "completed":"2016-10-09T15:59:20.957Z", + "new_balance":"13824.77", + "value":"-22.25" + } + }, + { + "id":"174ab270-be0a-4879-a9b7-2427bf9eebaf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T22:03:32.320Z", + "completed":"2016-10-09T22:03:32.320Z", + "new_balance":"13635.50", + "value":"-189.27" + } + }, + { + "id":"c63f9e4e-087c-455a-a22e-f5b6eb1083ee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T21:53:05.442Z", + "completed":"2016-10-10T21:53:05.442Z", + "new_balance":"13590.26", + "value":"-45.24" + } + }, + { + "id":"d9c29e35-15fb-4089-98e7-38a411b3962d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T10:45:47.426Z", + "completed":"2016-10-17T10:45:47.426Z", + "new_balance":"13580.56", + "value":"-9.70" + } + }, + { + "id":"e1c8a7f8-8c9c-4380-9105-996dd1d953cc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T06:43:17.338Z", + "completed":"2016-10-18T06:43:17.338Z", + "new_balance":"13548.28", + "value":"-32.28" + } + }, + { + "id":"e2bc8496-adac-4141-bc50-b73d9fe6d27d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T08:38:08.273Z", + "completed":"2016-10-25T08:38:08.273Z", + "new_balance":"13505.76", + "value":"-42.52" + } + }, + { + "id":"abd6e41b-b7a0-4325-9dbe-2891a35b25e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:06:31.292Z", + "completed":"2016-10-26T09:06:31.292Z", + "new_balance":"13499.05", + "value":"-6.71" + } + }, + { + "id":"5141327c-71fc-432c-a137-61dfaf7582bc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T15:17:44.313Z", + "completed":"2016-10-26T15:17:44.313Z", + "new_balance":"13435.48", + "value":"-63.57" + } + }, + { + "id":"1eba3948-edf1-4f60-b887-8b85ae3727e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T02:26:09.298Z", + "completed":"2016-11-02T02:26:09.298Z", + "new_balance":"13405.60", + "value":"-29.88" + } + }, + { + "id":"55f8ff0e-4130-4a99-8b11-dcd6360a23c7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T04:32:52.267Z", + "completed":"2016-11-02T04:32:52.267Z", + "new_balance":"15086.01", + "value":"1680.41" + } + }, + { + "id":"1b5b75e4-e7ce-4879-a250-d7c50e5e469c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T10:16:41.795Z", + "completed":"2016-11-02T10:16:41.795Z", + "new_balance":"14951.53", + "value":"-134.48" + } + }, + { + "id":"1198846c-d9d1-4910-a8c3-495a95802af4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T14:14:52.841Z", + "completed":"2016-11-02T14:14:52.841Z", + "new_balance":"14864.97", + "value":"-86.56" + } + }, + { + "id":"85678a93-085e-447c-b510-efa9b5b105f4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T15:16:53.925Z", + "completed":"2016-11-02T15:16:53.925Z", + "new_balance":"14830.54", + "value":"-34.43" + } + }, + { + "id":"c3be8ff1-2477-43cd-bb0c-46ff065725e3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:48:01.481Z", + "completed":"2016-11-02T19:48:01.481Z", + "new_balance":"14777.36", + "value":"-53.18" + } + }, + { + "id":"06d6023f-8b25-4ed7-974e-3aec8eb69350", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T20:12:48.440Z", + "completed":"2016-11-02T20:12:48.440Z", + "new_balance":"14761.43", + "value":"-15.93" + } + }, + { + "id":"71cf09f0-f229-4c64-9d12-cf07c314ce10", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T20:53:35.267Z", + "completed":"2016-11-02T20:53:35.267Z", + "new_balance":"14250.89", + "value":"-510.54" + } + }, + { + "id":"88c88850-0781-4d3b-94eb-714892c3e611", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T22:14:38.964Z", + "completed":"2016-11-06T22:14:38.964Z", + "new_balance":"14236.25", + "value":"-14.64" + } + }, + { + "id":"6d42117b-3d67-4acb-ac57-17513c4167ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T03:44:46.654Z", + "completed":"2016-11-07T03:44:46.654Z", + "new_balance":"14208.24", + "value":"-28.01" + } + }, + { + "id":"c466092b-40eb-4469-9976-eeb2a06705ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T04:29:01.286Z", + "completed":"2016-11-07T04:29:01.286Z", + "new_balance":"14182.44", + "value":"-25.80" + } + }, + { + "id":"40decc57-170f-4d71-87cd-9041f3351af2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:23:33.728Z", + "completed":"2016-11-07T07:23:33.728Z", + "new_balance":"14159.07", + "value":"-23.37" + } + }, + { + "id":"efc10e8e-6ed7-4652-a93f-f52b1eda0387", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T01:20:00.695Z", + "completed":"2016-11-09T01:20:00.695Z", + "new_balance":"14085.14", + "value":"-73.93" + } + }, + { + "id":"ac99479a-2157-4794-8cb4-34e0c583d92e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T01:55:16.076Z", + "completed":"2016-11-09T01:55:16.076Z", + "new_balance":"14081.05", + "value":"-4.09" + } + }, + { + "id":"48df1edb-c328-4737-85f3-1e3e6846428e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T04:55:03.718Z", + "completed":"2016-11-12T04:55:03.718Z", + "new_balance":"14053.20", + "value":"-27.85" + } + }, + { + "id":"b672e87e-42db-4c50-ad2d-e3b5c40b76c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T11:56:14.364Z", + "completed":"2016-11-12T11:56:14.364Z", + "new_balance":"14032.10", + "value":"-21.10" + } + }, + { + "id":"32175e73-dcb2-4e46-a0cb-a0104d8bd06e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:02:36.203Z", + "completed":"2016-11-14T01:02:36.203Z", + "new_balance":"13986.93", + "value":"-45.17" + } + }, + { + "id":"621a0cf5-90d1-45dc-ad22-0bcda2d6b057", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T05:51:44.863Z", + "completed":"2016-11-14T05:51:44.863Z", + "new_balance":"13938.23", + "value":"-48.70" + } + }, + { + "id":"443d391d-8851-4f98-a76a-dd71f713e0a1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T03:43:55.785Z", + "completed":"2016-11-16T03:43:55.785Z", + "new_balance":"13932.46", + "value":"-5.77" + } + }, + { + "id":"bbf7729e-48ef-4175-855f-62528cceaffc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T07:46:47.044Z", + "completed":"2016-11-18T07:46:47.044Z", + "new_balance":"13923.94", + "value":"-8.52" + } + }, + { + "id":"73a9be22-4a9f-4632-8760-35aa2fa9caa5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T03:48:17.901Z", + "completed":"2016-11-20T03:48:17.901Z", + "new_balance":"13962.95", + "value":"39.01" + } + }, + { + "id":"7c80f6eb-49b6-4ca2-9850-30ac4eac8975", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T10:14:40.072Z", + "completed":"2016-11-21T10:14:40.072Z", + "new_balance":"13917.32", + "value":"-45.63" + } + }, + { + "id":"43cbd5c7-8fb1-4e44-abdf-947d2e4d73de", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T14:07:30.446Z", + "completed":"2016-11-21T14:07:30.446Z", + "new_balance":"13873.53", + "value":"-43.79" + } + }, + { + "id":"04fef0c9-e86a-44cc-a0e6-17b34d26f418", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T11:44:31.720Z", + "completed":"2016-11-27T11:44:31.720Z", + "new_balance":"13840.00", + "value":"-33.53" + } + }, + { + "id":"133fceab-d319-4907-9f47-24286e6e59aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T15:56:12.195Z", + "completed":"2016-11-27T15:56:12.195Z", + "new_balance":"13814.44", + "value":"-25.56" + } + }, + { + "id":"108a123d-d829-4286-8f25-0db7df462024", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:43:00.860Z", + "completed":"2016-12-01T01:43:00.860Z", + "new_balance":"13780.01", + "value":"-34.43" + } + }, + { + "id":"5e638b1b-d21b-4452-9b0c-6d75c34ab2cb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T04:00:47.982Z", + "completed":"2016-12-01T04:00:47.982Z", + "new_balance":"13645.53", + "value":"-134.48" + } + }, + { + "id":"e6802f19-873f-4fbd-826b-6ec924e84f67", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T07:38:17.981Z", + "completed":"2016-12-01T07:38:17.981Z", + "new_balance":"13592.35", + "value":"-53.18" + } + }, + { + "id":"77539612-7445-4bf1-a945-aa15a78f130c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:58:29.116Z", + "completed":"2016-12-01T10:58:29.116Z", + "new_balance":"15272.76", + "value":"1680.41" + } + }, + { + "id":"e33c3bca-c0d4-450e-868d-3b89d3acd179", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T18:57:34.024Z", + "completed":"2016-12-01T18:57:34.024Z", + "new_balance":"14762.22", + "value":"-510.54" + } + }, + { + "id":"e75e6f27-4ce0-47ab-9259-dd79793bf96d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T20:04:59.852Z", + "completed":"2016-12-01T20:04:59.852Z", + "new_balance":"14732.34", + "value":"-29.88" + } + }, + { + "id":"bd9bc2a2-2ef0-41bf-98c8-77ce9a4e7f99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:37:45.486Z", + "completed":"2016-12-04T07:37:45.486Z", + "new_balance":"14600.50", + "value":"-131.84" + } + }, + { + "id":"a336b394-0a0d-4d79-a33f-e7f7941b1ed7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T20:25:51.420Z", + "completed":"2016-12-04T20:25:51.420Z", + "new_balance":"14513.94", + "value":"-86.56" + } + }, + { + "id":"f48e90e9-667e-4636-a877-945218e6818d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T15:50:03.252Z", + "completed":"2016-12-12T15:50:03.252Z", + "new_balance":"14483.13", + "value":"-30.81" + } + }, + { + "id":"d4a272ac-245b-4fa9-b7b0-8b2dfdc2fb65", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T21:27:26.480Z", + "completed":"2016-12-12T21:27:26.480Z", + "new_balance":"14472.60", + "value":"-10.53" + } + }, + { + "id":"3f5c6b8e-7f47-49f4-abad-1c26717994fc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T07:16:25.339Z", + "completed":"2016-12-13T07:16:25.339Z", + "new_balance":"14466.13", + "value":"-6.47" + } + }, + { + "id":"edc81db2-372c-4d62-8aef-fab40f6a0bdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T11:40:36.040Z", + "completed":"2016-12-13T11:40:36.040Z", + "new_balance":"14384.92", + "value":"-81.21" + } + }, + { + "id":"6d1d5be5-81e1-402a-91c2-99040e257713", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T15:41:47.264Z", + "completed":"2016-12-16T15:41:47.264Z", + "new_balance":"14343.69", + "value":"-41.23" + } + }, + { + "id":"b291f517-143a-46e8-92bd-caa173a87410", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T04:56:05.929Z", + "completed":"2016-12-18T04:56:05.929Z", + "new_balance":"14338.92", + "value":"-4.77" + } + }, + { + "id":"77b8f36f-cdcc-42b4-a132-fc8b12115ab8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T00:48:15.146Z", + "completed":"2016-12-19T00:48:15.146Z", + "new_balance":"14257.71", + "value":"-81.21" + } + }, + { + "id":"748487b5-7f0e-4c5f-9f05-361d0beb8663", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T03:38:07.463Z", + "completed":"2016-12-19T03:38:07.463Z", + "new_balance":"14173.91", + "value":"-83.80" + } + }, + { + "id":"f32b148a-4b9f-446a-a19d-8b844bf2a119", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T12:30:31.740Z", + "completed":"2016-12-20T12:30:31.740Z", + "new_balance":"14131.57", + "value":"-42.34" + } + }, + { + "id":"ecfaa810-07cc-44c6-a344-9f0731472175", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T15:38:34.780Z", + "completed":"2016-12-21T15:38:34.780Z", + "new_balance":"14047.77", + "value":"-83.80" + } + }, + { + "id":"0ff1b7b2-5427-4e70-994c-933e404acfa8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T00:43:02.793Z", + "completed":"2016-12-24T00:43:02.793Z", + "new_balance":"14034.53", + "value":"-13.24" + } + }, + { + "id":"69bb769f-501d-46ac-857f-873f0a24330e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T10:36:43.878Z", + "completed":"2016-12-24T10:36:43.878Z", + "new_balance":"14007.23", + "value":"-27.30" + } + }, + { + "id":"33084d93-e328-445b-b8a9-3eda2915354a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T18:43:51.997Z", + "completed":"2016-12-24T18:43:51.997Z", + "new_balance":"13961.22", + "value":"-46.01" + } + }, + { + "id":"0cb73a9b-212f-440f-87d1-7894061874bd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T19:41:20.993Z", + "completed":"2016-12-24T19:41:20.993Z", + "new_balance":"13869.75", + "value":"-91.47" + } + }, + { + "id":"ec61ad70-480c-4723-8243-d88807bf0e74", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T21:48:09.905Z", + "completed":"2016-12-24T21:48:09.905Z", + "new_balance":"13866.17", + "value":"-3.58" + } + }, + { + "id":"ca0bd91d-e442-4450-80e3-ae113889c3fe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T23:24:52.346Z", + "completed":"2016-12-24T23:24:52.346Z", + "new_balance":"13858.89", + "value":"-7.28" + } + }, + { + "id":"b58a1b49-81a9-45a6-a30f-aaa912305e44", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T05:46:49.406Z", + "completed":"2016-12-28T05:46:49.406Z", + "new_balance":"13851.90", + "value":"-6.99" + } + }, + { + "id":"19f2e772-aaf2-49d5-bd00-075989f3e68f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T08:03:33.638Z", + "completed":"2016-12-28T08:03:33.638Z", + "new_balance":"13770.49", + "value":"-81.41" + } + }, + { + "id":"98198617-8486-467b-8b64-c262b6603c99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T20:07:47.629Z", + "completed":"2016-12-28T20:07:47.629Z", + "new_balance":"13763.50", + "value":"-6.99" + } + }, + { + "id":"592bfaea-2178-4dea-a439-7d3e4919feff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T21:19:41.202Z", + "completed":"2016-12-28T21:19:41.202Z", + "new_balance":"13716.70", + "value":"-46.80" + } + }, + { + "id":"85bafcb9-dd9f-46c3-8f40-25ac14cf8850", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T09:35:27.210Z", + "completed":"2016-12-29T09:35:27.210Z", + "new_balance":"13643.19", + "value":"-73.51" + } + }, + { + "id":"6c30c4ef-ee53-4e7a-a908-0749d09f53be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T13:29:12.441Z", + "completed":"2016-12-29T13:29:12.441Z", + "new_balance":"13606.24", + "value":"-36.95" + } + }, + { + "id":"f5dc97e8-95b9-4fa0-a2d9-a03e67da064e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T16:17:47.651Z", + "completed":"2016-12-29T16:17:47.651Z", + "new_balance":"13599.77", + "value":"-6.47" + } + }, + { + "id":"0b2e4ec3-b6da-4681-af0e-7c1abfbc2c9f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T16:56:33.427Z", + "completed":"2016-12-29T16:56:33.427Z", + "new_balance":"13548.76", + "value":"-51.01" + } + }, + { + "id":"23764cb0-089e-4f9f-898f-051716fcb452", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T18:44:41.053Z", + "completed":"2016-12-29T18:44:41.053Z", + "new_balance":"13514.85", + "value":"-33.91" + } + }, + { + "id":"11232d6a-8032-4e7d-a447-8c863f7f2770", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T19:51:05.693Z", + "completed":"2016-12-29T19:51:05.693Z", + "new_balance":"13455.95", + "value":"-58.90" + } + }, + { + "id":"f4dbc229-e326-47e0-916a-f20edfecfc86", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T13:55:45.441Z", + "completed":"2016-12-30T13:55:45.441Z", + "new_balance":"13410.44", + "value":"-45.51" + } + }, + { + "id":"5fcaa5d1-6ca2-440a-947e-1a2ee3da02b7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T14:24:56.998Z", + "completed":"2016-12-30T14:24:56.998Z", + "new_balance":"13399.21", + "value":"-11.23" + } + }, + { + "id":"67dd5196-1f8a-4ccb-baa0-78a125e4b8d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T15:28:39.488Z", + "completed":"2016-12-30T15:28:39.488Z", + "new_balance":"13393.33", + "value":"-5.88" + } + }, + { + "id":"6b8b3064-ff8e-48d6-a4c1-4ad3a34a319b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T16:15:11.588Z", + "completed":"2016-12-30T16:15:11.588Z", + "new_balance":"13364.47", + "value":"-28.86" + } + }, + { + "id":"8c65e98c-60f4-4592-88a3-318c9764bd97", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T02:41:10.453Z", + "completed":"2016-12-31T02:41:10.453Z", + "new_balance":"13337.50", + "value":"-26.97" + } + }, + { + "id":"1c3e5b81-2e1c-473a-8d39-e378a023caaf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T08:20:59.944Z", + "completed":"2016-12-31T08:20:59.944Z", + "new_balance":"13148.23", + "value":"-189.27" + } + }, + { + "id":"4f100b74-1f05-48f6-b427-cee78b49ab63", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T11:14:12.645Z", + "completed":"2016-12-31T11:14:12.645Z", + "new_balance":"13114.20", + "value":"-34.03" + } + }, + { + "id":"e1c84550-398e-4c24-948d-56b28cf35da5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T19:57:38.596Z", + "completed":"2016-12-31T19:57:38.596Z", + "new_balance":"13098.12", + "value":"-16.08" + } + }, + { + "id":"a3e4c979-f094-46ea-a927-472ecc3af8d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T03:44:37.770Z", + "completed":"2017-01-01T03:44:37.770Z", + "new_balance":"13063.69", + "value":"-34.43" + } + }, + { + "id":"184dd4dd-24be-4a9a-8514-d5e4f61bd8f8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:17:50.561Z", + "completed":"2017-01-01T05:17:50.561Z", + "new_balance":"12929.21", + "value":"-134.48" + } + }, + { + "id":"d06d4d83-b4c1-4550-b51a-a9867bae760d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T06:52:11.654Z", + "completed":"2017-01-01T06:52:11.654Z", + "new_balance":"12876.03", + "value":"-53.18" + } + }, + { + "id":"e75b1fc9-de6e-405c-95b8-f70763ec89e5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T13:54:22.884Z", + "completed":"2017-01-01T13:54:22.884Z", + "new_balance":"12841.60", + "value":"-34.43" + } + }, + { + "id":"75dc59e0-38a1-4848-ac12-43e8a184b9f7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T15:05:36.390Z", + "completed":"2017-01-01T15:05:36.390Z", + "new_balance":"12811.72", + "value":"-29.88" + } + }, + { + "id":"7b1a5b4b-2658-49e6-94b5-8e997d419c18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T19:59:35.002Z", + "completed":"2017-01-01T19:59:35.002Z", + "new_balance":"12301.18", + "value":"-510.54" + } + }, + { + "id":"3531ab2b-f660-4381-b958-eb9aa01a341e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T19:19:17.428Z", + "completed":"2017-01-02T19:19:17.428Z", + "new_balance":"12214.62", + "value":"-86.56" + } + }, + { + "id":"7b310545-1aa2-40c2-b879-e05db71649ef", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T19:55:01.149Z", + "completed":"2017-01-02T19:55:01.149Z", + "new_balance":"12142.63", + "value":"-71.99" + } + }, + { + "id":"ec719277-d32b-488c-972c-f4dee27abb72", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T03:15:40.963Z", + "completed":"2017-01-04T03:15:40.963Z", + "new_balance":"12105.44", + "value":"-37.19" + } + }, + { + "id":"3a9fd115-9d3e-4775-b0fe-0592db0d2033", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T19:42:09.247Z", + "completed":"2017-01-04T19:42:09.247Z", + "new_balance":"12070.66", + "value":"-34.78" + } + }, + { + "id":"210b2895-cca3-48fd-a68d-5fc51ee0078c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T13:53:37.168Z", + "completed":"2017-01-07T13:53:37.168Z", + "new_balance":"11996.73", + "value":"-73.93" + } + }, + { + "id":"d117555b-d487-44fc-a0bc-d50cf8f53561", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T11:07:17.375Z", + "completed":"2017-01-09T11:07:17.375Z", + "new_balance":"11993.14", + "value":"-3.59" + } + }, + { + "id":"ab209f00-6f62-4486-ab34-8f97e4fce8b3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T22:11:57.212Z", + "completed":"2017-01-10T22:11:57.212Z", + "new_balance":"11965.69", + "value":"-27.45" + } + }, + { + "id":"80291606-348f-4dc9-9cb5-9332d1757025", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T01:03:47.009Z", + "completed":"2017-01-12T01:03:47.009Z", + "new_balance":"11934.40", + "value":"-31.29" + } + }, + { + "id":"eb206a6b-2368-4cb3-93bf-8ac5d21474d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T11:22:35.331Z", + "completed":"2017-01-15T11:22:35.331Z", + "new_balance":"11927.24", + "value":"-7.16" + } + }, + { + "id":"6c199676-c44e-44e5-b559-630530bbbe16", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T17:06:19.012Z", + "completed":"2017-01-15T17:06:19.012Z", + "new_balance":"11912.42", + "value":"-14.82" + } + }, + { + "id":"75443567-9e49-410f-a967-4bdc0b88f1a9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T19:20:47.465Z", + "completed":"2017-01-17T19:20:47.465Z", + "new_balance":"11890.17", + "value":"-22.25" + } + }, + { + "id":"0fcdb82c-9254-4778-ad3a-a4fdd389a08b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T01:37:17.258Z", + "completed":"2017-01-19T01:37:17.258Z", + "new_balance":"11700.90", + "value":"-189.27" + } + }, + { + "id":"17ad9726-0575-46ee-a9e5-af3a230607aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T02:24:50.491Z", + "completed":"2017-01-20T02:24:50.491Z", + "new_balance":"11694.19", + "value":"-6.71" + } + }, + { + "id":"1b7d1011-4ca5-448d-a0d3-7b9cc2f14cdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T01:28:03.246Z", + "completed":"2017-01-22T01:28:03.246Z", + "new_balance":"11648.95", + "value":"-45.24" + } + }, + { + "id":"f3820ef8-9043-4eb8-a220-0be2f3360b7c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T21:31:33.721Z", + "completed":"2017-01-22T21:31:33.721Z", + "new_balance":"11639.25", + "value":"-9.70" + } + }, + { + "id":"c043087c-8407-4d26-bed2-efcc5a1fb577", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T08:31:43.267Z", + "completed":"2017-01-24T08:31:43.267Z", + "new_balance":"11606.97", + "value":"-32.28" + } + }, + { + "id":"25041b7a-4177-4045-a728-8250634fcf79", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T17:38:30.940Z", + "completed":"2017-01-25T17:38:30.940Z", + "new_balance":"11564.45", + "value":"-42.52" + } + }, + { + "id":"326c40cb-4bac-440b-9328-8193d3dffb6c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T20:57:59.490Z", + "completed":"2017-01-25T20:57:59.490Z", + "new_balance":"11557.74", + "value":"-6.71" + } + }, + { + "id":"f82ce6ef-4f50-466d-9945-ac2ed823d45f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T22:51:20.218Z", + "completed":"2017-01-26T22:51:20.218Z", + "new_balance":"11494.17", + "value":"-63.57" + } + }, + { + "id":"01449956-0f54-4804-a5a4-e394e3f2ad23", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T07:13:28.919Z", + "completed":"2017-02-01T07:13:28.919Z", + "new_balance":"10983.63", + "value":"-510.54" + } + }, + { + "id":"71fdc16b-4a49-48ec-811f-5776c1a97be4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T08:02:47.464Z", + "completed":"2017-02-01T08:02:47.464Z", + "new_balance":"10949.20", + "value":"-34.43" + } + }, + { + "id":"2caa684b-1293-40ad-8377-32fdc5575020", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T12:13:46.112Z", + "completed":"2017-02-01T12:13:46.112Z", + "new_balance":"10814.72", + "value":"-134.48" + } + }, + { + "id":"446d9ada-76f3-4226-b2c0-511178295a02", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:58:11.337Z", + "completed":"2017-02-01T15:58:11.337Z", + "new_balance":"10784.84", + "value":"-29.88" + } + }, + { + "id":"4fe99475-4562-4514-8700-932842d2b118", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T19:11:33.366Z", + "completed":"2017-02-01T19:11:33.366Z", + "new_balance":"12465.25", + "value":"1680.41" + } + }, + { + "id":"4c9cbad8-dfc8-4373-a9f9-32e4cbe45cca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T21:25:51.627Z", + "completed":"2017-02-01T21:25:51.627Z", + "new_balance":"12412.07", + "value":"-53.18" + } + }, + { + "id":"68cbf094-a125-408a-9a8d-47c21b591727", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T08:45:42.623Z", + "completed":"2017-02-02T08:45:42.623Z", + "new_balance":"12325.51", + "value":"-86.56" + } + }, + { + "id":"53bbe213-214c-46ea-84b6-7ed0da8c146a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T17:22:45.574Z", + "completed":"2017-02-02T17:22:45.574Z", + "new_balance":"12309.58", + "value":"-15.93" + } + }, + { + "id":"912b3113-6f2d-4238-9e41-79d6b7ff5b8a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T18:21:01.093Z", + "completed":"2017-02-02T18:21:01.093Z", + "new_balance":"12294.94", + "value":"-14.64" + } + }, + { + "id":"b7684d3d-b43f-4dc0-a367-61a3639b4f27", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T08:22:45.553Z", + "completed":"2017-02-03T08:22:45.553Z", + "new_balance":"12266.93", + "value":"-28.01" + } + }, + { + "id":"4b8346a1-bf1d-4f9c-87c1-eb6c2ce2eb36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T15:30:41.283Z", + "completed":"2017-02-03T15:30:41.283Z", + "new_balance":"12241.13", + "value":"-25.80" + } + }, + { + "id":"8b2f67ff-9dd8-46dd-a58c-95c814b62f09", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T18:05:03.900Z", + "completed":"2017-02-03T18:05:03.900Z", + "new_balance":"12217.76", + "value":"-23.37" + } + }, + { + "id":"9f7833cc-c6c9-4588-90ae-400db1efde93", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T09:04:38.440Z", + "completed":"2017-02-06T09:04:38.440Z", + "new_balance":"12143.83", + "value":"-73.93" + } + }, + { + "id":"5626c504-927c-4a88-8d65-89a5d1a16975", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T02:35:36.931Z", + "completed":"2017-02-08T02:35:36.931Z", + "new_balance":"12122.73", + "value":"-21.10" + } + }, + { + "id":"242d5712-0c46-46b2-968f-02e513f31e78", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T14:26:06.182Z", + "completed":"2017-02-08T14:26:06.182Z", + "new_balance":"12118.64", + "value":"-4.09" + } + }, + { + "id":"f89846ff-0dcd-4056-9da8-867517f86870", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T15:08:58.243Z", + "completed":"2017-02-08T15:08:58.243Z", + "new_balance":"12090.79", + "value":"-27.85" + } + }, + { + "id":"ef0102cc-29b3-4ee3-a47a-0462f566b3f3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T01:53:59.344Z", + "completed":"2017-02-09T01:53:59.344Z", + "new_balance":"12042.09", + "value":"-48.70" + } + }, + { + "id":"989e9703-26ca-4749-ba55-ba4c758ea8c9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T15:31:00.917Z", + "completed":"2017-02-09T15:31:00.917Z", + "new_balance":"11996.92", + "value":"-45.17" + } + }, + { + "id":"053850b9-a868-4fce-b9e9-7481ded19b86", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T17:52:06.636Z", + "completed":"2017-02-12T17:52:06.636Z", + "new_balance":"11991.15", + "value":"-5.77" + } + }, + { + "id":"b2838a7a-6caf-4492-898a-de7d5b9908d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T08:59:52.140Z", + "completed":"2017-02-13T08:59:52.140Z", + "new_balance":"11982.63", + "value":"-8.52" + } + }, + { + "id":"9e3d54eb-12d9-44fb-af7e-82954faebb6c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T14:14:47.214Z", + "completed":"2017-02-13T14:14:47.214Z", + "new_balance":"12021.64", + "value":"39.01" + } + }, + { + "id":"364ac303-8342-435d-aa72-08c25bea40e9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T17:25:53.210Z", + "completed":"2017-02-13T17:25:53.210Z", + "new_balance":"11977.85", + "value":"-43.79" + } + }, + { + "id":"cc852f5f-58a8-436d-a0a5-7188dfdd6fd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T01:32:33.145Z", + "completed":"2017-02-14T01:32:33.145Z", + "new_balance":"11932.22", + "value":"-45.63" + } + }, + { + "id":"af060f09-c572-44c8-9910-a578cb169d82", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T17:34:55.823Z", + "completed":"2017-02-15T17:34:55.823Z", + "new_balance":"11906.66", + "value":"-25.56" + } + }, + { + "id":"0610d21a-1ffc-41a7-a88a-bcd0cf439e51", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T19:47:05.809Z", + "completed":"2017-02-28T19:47:05.809Z", + "new_balance":"11873.13", + "value":"-33.53" + } + }, + { + "id":"f928d077-bf70-4d09-87ae-c40e915fee1a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T05:38:45.742Z", + "completed":"2017-03-01T05:38:45.742Z", + "new_balance":"11738.65", + "value":"-134.48" + } + }, + { + "id":"b968b847-b553-461a-92a1-6f161b2f200c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T09:18:05.610Z", + "completed":"2017-03-01T09:18:05.610Z", + "new_balance":"11708.77", + "value":"-29.88" + } + }, + { + "id":"3187f1dc-b8fa-4531-b995-9ea010de27d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T11:45:08.444Z", + "completed":"2017-03-01T11:45:08.444Z", + "new_balance":"13389.18", + "value":"1680.41" + } + }, + { + "id":"c84dd5ff-c52d-41ec-a265-c15f359b4f73", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T12:14:31.903Z", + "completed":"2017-03-01T12:14:31.903Z", + "new_balance":"13354.75", + "value":"-34.43" + } + }, + { + "id":"3e387acd-d9e7-4a10-9307-4b16717741d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T14:25:16.676Z", + "completed":"2017-03-01T14:25:16.676Z", + "new_balance":"13301.57", + "value":"-53.18" + } + }, + { + "id":"f707ee8b-b5c2-41c5-9de7-cd9f0c836c96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T19:23:05.243Z", + "completed":"2017-03-01T19:23:05.243Z", + "new_balance":"12791.03", + "value":"-510.54" + } + }, + { + "id":"ccfc43b6-6753-43af-8165-49fc974234ee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T19:30:01.332Z", + "completed":"2017-03-02T19:30:01.332Z", + "new_balance":"12704.47", + "value":"-86.56" + } + }, + { + "id":"4938c75c-47a3-42e7-8773-f1db67fb324a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T01:48:55.901Z", + "completed":"2017-03-04T01:48:55.901Z", + "new_balance":"12623.26", + "value":"-81.21" + } + }, + { + "id":"434dff29-07fb-41a8-a562-b9bcd9e05d44", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T02:59:24.615Z", + "completed":"2017-03-04T02:59:24.615Z", + "new_balance":"12592.45", + "value":"-30.81" + } + }, + { + "id":"146af177-471b-40fc-94e4-f6a910185ecb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T17:30:24.264Z", + "completed":"2017-03-04T17:30:24.264Z", + "new_balance":"12585.98", + "value":"-6.47" + } + }, + { + "id":"0c4ac343-640c-4eb9-bac8-373df50a6a9e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T18:26:10.770Z", + "completed":"2017-03-04T18:26:10.770Z", + "new_balance":"12575.45", + "value":"-10.53" + } + }, + { + "id":"889089d6-8ff1-436e-a7b5-cd709ab2fc5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T01:54:40.724Z", + "completed":"2017-03-05T01:54:40.724Z", + "new_balance":"12534.22", + "value":"-41.23" + } + }, + { + "id":"7fc0656d-9d22-4f97-ab65-6a24e9de5dc2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T20:11:03.701Z", + "completed":"2017-03-05T20:11:03.701Z", + "new_balance":"12529.45", + "value":"-4.77" + } + }, + { + "id":"7f20391d-f1cc-4639-afe4-744223a2adfd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:29:23.396Z", + "completed":"2017-03-06T03:29:23.396Z", + "new_balance":"12445.65", + "value":"-83.80" + } + }, + { + "id":"a5350c83-69c4-4c84-8380-90fcf566c060", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T08:48:30.082Z", + "completed":"2017-03-06T08:48:30.082Z", + "new_balance":"12364.44", + "value":"-81.21" + } + }, + { + "id":"222e0e31-7191-41a7-8e9d-0a5719099104", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T04:30:47.170Z", + "completed":"2017-03-07T04:30:47.170Z", + "new_balance":"12322.10", + "value":"-42.34" + } + }, + { + "id":"66d7cc76-190b-424c-b87d-be7412e61977", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T04:07:47.377Z", + "completed":"2017-03-08T04:07:47.377Z", + "new_balance":"12238.30", + "value":"-83.80" + } + }, + { + "id":"9d199692-f2db-4b34-8ae8-6906710d5ef3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T20:05:41.932Z", + "completed":"2017-03-09T20:05:41.932Z", + "new_balance":"12234.72", + "value":"-3.58" + } + }, + { + "id":"01778ab1-6fdc-4a45-a9a6-b0eb761e7fbd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T15:29:30.742Z", + "completed":"2017-03-10T15:29:30.742Z", + "new_balance":"12143.25", + "value":"-91.47" + } + }, + { + "id":"0da01fc4-722f-4045-bd50-4739f1557eb6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:35:39.462Z", + "completed":"2017-03-11T19:35:39.462Z", + "new_balance":"12135.97", + "value":"-7.28" + } + }, + { + "id":"08be6dee-3f36-4c11-b475-94cc94e3e0dc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T00:41:21.869Z", + "completed":"2017-03-12T00:41:21.869Z", + "new_balance":"12108.67", + "value":"-27.30" + } + }, + { + "id":"a2337665-6ce2-4526-9800-51b96179ca2d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T16:49:58.658Z", + "completed":"2017-03-12T16:49:58.658Z", + "new_balance":"12095.43", + "value":"-13.24" + } + }, + { + "id":"9be5d404-96fb-4853-b569-b65d8703e6ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T23:58:26.196Z", + "completed":"2017-03-13T23:58:26.196Z", + "new_balance":"12049.42", + "value":"-46.01" + } + }, + { + "id":"8be824c6-2b9a-4dc7-b6cb-2a9a130e8318", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T15:51:30.605Z", + "completed":"2017-03-14T15:51:30.605Z", + "new_balance":"12042.43", + "value":"-6.99" + } + }, + { + "id":"3ed38bde-4e48-4d6f-b868-f4fa6abb4db1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T01:18:49.665Z", + "completed":"2017-03-16T01:18:49.665Z", + "new_balance":"11961.02", + "value":"-81.41" + } + }, + { + "id":"6bb1bb7d-df4e-4965-9ab6-446e2de77453", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T07:55:56.569Z", + "completed":"2017-03-16T07:55:56.569Z", + "new_balance":"11914.22", + "value":"-46.80" + } + }, + { + "id":"5c21d6c2-2167-4f58-bd2a-5281ca5b3570", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T07:25:43.091Z", + "completed":"2017-03-18T07:25:43.091Z", + "new_balance":"11907.23", + "value":"-6.99" + } + }, + { + "id":"88d6514f-c2e1-4500-81b2-05225d3e79a2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T01:49:09.348Z", + "completed":"2017-03-19T01:49:09.348Z", + "new_balance":"11870.28", + "value":"-36.95" + } + }, + { + "id":"ee355a68-b006-4aee-b58d-549ec7869176", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T04:07:31.626Z", + "completed":"2017-03-19T04:07:31.626Z", + "new_balance":"11819.27", + "value":"-51.01" + } + }, + { + "id":"4ad9b49e-e7b0-4106-baf1-e15ea91dec1e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T18:03:03.745Z", + "completed":"2017-03-19T18:03:03.745Z", + "new_balance":"11785.36", + "value":"-33.91" + } + }, + { + "id":"1b4fe281-7133-48d9-a1dd-a140522e0f08", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T19:26:43.807Z", + "completed":"2017-03-20T19:26:43.807Z", + "new_balance":"11726.46", + "value":"-58.90" + } + }, + { + "id":"2e7ccbff-7696-4ae3-b149-b1c27b9a2d0f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T23:25:11.399Z", + "completed":"2017-03-20T23:25:11.399Z", + "new_balance":"11652.95", + "value":"-73.51" + } + }, + { + "id":"fe96b8fa-ab43-4d3c-a9e5-0a63c19215f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T10:29:58.366Z", + "completed":"2017-03-21T10:29:58.366Z", + "new_balance":"11647.07", + "value":"-5.88" + } + }, + { + "id":"26f40732-751f-4c56-9ac7-78e189a7543e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T23:40:54.919Z", + "completed":"2017-03-21T23:40:54.919Z", + "new_balance":"11640.60", + "value":"-6.47" + } + }, + { + "id":"3ffce944-113c-4612-9cfa-84cf192305dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T14:49:47.364Z", + "completed":"2017-03-23T14:49:47.364Z", + "new_balance":"11629.37", + "value":"-11.23" + } + }, + { + "id":"ac9be25f-c917-4c96-80e3-a4f1348eeaf9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T15:06:44.512Z", + "completed":"2017-03-23T15:06:44.512Z", + "new_balance":"11583.86", + "value":"-45.51" + } + }, + { + "id":"ab051664-13ea-4099-9e8f-74c1394ed7d1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T14:38:43.104Z", + "completed":"2017-03-24T14:38:43.104Z", + "new_balance":"11555.00", + "value":"-28.86" + } + }, + { + "id":"e1884c18-4ae5-47a8-bc99-ba5d1d622244", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T00:26:24.572Z", + "completed":"2017-03-25T00:26:24.572Z", + "new_balance":"11520.97", + "value":"-34.03" + } + }, + { + "id":"214b4280-7c5b-4dba-9f2c-df6e9c4582ca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T08:41:25.181Z", + "completed":"2017-03-25T08:41:25.181Z", + "new_balance":"11504.89", + "value":"-16.08" + } + }, + { + "id":"8d009695-4ec9-41a1-8bda-729f5a83ad63", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T10:10:22.616Z", + "completed":"2017-03-27T10:10:22.616Z", + "new_balance":"11315.62", + "value":"-189.27" + } + }, + { + "id":"f73cb57f-367a-451d-9ca7-e1fad8a5cb4c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T00:45:35.167Z", + "completed":"2017-03-28T00:45:35.167Z", + "new_balance":"11288.65", + "value":"-26.97" + } + }, + { + "id":"05fa5027-b1ce-4a57-9334-c864869747d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:55:37.887Z", + "completed":"2017-04-01T00:55:37.887Z", + "new_balance":"11154.17", + "value":"-134.48" + } + }, + { + "id":"4bde1733-1805-43ea-9d71-274991e89d9b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T14:58:33.243Z", + "completed":"2017-04-01T14:58:33.243Z", + "new_balance":"11100.99", + "value":"-53.18" + } + }, + { + "id":"9fe4769a-1702-40ea-b511-940ce520ab5a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T18:50:55.862Z", + "completed":"2017-04-01T18:50:55.862Z", + "new_balance":"11071.11", + "value":"-29.88" + } + }, + { + "id":"8e55b69d-575c-416c-836c-78a3da4f35fd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T20:33:01.640Z", + "completed":"2017-04-01T20:33:01.640Z", + "new_balance":"10560.57", + "value":"-510.54" + } + }, + { + "id":"03839656-d38b-4b43-90dc-f007aeddbe9d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T08:19:49.791Z", + "completed":"2017-04-02T08:19:49.791Z", + "new_balance":"10474.01", + "value":"-86.56" + } + }, + { + "id":"3e496d79-ea35-47e4-aeed-2476dc7ec090", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T16:11:35.009Z", + "completed":"2017-04-02T16:11:35.009Z", + "new_balance":"10402.02", + "value":"-71.99" + } + }, + { + "id":"fac4643b-b362-4e41-80e7-ac2386fae18c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T03:00:21.818Z", + "completed":"2017-04-03T03:00:21.818Z", + "new_balance":"10364.83", + "value":"-37.19" + } + }, + { + "id":"b3b8a19b-0de3-4046-947a-8f8003aebd36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T12:45:19.404Z", + "completed":"2017-04-03T12:45:19.404Z", + "new_balance":"10327.64", + "value":"-37.19" + } + }, + { + "id":"03b4ff84-992b-4bd9-9c14-c32bf7e9ddd7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T13:27:20.497Z", + "completed":"2017-04-03T13:27:20.497Z", + "new_balance":"10292.86", + "value":"-34.78" + } + }, + { + "id":"ef3a2611-8c38-4be0-9dc0-fd7d0936c937", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T15:03:20.933Z", + "completed":"2017-04-03T15:03:20.933Z", + "new_balance":"10415.06", + "value":"122.20" + } + }, + { + "id":"d53ae311-111c-47ac-a745-92604f099098", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:42:23.282Z", + "completed":"2017-04-03T23:42:23.282Z", + "new_balance":"10487.89", + "value":"72.83" + } + }, + { + "id":"60dfc5b2-a783-4078-bc1c-96388123ffdb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T13:45:34.605Z", + "completed":"2017-04-04T13:45:34.605Z", + "new_balance":"10413.96", + "value":"-73.93" + } + }, + { + "id":"3d0f25aa-ea22-4c88-a77f-63b20d5ab8be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T03:28:51.199Z", + "completed":"2017-04-05T03:28:51.199Z", + "new_balance":"10386.51", + "value":"-27.45" + } + }, + { + "id":"10a14d7f-138d-4ee1-9788-a096c6524f50", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T14:07:02.893Z", + "completed":"2017-04-05T14:07:02.893Z", + "new_balance":"10382.92", + "value":"-3.59" + } + }, + { + "id":"4501b562-69a8-4762-ab2b-c82defaf532b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T08:39:00.956Z", + "completed":"2017-04-07T08:39:00.956Z", + "new_balance":"10368.10", + "value":"-14.82" + } + }, + { + "id":"02edbcdc-a724-4815-ae1a-13d9835e09d3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T22:23:07.995Z", + "completed":"2017-04-07T22:23:07.995Z", + "new_balance":"10336.81", + "value":"-31.29" + } + }, + { + "id":"072887cb-58de-4c22-8d41-ca28a264521e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T03:37:26.191Z", + "completed":"2017-04-08T03:37:26.191Z", + "new_balance":"10329.65", + "value":"-7.16" + } + }, + { + "id":"50d6a4d7-ed53-44bc-a6aa-9b2ba03d8269", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T02:35:45.007Z", + "completed":"2017-04-09T02:35:45.007Z", + "new_balance":"10307.40", + "value":"-22.25" + } + }, + { + "id":"b4ef98af-b9fe-414b-a9cf-4645c559706b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T08:51:09.122Z", + "completed":"2017-04-09T08:51:09.122Z", + "new_balance":"10300.69", + "value":"-6.71" + } + }, + { + "id":"d4406b0b-7b8d-4508-9832-f33d3744496b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T13:11:50.897Z", + "completed":"2017-04-09T13:11:50.897Z", + "new_balance":"10111.42", + "value":"-189.27" + } + }, + { + "id":"460a84cc-e14e-491c-adaa-027047a223fe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:56:34.366Z", + "completed":"2017-04-10T14:56:34.366Z", + "new_balance":"10066.18", + "value":"-45.24" + } + }, + { + "id":"868c6b62-f881-4865-a4b6-ff3e348a7137", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T07:17:48.604Z", + "completed":"2017-04-17T07:17:48.604Z", + "new_balance":"10056.48", + "value":"-9.70" + } + }, + { + "id":"813a08e5-1174-4ef8-8c7e-93c56729a39c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T09:09:45.416Z", + "completed":"2017-04-18T09:09:45.416Z", + "new_balance":"10024.20", + "value":"-32.28" + } + }, + { + "id":"30128438-93e9-4b11-803b-9abf7898fc4a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T12:54:46.556Z", + "completed":"2017-04-25T12:54:46.556Z", + "new_balance":"9981.68", + "value":"-42.52" + } + }, + { + "id":"430fbb3e-8e1b-4f3f-abb8-fc3beea43fac", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T12:01:04.616Z", + "completed":"2017-04-26T12:01:04.616Z", + "new_balance":"9974.97", + "value":"-6.71" + } + }, + { + "id":"a119bc4b-d56a-4bd6-b6cc-59eea6ede708", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T22:43:17.566Z", + "completed":"2017-04-26T22:43:17.566Z", + "new_balance":"9911.40", + "value":"-63.57" + } + }, + { + "id":"2f2db333-b196-4380-9718-dec2aba9d697", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T02:03:18.641Z", + "completed":"2017-05-02T02:03:18.641Z", + "new_balance":"9776.92", + "value":"-134.48" + } + }, + { + "id":"7c7f2864-16a6-44c7-b1cc-79e4e2788a20", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T02:25:48.396Z", + "completed":"2017-05-02T02:25:48.396Z", + "new_balance":"9690.36", + "value":"-86.56" + } + }, + { + "id":"473a94dd-6106-4e93-b348-c345ab4e99c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T07:48:46.338Z", + "completed":"2017-05-02T07:48:46.338Z", + "new_balance":"9660.48", + "value":"-29.88" + } + }, + { + "id":"3593bde1-cee8-418c-8708-306c181c9e2b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T08:20:57.221Z", + "completed":"2017-05-02T08:20:57.221Z", + "new_balance":"9607.30", + "value":"-53.18" + } + }, + { + "id":"c467e773-1284-4d78-b2dd-726951955666", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T14:12:11.301Z", + "completed":"2017-05-02T14:12:11.301Z", + "new_balance":"9572.87", + "value":"-34.43" + } + }, + { + "id":"35f672d7-2514-4b2a-8f7a-1f11ca76d853", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T15:12:45.734Z", + "completed":"2017-05-02T15:12:45.734Z", + "new_balance":"11253.28", + "value":"1680.41" + } + }, + { + "id":"b2e97f13-0a4b-4fc2-8964-d1fa7d29c10b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T16:25:55.646Z", + "completed":"2017-05-02T16:25:55.646Z", + "new_balance":"10742.74", + "value":"-510.54" + } + }, + { + "id":"44e4b0c3-1492-44b7-9b5c-9ce599f73fd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T19:23:52.500Z", + "completed":"2017-05-02T19:23:52.500Z", + "new_balance":"10726.81", + "value":"-15.93" + } + }, + { + "id":"f9427361-8cc6-45b6-81dd-d45a9176f769", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T01:05:30.379Z", + "completed":"2017-05-03T01:05:30.379Z", + "new_balance":"10712.17", + "value":"-14.64" + } + }, + { + "id":"d272c0b4-b0b8-4f94-ad5a-7fddf2819526", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T21:31:26.688Z", + "completed":"2017-05-03T21:31:26.688Z", + "new_balance":"10688.80", + "value":"-23.37" + } + }, + { + "id":"726e45a1-ef35-4ba6-94cf-1d163d896cd3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T09:29:03.400Z", + "completed":"2017-05-04T09:29:03.400Z", + "new_balance":"10663.00", + "value":"-25.80" + } + }, + { + "id":"a6e5c897-1ffc-49c1-8e3b-84a19104c93b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T18:58:35.855Z", + "completed":"2017-05-04T18:58:35.855Z", + "new_balance":"10634.99", + "value":"-28.01" + } + }, + { + "id":"ec4e3a86-2a64-44f0-b86c-91df97f7f71f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T12:44:47.530Z", + "completed":"2017-05-05T12:44:47.530Z", + "new_balance":"10561.06", + "value":"-73.93" + } + }, + { + "id":"b0626668-c037-4f6d-95e5-2fdb2b646152", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T12:27:01.949Z", + "completed":"2017-05-07T12:27:01.949Z", + "new_balance":"10533.21", + "value":"-27.85" + } + }, + { + "id":"c360cacf-e0f5-4e16-93ad-5ad4dc87fc4e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T19:40:12.341Z", + "completed":"2017-05-07T19:40:12.341Z", + "new_balance":"10529.12", + "value":"-4.09" + } + }, + { + "id":"cfe1c0c0-7966-42d9-91a8-8f41d4c29bb5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T16:02:34.018Z", + "completed":"2017-05-12T16:02:34.018Z", + "new_balance":"10508.02", + "value":"-21.10" + } + }, + { + "id":"af65e617-b4ff-4a92-9978-cbb9eb131f06", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T19:22:49.828Z", + "completed":"2017-05-12T19:22:49.828Z", + "new_balance":"10459.32", + "value":"-48.70" + } + }, + { + "id":"827f74b5-56d4-4db0-bf72-4301ee5dff89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T00:19:35.670Z", + "completed":"2017-05-14T00:19:35.670Z", + "new_balance":"10414.15", + "value":"-45.17" + } + }, + { + "id":"97a1a3f9-f52d-4647-b533-afd0dea6377d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T12:12:07.415Z", + "completed":"2017-05-16T12:12:07.415Z", + "new_balance":"10408.38", + "value":"-5.77" + } + }, + { + "id":"d3cdbc67-80cd-49cf-9030-07582ab60127", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T20:12:36.573Z", + "completed":"2017-05-18T20:12:36.573Z", + "new_balance":"10399.86", + "value":"-8.52" + } + }, + { + "id":"3498e20b-94c9-4ea5-b293-fa747bc93bf0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T03:09:56.096Z", + "completed":"2017-05-20T03:09:56.096Z", + "new_balance":"10438.87", + "value":"39.01" + } + }, + { + "id":"ebc232ae-a614-4566-bd35-6a42583c20f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T06:06:11.113Z", + "completed":"2017-05-21T06:06:11.113Z", + "new_balance":"10395.08", + "value":"-43.79" + } + }, + { + "id":"463e8a0c-c8a8-4f64-bbe7-7bd92043a238", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T13:44:01.511Z", + "completed":"2017-05-21T13:44:01.511Z", + "new_balance":"10349.45", + "value":"-45.63" + } + }, + { + "id":"0230611f-15f4-47f7-85d2-bc9a5ef501a2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T11:07:00.923Z", + "completed":"2017-05-27T11:07:00.923Z", + "new_balance":"10323.89", + "value":"-25.56" + } + }, + { + "id":"8a00b225-dc8a-4440-8fa1-3279b668319d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T17:19:40.637Z", + "completed":"2017-05-27T17:19:40.637Z", + "new_balance":"10290.36", + "value":"-33.53" + } + }, + { + "id":"66fc2771-3dae-471c-a77a-bf67c1a32e70", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:42:54.400Z", + "completed":"2017-06-01T02:42:54.400Z", + "new_balance":"10155.88", + "value":"-134.48" + } + }, + { + "id":"5e204ad2-e6a8-4ded-a30c-e3d2a539e509", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T10:28:45.890Z", + "completed":"2017-06-01T10:28:45.890Z", + "new_balance":"10102.70", + "value":"-53.18" + } + }, + { + "id":"bc5e6126-e449-42f9-b6ec-4181fc8bf888", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T10:46:21.566Z", + "completed":"2017-06-01T10:46:21.566Z", + "new_balance":"11783.11", + "value":"1680.41" + } + }, + { + "id":"538b4f61-289a-4edc-bdf7-a235ef978f04", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T11:17:31.310Z", + "completed":"2017-06-01T11:17:31.310Z", + "new_balance":"11753.23", + "value":"-29.88" + } + }, + { + "id":"ad75219e-d53d-40fb-8f73-592efa214010", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T16:22:38.740Z", + "completed":"2017-06-01T16:22:38.740Z", + "new_balance":"11242.69", + "value":"-510.54" + } + }, + { + "id":"6945e260-2a18-492c-8dd7-5923fe291e6d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T16:32:48.092Z", + "completed":"2017-06-01T16:32:48.092Z", + "new_balance":"11208.26", + "value":"-34.43" + } + }, + { + "id":"c9b2390c-dede-4bc1-85e9-acc233aec1c6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T09:10:56.161Z", + "completed":"2017-06-04T09:10:56.161Z", + "new_balance":"11076.42", + "value":"-131.84" + } + }, + { + "id":"372f0ebf-3498-4f06-9f9d-66bd389027be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T23:03:27.682Z", + "completed":"2017-06-04T23:03:27.682Z", + "new_balance":"10989.86", + "value":"-86.56" + } + }, + { + "id":"186c39f8-3343-4fe2-b083-b05e002df166", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T01:01:30.751Z", + "completed":"2017-06-11T01:01:30.751Z", + "new_balance":"10959.05", + "value":"-30.81" + } + }, + { + "id":"3dcee76b-984e-4734-acbc-92129c9c42f5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T21:28:28.566Z", + "completed":"2017-06-12T21:28:28.566Z", + "new_balance":"10948.52", + "value":"-10.53" + } + }, + { + "id":"c1a02231-baf3-41c3-b6f1-05e4080b5aa6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T12:08:54.985Z", + "completed":"2017-06-13T12:08:54.985Z", + "new_balance":"10942.05", + "value":"-6.47" + } + }, + { + "id":"569dd706-0e3e-4838-89fb-592234f175ba", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T23:14:57.642Z", + "completed":"2017-06-13T23:14:57.642Z", + "new_balance":"10860.84", + "value":"-81.21" + } + }, + { + "id":"04247455-556c-4c92-8d6d-26d23e7be93f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T22:38:18.147Z", + "completed":"2017-06-16T22:38:18.147Z", + "new_balance":"10819.61", + "value":"-41.23" + } + }, + { + "id":"dc2f8eca-fbac-4f0d-bd60-7e7974427863", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T03:37:08.939Z", + "completed":"2017-06-17T03:37:08.939Z", + "new_balance":"10814.84", + "value":"-4.77" + } + }, + { + "id":"6fd71a9e-697e-4497-80ca-cd7d99f633b9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T15:37:53.295Z", + "completed":"2017-06-17T15:37:53.295Z", + "new_balance":"10733.63", + "value":"-81.21" + } + }, + { + "id":"37eed87a-e654-44ee-b9da-d156fc883ec8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T08:05:31.340Z", + "completed":"2017-06-18T08:05:31.340Z", + "new_balance":"10649.83", + "value":"-83.80" + } + }, + { + "id":"356e5186-54b2-44c8-9f27-77695b7b9e65", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T11:23:02.752Z", + "completed":"2017-06-19T11:23:02.752Z", + "new_balance":"10566.03", + "value":"-83.80" + } + }, + { + "id":"bc442e08-532c-4190-9bcb-d436037f3055", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T13:07:13.958Z", + "completed":"2017-06-19T13:07:13.958Z", + "new_balance":"10523.69", + "value":"-42.34" + } + }, + { + "id":"8f266a2e-824d-4a01-ab78-2b52a956913e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T03:32:24.442Z", + "completed":"2017-06-21T03:32:24.442Z", + "new_balance":"10520.11", + "value":"-3.58" + } + }, + { + "id":"37f96aa1-c6c9-451b-8ec8-a7be75cffc49", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T11:01:14.334Z", + "completed":"2017-06-21T11:01:14.334Z", + "new_balance":"10428.64", + "value":"-91.47" + } + }, + { + "id":"e7a9632d-a686-4e6d-a62e-d2881247c619", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T01:32:29.700Z", + "completed":"2017-06-23T01:32:29.700Z", + "new_balance":"10401.34", + "value":"-27.30" + } + }, + { + "id":"fbd738d2-f4b5-4db6-bc07-cc47a2195d62", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T14:25:42.988Z", + "completed":"2017-06-23T14:25:42.988Z", + "new_balance":"10394.06", + "value":"-7.28" + } + }, + { + "id":"57fbfd9f-c531-407e-81ff-f823bfe0dae7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T13:13:07.533Z", + "completed":"2017-06-24T13:13:07.533Z", + "new_balance":"10348.05", + "value":"-46.01" + } + }, + { + "id":"66521cc7-426c-4bb7-a160-8965b8379ed2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T22:49:14.143Z", + "completed":"2017-06-24T22:49:14.143Z", + "new_balance":"10334.81", + "value":"-13.24" + } + }, + { + "id":"34d4f83f-8b57-4bf2-b661-ec5000ca5592", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:39:31.818Z", + "completed":"2017-06-28T01:39:31.818Z", + "new_balance":"10253.40", + "value":"-81.41" + } + }, + { + "id":"9edb875f-0e18-4ab7-9a1b-8f33f0aa8217", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T10:45:09.775Z", + "completed":"2017-06-28T10:45:09.775Z", + "new_balance":"10206.60", + "value":"-46.80" + } + }, + { + "id":"735df767-1910-47fd-8ba5-b8698a8c238b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T14:36:30.616Z", + "completed":"2017-06-28T14:36:30.616Z", + "new_balance":"10199.61", + "value":"-6.99" + } + }, + { + "id":"1a19e348-f258-4550-a05a-382cd6379df1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T23:51:49.214Z", + "completed":"2017-06-28T23:51:49.214Z", + "new_balance":"10192.62", + "value":"-6.99" + } + }, + { + "id":"682c3436-3b81-467f-ab1c-aefe9f18510f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T01:00:52.250Z", + "completed":"2017-06-29T01:00:52.250Z", + "new_balance":"10158.71", + "value":"-33.91" + } + }, + { + "id":"0b02ca30-6ece-4c38-8541-19e96caa48aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T09:00:06.501Z", + "completed":"2017-06-29T09:00:06.501Z", + "new_balance":"10099.81", + "value":"-58.90" + } + }, + { + "id":"29f10a48-a668-4020-998b-e83f1d4e0392", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T15:59:06.179Z", + "completed":"2017-06-29T15:59:06.179Z", + "new_balance":"10026.30", + "value":"-73.51" + } + }, + { + "id":"46225ef2-ae01-4a09-a66e-8530c0f57196", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T16:52:45.142Z", + "completed":"2017-06-29T16:52:45.142Z", + "new_balance":"9975.29", + "value":"-51.01" + } + }, + { + "id":"fca3d5e9-0e95-49d4-acf4-259427a280a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T19:19:17.752Z", + "completed":"2017-06-29T19:19:17.752Z", + "new_balance":"9968.82", + "value":"-6.47" + } + }, + { + "id":"e7268b1f-4496-4410-a30a-e6936c6b56a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:16:15.995Z", + "completed":"2017-06-29T21:16:15.995Z", + "new_balance":"9931.87", + "value":"-36.95" + } + }, + { + "id":"7aa45af0-1b08-4992-9651-0375bdf90303", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T05:24:06.969Z", + "completed":"2017-06-30T05:24:06.969Z", + "new_balance":"9925.99", + "value":"-5.88" + } + }, + { + "id":"0dc26211-97fd-4361-82f2-5abfa5615f18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T07:18:13.404Z", + "completed":"2017-06-30T07:18:13.404Z", + "new_balance":"9914.76", + "value":"-11.23" + } + }, + { + "id":"b6fcfc61-8fd7-442f-9684-1655296ef438", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T11:38:09.803Z", + "completed":"2017-06-30T11:38:09.803Z", + "new_balance":"9885.90", + "value":"-28.86" + } + }, + { + "id":"d48fffff-ecf8-4081-b2fa-7663e79f6adf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T23:08:20.666Z", + "completed":"2017-06-30T23:08:20.666Z", + "new_balance":"9840.39", + "value":"-45.51" + } + }, + { + "id":"8417ba81-f334-4a43-8f4e-2e5784ad801e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T03:49:29.984Z", + "completed":"2017-07-01T03:49:29.984Z", + "new_balance":"9810.51", + "value":"-29.88" + } + }, + { + "id":"f98dc514-debe-4f5a-ab9a-c94468911d71", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T04:05:58.778Z", + "completed":"2017-07-01T04:05:58.778Z", + "new_balance":"9794.43", + "value":"-16.08" + } + }, + { + "id":"f98a2371-38ce-4e14-8505-c6ce46c85d23", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T04:48:52.400Z", + "completed":"2017-07-01T04:48:52.400Z", + "new_balance":"9760.00", + "value":"-34.43" + } + }, + { + "id":"adf6079a-ca18-4f46-a654-c96c0b834340", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T06:22:20.571Z", + "completed":"2017-07-01T06:22:20.571Z", + "new_balance":"9625.52", + "value":"-134.48" + } + }, + { + "id":"3d996a34-fdcf-4ca0-8e82-30af212037a8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T06:25:27.450Z", + "completed":"2017-07-01T06:25:27.450Z", + "new_balance":"9114.98", + "value":"-510.54" + } + }, + { + "id":"7b7b2dc5-1525-43e1-9262-a52f828be068", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T09:07:12.196Z", + "completed":"2017-07-01T09:07:12.196Z", + "new_balance":"9080.55", + "value":"-34.43" + } + }, + { + "id":"4df54661-0c0c-4e9e-a86b-fe6102e35feb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:21:34.090Z", + "completed":"2017-07-01T13:21:34.090Z", + "new_balance":"9027.37", + "value":"-53.18" + } + }, + { + "id":"18d5d493-5866-41b6-8810-0f51a6e5a46d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T15:41:19.924Z", + "completed":"2017-07-01T15:41:19.924Z", + "new_balance":"8838.10", + "value":"-189.27" + } + }, + { + "id":"4844a13a-49bd-4934-97f7-0d7af9782d8f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T16:29:44.148Z", + "completed":"2017-07-01T16:29:44.148Z", + "new_balance":"8804.07", + "value":"-34.03" + } + }, + { + "id":"eb79e1da-077a-4d98-b25a-359fd7c854c8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T22:27:21.545Z", + "completed":"2017-07-01T22:27:21.545Z", + "new_balance":"8777.10", + "value":"-26.97" + } + }, + { + "id":"4c98def9-a5f9-43fd-8b31-7f323cfb530f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T05:22:13.322Z", + "completed":"2017-07-02T05:22:13.322Z", + "new_balance":"8690.54", + "value":"-86.56" + } + }, + { + "id":"11cae818-c6ff-45fa-92c7-7baad594a472", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T01:09:49.827Z", + "completed":"2017-07-03T01:09:49.827Z", + "new_balance":"8595.11", + "value":"-95.43" + } + }, + { + "id":"25ddc5e1-b8a7-434a-961e-d37e6db86e17", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T13:48:25.642Z", + "completed":"2017-07-04T13:48:25.642Z", + "new_balance":"8579.33", + "value":"-15.78" + } + }, + { + "id":"2e02c6a2-be11-4789-8467-41c3a0eead56", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T02:47:13.264Z", + "completed":"2017-07-05T02:47:13.264Z", + "new_balance":"8507.24", + "value":"-72.09" + } + }, + { + "id":"24013dbc-6df0-4c15-b7cf-4bb76dd675e4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T02:54:58.177Z", + "completed":"2017-07-05T02:54:58.177Z", + "new_balance":"8433.31", + "value":"-73.93" + } + }, + { + "id":"3e43cf3b-91b8-480e-86b3-6cf3d7902cb5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T01:00:29.201Z", + "completed":"2017-07-06T01:00:29.201Z", + "new_balance":"8429.72", + "value":"-3.59" + } + }, + { + "id":"5be4c91d-1d87-4a82-98a8-1a6fae05466d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T00:02:02.923Z", + "completed":"2017-07-11T00:02:02.923Z", + "new_balance":"8402.27", + "value":"-27.45" + } + }, + { + "id":"69284e0c-4231-4250-b37e-29f13a963d6e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:00:54.875Z", + "completed":"2017-07-12T10:00:54.875Z", + "new_balance":"8370.98", + "value":"-31.29" + } + }, + { + "id":"d962ade9-efc0-45d4-a798-10c150f864c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T20:18:44.304Z", + "completed":"2017-07-14T20:18:44.304Z", + "new_balance":"8356.16", + "value":"-14.82" + } + }, + { + "id":"25064d52-79e2-4f39-b5d3-3f85668d2bad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T17:47:49.428Z", + "completed":"2017-07-16T17:47:49.428Z", + "new_balance":"8349.00", + "value":"-7.16" + } + }, + { + "id":"2ccda017-6131-4ee3-9e47-543be1d9e0e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T11:44:25.584Z", + "completed":"2017-07-18T11:44:25.584Z", + "new_balance":"8326.75", + "value":"-22.25" + } + }, + { + "id":"d35f93df-a9ba-4a40-ac37-edeff7b8c227", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T05:33:07.558Z", + "completed":"2017-07-20T05:33:07.558Z", + "new_balance":"8137.48", + "value":"-189.27" + } + }, + { + "id":"1b45e2b1-a13a-4e4d-8137-80ccc3d5a30c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T06:37:24.124Z", + "completed":"2017-07-20T06:37:24.124Z", + "new_balance":"8130.77", + "value":"-6.71" + } + }, + { + "id":"72209919-8b05-4308-b73f-1b484f81056a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T07:52:18.872Z", + "completed":"2017-07-24T07:52:18.872Z", + "new_balance":"8085.53", + "value":"-45.24" + } + }, + { + "id":"df0e4bbf-1c63-4ff4-8662-9eea4c4e2b74", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T14:41:12.352Z", + "completed":"2017-07-24T14:41:12.352Z", + "new_balance":"8075.83", + "value":"-9.70" + } + }, + { + "id":"d22ccca7-0289-41b0-9219-021ac6760f71", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T16:49:53.555Z", + "completed":"2017-07-25T16:49:53.555Z", + "new_balance":"8043.55", + "value":"-32.28" + } + }, + { + "id":"04b6af88-7bc3-465c-bb22-ad718ea65e18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T21:09:15.702Z", + "completed":"2017-07-25T21:09:15.702Z", + "new_balance":"8001.03", + "value":"-42.52" + } + }, + { + "id":"aa6b8804-0160-452c-800e-cae36eecc7c4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T09:48:08.080Z", + "completed":"2017-07-26T09:48:08.080Z", + "new_balance":"7937.46", + "value":"-63.57" + } + }, + { + "id":"0d2aab24-173f-494a-b926-7bdec90a9501", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T08:37:13.717Z", + "completed":"2017-07-27T08:37:13.717Z", + "new_balance":"7930.75", + "value":"-6.71" + } + }, + { + "id":"40231373-3eca-4142-85e5-bf2f71f99ad9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T04:02:19.243Z", + "completed":"2017-08-01T04:02:19.243Z", + "new_balance":"7900.87", + "value":"-29.88" + } + }, + { + "id":"da57354d-89f4-411b-974f-0f09929461df", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T05:05:57.723Z", + "completed":"2017-08-01T05:05:57.723Z", + "new_balance":"7847.69", + "value":"-53.18" + } + }, + { + "id":"3fb518a3-e820-469e-9383-8d29b2e1f829", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T13:22:19.625Z", + "completed":"2017-08-01T13:22:19.625Z", + "new_balance":"7813.26", + "value":"-34.43" + } + }, + { + "id":"cff1d433-4670-4d8c-9640-27934926ae39", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T19:09:34.803Z", + "completed":"2017-08-01T19:09:34.803Z", + "new_balance":"7678.78", + "value":"-134.48" + } + }, + { + "id":"63219231-5394-4d83-9ddb-d1a27fe3f7c2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T20:58:10.039Z", + "completed":"2017-08-01T20:58:10.039Z", + "new_balance":"9359.19", + "value":"1680.41" + } + }, + { + "id":"bfb9d7a8-bcda-4287-8a3e-c69b7e69ccbd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T23:43:14.356Z", + "completed":"2017-08-01T23:43:14.356Z", + "new_balance":"8848.65", + "value":"-510.54" + } + }, + { + "id":"452b612d-22d2-40ed-9502-6702e50e8518", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T03:50:52.359Z", + "completed":"2017-08-02T03:50:52.359Z", + "new_balance":"8762.09", + "value":"-86.56" + } + }, + { + "id":"1dc70092-4470-4a61-87db-1e6a8a0f0ae5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T09:38:14.459Z", + "completed":"2017-08-03T09:38:14.459Z", + "new_balance":"8758.50", + "value":"-3.59" + } + }, + { + "id":"ad0e7d51-44ef-42bf-a995-f4ea30b8964d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T22:30:18.569Z", + "completed":"2017-08-04T22:30:18.569Z", + "new_balance":"8723.95", + "value":"-34.55" + } + }, + { + "id":"68b9f857-876d-477c-a4ca-328cce9f9dea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T12:54:53.065Z", + "completed":"2017-08-07T12:54:53.065Z", + "new_balance":"8700.58", + "value":"-23.37" + } + }, + { + "id":"14624990-ad78-401d-819e-1ef8bd85ba5e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T09:45:53.870Z", + "completed":"2017-08-09T09:45:53.870Z", + "new_balance":"8672.57", + "value":"-28.01" + } + }, + { + "id":"4f9479db-bd8c-45c0-a0d4-fe93d4fe1c96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T22:29:18.655Z", + "completed":"2017-08-09T22:29:18.655Z", + "new_balance":"8646.77", + "value":"-25.80" + } + }, + { + "id":"0892cfea-5306-4c31-b960-2f5486884285", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T05:25:23.440Z", + "completed":"2017-08-10T05:25:23.440Z", + "new_balance":"8572.84", + "value":"-73.93" + } + }, + { + "id":"df54aa42-ac9d-47cf-b88e-d172767b648d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T05:53:51.048Z", + "completed":"2017-08-14T05:53:51.048Z", + "new_balance":"8568.75", + "value":"-4.09" + } + }, + { + "id":"1513eb48-a6f2-42cd-ab64-665a92940f2c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T13:39:41.350Z", + "completed":"2017-08-15T13:39:41.350Z", + "new_balance":"8540.90", + "value":"-27.85" + } + }, + { + "id":"e98b540f-9089-47a6-9c84-56c2ab5760f2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T15:29:19.600Z", + "completed":"2017-08-15T15:29:19.600Z", + "new_balance":"8504.97", + "value":"-35.93" + } + }, + { + "id":"bc8eb42b-ea32-4101-90b5-14cb9a95118d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T13:04:54.520Z", + "completed":"2017-08-16T13:04:54.520Z", + "new_balance":"8456.27", + "value":"-48.70" + } + }, + { + "id":"5bc03d77-bbe2-4fa8-bb92-248309d057a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T12:28:21.116Z", + "completed":"2017-08-17T12:28:21.116Z", + "new_balance":"8411.10", + "value":"-45.17" + } + }, + { + "id":"15eec1be-63b7-40c5-9492-30d206302f3c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T07:25:28.001Z", + "completed":"2017-08-20T07:25:28.001Z", + "new_balance":"8402.58", + "value":"-8.52" + } + }, + { + "id":"71d3b626-a26e-4abd-969e-074684baff01", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T09:26:52.432Z", + "completed":"2017-08-20T09:26:52.432Z", + "new_balance":"8396.81", + "value":"-5.77" + } + }, + { + "id":"6e7b4dc3-f1d5-44f0-a4e2-65104d933ee0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T06:55:26.488Z", + "completed":"2017-08-22T06:55:26.488Z", + "new_balance":"8435.82", + "value":"39.01" + } + }, + { + "id":"facd86d9-e5ed-46a2-9b9e-0c39e9b8955a", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T16:43:03.773Z", + "completed":"2017-08-23T16:43:03.773Z", + "new_balance":"8392.03", + "value":"-43.79" + } + }, + { + "id":"3f30707d-45dd-4251-b624-c62c5c90e6c3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T19:26:36.569Z", + "completed":"2017-08-23T19:26:36.569Z", + "new_balance":"8346.40", + "value":"-45.63" + } + }, + { + "id":"2a3a800b-46a8-4d63-aabe-7e1965f88c99", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T07:50:00.072Z", + "completed":"2017-08-28T07:50:00.072Z", + "new_balance":"8320.84", + "value":"-25.56" + } + }, + { + "id":"062df237-27b9-4ef0-a261-1113d5bc40ad", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T13:06:55.880Z", + "completed":"2017-08-28T13:06:55.880Z", + "new_balance":"8287.31", + "value":"-33.53" + } + }, + { + "id":"0df0ff24-e888-4153-b533-e18511c53ea3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T09:29:34.105Z", + "completed":"2017-09-01T09:29:34.105Z", + "new_balance":"8257.43", + "value":"-29.88" + } + }, + { + "id":"93913ce0-b2e8-4a66-9181-cb0cc3664cff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T10:59:11.708Z", + "completed":"2017-09-01T10:59:11.708Z", + "new_balance":"8223.00", + "value":"-34.43" + } + }, + { + "id":"1dd7fbb1-f572-470a-bb6d-f88bbbb25d6b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:56:20.834Z", + "completed":"2017-09-01T15:56:20.834Z", + "new_balance":"8169.82", + "value":"-53.18" + } + }, + { + "id":"f3a4ba6b-2236-4ea8-990f-bbdd18c2fd31", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:31:40.733Z", + "completed":"2017-09-01T17:31:40.733Z", + "new_balance":"9850.23", + "value":"1680.41" + } + }, + { + "id":"c84be7ca-c088-40d7-91fb-bd2bab97624e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:49:02.374Z", + "completed":"2017-09-01T21:49:02.374Z", + "new_balance":"9715.75", + "value":"-134.48" + } + }, + { + "id":"b0599048-c90d-443f-a0e1-ac199198fc79", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T22:01:19.885Z", + "completed":"2017-09-01T22:01:19.885Z", + "new_balance":"9205.21", + "value":"-510.54" + } + }, + { + "id":"09f73843-567e-4c35-8651-4218bb9ae573", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T12:27:03.231Z", + "completed":"2017-09-02T12:27:03.231Z", + "new_balance":"9118.65", + "value":"-86.56" + } + }, + { + "id":"1a2786c8-298e-4a3f-923b-ca12ee6c7e18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T10:19:18.454Z", + "completed":"2017-09-04T10:19:18.454Z", + "new_balance":"9112.18", + "value":"-6.47" + } + }, + { + "id":"8153b5cc-5ec7-4dcb-8b78-d4291ed9c82e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T19:04:10.083Z", + "completed":"2017-09-04T19:04:10.083Z", + "new_balance":"9030.97", + "value":"-81.21" + } + }, + { + "id":"97670ddf-056b-4226-ba21-76a8ebcb0463", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T20:03:00.305Z", + "completed":"2017-09-04T20:03:00.305Z", + "new_balance":"9000.16", + "value":"-30.81" + } + }, + { + "id":"7e70f1e1-a3f8-40b8-92cf-b7731165cec6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T22:33:22.029Z", + "completed":"2017-09-04T22:33:22.029Z", + "new_balance":"8989.63", + "value":"-10.53" + } + }, + { + "id":"65ad668f-4246-4e78-b1de-7b22aef50504", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T11:06:12.345Z", + "completed":"2017-09-05T11:06:12.345Z", + "new_balance":"8984.86", + "value":"-4.77" + } + }, + { + "id":"4c4899dc-8457-4e74-8196-c1f3c3371fb6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T22:15:27.117Z", + "completed":"2017-09-05T22:15:27.117Z", + "new_balance":"8943.63", + "value":"-41.23" + } + }, + { + "id":"c591b85f-2a58-4a94-bad7-3116b3f2d3d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T06:20:32.280Z", + "completed":"2017-09-06T06:20:32.280Z", + "new_balance":"8859.83", + "value":"-83.80" + } + }, + { + "id":"352ec12e-11a3-46e7-8b8e-12bdabbee3be", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T08:59:32.586Z", + "completed":"2017-09-06T08:59:32.586Z", + "new_balance":"8778.62", + "value":"-81.21" + } + }, + { + "id":"931c9ffb-aede-4f46-957f-647a5b333fec", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T05:18:06.685Z", + "completed":"2017-09-08T05:18:06.685Z", + "new_balance":"8736.28", + "value":"-42.34" + } + }, + { + "id":"d8f355dc-00dc-4a6f-93d9-5fb45d519366", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T07:31:18.066Z", + "completed":"2017-09-08T07:31:18.066Z", + "new_balance":"8652.48", + "value":"-83.80" + } + }, + { + "id":"ffdaa054-b45f-4fab-9497-2079eb3aa7e8", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T16:07:27.773Z", + "completed":"2017-09-10T16:07:27.773Z", + "new_balance":"8648.90", + "value":"-3.58" + } + }, + { + "id":"6e7f0bd8-0600-4e99-8d3c-76c4109b927f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T20:56:51.838Z", + "completed":"2017-09-10T20:56:51.838Z", + "new_balance":"8557.43", + "value":"-91.47" + } + }, + { + "id":"13fc538a-5eba-4de1-ba81-621ee7cd7e3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T14:57:53.856Z", + "completed":"2017-09-11T14:57:53.856Z", + "new_balance":"8550.15", + "value":"-7.28" + } + }, + { + "id":"e3286f4e-e620-491e-b04d-e9fbc7a755ea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T05:30:27.993Z", + "completed":"2017-09-12T05:30:27.993Z", + "new_balance":"8522.85", + "value":"-27.30" + } + }, + { + "id":"c39676f4-4fcc-4a42-b07c-912da8eb4db0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T09:24:01.231Z", + "completed":"2017-09-12T09:24:01.231Z", + "new_balance":"8509.61", + "value":"-13.24" + } + }, + { + "id":"283cf3ce-3c2c-4cea-8575-b97ff19490d9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T03:56:17.216Z", + "completed":"2017-09-13T03:56:17.216Z", + "new_balance":"8463.60", + "value":"-46.01" + } + }, + { + "id":"b1ae40a4-7c0c-4b2d-b8a7-c272c4028ff1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T20:40:25.789Z", + "completed":"2017-09-16T20:40:25.789Z", + "new_balance":"8456.61", + "value":"-6.99" + } + }, + { + "id":"64416764-cc77-48f1-88f4-77ff77374b3b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T08:59:23.125Z", + "completed":"2017-09-17T08:59:23.125Z", + "new_balance":"8375.20", + "value":"-81.41" + } + }, + { + "id":"339b2d11-2914-4ef4-a4f3-91cca3e556ea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T09:50:23.414Z", + "completed":"2017-09-17T09:50:23.414Z", + "new_balance":"8328.40", + "value":"-46.80" + } + }, + { + "id":"2df3db79-0384-4145-8728-40b349055984", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T20:54:31.653Z", + "completed":"2017-09-18T20:54:31.653Z", + "new_balance":"8321.41", + "value":"-6.99" + } + }, + { + "id":"6e6a06c7-486a-4a1f-b280-8e49496eeeca", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:13:00.285Z", + "completed":"2017-09-19T20:13:00.285Z", + "new_balance":"8287.50", + "value":"-33.91" + } + }, + { + "id":"3fd1f6c1-188a-4a2e-8fab-99b3b8b14e17", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:34:18.808Z", + "completed":"2017-09-19T20:34:18.808Z", + "new_balance":"8236.49", + "value":"-51.01" + } + }, + { + "id":"124f3931-7416-446b-861c-7110bd9db11d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T23:38:51.917Z", + "completed":"2017-09-19T23:38:51.917Z", + "new_balance":"8199.54", + "value":"-36.95" + } + }, + { + "id":"906944d7-60c6-415e-aacd-ab242b04f220", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T02:09:44.531Z", + "completed":"2017-09-20T02:09:44.531Z", + "new_balance":"8126.03", + "value":"-73.51" + } + }, + { + "id":"acaac925-e5be-485a-abd4-6564a55b8437", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T15:49:48.218Z", + "completed":"2017-09-20T15:49:48.218Z", + "new_balance":"8067.13", + "value":"-58.90" + } + }, + { + "id":"8f290b4f-601f-40bc-a007-ff8a4caeef89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T03:05:51.689Z", + "completed":"2017-09-21T03:05:51.689Z", + "new_balance":"8061.25", + "value":"-5.88" + } + }, + { + "id":"1ad51c31-4566-4b50-a7bf-eac4ed3cf127", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T18:14:37.877Z", + "completed":"2017-09-21T18:14:37.877Z", + "new_balance":"8054.78", + "value":"-6.47" + } + }, + { + "id":"a64e6ec1-9bc0-4563-8de1-42c4f2eba77e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T17:20:10.223Z", + "completed":"2017-09-23T17:20:10.223Z", + "new_balance":"8043.55", + "value":"-11.23" + } + }, + { + "id":"59c91cfe-d1a7-407b-9c56-a650023345bf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T20:18:56.169Z", + "completed":"2017-09-23T20:18:56.169Z", + "new_balance":"7998.04", + "value":"-45.51" + } + }, + { + "id":"d357d716-5fa8-475b-b217-f77dff6df308", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T19:37:32.753Z", + "completed":"2017-09-24T19:37:32.753Z", + "new_balance":"7969.18", + "value":"-28.86" + } + }, + { + "id":"b792026a-0ea9-4cb1-83ab-9e92e77a5718", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T06:23:22.994Z", + "completed":"2017-09-25T06:23:22.994Z", + "new_balance":"7935.15", + "value":"-34.03" + } + }, + { + "id":"20d95e85-2baa-4d74-9651-42a5ffca94d4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T10:17:46.012Z", + "completed":"2017-09-25T10:17:46.012Z", + "new_balance":"7919.07", + "value":"-16.08" + } + }, + { + "id":"b3bed43d-bc5a-4ee2-891e-4d4db19c9e3f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T23:25:23.221Z", + "completed":"2017-09-27T23:25:23.221Z", + "new_balance":"7729.80", + "value":"-189.27" + } + }, + { + "id":"de36430a-5f29-4f75-b5b5-4864b89afd82", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T16:14:17.644Z", + "completed":"2017-09-29T16:14:17.644Z", + "new_balance":"7702.83", + "value":"-26.97" + } + }, + { + "id":"f94bbdc5-c4e1-4f5e-b582-2a27d54de823", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T00:21:11.711Z", + "completed":"2017-10-01T00:21:11.711Z", + "new_balance":"7672.95", + "value":"-29.88" + } + }, + { + "id":"c17ff975-1e82-41e1-aa80-bc3ff0ca4a2d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T04:13:42.898Z", + "completed":"2017-10-01T04:13:42.898Z", + "new_balance":"7619.77", + "value":"-53.18" + } + }, + { + "id":"5450c121-2aa7-4f62-9333-4ff59d97c325", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T10:51:00.559Z", + "completed":"2017-10-01T10:51:00.559Z", + "new_balance":"7485.29", + "value":"-134.48" + } + }, + { + "id":"a302237a-6b24-405d-a12a-589d16ee9ddb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T17:38:12.907Z", + "completed":"2017-10-01T17:38:12.907Z", + "new_balance":"6974.75", + "value":"-510.54" + } + }, + { + "id":"be0dcda3-53a6-4b76-a6d3-2de9a794365c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T11:05:21.699Z", + "completed":"2017-10-02T11:05:21.699Z", + "new_balance":"6888.19", + "value":"-86.56" + } + }, + { + "id":"70321c02-478d-4306-886a-6aed9651255f", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T16:24:18.894Z", + "completed":"2017-10-02T16:24:18.894Z", + "new_balance":"6816.20", + "value":"-71.99" + } + }, + { + "id":"68e88f29-07b0-40b9-b1ff-19f952273d58", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T01:19:24.412Z", + "completed":"2017-10-03T01:19:24.412Z", + "new_balance":"6652.72", + "value":"-163.48" + } + }, + { + "id":"434def86-1cb1-4fba-a8a4-9680a22a5942", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T13:12:17.199Z", + "completed":"2017-10-03T13:12:17.199Z", + "new_balance":"6617.94", + "value":"-34.78" + } + }, + { + "id":"56db1147-c29b-4735-b482-361539b526d6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T14:42:51.945Z", + "completed":"2017-10-03T14:42:51.945Z", + "new_balance":"5886.09", + "value":"-731.85" + } + }, + { + "id":"005b2f61-00e9-4e55-9fad-0293856aae3e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T15:50:45.126Z", + "completed":"2017-10-03T15:50:45.126Z", + "new_balance":"5696.82", + "value":"-189.27" + } + }, + { + "id":"105d508d-e099-4f5d-a867-055cd519bae6", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T23:44:42.007Z", + "completed":"2017-10-03T23:44:42.007Z", + "new_balance":"5659.63", + "value":"-37.19" + } + }, + { + "id":"6fdc72b4-697b-4ace-b914-6ca12df64373", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T06:38:46.686Z", + "completed":"2017-10-04T06:38:46.686Z", + "new_balance":"5585.70", + "value":"-73.93" + } + }, + { + "id":"c592e9cd-4d68-4f26-8ffc-b5e8c0a54246", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T05:17:03.576Z", + "completed":"2017-10-05T05:17:03.576Z", + "new_balance":"5582.11", + "value":"-3.59" + } + }, + { + "id":"8ab1f4f4-a679-47d4-bb57-24084ab91e33", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T20:19:38.826Z", + "completed":"2017-10-05T20:19:38.826Z", + "new_balance":"5554.66", + "value":"-27.45" + } + }, + { + "id":"536ff016-f06e-49a7-a97a-a6fb7c3915f1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T17:15:00.358Z", + "completed":"2017-10-07T17:15:00.358Z", + "new_balance":"5539.84", + "value":"-14.82" + } + }, + { + "id":"97f5acc3-b04f-4c79-8a2f-7a201df1c489", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T21:59:28.627Z", + "completed":"2017-10-07T21:59:28.627Z", + "new_balance":"5508.55", + "value":"-31.29" + } + }, + { + "id":"b85bcff0-2a73-4493-8de5-c60db5094dfe", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T04:04:11.278Z", + "completed":"2017-10-08T04:04:11.278Z", + "new_balance":"5501.39", + "value":"-7.16" + } + }, + { + "id":"98051584-74f3-428c-b6f5-ca275a39a183", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T03:16:35.255Z", + "completed":"2017-10-09T03:16:35.255Z", + "new_balance":"5312.12", + "value":"-189.27" + } + }, + { + "id":"65738bc1-2c5c-41c9-afbc-831b30ad85d5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T21:35:52.041Z", + "completed":"2017-10-09T21:35:52.041Z", + "new_balance":"5305.41", + "value":"-6.71" + } + }, + { + "id":"79238128-4607-41db-b8ba-0677046610e7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T22:46:08.953Z", + "completed":"2017-10-09T22:46:08.953Z", + "new_balance":"5283.16", + "value":"-22.25" + } + }, + { + "id":"c63d18df-ce53-4ccc-802e-0c2f87f25ea9", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T15:04:44.763Z", + "completed":"2017-10-10T15:04:44.763Z", + "new_balance":"5237.92", + "value":"-45.24" + } + }, + { + "id":"8ec5736b-38dd-461f-aaf2-59ccd125ba18", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T05:50:32.918Z", + "completed":"2017-10-17T05:50:32.918Z", + "new_balance":"5228.22", + "value":"-9.70" + } + }, + { + "id":"bd974eea-b82f-407b-81e3-667329603192", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T20:49:38.098Z", + "completed":"2017-10-18T20:49:38.098Z", + "new_balance":"5195.94", + "value":"-32.28" + } + }, + { + "id":"eb9449f4-0f20-4c1d-b13c-a14d78c60c47", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T12:04:58.872Z", + "completed":"2017-10-25T12:04:58.872Z", + "new_balance":"5153.42", + "value":"-42.52" + } + }, + { + "id":"9b8f97e0-f928-41c9-8435-757db71a70c4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T07:32:40.380Z", + "completed":"2017-10-26T07:32:40.380Z", + "new_balance":"5146.71", + "value":"-6.71" + } + }, + { + "id":"110815c4-fdc8-410d-a1d3-cb194e76363b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T16:34:33.474Z", + "completed":"2017-10-26T16:34:33.474Z", + "new_balance":"5083.14", + "value":"-63.57" + } + }, + { + "id":"3a684ba0-d5c4-40e4-aa01-ce97aa96dad3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T03:30:59.562Z", + "completed":"2017-11-02T03:30:59.562Z", + "new_balance":"5029.96", + "value":"-53.18" + } + }, + { + "id":"b3d3e123-2057-415c-aa11-10f5f2b115ae", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T04:10:06.823Z", + "completed":"2017-11-02T04:10:06.823Z", + "new_balance":"4895.48", + "value":"-134.48" + } + }, + { + "id":"cd9bf234-00f8-43f7-b730-38ee07f99001", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T10:39:52.193Z", + "completed":"2017-11-02T10:39:52.193Z", + "new_balance":"4865.60", + "value":"-29.88" + } + }, + { + "id":"3285112b-e255-43fb-91d8-02f0b9e6bbea", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T11:24:51.566Z", + "completed":"2017-11-02T11:24:51.566Z", + "new_balance":"4849.67", + "value":"-15.93" + } + }, + { + "id":"de0669e8-2557-4a73-82cd-7482bbc02daa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T14:31:27.327Z", + "completed":"2017-11-02T14:31:27.327Z", + "new_balance":"4339.13", + "value":"-510.54" + } + }, + { + "id":"e82a56e9-6a85-40fd-89c7-2c5ff6563971", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T17:45:16.584Z", + "completed":"2017-11-02T17:45:16.584Z", + "new_balance":"4304.70", + "value":"-34.43" + } + }, + { + "id":"7566b569-43e7-419f-bf66-c4faeefebbc4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T20:59:27.880Z", + "completed":"2017-11-02T20:59:27.880Z", + "new_balance":"4218.14", + "value":"-86.56" + } + }, + { + "id":"5141e421-1ac7-4e40-ba2f-fd92830f6c8d", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T21:00:24.471Z", + "completed":"2017-11-02T21:00:24.471Z", + "new_balance":"5898.55", + "value":"1680.41" + } + }, + { + "id":"d9ffa365-22fa-4b7f-a460-80e08d788ef5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T21:42:23.923Z", + "completed":"2017-11-06T21:42:23.923Z", + "new_balance":"5883.91", + "value":"-14.64" + } + }, + { + "id":"5b54ba5c-1903-428b-a100-3a33dad9aaff", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T17:47:07.607Z", + "completed":"2017-11-07T17:47:07.607Z", + "new_balance":"5855.90", + "value":"-28.01" + } + }, + { + "id":"39d32950-f113-4566-b9a3-5e681c965189", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T17:49:55.303Z", + "completed":"2017-11-07T17:49:55.303Z", + "new_balance":"5832.53", + "value":"-23.37" + } + }, + { + "id":"8f9ded2f-725b-47fd-892a-86eeff07b762", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T22:47:59.365Z", + "completed":"2017-11-07T22:47:59.365Z", + "new_balance":"5806.73", + "value":"-25.80" + } + }, + { + "id":"c7e3163f-0f4e-4d75-bb3e-347ad187100e", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T03:06:56.903Z", + "completed":"2017-11-09T03:06:56.903Z", + "new_balance":"5732.80", + "value":"-73.93" + } + }, + { + "id":"56a717f1-2041-4504-b956-ded5fc5604d0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T04:52:34.225Z", + "completed":"2017-11-09T04:52:34.225Z", + "new_balance":"5728.71", + "value":"-4.09" + } + }, + { + "id":"1fb120d3-ac71-468f-b365-7b70dc7320c0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T10:34:18.964Z", + "completed":"2017-11-12T10:34:18.964Z", + "new_balance":"5707.61", + "value":"-21.10" + } + }, + { + "id":"89653f8f-3aeb-4ae5-9110-20aae3ebafee", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T23:59:30.785Z", + "completed":"2017-11-12T23:59:30.785Z", + "new_balance":"5679.76", + "value":"-27.85" + } + }, + { + "id":"c003d646-9f3f-48d6-a201-6a13439041eb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T09:53:15.597Z", + "completed":"2017-11-14T09:53:15.597Z", + "new_balance":"5631.06", + "value":"-48.70" + } + }, + { + "id":"7ec83884-d06b-49c8-b9fa-0d0d89ea7f69", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T20:58:03.791Z", + "completed":"2017-11-14T20:58:03.791Z", + "new_balance":"5585.89", + "value":"-45.17" + } + }, + { + "id":"7c47e1af-249a-41d1-894e-37a37cd4cb39", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T04:56:16.272Z", + "completed":"2017-11-16T04:56:16.272Z", + "new_balance":"5580.12", + "value":"-5.77" + } + }, + { + "id":"50c7f4fa-e5b2-4cde-8968-f6c59309397c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T02:37:20.074Z", + "completed":"2017-11-18T02:37:20.074Z", + "new_balance":"5571.60", + "value":"-8.52" + } + }, + { + "id":"f861b236-36a2-4278-a95b-e594539ed394", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T03:57:30.389Z", + "completed":"2017-11-20T03:57:30.389Z", + "new_balance":"5610.61", + "value":"39.01" + } + }, + { + "id":"9cbd35c4-d5f8-45cf-a582-a4aa774e67a3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T08:44:41.527Z", + "completed":"2017-11-21T08:44:41.527Z", + "new_balance":"5564.98", + "value":"-45.63" + } + }, + { + "id":"5a2fa7f2-0f88-485a-bbb5-c0351f156a89", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T09:54:24.653Z", + "completed":"2017-11-21T09:54:24.653Z", + "new_balance":"5521.19", + "value":"-43.79" + } + }, + { + "id":"28c77569-fcd3-46eb-9518-16d06da3487c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T01:57:45.302Z", + "completed":"2017-11-27T01:57:45.302Z", + "new_balance":"5487.66", + "value":"-33.53" + } + }, + { + "id":"dbbf826e-5533-4257-961b-350f961f2e36", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T17:37:01.189Z", + "completed":"2017-11-27T17:37:01.189Z", + "new_balance":"5462.10", + "value":"-25.56" + } + }, + { + "id":"b7bd0028-7de5-4d31-8014-be2125672680", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T01:20:41.223Z", + "completed":"2017-12-01T01:20:41.223Z", + "new_balance":"7142.51", + "value":"1680.41" + } + }, + { + "id":"af80ec57-14e8-4683-838d-04724e7eee3c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:51:07.447Z", + "completed":"2017-12-01T01:51:07.447Z", + "new_balance":"6631.97", + "value":"-510.54" + } + }, + { + "id":"67006b2f-ecd3-4027-a67f-33d4745a1742", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T06:07:26.194Z", + "completed":"2017-12-01T06:07:26.194Z", + "new_balance":"6602.09", + "value":"-29.88" + } + }, + { + "id":"fa6f86c8-b6ab-47b3-b690-18ed0aefac08", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T13:56:14.716Z", + "completed":"2017-12-01T13:56:14.716Z", + "new_balance":"6467.61", + "value":"-134.48" + } + }, + { + "id":"3def4260-0ef3-4a60-ae1d-3fef4cc2c9e1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T19:20:40.825Z", + "completed":"2017-12-01T19:20:40.825Z", + "new_balance":"6433.18", + "value":"-34.43" + } + }, + { + "id":"4e269d1f-9fb0-4d34-bc11-f9060511eb96", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T23:24:27.947Z", + "completed":"2017-12-01T23:24:27.947Z", + "new_balance":"6380.00", + "value":"-53.18" + } + }, + { + "id":"f61d9d6c-9677-4e74-a790-f5da16c1b421", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T04:06:19.065Z", + "completed":"2017-12-04T04:06:19.065Z", + "new_balance":"6248.16", + "value":"-131.84" + } + }, + { + "id":"b0893b95-3266-4512-9bca-6796d0bbd7c1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T22:31:23.928Z", + "completed":"2017-12-04T22:31:23.928Z", + "new_balance":"6161.60", + "value":"-86.56" + } + }, + { + "id":"b17ce4be-3553-4582-a7ff-b06fba7a1439", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T03:59:02.893Z", + "completed":"2017-12-12T03:59:02.893Z", + "new_balance":"6151.07", + "value":"-10.53" + } + }, + { + "id":"cc92ab2f-0c3a-44fb-a31c-546104d8235c", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T15:04:06.488Z", + "completed":"2017-12-12T15:04:06.488Z", + "new_balance":"6120.26", + "value":"-30.81" + } + }, + { + "id":"7ad7f8a7-797d-41e8-9e16-93a9505e2693", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T03:18:21.747Z", + "completed":"2017-12-13T03:18:21.747Z", + "new_balance":"6113.79", + "value":"-6.47" + } + }, + { + "id":"2cdb6de1-532f-4a82-bb0c-94aa24845a21", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T07:21:20.423Z", + "completed":"2017-12-13T07:21:20.423Z", + "new_balance":"6032.58", + "value":"-81.21" + } + }, + { + "id":"9403828e-48ea-4fb7-b97a-3553e1366fdf", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T07:22:56.352Z", + "completed":"2017-12-16T07:22:56.352Z", + "new_balance":"5991.35", + "value":"-41.23" + } + }, + { + "id":"82ce4d06-0ea3-443b-bcb3-a45fe367e1d0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T10:16:01.441Z", + "completed":"2017-12-18T10:16:01.441Z", + "new_balance":"5986.58", + "value":"-4.77" + } + }, + { + "id":"69f41ee4-f214-4c21-9d0d-5419fb7d8e97", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:46:08.275Z", + "completed":"2017-12-19T00:46:08.275Z", + "new_balance":"5902.78", + "value":"-83.80" + } + }, + { + "id":"de464fb8-df07-4233-8832-991ada803714", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T20:59:59.571Z", + "completed":"2017-12-19T20:59:59.571Z", + "new_balance":"5821.57", + "value":"-81.21" + } + }, + { + "id":"03a688b4-0fe4-465a-a8db-3909c51c92dc", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T23:35:34.888Z", + "completed":"2017-12-20T23:35:34.888Z", + "new_balance":"5779.23", + "value":"-42.34" + } + }, + { + "id":"94269177-e52e-4283-9eef-33d311a79449", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:34:46.040Z", + "completed":"2017-12-21T07:34:46.040Z", + "new_balance":"5695.43", + "value":"-83.80" + } + }, + { + "id":"ccf1813e-cad4-450c-a321-64720e6401cb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T00:03:03.068Z", + "completed":"2017-12-24T00:03:03.068Z", + "new_balance":"5603.96", + "value":"-91.47" + } + }, + { + "id":"174070bc-c7e2-4514-9f68-76421f1e3b24", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T08:14:52.101Z", + "completed":"2017-12-24T08:14:52.101Z", + "new_balance":"5557.95", + "value":"-46.01" + } + }, + { + "id":"7ce73102-0bcf-46d6-a758-e3ff74fd22dd", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T08:43:37.567Z", + "completed":"2017-12-24T08:43:37.567Z", + "new_balance":"5550.67", + "value":"-7.28" + } + }, + { + "id":"734d8312-7677-4a29-89ff-a929278e4efa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T08:52:25.607Z", + "completed":"2017-12-24T08:52:25.607Z", + "new_balance":"5537.43", + "value":"-13.24" + } + }, + { + "id":"57cc3791-ae86-4374-ae52-1bc5e2ceb61b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T15:18:44.151Z", + "completed":"2017-12-24T15:18:44.151Z", + "new_balance":"5533.85", + "value":"-3.58" + } + }, + { + "id":"6e630825-c9e4-42f1-a8c0-fc8c10994fb3", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:24:27.799Z", + "completed":"2017-12-24T23:24:27.799Z", + "new_balance":"5506.55", + "value":"-27.30" + } + }, + { + "id":"3be24b06-1ca0-4aa6-bf18-f754323818fb", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T04:26:20.722Z", + "completed":"2017-12-28T04:26:20.722Z", + "new_balance":"5425.14", + "value":"-81.41" + } + }, + { + "id":"e5ae45aa-8804-4304-acf5-627a8af532d2", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T09:55:16.536Z", + "completed":"2017-12-28T09:55:16.536Z", + "new_balance":"5378.34", + "value":"-46.80" + } + }, + { + "id":"1a8ee33b-b1da-4e38-bbaa-ad2b0bd042aa", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T12:10:49.342Z", + "completed":"2017-12-28T12:10:49.342Z", + "new_balance":"5371.35", + "value":"-6.99" + } + }, + { + "id":"d9732f2d-b792-4341-8c6c-fbfa9ce26b3b", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T15:40:37.824Z", + "completed":"2017-12-28T15:40:37.824Z", + "new_balance":"5364.36", + "value":"-6.99" + } + }, + { + "id":"12ba8c8b-cb44-4978-a63b-3e8d4c5450d1", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T01:42:35.112Z", + "completed":"2017-12-29T01:42:35.112Z", + "new_balance":"5330.45", + "value":"-33.91" + } + }, + { + "id":"26049b3e-f648-471b-a1df-e1bb1d936f84", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T07:48:40.807Z", + "completed":"2017-12-29T07:48:40.807Z", + "new_balance":"5279.44", + "value":"-51.01" + } + }, + { + "id":"a946a9a7-c2b0-487a-ae54-255ecde77618", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T15:22:25.888Z", + "completed":"2017-12-29T15:22:25.888Z", + "new_balance":"5220.54", + "value":"-58.90" + } + }, + { + "id":"002d81d8-7698-4fa3-baa3-8c849269baf0", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T17:21:36.881Z", + "completed":"2017-12-29T17:21:36.881Z", + "new_balance":"5214.07", + "value":"-6.47" + } + }, + { + "id":"14c62ac0-ad38-47f0-bb64-8086ce0fc3a5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T19:08:29.763Z", + "completed":"2017-12-29T19:08:29.763Z", + "new_balance":"5140.56", + "value":"-73.51" + } + }, + { + "id":"1b428a04-8a66-4e0e-8851-ac4af4815c32", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T23:49:40.664Z", + "completed":"2017-12-29T23:49:40.664Z", + "new_balance":"5103.61", + "value":"-36.95" + } + }, + { + "id":"009138c2-9114-4b75-beb2-a8d2c53592b4", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T05:00:23.486Z", + "completed":"2017-12-30T05:00:23.486Z", + "new_balance":"5097.73", + "value":"-5.88" + } + }, + { + "id":"06319fcd-0dae-4dc8-91e1-a14ee784d9a7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T09:42:59.403Z", + "completed":"2017-12-30T09:42:59.403Z", + "new_balance":"5052.22", + "value":"-45.51" + } + }, + { + "id":"3b123092-d45c-4f67-8a90-0a8c378a8131", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T14:53:39.494Z", + "completed":"2017-12-30T14:53:39.494Z", + "new_balance":"5040.99", + "value":"-11.23" + } + }, + { + "id":"0abc7a77-c448-43eb-a811-d8bbe02b9ab5", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T22:20:36.355Z", + "completed":"2017-12-30T22:20:36.355Z", + "new_balance":"5012.13", + "value":"-28.86" + } + }, + { + "id":"fed9bbc3-550d-4c47-9970-60fb23a3b2d7", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T00:47:52.917Z", + "completed":"2017-12-31T00:47:52.917Z", + "new_balance":"4978.10", + "value":"-34.03" + } + }, + { + "id":"38c55c9d-17fa-4687-a790-8e352a8ff774", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T06:41:27.713Z", + "completed":"2017-12-31T06:41:27.713Z", + "new_balance":"4962.02", + "value":"-16.08" + } + }, + { + "id":"9aad9c2e-d83c-4fd9-9a6e-f24929313639", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T14:35:09.395Z", + "completed":"2017-12-31T14:35:09.395Z", + "new_balance":"4935.05", + "value":"-26.97" + } + }, + { + "id":"132a7960-5162-42e5-9ea1-3895e0c1f240", + "this_account":{ + "id":"123ec140-ab71-4402-9064-744664d7c8b8", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T19:19:58.793Z", + "completed":"2017-12-31T19:19:58.793Z", + "new_balance":"4745.78", + "value":"-189.27" + } + }, + { + "id":"031c5be7-1dab-4060-a19d-68bea54e59f4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T09:18:12.721Z", + "completed":"2016-03-02T09:18:12.721Z", + "new_balance":"15818.17", + "value":"-28.87" + } + }, + { + "id":"0cff89b9-9e0b-48cf-b86f-2e20c2ff2291", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T19:24:47.347Z", + "completed":"2016-03-02T19:24:47.347Z", + "new_balance":"15699.85", + "value":"-118.32" + } + }, + { + "id":"b3d9538b-01f8-4c67-9a69-31de0dda32aa", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T05:45:41.270Z", + "completed":"2016-03-03T05:45:41.270Z", + "new_balance":"15692.66", + "value":"-7.19" + } + }, + { + "id":"b3c05646-59e9-4aac-8d65-f639303f9c5f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T07:12:42.830Z", + "completed":"2016-03-03T07:12:42.830Z", + "new_balance":"15242.95", + "value":"-449.71" + } + }, + { + "id":"17b800f7-5e3d-4a8c-89d0-20a592457ebb", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T03:08:59.912Z", + "completed":"2016-03-04T03:08:59.912Z", + "new_balance":"15235.85", + "value":"-7.10" + } + }, + { + "id":"a0fc524c-7d08-445b-b6d3-187d1835d53b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T06:17:25.029Z", + "completed":"2016-03-04T06:17:25.029Z", + "new_balance":"15203.64", + "value":"-32.21" + } + }, + { + "id":"17ddc92d-41e0-46fa-b1e2-48d153429fda", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:35:40.244Z", + "completed":"2016-03-07T01:35:40.244Z", + "new_balance":"15198.49", + "value":"-5.15" + } + }, + { + "id":"8d16e729-0d16-46ab-af8c-f84d3e0285d5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T02:48:43.159Z", + "completed":"2016-03-09T02:48:43.159Z", + "new_balance":"15080.17", + "value":"-118.32" + } + }, + { + "id":"9301b974-808c-49a0-991e-ccd06f86a86f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T15:42:56.776Z", + "completed":"2016-03-16T15:42:56.776Z", + "new_balance":"14995.25", + "value":"-84.92" + } + }, + { + "id":"344ab480-7291-421f-8b2a-131deda3cf5b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T23:20:34.815Z", + "completed":"2016-03-25T23:20:34.815Z", + "new_balance":"14910.33", + "value":"-84.92" + } + }, + { + "id":"17a95cae-522c-41ec-8c6f-8e9da9bd72b4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T05:24:38.795Z", + "completed":"2016-03-30T05:24:38.795Z", + "new_balance":"14632.85", + "value":"-277.48" + } + }, + { + "id":"f1c2eaf8-d2be-4f47-8e6e-e77d1e2bea37", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T16:09:05.252Z", + "completed":"2016-06-07T16:09:05.252Z", + "new_balance":"14514.53", + "value":"-118.32" + } + }, + { + "id":"9672df75-3000-40fa-8528-c81f7a793559", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T22:10:10.466Z", + "completed":"2016-06-07T22:10:10.466Z", + "new_balance":"14485.66", + "value":"-28.87" + } + }, + { + "id":"adf38339-8e97-49fa-b266-5b063cd42b7e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T23:09:38.024Z", + "completed":"2016-06-07T23:09:38.024Z", + "new_balance":"14035.95", + "value":"-449.71" + } + }, + { + "id":"38d2f575-d28d-45d5-ba73-3eeafdc7e9b8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:30:38.640Z", + "completed":"2016-06-10T12:30:38.640Z", + "new_balance":"14028.85", + "value":"-7.10" + } + }, + { + "id":"9b806dc3-238d-4b53-b07e-450b819e702b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T05:05:48.475Z", + "completed":"2016-06-14T05:05:48.475Z", + "new_balance":"13996.64", + "value":"-32.21" + } + }, + { + "id":"2a30ffc0-75ae-4623-85e4-c867f8097864", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T15:35:44.457Z", + "completed":"2016-06-19T15:35:44.457Z", + "new_balance":"13989.45", + "value":"-7.19" + } + }, + { + "id":"9ff39fb1-db51-4032-837b-0f7b1bb44259", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T20:35:24.098Z", + "completed":"2016-06-19T20:35:24.098Z", + "new_balance":"13984.30", + "value":"-5.15" + } + }, + { + "id":"19dcc531-519b-4c39-a958-87ae8ad791a6", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T11:30:19.942Z", + "completed":"2016-06-20T11:30:19.942Z", + "new_balance":"13865.98", + "value":"-118.32" + } + }, + { + "id":"d1538256-1188-4146-a066-f1980aa80c15", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T18:18:43.048Z", + "completed":"2016-06-28T18:18:43.048Z", + "new_balance":"13781.06", + "value":"-84.92" + } + }, + { + "id":"14d04ccd-37f8-436a-a71d-83d4099c513f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T06:44:51.741Z", + "completed":"2016-07-01T06:44:51.741Z", + "new_balance":"13696.14", + "value":"-84.92" + } + }, + { + "id":"36183cf8-0030-42f3-a6c4-cd87a3d09ba1", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T23:24:20.748Z", + "completed":"2016-07-01T23:24:20.748Z", + "new_balance":"13418.66", + "value":"-277.48" + } + }, + { + "id":"1ce382a3-f869-4670-89cb-184ddbb9ed5e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T12:41:43.670Z", + "completed":"2016-09-02T12:41:43.670Z", + "new_balance":"13389.79", + "value":"-28.87" + } + }, + { + "id":"8219161b-3fbb-4828-96a0-c526daab665d", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T20:11:59.826Z", + "completed":"2016-09-02T20:11:59.826Z", + "new_balance":"13271.47", + "value":"-118.32" + } + }, + { + "id":"a7836b02-af7c-44c6-b27b-fdce4e37dfe0", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T07:16:59.910Z", + "completed":"2016-09-03T07:16:59.910Z", + "new_balance":"13267.29", + "value":"-4.18" + } + }, + { + "id":"2d531743-5902-4163-857b-522a5926b23c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T17:29:27.668Z", + "completed":"2016-09-03T17:29:27.668Z", + "new_balance":"13260.10", + "value":"-7.19" + } + }, + { + "id":"56638f0f-5d62-46c1-ab65-837368795a87", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T19:37:38.032Z", + "completed":"2016-09-03T19:37:38.032Z", + "new_balance":"12810.39", + "value":"-449.71" + } + }, + { + "id":"022e4c50-d663-4ddd-b340-5402a2486cdd", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T19:42:16.298Z", + "completed":"2016-09-04T19:42:16.298Z", + "new_balance":"12778.18", + "value":"-32.21" + } + }, + { + "id":"adba0ebb-1bee-4113-838b-ef8702785aaa", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T09:45:01.991Z", + "completed":"2016-09-07T09:45:01.991Z", + "new_balance":"12773.03", + "value":"-5.15" + } + }, + { + "id":"84e00f83-430a-4db3-b725-6924d1aba9f8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T22:04:53.222Z", + "completed":"2016-09-09T22:04:53.222Z", + "new_balance":"12654.71", + "value":"-118.32" + } + }, + { + "id":"a3aad1c2-7e6e-49f7-9c51-657407d6e698", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T05:48:57.854Z", + "completed":"2016-09-16T05:48:57.854Z", + "new_balance":"12569.79", + "value":"-84.92" + } + }, + { + "id":"88d3b92d-3f4a-46e8-addb-b7e1876231f0", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T02:07:09.884Z", + "completed":"2016-09-25T02:07:09.884Z", + "new_balance":"12484.87", + "value":"-84.92" + } + }, + { + "id":"f6e55d7c-3552-4e9e-a8a1-aacc0bc566ed", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T14:57:13.961Z", + "completed":"2016-09-30T14:57:13.961Z", + "new_balance":"12207.39", + "value":"-277.48" + } + }, + { + "id":"f1463f63-4685-478a-b5ff-462fe7200315", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T09:25:23.365Z", + "completed":"2016-12-07T09:25:23.365Z", + "new_balance":"12089.07", + "value":"-118.32" + } + }, + { + "id":"c45a46f8-25e1-4403-8853-844e499de0b7", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T12:04:10.986Z", + "completed":"2016-12-07T12:04:10.986Z", + "new_balance":"12060.20", + "value":"-28.87" + } + }, + { + "id":"489d0bb8-eda7-4851-811a-6e65a804b0b2", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T15:09:46.343Z", + "completed":"2016-12-07T15:09:46.343Z", + "new_balance":"11610.49", + "value":"-449.71" + } + }, + { + "id":"b17ab8e8-5f31-4f7a-9ddc-f55d4bebfe06", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T12:15:51.984Z", + "completed":"2016-12-11T12:15:51.984Z", + "new_balance":"11603.30", + "value":"-7.19" + } + }, + { + "id":"e7ac64e2-794e-4e3e-ab73-fd9d816ef709", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T23:05:51.903Z", + "completed":"2016-12-11T23:05:51.903Z", + "new_balance":"11596.20", + "value":"-7.10" + } + }, + { + "id":"1d95920b-f947-43d6-a427-43ad90382731", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T07:53:54.722Z", + "completed":"2016-12-14T07:53:54.722Z", + "new_balance":"11563.99", + "value":"-32.21" + } + }, + { + "id":"dad425f0-090f-4568-8d28-eff504241618", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:31:47.941Z", + "completed":"2016-12-20T17:31:47.941Z", + "new_balance":"11558.84", + "value":"-5.15" + } + }, + { + "id":"52cdf40c-6d01-4e7e-ac2c-223ad9eaee34", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T22:05:03.682Z", + "completed":"2016-12-22T22:05:03.682Z", + "new_balance":"11440.52", + "value":"-118.32" + } + }, + { + "id":"7a8d43b1-f232-4fd5-8791-e991a5488688", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T09:14:37.781Z", + "completed":"2016-12-28T09:14:37.781Z", + "new_balance":"11355.60", + "value":"-84.92" + } + }, + { + "id":"af6af2a0-0447-456b-bad9-4789b664e5b3", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T00:33:05.183Z", + "completed":"2016-12-31T00:33:05.183Z", + "new_balance":"11078.12", + "value":"-277.48" + } + }, + { + "id":"30780be7-5e88-4892-8bf3-b253cc6f96e9", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T19:11:53.115Z", + "completed":"2016-12-31T19:11:53.115Z", + "new_balance":"10993.20", + "value":"-84.92" + } + }, + { + "id":"5a29ed45-e90c-46c1-ae71-ef3a3e2da8ce", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T07:08:11.134Z", + "completed":"2017-03-02T07:08:11.134Z", + "new_balance":"10874.88", + "value":"-118.32" + } + }, + { + "id":"245d56fe-3443-441c-a4f4-914795b8e35f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T15:47:48.847Z", + "completed":"2017-03-02T15:47:48.847Z", + "new_balance":"10846.01", + "value":"-28.87" + } + }, + { + "id":"db8f901e-72cb-43a9-98ad-198c38a19266", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T01:48:03.892Z", + "completed":"2017-03-03T01:48:03.892Z", + "new_balance":"10396.30", + "value":"-449.71" + } + }, + { + "id":"aa366ee0-2851-4543-81f6-8178f65df914", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T10:08:40.093Z", + "completed":"2017-03-03T10:08:40.093Z", + "new_balance":"10389.11", + "value":"-7.19" + } + }, + { + "id":"8dbcda3c-b9d4-42a4-b127-15960f97c430", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T15:15:01.166Z", + "completed":"2017-03-04T15:15:01.166Z", + "new_balance":"10382.01", + "value":"-7.10" + } + }, + { + "id":"96c7ad1a-d869-417a-84f7-b9fb9e7e9735", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T20:46:29.508Z", + "completed":"2017-03-04T20:46:29.508Z", + "new_balance":"10349.80", + "value":"-32.21" + } + }, + { + "id":"c6bc0673-c259-4be0-b5e6-7db20e36206e", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T10:26:41.098Z", + "completed":"2017-03-07T10:26:41.098Z", + "new_balance":"10344.65", + "value":"-5.15" + } + }, + { + "id":"42ab232a-8a22-4ecf-9b23-6ec4084a31a4", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T00:35:44.406Z", + "completed":"2017-03-09T00:35:44.406Z", + "new_balance":"10226.33", + "value":"-118.32" + } + }, + { + "id":"8f14fe70-f327-4b55-9cce-c7fc5cec2cb6", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T23:10:53.802Z", + "completed":"2017-03-16T23:10:53.802Z", + "new_balance":"10141.41", + "value":"-84.92" + } + }, + { + "id":"da7ce53e-20cd-4935-9526-4d9fb3d6b1a8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T03:05:13.279Z", + "completed":"2017-03-25T03:05:13.279Z", + "new_balance":"10056.49", + "value":"-84.92" + } + }, + { + "id":"aea6e3fc-e82c-4be1-b8c8-0c30e30c50dc", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T01:32:18.024Z", + "completed":"2017-03-30T01:32:18.024Z", + "new_balance":"9779.01", + "value":"-277.48" + } + }, + { + "id":"9bd422e0-b726-4a14-8713-0aac8e6df884", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:24:22.787Z", + "completed":"2017-06-07T06:24:22.787Z", + "new_balance":"9750.14", + "value":"-28.87" + } + }, + { + "id":"ad84a9f7-a1c4-4a21-9502-499488367219", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T16:34:52.385Z", + "completed":"2017-06-07T16:34:52.385Z", + "new_balance":"9631.82", + "value":"-118.32" + } + }, + { + "id":"1c399f65-f9b8-44a6-8816-e4fd804c5025", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T22:47:00.539Z", + "completed":"2017-06-07T22:47:00.539Z", + "new_balance":"9182.11", + "value":"-449.71" + } + }, + { + "id":"9ec0f473-1ca9-4f48-a451-9fe466c27926", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:52:08.581Z", + "completed":"2017-06-10T02:52:08.581Z", + "new_balance":"9175.01", + "value":"-7.10" + } + }, + { + "id":"8e323d27-73ee-4ecf-a76f-530e963e8d5c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T07:13:58.245Z", + "completed":"2017-06-14T07:13:58.245Z", + "new_balance":"9142.80", + "value":"-32.21" + } + }, + { + "id":"8efeea9b-f9fe-4ae6-b9d8-73cd074ce6dd", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T23:05:58.039Z", + "completed":"2017-06-19T23:05:58.039Z", + "new_balance":"9135.61", + "value":"-7.19" + } + }, + { + "id":"ec573128-4799-4e13-9fd1-c4f2ccd34bc5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T23:43:51.655Z", + "completed":"2017-06-19T23:43:51.655Z", + "new_balance":"9130.46", + "value":"-5.15" + } + }, + { + "id":"412642d0-398d-418e-89e5-25eb968b7e01", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T22:00:05.109Z", + "completed":"2017-06-20T22:00:05.109Z", + "new_balance":"9012.14", + "value":"-118.32" + } + }, + { + "id":"49b5fb02-cac6-4c75-8748-9a6f95396bc7", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T11:00:15.203Z", + "completed":"2017-06-28T11:00:15.203Z", + "new_balance":"8927.22", + "value":"-84.92" + } + }, + { + "id":"46c37431-d083-47c2-802b-1c364e8150f5", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T03:11:59.657Z", + "completed":"2017-07-01T03:11:59.657Z", + "new_balance":"8649.74", + "value":"-277.48" + } + }, + { + "id":"fe7ece83-e51c-487a-9ece-e188efcb5daf", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T12:31:36.848Z", + "completed":"2017-07-01T12:31:36.848Z", + "new_balance":"8564.82", + "value":"-84.92" + } + }, + { + "id":"79f5a748-ee93-49d9-a710-c9a2ac2c85d9", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T01:59:18.705Z", + "completed":"2017-09-02T01:59:18.705Z", + "new_balance":"8446.50", + "value":"-118.32" + } + }, + { + "id":"51417b38-e266-430e-aa00-a66d834f5637", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T23:13:38.366Z", + "completed":"2017-09-02T23:13:38.366Z", + "new_balance":"8417.63", + "value":"-28.87" + } + }, + { + "id":"3cf74b21-641e-4ffd-9d94-7f34cfa2da52", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T07:44:21.730Z", + "completed":"2017-09-03T07:44:21.730Z", + "new_balance":"8410.44", + "value":"-7.19" + } + }, + { + "id":"9a3c05d9-3d9a-499c-9c1f-e3ed56c1c9a8", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T13:34:37.845Z", + "completed":"2017-09-03T13:34:37.845Z", + "new_balance":"7960.73", + "value":"-449.71" + } + }, + { + "id":"ccd030d9-0a72-4bd8-87ee-1f5f8a94bf72", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T18:38:01.548Z", + "completed":"2017-09-03T18:38:01.548Z", + "new_balance":"7956.55", + "value":"-4.18" + } + }, + { + "id":"bf00575b-eda0-4c70-9066-054bfa5bbd4c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T05:56:09.787Z", + "completed":"2017-09-04T05:56:09.787Z", + "new_balance":"7924.34", + "value":"-32.21" + } + }, + { + "id":"c8015335-3997-4559-a6fc-32c0388f2612", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T07:22:57.320Z", + "completed":"2017-09-07T07:22:57.320Z", + "new_balance":"7919.19", + "value":"-5.15" + } + }, + { + "id":"6ef06ef4-e136-4f1a-90a5-a6bc7688638f", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T11:59:26.191Z", + "completed":"2017-09-09T11:59:26.191Z", + "new_balance":"7800.87", + "value":"-118.32" + } + }, + { + "id":"37d7701e-0a8c-4715-8099-f46352e8217a", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T16:38:01.441Z", + "completed":"2017-09-16T16:38:01.441Z", + "new_balance":"7715.95", + "value":"-84.92" + } + }, + { + "id":"9ccf8497-77a4-48a9-97d6-3ef447a299b1", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T15:44:05.328Z", + "completed":"2017-09-25T15:44:05.328Z", + "new_balance":"7631.03", + "value":"-84.92" + } + }, + { + "id":"612c33e0-a606-4f67-94f8-0591a92ad281", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T08:28:05.450Z", + "completed":"2017-09-30T08:28:05.450Z", + "new_balance":"7353.55", + "value":"-277.48" + } + }, + { + "id":"a0a74abf-6249-4333-94c7-06e0b6a7469b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T02:31:40.151Z", + "completed":"2017-12-07T02:31:40.151Z", + "new_balance":"7324.68", + "value":"-28.87" + } + }, + { + "id":"eabdf382-78eb-4fae-8990-76f7e41a912b", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:30:43.735Z", + "completed":"2017-12-07T12:30:43.735Z", + "new_balance":"7206.36", + "value":"-118.32" + } + }, + { + "id":"691ab4a3-595a-43c6-a506-c231a8466b1c", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T21:16:23.635Z", + "completed":"2017-12-07T21:16:23.635Z", + "new_balance":"6756.65", + "value":"-449.71" + } + }, + { + "id":"f6017488-88c3-46d1-9634-df17fb5e7a38", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T23:10:40.866Z", + "completed":"2017-12-11T23:10:40.866Z", + "new_balance":"6749.46", + "value":"-7.19" + } + }, + { + "id":"0c637dff-a584-4444-a63c-070de0660218", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T23:17:58.842Z", + "completed":"2017-12-11T23:17:58.842Z", + "new_balance":"6742.36", + "value":"-7.10" + } + }, + { + "id":"73a46783-8c59-4cff-916a-bc1c00272927", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T22:04:17.686Z", + "completed":"2017-12-14T22:04:17.686Z", + "new_balance":"6710.15", + "value":"-32.21" + } + }, + { + "id":"91b71105-6aa6-429b-ac05-dc6886489d53", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T10:00:29.465Z", + "completed":"2017-12-20T10:00:29.465Z", + "new_balance":"6705.00", + "value":"-5.15" + } + }, + { + "id":"65737325-1978-49a5-ac43-d865d2c23e58", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T00:54:52.502Z", + "completed":"2017-12-22T00:54:52.502Z", + "new_balance":"6586.68", + "value":"-118.32" + } + }, + { + "id":"5d27e1dd-0d72-4a55-afab-97c494629912", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T08:43:49.271Z", + "completed":"2017-12-28T08:43:49.271Z", + "new_balance":"6501.76", + "value":"-84.92" + } + }, + { + "id":"aed8a05e-dd97-4d23-8df4-74404fb11a80", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T01:28:28.571Z", + "completed":"2017-12-31T01:28:28.571Z", + "new_balance":"6416.84", + "value":"-84.92" + } + }, + { + "id":"c441799f-c470-43bb-ac37-2276a5c58922", + "this_account":{ + "id":"16b58d6f-da24-4e90-978e-2770c59cedf4", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T17:17:19.037Z", + "completed":"2017-12-31T17:17:19.037Z", + "new_balance":"6139.36", + "value":"-277.48" + } + }, + { + "id":"5bb52a26-ac95-49c7-8591-742ee1b040da", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T08:55:54.819Z", + "completed":"2016-01-01T08:55:54.819Z", + "new_balance":"6193.55", + "value":"-6.40" + } + }, + { + "id":"fdc16f43-8475-4454-aded-cb3e256317fc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T15:38:00.613Z", + "completed":"2016-01-01T15:38:00.613Z", + "new_balance":"6187.15", + "value":"-6.40" + } + }, + { + "id":"a1664162-83b0-4e25-8c4e-1874d9d04c44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T04:49:49.060Z", + "completed":"2016-01-03T04:49:49.060Z", + "new_balance":"6183.71", + "value":"-3.44" + } + }, + { + "id":"00b2c787-d037-4bb1-9095-59158d0d8bb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T10:13:07.420Z", + "completed":"2016-01-03T10:13:07.420Z", + "new_balance":"6181.25", + "value":"-2.46" + } + }, + { + "id":"3aa6ce2d-3cb6-48db-a484-e283dce70501", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T17:01:07.639Z", + "completed":"2016-01-03T17:01:07.639Z", + "new_balance":"6174.06", + "value":"-7.19" + } + }, + { + "id":"a955eb32-3475-4659-a708-a56957338963", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T19:11:37.507Z", + "completed":"2016-01-03T19:11:37.507Z", + "new_balance":"6115.83", + "value":"-58.23" + } + }, + { + "id":"b1da63a4-aa95-4f85-a621-318068477d6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T12:14:49.906Z", + "completed":"2016-01-05T12:14:49.906Z", + "new_balance":"6114.68", + "value":"-1.15" + } + }, + { + "id":"425aa62d-d669-4d98-8ac8-0b24f21b7c7d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T15:48:02.241Z", + "completed":"2016-01-05T15:48:02.241Z", + "new_balance":"6109.53", + "value":"-5.15" + } + }, + { + "id":"0c4f9e91-9a7a-47d0-bbef-ea5aba825e96", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T23:35:21.011Z", + "completed":"2016-01-05T23:35:21.011Z", + "new_balance":"6105.11", + "value":"-4.42" + } + }, + { + "id":"26027908-0823-4540-8aa9-d9bcac010d26", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T01:11:38.311Z", + "completed":"2016-01-06T01:11:38.311Z", + "new_balance":"6102.79", + "value":"-2.32" + } + }, + { + "id":"e7d1b9b5-61d4-4bca-9e1d-e10e45f3d75c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T10:37:25.988Z", + "completed":"2016-01-06T10:37:25.988Z", + "new_balance":"6099.12", + "value":"-3.67" + } + }, + { + "id":"1a41a193-008b-48f9-ac88-14b1a78a099e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T19:55:24.075Z", + "completed":"2016-01-07T19:55:24.075Z", + "new_balance":"6094.65", + "value":"-4.47" + } + }, + { + "id":"a2dead39-fd66-435c-8a24-567c9cf51412", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T08:11:21.382Z", + "completed":"2016-01-10T08:11:21.382Z", + "new_balance":"6089.50", + "value":"-5.15" + } + }, + { + "id":"338ea526-8dca-4347-8379-951f10a4d2fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T19:12:08.339Z", + "completed":"2016-01-10T19:12:08.339Z", + "new_balance":"6087.12", + "value":"-2.38" + } + }, + { + "id":"48acd8d5-2861-44cf-9a4c-9300165f8f34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T01:36:17.852Z", + "completed":"2016-01-12T01:36:17.852Z", + "new_balance":"6084.39", + "value":"-2.73" + } + }, + { + "id":"5f3710fa-a718-4241-a3f9-4a86ae6b352d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:20:19.700Z", + "completed":"2016-01-12T04:20:19.700Z", + "new_balance":"6081.93", + "value":"-2.46" + } + }, + { + "id":"70cf0fc5-0f54-47f0-b137-cc9e29078f29", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T06:00:21.568Z", + "completed":"2016-01-12T06:00:21.568Z", + "new_balance":"6077.46", + "value":"-4.47" + } + }, + { + "id":"3c8a424c-9208-41f1-bb9d-21657fe68d22", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T19:42:39.695Z", + "completed":"2016-01-15T19:42:39.695Z", + "new_balance":"6074.83", + "value":"-2.63" + } + }, + { + "id":"ecd81a8e-e2d5-44d6-a8e8-7cbac2b53f73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T09:33:32.661Z", + "completed":"2016-01-16T09:33:32.661Z", + "new_balance":"6073.87", + "value":"-0.96" + } + }, + { + "id":"149cc056-05ed-4555-921d-a4fc073be4bf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T22:09:28.832Z", + "completed":"2016-01-16T22:09:28.832Z", + "new_balance":"6068.72", + "value":"-5.15" + } + }, + { + "id":"4ef0c78e-b784-492b-8b97-c8aaac4ab3a3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T00:21:39.652Z", + "completed":"2016-01-17T00:21:39.652Z", + "new_balance":"6061.97", + "value":"-6.75" + } + }, + { + "id":"e17a3a7a-e99a-425c-b26d-2d7ff9f2d4d1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T06:58:44.907Z", + "completed":"2016-01-17T06:58:44.907Z", + "new_balance":"6059.38", + "value":"-2.59" + } + }, + { + "id":"7b9970ba-17a2-469c-9759-b69d3aa6119f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T21:31:32.833Z", + "completed":"2016-01-19T21:31:32.833Z", + "new_balance":"6056.96", + "value":"-2.42" + } + }, + { + "id":"8d14b74e-cfbe-429f-8f90-434a6e6e5d63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T18:19:49.813Z", + "completed":"2016-01-20T18:19:49.813Z", + "new_balance":"6051.81", + "value":"-5.15" + } + }, + { + "id":"37608e60-3be4-411c-90b6-03666bf8aa6c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T05:38:28.165Z", + "completed":"2016-01-23T05:38:28.165Z", + "new_balance":"6050.39", + "value":"-1.42" + } + }, + { + "id":"a9abc249-7784-42ad-bb39-edf26cf0ab71", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T02:18:48.228Z", + "completed":"2016-01-26T02:18:48.228Z", + "new_balance":"6045.58", + "value":"-4.81" + } + }, + { + "id":"b1c93fb3-43f8-4a86-8221-03d55bff7a6f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T01:53:09.138Z", + "completed":"2016-01-27T01:53:09.138Z", + "new_balance":"6151.21", + "value":"105.63" + } + }, + { + "id":"97f82343-21c5-4874-b4ec-a5f8bd26cd1d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T04:58:02.383Z", + "completed":"2016-01-28T04:58:02.383Z", + "new_balance":"6147.77", + "value":"-3.44" + } + }, + { + "id":"0107be3f-5401-4dea-9bc2-4d1cd30b9fc2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T01:29:40.703Z", + "completed":"2016-01-30T01:29:40.703Z", + "new_balance":"6143.50", + "value":"-4.27" + } + }, + { + "id":"4d3fcf80-bc50-497d-ae10-b43cd2febc44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T05:54:12.220Z", + "completed":"2016-02-03T05:54:12.220Z", + "new_balance":"6136.31", + "value":"-7.19" + } + }, + { + "id":"725e24c1-6a67-4025-90ce-45b15db7825d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T09:33:24.168Z", + "completed":"2016-02-03T09:33:24.168Z", + "new_balance":"6132.87", + "value":"-3.44" + } + }, + { + "id":"5cdec414-c23b-499c-83a1-203786a21e63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T16:42:24.118Z", + "completed":"2016-02-03T16:42:24.118Z", + "new_balance":"6074.64", + "value":"-58.23" + } + }, + { + "id":"aa4cd967-ca0a-4ed2-bae1-5d1e31514887", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T20:49:41.609Z", + "completed":"2016-02-03T20:49:41.609Z", + "new_balance":"6072.18", + "value":"-2.46" + } + }, + { + "id":"f7e0ca5f-7cb8-467c-b924-4508620828c4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T10:48:46.313Z", + "completed":"2016-02-08T10:48:46.313Z", + "new_balance":"6067.76", + "value":"-4.42" + } + }, + { + "id":"a02a3cda-3939-4a0a-ab45-61a3cc99861f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T18:51:24.236Z", + "completed":"2016-02-08T18:51:24.236Z", + "new_balance":"6062.61", + "value":"-5.15" + } + }, + { + "id":"3fc80e59-78a0-4b11-b0cb-d60b614b4ce8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T00:59:12.536Z", + "completed":"2016-02-11T00:59:12.536Z", + "new_balance":"6063.72", + "value":"1.11" + } + }, + { + "id":"e966c3b3-707c-4703-93a2-6be6e9cc5e82", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T17:35:12.946Z", + "completed":"2016-02-13T17:35:12.946Z", + "new_balance":"6061.40", + "value":"-2.32" + } + }, + { + "id":"69231170-bc70-4d46-89d6-2878bbf11ef6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T10:43:15.449Z", + "completed":"2016-02-14T10:43:15.449Z", + "new_balance":"6058.37", + "value":"-3.03" + } + }, + { + "id":"8da815d8-e361-44f9-942d-58cb05291dea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T12:00:45.574Z", + "completed":"2016-02-17T12:00:45.574Z", + "new_balance":"6056.97", + "value":"-1.40" + } + }, + { + "id":"aee0d74a-35c6-451a-8130-2df38bc77854", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T09:16:53.178Z", + "completed":"2016-02-21T09:16:53.178Z", + "new_balance":"6052.48", + "value":"-4.49" + } + }, + { + "id":"069aad5f-437a-4961-9e4d-1a071963b92b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T07:09:53.755Z", + "completed":"2016-02-23T07:09:53.755Z", + "new_balance":"6047.33", + "value":"-5.15" + } + }, + { + "id":"74625bbb-bb06-41b5-9af5-899dce842a71", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T18:32:24.151Z", + "completed":"2016-02-23T18:32:24.151Z", + "new_balance":"6043.09", + "value":"-4.24" + } + }, + { + "id":"3abb4b94-ad3a-4e77-9e57-28275353f124", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T14:26:19.254Z", + "completed":"2016-02-24T14:26:19.254Z", + "new_balance":"6041.69", + "value":"-1.40" + } + }, + { + "id":"59e6b30c-7306-4978-8e3c-96f839c6820b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T00:15:40.563Z", + "completed":"2016-02-27T00:15:40.563Z", + "new_balance":"6039.67", + "value":"-2.02" + } + }, + { + "id":"cd00bb30-f310-45dd-b745-d0faef4b01d8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T19:14:42.050Z", + "completed":"2016-02-27T19:14:42.050Z", + "new_balance":"6145.30", + "value":"105.63" + } + }, + { + "id":"020541d7-af6e-41eb-b450-927ce26254d2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T23:13:23.134Z", + "completed":"2016-02-27T23:13:23.134Z", + "new_balance":"6140.49", + "value":"-4.81" + } + }, + { + "id":"53a03070-ec0f-40c2-81c4-9d1a5ee11547", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T08:09:22.569Z", + "completed":"2016-02-28T08:09:22.569Z", + "new_balance":"6137.05", + "value":"-3.44" + } + }, + { + "id":"e0344bea-48f4-4f51-a30d-aea5c9e18016", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T20:46:06.817Z", + "completed":"2016-02-28T20:46:06.817Z", + "new_balance":"6132.78", + "value":"-4.27" + } + }, + { + "id":"303c44f6-30fb-412f-93c1-9a1c1148a851", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T22:34:35.691Z", + "completed":"2016-03-01T22:34:35.691Z", + "new_balance":"6126.38", + "value":"-6.40" + } + }, + { + "id":"75fe1898-7148-4fd6-9a9a-a825b3e07969", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T00:04:05.430Z", + "completed":"2016-03-03T00:04:05.430Z", + "new_balance":"6119.19", + "value":"-7.19" + } + }, + { + "id":"c01fe141-9a05-46c6-8748-7e0bd7144a77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T05:01:13.175Z", + "completed":"2016-03-03T05:01:13.175Z", + "new_balance":"6116.73", + "value":"-2.46" + } + }, + { + "id":"afe13b92-8b3f-430b-acec-13036bf4b6fa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T14:01:01.303Z", + "completed":"2016-03-03T14:01:01.303Z", + "new_balance":"6113.29", + "value":"-3.44" + } + }, + { + "id":"8ba9bf7c-7240-4a2b-813e-0c934b2e9f97", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T19:26:05.413Z", + "completed":"2016-03-03T19:26:05.413Z", + "new_balance":"6055.06", + "value":"-58.23" + } + }, + { + "id":"522838c3-d9da-4cd4-8bd4-eb1f0a7055ca", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T02:04:08.737Z", + "completed":"2016-03-05T02:04:08.737Z", + "new_balance":"6049.91", + "value":"-5.15" + } + }, + { + "id":"9631ed9c-3d19-47c5-b6d4-70ff8cdae97e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T15:38:26.522Z", + "completed":"2016-03-05T15:38:26.522Z", + "new_balance":"6045.02", + "value":"-4.89" + } + }, + { + "id":"1536bda8-8aba-4160-ab06-b5755a7ae75a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T02:38:54.981Z", + "completed":"2016-03-07T02:38:54.981Z", + "new_balance":"6043.15", + "value":"-1.87" + } + }, + { + "id":"afbc6dd0-32ed-4d00-95be-7f83698d6439", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T19:34:24.942Z", + "completed":"2016-03-09T19:34:24.942Z", + "new_balance":"6038.00", + "value":"-5.15" + } + }, + { + "id":"e15f22ad-1474-4744-9f4a-ff66685e1993", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T22:22:24.405Z", + "completed":"2016-03-11T22:22:24.405Z", + "new_balance":"6036.42", + "value":"-1.58" + } + }, + { + "id":"854fa6cb-18de-4d31-a6c0-edd40f40b422", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T08:33:45.801Z", + "completed":"2016-03-13T08:33:45.801Z", + "new_balance":"6029.50", + "value":"-6.92" + } + }, + { + "id":"11f74db2-517e-4245-a75c-3f5d4a0b6094", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T07:49:28.669Z", + "completed":"2016-03-14T07:49:28.669Z", + "new_balance":"6028.26", + "value":"-1.24" + } + }, + { + "id":"378ddd52-67af-4879-a9d1-8d6dfefcac66", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T15:43:59.799Z", + "completed":"2016-03-14T15:43:59.799Z", + "new_balance":"6036.55", + "value":"8.29" + } + }, + { + "id":"284c27df-3bb1-41bd-9361-7fc9ba96f227", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T09:29:07.010Z", + "completed":"2016-03-15T09:29:07.010Z", + "new_balance":"6032.28", + "value":"-4.27" + } + }, + { + "id":"d94e9518-3758-4bd0-bed1-a390b90f54ea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T00:51:42.232Z", + "completed":"2016-03-26T00:51:42.232Z", + "new_balance":"6030.14", + "value":"-2.14" + } + }, + { + "id":"2447626f-d205-48a2-a166-2f90af5de943", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T04:54:55.001Z", + "completed":"2016-03-26T04:54:55.001Z", + "new_balance":"6025.45", + "value":"-4.69" + } + }, + { + "id":"90fdca43-0adb-47df-ba84-173f1e22f134", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T07:28:14.469Z", + "completed":"2016-03-26T07:28:14.469Z", + "new_balance":"6023.46", + "value":"-1.99" + } + }, + { + "id":"73277a64-402d-4a97-ad38-21a27eedbcb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T09:09:23.865Z", + "completed":"2016-03-27T09:09:23.865Z", + "new_balance":"6019.04", + "value":"-4.42" + } + }, + { + "id":"a3a3978d-f03a-47d3-a516-93f8607a4023", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T17:14:39.807Z", + "completed":"2016-03-27T17:14:39.807Z", + "new_balance":"6013.89", + "value":"-5.15" + } + }, + { + "id":"9174e49f-80d7-4fc3-8663-d265474dbef4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T20:01:29.845Z", + "completed":"2016-03-27T20:01:29.845Z", + "new_balance":"6119.52", + "value":"105.63" + } + }, + { + "id":"99cb3703-5d3b-45b2-89ce-8b02f4a0b855", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T23:55:31.344Z", + "completed":"2016-03-28T23:55:31.344Z", + "new_balance":"6116.08", + "value":"-3.44" + } + }, + { + "id":"10ab2e92-2d32-46b6-b97c-5893f7d0d8d2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T03:17:00.985Z", + "completed":"2016-03-30T03:17:00.985Z", + "new_balance":"6111.81", + "value":"-4.27" + } + }, + { + "id":"d45c08a3-d7d3-49bc-a3d3-40f2b2292d28", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T03:03:20.987Z", + "completed":"2016-04-01T03:03:20.987Z", + "new_balance":"6108.37", + "value":"-3.44" + } + }, + { + "id":"e0426080-883e-47f4-873e-5c9fd6a03bb7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T11:21:23.993Z", + "completed":"2016-04-01T11:21:23.993Z", + "new_balance":"6050.14", + "value":"-58.23" + } + }, + { + "id":"8b71b1a0-f900-4daf-bb2a-cacd9089e554", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T13:48:58.880Z", + "completed":"2016-04-01T13:48:58.880Z", + "new_balance":"6042.95", + "value":"-7.19" + } + }, + { + "id":"063a3809-3b0b-4ce4-85ec-f49fcc2cb6a3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T17:43:06.777Z", + "completed":"2016-04-01T17:43:06.777Z", + "new_balance":"6040.49", + "value":"-2.46" + } + }, + { + "id":"a66e79b6-a9e1-4757-8768-77f6af26314a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:02:21.853Z", + "completed":"2016-04-01T21:02:21.853Z", + "new_balance":"6034.09", + "value":"-6.40" + } + }, + { + "id":"d49fc0ca-79ae-44a4-8b68-82a05bea0b21", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T00:51:02.832Z", + "completed":"2016-04-05T00:51:02.832Z", + "new_balance":"6030.42", + "value":"-3.67" + } + }, + { + "id":"e121a2ad-dbf3-4e81-98d9-df347febed5d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T08:39:46.424Z", + "completed":"2016-04-05T08:39:46.424Z", + "new_balance":"6029.27", + "value":"-1.15" + } + }, + { + "id":"16634da7-b869-4632-a6fb-82e76cf51fc4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:40:35.375Z", + "completed":"2016-04-05T15:40:35.375Z", + "new_balance":"6024.85", + "value":"-4.42" + } + }, + { + "id":"212a9de6-8c0a-449c-aaa8-74d91656b70d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T23:54:26.428Z", + "completed":"2016-04-05T23:54:26.428Z", + "new_balance":"6019.70", + "value":"-5.15" + } + }, + { + "id":"c5934a34-dc54-4087-b4ad-8973c67378f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T07:50:17.167Z", + "completed":"2016-04-07T07:50:17.167Z", + "new_balance":"6017.38", + "value":"-2.32" + } + }, + { + "id":"046e6dc0-084f-4ec9-b560-43d31783ef11", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:33:12.039Z", + "completed":"2016-04-09T05:33:12.039Z", + "new_balance":"6015.00", + "value":"-2.38" + } + }, + { + "id":"fa7694d7-24b0-4bfe-b0e5-fc93afb677e8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T23:51:44.136Z", + "completed":"2016-04-09T23:51:44.136Z", + "new_balance":"6009.85", + "value":"-5.15" + } + }, + { + "id":"66476e93-f3c1-4e25-9c70-603e264016f3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:28:53.352Z", + "completed":"2016-04-10T01:28:53.352Z", + "new_balance":"6007.12", + "value":"-2.73" + } + }, + { + "id":"95bc6966-df69-4c07-8625-f98961b966d7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T14:41:49.882Z", + "completed":"2016-04-10T14:41:49.882Z", + "new_balance":"6004.66", + "value":"-2.46" + } + }, + { + "id":"1db2e6ed-bc1a-48b8-a651-31d7fc1ace7e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T17:59:02.586Z", + "completed":"2016-04-10T17:59:02.586Z", + "new_balance":"6000.19", + "value":"-4.47" + } + }, + { + "id":"90f68655-e1ea-4e84-a17e-6569ccd73e95", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T20:36:55.534Z", + "completed":"2016-04-10T20:36:55.534Z", + "new_balance":"5997.56", + "value":"-2.63" + } + }, + { + "id":"c4f72757-3ef1-4ce8-8a3a-165a7efdaf7c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T04:05:49.871Z", + "completed":"2016-04-11T04:05:49.871Z", + "new_balance":"5995.14", + "value":"-2.42" + } + }, + { + "id":"63e52bab-6944-4e0c-95e6-b42aeba02c75", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T06:35:27.777Z", + "completed":"2016-04-11T06:35:27.777Z", + "new_balance":"5989.99", + "value":"-5.15" + } + }, + { + "id":"7c71754a-26df-4dca-b419-fd319ce47485", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T11:59:49.759Z", + "completed":"2016-04-11T11:59:49.759Z", + "new_balance":"5989.03", + "value":"-0.96" + } + }, + { + "id":"dbc5e9a5-5d8f-4ddd-9405-47f9094629ab", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T19:25:28.870Z", + "completed":"2016-04-11T19:25:28.870Z", + "new_balance":"5986.44", + "value":"-2.59" + } + }, + { + "id":"019e88bb-f233-42de-ae87-37c986fc7aa5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T19:46:20.641Z", + "completed":"2016-04-11T19:46:20.641Z", + "new_balance":"5979.69", + "value":"-6.75" + } + }, + { + "id":"7c320061-c91e-4df6-b4e7-1b483b57b722", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T07:31:14.503Z", + "completed":"2016-04-21T07:31:14.503Z", + "new_balance":"5974.54", + "value":"-5.15" + } + }, + { + "id":"20169886-3153-4ec6-a0e4-6482d8f350e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T09:51:40.554Z", + "completed":"2016-04-23T09:51:40.554Z", + "new_balance":"5973.12", + "value":"-1.42" + } + }, + { + "id":"af8a777d-6d15-4940-9f8b-e63752d54bad", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T00:02:00.177Z", + "completed":"2016-04-29T00:02:00.177Z", + "new_balance":"6078.75", + "value":"105.63" + } + }, + { + "id":"9dfe279d-dbb4-4cee-99ce-37eb7aac7202", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T02:59:19.616Z", + "completed":"2016-04-29T02:59:19.616Z", + "new_balance":"6073.94", + "value":"-4.81" + } + }, + { + "id":"c4fe867c-c674-454b-a340-0b0ce1887833", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T07:11:16.590Z", + "completed":"2016-04-29T07:11:16.590Z", + "new_balance":"6070.50", + "value":"-3.44" + } + }, + { + "id":"7f9ffbb9-a075-47d2-a763-bffdef0b4b54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T09:40:49.652Z", + "completed":"2016-04-30T09:40:49.652Z", + "new_balance":"6066.23", + "value":"-4.27" + } + }, + { + "id":"1df17141-0e24-4a9a-a4c5-ecccaac3f141", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T02:12:34.805Z", + "completed":"2016-05-02T02:12:34.805Z", + "new_balance":"6059.04", + "value":"-7.19" + } + }, + { + "id":"e8bb6e2f-43ab-4550-ac72-7e384b75a897", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T05:34:08.141Z", + "completed":"2016-05-02T05:34:08.141Z", + "new_balance":"6056.58", + "value":"-2.46" + } + }, + { + "id":"e2efeba9-23f0-4e20-9039-3ac98d9ae929", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T13:00:41.660Z", + "completed":"2016-05-02T13:00:41.660Z", + "new_balance":"6050.18", + "value":"-6.40" + } + }, + { + "id":"89c03805-dc34-44ff-9db3-2c5dea07a352", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T14:41:16.114Z", + "completed":"2016-05-02T14:41:16.114Z", + "new_balance":"5991.95", + "value":"-58.23" + } + }, + { + "id":"55611f25-1478-41e9-ad86-8da80b20d912", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T17:42:12.432Z", + "completed":"2016-05-06T17:42:12.432Z", + "new_balance":"5987.53", + "value":"-4.42" + } + }, + { + "id":"8ac6db18-cbbb-4404-b983-6fd5f52b98d5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T02:28:00.196Z", + "completed":"2016-05-07T02:28:00.196Z", + "new_balance":"5986.13", + "value":"-1.40" + } + }, + { + "id":"f5cca48a-93e5-4fb0-add1-fceace56a07c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T15:10:12.392Z", + "completed":"2016-05-07T15:10:12.392Z", + "new_balance":"5981.64", + "value":"-4.49" + } + }, + { + "id":"34917ab1-c65a-4443-9bdf-3477038c36cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:52:56.193Z", + "completed":"2016-05-07T20:52:56.193Z", + "new_balance":"5978.61", + "value":"-3.03" + } + }, + { + "id":"8b495412-81d6-4fd6-952c-5376d695c1c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T23:49:14.184Z", + "completed":"2016-05-07T23:49:14.184Z", + "new_balance":"5976.29", + "value":"-2.32" + } + }, + { + "id":"c74ba6dd-d666-4003-99a9-5284b088bebd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T07:19:18.167Z", + "completed":"2016-05-08T07:19:18.167Z", + "new_balance":"5972.05", + "value":"-4.24" + } + }, + { + "id":"37c8da36-2440-45d1-b4f3-91d7dc82c258", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T05:42:52.397Z", + "completed":"2016-05-09T05:42:52.397Z", + "new_balance":"5968.61", + "value":"-3.44" + } + }, + { + "id":"8bde480b-bb89-466e-9be5-095b7b87cb00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T11:18:00.151Z", + "completed":"2016-05-13T11:18:00.151Z", + "new_balance":"5963.46", + "value":"-5.15" + } + }, + { + "id":"6d78a1ea-ca8f-4969-89a6-d655416dcb17", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T05:16:41.000Z", + "completed":"2016-05-26T05:16:41.000Z", + "new_balance":"5958.31", + "value":"-5.15" + } + }, + { + "id":"7d4013b5-794b-4ab0-aedd-16332da94ba9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T20:50:07.301Z", + "completed":"2016-05-26T20:50:07.301Z", + "new_balance":"5956.91", + "value":"-1.40" + } + }, + { + "id":"5732e207-c940-493a-9a80-d4e9062d9560", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T12:41:46.914Z", + "completed":"2016-05-27T12:41:46.914Z", + "new_balance":"5952.10", + "value":"-4.81" + } + }, + { + "id":"806bba11-a6b2-4504-8bc4-c4dc9c871353", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T18:04:54.012Z", + "completed":"2016-05-27T18:04:54.012Z", + "new_balance":"5950.08", + "value":"-2.02" + } + }, + { + "id":"aedee17a-a981-46cc-a728-8d4f63239054", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T15:00:31.752Z", + "completed":"2016-05-30T15:00:31.752Z", + "new_balance":"5946.64", + "value":"-3.44" + } + }, + { + "id":"9ecdd91b-167f-4572-af89-66b9865d3684", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T20:22:37.084Z", + "completed":"2016-05-30T20:22:37.084Z", + "new_balance":"5942.37", + "value":"-4.27" + } + }, + { + "id":"797707b8-82e6-4480-bfc5-db050b3c417d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T20:40:40.367Z", + "completed":"2016-05-30T20:40:40.367Z", + "new_balance":"6048.00", + "value":"105.63" + } + }, + { + "id":"fded7f81-770d-49b3-a557-5f27ab848c34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T01:58:17.852Z", + "completed":"2016-06-01T01:58:17.852Z", + "new_balance":"6043.11", + "value":"-4.89" + } + }, + { + "id":"eefc60ca-2318-469c-a6c2-6f99faa9789d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T02:07:29.247Z", + "completed":"2016-06-01T02:07:29.247Z", + "new_balance":"6039.67", + "value":"-3.44" + } + }, + { + "id":"94b5582f-69b4-4d9a-a6f2-a3dfc3ade01e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T05:47:14.301Z", + "completed":"2016-06-01T05:47:14.301Z", + "new_balance":"6034.52", + "value":"-5.15" + } + }, + { + "id":"36cb459f-82e4-4739-9021-998f7f62817f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T06:32:26.882Z", + "completed":"2016-06-01T06:32:26.882Z", + "new_balance":"5976.29", + "value":"-58.23" + } + }, + { + "id":"6d0007cd-64da-498d-b6b2-113a3628cdfa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T11:06:13.011Z", + "completed":"2016-06-01T11:06:13.011Z", + "new_balance":"5969.89", + "value":"-6.40" + } + }, + { + "id":"1cf17d8d-0c69-4afd-a741-bfaa89e185d1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T14:41:52.603Z", + "completed":"2016-06-01T14:41:52.603Z", + "new_balance":"5967.43", + "value":"-2.46" + } + }, + { + "id":"b0ef8ec7-8b1f-4308-87fc-98f43300d9fb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T15:33:48.182Z", + "completed":"2016-06-01T15:33:48.182Z", + "new_balance":"5960.24", + "value":"-7.19" + } + }, + { + "id":"eb6069da-ccd5-454c-85da-0abf04ebad06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T21:53:27.219Z", + "completed":"2016-06-01T21:53:27.219Z", + "new_balance":"5958.37", + "value":"-1.87" + } + }, + { + "id":"22ad6adf-45b6-4a64-84b1-d7908aac455e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T22:19:18.260Z", + "completed":"2016-06-01T22:19:18.260Z", + "new_balance":"5953.22", + "value":"-5.15" + } + }, + { + "id":"5aafc9cf-7391-4762-8b11-cb14cc3a53d6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T02:03:25.136Z", + "completed":"2016-06-02T02:03:25.136Z", + "new_balance":"5946.30", + "value":"-6.92" + } + }, + { + "id":"1d8fed96-beb1-445d-9b1f-77af0c714beb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T07:59:39.292Z", + "completed":"2016-06-02T07:59:39.292Z", + "new_balance":"5945.06", + "value":"-1.24" + } + }, + { + "id":"6b097ea9-fb47-450a-9870-e9e48a358bc7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T13:37:38.441Z", + "completed":"2016-06-02T13:37:38.441Z", + "new_balance":"5943.48", + "value":"-1.58" + } + }, + { + "id":"fcbcbd5e-518b-4d71-b191-0afcb4f516c6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T10:52:58.991Z", + "completed":"2016-06-04T10:52:58.991Z", + "new_balance":"5938.79", + "value":"-4.69" + } + }, + { + "id":"5bed4cf3-c662-4219-8979-020421edd4e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T13:48:04.411Z", + "completed":"2016-06-04T13:48:04.411Z", + "new_balance":"5936.65", + "value":"-2.14" + } + }, + { + "id":"74c72ff6-6610-4360-b9e4-da5a1895b4cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T22:16:35.596Z", + "completed":"2016-06-04T22:16:35.596Z", + "new_balance":"5932.38", + "value":"-4.27" + } + }, + { + "id":"41ae7a0b-ee2e-4531-8abd-57ffd6024203", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:24:28.246Z", + "completed":"2016-06-05T10:24:28.246Z", + "new_balance":"5927.96", + "value":"-4.42" + } + }, + { + "id":"016c1c5e-bed8-4c78-bb76-132efd30e235", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T12:27:47.801Z", + "completed":"2016-06-05T12:27:47.801Z", + "new_balance":"5925.97", + "value":"-1.99" + } + }, + { + "id":"83b65850-7124-4f29-b838-200557b991ec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T22:53:31.552Z", + "completed":"2016-06-18T22:53:31.552Z", + "new_balance":"5920.82", + "value":"-5.15" + } + }, + { + "id":"a10aa6e4-afc2-4be8-892f-456e1b13a3b1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T01:38:53.275Z", + "completed":"2016-06-30T01:38:53.275Z", + "new_balance":"5917.38", + "value":"-3.44" + } + }, + { + "id":"65ca5508-60a9-40fb-b140-71cd4fce61f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T04:54:24.155Z", + "completed":"2016-06-30T04:54:24.155Z", + "new_balance":"5913.11", + "value":"-4.27" + } + }, + { + "id":"6c65ff43-d74f-4015-aa7c-84f25d4c54f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T10:59:00.800Z", + "completed":"2016-06-30T10:59:00.800Z", + "new_balance":"6018.74", + "value":"105.63" + } + }, + { + "id":"e1dfd3c0-6b58-4da4-b0b7-5bb60cf8928c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:29:09.891Z", + "completed":"2016-06-30T19:29:09.891Z", + "new_balance":"6015.63", + "value":"-3.11" + } + }, + { + "id":"3399fc65-2633-4902-a4de-83bb2ec1fafb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:42:08.273Z", + "completed":"2016-07-01T05:42:08.273Z", + "new_balance":"6009.23", + "value":"-6.40" + } + }, + { + "id":"881d634a-b620-4702-ab02-9e144b76becd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T06:48:43.470Z", + "completed":"2016-07-03T06:48:43.470Z", + "new_balance":"6005.79", + "value":"-3.44" + } + }, + { + "id":"dc87981a-39ec-42b6-9f08-a88233826331", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T08:41:55.849Z", + "completed":"2016-07-03T08:41:55.849Z", + "new_balance":"5947.56", + "value":"-58.23" + } + }, + { + "id":"fdd62baa-6d7f-4f8d-b059-3f1de1c46598", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T19:26:09.911Z", + "completed":"2016-07-03T19:26:09.911Z", + "new_balance":"5945.10", + "value":"-2.46" + } + }, + { + "id":"07b74a43-f84b-4aa7-ab0d-fbe1918ddfac", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T20:19:57.307Z", + "completed":"2016-07-03T20:19:57.307Z", + "new_balance":"5937.91", + "value":"-7.19" + } + }, + { + "id":"ee78ced4-edb8-4f3d-b99c-dfe510ab2a39", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T08:56:00.313Z", + "completed":"2016-07-05T08:56:00.313Z", + "new_balance":"5933.49", + "value":"-4.42" + } + }, + { + "id":"1465fc46-f3dc-42e0-9027-97f40b8ba088", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T11:02:27.702Z", + "completed":"2016-07-05T11:02:27.702Z", + "new_balance":"5932.34", + "value":"-1.15" + } + }, + { + "id":"03b6457b-b428-4fbc-ad32-e0b60f23f686", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T18:46:54.086Z", + "completed":"2016-07-05T18:46:54.086Z", + "new_balance":"5927.19", + "value":"-5.15" + } + }, + { + "id":"8d0912c9-b665-423c-a9df-5305807f63f3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T13:32:35.408Z", + "completed":"2016-07-06T13:32:35.408Z", + "new_balance":"5923.52", + "value":"-3.67" + } + }, + { + "id":"a4e28a31-6abf-4860-8c30-9f9fc064a973", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T16:15:21.497Z", + "completed":"2016-07-06T16:15:21.497Z", + "new_balance":"5921.20", + "value":"-2.32" + } + }, + { + "id":"b73bf2b3-8479-4ae7-bba0-c0bb55a7c89a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T22:41:27.196Z", + "completed":"2016-07-07T22:41:27.196Z", + "new_balance":"5916.73", + "value":"-4.47" + } + }, + { + "id":"6d65c250-2232-44e3-8df4-76d5ebc46714", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T03:57:28.285Z", + "completed":"2016-07-10T03:57:28.285Z", + "new_balance":"5914.35", + "value":"-2.38" + } + }, + { + "id":"25d9ec39-32e9-44f1-bb85-734bec660bba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T22:47:46.728Z", + "completed":"2016-07-10T22:47:46.728Z", + "new_balance":"5909.20", + "value":"-5.15" + } + }, + { + "id":"834503a7-efb3-4ae1-af19-d3a5a4a9b4f1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:28:01.786Z", + "completed":"2016-07-12T03:28:01.786Z", + "new_balance":"5906.74", + "value":"-2.46" + } + }, + { + "id":"8705cad1-1db7-4de3-8a76-91abf971a018", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:59:42.942Z", + "completed":"2016-07-12T03:59:42.942Z", + "new_balance":"5904.01", + "value":"-2.73" + } + }, + { + "id":"44d14295-3eb3-4487-b97c-961a641946b9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:26:34.746Z", + "completed":"2016-07-12T16:26:34.746Z", + "new_balance":"5899.54", + "value":"-4.47" + } + }, + { + "id":"41709bd7-06f1-4d57-b95a-9af6d008beea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T13:23:53.214Z", + "completed":"2016-07-15T13:23:53.214Z", + "new_balance":"5896.91", + "value":"-2.63" + } + }, + { + "id":"4ee0c027-7bf8-4537-953e-432a75a6880d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T00:36:18.140Z", + "completed":"2016-07-16T00:36:18.140Z", + "new_balance":"5891.76", + "value":"-5.15" + } + }, + { + "id":"137ec398-7a92-443e-86c8-3246ff199f1e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T03:31:11.551Z", + "completed":"2016-07-16T03:31:11.551Z", + "new_balance":"5890.80", + "value":"-0.96" + } + }, + { + "id":"3282c709-1fb0-455b-98d1-292012b53d3b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T07:04:14.504Z", + "completed":"2016-07-17T07:04:14.504Z", + "new_balance":"5884.05", + "value":"-6.75" + } + }, + { + "id":"6e4190d9-c817-4d76-8de9-260dac002b74", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T18:59:42.686Z", + "completed":"2016-07-17T18:59:42.686Z", + "new_balance":"5881.46", + "value":"-2.59" + } + }, + { + "id":"e8dbe3d3-87ba-40bc-bfd8-4a38abb05806", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T21:07:27.532Z", + "completed":"2016-07-19T21:07:27.532Z", + "new_balance":"5879.04", + "value":"-2.42" + } + }, + { + "id":"f2cd6863-2c2f-4d50-97d2-959788e7b8e6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T23:35:16.777Z", + "completed":"2016-07-20T23:35:16.777Z", + "new_balance":"5873.89", + "value":"-5.15" + } + }, + { + "id":"6a3ffda5-008d-4396-9c74-ac2cbea8c8aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T23:35:53.884Z", + "completed":"2016-07-23T23:35:53.884Z", + "new_balance":"5872.47", + "value":"-1.42" + } + }, + { + "id":"93d05813-86f4-4b0e-b646-f8cd0ed0ee35", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T18:27:17.199Z", + "completed":"2016-07-26T18:27:17.199Z", + "new_balance":"5867.66", + "value":"-4.81" + } + }, + { + "id":"cfa0fdaf-2468-4dd7-8c24-3b4bc77260ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T10:30:09.962Z", + "completed":"2016-07-27T10:30:09.962Z", + "new_balance":"5973.29", + "value":"105.63" + } + }, + { + "id":"8a6f390f-7442-4a40-9b57-427ef7dfa305", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T06:40:49.619Z", + "completed":"2016-07-28T06:40:49.619Z", + "new_balance":"5969.85", + "value":"-3.44" + } + }, + { + "id":"f773b2e8-8047-4c9f-992e-3c0c83d9734c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T16:26:46.144Z", + "completed":"2016-07-30T16:26:46.144Z", + "new_balance":"5965.58", + "value":"-4.27" + } + }, + { + "id":"ef074954-ab17-4504-8b9f-685e5beda187", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T22:30:49.189Z", + "completed":"2016-08-01T22:30:49.189Z", + "new_balance":"5959.18", + "value":"-6.40" + } + }, + { + "id":"ccce9b60-a7f7-40b1-86d4-b66a376a8d3a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T07:32:04.626Z", + "completed":"2016-08-03T07:32:04.626Z", + "new_balance":"5951.99", + "value":"-7.19" + } + }, + { + "id":"af140336-0bde-45bd-8d96-f4f1d45dc1bf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T09:33:22.903Z", + "completed":"2016-08-03T09:33:22.903Z", + "new_balance":"5893.76", + "value":"-58.23" + } + }, + { + "id":"7a0e33e4-ce6a-4bfb-bec9-35744b1f8169", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T17:03:25.865Z", + "completed":"2016-08-03T17:03:25.865Z", + "new_balance":"5891.30", + "value":"-2.46" + } + }, + { + "id":"f4ccde70-5570-4fdd-b667-ef0c98de044b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T22:59:21.295Z", + "completed":"2016-08-03T22:59:21.295Z", + "new_balance":"5887.86", + "value":"-3.44" + } + }, + { + "id":"b2f097f7-b8ef-45a9-b5ff-c811f075d08e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T03:01:46.212Z", + "completed":"2016-08-08T03:01:46.212Z", + "new_balance":"5882.71", + "value":"-5.15" + } + }, + { + "id":"0f68faa1-2a8b-4ada-aee5-f46677469b47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T12:54:48.687Z", + "completed":"2016-08-08T12:54:48.687Z", + "new_balance":"5878.29", + "value":"-4.42" + } + }, + { + "id":"61210b75-a6f9-4ed2-a0d4-5ff65d86fdeb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T19:21:03.291Z", + "completed":"2016-08-11T19:21:03.291Z", + "new_balance":"5879.40", + "value":"1.11" + } + }, + { + "id":"ac7d3e5a-f545-4df5-b9c4-18323d624753", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T20:03:04.948Z", + "completed":"2016-08-13T20:03:04.948Z", + "new_balance":"5877.08", + "value":"-2.32" + } + }, + { + "id":"1a2e9e80-e153-4db5-96d0-32d5fd60ca0c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T02:58:01.820Z", + "completed":"2016-08-14T02:58:01.820Z", + "new_balance":"5874.05", + "value":"-3.03" + } + }, + { + "id":"b2e36f1f-877f-4d9d-8f1c-f79089ed3b92", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T21:45:39.219Z", + "completed":"2016-08-17T21:45:39.219Z", + "new_balance":"5872.65", + "value":"-1.40" + } + }, + { + "id":"22824a7d-dc9e-4541-8f55-e22418aa2e6d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T12:51:36.416Z", + "completed":"2016-08-21T12:51:36.416Z", + "new_balance":"5868.16", + "value":"-4.49" + } + }, + { + "id":"77bf58c7-104d-40b6-9d96-3c991b387c1b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T02:22:11.005Z", + "completed":"2016-08-23T02:22:11.005Z", + "new_balance":"5863.92", + "value":"-4.24" + } + }, + { + "id":"4ba69359-78be-4ebb-b953-b4f21f99cf68", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T22:02:07.090Z", + "completed":"2016-08-23T22:02:07.090Z", + "new_balance":"5858.77", + "value":"-5.15" + } + }, + { + "id":"c6abe065-d9ba-41eb-8b19-e50432822a94", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T18:02:49.735Z", + "completed":"2016-08-24T18:02:49.735Z", + "new_balance":"5857.37", + "value":"-1.40" + } + }, + { + "id":"fe3d974b-e59f-4c2a-b54b-3cc8bcaecfaf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T13:35:03.215Z", + "completed":"2016-08-27T13:35:03.215Z", + "new_balance":"5852.56", + "value":"-4.81" + } + }, + { + "id":"65f20907-6aec-4d2e-88bb-c2c4e33eced3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:09:58.687Z", + "completed":"2016-08-27T15:09:58.687Z", + "new_balance":"5850.54", + "value":"-2.02" + } + }, + { + "id":"af7481df-5ee2-4f0e-b6fc-81cc34091ebe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T15:34:00.907Z", + "completed":"2016-08-27T15:34:00.907Z", + "new_balance":"5956.17", + "value":"105.63" + } + }, + { + "id":"62146d57-bb32-42bf-977a-d5cc2c17f9db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T13:56:42.041Z", + "completed":"2016-08-28T13:56:42.041Z", + "new_balance":"5952.73", + "value":"-3.44" + } + }, + { + "id":"a53a3d6f-377a-4f6c-ac45-394b05e64077", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T11:02:23.121Z", + "completed":"2016-08-30T11:02:23.121Z", + "new_balance":"5948.46", + "value":"-4.27" + } + }, + { + "id":"bbe868ad-0bee-40b9-bf1c-dc39366609de", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:24:48.703Z", + "completed":"2016-09-01T14:24:48.703Z", + "new_balance":"5942.06", + "value":"-6.40" + } + }, + { + "id":"82f81d03-30d7-4b08-94d5-e543866309ce", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:10:01.694Z", + "completed":"2016-09-03T01:10:01.694Z", + "new_balance":"5938.62", + "value":"-3.44" + } + }, + { + "id":"1ecf6247-96af-4846-bbc3-528bb73893a7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T02:08:40.380Z", + "completed":"2016-09-03T02:08:40.380Z", + "new_balance":"5880.39", + "value":"-58.23" + } + }, + { + "id":"b6202cbf-a33c-4c85-892f-faefa275b326", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T20:32:48.476Z", + "completed":"2016-09-03T20:32:48.476Z", + "new_balance":"5877.93", + "value":"-2.46" + } + }, + { + "id":"4dc9f6b9-4651-4c66-a6ea-766980626c0e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T22:09:52.684Z", + "completed":"2016-09-03T22:09:52.684Z", + "new_balance":"5870.74", + "value":"-7.19" + } + }, + { + "id":"b162f884-6cbd-4a85-9afb-b42671cd444c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T12:48:29.106Z", + "completed":"2016-09-05T12:48:29.106Z", + "new_balance":"5865.85", + "value":"-4.89" + } + }, + { + "id":"a22575bb-b106-4e4e-b6fd-a4abb993246d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T20:50:16.310Z", + "completed":"2016-09-05T20:50:16.310Z", + "new_balance":"5860.70", + "value":"-5.15" + } + }, + { + "id":"27fcac6e-7a6e-422b-b1af-6d703e4a9d09", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T06:32:37.082Z", + "completed":"2016-09-07T06:32:37.082Z", + "new_balance":"5858.83", + "value":"-1.87" + } + }, + { + "id":"4da9c505-88c8-47e8-aff9-50f03589173e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T10:11:12.356Z", + "completed":"2016-09-09T10:11:12.356Z", + "new_balance":"5853.68", + "value":"-5.15" + } + }, + { + "id":"08e52511-a9b5-45c1-8d62-89899b9d3d77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T12:18:50.687Z", + "completed":"2016-09-11T12:18:50.687Z", + "new_balance":"5852.10", + "value":"-1.58" + } + }, + { + "id":"63709916-2487-4d89-b458-8d6c193053b5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:32:30.805Z", + "completed":"2016-09-13T16:32:30.805Z", + "new_balance":"5845.18", + "value":"-6.92" + } + }, + { + "id":"da45ecd8-0448-4deb-aeab-d393bbf60a62", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T01:02:08.495Z", + "completed":"2016-09-14T01:02:08.495Z", + "new_balance":"5853.47", + "value":"8.29" + } + }, + { + "id":"3e926ebe-8706-43e7-91d5-36ccfac3b8d3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T09:01:48.628Z", + "completed":"2016-09-14T09:01:48.628Z", + "new_balance":"5852.23", + "value":"-1.24" + } + }, + { + "id":"0a69a7f8-4e9d-4a26-904d-d0839b83af7a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T00:15:01.161Z", + "completed":"2016-09-15T00:15:01.161Z", + "new_balance":"5847.96", + "value":"-4.27" + } + }, + { + "id":"baec5a5b-f299-4253-8d65-a96f9efca8c8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T03:28:44.719Z", + "completed":"2016-09-26T03:28:44.719Z", + "new_balance":"5845.97", + "value":"-1.99" + } + }, + { + "id":"c0404e13-ee52-46aa-abe9-06c8e51c14e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T03:54:55.280Z", + "completed":"2016-09-26T03:54:55.280Z", + "new_balance":"5841.28", + "value":"-4.69" + } + }, + { + "id":"38b7a30f-bfff-427a-9197-ea13cb5f486f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T13:43:28.597Z", + "completed":"2016-09-26T13:43:28.597Z", + "new_balance":"5839.14", + "value":"-2.14" + } + }, + { + "id":"80497589-5ffa-41a5-9f65-7669d55a1b15", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T02:44:05.185Z", + "completed":"2016-09-27T02:44:05.185Z", + "new_balance":"5834.72", + "value":"-4.42" + } + }, + { + "id":"04a95776-e061-4b79-beb6-efa7703e6d9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T04:45:41.861Z", + "completed":"2016-09-27T04:45:41.861Z", + "new_balance":"5829.57", + "value":"-5.15" + } + }, + { + "id":"3f1e64d9-8ebd-42a0-8af1-492da630fa8a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T22:54:27.150Z", + "completed":"2016-09-27T22:54:27.150Z", + "new_balance":"5935.20", + "value":"105.63" + } + }, + { + "id":"7d5b99b6-a7d8-4cbd-8f58-43a918e0a801", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T01:22:54.973Z", + "completed":"2016-09-28T01:22:54.973Z", + "new_balance":"5931.76", + "value":"-3.44" + } + }, + { + "id":"12ab6047-0b6f-43f0-acc8-2bbf4609311b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T15:53:23.951Z", + "completed":"2016-09-30T15:53:23.951Z", + "new_balance":"5927.49", + "value":"-4.27" + } + }, + { + "id":"bfda5af3-40e5-459b-b114-013876b26427", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T03:51:20.790Z", + "completed":"2016-10-01T03:51:20.790Z", + "new_balance":"5924.05", + "value":"-3.44" + } + }, + { + "id":"20a853d5-ed69-4ace-ab1f-aa55ca505d27", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T09:52:46.801Z", + "completed":"2016-10-01T09:52:46.801Z", + "new_balance":"5917.65", + "value":"-6.40" + } + }, + { + "id":"b886a685-60e6-4525-a33b-cde1b9c04071", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T11:29:55.383Z", + "completed":"2016-10-01T11:29:55.383Z", + "new_balance":"5915.19", + "value":"-2.46" + } + }, + { + "id":"3c4b4b2e-caa7-4893-8bd3-c4126bc301f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T21:14:19.032Z", + "completed":"2016-10-01T21:14:19.032Z", + "new_balance":"5908.00", + "value":"-7.19" + } + }, + { + "id":"7cde951b-d469-4050-873e-fcb70f174e51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T22:33:43.528Z", + "completed":"2016-10-01T22:33:43.528Z", + "new_balance":"5849.77", + "value":"-58.23" + } + }, + { + "id":"11f3b09a-755f-4407-9589-1bbe62f830ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T02:16:46.730Z", + "completed":"2016-10-05T02:16:46.730Z", + "new_balance":"5846.10", + "value":"-3.67" + } + }, + { + "id":"a13727bb-88dd-46c7-ad3d-4364f14bc24a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T16:34:14.010Z", + "completed":"2016-10-05T16:34:14.010Z", + "new_balance":"5840.95", + "value":"-5.15" + } + }, + { + "id":"01ffd319-4915-4036-a03a-c1ed317910e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:54:07.899Z", + "completed":"2016-10-05T18:54:07.899Z", + "new_balance":"5839.80", + "value":"-1.15" + } + }, + { + "id":"5757071c-d3a0-4250-b556-40b8d8ca7a6b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T19:26:13.744Z", + "completed":"2016-10-05T19:26:13.744Z", + "new_balance":"5835.38", + "value":"-4.42" + } + }, + { + "id":"09b123d8-0313-4862-ae3d-25a795a0a24b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T13:32:02.856Z", + "completed":"2016-10-07T13:32:02.856Z", + "new_balance":"5833.06", + "value":"-2.32" + } + }, + { + "id":"470b740f-428d-46ed-a527-a403e9df3bcf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T10:34:06.176Z", + "completed":"2016-10-09T10:34:06.176Z", + "new_balance":"5830.68", + "value":"-2.38" + } + }, + { + "id":"41ab85a0-f3cb-40cb-93fa-be9c42d98c9c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T14:57:12.456Z", + "completed":"2016-10-09T14:57:12.456Z", + "new_balance":"5825.53", + "value":"-5.15" + } + }, + { + "id":"2e967817-6858-4938-8f2a-a11486bd54a7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T02:56:28.009Z", + "completed":"2016-10-10T02:56:28.009Z", + "new_balance":"5822.90", + "value":"-2.63" + } + }, + { + "id":"a31746db-ee26-4cf8-bf3f-66edd7eb1526", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T03:14:20.655Z", + "completed":"2016-10-10T03:14:20.655Z", + "new_balance":"5820.17", + "value":"-2.73" + } + }, + { + "id":"21251e17-806e-4e05-93e2-3e4c836ad5ea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T04:01:09.439Z", + "completed":"2016-10-10T04:01:09.439Z", + "new_balance":"5815.70", + "value":"-4.47" + } + }, + { + "id":"3953b480-80db-4e0e-978a-b10d30294942", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T17:10:36.999Z", + "completed":"2016-10-10T17:10:36.999Z", + "new_balance":"5813.24", + "value":"-2.46" + } + }, + { + "id":"665861ac-235f-48ac-9c87-54001164373b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T00:01:18.784Z", + "completed":"2016-10-11T00:01:18.784Z", + "new_balance":"5810.82", + "value":"-2.42" + } + }, + { + "id":"c9faf43c-38a8-46d0-ba48-be956882d532", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T01:43:07.552Z", + "completed":"2016-10-11T01:43:07.552Z", + "new_balance":"5805.67", + "value":"-5.15" + } + }, + { + "id":"eb12dcab-5aeb-4ea4-8058-73ba9d009f50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T07:23:01.483Z", + "completed":"2016-10-11T07:23:01.483Z", + "new_balance":"5803.08", + "value":"-2.59" + } + }, + { + "id":"58ea2989-8130-44a5-9572-fb08d82c7e51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T10:56:19.068Z", + "completed":"2016-10-11T10:56:19.068Z", + "new_balance":"5802.12", + "value":"-0.96" + } + }, + { + "id":"6ff7004f-cd7f-4549-90c5-6ee2825cdd44", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:32:33.579Z", + "completed":"2016-10-11T13:32:33.579Z", + "new_balance":"5795.37", + "value":"-6.75" + } + }, + { + "id":"3bd07479-6edc-4b22-b7d5-327a3b351e7f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T07:02:45.159Z", + "completed":"2016-10-21T07:02:45.159Z", + "new_balance":"5790.22", + "value":"-5.15" + } + }, + { + "id":"55898569-626d-4afa-8091-8a6efbecc7d9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T03:02:48.418Z", + "completed":"2016-10-23T03:02:48.418Z", + "new_balance":"5788.80", + "value":"-1.42" + } + }, + { + "id":"4d1f2494-9e26-43b3-aedd-80c9fb007531", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T03:17:24.834Z", + "completed":"2016-10-29T03:17:24.834Z", + "new_balance":"5894.43", + "value":"105.63" + } + }, + { + "id":"5f2c8295-e335-480d-980b-95554c6ef1cf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T06:06:13.666Z", + "completed":"2016-10-29T06:06:13.666Z", + "new_balance":"5889.62", + "value":"-4.81" + } + }, + { + "id":"50309099-ce2e-497d-9f6f-8f42a91c8938", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T20:55:13.966Z", + "completed":"2016-10-29T20:55:13.966Z", + "new_balance":"5886.18", + "value":"-3.44" + } + }, + { + "id":"ac6687ba-c0de-4f8d-b93f-9367567d0100", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T21:14:15.980Z", + "completed":"2016-10-30T21:14:15.980Z", + "new_balance":"5881.91", + "value":"-4.27" + } + }, + { + "id":"e7d97305-6c56-4eb5-bae9-d67ae3259fb2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T00:21:06.205Z", + "completed":"2016-11-02T00:21:06.205Z", + "new_balance":"5875.51", + "value":"-6.40" + } + }, + { + "id":"8636c19b-46ae-4ff0-8128-534d263e761c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T00:59:17.919Z", + "completed":"2016-11-02T00:59:17.919Z", + "new_balance":"5873.05", + "value":"-2.46" + } + }, + { + "id":"9d321091-2bc1-4559-beb6-1eb104ab6ee3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:16:02.619Z", + "completed":"2016-11-02T12:16:02.619Z", + "new_balance":"5865.86", + "value":"-7.19" + } + }, + { + "id":"51aa2e4f-6970-4b78-abdc-a16b25425ce0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T21:31:52.701Z", + "completed":"2016-11-02T21:31:52.701Z", + "new_balance":"5807.63", + "value":"-58.23" + } + }, + { + "id":"2f468515-84d7-4dc8-844e-05b76101c987", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T20:24:59.997Z", + "completed":"2016-11-06T20:24:59.997Z", + "new_balance":"5803.21", + "value":"-4.42" + } + }, + { + "id":"24979aee-0c4d-4dd1-9d0f-4597bd684330", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T00:36:35.745Z", + "completed":"2016-11-07T00:36:35.745Z", + "new_balance":"5801.81", + "value":"-1.40" + } + }, + { + "id":"e5463158-c420-4061-bcee-0974f6ab30ba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T01:46:54.457Z", + "completed":"2016-11-07T01:46:54.457Z", + "new_balance":"5799.49", + "value":"-2.32" + } + }, + { + "id":"1703daed-819b-470c-9828-3d3fbca7c10e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T11:21:21.106Z", + "completed":"2016-11-07T11:21:21.106Z", + "new_balance":"5796.46", + "value":"-3.03" + } + }, + { + "id":"ce9d9e07-99dc-4c04-9b0d-960ba6f44160", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T13:11:15.344Z", + "completed":"2016-11-07T13:11:15.344Z", + "new_balance":"5791.97", + "value":"-4.49" + } + }, + { + "id":"842ad70a-712c-4481-bf12-7c4de48be835", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:25:38.285Z", + "completed":"2016-11-08T07:25:38.285Z", + "new_balance":"5787.73", + "value":"-4.24" + } + }, + { + "id":"6a6589bd-c8c9-41de-a874-1a1fbe106fea", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T17:19:08.026Z", + "completed":"2016-11-09T17:19:08.026Z", + "new_balance":"5784.29", + "value":"-3.44" + } + }, + { + "id":"80280700-bb00-42aa-8397-078fd2cf19ad", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T14:57:25.645Z", + "completed":"2016-11-13T14:57:25.645Z", + "new_balance":"5779.14", + "value":"-5.15" + } + }, + { + "id":"debf61a0-9a82-4227-ad40-da5b617fd0bb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:47:35.775Z", + "completed":"2016-11-26T01:47:35.775Z", + "new_balance":"5773.99", + "value":"-5.15" + } + }, + { + "id":"3fcadc17-9ff8-4894-808f-dce9a8dbc040", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T16:18:05.401Z", + "completed":"2016-11-26T16:18:05.401Z", + "new_balance":"5772.59", + "value":"-1.40" + } + }, + { + "id":"ad23d7b5-0258-460c-8e4c-ecd8fb6d3795", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T09:51:33.235Z", + "completed":"2016-11-27T09:51:33.235Z", + "new_balance":"5770.57", + "value":"-2.02" + } + }, + { + "id":"22eb09aa-e8d4-4327-91a7-c3764807981a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T10:08:51.127Z", + "completed":"2016-11-27T10:08:51.127Z", + "new_balance":"5765.76", + "value":"-4.81" + } + }, + { + "id":"9abc9136-2017-411a-a762-daffe2b76fab", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T01:25:13.260Z", + "completed":"2016-11-30T01:25:13.260Z", + "new_balance":"5761.49", + "value":"-4.27" + } + }, + { + "id":"7d7b7a64-6004-427c-8df5-74bae7835108", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T07:22:07.864Z", + "completed":"2016-11-30T07:22:07.864Z", + "new_balance":"5758.05", + "value":"-3.44" + } + }, + { + "id":"2e93c735-a77a-4af6-b466-59bbc267c06b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T17:11:11.327Z", + "completed":"2016-11-30T17:11:11.327Z", + "new_balance":"5863.68", + "value":"105.63" + } + }, + { + "id":"6a6f99f5-3cba-494a-adc8-7e043c76bf7c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T02:43:27.089Z", + "completed":"2016-12-01T02:43:27.089Z", + "new_balance":"5805.45", + "value":"-58.23" + } + }, + { + "id":"4cbbfeaa-8045-46ba-9510-8090f7766927", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T03:04:01.314Z", + "completed":"2016-12-01T03:04:01.314Z", + "new_balance":"5803.58", + "value":"-1.87" + } + }, + { + "id":"cd9d1277-72c7-4590-aa78-7bc510568fc9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T05:04:35.236Z", + "completed":"2016-12-01T05:04:35.236Z", + "new_balance":"5800.14", + "value":"-3.44" + } + }, + { + "id":"82d845cc-c6c0-4ca7-8e62-290b9014b80e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T05:53:17.586Z", + "completed":"2016-12-01T05:53:17.586Z", + "new_balance":"5795.25", + "value":"-4.89" + } + }, + { + "id":"a7e7f34b-69ba-4511-9e51-8958d257a212", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T11:46:40.044Z", + "completed":"2016-12-01T11:46:40.044Z", + "new_balance":"5790.10", + "value":"-5.15" + } + }, + { + "id":"f408787c-d5d7-490d-b6ed-e1d4c83f1b23", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T13:06:26.028Z", + "completed":"2016-12-01T13:06:26.028Z", + "new_balance":"5783.70", + "value":"-6.40" + } + }, + { + "id":"34a60af1-ebb6-41a2-a118-54a0db605b06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T14:27:41.947Z", + "completed":"2016-12-01T14:27:41.947Z", + "new_balance":"5781.24", + "value":"-2.46" + } + }, + { + "id":"d58fd3ff-7e89-48d3-979a-c34ec805b4f2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T14:51:21.160Z", + "completed":"2016-12-01T14:51:21.160Z", + "new_balance":"5776.09", + "value":"-5.15" + } + }, + { + "id":"a617afcb-dd20-43c1-a153-851eb3c7c88a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T15:36:54.542Z", + "completed":"2016-12-01T15:36:54.542Z", + "new_balance":"5768.90", + "value":"-7.19" + } + }, + { + "id":"52a1c0ac-a329-4750-a2a8-2ce119420d93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T07:02:40.970Z", + "completed":"2016-12-02T07:02:40.970Z", + "new_balance":"5761.98", + "value":"-6.92" + } + }, + { + "id":"d6d3a965-7674-4ad0-ae2f-23ac2fe91946", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T08:18:31.267Z", + "completed":"2016-12-02T08:18:31.267Z", + "new_balance":"5760.74", + "value":"-1.24" + } + }, + { + "id":"3d9fa412-a3df-409b-80f5-c2788e279e24", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T15:37:32.357Z", + "completed":"2016-12-02T15:37:32.357Z", + "new_balance":"5759.16", + "value":"-1.58" + } + }, + { + "id":"f4229736-3806-440a-99c4-106c953c21f6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:11:47.319Z", + "completed":"2016-12-04T12:11:47.319Z", + "new_balance":"5757.02", + "value":"-2.14" + } + }, + { + "id":"d0272379-cb22-4bac-83eb-8b7577541321", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T12:41:23.754Z", + "completed":"2016-12-04T12:41:23.754Z", + "new_balance":"5752.75", + "value":"-4.27" + } + }, + { + "id":"e3fd0081-df32-4b0e-b5aa-c9c5d0aeec19", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T20:21:47.369Z", + "completed":"2016-12-04T20:21:47.369Z", + "new_balance":"5748.06", + "value":"-4.69" + } + }, + { + "id":"c98196f8-495c-447a-af4f-fc023752394a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T08:11:21.365Z", + "completed":"2016-12-05T08:11:21.365Z", + "new_balance":"5746.07", + "value":"-1.99" + } + }, + { + "id":"48d1c862-f549-46a4-8412-d0bba9be3dd4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T23:58:21.499Z", + "completed":"2016-12-05T23:58:21.499Z", + "new_balance":"5741.65", + "value":"-4.42" + } + }, + { + "id":"e4238273-103f-43d3-9daa-816c27e02073", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T16:17:53.323Z", + "completed":"2016-12-18T16:17:53.323Z", + "new_balance":"5736.50", + "value":"-5.15" + } + }, + { + "id":"f8bd39df-6ec1-418f-b56a-80c3fb2d0dd5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T04:05:42.066Z", + "completed":"2016-12-30T04:05:42.066Z", + "new_balance":"5733.39", + "value":"-3.11" + } + }, + { + "id":"74a82f0e-9bf7-412b-be58-0344b15642c7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T08:16:47.117Z", + "completed":"2016-12-30T08:16:47.117Z", + "new_balance":"5839.02", + "value":"105.63" + } + }, + { + "id":"f66b3660-9971-4a7d-a9a4-8ce9f345bf18", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T18:42:01.108Z", + "completed":"2016-12-30T18:42:01.108Z", + "new_balance":"5835.58", + "value":"-3.44" + } + }, + { + "id":"e8ec50ba-e915-4162-96ef-f1047ce70857", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T22:32:26.514Z", + "completed":"2016-12-30T22:32:26.514Z", + "new_balance":"5831.31", + "value":"-4.27" + } + }, + { + "id":"6f5ba1b3-2322-450c-bcc7-7808df226c68", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T02:25:30.582Z", + "completed":"2017-01-01T02:25:30.582Z", + "new_balance":"5824.91", + "value":"-6.40" + } + }, + { + "id":"a94abf32-2100-46c7-b717-3febcba63d87", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T23:40:46.581Z", + "completed":"2017-01-01T23:40:46.581Z", + "new_balance":"5818.51", + "value":"-6.40" + } + }, + { + "id":"86b2f5ff-8cda-4731-87f5-de1248d630ce", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T00:37:23.629Z", + "completed":"2017-01-03T00:37:23.629Z", + "new_balance":"5816.05", + "value":"-2.46" + } + }, + { + "id":"03b70e6f-33d7-4251-879b-7c0f98daf0f2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T13:05:50.429Z", + "completed":"2017-01-03T13:05:50.429Z", + "new_balance":"5808.86", + "value":"-7.19" + } + }, + { + "id":"41fafd65-40fc-4d4f-9064-a6d6289892d4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T16:44:14.598Z", + "completed":"2017-01-03T16:44:14.598Z", + "new_balance":"5750.63", + "value":"-58.23" + } + }, + { + "id":"6028b805-ee3a-4b47-b100-0642dcca2beb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T19:08:37.525Z", + "completed":"2017-01-03T19:08:37.525Z", + "new_balance":"5747.19", + "value":"-3.44" + } + }, + { + "id":"c6825279-af19-49aa-8f8c-aebde16e9992", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T00:44:07.104Z", + "completed":"2017-01-05T00:44:07.104Z", + "new_balance":"5742.04", + "value":"-5.15" + } + }, + { + "id":"e3b91125-f81c-4138-997a-51a87210d046", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:21:42.658Z", + "completed":"2017-01-05T15:21:42.658Z", + "new_balance":"5737.62", + "value":"-4.42" + } + }, + { + "id":"14ec2cf9-7e78-4470-819b-6b2add04f174", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:57:23.783Z", + "completed":"2017-01-05T15:57:23.783Z", + "new_balance":"5736.47", + "value":"-1.15" + } + }, + { + "id":"8a7baae4-0919-4ba2-a275-966c6113351a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T02:13:51.019Z", + "completed":"2017-01-06T02:13:51.019Z", + "new_balance":"5734.15", + "value":"-2.32" + } + }, + { + "id":"cbde119b-85b7-4baa-88de-189fe7a67596", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:35:18.428Z", + "completed":"2017-01-06T06:35:18.428Z", + "new_balance":"5730.48", + "value":"-3.67" + } + }, + { + "id":"8260d800-792a-484d-a405-757f3ee532a5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T23:33:19.103Z", + "completed":"2017-01-07T23:33:19.103Z", + "new_balance":"5726.01", + "value":"-4.47" + } + }, + { + "id":"491a2f45-9c0d-453e-bba3-3d05b7eb79fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T02:06:31.204Z", + "completed":"2017-01-10T02:06:31.204Z", + "new_balance":"5723.63", + "value":"-2.38" + } + }, + { + "id":"e1d6a425-14e8-4db1-be4e-8cd3db3ff77e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T06:43:03.133Z", + "completed":"2017-01-10T06:43:03.133Z", + "new_balance":"5718.48", + "value":"-5.15" + } + }, + { + "id":"713ac0b5-cccc-48b3-92c9-a0708e27f93b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T01:42:15.911Z", + "completed":"2017-01-12T01:42:15.911Z", + "new_balance":"5716.02", + "value":"-2.46" + } + }, + { + "id":"882cdcc3-885f-4403-af6d-7ebd2074ea34", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T17:53:37.056Z", + "completed":"2017-01-12T17:53:37.056Z", + "new_balance":"5711.55", + "value":"-4.47" + } + }, + { + "id":"c392c97f-12f0-42c6-aa7f-fd597126470c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:55:05.771Z", + "completed":"2017-01-12T23:55:05.771Z", + "new_balance":"5708.82", + "value":"-2.73" + } + }, + { + "id":"c06677d9-7a40-4cfe-b32d-8a298e10a479", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T11:17:01.550Z", + "completed":"2017-01-15T11:17:01.550Z", + "new_balance":"5706.19", + "value":"-2.63" + } + }, + { + "id":"875857b6-a177-45d6-967a-16569fa13220", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T00:19:30.116Z", + "completed":"2017-01-16T00:19:30.116Z", + "new_balance":"5701.04", + "value":"-5.15" + } + }, + { + "id":"90ed8ef0-4596-487e-8915-ee2737a7708f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T05:41:26.655Z", + "completed":"2017-01-16T05:41:26.655Z", + "new_balance":"5700.08", + "value":"-0.96" + } + }, + { + "id":"1c0bed69-9fa7-4633-9f3e-f194c64b86f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T05:55:35.238Z", + "completed":"2017-01-17T05:55:35.238Z", + "new_balance":"5693.33", + "value":"-6.75" + } + }, + { + "id":"b4ad7f69-6f4b-4a66-bff7-6274a5bae36d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T15:02:39.626Z", + "completed":"2017-01-17T15:02:39.626Z", + "new_balance":"5690.74", + "value":"-2.59" + } + }, + { + "id":"b16e0e59-05fe-48ce-bd80-2fa213fedf6b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T14:56:44.724Z", + "completed":"2017-01-19T14:56:44.724Z", + "new_balance":"5688.32", + "value":"-2.42" + } + }, + { + "id":"3daf049f-8c28-4300-bf52-4f392e68f5be", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T02:01:35.188Z", + "completed":"2017-01-20T02:01:35.188Z", + "new_balance":"5683.17", + "value":"-5.15" + } + }, + { + "id":"6a0fd237-a5dd-4d29-bf6f-2d18e3ab6aa2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T05:26:07.427Z", + "completed":"2017-01-23T05:26:07.427Z", + "new_balance":"5681.75", + "value":"-1.42" + } + }, + { + "id":"2b4ae52e-8915-49f7-9d21-eaadea57c75b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T17:32:38.958Z", + "completed":"2017-01-26T17:32:38.958Z", + "new_balance":"5676.94", + "value":"-4.81" + } + }, + { + "id":"3d9e2b6f-2e98-4420-9571-4ffac4d33a1d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T20:24:27.280Z", + "completed":"2017-01-27T20:24:27.280Z", + "new_balance":"5782.57", + "value":"105.63" + } + }, + { + "id":"f9540035-20ab-4a24-a3b4-b452e436b4e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T13:04:15.706Z", + "completed":"2017-01-28T13:04:15.706Z", + "new_balance":"5779.13", + "value":"-3.44" + } + }, + { + "id":"fec1f123-e485-419b-9a11-1e7c5774816b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T03:16:12.161Z", + "completed":"2017-01-30T03:16:12.161Z", + "new_balance":"5774.86", + "value":"-4.27" + } + }, + { + "id":"a674d06b-d536-4143-b436-e75312836d6a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T01:33:36.921Z", + "completed":"2017-02-03T01:33:36.921Z", + "new_balance":"5716.63", + "value":"-58.23" + } + }, + { + "id":"b4bf1063-3da7-40ea-8224-84f7c45ba5aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T06:39:22.357Z", + "completed":"2017-02-03T06:39:22.357Z", + "new_balance":"5709.44", + "value":"-7.19" + } + }, + { + "id":"763a6706-ef2b-4be2-afef-2fa1e74078b7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T09:18:08.345Z", + "completed":"2017-02-03T09:18:08.345Z", + "new_balance":"5706.00", + "value":"-3.44" + } + }, + { + "id":"9ff35cda-e81b-4e61-9cf2-e0fc9c01ddfd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T14:08:51.987Z", + "completed":"2017-02-03T14:08:51.987Z", + "new_balance":"5703.54", + "value":"-2.46" + } + }, + { + "id":"a2eaf6aa-fc37-4b5a-891e-3de3627265c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T06:58:05.939Z", + "completed":"2017-02-08T06:58:05.939Z", + "new_balance":"5698.39", + "value":"-5.15" + } + }, + { + "id":"3bbec6f3-71f1-48e2-8317-540c16ae4cbc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T22:44:29.514Z", + "completed":"2017-02-08T22:44:29.514Z", + "new_balance":"5693.97", + "value":"-4.42" + } + }, + { + "id":"819637d4-0ede-4e81-9247-fce190e051f1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T12:31:26.467Z", + "completed":"2017-02-11T12:31:26.467Z", + "new_balance":"5695.08", + "value":"1.11" + } + }, + { + "id":"49ca13eb-94c8-45cd-aec0-58c1944d594b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T18:02:41.818Z", + "completed":"2017-02-13T18:02:41.818Z", + "new_balance":"5692.76", + "value":"-2.32" + } + }, + { + "id":"0f2d2687-4c4c-4e8c-be54-19daa8c53b9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T02:57:14.189Z", + "completed":"2017-02-14T02:57:14.189Z", + "new_balance":"5689.73", + "value":"-3.03" + } + }, + { + "id":"0341caa2-1f4f-4eaa-9678-ae3f8725fe88", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T16:55:37.525Z", + "completed":"2017-02-17T16:55:37.525Z", + "new_balance":"5688.33", + "value":"-1.40" + } + }, + { + "id":"38361e0d-b668-46c1-97cb-d3056ca91313", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T09:35:27.433Z", + "completed":"2017-02-21T09:35:27.433Z", + "new_balance":"5683.84", + "value":"-4.49" + } + }, + { + "id":"1db8b18f-fd6b-4c1e-9f48-7eb0979ea845", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T08:07:03.581Z", + "completed":"2017-02-23T08:07:03.581Z", + "new_balance":"5678.69", + "value":"-5.15" + } + }, + { + "id":"7d35c065-d7f0-4728-9805-e6a39445e79b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T15:24:05.463Z", + "completed":"2017-02-23T15:24:05.463Z", + "new_balance":"5674.45", + "value":"-4.24" + } + }, + { + "id":"2b79a3cc-8715-403c-9be7-93050011588e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T05:42:21.785Z", + "completed":"2017-02-24T05:42:21.785Z", + "new_balance":"5673.05", + "value":"-1.40" + } + }, + { + "id":"30d2854c-2937-478e-9a51-cb1f2228595a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T03:21:54.120Z", + "completed":"2017-02-27T03:21:54.120Z", + "new_balance":"5671.03", + "value":"-2.02" + } + }, + { + "id":"52d7b178-82b0-4bea-8baa-6075984a5601", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T19:01:44.273Z", + "completed":"2017-02-27T19:01:44.273Z", + "new_balance":"5666.22", + "value":"-4.81" + } + }, + { + "id":"bebdebb8-be87-4d92-9552-027aa554ae77", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T21:35:00.046Z", + "completed":"2017-02-27T21:35:00.046Z", + "new_balance":"5771.85", + "value":"105.63" + } + }, + { + "id":"3385b1c7-9651-4e24-8fd7-dcd72ae5f248", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T03:35:27.727Z", + "completed":"2017-02-28T03:35:27.727Z", + "new_balance":"5768.41", + "value":"-3.44" + } + }, + { + "id":"04d5957d-9706-4fba-8afa-bae89a3a4347", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T10:13:43.964Z", + "completed":"2017-02-28T10:13:43.964Z", + "new_balance":"5764.14", + "value":"-4.27" + } + }, + { + "id":"7eb8c06f-cfb4-4df8-857e-d08b38018b1e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T12:01:54.817Z", + "completed":"2017-03-01T12:01:54.817Z", + "new_balance":"5757.74", + "value":"-6.40" + } + }, + { + "id":"be006c2d-e04d-41c5-970d-27ee26fcb267", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T05:56:23.147Z", + "completed":"2017-03-03T05:56:23.147Z", + "new_balance":"5755.28", + "value":"-2.46" + } + }, + { + "id":"420e2c4b-f522-4da8-89d0-d23360911465", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T09:57:11.885Z", + "completed":"2017-03-03T09:57:11.885Z", + "new_balance":"5748.09", + "value":"-7.19" + } + }, + { + "id":"8b541708-3f63-46be-b976-7dce7f43ad08", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T21:33:29.824Z", + "completed":"2017-03-03T21:33:29.824Z", + "new_balance":"5689.86", + "value":"-58.23" + } + }, + { + "id":"1dfaaa51-064d-4465-9d54-b48375e18fbf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T23:13:05.965Z", + "completed":"2017-03-03T23:13:05.965Z", + "new_balance":"5686.42", + "value":"-3.44" + } + }, + { + "id":"f3a1121e-b3d9-4200-b249-c9fceac89975", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T03:57:20.467Z", + "completed":"2017-03-05T03:57:20.467Z", + "new_balance":"5681.53", + "value":"-4.89" + } + }, + { + "id":"bd091475-6867-4644-befa-672c7caf3f9f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T21:12:21.664Z", + "completed":"2017-03-05T21:12:21.664Z", + "new_balance":"5676.38", + "value":"-5.15" + } + }, + { + "id":"fc3a3885-ea33-4952-b6a1-2eebc355e351", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T10:30:17.507Z", + "completed":"2017-03-07T10:30:17.507Z", + "new_balance":"5674.51", + "value":"-1.87" + } + }, + { + "id":"6918689d-d8df-4339-95b3-0b0fc26bc0a2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T12:43:21.986Z", + "completed":"2017-03-09T12:43:21.986Z", + "new_balance":"5669.36", + "value":"-5.15" + } + }, + { + "id":"b90c518b-c755-4814-974f-c79c3925dd18", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:51:55.389Z", + "completed":"2017-03-11T19:51:55.389Z", + "new_balance":"5667.78", + "value":"-1.58" + } + }, + { + "id":"10bed036-3119-4bf4-88f7-4606ec0517a6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T07:54:54.352Z", + "completed":"2017-03-13T07:54:54.352Z", + "new_balance":"5660.86", + "value":"-6.92" + } + }, + { + "id":"da837667-bb3f-4057-b266-e003877021e9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:33:57.443Z", + "completed":"2017-03-14T08:33:57.443Z", + "new_balance":"5659.62", + "value":"-1.24" + } + }, + { + "id":"c6bc414d-3f00-4b8f-b31f-70c2bcb785e4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T21:41:58.701Z", + "completed":"2017-03-14T21:41:58.701Z", + "new_balance":"5667.91", + "value":"8.29" + } + }, + { + "id":"0e9c88e6-3f6c-4d85-9747-d69430c3f261", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T00:08:35.708Z", + "completed":"2017-03-15T00:08:35.708Z", + "new_balance":"5663.64", + "value":"-4.27" + } + }, + { + "id":"f4b193e1-2a90-472d-8ed5-dc2534fd441b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T05:56:55.453Z", + "completed":"2017-03-26T05:56:55.453Z", + "new_balance":"5661.65", + "value":"-1.99" + } + }, + { + "id":"91599758-2563-44bf-b25f-fbd844ca4c54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T14:36:15.013Z", + "completed":"2017-03-26T14:36:15.013Z", + "new_balance":"5659.51", + "value":"-2.14" + } + }, + { + "id":"0c1b89c4-b3ce-45a7-9186-06cab0219a7f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T19:18:05.915Z", + "completed":"2017-03-26T19:18:05.915Z", + "new_balance":"5654.82", + "value":"-4.69" + } + }, + { + "id":"d6e42ab1-476a-46ac-9eb9-f693f2b299c0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T07:22:09.356Z", + "completed":"2017-03-27T07:22:09.356Z", + "new_balance":"5649.67", + "value":"-5.15" + } + }, + { + "id":"77be63ea-2cee-4fd5-af92-3a1b116bd6d3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T14:26:16.456Z", + "completed":"2017-03-27T14:26:16.456Z", + "new_balance":"5755.30", + "value":"105.63" + } + }, + { + "id":"7ec291a1-6399-4519-8955-0d7dc5c10846", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T20:17:50.871Z", + "completed":"2017-03-27T20:17:50.871Z", + "new_balance":"5750.88", + "value":"-4.42" + } + }, + { + "id":"621486f6-b7f0-413a-ac8c-187f2bf51961", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T06:09:03.095Z", + "completed":"2017-03-28T06:09:03.095Z", + "new_balance":"5747.44", + "value":"-3.44" + } + }, + { + "id":"caf69241-fe1d-4d75-bab7-204946af7f3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T20:07:03.745Z", + "completed":"2017-03-30T20:07:03.745Z", + "new_balance":"5743.17", + "value":"-4.27" + } + }, + { + "id":"acff5343-6f56-4631-9a1a-bc53e6103916", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T06:53:41.818Z", + "completed":"2017-04-01T06:53:41.818Z", + "new_balance":"5740.71", + "value":"-2.46" + } + }, + { + "id":"3477800c-8faf-47f9-9074-3b782c8806f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:09:42.762Z", + "completed":"2017-04-01T10:09:42.762Z", + "new_balance":"5737.27", + "value":"-3.44" + } + }, + { + "id":"98783bbf-5cf9-4118-9ba4-781b9e03a8b4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T14:05:48.777Z", + "completed":"2017-04-01T14:05:48.777Z", + "new_balance":"5679.04", + "value":"-58.23" + } + }, + { + "id":"0a677d83-c62b-4f39-9075-dda0531c892f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T20:16:24.680Z", + "completed":"2017-04-01T20:16:24.680Z", + "new_balance":"5671.85", + "value":"-7.19" + } + }, + { + "id":"9649b5eb-f33c-4a66-96a6-999f056f9659", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:02:12.975Z", + "completed":"2017-04-01T22:02:12.975Z", + "new_balance":"5665.45", + "value":"-6.40" + } + }, + { + "id":"6df6da13-e836-49fe-a050-964edfcd734d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T01:04:17.778Z", + "completed":"2017-04-05T01:04:17.778Z", + "new_balance":"5660.30", + "value":"-5.15" + } + }, + { + "id":"50063dec-b4a2-4d91-9967-19fa47960f3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T08:07:39.443Z", + "completed":"2017-04-05T08:07:39.443Z", + "new_balance":"5659.15", + "value":"-1.15" + } + }, + { + "id":"075f463b-8576-4d52-84c1-1263bf760bf5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:41:55.773Z", + "completed":"2017-04-05T17:41:55.773Z", + "new_balance":"5654.73", + "value":"-4.42" + } + }, + { + "id":"19847751-0c42-452d-b884-135fa9d862db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T17:59:56.709Z", + "completed":"2017-04-05T17:59:56.709Z", + "new_balance":"5651.06", + "value":"-3.67" + } + }, + { + "id":"dfa2cb6b-fadd-4340-b20e-d47ffa2aee6f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T07:10:59.190Z", + "completed":"2017-04-07T07:10:59.190Z", + "new_balance":"5648.74", + "value":"-2.32" + } + }, + { + "id":"1a0f1933-f21b-4bd5-aa2d-e338a85cca06", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T06:23:15.844Z", + "completed":"2017-04-09T06:23:15.844Z", + "new_balance":"5643.59", + "value":"-5.15" + } + }, + { + "id":"423565f0-ebcb-4731-a0c1-5e9626e9baa3", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T21:33:10.270Z", + "completed":"2017-04-09T21:33:10.270Z", + "new_balance":"5641.21", + "value":"-2.38" + } + }, + { + "id":"966c549e-3818-4d3f-965e-d0f4a9a3cf70", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T05:00:00.042Z", + "completed":"2017-04-10T05:00:00.042Z", + "new_balance":"5638.75", + "value":"-2.46" + } + }, + { + "id":"56141d69-9b4c-4e49-81c7-a36e1d518661", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T13:23:59.600Z", + "completed":"2017-04-10T13:23:59.600Z", + "new_balance":"5636.12", + "value":"-2.63" + } + }, + { + "id":"b0bcdad9-3a86-4c88-bffd-7aee16f404aa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T16:53:09.955Z", + "completed":"2017-04-10T16:53:09.955Z", + "new_balance":"5631.65", + "value":"-4.47" + } + }, + { + "id":"9ae842fb-3ecd-417b-a096-4c83798a7c30", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T22:47:05.010Z", + "completed":"2017-04-10T22:47:05.010Z", + "new_balance":"5628.92", + "value":"-2.73" + } + }, + { + "id":"96ced8ab-1bf0-417e-a5c0-a13c33fe0ad6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T01:50:39.068Z", + "completed":"2017-04-11T01:50:39.068Z", + "new_balance":"5622.17", + "value":"-6.75" + } + }, + { + "id":"fe133951-4d73-4c55-b6af-e331b5b0fe54", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T07:28:09.125Z", + "completed":"2017-04-11T07:28:09.125Z", + "new_balance":"5619.75", + "value":"-2.42" + } + }, + { + "id":"50087850-0178-4ad4-ac8d-396f7c173361", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T12:48:12.178Z", + "completed":"2017-04-11T12:48:12.178Z", + "new_balance":"5617.16", + "value":"-2.59" + } + }, + { + "id":"5cbe63ee-3246-467b-b916-56f6e3b745e4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T17:25:32.985Z", + "completed":"2017-04-11T17:25:32.985Z", + "new_balance":"5612.01", + "value":"-5.15" + } + }, + { + "id":"c774460b-f0c0-484e-a977-dabd374bfc59", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T19:13:37.303Z", + "completed":"2017-04-11T19:13:37.303Z", + "new_balance":"5611.05", + "value":"-0.96" + } + }, + { + "id":"afbdd9d7-7191-48da-b969-0a5bbcd55952", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:29:39.806Z", + "completed":"2017-04-21T23:29:39.806Z", + "new_balance":"5605.90", + "value":"-5.15" + } + }, + { + "id":"655f8f73-65ae-4667-ab05-bd65e09a385b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:27:09.167Z", + "completed":"2017-04-23T07:27:09.167Z", + "new_balance":"5604.48", + "value":"-1.42" + } + }, + { + "id":"2f737133-291a-4889-a3a3-b7aec712b5e8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T04:34:30.472Z", + "completed":"2017-04-29T04:34:30.472Z", + "new_balance":"5599.67", + "value":"-4.81" + } + }, + { + "id":"9c9bb002-955d-4c6e-87a6-2222bc714970", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T12:42:30.782Z", + "completed":"2017-04-29T12:42:30.782Z", + "new_balance":"5596.23", + "value":"-3.44" + } + }, + { + "id":"0c6a0e3c-db3e-442e-9286-4d8d8ee81892", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T23:34:48.337Z", + "completed":"2017-04-29T23:34:48.337Z", + "new_balance":"5701.86", + "value":"105.63" + } + }, + { + "id":"722bcd4a-4080-407d-806a-274203e33879", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T22:29:28.061Z", + "completed":"2017-04-30T22:29:28.061Z", + "new_balance":"5697.59", + "value":"-4.27" + } + }, + { + "id":"7caa0086-5914-449c-8812-9783c2e94b72", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T00:39:52.776Z", + "completed":"2017-05-02T00:39:52.776Z", + "new_balance":"5690.40", + "value":"-7.19" + } + }, + { + "id":"9b875593-e7ac-44c6-8e20-4acd71c74398", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T00:59:18.280Z", + "completed":"2017-05-02T00:59:18.280Z", + "new_balance":"5684.00", + "value":"-6.40" + } + }, + { + "id":"8c4a4dd2-930f-476e-8d56-0be6fff59f82", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T12:46:29.771Z", + "completed":"2017-05-02T12:46:29.771Z", + "new_balance":"5681.54", + "value":"-2.46" + } + }, + { + "id":"cc2c4f27-9fb0-45e9-bd02-1047f20a1b00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T15:51:11.019Z", + "completed":"2017-05-02T15:51:11.019Z", + "new_balance":"5623.31", + "value":"-58.23" + } + }, + { + "id":"701b8f64-f012-45d4-9b93-bf96a52e7a6c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T08:17:16.636Z", + "completed":"2017-05-06T08:17:16.636Z", + "new_balance":"5618.89", + "value":"-4.42" + } + }, + { + "id":"bb39afbd-07d0-4d08-861f-344fae966249", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:33:17.319Z", + "completed":"2017-05-07T02:33:17.319Z", + "new_balance":"5616.57", + "value":"-2.32" + } + }, + { + "id":"0d39fcca-933b-493e-bdce-9f731cccca93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T08:57:03.039Z", + "completed":"2017-05-07T08:57:03.039Z", + "new_balance":"5612.08", + "value":"-4.49" + } + }, + { + "id":"11a2005a-9540-4330-bbdf-05de1d6aba81", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T13:32:55.091Z", + "completed":"2017-05-07T13:32:55.091Z", + "new_balance":"5609.05", + "value":"-3.03" + } + }, + { + "id":"017fed95-fffc-452f-a37b-3e0c834539c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T21:47:06.815Z", + "completed":"2017-05-07T21:47:06.815Z", + "new_balance":"5607.65", + "value":"-1.40" + } + }, + { + "id":"076aedd5-e1ae-4b38-961d-0baa24906af8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T11:03:16.223Z", + "completed":"2017-05-08T11:03:16.223Z", + "new_balance":"5603.41", + "value":"-4.24" + } + }, + { + "id":"67f696b0-169b-4c61-931a-9074c333a932", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T22:33:12.075Z", + "completed":"2017-05-09T22:33:12.075Z", + "new_balance":"5599.97", + "value":"-3.44" + } + }, + { + "id":"811e1df7-8ecf-4007-ba91-c55820c195fd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T15:10:22.598Z", + "completed":"2017-05-13T15:10:22.598Z", + "new_balance":"5594.82", + "value":"-5.15" + } + }, + { + "id":"3a8050da-389a-4cbe-a806-878be7de2ef2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T14:29:18.995Z", + "completed":"2017-05-26T14:29:18.995Z", + "new_balance":"5589.67", + "value":"-5.15" + } + }, + { + "id":"068d3948-f9a8-4da8-b66b-129f6e53ccdb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T15:56:48.444Z", + "completed":"2017-05-26T15:56:48.444Z", + "new_balance":"5588.27", + "value":"-1.40" + } + }, + { + "id":"78180854-a41d-405f-b020-72c34c1069d0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:31:38.432Z", + "completed":"2017-05-27T02:31:38.432Z", + "new_balance":"5583.46", + "value":"-4.81" + } + }, + { + "id":"c8a0a971-ffb4-42e9-a01d-c06641289774", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T22:11:44.865Z", + "completed":"2017-05-27T22:11:44.865Z", + "new_balance":"5581.44", + "value":"-2.02" + } + }, + { + "id":"41a6f6b4-314c-44b7-9a7d-356995d9aa38", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T00:59:56.557Z", + "completed":"2017-05-30T00:59:56.557Z", + "new_balance":"5577.17", + "value":"-4.27" + } + }, + { + "id":"33deaeca-5d48-4da5-9654-7488caca7490", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T10:13:57.934Z", + "completed":"2017-05-30T10:13:57.934Z", + "new_balance":"5682.80", + "value":"105.63" + } + }, + { + "id":"951e70cc-9cba-4651-aac1-69c3a2dba8f5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T18:16:49.838Z", + "completed":"2017-05-30T18:16:49.838Z", + "new_balance":"5679.36", + "value":"-3.44" + } + }, + { + "id":"12533e52-6dca-4a51-a50e-1327cfe3fadc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:46:40.432Z", + "completed":"2017-06-01T02:46:40.432Z", + "new_balance":"5672.96", + "value":"-6.40" + } + }, + { + "id":"0547407b-bcec-45ad-88f4-c72db7779adf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:18:12.048Z", + "completed":"2017-06-01T07:18:12.048Z", + "new_balance":"5667.81", + "value":"-5.15" + } + }, + { + "id":"f60f0ab6-a6f0-4399-8a32-4893bcdc1444", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T09:38:33.624Z", + "completed":"2017-06-01T09:38:33.624Z", + "new_balance":"5664.37", + "value":"-3.44" + } + }, + { + "id":"1fb981a0-fbe5-4572-9560-6da51115db8e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T09:55:26.268Z", + "completed":"2017-06-01T09:55:26.268Z", + "new_balance":"5659.22", + "value":"-5.15" + } + }, + { + "id":"10d7dd07-8c0e-4a68-a275-c6373dc6a225", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T12:54:46.172Z", + "completed":"2017-06-01T12:54:46.172Z", + "new_balance":"5652.03", + "value":"-7.19" + } + }, + { + "id":"1899edf2-6d4a-4b93-a400-202ef05eeac9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T17:29:02.430Z", + "completed":"2017-06-01T17:29:02.430Z", + "new_balance":"5650.16", + "value":"-1.87" + } + }, + { + "id":"9685cba9-b8ba-4b47-9e4b-d95381fc9cc9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T17:40:09.533Z", + "completed":"2017-06-01T17:40:09.533Z", + "new_balance":"5591.93", + "value":"-58.23" + } + }, + { + "id":"b35fd522-aee3-4599-9431-92387ab501a4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T19:11:13.849Z", + "completed":"2017-06-01T19:11:13.849Z", + "new_balance":"5589.47", + "value":"-2.46" + } + }, + { + "id":"8925950e-1c58-42a2-bf8f-17ba2654ebfd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T19:32:53.630Z", + "completed":"2017-06-01T19:32:53.630Z", + "new_balance":"5584.58", + "value":"-4.89" + } + }, + { + "id":"2725f6b0-926b-419e-ba13-9e1d3f0e49b7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T18:58:40.401Z", + "completed":"2017-06-02T18:58:40.401Z", + "new_balance":"5583.34", + "value":"-1.24" + } + }, + { + "id":"0e525293-2351-492f-902a-a87c2506ca8c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T19:49:16.357Z", + "completed":"2017-06-02T19:49:16.357Z", + "new_balance":"5581.76", + "value":"-1.58" + } + }, + { + "id":"414d0cfa-fa6f-492f-ad51-56074da97dae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:33:02.476Z", + "completed":"2017-06-02T23:33:02.476Z", + "new_balance":"5574.84", + "value":"-6.92" + } + }, + { + "id":"e2aa79a8-db3b-455e-b3fd-0160fa0d97d4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T00:43:14.975Z", + "completed":"2017-06-04T00:43:14.975Z", + "new_balance":"5570.15", + "value":"-4.69" + } + }, + { + "id":"64f60385-3495-4560-9667-936db05fabba", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:36:39.651Z", + "completed":"2017-06-04T07:36:39.651Z", + "new_balance":"5568.01", + "value":"-2.14" + } + }, + { + "id":"05731b1f-0834-4afe-ac91-353fc61deb11", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T11:43:32.489Z", + "completed":"2017-06-04T11:43:32.489Z", + "new_balance":"5563.74", + "value":"-4.27" + } + }, + { + "id":"aff3cec7-9bda-4e76-881b-2956f4520667", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T00:20:49.704Z", + "completed":"2017-06-05T00:20:49.704Z", + "new_balance":"5559.32", + "value":"-4.42" + } + }, + { + "id":"9417c598-ec73-45e4-a769-f30b283272b2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T14:10:51.548Z", + "completed":"2017-06-05T14:10:51.548Z", + "new_balance":"5557.33", + "value":"-1.99" + } + }, + { + "id":"25cee4dc-3cf0-4617-bedb-838d1f5519fe", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T14:56:12.978Z", + "completed":"2017-06-18T14:56:12.978Z", + "new_balance":"5552.18", + "value":"-5.15" + } + }, + { + "id":"ec6953df-ddb8-4557-aba1-8afc059cd2be", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T00:25:20.640Z", + "completed":"2017-06-30T00:25:20.640Z", + "new_balance":"5548.74", + "value":"-3.44" + } + }, + { + "id":"9dc666cb-71b0-402e-8ac7-b2b5b6d36e21", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T10:48:52.498Z", + "completed":"2017-06-30T10:48:52.498Z", + "new_balance":"5654.37", + "value":"105.63" + } + }, + { + "id":"ad60ba36-d2fb-43b1-975b-1a68b3edefc5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T12:00:19.569Z", + "completed":"2017-06-30T12:00:19.569Z", + "new_balance":"5651.26", + "value":"-3.11" + } + }, + { + "id":"0e1057fd-b151-434b-a0e4-c94dcb912f19", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T14:01:48.045Z", + "completed":"2017-06-30T14:01:48.045Z", + "new_balance":"5646.99", + "value":"-4.27" + } + }, + { + "id":"22ecc7e5-85ac-42ba-b1b3-2c828fbe3ffa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T20:42:38.139Z", + "completed":"2017-07-01T20:42:38.139Z", + "new_balance":"5640.59", + "value":"-6.40" + } + }, + { + "id":"8a0c9436-69bd-4322-844e-4328e2a34ed4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T00:14:51.508Z", + "completed":"2017-07-03T00:14:51.508Z", + "new_balance":"5633.40", + "value":"-7.19" + } + }, + { + "id":"893e4d16-52c8-49f4-a57f-c05ad308aa0e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T10:19:15.442Z", + "completed":"2017-07-03T10:19:15.442Z", + "new_balance":"5630.94", + "value":"-2.46" + } + }, + { + "id":"f05c7ff8-c374-46c4-8694-240f47256ee6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T13:10:00.901Z", + "completed":"2017-07-03T13:10:00.901Z", + "new_balance":"5627.50", + "value":"-3.44" + } + }, + { + "id":"7676519f-4894-44ef-8f99-256b8f185810", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T15:10:28.863Z", + "completed":"2017-07-03T15:10:28.863Z", + "new_balance":"5569.27", + "value":"-58.23" + } + }, + { + "id":"80d5b629-b098-4684-8917-4dfa797658f8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T11:52:13.063Z", + "completed":"2017-07-05T11:52:13.063Z", + "new_balance":"5564.85", + "value":"-4.42" + } + }, + { + "id":"72ab6601-7268-458c-936b-3cd69e7b6b6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T14:14:59.858Z", + "completed":"2017-07-05T14:14:59.858Z", + "new_balance":"5559.70", + "value":"-5.15" + } + }, + { + "id":"9761ac25-b2d9-4a20-977e-d313723eaead", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T18:37:55.381Z", + "completed":"2017-07-05T18:37:55.381Z", + "new_balance":"5558.55", + "value":"-1.15" + } + }, + { + "id":"8e3dfa5f-f876-479d-baa3-4d367f1d63e5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T15:54:16.573Z", + "completed":"2017-07-06T15:54:16.573Z", + "new_balance":"5554.88", + "value":"-3.67" + } + }, + { + "id":"f817eb21-8832-4f1d-8a51-bd36cd0cb58d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T16:41:39.297Z", + "completed":"2017-07-06T16:41:39.297Z", + "new_balance":"5552.56", + "value":"-2.32" + } + }, + { + "id":"6dd8aeb2-15b3-44a9-809c-c6ba2694a42d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T11:30:41.329Z", + "completed":"2017-07-07T11:30:41.329Z", + "new_balance":"5548.09", + "value":"-4.47" + } + }, + { + "id":"edfb7709-0381-48dc-9c03-c6cb847e1ea6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T12:07:14.194Z", + "completed":"2017-07-10T12:07:14.194Z", + "new_balance":"5542.94", + "value":"-5.15" + } + }, + { + "id":"0dd0525d-9d60-4444-a0cd-19effb8a733e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T21:27:00.630Z", + "completed":"2017-07-10T21:27:00.630Z", + "new_balance":"5540.56", + "value":"-2.38" + } + }, + { + "id":"9c51c690-3042-4133-bebe-1e2c38d4ab60", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T01:35:05.908Z", + "completed":"2017-07-12T01:35:05.908Z", + "new_balance":"5537.83", + "value":"-2.73" + } + }, + { + "id":"e9304553-b01a-46e8-9c31-00e9aa283107", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T03:19:18.652Z", + "completed":"2017-07-12T03:19:18.652Z", + "new_balance":"5533.36", + "value":"-4.47" + } + }, + { + "id":"b33fb902-6412-48a1-9752-f3f5ebfd4b63", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T07:22:06.794Z", + "completed":"2017-07-12T07:22:06.794Z", + "new_balance":"5530.90", + "value":"-2.46" + } + }, + { + "id":"9479b457-59d1-4ae3-bc3f-8eab857db478", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T17:46:17.187Z", + "completed":"2017-07-15T17:46:17.187Z", + "new_balance":"5528.27", + "value":"-2.63" + } + }, + { + "id":"b4ad6c7a-dfa3-4e54-8bf9-69d96395b2d7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T09:30:57.828Z", + "completed":"2017-07-16T09:30:57.828Z", + "new_balance":"5523.12", + "value":"-5.15" + } + }, + { + "id":"27c18412-5be8-445b-9d0c-424784101685", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T11:20:20.897Z", + "completed":"2017-07-16T11:20:20.897Z", + "new_balance":"5522.16", + "value":"-0.96" + } + }, + { + "id":"49cd07c0-46ad-4712-a5ee-312fec4f0053", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T19:35:46.958Z", + "completed":"2017-07-17T19:35:46.958Z", + "new_balance":"5515.41", + "value":"-6.75" + } + }, + { + "id":"98127414-daf3-4a2c-8246-e00c42232cbf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T21:20:42.160Z", + "completed":"2017-07-17T21:20:42.160Z", + "new_balance":"5512.82", + "value":"-2.59" + } + }, + { + "id":"78eb295f-c66e-4dfc-a7af-2b0dffacd3cf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T16:30:56.115Z", + "completed":"2017-07-19T16:30:56.115Z", + "new_balance":"5510.40", + "value":"-2.42" + } + }, + { + "id":"9953fe3c-6440-4370-b2ff-89e9f12e6ee1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T03:59:45.957Z", + "completed":"2017-07-20T03:59:45.957Z", + "new_balance":"5505.25", + "value":"-5.15" + } + }, + { + "id":"5d30bddc-6eff-4d31-b012-97b00c2fb52c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T05:01:31.247Z", + "completed":"2017-07-23T05:01:31.247Z", + "new_balance":"5503.83", + "value":"-1.42" + } + }, + { + "id":"2ea1f9c5-b2f6-48ed-9963-807598dcfdaf", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T21:15:06.685Z", + "completed":"2017-07-26T21:15:06.685Z", + "new_balance":"5499.02", + "value":"-4.81" + } + }, + { + "id":"d221986f-25ae-474a-b734-47269d14cba8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T09:33:17.299Z", + "completed":"2017-07-27T09:33:17.299Z", + "new_balance":"5604.65", + "value":"105.63" + } + }, + { + "id":"d75d6ead-d034-41e2-a256-da7992926d89", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T04:14:52.700Z", + "completed":"2017-07-28T04:14:52.700Z", + "new_balance":"5601.21", + "value":"-3.44" + } + }, + { + "id":"d1da19fd-5ed0-45dd-a421-0c93da94ea5f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T05:46:55.480Z", + "completed":"2017-07-30T05:46:55.480Z", + "new_balance":"5596.94", + "value":"-4.27" + } + }, + { + "id":"d6864cd7-805c-414d-9369-5d2091c0f88f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T22:03:59.287Z", + "completed":"2017-08-01T22:03:59.287Z", + "new_balance":"5590.54", + "value":"-6.40" + } + }, + { + "id":"f6780a58-f8ef-437e-a07c-5bfdab1429cb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T04:06:38.117Z", + "completed":"2017-08-03T04:06:38.117Z", + "new_balance":"5583.35", + "value":"-7.19" + } + }, + { + "id":"d647dfdb-f529-40d4-8509-835d7ce8f10e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T13:37:41.649Z", + "completed":"2017-08-03T13:37:41.649Z", + "new_balance":"5525.12", + "value":"-58.23" + } + }, + { + "id":"560383b1-6aa7-4a4d-8c59-4f180f3552c9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T14:12:17.277Z", + "completed":"2017-08-03T14:12:17.277Z", + "new_balance":"5521.68", + "value":"-3.44" + } + }, + { + "id":"196a9a86-28d9-477a-94ee-7497b6d03a13", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T16:00:26.741Z", + "completed":"2017-08-03T16:00:26.741Z", + "new_balance":"5519.22", + "value":"-2.46" + } + }, + { + "id":"09943675-934a-4e24-9743-effe2592d4e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T04:30:25.644Z", + "completed":"2017-08-08T04:30:25.644Z", + "new_balance":"5514.07", + "value":"-5.15" + } + }, + { + "id":"b9a879f7-ced3-485f-b7a9-b5141fa9c603", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T13:08:18.514Z", + "completed":"2017-08-08T13:08:18.514Z", + "new_balance":"5509.65", + "value":"-4.42" + } + }, + { + "id":"23829df2-3843-4d21-bf2a-ecc11334264d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T19:20:51.539Z", + "completed":"2017-08-11T19:20:51.539Z", + "new_balance":"5510.76", + "value":"1.11" + } + }, + { + "id":"8163620c-4e89-4996-a4a9-058a3b841eec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T09:25:39.125Z", + "completed":"2017-08-13T09:25:39.125Z", + "new_balance":"5508.44", + "value":"-2.32" + } + }, + { + "id":"5ac82509-f952-437c-97d9-4f542cd70dd0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T15:53:18.151Z", + "completed":"2017-08-14T15:53:18.151Z", + "new_balance":"5505.41", + "value":"-3.03" + } + }, + { + "id":"a8cab6c6-4f7c-4527-8a84-d267b4e7054d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T23:33:02.315Z", + "completed":"2017-08-17T23:33:02.315Z", + "new_balance":"5504.01", + "value":"-1.40" + } + }, + { + "id":"3a437dfb-3980-4614-8bb6-04255fd949b2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T19:46:18.401Z", + "completed":"2017-08-21T19:46:18.401Z", + "new_balance":"5499.52", + "value":"-4.49" + } + }, + { + "id":"5e237b12-69aa-4896-a3dc-b9f34e096501", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T14:34:19.935Z", + "completed":"2017-08-23T14:34:19.935Z", + "new_balance":"5494.37", + "value":"-5.15" + } + }, + { + "id":"e05d2ce9-9309-43f5-9aba-5df04ffd8256", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T19:09:35.020Z", + "completed":"2017-08-23T19:09:35.020Z", + "new_balance":"5490.13", + "value":"-4.24" + } + }, + { + "id":"67f9e8ee-4422-4040-a27e-d97084f12868", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T04:06:58.762Z", + "completed":"2017-08-24T04:06:58.762Z", + "new_balance":"5488.73", + "value":"-1.40" + } + }, + { + "id":"08aee059-4961-4abc-8e7c-b322d2c7c624", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T03:38:43.913Z", + "completed":"2017-08-27T03:38:43.913Z", + "new_balance":"5594.36", + "value":"105.63" + } + }, + { + "id":"2e4e8b12-243d-46af-aace-fa9355849f51", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T09:37:34.202Z", + "completed":"2017-08-27T09:37:34.202Z", + "new_balance":"5589.55", + "value":"-4.81" + } + }, + { + "id":"c2e85900-2015-420b-9bde-25d65b9be5a0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T15:41:58.592Z", + "completed":"2017-08-27T15:41:58.592Z", + "new_balance":"5587.53", + "value":"-2.02" + } + }, + { + "id":"c21bfa9e-3b34-44df-9de4-bedac2933aa7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:06:30.100Z", + "completed":"2017-08-28T19:06:30.100Z", + "new_balance":"5584.09", + "value":"-3.44" + } + }, + { + "id":"b36ae7de-e4bc-400b-ba53-7cc262556ae9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T12:28:41.892Z", + "completed":"2017-08-30T12:28:41.892Z", + "new_balance":"5579.82", + "value":"-4.27" + } + }, + { + "id":"53bf4c64-85fb-4c66-93f8-f9edbced39e0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:58:17.964Z", + "completed":"2017-09-01T14:58:17.964Z", + "new_balance":"5573.42", + "value":"-6.40" + } + }, + { + "id":"9afcd83f-9b4a-4664-8095-1ae0fce3ede0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T05:39:22.177Z", + "completed":"2017-09-03T05:39:22.177Z", + "new_balance":"5515.19", + "value":"-58.23" + } + }, + { + "id":"f85c4e4f-46d0-4aa1-b35c-1b2c47849b6e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T11:51:41.085Z", + "completed":"2017-09-03T11:51:41.085Z", + "new_balance":"5511.75", + "value":"-3.44" + } + }, + { + "id":"5f62198e-f877-481b-9e10-4d16b33b88d5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T13:52:44.720Z", + "completed":"2017-09-03T13:52:44.720Z", + "new_balance":"5509.29", + "value":"-2.46" + } + }, + { + "id":"a36b3821-f39c-41da-afcf-cefc41f72ad1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T14:36:57.881Z", + "completed":"2017-09-03T14:36:57.881Z", + "new_balance":"5502.10", + "value":"-7.19" + } + }, + { + "id":"4925aec3-9dc1-4ef2-99cc-c19b98978e5c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T08:35:17.341Z", + "completed":"2017-09-05T08:35:17.341Z", + "new_balance":"5496.95", + "value":"-5.15" + } + }, + { + "id":"9ac829a7-e043-4296-8741-7dfc9a92cf73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T20:56:50.660Z", + "completed":"2017-09-05T20:56:50.660Z", + "new_balance":"5492.06", + "value":"-4.89" + } + }, + { + "id":"99c2690c-5c69-4a70-9974-1d727104cda2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T10:03:46.694Z", + "completed":"2017-09-07T10:03:46.694Z", + "new_balance":"5490.19", + "value":"-1.87" + } + }, + { + "id":"176cdc54-6162-4049-a61c-6ba31afb6731", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T12:10:28.703Z", + "completed":"2017-09-09T12:10:28.703Z", + "new_balance":"5485.04", + "value":"-5.15" + } + }, + { + "id":"8866d80e-232b-4226-a24d-17bc431936f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T20:43:04.336Z", + "completed":"2017-09-11T20:43:04.336Z", + "new_balance":"5483.46", + "value":"-1.58" + } + }, + { + "id":"28673ff7-f81a-48b2-bcd9-b607c1040c24", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T23:36:46.587Z", + "completed":"2017-09-13T23:36:46.587Z", + "new_balance":"5476.54", + "value":"-6.92" + } + }, + { + "id":"98171a74-adbf-4c3d-8766-96762bc79ddd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:07:58.913Z", + "completed":"2017-09-14T05:07:58.913Z", + "new_balance":"5475.30", + "value":"-1.24" + } + }, + { + "id":"7a3e120d-558e-43b7-bb32-d0e53547c4a6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T19:20:05.449Z", + "completed":"2017-09-14T19:20:05.449Z", + "new_balance":"5483.59", + "value":"8.29" + } + }, + { + "id":"47997942-a43d-415f-92b6-ec24c300c7f7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T22:42:06.567Z", + "completed":"2017-09-15T22:42:06.567Z", + "new_balance":"5479.32", + "value":"-4.27" + } + }, + { + "id":"b746c7c4-5d72-4615-8df6-b481c535a052", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T03:49:42.594Z", + "completed":"2017-09-26T03:49:42.594Z", + "new_balance":"5477.18", + "value":"-2.14" + } + }, + { + "id":"ea30a1c5-579e-44d0-bc99-76fb403d9304", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:03:02.011Z", + "completed":"2017-09-26T07:03:02.011Z", + "new_balance":"5475.19", + "value":"-1.99" + } + }, + { + "id":"d3048750-70b4-4cd4-84e2-bc47156c5fd9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T08:35:33.017Z", + "completed":"2017-09-26T08:35:33.017Z", + "new_balance":"5470.50", + "value":"-4.69" + } + }, + { + "id":"40648676-6385-4c41-a482-34ef6505088a", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T18:31:19.340Z", + "completed":"2017-09-27T18:31:19.340Z", + "new_balance":"5465.35", + "value":"-5.15" + } + }, + { + "id":"41f560c6-4df6-4db7-b4fe-424d99ca81db", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T21:18:14.653Z", + "completed":"2017-09-27T21:18:14.653Z", + "new_balance":"5460.93", + "value":"-4.42" + } + }, + { + "id":"c3a21353-5ce5-4fa3-bc8d-6d8196428e43", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T21:19:15.014Z", + "completed":"2017-09-27T21:19:15.014Z", + "new_balance":"5566.56", + "value":"105.63" + } + }, + { + "id":"dfb81f14-2cc1-46fd-ac4f-5dbe572d5f5b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T01:10:27.731Z", + "completed":"2017-09-28T01:10:27.731Z", + "new_balance":"5563.12", + "value":"-3.44" + } + }, + { + "id":"8df561aa-c4b3-46d9-92ec-c156c0a06465", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T15:08:02.152Z", + "completed":"2017-09-30T15:08:02.152Z", + "new_balance":"5558.85", + "value":"-4.27" + } + }, + { + "id":"56960d0e-5491-449f-b775-c335bd067a39", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T05:47:32.934Z", + "completed":"2017-10-01T05:47:32.934Z", + "new_balance":"5555.41", + "value":"-3.44" + } + }, + { + "id":"34e017a8-5ac4-4e82-912e-82db953fe7ed", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T06:21:42.379Z", + "completed":"2017-10-01T06:21:42.379Z", + "new_balance":"5497.18", + "value":"-58.23" + } + }, + { + "id":"7db2c86c-b71f-47eb-a532-f53f3c6fb9e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T06:35:36.784Z", + "completed":"2017-10-01T06:35:36.784Z", + "new_balance":"5489.99", + "value":"-7.19" + } + }, + { + "id":"b287d825-b785-464a-910d-ed5cb383949b", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T09:19:47.983Z", + "completed":"2017-10-01T09:19:47.983Z", + "new_balance":"5483.59", + "value":"-6.40" + } + }, + { + "id":"62b10b75-1775-430e-9538-32d6fd788f31", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T21:20:15.271Z", + "completed":"2017-10-01T21:20:15.271Z", + "new_balance":"5481.13", + "value":"-2.46" + } + }, + { + "id":"e6ffcded-1822-4b3e-8b62-977529bbc30c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T09:18:31.636Z", + "completed":"2017-10-05T09:18:31.636Z", + "new_balance":"5475.98", + "value":"-5.15" + } + }, + { + "id":"b3f895c1-c6c9-4b6b-92ac-8e0c3255fbc0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T09:47:46.914Z", + "completed":"2017-10-05T09:47:46.914Z", + "new_balance":"5472.31", + "value":"-3.67" + } + }, + { + "id":"ee0798e8-985d-41a3-b86e-23d3bd571e03", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T16:33:20.791Z", + "completed":"2017-10-05T16:33:20.791Z", + "new_balance":"5467.89", + "value":"-4.42" + } + }, + { + "id":"7511ad6e-aa58-4553-b7a4-319584762379", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:22:03.894Z", + "completed":"2017-10-05T20:22:03.894Z", + "new_balance":"5466.74", + "value":"-1.15" + } + }, + { + "id":"89661202-1314-436b-a3c3-d5c945f7a3e7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T18:02:12.297Z", + "completed":"2017-10-07T18:02:12.297Z", + "new_balance":"5464.42", + "value":"-2.32" + } + }, + { + "id":"0ab7b659-4cc5-451f-b4b6-fee204be36b5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T00:40:01.675Z", + "completed":"2017-10-09T00:40:01.675Z", + "new_balance":"5459.27", + "value":"-5.15" + } + }, + { + "id":"49007c61-01e7-447a-a2b9-e554e2988d61", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T06:37:01.046Z", + "completed":"2017-10-09T06:37:01.046Z", + "new_balance":"5456.89", + "value":"-2.38" + } + }, + { + "id":"b831ac1b-0658-4985-b14f-bcc6f3787a67", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T06:03:16.494Z", + "completed":"2017-10-10T06:03:16.494Z", + "new_balance":"5452.42", + "value":"-4.47" + } + }, + { + "id":"a572d9f5-3467-4fc0-8cdf-fede31888cb0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T14:06:34.175Z", + "completed":"2017-10-10T14:06:34.175Z", + "new_balance":"5449.96", + "value":"-2.46" + } + }, + { + "id":"b79755cb-88c9-4536-a4cf-ab27255bf8ed", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T18:35:27.879Z", + "completed":"2017-10-10T18:35:27.879Z", + "new_balance":"5447.33", + "value":"-2.63" + } + }, + { + "id":"a2c9f5f7-0b0a-4fac-9151-62ae3d3b5771", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T22:14:09.103Z", + "completed":"2017-10-10T22:14:09.103Z", + "new_balance":"5444.60", + "value":"-2.73" + } + }, + { + "id":"e170906e-8760-4f2d-86ea-d48aaae7f0c5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T00:13:38.741Z", + "completed":"2017-10-11T00:13:38.741Z", + "new_balance":"5437.85", + "value":"-6.75" + } + }, + { + "id":"78b0fbe8-8fd7-47db-93d1-a0b91b6ca15d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T10:11:50.607Z", + "completed":"2017-10-11T10:11:50.607Z", + "new_balance":"5432.70", + "value":"-5.15" + } + }, + { + "id":"e73dbae0-e1f3-46cb-bcb0-45574ac48566", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T10:40:42.208Z", + "completed":"2017-10-11T10:40:42.208Z", + "new_balance":"5430.11", + "value":"-2.59" + } + }, + { + "id":"acc70a9e-ccd1-429a-94dd-4994045e20ec", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T20:22:43.731Z", + "completed":"2017-10-11T20:22:43.731Z", + "new_balance":"5429.15", + "value":"-0.96" + } + }, + { + "id":"b5accb45-a2e5-4445-b7ef-f25ed4a2dda4", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T22:05:52.844Z", + "completed":"2017-10-11T22:05:52.844Z", + "new_balance":"5426.73", + "value":"-2.42" + } + }, + { + "id":"5f485194-b7c4-47fc-a0cd-22f57ada21f0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T15:10:50.528Z", + "completed":"2017-10-21T15:10:50.528Z", + "new_balance":"5421.58", + "value":"-5.15" + } + }, + { + "id":"db17ff76-be42-4535-9622-1f1b060bb8ae", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:40:10.425Z", + "completed":"2017-10-23T05:40:10.425Z", + "new_balance":"5420.16", + "value":"-1.42" + } + }, + { + "id":"cf9071cc-e58c-499a-9015-ac1e8a69675d", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T02:04:09.637Z", + "completed":"2017-10-29T02:04:09.637Z", + "new_balance":"5415.35", + "value":"-4.81" + } + }, + { + "id":"f56e5677-3055-4f04-94a1-c62d953b4ab0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T03:04:13.661Z", + "completed":"2017-10-29T03:04:13.661Z", + "new_balance":"5520.98", + "value":"105.63" + } + }, + { + "id":"5f659516-a1df-455f-9f90-dda3c4d2c1dd", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T04:14:46.763Z", + "completed":"2017-10-29T04:14:46.763Z", + "new_balance":"5517.54", + "value":"-3.44" + } + }, + { + "id":"da63b230-5e4f-4ccc-ab36-e8d8b3715524", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T11:27:13.780Z", + "completed":"2017-10-30T11:27:13.780Z", + "new_balance":"5513.27", + "value":"-4.27" + } + }, + { + "id":"bfcb0033-d448-4781-bf97-86f31e4c8c93", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:37:57.961Z", + "completed":"2017-11-02T14:37:57.961Z", + "new_balance":"5455.04", + "value":"-58.23" + } + }, + { + "id":"f81bef09-83f2-490f-b97e-c443ebbf88c1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T16:34:06.430Z", + "completed":"2017-11-02T16:34:06.430Z", + "new_balance":"5448.64", + "value":"-6.40" + } + }, + { + "id":"05e88bff-417c-42ff-add6-ef2508a63e73", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T18:31:27.001Z", + "completed":"2017-11-02T18:31:27.001Z", + "new_balance":"5446.18", + "value":"-2.46" + } + }, + { + "id":"65e0e198-7ad7-466a-baac-1834ec1dfc50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T22:57:47.137Z", + "completed":"2017-11-02T22:57:47.137Z", + "new_balance":"5438.99", + "value":"-7.19" + } + }, + { + "id":"3d0f9270-1c46-4cf0-9802-5f2aa0f1faeb", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T09:23:20.620Z", + "completed":"2017-11-06T09:23:20.620Z", + "new_balance":"5434.57", + "value":"-4.42" + } + }, + { + "id":"292fa011-07ff-478b-903a-be35796e516f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T09:33:00.333Z", + "completed":"2017-11-07T09:33:00.333Z", + "new_balance":"5430.08", + "value":"-4.49" + } + }, + { + "id":"c68df4d8-6183-4945-8763-f8d1bf6e3d37", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T18:05:49.495Z", + "completed":"2017-11-07T18:05:49.495Z", + "new_balance":"5427.05", + "value":"-3.03" + } + }, + { + "id":"5e9f55b2-f8ac-44ac-9f05-fb577f895ac6", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T23:43:49.337Z", + "completed":"2017-11-07T23:43:49.337Z", + "new_balance":"5425.65", + "value":"-1.40" + } + }, + { + "id":"5aa8b645-8396-4703-8e4f-7671e4481db1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T23:52:43.702Z", + "completed":"2017-11-07T23:52:43.702Z", + "new_balance":"5423.33", + "value":"-2.32" + } + }, + { + "id":"52ce20fd-05b2-4d3e-b41f-b277b4aca8e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T18:41:58.349Z", + "completed":"2017-11-08T18:41:58.349Z", + "new_balance":"5419.09", + "value":"-4.24" + } + }, + { + "id":"98e8d44c-9b77-4301-b7ba-d1c81144123e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T23:49:44.105Z", + "completed":"2017-11-09T23:49:44.105Z", + "new_balance":"5415.65", + "value":"-3.44" + } + }, + { + "id":"5ba34425-48b5-4a79-848e-6674fffb8d60", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T23:39:23.311Z", + "completed":"2017-11-13T23:39:23.311Z", + "new_balance":"5410.50", + "value":"-5.15" + } + }, + { + "id":"33f201d5-4c08-4842-b979-12d9411c14a0", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T13:02:15.761Z", + "completed":"2017-11-26T13:02:15.761Z", + "new_balance":"5409.10", + "value":"-1.40" + } + }, + { + "id":"0e1274dd-014f-4b18-b615-4fd639f17a3f", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T20:23:26.277Z", + "completed":"2017-11-26T20:23:26.277Z", + "new_balance":"5403.95", + "value":"-5.15" + } + }, + { + "id":"fbf0b94e-6429-46ab-af31-37eceb118c7e", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T01:24:29.308Z", + "completed":"2017-11-27T01:24:29.308Z", + "new_balance":"5401.93", + "value":"-2.02" + } + }, + { + "id":"fc693cb9-1a5c-4922-bb95-b814e20cabb7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T02:28:16.741Z", + "completed":"2017-11-27T02:28:16.741Z", + "new_balance":"5397.12", + "value":"-4.81" + } + }, + { + "id":"d952d7e4-12ef-463a-8e81-7011efa5db04", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T11:12:51.486Z", + "completed":"2017-11-30T11:12:51.486Z", + "new_balance":"5502.75", + "value":"105.63" + } + }, + { + "id":"a4136ece-7eb8-424f-a636-8dc3572cf629", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T12:58:51.537Z", + "completed":"2017-11-30T12:58:51.537Z", + "new_balance":"5499.31", + "value":"-3.44" + } + }, + { + "id":"bbfc25e8-952a-4956-b8f4-ed452015dac2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T18:25:30.490Z", + "completed":"2017-11-30T18:25:30.490Z", + "new_balance":"5495.04", + "value":"-4.27" + } + }, + { + "id":"50201c1b-4939-4678-9d64-fa46c0dc2cf5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T02:14:33.140Z", + "completed":"2017-12-01T02:14:33.140Z", + "new_balance":"5492.58", + "value":"-2.46" + } + }, + { + "id":"774fd690-75d3-47bf-a022-c38720a73ab5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T04:52:34.196Z", + "completed":"2017-12-01T04:52:34.196Z", + "new_balance":"5434.35", + "value":"-58.23" + } + }, + { + "id":"d306fde2-e88d-4d9f-941b-9ab531a6d4f9", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T06:41:55.419Z", + "completed":"2017-12-01T06:41:55.419Z", + "new_balance":"5427.95", + "value":"-6.40" + } + }, + { + "id":"1ce80ccf-5c18-4953-9707-e9d1db28f1b1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T09:11:13.584Z", + "completed":"2017-12-01T09:11:13.584Z", + "new_balance":"5422.80", + "value":"-5.15" + } + }, + { + "id":"74257421-256f-4e89-9cfd-d522ce40ef5c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T10:24:57.620Z", + "completed":"2017-12-01T10:24:57.620Z", + "new_balance":"5417.91", + "value":"-4.89" + } + }, + { + "id":"367c3198-510a-475e-a39a-c2806b2c78e1", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T13:48:57.290Z", + "completed":"2017-12-01T13:48:57.290Z", + "new_balance":"5412.76", + "value":"-5.15" + } + }, + { + "id":"f25bdc73-1254-40b8-bf16-ebc592cfc617", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T15:03:50.514Z", + "completed":"2017-12-01T15:03:50.514Z", + "new_balance":"5405.57", + "value":"-7.19" + } + }, + { + "id":"cca1e789-d00b-4149-9ed1-f6a680a988e2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:56:51.547Z", + "completed":"2017-12-01T19:56:51.547Z", + "new_balance":"5402.13", + "value":"-3.44" + } + }, + { + "id":"b911d78b-18c2-417c-9928-44fa12abe3e2", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T20:09:16.426Z", + "completed":"2017-12-01T20:09:16.426Z", + "new_balance":"5400.26", + "value":"-1.87" + } + }, + { + "id":"8c428dfe-50bf-45fd-af8f-266482d2be50", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T04:47:09.775Z", + "completed":"2017-12-02T04:47:09.775Z", + "new_balance":"5393.34", + "value":"-6.92" + } + }, + { + "id":"aa40d30a-0871-4234-8b45-73ef85054b0c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T15:23:07.372Z", + "completed":"2017-12-02T15:23:07.372Z", + "new_balance":"5391.76", + "value":"-1.58" + } + }, + { + "id":"d1501284-e607-4f0d-84d7-84fcd8d04b47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T19:41:13.663Z", + "completed":"2017-12-02T19:41:13.663Z", + "new_balance":"5390.52", + "value":"-1.24" + } + }, + { + "id":"11704fe1-c216-4d52-bf73-fa07330ccf47", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T05:51:04.725Z", + "completed":"2017-12-04T05:51:04.725Z", + "new_balance":"5385.83", + "value":"-4.69" + } + }, + { + "id":"b5e10abd-0fa5-4d0a-b2ef-17e7ae9a83fa", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T18:26:09.885Z", + "completed":"2017-12-04T18:26:09.885Z", + "new_balance":"5381.56", + "value":"-4.27" + } + }, + { + "id":"44008165-5969-4d2c-b261-de09c2b9697c", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:45:22.378Z", + "completed":"2017-12-04T21:45:22.378Z", + "new_balance":"5379.42", + "value":"-2.14" + } + }, + { + "id":"5176f834-b924-4f95-a0da-8f24b7034ee8", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T05:58:52.449Z", + "completed":"2017-12-05T05:58:52.449Z", + "new_balance":"5377.43", + "value":"-1.99" + } + }, + { + "id":"fdb485d8-9353-4242-a88e-122e53b08f00", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T07:31:53.305Z", + "completed":"2017-12-05T07:31:53.305Z", + "new_balance":"5373.01", + "value":"-4.42" + } + }, + { + "id":"4035014c-c6d0-4f45-98a5-e6abad76b7bc", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T04:17:51.982Z", + "completed":"2017-12-18T04:17:51.982Z", + "new_balance":"5367.86", + "value":"-5.15" + } + }, + { + "id":"4d908083-e792-4c15-8441-a0081b960916", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T00:35:50.512Z", + "completed":"2017-12-30T00:35:50.512Z", + "new_balance":"5363.59", + "value":"-4.27" + } + }, + { + "id":"66c454ef-711a-4889-81d9-117f690c2be7", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T00:49:22.555Z", + "completed":"2017-12-30T00:49:22.555Z", + "new_balance":"5360.48", + "value":"-3.11" + } + }, + { + "id":"2b8dd9dc-bb03-48e3-828d-ec8842cacde5", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T02:29:23.021Z", + "completed":"2017-12-30T02:29:23.021Z", + "new_balance":"5357.04", + "value":"-3.44" + } + }, + { + "id":"c44a6f04-230b-471d-b820-fe59230da537", + "this_account":{ + "id":"1ad79f13-a337-4d28-98c4-5fc7fa610e80", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T17:27:46.638Z", + "completed":"2017-12-30T17:27:46.638Z", + "new_balance":"5462.67", + "value":"105.63" + } + }, + { + "id":"507a7afc-7d2a-492b-97c9-13918b61429c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T05:17:43.247Z", + "completed":"2016-01-01T05:17:43.247Z", + "new_balance":"4263.98", + "value":"1680.41" + } + }, + { + "id":"fd113783-5438-4dc6-98df-0efc98890098", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T22:28:32.918Z", + "completed":"2016-01-01T22:28:32.918Z", + "new_balance":"5286.40", + "value":"1022.42" + } + }, + { + "id":"11fe286b-4dc0-4d8b-8ce6-6fa843ad6de8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T12:30:55.742Z", + "completed":"2016-01-02T12:30:55.742Z", + "new_balance":"4878.83", + "value":"-407.57" + } + }, + { + "id":"94a1db51-e521-4653-9df9-de482b7a09ca", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T08:34:13.830Z", + "completed":"2016-01-03T08:34:13.830Z", + "new_balance":"4872.45", + "value":"-6.38" + } + }, + { + "id":"5d05f130-43b3-4ab7-92d8-5e99b3c6570a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T11:44:48.309Z", + "completed":"2016-01-03T11:44:48.309Z", + "new_balance":"4825.65", + "value":"-46.80" + } + }, + { + "id":"e2cbf2ce-8b32-4720-890b-41f0d603dd52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T12:05:38.808Z", + "completed":"2016-01-03T12:05:38.808Z", + "new_balance":"4808.03", + "value":"-17.62" + } + }, + { + "id":"5103d51c-612b-42d6-ac69-14f5e5b0c482", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:31:56.927Z", + "completed":"2016-01-04T18:31:56.927Z", + "new_balance":"4797.12", + "value":"-10.91" + } + }, + { + "id":"cec1ca4d-57fa-4a28-b8c3-96967217a8a9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T16:53:20.339Z", + "completed":"2016-01-05T16:53:20.339Z", + "new_balance":"4790.13", + "value":"-6.99" + } + }, + { + "id":"8cbbf046-9805-4b07-ac16-9aad5b13bd45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T04:54:43.245Z", + "completed":"2016-01-07T04:54:43.245Z", + "new_balance":"4765.20", + "value":"-24.93" + } + }, + { + "id":"f5c10aba-bc4e-46be-ab44-9c589f9264c9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T18:55:24.101Z", + "completed":"2016-01-07T18:55:24.101Z", + "new_balance":"4746.04", + "value":"-19.16" + } + }, + { + "id":"6b7a11f3-70e1-421e-b44c-1bfe7e1aa6da", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T00:40:31.423Z", + "completed":"2016-01-08T00:40:31.423Z", + "new_balance":"4730.03", + "value":"-16.01" + } + }, + { + "id":"729f5efd-f78d-470e-ae9a-0f874ae4a13a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T19:17:57.419Z", + "completed":"2016-01-08T19:17:57.419Z", + "new_balance":"4715.04", + "value":"-14.99" + } + }, + { + "id":"477dfa08-7242-49ad-9f92-60cf284e2e2d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:20:33.544Z", + "completed":"2016-01-09T07:20:33.544Z", + "new_balance":"4685.88", + "value":"-29.16" + } + }, + { + "id":"d03b16e0-e68b-4e83-81f2-05b051046302", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T21:49:24.703Z", + "completed":"2016-01-09T21:49:24.703Z", + "new_balance":"4640.82", + "value":"-45.06" + } + }, + { + "id":"f8d0bed1-3e57-46c8-8270-7d85e9e21dd4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T01:15:44.160Z", + "completed":"2016-01-10T01:15:44.160Z", + "new_balance":"4596.34", + "value":"-44.48" + } + }, + { + "id":"d65d81ee-3ded-478c-add7-9f7ac6932979", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T13:36:47.398Z", + "completed":"2016-01-10T13:36:47.398Z", + "new_balance":"4491.62", + "value":"-104.72" + } + }, + { + "id":"60c7a105-eec5-43fd-a10f-d9e332ca07b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:53:16.034Z", + "completed":"2016-01-11T02:53:16.034Z", + "new_balance":"4485.85", + "value":"-5.77" + } + }, + { + "id":"735767d9-5b37-4654-a3db-c35ef03610fb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T03:17:12.189Z", + "completed":"2016-01-11T03:17:12.189Z", + "new_balance":"4576.73", + "value":"90.88" + } + }, + { + "id":"047c8a3a-3640-4405-b856-d26cc377a396", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T21:35:37.826Z", + "completed":"2016-01-11T21:35:37.826Z", + "new_balance":"4497.65", + "value":"-79.08" + } + }, + { + "id":"a1e5959b-55af-4ada-a234-351c1f5f14c7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:36:53.862Z", + "completed":"2016-01-12T18:36:53.862Z", + "new_balance":"4487.58", + "value":"-10.07" + } + }, + { + "id":"bffd1849-3560-4a7e-a807-d58a99399f4b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T13:04:21.947Z", + "completed":"2016-01-15T13:04:21.947Z", + "new_balance":"4462.18", + "value":"-25.40" + } + }, + { + "id":"10d45d66-77ff-4834-b14a-3e1119ebf10b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T12:48:42.649Z", + "completed":"2016-01-16T12:48:42.649Z", + "new_balance":"4431.37", + "value":"-30.81" + } + }, + { + "id":"84a6da3c-7a8a-411a-bd76-86e4c4dd4dd0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T06:24:46.660Z", + "completed":"2016-01-17T06:24:46.660Z", + "new_balance":"4416.54", + "value":"-14.83" + } + }, + { + "id":"3775544d-d56f-4196-a0f4-83a0b8d792aa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T21:35:29.668Z", + "completed":"2016-01-20T21:35:29.668Z", + "new_balance":"4409.55", + "value":"-6.99" + } + }, + { + "id":"73205623-131a-4263-a67e-de9fbf91613d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:43:02.742Z", + "completed":"2016-01-21T04:43:02.742Z", + "new_balance":"4360.77", + "value":"-48.78" + } + }, + { + "id":"5417d5dc-a82a-4c81-8c6a-7e906cf9447a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T15:37:56.469Z", + "completed":"2016-01-23T15:37:56.469Z", + "new_balance":"4162.86", + "value":"-197.91" + } + }, + { + "id":"c783a2e6-f789-41f3-9b1e-536c17a69286", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T00:38:47.082Z", + "completed":"2016-02-01T00:38:47.082Z", + "new_balance":"5185.28", + "value":"1022.42" + } + }, + { + "id":"a7466a8b-bdc6-49e6-a67d-d3e38aff9c5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T14:18:11.002Z", + "completed":"2016-02-03T14:18:11.002Z", + "new_balance":"4777.71", + "value":"-407.57" + } + }, + { + "id":"38ec5cea-6e16-4663-a2b8-4dc475824522", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T23:25:02.005Z", + "completed":"2016-02-03T23:25:02.005Z", + "new_balance":"4614.23", + "value":"-163.48" + } + }, + { + "id":"1cdd15db-d2a8-4322-9998-ba248ef89836", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T17:03:50.334Z", + "completed":"2016-02-04T17:03:50.334Z", + "new_balance":"4599.72", + "value":"-14.51" + } + }, + { + "id":"f50fcdc4-1813-4c3a-93af-ab8eb71cf4f3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T08:07:56.708Z", + "completed":"2016-02-05T08:07:56.708Z", + "new_balance":"4593.23", + "value":"-6.49" + } + }, + { + "id":"edc7dc44-a825-4e3b-ac01-ce911ba21729", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T08:36:47.886Z", + "completed":"2016-02-06T08:36:47.886Z", + "new_balance":"4568.43", + "value":"-24.80" + } + }, + { + "id":"b87e8933-394b-4122-9c5a-196ca90d6b2b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T17:45:06.128Z", + "completed":"2016-02-07T17:45:06.128Z", + "new_balance":"4463.71", + "value":"-104.72" + } + }, + { + "id":"c442b707-5cc2-4ae9-b388-afdbff5860af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T19:20:56.693Z", + "completed":"2016-02-07T19:20:56.693Z", + "new_balance":"4422.36", + "value":"-41.35" + } + }, + { + "id":"fb4ff9c8-42f3-43b6-b9cb-c46891865e5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T22:37:15.362Z", + "completed":"2016-02-07T22:37:15.362Z", + "new_balance":"4393.20", + "value":"-29.16" + } + }, + { + "id":"ef9e614e-74b2-4fc9-ada4-d7f09dff4bf1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:28:20.100Z", + "completed":"2016-02-08T17:28:20.100Z", + "new_balance":"4342.64", + "value":"-50.56" + } + }, + { + "id":"32eac90b-c8e2-4cbb-a781-e52be2865859", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T13:16:46.013Z", + "completed":"2016-02-09T13:16:46.013Z", + "new_balance":"4316.84", + "value":"-25.80" + } + }, + { + "id":"5044360a-3f60-4c76-bc91-7ad98680c711", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T06:44:25.894Z", + "completed":"2016-02-10T06:44:25.894Z", + "new_balance":"4309.85", + "value":"-6.99" + } + }, + { + "id":"8a21ed1b-39b1-4cd1-9a6b-cfb023e65425", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T03:44:13.250Z", + "completed":"2016-02-12T03:44:13.250Z", + "new_balance":"4274.66", + "value":"-35.19" + } + }, + { + "id":"7a1a8ea1-247f-447c-af1c-368807f24dce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T00:58:14.600Z", + "completed":"2016-02-14T00:58:14.600Z", + "new_balance":"4245.50", + "value":"-29.16" + } + }, + { + "id":"f41c1335-02ef-488d-888b-191124c3ab7e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T04:17:42.786Z", + "completed":"2016-02-16T04:17:42.786Z", + "new_balance":"4199.99", + "value":"-45.51" + } + }, + { + "id":"adfbac7f-d48a-4b91-9418-d901a3189f69", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T09:05:58.422Z", + "completed":"2016-02-16T09:05:58.422Z", + "new_balance":"4194.22", + "value":"-5.77" + } + }, + { + "id":"f2480f0a-4491-4e82-8f3d-7f1ca514b51b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T20:46:34.421Z", + "completed":"2016-02-18T20:46:34.421Z", + "new_balance":"4185.82", + "value":"-8.40" + } + }, + { + "id":"76450bb3-eb8c-4bf1-a8b6-dcc3f08a13d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T03:09:01.249Z", + "completed":"2016-02-21T03:09:01.249Z", + "new_balance":"4137.04", + "value":"-48.78" + } + }, + { + "id":"16d7df13-7932-4c52-bc11-10fdee364366", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T18:35:57.226Z", + "completed":"2016-02-21T18:35:57.226Z", + "new_balance":"4251.18", + "value":"114.14" + } + }, + { + "id":"1b364394-cd8c-4d5a-b681-7ada7321147b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T05:25:12.619Z", + "completed":"2016-02-27T05:25:12.619Z", + "new_balance":"4053.27", + "value":"-197.91" + } + }, + { + "id":"8f3d59d1-5577-4c16-a99a-f95610992249", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T22:22:36.554Z", + "completed":"2016-03-01T22:22:36.554Z", + "new_balance":"5075.69", + "value":"1022.42" + } + }, + { + "id":"dc01b3f9-d9d2-45b2-b676-d75617e50fdb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T22:13:48.077Z", + "completed":"2016-03-03T22:13:48.077Z", + "new_balance":"4668.12", + "value":"-407.57" + } + }, + { + "id":"64e007b4-24d0-431b-a078-aab19ffd6baa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T03:09:31.591Z", + "completed":"2016-03-04T03:09:31.591Z", + "new_balance":"4637.31", + "value":"-30.81" + } + }, + { + "id":"13bf3c90-9fc1-42bf-8d75-af08efd57562", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T04:55:47.806Z", + "completed":"2016-03-04T04:55:47.806Z", + "new_balance":"4605.86", + "value":"-31.45" + } + }, + { + "id":"eb080a7f-d186-4543-ab1c-4bd859226074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T09:01:27.585Z", + "completed":"2016-03-04T09:01:27.585Z", + "new_balance":"4560.35", + "value":"-45.51" + } + }, + { + "id":"ec7502ad-d1f7-4e95-a031-9c86b51fc4ac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T22:53:00.681Z", + "completed":"2016-03-04T22:53:00.681Z", + "new_balance":"4543.35", + "value":"-17.00" + } + }, + { + "id":"91a77ca1-b3a2-4c7e-9d5a-715aa64563af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T08:35:34.084Z", + "completed":"2016-03-05T08:35:34.084Z", + "new_balance":"4537.58", + "value":"-5.77" + } + }, + { + "id":"844e973b-afc7-4c1d-84f1-f5e746ef6849", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T10:09:56.362Z", + "completed":"2016-03-05T10:09:56.362Z", + "new_balance":"4432.86", + "value":"-104.72" + } + }, + { + "id":"852e5860-d70e-423d-b2e1-aa35506a003b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T15:32:37.450Z", + "completed":"2016-03-05T15:32:37.450Z", + "new_balance":"4418.80", + "value":"-14.06" + } + }, + { + "id":"abc98eeb-0fcc-4570-a787-2fc162ee9525", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T23:53:42.502Z", + "completed":"2016-03-05T23:53:42.502Z", + "new_balance":"4373.26", + "value":"-45.54" + } + }, + { + "id":"5c8131e3-867a-4164-8a95-4104dbe7866e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T14:25:35.221Z", + "completed":"2016-03-06T14:25:35.221Z", + "new_balance":"4291.47", + "value":"-81.79" + } + }, + { + "id":"e0d8b513-1036-401e-a1e9-bb2828aae660", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T16:08:07.333Z", + "completed":"2016-03-06T16:08:07.333Z", + "new_balance":"4192.35", + "value":"-99.12" + } + }, + { + "id":"f36126aa-9149-42d9-b199-8b481917de80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T17:31:39.847Z", + "completed":"2016-03-07T17:31:39.847Z", + "new_balance":"4184.74", + "value":"-7.61" + } + }, + { + "id":"11195f2e-dccd-4bed-849c-c7be377fec77", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T20:15:05.952Z", + "completed":"2016-03-07T20:15:05.952Z", + "new_balance":"4178.97", + "value":"-5.77" + } + }, + { + "id":"5fd12972-76fd-4b06-ac94-36047bb72de0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T04:45:30.943Z", + "completed":"2016-03-08T04:45:30.943Z", + "new_balance":"4170.45", + "value":"-8.52" + } + }, + { + "id":"eef5081e-b961-4fbe-badd-1dc272c07f70", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T13:25:00.859Z", + "completed":"2016-03-08T13:25:00.859Z", + "new_balance":"4162.84", + "value":"-7.61" + } + }, + { + "id":"a5b8fd63-76f5-49f0-ab99-767d748d56d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T01:26:26.760Z", + "completed":"2016-03-10T01:26:26.760Z", + "new_balance":"4130.50", + "value":"-32.34" + } + }, + { + "id":"08e90deb-aaf7-4b1b-8208-326b7474f73c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T11:39:52.758Z", + "completed":"2016-03-11T11:39:52.758Z", + "new_balance":"4124.73", + "value":"-5.77" + } + }, + { + "id":"3128443a-56ff-48c8-a8fe-b26e9e7b0dac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T19:43:46.121Z", + "completed":"2016-03-11T19:43:46.121Z", + "new_balance":"4112.36", + "value":"-12.37" + } + }, + { + "id":"88a9d7e2-d044-4f06-bb0b-68cb74f0faaa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T21:48:28.067Z", + "completed":"2016-03-11T21:48:28.067Z", + "new_balance":"4088.06", + "value":"-24.30" + } + }, + { + "id":"5a3aa986-5ead-4286-9a72-05ef28f97d7c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T00:53:39.352Z", + "completed":"2016-03-12T00:53:39.352Z", + "new_balance":"4021.88", + "value":"-66.18" + } + }, + { + "id":"8db5c49b-0555-4d9a-b0ab-c40ebe9d4337", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T08:49:46.452Z", + "completed":"2016-03-12T08:49:46.452Z", + "new_balance":"4016.11", + "value":"-5.77" + } + }, + { + "id":"d3ef5778-96ff-4b4c-9350-0744eedcbdef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T18:28:24.931Z", + "completed":"2016-03-12T18:28:24.931Z", + "new_balance":"3914.85", + "value":"-101.26" + } + }, + { + "id":"6eeb31ac-db57-4659-9d18-82b069223e5a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T21:47:32.654Z", + "completed":"2016-03-12T21:47:32.654Z", + "new_balance":"3895.69", + "value":"-19.16" + } + }, + { + "id":"5552c560-778a-4f9f-8075-58a474374437", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T06:27:04.596Z", + "completed":"2016-03-13T06:27:04.596Z", + "new_balance":"3853.20", + "value":"-42.49" + } + }, + { + "id":"f405b788-41fe-4dde-b157-c52f8f1c5831", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T17:34:57.301Z", + "completed":"2016-03-13T17:34:57.301Z", + "new_balance":"3847.43", + "value":"-5.77" + } + }, + { + "id":"86ba4ec7-0e7b-4fc1-b866-236bd95cbf98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T17:09:44.990Z", + "completed":"2016-03-15T17:09:44.990Z", + "new_balance":"3805.20", + "value":"-42.23" + } + }, + { + "id":"65c5a76a-1477-437c-9b1d-1dc3718f5b01", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T20:34:54.155Z", + "completed":"2016-03-15T20:34:54.155Z", + "new_balance":"3756.31", + "value":"-48.89" + } + }, + { + "id":"ae8d219c-ac97-4bb9-9ea8-8afdc73375d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T00:28:05.731Z", + "completed":"2016-03-17T00:28:05.731Z", + "new_balance":"3712.34", + "value":"-43.97" + } + }, + { + "id":"e38decbf-039f-4a78-ac24-819ac526149d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T13:37:24.124Z", + "completed":"2016-03-18T13:37:24.124Z", + "new_balance":"3614.84", + "value":"-97.50" + } + }, + { + "id":"8822d222-4cce-4e94-ad3f-a7e2088d8d4b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T11:43:03.779Z", + "completed":"2016-03-20T11:43:03.779Z", + "new_balance":"3510.52", + "value":"-104.32" + } + }, + { + "id":"9f86b58d-8c1a-4431-b9dd-e2fd9260ddeb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:54:36.512Z", + "completed":"2016-03-22T06:54:36.512Z", + "new_balance":"3470.20", + "value":"-40.32" + } + }, + { + "id":"854eea66-7714-4bba-ac3a-ae3bda648125", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T17:30:53.719Z", + "completed":"2016-03-25T17:30:53.719Z", + "new_balance":"3464.43", + "value":"-5.77" + } + }, + { + "id":"e4d427bf-b5ca-4c10-85bb-1611d77de00f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T23:09:39.931Z", + "completed":"2016-03-25T23:09:39.931Z", + "new_balance":"3451.42", + "value":"-13.01" + } + }, + { + "id":"cdd3f599-d887-499a-8c6d-9d2e5e0a88b5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T12:51:20.906Z", + "completed":"2016-03-26T12:51:20.906Z", + "new_balance":"3438.63", + "value":"-12.79" + } + }, + { + "id":"d27de627-657a-49ab-91c9-a8da33a44035", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T14:05:50.953Z", + "completed":"2016-03-26T14:05:50.953Z", + "new_balance":"3413.01", + "value":"-25.62" + } + }, + { + "id":"8954c93c-427c-4a10-8823-a71b0e3d27ce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T08:37:56.136Z", + "completed":"2016-03-27T08:37:56.136Z", + "new_balance":"3398.82", + "value":"-14.19" + } + }, + { + "id":"85807244-c062-41c4-8c06-aecde4a45cbe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T20:58:48.068Z", + "completed":"2016-03-28T20:58:48.068Z", + "new_balance":"3350.04", + "value":"-48.78" + } + }, + { + "id":"f5e35602-eb3e-41e1-bc13-41241c0abb42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T15:19:17.751Z", + "completed":"2016-03-31T15:19:17.751Z", + "new_balance":"3152.13", + "value":"-197.91" + } + }, + { + "id":"3c1bb4fa-37e9-41de-8a3b-443dc9231263", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T04:29:29.477Z", + "completed":"2016-04-01T04:29:29.477Z", + "new_balance":"2744.56", + "value":"-407.57" + } + }, + { + "id":"7a5b16a0-a80f-4464-a76a-36d62878c3bf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T11:15:49.952Z", + "completed":"2016-04-01T11:15:49.952Z", + "new_balance":"4424.97", + "value":"1680.41" + } + }, + { + "id":"305c3cbd-dd40-49f5-9fcd-0f97e5af04e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T14:48:30.916Z", + "completed":"2016-04-01T14:48:30.916Z", + "new_balance":"5447.39", + "value":"1022.42" + } + }, + { + "id":"99f52af4-83d0-405e-be0f-601b28a16074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T09:51:31.429Z", + "completed":"2016-04-03T09:51:31.429Z", + "new_balance":"5400.59", + "value":"-46.80" + } + }, + { + "id":"1e915866-53cc-4859-9a5a-09791a1fa02a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T18:03:12.141Z", + "completed":"2016-04-03T18:03:12.141Z", + "new_balance":"5382.97", + "value":"-17.62" + } + }, + { + "id":"aee7c802-5730-43c1-887a-e28eaf835a43", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T20:20:01.614Z", + "completed":"2016-04-03T20:20:01.614Z", + "new_balance":"5376.59", + "value":"-6.38" + } + }, + { + "id":"9beaee4f-6599-4f3d-8155-939cea3fbe50", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T08:44:41.673Z", + "completed":"2016-04-05T08:44:41.673Z", + "new_balance":"5369.60", + "value":"-6.99" + } + }, + { + "id":"e2b80f49-c091-4125-9c28-8fdb04dc9f1b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T12:30:56.118Z", + "completed":"2016-04-05T12:30:56.118Z", + "new_balance":"5358.69", + "value":"-10.91" + } + }, + { + "id":"283168e7-6be7-42b2-9717-d9777e455552", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T12:35:10.955Z", + "completed":"2016-04-06T12:35:10.955Z", + "new_balance":"5333.76", + "value":"-24.93" + } + }, + { + "id":"97d55ed6-1f65-4762-b091-b802e1e12051", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T14:33:36.192Z", + "completed":"2016-04-09T14:33:36.192Z", + "new_balance":"5314.60", + "value":"-19.16" + } + }, + { + "id":"55fd308c-4147-47dd-adb7-bf090a694a4e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T10:29:49.795Z", + "completed":"2016-04-10T10:29:49.795Z", + "new_balance":"5299.61", + "value":"-14.99" + } + }, + { + "id":"5df6aab4-570a-4286-aee8-1ffd417b4e1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T10:44:29.354Z", + "completed":"2016-04-11T10:44:29.354Z", + "new_balance":"5283.60", + "value":"-16.01" + } + }, + { + "id":"32f58714-34ff-4c91-8229-04d454ed3ebc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T11:27:41.255Z", + "completed":"2016-04-11T11:27:41.255Z", + "new_balance":"5254.44", + "value":"-29.16" + } + }, + { + "id":"765dee4f-24b2-4a60-a30d-96cb779e7190", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T09:29:15.013Z", + "completed":"2016-04-13T09:29:15.013Z", + "new_balance":"5149.72", + "value":"-104.72" + } + }, + { + "id":"c3d33c4b-39fb-4c26-ac57-5c72d40644b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T11:34:34.534Z", + "completed":"2016-04-13T11:34:34.534Z", + "new_balance":"5104.66", + "value":"-45.06" + } + }, + { + "id":"a98134fc-3b01-48e1-be92-7a5e1ec1aa24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T19:46:20.070Z", + "completed":"2016-04-15T19:46:20.070Z", + "new_balance":"5060.18", + "value":"-44.48" + } + }, + { + "id":"7225fe36-2a6f-43d5-af9a-e79b39e58885", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T09:11:23.445Z", + "completed":"2016-04-16T09:11:23.445Z", + "new_balance":"5054.41", + "value":"-5.77" + } + }, + { + "id":"be4ebd4b-2f35-4c9f-8ada-83c47a85897e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T12:02:21.407Z", + "completed":"2016-04-16T12:02:21.407Z", + "new_balance":"5044.34", + "value":"-10.07" + } + }, + { + "id":"80f1144b-5bad-4882-8e82-0ae7e3da800b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:25:21.788Z", + "completed":"2016-04-18T16:25:21.788Z", + "new_balance":"4965.26", + "value":"-79.08" + } + }, + { + "id":"d3feffda-8bcc-4f1c-8f8a-7cfff5a2065f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T03:24:23.053Z", + "completed":"2016-04-23T03:24:23.053Z", + "new_balance":"4939.86", + "value":"-25.40" + } + }, + { + "id":"af2c2970-b6c7-4b75-a7a5-0dced1322de8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T18:56:37.005Z", + "completed":"2016-04-24T18:56:37.005Z", + "new_balance":"4909.05", + "value":"-30.81" + } + }, + { + "id":"cc4c6983-c760-4d0c-a745-62e8169b47cd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T22:50:46.796Z", + "completed":"2016-04-24T22:50:46.796Z", + "new_balance":"4894.22", + "value":"-14.83" + } + }, + { + "id":"a7aa9e92-e1d7-40a4-a18d-69103d343fd2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T01:41:11.293Z", + "completed":"2016-04-26T01:41:11.293Z", + "new_balance":"4887.23", + "value":"-6.99" + } + }, + { + "id":"531b9709-4869-413f-ad56-5b65a0dcb037", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T03:57:51.787Z", + "completed":"2016-04-28T03:57:51.787Z", + "new_balance":"4689.32", + "value":"-197.91" + } + }, + { + "id":"bae5529b-c4ff-4e44-874d-13acb83b6910", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T23:39:16.029Z", + "completed":"2016-04-28T23:39:16.029Z", + "new_balance":"4640.54", + "value":"-48.78" + } + }, + { + "id":"482de82f-b018-4c37-a218-be3b6ce40a32", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T06:07:16.842Z", + "completed":"2016-05-02T06:07:16.842Z", + "new_balance":"4626.03", + "value":"-14.51" + } + }, + { + "id":"1db46abb-547e-4007-9654-6f35d2edbe98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T15:09:18.411Z", + "completed":"2016-05-02T15:09:18.411Z", + "new_balance":"4619.54", + "value":"-6.49" + } + }, + { + "id":"9f1b07d4-f992-47fb-94cb-b1f40449d56e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T15:25:04.662Z", + "completed":"2016-05-02T15:25:04.662Z", + "new_balance":"4456.06", + "value":"-163.48" + } + }, + { + "id":"c9cd708a-fc0d-4543-ae6d-bd247ddb933b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T22:18:28.405Z", + "completed":"2016-05-02T22:18:28.405Z", + "new_balance":"4048.49", + "value":"-407.57" + } + }, + { + "id":"7ebe039b-668c-4893-aa0a-01965c6def39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T01:57:15.602Z", + "completed":"2016-05-06T01:57:15.602Z", + "new_balance":"4019.33", + "value":"-29.16" + } + }, + { + "id":"0000461b-3ab5-4101-a78a-cab0c2a4f446", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T20:42:26.230Z", + "completed":"2016-05-06T20:42:26.230Z", + "new_balance":"3994.53", + "value":"-24.80" + } + }, + { + "id":"912a24a7-e295-4876-8bf6-ee3f0a424aa8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T07:58:52.279Z", + "completed":"2016-05-07T07:58:52.279Z", + "new_balance":"3889.81", + "value":"-104.72" + } + }, + { + "id":"447c7d50-146e-4f23-b223-0e008870806d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T12:02:19.541Z", + "completed":"2016-05-07T12:02:19.541Z", + "new_balance":"3848.46", + "value":"-41.35" + } + }, + { + "id":"b6295fdd-34d1-493d-b0d6-18b53edef83a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T22:33:27.626Z", + "completed":"2016-05-09T22:33:27.626Z", + "new_balance":"4870.88", + "value":"1022.42" + } + }, + { + "id":"46f53d97-211c-4630-8560-17978abe1ea1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T08:48:22.799Z", + "completed":"2016-05-14T08:48:22.799Z", + "new_balance":"4845.08", + "value":"-25.80" + } + }, + { + "id":"00b54297-b611-4aa9-9cd5-e4436ee9fdf9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:23:49.673Z", + "completed":"2016-05-14T21:23:49.673Z", + "new_balance":"4794.52", + "value":"-50.56" + } + }, + { + "id":"0ea4ac4b-c74c-4e1c-9987-300c574366c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T14:25:34.422Z", + "completed":"2016-05-16T14:25:34.422Z", + "new_balance":"4787.53", + "value":"-6.99" + } + }, + { + "id":"ea8b4656-aed1-4a7d-b6c9-b70d2f86e75f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T04:02:22.474Z", + "completed":"2016-05-21T04:02:22.474Z", + "new_balance":"4752.34", + "value":"-35.19" + } + }, + { + "id":"9435511c-1e7d-4ac9-bb76-125d72002c98", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T13:46:11.449Z", + "completed":"2016-05-23T13:46:11.449Z", + "new_balance":"4746.57", + "value":"-5.77" + } + }, + { + "id":"ce0a70bd-48d0-4656-9b81-08ef267cd2b1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T17:50:38.901Z", + "completed":"2016-05-23T17:50:38.901Z", + "new_balance":"4717.41", + "value":"-29.16" + } + }, + { + "id":"509168cf-e7b0-416f-8269-9b8948e54c08", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T20:14:24.182Z", + "completed":"2016-05-24T20:14:24.182Z", + "new_balance":"4671.90", + "value":"-45.51" + } + }, + { + "id":"27a6d126-4df3-41df-85da-77737c6e9ee1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T02:10:10.374Z", + "completed":"2016-05-27T02:10:10.374Z", + "new_balance":"4663.50", + "value":"-8.40" + } + }, + { + "id":"e0e53c2a-d1da-4bef-9797-1c242d537d78", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T22:57:05.577Z", + "completed":"2016-05-30T22:57:05.577Z", + "new_balance":"4614.72", + "value":"-48.78" + } + }, + { + "id":"0871f62f-39ea-47c2-a2a7-d543aef39306", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T23:56:01.855Z", + "completed":"2016-05-30T23:56:01.855Z", + "new_balance":"4416.81", + "value":"-197.91" + } + }, + { + "id":"acb17203-ee73-49ec-a289-5020ce2bcf59", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T03:55:20.049Z", + "completed":"2016-06-01T03:55:20.049Z", + "new_balance":"4009.24", + "value":"-407.57" + } + }, + { + "id":"9b17bac3-8ee3-42c6-985f-69ca798b4927", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T22:17:33.990Z", + "completed":"2016-06-01T22:17:33.990Z", + "new_balance":"5031.66", + "value":"1022.42" + } + }, + { + "id":"429371ce-2014-4dcf-a57a-8667e2a8aa40", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:37:37.508Z", + "completed":"2016-06-04T04:37:37.508Z", + "new_balance":"5000.21", + "value":"-31.45" + } + }, + { + "id":"0c9e9fcc-0e4e-4e27-82b6-7baf93736a17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T05:43:07.678Z", + "completed":"2016-06-04T05:43:07.678Z", + "new_balance":"4983.21", + "value":"-17.00" + } + }, + { + "id":"f7123137-b8b7-46d1-aaa9-b0cd5da8f347", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T00:31:14.294Z", + "completed":"2016-06-11T00:31:14.294Z", + "new_balance":"4952.40", + "value":"-30.81" + } + }, + { + "id":"d3bdf2fa-ee22-4cc5-a9a1-ef60557324bc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T18:53:40.954Z", + "completed":"2016-06-11T18:53:40.954Z", + "new_balance":"4906.89", + "value":"-45.51" + } + }, + { + "id":"afe493ba-9a99-4337-b878-ca81f5842c0a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T11:49:06.457Z", + "completed":"2016-06-12T11:49:06.457Z", + "new_balance":"4892.83", + "value":"-14.06" + } + }, + { + "id":"c97f7e70-efe2-4f8e-95b1-6120b572c254", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T16:43:41.322Z", + "completed":"2016-06-12T16:43:41.322Z", + "new_balance":"4788.11", + "value":"-104.72" + } + }, + { + "id":"c0838da3-93e4-4990-ac10-4fbb6d7463b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T21:28:15.137Z", + "completed":"2016-06-12T21:28:15.137Z", + "new_balance":"4782.34", + "value":"-5.77" + } + }, + { + "id":"3b60bfb4-7bfa-4567-b40c-354a24ae3964", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T03:02:18.219Z", + "completed":"2016-06-13T03:02:18.219Z", + "new_balance":"4683.22", + "value":"-99.12" + } + }, + { + "id":"e375cf2e-1066-4ece-9abd-bb527dbd0a62", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T04:26:29.629Z", + "completed":"2016-06-13T04:26:29.629Z", + "new_balance":"4601.43", + "value":"-81.79" + } + }, + { + "id":"97c393db-a539-497d-a016-b5b166e7f1d5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T20:12:52.074Z", + "completed":"2016-06-13T20:12:52.074Z", + "new_balance":"4555.89", + "value":"-45.54" + } + }, + { + "id":"8c69092a-675e-44ea-8002-b9a027fabd95", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T13:55:10.804Z", + "completed":"2016-06-14T13:55:10.804Z", + "new_balance":"4548.28", + "value":"-7.61" + } + }, + { + "id":"d38a86d5-9a75-4c57-af88-3ae4ff9c8c9b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T19:13:59.299Z", + "completed":"2016-06-14T19:13:59.299Z", + "new_balance":"4540.67", + "value":"-7.61" + } + }, + { + "id":"a6cd135f-ef65-44fd-8183-3301084605c0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T21:08:22.129Z", + "completed":"2016-06-14T21:08:22.129Z", + "new_balance":"4534.90", + "value":"-5.77" + } + }, + { + "id":"e9656f14-4e42-4c0f-b309-150999f1ecea", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T00:56:24.739Z", + "completed":"2016-06-15T00:56:24.739Z", + "new_balance":"4502.56", + "value":"-32.34" + } + }, + { + "id":"f3f323dd-c426-400e-a378-55269d9e262f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T02:51:45.837Z", + "completed":"2016-06-15T02:51:45.837Z", + "new_balance":"4496.79", + "value":"-5.77" + } + }, + { + "id":"1af6842b-22a0-489d-8ed9-877e2bf848fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T10:37:10.272Z", + "completed":"2016-06-15T10:37:10.272Z", + "new_balance":"4488.27", + "value":"-8.52" + } + }, + { + "id":"8e30e33c-aa74-478f-b9a7-28afb04ca8c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T19:11:47.527Z", + "completed":"2016-06-16T19:11:47.527Z", + "new_balance":"4463.97", + "value":"-24.30" + } + }, + { + "id":"da86438d-3577-47db-b8d3-eb3d352dc714", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T14:32:00.256Z", + "completed":"2016-06-17T14:32:00.256Z", + "new_balance":"4451.60", + "value":"-12.37" + } + }, + { + "id":"7737cf02-8687-4dca-9bd5-a7701aa18f49", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T01:47:23.922Z", + "completed":"2016-06-18T01:47:23.922Z", + "new_balance":"4409.11", + "value":"-42.49" + } + }, + { + "id":"a8fe7031-c004-433b-85aa-e0c5bae06cf3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T13:19:21.614Z", + "completed":"2016-06-18T13:19:21.614Z", + "new_balance":"4342.93", + "value":"-66.18" + } + }, + { + "id":"76d00512-b0ef-40d4-acc0-742cc1eeeedd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T14:16:38.837Z", + "completed":"2016-06-18T14:16:38.837Z", + "new_balance":"4337.16", + "value":"-5.77" + } + }, + { + "id":"9bbfa692-7d59-41d3-81e5-e356494f3eed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T18:17:24.508Z", + "completed":"2016-06-18T18:17:24.508Z", + "new_balance":"4331.39", + "value":"-5.77" + } + }, + { + "id":"49a81c91-f8ba-497a-ab43-6556de5fcf1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T18:33:41.248Z", + "completed":"2016-06-18T18:33:41.248Z", + "new_balance":"4230.13", + "value":"-101.26" + } + }, + { + "id":"d791c91f-736b-40b6-8dc2-42c0ef8fb3cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T23:35:27.989Z", + "completed":"2016-06-18T23:35:27.989Z", + "new_balance":"4210.97", + "value":"-19.16" + } + }, + { + "id":"a3163b98-a662-4353-b949-f5c2fb3ce2bd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:05:06.670Z", + "completed":"2016-06-19T03:05:06.670Z", + "new_balance":"4168.74", + "value":"-42.23" + } + }, + { + "id":"c1dac352-40f3-4878-8740-e023e49de65f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T05:56:34.886Z", + "completed":"2016-06-19T05:56:34.886Z", + "new_balance":"4124.77", + "value":"-43.97" + } + }, + { + "id":"72744f75-46ae-49ac-9e1c-fe04e486766c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T10:16:51.917Z", + "completed":"2016-06-19T10:16:51.917Z", + "new_balance":"4075.88", + "value":"-48.89" + } + }, + { + "id":"0c335f74-3b98-4692-96ab-f9a7a111cbe0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T06:25:29.933Z", + "completed":"2016-06-21T06:25:29.933Z", + "new_balance":"3971.56", + "value":"-104.32" + } + }, + { + "id":"0f7c8954-5951-46da-9e8d-118d44a24038", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T21:15:42.987Z", + "completed":"2016-06-21T21:15:42.987Z", + "new_balance":"3874.06", + "value":"-97.50" + } + }, + { + "id":"44e9de95-b0f5-497b-a4ca-5958d5c2a41a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T04:11:01.021Z", + "completed":"2016-06-22T04:11:01.021Z", + "new_balance":"3861.05", + "value":"-13.01" + } + }, + { + "id":"b1f8c7b4-f953-479c-be3f-b6c2ef3c4fed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T08:02:20.245Z", + "completed":"2016-06-22T08:02:20.245Z", + "new_balance":"3820.73", + "value":"-40.32" + } + }, + { + "id":"3e7d567b-9b82-4c65-a506-52c37cc995de", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T20:47:41.245Z", + "completed":"2016-06-22T20:47:41.245Z", + "new_balance":"3814.96", + "value":"-5.77" + } + }, + { + "id":"cdf77652-86a3-4c10-b9db-b78c73d100a3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T07:49:19.561Z", + "completed":"2016-06-23T07:49:19.561Z", + "new_balance":"3802.17", + "value":"-12.79" + } + }, + { + "id":"679c3258-9d63-4227-9a2c-75bdb1d0cba8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T07:34:24.083Z", + "completed":"2016-06-24T07:34:24.083Z", + "new_balance":"3776.55", + "value":"-25.62" + } + }, + { + "id":"f53e0eea-cf04-46bc-a95d-88753430dfdc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T01:42:29.462Z", + "completed":"2016-06-26T01:42:29.462Z", + "new_balance":"3762.36", + "value":"-14.19" + } + }, + { + "id":"424061a3-1071-47ce-8c7b-e6373cd3a465", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T15:50:09.055Z", + "completed":"2016-06-30T15:50:09.055Z", + "new_balance":"3564.45", + "value":"-197.91" + } + }, + { + "id":"26b0596c-e565-44d1-b9e5-766ada3a42a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T19:29:34.911Z", + "completed":"2016-06-30T19:29:34.911Z", + "new_balance":"3515.67", + "value":"-48.78" + } + }, + { + "id":"e0f7d658-0f73-48c0-8ff6-6556e0f6215d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T09:46:19.593Z", + "completed":"2016-07-01T09:46:19.593Z", + "new_balance":"5196.08", + "value":"1680.41" + } + }, + { + "id":"5dce8e37-25b3-4596-a058-541df6df6719", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T16:13:59.942Z", + "completed":"2016-07-01T16:13:59.942Z", + "new_balance":"6218.50", + "value":"1022.42" + } + }, + { + "id":"d11e3e1b-4bcb-4acf-97db-2841d1389a20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T11:14:12.853Z", + "completed":"2016-07-03T11:14:12.853Z", + "new_balance":"5810.93", + "value":"-407.57" + } + }, + { + "id":"2ee807d3-9dbf-49b6-8c50-0d92c8344b58", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T06:03:56.960Z", + "completed":"2016-07-04T06:03:56.960Z", + "new_balance":"5804.55", + "value":"-6.38" + } + }, + { + "id":"6eefcbe0-fd25-4a0b-9947-37a4b0085cb2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T07:25:55.941Z", + "completed":"2016-07-04T07:25:55.941Z", + "new_balance":"5757.75", + "value":"-46.80" + } + }, + { + "id":"bb56ea64-0054-4cab-a991-491d7958ad07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T14:44:06.754Z", + "completed":"2016-07-04T14:44:06.754Z", + "new_balance":"5740.13", + "value":"-17.62" + } + }, + { + "id":"ff1d435b-8b75-4619-b5a2-5bc9d1c7cdd8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T23:26:45.559Z", + "completed":"2016-07-05T23:26:45.559Z", + "new_balance":"5729.22", + "value":"-10.91" + } + }, + { + "id":"5f4a708d-f444-4367-87cc-ab318f990684", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T15:19:14.209Z", + "completed":"2016-07-07T15:19:14.209Z", + "new_balance":"5722.23", + "value":"-6.99" + } + }, + { + "id":"44189b97-4a57-4b2e-b0e1-1a48d83b0439", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T00:05:24.673Z", + "completed":"2016-07-11T00:05:24.673Z", + "new_balance":"5693.07", + "value":"-29.16" + } + }, + { + "id":"2c7ea02d-a08b-4245-8466-784b0bb653a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T01:31:18.494Z", + "completed":"2016-07-11T01:31:18.494Z", + "new_balance":"5668.14", + "value":"-24.93" + } + }, + { + "id":"237988e4-54c4-4ede-9399-cdd9227e9bac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T03:23:08.794Z", + "completed":"2016-07-11T03:23:08.794Z", + "new_balance":"5652.13", + "value":"-16.01" + } + }, + { + "id":"2f7be21e-039b-47b0-be37-9c35de8b7a81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:21:36.057Z", + "completed":"2016-07-11T10:21:36.057Z", + "new_balance":"5637.14", + "value":"-14.99" + } + }, + { + "id":"fdf3779e-97b1-46ab-9cfa-96ff7c942c89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T19:46:57.858Z", + "completed":"2016-07-11T19:46:57.858Z", + "new_balance":"5617.98", + "value":"-19.16" + } + }, + { + "id":"fc284f5a-07b8-424d-ac98-b80fddfe58f3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T08:53:18.763Z", + "completed":"2016-07-13T08:53:18.763Z", + "new_balance":"5513.26", + "value":"-104.72" + } + }, + { + "id":"d15fcad0-2d0c-4abf-9efd-821b683f7fc0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T18:14:46.022Z", + "completed":"2016-07-13T18:14:46.022Z", + "new_balance":"5468.20", + "value":"-45.06" + } + }, + { + "id":"5fcb041f-1feb-4e53-86a1-037eeec54d45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T09:06:46.217Z", + "completed":"2016-07-16T09:06:46.217Z", + "new_balance":"5559.08", + "value":"90.88" + } + }, + { + "id":"a53362b1-9abc-4016-8a87-5dc77f9aba95", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T18:48:19.957Z", + "completed":"2016-07-16T18:48:19.957Z", + "new_balance":"5514.60", + "value":"-44.48" + } + }, + { + "id":"6515f1d2-3319-4b77-b095-853635d18879", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T02:34:35.385Z", + "completed":"2016-07-17T02:34:35.385Z", + "new_balance":"5504.53", + "value":"-10.07" + } + }, + { + "id":"7f5af5bc-8d44-4cd6-9c7c-55040443b62f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T05:20:32.599Z", + "completed":"2016-07-17T05:20:32.599Z", + "new_balance":"5498.76", + "value":"-5.77" + } + }, + { + "id":"5f70fc45-a04d-4f34-a8bd-d76929305382", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T15:55:00.211Z", + "completed":"2016-07-19T15:55:00.211Z", + "new_balance":"5419.68", + "value":"-79.08" + } + }, + { + "id":"14f0b3a3-f0e7-4c05-8b97-6bf9324b8229", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T00:55:57.607Z", + "completed":"2016-07-21T00:55:57.607Z", + "new_balance":"5394.28", + "value":"-25.40" + } + }, + { + "id":"844b92c3-aadd-4805-bdd1-a95575b4acfd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T04:16:26.742Z", + "completed":"2016-07-23T04:16:26.742Z", + "new_balance":"5363.47", + "value":"-30.81" + } + }, + { + "id":"ac3c18c7-8f3e-4657-83d3-f35e84e2c0be", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T16:58:27.478Z", + "completed":"2016-07-25T16:58:27.478Z", + "new_balance":"5348.64", + "value":"-14.83" + } + }, + { + "id":"6c9dd847-23ae-440f-b725-e687c0f29d9e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T18:13:05.243Z", + "completed":"2016-07-27T18:13:05.243Z", + "new_balance":"5341.65", + "value":"-6.99" + } + }, + { + "id":"0ff38665-bc8b-47ba-88a8-6e0438e733f8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T02:36:54.924Z", + "completed":"2016-07-28T02:36:54.924Z", + "new_balance":"5143.74", + "value":"-197.91" + } + }, + { + "id":"052b1691-15e4-4849-b23a-e084e9ec06ce", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T03:04:22.895Z", + "completed":"2016-07-28T03:04:22.895Z", + "new_balance":"5094.96", + "value":"-48.78" + } + }, + { + "id":"b201cee9-da18-4953-838a-5448ba584055", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T03:17:49.607Z", + "completed":"2016-08-01T03:17:49.607Z", + "new_balance":"6117.38", + "value":"1022.42" + } + }, + { + "id":"c6682978-9064-4beb-ba8f-67704022677f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T16:34:22.713Z", + "completed":"2016-08-03T16:34:22.713Z", + "new_balance":"5953.90", + "value":"-163.48" + } + }, + { + "id":"75b445e0-4c7a-4a35-95e0-813e70c121ac", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T22:52:00.644Z", + "completed":"2016-08-03T22:52:00.644Z", + "new_balance":"5546.33", + "value":"-407.57" + } + }, + { + "id":"fe30c0b1-df51-4b58-9958-b372fab3e9e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T15:48:22.641Z", + "completed":"2016-08-04T15:48:22.641Z", + "new_balance":"5531.82", + "value":"-14.51" + } + }, + { + "id":"b0a8c678-7d8a-4c9d-a817-90da3baceb96", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T04:17:56.561Z", + "completed":"2016-08-07T04:17:56.561Z", + "new_balance":"5502.66", + "value":"-29.16" + } + }, + { + "id":"f239a336-a9b6-459b-883f-f0c49745286f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T10:40:36.632Z", + "completed":"2016-08-07T10:40:36.632Z", + "new_balance":"5477.86", + "value":"-24.80" + } + }, + { + "id":"01ca8e01-7a44-446c-8580-0fcab9e0e195", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T22:42:36.061Z", + "completed":"2016-08-07T22:42:36.061Z", + "new_balance":"5471.37", + "value":"-6.49" + } + }, + { + "id":"04dbe669-26c7-41f2-bda0-b74e90e11a8b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T05:38:26.282Z", + "completed":"2016-08-08T05:38:26.282Z", + "new_balance":"5366.65", + "value":"-104.72" + } + }, + { + "id":"d7c88b81-9b91-4220-bf08-0e049c8b865f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T14:07:49.068Z", + "completed":"2016-08-08T14:07:49.068Z", + "new_balance":"5316.09", + "value":"-50.56" + } + }, + { + "id":"a1d12427-f908-4b40-9c36-cd226c94c4c4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T23:18:40.760Z", + "completed":"2016-08-08T23:18:40.760Z", + "new_balance":"5274.74", + "value":"-41.35" + } + }, + { + "id":"74840994-8906-45a0-9321-754d0404d92f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T11:50:27.129Z", + "completed":"2016-08-09T11:50:27.129Z", + "new_balance":"5248.94", + "value":"-25.80" + } + }, + { + "id":"3922c036-b522-460c-9782-8bea61a63c57", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T03:26:36.650Z", + "completed":"2016-08-11T03:26:36.650Z", + "new_balance":"5241.95", + "value":"-6.99" + } + }, + { + "id":"03c8c480-3dd6-45dc-bc24-4ecfdf4ec671", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T06:57:16.097Z", + "completed":"2016-08-14T06:57:16.097Z", + "new_balance":"5206.76", + "value":"-35.19" + } + }, + { + "id":"89e2b2e8-2df9-4c27-9642-4a50432a4a71", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T00:43:07.272Z", + "completed":"2016-08-15T00:43:07.272Z", + "new_balance":"5177.60", + "value":"-29.16" + } + }, + { + "id":"005588b2-fd3e-4ec4-a4f4-c0ef1bfca427", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T09:24:37.932Z", + "completed":"2016-08-17T09:24:37.932Z", + "new_balance":"5132.09", + "value":"-45.51" + } + }, + { + "id":"f08a39d2-c286-481d-81a8-6168e8b6293b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T11:01:12.523Z", + "completed":"2016-08-17T11:01:12.523Z", + "new_balance":"5126.32", + "value":"-5.77" + } + }, + { + "id":"b679a0fa-446e-44fd-93fd-73e6263bcb23", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T06:33:02.176Z", + "completed":"2016-08-19T06:33:02.176Z", + "new_balance":"5117.92", + "value":"-8.40" + } + }, + { + "id":"d30c9529-cba3-4e5f-a3cc-e41b4c0b7252", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T03:21:25.708Z", + "completed":"2016-08-25T03:21:25.708Z", + "new_balance":"5232.06", + "value":"114.14" + } + }, + { + "id":"5ee656fe-3f43-4d91-a193-701d1e8040ff", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T09:22:23.177Z", + "completed":"2016-08-28T09:22:23.177Z", + "new_balance":"5183.28", + "value":"-48.78" + } + }, + { + "id":"6d77f3ef-703e-4fab-b6b6-45e7a138f507", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T22:54:41.361Z", + "completed":"2016-08-28T22:54:41.361Z", + "new_balance":"4985.37", + "value":"-197.91" + } + }, + { + "id":"52f13701-7c10-4656-9c6c-03d682009c63", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:06:22.420Z", + "completed":"2016-09-01T04:06:22.420Z", + "new_balance":"6007.79", + "value":"1022.42" + } + }, + { + "id":"6b3b915b-1688-445e-bce5-0b10b27382cf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T17:55:34.366Z", + "completed":"2016-09-03T17:55:34.366Z", + "new_balance":"5600.22", + "value":"-407.57" + } + }, + { + "id":"c7f3779b-9a22-4461-a73d-e03bf3c7774f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T01:42:54.159Z", + "completed":"2016-09-04T01:42:54.159Z", + "new_balance":"5568.77", + "value":"-31.45" + } + }, + { + "id":"198f3c00-4014-4f12-bbba-358464d89b81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T06:18:39.239Z", + "completed":"2016-09-04T06:18:39.239Z", + "new_balance":"5537.96", + "value":"-30.81" + } + }, + { + "id":"919d294b-de57-4e64-9036-5e0e9381aa52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T15:04:24.042Z", + "completed":"2016-09-04T15:04:24.042Z", + "new_balance":"5520.96", + "value":"-17.00" + } + }, + { + "id":"2259e263-75ca-4cb9-9683-dcd92f29ac7d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T23:40:21.325Z", + "completed":"2016-09-04T23:40:21.325Z", + "new_balance":"5475.45", + "value":"-45.51" + } + }, + { + "id":"a2a3bf33-818e-47ff-89ab-7a5782fe260d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T03:17:00.927Z", + "completed":"2016-09-05T03:17:00.927Z", + "new_balance":"5469.68", + "value":"-5.77" + } + }, + { + "id":"39bbe42f-6feb-4c75-aeb9-11281b628e39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T06:46:42.965Z", + "completed":"2016-09-05T06:46:42.965Z", + "new_balance":"5370.56", + "value":"-99.12" + } + }, + { + "id":"888217e5-cae9-437d-bffd-2500c1c9f385", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T11:17:07.529Z", + "completed":"2016-09-05T11:17:07.529Z", + "new_balance":"5325.02", + "value":"-45.54" + } + }, + { + "id":"fd2fa174-36d0-49ce-b0a8-3a6113615ddf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T15:31:42.737Z", + "completed":"2016-09-05T15:31:42.737Z", + "new_balance":"5310.96", + "value":"-14.06" + } + }, + { + "id":"f834b5cc-2f78-471b-afc8-7e90cf27b3f9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T15:36:31.491Z", + "completed":"2016-09-05T15:36:31.491Z", + "new_balance":"5229.17", + "value":"-81.79" + } + }, + { + "id":"c02b2a8e-71b7-49d6-a425-973303948f7b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T23:01:29.690Z", + "completed":"2016-09-05T23:01:29.690Z", + "new_balance":"5124.45", + "value":"-104.72" + } + }, + { + "id":"1c87dc45-8409-4c32-922c-3cd07dd5042f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T01:45:18.423Z", + "completed":"2016-09-07T01:45:18.423Z", + "new_balance":"5115.93", + "value":"-8.52" + } + }, + { + "id":"c906061f-b85c-481c-8e37-7aae827c2d23", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T03:11:43.515Z", + "completed":"2016-09-07T03:11:43.515Z", + "new_balance":"5110.16", + "value":"-5.77" + } + }, + { + "id":"2495f675-29cf-409e-b731-87adae4d6b76", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T10:18:53.443Z", + "completed":"2016-09-07T10:18:53.443Z", + "new_balance":"5102.55", + "value":"-7.61" + } + }, + { + "id":"66426013-982a-40b1-972c-9cad2e606c63", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T17:21:13.152Z", + "completed":"2016-09-07T17:21:13.152Z", + "new_balance":"5094.94", + "value":"-7.61" + } + }, + { + "id":"347cdd6e-69f4-437d-83f6-9786376c7d50", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T19:06:32.970Z", + "completed":"2016-09-10T19:06:32.970Z", + "new_balance":"5062.60", + "value":"-32.34" + } + }, + { + "id":"13c7cd7d-5fc2-4b5b-bd01-5d290906a5e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T12:32:55.931Z", + "completed":"2016-09-11T12:32:55.931Z", + "new_balance":"5038.30", + "value":"-24.30" + } + }, + { + "id":"5a969eae-f904-4429-849f-06cc18cca22a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T20:06:21.181Z", + "completed":"2016-09-11T20:06:21.181Z", + "new_balance":"5032.53", + "value":"-5.77" + } + }, + { + "id":"c2205114-7c99-4aba-a313-8124a34ea38a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T20:50:34.104Z", + "completed":"2016-09-11T20:50:34.104Z", + "new_balance":"5020.16", + "value":"-12.37" + } + }, + { + "id":"cd3c7f3f-f717-47a1-a18d-cec7ccad4cc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T11:13:53.901Z", + "completed":"2016-09-12T11:13:53.901Z", + "new_balance":"4918.90", + "value":"-101.26" + } + }, + { + "id":"1ea38f6f-4a5c-4989-82a3-6cea195d4677", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T14:14:34.723Z", + "completed":"2016-09-12T14:14:34.723Z", + "new_balance":"4913.13", + "value":"-5.77" + } + }, + { + "id":"e86c5beb-072e-4222-8ffd-95501f14055b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T18:42:28.375Z", + "completed":"2016-09-12T18:42:28.375Z", + "new_balance":"4893.97", + "value":"-19.16" + } + }, + { + "id":"966a980d-2cea-430d-ab47-e04ba82d5777", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T22:27:22.337Z", + "completed":"2016-09-12T22:27:22.337Z", + "new_balance":"4827.79", + "value":"-66.18" + } + }, + { + "id":"b271033d-4106-45b5-be7e-30953cb2f348", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T04:22:49.596Z", + "completed":"2016-09-13T04:22:49.596Z", + "new_balance":"4785.30", + "value":"-42.49" + } + }, + { + "id":"77ed153b-9ee5-4058-ac49-e9ccfbddc84b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T09:40:58.609Z", + "completed":"2016-09-14T09:40:58.609Z", + "new_balance":"4743.07", + "value":"-42.23" + } + }, + { + "id":"26157851-4156-4012-b08f-63861261197f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T11:05:10.220Z", + "completed":"2016-09-14T11:05:10.220Z", + "new_balance":"4737.30", + "value":"-5.77" + } + }, + { + "id":"3aa8fc4a-d8f4-4117-b8d3-0194369f3d0b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T12:50:36.063Z", + "completed":"2016-09-16T12:50:36.063Z", + "new_balance":"4688.41", + "value":"-48.89" + } + }, + { + "id":"2ca0deaa-0f7c-48da-99cb-d666347b61e1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T15:21:54.569Z", + "completed":"2016-09-18T15:21:54.569Z", + "new_balance":"4644.44", + "value":"-43.97" + } + }, + { + "id":"460a1156-deb7-43ca-b2e7-12fcc58fcb34", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T02:54:57.723Z", + "completed":"2016-09-21T02:54:57.723Z", + "new_balance":"4546.94", + "value":"-97.50" + } + }, + { + "id":"172c6894-d272-47b1-a9a3-bf7b67ad3c1d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T23:57:07.715Z", + "completed":"2016-09-21T23:57:07.715Z", + "new_balance":"4442.62", + "value":"-104.32" + } + }, + { + "id":"aaecc567-8d19-4300-b43d-41816085f8ef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T01:14:15.846Z", + "completed":"2016-09-23T01:14:15.846Z", + "new_balance":"4402.30", + "value":"-40.32" + } + }, + { + "id":"e7e89bc5-15f6-41c5-b248-e4cc8dddf190", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T16:38:29.716Z", + "completed":"2016-09-24T16:38:29.716Z", + "new_balance":"4396.53", + "value":"-5.77" + } + }, + { + "id":"dd5755fb-5b70-48e4-b6e6-bd19751e7579", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T12:51:49.063Z", + "completed":"2016-09-26T12:51:49.063Z", + "new_balance":"4383.74", + "value":"-12.79" + } + }, + { + "id":"c5010884-8aa6-478f-a181-7e1bcdaf0f94", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T13:21:08.492Z", + "completed":"2016-09-26T13:21:08.492Z", + "new_balance":"4358.12", + "value":"-25.62" + } + }, + { + "id":"1743c3e3-e010-4532-a43e-be64b0effbd6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T15:46:13.208Z", + "completed":"2016-09-26T15:46:13.208Z", + "new_balance":"4345.11", + "value":"-13.01" + } + }, + { + "id":"ff318205-aa88-4976-bdc4-e1aec231a832", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T20:20:32.675Z", + "completed":"2016-09-27T20:20:32.675Z", + "new_balance":"4330.92", + "value":"-14.19" + } + }, + { + "id":"ba94c9bf-18a9-4edc-901e-59bc29799806", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T15:08:25.205Z", + "completed":"2016-09-28T15:08:25.205Z", + "new_balance":"4282.14", + "value":"-48.78" + } + }, + { + "id":"09291a1b-f8f2-47e0-82d0-ae9ef686feeb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T16:34:29.964Z", + "completed":"2016-09-28T16:34:29.964Z", + "new_balance":"4084.23", + "value":"-197.91" + } + }, + { + "id":"c5c1af08-8e8c-4066-8570-e0275ad72e0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T03:02:06.460Z", + "completed":"2016-10-01T03:02:06.460Z", + "new_balance":"3676.66", + "value":"-407.57" + } + }, + { + "id":"f45b4282-2c2e-42f4-b39c-79ff098d43c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:04:10.341Z", + "completed":"2016-10-01T19:04:10.341Z", + "new_balance":"4699.08", + "value":"1022.42" + } + }, + { + "id":"f8d76d2f-7432-4a37-a912-c050de4a939a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T20:28:10.335Z", + "completed":"2016-10-01T20:28:10.335Z", + "new_balance":"6379.49", + "value":"1680.41" + } + }, + { + "id":"a7e368c5-9796-443f-840e-8b63c3ace730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T02:44:38.843Z", + "completed":"2016-10-03T02:44:38.843Z", + "new_balance":"6373.11", + "value":"-6.38" + } + }, + { + "id":"9996ad80-32d2-4d80-82ae-945081729980", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T09:59:19.415Z", + "completed":"2016-10-03T09:59:19.415Z", + "new_balance":"6326.31", + "value":"-46.80" + } + }, + { + "id":"ba2881af-9a3d-4c86-ace1-754c5dedf330", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T18:10:10.736Z", + "completed":"2016-10-03T18:10:10.736Z", + "new_balance":"6308.69", + "value":"-17.62" + } + }, + { + "id":"44cc611c-9ff2-48ba-bb2a-26ba1b90ed45", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T05:07:34.713Z", + "completed":"2016-10-05T05:07:34.713Z", + "new_balance":"6297.78", + "value":"-10.91" + } + }, + { + "id":"7d4e4677-ae89-4e72-9aad-bfaef0fb4bd5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T15:46:58.145Z", + "completed":"2016-10-05T15:46:58.145Z", + "new_balance":"6290.79", + "value":"-6.99" + } + }, + { + "id":"fa338b94-1609-401f-8fb4-442630ee5212", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T13:14:37.339Z", + "completed":"2016-10-06T13:14:37.339Z", + "new_balance":"6265.86", + "value":"-24.93" + } + }, + { + "id":"384fe009-c388-4d63-8da7-4821fdcc1596", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T18:52:55.907Z", + "completed":"2016-10-09T18:52:55.907Z", + "new_balance":"6246.70", + "value":"-19.16" + } + }, + { + "id":"f876bb8f-7488-44bf-8653-7377ab132f24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T12:23:24.968Z", + "completed":"2016-10-10T12:23:24.968Z", + "new_balance":"6231.71", + "value":"-14.99" + } + }, + { + "id":"c182102d-e3d9-4e2c-ac40-7ff47caad05d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T13:46:31.658Z", + "completed":"2016-10-11T13:46:31.658Z", + "new_balance":"6202.55", + "value":"-29.16" + } + }, + { + "id":"ffba4577-fe3c-4e7e-ab87-339199aa6878", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:58:10.933Z", + "completed":"2016-10-11T17:58:10.933Z", + "new_balance":"6186.54", + "value":"-16.01" + } + }, + { + "id":"7b337291-1ac4-436a-9054-94f5c8984f0c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T13:03:36.411Z", + "completed":"2016-10-14T13:03:36.411Z", + "new_balance":"6081.82", + "value":"-104.72" + } + }, + { + "id":"6e9b371c-c6e4-4917-b5f4-cd5a6056b310", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T17:12:27.565Z", + "completed":"2016-10-14T17:12:27.565Z", + "new_balance":"6036.76", + "value":"-45.06" + } + }, + { + "id":"6aca22fb-fd14-4e99-adb7-6b232b4b1a60", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T04:37:50.031Z", + "completed":"2016-10-17T04:37:50.031Z", + "new_balance":"5992.28", + "value":"-44.48" + } + }, + { + "id":"50c86c21-715a-4456-b962-0dc541dda357", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T13:30:12.031Z", + "completed":"2016-10-18T13:30:12.031Z", + "new_balance":"5982.21", + "value":"-10.07" + } + }, + { + "id":"82367b20-1137-43c1-a505-9744441015ec", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T15:58:41.972Z", + "completed":"2016-10-18T15:58:41.972Z", + "new_balance":"5903.13", + "value":"-79.08" + } + }, + { + "id":"de1d156e-b832-4d3e-9513-96c00422f7e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T23:37:19.361Z", + "completed":"2016-10-18T23:37:19.361Z", + "new_balance":"5897.36", + "value":"-5.77" + } + }, + { + "id":"e62eb857-d124-4302-96ff-2e785c1f64cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T15:47:31.893Z", + "completed":"2016-10-23T15:47:31.893Z", + "new_balance":"5871.96", + "value":"-25.40" + } + }, + { + "id":"23e6d549-cad7-4736-8e9b-321606ddbfc9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T05:11:12.733Z", + "completed":"2016-10-24T05:11:12.733Z", + "new_balance":"5841.15", + "value":"-30.81" + } + }, + { + "id":"6aded5b6-187d-4cac-8a1e-376c0822d290", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T17:43:45.246Z", + "completed":"2016-10-24T17:43:45.246Z", + "new_balance":"5826.32", + "value":"-14.83" + } + }, + { + "id":"4f84360a-4e1e-423c-99c5-95f2c2bfcc7f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T04:15:15.154Z", + "completed":"2016-10-26T04:15:15.154Z", + "new_balance":"5819.33", + "value":"-6.99" + } + }, + { + "id":"954e5e39-e9a0-4456-b0d4-86bb9965b601", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T12:35:07.703Z", + "completed":"2016-10-30T12:35:07.703Z", + "new_balance":"5621.42", + "value":"-197.91" + } + }, + { + "id":"cb1c17fa-4b2c-4ab2-bbbc-0a85370c906c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:49:23.192Z", + "completed":"2016-10-30T15:49:23.192Z", + "new_balance":"5572.64", + "value":"-48.78" + } + }, + { + "id":"bc4dc28e-7fd5-4362-ad1e-0664e2d6294a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T04:23:56.710Z", + "completed":"2016-11-02T04:23:56.710Z", + "new_balance":"5566.15", + "value":"-6.49" + } + }, + { + "id":"8a3d0289-24b3-49aa-ab33-66dbc63265d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T13:43:42.702Z", + "completed":"2016-11-02T13:43:42.702Z", + "new_balance":"5402.67", + "value":"-163.48" + } + }, + { + "id":"cf7e8cef-2493-4542-92f1-1a7b14f7009f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T14:10:21.500Z", + "completed":"2016-11-02T14:10:21.500Z", + "new_balance":"5388.16", + "value":"-14.51" + } + }, + { + "id":"bae85444-9213-4f25-a89e-75cfd2d57835", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T21:43:39.326Z", + "completed":"2016-11-02T21:43:39.326Z", + "new_balance":"4980.59", + "value":"-407.57" + } + }, + { + "id":"7e69c22e-1985-4c59-9c0d-2bb2c22bb275", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T21:11:16.946Z", + "completed":"2016-11-06T21:11:16.946Z", + "new_balance":"4955.79", + "value":"-24.80" + } + }, + { + "id":"19badd77-a349-4a5a-8bf6-3896e019ae48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T23:06:40.250Z", + "completed":"2016-11-06T23:06:40.250Z", + "new_balance":"4926.63", + "value":"-29.16" + } + }, + { + "id":"4809ad50-6192-40cb-8f10-5eddf129d6c2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T03:28:37.213Z", + "completed":"2016-11-07T03:28:37.213Z", + "new_balance":"4885.28", + "value":"-41.35" + } + }, + { + "id":"900da4a2-195a-46f0-a4f7-9b5c481d5fb2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T07:09:42.339Z", + "completed":"2016-11-07T07:09:42.339Z", + "new_balance":"4780.56", + "value":"-104.72" + } + }, + { + "id":"6fb520c5-73ad-42d4-a3bb-c25b7dffd598", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T15:32:14.335Z", + "completed":"2016-11-09T15:32:14.335Z", + "new_balance":"5802.98", + "value":"1022.42" + } + }, + { + "id":"99495764-ae62-43d7-9956-dd4eb79d6e13", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:07:20.249Z", + "completed":"2016-11-14T05:07:20.249Z", + "new_balance":"5777.18", + "value":"-25.80" + } + }, + { + "id":"16812dbd-f4da-4591-8ecf-03ac1406b773", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T21:24:10.402Z", + "completed":"2016-11-14T21:24:10.402Z", + "new_balance":"5726.62", + "value":"-50.56" + } + }, + { + "id":"1d7886e5-d913-4558-a4a3-acdb99a1a7b7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T14:31:57.296Z", + "completed":"2016-11-16T14:31:57.296Z", + "new_balance":"5719.63", + "value":"-6.99" + } + }, + { + "id":"da72e46c-d180-43f5-9d1a-92044664cc0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T18:49:24.406Z", + "completed":"2016-11-20T18:49:24.406Z", + "new_balance":"5684.44", + "value":"-35.19" + } + }, + { + "id":"749eee81-5aad-404a-8cfb-2e61489b2c43", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T03:22:07.496Z", + "completed":"2016-11-23T03:22:07.496Z", + "new_balance":"5638.93", + "value":"-45.51" + } + }, + { + "id":"0d609256-6db5-4aeb-88fa-854a813e4e55", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T03:50:07.529Z", + "completed":"2016-11-23T03:50:07.529Z", + "new_balance":"5609.77", + "value":"-29.16" + } + }, + { + "id":"b01f8ddb-efd7-42b5-b6db-35de662c9b1c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T19:12:14.836Z", + "completed":"2016-11-23T19:12:14.836Z", + "new_balance":"5604.00", + "value":"-5.77" + } + }, + { + "id":"b1dea62e-2d08-4e0a-82a2-0ee230099996", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:41:04.697Z", + "completed":"2016-11-28T01:41:04.697Z", + "new_balance":"5595.60", + "value":"-8.40" + } + }, + { + "id":"819555a6-5bd8-4ffa-abc0-5415b85a1f4a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T02:53:14.798Z", + "completed":"2016-11-30T02:53:14.798Z", + "new_balance":"5397.69", + "value":"-197.91" + } + }, + { + "id":"59733305-57b0-4730-8705-0e35adc1c816", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T12:20:16.896Z", + "completed":"2016-11-30T12:20:16.896Z", + "new_balance":"5348.91", + "value":"-48.78" + } + }, + { + "id":"b75762e9-3553-45da-ac67-aa4fca8856e7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:55:34.986Z", + "completed":"2016-12-01T16:55:34.986Z", + "new_balance":"6371.33", + "value":"1022.42" + } + }, + { + "id":"39536561-5b73-4d8a-82ba-ebc620a0c7d0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T21:28:13.464Z", + "completed":"2016-12-01T21:28:13.464Z", + "new_balance":"5963.76", + "value":"-407.57" + } + }, + { + "id":"3a6f1801-cb32-4c2a-9614-fe483d77b19a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T18:11:06.266Z", + "completed":"2016-12-04T18:11:06.266Z", + "new_balance":"5946.76", + "value":"-17.00" + } + }, + { + "id":"0934bd69-e664-49fd-af36-29f99975dd80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T23:33:14.164Z", + "completed":"2016-12-04T23:33:14.164Z", + "new_balance":"5915.31", + "value":"-31.45" + } + }, + { + "id":"d5320fac-645d-477f-aa0e-0d8c96e14e52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T06:32:04.733Z", + "completed":"2016-12-11T06:32:04.733Z", + "new_balance":"5884.50", + "value":"-30.81" + } + }, + { + "id":"72afbaa9-4d6c-4baa-99cf-3a7d4ff71192", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T09:52:05.571Z", + "completed":"2016-12-11T09:52:05.571Z", + "new_balance":"5838.99", + "value":"-45.51" + } + }, + { + "id":"06ea80fd-5f64-4784-992a-ec0957721588", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T01:36:21.225Z", + "completed":"2016-12-14T01:36:21.225Z", + "new_balance":"5757.20", + "value":"-81.79" + } + }, + { + "id":"c9f728b8-b0f1-450d-9ddd-b6353d936b1f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T07:19:43.115Z", + "completed":"2016-12-14T07:19:43.115Z", + "new_balance":"5749.59", + "value":"-7.61" + } + }, + { + "id":"5accdde6-fbba-4500-abcc-3a24f3c4e022", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T09:50:03.949Z", + "completed":"2016-12-14T09:50:03.949Z", + "new_balance":"5743.82", + "value":"-5.77" + } + }, + { + "id":"19301b8d-1307-4df7-a132-775cb23ef23e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T10:53:37.728Z", + "completed":"2016-12-14T10:53:37.728Z", + "new_balance":"5729.76", + "value":"-14.06" + } + }, + { + "id":"c0d76b90-d635-41f6-acd7-de777819cafc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T11:04:22.003Z", + "completed":"2016-12-14T11:04:22.003Z", + "new_balance":"5723.99", + "value":"-5.77" + } + }, + { + "id":"6e4e4b47-3b28-4279-8f51-cd0fe8016b44", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T11:25:36.184Z", + "completed":"2016-12-14T11:25:36.184Z", + "new_balance":"5716.38", + "value":"-7.61" + } + }, + { + "id":"216b1727-0abf-40fb-b944-b537616c2ced", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T12:26:44.201Z", + "completed":"2016-12-14T12:26:44.201Z", + "new_balance":"5611.66", + "value":"-104.72" + } + }, + { + "id":"1aacfec2-c28e-49a4-ae0f-eec5f7c179d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T13:01:27.232Z", + "completed":"2016-12-14T13:01:27.232Z", + "new_balance":"5512.54", + "value":"-99.12" + } + }, + { + "id":"55bd29bd-628b-46f2-837a-edcf9fdaccd5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T20:45:30.262Z", + "completed":"2016-12-14T20:45:30.262Z", + "new_balance":"5467.00", + "value":"-45.54" + } + }, + { + "id":"f075e23c-b206-4fa8-9b03-aba8b8e9ca1e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T02:52:21.355Z", + "completed":"2016-12-15T02:52:21.355Z", + "new_balance":"5458.48", + "value":"-8.52" + } + }, + { + "id":"27d9aa7e-f40d-42e1-8256-18b3cbb5a0a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T08:16:29.458Z", + "completed":"2016-12-15T08:16:29.458Z", + "new_balance":"5426.14", + "value":"-32.34" + } + }, + { + "id":"c598afee-e6c7-47fd-b9df-fa85edb75c90", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T22:07:06.202Z", + "completed":"2016-12-15T22:07:06.202Z", + "new_balance":"5420.37", + "value":"-5.77" + } + }, + { + "id":"f8b2b993-700a-4d0d-8b8a-ae590394f082", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T03:11:40.635Z", + "completed":"2016-12-18T03:11:40.635Z", + "new_balance":"5414.60", + "value":"-5.77" + } + }, + { + "id":"96e557b8-8a1f-4c3f-8daf-6f47f2adc89e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T11:16:00.291Z", + "completed":"2016-12-18T11:16:00.291Z", + "new_balance":"5402.23", + "value":"-12.37" + } + }, + { + "id":"e511451b-6489-49e0-a6eb-ebc688fa837e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T13:45:21.959Z", + "completed":"2016-12-18T13:45:21.959Z", + "new_balance":"5300.97", + "value":"-101.26" + } + }, + { + "id":"4d6065d3-c514-4d94-9b14-2811ee85ed67", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T14:59:59.449Z", + "completed":"2016-12-18T14:59:59.449Z", + "new_balance":"5258.48", + "value":"-42.49" + } + }, + { + "id":"39625412-86f8-4515-b9d0-c70ffc09e764", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T16:05:05.465Z", + "completed":"2016-12-18T16:05:05.465Z", + "new_balance":"5234.18", + "value":"-24.30" + } + }, + { + "id":"d5049d4b-09ac-4a6a-b819-5e741a2a9730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T16:21:15.718Z", + "completed":"2016-12-18T16:21:15.718Z", + "new_balance":"5228.41", + "value":"-5.77" + } + }, + { + "id":"5c6b244d-641c-4c65-af60-5ba98d45e7d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:08:04.367Z", + "completed":"2016-12-18T20:08:04.367Z", + "new_balance":"5162.23", + "value":"-66.18" + } + }, + { + "id":"8f9e2ee3-ee85-423f-836d-ba69e47e5a9e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T21:59:01.142Z", + "completed":"2016-12-18T21:59:01.142Z", + "new_balance":"5143.07", + "value":"-19.16" + } + }, + { + "id":"d0b4dcb3-52b9-490a-acd1-a9bbc1ab9392", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:35:19.686Z", + "completed":"2016-12-19T06:35:19.686Z", + "new_balance":"5099.10", + "value":"-43.97" + } + }, + { + "id":"4cb5721f-4f6c-4446-ab69-4be417298562", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T15:55:27.646Z", + "completed":"2016-12-19T15:55:27.646Z", + "new_balance":"5050.21", + "value":"-48.89" + } + }, + { + "id":"c52c1f7b-1ddc-4d41-b278-a3b306f62993", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T21:30:46.990Z", + "completed":"2016-12-19T21:30:46.990Z", + "new_balance":"5007.98", + "value":"-42.23" + } + }, + { + "id":"c56ccb45-4d58-4693-a2df-092c4e105605", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T09:03:13.123Z", + "completed":"2016-12-21T09:03:13.123Z", + "new_balance":"4903.66", + "value":"-104.32" + } + }, + { + "id":"b7a4c214-5cd3-4ffd-b19a-d78639ce6e11", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T09:40:45.568Z", + "completed":"2016-12-21T09:40:45.568Z", + "new_balance":"4890.65", + "value":"-13.01" + } + }, + { + "id":"22fa62e1-9c68-44ac-a4e8-27c10ac691a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T17:44:23.417Z", + "completed":"2016-12-21T17:44:23.417Z", + "new_balance":"4793.15", + "value":"-97.50" + } + }, + { + "id":"7f25350f-42bc-4421-9adf-6861b633060a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T19:36:28.014Z", + "completed":"2016-12-21T19:36:28.014Z", + "new_balance":"4752.83", + "value":"-40.32" + } + }, + { + "id":"4a73a88a-ceef-4d33-aa56-55737e19f599", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T21:37:49.147Z", + "completed":"2016-12-21T21:37:49.147Z", + "new_balance":"4747.06", + "value":"-5.77" + } + }, + { + "id":"9cb549c2-7860-4bd2-830a-e1d2030a82c6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T03:56:42.411Z", + "completed":"2016-12-24T03:56:42.411Z", + "new_balance":"4732.87", + "value":"-14.19" + } + }, + { + "id":"53f9dc15-ebc6-4d22-9583-5ffb32efc62b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T11:22:21.522Z", + "completed":"2016-12-24T11:22:21.522Z", + "new_balance":"4707.25", + "value":"-25.62" + } + }, + { + "id":"60245522-de30-46c7-bc78-5adfc2f1f7a7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T17:39:16.680Z", + "completed":"2016-12-24T17:39:16.680Z", + "new_balance":"4694.46", + "value":"-12.79" + } + }, + { + "id":"99898db8-959b-4884-9622-5f9ea9c3d06d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T01:44:10.462Z", + "completed":"2016-12-30T01:44:10.462Z", + "new_balance":"4496.55", + "value":"-197.91" + } + }, + { + "id":"a7e52ebc-a735-421f-8dee-1647b7521105", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T17:19:21.321Z", + "completed":"2016-12-30T17:19:21.321Z", + "new_balance":"4447.77", + "value":"-48.78" + } + }, + { + "id":"ad429852-2257-4629-9f7c-6b3d8e86b29b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T07:07:21.933Z", + "completed":"2017-01-01T07:07:21.933Z", + "new_balance":"5470.19", + "value":"1022.42" + } + }, + { + "id":"98a03b26-e1b6-4798-9966-f081c6ab2ef1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T23:28:23.541Z", + "completed":"2017-01-01T23:28:23.541Z", + "new_balance":"7150.60", + "value":"1680.41" + } + }, + { + "id":"6d75c859-a4d2-416e-b3d3-9e5d57d1af15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T06:04:56.451Z", + "completed":"2017-01-02T06:04:56.451Z", + "new_balance":"6743.03", + "value":"-407.57" + } + }, + { + "id":"e5842e59-7dc9-4ede-bd03-1ae5db640280", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T02:02:08.877Z", + "completed":"2017-01-03T02:02:08.877Z", + "new_balance":"6736.65", + "value":"-6.38" + } + }, + { + "id":"84c294e1-aa8f-4609-aec2-103be7d42f1a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T03:56:44.937Z", + "completed":"2017-01-03T03:56:44.937Z", + "new_balance":"6689.85", + "value":"-46.80" + } + }, + { + "id":"16c9c6fb-9f94-4535-bff7-035515ddef06", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T23:19:49.796Z", + "completed":"2017-01-03T23:19:49.796Z", + "new_balance":"6672.23", + "value":"-17.62" + } + }, + { + "id":"aeb45c85-6646-4bbd-b0a3-9c1bdfa7c20b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T07:13:58.440Z", + "completed":"2017-01-04T07:13:58.440Z", + "new_balance":"6661.32", + "value":"-10.91" + } + }, + { + "id":"918fb47a-a458-4809-94e5-664c85acd4f0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:01:20.814Z", + "completed":"2017-01-05T19:01:20.814Z", + "new_balance":"6654.33", + "value":"-6.99" + } + }, + { + "id":"9a59b2fc-4cce-4a7d-b3a1-b0aa25e85b38", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T02:11:04.467Z", + "completed":"2017-01-07T02:11:04.467Z", + "new_balance":"6629.40", + "value":"-24.93" + } + }, + { + "id":"b873981c-266c-47e7-9a14-0b1a04ab76f4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T12:17:02.145Z", + "completed":"2017-01-07T12:17:02.145Z", + "new_balance":"6610.24", + "value":"-19.16" + } + }, + { + "id":"2db480fc-9bef-4a91-b58a-eddea4e8d949", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T07:00:41.010Z", + "completed":"2017-01-08T07:00:41.010Z", + "new_balance":"6594.23", + "value":"-16.01" + } + }, + { + "id":"5133cee5-8115-4fc1-a19f-bb91a9353008", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T21:53:52.813Z", + "completed":"2017-01-08T21:53:52.813Z", + "new_balance":"6579.24", + "value":"-14.99" + } + }, + { + "id":"4d0a0e7b-7da8-407c-9e2b-1ca3cd0c4829", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T09:03:39.330Z", + "completed":"2017-01-09T09:03:39.330Z", + "new_balance":"6550.08", + "value":"-29.16" + } + }, + { + "id":"3a03a64a-0361-4bbd-9bc1-1d4712b0801d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T15:22:28.928Z", + "completed":"2017-01-09T15:22:28.928Z", + "new_balance":"6505.02", + "value":"-45.06" + } + }, + { + "id":"2113747e-d539-4b55-a191-c4e9b7fa5c84", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T00:29:40.090Z", + "completed":"2017-01-10T00:29:40.090Z", + "new_balance":"6460.54", + "value":"-44.48" + } + }, + { + "id":"acfab024-70da-4f5f-86ee-d12b1cc9f83b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T01:15:13.441Z", + "completed":"2017-01-10T01:15:13.441Z", + "new_balance":"6355.82", + "value":"-104.72" + } + }, + { + "id":"91a1e173-bdcb-44d8-9e6a-dfd661b80cec", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T01:49:32.242Z", + "completed":"2017-01-11T01:49:32.242Z", + "new_balance":"6350.05", + "value":"-5.77" + } + }, + { + "id":"801b1a87-3225-419b-8853-f5bf687ef26d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T05:03:29.978Z", + "completed":"2017-01-11T05:03:29.978Z", + "new_balance":"6440.93", + "value":"90.88" + } + }, + { + "id":"cbfb41cd-64be-4e44-930f-1059362e8531", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T18:53:58.466Z", + "completed":"2017-01-11T18:53:58.466Z", + "new_balance":"6361.85", + "value":"-79.08" + } + }, + { + "id":"1baeab13-3da3-4723-82f4-15ba56bd04d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T16:13:30.393Z", + "completed":"2017-01-12T16:13:30.393Z", + "new_balance":"6351.78", + "value":"-10.07" + } + }, + { + "id":"35ae9926-b730-4796-9509-f6d5ab74eb72", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T20:38:28.655Z", + "completed":"2017-01-15T20:38:28.655Z", + "new_balance":"6326.38", + "value":"-25.40" + } + }, + { + "id":"a4185760-324d-48c2-b0ed-877734ed1935", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T20:18:49.787Z", + "completed":"2017-01-16T20:18:49.787Z", + "new_balance":"6295.57", + "value":"-30.81" + } + }, + { + "id":"7e3eaf12-6d4d-48c4-89f8-af79bf3344b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T04:38:20.828Z", + "completed":"2017-01-17T04:38:20.828Z", + "new_balance":"6280.74", + "value":"-14.83" + } + }, + { + "id":"ae956c2c-69dc-4c2a-8feb-7f451dc88458", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T17:42:37.483Z", + "completed":"2017-01-20T17:42:37.483Z", + "new_balance":"6273.75", + "value":"-6.99" + } + }, + { + "id":"5cef0dc3-320d-45a0-855c-90dbcc1d87b5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T13:42:02.658Z", + "completed":"2017-01-21T13:42:02.658Z", + "new_balance":"6224.97", + "value":"-48.78" + } + }, + { + "id":"0439d31d-d1d7-499a-babe-e678541c7407", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T10:17:23.530Z", + "completed":"2017-01-23T10:17:23.530Z", + "new_balance":"6027.06", + "value":"-197.91" + } + }, + { + "id":"89ee0f91-ae68-432a-abb1-cddc35b98944", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T04:22:35.580Z", + "completed":"2017-02-01T04:22:35.580Z", + "new_balance":"7049.48", + "value":"1022.42" + } + }, + { + "id":"e6fc9ab9-a264-45fa-a098-8d76d27f5fb6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T15:05:17.918Z", + "completed":"2017-02-03T15:05:17.918Z", + "new_balance":"6641.91", + "value":"-407.57" + } + }, + { + "id":"b0c420bb-17f4-44d8-b89a-9862d639ade8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T18:00:03.238Z", + "completed":"2017-02-03T18:00:03.238Z", + "new_balance":"6478.43", + "value":"-163.48" + } + }, + { + "id":"e73f9b16-b03d-442c-890f-c8d722a5c236", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T21:11:00.790Z", + "completed":"2017-02-04T21:11:00.790Z", + "new_balance":"6463.92", + "value":"-14.51" + } + }, + { + "id":"adf9f039-86a0-4406-81ab-589963efb49d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T07:20:26.470Z", + "completed":"2017-02-05T07:20:26.470Z", + "new_balance":"6457.43", + "value":"-6.49" + } + }, + { + "id":"fc0f5205-ac51-420f-b85f-d3d71d21aecf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:32:41.355Z", + "completed":"2017-02-06T14:32:41.355Z", + "new_balance":"6432.63", + "value":"-24.80" + } + }, + { + "id":"b319d2df-424d-4efa-95dc-aa612d3d33f5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T02:25:07.513Z", + "completed":"2017-02-07T02:25:07.513Z", + "new_balance":"6391.28", + "value":"-41.35" + } + }, + { + "id":"916b609a-ac75-417b-b4dd-c222c52d6d9c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T14:56:25.962Z", + "completed":"2017-02-07T14:56:25.962Z", + "new_balance":"6286.56", + "value":"-104.72" + } + }, + { + "id":"55a47155-d1b9-4395-b8b1-3dfc4d7a8075", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:43:52.545Z", + "completed":"2017-02-07T20:43:52.545Z", + "new_balance":"6257.40", + "value":"-29.16" + } + }, + { + "id":"ddf95bb2-491a-430c-869f-20f1c929f25f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:56:52.713Z", + "completed":"2017-02-08T07:56:52.713Z", + "new_balance":"6206.84", + "value":"-50.56" + } + }, + { + "id":"7bb1d664-9388-4692-bd31-cfacf1ab2b10", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T10:05:57.831Z", + "completed":"2017-02-09T10:05:57.831Z", + "new_balance":"6181.04", + "value":"-25.80" + } + }, + { + "id":"746b6f69-f791-4766-a208-8bfa2539e9c3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T18:43:45.506Z", + "completed":"2017-02-10T18:43:45.506Z", + "new_balance":"6174.05", + "value":"-6.99" + } + }, + { + "id":"746507e9-bf00-42a1-bcf7-067f0dd368b1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T08:54:57.290Z", + "completed":"2017-02-12T08:54:57.290Z", + "new_balance":"6138.86", + "value":"-35.19" + } + }, + { + "id":"20c973da-1573-4046-83ea-0b31ef13fe0c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T00:41:01.195Z", + "completed":"2017-02-14T00:41:01.195Z", + "new_balance":"6109.70", + "value":"-29.16" + } + }, + { + "id":"9d62dbde-ec04-4f9e-887d-4def2f849370", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T13:06:49.047Z", + "completed":"2017-02-16T13:06:49.047Z", + "new_balance":"6103.93", + "value":"-5.77" + } + }, + { + "id":"35460678-f011-4d2a-a803-fb2c98b04633", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T22:13:06.971Z", + "completed":"2017-02-16T22:13:06.971Z", + "new_balance":"6058.42", + "value":"-45.51" + } + }, + { + "id":"ca29f7de-1245-44c8-ad46-0942643481a8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T09:24:11.203Z", + "completed":"2017-02-18T09:24:11.203Z", + "new_balance":"6050.02", + "value":"-8.40" + } + }, + { + "id":"25e3318d-3379-411a-89cf-5a3fed5cdb2d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T03:21:18.794Z", + "completed":"2017-02-21T03:21:18.794Z", + "new_balance":"6001.24", + "value":"-48.78" + } + }, + { + "id":"84efb6d1-225e-4747-bf15-6a198defe21f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T05:12:31.731Z", + "completed":"2017-02-21T05:12:31.731Z", + "new_balance":"6115.38", + "value":"114.14" + } + }, + { + "id":"5cde21d4-5db9-4eea-bc81-5fbf820088fc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T12:05:13.263Z", + "completed":"2017-02-27T12:05:13.263Z", + "new_balance":"5917.47", + "value":"-197.91" + } + }, + { + "id":"9f189544-a6ed-46a2-a726-61fae801b279", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T06:29:47.693Z", + "completed":"2017-03-01T06:29:47.693Z", + "new_balance":"6939.89", + "value":"1022.42" + } + }, + { + "id":"1c2de7d0-fdde-4efd-b3d2-d03a5921fcb1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T23:00:36.773Z", + "completed":"2017-03-03T23:00:36.773Z", + "new_balance":"6532.32", + "value":"-407.57" + } + }, + { + "id":"2358a816-4a8b-4d64-a6ba-3f3817c1ae5b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T09:11:42.853Z", + "completed":"2017-03-04T09:11:42.853Z", + "new_balance":"6501.51", + "value":"-30.81" + } + }, + { + "id":"cd2de8b9-9522-4712-a571-cadf74659b07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T15:22:10.271Z", + "completed":"2017-03-04T15:22:10.271Z", + "new_balance":"6470.06", + "value":"-31.45" + } + }, + { + "id":"46a56263-86c7-4452-a66d-051ddf79b9a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T21:30:25.673Z", + "completed":"2017-03-04T21:30:25.673Z", + "new_balance":"6424.55", + "value":"-45.51" + } + }, + { + "id":"2c827e09-3dbc-4324-bcd7-f5214b3f8604", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T23:25:51.838Z", + "completed":"2017-03-04T23:25:51.838Z", + "new_balance":"6407.55", + "value":"-17.00" + } + }, + { + "id":"7fcecc8f-8c59-41d1-9cb0-0007b94e5b0e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T02:43:22.625Z", + "completed":"2017-03-05T02:43:22.625Z", + "new_balance":"6302.83", + "value":"-104.72" + } + }, + { + "id":"32517c27-7d78-4e07-a69f-0bfef0a3b6f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T15:25:00.628Z", + "completed":"2017-03-05T15:25:00.628Z", + "new_balance":"6257.29", + "value":"-45.54" + } + }, + { + "id":"68309a27-54bc-4d34-9e67-a6486288271c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T19:18:36.911Z", + "completed":"2017-03-05T19:18:36.911Z", + "new_balance":"6243.23", + "value":"-14.06" + } + }, + { + "id":"406c25c6-e80a-4c03-9a16-1411e587d586", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T22:27:42.367Z", + "completed":"2017-03-05T22:27:42.367Z", + "new_balance":"6237.46", + "value":"-5.77" + } + }, + { + "id":"1316e4e1-3447-41e8-b705-c12f51c8c85a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T13:57:32.675Z", + "completed":"2017-03-06T13:57:32.675Z", + "new_balance":"6155.67", + "value":"-81.79" + } + }, + { + "id":"15c79a57-747d-4dcf-9b3b-0d6829ec70d5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T23:32:40.139Z", + "completed":"2017-03-06T23:32:40.139Z", + "new_balance":"6056.55", + "value":"-99.12" + } + }, + { + "id":"ffd18332-dc25-4220-9f87-68e87f37c7e5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T01:51:50.526Z", + "completed":"2017-03-07T01:51:50.526Z", + "new_balance":"6048.94", + "value":"-7.61" + } + }, + { + "id":"a131548f-f89e-42ab-884e-17f12a86cd80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T19:16:47.124Z", + "completed":"2017-03-07T19:16:47.124Z", + "new_balance":"6043.17", + "value":"-5.77" + } + }, + { + "id":"d97315ca-735c-4608-91aa-03dcd7fa9027", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T02:37:47.291Z", + "completed":"2017-03-08T02:37:47.291Z", + "new_balance":"6035.56", + "value":"-7.61" + } + }, + { + "id":"1c842bd1-c34c-44de-87d7-fc7fb0f64497", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:57:20.677Z", + "completed":"2017-03-08T16:57:20.677Z", + "new_balance":"6027.04", + "value":"-8.52" + } + }, + { + "id":"682e5333-5597-443b-a823-989ff843b2dc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T08:56:58.770Z", + "completed":"2017-03-10T08:56:58.770Z", + "new_balance":"5994.70", + "value":"-32.34" + } + }, + { + "id":"e9b2f36e-766a-4e8a-851b-3c41881dbfe4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T01:33:49.565Z", + "completed":"2017-03-11T01:33:49.565Z", + "new_balance":"5982.33", + "value":"-12.37" + } + }, + { + "id":"b2ba6fe8-5086-4324-a786-d6845b53197d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T10:27:06.867Z", + "completed":"2017-03-11T10:27:06.867Z", + "new_balance":"5976.56", + "value":"-5.77" + } + }, + { + "id":"ab04425f-779e-44f6-bcee-7975fad7c74c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T18:29:39.943Z", + "completed":"2017-03-11T18:29:39.943Z", + "new_balance":"5952.26", + "value":"-24.30" + } + }, + { + "id":"08ce6f2e-8f7d-4779-b350-1433924a57cc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T06:12:36.398Z", + "completed":"2017-03-12T06:12:36.398Z", + "new_balance":"5886.08", + "value":"-66.18" + } + }, + { + "id":"9e3aca2c-f3f4-44d5-aeb4-6644496e7026", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T11:52:15.134Z", + "completed":"2017-03-12T11:52:15.134Z", + "new_balance":"5784.82", + "value":"-101.26" + } + }, + { + "id":"dd886176-277c-4029-af9e-8c5aa42d27ad", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T13:27:52.430Z", + "completed":"2017-03-12T13:27:52.430Z", + "new_balance":"5765.66", + "value":"-19.16" + } + }, + { + "id":"4a7b0ef5-3de4-407a-ab5e-74394659c730", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T18:04:15.025Z", + "completed":"2017-03-12T18:04:15.025Z", + "new_balance":"5759.89", + "value":"-5.77" + } + }, + { + "id":"8afeaf83-536d-42ec-940b-22a4fb96581f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T12:56:36.812Z", + "completed":"2017-03-13T12:56:36.812Z", + "new_balance":"5754.12", + "value":"-5.77" + } + }, + { + "id":"d8e23e68-d4e4-4831-87b4-2ae94bf91bdd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T22:01:56.769Z", + "completed":"2017-03-13T22:01:56.769Z", + "new_balance":"5711.63", + "value":"-42.49" + } + }, + { + "id":"38517be4-7eef-41c4-8e94-84fa180205f0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T17:49:46.250Z", + "completed":"2017-03-15T17:49:46.250Z", + "new_balance":"5662.74", + "value":"-48.89" + } + }, + { + "id":"13ccc869-2413-4715-a0df-cb7e8c1c2a4c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T23:37:58.143Z", + "completed":"2017-03-15T23:37:58.143Z", + "new_balance":"5620.51", + "value":"-42.23" + } + }, + { + "id":"1bf1cd46-52fd-4d84-b9dd-b4ab5b4f8bc6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T22:13:28.753Z", + "completed":"2017-03-17T22:13:28.753Z", + "new_balance":"5576.54", + "value":"-43.97" + } + }, + { + "id":"dc15adb0-b673-4e16-8212-bf294ddeea5c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T09:30:45.988Z", + "completed":"2017-03-18T09:30:45.988Z", + "new_balance":"5479.04", + "value":"-97.50" + } + }, + { + "id":"fbc453b0-2f32-49fe-a04a-2793b498ee42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T02:43:36.697Z", + "completed":"2017-03-20T02:43:36.697Z", + "new_balance":"5374.72", + "value":"-104.32" + } + }, + { + "id":"99599370-6fc5-4f7f-99d5-32935ef8e4b9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T07:09:54.474Z", + "completed":"2017-03-22T07:09:54.474Z", + "new_balance":"5334.40", + "value":"-40.32" + } + }, + { + "id":"c2d6ea0a-e184-4db7-a6ed-2d2f61ddf81d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T07:15:20.661Z", + "completed":"2017-03-25T07:15:20.661Z", + "new_balance":"5328.63", + "value":"-5.77" + } + }, + { + "id":"3469a414-c5ab-4548-ad7b-ecde7d5d53ab", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T18:54:07.513Z", + "completed":"2017-03-25T18:54:07.513Z", + "new_balance":"5315.62", + "value":"-13.01" + } + }, + { + "id":"459a041b-c56d-4fcc-9040-02ca5bffde2c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T15:56:59.609Z", + "completed":"2017-03-26T15:56:59.609Z", + "new_balance":"5290.00", + "value":"-25.62" + } + }, + { + "id":"c247370b-3dc7-4981-957f-3ac86d3fcd27", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T20:07:45.274Z", + "completed":"2017-03-26T20:07:45.274Z", + "new_balance":"5277.21", + "value":"-12.79" + } + }, + { + "id":"81f59bcc-6477-4339-804d-9f9b6967b18c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T03:21:56.651Z", + "completed":"2017-03-27T03:21:56.651Z", + "new_balance":"5263.02", + "value":"-14.19" + } + }, + { + "id":"0a3a0592-f0b6-42d2-b327-48ce206e4989", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T03:02:08.287Z", + "completed":"2017-03-28T03:02:08.287Z", + "new_balance":"5214.24", + "value":"-48.78" + } + }, + { + "id":"06827bbe-6d39-465d-90cc-7b2417ec6825", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T14:26:08.010Z", + "completed":"2017-03-31T14:26:08.010Z", + "new_balance":"5016.33", + "value":"-197.91" + } + }, + { + "id":"39264fc0-9a5b-4be5-b42c-48b0133a54b7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T01:19:00.042Z", + "completed":"2017-04-01T01:19:00.042Z", + "new_balance":"4608.76", + "value":"-407.57" + } + }, + { + "id":"e8eaf65b-f647-44f3-a10a-9b90645a5065", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:26:04.540Z", + "completed":"2017-04-01T21:26:04.540Z", + "new_balance":"5631.18", + "value":"1022.42" + } + }, + { + "id":"d39d3404-6976-48ba-bcf4-58d2a8993d6c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:54:05.490Z", + "completed":"2017-04-01T21:54:05.490Z", + "new_balance":"7311.59", + "value":"1680.41" + } + }, + { + "id":"03000249-c816-4859-bf0f-0b6c9101d47b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T02:20:58.823Z", + "completed":"2017-04-03T02:20:58.823Z", + "new_balance":"7264.79", + "value":"-46.80" + } + }, + { + "id":"548dbdec-da93-4151-816c-c82d1b4b79cb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T10:30:09.780Z", + "completed":"2017-04-03T10:30:09.780Z", + "new_balance":"7247.17", + "value":"-17.62" + } + }, + { + "id":"4c8ff7b9-ee56-4408-822a-c73c1c6ca042", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T11:11:21.962Z", + "completed":"2017-04-03T11:11:21.962Z", + "new_balance":"7240.79", + "value":"-6.38" + } + }, + { + "id":"bcf624ea-b5de-42c6-b17a-96714c435957", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T12:53:04.492Z", + "completed":"2017-04-05T12:53:04.492Z", + "new_balance":"7233.80", + "value":"-6.99" + } + }, + { + "id":"e7f5b6a0-90d6-4f58-94ef-998d48d06f10", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T22:52:56.729Z", + "completed":"2017-04-05T22:52:56.729Z", + "new_balance":"7222.89", + "value":"-10.91" + } + }, + { + "id":"b0b17426-0c71-4733-80b8-9ecc177143bd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T10:06:55.901Z", + "completed":"2017-04-06T10:06:55.901Z", + "new_balance":"7197.96", + "value":"-24.93" + } + }, + { + "id":"4bbbe51a-df12-4049-baf8-ca026b2b4fa2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T19:58:55.768Z", + "completed":"2017-04-09T19:58:55.768Z", + "new_balance":"7178.80", + "value":"-19.16" + } + }, + { + "id":"daf9af67-7923-4331-893f-40b2283dd30a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T13:01:01.193Z", + "completed":"2017-04-10T13:01:01.193Z", + "new_balance":"7163.81", + "value":"-14.99" + } + }, + { + "id":"14c21ef4-b11c-406a-bacc-78c511daa7fd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:39:14.964Z", + "completed":"2017-04-11T04:39:14.964Z", + "new_balance":"7147.80", + "value":"-16.01" + } + }, + { + "id":"1b2639bc-6d7e-4a48-b8d4-d23042ed57b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T08:12:01.314Z", + "completed":"2017-04-11T08:12:01.314Z", + "new_balance":"7118.64", + "value":"-29.16" + } + }, + { + "id":"dfa2ff32-4f60-41c3-8ded-ab0a12966e20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T18:43:21.721Z", + "completed":"2017-04-13T18:43:21.721Z", + "new_balance":"7073.58", + "value":"-45.06" + } + }, + { + "id":"10fef9e9-978a-409e-bbc1-e5d323d15dc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T20:48:32.205Z", + "completed":"2017-04-13T20:48:32.205Z", + "new_balance":"6968.86", + "value":"-104.72" + } + }, + { + "id":"8026deaf-d872-4f43-8b51-4bdd002b0819", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T02:44:43.577Z", + "completed":"2017-04-15T02:44:43.577Z", + "new_balance":"6924.38", + "value":"-44.48" + } + }, + { + "id":"04514984-e54e-45bc-9f38-031e18683bfe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T01:48:22.243Z", + "completed":"2017-04-16T01:48:22.243Z", + "new_balance":"6914.31", + "value":"-10.07" + } + }, + { + "id":"0b0013ac-ca81-465a-84f5-040984058ce6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T03:19:55.773Z", + "completed":"2017-04-16T03:19:55.773Z", + "new_balance":"6908.54", + "value":"-5.77" + } + }, + { + "id":"8b9f07a6-0cb3-4c40-8f0b-33362b5ca96d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T09:40:35.962Z", + "completed":"2017-04-18T09:40:35.962Z", + "new_balance":"6829.46", + "value":"-79.08" + } + }, + { + "id":"dd1e8c72-2e47-4f6e-8d60-8b7bb0057069", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T03:43:56.436Z", + "completed":"2017-04-23T03:43:56.436Z", + "new_balance":"6804.06", + "value":"-25.40" + } + }, + { + "id":"4b5b99c3-c428-497d-b158-b2fcdf5d400c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T00:14:03.512Z", + "completed":"2017-04-24T00:14:03.512Z", + "new_balance":"6773.25", + "value":"-30.81" + } + }, + { + "id":"e21f018c-6e3a-4a4e-9dbe-6fa13dd4cc48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T08:27:29.277Z", + "completed":"2017-04-24T08:27:29.277Z", + "new_balance":"6758.42", + "value":"-14.83" + } + }, + { + "id":"8996a556-fd05-47c9-8851-6fdb1044ac36", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T20:17:58.820Z", + "completed":"2017-04-26T20:17:58.820Z", + "new_balance":"6751.43", + "value":"-6.99" + } + }, + { + "id":"bd4ae5e0-2456-439f-8827-72b5a411286c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T00:14:46.773Z", + "completed":"2017-04-28T00:14:46.773Z", + "new_balance":"6702.65", + "value":"-48.78" + } + }, + { + "id":"4bd50179-62be-4120-9131-df449170f7af", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T13:09:10.609Z", + "completed":"2017-04-28T13:09:10.609Z", + "new_balance":"6504.74", + "value":"-197.91" + } + }, + { + "id":"2fe180ff-605f-4408-bdfe-115037a78061", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T01:16:14.055Z", + "completed":"2017-05-02T01:16:14.055Z", + "new_balance":"6341.26", + "value":"-163.48" + } + }, + { + "id":"cc832183-2cef-45cf-9a83-9762b505d826", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T05:56:21.035Z", + "completed":"2017-05-02T05:56:21.035Z", + "new_balance":"6334.77", + "value":"-6.49" + } + }, + { + "id":"d4347610-f900-4350-b7e6-b0540bd7711e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T10:16:34.033Z", + "completed":"2017-05-02T10:16:34.033Z", + "new_balance":"6320.26", + "value":"-14.51" + } + }, + { + "id":"bdaa3108-fb4b-493a-ad16-aeea4576995e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T18:40:33.400Z", + "completed":"2017-05-02T18:40:33.400Z", + "new_balance":"5912.69", + "value":"-407.57" + } + }, + { + "id":"c7f60d6a-ccb7-416f-aa9a-2d88f13d4409", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T00:33:51.053Z", + "completed":"2017-05-06T00:33:51.053Z", + "new_balance":"5887.89", + "value":"-24.80" + } + }, + { + "id":"e3ee1ea2-6e97-4a13-a813-09d4808c1f2e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T03:19:22.980Z", + "completed":"2017-05-06T03:19:22.980Z", + "new_balance":"5858.73", + "value":"-29.16" + } + }, + { + "id":"0082e98f-a502-49b8-b5c9-cea99a79eb34", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T03:33:59.427Z", + "completed":"2017-05-07T03:33:59.427Z", + "new_balance":"5754.01", + "value":"-104.72" + } + }, + { + "id":"ec145203-6238-4d1b-ad76-95586631856c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T22:48:54.591Z", + "completed":"2017-05-07T22:48:54.591Z", + "new_balance":"5712.66", + "value":"-41.35" + } + }, + { + "id":"d9e6be3c-f5d2-4887-80fa-40055b966f7a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T18:01:00.532Z", + "completed":"2017-05-09T18:01:00.532Z", + "new_balance":"6735.08", + "value":"1022.42" + } + }, + { + "id":"437cf5be-679c-4119-a914-c151b12583a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T04:08:11.786Z", + "completed":"2017-05-14T04:08:11.786Z", + "new_balance":"6684.52", + "value":"-50.56" + } + }, + { + "id":"b8e75f2b-e572-4d8d-b100-ca9f1386897e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T12:24:31.440Z", + "completed":"2017-05-14T12:24:31.440Z", + "new_balance":"6658.72", + "value":"-25.80" + } + }, + { + "id":"08f20388-8563-4562-87b8-d816518f87b4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T10:49:34.117Z", + "completed":"2017-05-16T10:49:34.117Z", + "new_balance":"6651.73", + "value":"-6.99" + } + }, + { + "id":"137464ad-22fc-4b1d-a3cd-2fc0369d8b19", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T18:21:07.868Z", + "completed":"2017-05-21T18:21:07.868Z", + "new_balance":"6616.54", + "value":"-35.19" + } + }, + { + "id":"85e906ec-a83a-4e36-b45e-de2b14d32e49", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T08:16:45.799Z", + "completed":"2017-05-23T08:16:45.799Z", + "new_balance":"6587.38", + "value":"-29.16" + } + }, + { + "id":"dfe15577-f4ac-4229-b628-156d6fd84389", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T11:15:42.171Z", + "completed":"2017-05-23T11:15:42.171Z", + "new_balance":"6581.61", + "value":"-5.77" + } + }, + { + "id":"f6a08566-72d4-4fac-890e-d7a7ec33e385", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T08:49:38.837Z", + "completed":"2017-05-24T08:49:38.837Z", + "new_balance":"6536.10", + "value":"-45.51" + } + }, + { + "id":"f1570a4c-21fe-4ac3-841b-51925a54020f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:28:16.905Z", + "completed":"2017-05-27T07:28:16.905Z", + "new_balance":"6527.70", + "value":"-8.40" + } + }, + { + "id":"689204a0-5882-484c-baf1-1cc433b7b04f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T00:26:28.698Z", + "completed":"2017-05-30T00:26:28.698Z", + "new_balance":"6329.79", + "value":"-197.91" + } + }, + { + "id":"72310e83-830f-495d-b906-f400ca9b42e0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T06:40:16.285Z", + "completed":"2017-05-30T06:40:16.285Z", + "new_balance":"6281.01", + "value":"-48.78" + } + }, + { + "id":"d8611d92-4422-452c-bf34-d7a14a841e22", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T08:03:03.977Z", + "completed":"2017-06-01T08:03:03.977Z", + "new_balance":"5873.44", + "value":"-407.57" + } + }, + { + "id":"b87f72cd-807d-4f9b-a491-1a5ef7553b56", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T16:49:17.830Z", + "completed":"2017-06-01T16:49:17.830Z", + "new_balance":"6895.86", + "value":"1022.42" + } + }, + { + "id":"1c54b200-f552-480d-85e8-1c42ad22f2a4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:46:26.467Z", + "completed":"2017-06-04T06:46:26.467Z", + "new_balance":"6864.41", + "value":"-31.45" + } + }, + { + "id":"8503982c-f6cc-439e-aa18-3c4b4dd67197", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T07:58:19.055Z", + "completed":"2017-06-04T07:58:19.055Z", + "new_balance":"6847.41", + "value":"-17.00" + } + }, + { + "id":"d506e579-f70b-4270-a5cc-243f7c8b20d8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T11:27:05.095Z", + "completed":"2017-06-11T11:27:05.095Z", + "new_balance":"6801.90", + "value":"-45.51" + } + }, + { + "id":"3391bac7-47a7-4e82-9b62-32c3ea89f408", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T13:48:01.441Z", + "completed":"2017-06-11T13:48:01.441Z", + "new_balance":"6771.09", + "value":"-30.81" + } + }, + { + "id":"17202e82-9647-4488-8d08-e8e18e698fa7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T20:32:56.395Z", + "completed":"2017-06-12T20:32:56.395Z", + "new_balance":"6666.37", + "value":"-104.72" + } + }, + { + "id":"9dc32e8f-7e73-49d9-b4cb-5e87eb97fc09", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T21:33:24.303Z", + "completed":"2017-06-12T21:33:24.303Z", + "new_balance":"6660.60", + "value":"-5.77" + } + }, + { + "id":"606c7556-c5bf-4613-8370-1017ad4722e3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T22:11:55.000Z", + "completed":"2017-06-12T22:11:55.000Z", + "new_balance":"6646.54", + "value":"-14.06" + } + }, + { + "id":"6fc0b980-d755-47cb-b652-197dd0827305", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T11:04:33.234Z", + "completed":"2017-06-13T11:04:33.234Z", + "new_balance":"6564.75", + "value":"-81.79" + } + }, + { + "id":"17abf890-756c-4fbd-9d9c-de732726edc8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T11:30:12.729Z", + "completed":"2017-06-13T11:30:12.729Z", + "new_balance":"6519.21", + "value":"-45.54" + } + }, + { + "id":"2b55bb9b-4cd4-4bc0-a82b-7030d346ea9d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T23:46:06.915Z", + "completed":"2017-06-13T23:46:06.915Z", + "new_balance":"6420.09", + "value":"-99.12" + } + }, + { + "id":"888f20d5-3cad-4043-b72b-0a7e7e903585", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T01:35:56.118Z", + "completed":"2017-06-14T01:35:56.118Z", + "new_balance":"6412.48", + "value":"-7.61" + } + }, + { + "id":"4a7774f9-ca76-4540-87c9-e38be037a991", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:16:00.273Z", + "completed":"2017-06-14T06:16:00.273Z", + "new_balance":"6406.71", + "value":"-5.77" + } + }, + { + "id":"c5143b5b-4e96-4680-b296-14b31f4d58e2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T22:18:41.803Z", + "completed":"2017-06-14T22:18:41.803Z", + "new_balance":"6399.10", + "value":"-7.61" + } + }, + { + "id":"ae11ba0e-26d3-4560-a76d-f18d8071c581", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T04:26:11.736Z", + "completed":"2017-06-15T04:26:11.736Z", + "new_balance":"6390.58", + "value":"-8.52" + } + }, + { + "id":"b1f4eaff-7480-44ab-9419-8860d53ad75c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T05:25:37.666Z", + "completed":"2017-06-15T05:25:37.666Z", + "new_balance":"6358.24", + "value":"-32.34" + } + }, + { + "id":"b37b30f7-3a8d-4001-a1bd-fdd3c2b1a80d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T07:56:58.754Z", + "completed":"2017-06-15T07:56:58.754Z", + "new_balance":"6352.47", + "value":"-5.77" + } + }, + { + "id":"03cb601f-54bd-494c-881d-8b014180f159", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T12:25:50.628Z", + "completed":"2017-06-16T12:25:50.628Z", + "new_balance":"6328.17", + "value":"-24.30" + } + }, + { + "id":"d3841195-e0ca-4b35-9512-61ac5a0f9c60", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T21:47:12.799Z", + "completed":"2017-06-17T21:47:12.799Z", + "new_balance":"6315.80", + "value":"-12.37" + } + }, + { + "id":"7258ec3c-90ae-4940-bb18-0638fb9b5797", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T04:21:46.318Z", + "completed":"2017-06-18T04:21:46.318Z", + "new_balance":"6310.03", + "value":"-5.77" + } + }, + { + "id":"0ca40908-0988-4097-8aba-804cf1abd276", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T09:02:44.092Z", + "completed":"2017-06-18T09:02:44.092Z", + "new_balance":"6208.77", + "value":"-101.26" + } + }, + { + "id":"05a23780-d531-4900-9f36-7bfb8d2e6a15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T13:00:28.629Z", + "completed":"2017-06-18T13:00:28.629Z", + "new_balance":"6142.59", + "value":"-66.18" + } + }, + { + "id":"c4d7a0a4-3b28-4723-b244-afc858d73ac3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T17:27:44.009Z", + "completed":"2017-06-18T17:27:44.009Z", + "new_balance":"6123.43", + "value":"-19.16" + } + }, + { + "id":"3da69e8d-2f3e-452e-b011-3bc603141b8d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T19:44:33.412Z", + "completed":"2017-06-18T19:44:33.412Z", + "new_balance":"6117.66", + "value":"-5.77" + } + }, + { + "id":"cea7092b-8f53-49b7-a884-d180720016d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T21:31:20.324Z", + "completed":"2017-06-18T21:31:20.324Z", + "new_balance":"6075.17", + "value":"-42.49" + } + }, + { + "id":"c524c128-eca2-4500-ac55-438b6266caf3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T03:24:59.888Z", + "completed":"2017-06-19T03:24:59.888Z", + "new_balance":"6026.28", + "value":"-48.89" + } + }, + { + "id":"3b927887-0a3b-4c41-a007-c9f7384d3e5b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T07:04:17.649Z", + "completed":"2017-06-19T07:04:17.649Z", + "new_balance":"5984.05", + "value":"-42.23" + } + }, + { + "id":"79284ad7-5a91-44cf-af4b-b0a2066bc6ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T23:57:51.589Z", + "completed":"2017-06-19T23:57:51.589Z", + "new_balance":"5940.08", + "value":"-43.97" + } + }, + { + "id":"65024c80-70eb-4a63-b2ac-7ed6ff0e55d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T01:07:04.133Z", + "completed":"2017-06-21T01:07:04.133Z", + "new_balance":"5835.76", + "value":"-104.32" + } + }, + { + "id":"b7647732-8762-4dd5-8329-d89a24b4241f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T21:46:26.502Z", + "completed":"2017-06-21T21:46:26.502Z", + "new_balance":"5738.26", + "value":"-97.50" + } + }, + { + "id":"92d91995-3a53-4d1d-9181-44eaaf45c0d7", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T10:09:54.189Z", + "completed":"2017-06-22T10:09:54.189Z", + "new_balance":"5697.94", + "value":"-40.32" + } + }, + { + "id":"0b65f123-025c-42b8-9f31-f3eea86a9f31", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T15:10:07.204Z", + "completed":"2017-06-22T15:10:07.204Z", + "new_balance":"5692.17", + "value":"-5.77" + } + }, + { + "id":"00c1f162-b994-403e-aca6-d90ba5b0c740", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T22:10:39.203Z", + "completed":"2017-06-22T22:10:39.203Z", + "new_balance":"5679.16", + "value":"-13.01" + } + }, + { + "id":"1f2c5206-8c96-4025-8264-99e83802747b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T10:28:45.372Z", + "completed":"2017-06-23T10:28:45.372Z", + "new_balance":"5666.37", + "value":"-12.79" + } + }, + { + "id":"ef58b67a-9436-4bce-8543-f3985978c967", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T15:32:08.234Z", + "completed":"2017-06-24T15:32:08.234Z", + "new_balance":"5640.75", + "value":"-25.62" + } + }, + { + "id":"83be17dc-7152-4961-9480-7c97d5ad4e48", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T20:16:22.146Z", + "completed":"2017-06-26T20:16:22.146Z", + "new_balance":"5626.56", + "value":"-14.19" + } + }, + { + "id":"45e0f697-894c-4062-b1d2-cf4faa88489f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T11:57:01.876Z", + "completed":"2017-06-30T11:57:01.876Z", + "new_balance":"5577.78", + "value":"-48.78" + } + }, + { + "id":"4a9b0fd5-89c0-452d-a74f-5132d8368f6d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T23:46:04.763Z", + "completed":"2017-06-30T23:46:04.763Z", + "new_balance":"5379.87", + "value":"-197.91" + } + }, + { + "id":"9ef590e1-1dfd-4262-a9d8-93f77e4ea042", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T01:19:00.930Z", + "completed":"2017-07-01T01:19:00.930Z", + "new_balance":"7060.28", + "value":"1680.41" + } + }, + { + "id":"6deda586-3458-46f9-9386-cf38bc947d4d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T03:37:11.920Z", + "completed":"2017-07-01T03:37:11.920Z", + "new_balance":"8082.70", + "value":"1022.42" + } + }, + { + "id":"bbb1c7d1-d14f-4557-a9e0-046851ef3408", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T07:28:07.450Z", + "completed":"2017-07-03T07:28:07.450Z", + "new_balance":"7675.13", + "value":"-407.57" + } + }, + { + "id":"51868644-c167-4a9c-92b1-97ec41da6be2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T02:30:15.073Z", + "completed":"2017-07-04T02:30:15.073Z", + "new_balance":"7628.33", + "value":"-46.80" + } + }, + { + "id":"9579a2d1-3acf-47b5-a02e-d56a67f8c920", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T13:14:52.524Z", + "completed":"2017-07-04T13:14:52.524Z", + "new_balance":"7610.71", + "value":"-17.62" + } + }, + { + "id":"ddf107ef-f971-47f2-8454-1a8b84fecd7d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T20:15:17.923Z", + "completed":"2017-07-04T20:15:17.923Z", + "new_balance":"7604.33", + "value":"-6.38" + } + }, + { + "id":"31a95079-4379-4d24-ab0f-3f58a6805cfd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T11:14:08.871Z", + "completed":"2017-07-05T11:14:08.871Z", + "new_balance":"7593.42", + "value":"-10.91" + } + }, + { + "id":"4aa62df7-2d9a-4dff-b796-920a1fc20baf", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T12:24:31.981Z", + "completed":"2017-07-07T12:24:31.981Z", + "new_balance":"7586.43", + "value":"-6.99" + } + }, + { + "id":"d516ab49-68cc-49f9-9ef6-a469dd5c758d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T00:31:12.637Z", + "completed":"2017-07-11T00:31:12.637Z", + "new_balance":"7571.44", + "value":"-14.99" + } + }, + { + "id":"360ebf42-1ee0-4f6f-a3bd-9b35854a1f15", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T01:40:30.617Z", + "completed":"2017-07-11T01:40:30.617Z", + "new_balance":"7546.51", + "value":"-24.93" + } + }, + { + "id":"2f145d72-ae49-4f35-8e86-3726fc751974", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T08:23:52.761Z", + "completed":"2017-07-11T08:23:52.761Z", + "new_balance":"7530.50", + "value":"-16.01" + } + }, + { + "id":"e68022c1-1a65-4c41-93b2-a0b9abc1dc52", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T12:08:12.406Z", + "completed":"2017-07-11T12:08:12.406Z", + "new_balance":"7501.34", + "value":"-29.16" + } + }, + { + "id":"311e2c57-e4cf-4600-ae6a-56c40402540b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T18:44:48.941Z", + "completed":"2017-07-11T18:44:48.941Z", + "new_balance":"7482.18", + "value":"-19.16" + } + }, + { + "id":"ce0ae499-50d3-44bc-9f6b-e32d90f020e6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T00:48:15.047Z", + "completed":"2017-07-13T00:48:15.047Z", + "new_balance":"7377.46", + "value":"-104.72" + } + }, + { + "id":"28e9b99e-429d-4061-95ef-23b963fb59a6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T14:47:10.116Z", + "completed":"2017-07-13T14:47:10.116Z", + "new_balance":"7332.40", + "value":"-45.06" + } + }, + { + "id":"ce455f31-7b1b-41bb-8783-ef3be8354177", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T09:15:10.149Z", + "completed":"2017-07-16T09:15:10.149Z", + "new_balance":"7423.28", + "value":"90.88" + } + }, + { + "id":"b7a9a6cb-db08-4600-a035-e80fa1dd6c05", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T15:34:32.208Z", + "completed":"2017-07-16T15:34:32.208Z", + "new_balance":"7378.80", + "value":"-44.48" + } + }, + { + "id":"73fee22f-78da-4b2a-bd77-3dda7301be07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T01:51:38.497Z", + "completed":"2017-07-17T01:51:38.497Z", + "new_balance":"7368.73", + "value":"-10.07" + } + }, + { + "id":"1be0e9ea-7dcd-4e26-9fea-a88fa0227c24", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T18:59:00.567Z", + "completed":"2017-07-17T18:59:00.567Z", + "new_balance":"7362.96", + "value":"-5.77" + } + }, + { + "id":"d6747b19-ae9e-452b-8585-6cdecf94cd01", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T22:18:08.056Z", + "completed":"2017-07-19T22:18:08.056Z", + "new_balance":"7283.88", + "value":"-79.08" + } + }, + { + "id":"10adc784-b103-42d0-8e7d-d6f7f5593997", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T09:10:40.753Z", + "completed":"2017-07-21T09:10:40.753Z", + "new_balance":"7258.48", + "value":"-25.40" + } + }, + { + "id":"9edee723-59da-4a71-a9ec-edf5c2f7ea78", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T15:28:11.347Z", + "completed":"2017-07-23T15:28:11.347Z", + "new_balance":"7227.67", + "value":"-30.81" + } + }, + { + "id":"ceeba6a2-7cf7-4de1-bb3c-175e7bcc069f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:13:38.783Z", + "completed":"2017-07-25T03:13:38.783Z", + "new_balance":"7212.84", + "value":"-14.83" + } + }, + { + "id":"16e9f110-ae8d-4e4c-9411-22afea5d7787", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T02:51:07.076Z", + "completed":"2017-07-27T02:51:07.076Z", + "new_balance":"7205.85", + "value":"-6.99" + } + }, + { + "id":"3885c0fa-0207-4803-ab01-8f606b6d03c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T01:41:39.125Z", + "completed":"2017-07-28T01:41:39.125Z", + "new_balance":"7157.07", + "value":"-48.78" + } + }, + { + "id":"d304d488-0e6b-4de9-8586-1b3430085a19", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T10:50:34.047Z", + "completed":"2017-07-28T10:50:34.047Z", + "new_balance":"6959.16", + "value":"-197.91" + } + }, + { + "id":"596b3eac-e9e7-4b57-b0c1-851005048511", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T20:33:27.536Z", + "completed":"2017-08-01T20:33:27.536Z", + "new_balance":"7981.58", + "value":"1022.42" + } + }, + { + "id":"0a784634-eedd-4406-8423-48ed7dc1f099", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T16:23:00.471Z", + "completed":"2017-08-03T16:23:00.471Z", + "new_balance":"7574.01", + "value":"-407.57" + } + }, + { + "id":"127ad3d8-2b7e-4b75-8ad5-5e83a3d96199", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:17:12.685Z", + "completed":"2017-08-03T17:17:12.685Z", + "new_balance":"7410.53", + "value":"-163.48" + } + }, + { + "id":"cc264c4b-ea01-4699-8549-f443beaf7533", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T00:46:06.546Z", + "completed":"2017-08-04T00:46:06.546Z", + "new_balance":"7396.02", + "value":"-14.51" + } + }, + { + "id":"d42ca462-b391-47c7-86f5-ccc646ddc6e9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T07:20:14.895Z", + "completed":"2017-08-07T07:20:14.895Z", + "new_balance":"7366.86", + "value":"-29.16" + } + }, + { + "id":"6cb83fc3-c63c-4dd6-af81-7541c6d32d17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T10:05:05.909Z", + "completed":"2017-08-07T10:05:05.909Z", + "new_balance":"7342.06", + "value":"-24.80" + } + }, + { + "id":"1a379c1d-6f7d-427f-b316-9d59518a4571", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T21:11:56.968Z", + "completed":"2017-08-07T21:11:56.968Z", + "new_balance":"7335.57", + "value":"-6.49" + } + }, + { + "id":"c0642b05-e5af-40a8-951d-b4a0fe0fce6b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T01:13:01.196Z", + "completed":"2017-08-08T01:13:01.196Z", + "new_balance":"7294.22", + "value":"-41.35" + } + }, + { + "id":"98978779-d22c-4ae9-8dba-8c433a8ac30d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T08:04:40.244Z", + "completed":"2017-08-08T08:04:40.244Z", + "new_balance":"7243.66", + "value":"-50.56" + } + }, + { + "id":"6f07d633-ae48-42ef-889d-cc93aa06daef", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T23:16:45.239Z", + "completed":"2017-08-08T23:16:45.239Z", + "new_balance":"7138.94", + "value":"-104.72" + } + }, + { + "id":"b5c9568c-0202-488f-aa9b-e281a69667a5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T11:51:01.104Z", + "completed":"2017-08-09T11:51:01.104Z", + "new_balance":"7113.14", + "value":"-25.80" + } + }, + { + "id":"2d688e95-f14e-4fbb-9d3d-6c7d2089edb5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T02:44:46.415Z", + "completed":"2017-08-11T02:44:46.415Z", + "new_balance":"7106.15", + "value":"-6.99" + } + }, + { + "id":"ebad8b1f-5370-4eac-96a7-a336e2311460", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T06:30:25.014Z", + "completed":"2017-08-14T06:30:25.014Z", + "new_balance":"7070.96", + "value":"-35.19" + } + }, + { + "id":"a2fcb849-b44f-4455-a535-1819955aa986", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T05:43:56.389Z", + "completed":"2017-08-15T05:43:56.389Z", + "new_balance":"7041.80", + "value":"-29.16" + } + }, + { + "id":"b012bc32-9b90-49b0-9c94-78b8542eed37", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T02:26:44.968Z", + "completed":"2017-08-17T02:26:44.968Z", + "new_balance":"6996.29", + "value":"-45.51" + } + }, + { + "id":"f0101273-d9d4-45a3-ac2b-58eeb897e7fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T05:05:51.419Z", + "completed":"2017-08-17T05:05:51.419Z", + "new_balance":"6990.52", + "value":"-5.77" + } + }, + { + "id":"3386bd92-68ad-41a6-87bb-d8f1330ea9c0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T04:39:00.348Z", + "completed":"2017-08-19T04:39:00.348Z", + "new_balance":"6982.12", + "value":"-8.40" + } + }, + { + "id":"42f47687-2d59-4967-acd2-c268823b5074", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T23:41:02.571Z", + "completed":"2017-08-25T23:41:02.571Z", + "new_balance":"7096.26", + "value":"114.14" + } + }, + { + "id":"7a32eaf0-e874-451d-8de9-52256c0e4f80", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T12:47:59.976Z", + "completed":"2017-08-28T12:47:59.976Z", + "new_balance":"7047.48", + "value":"-48.78" + } + }, + { + "id":"20e9573c-7630-4389-8cc2-8b9f0d28c970", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T17:13:40.727Z", + "completed":"2017-08-28T17:13:40.727Z", + "new_balance":"6849.57", + "value":"-197.91" + } + }, + { + "id":"810edc81-2d8a-4b8e-8191-3946194ec795", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T09:30:04.005Z", + "completed":"2017-09-01T09:30:04.005Z", + "new_balance":"7871.99", + "value":"1022.42" + } + }, + { + "id":"cd666289-a133-4796-b789-6f02ece5f6b0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T17:15:47.656Z", + "completed":"2017-09-03T17:15:47.656Z", + "new_balance":"7464.42", + "value":"-407.57" + } + }, + { + "id":"42b40c54-65f9-4e13-b5d7-d8cc50bc0b72", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T02:05:50.929Z", + "completed":"2017-09-04T02:05:50.929Z", + "new_balance":"7433.61", + "value":"-30.81" + } + }, + { + "id":"ed7ab465-5568-4116-be17-4ec08d516992", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T07:11:56.256Z", + "completed":"2017-09-04T07:11:56.256Z", + "new_balance":"7416.61", + "value":"-17.00" + } + }, + { + "id":"5c53e620-839a-4288-8fcd-bedfd45c634e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T10:33:09.144Z", + "completed":"2017-09-04T10:33:09.144Z", + "new_balance":"7371.10", + "value":"-45.51" + } + }, + { + "id":"70f4053d-b519-4344-a72d-69e358763705", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:16:53.673Z", + "completed":"2017-09-04T19:16:53.673Z", + "new_balance":"7339.65", + "value":"-31.45" + } + }, + { + "id":"9a476fb4-75ae-4c32-8352-5eaab1404ad6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T03:14:33.195Z", + "completed":"2017-09-05T03:14:33.195Z", + "new_balance":"7333.88", + "value":"-5.77" + } + }, + { + "id":"eff03af6-4bff-409b-bd11-bd88eb4de5fe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T10:33:31.374Z", + "completed":"2017-09-05T10:33:31.374Z", + "new_balance":"7252.09", + "value":"-81.79" + } + }, + { + "id":"f928e440-1153-4d8c-ad0f-1671f36372a3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T11:03:13.002Z", + "completed":"2017-09-05T11:03:13.002Z", + "new_balance":"7147.37", + "value":"-104.72" + } + }, + { + "id":"02ca84a0-2ce6-488b-8578-af3c9e62c7f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T16:18:44.919Z", + "completed":"2017-09-05T16:18:44.919Z", + "new_balance":"7101.83", + "value":"-45.54" + } + }, + { + "id":"87ca5032-c229-4237-8d4c-35a26848d832", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T21:25:30.742Z", + "completed":"2017-09-05T21:25:30.742Z", + "new_balance":"7002.71", + "value":"-99.12" + } + }, + { + "id":"ba28d83a-38d1-4363-a226-52bff86c451c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T23:44:32.126Z", + "completed":"2017-09-05T23:44:32.126Z", + "new_balance":"6988.65", + "value":"-14.06" + } + }, + { + "id":"30c34ae2-2814-4f9f-a10f-d448c7a4d706", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T01:43:07.052Z", + "completed":"2017-09-07T01:43:07.052Z", + "new_balance":"6981.04", + "value":"-7.61" + } + }, + { + "id":"393e9073-80a9-4c4e-bed8-a026c4baa1a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:41:15.303Z", + "completed":"2017-09-07T03:41:15.303Z", + "new_balance":"6973.43", + "value":"-7.61" + } + }, + { + "id":"17c8d850-2988-4acf-8e1c-cb4ab6fc24d4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T04:10:28.684Z", + "completed":"2017-09-07T04:10:28.684Z", + "new_balance":"6967.66", + "value":"-5.77" + } + }, + { + "id":"16eef276-ee3e-46ea-86a9-cd90a12098f1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T14:11:38.868Z", + "completed":"2017-09-07T14:11:38.868Z", + "new_balance":"6959.14", + "value":"-8.52" + } + }, + { + "id":"3eb06f56-f47c-4dc3-a0b3-3e7b6cef65d6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T02:02:51.071Z", + "completed":"2017-09-10T02:02:51.071Z", + "new_balance":"6926.80", + "value":"-32.34" + } + }, + { + "id":"965b0ed6-fffc-40dc-8eac-c1832407fa2f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T01:34:12.763Z", + "completed":"2017-09-11T01:34:12.763Z", + "new_balance":"6921.03", + "value":"-5.77" + } + }, + { + "id":"37a08a52-c975-4abe-95de-a722eecf5949", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T17:30:21.358Z", + "completed":"2017-09-11T17:30:21.358Z", + "new_balance":"6908.66", + "value":"-12.37" + } + }, + { + "id":"14d0505c-ff7d-4680-9388-8c7efe8039cc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T19:50:43.825Z", + "completed":"2017-09-11T19:50:43.825Z", + "new_balance":"6884.36", + "value":"-24.30" + } + }, + { + "id":"3640baa6-f60f-45e8-afa9-4901574ce608", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T12:39:10.354Z", + "completed":"2017-09-12T12:39:10.354Z", + "new_balance":"6865.20", + "value":"-19.16" + } + }, + { + "id":"a019e963-9cad-4831-b60f-b0ac46343b8a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T21:55:22.117Z", + "completed":"2017-09-12T21:55:22.117Z", + "new_balance":"6799.02", + "value":"-66.18" + } + }, + { + "id":"0cc7b1ba-4f8d-4a34-a739-217a4e51d693", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T23:04:33.848Z", + "completed":"2017-09-12T23:04:33.848Z", + "new_balance":"6697.76", + "value":"-101.26" + } + }, + { + "id":"fef1b3b5-bdd1-4f34-882a-a2a594fd4648", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:55:08.717Z", + "completed":"2017-09-12T23:55:08.717Z", + "new_balance":"6691.99", + "value":"-5.77" + } + }, + { + "id":"1f908b2f-4193-4e21-8e6a-2f8ed388c650", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T10:42:51.350Z", + "completed":"2017-09-13T10:42:51.350Z", + "new_balance":"6649.50", + "value":"-42.49" + } + }, + { + "id":"2a44381b-c365-4bd3-a226-b98e669ba008", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T15:08:03.614Z", + "completed":"2017-09-14T15:08:03.614Z", + "new_balance":"6643.73", + "value":"-5.77" + } + }, + { + "id":"557c1acc-9841-4b13-80ad-b2afc6de8b53", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T22:26:18.912Z", + "completed":"2017-09-14T22:26:18.912Z", + "new_balance":"6601.50", + "value":"-42.23" + } + }, + { + "id":"463f86d6-eeef-4bfd-b2c7-1710032f7dde", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T04:29:46.154Z", + "completed":"2017-09-16T04:29:46.154Z", + "new_balance":"6552.61", + "value":"-48.89" + } + }, + { + "id":"0bb6c25c-a88b-49dc-ad53-57ec3ae04906", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T11:01:04.724Z", + "completed":"2017-09-18T11:01:04.724Z", + "new_balance":"6508.64", + "value":"-43.97" + } + }, + { + "id":"13319307-06a9-4f27-9bb7-4b58c3ae4c66", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T08:08:17.590Z", + "completed":"2017-09-21T08:08:17.590Z", + "new_balance":"6411.14", + "value":"-97.50" + } + }, + { + "id":"d90582ce-0a24-4e42-9546-78a51c0b6e39", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T10:03:24.607Z", + "completed":"2017-09-21T10:03:24.607Z", + "new_balance":"6306.82", + "value":"-104.32" + } + }, + { + "id":"ab1b06ee-8ae1-4d46-af40-589a6db99f0b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T21:05:41.991Z", + "completed":"2017-09-23T21:05:41.991Z", + "new_balance":"6266.50", + "value":"-40.32" + } + }, + { + "id":"6d539952-3cb3-455f-9915-dd19ead6785a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T16:34:00.186Z", + "completed":"2017-09-24T16:34:00.186Z", + "new_balance":"6260.73", + "value":"-5.77" + } + }, + { + "id":"56baf129-8943-44a7-b2a9-9fde14a8ac05", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T03:52:41.709Z", + "completed":"2017-09-26T03:52:41.709Z", + "new_balance":"6247.72", + "value":"-13.01" + } + }, + { + "id":"77553ff6-bed7-4512-ab6d-083ffd954778", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T08:47:22.271Z", + "completed":"2017-09-26T08:47:22.271Z", + "new_balance":"6234.93", + "value":"-12.79" + } + }, + { + "id":"126a0a47-c0bc-4a20-8c7f-dea3a19ad9c8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T19:32:53.552Z", + "completed":"2017-09-26T19:32:53.552Z", + "new_balance":"6209.31", + "value":"-25.62" + } + }, + { + "id":"d2175c0f-3b4e-4a55-af59-ccb2ba4cbadd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T15:16:03.462Z", + "completed":"2017-09-27T15:16:03.462Z", + "new_balance":"6195.12", + "value":"-14.19" + } + }, + { + "id":"322952bd-a435-4e79-bb49-ff52ed937b4a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T00:05:00.462Z", + "completed":"2017-09-28T00:05:00.462Z", + "new_balance":"6146.34", + "value":"-48.78" + } + }, + { + "id":"29ad7fd3-5124-448a-9e9f-63cf6b978718", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T05:49:54.774Z", + "completed":"2017-09-28T05:49:54.774Z", + "new_balance":"5948.43", + "value":"-197.91" + } + }, + { + "id":"fc3527c4-2e8d-46e2-ad17-09c300f42e44", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T00:17:54.778Z", + "completed":"2017-10-01T00:17:54.778Z", + "new_balance":"7628.84", + "value":"1680.41" + } + }, + { + "id":"4912b630-840f-4a96-a201-1cdf7bd14261", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T07:59:20.005Z", + "completed":"2017-10-01T07:59:20.005Z", + "new_balance":"8651.26", + "value":"1022.42" + } + }, + { + "id":"a37997ff-339b-408c-bf87-765fb144f3c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T19:02:16.648Z", + "completed":"2017-10-01T19:02:16.648Z", + "new_balance":"8243.69", + "value":"-407.57" + } + }, + { + "id":"9f6894d4-23b8-41a0-be2f-b745141f7474", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T01:19:15.510Z", + "completed":"2017-10-03T01:19:15.510Z", + "new_balance":"8196.89", + "value":"-46.80" + } + }, + { + "id":"9ef82bea-4765-438a-bd08-76e488c5b641", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T03:16:50.227Z", + "completed":"2017-10-03T03:16:50.227Z", + "new_balance":"8190.51", + "value":"-6.38" + } + }, + { + "id":"bd591bcd-5fb5-44ac-8de9-06cd5c176b28", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T12:05:49.534Z", + "completed":"2017-10-03T12:05:49.534Z", + "new_balance":"8172.89", + "value":"-17.62" + } + }, + { + "id":"e6c53b3f-9130-4c32-acaa-a436979c1840", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:22:29.565Z", + "completed":"2017-10-05T06:22:29.565Z", + "new_balance":"8165.90", + "value":"-6.99" + } + }, + { + "id":"8bf90e35-38a4-4d41-86d2-22813efbdd2f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T18:28:33.978Z", + "completed":"2017-10-05T18:28:33.978Z", + "new_balance":"8154.99", + "value":"-10.91" + } + }, + { + "id":"802eb8e5-7282-45b8-88b2-4955c7d55b20", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T10:07:33.389Z", + "completed":"2017-10-06T10:07:33.389Z", + "new_balance":"8130.06", + "value":"-24.93" + } + }, + { + "id":"d53961ff-14a2-4010-87c9-617a3d7f9d1a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T16:38:49.785Z", + "completed":"2017-10-09T16:38:49.785Z", + "new_balance":"8110.90", + "value":"-19.16" + } + }, + { + "id":"32549203-a42d-4216-afe2-20e1268395c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T09:51:32.157Z", + "completed":"2017-10-10T09:51:32.157Z", + "new_balance":"8095.91", + "value":"-14.99" + } + }, + { + "id":"8b6d2846-3f46-47d9-94d2-b89f7bf270d1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T02:11:00.266Z", + "completed":"2017-10-11T02:11:00.266Z", + "new_balance":"8066.75", + "value":"-29.16" + } + }, + { + "id":"b9021732-9f19-4750-87be-195806dd138c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T14:55:48.162Z", + "completed":"2017-10-11T14:55:48.162Z", + "new_balance":"8050.74", + "value":"-16.01" + } + }, + { + "id":"3031fc93-f2a3-4cc2-9ba2-bf7da63ee791", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T16:10:59.072Z", + "completed":"2017-10-14T16:10:59.072Z", + "new_balance":"8005.68", + "value":"-45.06" + } + }, + { + "id":"3775212d-c5b7-4bf0-9822-37dfc75fdacd", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T22:19:08.154Z", + "completed":"2017-10-14T22:19:08.154Z", + "new_balance":"7900.96", + "value":"-104.72" + } + }, + { + "id":"6873c79e-8cad-4886-b5e8-cf4c3f8fae21", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T11:12:02.886Z", + "completed":"2017-10-17T11:12:02.886Z", + "new_balance":"7856.48", + "value":"-44.48" + } + }, + { + "id":"20d8736f-a617-4f74-963f-17f5512438a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T03:00:40.705Z", + "completed":"2017-10-18T03:00:40.705Z", + "new_balance":"7777.40", + "value":"-79.08" + } + }, + { + "id":"00b428c5-21b3-49f5-ba82-983e485bc2ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T08:06:57.322Z", + "completed":"2017-10-18T08:06:57.322Z", + "new_balance":"7771.63", + "value":"-5.77" + } + }, + { + "id":"204ef257-6e5f-4f70-867a-bbcbb9e36c81", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T22:58:50.198Z", + "completed":"2017-10-18T22:58:50.198Z", + "new_balance":"7761.56", + "value":"-10.07" + } + }, + { + "id":"6b1cb17a-d99e-44a4-b86a-391ab1efbef8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T17:05:31.299Z", + "completed":"2017-10-23T17:05:31.299Z", + "new_balance":"7736.16", + "value":"-25.40" + } + }, + { + "id":"067c9c50-c501-4230-9279-a02894128c2c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T17:46:33.306Z", + "completed":"2017-10-24T17:46:33.306Z", + "new_balance":"7705.35", + "value":"-30.81" + } + }, + { + "id":"bda5cd42-e036-4c50-8d22-6457eb49476f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T20:39:58.757Z", + "completed":"2017-10-24T20:39:58.757Z", + "new_balance":"7690.52", + "value":"-14.83" + } + }, + { + "id":"5ec0b9d5-cf0e-4e76-af6e-f27509fc4180", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:59:01.529Z", + "completed":"2017-10-26T02:59:01.529Z", + "new_balance":"7683.53", + "value":"-6.99" + } + }, + { + "id":"934421f7-9d01-4501-90f7-438cb56e9e5d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T00:14:46.448Z", + "completed":"2017-10-30T00:14:46.448Z", + "new_balance":"7485.62", + "value":"-197.91" + } + }, + { + "id":"45c83d23-fb20-4f7e-8d95-edbfebc2d460", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T01:40:43.575Z", + "completed":"2017-10-30T01:40:43.575Z", + "new_balance":"7436.84", + "value":"-48.78" + } + }, + { + "id":"2f46a048-405b-4c60-ad78-47b6dbc9a1a2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:15:13.343Z", + "completed":"2017-11-02T02:15:13.343Z", + "new_balance":"7430.35", + "value":"-6.49" + } + }, + { + "id":"6b05ce5e-efe3-40b6-b6cb-d3682374c6c5", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T10:38:24.406Z", + "completed":"2017-11-02T10:38:24.406Z", + "new_balance":"7022.78", + "value":"-407.57" + } + }, + { + "id":"76aaf2b1-577d-4210-b934-6cbe22b9f9e6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T20:06:51.985Z", + "completed":"2017-11-02T20:06:51.985Z", + "new_balance":"6859.30", + "value":"-163.48" + } + }, + { + "id":"1fd4f873-a09a-4b30-927c-5cd83865bd65", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T20:08:47.374Z", + "completed":"2017-11-02T20:08:47.374Z", + "new_balance":"6844.79", + "value":"-14.51" + } + }, + { + "id":"19329680-f50c-4cff-8783-235539d28e17", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T07:31:20.573Z", + "completed":"2017-11-06T07:31:20.573Z", + "new_balance":"6815.63", + "value":"-29.16" + } + }, + { + "id":"41caabf9-8066-403f-a8d4-56cc704782f6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T12:49:04.641Z", + "completed":"2017-11-06T12:49:04.641Z", + "new_balance":"6790.83", + "value":"-24.80" + } + }, + { + "id":"e98dae89-1ed2-4fd4-851c-dd7a04bb0e7f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T00:19:15.472Z", + "completed":"2017-11-07T00:19:15.472Z", + "new_balance":"6686.11", + "value":"-104.72" + } + }, + { + "id":"f54ee4d2-2334-4787-be5d-b79d7be21d4e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T16:57:18.546Z", + "completed":"2017-11-07T16:57:18.546Z", + "new_balance":"6644.76", + "value":"-41.35" + } + }, + { + "id":"d14d6cd7-a59e-4926-a8ea-af292588ad07", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T20:07:03.710Z", + "completed":"2017-11-09T20:07:03.710Z", + "new_balance":"7667.18", + "value":"1022.42" + } + }, + { + "id":"23e858ee-0954-4682-947e-de321e2056b2", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:01:28.296Z", + "completed":"2017-11-14T05:01:28.296Z", + "new_balance":"7641.38", + "value":"-25.80" + } + }, + { + "id":"b45bfd85-23bc-443c-84c1-8121f7251850", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T22:55:01.093Z", + "completed":"2017-11-14T22:55:01.093Z", + "new_balance":"7590.82", + "value":"-50.56" + } + }, + { + "id":"bef66f38-003b-4cb9-bf2f-1ed34641d295", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T21:06:52.913Z", + "completed":"2017-11-16T21:06:52.913Z", + "new_balance":"7583.83", + "value":"-6.99" + } + }, + { + "id":"ca381ee5-3f0b-4996-a974-70f259f13603", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T15:12:11.442Z", + "completed":"2017-11-20T15:12:11.442Z", + "new_balance":"7548.64", + "value":"-35.19" + } + }, + { + "id":"8ba146fa-b4fd-48d7-9bf6-614125e0b037", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T12:39:59.729Z", + "completed":"2017-11-23T12:39:59.729Z", + "new_balance":"7519.48", + "value":"-29.16" + } + }, + { + "id":"a8276420-7610-48e6-ab7f-ed1870163ef3", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T14:14:12.443Z", + "completed":"2017-11-23T14:14:12.443Z", + "new_balance":"7473.97", + "value":"-45.51" + } + }, + { + "id":"3a99163f-5770-4ede-b682-0d29268a92ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T14:43:49.277Z", + "completed":"2017-11-23T14:43:49.277Z", + "new_balance":"7468.20", + "value":"-5.77" + } + }, + { + "id":"17191e4d-1750-4eb7-a79d-641ae595d6fb", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T10:07:05.151Z", + "completed":"2017-11-28T10:07:05.151Z", + "new_balance":"7459.80", + "value":"-8.40" + } + }, + { + "id":"3e2fcfe6-ef93-4530-a829-35df3e19c58d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T16:29:36.493Z", + "completed":"2017-11-30T16:29:36.493Z", + "new_balance":"7261.89", + "value":"-197.91" + } + }, + { + "id":"261ca6e7-24e9-4043-92b3-e927df0df211", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T17:15:55.589Z", + "completed":"2017-11-30T17:15:55.589Z", + "new_balance":"7213.11", + "value":"-48.78" + } + }, + { + "id":"788d8ad9-ec93-420a-88e8-eae31f25a63a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T04:29:57.421Z", + "completed":"2017-12-01T04:29:57.421Z", + "new_balance":"8235.53", + "value":"1022.42" + } + }, + { + "id":"c8c6ec7f-4071-4c92-9980-cb7a19c6ee4c", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T22:16:00.506Z", + "completed":"2017-12-01T22:16:00.506Z", + "new_balance":"7827.96", + "value":"-407.57" + } + }, + { + "id":"cb4f4103-ece6-4868-9bd7-532b3c5cc41f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:14:24.870Z", + "completed":"2017-12-04T07:14:24.870Z", + "new_balance":"7796.51", + "value":"-31.45" + } + }, + { + "id":"df42692d-d0d3-4271-b599-57906ff8b869", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T17:20:39.598Z", + "completed":"2017-12-04T17:20:39.598Z", + "new_balance":"7779.51", + "value":"-17.00" + } + }, + { + "id":"28b1dd3b-05aa-4052-ba1b-c77b4ceadeba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T14:13:06.257Z", + "completed":"2017-12-11T14:13:06.257Z", + "new_balance":"7748.70", + "value":"-30.81" + } + }, + { + "id":"cfb12185-e9dd-4bb1-9805-705d1672a3e8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T16:34:20.202Z", + "completed":"2017-12-11T16:34:20.202Z", + "new_balance":"7703.19", + "value":"-45.51" + } + }, + { + "id":"bfc3f1c2-f317-4732-8247-7d318cb6633f", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T00:32:45.344Z", + "completed":"2017-12-14T00:32:45.344Z", + "new_balance":"7604.07", + "value":"-99.12" + } + }, + { + "id":"5f276230-6585-439f-ae65-28ac95de9600", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T00:51:06.931Z", + "completed":"2017-12-14T00:51:06.931Z", + "new_balance":"7499.35", + "value":"-104.72" + } + }, + { + "id":"ab0283dc-b2e1-45a8-980e-de5ad26abfc4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:51:27.275Z", + "completed":"2017-12-14T03:51:27.275Z", + "new_balance":"7491.74", + "value":"-7.61" + } + }, + { + "id":"521ae5a1-2d59-45fe-8708-ae81bf286c6b", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T11:03:07.700Z", + "completed":"2017-12-14T11:03:07.700Z", + "new_balance":"7409.95", + "value":"-81.79" + } + }, + { + "id":"d3ba8368-6098-440d-b734-bae4ebd73019", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T13:28:13.051Z", + "completed":"2017-12-14T13:28:13.051Z", + "new_balance":"7404.18", + "value":"-5.77" + } + }, + { + "id":"f38f06b3-d73e-4219-b438-8c4a3a7dc3c4", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T19:04:18.494Z", + "completed":"2017-12-14T19:04:18.494Z", + "new_balance":"7358.64", + "value":"-45.54" + } + }, + { + "id":"6d988b3a-446c-433f-9938-dc8d86d94dbe", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T19:16:13.188Z", + "completed":"2017-12-14T19:16:13.188Z", + "new_balance":"7352.87", + "value":"-5.77" + } + }, + { + "id":"cc08cd53-75fb-464b-9f4a-2253884a1c67", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T20:51:11.709Z", + "completed":"2017-12-14T20:51:11.709Z", + "new_balance":"7345.26", + "value":"-7.61" + } + }, + { + "id":"0875e0df-b67e-483a-9018-3f8103268fd9", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T21:17:14.124Z", + "completed":"2017-12-14T21:17:14.124Z", + "new_balance":"7331.20", + "value":"-14.06" + } + }, + { + "id":"6b4806f0-0045-45e9-b8b1-2353c541ed14", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:28:44.586Z", + "completed":"2017-12-15T04:28:44.586Z", + "new_balance":"7322.68", + "value":"-8.52" + } + }, + { + "id":"5d93f4c2-24cb-4e14-bd28-ba674fd31648", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T10:17:11.778Z", + "completed":"2017-12-15T10:17:11.778Z", + "new_balance":"7290.34", + "value":"-32.34" + } + }, + { + "id":"b7713501-3eaf-4125-b0db-246615382a6d", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T16:35:10.064Z", + "completed":"2017-12-15T16:35:10.064Z", + "new_balance":"7284.57", + "value":"-5.77" + } + }, + { + "id":"72907114-60f4-4eb3-b6c9-ad311d390944", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T03:56:03.087Z", + "completed":"2017-12-18T03:56:03.087Z", + "new_balance":"7265.41", + "value":"-19.16" + } + }, + { + "id":"74f1c9a8-68b5-44f8-aab8-81438a5326ed", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T04:35:57.507Z", + "completed":"2017-12-18T04:35:57.507Z", + "new_balance":"7259.64", + "value":"-5.77" + } + }, + { + "id":"cb737287-fd5c-44d1-94c0-4e48ee42de42", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T05:19:04.558Z", + "completed":"2017-12-18T05:19:04.558Z", + "new_balance":"7158.38", + "value":"-101.26" + } + }, + { + "id":"9f43d344-3b19-488d-9f78-96358102638a", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T08:55:25.421Z", + "completed":"2017-12-18T08:55:25.421Z", + "new_balance":"7152.61", + "value":"-5.77" + } + }, + { + "id":"84f7cdf3-d646-4421-a7f4-0397b549a5ba", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T11:56:05.438Z", + "completed":"2017-12-18T11:56:05.438Z", + "new_balance":"7140.24", + "value":"-12.37" + } + }, + { + "id":"5060afc3-f459-455c-b8e8-bcf6e4753805", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T16:03:58.455Z", + "completed":"2017-12-18T16:03:58.455Z", + "new_balance":"7074.06", + "value":"-66.18" + } + }, + { + "id":"b30de0af-1d9a-49ad-9656-cce2e2661ad6", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T18:02:23.740Z", + "completed":"2017-12-18T18:02:23.740Z", + "new_balance":"7049.76", + "value":"-24.30" + } + }, + { + "id":"df64baba-b948-4f16-8277-23532d2cb727", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T21:02:21.508Z", + "completed":"2017-12-18T21:02:21.508Z", + "new_balance":"7007.27", + "value":"-42.49" + } + }, + { + "id":"596a0e07-230e-40cc-bcd8-d9820fa9f8a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:47:49.460Z", + "completed":"2017-12-19T11:47:49.460Z", + "new_balance":"6965.04", + "value":"-42.23" + } + }, + { + "id":"249ee9da-e353-4696-8c1c-ff3cd5ad56a1", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:35:55.333Z", + "completed":"2017-12-19T14:35:55.333Z", + "new_balance":"6921.07", + "value":"-43.97" + } + }, + { + "id":"2d205a00-64b7-4764-a230-88b1267455b8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T17:18:33.717Z", + "completed":"2017-12-19T17:18:33.717Z", + "new_balance":"6872.18", + "value":"-48.89" + } + }, + { + "id":"3bff6935-6183-4155-89d6-24a3c3d449a8", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T04:07:21.457Z", + "completed":"2017-12-21T04:07:21.457Z", + "new_balance":"6831.86", + "value":"-40.32" + } + }, + { + "id":"7c4b05db-64e6-4a2c-8327-f49de848ff71", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T12:19:14.931Z", + "completed":"2017-12-21T12:19:14.931Z", + "new_balance":"6734.36", + "value":"-97.50" + } + }, + { + "id":"3d255834-af1c-4282-8818-1bfa241ca3bc", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T13:34:09.104Z", + "completed":"2017-12-21T13:34:09.104Z", + "new_balance":"6630.04", + "value":"-104.32" + } + }, + { + "id":"a52fa4c8-37d9-4a2f-9d65-d2984859bf21", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T20:21:18.670Z", + "completed":"2017-12-21T20:21:18.670Z", + "new_balance":"6617.03", + "value":"-13.01" + } + }, + { + "id":"f5781902-79f2-4baa-a1ed-011246104b89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T20:25:25.917Z", + "completed":"2017-12-21T20:25:25.917Z", + "new_balance":"6611.26", + "value":"-5.77" + } + }, + { + "id":"03c0c17b-3130-4a41-a102-29c44ffd233e", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:18:53.417Z", + "completed":"2017-12-24T11:18:53.417Z", + "new_balance":"6585.64", + "value":"-25.62" + } + }, + { + "id":"a3a48a25-de2c-4e63-a5bc-bebb801742a0", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T12:13:15.919Z", + "completed":"2017-12-24T12:13:15.919Z", + "new_balance":"6571.45", + "value":"-14.19" + } + }, + { + "id":"bf8c3213-6dd2-452e-913c-295140b24f89", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:27:12.055Z", + "completed":"2017-12-24T23:27:12.055Z", + "new_balance":"6558.66", + "value":"-12.79" + } + }, + { + "id":"da648c8d-aac9-4ea9-8d8b-0f60623505aa", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:57:09.608Z", + "completed":"2017-12-30T14:57:09.608Z", + "new_balance":"6509.88", + "value":"-48.78" + } + }, + { + "id":"909d1301-a417-43ea-9f39-710ccc437449", + "this_account":{ + "id":"1d12661c-0855-4484-9a0a-ad6f44a387b1", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T20:35:19.501Z", + "completed":"2017-12-30T20:35:19.501Z", + "new_balance":"6311.97", + "value":"-197.91" + } + }, + { + "id":"7846579d-ef36-4706-863c-59b7a3a96ead", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T01:08:44.595Z", + "completed":"2016-01-01T01:08:44.595Z", + "new_balance":"20196.13", + "value":"-34.43" + } + }, + { + "id":"fea9df16-0c02-45f2-8c45-7ebab18cac8e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:45:49.473Z", + "completed":"2016-01-01T02:45:49.473Z", + "new_balance":"20061.65", + "value":"-134.48" + } + }, + { + "id":"85f5225d-9635-4c0f-a836-bba01682b3ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T05:56:56.572Z", + "completed":"2016-01-01T05:56:56.572Z", + "new_balance":"19551.11", + "value":"-510.54" + } + }, + { + "id":"d80d924c-3a6a-4bb4-85d2-a9e0a8a357ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T08:14:10.525Z", + "completed":"2016-01-01T08:14:10.525Z", + "new_balance":"19516.68", + "value":"-34.43" + } + }, + { + "id":"03401804-61a4-43e2-81d6-06cb88e35b7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T08:31:19.701Z", + "completed":"2016-01-01T08:31:19.701Z", + "new_balance":"19486.80", + "value":"-29.88" + } + }, + { + "id":"6bcd1230-176f-4454-8150-97ca6704b0be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T20:03:16.842Z", + "completed":"2016-01-01T20:03:16.842Z", + "new_balance":"19433.62", + "value":"-53.18" + } + }, + { + "id":"d151fa93-3124-4f10-88db-387205efb7cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T07:40:10.875Z", + "completed":"2016-01-02T07:40:10.875Z", + "new_balance":"19347.06", + "value":"-86.56" + } + }, + { + "id":"0c4e01b5-8e6d-4a7c-bc03-3d6b0205e3e1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T19:32:52.290Z", + "completed":"2016-01-02T19:32:52.290Z", + "new_balance":"19275.07", + "value":"-71.99" + } + }, + { + "id":"3b1bf01f-8fc0-4318-b839-a039022e0d11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T00:41:37.350Z", + "completed":"2016-01-04T00:41:37.350Z", + "new_balance":"19240.29", + "value":"-34.78" + } + }, + { + "id":"60c6596e-a1e4-489f-bc02-db31e1257227", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:20:17.916Z", + "completed":"2016-01-04T04:20:17.916Z", + "new_balance":"19203.10", + "value":"-37.19" + } + }, + { + "id":"35e4a9d1-575f-4934-b7ff-e8784ebdbbc3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T06:21:14.097Z", + "completed":"2016-01-07T06:21:14.097Z", + "new_balance":"19129.17", + "value":"-73.93" + } + }, + { + "id":"a1500f2c-b9f3-4e81-a90a-56752fa0d003", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T05:25:38.937Z", + "completed":"2016-01-09T05:25:38.937Z", + "new_balance":"19125.58", + "value":"-3.59" + } + }, + { + "id":"df00b076-f1de-4852-9014-e2d0310c4d66", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T23:06:13.031Z", + "completed":"2016-01-10T23:06:13.031Z", + "new_balance":"19098.13", + "value":"-27.45" + } + }, + { + "id":"f9e8bf30-9266-44a8-96ed-d81b67ef4883", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T06:02:30.459Z", + "completed":"2016-01-12T06:02:30.459Z", + "new_balance":"19066.84", + "value":"-31.29" + } + }, + { + "id":"3ae69757-eb61-4fca-92a5-7a66e67a6a20", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T00:21:22.293Z", + "completed":"2016-01-15T00:21:22.293Z", + "new_balance":"19059.68", + "value":"-7.16" + } + }, + { + "id":"bd5820d3-b663-470a-a008-aabe7f14d445", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T23:33:55.292Z", + "completed":"2016-01-15T23:33:55.292Z", + "new_balance":"19044.86", + "value":"-14.82" + } + }, + { + "id":"4b509f06-9d83-45e7-9beb-24e1410b64f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T21:38:52.870Z", + "completed":"2016-01-17T21:38:52.870Z", + "new_balance":"19022.61", + "value":"-22.25" + } + }, + { + "id":"cbc5977b-072f-4e0c-aaa8-b1586d632baa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T22:08:37.619Z", + "completed":"2016-01-19T22:08:37.619Z", + "new_balance":"18833.34", + "value":"-189.27" + } + }, + { + "id":"05aed6e3-4407-47c0-b01b-2f53cc9ba4fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T16:21:19.383Z", + "completed":"2016-01-20T16:21:19.383Z", + "new_balance":"18826.63", + "value":"-6.71" + } + }, + { + "id":"6beb2129-f8f7-4724-80de-f94594eb34ac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T00:06:07.892Z", + "completed":"2016-01-22T00:06:07.892Z", + "new_balance":"18816.93", + "value":"-9.70" + } + }, + { + "id":"d6b3320e-0654-4e18-9d90-8fd0beea4121", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T01:41:01.232Z", + "completed":"2016-01-22T01:41:01.232Z", + "new_balance":"18771.69", + "value":"-45.24" + } + }, + { + "id":"d77de1d1-c457-42ed-a077-f8c6df0816be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T11:58:38.979Z", + "completed":"2016-01-24T11:58:38.979Z", + "new_balance":"18739.41", + "value":"-32.28" + } + }, + { + "id":"7e999179-8cee-47cd-b6fd-84daf713679b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T16:23:54.467Z", + "completed":"2016-01-25T16:23:54.467Z", + "new_balance":"18732.70", + "value":"-6.71" + } + }, + { + "id":"bf4eebb7-bd8f-49a1-b21d-2532ba949772", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T18:54:03.335Z", + "completed":"2016-01-25T18:54:03.335Z", + "new_balance":"18690.18", + "value":"-42.52" + } + }, + { + "id":"d1db55f7-fc9d-40fe-a762-277aa9a7ed9c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T01:54:21.833Z", + "completed":"2016-01-26T01:54:21.833Z", + "new_balance":"18626.61", + "value":"-63.57" + } + }, + { + "id":"fca97e37-a1b9-4b00-87a5-a498ccc333f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:06:35.943Z", + "completed":"2016-02-01T01:06:35.943Z", + "new_balance":"20307.02", + "value":"1680.41" + } + }, + { + "id":"b2d11a39-4772-456d-a73a-3940d9a44914", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T02:47:40.593Z", + "completed":"2016-02-01T02:47:40.593Z", + "new_balance":"20172.54", + "value":"-134.48" + } + }, + { + "id":"20c752ff-f1f3-410e-b081-e1762fd671e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T09:23:54.175Z", + "completed":"2016-02-01T09:23:54.175Z", + "new_balance":"20119.36", + "value":"-53.18" + } + }, + { + "id":"004c58d6-656d-4da2-a427-23618bec1f74", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T14:33:13.972Z", + "completed":"2016-02-01T14:33:13.972Z", + "new_balance":"19608.82", + "value":"-510.54" + } + }, + { + "id":"80000610-a52c-43b6-9eee-50d692025233", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T19:28:11.106Z", + "completed":"2016-02-01T19:28:11.106Z", + "new_balance":"19578.94", + "value":"-29.88" + } + }, + { + "id":"4fc3dcae-a32d-42d5-9777-e36177bdab0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T23:36:49.549Z", + "completed":"2016-02-01T23:36:49.549Z", + "new_balance":"19544.51", + "value":"-34.43" + } + }, + { + "id":"dc7356a0-c1f2-4700-9764-1d0f97678f30", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T03:09:20.077Z", + "completed":"2016-02-02T03:09:20.077Z", + "new_balance":"19528.58", + "value":"-15.93" + } + }, + { + "id":"acf444f2-3bbb-42b4-b548-5fa456df237a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T05:55:02.009Z", + "completed":"2016-02-02T05:55:02.009Z", + "new_balance":"19442.02", + "value":"-86.56" + } + }, + { + "id":"c6be99de-b612-4209-9465-a3c46f36c523", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T11:15:33.908Z", + "completed":"2016-02-02T11:15:33.908Z", + "new_balance":"19427.38", + "value":"-14.64" + } + }, + { + "id":"cc694648-3678-48ab-a729-4f4bf76cb9fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T08:37:43.218Z", + "completed":"2016-02-03T08:37:43.218Z", + "new_balance":"19404.01", + "value":"-23.37" + } + }, + { + "id":"0a400f68-80c5-4073-8761-dc874ce3963b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T12:48:04.951Z", + "completed":"2016-02-03T12:48:04.951Z", + "new_balance":"19376.00", + "value":"-28.01" + } + }, + { + "id":"0818ef3a-e6ea-4934-99a1-e745fc98398f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T17:24:18.279Z", + "completed":"2016-02-03T17:24:18.279Z", + "new_balance":"19350.20", + "value":"-25.80" + } + }, + { + "id":"1ee67ead-4eb3-407e-a82a-55f6d9c89ce8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T04:19:46.026Z", + "completed":"2016-02-06T04:19:46.026Z", + "new_balance":"19276.27", + "value":"-73.93" + } + }, + { + "id":"bcb7a35f-e66e-461f-8ad9-7e1911867f07", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T02:38:03.613Z", + "completed":"2016-02-08T02:38:03.613Z", + "new_balance":"19248.42", + "value":"-27.85" + } + }, + { + "id":"f1d67bef-142d-4a58-b13b-a3dbb9531518", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T10:12:08.293Z", + "completed":"2016-02-08T10:12:08.293Z", + "new_balance":"19244.33", + "value":"-4.09" + } + }, + { + "id":"f03959ea-fd20-4941-8359-d66ad781b49c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T19:16:55.677Z", + "completed":"2016-02-08T19:16:55.677Z", + "new_balance":"19223.23", + "value":"-21.10" + } + }, + { + "id":"fcdd0ff8-24e4-46bd-8793-2b2f8ea8c1a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T04:32:42.287Z", + "completed":"2016-02-09T04:32:42.287Z", + "new_balance":"19178.06", + "value":"-45.17" + } + }, + { + "id":"87d7d179-fc76-4ebc-bbd8-890c6a6277a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T06:38:46.832Z", + "completed":"2016-02-09T06:38:46.832Z", + "new_balance":"19129.36", + "value":"-48.70" + } + }, + { + "id":"11cbd9da-ddd4-406b-ac6c-b033e36985f6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T19:14:45.677Z", + "completed":"2016-02-12T19:14:45.677Z", + "new_balance":"19123.59", + "value":"-5.77" + } + }, + { + "id":"d6dcada0-6546-4e0d-992c-8fcd929dccc8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T11:29:57.362Z", + "completed":"2016-02-13T11:29:57.362Z", + "new_balance":"19162.60", + "value":"39.01" + } + }, + { + "id":"64c6c5ac-557b-4fba-bc87-cbc4c3015e68", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T12:02:48.742Z", + "completed":"2016-02-13T12:02:48.742Z", + "new_balance":"19154.08", + "value":"-8.52" + } + }, + { + "id":"f01ca298-17ab-45c1-aba4-be40cb49ea95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T13:29:27.344Z", + "completed":"2016-02-13T13:29:27.344Z", + "new_balance":"19110.29", + "value":"-43.79" + } + }, + { + "id":"272dc41c-cadd-4bd7-a807-6ef1fb72b225", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:16:08.870Z", + "completed":"2016-02-14T04:16:08.870Z", + "new_balance":"19064.66", + "value":"-45.63" + } + }, + { + "id":"d96d9a56-9871-4189-85be-c1f3ad3dc37c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T15:50:06.256Z", + "completed":"2016-02-15T15:50:06.256Z", + "new_balance":"19039.10", + "value":"-25.56" + } + }, + { + "id":"2339432d-b38d-44bc-ba2e-64a9b3a691c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T03:15:40.474Z", + "completed":"2016-02-28T03:15:40.474Z", + "new_balance":"19005.57", + "value":"-33.53" + } + }, + { + "id":"ed67b8ea-e27c-4d3e-8993-ff0e72fec449", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:10:12.930Z", + "completed":"2016-03-01T03:10:12.930Z", + "new_balance":"20685.98", + "value":"1680.41" + } + }, + { + "id":"810f6a8c-618c-4525-aa22-8f1e2a326696", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T04:58:31.264Z", + "completed":"2016-03-01T04:58:31.264Z", + "new_balance":"20551.50", + "value":"-134.48" + } + }, + { + "id":"85c5f58f-605e-4f9d-b3c9-160a7f2c89fc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T06:37:31.311Z", + "completed":"2016-03-01T06:37:31.311Z", + "new_balance":"20517.07", + "value":"-34.43" + } + }, + { + "id":"1ffd1ee5-2006-4a34-8fde-ce0abcd6c1f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T13:47:20.414Z", + "completed":"2016-03-01T13:47:20.414Z", + "new_balance":"20463.89", + "value":"-53.18" + } + }, + { + "id":"5c3a6d3b-7446-49e3-9fe0-2e6ddc869e73", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T13:51:03.470Z", + "completed":"2016-03-01T13:51:03.470Z", + "new_balance":"20434.01", + "value":"-29.88" + } + }, + { + "id":"647d3924-4d2f-4722-84d7-9219622b5253", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T15:46:27.423Z", + "completed":"2016-03-01T15:46:27.423Z", + "new_balance":"19923.47", + "value":"-510.54" + } + }, + { + "id":"fdff82df-0369-476f-a427-8d2869989280", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T21:46:20.372Z", + "completed":"2016-03-02T21:46:20.372Z", + "new_balance":"19836.91", + "value":"-86.56" + } + }, + { + "id":"82517391-814f-4b04-a541-972262d0e912", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T03:50:27.555Z", + "completed":"2016-03-04T03:50:27.555Z", + "new_balance":"19806.10", + "value":"-30.81" + } + }, + { + "id":"960a2458-bf4f-4e07-a4ed-99da7f81947c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T13:53:55.391Z", + "completed":"2016-03-04T13:53:55.391Z", + "new_balance":"19799.63", + "value":"-6.47" + } + }, + { + "id":"c83a2fcd-6872-4b4a-9e55-1091bf41960c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T20:17:15.720Z", + "completed":"2016-03-04T20:17:15.720Z", + "new_balance":"19718.42", + "value":"-81.21" + } + }, + { + "id":"f1979022-344b-447f-84e9-c77e9630a686", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T22:54:16.739Z", + "completed":"2016-03-04T22:54:16.739Z", + "new_balance":"19707.89", + "value":"-10.53" + } + }, + { + "id":"2470fe10-562b-456d-9a88-f3dc46a75a31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T02:05:59.906Z", + "completed":"2016-03-05T02:05:59.906Z", + "new_balance":"19703.12", + "value":"-4.77" + } + }, + { + "id":"f701cb14-7f13-4e74-9de8-99517c7d1b7a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T11:59:55.167Z", + "completed":"2016-03-05T11:59:55.167Z", + "new_balance":"19661.89", + "value":"-41.23" + } + }, + { + "id":"50172a57-834a-48f4-babe-0ffaa558fd5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:23:18.399Z", + "completed":"2016-03-06T02:23:18.399Z", + "new_balance":"19578.09", + "value":"-83.80" + } + }, + { + "id":"c4a52906-aaaf-41c0-977f-4bae9580f3dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T02:26:17.262Z", + "completed":"2016-03-06T02:26:17.262Z", + "new_balance":"19496.88", + "value":"-81.21" + } + }, + { + "id":"36440a27-cd1d-470f-90f5-240d4f439f70", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T16:21:18.314Z", + "completed":"2016-03-07T16:21:18.314Z", + "new_balance":"19454.54", + "value":"-42.34" + } + }, + { + "id":"b220beba-d4e0-4ea0-b85c-d1d81054c104", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T01:27:49.546Z", + "completed":"2016-03-08T01:27:49.546Z", + "new_balance":"19370.74", + "value":"-83.80" + } + }, + { + "id":"bfc90d06-c5a7-4cec-b150-75497869f675", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T15:41:51.305Z", + "completed":"2016-03-09T15:41:51.305Z", + "new_balance":"19367.16", + "value":"-3.58" + } + }, + { + "id":"841ac5a0-032a-414a-9abc-10d64e7ae7dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T12:43:41.164Z", + "completed":"2016-03-10T12:43:41.164Z", + "new_balance":"19275.69", + "value":"-91.47" + } + }, + { + "id":"78289fed-798c-4945-88ce-2fa85b07cf4f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T16:40:57.004Z", + "completed":"2016-03-11T16:40:57.004Z", + "new_balance":"19268.41", + "value":"-7.28" + } + }, + { + "id":"ff607be5-106d-4151-bd03-e5378276388b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T03:11:39.359Z", + "completed":"2016-03-12T03:11:39.359Z", + "new_balance":"19241.11", + "value":"-27.30" + } + }, + { + "id":"1096ad0c-617d-45e1-9b72-c8aedfbcf4d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T17:55:54.148Z", + "completed":"2016-03-12T17:55:54.148Z", + "new_balance":"19227.87", + "value":"-13.24" + } + }, + { + "id":"08712582-30d0-47b5-9a9b-4a3fd9a17802", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:52:20.045Z", + "completed":"2016-03-13T04:52:20.045Z", + "new_balance":"19181.86", + "value":"-46.01" + } + }, + { + "id":"e33b55e3-4e76-4350-b84d-81ab63b41b1e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T10:52:01.315Z", + "completed":"2016-03-14T10:52:01.315Z", + "new_balance":"19174.87", + "value":"-6.99" + } + }, + { + "id":"7a16f33b-5d75-4182-a440-72595880896a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T01:23:46.228Z", + "completed":"2016-03-16T01:23:46.228Z", + "new_balance":"19093.46", + "value":"-81.41" + } + }, + { + "id":"16d8735d-9a48-4949-bec5-03259e73287a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T12:11:41.020Z", + "completed":"2016-03-16T12:11:41.020Z", + "new_balance":"19046.66", + "value":"-46.80" + } + }, + { + "id":"e6ef3cef-cd6b-444d-ba5e-9cc50ddb91cd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T21:43:34.328Z", + "completed":"2016-03-18T21:43:34.328Z", + "new_balance":"19039.67", + "value":"-6.99" + } + }, + { + "id":"c481834d-1117-4de7-b78e-5ff578b95fff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T05:56:59.410Z", + "completed":"2016-03-19T05:56:59.410Z", + "new_balance":"18988.66", + "value":"-51.01" + } + }, + { + "id":"42a62707-55d2-4863-883b-bd57f69929b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T13:06:21.429Z", + "completed":"2016-03-19T13:06:21.429Z", + "new_balance":"18951.71", + "value":"-36.95" + } + }, + { + "id":"d812abd4-b778-4386-a1ef-e165322fbde6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T16:39:37.619Z", + "completed":"2016-03-19T16:39:37.619Z", + "new_balance":"18917.80", + "value":"-33.91" + } + }, + { + "id":"b77fd4f0-7f00-43f6-856a-814258fb4f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T05:43:17.091Z", + "completed":"2016-03-20T05:43:17.091Z", + "new_balance":"18858.90", + "value":"-58.90" + } + }, + { + "id":"08f9be46-7fcd-4904-83b5-b02d6f7b7730", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T23:21:00.482Z", + "completed":"2016-03-20T23:21:00.482Z", + "new_balance":"18785.39", + "value":"-73.51" + } + }, + { + "id":"2b2d1339-7f78-4625-afe7-ee76708108a5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T03:05:12.086Z", + "completed":"2016-03-21T03:05:12.086Z", + "new_balance":"18779.51", + "value":"-5.88" + } + }, + { + "id":"1e89f8a9-5970-47ae-ac92-ea8f60c33f82", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T17:23:06.588Z", + "completed":"2016-03-21T17:23:06.588Z", + "new_balance":"18773.04", + "value":"-6.47" + } + }, + { + "id":"f164b353-dca5-48f0-9091-b65f46bdfd5c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T14:22:43.786Z", + "completed":"2016-03-23T14:22:43.786Z", + "new_balance":"18727.53", + "value":"-45.51" + } + }, + { + "id":"27eb1b8b-49a6-428a-881a-cf189956ec4a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T14:38:07.275Z", + "completed":"2016-03-23T14:38:07.275Z", + "new_balance":"18716.30", + "value":"-11.23" + } + }, + { + "id":"f300a39f-febd-4ecc-bfc6-6148547f29e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T12:23:02.045Z", + "completed":"2016-03-24T12:23:02.045Z", + "new_balance":"18687.44", + "value":"-28.86" + } + }, + { + "id":"4cc70b23-bc72-4e07-bd43-085c8ecb031d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T15:36:39.806Z", + "completed":"2016-03-25T15:36:39.806Z", + "new_balance":"18653.41", + "value":"-34.03" + } + }, + { + "id":"b2de17a4-7a5b-446a-ae74-87a8a5f937aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T16:48:24.291Z", + "completed":"2016-03-25T16:48:24.291Z", + "new_balance":"18637.33", + "value":"-16.08" + } + }, + { + "id":"0fe2a7ec-e974-48cf-b417-28934b8ba4c1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T05:01:07.029Z", + "completed":"2016-03-27T05:01:07.029Z", + "new_balance":"18448.06", + "value":"-189.27" + } + }, + { + "id":"3821c769-8178-4e97-a545-213eb9585e66", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T20:17:18.954Z", + "completed":"2016-03-28T20:17:18.954Z", + "new_balance":"18421.09", + "value":"-26.97" + } + }, + { + "id":"9e3cdac8-eacc-417c-94f6-43b4eef533e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T04:54:20.240Z", + "completed":"2016-04-01T04:54:20.240Z", + "new_balance":"18286.61", + "value":"-134.48" + } + }, + { + "id":"29f0800a-e8a0-4c13-9a88-d83c3673bd3d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T10:25:42.945Z", + "completed":"2016-04-01T10:25:42.945Z", + "new_balance":"18256.73", + "value":"-29.88" + } + }, + { + "id":"702463d3-a38d-4df4-a1e2-f11cbcca644c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T14:28:17.132Z", + "completed":"2016-04-01T14:28:17.132Z", + "new_balance":"17746.19", + "value":"-510.54" + } + }, + { + "id":"21b7d31e-a220-4683-b4b3-5282412029ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T16:54:32.547Z", + "completed":"2016-04-01T16:54:32.547Z", + "new_balance":"17693.01", + "value":"-53.18" + } + }, + { + "id":"7406f6a2-f2f9-4dab-b10f-ea044f1e6f11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:41:29.933Z", + "completed":"2016-04-02T14:41:29.933Z", + "new_balance":"17621.02", + "value":"-71.99" + } + }, + { + "id":"65d95d65-1480-454e-9e04-0a8d93f14ed3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T15:40:16.817Z", + "completed":"2016-04-02T15:40:16.817Z", + "new_balance":"17534.46", + "value":"-86.56" + } + }, + { + "id":"0a5d6522-e74f-45cd-b982-9e661ba6dc5a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T09:06:01.423Z", + "completed":"2016-04-03T09:06:01.423Z", + "new_balance":"17499.68", + "value":"-34.78" + } + }, + { + "id":"a25cdba2-f9f9-4944-a346-f6d5dcfcffe7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T11:42:34.628Z", + "completed":"2016-04-03T11:42:34.628Z", + "new_balance":"17621.88", + "value":"122.20" + } + }, + { + "id":"63249ef3-f74a-4946-8af5-57e033fc972e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T14:55:54.012Z", + "completed":"2016-04-03T14:55:54.012Z", + "new_balance":"17694.71", + "value":"72.83" + } + }, + { + "id":"65ebd1df-791f-4097-8d5f-cd8d3ee75ebc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T22:54:14.304Z", + "completed":"2016-04-03T22:54:14.304Z", + "new_balance":"17657.52", + "value":"-37.19" + } + }, + { + "id":"71ea90e7-c7e2-4a03-8d1a-b2e5418922d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T23:44:34.897Z", + "completed":"2016-04-03T23:44:34.897Z", + "new_balance":"17620.33", + "value":"-37.19" + } + }, + { + "id":"469c770b-1b4d-46ca-bb41-bd34a9a525fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T10:12:10.861Z", + "completed":"2016-04-04T10:12:10.861Z", + "new_balance":"17546.40", + "value":"-73.93" + } + }, + { + "id":"c7aa85f1-914b-4a72-b274-7a0b4669dbad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T19:53:39.718Z", + "completed":"2016-04-05T19:53:39.718Z", + "new_balance":"17542.81", + "value":"-3.59" + } + }, + { + "id":"5f197e59-e41a-4bd3-987f-40b15ced9f39", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T22:42:01.674Z", + "completed":"2016-04-05T22:42:01.674Z", + "new_balance":"17515.36", + "value":"-27.45" + } + }, + { + "id":"091e2d7a-9a2c-49ce-87dc-cbca0631f4c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T00:32:49.303Z", + "completed":"2016-04-07T00:32:49.303Z", + "new_balance":"17500.54", + "value":"-14.82" + } + }, + { + "id":"816b9327-3821-4666-b0dd-442cbd595625", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T18:03:44.129Z", + "completed":"2016-04-07T18:03:44.129Z", + "new_balance":"17469.25", + "value":"-31.29" + } + }, + { + "id":"1e3f2405-48c2-4204-8d6d-1c49aaa2e1de", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T04:50:28.867Z", + "completed":"2016-04-08T04:50:28.867Z", + "new_balance":"17462.09", + "value":"-7.16" + } + }, + { + "id":"1bddd7b1-06a2-4027-8b18-7cd78818267f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T03:08:26.398Z", + "completed":"2016-04-09T03:08:26.398Z", + "new_balance":"17455.38", + "value":"-6.71" + } + }, + { + "id":"352b427d-d994-4b58-9066-3528da3baa8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T20:18:00.184Z", + "completed":"2016-04-09T20:18:00.184Z", + "new_balance":"17433.13", + "value":"-22.25" + } + }, + { + "id":"fe5aef9b-ab64-4621-a48e-4e1db90b7f71", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T23:21:47.633Z", + "completed":"2016-04-09T23:21:47.633Z", + "new_balance":"17243.86", + "value":"-189.27" + } + }, + { + "id":"eba2cbac-233f-4bdb-a9d8-754e868b4e48", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T10:14:13.509Z", + "completed":"2016-04-10T10:14:13.509Z", + "new_balance":"17198.62", + "value":"-45.24" + } + }, + { + "id":"a91f99f1-c748-42b8-b205-7ddaf0b9e86f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T00:04:17.102Z", + "completed":"2016-04-17T00:04:17.102Z", + "new_balance":"17188.92", + "value":"-9.70" + } + }, + { + "id":"5f6c0339-b2da-4e93-b34f-d79c45458a63", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T12:25:16.957Z", + "completed":"2016-04-18T12:25:16.957Z", + "new_balance":"17156.64", + "value":"-32.28" + } + }, + { + "id":"589bc12e-2594-4f14-94e7-283a86facab2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T01:15:15.813Z", + "completed":"2016-04-25T01:15:15.813Z", + "new_balance":"17114.12", + "value":"-42.52" + } + }, + { + "id":"4b080f5d-1347-4cc2-bec8-4c0fc0c4215e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T10:45:33.726Z", + "completed":"2016-04-26T10:45:33.726Z", + "new_balance":"17107.41", + "value":"-6.71" + } + }, + { + "id":"1ca7b7ba-96a3-4bdf-ae91-52efbd2d59be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T15:33:26.854Z", + "completed":"2016-04-26T15:33:26.854Z", + "new_balance":"17043.84", + "value":"-63.57" + } + }, + { + "id":"1d492f4a-0111-4cd6-b8cf-d16040bd16cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T03:18:39.869Z", + "completed":"2016-05-02T03:18:39.869Z", + "new_balance":"17013.96", + "value":"-29.88" + } + }, + { + "id":"acd590d0-a738-4547-8fed-c8ecc76ea491", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T07:21:23.405Z", + "completed":"2016-05-02T07:21:23.405Z", + "new_balance":"16879.48", + "value":"-134.48" + } + }, + { + "id":"115e13eb-f36e-4f5a-9fa9-0636197260c2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T09:09:01.179Z", + "completed":"2016-05-02T09:09:01.179Z", + "new_balance":"16792.92", + "value":"-86.56" + } + }, + { + "id":"40518f2b-3939-4ef5-93d9-c2f4aa4abac5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T09:34:59.298Z", + "completed":"2016-05-02T09:34:59.298Z", + "new_balance":"16776.99", + "value":"-15.93" + } + }, + { + "id":"7647f736-30b0-4f10-925c-04df80e97c95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T09:39:11.200Z", + "completed":"2016-05-02T09:39:11.200Z", + "new_balance":"16742.56", + "value":"-34.43" + } + }, + { + "id":"31e3a293-91b7-4563-816d-f0cb2a4de125", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T14:11:06.822Z", + "completed":"2016-05-02T14:11:06.822Z", + "new_balance":"16232.02", + "value":"-510.54" + } + }, + { + "id":"df190af4-daee-4415-b45a-7941c83cb5f0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T14:21:13.506Z", + "completed":"2016-05-02T14:21:13.506Z", + "new_balance":"16178.84", + "value":"-53.18" + } + }, + { + "id":"ff370599-3f4a-43b0-8a1e-dfcb91880110", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T20:09:44.332Z", + "completed":"2016-05-02T20:09:44.332Z", + "new_balance":"17859.25", + "value":"1680.41" + } + }, + { + "id":"fdcef432-ae63-47d7-899e-7f6a2633dafd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T16:52:28.738Z", + "completed":"2016-05-03T16:52:28.738Z", + "new_balance":"17844.61", + "value":"-14.64" + } + }, + { + "id":"94fb7d09-443c-427b-a29e-3826616da6b9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T18:59:41.004Z", + "completed":"2016-05-03T18:59:41.004Z", + "new_balance":"17821.24", + "value":"-23.37" + } + }, + { + "id":"995f3b5a-3a1d-4910-8d68-1c502c068d24", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T00:34:40.398Z", + "completed":"2016-05-04T00:34:40.398Z", + "new_balance":"17795.44", + "value":"-25.80" + } + }, + { + "id":"85b5c5ce-5b0e-4920-97a3-a75c7d8a73b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T09:32:49.983Z", + "completed":"2016-05-04T09:32:49.983Z", + "new_balance":"17767.43", + "value":"-28.01" + } + }, + { + "id":"f76c5ac7-c916-42ea-b7f8-ca162a0f393d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T02:27:46.477Z", + "completed":"2016-05-05T02:27:46.477Z", + "new_balance":"17693.50", + "value":"-73.93" + } + }, + { + "id":"650290fe-afc7-49e9-9b02-a7345bca79b6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T17:22:42.959Z", + "completed":"2016-05-07T17:22:42.959Z", + "new_balance":"17665.65", + "value":"-27.85" + } + }, + { + "id":"d6f15552-9a2b-4ae0-9114-9314796a7361", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T20:19:29.533Z", + "completed":"2016-05-07T20:19:29.533Z", + "new_balance":"17661.56", + "value":"-4.09" + } + }, + { + "id":"a7892279-f93a-41fc-b2e5-bc7732a0ff54", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T04:40:57.761Z", + "completed":"2016-05-12T04:40:57.761Z", + "new_balance":"17640.46", + "value":"-21.10" + } + }, + { + "id":"0c01f678-e2ef-44aa-93ab-094743249792", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T23:31:08.257Z", + "completed":"2016-05-12T23:31:08.257Z", + "new_balance":"17591.76", + "value":"-48.70" + } + }, + { + "id":"47977f0b-2c15-4d8f-a357-79aa1463ad9e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T12:46:24.528Z", + "completed":"2016-05-14T12:46:24.528Z", + "new_balance":"17546.59", + "value":"-45.17" + } + }, + { + "id":"b6efb6d0-23f6-41f3-9a70-b978077f9ad5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T16:59:13.352Z", + "completed":"2016-05-16T16:59:13.352Z", + "new_balance":"17540.82", + "value":"-5.77" + } + }, + { + "id":"fa2cfb9d-731a-484a-9fa6-612065576909", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T03:04:08.266Z", + "completed":"2016-05-18T03:04:08.266Z", + "new_balance":"17532.30", + "value":"-8.52" + } + }, + { + "id":"e8612e9c-c30a-4706-9dd2-4df97a206c37", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T22:49:49.149Z", + "completed":"2016-05-20T22:49:49.149Z", + "new_balance":"17571.31", + "value":"39.01" + } + }, + { + "id":"c94ce156-7adf-4c39-b2c3-d19a8263f621", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T09:07:34.859Z", + "completed":"2016-05-21T09:07:34.859Z", + "new_balance":"17527.52", + "value":"-43.79" + } + }, + { + "id":"13a048c6-2905-453e-a257-4869473d5cab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T15:27:04.971Z", + "completed":"2016-05-21T15:27:04.971Z", + "new_balance":"17481.89", + "value":"-45.63" + } + }, + { + "id":"77bc723f-5cea-4f1e-9d73-58aa2b7af53b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:14:19.682Z", + "completed":"2016-05-27T01:14:19.682Z", + "new_balance":"17448.36", + "value":"-33.53" + } + }, + { + "id":"6ce3ebb3-f19d-421d-b442-e871099685e9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T19:55:28.224Z", + "completed":"2016-05-27T19:55:28.224Z", + "new_balance":"17422.80", + "value":"-25.56" + } + }, + { + "id":"7576b7b9-d822-47b2-a600-ea0300133e10", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T01:01:10.163Z", + "completed":"2016-06-01T01:01:10.163Z", + "new_balance":"16912.26", + "value":"-510.54" + } + }, + { + "id":"555c9d50-2a07-4fdc-b11a-2da6a041a488", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T07:56:56.274Z", + "completed":"2016-06-01T07:56:56.274Z", + "new_balance":"18592.67", + "value":"1680.41" + } + }, + { + "id":"aa75dc68-95a8-444b-93ff-bb4f6f805e3f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T10:50:33.508Z", + "completed":"2016-06-01T10:50:33.508Z", + "new_balance":"18562.79", + "value":"-29.88" + } + }, + { + "id":"5e7353da-aa14-4505-ad7b-ee419b42d35d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T14:16:10.823Z", + "completed":"2016-06-01T14:16:10.823Z", + "new_balance":"18509.61", + "value":"-53.18" + } + }, + { + "id":"678578b8-958f-4d99-8572-c5251365dbd0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T20:24:57.236Z", + "completed":"2016-06-01T20:24:57.236Z", + "new_balance":"18375.13", + "value":"-134.48" + } + }, + { + "id":"4b3987b5-e732-4035-aba0-c9bd2a68ea11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T21:00:02.277Z", + "completed":"2016-06-01T21:00:02.277Z", + "new_balance":"18340.70", + "value":"-34.43" + } + }, + { + "id":"0d05f97d-000e-4d2f-b151-f941d3c19759", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T18:51:15.336Z", + "completed":"2016-06-04T18:51:15.336Z", + "new_balance":"18208.86", + "value":"-131.84" + } + }, + { + "id":"2d21d23f-f86b-48d7-8471-64bef4335920", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T19:45:48.848Z", + "completed":"2016-06-04T19:45:48.848Z", + "new_balance":"18122.30", + "value":"-86.56" + } + }, + { + "id":"fe0271d0-a0a5-4618-abfc-327f7cd452ee", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T20:16:42.055Z", + "completed":"2016-06-11T20:16:42.055Z", + "new_balance":"18091.49", + "value":"-30.81" + } + }, + { + "id":"2d161b61-9cb8-4205-8a27-a0793dee223e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T13:51:18.716Z", + "completed":"2016-06-12T13:51:18.716Z", + "new_balance":"18080.96", + "value":"-10.53" + } + }, + { + "id":"ea08fc9f-d613-46bb-a5dc-aa73d3f8ba47", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T09:34:10.580Z", + "completed":"2016-06-13T09:34:10.580Z", + "new_balance":"18074.49", + "value":"-6.47" + } + }, + { + "id":"f69fad40-e947-4eb8-afc5-9825a7984120", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T15:29:36.265Z", + "completed":"2016-06-13T15:29:36.265Z", + "new_balance":"17993.28", + "value":"-81.21" + } + }, + { + "id":"a7be937d-3200-413c-abae-9c766d0c94a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:53:12.027Z", + "completed":"2016-06-16T17:53:12.027Z", + "new_balance":"17952.05", + "value":"-41.23" + } + }, + { + "id":"da59384e-a422-47cf-a06c-33a02e1d4881", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T10:36:13.847Z", + "completed":"2016-06-17T10:36:13.847Z", + "new_balance":"17947.28", + "value":"-4.77" + } + }, + { + "id":"3cf49720-d3d0-4eac-8d50-4cbd798e9b00", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T23:59:19.277Z", + "completed":"2016-06-17T23:59:19.277Z", + "new_balance":"17866.07", + "value":"-81.21" + } + }, + { + "id":"ccdea155-b3cd-4a52-ab8a-c4b4a99f8c8d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T02:40:33.703Z", + "completed":"2016-06-18T02:40:33.703Z", + "new_balance":"17782.27", + "value":"-83.80" + } + }, + { + "id":"7049014e-2f66-4059-b5ad-fcb08b490ed9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T12:38:29.320Z", + "completed":"2016-06-19T12:38:29.320Z", + "new_balance":"17739.93", + "value":"-42.34" + } + }, + { + "id":"3a80c907-ccc2-4ad1-92d2-26ccdb3836e1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T12:42:20.257Z", + "completed":"2016-06-19T12:42:20.257Z", + "new_balance":"17656.13", + "value":"-83.80" + } + }, + { + "id":"2224a878-0664-4aac-831c-52989ae9d947", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T09:34:23.006Z", + "completed":"2016-06-21T09:34:23.006Z", + "new_balance":"17652.55", + "value":"-3.58" + } + }, + { + "id":"e8952c35-013c-4015-becd-25538fd949a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T22:21:24.100Z", + "completed":"2016-06-21T22:21:24.100Z", + "new_balance":"17561.08", + "value":"-91.47" + } + }, + { + "id":"1d83f258-a297-495c-aa14-c122856e4d6b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T08:03:27.274Z", + "completed":"2016-06-23T08:03:27.274Z", + "new_balance":"17533.78", + "value":"-27.30" + } + }, + { + "id":"5552e91a-eb97-4c43-af93-997e0d0116a4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T21:34:19.353Z", + "completed":"2016-06-23T21:34:19.353Z", + "new_balance":"17526.50", + "value":"-7.28" + } + }, + { + "id":"d4bf1830-3e92-41a5-8218-3170914d5a3c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T18:18:39.264Z", + "completed":"2016-06-24T18:18:39.264Z", + "new_balance":"17513.26", + "value":"-13.24" + } + }, + { + "id":"110294b9-a822-47fd-bd61-0e1016ddd740", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T18:56:09.493Z", + "completed":"2016-06-24T18:56:09.493Z", + "new_balance":"17467.25", + "value":"-46.01" + } + }, + { + "id":"636a4e4a-d936-41c2-ad35-c6ca44a5cf0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:26:05.595Z", + "completed":"2016-06-28T01:26:05.595Z", + "new_balance":"17460.26", + "value":"-6.99" + } + }, + { + "id":"a42dd243-bc03-4b47-af9e-b5d28b932e7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T01:47:29.384Z", + "completed":"2016-06-28T01:47:29.384Z", + "new_balance":"17413.46", + "value":"-46.80" + } + }, + { + "id":"1449a4b3-358f-4dce-b6f5-f40c0fa46184", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:00:09.291Z", + "completed":"2016-06-28T06:00:09.291Z", + "new_balance":"17406.47", + "value":"-6.99" + } + }, + { + "id":"dadf7922-aa5f-4e27-a82d-10f194bbd54e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T17:26:05.785Z", + "completed":"2016-06-28T17:26:05.785Z", + "new_balance":"17325.06", + "value":"-81.41" + } + }, + { + "id":"38b41362-e3be-445d-8df1-23227ddfb578", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T10:19:28.579Z", + "completed":"2016-06-29T10:19:28.579Z", + "new_balance":"17266.16", + "value":"-58.90" + } + }, + { + "id":"5e93b997-9250-442f-8aff-837df625ffcf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T13:02:04.313Z", + "completed":"2016-06-29T13:02:04.313Z", + "new_balance":"17259.69", + "value":"-6.47" + } + }, + { + "id":"a9c39047-50a1-4c2a-a6cf-d546c15a6a2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T16:14:18.179Z", + "completed":"2016-06-29T16:14:18.179Z", + "new_balance":"17225.78", + "value":"-33.91" + } + }, + { + "id":"c79d8915-5de7-4a0f-b150-4630b74188e8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T17:48:11.054Z", + "completed":"2016-06-29T17:48:11.054Z", + "new_balance":"17188.83", + "value":"-36.95" + } + }, + { + "id":"6fec3d91-1210-48fc-9577-cc571a297408", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T22:24:51.119Z", + "completed":"2016-06-29T22:24:51.119Z", + "new_balance":"17137.82", + "value":"-51.01" + } + }, + { + "id":"b1cc5b1e-a908-4b83-8075-9b3fc1bfc142", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:41:34.962Z", + "completed":"2016-06-29T23:41:34.962Z", + "new_balance":"17064.31", + "value":"-73.51" + } + }, + { + "id":"9b421eac-7e44-4143-95a1-232e67b20902", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T01:53:00.258Z", + "completed":"2016-06-30T01:53:00.258Z", + "new_balance":"17058.43", + "value":"-5.88" + } + }, + { + "id":"81770a55-87c7-406e-be22-ea34a1b3d9aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T08:24:34.812Z", + "completed":"2016-06-30T08:24:34.812Z", + "new_balance":"17029.57", + "value":"-28.86" + } + }, + { + "id":"aa97d1bb-a63c-45cc-b61f-51d82962486e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T10:36:56.568Z", + "completed":"2016-06-30T10:36:56.568Z", + "new_balance":"17018.34", + "value":"-11.23" + } + }, + { + "id":"b01fb116-edde-452e-94a4-ea66ba648930", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T15:18:02.535Z", + "completed":"2016-06-30T15:18:02.535Z", + "new_balance":"16972.83", + "value":"-45.51" + } + }, + { + "id":"1ce431a1-9ebd-4da3-a098-483b400e0404", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:48:07.918Z", + "completed":"2016-07-01T02:48:07.918Z", + "new_balance":"16783.56", + "value":"-189.27" + } + }, + { + "id":"49704713-da1f-4bcd-89df-12af7f84e172", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T05:16:56.016Z", + "completed":"2016-07-01T05:16:56.016Z", + "new_balance":"16273.02", + "value":"-510.54" + } + }, + { + "id":"f4d5a5c1-1984-421f-819b-14e5028f63ed", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:42:23.433Z", + "completed":"2016-07-01T05:42:23.433Z", + "new_balance":"16238.59", + "value":"-34.43" + } + }, + { + "id":"c0ce799b-1571-41d6-9315-d8becdc8a261", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:52:35.298Z", + "completed":"2016-07-01T05:52:35.298Z", + "new_balance":"16204.16", + "value":"-34.43" + } + }, + { + "id":"9d67f5d2-9cd8-4301-a6d5-b140f0875b40", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T06:26:02.982Z", + "completed":"2016-07-01T06:26:02.982Z", + "new_balance":"16174.28", + "value":"-29.88" + } + }, + { + "id":"656f2533-1a10-44cd-9983-a7114dcf00a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T08:17:46.185Z", + "completed":"2016-07-01T08:17:46.185Z", + "new_balance":"16140.25", + "value":"-34.03" + } + }, + { + "id":"61cc6051-4fc3-4bf8-9643-6636e297d3b3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T14:11:13.576Z", + "completed":"2016-07-01T14:11:13.576Z", + "new_balance":"16005.77", + "value":"-134.48" + } + }, + { + "id":"85aa60ec-1c64-413a-9d0d-35815e086a6c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T17:02:48.159Z", + "completed":"2016-07-01T17:02:48.159Z", + "new_balance":"15978.80", + "value":"-26.97" + } + }, + { + "id":"b702ee67-3908-491e-80f1-914dce683c25", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T21:17:13.543Z", + "completed":"2016-07-01T21:17:13.543Z", + "new_balance":"15925.62", + "value":"-53.18" + } + }, + { + "id":"41ea1bd6-f49a-441e-a7d4-357f5a4f1348", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T21:57:27.371Z", + "completed":"2016-07-01T21:57:27.371Z", + "new_balance":"15909.54", + "value":"-16.08" + } + }, + { + "id":"a2229087-23d7-4987-ae8a-5188284aea1b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T02:36:56.806Z", + "completed":"2016-07-02T02:36:56.806Z", + "new_balance":"15822.98", + "value":"-86.56" + } + }, + { + "id":"eb9c8eaa-2687-4ee4-bb56-524818463d6c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T12:32:12.390Z", + "completed":"2016-07-03T12:32:12.390Z", + "new_balance":"15727.55", + "value":"-95.43" + } + }, + { + "id":"1650681c-6531-4b47-92fe-e87aba6d1806", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T10:39:18.565Z", + "completed":"2016-07-04T10:39:18.565Z", + "new_balance":"15711.77", + "value":"-15.78" + } + }, + { + "id":"f12e0d8b-01d3-46a7-ba1b-bbb77c6d77d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T15:10:17.802Z", + "completed":"2016-07-05T15:10:17.802Z", + "new_balance":"15637.84", + "value":"-73.93" + } + }, + { + "id":"f1a52c61-6462-477e-bfff-60dd91829bc0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T18:35:22.225Z", + "completed":"2016-07-05T18:35:22.225Z", + "new_balance":"15565.75", + "value":"-72.09" + } + }, + { + "id":"de443fe6-f453-4529-99fe-4309825c7fbb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T18:46:15.801Z", + "completed":"2016-07-06T18:46:15.801Z", + "new_balance":"15562.16", + "value":"-3.59" + } + }, + { + "id":"deaba927-d7e9-4efc-a363-28d231414018", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T18:04:20.601Z", + "completed":"2016-07-11T18:04:20.601Z", + "new_balance":"15534.71", + "value":"-27.45" + } + }, + { + "id":"cd564bc1-cc81-47e1-968e-42f2ce5b19d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T03:41:22.978Z", + "completed":"2016-07-12T03:41:22.978Z", + "new_balance":"15503.42", + "value":"-31.29" + } + }, + { + "id":"3f9a5093-c174-46ad-a9a7-41758b97fd60", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T13:10:26.133Z", + "completed":"2016-07-14T13:10:26.133Z", + "new_balance":"15488.60", + "value":"-14.82" + } + }, + { + "id":"9559a019-29a2-4943-a5df-835ad79f2f88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T20:23:14.205Z", + "completed":"2016-07-16T20:23:14.205Z", + "new_balance":"15481.44", + "value":"-7.16" + } + }, + { + "id":"750fd3aa-03e0-447e-8bbd-8837fa528e71", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T02:27:23.421Z", + "completed":"2016-07-18T02:27:23.421Z", + "new_balance":"15459.19", + "value":"-22.25" + } + }, + { + "id":"97471033-a339-4236-87f4-15081ffc6c33", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T11:01:40.953Z", + "completed":"2016-07-20T11:01:40.953Z", + "new_balance":"15452.48", + "value":"-6.71" + } + }, + { + "id":"981ff15a-84b0-4b54-b543-1e9fa220cfee", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T18:31:54.473Z", + "completed":"2016-07-20T18:31:54.473Z", + "new_balance":"15263.21", + "value":"-189.27" + } + }, + { + "id":"817e50f9-9c53-410f-b6bc-7e849d7166c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T00:39:52.867Z", + "completed":"2016-07-24T00:39:52.867Z", + "new_balance":"15217.97", + "value":"-45.24" + } + }, + { + "id":"bb27c0b9-e1c5-4e85-bbc5-0ad2658ce97b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T23:36:43.167Z", + "completed":"2016-07-24T23:36:43.167Z", + "new_balance":"15208.27", + "value":"-9.70" + } + }, + { + "id":"e305557c-e04c-4af4-8bce-ebfef230e27e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T10:00:43.792Z", + "completed":"2016-07-25T10:00:43.792Z", + "new_balance":"15175.99", + "value":"-32.28" + } + }, + { + "id":"90eebc03-29d8-4fe8-bfab-9cb5b51e0551", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T15:33:07.220Z", + "completed":"2016-07-25T15:33:07.220Z", + "new_balance":"15133.47", + "value":"-42.52" + } + }, + { + "id":"a8c84639-0ddc-4118-ab71-5f3533c2edc8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T00:15:31.799Z", + "completed":"2016-07-26T00:15:31.799Z", + "new_balance":"15069.90", + "value":"-63.57" + } + }, + { + "id":"c320e710-e859-47bb-bd95-323e0a38c9a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T12:31:44.436Z", + "completed":"2016-07-27T12:31:44.436Z", + "new_balance":"15063.19", + "value":"-6.71" + } + }, + { + "id":"5ae6fefd-84cc-4957-989e-0066a8967e3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T01:39:57.653Z", + "completed":"2016-08-01T01:39:57.653Z", + "new_balance":"14928.71", + "value":"-134.48" + } + }, + { + "id":"ccf025ab-bf44-47bd-b404-4959949d299f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:44:42.043Z", + "completed":"2016-08-01T02:44:42.043Z", + "new_balance":"14894.28", + "value":"-34.43" + } + }, + { + "id":"d67c2046-7ce6-4e85-9581-7deb37d1517f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T04:53:58.821Z", + "completed":"2016-08-01T04:53:58.821Z", + "new_balance":"14383.74", + "value":"-510.54" + } + }, + { + "id":"bf45a3b4-048b-4fca-a245-ffb691f99283", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T12:56:58.169Z", + "completed":"2016-08-01T12:56:58.169Z", + "new_balance":"16064.15", + "value":"1680.41" + } + }, + { + "id":"55519dbc-af60-4764-8740-7b130441bc10", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T16:50:03.236Z", + "completed":"2016-08-01T16:50:03.236Z", + "new_balance":"16010.97", + "value":"-53.18" + } + }, + { + "id":"1b9471a0-7cb7-40d8-975e-810b98911026", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T17:15:16.506Z", + "completed":"2016-08-01T17:15:16.506Z", + "new_balance":"15981.09", + "value":"-29.88" + } + }, + { + "id":"fb614b08-db32-4819-bb95-5142ecc677a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T12:17:06.252Z", + "completed":"2016-08-02T12:17:06.252Z", + "new_balance":"15894.53", + "value":"-86.56" + } + }, + { + "id":"0a0a6653-c3eb-4098-81a5-62d31c83a9fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T21:02:47.089Z", + "completed":"2016-08-03T21:02:47.089Z", + "new_balance":"15890.94", + "value":"-3.59" + } + }, + { + "id":"eea11eda-5f08-497e-9b1e-80b2da88ad97", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T00:32:58.506Z", + "completed":"2016-08-04T00:32:58.506Z", + "new_balance":"15856.39", + "value":"-34.55" + } + }, + { + "id":"423f0bbf-ad23-42ee-b3f1-3f39dec2c899", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T03:59:38.684Z", + "completed":"2016-08-07T03:59:38.684Z", + "new_balance":"15833.02", + "value":"-23.37" + } + }, + { + "id":"316541dd-f05f-4903-bc40-3a62ce22a3c8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T09:53:12.783Z", + "completed":"2016-08-09T09:53:12.783Z", + "new_balance":"15807.22", + "value":"-25.80" + } + }, + { + "id":"73e9a8cc-7f36-4532-ac59-6081eece8251", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:42:41.926Z", + "completed":"2016-08-09T23:42:41.926Z", + "new_balance":"15779.21", + "value":"-28.01" + } + }, + { + "id":"ccd130fc-fd0e-4b32-b79c-a3a17854f7e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T02:14:14.991Z", + "completed":"2016-08-10T02:14:14.991Z", + "new_balance":"15705.28", + "value":"-73.93" + } + }, + { + "id":"c85dbea8-0d90-49d6-b3c5-bfb4a79b4b57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T14:50:25.464Z", + "completed":"2016-08-14T14:50:25.464Z", + "new_balance":"15701.19", + "value":"-4.09" + } + }, + { + "id":"fb4ef537-6316-465d-a0cf-160c30491f04", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T09:15:26.832Z", + "completed":"2016-08-15T09:15:26.832Z", + "new_balance":"15665.26", + "value":"-35.93" + } + }, + { + "id":"52f5a777-8cdb-4927-9fef-f47133fc76f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T15:59:57.215Z", + "completed":"2016-08-15T15:59:57.215Z", + "new_balance":"15637.41", + "value":"-27.85" + } + }, + { + "id":"b89f4426-6aad-4929-8f3a-ec8c0d891fa8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T22:54:54.966Z", + "completed":"2016-08-16T22:54:54.966Z", + "new_balance":"15588.71", + "value":"-48.70" + } + }, + { + "id":"d2617897-461c-4381-99d8-c1e7b911a1cd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:47:59.364Z", + "completed":"2016-08-17T22:47:59.364Z", + "new_balance":"15543.54", + "value":"-45.17" + } + }, + { + "id":"ddf1fbec-1eb2-4139-ac7b-bcf58ae8849f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T12:59:34.948Z", + "completed":"2016-08-20T12:59:34.948Z", + "new_balance":"15537.77", + "value":"-5.77" + } + }, + { + "id":"f3293d4a-c76a-4681-8c9b-45cb0cb9ea57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T13:47:51.812Z", + "completed":"2016-08-20T13:47:51.812Z", + "new_balance":"15529.25", + "value":"-8.52" + } + }, + { + "id":"e2420f85-bf13-439f-924f-681f27675732", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T17:49:00.715Z", + "completed":"2016-08-22T17:49:00.715Z", + "new_balance":"15568.26", + "value":"39.01" + } + }, + { + "id":"490316b3-9573-4170-b417-33917b9e358a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T01:12:27.255Z", + "completed":"2016-08-23T01:12:27.255Z", + "new_balance":"15524.47", + "value":"-43.79" + } + }, + { + "id":"cb222e93-738c-4da8-949e-9e96526c0a17", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T16:43:50.951Z", + "completed":"2016-08-23T16:43:50.951Z", + "new_balance":"15478.84", + "value":"-45.63" + } + }, + { + "id":"10a0d785-e15a-40f3-aa24-68330c1959e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T13:26:40.362Z", + "completed":"2016-08-28T13:26:40.362Z", + "new_balance":"15445.31", + "value":"-33.53" + } + }, + { + "id":"fcd6ce77-52d3-467e-b9db-93860d90c6db", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T18:32:43.635Z", + "completed":"2016-08-28T18:32:43.635Z", + "new_balance":"15419.75", + "value":"-25.56" + } + }, + { + "id":"95745051-b111-4eb9-b2cf-8b6512cf48a5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T00:14:35.707Z", + "completed":"2016-09-01T00:14:35.707Z", + "new_balance":"14909.21", + "value":"-510.54" + } + }, + { + "id":"71b97c1f-66ee-42b4-ab7e-89dc215dd5e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T03:27:45.249Z", + "completed":"2016-09-01T03:27:45.249Z", + "new_balance":"14856.03", + "value":"-53.18" + } + }, + { + "id":"52d6dc26-5b29-43d4-9236-d6ecf022b04b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T13:14:10.744Z", + "completed":"2016-09-01T13:14:10.744Z", + "new_balance":"14721.55", + "value":"-134.48" + } + }, + { + "id":"2ac5f60c-d11e-407a-b305-99e1923839f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T14:18:05.348Z", + "completed":"2016-09-01T14:18:05.348Z", + "new_balance":"14691.67", + "value":"-29.88" + } + }, + { + "id":"701c5434-c20f-436b-86d9-5d7e7b3b97a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T15:14:50.081Z", + "completed":"2016-09-01T15:14:50.081Z", + "new_balance":"14657.24", + "value":"-34.43" + } + }, + { + "id":"4c6dc0a0-701a-4be1-9d5b-190cc73ddfff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T18:51:00.045Z", + "completed":"2016-09-01T18:51:00.045Z", + "new_balance":"16337.65", + "value":"1680.41" + } + }, + { + "id":"a0b8a964-1d3f-45be-a1e9-d5eeacf0e77f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T02:39:21.580Z", + "completed":"2016-09-02T02:39:21.580Z", + "new_balance":"16251.09", + "value":"-86.56" + } + }, + { + "id":"3e2ec0ac-92eb-42fb-b158-e2eba747c373", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T05:43:53.631Z", + "completed":"2016-09-04T05:43:53.631Z", + "new_balance":"16169.88", + "value":"-81.21" + } + }, + { + "id":"fcea7a02-6de9-475f-91fb-4295bbd0b481", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T07:28:38.976Z", + "completed":"2016-09-04T07:28:38.976Z", + "new_balance":"16159.35", + "value":"-10.53" + } + }, + { + "id":"940cf7e0-a349-438c-aa9e-859a2b2f3c31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T11:06:38.445Z", + "completed":"2016-09-04T11:06:38.445Z", + "new_balance":"16128.54", + "value":"-30.81" + } + }, + { + "id":"3ebd2beb-6d2d-484a-9c64-d8913bb0bb59", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T17:39:54.586Z", + "completed":"2016-09-04T17:39:54.586Z", + "new_balance":"16122.07", + "value":"-6.47" + } + }, + { + "id":"31e97d94-6880-47c7-b1d7-5a96065985d1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T21:32:20.485Z", + "completed":"2016-09-05T21:32:20.485Z", + "new_balance":"16080.84", + "value":"-41.23" + } + }, + { + "id":"d0d2c3e3-c032-424e-965e-d29d75b9a128", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T22:55:33.851Z", + "completed":"2016-09-05T22:55:33.851Z", + "new_balance":"16076.07", + "value":"-4.77" + } + }, + { + "id":"7d68a9b9-5297-4b47-babd-8186c53a809d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:28:01.304Z", + "completed":"2016-09-06T18:28:01.304Z", + "new_balance":"15992.27", + "value":"-83.80" + } + }, + { + "id":"512d9d6b-944b-481d-8964-bf7e16c704bc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T23:53:25.538Z", + "completed":"2016-09-06T23:53:25.538Z", + "new_balance":"15911.06", + "value":"-81.21" + } + }, + { + "id":"cb0ed35d-39a1-417a-ae90-d83e023caa3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T14:03:57.447Z", + "completed":"2016-09-08T14:03:57.447Z", + "new_balance":"15868.72", + "value":"-42.34" + } + }, + { + "id":"9a5f5a0b-3355-4328-8e56-0961eae66fbd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T21:43:04.033Z", + "completed":"2016-09-08T21:43:04.033Z", + "new_balance":"15784.92", + "value":"-83.80" + } + }, + { + "id":"c36deadc-d2fa-4d57-9864-fcbb852eaf28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T00:24:34.789Z", + "completed":"2016-09-10T00:24:34.789Z", + "new_balance":"15781.34", + "value":"-3.58" + } + }, + { + "id":"d935ed88-dd3e-4bef-991c-66efe008322d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:41:18.308Z", + "completed":"2016-09-10T22:41:18.308Z", + "new_balance":"15689.87", + "value":"-91.47" + } + }, + { + "id":"19187579-a43d-46f1-b832-9969c96ad113", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T19:49:59.076Z", + "completed":"2016-09-11T19:49:59.076Z", + "new_balance":"15682.59", + "value":"-7.28" + } + }, + { + "id":"275e4de0-f0f2-471a-a4cd-f4026f5fd9c4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T05:03:48.305Z", + "completed":"2016-09-12T05:03:48.305Z", + "new_balance":"15655.29", + "value":"-27.30" + } + }, + { + "id":"79b4c73e-8ab0-42ee-b356-693301d77b95", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T05:30:31.597Z", + "completed":"2016-09-12T05:30:31.597Z", + "new_balance":"15642.05", + "value":"-13.24" + } + }, + { + "id":"13eea4e1-1173-4324-9811-18dee24413b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T20:55:52.811Z", + "completed":"2016-09-13T20:55:52.811Z", + "new_balance":"15596.04", + "value":"-46.01" + } + }, + { + "id":"28cf646a-f0b5-4c1c-8f99-0ff6ca973cbe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T00:58:47.772Z", + "completed":"2016-09-16T00:58:47.772Z", + "new_balance":"15589.05", + "value":"-6.99" + } + }, + { + "id":"8b4379cb-0bcd-4402-895f-9000bca0edcc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T10:32:23.838Z", + "completed":"2016-09-17T10:32:23.838Z", + "new_balance":"15542.25", + "value":"-46.80" + } + }, + { + "id":"896de0b4-aa47-415c-8938-5578f482c530", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T23:18:36.502Z", + "completed":"2016-09-17T23:18:36.502Z", + "new_balance":"15460.84", + "value":"-81.41" + } + }, + { + "id":"56f172a4-a8fa-4a08-8d38-46008a61c3be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:13:58.231Z", + "completed":"2016-09-18T17:13:58.231Z", + "new_balance":"15453.85", + "value":"-6.99" + } + }, + { + "id":"6c9e03ae-f2b4-4ab2-a843-cf0e9c19f296", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T08:50:42.895Z", + "completed":"2016-09-19T08:50:42.895Z", + "new_balance":"15419.94", + "value":"-33.91" + } + }, + { + "id":"273b4868-a606-4091-8627-529c298839fe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T14:37:23.113Z", + "completed":"2016-09-19T14:37:23.113Z", + "new_balance":"15368.93", + "value":"-51.01" + } + }, + { + "id":"84d54962-3ffd-408c-b4ee-52942d71dcb0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T18:53:03.389Z", + "completed":"2016-09-19T18:53:03.389Z", + "new_balance":"15331.98", + "value":"-36.95" + } + }, + { + "id":"a15e2bbe-127e-4433-8822-5b0a5539b1ba", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T05:26:33.052Z", + "completed":"2016-09-20T05:26:33.052Z", + "new_balance":"15258.47", + "value":"-73.51" + } + }, + { + "id":"391a8311-9408-4e8f-af5a-8c420faa961f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T08:41:41.473Z", + "completed":"2016-09-20T08:41:41.473Z", + "new_balance":"15199.57", + "value":"-58.90" + } + }, + { + "id":"76412cfd-3cbb-4d7a-b387-38182ad77336", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T07:15:08.819Z", + "completed":"2016-09-21T07:15:08.819Z", + "new_balance":"15193.10", + "value":"-6.47" + } + }, + { + "id":"d89f7ade-73c2-470d-ae2a-869c669ff6f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T16:39:42.292Z", + "completed":"2016-09-21T16:39:42.292Z", + "new_balance":"15187.22", + "value":"-5.88" + } + }, + { + "id":"57a91dfc-6e5e-4a43-a2b4-3485127e85b3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T10:24:02.664Z", + "completed":"2016-09-23T10:24:02.664Z", + "new_balance":"15175.99", + "value":"-11.23" + } + }, + { + "id":"cd12d0b4-9f2b-41f8-a376-6e1ddf22e294", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T20:01:17.366Z", + "completed":"2016-09-23T20:01:17.366Z", + "new_balance":"15130.48", + "value":"-45.51" + } + }, + { + "id":"9bc8ffed-051b-41d3-9227-695cc8670394", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T18:00:22.866Z", + "completed":"2016-09-24T18:00:22.866Z", + "new_balance":"15101.62", + "value":"-28.86" + } + }, + { + "id":"dcba4b4b-2a47-4685-a072-8568dbc9342a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T00:34:03.539Z", + "completed":"2016-09-25T00:34:03.539Z", + "new_balance":"15067.59", + "value":"-34.03" + } + }, + { + "id":"07e8d4ef-2038-46d8-b26a-10f3371625f5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T07:15:37.460Z", + "completed":"2016-09-25T07:15:37.460Z", + "new_balance":"15051.51", + "value":"-16.08" + } + }, + { + "id":"bf32cc49-9207-4c44-9d66-a48d6853f619", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:31:20.382Z", + "completed":"2016-09-27T15:31:20.382Z", + "new_balance":"14862.24", + "value":"-189.27" + } + }, + { + "id":"c193a879-54d0-4163-9465-6f492d05eb69", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T17:24:29.395Z", + "completed":"2016-09-29T17:24:29.395Z", + "new_balance":"14835.27", + "value":"-26.97" + } + }, + { + "id":"32ded2c7-d8de-4c0d-bc1c-fc0c2dd7544c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T02:09:17.870Z", + "completed":"2016-10-01T02:09:17.870Z", + "new_balance":"14782.09", + "value":"-53.18" + } + }, + { + "id":"af03ec78-e8bf-4748-a09c-0d857e609b34", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T18:19:28.823Z", + "completed":"2016-10-01T18:19:28.823Z", + "new_balance":"14647.61", + "value":"-134.48" + } + }, + { + "id":"f39a09da-e2d9-4415-a32d-2408c8e2545b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T19:39:57.675Z", + "completed":"2016-10-01T19:39:57.675Z", + "new_balance":"14617.73", + "value":"-29.88" + } + }, + { + "id":"b756081c-7b9f-4ff5-9736-e07bf6af8270", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T21:04:01.013Z", + "completed":"2016-10-01T21:04:01.013Z", + "new_balance":"14107.19", + "value":"-510.54" + } + }, + { + "id":"746fa4aa-e450-4f87-b194-f504f62d983f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T07:00:01.854Z", + "completed":"2016-10-02T07:00:01.854Z", + "new_balance":"14020.63", + "value":"-86.56" + } + }, + { + "id":"580c4d99-3683-4803-8088-4a2eb2b1b640", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T14:09:42.429Z", + "completed":"2016-10-02T14:09:42.429Z", + "new_balance":"13948.64", + "value":"-71.99" + } + }, + { + "id":"ba202f13-ad69-4fab-870f-09d978f6056c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T01:51:29.325Z", + "completed":"2016-10-03T01:51:29.325Z", + "new_balance":"13785.16", + "value":"-163.48" + } + }, + { + "id":"55c8ddab-f62c-48e4-8cc1-faac8a0939e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T04:29:56.996Z", + "completed":"2016-10-03T04:29:56.996Z", + "new_balance":"13750.38", + "value":"-34.78" + } + }, + { + "id":"9918c4d3-8497-4a3f-8190-544b6ae5e255", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:17:11.801Z", + "completed":"2016-10-03T07:17:11.801Z", + "new_balance":"13713.19", + "value":"-37.19" + } + }, + { + "id":"65fe6367-7b79-4c85-81c1-57ccdf8b8d06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T13:54:03.603Z", + "completed":"2016-10-03T13:54:03.603Z", + "new_balance":"13523.92", + "value":"-189.27" + } + }, + { + "id":"bd5c5843-595c-4493-b206-44f6422cbd65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T14:07:03.662Z", + "completed":"2016-10-03T14:07:03.662Z", + "new_balance":"12792.07", + "value":"-731.85" + } + }, + { + "id":"857eb2a0-8d62-4b14-bf8b-c1acb08d9c8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T16:31:03.393Z", + "completed":"2016-10-04T16:31:03.393Z", + "new_balance":"12718.14", + "value":"-73.93" + } + }, + { + "id":"0f17d760-cb1a-4915-8d80-3880c273015a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:29:02.088Z", + "completed":"2016-10-05T03:29:02.088Z", + "new_balance":"12690.69", + "value":"-27.45" + } + }, + { + "id":"bb05f949-2c8d-4e9b-9280-d5404e0c54aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T05:17:56.383Z", + "completed":"2016-10-05T05:17:56.383Z", + "new_balance":"12687.10", + "value":"-3.59" + } + }, + { + "id":"2b776956-8e5f-4353-868c-f2257093e6d9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T10:48:26.452Z", + "completed":"2016-10-07T10:48:26.452Z", + "new_balance":"12655.81", + "value":"-31.29" + } + }, + { + "id":"9767a3d5-81cb-4265-9e99-2fa6dceb1ccf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T22:29:16.299Z", + "completed":"2016-10-07T22:29:16.299Z", + "new_balance":"12640.99", + "value":"-14.82" + } + }, + { + "id":"0086672c-b68d-407e-b6d9-5a9794a7c201", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T21:29:35.369Z", + "completed":"2016-10-08T21:29:35.369Z", + "new_balance":"12633.83", + "value":"-7.16" + } + }, + { + "id":"17d9ee5f-09c0-4ae5-b3a7-0aac13f25af0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T05:40:18.263Z", + "completed":"2016-10-09T05:40:18.263Z", + "new_balance":"12627.12", + "value":"-6.71" + } + }, + { + "id":"d6bf7156-dcc0-49cf-9fb3-58853f3c82b6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T14:37:05.375Z", + "completed":"2016-10-09T14:37:05.375Z", + "new_balance":"12437.85", + "value":"-189.27" + } + }, + { + "id":"f186822c-a24b-4c1a-9794-80f0b086384e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T18:45:33.259Z", + "completed":"2016-10-09T18:45:33.259Z", + "new_balance":"12415.60", + "value":"-22.25" + } + }, + { + "id":"c6fa5e6c-f608-4736-acfe-0d3349a5ec2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:47:15.549Z", + "completed":"2016-10-10T17:47:15.549Z", + "new_balance":"12370.36", + "value":"-45.24" + } + }, + { + "id":"db211db5-2148-489e-b109-38c13267f4ef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T19:19:33.866Z", + "completed":"2016-10-17T19:19:33.866Z", + "new_balance":"12360.66", + "value":"-9.70" + } + }, + { + "id":"293352ae-f984-4430-b99b-19d6fcbaff4c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T07:43:43.197Z", + "completed":"2016-10-18T07:43:43.197Z", + "new_balance":"12328.38", + "value":"-32.28" + } + }, + { + "id":"9f147b61-60c1-467c-8f00-fbfd0b81936a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T03:33:20.491Z", + "completed":"2016-10-25T03:33:20.491Z", + "new_balance":"12285.86", + "value":"-42.52" + } + }, + { + "id":"44a130c9-1695-4554-b32f-035f21719d35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T02:10:21.730Z", + "completed":"2016-10-26T02:10:21.730Z", + "new_balance":"12279.15", + "value":"-6.71" + } + }, + { + "id":"639d0a73-46b6-4c59-a673-d9a38e3cbc4d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T06:59:26.285Z", + "completed":"2016-10-26T06:59:26.285Z", + "new_balance":"12215.58", + "value":"-63.57" + } + }, + { + "id":"0567ebe9-a16b-4078-a3de-f80d11a21a26", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T00:21:34.931Z", + "completed":"2016-11-02T00:21:34.931Z", + "new_balance":"12162.40", + "value":"-53.18" + } + }, + { + "id":"5bee0190-c813-4331-83bf-6984643d9890", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T11:03:40.510Z", + "completed":"2016-11-02T11:03:40.510Z", + "new_balance":"13842.81", + "value":"1680.41" + } + }, + { + "id":"c5e36020-e685-42f9-8cc0-c4e19398a510", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T12:17:23.579Z", + "completed":"2016-11-02T12:17:23.579Z", + "new_balance":"13812.93", + "value":"-29.88" + } + }, + { + "id":"5468ca58-aa71-44b9-9e55-9645f5cf4d50", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T12:45:19.736Z", + "completed":"2016-11-02T12:45:19.736Z", + "new_balance":"13778.50", + "value":"-34.43" + } + }, + { + "id":"a9356979-7b64-4778-a3c7-42e7510b69e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T17:44:10.907Z", + "completed":"2016-11-02T17:44:10.907Z", + "new_balance":"13267.96", + "value":"-510.54" + } + }, + { + "id":"1af6713d-9af4-42ee-8c05-dea9c4001d39", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T18:56:52.841Z", + "completed":"2016-11-02T18:56:52.841Z", + "new_balance":"13181.40", + "value":"-86.56" + } + }, + { + "id":"28d73b30-6176-486d-8d61-bdcec4a0f815", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T21:29:17.505Z", + "completed":"2016-11-02T21:29:17.505Z", + "new_balance":"13165.47", + "value":"-15.93" + } + }, + { + "id":"963db7e0-e159-4721-973a-66a54684e0f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T22:02:56.311Z", + "completed":"2016-11-02T22:02:56.311Z", + "new_balance":"13030.99", + "value":"-134.48" + } + }, + { + "id":"807286fe-755b-47e3-ab88-88f491c9a5a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T02:46:28.636Z", + "completed":"2016-11-06T02:46:28.636Z", + "new_balance":"13016.35", + "value":"-14.64" + } + }, + { + "id":"3e5fa1d2-0734-4f3a-afef-005ad6ee12e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T08:27:11.336Z", + "completed":"2016-11-07T08:27:11.336Z", + "new_balance":"12990.55", + "value":"-25.80" + } + }, + { + "id":"fdf6cb18-ca23-44ae-9cf0-df5f38c1b4e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T08:48:32.628Z", + "completed":"2016-11-07T08:48:32.628Z", + "new_balance":"12962.54", + "value":"-28.01" + } + }, + { + "id":"7f561625-b65e-4273-ae04-e58eb36d453e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T12:13:35.834Z", + "completed":"2016-11-07T12:13:35.834Z", + "new_balance":"12939.17", + "value":"-23.37" + } + }, + { + "id":"75e7c34b-89d4-4363-8d9d-84a05da955fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T02:04:57.620Z", + "completed":"2016-11-09T02:04:57.620Z", + "new_balance":"12935.08", + "value":"-4.09" + } + }, + { + "id":"e031aac1-df2e-4960-ac9a-c8d137a11bdb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T20:13:07.350Z", + "completed":"2016-11-09T20:13:07.350Z", + "new_balance":"12861.15", + "value":"-73.93" + } + }, + { + "id":"a5c8c986-42fe-47fb-84f9-397fc51ab6e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T03:57:37.250Z", + "completed":"2016-11-12T03:57:37.250Z", + "new_balance":"12840.05", + "value":"-21.10" + } + }, + { + "id":"5868e2cd-6713-4c3a-989c-19dbd58b4a74", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T07:51:32.718Z", + "completed":"2016-11-12T07:51:32.718Z", + "new_balance":"12812.20", + "value":"-27.85" + } + }, + { + "id":"3b059b38-e5e3-4bc2-aff0-016596ffcbef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T02:17:21.235Z", + "completed":"2016-11-14T02:17:21.235Z", + "new_balance":"12767.03", + "value":"-45.17" + } + }, + { + "id":"22356437-c7c3-4913-a94e-729ee1bb650a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T11:15:01.339Z", + "completed":"2016-11-14T11:15:01.339Z", + "new_balance":"12718.33", + "value":"-48.70" + } + }, + { + "id":"e49e9a77-d403-4dc2-b45d-f75ed6a1656c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T01:20:05.829Z", + "completed":"2016-11-16T01:20:05.829Z", + "new_balance":"12712.56", + "value":"-5.77" + } + }, + { + "id":"f3e0025c-50bb-4bc8-aa32-7193ba111b8c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T04:27:06.033Z", + "completed":"2016-11-18T04:27:06.033Z", + "new_balance":"12704.04", + "value":"-8.52" + } + }, + { + "id":"7e717079-72e3-422c-8655-aabc20aa0fd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T21:27:07.472Z", + "completed":"2016-11-20T21:27:07.472Z", + "new_balance":"12743.05", + "value":"39.01" + } + }, + { + "id":"eb7b6125-3d6b-46de-a46d-6b2c60ba0437", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T06:52:31.152Z", + "completed":"2016-11-21T06:52:31.152Z", + "new_balance":"12699.26", + "value":"-43.79" + } + }, + { + "id":"0cee6450-9311-4044-b83d-95dc0d5b8dc6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T13:23:41.445Z", + "completed":"2016-11-21T13:23:41.445Z", + "new_balance":"12653.63", + "value":"-45.63" + } + }, + { + "id":"3068f565-1ef2-4539-9d34-703757fb9368", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T03:34:04.552Z", + "completed":"2016-11-27T03:34:04.552Z", + "new_balance":"12628.07", + "value":"-25.56" + } + }, + { + "id":"e7ea0253-5b02-4323-8de1-efd9ab5a494d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T18:50:16.665Z", + "completed":"2016-11-27T18:50:16.665Z", + "new_balance":"12594.54", + "value":"-33.53" + } + }, + { + "id":"e66c8410-9ff7-4ddb-8660-4c56870d70d2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T02:18:53.229Z", + "completed":"2016-12-01T02:18:53.229Z", + "new_balance":"14274.95", + "value":"1680.41" + } + }, + { + "id":"3640a43c-6d87-4720-a01b-1b92d361504c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:15:58.237Z", + "completed":"2016-12-01T06:15:58.237Z", + "new_balance":"14245.07", + "value":"-29.88" + } + }, + { + "id":"e758861a-f96b-4226-8d91-e4d8e095acf2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:28:22.627Z", + "completed":"2016-12-01T08:28:22.627Z", + "new_balance":"14110.59", + "value":"-134.48" + } + }, + { + "id":"a93e1317-a7f8-47df-aacf-3816d98a1951", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T08:50:17.174Z", + "completed":"2016-12-01T08:50:17.174Z", + "new_balance":"14076.16", + "value":"-34.43" + } + }, + { + "id":"14592761-b622-4e93-af44-f7c7420cc997", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T11:06:33.127Z", + "completed":"2016-12-01T11:06:33.127Z", + "new_balance":"13565.62", + "value":"-510.54" + } + }, + { + "id":"91df5fea-a845-4b61-8633-2efd2ec042de", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T12:50:30.636Z", + "completed":"2016-12-01T12:50:30.636Z", + "new_balance":"13512.44", + "value":"-53.18" + } + }, + { + "id":"bcb6c75e-9466-4508-b80c-b67baeee799a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T03:56:49.497Z", + "completed":"2016-12-04T03:56:49.497Z", + "new_balance":"13425.88", + "value":"-86.56" + } + }, + { + "id":"fa96fcb3-bb0b-4e69-a0d9-2504767e7c87", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T22:45:54.975Z", + "completed":"2016-12-04T22:45:54.975Z", + "new_balance":"13294.04", + "value":"-131.84" + } + }, + { + "id":"a420c0ad-574d-4328-ae44-25173edd7812", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T11:39:24.250Z", + "completed":"2016-12-12T11:39:24.250Z", + "new_balance":"13263.23", + "value":"-30.81" + } + }, + { + "id":"e522f908-5a4d-4ff6-b17a-8003ea4e8e30", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T18:49:43.131Z", + "completed":"2016-12-12T18:49:43.131Z", + "new_balance":"13252.70", + "value":"-10.53" + } + }, + { + "id":"7cd081ad-502f-49aa-92b1-36d9ccdcba9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T04:30:06.199Z", + "completed":"2016-12-13T04:30:06.199Z", + "new_balance":"13246.23", + "value":"-6.47" + } + }, + { + "id":"1963474b-7209-4898-96e6-bf559caf3f61", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T22:09:17.144Z", + "completed":"2016-12-13T22:09:17.144Z", + "new_balance":"13165.02", + "value":"-81.21" + } + }, + { + "id":"7becc731-35b4-4f2b-804c-569b0e11227d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T23:53:47.729Z", + "completed":"2016-12-16T23:53:47.729Z", + "new_balance":"13123.79", + "value":"-41.23" + } + }, + { + "id":"c117dc5a-1bf4-4d2f-a9c7-d5b17c3548a8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T00:56:14.178Z", + "completed":"2016-12-18T00:56:14.178Z", + "new_balance":"13119.02", + "value":"-4.77" + } + }, + { + "id":"750a4919-c096-4487-afbe-40bd70a35d8e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T13:07:01.487Z", + "completed":"2016-12-19T13:07:01.487Z", + "new_balance":"13035.22", + "value":"-83.80" + } + }, + { + "id":"419a6dc0-4ecd-4571-933b-15e58d79bb65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T23:11:11.526Z", + "completed":"2016-12-19T23:11:11.526Z", + "new_balance":"12954.01", + "value":"-81.21" + } + }, + { + "id":"80868f49-c9fd-4a5b-820a-62b763c479c7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T00:56:03.446Z", + "completed":"2016-12-20T00:56:03.446Z", + "new_balance":"12911.67", + "value":"-42.34" + } + }, + { + "id":"8f75245a-d0b4-4468-8cde-505f702cd13f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T05:06:59.322Z", + "completed":"2016-12-21T05:06:59.322Z", + "new_balance":"12827.87", + "value":"-83.80" + } + }, + { + "id":"3ef1d96e-2e86-43a3-80b2-6dd2da9833dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T03:40:57.164Z", + "completed":"2016-12-24T03:40:57.164Z", + "new_balance":"12800.57", + "value":"-27.30" + } + }, + { + "id":"8db1b7de-8e53-446d-9490-ecff22096847", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T06:33:32.894Z", + "completed":"2016-12-24T06:33:32.894Z", + "new_balance":"12793.29", + "value":"-7.28" + } + }, + { + "id":"3bd1e042-25aa-473b-8f0e-efa473c48ee8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T07:02:26.138Z", + "completed":"2016-12-24T07:02:26.138Z", + "new_balance":"12780.05", + "value":"-13.24" + } + }, + { + "id":"dea09389-295b-41d9-b366-09076603dfd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T14:04:19.023Z", + "completed":"2016-12-24T14:04:19.023Z", + "new_balance":"12688.58", + "value":"-91.47" + } + }, + { + "id":"6fc00523-5834-464f-93f8-6e6b51160821", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T20:15:53.019Z", + "completed":"2016-12-24T20:15:53.019Z", + "new_balance":"12642.57", + "value":"-46.01" + } + }, + { + "id":"9f3e06be-57d6-46bf-9833-94507895393e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T23:10:59.613Z", + "completed":"2016-12-24T23:10:59.613Z", + "new_balance":"12638.99", + "value":"-3.58" + } + }, + { + "id":"8b9ad40e-ad29-4ab1-b362-63b874b8519b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T09:59:16.636Z", + "completed":"2016-12-28T09:59:16.636Z", + "new_balance":"12632.00", + "value":"-6.99" + } + }, + { + "id":"32401cb2-1668-4943-86cb-99a300530d7f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T15:09:39.375Z", + "completed":"2016-12-28T15:09:39.375Z", + "new_balance":"12550.59", + "value":"-81.41" + } + }, + { + "id":"7ed7ea3a-4f48-4a03-951d-6006682e495a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T16:25:53.197Z", + "completed":"2016-12-28T16:25:53.197Z", + "new_balance":"12503.79", + "value":"-46.80" + } + }, + { + "id":"9c49130a-8a0d-4f4f-b0d3-89b180fcf35e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T16:56:09.413Z", + "completed":"2016-12-28T16:56:09.413Z", + "new_balance":"12496.80", + "value":"-6.99" + } + }, + { + "id":"894b6479-78b0-4bef-b892-6e8643b48ccd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T07:18:15.756Z", + "completed":"2016-12-29T07:18:15.756Z", + "new_balance":"12490.33", + "value":"-6.47" + } + }, + { + "id":"f18e5f8c-01dd-45c5-ba88-4e979ef5ad47", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T07:50:58.064Z", + "completed":"2016-12-29T07:50:58.064Z", + "new_balance":"12431.43", + "value":"-58.90" + } + }, + { + "id":"b4eeb6c2-ea46-447a-8d6e-971dc291e59a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T08:32:47.997Z", + "completed":"2016-12-29T08:32:47.997Z", + "new_balance":"12380.42", + "value":"-51.01" + } + }, + { + "id":"ce9d8471-dfdd-4c86-ab60-f1b791c3f9d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T12:50:28.255Z", + "completed":"2016-12-29T12:50:28.255Z", + "new_balance":"12346.51", + "value":"-33.91" + } + }, + { + "id":"a609b891-9060-4e10-85c5-8e6fc952ba1d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T14:31:19.483Z", + "completed":"2016-12-29T14:31:19.483Z", + "new_balance":"12273.00", + "value":"-73.51" + } + }, + { + "id":"b7d59f02-91a8-4aae-b859-63a68cdf4a02", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T14:48:15.882Z", + "completed":"2016-12-29T14:48:15.882Z", + "new_balance":"12236.05", + "value":"-36.95" + } + }, + { + "id":"97a725e9-7b29-43e3-9906-8946a5527bf4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T06:27:04.422Z", + "completed":"2016-12-30T06:27:04.422Z", + "new_balance":"12224.82", + "value":"-11.23" + } + }, + { + "id":"f823e871-4ede-4c60-9331-b845647016a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T11:17:47.547Z", + "completed":"2016-12-30T11:17:47.547Z", + "new_balance":"12179.31", + "value":"-45.51" + } + }, + { + "id":"3ab386aa-fecd-47c7-81ff-c3e7e26641be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T15:04:03.556Z", + "completed":"2016-12-30T15:04:03.556Z", + "new_balance":"12173.43", + "value":"-5.88" + } + }, + { + "id":"ecee2a01-8bbe-48d0-9853-24b5f68d3dfa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T16:44:33.570Z", + "completed":"2016-12-30T16:44:33.570Z", + "new_balance":"12144.57", + "value":"-28.86" + } + }, + { + "id":"a4492366-a504-454b-958d-89d21f076c14", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T05:52:41.178Z", + "completed":"2016-12-31T05:52:41.178Z", + "new_balance":"12117.60", + "value":"-26.97" + } + }, + { + "id":"63bd0cc5-8089-47b4-abcf-be4f8141c0ec", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T06:48:48.244Z", + "completed":"2016-12-31T06:48:48.244Z", + "new_balance":"12083.57", + "value":"-34.03" + } + }, + { + "id":"e4dedb5c-9bb0-490a-9e6c-45ee915b2b49", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T12:05:29.031Z", + "completed":"2016-12-31T12:05:29.031Z", + "new_balance":"11894.30", + "value":"-189.27" + } + }, + { + "id":"99894f49-3093-482e-8339-62e93ac78662", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T14:37:53.496Z", + "completed":"2016-12-31T14:37:53.496Z", + "new_balance":"11878.22", + "value":"-16.08" + } + }, + { + "id":"3f29b56d-0127-4093-b53f-f7ee2d0cdf31", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:30:49.208Z", + "completed":"2017-01-01T07:30:49.208Z", + "new_balance":"11743.74", + "value":"-134.48" + } + }, + { + "id":"c8e014ff-0456-4c27-bcee-5d518c712600", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T08:52:13.865Z", + "completed":"2017-01-01T08:52:13.865Z", + "new_balance":"11709.31", + "value":"-34.43" + } + }, + { + "id":"204edbe0-0345-4d16-84f8-2900b71168e9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T12:25:54.282Z", + "completed":"2017-01-01T12:25:54.282Z", + "new_balance":"11198.77", + "value":"-510.54" + } + }, + { + "id":"3d907ee9-23f0-4d66-8895-b4efa939397c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T17:00:39.550Z", + "completed":"2017-01-01T17:00:39.550Z", + "new_balance":"11164.34", + "value":"-34.43" + } + }, + { + "id":"596511b4-da4d-402d-ab18-963cdabc3533", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T20:15:00.353Z", + "completed":"2017-01-01T20:15:00.353Z", + "new_balance":"11134.46", + "value":"-29.88" + } + }, + { + "id":"2debf391-7ebe-404c-9f5d-c72917d8b0f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T22:56:25.036Z", + "completed":"2017-01-01T22:56:25.036Z", + "new_balance":"11081.28", + "value":"-53.18" + } + }, + { + "id":"23fd0201-9c7a-4c88-bbaf-5f80c49d731a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T18:00:26.465Z", + "completed":"2017-01-02T18:00:26.465Z", + "new_balance":"10994.72", + "value":"-86.56" + } + }, + { + "id":"4be4dde4-d56b-43ff-b794-261e4623083f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T23:26:58.329Z", + "completed":"2017-01-02T23:26:58.329Z", + "new_balance":"10922.73", + "value":"-71.99" + } + }, + { + "id":"1d65dab0-f9ef-4d2a-956d-bb2f8c05747d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T05:21:01.132Z", + "completed":"2017-01-04T05:21:01.132Z", + "new_balance":"10885.54", + "value":"-37.19" + } + }, + { + "id":"2be9cc7d-4934-46ec-aba0-5c825a046171", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T09:47:47.822Z", + "completed":"2017-01-04T09:47:47.822Z", + "new_balance":"10850.76", + "value":"-34.78" + } + }, + { + "id":"f23721ec-367e-4d8c-b600-32a7c181d103", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T14:25:10.685Z", + "completed":"2017-01-07T14:25:10.685Z", + "new_balance":"10776.83", + "value":"-73.93" + } + }, + { + "id":"efbebdca-2e24-49ce-97df-e4cf18cbe218", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T23:04:17.080Z", + "completed":"2017-01-09T23:04:17.080Z", + "new_balance":"10773.24", + "value":"-3.59" + } + }, + { + "id":"e1261cff-ab84-4e57-8c01-115d7ddf45f4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T00:57:22.908Z", + "completed":"2017-01-10T00:57:22.908Z", + "new_balance":"10745.79", + "value":"-27.45" + } + }, + { + "id":"9fff2b0f-87ea-4987-94a7-da6556fd96bf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T17:45:43.736Z", + "completed":"2017-01-12T17:45:43.736Z", + "new_balance":"10714.50", + "value":"-31.29" + } + }, + { + "id":"a0fe579b-54b8-4570-ade2-1e1a2bfb453c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T14:57:20.924Z", + "completed":"2017-01-15T14:57:20.924Z", + "new_balance":"10707.34", + "value":"-7.16" + } + }, + { + "id":"ed12d3cd-0d17-4690-82e0-662c2a75f134", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T20:48:49.483Z", + "completed":"2017-01-15T20:48:49.483Z", + "new_balance":"10692.52", + "value":"-14.82" + } + }, + { + "id":"7af5375e-06f9-408b-9943-0311e6cbd5c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T21:48:46.410Z", + "completed":"2017-01-17T21:48:46.410Z", + "new_balance":"10670.27", + "value":"-22.25" + } + }, + { + "id":"1e200f2f-a661-483e-95b4-32c66272512e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T18:51:55.237Z", + "completed":"2017-01-19T18:51:55.237Z", + "new_balance":"10481.00", + "value":"-189.27" + } + }, + { + "id":"d840ac04-772d-407d-9ffa-b61606b46a57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T04:53:53.765Z", + "completed":"2017-01-20T04:53:53.765Z", + "new_balance":"10474.29", + "value":"-6.71" + } + }, + { + "id":"97329058-4988-4e46-b9df-5f9250fc766d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T11:40:04.639Z", + "completed":"2017-01-22T11:40:04.639Z", + "new_balance":"10464.59", + "value":"-9.70" + } + }, + { + "id":"c9e5636b-cbc8-4271-bc77-95c585f3d615", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T16:54:52.503Z", + "completed":"2017-01-22T16:54:52.503Z", + "new_balance":"10419.35", + "value":"-45.24" + } + }, + { + "id":"3dfe317a-76f2-4238-97bd-bf9de860348e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T15:00:38.932Z", + "completed":"2017-01-24T15:00:38.932Z", + "new_balance":"10387.07", + "value":"-32.28" + } + }, + { + "id":"8b4356f1-aa74-4250-b6d2-c4101fccf282", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T08:54:19.684Z", + "completed":"2017-01-25T08:54:19.684Z", + "new_balance":"10344.55", + "value":"-42.52" + } + }, + { + "id":"5e517fdd-cbbe-40d2-a073-682d4caee11d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T15:15:47.062Z", + "completed":"2017-01-25T15:15:47.062Z", + "new_balance":"10337.84", + "value":"-6.71" + } + }, + { + "id":"60dfe4da-0667-44e1-b58a-99462a9e2a86", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T02:25:31.800Z", + "completed":"2017-01-26T02:25:31.800Z", + "new_balance":"10274.27", + "value":"-63.57" + } + }, + { + "id":"2132b30d-af6d-4957-9477-212d7a2c42ad", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T00:06:32.843Z", + "completed":"2017-02-01T00:06:32.843Z", + "new_balance":"10221.09", + "value":"-53.18" + } + }, + { + "id":"949385bb-18f5-4bb2-979e-30b061caedf8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T00:48:37.481Z", + "completed":"2017-02-01T00:48:37.481Z", + "new_balance":"10086.61", + "value":"-134.48" + } + }, + { + "id":"e634a518-8f03-4cfc-bca9-912a8addfd76", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T07:51:08.834Z", + "completed":"2017-02-01T07:51:08.834Z", + "new_balance":"9576.07", + "value":"-510.54" + } + }, + { + "id":"10975022-bc7b-42d8-8206-6016ea20a793", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:49:52.742Z", + "completed":"2017-02-01T15:49:52.742Z", + "new_balance":"11256.48", + "value":"1680.41" + } + }, + { + "id":"90bbc675-43fd-4ede-9581-ef15fb196e88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T16:26:29.401Z", + "completed":"2017-02-01T16:26:29.401Z", + "new_balance":"11222.05", + "value":"-34.43" + } + }, + { + "id":"fcc66661-a376-4363-8822-99894b705f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T17:38:50.540Z", + "completed":"2017-02-01T17:38:50.540Z", + "new_balance":"11192.17", + "value":"-29.88" + } + }, + { + "id":"bdbba1ed-9a0a-45cc-8b94-a89b3e87cb8c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T00:41:14.250Z", + "completed":"2017-02-02T00:41:14.250Z", + "new_balance":"11177.53", + "value":"-14.64" + } + }, + { + "id":"f8d494bb-8f05-4a45-b75c-e1a564c52c29", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T06:49:49.356Z", + "completed":"2017-02-02T06:49:49.356Z", + "new_balance":"11090.97", + "value":"-86.56" + } + }, + { + "id":"3dd12f32-534c-410a-8b25-3454bb85a813", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T19:47:32.572Z", + "completed":"2017-02-02T19:47:32.572Z", + "new_balance":"11075.04", + "value":"-15.93" + } + }, + { + "id":"f9d8bf9d-fdf5-42eb-9026-d7350b9e47da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T06:47:35.027Z", + "completed":"2017-02-03T06:47:35.027Z", + "new_balance":"11049.24", + "value":"-25.80" + } + }, + { + "id":"bb10f85a-c3d2-485c-8d92-02327cafe50c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T07:22:20.422Z", + "completed":"2017-02-03T07:22:20.422Z", + "new_balance":"11025.87", + "value":"-23.37" + } + }, + { + "id":"60d9e0e4-f806-43e5-b733-8a0f18519bb0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T13:41:41.224Z", + "completed":"2017-02-03T13:41:41.224Z", + "new_balance":"10997.86", + "value":"-28.01" + } + }, + { + "id":"900972ed-ab35-46b1-8d3b-095c4cf1b6ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T10:59:33.877Z", + "completed":"2017-02-06T10:59:33.877Z", + "new_balance":"10923.93", + "value":"-73.93" + } + }, + { + "id":"99c6a053-50e7-427d-9af2-ddd1a43b5f06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T09:30:14.659Z", + "completed":"2017-02-08T09:30:14.659Z", + "new_balance":"10902.83", + "value":"-21.10" + } + }, + { + "id":"d1900361-9129-4715-919c-e4ce43b55dde", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T10:15:54.985Z", + "completed":"2017-02-08T10:15:54.985Z", + "new_balance":"10874.98", + "value":"-27.85" + } + }, + { + "id":"2246288e-158e-48ab-bf32-408b4c04a238", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T12:30:54.282Z", + "completed":"2017-02-08T12:30:54.282Z", + "new_balance":"10870.89", + "value":"-4.09" + } + }, + { + "id":"aea02957-dcd7-4dca-a8e9-e1c15bef79d4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T08:46:16.121Z", + "completed":"2017-02-09T08:46:16.121Z", + "new_balance":"10825.72", + "value":"-45.17" + } + }, + { + "id":"d23f9053-b41e-40e6-90bb-3f92cc5de3d6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T13:00:25.594Z", + "completed":"2017-02-09T13:00:25.594Z", + "new_balance":"10777.02", + "value":"-48.70" + } + }, + { + "id":"c0913f2e-b9ae-465b-85df-86e28d626860", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T01:59:23.954Z", + "completed":"2017-02-12T01:59:23.954Z", + "new_balance":"10771.25", + "value":"-5.77" + } + }, + { + "id":"0ca7f8cf-4010-4010-9d9b-ec8f357cba16", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T05:51:28.207Z", + "completed":"2017-02-13T05:51:28.207Z", + "new_balance":"10810.26", + "value":"39.01" + } + }, + { + "id":"cbf540a3-8c75-4ff2-a02a-43948aebcd48", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T08:03:20.228Z", + "completed":"2017-02-13T08:03:20.228Z", + "new_balance":"10801.74", + "value":"-8.52" + } + }, + { + "id":"7c1fe6e7-4f0a-4577-9dd0-7e4c3099b8ce", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T13:03:36.728Z", + "completed":"2017-02-13T13:03:36.728Z", + "new_balance":"10757.95", + "value":"-43.79" + } + }, + { + "id":"4314980c-ffb3-4f6c-9474-fc53db7a0ad7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:12:31.853Z", + "completed":"2017-02-14T20:12:31.853Z", + "new_balance":"10712.32", + "value":"-45.63" + } + }, + { + "id":"81d57ca5-12e3-42f5-9996-7b5a92b06963", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T21:42:58.690Z", + "completed":"2017-02-15T21:42:58.690Z", + "new_balance":"10686.76", + "value":"-25.56" + } + }, + { + "id":"68dfa9ed-6eea-41a8-8bbd-e76285106c60", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T19:01:20.360Z", + "completed":"2017-02-28T19:01:20.360Z", + "new_balance":"10653.23", + "value":"-33.53" + } + }, + { + "id":"ac36c5e8-7d61-4558-84e8-8923fd654726", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T03:16:06.922Z", + "completed":"2017-03-01T03:16:06.922Z", + "new_balance":"12333.64", + "value":"1680.41" + } + }, + { + "id":"17bffeb2-2d33-4372-95e5-8bd7ea26f2a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T07:09:23.398Z", + "completed":"2017-03-01T07:09:23.398Z", + "new_balance":"11823.10", + "value":"-510.54" + } + }, + { + "id":"6c79d676-211c-46c6-869d-469e08baa3cb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T08:43:55.179Z", + "completed":"2017-03-01T08:43:55.179Z", + "new_balance":"11793.22", + "value":"-29.88" + } + }, + { + "id":"5f88fc62-68c8-4592-934e-885dc18aca92", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T09:57:33.708Z", + "completed":"2017-03-01T09:57:33.708Z", + "new_balance":"11758.79", + "value":"-34.43" + } + }, + { + "id":"bc5ebccd-96f6-46bb-bc62-6761a650cb17", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T14:12:37.011Z", + "completed":"2017-03-01T14:12:37.011Z", + "new_balance":"11624.31", + "value":"-134.48" + } + }, + { + "id":"c3186198-17da-404b-9f8e-231877fc1fa7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T21:47:25.218Z", + "completed":"2017-03-01T21:47:25.218Z", + "new_balance":"11571.13", + "value":"-53.18" + } + }, + { + "id":"45712871-1824-4167-9e54-dc0e0e429dd4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T00:21:28.513Z", + "completed":"2017-03-02T00:21:28.513Z", + "new_balance":"11484.57", + "value":"-86.56" + } + }, + { + "id":"372c985b-5f50-43a3-9a17-9554c1bdc9f3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T11:46:09.651Z", + "completed":"2017-03-04T11:46:09.651Z", + "new_balance":"11474.04", + "value":"-10.53" + } + }, + { + "id":"6097036b-9f38-4d50-bda2-08a1d063be78", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T12:04:02.322Z", + "completed":"2017-03-04T12:04:02.322Z", + "new_balance":"11467.57", + "value":"-6.47" + } + }, + { + "id":"c4125bf5-05a8-457a-a88d-604000f424a3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T14:28:24.074Z", + "completed":"2017-03-04T14:28:24.074Z", + "new_balance":"11436.76", + "value":"-30.81" + } + }, + { + "id":"4a3cef11-df33-40bf-971c-fde87890a5f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:46:20.871Z", + "completed":"2017-03-04T23:46:20.871Z", + "new_balance":"11355.55", + "value":"-81.21" + } + }, + { + "id":"a09ad146-53d1-470e-8c97-7c8ab60a9058", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T09:33:58.655Z", + "completed":"2017-03-05T09:33:58.655Z", + "new_balance":"11350.78", + "value":"-4.77" + } + }, + { + "id":"20c4e9b3-722a-401e-afd9-714713d14d4b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T17:44:53.094Z", + "completed":"2017-03-05T17:44:53.094Z", + "new_balance":"11309.55", + "value":"-41.23" + } + }, + { + "id":"700c7d30-46a0-4383-8d42-a153a0b8a0a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T06:27:56.400Z", + "completed":"2017-03-06T06:27:56.400Z", + "new_balance":"11228.34", + "value":"-81.21" + } + }, + { + "id":"d104a4ca-50d7-44db-bb38-2455546c8d2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T21:34:55.154Z", + "completed":"2017-03-06T21:34:55.154Z", + "new_balance":"11144.54", + "value":"-83.80" + } + }, + { + "id":"a1028417-70aa-40ad-a9be-8051661c55d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T18:46:45.113Z", + "completed":"2017-03-07T18:46:45.113Z", + "new_balance":"11102.20", + "value":"-42.34" + } + }, + { + "id":"130c5a4e-d7fb-4959-8181-27f829a9a521", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T16:17:00.724Z", + "completed":"2017-03-08T16:17:00.724Z", + "new_balance":"11018.40", + "value":"-83.80" + } + }, + { + "id":"3eba6b65-06d5-40b1-be48-7f13baf6064e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T14:41:06.548Z", + "completed":"2017-03-09T14:41:06.548Z", + "new_balance":"11014.82", + "value":"-3.58" + } + }, + { + "id":"4368820b-8259-4a30-9aa1-6c83c632f322", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T11:36:57.820Z", + "completed":"2017-03-10T11:36:57.820Z", + "new_balance":"10923.35", + "value":"-91.47" + } + }, + { + "id":"23f0ba78-5065-4b0c-a1cd-862630f6014d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:39:59.610Z", + "completed":"2017-03-11T07:39:59.610Z", + "new_balance":"10916.07", + "value":"-7.28" + } + }, + { + "id":"33ff6abc-e2bb-492b-b171-da2cf1da7b5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T04:15:20.841Z", + "completed":"2017-03-12T04:15:20.841Z", + "new_balance":"10888.77", + "value":"-27.30" + } + }, + { + "id":"f92a6c92-f535-4ff1-bc2d-5d9555a6531b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T13:09:29.699Z", + "completed":"2017-03-12T13:09:29.699Z", + "new_balance":"10875.53", + "value":"-13.24" + } + }, + { + "id":"ae019736-5ed1-4526-b66d-73645fd64d7b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T00:02:06.201Z", + "completed":"2017-03-13T00:02:06.201Z", + "new_balance":"10829.52", + "value":"-46.01" + } + }, + { + "id":"128badd7-486f-4c2a-b612-6e228ae80888", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T06:20:34.749Z", + "completed":"2017-03-14T06:20:34.749Z", + "new_balance":"10822.53", + "value":"-6.99" + } + }, + { + "id":"20d61603-fcb6-4923-9866-7c3c186c118b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T15:49:54.470Z", + "completed":"2017-03-16T15:49:54.470Z", + "new_balance":"10741.12", + "value":"-81.41" + } + }, + { + "id":"85885aaa-b31f-4b68-bac9-db99f2980707", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T23:42:04.753Z", + "completed":"2017-03-16T23:42:04.753Z", + "new_balance":"10694.32", + "value":"-46.80" + } + }, + { + "id":"8062773b-b698-421b-831b-76bccb2003d0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T15:34:29.719Z", + "completed":"2017-03-18T15:34:29.719Z", + "new_balance":"10687.33", + "value":"-6.99" + } + }, + { + "id":"fee6d1eb-d67e-47ef-aecb-517f0862de92", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T01:37:12.275Z", + "completed":"2017-03-19T01:37:12.275Z", + "new_balance":"10653.42", + "value":"-33.91" + } + }, + { + "id":"9a4e11cf-047f-40c0-9858-ad6da8780cd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T18:43:41.773Z", + "completed":"2017-03-19T18:43:41.773Z", + "new_balance":"10616.47", + "value":"-36.95" + } + }, + { + "id":"845cf52f-e234-4d42-8739-c28eeefa59e6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T22:16:46.452Z", + "completed":"2017-03-19T22:16:46.452Z", + "new_balance":"10565.46", + "value":"-51.01" + } + }, + { + "id":"4b5507f9-0549-47ab-9d0a-cbfc647ddcd9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T07:53:27.423Z", + "completed":"2017-03-20T07:53:27.423Z", + "new_balance":"10506.56", + "value":"-58.90" + } + }, + { + "id":"0cf174e7-9f3c-4132-8383-7eedc566c27a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T23:33:16.754Z", + "completed":"2017-03-20T23:33:16.754Z", + "new_balance":"10433.05", + "value":"-73.51" + } + }, + { + "id":"dfa3e82e-6d65-49b3-b2b0-709de31f19c6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T19:59:16.060Z", + "completed":"2017-03-21T19:59:16.060Z", + "new_balance":"10427.17", + "value":"-5.88" + } + }, + { + "id":"171d68cd-37fb-4260-9ec7-cb99051276da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T20:07:45.689Z", + "completed":"2017-03-21T20:07:45.689Z", + "new_balance":"10420.70", + "value":"-6.47" + } + }, + { + "id":"293484db-bf56-47c1-ad34-45f4736dac28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T02:28:48.865Z", + "completed":"2017-03-23T02:28:48.865Z", + "new_balance":"10375.19", + "value":"-45.51" + } + }, + { + "id":"35c50bf5-3e1f-422e-8284-42b756fea02a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T11:39:13.439Z", + "completed":"2017-03-23T11:39:13.439Z", + "new_balance":"10363.96", + "value":"-11.23" + } + }, + { + "id":"cb1e3c61-c35d-4553-b273-7d0fef0eaf84", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T03:29:53.953Z", + "completed":"2017-03-24T03:29:53.953Z", + "new_balance":"10335.10", + "value":"-28.86" + } + }, + { + "id":"b029bb07-1789-4dfd-97cf-4cfd634dfc2e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T18:15:09.249Z", + "completed":"2017-03-25T18:15:09.249Z", + "new_balance":"10319.02", + "value":"-16.08" + } + }, + { + "id":"9ed87442-0be9-4ee6-b97e-39dcdc74cc9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T22:43:03.565Z", + "completed":"2017-03-25T22:43:03.565Z", + "new_balance":"10284.99", + "value":"-34.03" + } + }, + { + "id":"07e9e0ee-d9c1-405f-82cc-2f8fb35d433f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T21:06:51.420Z", + "completed":"2017-03-27T21:06:51.420Z", + "new_balance":"10095.72", + "value":"-189.27" + } + }, + { + "id":"15ceb860-331f-43fb-b8bf-f69799a7dabc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T14:33:11.635Z", + "completed":"2017-03-28T14:33:11.635Z", + "new_balance":"10068.75", + "value":"-26.97" + } + }, + { + "id":"7c706d7a-cec3-493f-88e8-0da8aaa99966", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T00:42:04.816Z", + "completed":"2017-04-01T00:42:04.816Z", + "new_balance":"10038.87", + "value":"-29.88" + } + }, + { + "id":"c48885c6-4ff6-4927-8f90-2a80fa6de367", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T04:27:54.929Z", + "completed":"2017-04-01T04:27:54.929Z", + "new_balance":"9985.69", + "value":"-53.18" + } + }, + { + "id":"ac31c94a-99a3-4668-8b43-576a332d960b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T10:29:15.273Z", + "completed":"2017-04-01T10:29:15.273Z", + "new_balance":"9475.15", + "value":"-510.54" + } + }, + { + "id":"2161904d-3ef3-41d1-b8fa-f2e5f8b308c9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:04:46.040Z", + "completed":"2017-04-01T22:04:46.040Z", + "new_balance":"9340.67", + "value":"-134.48" + } + }, + { + "id":"ecf77c99-8df6-4190-bbc9-0243a5a89315", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T14:48:15.371Z", + "completed":"2017-04-02T14:48:15.371Z", + "new_balance":"9254.11", + "value":"-86.56" + } + }, + { + "id":"d9f088c7-172a-4f88-8345-c49cc0410720", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T23:40:34.922Z", + "completed":"2017-04-02T23:40:34.922Z", + "new_balance":"9182.12", + "value":"-71.99" + } + }, + { + "id":"d3bcd779-5488-4113-97a6-00a7141f0e12", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T13:02:13.433Z", + "completed":"2017-04-03T13:02:13.433Z", + "new_balance":"9304.32", + "value":"122.20" + } + }, + { + "id":"3b1a76e0-1a51-473e-8770-35bc00483554", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:07:55.613Z", + "completed":"2017-04-03T14:07:55.613Z", + "new_balance":"9267.13", + "value":"-37.19" + } + }, + { + "id":"b7e214e2-9858-4f3a-9da9-e133acac276a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T16:54:54.472Z", + "completed":"2017-04-03T16:54:54.472Z", + "new_balance":"9232.35", + "value":"-34.78" + } + }, + { + "id":"04605bf7-5279-4cc9-b466-6ce6e8a9e45d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:24:14.884Z", + "completed":"2017-04-03T20:24:14.884Z", + "new_balance":"9195.16", + "value":"-37.19" + } + }, + { + "id":"f19043c6-5d2e-4160-8303-e93082ed1dac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:59:24.697Z", + "completed":"2017-04-03T21:59:24.697Z", + "new_balance":"9267.99", + "value":"72.83" + } + }, + { + "id":"e1d14eaa-f81f-4c90-abf7-840a4b7b653f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T05:19:27.577Z", + "completed":"2017-04-04T05:19:27.577Z", + "new_balance":"9194.06", + "value":"-73.93" + } + }, + { + "id":"db8f2c9c-c72e-40db-a1ba-38b49ccaecc7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T09:06:55.270Z", + "completed":"2017-04-05T09:06:55.270Z", + "new_balance":"9166.61", + "value":"-27.45" + } + }, + { + "id":"873a1d15-ac71-400b-8236-8ea35cb7c2d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T18:03:25.341Z", + "completed":"2017-04-05T18:03:25.341Z", + "new_balance":"9163.02", + "value":"-3.59" + } + }, + { + "id":"54e5e138-beef-4b59-907c-c9a38459ef38", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T01:35:27.456Z", + "completed":"2017-04-07T01:35:27.456Z", + "new_balance":"9148.20", + "value":"-14.82" + } + }, + { + "id":"21446cdd-a53f-4a6f-baa4-f779b4ef2fd6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T12:17:21.997Z", + "completed":"2017-04-07T12:17:21.997Z", + "new_balance":"9116.91", + "value":"-31.29" + } + }, + { + "id":"57443574-e8dd-4620-8b06-3360ae9f18ac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T06:38:32.606Z", + "completed":"2017-04-08T06:38:32.606Z", + "new_balance":"9109.75", + "value":"-7.16" + } + }, + { + "id":"19e2f9e3-d53b-4eec-9bb8-886a3bd225b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T10:46:32.025Z", + "completed":"2017-04-09T10:46:32.025Z", + "new_balance":"8920.48", + "value":"-189.27" + } + }, + { + "id":"2531f11e-696d-4727-aba8-829c593bee0c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T21:34:31.901Z", + "completed":"2017-04-09T21:34:31.901Z", + "new_balance":"8898.23", + "value":"-22.25" + } + }, + { + "id":"82eb1014-98b0-4f5d-acb4-f25990d05736", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T21:53:53.476Z", + "completed":"2017-04-09T21:53:53.476Z", + "new_balance":"8891.52", + "value":"-6.71" + } + }, + { + "id":"b95fd0f3-5141-4379-b954-3e8481bb5580", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T22:38:30.826Z", + "completed":"2017-04-10T22:38:30.826Z", + "new_balance":"8846.28", + "value":"-45.24" + } + }, + { + "id":"8c003c7c-a192-45e4-9868-81f9aedcc75c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T15:26:54.805Z", + "completed":"2017-04-17T15:26:54.805Z", + "new_balance":"8836.58", + "value":"-9.70" + } + }, + { + "id":"9ddaeb20-5052-4cef-98e5-b0a28a75e0f0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T22:56:08.354Z", + "completed":"2017-04-18T22:56:08.354Z", + "new_balance":"8804.30", + "value":"-32.28" + } + }, + { + "id":"3a6823eb-f9f2-4773-af4c-3b64f25dc313", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T14:40:22.510Z", + "completed":"2017-04-25T14:40:22.510Z", + "new_balance":"8761.78", + "value":"-42.52" + } + }, + { + "id":"36f8b9f8-bde1-4bf5-ad7d-d85b53ffa2b4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T19:25:04.942Z", + "completed":"2017-04-26T19:25:04.942Z", + "new_balance":"8698.21", + "value":"-63.57" + } + }, + { + "id":"3c8430e2-6964-4393-aae4-18154b22f92f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T21:45:12.558Z", + "completed":"2017-04-26T21:45:12.558Z", + "new_balance":"8691.50", + "value":"-6.71" + } + }, + { + "id":"7617365e-e730-450a-8314-80c0cab4d3a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T01:59:28.589Z", + "completed":"2017-05-02T01:59:28.589Z", + "new_balance":"8675.57", + "value":"-15.93" + } + }, + { + "id":"29b2f02d-9723-4a36-abe3-c8400e5ddb8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T04:13:06.049Z", + "completed":"2017-05-02T04:13:06.049Z", + "new_balance":"10355.98", + "value":"1680.41" + } + }, + { + "id":"58db172e-2cfc-42d9-b8d8-ece2a3a47d01", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T05:03:23.201Z", + "completed":"2017-05-02T05:03:23.201Z", + "new_balance":"10221.50", + "value":"-134.48" + } + }, + { + "id":"f0d8c86a-520a-4aa5-ad5d-f6995aa1811c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T06:17:32.180Z", + "completed":"2017-05-02T06:17:32.180Z", + "new_balance":"10191.62", + "value":"-29.88" + } + }, + { + "id":"1ef13065-1cd5-4fbe-9f56-b791f0adc995", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T14:23:32.873Z", + "completed":"2017-05-02T14:23:32.873Z", + "new_balance":"10105.06", + "value":"-86.56" + } + }, + { + "id":"dc32d334-532b-4746-8fae-037ea1db77a4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T20:04:30.126Z", + "completed":"2017-05-02T20:04:30.126Z", + "new_balance":"10070.63", + "value":"-34.43" + } + }, + { + "id":"f91c01e1-c0bd-494a-a7b2-2906e543f0b1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T20:33:42.520Z", + "completed":"2017-05-02T20:33:42.520Z", + "new_balance":"10017.45", + "value":"-53.18" + } + }, + { + "id":"839390d6-0471-4d50-b317-fdeb65c4ebda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T21:24:47.515Z", + "completed":"2017-05-02T21:24:47.515Z", + "new_balance":"9506.91", + "value":"-510.54" + } + }, + { + "id":"16360eb4-ac67-4c29-ad1f-47b5cb239ec0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T04:45:16.944Z", + "completed":"2017-05-03T04:45:16.944Z", + "new_balance":"9483.54", + "value":"-23.37" + } + }, + { + "id":"33902eb4-8e9e-4954-a1ed-37c8ad2e7a5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T16:45:22.799Z", + "completed":"2017-05-03T16:45:22.799Z", + "new_balance":"9468.90", + "value":"-14.64" + } + }, + { + "id":"af08c110-927a-4ddf-9a95-26e888c04dac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T05:08:25.270Z", + "completed":"2017-05-04T05:08:25.270Z", + "new_balance":"9440.89", + "value":"-28.01" + } + }, + { + "id":"ffbe0c35-090d-462b-ac34-c9ff32d6a253", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T23:27:21.573Z", + "completed":"2017-05-04T23:27:21.573Z", + "new_balance":"9415.09", + "value":"-25.80" + } + }, + { + "id":"aae1fa03-a651-4c8a-978f-9dbdeee41d11", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T19:26:21.410Z", + "completed":"2017-05-05T19:26:21.410Z", + "new_balance":"9341.16", + "value":"-73.93" + } + }, + { + "id":"b552890b-f061-4f90-9b9a-bf81f8e9dc61", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T08:52:39.482Z", + "completed":"2017-05-07T08:52:39.482Z", + "new_balance":"9337.07", + "value":"-4.09" + } + }, + { + "id":"54771d0a-5679-4a93-a49e-f147cd883ef3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:35:44.822Z", + "completed":"2017-05-07T14:35:44.822Z", + "new_balance":"9309.22", + "value":"-27.85" + } + }, + { + "id":"99e43a98-5c7f-41a4-a174-19557399229c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T04:20:39.687Z", + "completed":"2017-05-12T04:20:39.687Z", + "new_balance":"9260.52", + "value":"-48.70" + } + }, + { + "id":"d2eb9317-3999-413f-b2d0-3428969b8dda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T07:38:23.369Z", + "completed":"2017-05-12T07:38:23.369Z", + "new_balance":"9239.42", + "value":"-21.10" + } + }, + { + "id":"56a010b5-e961-471e-b270-c85b94060346", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T14:46:45.956Z", + "completed":"2017-05-14T14:46:45.956Z", + "new_balance":"9194.25", + "value":"-45.17" + } + }, + { + "id":"a9dee0c9-248b-43d3-9164-e2dcc5ed84f7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T03:56:00.009Z", + "completed":"2017-05-16T03:56:00.009Z", + "new_balance":"9188.48", + "value":"-5.77" + } + }, + { + "id":"2db3529d-608d-4f70-86dd-bacaafbbac0a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T05:48:52.242Z", + "completed":"2017-05-18T05:48:52.242Z", + "new_balance":"9179.96", + "value":"-8.52" + } + }, + { + "id":"fe651c62-e3b8-4633-b3e3-e1d8d73c69cf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T19:26:05.882Z", + "completed":"2017-05-20T19:26:05.882Z", + "new_balance":"9218.97", + "value":"39.01" + } + }, + { + "id":"6885e120-1ff2-405a-8f5a-8dadde5945be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T19:22:46.913Z", + "completed":"2017-05-21T19:22:46.913Z", + "new_balance":"9173.34", + "value":"-45.63" + } + }, + { + "id":"03ebe9d2-b12b-47ba-a82e-37c28283eeaf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T22:09:55.966Z", + "completed":"2017-05-21T22:09:55.966Z", + "new_balance":"9129.55", + "value":"-43.79" + } + }, + { + "id":"9e77d84e-b5ad-4091-a41c-d97abe2f9b5e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T07:47:10.885Z", + "completed":"2017-05-27T07:47:10.885Z", + "new_balance":"9096.02", + "value":"-33.53" + } + }, + { + "id":"c16c0049-b698-40e4-b817-1e28a2e7e71f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T16:32:16.508Z", + "completed":"2017-05-27T16:32:16.508Z", + "new_balance":"9070.46", + "value":"-25.56" + } + }, + { + "id":"1c233248-d130-4509-80f9-cc032aa0801f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T02:40:58.909Z", + "completed":"2017-06-01T02:40:58.909Z", + "new_balance":"9040.58", + "value":"-29.88" + } + }, + { + "id":"0ce2d47b-8a03-4826-962c-e62de63c2024", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T13:15:51.402Z", + "completed":"2017-06-01T13:15:51.402Z", + "new_balance":"10720.99", + "value":"1680.41" + } + }, + { + "id":"cd056b5c-d666-4afd-b334-3775e1c36a5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T13:46:37.867Z", + "completed":"2017-06-01T13:46:37.867Z", + "new_balance":"10210.45", + "value":"-510.54" + } + }, + { + "id":"6754d8ae-84ac-4ab9-ae4b-6a67cc14a601", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T15:31:46.556Z", + "completed":"2017-06-01T15:31:46.556Z", + "new_balance":"10157.27", + "value":"-53.18" + } + }, + { + "id":"90b0e7af-9168-4b15-8f43-dcf8f9b4f01d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T16:57:56.685Z", + "completed":"2017-06-01T16:57:56.685Z", + "new_balance":"10122.84", + "value":"-34.43" + } + }, + { + "id":"8387552d-c117-474a-8352-71d3ddcc50e0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T23:27:07.283Z", + "completed":"2017-06-01T23:27:07.283Z", + "new_balance":"9988.36", + "value":"-134.48" + } + }, + { + "id":"13a83ff8-19d3-4f58-b901-c7886f73757c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:34:50.844Z", + "completed":"2017-06-04T07:34:50.844Z", + "new_balance":"9856.52", + "value":"-131.84" + } + }, + { + "id":"9bb04459-86e9-4b87-ad4f-bde70fae921b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T16:29:53.275Z", + "completed":"2017-06-04T16:29:53.275Z", + "new_balance":"9769.96", + "value":"-86.56" + } + }, + { + "id":"03b4e552-acba-432b-b3c4-a39d8784f543", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T03:40:30.711Z", + "completed":"2017-06-11T03:40:30.711Z", + "new_balance":"9739.15", + "value":"-30.81" + } + }, + { + "id":"228dda84-d7c8-41b2-8263-b2b7a1b86911", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T08:48:45.322Z", + "completed":"2017-06-12T08:48:45.322Z", + "new_balance":"9728.62", + "value":"-10.53" + } + }, + { + "id":"5e7dbe90-31a1-4ea0-9eca-1f52790ad9a6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T11:34:29.603Z", + "completed":"2017-06-13T11:34:29.603Z", + "new_balance":"9647.41", + "value":"-81.21" + } + }, + { + "id":"64f2cbdd-e26d-4fe4-859c-dddcb680d6cc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T15:51:41.863Z", + "completed":"2017-06-13T15:51:41.863Z", + "new_balance":"9640.94", + "value":"-6.47" + } + }, + { + "id":"c6ff00cb-e4cb-4e05-a347-c391d3f4d247", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T05:53:52.409Z", + "completed":"2017-06-16T05:53:52.409Z", + "new_balance":"9599.71", + "value":"-41.23" + } + }, + { + "id":"ce6cd94d-e235-41d5-b716-6f1eb8abefd0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T00:55:32.882Z", + "completed":"2017-06-17T00:55:32.882Z", + "new_balance":"9594.94", + "value":"-4.77" + } + }, + { + "id":"10bb1048-1c07-45b1-8ce8-a43059a17691", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T02:55:05.487Z", + "completed":"2017-06-17T02:55:05.487Z", + "new_balance":"9513.73", + "value":"-81.21" + } + }, + { + "id":"c04a5b7b-0229-465e-9e86-eb466e50fbef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T03:26:26.571Z", + "completed":"2017-06-18T03:26:26.571Z", + "new_balance":"9429.93", + "value":"-83.80" + } + }, + { + "id":"47e614be-d462-4d10-848f-47efc0e6d8e7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:44:38.907Z", + "completed":"2017-06-19T12:44:38.907Z", + "new_balance":"9387.59", + "value":"-42.34" + } + }, + { + "id":"821eb513-fa8b-41c1-b3d2-a9884aabe994", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:57:33.198Z", + "completed":"2017-06-19T21:57:33.198Z", + "new_balance":"9303.79", + "value":"-83.80" + } + }, + { + "id":"68464139-6460-4f9e-b423-f76f493067d1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T13:21:03.805Z", + "completed":"2017-06-21T13:21:03.805Z", + "new_balance":"9212.32", + "value":"-91.47" + } + }, + { + "id":"b3a12634-6268-49b1-b436-3c7a03efac88", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T18:12:50.740Z", + "completed":"2017-06-21T18:12:50.740Z", + "new_balance":"9208.74", + "value":"-3.58" + } + }, + { + "id":"58234b19-29df-4956-9762-ffd11d92f087", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T04:53:15.560Z", + "completed":"2017-06-23T04:53:15.560Z", + "new_balance":"9201.46", + "value":"-7.28" + } + }, + { + "id":"582ae48b-02ce-4f23-bdd7-1d3684907584", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T08:01:29.029Z", + "completed":"2017-06-23T08:01:29.029Z", + "new_balance":"9174.16", + "value":"-27.30" + } + }, + { + "id":"4892e5a8-9106-4d9d-be51-e2eebc8c5078", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T02:11:50.320Z", + "completed":"2017-06-24T02:11:50.320Z", + "new_balance":"9128.15", + "value":"-46.01" + } + }, + { + "id":"9dda5b31-b853-49c8-a1e0-675d1b8af7d9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T06:38:59.655Z", + "completed":"2017-06-24T06:38:59.655Z", + "new_balance":"9114.91", + "value":"-13.24" + } + }, + { + "id":"3dbca6e5-a20a-487a-a139-227f3dced914", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T19:25:38.901Z", + "completed":"2017-06-28T19:25:38.901Z", + "new_balance":"9033.50", + "value":"-81.41" + } + }, + { + "id":"99a8d90e-4e29-40b0-b5a0-7c9af4cf85d4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T21:00:31.429Z", + "completed":"2017-06-28T21:00:31.429Z", + "new_balance":"9026.51", + "value":"-6.99" + } + }, + { + "id":"75de73bf-4f99-4e0e-93f0-15c8c7a42310", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T22:01:04.752Z", + "completed":"2017-06-28T22:01:04.752Z", + "new_balance":"9019.52", + "value":"-6.99" + } + }, + { + "id":"d97487ef-01a2-4a43-92e3-78c3f4e76656", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T22:52:38.242Z", + "completed":"2017-06-28T22:52:38.242Z", + "new_balance":"8972.72", + "value":"-46.80" + } + }, + { + "id":"78d44b11-914a-421d-b5da-b3ad5b3f8888", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T02:58:19.569Z", + "completed":"2017-06-29T02:58:19.569Z", + "new_balance":"8913.82", + "value":"-58.90" + } + }, + { + "id":"8ae69503-a8e6-4746-b85d-4df82058c4ff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T06:32:42.036Z", + "completed":"2017-06-29T06:32:42.036Z", + "new_balance":"8907.35", + "value":"-6.47" + } + }, + { + "id":"8a5b1e5d-22df-413c-8d33-30e1661f156c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T10:42:22.915Z", + "completed":"2017-06-29T10:42:22.915Z", + "new_balance":"8856.34", + "value":"-51.01" + } + }, + { + "id":"9b738aa2-189c-4e65-96da-e23a7dc4c933", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T12:43:12.649Z", + "completed":"2017-06-29T12:43:12.649Z", + "new_balance":"8819.39", + "value":"-36.95" + } + }, + { + "id":"bc45543d-6844-4332-b0b0-c13e0809de9e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T15:20:11.467Z", + "completed":"2017-06-29T15:20:11.467Z", + "new_balance":"8745.88", + "value":"-73.51" + } + }, + { + "id":"5d1d8744-7201-45b3-8735-53a0567cab0b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:24:25.311Z", + "completed":"2017-06-29T21:24:25.311Z", + "new_balance":"8711.97", + "value":"-33.91" + } + }, + { + "id":"b7540273-ed2b-46cb-a34b-2691d21a44be", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T01:37:12.462Z", + "completed":"2017-06-30T01:37:12.462Z", + "new_balance":"8700.74", + "value":"-11.23" + } + }, + { + "id":"f52e2d8b-f5e1-4b08-b427-21de6a2f902c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T01:52:16.930Z", + "completed":"2017-06-30T01:52:16.930Z", + "new_balance":"8694.86", + "value":"-5.88" + } + }, + { + "id":"bcab1f4c-cd96-4eb9-bb6a-80ae019449c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T08:27:35.742Z", + "completed":"2017-06-30T08:27:35.742Z", + "new_balance":"8666.00", + "value":"-28.86" + } + }, + { + "id":"283ff256-eeb0-41fa-aa29-33e702e97ed4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T09:42:53.275Z", + "completed":"2017-06-30T09:42:53.275Z", + "new_balance":"8620.49", + "value":"-45.51" + } + }, + { + "id":"d38ab0d6-b8a4-4a03-a25c-bac70203f4e6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T00:24:56.996Z", + "completed":"2017-07-01T00:24:56.996Z", + "new_balance":"8593.52", + "value":"-26.97" + } + }, + { + "id":"ab166875-c16e-4839-8bd9-02971aa06508", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T02:54:33.808Z", + "completed":"2017-07-01T02:54:33.808Z", + "new_balance":"8563.64", + "value":"-29.88" + } + }, + { + "id":"aaf8cc5c-4385-41c0-88ca-633e8e51534d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T04:39:46.951Z", + "completed":"2017-07-01T04:39:46.951Z", + "new_balance":"8510.46", + "value":"-53.18" + } + }, + { + "id":"db840eec-afa2-4329-b192-ea0c33cb1384", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T12:20:34.399Z", + "completed":"2017-07-01T12:20:34.399Z", + "new_balance":"7999.92", + "value":"-510.54" + } + }, + { + "id":"94563891-db46-42f0-b159-52a82d5a7fef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T13:11:26.427Z", + "completed":"2017-07-01T13:11:26.427Z", + "new_balance":"7983.84", + "value":"-16.08" + } + }, + { + "id":"088a8412-d3a1-4964-bf70-d3c4216f5951", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T13:29:13.150Z", + "completed":"2017-07-01T13:29:13.150Z", + "new_balance":"7849.36", + "value":"-134.48" + } + }, + { + "id":"a54e875d-76f4-4b3b-a629-5c2a8955757e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:10:34.492Z", + "completed":"2017-07-01T15:10:34.492Z", + "new_balance":"7814.93", + "value":"-34.43" + } + }, + { + "id":"e281d509-cb55-4eba-9656-efb5d0d62f5e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T16:18:37.904Z", + "completed":"2017-07-01T16:18:37.904Z", + "new_balance":"7780.50", + "value":"-34.43" + } + }, + { + "id":"488e2d78-eb16-4e2c-95d1-73a84434301f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:49:20.221Z", + "completed":"2017-07-01T17:49:20.221Z", + "new_balance":"7746.47", + "value":"-34.03" + } + }, + { + "id":"c9c29022-c656-4455-9ae8-abfc35034a65", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T20:49:14.705Z", + "completed":"2017-07-01T20:49:14.705Z", + "new_balance":"7557.20", + "value":"-189.27" + } + }, + { + "id":"62e49693-066d-4065-bf60-d26355c9983f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T20:27:30.521Z", + "completed":"2017-07-02T20:27:30.521Z", + "new_balance":"7470.64", + "value":"-86.56" + } + }, + { + "id":"ed20760d-784d-4728-9af4-52874237eea9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T13:50:53.774Z", + "completed":"2017-07-03T13:50:53.774Z", + "new_balance":"7375.21", + "value":"-95.43" + } + }, + { + "id":"36c2a74d-a485-402a-ad72-71776f64c249", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T09:20:28.908Z", + "completed":"2017-07-04T09:20:28.908Z", + "new_balance":"7359.43", + "value":"-15.78" + } + }, + { + "id":"9d3523db-38e4-4ad6-acbd-018db3888216", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T11:12:21.814Z", + "completed":"2017-07-05T11:12:21.814Z", + "new_balance":"7285.50", + "value":"-73.93" + } + }, + { + "id":"4965c50c-f001-4dee-b552-5595c13c326e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T21:15:05.483Z", + "completed":"2017-07-05T21:15:05.483Z", + "new_balance":"7213.41", + "value":"-72.09" + } + }, + { + "id":"645b70a9-1451-4e2d-9783-57939e980677", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T08:35:02.301Z", + "completed":"2017-07-06T08:35:02.301Z", + "new_balance":"7209.82", + "value":"-3.59" + } + }, + { + "id":"28f76675-20b6-4c13-b51b-3dbc0e2b8382", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T14:54:21.384Z", + "completed":"2017-07-11T14:54:21.384Z", + "new_balance":"7182.37", + "value":"-27.45" + } + }, + { + "id":"3c847961-bd64-47d9-8375-26c98d73f0fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T07:29:09.990Z", + "completed":"2017-07-12T07:29:09.990Z", + "new_balance":"7151.08", + "value":"-31.29" + } + }, + { + "id":"0399ae04-43fd-44a4-a27f-ab0333f5ea2c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T10:49:26.306Z", + "completed":"2017-07-14T10:49:26.306Z", + "new_balance":"7136.26", + "value":"-14.82" + } + }, + { + "id":"82426872-1e37-4652-99bf-b92986cf6e53", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T03:04:42.816Z", + "completed":"2017-07-16T03:04:42.816Z", + "new_balance":"7129.10", + "value":"-7.16" + } + }, + { + "id":"2f22e9f1-c411-4968-9e29-160d16eb7ee3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T08:57:13.975Z", + "completed":"2017-07-18T08:57:13.975Z", + "new_balance":"7106.85", + "value":"-22.25" + } + }, + { + "id":"a04ebfd2-4d81-46cf-a333-aba62d93fdb6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T02:10:09.227Z", + "completed":"2017-07-20T02:10:09.227Z", + "new_balance":"6917.58", + "value":"-189.27" + } + }, + { + "id":"1e1993c6-cbc5-455a-9309-ed6ddc941d54", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T10:46:14.718Z", + "completed":"2017-07-20T10:46:14.718Z", + "new_balance":"6910.87", + "value":"-6.71" + } + }, + { + "id":"3e499ee9-b777-433f-8c9b-6bb48bb61528", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T11:53:41.926Z", + "completed":"2017-07-24T11:53:41.926Z", + "new_balance":"6901.17", + "value":"-9.70" + } + }, + { + "id":"1e5be618-fc26-4086-83d8-1816dc1f599d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T19:58:33.655Z", + "completed":"2017-07-24T19:58:33.655Z", + "new_balance":"6855.93", + "value":"-45.24" + } + }, + { + "id":"42d7234d-e548-4142-8d97-6d5aa23cc20b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T05:55:34.747Z", + "completed":"2017-07-25T05:55:34.747Z", + "new_balance":"6813.41", + "value":"-42.52" + } + }, + { + "id":"a5cf7a66-efda-4ee7-97a0-c11d0a299529", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T08:05:01.008Z", + "completed":"2017-07-25T08:05:01.008Z", + "new_balance":"6781.13", + "value":"-32.28" + } + }, + { + "id":"43c0906c-6ee8-4422-989f-2b3d7990205c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T05:37:51.797Z", + "completed":"2017-07-26T05:37:51.797Z", + "new_balance":"6717.56", + "value":"-63.57" + } + }, + { + "id":"dc36d6da-a1b0-4ef5-8135-b95ed659942e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T01:06:25.061Z", + "completed":"2017-07-27T01:06:25.061Z", + "new_balance":"6710.85", + "value":"-6.71" + } + }, + { + "id":"066705e5-7fc2-486c-990d-5e4598ffc06a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T05:34:40.190Z", + "completed":"2017-08-01T05:34:40.190Z", + "new_balance":"6576.37", + "value":"-134.48" + } + }, + { + "id":"b982139d-d755-4ff7-8648-c28dd852ae5c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T06:37:05.353Z", + "completed":"2017-08-01T06:37:05.353Z", + "new_balance":"6523.19", + "value":"-53.18" + } + }, + { + "id":"3a00c6a7-035f-4820-b866-6407a7e81582", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T11:52:27.600Z", + "completed":"2017-08-01T11:52:27.600Z", + "new_balance":"8203.60", + "value":"1680.41" + } + }, + { + "id":"b813b6ec-18c6-4f59-a2a2-4603e361818c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T18:27:07.881Z", + "completed":"2017-08-01T18:27:07.881Z", + "new_balance":"7693.06", + "value":"-510.54" + } + }, + { + "id":"58032a7e-8f2e-44af-b4b4-c42fcae613aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T18:54:18.572Z", + "completed":"2017-08-01T18:54:18.572Z", + "new_balance":"7663.18", + "value":"-29.88" + } + }, + { + "id":"aa49c420-b04f-4151-827c-9146216a8eb6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T23:27:49.300Z", + "completed":"2017-08-01T23:27:49.300Z", + "new_balance":"7628.75", + "value":"-34.43" + } + }, + { + "id":"82db81a9-36e3-400e-9428-cae56599609e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T06:04:29.721Z", + "completed":"2017-08-02T06:04:29.721Z", + "new_balance":"7542.19", + "value":"-86.56" + } + }, + { + "id":"945ab65c-e411-467d-be5f-acc75f319265", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T12:04:42.671Z", + "completed":"2017-08-03T12:04:42.671Z", + "new_balance":"7538.60", + "value":"-3.59" + } + }, + { + "id":"ed851542-3141-42cb-ac3c-81ce25d8c10a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T05:59:52.836Z", + "completed":"2017-08-04T05:59:52.836Z", + "new_balance":"7504.05", + "value":"-34.55" + } + }, + { + "id":"650a5c1f-c4f5-4a33-87d9-51370353ef82", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T13:53:37.812Z", + "completed":"2017-08-07T13:53:37.812Z", + "new_balance":"7480.68", + "value":"-23.37" + } + }, + { + "id":"b94edcd0-4e47-46f4-9338-fd8c60ac68c0", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T15:00:29.680Z", + "completed":"2017-08-09T15:00:29.680Z", + "new_balance":"7454.88", + "value":"-25.80" + } + }, + { + "id":"9d7294b9-e922-4ad4-b568-770b34e6ec1c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T15:30:07.327Z", + "completed":"2017-08-09T15:30:07.327Z", + "new_balance":"7426.87", + "value":"-28.01" + } + }, + { + "id":"9d92d576-11cc-4117-a063-7418579b269a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T13:01:10.955Z", + "completed":"2017-08-10T13:01:10.955Z", + "new_balance":"7352.94", + "value":"-73.93" + } + }, + { + "id":"12373016-0a82-43eb-ad16-feaf6ec9baaf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T18:24:53.099Z", + "completed":"2017-08-14T18:24:53.099Z", + "new_balance":"7348.85", + "value":"-4.09" + } + }, + { + "id":"b256cfc9-35fe-47b2-9278-0d5a94e66cbe", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T08:28:02.644Z", + "completed":"2017-08-15T08:28:02.644Z", + "new_balance":"7312.92", + "value":"-35.93" + } + }, + { + "id":"5a65a454-484b-4b41-bc56-d35ac625a84a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T18:26:10.912Z", + "completed":"2017-08-15T18:26:10.912Z", + "new_balance":"7285.07", + "value":"-27.85" + } + }, + { + "id":"57dd58a3-f285-4caa-95fc-3ac53cca8431", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T16:50:52.886Z", + "completed":"2017-08-16T16:50:52.886Z", + "new_balance":"7236.37", + "value":"-48.70" + } + }, + { + "id":"ba6d2d88-94b4-40ec-8271-a4600affc6e3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T18:15:48.437Z", + "completed":"2017-08-17T18:15:48.437Z", + "new_balance":"7191.20", + "value":"-45.17" + } + }, + { + "id":"d9b3f29a-5e98-4ac1-a46d-8b7dbcff5fa8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T00:26:00.267Z", + "completed":"2017-08-20T00:26:00.267Z", + "new_balance":"7185.43", + "value":"-5.77" + } + }, + { + "id":"8842403d-cf82-4aca-857f-ff71247f64a7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T22:10:32.553Z", + "completed":"2017-08-20T22:10:32.553Z", + "new_balance":"7176.91", + "value":"-8.52" + } + }, + { + "id":"7ff9f42f-0018-4432-99d4-8b34e69eb38f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T19:26:49.531Z", + "completed":"2017-08-22T19:26:49.531Z", + "new_balance":"7215.92", + "value":"39.01" + } + }, + { + "id":"063abc0d-beee-4dd9-ac92-fe0063afe500", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T15:20:00.115Z", + "completed":"2017-08-23T15:20:00.115Z", + "new_balance":"7172.13", + "value":"-43.79" + } + }, + { + "id":"1ee54f92-03f2-4e36-afcc-50cf13592942", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T21:59:39.896Z", + "completed":"2017-08-23T21:59:39.896Z", + "new_balance":"7126.50", + "value":"-45.63" + } + }, + { + "id":"39ac2306-dedd-496c-bf48-382804b5e41f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T15:48:39.078Z", + "completed":"2017-08-28T15:48:39.078Z", + "new_balance":"7100.94", + "value":"-25.56" + } + }, + { + "id":"e14bdf98-9a42-4023-a67a-2358c7015fab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T20:18:01.216Z", + "completed":"2017-08-28T20:18:01.216Z", + "new_balance":"7067.41", + "value":"-33.53" + } + }, + { + "id":"32b86763-4261-49a5-85b4-9bf787eebe86", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T01:38:21.443Z", + "completed":"2017-09-01T01:38:21.443Z", + "new_balance":"7014.23", + "value":"-53.18" + } + }, + { + "id":"62fe9ae7-95fa-43b8-abf6-f8b3ae51a234", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T01:43:27.409Z", + "completed":"2017-09-01T01:43:27.409Z", + "new_balance":"6503.69", + "value":"-510.54" + } + }, + { + "id":"60a52934-3e1b-4efe-8fad-35d7a028e702", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T04:36:02.938Z", + "completed":"2017-09-01T04:36:02.938Z", + "new_balance":"8184.10", + "value":"1680.41" + } + }, + { + "id":"4c6f868e-80a4-417c-a8cc-50d27d7ef361", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T07:01:24.500Z", + "completed":"2017-09-01T07:01:24.500Z", + "new_balance":"8154.22", + "value":"-29.88" + } + }, + { + "id":"cdd094ac-14ce-4554-8e56-06e943f16715", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T13:13:19.981Z", + "completed":"2017-09-01T13:13:19.981Z", + "new_balance":"8119.79", + "value":"-34.43" + } + }, + { + "id":"2b9f86f3-2de2-43f1-ac38-728c40b9ded6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T17:02:00.550Z", + "completed":"2017-09-01T17:02:00.550Z", + "new_balance":"7985.31", + "value":"-134.48" + } + }, + { + "id":"d936f0df-d229-4a39-8946-b8e1dab764bc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T08:11:28.254Z", + "completed":"2017-09-02T08:11:28.254Z", + "new_balance":"7898.75", + "value":"-86.56" + } + }, + { + "id":"e7b32294-8af8-43e6-8b23-d5a3fcbc0144", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T07:19:19.836Z", + "completed":"2017-09-04T07:19:19.836Z", + "new_balance":"7817.54", + "value":"-81.21" + } + }, + { + "id":"633d50a8-4be2-4cf1-8b90-0539de39b627", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T12:41:08.761Z", + "completed":"2017-09-04T12:41:08.761Z", + "new_balance":"7786.73", + "value":"-30.81" + } + }, + { + "id":"d77232d4-ffce-4d99-8519-4a1971d0c5da", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T20:34:32.054Z", + "completed":"2017-09-04T20:34:32.054Z", + "new_balance":"7776.20", + "value":"-10.53" + } + }, + { + "id":"fad0253e-d776-4de0-8178-a8bbe0277805", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T22:35:17.993Z", + "completed":"2017-09-04T22:35:17.993Z", + "new_balance":"7769.73", + "value":"-6.47" + } + }, + { + "id":"854849a6-5943-4d05-901a-9d9a40b75576", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T00:14:49.910Z", + "completed":"2017-09-05T00:14:49.910Z", + "new_balance":"7764.96", + "value":"-4.77" + } + }, + { + "id":"db2727d4-a0e0-45e1-bded-cbc04a3e5260", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T15:17:32.765Z", + "completed":"2017-09-05T15:17:32.765Z", + "new_balance":"7723.73", + "value":"-41.23" + } + }, + { + "id":"6631ea24-578f-4688-8d9c-073955eeb406", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T02:54:00.640Z", + "completed":"2017-09-06T02:54:00.640Z", + "new_balance":"7639.93", + "value":"-83.80" + } + }, + { + "id":"7d6c59ae-5656-4a6b-8922-53a2fa433a98", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T16:31:38.660Z", + "completed":"2017-09-06T16:31:38.660Z", + "new_balance":"7558.72", + "value":"-81.21" + } + }, + { + "id":"f1807060-0b25-4cce-bd42-6bb8f45e1351", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:04:59.166Z", + "completed":"2017-09-08T22:04:59.166Z", + "new_balance":"7516.38", + "value":"-42.34" + } + }, + { + "id":"62a57c84-9308-4a86-b255-4f89c04829e2", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T23:22:01.475Z", + "completed":"2017-09-08T23:22:01.475Z", + "new_balance":"7432.58", + "value":"-83.80" + } + }, + { + "id":"c166c5e6-b949-46d9-99af-2b431184c322", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T00:51:47.491Z", + "completed":"2017-09-10T00:51:47.491Z", + "new_balance":"7341.11", + "value":"-91.47" + } + }, + { + "id":"3bb59504-43e7-447c-a683-4e0593a06756", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T18:01:01.071Z", + "completed":"2017-09-10T18:01:01.071Z", + "new_balance":"7337.53", + "value":"-3.58" + } + }, + { + "id":"e905acbf-10de-4f54-ab0f-847b3bdf6ad8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T07:26:21.542Z", + "completed":"2017-09-11T07:26:21.542Z", + "new_balance":"7330.25", + "value":"-7.28" + } + }, + { + "id":"6fb5e7f1-1d72-4ec8-bb2a-8c11578140a1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T08:42:39.392Z", + "completed":"2017-09-12T08:42:39.392Z", + "new_balance":"7302.95", + "value":"-27.30" + } + }, + { + "id":"6d5be486-94f7-47cd-9ea0-77633c020277", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T10:26:27.023Z", + "completed":"2017-09-12T10:26:27.023Z", + "new_balance":"7289.71", + "value":"-13.24" + } + }, + { + "id":"760ee386-b24e-45fa-8946-9bac84bac5ae", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T03:43:33.317Z", + "completed":"2017-09-13T03:43:33.317Z", + "new_balance":"7243.70", + "value":"-46.01" + } + }, + { + "id":"b38b9090-fe43-4671-9780-29cbe0987440", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T15:19:59.741Z", + "completed":"2017-09-16T15:19:59.741Z", + "new_balance":"7236.71", + "value":"-6.99" + } + }, + { + "id":"3f954ac7-f99f-429e-812b-ff43b071eb73", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T02:13:24.959Z", + "completed":"2017-09-17T02:13:24.959Z", + "new_balance":"7155.30", + "value":"-81.41" + } + }, + { + "id":"7405070d-9156-4f15-b881-7c3283dec61d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T18:41:09.318Z", + "completed":"2017-09-17T18:41:09.318Z", + "new_balance":"7108.50", + "value":"-46.80" + } + }, + { + "id":"61086976-4beb-4b8f-ba70-6d83a64ee1ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T22:03:53.370Z", + "completed":"2017-09-18T22:03:53.370Z", + "new_balance":"7101.51", + "value":"-6.99" + } + }, + { + "id":"e01fdef6-aa93-499a-b47b-da01d94c2ce6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T03:45:15.344Z", + "completed":"2017-09-19T03:45:15.344Z", + "new_balance":"7067.60", + "value":"-33.91" + } + }, + { + "id":"be8587fe-71a9-4959-b4f5-08b246cda2d3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T04:18:06.082Z", + "completed":"2017-09-19T04:18:06.082Z", + "new_balance":"7016.59", + "value":"-51.01" + } + }, + { + "id":"2062763d-859d-4854-9fa0-3bc64c02f91a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T16:19:20.646Z", + "completed":"2017-09-19T16:19:20.646Z", + "new_balance":"6979.64", + "value":"-36.95" + } + }, + { + "id":"6f0551af-b45b-49d9-a241-9fa8ef2561c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T00:37:34.053Z", + "completed":"2017-09-20T00:37:34.053Z", + "new_balance":"6920.74", + "value":"-58.90" + } + }, + { + "id":"68cb9701-170b-47da-9a04-49c59132224e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T23:52:25.042Z", + "completed":"2017-09-20T23:52:25.042Z", + "new_balance":"6847.23", + "value":"-73.51" + } + }, + { + "id":"e222048b-92e1-43d7-9097-f5c95dc11cfc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T07:44:40.710Z", + "completed":"2017-09-21T07:44:40.710Z", + "new_balance":"6840.76", + "value":"-6.47" + } + }, + { + "id":"95110828-8b0a-42f5-ae44-f85b14f559bf", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T09:25:34.807Z", + "completed":"2017-09-21T09:25:34.807Z", + "new_balance":"6834.88", + "value":"-5.88" + } + }, + { + "id":"39f7c9d6-6080-423f-900b-5484f0dbf3dd", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T00:49:15.734Z", + "completed":"2017-09-23T00:49:15.734Z", + "new_balance":"6789.37", + "value":"-45.51" + } + }, + { + "id":"670713dd-20d9-453d-84ac-f1c7dd7dfe7a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T03:52:58.540Z", + "completed":"2017-09-23T03:52:58.540Z", + "new_balance":"6778.14", + "value":"-11.23" + } + }, + { + "id":"685c22d5-7471-430e-b174-eda2c4a6e304", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T09:18:31.080Z", + "completed":"2017-09-24T09:18:31.080Z", + "new_balance":"6749.28", + "value":"-28.86" + } + }, + { + "id":"9f28f921-f55a-434a-9148-33aaa191f207", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T07:12:29.481Z", + "completed":"2017-09-25T07:12:29.481Z", + "new_balance":"6733.20", + "value":"-16.08" + } + }, + { + "id":"9cadeb9f-5bf7-4752-abdb-c6af43e0480d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T08:34:09.618Z", + "completed":"2017-09-25T08:34:09.618Z", + "new_balance":"6699.17", + "value":"-34.03" + } + }, + { + "id":"e9a2e3be-3771-4e55-b9af-81d31186f624", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T07:07:08.784Z", + "completed":"2017-09-27T07:07:08.784Z", + "new_balance":"6509.90", + "value":"-189.27" + } + }, + { + "id":"944fbc1e-b652-48df-93d3-9b8c921640a9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T01:23:02.377Z", + "completed":"2017-09-29T01:23:02.377Z", + "new_balance":"6482.93", + "value":"-26.97" + } + }, + { + "id":"fad7e9ab-65b9-49ed-8b92-2f6c8875acd8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T03:42:49.201Z", + "completed":"2017-10-01T03:42:49.201Z", + "new_balance":"6453.05", + "value":"-29.88" + } + }, + { + "id":"d50aa05e-e44c-4fc0-a0e5-891d50fb5dd9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T08:20:47.637Z", + "completed":"2017-10-01T08:20:47.637Z", + "new_balance":"5942.51", + "value":"-510.54" + } + }, + { + "id":"ca001ea1-af0a-421a-9bf0-391f5554f473", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T11:02:41.182Z", + "completed":"2017-10-01T11:02:41.182Z", + "new_balance":"5808.03", + "value":"-134.48" + } + }, + { + "id":"d96b25ff-13ec-49e5-9ae4-a12c92f03dd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T22:17:12.733Z", + "completed":"2017-10-01T22:17:12.733Z", + "new_balance":"5754.85", + "value":"-53.18" + } + }, + { + "id":"3f8eb274-7e0d-457b-a978-29a856741492", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T00:22:56.359Z", + "completed":"2017-10-02T00:22:56.359Z", + "new_balance":"5668.29", + "value":"-86.56" + } + }, + { + "id":"7fb19c9a-7664-41bb-b05d-407092bf3f8a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T03:47:37.254Z", + "completed":"2017-10-02T03:47:37.254Z", + "new_balance":"5596.30", + "value":"-71.99" + } + }, + { + "id":"be7287ff-21bf-4547-96cb-dbd353be1011", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:00:08.926Z", + "completed":"2017-10-03T08:00:08.926Z", + "new_balance":"4864.45", + "value":"-731.85" + } + }, + { + "id":"fc4243dc-79bf-4f5d-9f14-a9b970cb791e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T15:22:59.064Z", + "completed":"2017-10-03T15:22:59.064Z", + "new_balance":"4700.97", + "value":"-163.48" + } + }, + { + "id":"77fcdd14-356d-4990-aa1d-b9778929591c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T17:03:05.488Z", + "completed":"2017-10-03T17:03:05.488Z", + "new_balance":"4666.19", + "value":"-34.78" + } + }, + { + "id":"8a4b81b9-9172-4b69-a10f-356a2e8681d5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T20:16:05.134Z", + "completed":"2017-10-03T20:16:05.134Z", + "new_balance":"4476.92", + "value":"-189.27" + } + }, + { + "id":"ec30bdda-4168-4095-bbdd-86226b717058", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T23:01:12.393Z", + "completed":"2017-10-03T23:01:12.393Z", + "new_balance":"4439.73", + "value":"-37.19" + } + }, + { + "id":"e0049681-f363-41c4-a8e9-8321b7b44c2c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T16:36:05.409Z", + "completed":"2017-10-04T16:36:05.409Z", + "new_balance":"4365.80", + "value":"-73.93" + } + }, + { + "id":"e43f6f27-3c72-4925-a6de-90f84fe77574", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T06:34:32.312Z", + "completed":"2017-10-05T06:34:32.312Z", + "new_balance":"4338.35", + "value":"-27.45" + } + }, + { + "id":"b56cb7a2-339a-4671-9bc7-e981fda76fd7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T11:27:05.236Z", + "completed":"2017-10-05T11:27:05.236Z", + "new_balance":"4334.76", + "value":"-3.59" + } + }, + { + "id":"6ad1eeac-889c-4308-a144-50f4a478304c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T03:26:17.517Z", + "completed":"2017-10-07T03:26:17.517Z", + "new_balance":"4319.94", + "value":"-14.82" + } + }, + { + "id":"c55fc727-d710-4243-80fe-82d94a76cc6e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T14:36:38.187Z", + "completed":"2017-10-07T14:36:38.187Z", + "new_balance":"4288.65", + "value":"-31.29" + } + }, + { + "id":"077e2609-01ea-466c-98c8-e966a7f133ff", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T01:12:18.815Z", + "completed":"2017-10-08T01:12:18.815Z", + "new_balance":"4281.49", + "value":"-7.16" + } + }, + { + "id":"d7663f9e-29bb-4efa-968c-756675bf6e9a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T08:12:57.931Z", + "completed":"2017-10-09T08:12:57.931Z", + "new_balance":"4274.78", + "value":"-6.71" + } + }, + { + "id":"0bde69d7-0e00-4118-b60f-3502489cb18d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T12:43:32.734Z", + "completed":"2017-10-09T12:43:32.734Z", + "new_balance":"4252.53", + "value":"-22.25" + } + }, + { + "id":"e421f522-8fd7-496a-ab3a-48940ca4a70f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T21:05:54.302Z", + "completed":"2017-10-09T21:05:54.302Z", + "new_balance":"4063.26", + "value":"-189.27" + } + }, + { + "id":"78014482-d30b-40a7-999f-a37407290ec5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T14:23:54.608Z", + "completed":"2017-10-10T14:23:54.608Z", + "new_balance":"4018.02", + "value":"-45.24" + } + }, + { + "id":"9101e671-72e7-4a8c-81f4-d614b599bb28", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T08:21:23.800Z", + "completed":"2017-10-17T08:21:23.800Z", + "new_balance":"4008.32", + "value":"-9.70" + } + }, + { + "id":"f1cb7874-c9d3-411d-93c8-7c62b76c7e5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:43:25.737Z", + "completed":"2017-10-18T01:43:25.737Z", + "new_balance":"3976.04", + "value":"-32.28" + } + }, + { + "id":"fbb0e5fb-ab91-4e08-8dd5-1b5aadda51d3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T15:51:30.655Z", + "completed":"2017-10-25T15:51:30.655Z", + "new_balance":"3933.52", + "value":"-42.52" + } + }, + { + "id":"e00ea7db-0989-47e2-b0c8-610320ee4eef", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T05:34:53.186Z", + "completed":"2017-10-26T05:34:53.186Z", + "new_balance":"3869.95", + "value":"-63.57" + } + }, + { + "id":"a0351bf3-927b-4ccf-b4ef-8ff3d3379286", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T23:50:41.193Z", + "completed":"2017-10-26T23:50:41.193Z", + "new_balance":"3863.24", + "value":"-6.71" + } + }, + { + "id":"5fac09bc-d14f-41cf-b98f-bbe55c92740f", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T02:58:37.574Z", + "completed":"2017-11-02T02:58:37.574Z", + "new_balance":"3776.68", + "value":"-86.56" + } + }, + { + "id":"010c5595-bc18-45ed-918f-13b95b57360e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T08:17:08.977Z", + "completed":"2017-11-02T08:17:08.977Z", + "new_balance":"5457.09", + "value":"1680.41" + } + }, + { + "id":"ab92a4a2-4fb1-4860-9a18-f0ab037c3476", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T09:34:35.465Z", + "completed":"2017-11-02T09:34:35.465Z", + "new_balance":"5441.16", + "value":"-15.93" + } + }, + { + "id":"8f57a155-c338-4448-90d2-5e2fa5649964", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T10:13:04.299Z", + "completed":"2017-11-02T10:13:04.299Z", + "new_balance":"5387.98", + "value":"-53.18" + } + }, + { + "id":"dfa523d9-779c-4afe-9878-6e56cfd18cd1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T14:43:05.856Z", + "completed":"2017-11-02T14:43:05.856Z", + "new_balance":"5358.10", + "value":"-29.88" + } + }, + { + "id":"ab091279-9484-486e-a036-eb14bc3c01fb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T15:26:59.492Z", + "completed":"2017-11-02T15:26:59.492Z", + "new_balance":"4847.56", + "value":"-510.54" + } + }, + { + "id":"fc77fcce-1fd6-4d9e-a642-8cbd623417c7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T21:12:07.368Z", + "completed":"2017-11-02T21:12:07.368Z", + "new_balance":"4713.08", + "value":"-134.48" + } + }, + { + "id":"ae36fd93-b419-4acc-8254-8a55bf2bb098", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T22:00:29.883Z", + "completed":"2017-11-02T22:00:29.883Z", + "new_balance":"4678.65", + "value":"-34.43" + } + }, + { + "id":"b6096503-2717-47d0-815c-c25cc6ef3f35", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T08:23:21.946Z", + "completed":"2017-11-06T08:23:21.946Z", + "new_balance":"4664.01", + "value":"-14.64" + } + }, + { + "id":"dd761326-a8d7-45c3-bea9-5aa8a61cc5f8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T06:34:22.146Z", + "completed":"2017-11-07T06:34:22.146Z", + "new_balance":"4638.21", + "value":"-25.80" + } + }, + { + "id":"0323babd-4066-4410-8b2b-97370093d55e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T09:51:45.490Z", + "completed":"2017-11-07T09:51:45.490Z", + "new_balance":"4614.84", + "value":"-23.37" + } + }, + { + "id":"2495083f-ea61-4429-90ac-548b41362780", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T11:12:39.545Z", + "completed":"2017-11-07T11:12:39.545Z", + "new_balance":"4586.83", + "value":"-28.01" + } + }, + { + "id":"e7b4609c-6e6a-4481-bc08-1a45bf02d267", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T15:11:15.340Z", + "completed":"2017-11-09T15:11:15.340Z", + "new_balance":"4582.74", + "value":"-4.09" + } + }, + { + "id":"b4beab2e-fff6-4d40-955c-14e89fe7b3ae", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T20:58:14.167Z", + "completed":"2017-11-09T20:58:14.167Z", + "new_balance":"4508.81", + "value":"-73.93" + } + }, + { + "id":"abb918bd-1024-4f87-bc5b-eb024bede227", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T00:26:20.400Z", + "completed":"2017-11-12T00:26:20.400Z", + "new_balance":"4487.71", + "value":"-21.10" + } + }, + { + "id":"9f87ad5c-d31a-49a4-a23b-ea354f0a788d", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T01:09:01.943Z", + "completed":"2017-11-12T01:09:01.943Z", + "new_balance":"4459.86", + "value":"-27.85" + } + }, + { + "id":"8469d39a-73f7-460c-8615-e307c6730380", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T03:55:21.267Z", + "completed":"2017-11-14T03:55:21.267Z", + "new_balance":"4411.16", + "value":"-48.70" + } + }, + { + "id":"7a1c59e9-bf9d-4413-a6a4-e0f6e91de016", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:26:54.219Z", + "completed":"2017-11-14T05:26:54.219Z", + "new_balance":"4365.99", + "value":"-45.17" + } + }, + { + "id":"eb41cc17-61e8-4b97-b090-3f5ac8d3bb98", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T15:32:07.863Z", + "completed":"2017-11-16T15:32:07.863Z", + "new_balance":"4360.22", + "value":"-5.77" + } + }, + { + "id":"aac2365f-8976-454f-a83e-b0e8a56d58e4", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T18:59:08.937Z", + "completed":"2017-11-18T18:59:08.937Z", + "new_balance":"4351.70", + "value":"-8.52" + } + }, + { + "id":"7c476889-12d4-47ec-8738-2519707c5b69", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T14:38:40.357Z", + "completed":"2017-11-20T14:38:40.357Z", + "new_balance":"4390.71", + "value":"39.01" + } + }, + { + "id":"90def5f4-2425-4ea7-9479-3c5a64868615", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T02:26:12.984Z", + "completed":"2017-11-21T02:26:12.984Z", + "new_balance":"4346.92", + "value":"-43.79" + } + }, + { + "id":"0e9388ed-2f5e-40a6-a613-4b305e685eda", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T16:28:50.195Z", + "completed":"2017-11-21T16:28:50.195Z", + "new_balance":"4301.29", + "value":"-45.63" + } + }, + { + "id":"d39fb7ab-5bb7-431d-af9d-60076809ad06", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T10:49:20.994Z", + "completed":"2017-11-27T10:49:20.994Z", + "new_balance":"4267.76", + "value":"-33.53" + } + }, + { + "id":"628006d4-45f3-4078-b69f-83b1bcf2e2d7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T17:00:18.261Z", + "completed":"2017-11-27T17:00:18.261Z", + "new_balance":"4242.20", + "value":"-25.56" + } + }, + { + "id":"5cd707d0-bd83-4a9f-8b02-4318dc8f9f36", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T01:54:11.260Z", + "completed":"2017-12-01T01:54:11.260Z", + "new_balance":"4189.02", + "value":"-53.18" + } + }, + { + "id":"2e9bb85f-149a-4cd3-8193-5013cff784d8", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:18:14.395Z", + "completed":"2017-12-01T02:18:14.395Z", + "new_balance":"4054.54", + "value":"-134.48" + } + }, + { + "id":"54790d92-3033-48a2-ae3c-198e4294af57", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T05:33:58.985Z", + "completed":"2017-12-01T05:33:58.985Z", + "new_balance":"4024.66", + "value":"-29.88" + } + }, + { + "id":"7caacb52-c98a-4c7f-90d4-ad8cb154ecce", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T12:57:35.634Z", + "completed":"2017-12-01T12:57:35.634Z", + "new_balance":"3990.23", + "value":"-34.43" + } + }, + { + "id":"549d9b8b-3e90-4c32-8bb1-02d8771bbdac", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:04:33.393Z", + "completed":"2017-12-01T16:04:33.393Z", + "new_balance":"5670.64", + "value":"1680.41" + } + }, + { + "id":"59771192-c573-4cf6-9715-2f6ae93a619a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T19:46:52.425Z", + "completed":"2017-12-01T19:46:52.425Z", + "new_balance":"5160.10", + "value":"-510.54" + } + }, + { + "id":"f23a45d4-55a2-40ae-a7ef-90a87f45e5ea", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T02:21:54.362Z", + "completed":"2017-12-04T02:21:54.362Z", + "new_balance":"5073.54", + "value":"-86.56" + } + }, + { + "id":"e49efd79-cb0b-4e5e-953a-80b0ad10cf5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:22:38.569Z", + "completed":"2017-12-04T21:22:38.569Z", + "new_balance":"4941.70", + "value":"-131.84" + } + }, + { + "id":"e146cede-f525-4257-ad13-2bb72ad6b91a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T00:48:26.645Z", + "completed":"2017-12-12T00:48:26.645Z", + "new_balance":"4931.17", + "value":"-10.53" + } + }, + { + "id":"1cab0823-5c06-428e-959f-975eb8311099", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T06:52:08.723Z", + "completed":"2017-12-12T06:52:08.723Z", + "new_balance":"4900.36", + "value":"-30.81" + } + }, + { + "id":"5fb1d1d8-201b-4a0a-a890-fd74f618fc5b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T19:07:18.685Z", + "completed":"2017-12-13T19:07:18.685Z", + "new_balance":"4893.89", + "value":"-6.47" + } + }, + { + "id":"e80e9e44-bda7-4e33-9b2c-317e10ab3d8b", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T22:55:21.388Z", + "completed":"2017-12-13T22:55:21.388Z", + "new_balance":"4812.68", + "value":"-81.21" + } + }, + { + "id":"f9044129-cc31-470b-b878-b627dd37791a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T14:30:56.330Z", + "completed":"2017-12-16T14:30:56.330Z", + "new_balance":"4771.45", + "value":"-41.23" + } + }, + { + "id":"29e9f51f-d94a-4d89-b81e-a4565aee4e13", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T08:32:21.918Z", + "completed":"2017-12-18T08:32:21.918Z", + "new_balance":"4766.68", + "value":"-4.77" + } + }, + { + "id":"cffa261a-d2f8-4d00-be15-eda15ee6fab5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:45:55.248Z", + "completed":"2017-12-19T00:45:55.248Z", + "new_balance":"4682.88", + "value":"-83.80" + } + }, + { + "id":"fba37435-2a00-4608-acf9-beaa67451aa3", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:26:46.639Z", + "completed":"2017-12-19T08:26:46.639Z", + "new_balance":"4601.67", + "value":"-81.21" + } + }, + { + "id":"6e4b7c12-36a8-4e8e-a180-49e382715da1", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T11:28:41.256Z", + "completed":"2017-12-20T11:28:41.256Z", + "new_balance":"4559.33", + "value":"-42.34" + } + }, + { + "id":"d13c868c-9f06-4a4c-b1e6-ce7250054df9", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T03:57:59.797Z", + "completed":"2017-12-21T03:57:59.797Z", + "new_balance":"4475.53", + "value":"-83.80" + } + }, + { + "id":"76ee6e9c-8ade-4fc4-9eb2-93b218df376a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T01:12:24.885Z", + "completed":"2017-12-24T01:12:24.885Z", + "new_balance":"4429.52", + "value":"-46.01" + } + }, + { + "id":"152a27be-8c71-4f6a-9ccb-566c658e7c3e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T04:24:30.191Z", + "completed":"2017-12-24T04:24:30.191Z", + "new_balance":"4402.22", + "value":"-27.30" + } + }, + { + "id":"e928242e-678a-4761-a2d0-17fd3a6bc39a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T10:16:22.722Z", + "completed":"2017-12-24T10:16:22.722Z", + "new_balance":"4388.98", + "value":"-13.24" + } + }, + { + "id":"2d36affb-7a58-4d3b-9986-509c3a11d7f6", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T10:31:09.317Z", + "completed":"2017-12-24T10:31:09.317Z", + "new_balance":"4381.70", + "value":"-7.28" + } + }, + { + "id":"87ebc9cd-68db-4cee-98bc-84e7c0af633a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T15:47:16.490Z", + "completed":"2017-12-24T15:47:16.490Z", + "new_balance":"4378.12", + "value":"-3.58" + } + }, + { + "id":"014c393b-4a97-413a-8c45-08b865232674", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T16:43:16.993Z", + "completed":"2017-12-24T16:43:16.993Z", + "new_balance":"4286.65", + "value":"-91.47" + } + }, + { + "id":"d9c9f00b-6f0f-43bb-a07f-e70309e47915", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T04:26:38.911Z", + "completed":"2017-12-28T04:26:38.911Z", + "new_balance":"4239.85", + "value":"-46.80" + } + }, + { + "id":"6ef55e2c-6bec-4156-bffb-0fbdf61350ab", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T10:41:08.950Z", + "completed":"2017-12-28T10:41:08.950Z", + "new_balance":"4232.86", + "value":"-6.99" + } + }, + { + "id":"40b25e95-605d-4d6e-9275-209ea5fba1dc", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T10:50:19.082Z", + "completed":"2017-12-28T10:50:19.082Z", + "new_balance":"4151.45", + "value":"-81.41" + } + }, + { + "id":"65c1d096-9e27-477d-9c50-50313cf3463c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:45:29.879Z", + "completed":"2017-12-28T16:45:29.879Z", + "new_balance":"4144.46", + "value":"-6.99" + } + }, + { + "id":"623a7cb1-56a1-4af3-80d7-54d6908176aa", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T07:47:32.636Z", + "completed":"2017-12-29T07:47:32.636Z", + "new_balance":"4137.99", + "value":"-6.47" + } + }, + { + "id":"b71ea35f-4f35-449c-9148-8f80b37b6b78", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T16:55:52.967Z", + "completed":"2017-12-29T16:55:52.967Z", + "new_balance":"4104.08", + "value":"-33.91" + } + }, + { + "id":"a0a46108-e09e-4a4e-8130-0ae49b54ee22", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T18:16:34.203Z", + "completed":"2017-12-29T18:16:34.203Z", + "new_balance":"4053.07", + "value":"-51.01" + } + }, + { + "id":"4341e8fa-0d53-4d6b-b544-c37418435acb", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T19:32:33.461Z", + "completed":"2017-12-29T19:32:33.461Z", + "new_balance":"3979.56", + "value":"-73.51" + } + }, + { + "id":"4f8d9ee7-dcb9-421a-8751-504849ec8b33", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T21:50:28.740Z", + "completed":"2017-12-29T21:50:28.740Z", + "new_balance":"3920.66", + "value":"-58.90" + } + }, + { + "id":"d53f9f43-5edd-4df5-b290-7a60a4480289", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:17:17.851Z", + "completed":"2017-12-29T22:17:17.851Z", + "new_balance":"3883.71", + "value":"-36.95" + } + }, + { + "id":"552bd7d0-c6d1-4eb9-8a5b-ba377b4ad35c", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T01:25:27.156Z", + "completed":"2017-12-30T01:25:27.156Z", + "new_balance":"3838.20", + "value":"-45.51" + } + }, + { + "id":"efe09408-3eab-4c85-804e-315d8bcc1217", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T07:43:02.118Z", + "completed":"2017-12-30T07:43:02.118Z", + "new_balance":"3809.34", + "value":"-28.86" + } + }, + { + "id":"b9c1ae77-a618-4829-9df7-faec546785c5", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T13:22:15.090Z", + "completed":"2017-12-30T13:22:15.090Z", + "new_balance":"3798.11", + "value":"-11.23" + } + }, + { + "id":"14c678ca-c7ce-4010-8f3d-f69207d1f867", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T19:06:07.371Z", + "completed":"2017-12-30T19:06:07.371Z", + "new_balance":"3792.23", + "value":"-5.88" + } + }, + { + "id":"fae88210-8a98-41eb-9d56-1de95d49cf7e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:20:32.415Z", + "completed":"2017-12-31T00:20:32.415Z", + "new_balance":"3602.96", + "value":"-189.27" + } + }, + { + "id":"2f246e2f-9a8f-4e03-b3bc-3e17b943ddc7", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T12:53:16.518Z", + "completed":"2017-12-31T12:53:16.518Z", + "new_balance":"3575.99", + "value":"-26.97" + } + }, + { + "id":"e996a619-4ff7-422a-a412-436d7369132e", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T13:34:33.988Z", + "completed":"2017-12-31T13:34:33.988Z", + "new_balance":"3541.96", + "value":"-34.03" + } + }, + { + "id":"c0cc7236-82e4-4cd4-8bce-b0db0bc04e2a", + "this_account":{ + "id":"1fbfbc33-69a8-4b74-a9a0-423eb847d3fe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T17:25:36.394Z", + "completed":"2017-12-31T17:25:36.394Z", + "new_balance":"3525.88", + "value":"-16.08" + } + }, + { + "id":"c9c1423e-9eb4-4992-a156-045166a5361a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:23:35.869Z", + "completed":"2016-01-01T01:23:35.869Z", + "new_balance":"4309.36", + "value":"-6.40" + } + }, + { + "id":"6e0b9e93-4b22-40f4-9134-fa01950b5b2d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T07:51:15.907Z", + "completed":"2016-01-01T07:51:15.907Z", + "new_balance":"4302.96", + "value":"-6.40" + } + }, + { + "id":"5d4bac2e-62a5-42c4-824a-b87d0f679e21", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T02:47:58.136Z", + "completed":"2016-01-03T02:47:58.136Z", + "new_balance":"4299.52", + "value":"-3.44" + } + }, + { + "id":"b4df343a-a797-4b37-b6b0-64fb3ac4dae2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T10:07:25.145Z", + "completed":"2016-01-03T10:07:25.145Z", + "new_balance":"4241.29", + "value":"-58.23" + } + }, + { + "id":"79f46fd2-3b85-439f-8288-765674d438d6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T15:18:41.313Z", + "completed":"2016-01-03T15:18:41.313Z", + "new_balance":"4234.10", + "value":"-7.19" + } + }, + { + "id":"01127775-696d-4cf8-89fb-1b0503c68fd1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T16:45:48.298Z", + "completed":"2016-01-03T16:45:48.298Z", + "new_balance":"4231.64", + "value":"-2.46" + } + }, + { + "id":"eda81186-836b-47fb-ac11-29b645505524", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T03:08:36.840Z", + "completed":"2016-01-05T03:08:36.840Z", + "new_balance":"4226.49", + "value":"-5.15" + } + }, + { + "id":"99c8a531-0dec-4d70-a519-93d6ccd7fa10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T04:41:44.713Z", + "completed":"2016-01-05T04:41:44.713Z", + "new_balance":"4225.34", + "value":"-1.15" + } + }, + { + "id":"96a20e19-80ff-4be8-8657-5620ba938842", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T22:30:42.327Z", + "completed":"2016-01-05T22:30:42.327Z", + "new_balance":"4220.92", + "value":"-4.42" + } + }, + { + "id":"11078a06-ca26-4624-b3bc-a6a1d39bac9d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T11:12:59.792Z", + "completed":"2016-01-06T11:12:59.792Z", + "new_balance":"4217.25", + "value":"-3.67" + } + }, + { + "id":"32bfde87-46ce-4cc2-997d-dacaf86e7e96", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T19:31:52.307Z", + "completed":"2016-01-06T19:31:52.307Z", + "new_balance":"4214.93", + "value":"-2.32" + } + }, + { + "id":"49796638-f485-4b9e-9ed2-438ee5eae72c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T02:49:02.992Z", + "completed":"2016-01-07T02:49:02.992Z", + "new_balance":"4210.46", + "value":"-4.47" + } + }, + { + "id":"01f0b0b5-76ff-4d22-a8e1-d16fee6d8fd9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T01:46:24.750Z", + "completed":"2016-01-10T01:46:24.750Z", + "new_balance":"4208.08", + "value":"-2.38" + } + }, + { + "id":"f3e98258-ec67-4d5a-9478-070e166834f0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T15:41:16.716Z", + "completed":"2016-01-10T15:41:16.716Z", + "new_balance":"4202.93", + "value":"-5.15" + } + }, + { + "id":"8213535f-23f3-43a3-ae4a-7ae9f17b2e76", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:14:45.265Z", + "completed":"2016-01-12T09:14:45.265Z", + "new_balance":"4200.47", + "value":"-2.46" + } + }, + { + "id":"da0b73e5-6ac6-4407-b964-11035b873e4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:24:15.618Z", + "completed":"2016-01-12T09:24:15.618Z", + "new_balance":"4196.00", + "value":"-4.47" + } + }, + { + "id":"dd53d84d-061d-4e37-81b4-bc1a9f3a0c97", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T16:36:10.955Z", + "completed":"2016-01-12T16:36:10.955Z", + "new_balance":"4193.27", + "value":"-2.73" + } + }, + { + "id":"fe451d32-b09c-4e42-8567-00a20cc0cf9b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T09:18:56.899Z", + "completed":"2016-01-15T09:18:56.899Z", + "new_balance":"4190.64", + "value":"-2.63" + } + }, + { + "id":"4b8e8004-2000-49e3-a31e-fe5b01da1685", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T08:43:47.889Z", + "completed":"2016-01-16T08:43:47.889Z", + "new_balance":"4189.68", + "value":"-0.96" + } + }, + { + "id":"4382f83c-ab10-4400-b469-fcc6682c351f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T10:45:19.428Z", + "completed":"2016-01-16T10:45:19.428Z", + "new_balance":"4184.53", + "value":"-5.15" + } + }, + { + "id":"1f8e23a8-975a-42b6-89a2-21d1a819a3d7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T06:46:22.039Z", + "completed":"2016-01-17T06:46:22.039Z", + "new_balance":"4181.94", + "value":"-2.59" + } + }, + { + "id":"b7966d30-e479-4544-a315-f2194d5a82c5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T23:14:45.448Z", + "completed":"2016-01-17T23:14:45.448Z", + "new_balance":"4175.19", + "value":"-6.75" + } + }, + { + "id":"5ddaf61e-3b9b-4f88-942a-f49f40f16ee1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T15:09:28.013Z", + "completed":"2016-01-19T15:09:28.013Z", + "new_balance":"4172.77", + "value":"-2.42" + } + }, + { + "id":"1db6b96a-0e61-49d1-9469-894b6d05f5cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T12:25:11.743Z", + "completed":"2016-01-20T12:25:11.743Z", + "new_balance":"4167.62", + "value":"-5.15" + } + }, + { + "id":"b0b583f7-69ac-4eb6-9407-2c09b2879d9c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:37:11.014Z", + "completed":"2016-01-23T22:37:11.014Z", + "new_balance":"4166.20", + "value":"-1.42" + } + }, + { + "id":"952136d2-a3f7-4671-830d-46e65b15da50", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T12:29:26.836Z", + "completed":"2016-01-26T12:29:26.836Z", + "new_balance":"4161.39", + "value":"-4.81" + } + }, + { + "id":"0fcf5e3b-8cf4-40df-ac25-1a8504c91fc7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T14:52:59.481Z", + "completed":"2016-01-27T14:52:59.481Z", + "new_balance":"4267.02", + "value":"105.63" + } + }, + { + "id":"0ee1f49c-0f90-4df2-a65c-8a65bc39df3d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T17:41:46.075Z", + "completed":"2016-01-28T17:41:46.075Z", + "new_balance":"4263.58", + "value":"-3.44" + } + }, + { + "id":"fb378446-3962-4cf5-a6df-d4d2b66d7f1b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T13:55:48.252Z", + "completed":"2016-01-30T13:55:48.252Z", + "new_balance":"4259.31", + "value":"-4.27" + } + }, + { + "id":"5a9caddf-597a-47f4-9e45-fb64aa6e2024", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T00:51:11.109Z", + "completed":"2016-02-03T00:51:11.109Z", + "new_balance":"4252.12", + "value":"-7.19" + } + }, + { + "id":"62612b44-522c-4a8f-b918-5798d9c40c94", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T12:42:15.307Z", + "completed":"2016-02-03T12:42:15.307Z", + "new_balance":"4249.66", + "value":"-2.46" + } + }, + { + "id":"b453701d-ce8c-4d8b-8249-6cc4e4049fb6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T14:00:42.667Z", + "completed":"2016-02-03T14:00:42.667Z", + "new_balance":"4191.43", + "value":"-58.23" + } + }, + { + "id":"859c0796-1519-4ecb-87bb-c7d1f3a4a86c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T19:29:53.841Z", + "completed":"2016-02-03T19:29:53.841Z", + "new_balance":"4187.99", + "value":"-3.44" + } + }, + { + "id":"0c5ef503-75ba-40a1-a246-d53a76e15409", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T01:23:13.034Z", + "completed":"2016-02-08T01:23:13.034Z", + "new_balance":"4183.57", + "value":"-4.42" + } + }, + { + "id":"1b078837-0817-42a4-828f-ecee74640379", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T15:24:46.296Z", + "completed":"2016-02-08T15:24:46.296Z", + "new_balance":"4178.42", + "value":"-5.15" + } + }, + { + "id":"76ae43ed-58c2-4bc9-94f9-bca7c07bc661", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T05:47:20.069Z", + "completed":"2016-02-11T05:47:20.069Z", + "new_balance":"4179.53", + "value":"1.11" + } + }, + { + "id":"197844c5-3ed1-4e8a-ba35-30e3d5754885", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T09:59:58.530Z", + "completed":"2016-02-13T09:59:58.530Z", + "new_balance":"4177.21", + "value":"-2.32" + } + }, + { + "id":"6c6994e8-8ddd-45b4-a0fe-274e483fcf49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T09:28:20.581Z", + "completed":"2016-02-14T09:28:20.581Z", + "new_balance":"4174.18", + "value":"-3.03" + } + }, + { + "id":"7aed5445-167c-41dc-bef1-11db4db71345", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T05:26:34.871Z", + "completed":"2016-02-17T05:26:34.871Z", + "new_balance":"4172.78", + "value":"-1.40" + } + }, + { + "id":"ed53fb59-b1d9-4a35-b905-1c4026674e56", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T08:55:05.124Z", + "completed":"2016-02-21T08:55:05.124Z", + "new_balance":"4168.29", + "value":"-4.49" + } + }, + { + "id":"866e828b-1ea7-419e-82ce-b1dbb4631e8b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T02:13:32.346Z", + "completed":"2016-02-23T02:13:32.346Z", + "new_balance":"4163.14", + "value":"-5.15" + } + }, + { + "id":"95043c81-6e17-4e41-8db4-cfe2003d001b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:43:08.199Z", + "completed":"2016-02-23T13:43:08.199Z", + "new_balance":"4158.90", + "value":"-4.24" + } + }, + { + "id":"4989582d-af5f-4d93-b364-4bcda7279f10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T12:31:01.625Z", + "completed":"2016-02-24T12:31:01.625Z", + "new_balance":"4157.50", + "value":"-1.40" + } + }, + { + "id":"6477c905-aad1-491c-9601-543cb369339f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T01:39:07.583Z", + "completed":"2016-02-27T01:39:07.583Z", + "new_balance":"4155.48", + "value":"-2.02" + } + }, + { + "id":"330ade9d-b5b7-4d72-8d03-74e9bbeb4be9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T06:21:56.913Z", + "completed":"2016-02-27T06:21:56.913Z", + "new_balance":"4261.11", + "value":"105.63" + } + }, + { + "id":"764f0ebc-6f58-4ddd-9b05-c279e1eac8a9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T14:13:07.858Z", + "completed":"2016-02-27T14:13:07.858Z", + "new_balance":"4256.30", + "value":"-4.81" + } + }, + { + "id":"7e5035e9-6f05-4d23-843c-913ea6c6bb22", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T02:19:22.465Z", + "completed":"2016-02-28T02:19:22.465Z", + "new_balance":"4252.03", + "value":"-4.27" + } + }, + { + "id":"b4d37e0e-5171-49a6-8135-969a9972c2a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T21:04:16.832Z", + "completed":"2016-02-28T21:04:16.832Z", + "new_balance":"4248.59", + "value":"-3.44" + } + }, + { + "id":"e44d3914-1676-4f27-8bf7-37e8510fe9ca", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T05:07:54.610Z", + "completed":"2016-03-01T05:07:54.610Z", + "new_balance":"4242.19", + "value":"-6.40" + } + }, + { + "id":"6f7dabb6-0fc8-446a-adbb-c5975d39f705", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T15:36:47.791Z", + "completed":"2016-03-03T15:36:47.791Z", + "new_balance":"4239.73", + "value":"-2.46" + } + }, + { + "id":"2dcb0747-4691-4f04-9030-1f34989ba562", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T16:58:51.559Z", + "completed":"2016-03-03T16:58:51.559Z", + "new_balance":"4236.29", + "value":"-3.44" + } + }, + { + "id":"35f4a9f8-5630-42ff-8a54-31e413813081", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T20:21:44.497Z", + "completed":"2016-03-03T20:21:44.497Z", + "new_balance":"4229.10", + "value":"-7.19" + } + }, + { + "id":"ddd8fb3d-9979-446f-8921-80f66b743c9b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T21:45:43.921Z", + "completed":"2016-03-03T21:45:43.921Z", + "new_balance":"4170.87", + "value":"-58.23" + } + }, + { + "id":"a465611a-db22-4826-bd75-09efe9900472", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T15:06:58.934Z", + "completed":"2016-03-05T15:06:58.934Z", + "new_balance":"4165.72", + "value":"-5.15" + } + }, + { + "id":"ba2a92ae-c304-4780-9a5e-c944ca5c9a09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T15:25:57.791Z", + "completed":"2016-03-05T15:25:57.791Z", + "new_balance":"4160.83", + "value":"-4.89" + } + }, + { + "id":"79e8edf6-d45d-46db-b8fe-01d8282dc9ab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T12:59:31.418Z", + "completed":"2016-03-07T12:59:31.418Z", + "new_balance":"4158.96", + "value":"-1.87" + } + }, + { + "id":"bd817c0a-aba9-4115-9ab3-6d759a76a39a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T00:34:14.877Z", + "completed":"2016-03-09T00:34:14.877Z", + "new_balance":"4153.81", + "value":"-5.15" + } + }, + { + "id":"7e1b632f-322a-4562-91b3-518a87b2e083", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T15:03:00.103Z", + "completed":"2016-03-11T15:03:00.103Z", + "new_balance":"4152.23", + "value":"-1.58" + } + }, + { + "id":"a080cd7f-14da-4c4c-a0f1-f80407cc1726", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T20:24:06.553Z", + "completed":"2016-03-13T20:24:06.553Z", + "new_balance":"4145.31", + "value":"-6.92" + } + }, + { + "id":"43a08ec4-2017-47f5-8f1c-2a7af7ab4733", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T03:58:48.569Z", + "completed":"2016-03-14T03:58:48.569Z", + "new_balance":"4144.07", + "value":"-1.24" + } + }, + { + "id":"e10e6b71-6f16-4f04-82a6-85bf8caa4c5c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T14:00:22.279Z", + "completed":"2016-03-14T14:00:22.279Z", + "new_balance":"4152.36", + "value":"8.29" + } + }, + { + "id":"12e4f4c5-9f89-490b-8147-cdd3bf18102e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T21:41:51.417Z", + "completed":"2016-03-15T21:41:51.417Z", + "new_balance":"4148.09", + "value":"-4.27" + } + }, + { + "id":"25f7a1a8-a827-4aca-81c7-24ffe39aad79", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T00:10:37.911Z", + "completed":"2016-03-26T00:10:37.911Z", + "new_balance":"4146.10", + "value":"-1.99" + } + }, + { + "id":"537cb053-5872-4071-9fd2-c5355ebf2486", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:59:26.301Z", + "completed":"2016-03-26T01:59:26.301Z", + "new_balance":"4143.96", + "value":"-2.14" + } + }, + { + "id":"cefe5185-fa4e-4fe6-9cc5-e2e7716f0e73", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T20:01:47.302Z", + "completed":"2016-03-26T20:01:47.302Z", + "new_balance":"4139.27", + "value":"-4.69" + } + }, + { + "id":"520bf8d0-51bf-4db8-b9ee-9dccf224b72e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T01:20:38.118Z", + "completed":"2016-03-27T01:20:38.118Z", + "new_balance":"4244.90", + "value":"105.63" + } + }, + { + "id":"422f8c6e-7a1d-4c89-b794-0d7227606b0a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T13:27:11.650Z", + "completed":"2016-03-27T13:27:11.650Z", + "new_balance":"4239.75", + "value":"-5.15" + } + }, + { + "id":"b1c24009-d0ca-4089-aec6-f0b7f66b0a4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T21:41:03.908Z", + "completed":"2016-03-27T21:41:03.908Z", + "new_balance":"4235.33", + "value":"-4.42" + } + }, + { + "id":"bf8d4ec1-f6e4-4249-8d04-899f8824fc8e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T14:19:17.517Z", + "completed":"2016-03-28T14:19:17.517Z", + "new_balance":"4231.89", + "value":"-3.44" + } + }, + { + "id":"fa89702e-5105-49dc-b1f5-f432f0f294d1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T01:41:19.724Z", + "completed":"2016-03-30T01:41:19.724Z", + "new_balance":"4227.62", + "value":"-4.27" + } + }, + { + "id":"12ab25f6-0378-4560-b980-e83eb9acfc38", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T02:31:19.621Z", + "completed":"2016-04-01T02:31:19.621Z", + "new_balance":"4221.22", + "value":"-6.40" + } + }, + { + "id":"75ccef2f-7abc-482a-9979-6986c7cd86e9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T10:20:47.587Z", + "completed":"2016-04-01T10:20:47.587Z", + "new_balance":"4218.76", + "value":"-2.46" + } + }, + { + "id":"7264c954-4e7c-4547-96ac-e39f45c41b38", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T11:04:10.017Z", + "completed":"2016-04-01T11:04:10.017Z", + "new_balance":"4211.57", + "value":"-7.19" + } + }, + { + "id":"730409d0-e236-4948-b747-2ba2c5f0853d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:31:45.475Z", + "completed":"2016-04-01T14:31:45.475Z", + "new_balance":"4153.34", + "value":"-58.23" + } + }, + { + "id":"a64b2a49-3073-4bae-9baa-c4b9bff2ee27", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T15:13:08.191Z", + "completed":"2016-04-01T15:13:08.191Z", + "new_balance":"4149.90", + "value":"-3.44" + } + }, + { + "id":"8c5dba83-4ea8-4486-8554-89b2e15dd84b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T00:49:05.388Z", + "completed":"2016-04-05T00:49:05.388Z", + "new_balance":"4144.75", + "value":"-5.15" + } + }, + { + "id":"ab63dd03-4dde-4b06-b6cc-7641ffb150a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T09:38:06.436Z", + "completed":"2016-04-05T09:38:06.436Z", + "new_balance":"4141.08", + "value":"-3.67" + } + }, + { + "id":"466e493a-0f76-4b81-9ad1-1a185c4e653e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T10:18:20.184Z", + "completed":"2016-04-05T10:18:20.184Z", + "new_balance":"4136.66", + "value":"-4.42" + } + }, + { + "id":"45f3db6d-31c0-487a-8b5f-114d9b447821", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T14:31:35.630Z", + "completed":"2016-04-05T14:31:35.630Z", + "new_balance":"4135.51", + "value":"-1.15" + } + }, + { + "id":"04b23595-9b6d-413f-a2a8-14703c1e0a19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T17:35:39.105Z", + "completed":"2016-04-07T17:35:39.105Z", + "new_balance":"4133.19", + "value":"-2.32" + } + }, + { + "id":"10706f3e-17f2-4637-b2b2-41cf2e4d2476", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T14:37:37.207Z", + "completed":"2016-04-09T14:37:37.207Z", + "new_balance":"4130.81", + "value":"-2.38" + } + }, + { + "id":"d5bf067b-1f7c-4ff1-8491-3a2d1db1ef31", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T18:27:50.802Z", + "completed":"2016-04-09T18:27:50.802Z", + "new_balance":"4125.66", + "value":"-5.15" + } + }, + { + "id":"5b59be4c-580c-4c78-8117-5eba2f973a43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:56:27.497Z", + "completed":"2016-04-10T01:56:27.497Z", + "new_balance":"4123.20", + "value":"-2.46" + } + }, + { + "id":"5a749f8e-c1ac-4b0c-b3c3-e3660eefc41c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:08:38.505Z", + "completed":"2016-04-10T03:08:38.505Z", + "new_balance":"4120.47", + "value":"-2.73" + } + }, + { + "id":"ab3b7673-0bc5-4bcc-8486-c81c0825b14e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T21:52:04.554Z", + "completed":"2016-04-10T21:52:04.554Z", + "new_balance":"4117.84", + "value":"-2.63" + } + }, + { + "id":"94583729-dca9-46c2-a39a-0921bb85de6f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T22:30:34.369Z", + "completed":"2016-04-10T22:30:34.369Z", + "new_balance":"4113.37", + "value":"-4.47" + } + }, + { + "id":"11d02fdf-a7e1-4db6-a0af-933e3da7c7ed", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T07:51:14.903Z", + "completed":"2016-04-11T07:51:14.903Z", + "new_balance":"4108.22", + "value":"-5.15" + } + }, + { + "id":"66c191fc-fe30-44da-818d-70b0a503ad12", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T09:45:34.008Z", + "completed":"2016-04-11T09:45:34.008Z", + "new_balance":"4107.26", + "value":"-0.96" + } + }, + { + "id":"6f1c27a5-7ad2-49c2-a029-22667acf593d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T18:20:05.225Z", + "completed":"2016-04-11T18:20:05.225Z", + "new_balance":"4100.51", + "value":"-6.75" + } + }, + { + "id":"8a4849c4-6a6c-48f2-a54c-bfea250129ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T19:38:02.022Z", + "completed":"2016-04-11T19:38:02.022Z", + "new_balance":"4097.92", + "value":"-2.59" + } + }, + { + "id":"eaec351c-aac8-48c3-8b97-6ef71171bf6b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T23:45:41.978Z", + "completed":"2016-04-11T23:45:41.978Z", + "new_balance":"4095.50", + "value":"-2.42" + } + }, + { + "id":"5cc28565-19dd-469e-84f4-7488c020128f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T06:48:27.580Z", + "completed":"2016-04-21T06:48:27.580Z", + "new_balance":"4090.35", + "value":"-5.15" + } + }, + { + "id":"3e3d15f4-eb2d-4d0f-abe2-4503d18998c0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T05:57:33.209Z", + "completed":"2016-04-23T05:57:33.209Z", + "new_balance":"4088.93", + "value":"-1.42" + } + }, + { + "id":"f88fddce-e6b1-4a01-b848-757b7de764e2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T08:41:42.494Z", + "completed":"2016-04-29T08:41:42.494Z", + "new_balance":"4194.56", + "value":"105.63" + } + }, + { + "id":"917a6628-278f-4309-a3f8-a7a4c33a782d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T11:09:18.943Z", + "completed":"2016-04-29T11:09:18.943Z", + "new_balance":"4189.75", + "value":"-4.81" + } + }, + { + "id":"668bd08a-4f0a-407f-80ee-7e93c2d714a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T14:33:52.070Z", + "completed":"2016-04-29T14:33:52.070Z", + "new_balance":"4186.31", + "value":"-3.44" + } + }, + { + "id":"9f9e2c72-574b-4f6b-ba1a-75b0e43f0f1c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T00:36:14.322Z", + "completed":"2016-04-30T00:36:14.322Z", + "new_balance":"4182.04", + "value":"-4.27" + } + }, + { + "id":"b42006a8-dada-435d-b213-92abc26a5e35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T04:36:02.236Z", + "completed":"2016-05-02T04:36:02.236Z", + "new_balance":"4179.58", + "value":"-2.46" + } + }, + { + "id":"24d19658-3fc7-4588-a632-a869292ae4e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T08:19:48.937Z", + "completed":"2016-05-02T08:19:48.937Z", + "new_balance":"4121.35", + "value":"-58.23" + } + }, + { + "id":"49feeb53-3f75-49e3-8a9b-d9d64711c6c0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T08:55:44.531Z", + "completed":"2016-05-02T08:55:44.531Z", + "new_balance":"4114.16", + "value":"-7.19" + } + }, + { + "id":"7da56f77-c302-4d66-a284-949d7a6072ee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:36:14.416Z", + "completed":"2016-05-02T21:36:14.416Z", + "new_balance":"4107.76", + "value":"-6.40" + } + }, + { + "id":"c4d6c61a-1f37-4fe4-858b-839d721b734a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T00:44:49.880Z", + "completed":"2016-05-06T00:44:49.880Z", + "new_balance":"4103.34", + "value":"-4.42" + } + }, + { + "id":"0d72d228-9bd2-4549-a1c3-26ca72be7090", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T02:55:12.880Z", + "completed":"2016-05-07T02:55:12.880Z", + "new_balance":"4101.02", + "value":"-2.32" + } + }, + { + "id":"d08ea02a-86de-4dd3-afe3-9fc3532916f1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T05:46:21.220Z", + "completed":"2016-05-07T05:46:21.220Z", + "new_balance":"4097.99", + "value":"-3.03" + } + }, + { + "id":"f636c0e1-acb2-4eef-aee7-bfe71b4cc8b6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T05:53:33.028Z", + "completed":"2016-05-07T05:53:33.028Z", + "new_balance":"4093.50", + "value":"-4.49" + } + }, + { + "id":"6141f3c0-5c5b-4d50-be23-696dce9a39fb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T15:12:43.577Z", + "completed":"2016-05-07T15:12:43.577Z", + "new_balance":"4092.10", + "value":"-1.40" + } + }, + { + "id":"a6f34f33-af25-4614-8f04-e52d7a827d4c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T07:09:55.123Z", + "completed":"2016-05-08T07:09:55.123Z", + "new_balance":"4087.86", + "value":"-4.24" + } + }, + { + "id":"499fe0e2-bb21-491f-8e78-5333313fc176", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T07:07:01.956Z", + "completed":"2016-05-09T07:07:01.956Z", + "new_balance":"4084.42", + "value":"-3.44" + } + }, + { + "id":"1609769b-8a20-4f15-a74f-269e9c443a1b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T11:40:14.504Z", + "completed":"2016-05-13T11:40:14.504Z", + "new_balance":"4079.27", + "value":"-5.15" + } + }, + { + "id":"6c3c5400-b14a-4d41-b83e-73680d136370", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T05:12:13.801Z", + "completed":"2016-05-26T05:12:13.801Z", + "new_balance":"4074.12", + "value":"-5.15" + } + }, + { + "id":"f103000d-5c71-4d3a-b2a4-b34a831fd18f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:23:25.276Z", + "completed":"2016-05-26T21:23:25.276Z", + "new_balance":"4072.72", + "value":"-1.40" + } + }, + { + "id":"5b6cce99-8bad-40c7-b7f5-e47cf7473690", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T06:47:09.098Z", + "completed":"2016-05-27T06:47:09.098Z", + "new_balance":"4067.91", + "value":"-4.81" + } + }, + { + "id":"52ef1afd-0586-4d53-81ee-38bea1dd3cbe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T10:38:19.402Z", + "completed":"2016-05-27T10:38:19.402Z", + "new_balance":"4065.89", + "value":"-2.02" + } + }, + { + "id":"76b4c713-03fb-4bb7-a422-0b65187a134f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T01:44:22.806Z", + "completed":"2016-05-30T01:44:22.806Z", + "new_balance":"4171.52", + "value":"105.63" + } + }, + { + "id":"0fdb58e0-9015-42bc-ab9c-afabda90476c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T09:14:44.373Z", + "completed":"2016-05-30T09:14:44.373Z", + "new_balance":"4168.08", + "value":"-3.44" + } + }, + { + "id":"b2d60295-92fa-4de6-8026-9a79064613cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T13:39:45.432Z", + "completed":"2016-05-30T13:39:45.432Z", + "new_balance":"4163.81", + "value":"-4.27" + } + }, + { + "id":"b3677c74-1f28-4c22-a614-00f32ae49219", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T01:12:26.486Z", + "completed":"2016-06-01T01:12:26.486Z", + "new_balance":"4160.37", + "value":"-3.44" + } + }, + { + "id":"1e51db40-5aa6-46b0-891d-dceda50b5833", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T02:22:10.169Z", + "completed":"2016-06-01T02:22:10.169Z", + "new_balance":"4155.48", + "value":"-4.89" + } + }, + { + "id":"4918a65c-579b-4d48-b5f4-407db5107558", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T04:05:30.369Z", + "completed":"2016-06-01T04:05:30.369Z", + "new_balance":"4148.29", + "value":"-7.19" + } + }, + { + "id":"28279fc6-ea58-4cf4-9c0d-ea7dcfde9946", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T06:55:02.016Z", + "completed":"2016-06-01T06:55:02.016Z", + "new_balance":"4145.83", + "value":"-2.46" + } + }, + { + "id":"e0d1ba47-8da3-4e1e-b206-ee90f3859e84", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T14:54:32.988Z", + "completed":"2016-06-01T14:54:32.988Z", + "new_balance":"4139.43", + "value":"-6.40" + } + }, + { + "id":"81fe8d86-6911-4d1f-87ab-02d427eb7a43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T16:04:45.427Z", + "completed":"2016-06-01T16:04:45.427Z", + "new_balance":"4134.28", + "value":"-5.15" + } + }, + { + "id":"36677d70-69cd-4332-8028-03d64b8c686f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T16:19:26.592Z", + "completed":"2016-06-01T16:19:26.592Z", + "new_balance":"4076.05", + "value":"-58.23" + } + }, + { + "id":"c1a6f21f-299a-4c86-a95b-6eb69ee5f91c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T19:17:27.172Z", + "completed":"2016-06-01T19:17:27.172Z", + "new_balance":"4070.90", + "value":"-5.15" + } + }, + { + "id":"eb94f249-80b4-45bf-8a82-ae653add27ed", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:40:59.512Z", + "completed":"2016-06-01T22:40:59.512Z", + "new_balance":"4069.03", + "value":"-1.87" + } + }, + { + "id":"b2fd5030-0c13-4380-8198-d1081717e2f8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T17:24:24.909Z", + "completed":"2016-06-02T17:24:24.909Z", + "new_balance":"4067.45", + "value":"-1.58" + } + }, + { + "id":"f15dd33b-df47-411a-a942-10a34917fb19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T20:05:44.253Z", + "completed":"2016-06-02T20:05:44.253Z", + "new_balance":"4060.53", + "value":"-6.92" + } + }, + { + "id":"17779496-f9fe-47ae-9436-11da982f8d32", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T21:26:59.976Z", + "completed":"2016-06-02T21:26:59.976Z", + "new_balance":"4059.29", + "value":"-1.24" + } + }, + { + "id":"0e16fe90-e726-4a8f-9783-10df842986cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T03:50:56.556Z", + "completed":"2016-06-04T03:50:56.556Z", + "new_balance":"4054.60", + "value":"-4.69" + } + }, + { + "id":"3d799357-e662-44a0-a524-beb95b09c3e8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T08:23:56.276Z", + "completed":"2016-06-04T08:23:56.276Z", + "new_balance":"4052.46", + "value":"-2.14" + } + }, + { + "id":"b55dd62a-fa39-4575-acf6-97f1b476f060", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T14:53:49.709Z", + "completed":"2016-06-04T14:53:49.709Z", + "new_balance":"4048.19", + "value":"-4.27" + } + }, + { + "id":"b030404f-869a-458e-9a3a-bf84e4ffbd16", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:28:58.402Z", + "completed":"2016-06-05T10:28:58.402Z", + "new_balance":"4046.20", + "value":"-1.99" + } + }, + { + "id":"e23aad41-2a14-4704-b099-eb1916a91bb9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:29:45.820Z", + "completed":"2016-06-05T10:29:45.820Z", + "new_balance":"4041.78", + "value":"-4.42" + } + }, + { + "id":"09f12d5a-ec35-4269-8101-4e551e4eaed9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T18:34:03.763Z", + "completed":"2016-06-18T18:34:03.763Z", + "new_balance":"4036.63", + "value":"-5.15" + } + }, + { + "id":"4c357e5f-418c-489a-abe4-c76f807676cc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T00:32:10.695Z", + "completed":"2016-06-30T00:32:10.695Z", + "new_balance":"4033.19", + "value":"-3.44" + } + }, + { + "id":"c8411f0f-e0d3-49f0-8a07-22edc70349f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T14:07:26.675Z", + "completed":"2016-06-30T14:07:26.675Z", + "new_balance":"4030.08", + "value":"-3.11" + } + }, + { + "id":"45d45b90-86e7-40c5-b2d0-4381ccddeca8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T16:08:57.393Z", + "completed":"2016-06-30T16:08:57.393Z", + "new_balance":"4135.71", + "value":"105.63" + } + }, + { + "id":"7405f3d8-8921-4413-aadc-3afd349463fe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T23:39:47.344Z", + "completed":"2016-06-30T23:39:47.344Z", + "new_balance":"4131.44", + "value":"-4.27" + } + }, + { + "id":"275ccfbd-6249-4a90-87ca-1db77eb4f2c2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T19:35:29.951Z", + "completed":"2016-07-01T19:35:29.951Z", + "new_balance":"4125.04", + "value":"-6.40" + } + }, + { + "id":"c88a95b5-f0c4-4820-a0d9-9bf93781952c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T04:10:36.511Z", + "completed":"2016-07-03T04:10:36.511Z", + "new_balance":"4122.58", + "value":"-2.46" + } + }, + { + "id":"6d15aba0-8c04-4a31-8cde-c80692bb154c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T08:08:26.023Z", + "completed":"2016-07-03T08:08:26.023Z", + "new_balance":"4064.35", + "value":"-58.23" + } + }, + { + "id":"0b36b30b-76be-46db-b43f-907fb8a609b0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T15:57:27.864Z", + "completed":"2016-07-03T15:57:27.864Z", + "new_balance":"4057.16", + "value":"-7.19" + } + }, + { + "id":"efa8b258-ce7b-4202-857b-ee74bf6ced61", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T23:53:56.229Z", + "completed":"2016-07-03T23:53:56.229Z", + "new_balance":"4053.72", + "value":"-3.44" + } + }, + { + "id":"a108d833-8b43-4117-bf23-5fda92c9eded", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T10:24:22.516Z", + "completed":"2016-07-05T10:24:22.516Z", + "new_balance":"4049.30", + "value":"-4.42" + } + }, + { + "id":"7b9c788e-9b6c-43a7-bfec-98f1e06f4267", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T15:15:42.915Z", + "completed":"2016-07-05T15:15:42.915Z", + "new_balance":"4044.15", + "value":"-5.15" + } + }, + { + "id":"4b3b4bad-13b7-4441-93f2-0f9d45878fd2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T17:31:21.862Z", + "completed":"2016-07-05T17:31:21.862Z", + "new_balance":"4043.00", + "value":"-1.15" + } + }, + { + "id":"c7ca5ee6-ea1f-44a2-8f68-4a8cc91911df", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T10:36:49.332Z", + "completed":"2016-07-06T10:36:49.332Z", + "new_balance":"4040.68", + "value":"-2.32" + } + }, + { + "id":"8ca271e5-67ee-41d4-837c-d86627faf11f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T23:54:51.694Z", + "completed":"2016-07-06T23:54:51.694Z", + "new_balance":"4037.01", + "value":"-3.67" + } + }, + { + "id":"35bb3586-cb00-4dd9-b771-315c1f243cf7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T14:27:31.046Z", + "completed":"2016-07-07T14:27:31.046Z", + "new_balance":"4032.54", + "value":"-4.47" + } + }, + { + "id":"a2259c82-d349-4cb8-aa8a-c7e149f748c6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T13:26:16.172Z", + "completed":"2016-07-10T13:26:16.172Z", + "new_balance":"4027.39", + "value":"-5.15" + } + }, + { + "id":"e5adcb56-83f4-4ce1-a68b-7e9e7c528da3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T17:06:25.878Z", + "completed":"2016-07-10T17:06:25.878Z", + "new_balance":"4025.01", + "value":"-2.38" + } + }, + { + "id":"7264c4d8-8ead-446e-ba29-ed20a517ee5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T04:37:06.163Z", + "completed":"2016-07-12T04:37:06.163Z", + "new_balance":"4022.28", + "value":"-2.73" + } + }, + { + "id":"5cba017c-6a43-45a0-805e-97148f47213d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T08:27:17.978Z", + "completed":"2016-07-12T08:27:17.978Z", + "new_balance":"4019.82", + "value":"-2.46" + } + }, + { + "id":"5fb0585c-079f-4643-991c-ff9af46b7206", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:48:43.684Z", + "completed":"2016-07-12T16:48:43.684Z", + "new_balance":"4015.35", + "value":"-4.47" + } + }, + { + "id":"c5735514-17e2-4355-84eb-5c03e24bd5a0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T23:01:48.187Z", + "completed":"2016-07-15T23:01:48.187Z", + "new_balance":"4012.72", + "value":"-2.63" + } + }, + { + "id":"9d2d3716-b7d6-4957-9693-841b6365608f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T02:52:30.359Z", + "completed":"2016-07-16T02:52:30.359Z", + "new_balance":"4007.57", + "value":"-5.15" + } + }, + { + "id":"8c95e780-d220-4aac-a8ea-c725effa2929", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T05:43:12.304Z", + "completed":"2016-07-16T05:43:12.304Z", + "new_balance":"4006.61", + "value":"-0.96" + } + }, + { + "id":"e64d38db-08df-482a-8438-8f237714811b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T07:02:58.296Z", + "completed":"2016-07-17T07:02:58.296Z", + "new_balance":"4004.02", + "value":"-2.59" + } + }, + { + "id":"2a7bcc07-5d81-4375-9930-2d530a4f41c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:15:07.948Z", + "completed":"2016-07-17T14:15:07.948Z", + "new_balance":"3997.27", + "value":"-6.75" + } + }, + { + "id":"464012b8-3f9c-4890-a464-738bfd067fcf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T00:14:08.042Z", + "completed":"2016-07-19T00:14:08.042Z", + "new_balance":"3994.85", + "value":"-2.42" + } + }, + { + "id":"4330690e-0dcf-4800-bb20-dc26273e7078", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T19:02:13.783Z", + "completed":"2016-07-20T19:02:13.783Z", + "new_balance":"3989.70", + "value":"-5.15" + } + }, + { + "id":"45cf7ddf-2fe0-4920-b521-35f045215f26", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T12:38:38.658Z", + "completed":"2016-07-23T12:38:38.658Z", + "new_balance":"3988.28", + "value":"-1.42" + } + }, + { + "id":"05dbbe3a-85a5-431b-83bc-e1b338efcffa", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T10:50:23.291Z", + "completed":"2016-07-26T10:50:23.291Z", + "new_balance":"3983.47", + "value":"-4.81" + } + }, + { + "id":"d92d4cdc-3e79-4608-8487-f8fb267ddd9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T18:28:12.798Z", + "completed":"2016-07-27T18:28:12.798Z", + "new_balance":"4089.10", + "value":"105.63" + } + }, + { + "id":"89335dc6-a5bd-4b18-8ce3-fa1e0eec74ec", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T00:18:19.253Z", + "completed":"2016-07-28T00:18:19.253Z", + "new_balance":"4085.66", + "value":"-3.44" + } + }, + { + "id":"90af1d2e-00c3-4552-9427-0c211a4cf197", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T09:02:38.575Z", + "completed":"2016-07-30T09:02:38.575Z", + "new_balance":"4081.39", + "value":"-4.27" + } + }, + { + "id":"55fab2cc-1f07-4bda-b516-1e5012e3111b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T03:08:16.057Z", + "completed":"2016-08-01T03:08:16.057Z", + "new_balance":"4074.99", + "value":"-6.40" + } + }, + { + "id":"5f0f9429-ae2b-4224-873c-cc38a3c50e0f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T16:08:18.728Z", + "completed":"2016-08-03T16:08:18.728Z", + "new_balance":"4067.80", + "value":"-7.19" + } + }, + { + "id":"b7620393-dc99-4217-b49d-3ba4e430e51c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T19:20:15.310Z", + "completed":"2016-08-03T19:20:15.310Z", + "new_balance":"4064.36", + "value":"-3.44" + } + }, + { + "id":"f532fa20-2921-428d-a436-923e7d4d2b6f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T21:19:20.748Z", + "completed":"2016-08-03T21:19:20.748Z", + "new_balance":"4006.13", + "value":"-58.23" + } + }, + { + "id":"2712759e-860b-4dbf-8c88-68fb844c7c4d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T23:21:31.901Z", + "completed":"2016-08-03T23:21:31.901Z", + "new_balance":"4003.67", + "value":"-2.46" + } + }, + { + "id":"9fb207a5-1fce-46a3-9b4d-ef5a3c556e63", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T20:17:49.036Z", + "completed":"2016-08-08T20:17:49.036Z", + "new_balance":"3998.52", + "value":"-5.15" + } + }, + { + "id":"f3d0c9b5-dafd-4b39-ad90-a27a94109d42", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T21:42:21.358Z", + "completed":"2016-08-08T21:42:21.358Z", + "new_balance":"3994.10", + "value":"-4.42" + } + }, + { + "id":"c7ee1256-158e-49a4-9a2c-96d40e4ffbe0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T20:32:14.649Z", + "completed":"2016-08-11T20:32:14.649Z", + "new_balance":"3995.21", + "value":"1.11" + } + }, + { + "id":"699e0eb1-6539-4b63-b8ac-bbd510259930", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T13:12:55.100Z", + "completed":"2016-08-13T13:12:55.100Z", + "new_balance":"3992.89", + "value":"-2.32" + } + }, + { + "id":"875fafc3-c59d-46ed-bd96-f1111d414593", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:38:11.138Z", + "completed":"2016-08-14T09:38:11.138Z", + "new_balance":"3989.86", + "value":"-3.03" + } + }, + { + "id":"eaa06baf-a0a0-4bbb-ad9a-543212a2b42a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:04:25.122Z", + "completed":"2016-08-17T22:04:25.122Z", + "new_balance":"3988.46", + "value":"-1.40" + } + }, + { + "id":"0618b4f3-3bd7-483b-8c64-6fb3ea146706", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T01:43:47.048Z", + "completed":"2016-08-21T01:43:47.048Z", + "new_balance":"3983.97", + "value":"-4.49" + } + }, + { + "id":"f32c6a0c-356e-47d3-933b-a389569b02d3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T16:04:00.849Z", + "completed":"2016-08-23T16:04:00.849Z", + "new_balance":"3978.82", + "value":"-5.15" + } + }, + { + "id":"03a2fcc3-188d-49f5-b014-e7508ab87c60", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T17:31:03.000Z", + "completed":"2016-08-23T17:31:03.000Z", + "new_balance":"3974.58", + "value":"-4.24" + } + }, + { + "id":"937e1865-0983-4489-9352-36e8a957dbf5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T04:32:23.196Z", + "completed":"2016-08-24T04:32:23.196Z", + "new_balance":"3973.18", + "value":"-1.40" + } + }, + { + "id":"a09f5aab-8a76-49c7-8b55-962bc91b61ec", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T00:44:09.069Z", + "completed":"2016-08-27T00:44:09.069Z", + "new_balance":"3968.37", + "value":"-4.81" + } + }, + { + "id":"b711d929-1da8-4994-851c-e3994b266d6a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:56:00.096Z", + "completed":"2016-08-27T15:56:00.096Z", + "new_balance":"3966.35", + "value":"-2.02" + } + }, + { + "id":"4027dc83-63e2-49f4-abb3-8fbbd25d291d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T21:20:17.442Z", + "completed":"2016-08-27T21:20:17.442Z", + "new_balance":"4071.98", + "value":"105.63" + } + }, + { + "id":"f9604858-e666-4bec-9648-cbac9688b1d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T17:21:10.858Z", + "completed":"2016-08-28T17:21:10.858Z", + "new_balance":"4068.54", + "value":"-3.44" + } + }, + { + "id":"369bf32b-dcf0-49c8-a5c1-dabae1d1753d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T08:30:44.731Z", + "completed":"2016-08-30T08:30:44.731Z", + "new_balance":"4064.27", + "value":"-4.27" + } + }, + { + "id":"9bb519de-9944-43f2-8cdc-c37caeeedeff", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:26:52.853Z", + "completed":"2016-09-01T14:26:52.853Z", + "new_balance":"4057.87", + "value":"-6.40" + } + }, + { + "id":"86d57c39-8b1c-4940-bd85-f6b0198500ef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T06:44:13.373Z", + "completed":"2016-09-03T06:44:13.373Z", + "new_balance":"3999.64", + "value":"-58.23" + } + }, + { + "id":"2c0c0ae6-44b6-41fb-b2b5-c4a5f0294c35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T08:04:17.181Z", + "completed":"2016-09-03T08:04:17.181Z", + "new_balance":"3992.45", + "value":"-7.19" + } + }, + { + "id":"8a16403a-4e93-4457-bbc8-a0ce3b1ce141", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T21:16:04.061Z", + "completed":"2016-09-03T21:16:04.061Z", + "new_balance":"3989.01", + "value":"-3.44" + } + }, + { + "id":"59719cc6-9f46-46bb-beaa-57a6cb49cce8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T21:16:50.145Z", + "completed":"2016-09-03T21:16:50.145Z", + "new_balance":"3986.55", + "value":"-2.46" + } + }, + { + "id":"7d3025dd-7cce-46f0-b31e-806956f5b3c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T10:37:57.579Z", + "completed":"2016-09-05T10:37:57.579Z", + "new_balance":"3981.40", + "value":"-5.15" + } + }, + { + "id":"e4f47d0f-630b-4c88-93a6-4329fcdba9d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T23:34:07.236Z", + "completed":"2016-09-05T23:34:07.236Z", + "new_balance":"3976.51", + "value":"-4.89" + } + }, + { + "id":"dd458afc-97d9-426d-a991-9dc374b30cab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T13:13:18.731Z", + "completed":"2016-09-07T13:13:18.731Z", + "new_balance":"3974.64", + "value":"-1.87" + } + }, + { + "id":"0bb57fc8-5d82-47b1-ac92-65ce398cd901", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T11:37:33.353Z", + "completed":"2016-09-09T11:37:33.353Z", + "new_balance":"3969.49", + "value":"-5.15" + } + }, + { + "id":"9d3a3f57-ef92-4aa5-b85a-e35a67885249", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T05:58:58.956Z", + "completed":"2016-09-11T05:58:58.956Z", + "new_balance":"3967.91", + "value":"-1.58" + } + }, + { + "id":"216a0b8b-489d-4a2f-ab6f-3937ba08c581", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T19:07:27.257Z", + "completed":"2016-09-13T19:07:27.257Z", + "new_balance":"3960.99", + "value":"-6.92" + } + }, + { + "id":"2a6dc43e-3558-4cd9-8937-0d332e6db6be", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T07:43:14.469Z", + "completed":"2016-09-14T07:43:14.469Z", + "new_balance":"3959.75", + "value":"-1.24" + } + }, + { + "id":"845b80e0-349a-40a6-aa93-2effddc4f2ad", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:59:26.777Z", + "completed":"2016-09-14T19:59:26.777Z", + "new_balance":"3968.04", + "value":"8.29" + } + }, + { + "id":"8dcd0ea9-c45e-49ab-a1c3-eb81556dc34d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T01:49:19.123Z", + "completed":"2016-09-15T01:49:19.123Z", + "new_balance":"3963.77", + "value":"-4.27" + } + }, + { + "id":"626c3fed-e30f-4509-891d-c57b77d82627", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T00:41:03.416Z", + "completed":"2016-09-26T00:41:03.416Z", + "new_balance":"3959.08", + "value":"-4.69" + } + }, + { + "id":"ed4af60f-f940-4768-9cf9-03975a91cafc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:20:55.089Z", + "completed":"2016-09-26T11:20:55.089Z", + "new_balance":"3957.09", + "value":"-1.99" + } + }, + { + "id":"cacb66b3-f166-425b-a123-be01b43d64d2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T18:28:11.792Z", + "completed":"2016-09-26T18:28:11.792Z", + "new_balance":"3954.95", + "value":"-2.14" + } + }, + { + "id":"996ce5d8-5e87-4a6f-b2bf-ed13cf1fd168", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T06:39:26.236Z", + "completed":"2016-09-27T06:39:26.236Z", + "new_balance":"3949.80", + "value":"-5.15" + } + }, + { + "id":"e9cacf0b-a534-41ba-a7b9-3b02bcfc4618", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T13:11:37.521Z", + "completed":"2016-09-27T13:11:37.521Z", + "new_balance":"4055.43", + "value":"105.63" + } + }, + { + "id":"01c5df62-4032-4a8e-89cc-f126bae7e0cb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T19:51:33.218Z", + "completed":"2016-09-27T19:51:33.218Z", + "new_balance":"4051.01", + "value":"-4.42" + } + }, + { + "id":"1a7f3d9d-9e3a-45da-a2f0-0a75ccd78c28", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T19:07:38.365Z", + "completed":"2016-09-28T19:07:38.365Z", + "new_balance":"4047.57", + "value":"-3.44" + } + }, + { + "id":"4e3a6eab-fbe0-4739-9743-330e67286089", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T05:27:35.859Z", + "completed":"2016-09-30T05:27:35.859Z", + "new_balance":"4043.30", + "value":"-4.27" + } + }, + { + "id":"30bef958-6342-4437-82e5-bb213908d11f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T00:41:55.075Z", + "completed":"2016-10-01T00:41:55.075Z", + "new_balance":"4039.86", + "value":"-3.44" + } + }, + { + "id":"1eb33353-965e-4792-a60b-90b6e2f7387e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T14:48:15.484Z", + "completed":"2016-10-01T14:48:15.484Z", + "new_balance":"4037.40", + "value":"-2.46" + } + }, + { + "id":"2d073eed-83ac-4bf6-97d5-0457f9bb41e6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T15:47:44.746Z", + "completed":"2016-10-01T15:47:44.746Z", + "new_balance":"4030.21", + "value":"-7.19" + } + }, + { + "id":"f25b846c-02ff-4dbb-8344-00fd0f6d1d51", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T17:12:18.124Z", + "completed":"2016-10-01T17:12:18.124Z", + "new_balance":"4023.81", + "value":"-6.40" + } + }, + { + "id":"4f6f111a-a3eb-49dd-a181-38ec11a12cfb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T18:35:42.015Z", + "completed":"2016-10-01T18:35:42.015Z", + "new_balance":"3965.58", + "value":"-58.23" + } + }, + { + "id":"4af44b49-d202-40f6-93ef-2e91aefda248", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T06:00:44.167Z", + "completed":"2016-10-05T06:00:44.167Z", + "new_balance":"3961.91", + "value":"-3.67" + } + }, + { + "id":"fac0c1b9-20a0-4c06-91a6-4fb7b15fbd75", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T11:00:49.499Z", + "completed":"2016-10-05T11:00:49.499Z", + "new_balance":"3957.49", + "value":"-4.42" + } + }, + { + "id":"1d1e46a5-c11b-490b-b3c7-66b0f81f0e07", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T15:49:54.819Z", + "completed":"2016-10-05T15:49:54.819Z", + "new_balance":"3956.34", + "value":"-1.15" + } + }, + { + "id":"2b3fc2eb-52c9-4fab-84de-a3c5de716e71", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T18:51:08.659Z", + "completed":"2016-10-05T18:51:08.659Z", + "new_balance":"3951.19", + "value":"-5.15" + } + }, + { + "id":"7bced924-f405-44d5-aa14-8521239f1c49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T02:49:56.256Z", + "completed":"2016-10-07T02:49:56.256Z", + "new_balance":"3948.87", + "value":"-2.32" + } + }, + { + "id":"40ef8aaf-3d42-4c5f-87fa-94514fafa2cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T02:21:03.575Z", + "completed":"2016-10-09T02:21:03.575Z", + "new_balance":"3943.72", + "value":"-5.15" + } + }, + { + "id":"2ed17db3-cd57-478e-849a-81418b472556", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T03:13:11.510Z", + "completed":"2016-10-09T03:13:11.510Z", + "new_balance":"3941.34", + "value":"-2.38" + } + }, + { + "id":"a83c4a95-268e-4532-8659-54a05136bc49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T10:03:47.076Z", + "completed":"2016-10-10T10:03:47.076Z", + "new_balance":"3938.71", + "value":"-2.63" + } + }, + { + "id":"60411dda-96b3-48c2-8c62-5e18ded59d16", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T11:11:19.376Z", + "completed":"2016-10-10T11:11:19.376Z", + "new_balance":"3934.24", + "value":"-4.47" + } + }, + { + "id":"34c8dbf8-f93d-4157-b1fd-8c3bc4bb3176", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:11:58.844Z", + "completed":"2016-10-10T12:11:58.844Z", + "new_balance":"3931.78", + "value":"-2.46" + } + }, + { + "id":"2a225f5b-371a-4b7f-91e6-b59bfdaec683", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T18:04:01.664Z", + "completed":"2016-10-10T18:04:01.664Z", + "new_balance":"3929.05", + "value":"-2.73" + } + }, + { + "id":"9104fac0-c93d-497e-8fbb-41348110dd79", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:09:07.756Z", + "completed":"2016-10-11T09:09:07.756Z", + "new_balance":"3928.09", + "value":"-0.96" + } + }, + { + "id":"5a7459cf-94a3-489e-84cc-8c39303ad27d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T09:47:55.946Z", + "completed":"2016-10-11T09:47:55.946Z", + "new_balance":"3925.67", + "value":"-2.42" + } + }, + { + "id":"4b88995e-c347-4da8-8a06-14dc93e8fcdf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:55:37.066Z", + "completed":"2016-10-11T14:55:37.066Z", + "new_balance":"3918.92", + "value":"-6.75" + } + }, + { + "id":"169d56d9-0464-4591-9948-b4100712586f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T15:12:29.081Z", + "completed":"2016-10-11T15:12:29.081Z", + "new_balance":"3913.77", + "value":"-5.15" + } + }, + { + "id":"7a63b2cf-63ce-4dc3-894a-86d31e921e36", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T22:25:52.225Z", + "completed":"2016-10-11T22:25:52.225Z", + "new_balance":"3911.18", + "value":"-2.59" + } + }, + { + "id":"8b221f91-93d0-42de-8fe3-6f1562da7d68", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T05:42:46.717Z", + "completed":"2016-10-21T05:42:46.717Z", + "new_balance":"3906.03", + "value":"-5.15" + } + }, + { + "id":"c65d6f6c-ab6a-4bdf-b9e2-feeb18ae6166", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T06:37:06.689Z", + "completed":"2016-10-23T06:37:06.689Z", + "new_balance":"3904.61", + "value":"-1.42" + } + }, + { + "id":"fd21a003-6ea7-425e-98d1-babf301f7791", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T00:39:33.049Z", + "completed":"2016-10-29T00:39:33.049Z", + "new_balance":"3901.17", + "value":"-3.44" + } + }, + { + "id":"e5e0d36c-b559-426a-af60-bd9d6964a797", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T04:04:06.941Z", + "completed":"2016-10-29T04:04:06.941Z", + "new_balance":"4006.80", + "value":"105.63" + } + }, + { + "id":"f1c4134e-3816-4b55-b0ad-2e097bf33aa6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T11:39:51.555Z", + "completed":"2016-10-29T11:39:51.555Z", + "new_balance":"4001.99", + "value":"-4.81" + } + }, + { + "id":"515ac4d0-1d1e-414d-a366-497a0b35038d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T03:57:02.547Z", + "completed":"2016-10-30T03:57:02.547Z", + "new_balance":"3997.72", + "value":"-4.27" + } + }, + { + "id":"2bf869c8-fe41-4343-b0ca-919d08af685a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T09:12:58.859Z", + "completed":"2016-11-02T09:12:58.859Z", + "new_balance":"3939.49", + "value":"-58.23" + } + }, + { + "id":"6fdc5cae-765a-4fcb-8395-2c552c5580ac", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T09:31:24.835Z", + "completed":"2016-11-02T09:31:24.835Z", + "new_balance":"3937.03", + "value":"-2.46" + } + }, + { + "id":"9f33b671-ba50-4b61-8a23-d82bc20f56e5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T17:02:53.970Z", + "completed":"2016-11-02T17:02:53.970Z", + "new_balance":"3930.63", + "value":"-6.40" + } + }, + { + "id":"b168a82c-f3c2-4208-a29a-48fdee4f420e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:53:29.799Z", + "completed":"2016-11-02T19:53:29.799Z", + "new_balance":"3923.44", + "value":"-7.19" + } + }, + { + "id":"95aa217b-4844-481e-bf49-6372c2961b2f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T21:40:46.762Z", + "completed":"2016-11-06T21:40:46.762Z", + "new_balance":"3919.02", + "value":"-4.42" + } + }, + { + "id":"8ab1eb54-6549-4ae1-9227-c0278d13fda4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T05:53:49.051Z", + "completed":"2016-11-07T05:53:49.051Z", + "new_balance":"3916.70", + "value":"-2.32" + } + }, + { + "id":"a3c0bb50-ed8b-40b8-a34c-fb836fe36861", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:40:36.668Z", + "completed":"2016-11-07T07:40:36.668Z", + "new_balance":"3913.67", + "value":"-3.03" + } + }, + { + "id":"6bf5697d-46ea-4a04-922e-c3be54fdc2e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T08:20:50.721Z", + "completed":"2016-11-07T08:20:50.721Z", + "new_balance":"3912.27", + "value":"-1.40" + } + }, + { + "id":"07b0ac29-2fc8-4095-a108-222feecb0e4b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T14:06:39.613Z", + "completed":"2016-11-07T14:06:39.613Z", + "new_balance":"3907.78", + "value":"-4.49" + } + }, + { + "id":"4713db06-54fe-4023-9623-c13552e78b01", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T05:53:39.753Z", + "completed":"2016-11-08T05:53:39.753Z", + "new_balance":"3903.54", + "value":"-4.24" + } + }, + { + "id":"7df3d3ad-a507-40a0-9162-ccbfaf6ff341", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T11:28:29.223Z", + "completed":"2016-11-09T11:28:29.223Z", + "new_balance":"3900.10", + "value":"-3.44" + } + }, + { + "id":"fa6e6c07-7514-4b5e-b6fb-1ef71bc919ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T20:48:43.876Z", + "completed":"2016-11-13T20:48:43.876Z", + "new_balance":"3894.95", + "value":"-5.15" + } + }, + { + "id":"c7c627df-9002-4d4c-8aa9-89f62b875324", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T06:59:28.318Z", + "completed":"2016-11-26T06:59:28.318Z", + "new_balance":"3893.55", + "value":"-1.40" + } + }, + { + "id":"2167470e-382a-4da3-8080-522168f613b2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T09:02:07.777Z", + "completed":"2016-11-26T09:02:07.777Z", + "new_balance":"3888.40", + "value":"-5.15" + } + }, + { + "id":"2b254eeb-d2ab-437c-bba8-432db9665cd9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T02:27:23.766Z", + "completed":"2016-11-27T02:27:23.766Z", + "new_balance":"3886.38", + "value":"-2.02" + } + }, + { + "id":"02ad4e91-ae43-4cd8-b128-961fc6dd9bb7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T23:02:06.464Z", + "completed":"2016-11-27T23:02:06.464Z", + "new_balance":"3881.57", + "value":"-4.81" + } + }, + { + "id":"f8218776-2790-4146-adff-1eed27d05ea0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T03:00:06.054Z", + "completed":"2016-11-30T03:00:06.054Z", + "new_balance":"3877.30", + "value":"-4.27" + } + }, + { + "id":"df1f180b-9e99-40e9-913a-41c6cb1e3bab", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T08:11:54.440Z", + "completed":"2016-11-30T08:11:54.440Z", + "new_balance":"3982.93", + "value":"105.63" + } + }, + { + "id":"857ffd31-6102-47e2-a7b1-8b805bfc3213", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T11:37:39.736Z", + "completed":"2016-11-30T11:37:39.736Z", + "new_balance":"3979.49", + "value":"-3.44" + } + }, + { + "id":"f1249ee8-6945-4016-bc74-5c4aa9be856d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T00:35:58.764Z", + "completed":"2016-12-01T00:35:58.764Z", + "new_balance":"3974.34", + "value":"-5.15" + } + }, + { + "id":"b56f2c85-14c2-4f33-b639-3b4531da9e42", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T06:06:05.841Z", + "completed":"2016-12-01T06:06:05.841Z", + "new_balance":"3967.94", + "value":"-6.40" + } + }, + { + "id":"9a6b8c4f-5cbb-484b-9f9a-d8f412ef0ac2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T07:08:54.699Z", + "completed":"2016-12-01T07:08:54.699Z", + "new_balance":"3909.71", + "value":"-58.23" + } + }, + { + "id":"8935a2e8-ecf2-4604-ba85-7236fe9f5b3c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T12:54:22.174Z", + "completed":"2016-12-01T12:54:22.174Z", + "new_balance":"3907.84", + "value":"-1.87" + } + }, + { + "id":"850c8fcf-bee5-43ff-84da-61f5748de535", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T13:39:57.182Z", + "completed":"2016-12-01T13:39:57.182Z", + "new_balance":"3904.40", + "value":"-3.44" + } + }, + { + "id":"763cff49-5eb1-4409-bee7-34870266ea3d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T17:46:11.854Z", + "completed":"2016-12-01T17:46:11.854Z", + "new_balance":"3899.25", + "value":"-5.15" + } + }, + { + "id":"dbcff484-8971-4963-bb07-15f9da220660", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T20:59:46.124Z", + "completed":"2016-12-01T20:59:46.124Z", + "new_balance":"3896.79", + "value":"-2.46" + } + }, + { + "id":"37af922c-54eb-4529-b160-e1c0af5f4a51", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T21:08:19.934Z", + "completed":"2016-12-01T21:08:19.934Z", + "new_balance":"3889.60", + "value":"-7.19" + } + }, + { + "id":"0d359d15-a571-493a-9ea4-ffaa401097fa", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T22:33:26.786Z", + "completed":"2016-12-01T22:33:26.786Z", + "new_balance":"3884.71", + "value":"-4.89" + } + }, + { + "id":"0371c737-11f5-4c70-9724-bde9d2630fe7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T03:47:44.896Z", + "completed":"2016-12-02T03:47:44.896Z", + "new_balance":"3883.47", + "value":"-1.24" + } + }, + { + "id":"0dffbec7-3de7-45f9-be21-cf48120b77ef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T07:47:09.641Z", + "completed":"2016-12-02T07:47:09.641Z", + "new_balance":"3881.89", + "value":"-1.58" + } + }, + { + "id":"db88c1e0-d068-42ac-914a-b9d6f7ecffe5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T08:58:36.077Z", + "completed":"2016-12-02T08:58:36.077Z", + "new_balance":"3874.97", + "value":"-6.92" + } + }, + { + "id":"4b75652e-cbb6-447e-8f39-a472b9bbd334", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T01:10:04.205Z", + "completed":"2016-12-04T01:10:04.205Z", + "new_balance":"3870.70", + "value":"-4.27" + } + }, + { + "id":"657259e1-5de6-4a82-bb49-893d27cf1877", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:13:41.307Z", + "completed":"2016-12-04T14:13:41.307Z", + "new_balance":"3868.56", + "value":"-2.14" + } + }, + { + "id":"dcd68de8-959d-4d48-b0c1-137fc07fa15b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T21:50:32.043Z", + "completed":"2016-12-04T21:50:32.043Z", + "new_balance":"3863.87", + "value":"-4.69" + } + }, + { + "id":"7d69bb4f-ea9a-402b-92e7-ad3d444091c8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:05:41.523Z", + "completed":"2016-12-05T06:05:41.523Z", + "new_balance":"3861.88", + "value":"-1.99" + } + }, + { + "id":"0e796a4e-4a41-422d-82fc-97ddeb3be484", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T08:17:21.832Z", + "completed":"2016-12-05T08:17:21.832Z", + "new_balance":"3857.46", + "value":"-4.42" + } + }, + { + "id":"3b27fa9c-f8d3-4c11-89b2-2776a1ff600d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T22:07:55.312Z", + "completed":"2016-12-18T22:07:55.312Z", + "new_balance":"3852.31", + "value":"-5.15" + } + }, + { + "id":"887c6439-5bc6-4a71-8ff2-041e99d404da", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T02:05:46.738Z", + "completed":"2016-12-30T02:05:46.738Z", + "new_balance":"3848.04", + "value":"-4.27" + } + }, + { + "id":"d8d76836-bae6-472b-aa3c-6c4fa268a33a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T03:52:23.009Z", + "completed":"2016-12-30T03:52:23.009Z", + "new_balance":"3953.67", + "value":"105.63" + } + }, + { + "id":"897e1b81-1aee-4594-bb4f-9e91b6c9d3a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T15:09:43.534Z", + "completed":"2016-12-30T15:09:43.534Z", + "new_balance":"3950.23", + "value":"-3.44" + } + }, + { + "id":"29132dae-7fee-42bd-a2ae-3705c8af39a1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T17:47:46.106Z", + "completed":"2016-12-30T17:47:46.106Z", + "new_balance":"3947.12", + "value":"-3.11" + } + }, + { + "id":"e05c0cf2-82f5-4c7b-a15d-2e3858cee890", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T11:36:17.724Z", + "completed":"2017-01-01T11:36:17.724Z", + "new_balance":"3940.72", + "value":"-6.40" + } + }, + { + "id":"0debb36e-910b-4d68-b8b9-4ec51b6f570b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:07:51.240Z", + "completed":"2017-01-01T12:07:51.240Z", + "new_balance":"3934.32", + "value":"-6.40" + } + }, + { + "id":"4c86bcd4-9620-43e1-97b6-065b84925531", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T02:53:05.106Z", + "completed":"2017-01-03T02:53:05.106Z", + "new_balance":"3876.09", + "value":"-58.23" + } + }, + { + "id":"b0a06038-16d2-4807-b791-137c4a8ca650", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T11:17:01.801Z", + "completed":"2017-01-03T11:17:01.801Z", + "new_balance":"3872.65", + "value":"-3.44" + } + }, + { + "id":"e68404d6-61c8-4e95-b736-67a7231d4234", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T12:22:33.603Z", + "completed":"2017-01-03T12:22:33.603Z", + "new_balance":"3870.19", + "value":"-2.46" + } + }, + { + "id":"d94d554d-d3ea-4839-9fea-13fb368be9bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T22:41:09.783Z", + "completed":"2017-01-03T22:41:09.783Z", + "new_balance":"3863.00", + "value":"-7.19" + } + }, + { + "id":"28b99851-e194-432c-a2cb-889d42f860b6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T18:46:24.842Z", + "completed":"2017-01-05T18:46:24.842Z", + "new_balance":"3857.85", + "value":"-5.15" + } + }, + { + "id":"65ce5d99-26fb-47b9-a1ff-3d61207d875c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T20:41:17.475Z", + "completed":"2017-01-05T20:41:17.475Z", + "new_balance":"3853.43", + "value":"-4.42" + } + }, + { + "id":"679f1f27-48ff-4c64-89b9-7d2272678903", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T22:32:38.786Z", + "completed":"2017-01-05T22:32:38.786Z", + "new_balance":"3852.28", + "value":"-1.15" + } + }, + { + "id":"4e5dcd2e-aefd-44c0-bac7-edccfab0b92f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:33:55.585Z", + "completed":"2017-01-06T06:33:55.585Z", + "new_balance":"3848.61", + "value":"-3.67" + } + }, + { + "id":"ef39f845-57a2-41af-bee2-40083bfec38b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T21:23:00.405Z", + "completed":"2017-01-06T21:23:00.405Z", + "new_balance":"3846.29", + "value":"-2.32" + } + }, + { + "id":"e58a6c70-1fe0-48ae-b340-e4ad47bb123e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T09:22:57.250Z", + "completed":"2017-01-07T09:22:57.250Z", + "new_balance":"3841.82", + "value":"-4.47" + } + }, + { + "id":"613af60e-f0d3-4647-b993-c85d90daaec5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T03:38:20.778Z", + "completed":"2017-01-10T03:38:20.778Z", + "new_balance":"3839.44", + "value":"-2.38" + } + }, + { + "id":"b2b20f83-faea-400d-98c1-7e1c9f3a4a49", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T09:06:41.167Z", + "completed":"2017-01-10T09:06:41.167Z", + "new_balance":"3834.29", + "value":"-5.15" + } + }, + { + "id":"dfd241e9-3f31-4b8c-85dc-c3d601d73327", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T00:46:46.777Z", + "completed":"2017-01-12T00:46:46.777Z", + "new_balance":"3829.82", + "value":"-4.47" + } + }, + { + "id":"ca530f8f-1207-40d1-8978-b33fd3d8555a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T01:24:44.971Z", + "completed":"2017-01-12T01:24:44.971Z", + "new_balance":"3827.09", + "value":"-2.73" + } + }, + { + "id":"4e927607-2fd0-4b27-9322-535f466a6216", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:11:27.539Z", + "completed":"2017-01-12T23:11:27.539Z", + "new_balance":"3824.63", + "value":"-2.46" + } + }, + { + "id":"a139e296-a83b-4ad7-b8a6-bf66eef93229", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T03:21:13.861Z", + "completed":"2017-01-15T03:21:13.861Z", + "new_balance":"3822.00", + "value":"-2.63" + } + }, + { + "id":"80a8dbce-e535-4bb0-b941-e273a0466d07", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T03:57:59.659Z", + "completed":"2017-01-16T03:57:59.659Z", + "new_balance":"3816.85", + "value":"-5.15" + } + }, + { + "id":"03143920-f4ef-4351-899e-fe3a76674ac3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T08:02:05.666Z", + "completed":"2017-01-16T08:02:05.666Z", + "new_balance":"3815.89", + "value":"-0.96" + } + }, + { + "id":"29ddc4a2-36a0-4b5d-89e2-d80fe0e938dc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T06:26:13.972Z", + "completed":"2017-01-17T06:26:13.972Z", + "new_balance":"3813.30", + "value":"-2.59" + } + }, + { + "id":"01bb54f1-e952-4218-81b8-a1db21832b8a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T06:48:12.345Z", + "completed":"2017-01-17T06:48:12.345Z", + "new_balance":"3806.55", + "value":"-6.75" + } + }, + { + "id":"91da3ab2-a851-457e-a48a-fa61ab442508", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T21:10:30.091Z", + "completed":"2017-01-19T21:10:30.091Z", + "new_balance":"3804.13", + "value":"-2.42" + } + }, + { + "id":"198214c6-70e0-4ac4-a55f-1951c0906326", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T11:14:58.807Z", + "completed":"2017-01-20T11:14:58.807Z", + "new_balance":"3798.98", + "value":"-5.15" + } + }, + { + "id":"619c0455-68fa-48fa-8cc7-ff20a78a7730", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T04:27:38.445Z", + "completed":"2017-01-23T04:27:38.445Z", + "new_balance":"3797.56", + "value":"-1.42" + } + }, + { + "id":"3eab1467-f511-444c-aff2-5c0cac24f716", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T03:25:49.585Z", + "completed":"2017-01-26T03:25:49.585Z", + "new_balance":"3792.75", + "value":"-4.81" + } + }, + { + "id":"4726f975-1f5e-40c3-93f7-585ccb20caa2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T10:22:34.419Z", + "completed":"2017-01-27T10:22:34.419Z", + "new_balance":"3898.38", + "value":"105.63" + } + }, + { + "id":"8821e349-1b0b-4bfe-b157-4d20e4618c5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T07:33:08.043Z", + "completed":"2017-01-28T07:33:08.043Z", + "new_balance":"3894.94", + "value":"-3.44" + } + }, + { + "id":"b7c0887d-434f-4f42-b4cb-c571060f3dc6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T19:34:35.171Z", + "completed":"2017-01-30T19:34:35.171Z", + "new_balance":"3890.67", + "value":"-4.27" + } + }, + { + "id":"49ed0207-020a-4164-8c5a-956a490e18b5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T08:37:18.045Z", + "completed":"2017-02-03T08:37:18.045Z", + "new_balance":"3883.48", + "value":"-7.19" + } + }, + { + "id":"5edd19a3-c99b-43e2-aae7-d9951be62c1e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T13:02:08.027Z", + "completed":"2017-02-03T13:02:08.027Z", + "new_balance":"3880.04", + "value":"-3.44" + } + }, + { + "id":"f1e8252e-7fc1-4f56-8fd0-245747a602c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T17:25:18.906Z", + "completed":"2017-02-03T17:25:18.906Z", + "new_balance":"3877.58", + "value":"-2.46" + } + }, + { + "id":"f9b9ee04-d39b-4bc3-9a41-32c31c29d9b8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T21:36:34.642Z", + "completed":"2017-02-03T21:36:34.642Z", + "new_balance":"3819.35", + "value":"-58.23" + } + }, + { + "id":"45b7ec39-a69e-4e9e-a642-4f5dcac32e63", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T01:05:33.311Z", + "completed":"2017-02-08T01:05:33.311Z", + "new_balance":"3814.20", + "value":"-5.15" + } + }, + { + "id":"9b0588c8-fbc6-4146-b1c5-10dcde0b41d4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T23:30:51.710Z", + "completed":"2017-02-08T23:30:51.710Z", + "new_balance":"3809.78", + "value":"-4.42" + } + }, + { + "id":"a6ce8afb-a7f6-4f3f-976c-c11041367d55", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T16:47:39.043Z", + "completed":"2017-02-11T16:47:39.043Z", + "new_balance":"3810.89", + "value":"1.11" + } + }, + { + "id":"7cb1af61-0145-4d3d-b4f4-6e54996f2f85", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T01:07:46.762Z", + "completed":"2017-02-13T01:07:46.762Z", + "new_balance":"3808.57", + "value":"-2.32" + } + }, + { + "id":"c9381b4a-845a-4523-8b6d-2f08a434890f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T20:50:41.500Z", + "completed":"2017-02-14T20:50:41.500Z", + "new_balance":"3805.54", + "value":"-3.03" + } + }, + { + "id":"4a15a6b2-0b27-43ac-acf1-4ede2724b7d1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T22:05:46.544Z", + "completed":"2017-02-17T22:05:46.544Z", + "new_balance":"3804.14", + "value":"-1.40" + } + }, + { + "id":"ca0bbad3-9548-4850-918b-49aac1acc8bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T19:53:20.367Z", + "completed":"2017-02-21T19:53:20.367Z", + "new_balance":"3799.65", + "value":"-4.49" + } + }, + { + "id":"582cfb44-153a-4a3f-8e3e-26fae57320ad", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T17:33:59.747Z", + "completed":"2017-02-23T17:33:59.747Z", + "new_balance":"3794.50", + "value":"-5.15" + } + }, + { + "id":"4ed76d3d-b3ba-4b61-9cf0-101b7f3d8d09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T23:00:00.682Z", + "completed":"2017-02-23T23:00:00.682Z", + "new_balance":"3790.26", + "value":"-4.24" + } + }, + { + "id":"60825275-9619-4d2d-9826-1ae9b45848dc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T02:12:33.767Z", + "completed":"2017-02-24T02:12:33.767Z", + "new_balance":"3788.86", + "value":"-1.40" + } + }, + { + "id":"51f24054-5d86-4771-9f6e-4498ccef41a4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T04:09:16.920Z", + "completed":"2017-02-27T04:09:16.920Z", + "new_balance":"3894.49", + "value":"105.63" + } + }, + { + "id":"b85b26aa-faac-4af5-923e-61cbb09e8135", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T13:28:31.853Z", + "completed":"2017-02-27T13:28:31.853Z", + "new_balance":"3892.47", + "value":"-2.02" + } + }, + { + "id":"b5482b66-3f6a-4e55-9502-05ddbd42e575", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T16:53:00.686Z", + "completed":"2017-02-27T16:53:00.686Z", + "new_balance":"3887.66", + "value":"-4.81" + } + }, + { + "id":"b4662f67-2903-47c5-b0f4-20541f11a898", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T00:06:27.645Z", + "completed":"2017-02-28T00:06:27.645Z", + "new_balance":"3884.22", + "value":"-3.44" + } + }, + { + "id":"1ebf9954-9031-4858-a069-3ff9ad3e4650", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T16:34:31.896Z", + "completed":"2017-02-28T16:34:31.896Z", + "new_balance":"3879.95", + "value":"-4.27" + } + }, + { + "id":"a21c7eb3-f175-42d0-859c-c0fb1fa96a4b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T00:59:35.885Z", + "completed":"2017-03-01T00:59:35.885Z", + "new_balance":"3873.55", + "value":"-6.40" + } + }, + { + "id":"2f887dca-8d4c-4f70-b5cc-b289f925dcb2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T09:44:23.316Z", + "completed":"2017-03-03T09:44:23.316Z", + "new_balance":"3815.32", + "value":"-58.23" + } + }, + { + "id":"493f7a5b-f942-4477-8819-bcd5034cb03a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T14:30:48.750Z", + "completed":"2017-03-03T14:30:48.750Z", + "new_balance":"3811.88", + "value":"-3.44" + } + }, + { + "id":"999d0042-07d2-4dff-acde-d6922cb39c2a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T17:52:38.173Z", + "completed":"2017-03-03T17:52:38.173Z", + "new_balance":"3809.42", + "value":"-2.46" + } + }, + { + "id":"9fbbccc6-c206-4030-9b92-91d40a21ef08", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T18:47:13.798Z", + "completed":"2017-03-03T18:47:13.798Z", + "new_balance":"3802.23", + "value":"-7.19" + } + }, + { + "id":"838e5a5a-87d3-44fe-af5e-9f682c41eb09", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T02:58:26.436Z", + "completed":"2017-03-05T02:58:26.436Z", + "new_balance":"3797.08", + "value":"-5.15" + } + }, + { + "id":"c864c634-daa5-423d-9239-a6190a06a040", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T18:16:23.425Z", + "completed":"2017-03-05T18:16:23.425Z", + "new_balance":"3792.19", + "value":"-4.89" + } + }, + { + "id":"e6cec0a3-32da-4717-85e7-3022904a207a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T17:57:13.954Z", + "completed":"2017-03-07T17:57:13.954Z", + "new_balance":"3790.32", + "value":"-1.87" + } + }, + { + "id":"381701f1-0c85-4445-b1d1-902a5178e029", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T14:27:30.936Z", + "completed":"2017-03-09T14:27:30.936Z", + "new_balance":"3785.17", + "value":"-5.15" + } + }, + { + "id":"f65e51c7-46dc-4a72-ade9-31cd2bb5cb0e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T10:06:30.772Z", + "completed":"2017-03-11T10:06:30.772Z", + "new_balance":"3783.59", + "value":"-1.58" + } + }, + { + "id":"dc7bbcb0-6a12-4423-99ca-ece1f18877a8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T02:40:46.815Z", + "completed":"2017-03-13T02:40:46.815Z", + "new_balance":"3776.67", + "value":"-6.92" + } + }, + { + "id":"e8ca1f22-70bd-4b4c-be0f-dff11b210a18", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T05:43:57.821Z", + "completed":"2017-03-14T05:43:57.821Z", + "new_balance":"3775.43", + "value":"-1.24" + } + }, + { + "id":"b8b55566-e609-4141-8ddb-21e0957fc14b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:53:24.386Z", + "completed":"2017-03-14T08:53:24.386Z", + "new_balance":"3783.72", + "value":"8.29" + } + }, + { + "id":"d17014c9-b3aa-4f3d-934e-1a8e6aa351c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T12:10:04.939Z", + "completed":"2017-03-15T12:10:04.939Z", + "new_balance":"3779.45", + "value":"-4.27" + } + }, + { + "id":"3130e198-ecfb-4511-bd47-e430fe125432", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T01:55:13.819Z", + "completed":"2017-03-26T01:55:13.819Z", + "new_balance":"3777.46", + "value":"-1.99" + } + }, + { + "id":"bca2fb24-ad29-497c-95be-efd0e587b93b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T18:15:27.421Z", + "completed":"2017-03-26T18:15:27.421Z", + "new_balance":"3772.77", + "value":"-4.69" + } + }, + { + "id":"2c58998c-494a-46d6-8a49-347c36aef5f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T19:41:51.472Z", + "completed":"2017-03-26T19:41:51.472Z", + "new_balance":"3770.63", + "value":"-2.14" + } + }, + { + "id":"e4d204e4-3cad-4706-a9ee-fb369247f607", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T02:06:12.222Z", + "completed":"2017-03-27T02:06:12.222Z", + "new_balance":"3766.21", + "value":"-4.42" + } + }, + { + "id":"fc85881b-226a-4af5-bef2-aa8ae968c85e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T13:45:35.439Z", + "completed":"2017-03-27T13:45:35.439Z", + "new_balance":"3871.84", + "value":"105.63" + } + }, + { + "id":"80d3bdca-a4b2-4237-9917-8496160e6641", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T21:19:19.973Z", + "completed":"2017-03-27T21:19:19.973Z", + "new_balance":"3866.69", + "value":"-5.15" + } + }, + { + "id":"89036a87-c08d-4f5e-a92c-4ab979604764", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T20:27:11.421Z", + "completed":"2017-03-28T20:27:11.421Z", + "new_balance":"3863.25", + "value":"-3.44" + } + }, + { + "id":"708195f7-80d6-41b8-a725-a62494cda82b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T00:00:03.609Z", + "completed":"2017-03-30T00:00:03.609Z", + "new_balance":"3858.98", + "value":"-4.27" + } + }, + { + "id":"516363f7-ff15-42ce-98b9-fc8d682ab08b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T18:21:43.137Z", + "completed":"2017-04-01T18:21:43.137Z", + "new_balance":"3856.52", + "value":"-2.46" + } + }, + { + "id":"b79c8c61-59b5-49ef-85c3-24f49cf7518b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T18:29:46.966Z", + "completed":"2017-04-01T18:29:46.966Z", + "new_balance":"3849.33", + "value":"-7.19" + } + }, + { + "id":"d9dd621c-c2c1-4a2f-975d-72d7d2c51ba6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T18:53:08.856Z", + "completed":"2017-04-01T18:53:08.856Z", + "new_balance":"3791.10", + "value":"-58.23" + } + }, + { + "id":"b8cac2c3-041a-4611-977f-60f0e4c40f5c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T19:15:42.383Z", + "completed":"2017-04-01T19:15:42.383Z", + "new_balance":"3787.66", + "value":"-3.44" + } + }, + { + "id":"ee18377e-7c46-460c-89cd-5d234a574b2b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T20:39:06.466Z", + "completed":"2017-04-01T20:39:06.466Z", + "new_balance":"3781.26", + "value":"-6.40" + } + }, + { + "id":"de9723d1-af8e-430f-903e-fe8cc78feca1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T06:08:56.202Z", + "completed":"2017-04-05T06:08:56.202Z", + "new_balance":"3777.59", + "value":"-3.67" + } + }, + { + "id":"f9227ccc-ff13-4e3c-a1f5-5800730e0705", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T10:00:58.885Z", + "completed":"2017-04-05T10:00:58.885Z", + "new_balance":"3773.17", + "value":"-4.42" + } + }, + { + "id":"b34a0e4b-c380-424b-8d5b-fa5a1fc03914", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T12:04:38.284Z", + "completed":"2017-04-05T12:04:38.284Z", + "new_balance":"3772.02", + "value":"-1.15" + } + }, + { + "id":"f9ca1049-a64f-4d77-8be8-816940e65f9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T21:31:36.905Z", + "completed":"2017-04-05T21:31:36.905Z", + "new_balance":"3766.87", + "value":"-5.15" + } + }, + { + "id":"2ae6f389-94d1-4df7-b8f8-148a33a7dd35", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T14:06:34.381Z", + "completed":"2017-04-07T14:06:34.381Z", + "new_balance":"3764.55", + "value":"-2.32" + } + }, + { + "id":"4ecb722c-45cc-4bbf-aa62-a4956b866262", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T10:49:37.609Z", + "completed":"2017-04-09T10:49:37.609Z", + "new_balance":"3759.40", + "value":"-5.15" + } + }, + { + "id":"7e5cad33-ad0e-43c7-9e20-58c23bf7e911", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T17:03:14.581Z", + "completed":"2017-04-09T17:03:14.581Z", + "new_balance":"3757.02", + "value":"-2.38" + } + }, + { + "id":"02cb7dd8-cfb6-4e95-b2e7-896c4a234334", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T03:55:36.873Z", + "completed":"2017-04-10T03:55:36.873Z", + "new_balance":"3752.55", + "value":"-4.47" + } + }, + { + "id":"6f4431e0-cef5-414a-b9d2-89216636041e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T10:34:34.677Z", + "completed":"2017-04-10T10:34:34.677Z", + "new_balance":"3750.09", + "value":"-2.46" + } + }, + { + "id":"69cbb3a4-7b50-46cd-826a-64dedf04beb4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T17:11:02.743Z", + "completed":"2017-04-10T17:11:02.743Z", + "new_balance":"3747.36", + "value":"-2.73" + } + }, + { + "id":"d76ebaed-8b8b-4773-9083-c21e5c23bc27", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T19:53:34.418Z", + "completed":"2017-04-10T19:53:34.418Z", + "new_balance":"3744.73", + "value":"-2.63" + } + }, + { + "id":"88a39b93-349f-442f-a2c7-61585913a87e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T04:01:59.099Z", + "completed":"2017-04-11T04:01:59.099Z", + "new_balance":"3739.58", + "value":"-5.15" + } + }, + { + "id":"99882bba-c99c-4a9a-b373-38417ac53916", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T09:38:07.741Z", + "completed":"2017-04-11T09:38:07.741Z", + "new_balance":"3737.16", + "value":"-2.42" + } + }, + { + "id":"79443023-ba00-46c5-843f-68d7efee5e20", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T13:56:24.121Z", + "completed":"2017-04-11T13:56:24.121Z", + "new_balance":"3734.57", + "value":"-2.59" + } + }, + { + "id":"fb7cfe7b-5540-4c1b-9bb3-604367d1c66b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T18:40:43.025Z", + "completed":"2017-04-11T18:40:43.025Z", + "new_balance":"3727.82", + "value":"-6.75" + } + }, + { + "id":"82982eae-f05e-4d51-80d2-bb4170169525", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T21:24:28.748Z", + "completed":"2017-04-11T21:24:28.748Z", + "new_balance":"3726.86", + "value":"-0.96" + } + }, + { + "id":"b1b40f6b-34dc-4b88-b5b3-1bbf9bc88eef", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T22:21:28.343Z", + "completed":"2017-04-21T22:21:28.343Z", + "new_balance":"3721.71", + "value":"-5.15" + } + }, + { + "id":"ac6007ba-861d-4f2d-bac6-48284d1525c1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:50:18.767Z", + "completed":"2017-04-23T07:50:18.767Z", + "new_balance":"3720.29", + "value":"-1.42" + } + }, + { + "id":"260690de-8439-413c-92ba-c82b67de8c03", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T05:01:25.902Z", + "completed":"2017-04-29T05:01:25.902Z", + "new_balance":"3715.48", + "value":"-4.81" + } + }, + { + "id":"94e295e5-93dd-4acb-ade9-4f2c9ccec23d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T18:49:24.016Z", + "completed":"2017-04-29T18:49:24.016Z", + "new_balance":"3821.11", + "value":"105.63" + } + }, + { + "id":"76716400-3ee2-4574-928d-dcec12c9a991", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T21:23:22.947Z", + "completed":"2017-04-29T21:23:22.947Z", + "new_balance":"3817.67", + "value":"-3.44" + } + }, + { + "id":"55d8afc4-db3e-45f8-ae51-8639edbb011c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T09:06:13.033Z", + "completed":"2017-04-30T09:06:13.033Z", + "new_balance":"3813.40", + "value":"-4.27" + } + }, + { + "id":"9097a8d1-04e9-4d99-bf90-755ebe73a1cf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T06:35:37.973Z", + "completed":"2017-05-02T06:35:37.973Z", + "new_balance":"3806.21", + "value":"-7.19" + } + }, + { + "id":"6a6c1e13-cf5a-4002-94c9-63baa5edcb8d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T08:11:50.149Z", + "completed":"2017-05-02T08:11:50.149Z", + "new_balance":"3747.98", + "value":"-58.23" + } + }, + { + "id":"ead767f4-fbbe-474c-ba06-950af5f0e1bd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T12:30:58.996Z", + "completed":"2017-05-02T12:30:58.996Z", + "new_balance":"3741.58", + "value":"-6.40" + } + }, + { + "id":"cec725ae-fe74-4799-96b3-8cfd66c8be4a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T23:44:47.358Z", + "completed":"2017-05-02T23:44:47.358Z", + "new_balance":"3739.12", + "value":"-2.46" + } + }, + { + "id":"6c80fd69-04ce-464b-ad63-244a87805320", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T10:50:26.781Z", + "completed":"2017-05-06T10:50:26.781Z", + "new_balance":"3734.70", + "value":"-4.42" + } + }, + { + "id":"471bf37d-87f9-4fe7-aa7e-73364d19def5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:01:06.130Z", + "completed":"2017-05-07T02:01:06.130Z", + "new_balance":"3732.38", + "value":"-2.32" + } + }, + { + "id":"5f49d6d0-1023-4a74-b78a-8f709cfbf004", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T08:09:54.341Z", + "completed":"2017-05-07T08:09:54.341Z", + "new_balance":"3727.89", + "value":"-4.49" + } + }, + { + "id":"322f4d57-c48d-483b-9eca-52fc16bbce3a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T08:11:06.267Z", + "completed":"2017-05-07T08:11:06.267Z", + "new_balance":"3726.49", + "value":"-1.40" + } + }, + { + "id":"1dd3eab8-a708-4961-aba8-36882a60d311", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T20:27:35.273Z", + "completed":"2017-05-07T20:27:35.273Z", + "new_balance":"3723.46", + "value":"-3.03" + } + }, + { + "id":"8915b22f-253b-481a-b711-591c5d3bb6de", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T23:07:53.200Z", + "completed":"2017-05-08T23:07:53.200Z", + "new_balance":"3719.22", + "value":"-4.24" + } + }, + { + "id":"d3a6cf18-7fac-43dc-8618-d9ff83927ad3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T14:35:23.590Z", + "completed":"2017-05-09T14:35:23.590Z", + "new_balance":"3715.78", + "value":"-3.44" + } + }, + { + "id":"52866c10-91f5-4f6e-b2c7-d7a74d0ff039", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T04:13:01.220Z", + "completed":"2017-05-13T04:13:01.220Z", + "new_balance":"3710.63", + "value":"-5.15" + } + }, + { + "id":"dcca6d7c-7704-4afe-a5f5-2f7edd11915a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T16:52:47.081Z", + "completed":"2017-05-26T16:52:47.081Z", + "new_balance":"3709.23", + "value":"-1.40" + } + }, + { + "id":"5e7e2c92-0343-4372-848c-4068547b34a5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T18:19:30.637Z", + "completed":"2017-05-26T18:19:30.637Z", + "new_balance":"3704.08", + "value":"-5.15" + } + }, + { + "id":"43b65339-c107-4c5a-8aaa-add22035f565", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T07:32:17.096Z", + "completed":"2017-05-27T07:32:17.096Z", + "new_balance":"3702.06", + "value":"-2.02" + } + }, + { + "id":"94bd572c-f948-47a9-a296-c596416c6aee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:55:52.080Z", + "completed":"2017-05-27T08:55:52.080Z", + "new_balance":"3697.25", + "value":"-4.81" + } + }, + { + "id":"9a8fb3be-298e-4fec-8382-3c17edc54dc0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T11:10:06.461Z", + "completed":"2017-05-30T11:10:06.461Z", + "new_balance":"3693.81", + "value":"-3.44" + } + }, + { + "id":"12197bc4-bfc3-43be-8865-463bea04ac15", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T12:15:15.836Z", + "completed":"2017-05-30T12:15:15.836Z", + "new_balance":"3689.54", + "value":"-4.27" + } + }, + { + "id":"0fad9e89-4076-4c7f-b238-3e36a3ac577b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T22:29:02.311Z", + "completed":"2017-05-30T22:29:02.311Z", + "new_balance":"3795.17", + "value":"105.63" + } + }, + { + "id":"9f048801-da30-464f-a476-f7c36d166bdd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T01:30:16.669Z", + "completed":"2017-06-01T01:30:16.669Z", + "new_balance":"3736.94", + "value":"-58.23" + } + }, + { + "id":"f74c6e0d-56c3-4eef-bc0a-1d382a08db13", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T04:51:35.287Z", + "completed":"2017-06-01T04:51:35.287Z", + "new_balance":"3734.48", + "value":"-2.46" + } + }, + { + "id":"f2ae86fa-8abf-42a2-a7f3-88d54713cc81", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T09:22:11.672Z", + "completed":"2017-06-01T09:22:11.672Z", + "new_balance":"3728.08", + "value":"-6.40" + } + }, + { + "id":"3a05456f-32a3-4399-a6cf-7eeddc83ce7b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:57:18.664Z", + "completed":"2017-06-01T11:57:18.664Z", + "new_balance":"3720.89", + "value":"-7.19" + } + }, + { + "id":"77c3de84-d73a-416a-98e9-e9282543ccb0", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:22:40.404Z", + "completed":"2017-06-01T13:22:40.404Z", + "new_balance":"3719.02", + "value":"-1.87" + } + }, + { + "id":"24d37f36-861c-48b0-a5e1-6b75971b162b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T14:22:45.091Z", + "completed":"2017-06-01T14:22:45.091Z", + "new_balance":"3713.87", + "value":"-5.15" + } + }, + { + "id":"5c29f990-5e6b-41cc-8e92-760b8f3492fc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T18:11:22.576Z", + "completed":"2017-06-01T18:11:22.576Z", + "new_balance":"3708.72", + "value":"-5.15" + } + }, + { + "id":"b689a81d-a84e-45dc-bbe3-44a6d932c049", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T23:30:07.796Z", + "completed":"2017-06-01T23:30:07.796Z", + "new_balance":"3705.28", + "value":"-3.44" + } + }, + { + "id":"770b26b2-3629-47de-b7f5-d0392ee591a6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T23:30:48.678Z", + "completed":"2017-06-01T23:30:48.678Z", + "new_balance":"3700.39", + "value":"-4.89" + } + }, + { + "id":"c2a12036-27b4-47e0-85c6-d22b56b01e80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T03:22:36.929Z", + "completed":"2017-06-02T03:22:36.929Z", + "new_balance":"3699.15", + "value":"-1.24" + } + }, + { + "id":"daf69186-c518-4534-a285-83d174c8246e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T03:50:37.222Z", + "completed":"2017-06-02T03:50:37.222Z", + "new_balance":"3692.23", + "value":"-6.92" + } + }, + { + "id":"eda572c7-9605-4bdc-8592-47e64ff3218f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T20:50:36.665Z", + "completed":"2017-06-02T20:50:36.665Z", + "new_balance":"3690.65", + "value":"-1.58" + } + }, + { + "id":"077ef50b-0c8c-4a52-8918-e99431381907", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T11:38:54.202Z", + "completed":"2017-06-04T11:38:54.202Z", + "new_balance":"3686.38", + "value":"-4.27" + } + }, + { + "id":"ec0c7622-c3ae-4073-84c8-43cdafda409c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:40:49.601Z", + "completed":"2017-06-04T17:40:49.601Z", + "new_balance":"3684.24", + "value":"-2.14" + } + }, + { + "id":"2b9a5bef-f408-4aaa-a9fe-69c659556e5f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T20:47:25.983Z", + "completed":"2017-06-04T20:47:25.983Z", + "new_balance":"3679.55", + "value":"-4.69" + } + }, + { + "id":"ff4886ee-7e7b-4466-835a-c929575f4aa9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:36:09.682Z", + "completed":"2017-06-05T06:36:09.682Z", + "new_balance":"3675.13", + "value":"-4.42" + } + }, + { + "id":"c30bb6b5-fdde-4aaf-a47b-3292d6a0b787", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T16:14:17.763Z", + "completed":"2017-06-05T16:14:17.763Z", + "new_balance":"3673.14", + "value":"-1.99" + } + }, + { + "id":"9198c7af-4720-4f9d-a2ca-b787ae27e49b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T15:05:01.049Z", + "completed":"2017-06-18T15:05:01.049Z", + "new_balance":"3667.99", + "value":"-5.15" + } + }, + { + "id":"09adb6c4-d748-4afa-bc1e-6af5a300c14b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T09:16:52.016Z", + "completed":"2017-06-30T09:16:52.016Z", + "new_balance":"3664.88", + "value":"-3.11" + } + }, + { + "id":"bc62b936-3ddd-40d5-9804-ceff16fbd1c7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T15:04:59.503Z", + "completed":"2017-06-30T15:04:59.503Z", + "new_balance":"3660.61", + "value":"-4.27" + } + }, + { + "id":"2f690439-dc5b-473c-8db9-0cf00d200928", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T21:27:27.265Z", + "completed":"2017-06-30T21:27:27.265Z", + "new_balance":"3657.17", + "value":"-3.44" + } + }, + { + "id":"7ede7f1f-833c-4b23-9339-cbab28ad99af", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T21:33:11.319Z", + "completed":"2017-06-30T21:33:11.319Z", + "new_balance":"3762.80", + "value":"105.63" + } + }, + { + "id":"5e632837-8479-418a-9b53-d008e5d1f878", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T18:14:32.005Z", + "completed":"2017-07-01T18:14:32.005Z", + "new_balance":"3756.40", + "value":"-6.40" + } + }, + { + "id":"0c94704d-0e45-4027-9c8f-306a92c6a331", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T01:55:09.977Z", + "completed":"2017-07-03T01:55:09.977Z", + "new_balance":"3698.17", + "value":"-58.23" + } + }, + { + "id":"8e5af378-86fc-4298-a071-4f29a44ee43e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T09:34:27.863Z", + "completed":"2017-07-03T09:34:27.863Z", + "new_balance":"3690.98", + "value":"-7.19" + } + }, + { + "id":"ddd9c552-e02e-4aab-964f-6a129619a697", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T22:35:51.773Z", + "completed":"2017-07-03T22:35:51.773Z", + "new_balance":"3687.54", + "value":"-3.44" + } + }, + { + "id":"66375dbb-7a33-4e13-9a9e-861f036cb978", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T22:59:19.402Z", + "completed":"2017-07-03T22:59:19.402Z", + "new_balance":"3685.08", + "value":"-2.46" + } + }, + { + "id":"1ba636d1-655e-4463-9f2f-23c0e1e9755f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T00:20:51.917Z", + "completed":"2017-07-05T00:20:51.917Z", + "new_balance":"3683.93", + "value":"-1.15" + } + }, + { + "id":"351e28a3-547d-4258-9ee1-9c9433f11483", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:32:38.876Z", + "completed":"2017-07-05T07:32:38.876Z", + "new_balance":"3679.51", + "value":"-4.42" + } + }, + { + "id":"3d825a9f-bdcc-43ed-8518-67e2d563aec2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T22:18:51.675Z", + "completed":"2017-07-05T22:18:51.675Z", + "new_balance":"3674.36", + "value":"-5.15" + } + }, + { + "id":"3e71bf96-0bbc-497a-8d96-0bcce13dc9b4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T03:49:10.972Z", + "completed":"2017-07-06T03:49:10.972Z", + "new_balance":"3672.04", + "value":"-2.32" + } + }, + { + "id":"ea3a7a4e-8525-4a57-80e0-bbcf0128d15f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T15:59:26.936Z", + "completed":"2017-07-06T15:59:26.936Z", + "new_balance":"3668.37", + "value":"-3.67" + } + }, + { + "id":"3c80b3ea-ddd5-42c4-a7a1-75861b85dbc7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T08:28:48.759Z", + "completed":"2017-07-07T08:28:48.759Z", + "new_balance":"3663.90", + "value":"-4.47" + } + }, + { + "id":"547bb798-a476-4561-91e9-150779ac27f4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T03:59:39.616Z", + "completed":"2017-07-10T03:59:39.616Z", + "new_balance":"3658.75", + "value":"-5.15" + } + }, + { + "id":"65c1c8b2-9298-43ed-99cf-b14e200aa0ee", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T06:47:24.863Z", + "completed":"2017-07-10T06:47:24.863Z", + "new_balance":"3656.37", + "value":"-2.38" + } + }, + { + "id":"a2530676-190f-4404-8f9c-36ae3b1a12db", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T05:19:42.321Z", + "completed":"2017-07-12T05:19:42.321Z", + "new_balance":"3653.64", + "value":"-2.73" + } + }, + { + "id":"969a3066-692d-476d-8ea8-0e8981839928", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:33:22.421Z", + "completed":"2017-07-12T08:33:22.421Z", + "new_balance":"3649.17", + "value":"-4.47" + } + }, + { + "id":"d0c8de8b-0909-4dd6-9346-444293a28fd4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T18:46:16.662Z", + "completed":"2017-07-12T18:46:16.662Z", + "new_balance":"3646.71", + "value":"-2.46" + } + }, + { + "id":"5fbf7262-e035-44bf-97b4-bd5292b99b80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T01:50:06.630Z", + "completed":"2017-07-15T01:50:06.630Z", + "new_balance":"3644.08", + "value":"-2.63" + } + }, + { + "id":"d9b90c54-5961-4b08-b5de-9e21213d947c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T02:57:08.283Z", + "completed":"2017-07-16T02:57:08.283Z", + "new_balance":"3638.93", + "value":"-5.15" + } + }, + { + "id":"daaec244-ae92-41f5-90be-185cd654bc65", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T16:45:58.037Z", + "completed":"2017-07-16T16:45:58.037Z", + "new_balance":"3637.97", + "value":"-0.96" + } + }, + { + "id":"c60a527c-b0fb-4e2d-bd09-d754cdd1bd30", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T09:37:40.543Z", + "completed":"2017-07-17T09:37:40.543Z", + "new_balance":"3635.38", + "value":"-2.59" + } + }, + { + "id":"424a2b26-e1f6-4763-acf9-b795c7379a19", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T12:45:59.395Z", + "completed":"2017-07-17T12:45:59.395Z", + "new_balance":"3628.63", + "value":"-6.75" + } + }, + { + "id":"23f7937d-0821-466d-b7cc-b9b91d84698d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T07:17:00.245Z", + "completed":"2017-07-19T07:17:00.245Z", + "new_balance":"3626.21", + "value":"-2.42" + } + }, + { + "id":"483f7eba-e67f-4e15-b9e2-a632039b43ea", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T11:15:21.088Z", + "completed":"2017-07-20T11:15:21.088Z", + "new_balance":"3621.06", + "value":"-5.15" + } + }, + { + "id":"3cf25fbb-c44e-474a-a9c7-d8f1596d2d43", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T12:00:14.811Z", + "completed":"2017-07-23T12:00:14.811Z", + "new_balance":"3619.64", + "value":"-1.42" + } + }, + { + "id":"9658c6d3-f85f-4737-b101-8f8b4e62576b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T19:47:15.338Z", + "completed":"2017-07-26T19:47:15.338Z", + "new_balance":"3614.83", + "value":"-4.81" + } + }, + { + "id":"e18da05c-8ed8-49d0-a9d0-0364c2888e72", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T16:51:06.447Z", + "completed":"2017-07-27T16:51:06.447Z", + "new_balance":"3720.46", + "value":"105.63" + } + }, + { + "id":"3ec2f540-6c38-4b2c-bd78-ee6c654df9bb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T10:58:38.493Z", + "completed":"2017-07-28T10:58:38.493Z", + "new_balance":"3717.02", + "value":"-3.44" + } + }, + { + "id":"f2a75858-4826-4e5a-bd7d-4e96d2ede200", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T11:15:44.372Z", + "completed":"2017-07-30T11:15:44.372Z", + "new_balance":"3712.75", + "value":"-4.27" + } + }, + { + "id":"766aae07-61d5-4bb2-ad44-42a08e647939", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T20:28:38.414Z", + "completed":"2017-08-01T20:28:38.414Z", + "new_balance":"3706.35", + "value":"-6.40" + } + }, + { + "id":"5f7e44f0-c54d-4951-8845-cbb09a68488b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T03:19:21.269Z", + "completed":"2017-08-03T03:19:21.269Z", + "new_balance":"3702.91", + "value":"-3.44" + } + }, + { + "id":"c98e645f-2944-499c-8b4c-1071e813eb04", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T05:25:45.312Z", + "completed":"2017-08-03T05:25:45.312Z", + "new_balance":"3644.68", + "value":"-58.23" + } + }, + { + "id":"0b986244-e75c-422e-a4dd-8d126bf76a22", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T14:17:20.573Z", + "completed":"2017-08-03T14:17:20.573Z", + "new_balance":"3642.22", + "value":"-2.46" + } + }, + { + "id":"f8e8519c-a185-4c0b-b944-55ee39c5a8f3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T22:09:04.046Z", + "completed":"2017-08-03T22:09:04.046Z", + "new_balance":"3635.03", + "value":"-7.19" + } + }, + { + "id":"0e90a581-e330-47ef-bcc4-9d3d67c08cb6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T18:37:44.778Z", + "completed":"2017-08-08T18:37:44.778Z", + "new_balance":"3629.88", + "value":"-5.15" + } + }, + { + "id":"90a83d87-416f-4512-9992-50a1992970c4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T22:52:26.064Z", + "completed":"2017-08-08T22:52:26.064Z", + "new_balance":"3625.46", + "value":"-4.42" + } + }, + { + "id":"2bd3e58b-ff4f-4ac4-ab6c-4e3615b0b51e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T13:42:49.790Z", + "completed":"2017-08-11T13:42:49.790Z", + "new_balance":"3626.57", + "value":"1.11" + } + }, + { + "id":"d31fbc6e-ca0e-4191-a3f4-0d53526872bb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T08:13:52.873Z", + "completed":"2017-08-13T08:13:52.873Z", + "new_balance":"3624.25", + "value":"-2.32" + } + }, + { + "id":"6c1d3079-2431-4817-9ca0-db05246054d6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T08:51:18.554Z", + "completed":"2017-08-14T08:51:18.554Z", + "new_balance":"3621.22", + "value":"-3.03" + } + }, + { + "id":"7b533228-1851-4b9e-91bd-b4f2eb757642", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T08:16:45.455Z", + "completed":"2017-08-17T08:16:45.455Z", + "new_balance":"3619.82", + "value":"-1.40" + } + }, + { + "id":"ea6c56bd-751b-4a68-98d0-aa89d6eebce4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T19:23:27.364Z", + "completed":"2017-08-21T19:23:27.364Z", + "new_balance":"3615.33", + "value":"-4.49" + } + }, + { + "id":"1232044a-7231-4c4c-bf8c-f27e20032cfe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T00:14:20.863Z", + "completed":"2017-08-23T00:14:20.863Z", + "new_balance":"3610.18", + "value":"-5.15" + } + }, + { + "id":"b5006f13-529e-416e-8e50-76a8d5347c60", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T09:08:53.015Z", + "completed":"2017-08-23T09:08:53.015Z", + "new_balance":"3605.94", + "value":"-4.24" + } + }, + { + "id":"38fb2c30-c9f4-4196-ac1b-ff88507558a6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T05:25:22.629Z", + "completed":"2017-08-24T05:25:22.629Z", + "new_balance":"3604.54", + "value":"-1.40" + } + }, + { + "id":"0b52ce6c-5ae6-4eec-a010-5f8fd6446a7e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T00:15:02.409Z", + "completed":"2017-08-27T00:15:02.409Z", + "new_balance":"3602.52", + "value":"-2.02" + } + }, + { + "id":"3d68a052-40ad-44e0-8cd6-702965a468eb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T12:09:50.756Z", + "completed":"2017-08-27T12:09:50.756Z", + "new_balance":"3597.71", + "value":"-4.81" + } + }, + { + "id":"3546b50a-235e-44ab-809c-71c7db3894a9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T20:31:27.162Z", + "completed":"2017-08-27T20:31:27.162Z", + "new_balance":"3703.34", + "value":"105.63" + } + }, + { + "id":"cb800943-1a62-49f8-8bd5-19a216172508", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:57:34.120Z", + "completed":"2017-08-28T19:57:34.120Z", + "new_balance":"3699.90", + "value":"-3.44" + } + }, + { + "id":"f75c8dd2-f108-4553-9889-81cbd91fb2e4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T05:51:39.157Z", + "completed":"2017-08-30T05:51:39.157Z", + "new_balance":"3695.63", + "value":"-4.27" + } + }, + { + "id":"6a51f604-f8ad-4481-972c-c0ac8ff3e9cd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T06:03:51.685Z", + "completed":"2017-09-01T06:03:51.685Z", + "new_balance":"3689.23", + "value":"-6.40" + } + }, + { + "id":"ad3c8cc4-4730-4f5c-8be8-d7162ed99411", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T00:29:17.586Z", + "completed":"2017-09-03T00:29:17.586Z", + "new_balance":"3686.77", + "value":"-2.46" + } + }, + { + "id":"231f0488-2e64-4033-8fd7-14d56095a0db", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T07:01:08.414Z", + "completed":"2017-09-03T07:01:08.414Z", + "new_balance":"3628.54", + "value":"-58.23" + } + }, + { + "id":"f49bb3d9-b249-4d11-9fc5-5a07b02aa16f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T14:25:04.143Z", + "completed":"2017-09-03T14:25:04.143Z", + "new_balance":"3625.10", + "value":"-3.44" + } + }, + { + "id":"4c56f9f4-1d1b-4652-a432-6994a5db1e78", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T23:27:01.818Z", + "completed":"2017-09-03T23:27:01.818Z", + "new_balance":"3617.91", + "value":"-7.19" + } + }, + { + "id":"6b711d72-2504-4545-b336-038c57135af5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T08:40:30.478Z", + "completed":"2017-09-05T08:40:30.478Z", + "new_balance":"3612.76", + "value":"-5.15" + } + }, + { + "id":"2c4b2269-095b-4687-a94b-90af22a8d4e1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T13:46:25.982Z", + "completed":"2017-09-05T13:46:25.982Z", + "new_balance":"3607.87", + "value":"-4.89" + } + }, + { + "id":"5ed058c8-d6ab-44db-a29f-5a6ff54ab98c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T05:57:10.470Z", + "completed":"2017-09-07T05:57:10.470Z", + "new_balance":"3606.00", + "value":"-1.87" + } + }, + { + "id":"1e4afa5f-da40-474d-b6c2-ed313d0ac3c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T18:12:03.802Z", + "completed":"2017-09-09T18:12:03.802Z", + "new_balance":"3600.85", + "value":"-5.15" + } + }, + { + "id":"3f6cd614-cd2d-4dec-9322-315e5afa1fe3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T15:32:40.420Z", + "completed":"2017-09-11T15:32:40.420Z", + "new_balance":"3599.27", + "value":"-1.58" + } + }, + { + "id":"db344cc3-c8a0-4184-814d-70fd86c74f99", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T15:53:50.451Z", + "completed":"2017-09-13T15:53:50.451Z", + "new_balance":"3592.35", + "value":"-6.92" + } + }, + { + "id":"ddab0d18-d3e3-4dd9-8d48-efab031e044b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T01:04:42.971Z", + "completed":"2017-09-14T01:04:42.971Z", + "new_balance":"3600.64", + "value":"8.29" + } + }, + { + "id":"aef51a5e-9b05-4010-867c-57658b547aaf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:49:17.223Z", + "completed":"2017-09-14T17:49:17.223Z", + "new_balance":"3599.40", + "value":"-1.24" + } + }, + { + "id":"57c99d0c-7866-47b7-a7a3-d2aba46ad388", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T03:51:44.537Z", + "completed":"2017-09-15T03:51:44.537Z", + "new_balance":"3595.13", + "value":"-4.27" + } + }, + { + "id":"848aee2e-ecec-4940-a551-227a1d37dd96", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T01:24:30.955Z", + "completed":"2017-09-26T01:24:30.955Z", + "new_balance":"3593.14", + "value":"-1.99" + } + }, + { + "id":"067b843f-f6c8-4dd7-9cde-16ea8b94d3be", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T09:25:12.038Z", + "completed":"2017-09-26T09:25:12.038Z", + "new_balance":"3591.00", + "value":"-2.14" + } + }, + { + "id":"01fcaae6-e2d5-40ab-b1d4-85b19278995d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T23:45:36.063Z", + "completed":"2017-09-26T23:45:36.063Z", + "new_balance":"3586.31", + "value":"-4.69" + } + }, + { + "id":"0bf997c4-affc-4331-a92f-753a953cc40c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T09:21:33.930Z", + "completed":"2017-09-27T09:21:33.930Z", + "new_balance":"3581.89", + "value":"-4.42" + } + }, + { + "id":"87949931-928f-4356-bbc9-042e2da14067", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T14:55:11.113Z", + "completed":"2017-09-27T14:55:11.113Z", + "new_balance":"3687.52", + "value":"105.63" + } + }, + { + "id":"a59cb041-778f-4968-b14d-b9430ac8a8f2", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T20:58:43.826Z", + "completed":"2017-09-27T20:58:43.826Z", + "new_balance":"3682.37", + "value":"-5.15" + } + }, + { + "id":"ba753392-2e14-4d00-890d-0a723aed42bf", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T23:28:29.033Z", + "completed":"2017-09-28T23:28:29.033Z", + "new_balance":"3678.93", + "value":"-3.44" + } + }, + { + "id":"065f279b-febc-4dc1-a731-61950fcb77b5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T15:43:30.715Z", + "completed":"2017-09-30T15:43:30.715Z", + "new_balance":"3674.66", + "value":"-4.27" + } + }, + { + "id":"ab182047-ad9b-4c84-bc37-8b9ed9fa02f7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T09:53:28.900Z", + "completed":"2017-10-01T09:53:28.900Z", + "new_balance":"3671.22", + "value":"-3.44" + } + }, + { + "id":"cd41ba47-4882-49ff-9412-46ce3fbfe3eb", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T14:44:36.608Z", + "completed":"2017-10-01T14:44:36.608Z", + "new_balance":"3612.99", + "value":"-58.23" + } + }, + { + "id":"44b2311a-8470-47b7-be2d-1b1672abb12e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T14:57:38.513Z", + "completed":"2017-10-01T14:57:38.513Z", + "new_balance":"3605.80", + "value":"-7.19" + } + }, + { + "id":"ec164a50-bea6-4c46-8200-78ba6ad1ee0d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T19:29:50.002Z", + "completed":"2017-10-01T19:29:50.002Z", + "new_balance":"3603.34", + "value":"-2.46" + } + }, + { + "id":"33e6006f-6d33-494a-a715-cbd6506ddfbc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T21:58:23.775Z", + "completed":"2017-10-01T21:58:23.775Z", + "new_balance":"3596.94", + "value":"-6.40" + } + }, + { + "id":"1557d49c-f73b-4697-82f7-529a98e7bbe1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T03:04:10.826Z", + "completed":"2017-10-05T03:04:10.826Z", + "new_balance":"3593.27", + "value":"-3.67" + } + }, + { + "id":"546ea1f0-3081-44e4-b5a4-9321ee58ee1d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:50:29.849Z", + "completed":"2017-10-05T06:50:29.849Z", + "new_balance":"3588.85", + "value":"-4.42" + } + }, + { + "id":"c7edc709-c3b3-4e39-be96-6a0a78120c59", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T14:16:33.153Z", + "completed":"2017-10-05T14:16:33.153Z", + "new_balance":"3587.70", + "value":"-1.15" + } + }, + { + "id":"95d1592d-b135-4f80-9731-48df88df1668", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T20:38:19.957Z", + "completed":"2017-10-05T20:38:19.957Z", + "new_balance":"3582.55", + "value":"-5.15" + } + }, + { + "id":"bbee026a-2213-4d76-a443-999d5510f271", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T10:40:56.987Z", + "completed":"2017-10-07T10:40:56.987Z", + "new_balance":"3580.23", + "value":"-2.32" + } + }, + { + "id":"85003b2a-cca2-4160-866a-7f64b20bd6e4", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T00:24:47.840Z", + "completed":"2017-10-09T00:24:47.840Z", + "new_balance":"3577.85", + "value":"-2.38" + } + }, + { + "id":"6fc76646-4d41-4bad-aebe-bbb9659ebe4e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T04:48:51.101Z", + "completed":"2017-10-09T04:48:51.101Z", + "new_balance":"3572.70", + "value":"-5.15" + } + }, + { + "id":"b8f5eda8-f3a7-40bb-bba5-b6ea480b4851", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T01:15:29.431Z", + "completed":"2017-10-10T01:15:29.431Z", + "new_balance":"3569.97", + "value":"-2.73" + } + }, + { + "id":"25e9c6f3-4c44-43ef-baf6-61d3ce57d7e3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T10:00:52.089Z", + "completed":"2017-10-10T10:00:52.089Z", + "new_balance":"3565.50", + "value":"-4.47" + } + }, + { + "id":"40fee889-1f73-4c22-b14a-8e390878e2a3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T14:33:55.696Z", + "completed":"2017-10-10T14:33:55.696Z", + "new_balance":"3562.87", + "value":"-2.63" + } + }, + { + "id":"28a00ba7-ed18-43fa-8191-1b12ef07ace6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T19:25:39.865Z", + "completed":"2017-10-10T19:25:39.865Z", + "new_balance":"3560.41", + "value":"-2.46" + } + }, + { + "id":"09a25c05-adbb-48dc-8591-c208081164f5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T02:56:26.972Z", + "completed":"2017-10-11T02:56:26.972Z", + "new_balance":"3559.45", + "value":"-0.96" + } + }, + { + "id":"301af5c1-05e2-4ba0-b252-c9c90a6a1ac3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T05:16:03.999Z", + "completed":"2017-10-11T05:16:03.999Z", + "new_balance":"3554.30", + "value":"-5.15" + } + }, + { + "id":"c1b81b56-6487-46b2-837b-ea4e5089eea9", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:55:22.718Z", + "completed":"2017-10-11T06:55:22.718Z", + "new_balance":"3547.55", + "value":"-6.75" + } + }, + { + "id":"7a3ff938-4ce6-4d7d-8155-b31718749f80", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T12:02:13.365Z", + "completed":"2017-10-11T12:02:13.365Z", + "new_balance":"3545.13", + "value":"-2.42" + } + }, + { + "id":"23222e57-5834-407d-9d13-0bb940776626", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T21:33:24.977Z", + "completed":"2017-10-11T21:33:24.977Z", + "new_balance":"3542.54", + "value":"-2.59" + } + }, + { + "id":"a66027df-8067-4b4d-8308-a538c11b3787", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T23:40:32.974Z", + "completed":"2017-10-21T23:40:32.974Z", + "new_balance":"3537.39", + "value":"-5.15" + } + }, + { + "id":"68ef5a60-8f3d-4314-83c7-1ea258f5c4e5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T20:27:22.541Z", + "completed":"2017-10-23T20:27:22.541Z", + "new_balance":"3535.97", + "value":"-1.42" + } + }, + { + "id":"5f84df4d-67a3-420e-8c9d-ab48647ee480", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T11:09:44.469Z", + "completed":"2017-10-29T11:09:44.469Z", + "new_balance":"3532.53", + "value":"-3.44" + } + }, + { + "id":"7c3f43e9-7571-4bf9-ba47-16a5162d83b1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T14:40:45.252Z", + "completed":"2017-10-29T14:40:45.252Z", + "new_balance":"3527.72", + "value":"-4.81" + } + }, + { + "id":"a2928df2-5f4e-4503-bf10-686256ad8075", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T20:14:52.817Z", + "completed":"2017-10-29T20:14:52.817Z", + "new_balance":"3633.35", + "value":"105.63" + } + }, + { + "id":"e0231f51-7eb4-4371-b03a-7fae141f359a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T01:32:28.891Z", + "completed":"2017-10-30T01:32:28.891Z", + "new_balance":"3629.08", + "value":"-4.27" + } + }, + { + "id":"ca0df2ea-30d6-46d9-8583-a533bf43dd5b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T08:27:51.104Z", + "completed":"2017-11-02T08:27:51.104Z", + "new_balance":"3626.62", + "value":"-2.46" + } + }, + { + "id":"9a151251-b00a-4eec-93dc-ee5bab315a87", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T14:38:39.063Z", + "completed":"2017-11-02T14:38:39.063Z", + "new_balance":"3620.22", + "value":"-6.40" + } + }, + { + "id":"f433ea9f-4aef-45f0-900b-c108e23162e3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:56:05.289Z", + "completed":"2017-11-02T14:56:05.289Z", + "new_balance":"3561.99", + "value":"-58.23" + } + }, + { + "id":"1b4d5b5e-a4cd-48bc-9d48-8e1ce758267d", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T16:39:36.487Z", + "completed":"2017-11-02T16:39:36.487Z", + "new_balance":"3554.80", + "value":"-7.19" + } + }, + { + "id":"a175d527-eb71-4c37-940f-5dfe7d28165f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T04:18:23.976Z", + "completed":"2017-11-06T04:18:23.976Z", + "new_balance":"3550.38", + "value":"-4.42" + } + }, + { + "id":"d4c88762-1a07-473a-9cc3-7c36cc5b2130", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:12:01.861Z", + "completed":"2017-11-07T04:12:01.861Z", + "new_balance":"3548.06", + "value":"-2.32" + } + }, + { + "id":"1dec15a7-db11-4c7e-9640-809413b08e41", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T09:32:10.276Z", + "completed":"2017-11-07T09:32:10.276Z", + "new_balance":"3546.66", + "value":"-1.40" + } + }, + { + "id":"f9e2283b-4ef5-4975-8470-898f44857f9f", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T15:38:59.998Z", + "completed":"2017-11-07T15:38:59.998Z", + "new_balance":"3543.63", + "value":"-3.03" + } + }, + { + "id":"692c1aad-54b0-4c5b-995d-58c3f34446f1", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T22:26:07.444Z", + "completed":"2017-11-07T22:26:07.444Z", + "new_balance":"3539.14", + "value":"-4.49" + } + }, + { + "id":"ae9af696-96e7-4eab-a19c-846eea8af20e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T22:23:21.936Z", + "completed":"2017-11-08T22:23:21.936Z", + "new_balance":"3534.90", + "value":"-4.24" + } + }, + { + "id":"c4d99e78-ec6b-4c5d-9274-c96cba0728fd", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T02:40:00.203Z", + "completed":"2017-11-09T02:40:00.203Z", + "new_balance":"3531.46", + "value":"-3.44" + } + }, + { + "id":"71d50cfe-4947-4d07-bc98-3da94ad20ab5", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T08:05:24.372Z", + "completed":"2017-11-13T08:05:24.372Z", + "new_balance":"3526.31", + "value":"-5.15" + } + }, + { + "id":"b131e47d-ee62-4879-9db1-36261589f6c8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T01:44:27.635Z", + "completed":"2017-11-26T01:44:27.635Z", + "new_balance":"3521.16", + "value":"-5.15" + } + }, + { + "id":"95af6df6-7c62-420e-b62f-d5f1e81862f6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T08:18:35.911Z", + "completed":"2017-11-26T08:18:35.911Z", + "new_balance":"3519.76", + "value":"-1.40" + } + }, + { + "id":"42476e0d-171f-4f39-883b-4641e0dc8029", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T11:48:21.478Z", + "completed":"2017-11-27T11:48:21.478Z", + "new_balance":"3514.95", + "value":"-4.81" + } + }, + { + "id":"4b08d9e3-25c2-4a39-bd5a-035aca78318a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T15:24:57.467Z", + "completed":"2017-11-27T15:24:57.467Z", + "new_balance":"3512.93", + "value":"-2.02" + } + }, + { + "id":"e9060c69-a521-44fe-a941-888eb15ede9a", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T06:19:24.011Z", + "completed":"2017-11-30T06:19:24.011Z", + "new_balance":"3509.49", + "value":"-3.44" + } + }, + { + "id":"f9fbe41c-3298-49f0-9b5c-71e2c2e3ab7c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T17:27:54.333Z", + "completed":"2017-11-30T17:27:54.333Z", + "new_balance":"3615.12", + "value":"105.63" + } + }, + { + "id":"4d42fb50-2192-4dcb-95bd-e0268e0d9848", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T20:08:14.942Z", + "completed":"2017-11-30T20:08:14.942Z", + "new_balance":"3610.85", + "value":"-4.27" + } + }, + { + "id":"3a479d07-ce0a-44f9-89ef-0c6bb5af35b7", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:28:56.266Z", + "completed":"2017-12-01T00:28:56.266Z", + "new_balance":"3604.45", + "value":"-6.40" + } + }, + { + "id":"354da7fd-3927-44b4-9601-0b9b089f712c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T04:58:47.064Z", + "completed":"2017-12-01T04:58:47.064Z", + "new_balance":"3601.99", + "value":"-2.46" + } + }, + { + "id":"7072f93b-f969-4d1a-9a08-e139a9ab2649", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T08:44:11.798Z", + "completed":"2017-12-01T08:44:11.798Z", + "new_balance":"3598.55", + "value":"-3.44" + } + }, + { + "id":"1de3298a-f2ef-4faf-8e20-fd9b2423cabc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T09:04:51.570Z", + "completed":"2017-12-01T09:04:51.570Z", + "new_balance":"3593.66", + "value":"-4.89" + } + }, + { + "id":"e0158b60-f35e-4be4-a1ac-dc8e4cf0c169", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T12:55:45.454Z", + "completed":"2017-12-01T12:55:45.454Z", + "new_balance":"3591.79", + "value":"-1.87" + } + }, + { + "id":"e4ed52a8-6200-415d-887e-b10c1997a370", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T12:58:21.666Z", + "completed":"2017-12-01T12:58:21.666Z", + "new_balance":"3586.64", + "value":"-5.15" + } + }, + { + "id":"e7cc2502-c6ac-463c-9f89-8fc2e14ec292", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T13:18:10.717Z", + "completed":"2017-12-01T13:18:10.717Z", + "new_balance":"3528.41", + "value":"-58.23" + } + }, + { + "id":"21a3a7e5-1b14-4b77-9439-3e3c49d89041", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T16:23:05.076Z", + "completed":"2017-12-01T16:23:05.076Z", + "new_balance":"3521.22", + "value":"-7.19" + } + }, + { + "id":"0bd7154d-a858-4c49-93f8-ecdb75608ae6", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T18:41:00.354Z", + "completed":"2017-12-01T18:41:00.354Z", + "new_balance":"3516.07", + "value":"-5.15" + } + }, + { + "id":"c0b7a486-96aa-41f6-9d6c-3b180ff15683", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T04:40:30.813Z", + "completed":"2017-12-02T04:40:30.813Z", + "new_balance":"3514.83", + "value":"-1.24" + } + }, + { + "id":"3fa419f7-792e-4915-99f0-beb5dd003102", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T09:30:21.853Z", + "completed":"2017-12-02T09:30:21.853Z", + "new_balance":"3507.91", + "value":"-6.92" + } + }, + { + "id":"27aaa6b8-170d-4e12-9306-ce989383a12c", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T18:52:52.970Z", + "completed":"2017-12-02T18:52:52.970Z", + "new_balance":"3506.33", + "value":"-1.58" + } + }, + { + "id":"55c16711-90e5-4f4a-8cc6-af6bdc8549d3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:29:24.164Z", + "completed":"2017-12-04T00:29:24.164Z", + "new_balance":"3504.19", + "value":"-2.14" + } + }, + { + "id":"9cd0ce04-997c-4b64-bd60-b4476db21c10", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T18:07:24.802Z", + "completed":"2017-12-04T18:07:24.802Z", + "new_balance":"3499.50", + "value":"-4.69" + } + }, + { + "id":"53b44ab1-3447-44f3-b795-ad73e9bce6bc", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T20:06:25.592Z", + "completed":"2017-12-04T20:06:25.592Z", + "new_balance":"3495.23", + "value":"-4.27" + } + }, + { + "id":"ab2473c5-7f15-439d-bd99-f27b8f53aabe", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T00:30:08.933Z", + "completed":"2017-12-05T00:30:08.933Z", + "new_balance":"3493.24", + "value":"-1.99" + } + }, + { + "id":"a965cfb0-58e7-4bd0-a6a9-3c495a291311", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T20:58:57.954Z", + "completed":"2017-12-05T20:58:57.954Z", + "new_balance":"3488.82", + "value":"-4.42" + } + }, + { + "id":"5f4691ab-d43e-4a06-8c99-443dd31dd245", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T09:45:05.689Z", + "completed":"2017-12-18T09:45:05.689Z", + "new_balance":"3483.67", + "value":"-5.15" + } + }, + { + "id":"2a32f5eb-00c1-40f0-807e-b8d8be965e9e", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T11:29:28.963Z", + "completed":"2017-12-30T11:29:28.963Z", + "new_balance":"3480.56", + "value":"-3.11" + } + }, + { + "id":"54579b93-a839-49a4-9301-ba9ea5427cf8", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T13:08:38.097Z", + "completed":"2017-12-30T13:08:38.097Z", + "new_balance":"3476.29", + "value":"-4.27" + } + }, + { + "id":"62a5ae2e-0cda-40bf-8e8c-838b04d556c3", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T13:46:44.942Z", + "completed":"2017-12-30T13:46:44.942Z", + "new_balance":"3581.92", + "value":"105.63" + } + }, + { + "id":"fc575990-dff3-4f0a-ab6e-6608b840da3b", + "this_account":{ + "id":"20801103-eb6e-48c4-b0d7-569e09fb8035", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T21:54:43.443Z", + "completed":"2017-12-30T21:54:43.443Z", + "new_balance":"3578.48", + "value":"-3.44" + } + }, + { + "id":"688825f0-55ba-4441-8474-1b6ad4c46c74", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T16:38:42.473Z", + "completed":"2016-01-01T16:38:42.473Z", + "new_balance":"3671.37", + "value":"-3.44" + } + }, + { + "id":"d0238eb1-0453-4009-8201-5fc39084167d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T19:09:42.114Z", + "completed":"2016-01-01T19:09:42.114Z", + "new_balance":"3667.93", + "value":"-3.44" + } + }, + { + "id":"e54e2f81-dbc7-41f8-baf5-a6bddc412399", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T19:18:32.043Z", + "completed":"2016-01-01T19:18:32.043Z", + "new_balance":"3663.75", + "value":"-4.18" + } + }, + { + "id":"88600212-9224-4d7f-87ab-55f357469563", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T23:00:32.817Z", + "completed":"2016-01-01T23:00:32.817Z", + "new_balance":"3656.05", + "value":"-7.70" + } + }, + { + "id":"c3142b0b-6392-44dc-8f49-66fa2bff547e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T03:23:04.291Z", + "completed":"2016-01-05T03:23:04.291Z", + "new_balance":"3646.01", + "value":"-10.04" + } + }, + { + "id":"3263bb12-2f79-4231-9d89-d52eb450c288", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T10:08:34.753Z", + "completed":"2016-01-05T10:08:34.753Z", + "new_balance":"3638.71", + "value":"-7.30" + } + }, + { + "id":"6042483c-da67-4db7-916c-d712410954b7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T18:53:25.147Z", + "completed":"2016-01-08T18:53:25.147Z", + "new_balance":"3637.31", + "value":"-1.40" + } + }, + { + "id":"0fb9d46c-8b56-40dd-a30d-851ccf9b3cdf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T13:30:16.599Z", + "completed":"2016-01-10T13:30:16.599Z", + "new_balance":"3632.65", + "value":"-4.66" + } + }, + { + "id":"58e813e3-0745-4653-a535-2fc7c166d3f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T17:27:42.582Z", + "completed":"2016-01-11T17:27:42.582Z", + "new_balance":"3627.24", + "value":"-5.41" + } + }, + { + "id":"34edcb05-286f-4c3b-992b-5e4e590ff580", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T04:05:12.355Z", + "completed":"2016-01-12T04:05:12.355Z", + "new_balance":"3623.80", + "value":"-3.44" + } + }, + { + "id":"305b2350-13ae-4e55-adad-6a47d754f560", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:26:38.182Z", + "completed":"2016-01-13T03:26:38.182Z", + "new_balance":"3623.34", + "value":"-0.46" + } + }, + { + "id":"01dbcdc1-346c-4e74-99b5-a03a4c3b74c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T21:57:16.728Z", + "completed":"2016-01-13T21:57:16.728Z", + "new_balance":"3622.83", + "value":"-0.51" + } + }, + { + "id":"c08bd029-add9-46b9-89f2-c02ca09c882c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T19:37:21.682Z", + "completed":"2016-01-16T19:37:21.682Z", + "new_balance":"3613.31", + "value":"-9.52" + } + }, + { + "id":"c18fd7a2-cfed-4635-b3ee-2dc1930afe41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T08:10:16.199Z", + "completed":"2016-01-19T08:10:16.199Z", + "new_balance":"3606.48", + "value":"-6.83" + } + }, + { + "id":"3c460347-9e2b-48d9-ab36-43f1e7bf8918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T08:28:06.196Z", + "completed":"2016-01-19T08:28:06.196Z", + "new_balance":"3599.18", + "value":"-7.30" + } + }, + { + "id":"28f5e0b6-75e3-4354-b2c6-246620ed7e8d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T06:43:12.436Z", + "completed":"2016-01-24T06:43:12.436Z", + "new_balance":"3596.50", + "value":"-2.68" + } + }, + { + "id":"d0db8260-91c0-4172-9eb6-149d81b31f92", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T03:30:11.499Z", + "completed":"2016-01-27T03:30:11.499Z", + "new_balance":"3592.83", + "value":"-3.67" + } + }, + { + "id":"fd37e900-32ba-45d9-95af-62da8a320fb3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T23:29:43.003Z", + "completed":"2016-01-27T23:29:43.003Z", + "new_balance":"3827.79", + "value":"234.96" + } + }, + { + "id":"5479a78e-03e8-4e6b-8c35-260f33b653c6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T21:54:50.650Z", + "completed":"2016-01-31T21:54:50.650Z", + "new_balance":"3804.55", + "value":"-23.24" + } + }, + { + "id":"e4995196-c623-49fd-8d42-9cb2b6852207", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T04:36:34.141Z", + "completed":"2016-02-01T04:36:34.141Z", + "new_balance":"3801.11", + "value":"-3.44" + } + }, + { + "id":"5ec93b45-d0d8-4c7f-88cc-8a3bb59aadaf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T09:28:42.852Z", + "completed":"2016-02-01T09:28:42.852Z", + "new_balance":"3796.93", + "value":"-4.18" + } + }, + { + "id":"a5208506-de92-4e76-a9ef-eb105acae5c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T16:49:18.475Z", + "completed":"2016-02-01T16:49:18.475Z", + "new_balance":"3793.49", + "value":"-3.44" + } + }, + { + "id":"77ac7b10-89b6-4671-8b6e-771e41fcc957", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T21:01:07.268Z", + "completed":"2016-02-01T21:01:07.268Z", + "new_balance":"3785.79", + "value":"-7.70" + } + }, + { + "id":"7d3fc722-fc93-42c5-8740-a32f563028d2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T18:13:39.638Z", + "completed":"2016-02-03T18:13:39.638Z", + "new_balance":"3785.09", + "value":"-0.70" + } + }, + { + "id":"1b94539d-5988-4a6a-b813-85113d99c648", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T14:37:47.999Z", + "completed":"2016-02-04T14:37:47.999Z", + "new_balance":"3777.79", + "value":"-7.30" + } + }, + { + "id":"a51e62f0-9b96-495d-ab7e-235a70901899", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T05:32:50.384Z", + "completed":"2016-02-06T05:32:50.384Z", + "new_balance":"3768.33", + "value":"-9.46" + } + }, + { + "id":"4c315e74-4cbe-4687-aeab-ee64cce6afdc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T22:49:25.432Z", + "completed":"2016-02-06T22:49:25.432Z", + "new_balance":"3758.23", + "value":"-10.10" + } + }, + { + "id":"16ab2532-f790-4085-889a-d7ee512839a5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T22:33:31.958Z", + "completed":"2016-02-07T22:33:31.958Z", + "new_balance":"3754.43", + "value":"-3.80" + } + }, + { + "id":"c9abc1f2-dd2f-4b0b-916d-5e2b6467f0d8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T10:47:22.305Z", + "completed":"2016-02-08T10:47:22.305Z", + "new_balance":"3753.31", + "value":"-1.12" + } + }, + { + "id":"4238110e-572a-48ee-9962-3859a0851511", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T14:51:14.823Z", + "completed":"2016-02-09T14:51:14.823Z", + "new_balance":"3748.72", + "value":"-4.59" + } + }, + { + "id":"2d2dc699-bd9c-482e-9c22-943242b4a087", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T20:01:37.890Z", + "completed":"2016-02-11T20:01:37.890Z", + "new_balance":"3746.32", + "value":"-2.40" + } + }, + { + "id":"518d912d-3a08-4cce-95ed-db0b421f7008", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T01:54:14.886Z", + "completed":"2016-02-13T01:54:14.886Z", + "new_balance":"3743.44", + "value":"-2.88" + } + }, + { + "id":"df682b33-92b6-490f-baa0-13092b8b6ec4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T18:49:34.174Z", + "completed":"2016-02-17T18:49:34.174Z", + "new_balance":"3742.92", + "value":"-0.52" + } + }, + { + "id":"899e267a-da02-488c-8112-b9fc833b06c9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T14:50:59.858Z", + "completed":"2016-02-19T14:50:59.858Z", + "new_balance":"3737.74", + "value":"-5.18" + } + }, + { + "id":"59e296ac-00cf-4639-8e2f-00972dfa90e2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T15:55:36.489Z", + "completed":"2016-02-21T15:55:36.489Z", + "new_balance":"3730.44", + "value":"-7.30" + } + }, + { + "id":"8cce8015-491e-45f0-8e1c-f02dbd8a2768", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T13:34:07.440Z", + "completed":"2016-02-24T13:34:07.440Z", + "new_balance":"3726.77", + "value":"-3.67" + } + }, + { + "id":"9405dc30-fa4a-4b7c-99e3-cd50566bce94", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T11:38:47.202Z", + "completed":"2016-02-26T11:38:47.202Z", + "new_balance":"3961.73", + "value":"234.96" + } + }, + { + "id":"abf61af5-305b-43f0-99df-3f24e21a51e0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T01:27:00.789Z", + "completed":"2016-03-01T01:27:00.789Z", + "new_balance":"3954.03", + "value":"-7.70" + } + }, + { + "id":"3682bbf2-1c05-468d-a4f9-30c038f4cbd0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T01:43:53.808Z", + "completed":"2016-03-01T01:43:53.808Z", + "new_balance":"3950.59", + "value":"-3.44" + } + }, + { + "id":"d20ca2ef-5441-4664-b38d-5da1234c2fb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T21:49:50.803Z", + "completed":"2016-03-01T21:49:50.803Z", + "new_balance":"3947.15", + "value":"-3.44" + } + }, + { + "id":"73f14552-5c4a-4e02-bc62-d9fe3e36f44e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T22:59:32.081Z", + "completed":"2016-03-01T22:59:32.081Z", + "new_balance":"3942.97", + "value":"-4.18" + } + }, + { + "id":"f63f897c-ebb5-4978-8b7b-d85caba1dbde", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T01:18:49.396Z", + "completed":"2016-03-09T01:18:49.396Z", + "new_balance":"3937.15", + "value":"-5.82" + } + }, + { + "id":"846b033a-f389-4f7c-b1c6-9e293205d091", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T18:01:22.957Z", + "completed":"2016-03-09T18:01:22.957Z", + "new_balance":"3929.89", + "value":"-7.26" + } + }, + { + "id":"3ffda89e-4cc4-403f-be19-dce16abcd1d5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T18:07:47.194Z", + "completed":"2016-03-17T18:07:47.194Z", + "new_balance":"3922.15", + "value":"-7.74" + } + }, + { + "id":"a312f02f-25a6-445f-899b-1df0cd338f21", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T13:38:59.757Z", + "completed":"2016-03-18T13:38:59.757Z", + "new_balance":"3921.54", + "value":"-0.61" + } + }, + { + "id":"ebfe8eef-b099-48de-a30d-e4432e174ef3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T16:28:30.787Z", + "completed":"2016-03-18T16:28:30.787Z", + "new_balance":"3917.13", + "value":"-4.41" + } + }, + { + "id":"f2d8f49e-e1fb-47e1-8804-13d4e6fff9a1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T19:39:21.996Z", + "completed":"2016-03-18T19:39:21.996Z", + "new_balance":"3913.06", + "value":"-4.07" + } + }, + { + "id":"c18c5167-46f1-4486-a529-5f3ebab52529", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T23:40:50.105Z", + "completed":"2016-03-18T23:40:50.105Z", + "new_balance":"3905.32", + "value":"-7.74" + } + }, + { + "id":"df3b81e6-417e-468e-a1a7-58f4168a07c4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T19:08:06.396Z", + "completed":"2016-03-22T19:08:06.396Z", + "new_balance":"3895.31", + "value":"-10.01" + } + }, + { + "id":"5b7ac7be-60d8-43ed-bfe2-e73ebe9e8a26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T05:09:07.136Z", + "completed":"2016-03-29T05:09:07.136Z", + "new_balance":"3891.64", + "value":"-3.67" + } + }, + { + "id":"fd198a33-7afc-4422-9d63-dd057a46960c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T19:26:12.862Z", + "completed":"2016-03-29T19:26:12.862Z", + "new_balance":"4126.60", + "value":"234.96" + } + }, + { + "id":"c633e354-8616-4b0a-8f74-939a71d4f4e9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T09:31:25.148Z", + "completed":"2016-03-31T09:31:25.148Z", + "new_balance":"4103.36", + "value":"-23.24" + } + }, + { + "id":"d1d0945d-ab8b-4e37-b901-1ddc03e86d05", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T02:59:22.230Z", + "completed":"2016-04-01T02:59:22.230Z", + "new_balance":"4099.92", + "value":"-3.44" + } + }, + { + "id":"3dce1296-94d7-4b64-b2b0-f0ff7dd77fe9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T12:29:46.915Z", + "completed":"2016-04-01T12:29:46.915Z", + "new_balance":"4092.22", + "value":"-7.70" + } + }, + { + "id":"2c5a026a-70eb-4a7a-808f-d002e283031c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T13:51:58.589Z", + "completed":"2016-04-01T13:51:58.589Z", + "new_balance":"4088.04", + "value":"-4.18" + } + }, + { + "id":"4b0d802b-2b9f-4df8-b62d-09d23a5d164c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T21:52:11.298Z", + "completed":"2016-04-01T21:52:11.298Z", + "new_balance":"4084.60", + "value":"-3.44" + } + }, + { + "id":"d1e9b68e-26ab-4a6f-b520-0a541600692e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T18:51:03.696Z", + "completed":"2016-04-02T18:51:03.696Z", + "new_balance":"4077.04", + "value":"-7.56" + } + }, + { + "id":"0fdb7f37-95ac-4d9a-97be-8d2625000e01", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T00:17:56.135Z", + "completed":"2016-04-05T00:17:56.135Z", + "new_balance":"4075.80", + "value":"-1.24" + } + }, + { + "id":"4bcfec1e-bb70-453b-b202-31bbde80909a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T04:34:34.395Z", + "completed":"2016-04-05T04:34:34.395Z", + "new_balance":"4075.21", + "value":"-0.59" + } + }, + { + "id":"1a2a1d19-d371-4898-bb9f-fec7a0fd6b9f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T08:14:00.301Z", + "completed":"2016-04-05T08:14:00.301Z", + "new_balance":"4071.03", + "value":"-4.18" + } + }, + { + "id":"0379b72c-44f9-4805-a2a6-0383d4bdc8a2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T08:55:18.133Z", + "completed":"2016-04-05T08:55:18.133Z", + "new_balance":"4067.59", + "value":"-3.44" + } + }, + { + "id":"d03eb250-a662-4924-a5e2-051ea9c17947", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T11:30:43.424Z", + "completed":"2016-04-05T11:30:43.424Z", + "new_balance":"4060.29", + "value":"-7.30" + } + }, + { + "id":"e8d80182-ca7c-469f-8a3e-9b731e16a5ea", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T13:13:02.259Z", + "completed":"2016-04-05T13:13:02.259Z", + "new_balance":"4054.84", + "value":"-5.45" + } + }, + { + "id":"20037a78-e90e-4e66-905c-1ee09202f0bb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T22:28:10.501Z", + "completed":"2016-04-05T22:28:10.501Z", + "new_balance":"4054.14", + "value":"-0.70" + } + }, + { + "id":"78e687cb-410e-4a7b-9433-4a4864625d0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T11:16:37.763Z", + "completed":"2016-04-08T11:16:37.763Z", + "new_balance":"4046.05", + "value":"-8.09" + } + }, + { + "id":"931e0c8c-bbe5-4e81-bb59-ecfe833a5156", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T10:36:40.240Z", + "completed":"2016-04-10T10:36:40.240Z", + "new_balance":"4039.93", + "value":"-6.12" + } + }, + { + "id":"60e67187-06b6-42a2-9e11-51ecdd7db9a3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T13:04:17.383Z", + "completed":"2016-04-11T13:04:17.383Z", + "new_balance":"4032.63", + "value":"-7.30" + } + }, + { + "id":"a587c4d6-bfda-4170-b9a4-b5b58b4c7586", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T21:41:07.048Z", + "completed":"2016-04-11T21:41:07.048Z", + "new_balance":"4029.95", + "value":"-2.68" + } + }, + { + "id":"a1f68949-a4b3-42b5-932e-5f6c28d5cdef", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T15:52:35.847Z", + "completed":"2016-04-13T15:52:35.847Z", + "new_balance":"4026.28", + "value":"-3.67" + } + }, + { + "id":"8fdff6a1-ca47-427b-9a43-d5bf2e41b320", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T07:23:58.643Z", + "completed":"2016-04-18T07:23:58.643Z", + "new_balance":"4261.24", + "value":"234.96" + } + }, + { + "id":"b28fa716-14c5-4068-8a18-75d82bfa6608", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T01:41:01.562Z", + "completed":"2016-04-25T01:41:01.562Z", + "new_balance":"4238.00", + "value":"-23.24" + } + }, + { + "id":"b632b69a-feca-4c44-871a-dcc39dbe917e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T00:15:49.401Z", + "completed":"2016-05-02T00:15:49.401Z", + "new_balance":"4234.56", + "value":"-3.44" + } + }, + { + "id":"19d9ae97-ffd1-446c-bd41-0187dc5217c2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T03:41:48.829Z", + "completed":"2016-05-02T03:41:48.829Z", + "new_balance":"4226.86", + "value":"-7.70" + } + }, + { + "id":"d257f7d2-751b-4f15-9988-e7dc7076f344", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T07:22:30.077Z", + "completed":"2016-05-02T07:22:30.077Z", + "new_balance":"4223.42", + "value":"-3.44" + } + }, + { + "id":"7e141b7b-e4b2-401b-822b-db5343df7ec4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T11:33:45.681Z", + "completed":"2016-05-02T11:33:45.681Z", + "new_balance":"4219.24", + "value":"-4.18" + } + }, + { + "id":"ff824108-9005-412d-9f9e-25041a70d13b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T07:41:36.618Z", + "completed":"2016-05-04T07:41:36.618Z", + "new_balance":"4218.54", + "value":"-0.70" + } + }, + { + "id":"2bda6a85-b496-4332-8513-11051c88beff", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T13:42:31.311Z", + "completed":"2016-05-04T13:42:31.311Z", + "new_balance":"4211.24", + "value":"-7.30" + } + }, + { + "id":"a4963f21-9d79-482b-a2fa-35d123d08496", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T05:21:01.535Z", + "completed":"2016-05-06T05:21:01.535Z", + "new_balance":"4203.80", + "value":"-7.44" + } + }, + { + "id":"1f8a1387-1871-4a1a-9b34-b6efbb491b59", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T06:33:12.588Z", + "completed":"2016-05-07T06:33:12.588Z", + "new_balance":"4196.24", + "value":"-7.56" + } + }, + { + "id":"2eedba5d-1122-47e5-aaec-c396665e4006", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T20:10:26.223Z", + "completed":"2016-05-07T20:10:26.223Z", + "new_balance":"4193.53", + "value":"-2.71" + } + }, + { + "id":"db120e03-5e42-4076-aba8-5817b68ac7cc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T01:34:36.423Z", + "completed":"2016-05-09T01:34:36.423Z", + "new_balance":"4188.94", + "value":"-4.59" + } + }, + { + "id":"e6f71e8a-049f-4d24-8011-b223931a8d8e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T17:44:01.435Z", + "completed":"2016-05-09T17:44:01.435Z", + "new_balance":"4187.70", + "value":"-1.24" + } + }, + { + "id":"aea6f5f5-4045-4f93-9398-a8ec23b30d79", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T08:28:33.196Z", + "completed":"2016-05-13T08:28:33.196Z", + "new_balance":"4185.57", + "value":"-2.13" + } + }, + { + "id":"dc46ce37-2c2a-484f-9e3c-2bfe2a855bfb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T15:32:02.556Z", + "completed":"2016-05-13T15:32:02.556Z", + "new_balance":"4182.86", + "value":"-2.71" + } + }, + { + "id":"67bc95dc-0b94-4cfa-913f-00aea7fbc2cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T21:54:45.514Z", + "completed":"2016-05-13T21:54:45.514Z", + "new_balance":"4182.16", + "value":"-0.70" + } + }, + { + "id":"c74d090d-b512-4756-abcc-968a0b0c47da", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T08:41:39.218Z", + "completed":"2016-05-14T08:41:39.218Z", + "new_balance":"4174.86", + "value":"-7.30" + } + }, + { + "id":"a07cf698-cfdc-48b7-a9c2-d5b690a36b01", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T09:36:14.224Z", + "completed":"2016-05-14T09:36:14.224Z", + "new_balance":"4170.40", + "value":"-4.46" + } + }, + { + "id":"fbdea445-07a9-49a4-a06e-e7929751c879", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T05:21:20.977Z", + "completed":"2016-05-15T05:21:20.977Z", + "new_balance":"4166.73", + "value":"-3.67" + } + }, + { + "id":"bf00b30c-ed81-4b89-b7fa-9ef9c71ee9fa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T02:24:53.368Z", + "completed":"2016-05-30T02:24:53.368Z", + "new_balance":"4143.49", + "value":"-23.24" + } + }, + { + "id":"1028aaaf-e61a-4028-96bb-4c376fe0d2a0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T18:44:39.623Z", + "completed":"2016-05-30T18:44:39.623Z", + "new_balance":"4378.45", + "value":"234.96" + } + }, + { + "id":"ea14258f-6c99-49d5-ae11-d58b711d527f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T05:15:02.533Z", + "completed":"2016-06-01T05:15:02.533Z", + "new_balance":"4375.01", + "value":"-3.44" + } + }, + { + "id":"780d3dbb-24ec-4453-9846-0b0f46caf1eb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T16:24:54.092Z", + "completed":"2016-06-01T16:24:54.092Z", + "new_balance":"4370.83", + "value":"-4.18" + } + }, + { + "id":"894a3f00-2a18-4ce6-bf9a-7ab2222e134d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T17:25:44.220Z", + "completed":"2016-06-01T17:25:44.220Z", + "new_balance":"4363.13", + "value":"-7.70" + } + }, + { + "id":"b66a6c13-61c2-4828-bd76-44d75ef78f0d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:38:19.657Z", + "completed":"2016-06-01T18:38:19.657Z", + "new_balance":"4359.69", + "value":"-3.44" + } + }, + { + "id":"4d882932-6b12-4b5e-af86-8d5913ae3e68", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:54:44.948Z", + "completed":"2016-06-04T14:54:44.948Z", + "new_balance":"4352.43", + "value":"-7.26" + } + }, + { + "id":"32fa7ce3-3626-432c-8ba3-a9d660a82728", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T14:55:42.795Z", + "completed":"2016-06-04T14:55:42.795Z", + "new_balance":"4346.61", + "value":"-5.82" + } + }, + { + "id":"6cfe0ae0-f04a-4775-adb8-d9363d770903", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T03:49:14.611Z", + "completed":"2016-06-11T03:49:14.611Z", + "new_balance":"4338.87", + "value":"-7.74" + } + }, + { + "id":"2ae4e442-939e-42f4-a199-fb5bb5bc9907", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T09:51:58.082Z", + "completed":"2016-06-11T09:51:58.082Z", + "new_balance":"4331.13", + "value":"-7.74" + } + }, + { + "id":"3be26b74-ca09-4445-87fc-8bd1f676b52e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T17:50:23.176Z", + "completed":"2016-06-11T17:50:23.176Z", + "new_balance":"4326.72", + "value":"-4.41" + } + }, + { + "id":"b09ce80b-061e-45b2-9e3d-400ae75cb3a8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T08:01:46.376Z", + "completed":"2016-06-12T08:01:46.376Z", + "new_balance":"4322.65", + "value":"-4.07" + } + }, + { + "id":"8b51ce0d-a1cf-4674-b6ea-9351c3fc034c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T13:28:49.211Z", + "completed":"2016-06-12T13:28:49.211Z", + "new_balance":"4322.04", + "value":"-0.61" + } + }, + { + "id":"5217812f-85a3-409d-b793-7b3439648682", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:38:14.720Z", + "completed":"2016-06-16T00:38:14.720Z", + "new_balance":"4312.03", + "value":"-10.01" + } + }, + { + "id":"5dff825f-64cc-4c63-aa9e-f1727a7e8873", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T12:39:57.385Z", + "completed":"2016-06-29T12:39:57.385Z", + "new_balance":"4308.36", + "value":"-3.67" + } + }, + { + "id":"1b367b43-ecf5-4aa7-8b9b-65b407cedd46", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T07:19:25.918Z", + "completed":"2016-06-30T07:19:25.918Z", + "new_balance":"4285.12", + "value":"-23.24" + } + }, + { + "id":"0fdb67ec-a06b-4802-b335-4ad1c084798d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T20:16:18.693Z", + "completed":"2016-06-30T20:16:18.693Z", + "new_balance":"4520.08", + "value":"234.96" + } + }, + { + "id":"73a76ef4-95fa-4b31-9661-b3b12b5378b2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T06:33:45.075Z", + "completed":"2016-07-01T06:33:45.075Z", + "new_balance":"4515.90", + "value":"-4.18" + } + }, + { + "id":"a57a2873-2de2-42ca-b3d8-94a04bac92a7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T18:24:44.366Z", + "completed":"2016-07-01T18:24:44.366Z", + "new_balance":"4512.46", + "value":"-3.44" + } + }, + { + "id":"b1803656-ab06-47d4-b947-9754cbc32273", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T20:22:37.533Z", + "completed":"2016-07-01T20:22:37.533Z", + "new_balance":"4504.76", + "value":"-7.70" + } + }, + { + "id":"c639a843-096c-4aa5-8f51-d22cca98d45c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T23:37:38.846Z", + "completed":"2016-07-01T23:37:38.846Z", + "new_balance":"4501.32", + "value":"-3.44" + } + }, + { + "id":"847e0acf-ed06-47f5-b1a9-7777c4ac5f13", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T04:47:24.403Z", + "completed":"2016-07-05T04:47:24.403Z", + "new_balance":"4494.02", + "value":"-7.30" + } + }, + { + "id":"6ff07d67-5978-4055-bb43-2f771fd380d0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T07:18:57.111Z", + "completed":"2016-07-05T07:18:57.111Z", + "new_balance":"4483.98", + "value":"-10.04" + } + }, + { + "id":"9b80ceb7-77c4-47e3-a6b8-8f43f3b5381a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T17:57:28.849Z", + "completed":"2016-07-08T17:57:28.849Z", + "new_balance":"4482.58", + "value":"-1.40" + } + }, + { + "id":"4fd52f10-7350-4ce6-97de-3ef3e6b16b1e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T20:31:32.000Z", + "completed":"2016-07-10T20:31:32.000Z", + "new_balance":"4477.92", + "value":"-4.66" + } + }, + { + "id":"7be5a9c4-0f61-49b2-8bf0-668fadfa9f15", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T05:51:06.148Z", + "completed":"2016-07-12T05:51:06.148Z", + "new_balance":"4472.51", + "value":"-5.41" + } + }, + { + "id":"7e159a92-90cc-422e-a533-6d23bb4ffdfa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T07:55:53.355Z", + "completed":"2016-07-12T07:55:53.355Z", + "new_balance":"4469.07", + "value":"-3.44" + } + }, + { + "id":"287569e2-5007-45f7-980c-91f9fe87d868", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T03:52:28.582Z", + "completed":"2016-07-13T03:52:28.582Z", + "new_balance":"4468.61", + "value":"-0.46" + } + }, + { + "id":"3fc5c3ad-f224-4814-80a1-cef7dfd8f318", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T23:57:13.557Z", + "completed":"2016-07-13T23:57:13.557Z", + "new_balance":"4468.10", + "value":"-0.51" + } + }, + { + "id":"e91c1448-dfaa-4881-b69f-f93f73f136e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T05:15:27.163Z", + "completed":"2016-07-18T05:15:27.163Z", + "new_balance":"4458.58", + "value":"-9.52" + } + }, + { + "id":"0acb14d6-108e-4ea5-9e80-abed51002cfa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T05:30:32.107Z", + "completed":"2016-07-20T05:30:32.107Z", + "new_balance":"4451.28", + "value":"-7.30" + } + }, + { + "id":"c669f7fe-6e8b-4641-87bb-c9e2273c91df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T16:17:49.821Z", + "completed":"2016-07-20T16:17:49.821Z", + "new_balance":"4444.45", + "value":"-6.83" + } + }, + { + "id":"19e21086-6610-4fa9-abf5-5a8f1643fd80", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T15:52:16.090Z", + "completed":"2016-07-24T15:52:16.090Z", + "new_balance":"4441.77", + "value":"-2.68" + } + }, + { + "id":"fda75b35-2ef4-4609-b183-ca589cb8249b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T05:15:05.308Z", + "completed":"2016-07-29T05:15:05.308Z", + "new_balance":"4676.73", + "value":"234.96" + } + }, + { + "id":"4cb9878a-d52b-4936-be20-2ded79dcd08e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T05:44:06.952Z", + "completed":"2016-07-29T05:44:06.952Z", + "new_balance":"4673.06", + "value":"-3.67" + } + }, + { + "id":"38793d61-ab8e-4cab-b76e-9e251f09cfc5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:52:21.074Z", + "completed":"2016-07-30T05:52:21.074Z", + "new_balance":"4649.82", + "value":"-23.24" + } + }, + { + "id":"cafcc773-43c5-4b9e-86e8-7204ad7e08c7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T02:22:51.010Z", + "completed":"2016-08-01T02:22:51.010Z", + "new_balance":"4642.12", + "value":"-7.70" + } + }, + { + "id":"1b1e2818-35fb-41ac-918a-c4e98c739b19", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T21:58:49.930Z", + "completed":"2016-08-01T21:58:49.930Z", + "new_balance":"4638.68", + "value":"-3.44" + } + }, + { + "id":"14203688-366c-44d6-98a2-7df924644514", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T22:43:38.447Z", + "completed":"2016-08-01T22:43:38.447Z", + "new_balance":"4634.50", + "value":"-4.18" + } + }, + { + "id":"36bf642d-10fa-4bf8-a7c8-fe32fdfffd3c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T23:30:08.796Z", + "completed":"2016-08-01T23:30:08.796Z", + "new_balance":"4631.06", + "value":"-3.44" + } + }, + { + "id":"407ada85-b237-4d9d-851e-a6110bd3ea25", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T07:00:47.935Z", + "completed":"2016-08-03T07:00:47.935Z", + "new_balance":"4630.36", + "value":"-0.70" + } + }, + { + "id":"3bcb62a6-5b0b-4b04-b051-adaa844766cf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T15:42:25.831Z", + "completed":"2016-08-04T15:42:25.831Z", + "new_balance":"4623.06", + "value":"-7.30" + } + }, + { + "id":"59ffe002-5196-4504-8894-a63bf7939794", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:41:11.074Z", + "completed":"2016-08-08T10:41:11.074Z", + "new_balance":"4612.96", + "value":"-10.10" + } + }, + { + "id":"1e297537-a559-4681-ad6a-9a079aa5ec12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T18:16:53.928Z", + "completed":"2016-08-08T18:16:53.928Z", + "new_balance":"4609.16", + "value":"-3.80" + } + }, + { + "id":"47a02e3d-844f-4a8d-a743-d9e6d7f0b728", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T19:38:27.124Z", + "completed":"2016-08-08T19:38:27.124Z", + "new_balance":"4599.70", + "value":"-9.46" + } + }, + { + "id":"16a2bc63-355f-461c-80c9-930d801205c0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T22:12:45.385Z", + "completed":"2016-08-08T22:12:45.385Z", + "new_balance":"4598.58", + "value":"-1.12" + } + }, + { + "id":"e62e7b21-7fc4-4789-b30e-1907cbe2b9c9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T09:37:44.305Z", + "completed":"2016-08-09T09:37:44.305Z", + "new_balance":"4593.99", + "value":"-4.59" + } + }, + { + "id":"b1efbc05-e0be-459e-9fb0-3b9bd3780bc4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T08:51:47.500Z", + "completed":"2016-08-14T08:51:47.500Z", + "new_balance":"4591.59", + "value":"-2.40" + } + }, + { + "id":"84ef5731-3c57-4964-a1ea-5896c7a4f576", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T03:43:18.806Z", + "completed":"2016-08-15T03:43:18.806Z", + "new_balance":"4588.71", + "value":"-2.88" + } + }, + { + "id":"105a044c-b7ad-4b0a-9102-a70f2fb61d3d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T04:16:13.864Z", + "completed":"2016-08-19T04:16:13.864Z", + "new_balance":"4588.19", + "value":"-0.52" + } + }, + { + "id":"583295fe-d913-42e7-aac1-0558976ce5a9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T12:52:20.042Z", + "completed":"2016-08-22T12:52:20.042Z", + "new_balance":"4583.01", + "value":"-5.18" + } + }, + { + "id":"72aa6db0-6e94-4a0b-a590-d9c9084a8a51", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T20:28:21.726Z", + "completed":"2016-08-26T20:28:21.726Z", + "new_balance":"4575.71", + "value":"-7.30" + } + }, + { + "id":"240a54b6-cefd-4e5c-bda0-8a9c9083cc6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T11:10:29.779Z", + "completed":"2016-08-28T11:10:29.779Z", + "new_balance":"4552.47", + "value":"-23.24" + } + }, + { + "id":"a74c65ad-1fff-44b0-acf6-b7d771590343", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T04:50:19.946Z", + "completed":"2016-08-29T04:50:19.946Z", + "new_balance":"4548.80", + "value":"-3.67" + } + }, + { + "id":"5cf4273e-25ee-4f2e-af83-64f88798ae5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T13:34:36.534Z", + "completed":"2016-08-29T13:34:36.534Z", + "new_balance":"4783.76", + "value":"234.96" + } + }, + { + "id":"bdf7fe24-6a25-4575-b75e-ddf99bbc78d4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T13:16:08.492Z", + "completed":"2016-08-30T13:16:08.492Z", + "new_balance":"4760.52", + "value":"-23.24" + } + }, + { + "id":"f8098dc1-a3c1-418e-a3fa-c0780f2fa40d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T09:00:46.334Z", + "completed":"2016-09-01T09:00:46.334Z", + "new_balance":"4757.08", + "value":"-3.44" + } + }, + { + "id":"3265ed28-d5d5-4eac-a7e3-be1351a2a918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T16:40:49.502Z", + "completed":"2016-09-01T16:40:49.502Z", + "new_balance":"4753.64", + "value":"-3.44" + } + }, + { + "id":"69bc0414-d981-4c04-8b58-24777173267c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T21:50:16.894Z", + "completed":"2016-09-01T21:50:16.894Z", + "new_balance":"4749.46", + "value":"-4.18" + } + }, + { + "id":"ac90ec99-5e0e-4be2-8f3c-297c7baf77af", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T22:28:35.815Z", + "completed":"2016-09-01T22:28:35.815Z", + "new_balance":"4741.76", + "value":"-7.70" + } + }, + { + "id":"dbfc6b17-fdab-4da0-ac15-a75539789c0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T19:00:17.741Z", + "completed":"2016-09-09T19:00:17.741Z", + "new_balance":"4735.94", + "value":"-5.82" + } + }, + { + "id":"f6374816-d19f-4fc1-9ddc-f7b032d287aa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T23:41:47.813Z", + "completed":"2016-09-09T23:41:47.813Z", + "new_balance":"4728.68", + "value":"-7.26" + } + }, + { + "id":"8996ab6e-2c3e-4ff8-aab6-f4cac6acc457", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T09:07:19.733Z", + "completed":"2016-09-17T09:07:19.733Z", + "new_balance":"4720.94", + "value":"-7.74" + } + }, + { + "id":"f498ec85-9aa8-418b-b7f8-4c43ff878d75", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T08:43:43.084Z", + "completed":"2016-09-18T08:43:43.084Z", + "new_balance":"4713.20", + "value":"-7.74" + } + }, + { + "id":"1134ecc6-53cd-4dec-bd16-2f92fa687735", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T09:48:25.335Z", + "completed":"2016-09-18T09:48:25.335Z", + "new_balance":"4708.79", + "value":"-4.41" + } + }, + { + "id":"4f1faf45-cd34-4152-a972-03d78d44341f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T20:03:18.234Z", + "completed":"2016-09-18T20:03:18.234Z", + "new_balance":"4704.72", + "value":"-4.07" + } + }, + { + "id":"d43bbc48-e3af-4d82-b371-b413efdc5c26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T23:19:18.224Z", + "completed":"2016-09-18T23:19:18.224Z", + "new_balance":"4704.11", + "value":"-0.61" + } + }, + { + "id":"2523d3ae-5792-49b4-b0ea-305351a2eeb6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T03:21:03.610Z", + "completed":"2016-09-22T03:21:03.610Z", + "new_balance":"4694.10", + "value":"-10.01" + } + }, + { + "id":"3a43bd35-a688-45b2-9f3b-10be4bdef31a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T06:11:46.405Z", + "completed":"2016-09-29T06:11:46.405Z", + "new_balance":"4929.06", + "value":"234.96" + } + }, + { + "id":"8de99472-3a03-45c6-b824-a8ac62202cc0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T21:08:24.372Z", + "completed":"2016-09-29T21:08:24.372Z", + "new_balance":"4925.39", + "value":"-3.67" + } + }, + { + "id":"1beb705b-c4e1-402b-882b-5dbeddc0d0a8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T11:30:08.449Z", + "completed":"2016-09-30T11:30:08.449Z", + "new_balance":"4902.15", + "value":"-23.24" + } + }, + { + "id":"b7d7bdd5-12ea-4405-aea9-b0249a9bb85f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T04:08:40.230Z", + "completed":"2016-10-01T04:08:40.230Z", + "new_balance":"4898.71", + "value":"-3.44" + } + }, + { + "id":"54ad08bd-1641-4ece-ac4d-834497ab1002", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T20:04:16.414Z", + "completed":"2016-10-01T20:04:16.414Z", + "new_balance":"4895.27", + "value":"-3.44" + } + }, + { + "id":"9c9ae4d3-7f61-4548-88d6-71ddc760b167", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T21:03:58.112Z", + "completed":"2016-10-01T21:03:58.112Z", + "new_balance":"4887.57", + "value":"-7.70" + } + }, + { + "id":"7f070a75-b095-41f5-af83-5607aedf8b93", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T21:56:09.666Z", + "completed":"2016-10-01T21:56:09.666Z", + "new_balance":"4883.39", + "value":"-4.18" + } + }, + { + "id":"3351aaf6-8e52-4ea2-a539-ab8d192089b4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T22:51:11.313Z", + "completed":"2016-10-02T22:51:11.313Z", + "new_balance":"4875.83", + "value":"-7.56" + } + }, + { + "id":"188dfc46-6aa8-44b5-9df7-016e98a5b482", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T03:51:25.475Z", + "completed":"2016-10-05T03:51:25.475Z", + "new_balance":"4875.13", + "value":"-0.70" + } + }, + { + "id":"390736be-f3a4-4537-84ef-995aab5993cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T13:04:22.029Z", + "completed":"2016-10-05T13:04:22.029Z", + "new_balance":"4867.83", + "value":"-7.30" + } + }, + { + "id":"b6cce7f3-4b83-4f75-a487-4e44959f2021", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T13:05:16.200Z", + "completed":"2016-10-05T13:05:16.200Z", + "new_balance":"4867.24", + "value":"-0.59" + } + }, + { + "id":"49c70ae3-9bf3-48e5-92d5-29274d30c0fd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:27:05.979Z", + "completed":"2016-10-05T14:27:05.979Z", + "new_balance":"4866.00", + "value":"-1.24" + } + }, + { + "id":"07d28f9c-675d-4e37-8e38-2d98d6676be2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T14:39:20.994Z", + "completed":"2016-10-05T14:39:20.994Z", + "new_balance":"4861.82", + "value":"-4.18" + } + }, + { + "id":"e3f31f95-ef01-4bbc-8bdb-b12195390deb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T17:31:19.270Z", + "completed":"2016-10-05T17:31:19.270Z", + "new_balance":"4856.37", + "value":"-5.45" + } + }, + { + "id":"8d99980a-bac1-4346-a148-702b04f9b003", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:30:25.444Z", + "completed":"2016-10-05T18:30:25.444Z", + "new_balance":"4852.93", + "value":"-3.44" + } + }, + { + "id":"678a0ea0-a830-48df-b37d-aa8e733a52bd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T14:08:51.349Z", + "completed":"2016-10-09T14:08:51.349Z", + "new_balance":"4844.84", + "value":"-8.09" + } + }, + { + "id":"27ea3d0c-a820-4196-9014-e58224234ce3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T16:41:51.964Z", + "completed":"2016-10-11T16:41:51.964Z", + "new_balance":"4838.72", + "value":"-6.12" + } + }, + { + "id":"59198e39-b5e0-44fe-8db1-c9d041d22ef7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T08:31:54.645Z", + "completed":"2016-10-12T08:31:54.645Z", + "new_balance":"4831.42", + "value":"-7.30" + } + }, + { + "id":"a1eab607-279b-40eb-9b0e-6da5dc30ad6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T19:04:48.400Z", + "completed":"2016-10-12T19:04:48.400Z", + "new_balance":"4828.74", + "value":"-2.68" + } + }, + { + "id":"24ad81f8-e6c4-435d-b248-2344d39f14b4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T11:01:58.419Z", + "completed":"2016-10-20T11:01:58.419Z", + "new_balance":"4825.07", + "value":"-3.67" + } + }, + { + "id":"6da51fb3-2f6d-4754-9510-015140769c0d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T11:46:34.954Z", + "completed":"2016-10-29T11:46:34.954Z", + "new_balance":"5060.03", + "value":"234.96" + } + }, + { + "id":"dcff65c7-5d3d-4a4b-9aee-b4c1eea137c2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T17:43:31.659Z", + "completed":"2016-10-30T17:43:31.659Z", + "new_balance":"5036.79", + "value":"-23.24" + } + }, + { + "id":"07d8012e-855a-456a-bf98-1976c69da204", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T02:35:12.530Z", + "completed":"2016-11-02T02:35:12.530Z", + "new_balance":"5032.61", + "value":"-4.18" + } + }, + { + "id":"5793b81f-d974-4896-b880-acdfa4d09199", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T03:38:30.600Z", + "completed":"2016-11-02T03:38:30.600Z", + "new_balance":"5024.91", + "value":"-7.70" + } + }, + { + "id":"e8f63d4e-442f-4f58-84a4-f4b8e49e0bf8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T06:13:32.929Z", + "completed":"2016-11-02T06:13:32.929Z", + "new_balance":"5021.47", + "value":"-3.44" + } + }, + { + "id":"91b1b99e-7a71-44f8-a755-847c2d854937", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T09:03:56.742Z", + "completed":"2016-11-02T09:03:56.742Z", + "new_balance":"5018.03", + "value":"-3.44" + } + }, + { + "id":"04ee600a-081e-4569-ac96-ce8102ef8d9c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T00:45:08.361Z", + "completed":"2016-11-04T00:45:08.361Z", + "new_balance":"5010.73", + "value":"-7.30" + } + }, + { + "id":"0b9d836d-2d52-424d-90fb-d2ea6bff0abd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T16:15:49.241Z", + "completed":"2016-11-04T16:15:49.241Z", + "new_balance":"5010.03", + "value":"-0.70" + } + }, + { + "id":"e513b299-8390-449d-ba5e-8aeec9849314", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T06:23:44.710Z", + "completed":"2016-11-06T06:23:44.710Z", + "new_balance":"5002.59", + "value":"-7.44" + } + }, + { + "id":"85ef8a1a-df66-4d3c-8948-2bc1369786df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T02:30:00.853Z", + "completed":"2016-11-07T02:30:00.853Z", + "new_balance":"4999.88", + "value":"-2.71" + } + }, + { + "id":"82f15ff4-e00f-4269-b2de-0510db577cd9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T15:06:59.088Z", + "completed":"2016-11-07T15:06:59.088Z", + "new_balance":"4992.32", + "value":"-7.56" + } + }, + { + "id":"09b86d89-f6bd-4648-9e43-64610798d23b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T00:47:31.493Z", + "completed":"2016-11-09T00:47:31.493Z", + "new_balance":"4987.73", + "value":"-4.59" + } + }, + { + "id":"db2f7edb-1d51-4e40-afec-7c7c9beddcdb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T03:50:34.279Z", + "completed":"2016-11-09T03:50:34.279Z", + "new_balance":"4986.49", + "value":"-1.24" + } + }, + { + "id":"785bec88-c291-4fb3-8c46-ec3c603a435f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T01:40:49.793Z", + "completed":"2016-11-13T01:40:49.793Z", + "new_balance":"4984.36", + "value":"-2.13" + } + }, + { + "id":"e937450c-20c0-4e8c-b75f-426219eb8312", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T02:43:44.428Z", + "completed":"2016-11-13T02:43:44.428Z", + "new_balance":"4983.66", + "value":"-0.70" + } + }, + { + "id":"ef5a67c9-df73-44db-95c2-0225c1072f02", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T14:21:59.607Z", + "completed":"2016-11-13T14:21:59.607Z", + "new_balance":"4980.95", + "value":"-2.71" + } + }, + { + "id":"e10c728f-45fb-4897-8cb9-f1a67fdfc1e7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T04:12:02.731Z", + "completed":"2016-11-14T04:12:02.731Z", + "new_balance":"4973.65", + "value":"-7.30" + } + }, + { + "id":"a0c6fad0-05aa-46f6-9992-62f0f90f8d97", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T05:33:53.925Z", + "completed":"2016-11-14T05:33:53.925Z", + "new_balance":"4969.19", + "value":"-4.46" + } + }, + { + "id":"11ef2f9d-f6dc-422f-9e56-0ce1b270ca14", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T04:26:38.416Z", + "completed":"2016-11-15T04:26:38.416Z", + "new_balance":"4965.52", + "value":"-3.67" + } + }, + { + "id":"f6716f65-cadd-4cac-be3d-bc1496e28b4b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T02:12:54.395Z", + "completed":"2016-11-30T02:12:54.395Z", + "new_balance":"5200.48", + "value":"234.96" + } + }, + { + "id":"1172cb0e-b04a-45c8-9a86-bb14c3359046", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T09:03:22.642Z", + "completed":"2016-11-30T09:03:22.642Z", + "new_balance":"5177.24", + "value":"-23.24" + } + }, + { + "id":"82ba0e93-8c14-4037-967d-018bee5fc2ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T00:24:24.249Z", + "completed":"2016-12-01T00:24:24.249Z", + "new_balance":"5173.80", + "value":"-3.44" + } + }, + { + "id":"0fe9244c-affc-4f3d-ae76-20ff8aa0d198", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T08:14:32.145Z", + "completed":"2016-12-01T08:14:32.145Z", + "new_balance":"5170.36", + "value":"-3.44" + } + }, + { + "id":"55201722-c876-49e3-8fb1-11dc3d4dd315", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T23:36:11.471Z", + "completed":"2016-12-01T23:36:11.471Z", + "new_balance":"5166.18", + "value":"-4.18" + } + }, + { + "id":"4c223ed7-4b59-4202-92d5-f88c02421ae8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T23:39:21.523Z", + "completed":"2016-12-01T23:39:21.523Z", + "new_balance":"5158.48", + "value":"-7.70" + } + }, + { + "id":"b14a84fc-df70-44e0-baed-638b28706430", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T13:33:06.192Z", + "completed":"2016-12-04T13:33:06.192Z", + "new_balance":"5152.66", + "value":"-5.82" + } + }, + { + "id":"70b5c6da-1dd2-47d9-a62d-af5f468ae1a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T22:01:45.908Z", + "completed":"2016-12-04T22:01:45.908Z", + "new_balance":"5145.40", + "value":"-7.26" + } + }, + { + "id":"72fe74e3-c656-47fe-9e34-ab44309747c3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T01:50:23.591Z", + "completed":"2016-12-11T01:50:23.591Z", + "new_balance":"5137.66", + "value":"-7.74" + } + }, + { + "id":"55d88121-fbe5-49a7-8278-d5b4d978503c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T03:28:07.461Z", + "completed":"2016-12-11T03:28:07.461Z", + "new_balance":"5129.92", + "value":"-7.74" + } + }, + { + "id":"c8431b80-6f63-4d8b-8321-3c2b5dc18b5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T13:59:19.841Z", + "completed":"2016-12-11T13:59:19.841Z", + "new_balance":"5125.51", + "value":"-4.41" + } + }, + { + "id":"84b60f96-f374-4fc5-b0b8-e1595fd417f9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T13:41:32.459Z", + "completed":"2016-12-12T13:41:32.459Z", + "new_balance":"5124.90", + "value":"-0.61" + } + }, + { + "id":"99ef46a4-aece-4e9c-b4b9-f0f0190f2f47", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T20:37:41.963Z", + "completed":"2016-12-12T20:37:41.963Z", + "new_balance":"5120.83", + "value":"-4.07" + } + }, + { + "id":"400c925f-f668-4363-ad7a-0c42c22e7420", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T21:00:08.614Z", + "completed":"2016-12-16T21:00:08.614Z", + "new_balance":"5110.82", + "value":"-10.01" + } + }, + { + "id":"39622658-2ba8-439a-94a2-b22e14f30bbe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T14:27:09.945Z", + "completed":"2016-12-29T14:27:09.945Z", + "new_balance":"5107.15", + "value":"-3.67" + } + }, + { + "id":"4b9ae5be-7d0a-4e24-9a74-b161865bff2f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T12:49:25.518Z", + "completed":"2016-12-30T12:49:25.518Z", + "new_balance":"5083.91", + "value":"-23.24" + } + }, + { + "id":"56b9f5ff-d836-4568-a9e3-c4499eb6adac", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T17:11:39.510Z", + "completed":"2016-12-30T17:11:39.510Z", + "new_balance":"5318.87", + "value":"234.96" + } + }, + { + "id":"f4fa1d34-1d47-41ee-87cb-66ff1ad38771", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T01:58:51.586Z", + "completed":"2017-01-01T01:58:51.586Z", + "new_balance":"5314.69", + "value":"-4.18" + } + }, + { + "id":"8077f410-344b-4311-a979-f19eb31dd164", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T08:45:26.332Z", + "completed":"2017-01-01T08:45:26.332Z", + "new_balance":"5306.99", + "value":"-7.70" + } + }, + { + "id":"c01d0463-4124-432f-ba01-5ba0d49b2566", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:55:28.132Z", + "completed":"2017-01-01T12:55:28.132Z", + "new_balance":"5303.55", + "value":"-3.44" + } + }, + { + "id":"952f2d23-4acd-4690-8609-310722f36ac3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T15:02:39.968Z", + "completed":"2017-01-01T15:02:39.968Z", + "new_balance":"5300.11", + "value":"-3.44" + } + }, + { + "id":"e9291508-2c30-44e9-be27-74d955c9fe41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T07:36:00.843Z", + "completed":"2017-01-05T07:36:00.843Z", + "new_balance":"5292.81", + "value":"-7.30" + } + }, + { + "id":"c9e3e043-dd24-4e71-ab0d-1274e5e198cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T14:48:45.194Z", + "completed":"2017-01-05T14:48:45.194Z", + "new_balance":"5282.77", + "value":"-10.04" + } + }, + { + "id":"19788ec1-1ef3-414e-8a39-ed2b6616ce21", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T09:44:55.250Z", + "completed":"2017-01-08T09:44:55.250Z", + "new_balance":"5281.37", + "value":"-1.40" + } + }, + { + "id":"661b099d-41e1-41bc-8b92-3ed2023a5c69", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T05:29:21.313Z", + "completed":"2017-01-10T05:29:21.313Z", + "new_balance":"5276.71", + "value":"-4.66" + } + }, + { + "id":"6894ebb2-5ddb-48fa-9442-b579587d132c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T18:25:04.126Z", + "completed":"2017-01-11T18:25:04.126Z", + "new_balance":"5271.30", + "value":"-5.41" + } + }, + { + "id":"da127330-1524-49f3-bcbf-d5c442b13972", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T14:29:22.164Z", + "completed":"2017-01-12T14:29:22.164Z", + "new_balance":"5267.86", + "value":"-3.44" + } + }, + { + "id":"4a370e63-5ff3-495a-a564-a7b04643047d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T11:01:48.307Z", + "completed":"2017-01-13T11:01:48.307Z", + "new_balance":"5267.35", + "value":"-0.51" + } + }, + { + "id":"d475c2bf-f0a9-4ccc-b727-e611d138b343", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T16:37:57.765Z", + "completed":"2017-01-13T16:37:57.765Z", + "new_balance":"5266.89", + "value":"-0.46" + } + }, + { + "id":"6e8346bf-24a6-4d8d-8444-cda181c1feb6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T15:39:40.214Z", + "completed":"2017-01-16T15:39:40.214Z", + "new_balance":"5257.37", + "value":"-9.52" + } + }, + { + "id":"3b4e69e3-4d9e-4ff7-ad0f-50c489d4080a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T15:39:45.998Z", + "completed":"2017-01-19T15:39:45.998Z", + "new_balance":"5250.54", + "value":"-6.83" + } + }, + { + "id":"87d94ea6-fb4e-42c2-817c-be3cba07b38f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T22:55:39.330Z", + "completed":"2017-01-19T22:55:39.330Z", + "new_balance":"5243.24", + "value":"-7.30" + } + }, + { + "id":"3baa38a1-182c-44ec-9faa-72923b48cbc9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T14:20:01.952Z", + "completed":"2017-01-24T14:20:01.952Z", + "new_balance":"5240.56", + "value":"-2.68" + } + }, + { + "id":"f248a097-46d5-44ab-aeff-42ed1147751f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T10:47:44.132Z", + "completed":"2017-01-27T10:47:44.132Z", + "new_balance":"5475.52", + "value":"234.96" + } + }, + { + "id":"e856048e-3508-4c59-bd9b-179a4e216aad", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T15:35:34.327Z", + "completed":"2017-01-27T15:35:34.327Z", + "new_balance":"5471.85", + "value":"-3.67" + } + }, + { + "id":"9c437133-5904-4a0d-931a-4ec38b3487fe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T05:57:06.155Z", + "completed":"2017-01-31T05:57:06.155Z", + "new_balance":"5448.61", + "value":"-23.24" + } + }, + { + "id":"bbf6d283-2059-43c8-a3ec-c1098c307ce8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T02:50:15.410Z", + "completed":"2017-02-01T02:50:15.410Z", + "new_balance":"5445.17", + "value":"-3.44" + } + }, + { + "id":"a200c78b-4d34-42b9-b343-e51dde254725", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T16:31:58.332Z", + "completed":"2017-02-01T16:31:58.332Z", + "new_balance":"5440.99", + "value":"-4.18" + } + }, + { + "id":"23f988d9-f263-48ed-9932-8f9f2e65706c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T16:52:05.792Z", + "completed":"2017-02-01T16:52:05.792Z", + "new_balance":"5437.55", + "value":"-3.44" + } + }, + { + "id":"c5156283-144c-4c31-90a4-bee4cb592192", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T21:53:38.099Z", + "completed":"2017-02-01T21:53:38.099Z", + "new_balance":"5429.85", + "value":"-7.70" + } + }, + { + "id":"91c13ea0-bd0d-46eb-996b-b4a40b031821", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T07:25:21.845Z", + "completed":"2017-02-03T07:25:21.845Z", + "new_balance":"5429.15", + "value":"-0.70" + } + }, + { + "id":"8f71e913-e18d-4694-bddc-b15be3e1d5ee", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T18:23:59.330Z", + "completed":"2017-02-04T18:23:59.330Z", + "new_balance":"5421.85", + "value":"-7.30" + } + }, + { + "id":"7fb33046-8115-4efd-9543-517675486b47", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T08:08:34.349Z", + "completed":"2017-02-06T08:08:34.349Z", + "new_balance":"5412.39", + "value":"-9.46" + } + }, + { + "id":"70c923e4-787d-4ecd-bfdd-bdf55fac14d1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T10:09:25.221Z", + "completed":"2017-02-06T10:09:25.221Z", + "new_balance":"5402.29", + "value":"-10.10" + } + }, + { + "id":"d5a946f1-3a19-4e26-96ad-5e463733a9dc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T00:13:24.908Z", + "completed":"2017-02-07T00:13:24.908Z", + "new_balance":"5398.49", + "value":"-3.80" + } + }, + { + "id":"343f4b56-93e7-4196-8731-f8af6d76126c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T03:45:55.375Z", + "completed":"2017-02-08T03:45:55.375Z", + "new_balance":"5397.37", + "value":"-1.12" + } + }, + { + "id":"df501dce-80f1-4fb9-819c-a89626f7bb5f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T23:45:35.737Z", + "completed":"2017-02-09T23:45:35.737Z", + "new_balance":"5392.78", + "value":"-4.59" + } + }, + { + "id":"7331e9be-2a5f-45c6-abfb-dbf5dea11371", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T07:48:02.804Z", + "completed":"2017-02-11T07:48:02.804Z", + "new_balance":"5390.38", + "value":"-2.40" + } + }, + { + "id":"9f014943-4d0e-4292-b0a1-7a1a2197449f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T09:58:15.707Z", + "completed":"2017-02-13T09:58:15.707Z", + "new_balance":"5387.50", + "value":"-2.88" + } + }, + { + "id":"8fc05827-e545-4885-a0a4-eeaf6a6819a9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T20:44:25.664Z", + "completed":"2017-02-17T20:44:25.664Z", + "new_balance":"5386.98", + "value":"-0.52" + } + }, + { + "id":"450b380c-c699-478e-8d69-a41e32bd2e41", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T05:31:06.738Z", + "completed":"2017-02-19T05:31:06.738Z", + "new_balance":"5381.80", + "value":"-5.18" + } + }, + { + "id":"11585120-fc46-4b39-992d-9b1cd31c4d4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T12:54:41.616Z", + "completed":"2017-02-21T12:54:41.616Z", + "new_balance":"5374.50", + "value":"-7.30" + } + }, + { + "id":"a0083c17-37dd-4ac9-80d7-e2fcae17a1e2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T02:41:06.681Z", + "completed":"2017-02-24T02:41:06.681Z", + "new_balance":"5370.83", + "value":"-3.67" + } + }, + { + "id":"e2b54f1a-a5ae-46ce-9c4f-2e58da3229cd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T07:01:04.764Z", + "completed":"2017-02-26T07:01:04.764Z", + "new_balance":"5605.79", + "value":"234.96" + } + }, + { + "id":"1e10edaf-8fc6-4ba6-a052-65c1666b4d76", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T01:50:13.885Z", + "completed":"2017-03-01T01:50:13.885Z", + "new_balance":"5601.61", + "value":"-4.18" + } + }, + { + "id":"183cb536-501e-417d-bef8-8d699ebfc995", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T06:02:22.167Z", + "completed":"2017-03-01T06:02:22.167Z", + "new_balance":"5598.17", + "value":"-3.44" + } + }, + { + "id":"ec590026-9232-4367-8d17-3dd8be47b572", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T10:26:19.314Z", + "completed":"2017-03-01T10:26:19.314Z", + "new_balance":"5590.47", + "value":"-7.70" + } + }, + { + "id":"0b784734-b848-49ca-8994-11980ef81054", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T19:40:46.630Z", + "completed":"2017-03-01T19:40:46.630Z", + "new_balance":"5587.03", + "value":"-3.44" + } + }, + { + "id":"5a67658a-260c-4bdb-b527-180c12814fc7", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T18:44:36.116Z", + "completed":"2017-03-09T18:44:36.116Z", + "new_balance":"5581.21", + "value":"-5.82" + } + }, + { + "id":"8f5b59cf-71ae-4526-a2b2-0e5ecfb3f03d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T20:41:34.741Z", + "completed":"2017-03-09T20:41:34.741Z", + "new_balance":"5573.95", + "value":"-7.26" + } + }, + { + "id":"1836ec53-c243-4d8a-8a97-c99f0a366962", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T03:55:20.048Z", + "completed":"2017-03-17T03:55:20.048Z", + "new_balance":"5566.21", + "value":"-7.74" + } + }, + { + "id":"ca98597e-8298-43d1-aff8-a442d4c64d12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:39:03.045Z", + "completed":"2017-03-18T14:39:03.045Z", + "new_balance":"5558.47", + "value":"-7.74" + } + }, + { + "id":"74057fd8-e153-48e0-9c3f-35103e8bb22f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:40:25.120Z", + "completed":"2017-03-18T14:40:25.120Z", + "new_balance":"5554.06", + "value":"-4.41" + } + }, + { + "id":"975cfa97-61d9-4cab-9454-47daa5f0eba4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T15:12:35.874Z", + "completed":"2017-03-18T15:12:35.874Z", + "new_balance":"5553.45", + "value":"-0.61" + } + }, + { + "id":"f69ba89d-8ab0-4ab7-8963-e1baaf971e89", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T23:37:48.104Z", + "completed":"2017-03-18T23:37:48.104Z", + "new_balance":"5549.38", + "value":"-4.07" + } + }, + { + "id":"efd9405e-080d-49fb-858d-506de42aa7db", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T01:49:56.883Z", + "completed":"2017-03-22T01:49:56.883Z", + "new_balance":"5539.37", + "value":"-10.01" + } + }, + { + "id":"1ee38e06-81e3-47c6-a07f-5a2779984350", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T03:51:03.610Z", + "completed":"2017-03-29T03:51:03.610Z", + "new_balance":"5774.33", + "value":"234.96" + } + }, + { + "id":"ad06b114-5b5d-41f7-baa4-bae92a66559f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T15:54:06.517Z", + "completed":"2017-03-29T15:54:06.517Z", + "new_balance":"5770.66", + "value":"-3.67" + } + }, + { + "id":"850687f9-d6a6-42dd-a4da-0e3be30a3df9", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T13:56:07.546Z", + "completed":"2017-03-31T13:56:07.546Z", + "new_balance":"5747.42", + "value":"-23.24" + } + }, + { + "id":"abcf64d3-727c-4292-b3f7-b89d80dcc8f1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T00:42:04.251Z", + "completed":"2017-04-01T00:42:04.251Z", + "new_balance":"5743.98", + "value":"-3.44" + } + }, + { + "id":"b1f81e55-d3fe-4cdd-9b1b-1e32fdc8c100", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T06:10:37.602Z", + "completed":"2017-04-01T06:10:37.602Z", + "new_balance":"5736.28", + "value":"-7.70" + } + }, + { + "id":"5f1807e2-52fd-4298-920f-b3d297e0fb74", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T10:45:08.755Z", + "completed":"2017-04-01T10:45:08.755Z", + "new_balance":"5732.84", + "value":"-3.44" + } + }, + { + "id":"3b7f9093-0fed-4541-9052-3e477376da9b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T14:49:17.024Z", + "completed":"2017-04-01T14:49:17.024Z", + "new_balance":"5728.66", + "value":"-4.18" + } + }, + { + "id":"afa6680e-10c3-4f27-a81e-3437b10a8f24", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T05:41:25.611Z", + "completed":"2017-04-02T05:41:25.611Z", + "new_balance":"5721.10", + "value":"-7.56" + } + }, + { + "id":"d83de3d5-d3ed-4128-9edd-361c9bfd2704", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T03:33:33.207Z", + "completed":"2017-04-05T03:33:33.207Z", + "new_balance":"5713.80", + "value":"-7.30" + } + }, + { + "id":"81eaac41-dc79-4430-a7ef-4e284b38b429", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T05:27:58.539Z", + "completed":"2017-04-05T05:27:58.539Z", + "new_balance":"5708.35", + "value":"-5.45" + } + }, + { + "id":"777da1d4-b168-42af-9b2d-6bf34f72632c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T06:57:10.800Z", + "completed":"2017-04-05T06:57:10.800Z", + "new_balance":"5707.76", + "value":"-0.59" + } + }, + { + "id":"4ff296b0-1272-472e-8e60-4124b15bfccc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T08:06:59.011Z", + "completed":"2017-04-05T08:06:59.011Z", + "new_balance":"5706.52", + "value":"-1.24" + } + }, + { + "id":"9db1a0c2-dfdf-4253-b4f8-d287eb9a6a53", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T14:17:07.792Z", + "completed":"2017-04-05T14:17:07.792Z", + "new_balance":"5703.08", + "value":"-3.44" + } + }, + { + "id":"bf91d572-1fe0-49d6-908f-a00a14305130", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T19:55:07.302Z", + "completed":"2017-04-05T19:55:07.302Z", + "new_balance":"5698.90", + "value":"-4.18" + } + }, + { + "id":"883a216f-685d-48de-b157-a026fea11830", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T22:52:13.329Z", + "completed":"2017-04-05T22:52:13.329Z", + "new_balance":"5698.20", + "value":"-0.70" + } + }, + { + "id":"baad0069-dc60-44e7-96ac-c8d0d5c33c0e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T12:21:21.235Z", + "completed":"2017-04-08T12:21:21.235Z", + "new_balance":"5690.11", + "value":"-8.09" + } + }, + { + "id":"e6e99849-0aff-40dc-9890-230a9aa9d231", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T14:57:11.167Z", + "completed":"2017-04-10T14:57:11.167Z", + "new_balance":"5683.99", + "value":"-6.12" + } + }, + { + "id":"ac8deb43-a3a6-484e-bee4-de591bc81c43", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T04:21:11.364Z", + "completed":"2017-04-11T04:21:11.364Z", + "new_balance":"5681.31", + "value":"-2.68" + } + }, + { + "id":"a6b8d4c2-8396-45c0-9d4c-b8cbb90269e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T18:47:53.598Z", + "completed":"2017-04-11T18:47:53.598Z", + "new_balance":"5674.01", + "value":"-7.30" + } + }, + { + "id":"e14f05fa-a2f7-40f2-aa91-7353d9eb7637", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T06:14:22.599Z", + "completed":"2017-04-13T06:14:22.599Z", + "new_balance":"5670.34", + "value":"-3.67" + } + }, + { + "id":"2f5ffe96-d6ec-4741-a315-68b7ae6172f2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T07:19:48.442Z", + "completed":"2017-04-18T07:19:48.442Z", + "new_balance":"5905.30", + "value":"234.96" + } + }, + { + "id":"c785b7d5-7927-4b24-a751-b723723998f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T10:08:08.080Z", + "completed":"2017-04-25T10:08:08.080Z", + "new_balance":"5882.06", + "value":"-23.24" + } + }, + { + "id":"eee1f763-cc52-4c85-9a19-ed5462c08c6f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T01:27:21.021Z", + "completed":"2017-05-02T01:27:21.021Z", + "new_balance":"5877.88", + "value":"-4.18" + } + }, + { + "id":"8efc75f2-2929-48ef-aeed-ccb59657eeda", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:38:15.071Z", + "completed":"2017-05-02T10:38:15.071Z", + "new_balance":"5874.44", + "value":"-3.44" + } + }, + { + "id":"e6b4f955-9adb-4078-98c3-5bcde10d7466", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T12:24:54.364Z", + "completed":"2017-05-02T12:24:54.364Z", + "new_balance":"5866.74", + "value":"-7.70" + } + }, + { + "id":"a5b641cf-38c5-4670-ad24-f31e3291eef3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T13:02:18.445Z", + "completed":"2017-05-02T13:02:18.445Z", + "new_balance":"5863.30", + "value":"-3.44" + } + }, + { + "id":"0dc9c6f6-3c10-4eae-932a-498500c42018", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T03:14:24.490Z", + "completed":"2017-05-04T03:14:24.490Z", + "new_balance":"5862.60", + "value":"-0.70" + } + }, + { + "id":"cae037e2-0973-4f93-8770-05b4260638be", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T05:18:41.792Z", + "completed":"2017-05-04T05:18:41.792Z", + "new_balance":"5855.30", + "value":"-7.30" + } + }, + { + "id":"869a64a4-dd2f-4828-ae63-cd023aacf513", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T15:40:03.757Z", + "completed":"2017-05-06T15:40:03.757Z", + "new_balance":"5847.86", + "value":"-7.44" + } + }, + { + "id":"ba8581c7-8d80-4e06-a8f1-506d36caacf8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T02:46:11.086Z", + "completed":"2017-05-07T02:46:11.086Z", + "new_balance":"5845.15", + "value":"-2.71" + } + }, + { + "id":"8c37dba0-82aa-4a05-9e75-2fedc2e5dccb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T21:15:40.178Z", + "completed":"2017-05-07T21:15:40.178Z", + "new_balance":"5837.59", + "value":"-7.56" + } + }, + { + "id":"753e1ced-ca7f-469a-b72c-b650f502ed4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T06:47:41.426Z", + "completed":"2017-05-09T06:47:41.426Z", + "new_balance":"5833.00", + "value":"-4.59" + } + }, + { + "id":"2c33024c-c940-4839-9e47-330493f4efb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T17:28:43.462Z", + "completed":"2017-05-09T17:28:43.462Z", + "new_balance":"5831.76", + "value":"-1.24" + } + }, + { + "id":"5ad94844-d974-40ac-81ee-32c497525d4e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T01:39:19.759Z", + "completed":"2017-05-13T01:39:19.759Z", + "new_balance":"5829.63", + "value":"-2.13" + } + }, + { + "id":"fbcd747c-8dc6-4076-a65e-fea6b148e48a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T03:26:18.363Z", + "completed":"2017-05-13T03:26:18.363Z", + "new_balance":"5828.93", + "value":"-0.70" + } + }, + { + "id":"18324f55-1d75-4580-ac38-d7941466f13f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T03:26:36.374Z", + "completed":"2017-05-13T03:26:36.374Z", + "new_balance":"5826.22", + "value":"-2.71" + } + }, + { + "id":"bf2a10b5-6f3c-4938-b049-ebd72e9020cc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T00:47:58.419Z", + "completed":"2017-05-14T00:47:58.419Z", + "new_balance":"5821.76", + "value":"-4.46" + } + }, + { + "id":"6dd73168-5893-4be9-b138-b0fbaf1ef52c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T14:47:58.533Z", + "completed":"2017-05-14T14:47:58.533Z", + "new_balance":"5814.46", + "value":"-7.30" + } + }, + { + "id":"e05b66b1-f83d-4bba-9b26-25c5efaa6593", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T14:05:22.584Z", + "completed":"2017-05-15T14:05:22.584Z", + "new_balance":"5810.79", + "value":"-3.67" + } + }, + { + "id":"9c065a2d-b0b4-4624-b882-d1bedc67d516", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T15:09:21.926Z", + "completed":"2017-05-30T15:09:21.926Z", + "new_balance":"6045.75", + "value":"234.96" + } + }, + { + "id":"91d50d4a-7763-4f49-89b3-a2cd1643f6f2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T20:41:49.384Z", + "completed":"2017-05-30T20:41:49.384Z", + "new_balance":"6022.51", + "value":"-23.24" + } + }, + { + "id":"ef52f9aa-d3d8-44c8-948b-19f839cce0e1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T07:56:38.113Z", + "completed":"2017-06-01T07:56:38.113Z", + "new_balance":"6019.07", + "value":"-3.44" + } + }, + { + "id":"61b60338-9136-40cc-a3e0-fec5faef5994", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T16:43:33.212Z", + "completed":"2017-06-01T16:43:33.212Z", + "new_balance":"6014.89", + "value":"-4.18" + } + }, + { + "id":"b269d7f5-1b90-49a7-8ad3-ddfddec169b5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T19:45:55.154Z", + "completed":"2017-06-01T19:45:55.154Z", + "new_balance":"6011.45", + "value":"-3.44" + } + }, + { + "id":"6ca33b7c-b876-4fbe-9306-19f4b0849878", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T22:34:32.509Z", + "completed":"2017-06-01T22:34:32.509Z", + "new_balance":"6003.75", + "value":"-7.70" + } + }, + { + "id":"b7a03355-c007-482e-ac1f-1f08989a2514", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T02:03:17.439Z", + "completed":"2017-06-04T02:03:17.439Z", + "new_balance":"5996.49", + "value":"-7.26" + } + }, + { + "id":"8bb926c0-3bb1-4b67-8cb9-50ee74839aef", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T19:47:13.747Z", + "completed":"2017-06-04T19:47:13.747Z", + "new_balance":"5990.67", + "value":"-5.82" + } + }, + { + "id":"06842773-c3e3-47de-9f57-3eedcabe454b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T03:24:02.160Z", + "completed":"2017-06-11T03:24:02.160Z", + "new_balance":"5982.93", + "value":"-7.74" + } + }, + { + "id":"73044575-c403-470c-ab59-a7333d1c5402", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T06:23:44.312Z", + "completed":"2017-06-11T06:23:44.312Z", + "new_balance":"5978.52", + "value":"-4.41" + } + }, + { + "id":"ba2307b2-76bc-4748-8458-34250c049ccf", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T13:45:50.215Z", + "completed":"2017-06-11T13:45:50.215Z", + "new_balance":"5970.78", + "value":"-7.74" + } + }, + { + "id":"03d963b1-33cb-4707-9c05-2b4b8a36eb67", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T11:11:38.006Z", + "completed":"2017-06-12T11:11:38.006Z", + "new_balance":"5966.71", + "value":"-4.07" + } + }, + { + "id":"f9f247ad-884c-4173-b48d-38b4505a44f6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T13:13:00.860Z", + "completed":"2017-06-12T13:13:00.860Z", + "new_balance":"5966.10", + "value":"-0.61" + } + }, + { + "id":"d8472591-2db3-4b06-af18-d9c15f6a81e3", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T07:37:56.068Z", + "completed":"2017-06-16T07:37:56.068Z", + "new_balance":"5956.09", + "value":"-10.01" + } + }, + { + "id":"a39d1386-8972-41b3-aa44-cda97fc5f41d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T02:25:19.076Z", + "completed":"2017-06-29T02:25:19.076Z", + "new_balance":"5952.42", + "value":"-3.67" + } + }, + { + "id":"37efdb52-9df6-4d50-944f-f226662626b2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T16:09:23.341Z", + "completed":"2017-06-30T16:09:23.341Z", + "new_balance":"6187.38", + "value":"234.96" + } + }, + { + "id":"df525ceb-2823-4d3e-b36a-6a80de70d6e6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T18:23:01.861Z", + "completed":"2017-06-30T18:23:01.861Z", + "new_balance":"6164.14", + "value":"-23.24" + } + }, + { + "id":"aad5a6f1-2ad9-45ff-a82b-c1b84987dcd1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T00:50:21.777Z", + "completed":"2017-07-01T00:50:21.777Z", + "new_balance":"6160.70", + "value":"-3.44" + } + }, + { + "id":"25d78082-4357-4c42-a437-f49bcde6bd2c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T04:57:01.449Z", + "completed":"2017-07-01T04:57:01.449Z", + "new_balance":"6157.26", + "value":"-3.44" + } + }, + { + "id":"e9a78915-6d48-44b3-a1ac-4299c3c6491a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T13:16:37.456Z", + "completed":"2017-07-01T13:16:37.456Z", + "new_balance":"6153.08", + "value":"-4.18" + } + }, + { + "id":"3ff4848c-4f47-460a-99df-54edd81de1b6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T23:57:21.865Z", + "completed":"2017-07-01T23:57:21.865Z", + "new_balance":"6145.38", + "value":"-7.70" + } + }, + { + "id":"ec3f40d6-27c6-4560-a16e-d5b8f5798231", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T07:23:49.644Z", + "completed":"2017-07-05T07:23:49.644Z", + "new_balance":"6135.34", + "value":"-10.04" + } + }, + { + "id":"13435156-75d9-4e58-9163-7ac4624d252a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T13:09:48.439Z", + "completed":"2017-07-05T13:09:48.439Z", + "new_balance":"6128.04", + "value":"-7.30" + } + }, + { + "id":"c92d1460-ae05-43ca-8df6-7ab0faec7186", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T22:02:02.643Z", + "completed":"2017-07-08T22:02:02.643Z", + "new_balance":"6126.64", + "value":"-1.40" + } + }, + { + "id":"f373061f-7b48-4a87-a881-216d1365260d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T19:10:30.061Z", + "completed":"2017-07-10T19:10:30.061Z", + "new_balance":"6121.98", + "value":"-4.66" + } + }, + { + "id":"12c09d53-4993-485e-a6e5-bbddd13ad22d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T10:41:29.205Z", + "completed":"2017-07-12T10:41:29.205Z", + "new_balance":"6118.54", + "value":"-3.44" + } + }, + { + "id":"b2b22808-ce0c-48c4-b043-deba45a655da", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T23:41:36.557Z", + "completed":"2017-07-12T23:41:36.557Z", + "new_balance":"6113.13", + "value":"-5.41" + } + }, + { + "id":"f9a80213-21bd-4b28-b71c-0c1848cbfc1a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T19:42:04.205Z", + "completed":"2017-07-13T19:42:04.205Z", + "new_balance":"6112.67", + "value":"-0.46" + } + }, + { + "id":"61871a0e-9bb0-463b-9f99-9b3841c17c05", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T19:45:26.737Z", + "completed":"2017-07-13T19:45:26.737Z", + "new_balance":"6112.16", + "value":"-0.51" + } + }, + { + "id":"1bae2572-b79f-48a6-9a5a-dbeb1d785eba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T07:27:31.279Z", + "completed":"2017-07-18T07:27:31.279Z", + "new_balance":"6102.64", + "value":"-9.52" + } + }, + { + "id":"76fb9c9e-a9c9-41bc-8b6f-297cac581d5d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T13:27:27.446Z", + "completed":"2017-07-20T13:27:27.446Z", + "new_balance":"6095.81", + "value":"-6.83" + } + }, + { + "id":"71a6cd29-cacf-403a-9586-1fc36d66fe22", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T21:13:14.472Z", + "completed":"2017-07-20T21:13:14.472Z", + "new_balance":"6088.51", + "value":"-7.30" + } + }, + { + "id":"e8c0f760-4fcd-4876-87cf-13105d42d829", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T12:35:46.862Z", + "completed":"2017-07-24T12:35:46.862Z", + "new_balance":"6085.83", + "value":"-2.68" + } + }, + { + "id":"df9e7cdb-a666-42d8-bf66-f2995242b1b5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T03:22:04.725Z", + "completed":"2017-07-29T03:22:04.725Z", + "new_balance":"6320.79", + "value":"234.96" + } + }, + { + "id":"fbfa5ab5-5b4d-4be5-90ba-6c8d2c132cd8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T23:53:38.777Z", + "completed":"2017-07-29T23:53:38.777Z", + "new_balance":"6317.12", + "value":"-3.67" + } + }, + { + "id":"13ddf91a-0e3e-4e91-a9b5-a2ef7e95da30", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T12:50:07.995Z", + "completed":"2017-07-30T12:50:07.995Z", + "new_balance":"6293.88", + "value":"-23.24" + } + }, + { + "id":"230ab5d9-87a5-4b9e-8aa5-de048c2d0846", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T03:30:25.129Z", + "completed":"2017-08-01T03:30:25.129Z", + "new_balance":"6290.44", + "value":"-3.44" + } + }, + { + "id":"9eabe9e4-ee7a-4095-91b6-818c056be29f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:10:06.521Z", + "completed":"2017-08-01T09:10:06.521Z", + "new_balance":"6286.26", + "value":"-4.18" + } + }, + { + "id":"8a558340-1c1e-44ea-ad75-d1a694993b72", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T10:59:33.844Z", + "completed":"2017-08-01T10:59:33.844Z", + "new_balance":"6278.56", + "value":"-7.70" + } + }, + { + "id":"f725c9fd-1a81-4710-b291-d8b667a43766", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T14:12:26.135Z", + "completed":"2017-08-01T14:12:26.135Z", + "new_balance":"6275.12", + "value":"-3.44" + } + }, + { + "id":"53855b02-7c48-429a-a5f7-9aacc3e3da9b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T11:56:26.585Z", + "completed":"2017-08-03T11:56:26.585Z", + "new_balance":"6274.42", + "value":"-0.70" + } + }, + { + "id":"5545caf4-e62e-4ab2-899d-63a7313fb0d2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T18:19:49.364Z", + "completed":"2017-08-04T18:19:49.364Z", + "new_balance":"6267.12", + "value":"-7.30" + } + }, + { + "id":"094977b8-3f9d-45c4-9341-71b948dceded", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T06:37:57.928Z", + "completed":"2017-08-08T06:37:57.928Z", + "new_balance":"6257.66", + "value":"-9.46" + } + }, + { + "id":"0f6b1ffb-147d-49bf-9ea9-1591921bfffa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T08:13:19.061Z", + "completed":"2017-08-08T08:13:19.061Z", + "new_balance":"6253.86", + "value":"-3.80" + } + }, + { + "id":"cdd81a6a-26dd-466d-8cd7-730a02bdb527", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T09:17:29.413Z", + "completed":"2017-08-08T09:17:29.413Z", + "new_balance":"6243.76", + "value":"-10.10" + } + }, + { + "id":"f8b83f75-d5d7-4612-bb9d-50990ec178df", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T09:38:42.779Z", + "completed":"2017-08-08T09:38:42.779Z", + "new_balance":"6242.64", + "value":"-1.12" + } + }, + { + "id":"b909fdf8-cd75-49e8-8a26-74794e9eacb5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T16:02:48.960Z", + "completed":"2017-08-09T16:02:48.960Z", + "new_balance":"6238.05", + "value":"-4.59" + } + }, + { + "id":"6c6a4155-d435-4a9e-b328-ea8060214476", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T20:31:31.056Z", + "completed":"2017-08-14T20:31:31.056Z", + "new_balance":"6235.65", + "value":"-2.40" + } + }, + { + "id":"3c31a7ca-ecec-4efa-a365-f5aae3753df2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T18:23:57.302Z", + "completed":"2017-08-15T18:23:57.302Z", + "new_balance":"6232.77", + "value":"-2.88" + } + }, + { + "id":"09d6cfb6-de9e-43d2-aaaa-761106b22052", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T22:26:47.330Z", + "completed":"2017-08-19T22:26:47.330Z", + "new_balance":"6232.25", + "value":"-0.52" + } + }, + { + "id":"b56dfe1c-b112-4b15-97af-3d65dcd363fc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T17:11:18.056Z", + "completed":"2017-08-22T17:11:18.056Z", + "new_balance":"6227.07", + "value":"-5.18" + } + }, + { + "id":"c28323f9-915d-4d98-a993-ea0f0ea07eba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T21:01:39.731Z", + "completed":"2017-08-26T21:01:39.731Z", + "new_balance":"6219.77", + "value":"-7.30" + } + }, + { + "id":"165e9d9c-94a6-4f80-b65b-bb3dc37e20c5", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T22:43:12.050Z", + "completed":"2017-08-28T22:43:12.050Z", + "new_balance":"6196.53", + "value":"-23.24" + } + }, + { + "id":"0a2b4f91-0e11-4123-8740-e90ef34d3a15", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T08:41:38.594Z", + "completed":"2017-08-29T08:41:38.594Z", + "new_balance":"6192.86", + "value":"-3.67" + } + }, + { + "id":"870c6460-5383-4658-9720-96b2a98ae759", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T11:55:12.898Z", + "completed":"2017-08-29T11:55:12.898Z", + "new_balance":"6427.82", + "value":"234.96" + } + }, + { + "id":"748f87a0-c665-4e0b-a5e6-0d03eaf01159", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T06:06:28.656Z", + "completed":"2017-08-30T06:06:28.656Z", + "new_balance":"6404.58", + "value":"-23.24" + } + }, + { + "id":"19541561-acfe-4aec-8705-a6b299d6260c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T00:39:10.916Z", + "completed":"2017-09-01T00:39:10.916Z", + "new_balance":"6401.14", + "value":"-3.44" + } + }, + { + "id":"b25f761e-83ed-481c-b78e-8f0fe72a5a53", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T01:58:37.941Z", + "completed":"2017-09-01T01:58:37.941Z", + "new_balance":"6397.70", + "value":"-3.44" + } + }, + { + "id":"e5aef2a7-1667-4812-97fc-e14069434f7f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T08:34:24.996Z", + "completed":"2017-09-01T08:34:24.996Z", + "new_balance":"6393.52", + "value":"-4.18" + } + }, + { + "id":"a724832f-e9e9-47ab-ace3-6ba6e902ea14", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T21:47:25.613Z", + "completed":"2017-09-01T21:47:25.613Z", + "new_balance":"6385.82", + "value":"-7.70" + } + }, + { + "id":"52825dd9-44b4-4a25-970d-1ab3d3bb8d27", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T10:00:32.892Z", + "completed":"2017-09-09T10:00:32.892Z", + "new_balance":"6380.00", + "value":"-5.82" + } + }, + { + "id":"43e8900e-ecc0-4800-b222-9c7ad68d6254", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T18:28:32.761Z", + "completed":"2017-09-09T18:28:32.761Z", + "new_balance":"6372.74", + "value":"-7.26" + } + }, + { + "id":"5c11d2fe-8faa-4fab-92fb-22d7fc6bbfed", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T22:14:10.460Z", + "completed":"2017-09-17T22:14:10.460Z", + "new_balance":"6365.00", + "value":"-7.74" + } + }, + { + "id":"34aea4e2-0bc9-4d0d-8387-3c143490499a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T18:49:35.366Z", + "completed":"2017-09-18T18:49:35.366Z", + "new_balance":"6360.59", + "value":"-4.41" + } + }, + { + "id":"25803885-f9f4-4ec0-9530-fcd1f67e5acc", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T21:19:07.087Z", + "completed":"2017-09-18T21:19:07.087Z", + "new_balance":"6352.85", + "value":"-7.74" + } + }, + { + "id":"780ef568-7039-4b65-b624-d024f7d65858", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T21:28:48.407Z", + "completed":"2017-09-18T21:28:48.407Z", + "new_balance":"6348.78", + "value":"-4.07" + } + }, + { + "id":"cd79baea-4cbb-4896-bca3-1f396b9c9f2d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T23:59:06.047Z", + "completed":"2017-09-18T23:59:06.047Z", + "new_balance":"6348.17", + "value":"-0.61" + } + }, + { + "id":"a96acf1f-e949-427c-bbe3-43f5cc66d504", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T08:51:05.479Z", + "completed":"2017-09-22T08:51:05.479Z", + "new_balance":"6338.16", + "value":"-10.01" + } + }, + { + "id":"2fa29e0f-9973-49e5-b3bd-e2630c0577aa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T00:35:48.698Z", + "completed":"2017-09-29T00:35:48.698Z", + "new_balance":"6334.49", + "value":"-3.67" + } + }, + { + "id":"e0053389-2a30-4211-a29f-fe0f96ece6ba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T07:45:45.799Z", + "completed":"2017-09-29T07:45:45.799Z", + "new_balance":"6569.45", + "value":"234.96" + } + }, + { + "id":"163e66d8-6313-4b87-91bd-f55c57437cfe", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T10:05:37.666Z", + "completed":"2017-09-30T10:05:37.666Z", + "new_balance":"6546.21", + "value":"-23.24" + } + }, + { + "id":"0e7219e3-2b33-433c-9b1e-1b562fbe1f1e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T00:54:43.990Z", + "completed":"2017-10-01T00:54:43.990Z", + "new_balance":"6542.77", + "value":"-3.44" + } + }, + { + "id":"e4d56d14-0897-4fc6-bef1-7fc1218c4a8b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T02:37:36.166Z", + "completed":"2017-10-01T02:37:36.166Z", + "new_balance":"6535.07", + "value":"-7.70" + } + }, + { + "id":"cbaf4ae4-a011-47a0-bdfd-2a276adbb7ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T02:41:39.841Z", + "completed":"2017-10-01T02:41:39.841Z", + "new_balance":"6531.63", + "value":"-3.44" + } + }, + { + "id":"ecd4c3a1-4952-4f4f-803c-b151c0a5821a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T05:30:39.282Z", + "completed":"2017-10-01T05:30:39.282Z", + "new_balance":"6527.45", + "value":"-4.18" + } + }, + { + "id":"9157f926-f2c5-4a7e-a9bf-64b60c468a77", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T13:54:04.890Z", + "completed":"2017-10-02T13:54:04.890Z", + "new_balance":"6519.89", + "value":"-7.56" + } + }, + { + "id":"c6ac0c1a-d60b-41ff-8351-f976f678045d", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T06:38:15.225Z", + "completed":"2017-10-05T06:38:15.225Z", + "new_balance":"6519.19", + "value":"-0.70" + } + }, + { + "id":"94d92813-0d29-4488-91fb-ebfbe64bcbb2", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T10:24:38.823Z", + "completed":"2017-10-05T10:24:38.823Z", + "new_balance":"6517.95", + "value":"-1.24" + } + }, + { + "id":"95911a1d-022b-4ff5-a58b-b14bd1f0a3b8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T11:08:16.722Z", + "completed":"2017-10-05T11:08:16.722Z", + "new_balance":"6510.65", + "value":"-7.30" + } + }, + { + "id":"c912af1c-de03-4756-b8bd-9ecbf31a4655", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T14:25:51.896Z", + "completed":"2017-10-05T14:25:51.896Z", + "new_balance":"6507.21", + "value":"-3.44" + } + }, + { + "id":"6d66c1e7-1d33-48ff-b523-51ce07ad21ec", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T15:40:07.092Z", + "completed":"2017-10-05T15:40:07.092Z", + "new_balance":"6501.76", + "value":"-5.45" + } + }, + { + "id":"4d48d91b-423f-4cbe-96a8-fdfe1205901f", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T17:56:06.281Z", + "completed":"2017-10-05T17:56:06.281Z", + "new_balance":"6497.58", + "value":"-4.18" + } + }, + { + "id":"47ccc208-3550-4112-9646-94391395ccd0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T18:25:28.444Z", + "completed":"2017-10-05T18:25:28.444Z", + "new_balance":"6496.99", + "value":"-0.59" + } + }, + { + "id":"7ffea779-21c2-45a5-98f5-c4f3a0267143", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T03:00:47.804Z", + "completed":"2017-10-09T03:00:47.804Z", + "new_balance":"6488.90", + "value":"-8.09" + } + }, + { + "id":"881cc45a-d6dd-4126-b9c1-fa160813ff92", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T21:07:47.512Z", + "completed":"2017-10-11T21:07:47.512Z", + "new_balance":"6482.78", + "value":"-6.12" + } + }, + { + "id":"3d68bcfa-176c-4379-ba2a-655e2a4abc26", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T19:41:03.887Z", + "completed":"2017-10-12T19:41:03.887Z", + "new_balance":"6475.48", + "value":"-7.30" + } + }, + { + "id":"8705c37d-5a13-4a21-bef1-cf578881d7a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T21:20:07.525Z", + "completed":"2017-10-12T21:20:07.525Z", + "new_balance":"6472.80", + "value":"-2.68" + } + }, + { + "id":"3473c58d-a748-485e-be0a-db9ef8fa5829", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T19:35:31.296Z", + "completed":"2017-10-20T19:35:31.296Z", + "new_balance":"6469.13", + "value":"-3.67" + } + }, + { + "id":"cc778dcb-fc80-49e4-a6d6-dc45116e8009", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T14:26:09.954Z", + "completed":"2017-10-29T14:26:09.954Z", + "new_balance":"6704.09", + "value":"234.96" + } + }, + { + "id":"878b9231-11f0-4ba2-b361-603b32d80026", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T06:47:08.884Z", + "completed":"2017-10-30T06:47:08.884Z", + "new_balance":"6680.85", + "value":"-23.24" + } + }, + { + "id":"6891a658-eec4-47f8-831a-c0cc1da06977", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T15:47:16.122Z", + "completed":"2017-11-02T15:47:16.122Z", + "new_balance":"6673.15", + "value":"-7.70" + } + }, + { + "id":"2681e4b6-b951-47d4-8e42-092ed2d41faa", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T18:16:14.325Z", + "completed":"2017-11-02T18:16:14.325Z", + "new_balance":"6668.97", + "value":"-4.18" + } + }, + { + "id":"942b5ae4-7481-41ff-a19a-fb62d2d315a1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T18:38:14.662Z", + "completed":"2017-11-02T18:38:14.662Z", + "new_balance":"6665.53", + "value":"-3.44" + } + }, + { + "id":"03c42e8f-d490-4b3d-b970-246c2feb4eca", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T22:20:12.430Z", + "completed":"2017-11-02T22:20:12.430Z", + "new_balance":"6662.09", + "value":"-3.44" + } + }, + { + "id":"2d5c68c0-be11-4153-9a40-7610b0a02f12", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T02:40:07.567Z", + "completed":"2017-11-04T02:40:07.567Z", + "new_balance":"6654.79", + "value":"-7.30" + } + }, + { + "id":"33f05160-03d7-476e-8cd0-9448e6d7be90", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T04:23:23.610Z", + "completed":"2017-11-04T04:23:23.610Z", + "new_balance":"6654.09", + "value":"-0.70" + } + }, + { + "id":"25cc53bc-4a83-4d36-8618-ef299c6bfb5e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T01:35:03.342Z", + "completed":"2017-11-06T01:35:03.342Z", + "new_balance":"6646.65", + "value":"-7.44" + } + }, + { + "id":"fec8c5e9-3967-4239-88f9-920a5dbf67a4", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T08:38:26.547Z", + "completed":"2017-11-07T08:38:26.547Z", + "new_balance":"6639.09", + "value":"-7.56" + } + }, + { + "id":"8b4b2639-69da-4fc7-ac7e-7b5a1f394526", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T12:14:55.787Z", + "completed":"2017-11-07T12:14:55.787Z", + "new_balance":"6636.38", + "value":"-2.71" + } + }, + { + "id":"83750590-1c7e-4642-81bf-2e2a8506ca80", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T07:36:02.399Z", + "completed":"2017-11-09T07:36:02.399Z", + "new_balance":"6635.14", + "value":"-1.24" + } + }, + { + "id":"06ed8765-84c7-445b-8afb-d11d7ddcb75e", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T14:45:57.845Z", + "completed":"2017-11-09T14:45:57.845Z", + "new_balance":"6630.55", + "value":"-4.59" + } + }, + { + "id":"7024a45d-6afd-4ac2-b3c4-b487de56c55b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T05:49:40.981Z", + "completed":"2017-11-13T05:49:40.981Z", + "new_balance":"6628.42", + "value":"-2.13" + } + }, + { + "id":"ed84cd32-2f2a-40f2-a087-a6e89552c193", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T07:22:45.667Z", + "completed":"2017-11-13T07:22:45.667Z", + "new_balance":"6627.72", + "value":"-0.70" + } + }, + { + "id":"7f097a42-10e3-4676-8a8d-5bde7d8f2c61", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T16:01:31.876Z", + "completed":"2017-11-13T16:01:31.876Z", + "new_balance":"6625.01", + "value":"-2.71" + } + }, + { + "id":"68204689-1f4b-4414-9920-e7ead96c32bd", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T09:21:03.718Z", + "completed":"2017-11-14T09:21:03.718Z", + "new_balance":"6617.71", + "value":"-7.30" + } + }, + { + "id":"d1cc6540-404e-49fd-a547-adae1b2ca121", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T23:28:53.136Z", + "completed":"2017-11-14T23:28:53.136Z", + "new_balance":"6613.25", + "value":"-4.46" + } + }, + { + "id":"95b09ba3-bdc5-4e95-8814-7c91bb5b55ba", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T23:20:34.528Z", + "completed":"2017-11-15T23:20:34.528Z", + "new_balance":"6609.58", + "value":"-3.67" + } + }, + { + "id":"763b8607-2872-422e-b2ce-899ef0c63c3a", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T03:05:46.578Z", + "completed":"2017-11-30T03:05:46.578Z", + "new_balance":"6844.54", + "value":"234.96" + } + }, + { + "id":"3d48241d-f5ba-494d-82d5-e3af82e53b65", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T11:14:31.919Z", + "completed":"2017-11-30T11:14:31.919Z", + "new_balance":"6821.30", + "value":"-23.24" + } + }, + { + "id":"9bb95ca0-7e85-428c-b862-33e5a3604b3b", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T02:33:26.897Z", + "completed":"2017-12-01T02:33:26.897Z", + "new_balance":"6817.86", + "value":"-3.44" + } + }, + { + "id":"4eb7c82e-55f0-4fae-b467-e794e093c8b1", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T13:40:41.358Z", + "completed":"2017-12-01T13:40:41.358Z", + "new_balance":"6813.68", + "value":"-4.18" + } + }, + { + "id":"1f8b3957-2276-4e1c-8727-e9d528a5cc82", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T17:24:38.264Z", + "completed":"2017-12-01T17:24:38.264Z", + "new_balance":"6805.98", + "value":"-7.70" + } + }, + { + "id":"b46bd6c5-8750-4f42-acf4-82dc3fec4d4c", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:18:14.991Z", + "completed":"2017-12-01T19:18:14.991Z", + "new_balance":"6802.54", + "value":"-3.44" + } + }, + { + "id":"3fb294e9-5c45-42b0-a1a9-3784da7dc000", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T02:45:48.724Z", + "completed":"2017-12-04T02:45:48.724Z", + "new_balance":"6796.72", + "value":"-5.82" + } + }, + { + "id":"aa8904a5-a496-4d48-a79b-08a1861e3db6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T13:38:28.938Z", + "completed":"2017-12-04T13:38:28.938Z", + "new_balance":"6789.46", + "value":"-7.26" + } + }, + { + "id":"34c418bc-8e75-4066-bab2-9f6dbad8fbf0", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T04:51:51.427Z", + "completed":"2017-12-11T04:51:51.427Z", + "new_balance":"6781.72", + "value":"-7.74" + } + }, + { + "id":"446b0ad0-206e-4212-99e8-c87470e631fb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T10:43:03.670Z", + "completed":"2017-12-11T10:43:03.670Z", + "new_balance":"6773.98", + "value":"-7.74" + } + }, + { + "id":"e49fd1d3-774f-4bb7-9df1-f654c5e6f3fb", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T11:45:42.223Z", + "completed":"2017-12-11T11:45:42.223Z", + "new_balance":"6769.57", + "value":"-4.41" + } + }, + { + "id":"eae8fb36-f552-489e-b864-2d6539c22462", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T11:35:13.824Z", + "completed":"2017-12-12T11:35:13.824Z", + "new_balance":"6768.96", + "value":"-0.61" + } + }, + { + "id":"1c5006ad-bb2b-4384-ad59-743d70f6f202", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T23:24:50.685Z", + "completed":"2017-12-12T23:24:50.685Z", + "new_balance":"6764.89", + "value":"-4.07" + } + }, + { + "id":"a5c63b64-ce75-4838-8073-626eaa6307c8", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T09:06:00.423Z", + "completed":"2017-12-16T09:06:00.423Z", + "new_balance":"6754.88", + "value":"-10.01" + } + }, + { + "id":"31dea493-dc3f-4cd5-8715-563bbac7fb48", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T04:13:44.513Z", + "completed":"2017-12-29T04:13:44.513Z", + "new_balance":"6751.21", + "value":"-3.67" + } + }, + { + "id":"6c77f8f3-694f-48e7-a230-ec99e66c4918", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T11:05:01.981Z", + "completed":"2017-12-30T11:05:01.981Z", + "new_balance":"6727.97", + "value":"-23.24" + } + }, + { + "id":"67a81641-ea74-4bfc-a9d7-9896059612b6", + "this_account":{ + "id":"27dcaa9f-16c3-41c1-b739-a998d9251cac", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T14:12:49.385Z", + "completed":"2017-12-30T14:12:49.385Z", + "new_balance":"6962.93", + "value":"234.96" + } + }, + { + "id":"dbe6790d-e9c0-432e-a9a0-119a561d3f9f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T00:00:45.272Z", + "completed":"2016-03-02T00:00:45.272Z", + "new_balance":"90786.17", + "value":"-378.33" + } + }, + { + "id":"3ad01ed9-9eaa-4f7f-96ab-7c196b9d1a36", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T08:25:30.100Z", + "completed":"2016-03-02T08:25:30.100Z", + "new_balance":"89953.81", + "value":"-832.36" + } + }, + { + "id":"fdf2899c-6e85-4a31-b366-2ee54d3aa228", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T12:29:49.166Z", + "completed":"2016-03-03T12:29:49.166Z", + "new_balance":"89879.88", + "value":"-73.93" + } + }, + { + "id":"2c9c4313-2238-4946-9e23-466012249867", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T20:55:09.696Z", + "completed":"2016-03-03T20:55:09.696Z", + "new_balance":"85294.72", + "value":"-4585.16" + } + }, + { + "id":"da7ea9f7-105c-40c4-8fcd-f12ab80b749f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T01:19:28.103Z", + "completed":"2016-03-04T01:19:28.103Z", + "new_balance":"85208.16", + "value":"-86.56" + } + }, + { + "id":"afb7d93e-5be5-4308-b4e2-a442cb8db16c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T06:02:07.948Z", + "completed":"2016-03-04T06:02:07.948Z", + "new_balance":"84843.87", + "value":"-364.29" + } + }, + { + "id":"5b912303-cfcc-40ab-9d5f-e90ada0ad3f4", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T02:10:48.938Z", + "completed":"2016-03-07T02:10:48.938Z", + "new_balance":"84790.69", + "value":"-53.18" + } + }, + { + "id":"27efd642-89a1-4903-ba42-a2f2cdf55b23", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T09:56:25.547Z", + "completed":"2016-03-09T09:56:25.547Z", + "new_balance":"83958.33", + "value":"-832.36" + } + }, + { + "id":"9926aaef-cc70-4f46-8d92-2f6c8b7d9fd5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T19:39:28.050Z", + "completed":"2016-03-16T19:39:28.050Z", + "new_balance":"83413.17", + "value":"-545.16" + } + }, + { + "id":"523d8152-f583-4774-9f05-38d0c8e5f724", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:49:17.569Z", + "completed":"2016-03-25T19:49:17.569Z", + "new_balance":"82868.01", + "value":"-545.16" + } + }, + { + "id":"5521c664-74a0-40e2-82a8-545be4519964", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T14:45:09.017Z", + "completed":"2016-03-30T14:45:09.017Z", + "new_balance":"80236.80", + "value":"-2631.21" + } + }, + { + "id":"2545f87f-0a02-4af3-9d42-6dc6b4675644", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:39:11.060Z", + "completed":"2016-06-07T00:39:11.060Z", + "new_balance":"79404.44", + "value":"-832.36" + } + }, + { + "id":"2aa14147-f57d-4149-9904-1864921e80d5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T06:33:36.412Z", + "completed":"2016-06-07T06:33:36.412Z", + "new_balance":"74819.28", + "value":"-4585.16" + } + }, + { + "id":"77416736-891e-49d6-83cf-c6739e69baaa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T08:50:49.286Z", + "completed":"2016-06-07T08:50:49.286Z", + "new_balance":"74440.95", + "value":"-378.33" + } + }, + { + "id":"c1cade4e-e359-4880-bdb7-404c80afff36", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T19:58:50.107Z", + "completed":"2016-06-10T19:58:50.107Z", + "new_balance":"74354.39", + "value":"-86.56" + } + }, + { + "id":"85df662f-8d42-4c2d-b29e-03d750c47db1", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T03:27:58.253Z", + "completed":"2016-06-14T03:27:58.253Z", + "new_balance":"73990.10", + "value":"-364.29" + } + }, + { + "id":"6ae796b9-7735-40ca-ac56-d65c200a1aa9", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T17:34:57.358Z", + "completed":"2016-06-19T17:34:57.358Z", + "new_balance":"73916.17", + "value":"-73.93" + } + }, + { + "id":"c5ebe4bc-a443-4e60-9a95-f799e96eef4c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T23:58:11.421Z", + "completed":"2016-06-19T23:58:11.421Z", + "new_balance":"73862.99", + "value":"-53.18" + } + }, + { + "id":"5d5f52b9-e05a-4a3f-ae33-67c0f75c5dad", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T02:02:17.911Z", + "completed":"2016-06-20T02:02:17.911Z", + "new_balance":"73030.63", + "value":"-832.36" + } + }, + { + "id":"afc7a9c0-fb2d-479b-8fd0-63077c19960b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T17:18:02.357Z", + "completed":"2016-06-28T17:18:02.357Z", + "new_balance":"72485.47", + "value":"-545.16" + } + }, + { + "id":"57cf15c9-7bda-4e9b-a691-eb976c241a7b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T19:42:18.296Z", + "completed":"2016-07-01T19:42:18.296Z", + "new_balance":"69854.26", + "value":"-2631.21" + } + }, + { + "id":"0de0b7ef-a9ee-4909-8dae-771ced34c7fb", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T22:52:34.460Z", + "completed":"2016-07-01T22:52:34.460Z", + "new_balance":"69309.10", + "value":"-545.16" + } + }, + { + "id":"29491930-6b14-43f5-b7d7-edc4d4e19e0a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T11:26:24.508Z", + "completed":"2016-09-02T11:26:24.508Z", + "new_balance":"68930.77", + "value":"-378.33" + } + }, + { + "id":"cf993e12-777e-429c-8a1c-1e7be1be45aa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T19:32:36.401Z", + "completed":"2016-09-02T19:32:36.401Z", + "new_balance":"68098.41", + "value":"-832.36" + } + }, + { + "id":"23f8c3d3-618e-4be2-ba49-c789d1c95354", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T02:20:12.508Z", + "completed":"2016-09-03T02:20:12.508Z", + "new_balance":"63513.25", + "value":"-4585.16" + } + }, + { + "id":"369c2ca8-1541-4251-a4e4-7ae20a380432", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:27:24.970Z", + "completed":"2016-09-03T02:27:24.970Z", + "new_balance":"63439.32", + "value":"-73.93" + } + }, + { + "id":"31a34f59-1415-4511-b2b2-bac0a7873423", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T17:15:13.059Z", + "completed":"2016-09-03T17:15:13.059Z", + "new_balance":"63392.42", + "value":"-46.90" + } + }, + { + "id":"34b5c387-848d-4cb9-9fb0-cfa086381e22", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T07:18:29.450Z", + "completed":"2016-09-04T07:18:29.450Z", + "new_balance":"63028.13", + "value":"-364.29" + } + }, + { + "id":"f7fe3f44-28fd-4bcd-8cf5-f3466726e51f", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T07:42:16.025Z", + "completed":"2016-09-07T07:42:16.025Z", + "new_balance":"62974.95", + "value":"-53.18" + } + }, + { + "id":"42a211cb-b70e-4e61-b417-48520afeadf5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T18:10:39.411Z", + "completed":"2016-09-09T18:10:39.411Z", + "new_balance":"62142.59", + "value":"-832.36" + } + }, + { + "id":"61006f35-c422-4ce8-a3c4-45f4ce18a59b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T22:09:02.551Z", + "completed":"2016-09-16T22:09:02.551Z", + "new_balance":"61597.43", + "value":"-545.16" + } + }, + { + "id":"236fbf79-5a55-4b95-b095-718392390ea9", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T00:35:49.050Z", + "completed":"2016-09-25T00:35:49.050Z", + "new_balance":"61052.27", + "value":"-545.16" + } + }, + { + "id":"0f43c817-4c02-493f-b11c-80fe620462e4", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T05:18:24.809Z", + "completed":"2016-09-30T05:18:24.809Z", + "new_balance":"58421.06", + "value":"-2631.21" + } + }, + { + "id":"31001b3e-0519-46e7-a283-755a98dcac01", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T02:41:19.089Z", + "completed":"2016-12-07T02:41:19.089Z", + "new_balance":"58042.73", + "value":"-378.33" + } + }, + { + "id":"e315bc2a-967a-4d1b-95d9-556b79ec1195", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T14:12:12.825Z", + "completed":"2016-12-07T14:12:12.825Z", + "new_balance":"57210.37", + "value":"-832.36" + } + }, + { + "id":"b86dddfd-4af1-48d6-883b-af9ab1735f13", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T16:46:35.382Z", + "completed":"2016-12-07T16:46:35.382Z", + "new_balance":"52625.21", + "value":"-4585.16" + } + }, + { + "id":"51de103c-4152-40f9-b1ab-4aece9ebdabe", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T06:55:00.409Z", + "completed":"2016-12-11T06:55:00.409Z", + "new_balance":"52551.28", + "value":"-73.93" + } + }, + { + "id":"df8659e3-228e-4f77-958a-c0ee5326b859", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T16:20:13.418Z", + "completed":"2016-12-11T16:20:13.418Z", + "new_balance":"52464.72", + "value":"-86.56" + } + }, + { + "id":"e5c0868c-b553-4a2f-9609-59be6cf533ef", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T12:33:05.002Z", + "completed":"2016-12-14T12:33:05.002Z", + "new_balance":"52100.43", + "value":"-364.29" + } + }, + { + "id":"6e5bed95-0bef-4960-b8d1-2d2b344be428", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T20:32:35.910Z", + "completed":"2016-12-20T20:32:35.910Z", + "new_balance":"52047.25", + "value":"-53.18" + } + }, + { + "id":"f5e37111-e4c1-4114-bde7-0aea1f9a0d84", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T09:17:15.744Z", + "completed":"2016-12-22T09:17:15.744Z", + "new_balance":"51214.89", + "value":"-832.36" + } + }, + { + "id":"ead8c5c3-d19f-46ba-a8ef-e1b227afe48d", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T06:24:02.461Z", + "completed":"2016-12-28T06:24:02.461Z", + "new_balance":"50669.73", + "value":"-545.16" + } + }, + { + "id":"74a7d35e-c5e5-49c8-b36f-b899ddac9252", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:13:42.135Z", + "completed":"2016-12-31T16:13:42.135Z", + "new_balance":"48038.52", + "value":"-2631.21" + } + }, + { + "id":"570ff3c0-a8f0-42b8-9474-31cb607f4f28", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T16:51:00.235Z", + "completed":"2016-12-31T16:51:00.235Z", + "new_balance":"47493.36", + "value":"-545.16" + } + }, + { + "id":"8dc9f905-6aa7-4b2b-9492-76d5b584b497", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T14:20:08.297Z", + "completed":"2017-03-02T14:20:08.297Z", + "new_balance":"47115.03", + "value":"-378.33" + } + }, + { + "id":"40ffb689-6c66-496b-8b3e-ac218f7e5eb3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T15:06:29.689Z", + "completed":"2017-03-02T15:06:29.689Z", + "new_balance":"46282.67", + "value":"-832.36" + } + }, + { + "id":"92b895dc-6a73-4d1a-baf0-bd54c9e7c8ca", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T12:46:21.422Z", + "completed":"2017-03-03T12:46:21.422Z", + "new_balance":"41697.51", + "value":"-4585.16" + } + }, + { + "id":"77934638-f6b7-424c-901a-d6ea4840ea67", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T12:57:49.583Z", + "completed":"2017-03-03T12:57:49.583Z", + "new_balance":"41623.58", + "value":"-73.93" + } + }, + { + "id":"49426184-5739-47cb-bdc5-9d2dfd931e02", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T05:46:29.862Z", + "completed":"2017-03-04T05:46:29.862Z", + "new_balance":"41259.29", + "value":"-364.29" + } + }, + { + "id":"103e5930-a040-4b29-9684-4d440d93ff28", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T19:03:45.224Z", + "completed":"2017-03-04T19:03:45.224Z", + "new_balance":"41172.73", + "value":"-86.56" + } + }, + { + "id":"3c61f74e-169b-429e-9b26-0a5dbc4645e7", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T20:54:24.753Z", + "completed":"2017-03-07T20:54:24.753Z", + "new_balance":"41119.55", + "value":"-53.18" + } + }, + { + "id":"e2188f81-be6f-4f20-b4cb-f362210f6b89", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T10:00:19.923Z", + "completed":"2017-03-09T10:00:19.923Z", + "new_balance":"40287.19", + "value":"-832.36" + } + }, + { + "id":"cbd429fd-543a-492c-8601-6fde964bd019", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T06:50:38.867Z", + "completed":"2017-03-16T06:50:38.867Z", + "new_balance":"39742.03", + "value":"-545.16" + } + }, + { + "id":"3b9821bc-cefe-4eb8-9389-afe143f089f8", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:52:49.912Z", + "completed":"2017-03-25T14:52:49.912Z", + "new_balance":"39196.87", + "value":"-545.16" + } + }, + { + "id":"175ee510-ced1-4d42-8b2d-28ab906bfc1a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T10:09:25.083Z", + "completed":"2017-03-30T10:09:25.083Z", + "new_balance":"36565.66", + "value":"-2631.21" + } + }, + { + "id":"2687b355-aff7-445a-90f9-c423ff3a47e5", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T15:37:37.276Z", + "completed":"2017-06-07T15:37:37.276Z", + "new_balance":"35733.30", + "value":"-832.36" + } + }, + { + "id":"69e98c76-f805-4d9d-9cb5-120f8410ea93", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T19:21:59.160Z", + "completed":"2017-06-07T19:21:59.160Z", + "new_balance":"35354.97", + "value":"-378.33" + } + }, + { + "id":"f8c6b41e-4d66-4eaa-aafa-be1be541bae6", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T22:16:39.669Z", + "completed":"2017-06-07T22:16:39.669Z", + "new_balance":"30769.81", + "value":"-4585.16" + } + }, + { + "id":"73fbbde3-1553-451f-a6f3-4ce6bab00964", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:11:50.396Z", + "completed":"2017-06-10T02:11:50.396Z", + "new_balance":"30683.25", + "value":"-86.56" + } + }, + { + "id":"a4118ce2-33ed-47cf-9bd9-c367b582502e", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T07:11:51.746Z", + "completed":"2017-06-14T07:11:51.746Z", + "new_balance":"30318.96", + "value":"-364.29" + } + }, + { + "id":"0a9a7c22-27f0-474c-b342-1ff02ec88a48", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T03:15:01.491Z", + "completed":"2017-06-19T03:15:01.491Z", + "new_balance":"30245.03", + "value":"-73.93" + } + }, + { + "id":"bc899430-5dc5-4ae0-9e0a-7313e425c255", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T23:04:13.933Z", + "completed":"2017-06-19T23:04:13.933Z", + "new_balance":"30191.85", + "value":"-53.18" + } + }, + { + "id":"90a2f4d3-6eb4-4314-b2a9-dbd3589db295", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T13:31:27.699Z", + "completed":"2017-06-20T13:31:27.699Z", + "new_balance":"29359.49", + "value":"-832.36" + } + }, + { + "id":"57a58819-ee39-4637-86c8-6fd2d5ea2003", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T05:36:44.245Z", + "completed":"2017-06-28T05:36:44.245Z", + "new_balance":"28814.33", + "value":"-545.16" + } + }, + { + "id":"76c5e24a-105c-4150-b7a4-4714560eaf53", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T18:33:01.818Z", + "completed":"2017-07-01T18:33:01.818Z", + "new_balance":"26183.12", + "value":"-2631.21" + } + }, + { + "id":"aa1c637d-ef1e-4b5d-83bc-248544a71c15", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T23:43:10.141Z", + "completed":"2017-07-01T23:43:10.141Z", + "new_balance":"25637.96", + "value":"-545.16" + } + }, + { + "id":"e1bc8830-b404-4e9d-aa07-0ac0b0ba794d", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T03:25:46.883Z", + "completed":"2017-09-02T03:25:46.883Z", + "new_balance":"25259.63", + "value":"-378.33" + } + }, + { + "id":"d571d1a4-b801-42ec-a3dc-7ca39dc18471", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T13:22:28.889Z", + "completed":"2017-09-02T13:22:28.889Z", + "new_balance":"24427.27", + "value":"-832.36" + } + }, + { + "id":"aeaa3040-cdcc-4a97-b729-d1d21b4fab1a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T13:22:32.865Z", + "completed":"2017-09-03T13:22:32.865Z", + "new_balance":"24380.37", + "value":"-46.90" + } + }, + { + "id":"f0e55c88-778d-4d6b-bb57-afc9d3d30b37", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T14:32:39.539Z", + "completed":"2017-09-03T14:32:39.539Z", + "new_balance":"24306.44", + "value":"-73.93" + } + }, + { + "id":"9ee8a66e-40f9-43fa-94fd-9ba5d88846fd", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T20:25:15.078Z", + "completed":"2017-09-03T20:25:15.078Z", + "new_balance":"19721.28", + "value":"-4585.16" + } + }, + { + "id":"53b571f1-b955-40d2-9c87-ec1a91015f67", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T20:37:54.286Z", + "completed":"2017-09-04T20:37:54.286Z", + "new_balance":"19356.99", + "value":"-364.29" + } + }, + { + "id":"42303f5f-8089-449d-a288-a2cff58fc9a3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T22:19:31.454Z", + "completed":"2017-09-07T22:19:31.454Z", + "new_balance":"19303.81", + "value":"-53.18" + } + }, + { + "id":"be39e813-565f-4c0b-b361-749b74e1faaa", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T05:26:23.589Z", + "completed":"2017-09-09T05:26:23.589Z", + "new_balance":"18471.45", + "value":"-832.36" + } + }, + { + "id":"6092e694-d0ed-4c6a-8ffc-cbf24c16e240", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T12:15:42.760Z", + "completed":"2017-09-16T12:15:42.760Z", + "new_balance":"17926.29", + "value":"-545.16" + } + }, + { + "id":"e617b876-b6ff-4c0c-a140-1de3a49af931", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T15:42:33.123Z", + "completed":"2017-09-25T15:42:33.123Z", + "new_balance":"17381.13", + "value":"-545.16" + } + }, + { + "id":"a6da4c11-563c-4743-ae13-a41522834868", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T11:37:49.090Z", + "completed":"2017-09-30T11:37:49.090Z", + "new_balance":"14749.92", + "value":"-2631.21" + } + }, + { + "id":"0d47ac98-0e11-4579-80b2-11ec51b2b7d0", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T02:27:39.544Z", + "completed":"2017-12-07T02:27:39.544Z", + "new_balance":"10164.76", + "value":"-4585.16" + } + }, + { + "id":"f2bff9b9-b72f-4b37-b1cb-aa33828a200b", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T04:17:50.698Z", + "completed":"2017-12-07T04:17:50.698Z", + "new_balance":"9786.43", + "value":"-378.33" + } + }, + { + "id":"734904f9-24da-49f1-bfac-339e258f6bb0", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T20:28:37.777Z", + "completed":"2017-12-07T20:28:37.777Z", + "new_balance":"8954.07", + "value":"-832.36" + } + }, + { + "id":"7d05982f-75e1-4ae7-9ff7-49d0a48806de", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T08:37:17.962Z", + "completed":"2017-12-11T08:37:17.962Z", + "new_balance":"8867.51", + "value":"-86.56" + } + }, + { + "id":"bfdf679b-a684-485e-bf86-1ed8c1a6bbd3", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T22:07:01.355Z", + "completed":"2017-12-11T22:07:01.355Z", + "new_balance":"8793.58", + "value":"-73.93" + } + }, + { + "id":"75b75e13-b7a0-49bd-b56a-aa0e66e02e27", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T18:06:33.081Z", + "completed":"2017-12-14T18:06:33.081Z", + "new_balance":"8429.29", + "value":"-364.29" + } + }, + { + "id":"812d6783-8260-4565-9719-b7dd2f77c72a", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T07:13:40.983Z", + "completed":"2017-12-20T07:13:40.983Z", + "new_balance":"8376.11", + "value":"-53.18" + } + }, + { + "id":"e34f5e1d-22b6-42d4-aa4b-2350d6155283", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T08:43:56.291Z", + "completed":"2017-12-22T08:43:56.291Z", + "new_balance":"7543.75", + "value":"-832.36" + } + }, + { + "id":"2ea7e4d6-6264-494d-adc5-b3ae443aaea6", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T23:07:35.594Z", + "completed":"2017-12-28T23:07:35.594Z", + "new_balance":"6998.59", + "value":"-545.16" + } + }, + { + "id":"00fa05f4-fc22-43f9-a523-5ddce4f5f802", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T12:04:57.726Z", + "completed":"2017-12-31T12:04:57.726Z", + "new_balance":"6453.43", + "value":"-545.16" + } + }, + { + "id":"c487a11e-3117-4088-81b8-43d4c0eff40c", + "this_account":{ + "id":"2d13eabd-36a0-4311-a43a-119072c88b2a", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T20:32:15.073Z", + "completed":"2017-12-31T20:32:15.073Z", + "new_balance":"3822.22", + "value":"-2631.21" + } + }, + { + "id":"eb3589ff-3c7c-4e9e-8a06-dd8353ccdf67", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T06:02:12.110Z", + "completed":"2016-01-01T06:02:12.110Z", + "new_balance":"5763.87", + "value":"-6.40" + } + }, + { + "id":"22eddad8-3b2c-4d8b-8227-9c53bcddd3b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:05:51.505Z", + "completed":"2016-01-01T19:05:51.505Z", + "new_balance":"5757.47", + "value":"-6.40" + } + }, + { + "id":"e4379320-00e4-4660-b66e-a7d09a3589ac", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T05:34:27.612Z", + "completed":"2016-01-03T05:34:27.612Z", + "new_balance":"5755.01", + "value":"-2.46" + } + }, + { + "id":"43246a74-1aa0-4bc0-954d-3e0b4cd0016e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T05:49:51.292Z", + "completed":"2016-01-03T05:49:51.292Z", + "new_balance":"5747.82", + "value":"-7.19" + } + }, + { + "id":"6399fbde-3157-4dc1-874a-b8029248031f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T07:35:54.528Z", + "completed":"2016-01-03T07:35:54.528Z", + "new_balance":"5744.38", + "value":"-3.44" + } + }, + { + "id":"879cd4f8-2ea3-4836-b70e-cf6cfb415a82", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T12:34:47.965Z", + "completed":"2016-01-03T12:34:47.965Z", + "new_balance":"5686.15", + "value":"-58.23" + } + }, + { + "id":"890582d0-5bdd-4a9d-8b07-8260eff138ca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T07:38:18.140Z", + "completed":"2016-01-05T07:38:18.140Z", + "new_balance":"5685.00", + "value":"-1.15" + } + }, + { + "id":"2ccb9f52-c7f1-4078-ab8f-31224b151768", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T14:07:29.097Z", + "completed":"2016-01-05T14:07:29.097Z", + "new_balance":"5679.85", + "value":"-5.15" + } + }, + { + "id":"ff0f423c-ceb2-4225-8265-2278cfc8eb19", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T15:27:55.878Z", + "completed":"2016-01-05T15:27:55.878Z", + "new_balance":"5675.43", + "value":"-4.42" + } + }, + { + "id":"e884de3e-cfc7-44e9-af3d-15a9c0afcba5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T18:45:18.632Z", + "completed":"2016-01-06T18:45:18.632Z", + "new_balance":"5673.11", + "value":"-2.32" + } + }, + { + "id":"5a6353b2-c20b-4ed1-b688-18f3b9f6e821", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T22:10:34.881Z", + "completed":"2016-01-06T22:10:34.881Z", + "new_balance":"5669.44", + "value":"-3.67" + } + }, + { + "id":"ef186e57-3e2f-4add-8ee8-5d0d0ceb848b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T03:55:11.624Z", + "completed":"2016-01-07T03:55:11.624Z", + "new_balance":"5664.97", + "value":"-4.47" + } + }, + { + "id":"d45aa301-d005-491d-a9d6-1c5a7b2ed929", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T07:22:09.619Z", + "completed":"2016-01-10T07:22:09.619Z", + "new_balance":"5662.59", + "value":"-2.38" + } + }, + { + "id":"909258b0-c816-4981-8299-3306c535e2c9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T21:30:29.124Z", + "completed":"2016-01-10T21:30:29.124Z", + "new_balance":"5657.44", + "value":"-5.15" + } + }, + { + "id":"9308dcef-e3b0-4aaa-bf49-168aaa57c960", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T13:07:49.140Z", + "completed":"2016-01-12T13:07:49.140Z", + "new_balance":"5654.98", + "value":"-2.46" + } + }, + { + "id":"ce6e1407-7a08-47d6-bb8e-3f95a1a2e742", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:56:51.535Z", + "completed":"2016-01-12T22:56:51.535Z", + "new_balance":"5652.25", + "value":"-2.73" + } + }, + { + "id":"b5671008-ffb3-46a4-a2a3-bcb2f2464153", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T23:00:07.110Z", + "completed":"2016-01-12T23:00:07.110Z", + "new_balance":"5647.78", + "value":"-4.47" + } + }, + { + "id":"750eff70-2a68-4a7c-a8d8-2d716e8e4857", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T00:46:26.290Z", + "completed":"2016-01-15T00:46:26.290Z", + "new_balance":"5645.15", + "value":"-2.63" + } + }, + { + "id":"c6f64a93-058e-453a-9a2a-1b111f0f8049", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T07:04:43.533Z", + "completed":"2016-01-16T07:04:43.533Z", + "new_balance":"5644.19", + "value":"-0.96" + } + }, + { + "id":"8203cd01-c7f6-4af6-8656-40fe2cd30468", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T11:58:55.569Z", + "completed":"2016-01-16T11:58:55.569Z", + "new_balance":"5639.04", + "value":"-5.15" + } + }, + { + "id":"6fd076bd-45c1-48e8-bfbe-19a541c361c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:31:12.609Z", + "completed":"2016-01-17T10:31:12.609Z", + "new_balance":"5632.29", + "value":"-6.75" + } + }, + { + "id":"7f4d0452-7397-40cd-a06e-c9c204ccd318", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T18:18:09.085Z", + "completed":"2016-01-17T18:18:09.085Z", + "new_balance":"5629.70", + "value":"-2.59" + } + }, + { + "id":"f3b8f8e7-4564-41b5-8849-6f3b33abc631", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T17:29:16.316Z", + "completed":"2016-01-19T17:29:16.316Z", + "new_balance":"5627.28", + "value":"-2.42" + } + }, + { + "id":"1277d1bc-6a7d-45e5-b81b-b48b16ccde4b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T14:58:47.995Z", + "completed":"2016-01-20T14:58:47.995Z", + "new_balance":"5622.13", + "value":"-5.15" + } + }, + { + "id":"99db0bbd-a5a5-4285-8890-e5fc6244fddb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T21:48:01.794Z", + "completed":"2016-01-23T21:48:01.794Z", + "new_balance":"5620.71", + "value":"-1.42" + } + }, + { + "id":"a80b47b4-c499-4ba7-b7e4-b79da891966e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T18:10:05.448Z", + "completed":"2016-01-26T18:10:05.448Z", + "new_balance":"5615.90", + "value":"-4.81" + } + }, + { + "id":"4fda0d20-ce63-49c3-8034-d3aaf2a3f065", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T14:05:45.258Z", + "completed":"2016-01-27T14:05:45.258Z", + "new_balance":"5721.53", + "value":"105.63" + } + }, + { + "id":"cd424066-deb0-4862-a9fd-8d8cc0914136", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T06:47:43.359Z", + "completed":"2016-01-28T06:47:43.359Z", + "new_balance":"5718.09", + "value":"-3.44" + } + }, + { + "id":"5c255024-5de7-42fc-b951-bd558e71c912", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T19:10:48.383Z", + "completed":"2016-01-30T19:10:48.383Z", + "new_balance":"5713.82", + "value":"-4.27" + } + }, + { + "id":"4e98ef49-8e36-4334-b704-edd72363b049", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T08:10:32.971Z", + "completed":"2016-02-03T08:10:32.971Z", + "new_balance":"5655.59", + "value":"-58.23" + } + }, + { + "id":"6e4084db-9a3a-44cb-8df4-5e47506a86ee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T12:42:05.833Z", + "completed":"2016-02-03T12:42:05.833Z", + "new_balance":"5648.40", + "value":"-7.19" + } + }, + { + "id":"747ecfc4-a66c-4b7c-9f87-edb37477da10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T14:24:46.168Z", + "completed":"2016-02-03T14:24:46.168Z", + "new_balance":"5644.96", + "value":"-3.44" + } + }, + { + "id":"f8e1f844-f42d-4e3b-b2c0-bd54b3c4dedf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T17:53:32.663Z", + "completed":"2016-02-03T17:53:32.663Z", + "new_balance":"5642.50", + "value":"-2.46" + } + }, + { + "id":"7b2851cc-1429-40c3-8329-5c30aef4089a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T06:53:17.273Z", + "completed":"2016-02-08T06:53:17.273Z", + "new_balance":"5638.08", + "value":"-4.42" + } + }, + { + "id":"4e57a2ba-ccc5-4d79-beac-b162df52a164", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T12:31:06.762Z", + "completed":"2016-02-08T12:31:06.762Z", + "new_balance":"5632.93", + "value":"-5.15" + } + }, + { + "id":"9b38dc2f-1964-4e8b-926f-fa177bc9f925", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T10:14:44.931Z", + "completed":"2016-02-11T10:14:44.931Z", + "new_balance":"5634.04", + "value":"1.11" + } + }, + { + "id":"1f44fa67-c753-4080-9b7d-72d1efe40485", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T20:02:27.407Z", + "completed":"2016-02-13T20:02:27.407Z", + "new_balance":"5631.72", + "value":"-2.32" + } + }, + { + "id":"abd7a09e-cca5-4040-b8b3-5affd34197a7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T03:23:35.990Z", + "completed":"2016-02-14T03:23:35.990Z", + "new_balance":"5628.69", + "value":"-3.03" + } + }, + { + "id":"38fea829-db19-47ea-aa66-5ccb41f15b3f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T06:52:06.607Z", + "completed":"2016-02-17T06:52:06.607Z", + "new_balance":"5627.29", + "value":"-1.40" + } + }, + { + "id":"7ffbe448-7b5c-4d4d-b347-5995af749c9c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T03:50:49.230Z", + "completed":"2016-02-21T03:50:49.230Z", + "new_balance":"5622.80", + "value":"-4.49" + } + }, + { + "id":"ce8b8afe-fc50-4ec3-b01a-3b12bfbdf9e8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T14:55:08.708Z", + "completed":"2016-02-23T14:55:08.708Z", + "new_balance":"5618.56", + "value":"-4.24" + } + }, + { + "id":"58bf2877-dd08-4864-a338-a9b0dc60b11f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T23:03:47.121Z", + "completed":"2016-02-23T23:03:47.121Z", + "new_balance":"5613.41", + "value":"-5.15" + } + }, + { + "id":"fc17662d-a72e-4c39-a5af-192d72908c95", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T08:57:50.336Z", + "completed":"2016-02-24T08:57:50.336Z", + "new_balance":"5612.01", + "value":"-1.40" + } + }, + { + "id":"aba7acdc-7ee0-495c-a5f2-f04b29f5bbe9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T07:26:27.032Z", + "completed":"2016-02-27T07:26:27.032Z", + "new_balance":"5607.20", + "value":"-4.81" + } + }, + { + "id":"db2ea108-d033-4875-a358-7861570d6a97", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T17:36:06.814Z", + "completed":"2016-02-27T17:36:06.814Z", + "new_balance":"5605.18", + "value":"-2.02" + } + }, + { + "id":"82ab0bc6-761a-4bc0-a324-2f1d5e588426", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T23:06:50.371Z", + "completed":"2016-02-27T23:06:50.371Z", + "new_balance":"5710.81", + "value":"105.63" + } + }, + { + "id":"5e569761-8ee4-4cb6-bc30-f111cdc6e2db", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T01:42:18.624Z", + "completed":"2016-02-28T01:42:18.624Z", + "new_balance":"5707.37", + "value":"-3.44" + } + }, + { + "id":"1e36a82c-3441-4d75-a9f1-a5998af3f632", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T21:56:16.552Z", + "completed":"2016-02-28T21:56:16.552Z", + "new_balance":"5703.10", + "value":"-4.27" + } + }, + { + "id":"ee06e6c8-ab04-4e8b-aa65-e71b1fcb0d9d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T17:49:22.890Z", + "completed":"2016-03-01T17:49:22.890Z", + "new_balance":"5696.70", + "value":"-6.40" + } + }, + { + "id":"c5930c46-5990-411e-8374-ee2a7dc93a7f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:33:26.928Z", + "completed":"2016-03-03T05:33:26.928Z", + "new_balance":"5693.26", + "value":"-3.44" + } + }, + { + "id":"26c8fa90-e62e-49de-8165-634bce435be9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T07:56:11.870Z", + "completed":"2016-03-03T07:56:11.870Z", + "new_balance":"5690.80", + "value":"-2.46" + } + }, + { + "id":"6080aa12-d6df-4623-8b35-107a46ba914f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T17:57:40.703Z", + "completed":"2016-03-03T17:57:40.703Z", + "new_balance":"5683.61", + "value":"-7.19" + } + }, + { + "id":"27be8ae3-1e16-4080-b217-8018f1490a81", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T18:31:37.101Z", + "completed":"2016-03-03T18:31:37.101Z", + "new_balance":"5625.38", + "value":"-58.23" + } + }, + { + "id":"e48b488c-72ce-4807-81cb-1f4688249427", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T17:10:13.214Z", + "completed":"2016-03-05T17:10:13.214Z", + "new_balance":"5620.23", + "value":"-5.15" + } + }, + { + "id":"71b5a61e-083d-474e-b376-aed38107fa36", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T17:59:23.235Z", + "completed":"2016-03-05T17:59:23.235Z", + "new_balance":"5615.34", + "value":"-4.89" + } + }, + { + "id":"b9456303-f20b-4ecf-b4ae-af9de37813a5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T03:41:57.796Z", + "completed":"2016-03-07T03:41:57.796Z", + "new_balance":"5613.47", + "value":"-1.87" + } + }, + { + "id":"987e3c2d-b90f-4c16-bd35-d7f8142faf1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T06:53:59.926Z", + "completed":"2016-03-09T06:53:59.926Z", + "new_balance":"5608.32", + "value":"-5.15" + } + }, + { + "id":"75b9e037-d398-434d-a9d3-d56a1b8809b4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T05:10:05.260Z", + "completed":"2016-03-11T05:10:05.260Z", + "new_balance":"5606.74", + "value":"-1.58" + } + }, + { + "id":"72c86c61-b8ed-426c-916a-e5b0671d40b6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T23:15:26.178Z", + "completed":"2016-03-13T23:15:26.178Z", + "new_balance":"5599.82", + "value":"-6.92" + } + }, + { + "id":"75152ec3-f15d-4c0d-b296-00ba9d6e4864", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T07:38:32.720Z", + "completed":"2016-03-14T07:38:32.720Z", + "new_balance":"5598.58", + "value":"-1.24" + } + }, + { + "id":"305d12c6-c16a-4ce5-877e-e120799d9f3d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T09:32:48.059Z", + "completed":"2016-03-14T09:32:48.059Z", + "new_balance":"5606.87", + "value":"8.29" + } + }, + { + "id":"f6ee4b68-e9cc-4ca7-b6e9-783e70df7ed0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T03:14:05.592Z", + "completed":"2016-03-15T03:14:05.592Z", + "new_balance":"5602.60", + "value":"-4.27" + } + }, + { + "id":"75f79be5-4040-4a5c-82cb-b086fc759b03", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T03:29:07.451Z", + "completed":"2016-03-26T03:29:07.451Z", + "new_balance":"5600.61", + "value":"-1.99" + } + }, + { + "id":"4e0a6b78-7dda-4f65-91ed-c02503ecb18a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T05:01:21.318Z", + "completed":"2016-03-26T05:01:21.318Z", + "new_balance":"5595.92", + "value":"-4.69" + } + }, + { + "id":"370cfd14-5af5-4e6c-afa7-f835e8b8aade", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:00:25.787Z", + "completed":"2016-03-26T13:00:25.787Z", + "new_balance":"5593.78", + "value":"-2.14" + } + }, + { + "id":"1575fe61-0f77-426c-b651-60663adc80c7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T13:19:05.754Z", + "completed":"2016-03-27T13:19:05.754Z", + "new_balance":"5588.63", + "value":"-5.15" + } + }, + { + "id":"f22e9240-a458-4ffc-bea0-9baa7a6bf23f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T20:09:27.734Z", + "completed":"2016-03-27T20:09:27.734Z", + "new_balance":"5584.21", + "value":"-4.42" + } + }, + { + "id":"6884f6a9-f7ad-4eb6-97e0-46182c61e40a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T22:23:00.873Z", + "completed":"2016-03-27T22:23:00.873Z", + "new_balance":"5689.84", + "value":"105.63" + } + }, + { + "id":"32999e8b-386a-4db8-b5ff-3ad636b963f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T12:37:09.519Z", + "completed":"2016-03-28T12:37:09.519Z", + "new_balance":"5686.40", + "value":"-3.44" + } + }, + { + "id":"86ae8b24-6bad-49b5-8b07-3d5283ed5480", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T08:29:24.872Z", + "completed":"2016-03-30T08:29:24.872Z", + "new_balance":"5682.13", + "value":"-4.27" + } + }, + { + "id":"b831e409-a548-49ee-8714-4e4192f66cae", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T05:42:41.652Z", + "completed":"2016-04-01T05:42:41.652Z", + "new_balance":"5678.69", + "value":"-3.44" + } + }, + { + "id":"90826c47-c15b-4ea8-99d8-4e0aff2283c2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T12:05:26.283Z", + "completed":"2016-04-01T12:05:26.283Z", + "new_balance":"5620.46", + "value":"-58.23" + } + }, + { + "id":"ffa507cb-eccf-43ed-b49e-d431c018b7ca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T12:45:32.792Z", + "completed":"2016-04-01T12:45:32.792Z", + "new_balance":"5618.00", + "value":"-2.46" + } + }, + { + "id":"58bd385c-c07a-4a5e-a68e-74cfa5ffc988", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:20:54.395Z", + "completed":"2016-04-01T14:20:54.395Z", + "new_balance":"5611.60", + "value":"-6.40" + } + }, + { + "id":"ac6a5e2b-3d9f-47ed-81fc-5cd832c52a20", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T14:43:02.151Z", + "completed":"2016-04-01T14:43:02.151Z", + "new_balance":"5604.41", + "value":"-7.19" + } + }, + { + "id":"03e49089-7209-4ac8-aa8e-d62da0630480", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T03:21:49.532Z", + "completed":"2016-04-05T03:21:49.532Z", + "new_balance":"5599.99", + "value":"-4.42" + } + }, + { + "id":"5b8e8587-966c-4da6-a919-e9035ef41c97", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T06:01:23.647Z", + "completed":"2016-04-05T06:01:23.647Z", + "new_balance":"5598.84", + "value":"-1.15" + } + }, + { + "id":"acd2abc9-112f-48b7-ac81-3c8491638554", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T15:35:48.255Z", + "completed":"2016-04-05T15:35:48.255Z", + "new_balance":"5595.17", + "value":"-3.67" + } + }, + { + "id":"501092d8-5feb-45de-b15f-e186e1741102", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T23:56:26.167Z", + "completed":"2016-04-05T23:56:26.167Z", + "new_balance":"5590.02", + "value":"-5.15" + } + }, + { + "id":"2ccce2c6-1044-4dba-8a0e-b90efb407fef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T15:16:05.345Z", + "completed":"2016-04-07T15:16:05.345Z", + "new_balance":"5587.70", + "value":"-2.32" + } + }, + { + "id":"35409513-87b2-4663-8990-d493b5b0a71c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:43:18.766Z", + "completed":"2016-04-09T05:43:18.766Z", + "new_balance":"5585.32", + "value":"-2.38" + } + }, + { + "id":"6a06e2dd-7892-47cb-a354-5b384758788a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T07:29:22.250Z", + "completed":"2016-04-09T07:29:22.250Z", + "new_balance":"5580.17", + "value":"-5.15" + } + }, + { + "id":"50501db2-ff8d-4851-91ef-2b41e41a5102", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T01:24:36.667Z", + "completed":"2016-04-10T01:24:36.667Z", + "new_balance":"5575.70", + "value":"-4.47" + } + }, + { + "id":"6517dbd8-6997-4e64-808f-428f8f5c3ae8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T12:41:41.531Z", + "completed":"2016-04-10T12:41:41.531Z", + "new_balance":"5572.97", + "value":"-2.73" + } + }, + { + "id":"d0dee942-346b-4814-8269-eacd30b47f7e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T14:38:20.503Z", + "completed":"2016-04-10T14:38:20.503Z", + "new_balance":"5570.34", + "value":"-2.63" + } + }, + { + "id":"4dd6ac03-a2c1-4354-b90b-74412da6dba5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T18:07:24.483Z", + "completed":"2016-04-10T18:07:24.483Z", + "new_balance":"5567.88", + "value":"-2.46" + } + }, + { + "id":"5187343e-9ab1-4a1f-b6c2-c3992fbb6bf1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T02:39:47.452Z", + "completed":"2016-04-11T02:39:47.452Z", + "new_balance":"5566.92", + "value":"-0.96" + } + }, + { + "id":"0a710727-ff09-4290-9ab3-72ff1b9568f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T08:15:54.265Z", + "completed":"2016-04-11T08:15:54.265Z", + "new_balance":"5560.17", + "value":"-6.75" + } + }, + { + "id":"e3ffdcd7-f062-4851-b2a6-5db179b055dd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T12:04:04.770Z", + "completed":"2016-04-11T12:04:04.770Z", + "new_balance":"5557.75", + "value":"-2.42" + } + }, + { + "id":"7319e4c6-6c24-4885-87d4-0a218186afa6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T20:26:20.212Z", + "completed":"2016-04-11T20:26:20.212Z", + "new_balance":"5555.16", + "value":"-2.59" + } + }, + { + "id":"84a73f44-19c3-4501-9df4-f066897f5091", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T22:12:41.353Z", + "completed":"2016-04-11T22:12:41.353Z", + "new_balance":"5550.01", + "value":"-5.15" + } + }, + { + "id":"5946ba97-39db-4c01-9892-d322a7a0d6c2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T11:13:07.740Z", + "completed":"2016-04-21T11:13:07.740Z", + "new_balance":"5544.86", + "value":"-5.15" + } + }, + { + "id":"32bd2764-3005-40a1-94be-c99c5801a6e7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T14:57:39.219Z", + "completed":"2016-04-23T14:57:39.219Z", + "new_balance":"5543.44", + "value":"-1.42" + } + }, + { + "id":"f0de1ace-57d4-4239-bf0e-13692ae713ef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T07:13:49.203Z", + "completed":"2016-04-29T07:13:49.203Z", + "new_balance":"5540.00", + "value":"-3.44" + } + }, + { + "id":"287e780a-7dff-4134-815a-e645cc48d757", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T12:39:54.458Z", + "completed":"2016-04-29T12:39:54.458Z", + "new_balance":"5645.63", + "value":"105.63" + } + }, + { + "id":"1322b48a-6c49-437d-bbfd-06cc9b830257", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T22:42:01.628Z", + "completed":"2016-04-29T22:42:01.628Z", + "new_balance":"5640.82", + "value":"-4.81" + } + }, + { + "id":"ad615db3-bca6-45bc-ae38-cb80b59279df", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T18:36:33.528Z", + "completed":"2016-04-30T18:36:33.528Z", + "new_balance":"5636.55", + "value":"-4.27" + } + }, + { + "id":"ea259735-2127-4dc9-8ca5-635c373eded9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T09:34:54.251Z", + "completed":"2016-05-02T09:34:54.251Z", + "new_balance":"5634.09", + "value":"-2.46" + } + }, + { + "id":"95dddb4b-6016-4962-a49e-ef09ce84333b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:11:08.234Z", + "completed":"2016-05-02T11:11:08.234Z", + "new_balance":"5626.90", + "value":"-7.19" + } + }, + { + "id":"683ae672-4ea0-4e96-a1e0-f91e5803d7f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T21:06:42.827Z", + "completed":"2016-05-02T21:06:42.827Z", + "new_balance":"5568.67", + "value":"-58.23" + } + }, + { + "id":"0347d4c5-c5b7-4a1e-b3f1-4ea8090475c8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T22:59:52.827Z", + "completed":"2016-05-02T22:59:52.827Z", + "new_balance":"5562.27", + "value":"-6.40" + } + }, + { + "id":"44de13ed-774d-46c1-b70f-ee085cef9335", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T22:45:20.406Z", + "completed":"2016-05-06T22:45:20.406Z", + "new_balance":"5557.85", + "value":"-4.42" + } + }, + { + "id":"c348286f-d307-4021-9033-ed8aaeb14232", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T06:04:35.312Z", + "completed":"2016-05-07T06:04:35.312Z", + "new_balance":"5556.45", + "value":"-1.40" + } + }, + { + "id":"c9288a6b-1cf4-43ec-b9d4-61c2e2418b37", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T12:37:12.761Z", + "completed":"2016-05-07T12:37:12.761Z", + "new_balance":"5553.42", + "value":"-3.03" + } + }, + { + "id":"95d8e004-d75e-43a8-875b-8ecd8a461806", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:57:11.144Z", + "completed":"2016-05-07T14:57:11.144Z", + "new_balance":"5551.10", + "value":"-2.32" + } + }, + { + "id":"7b6b1a65-ff64-4b0c-8adb-3284d02b6a15", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T23:30:38.650Z", + "completed":"2016-05-07T23:30:38.650Z", + "new_balance":"5546.61", + "value":"-4.49" + } + }, + { + "id":"7eaa5181-2fdd-4e67-8872-e0646782f898", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T04:53:13.603Z", + "completed":"2016-05-08T04:53:13.603Z", + "new_balance":"5542.37", + "value":"-4.24" + } + }, + { + "id":"0dc01959-9097-4735-a8cf-7b41273245a8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T03:40:13.571Z", + "completed":"2016-05-09T03:40:13.571Z", + "new_balance":"5538.93", + "value":"-3.44" + } + }, + { + "id":"75faf1f7-47f6-439b-8407-5311f89b932f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:36:17.391Z", + "completed":"2016-05-13T19:36:17.391Z", + "new_balance":"5533.78", + "value":"-5.15" + } + }, + { + "id":"5f5a80c6-f814-4802-89e1-de06c4b8fa00", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T03:49:20.352Z", + "completed":"2016-05-26T03:49:20.352Z", + "new_balance":"5532.38", + "value":"-1.40" + } + }, + { + "id":"0e7f2806-bd4a-4d89-b436-04f18a6ad236", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T06:29:46.809Z", + "completed":"2016-05-26T06:29:46.809Z", + "new_balance":"5527.23", + "value":"-5.15" + } + }, + { + "id":"5b29544a-61c5-4e65-9183-b17f867f0623", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T08:27:18.540Z", + "completed":"2016-05-27T08:27:18.540Z", + "new_balance":"5522.42", + "value":"-4.81" + } + }, + { + "id":"179010bc-826b-4124-97e5-811eb2915fa4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T10:59:36.757Z", + "completed":"2016-05-27T10:59:36.757Z", + "new_balance":"5520.40", + "value":"-2.02" + } + }, + { + "id":"4b64b2ff-0356-481d-a385-182f845256b3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T06:41:22.436Z", + "completed":"2016-05-30T06:41:22.436Z", + "new_balance":"5516.96", + "value":"-3.44" + } + }, + { + "id":"435c4cec-ba35-40f1-a735-eab25f9cc885", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T08:10:49.969Z", + "completed":"2016-05-30T08:10:49.969Z", + "new_balance":"5622.59", + "value":"105.63" + } + }, + { + "id":"669af1d5-5fef-4a55-93b3-6981c68620f8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T12:13:22.152Z", + "completed":"2016-05-30T12:13:22.152Z", + "new_balance":"5618.32", + "value":"-4.27" + } + }, + { + "id":"0b878112-df8f-4215-a2a6-3bc6b5aede0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T02:37:05.926Z", + "completed":"2016-06-01T02:37:05.926Z", + "new_balance":"5613.17", + "value":"-5.15" + } + }, + { + "id":"7050c750-cfae-4331-b8e0-237153af1e50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T03:21:40.379Z", + "completed":"2016-06-01T03:21:40.379Z", + "new_balance":"5611.30", + "value":"-1.87" + } + }, + { + "id":"a1c3cce8-ffe8-44a1-883e-7956eb452ee6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T05:08:50.811Z", + "completed":"2016-06-01T05:08:50.811Z", + "new_balance":"5608.84", + "value":"-2.46" + } + }, + { + "id":"19eca919-c068-469a-913f-f893259f6030", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T05:09:34.858Z", + "completed":"2016-06-01T05:09:34.858Z", + "new_balance":"5603.95", + "value":"-4.89" + } + }, + { + "id":"bf52e1f7-1f19-4f28-83f4-5d0d97af4d0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T05:43:06.580Z", + "completed":"2016-06-01T05:43:06.580Z", + "new_balance":"5600.51", + "value":"-3.44" + } + }, + { + "id":"5072aac0-db60-4b4d-b1ad-830ccf995938", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:29:26.928Z", + "completed":"2016-06-01T06:29:26.928Z", + "new_balance":"5595.36", + "value":"-5.15" + } + }, + { + "id":"c7b38a88-f223-4c66-9208-4766e92fdf14", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:28:23.329Z", + "completed":"2016-06-01T16:28:23.329Z", + "new_balance":"5588.96", + "value":"-6.40" + } + }, + { + "id":"d48213af-74df-4357-b646-d749ee4ea443", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T16:52:45.257Z", + "completed":"2016-06-01T16:52:45.257Z", + "new_balance":"5530.73", + "value":"-58.23" + } + }, + { + "id":"06a57bc9-0f45-40d8-a7b6-e9055d9ca361", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T17:43:53.196Z", + "completed":"2016-06-01T17:43:53.196Z", + "new_balance":"5523.54", + "value":"-7.19" + } + }, + { + "id":"b6ed08a7-132c-4bb9-b00c-5771947427a5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T02:27:36.059Z", + "completed":"2016-06-02T02:27:36.059Z", + "new_balance":"5516.62", + "value":"-6.92" + } + }, + { + "id":"c542a93c-c91d-4686-ba5d-5aad0c767b74", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T09:38:54.266Z", + "completed":"2016-06-02T09:38:54.266Z", + "new_balance":"5515.04", + "value":"-1.58" + } + }, + { + "id":"cf68b930-4136-45fb-a0f8-a2bbf53b5235", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T19:52:20.363Z", + "completed":"2016-06-02T19:52:20.363Z", + "new_balance":"5513.80", + "value":"-1.24" + } + }, + { + "id":"3ae716bd-2367-4dec-898c-dec27dc2ebc6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:00:26.738Z", + "completed":"2016-06-04T09:00:26.738Z", + "new_balance":"5511.66", + "value":"-2.14" + } + }, + { + "id":"4e4d115d-637c-41ef-aa61-4678249478e0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T15:49:44.977Z", + "completed":"2016-06-04T15:49:44.977Z", + "new_balance":"5506.97", + "value":"-4.69" + } + }, + { + "id":"4a563a0c-f9d8-4f92-9c8c-1ffc6606bfd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T18:51:51.655Z", + "completed":"2016-06-04T18:51:51.655Z", + "new_balance":"5502.70", + "value":"-4.27" + } + }, + { + "id":"fd3fc408-fedb-4a85-b5c6-87f320153256", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T09:58:04.156Z", + "completed":"2016-06-05T09:58:04.156Z", + "new_balance":"5498.28", + "value":"-4.42" + } + }, + { + "id":"5ece995b-b6cd-49b6-bcc6-e75587373d6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T18:02:53.651Z", + "completed":"2016-06-05T18:02:53.651Z", + "new_balance":"5496.29", + "value":"-1.99" + } + }, + { + "id":"7b46e0e5-df46-4b7d-a394-beadd13aa57c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T06:01:35.915Z", + "completed":"2016-06-18T06:01:35.915Z", + "new_balance":"5491.14", + "value":"-5.15" + } + }, + { + "id":"afef7d90-eafd-4c01-a3e0-b5e3700d6f47", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T02:55:38.145Z", + "completed":"2016-06-30T02:55:38.145Z", + "new_balance":"5596.77", + "value":"105.63" + } + }, + { + "id":"193e5530-6b95-4920-909f-47cd643adfce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T07:14:57.359Z", + "completed":"2016-06-30T07:14:57.359Z", + "new_balance":"5592.50", + "value":"-4.27" + } + }, + { + "id":"8aebffb3-fdaa-4a6d-b08a-c37262296cb3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T22:13:21.903Z", + "completed":"2016-06-30T22:13:21.903Z", + "new_balance":"5589.39", + "value":"-3.11" + } + }, + { + "id":"02392423-ca41-461a-8f25-6c4b1df66d13", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T23:35:54.281Z", + "completed":"2016-06-30T23:35:54.281Z", + "new_balance":"5585.95", + "value":"-3.44" + } + }, + { + "id":"f62c064e-147d-4f2b-835f-c47af8aa72ce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T16:21:35.270Z", + "completed":"2016-07-01T16:21:35.270Z", + "new_balance":"5579.55", + "value":"-6.40" + } + }, + { + "id":"eb323b36-1837-400c-b342-b1eb2a8361b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T04:02:54.870Z", + "completed":"2016-07-03T04:02:54.870Z", + "new_balance":"5572.36", + "value":"-7.19" + } + }, + { + "id":"642bb403-3505-42ed-9a9c-e771d3f46b3a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T07:47:02.501Z", + "completed":"2016-07-03T07:47:02.501Z", + "new_balance":"5514.13", + "value":"-58.23" + } + }, + { + "id":"beaa229f-de45-4b23-8fa9-caa4fd5ba81a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T08:54:39.981Z", + "completed":"2016-07-03T08:54:39.981Z", + "new_balance":"5511.67", + "value":"-2.46" + } + }, + { + "id":"84bbc544-d8c1-4ad6-b10d-d77ba7b0c8e0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T14:51:18.218Z", + "completed":"2016-07-03T14:51:18.218Z", + "new_balance":"5508.23", + "value":"-3.44" + } + }, + { + "id":"72a13e06-b359-4628-976f-51ed6440390e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T05:50:17.639Z", + "completed":"2016-07-05T05:50:17.639Z", + "new_balance":"5503.81", + "value":"-4.42" + } + }, + { + "id":"3e463b0a-d988-42cf-a156-e69057e4d95d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:22:57.281Z", + "completed":"2016-07-05T13:22:57.281Z", + "new_balance":"5502.66", + "value":"-1.15" + } + }, + { + "id":"1769090a-4400-4be2-a146-d4dcce68e1e4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T16:18:47.073Z", + "completed":"2016-07-05T16:18:47.073Z", + "new_balance":"5497.51", + "value":"-5.15" + } + }, + { + "id":"32abc879-2051-4c99-bd90-1b6c88982a89", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T03:24:04.850Z", + "completed":"2016-07-06T03:24:04.850Z", + "new_balance":"5495.19", + "value":"-2.32" + } + }, + { + "id":"e869997c-134d-4278-b300-c22a88485b89", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T08:49:41.590Z", + "completed":"2016-07-06T08:49:41.590Z", + "new_balance":"5491.52", + "value":"-3.67" + } + }, + { + "id":"27cf1a38-6d5d-463e-9ac3-481afc130b84", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T10:04:29.188Z", + "completed":"2016-07-07T10:04:29.188Z", + "new_balance":"5487.05", + "value":"-4.47" + } + }, + { + "id":"86fb7830-4a8d-4b24-a800-21b29cf88df0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T04:36:57.999Z", + "completed":"2016-07-10T04:36:57.999Z", + "new_balance":"5484.67", + "value":"-2.38" + } + }, + { + "id":"86853a1f-26db-445c-bfed-f6b760dd6d40", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T19:26:59.991Z", + "completed":"2016-07-10T19:26:59.991Z", + "new_balance":"5479.52", + "value":"-5.15" + } + }, + { + "id":"906731e3-f9b1-4f73-999d-d6e12d862cee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T02:48:51.530Z", + "completed":"2016-07-12T02:48:51.530Z", + "new_balance":"5476.79", + "value":"-2.73" + } + }, + { + "id":"f925b45e-3029-4432-b099-e84bb36e8c11", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T18:56:02.681Z", + "completed":"2016-07-12T18:56:02.681Z", + "new_balance":"5474.33", + "value":"-2.46" + } + }, + { + "id":"fbc8eda8-cf1a-4257-863f-22874fee2096", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:31:18.678Z", + "completed":"2016-07-12T19:31:18.678Z", + "new_balance":"5469.86", + "value":"-4.47" + } + }, + { + "id":"aa3c35cc-d108-49e1-b22d-9380937a777c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T06:43:18.740Z", + "completed":"2016-07-15T06:43:18.740Z", + "new_balance":"5467.23", + "value":"-2.63" + } + }, + { + "id":"7d569b6c-0574-4881-b69f-997df6bbdeeb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:05:53.659Z", + "completed":"2016-07-16T15:05:53.659Z", + "new_balance":"5466.27", + "value":"-0.96" + } + }, + { + "id":"42a3bc3c-7267-40d3-8724-253871e44a83", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T19:16:58.177Z", + "completed":"2016-07-16T19:16:58.177Z", + "new_balance":"5461.12", + "value":"-5.15" + } + }, + { + "id":"e4dca72f-7624-4ce7-b289-94428802f0e2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T11:11:41.399Z", + "completed":"2016-07-17T11:11:41.399Z", + "new_balance":"5454.37", + "value":"-6.75" + } + }, + { + "id":"21c87033-cfe5-419f-88f6-2a33afd69c08", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T19:13:55.210Z", + "completed":"2016-07-17T19:13:55.210Z", + "new_balance":"5451.78", + "value":"-2.59" + } + }, + { + "id":"2d4949a8-03c5-44fa-89d7-0e6e5841c2d2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T09:04:36.554Z", + "completed":"2016-07-19T09:04:36.554Z", + "new_balance":"5449.36", + "value":"-2.42" + } + }, + { + "id":"6d1d4090-4df4-4d80-ba8b-1ed490153ac4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T06:56:17.172Z", + "completed":"2016-07-20T06:56:17.172Z", + "new_balance":"5444.21", + "value":"-5.15" + } + }, + { + "id":"a6fa657b-e76e-4aa7-830e-6bcb8be4cef1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T00:56:51.259Z", + "completed":"2016-07-23T00:56:51.259Z", + "new_balance":"5442.79", + "value":"-1.42" + } + }, + { + "id":"a8294ab0-fe2f-4e17-9120-2bc80e20ed72", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T07:29:12.556Z", + "completed":"2016-07-26T07:29:12.556Z", + "new_balance":"5437.98", + "value":"-4.81" + } + }, + { + "id":"46618ed7-a7ba-496e-aeb1-c614e7ffb768", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T14:06:07.206Z", + "completed":"2016-07-27T14:06:07.206Z", + "new_balance":"5543.61", + "value":"105.63" + } + }, + { + "id":"2e9989f8-0763-4bd7-bdf2-2c88cb84ad45", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T21:21:31.315Z", + "completed":"2016-07-28T21:21:31.315Z", + "new_balance":"5540.17", + "value":"-3.44" + } + }, + { + "id":"fb39bdac-6e88-40b6-8131-1d001e3dc41c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T01:50:03.879Z", + "completed":"2016-07-30T01:50:03.879Z", + "new_balance":"5535.90", + "value":"-4.27" + } + }, + { + "id":"2aee6ffc-cb25-4edd-bb8d-80665777b6b8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T17:28:16.953Z", + "completed":"2016-08-01T17:28:16.953Z", + "new_balance":"5529.50", + "value":"-6.40" + } + }, + { + "id":"e4c375fa-65fa-4e2c-bf75-3d05b173085e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T09:04:38.673Z", + "completed":"2016-08-03T09:04:38.673Z", + "new_balance":"5527.04", + "value":"-2.46" + } + }, + { + "id":"96bbaa94-b116-49d8-9546-888e9df3c111", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:11:38.984Z", + "completed":"2016-08-03T12:11:38.984Z", + "new_balance":"5519.85", + "value":"-7.19" + } + }, + { + "id":"933f0500-26ab-487e-bb81-0cf27a6b2325", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T19:43:40.324Z", + "completed":"2016-08-03T19:43:40.324Z", + "new_balance":"5516.41", + "value":"-3.44" + } + }, + { + "id":"5cbf6308-d375-44fc-a0bd-94322f656b9e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T22:58:53.793Z", + "completed":"2016-08-03T22:58:53.793Z", + "new_balance":"5458.18", + "value":"-58.23" + } + }, + { + "id":"876d8ee8-1782-4cea-a179-1302d8784619", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T15:01:35.371Z", + "completed":"2016-08-08T15:01:35.371Z", + "new_balance":"5453.76", + "value":"-4.42" + } + }, + { + "id":"6596052e-40b2-4b98-a826-7006b2f3d252", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T23:29:47.983Z", + "completed":"2016-08-08T23:29:47.983Z", + "new_balance":"5448.61", + "value":"-5.15" + } + }, + { + "id":"1833c7ca-a368-4c21-b690-7c74b212c910", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T23:12:41.587Z", + "completed":"2016-08-11T23:12:41.587Z", + "new_balance":"5449.72", + "value":"1.11" + } + }, + { + "id":"44ff94ca-5066-42f0-9aab-b93f009eefd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T23:46:32.461Z", + "completed":"2016-08-13T23:46:32.461Z", + "new_balance":"5447.40", + "value":"-2.32" + } + }, + { + "id":"700c28ed-31ae-48f5-addf-9d09eefbcd80", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:52:25.153Z", + "completed":"2016-08-14T09:52:25.153Z", + "new_balance":"5444.37", + "value":"-3.03" + } + }, + { + "id":"092250e1-099b-48eb-96bd-187d792a8fbf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T23:58:18.179Z", + "completed":"2016-08-17T23:58:18.179Z", + "new_balance":"5442.97", + "value":"-1.40" + } + }, + { + "id":"736f603a-0e6d-4245-bbf1-9e206320145a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T13:52:39.712Z", + "completed":"2016-08-21T13:52:39.712Z", + "new_balance":"5438.48", + "value":"-4.49" + } + }, + { + "id":"8a210653-547f-4470-8a03-7c5b97237588", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T08:00:06.937Z", + "completed":"2016-08-23T08:00:06.937Z", + "new_balance":"5434.24", + "value":"-4.24" + } + }, + { + "id":"1c6d56a4-7a70-4754-af4f-8eaec16c2e85", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:56:57.019Z", + "completed":"2016-08-23T23:56:57.019Z", + "new_balance":"5429.09", + "value":"-5.15" + } + }, + { + "id":"c2a0e622-9d24-4f79-9933-f3974c7d0000", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T22:03:34.500Z", + "completed":"2016-08-24T22:03:34.500Z", + "new_balance":"5427.69", + "value":"-1.40" + } + }, + { + "id":"3b119358-894c-4a33-b19a-8cd667c07638", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T12:08:41.163Z", + "completed":"2016-08-27T12:08:41.163Z", + "new_balance":"5425.67", + "value":"-2.02" + } + }, + { + "id":"fa9a1c6e-2030-4049-a4ef-7bef33e87f46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T18:01:38.590Z", + "completed":"2016-08-27T18:01:38.590Z", + "new_balance":"5420.86", + "value":"-4.81" + } + }, + { + "id":"4d097f59-f4c3-4ccb-bb94-7416dc355fc8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T18:40:53.299Z", + "completed":"2016-08-27T18:40:53.299Z", + "new_balance":"5526.49", + "value":"105.63" + } + }, + { + "id":"0cb0c78f-d443-4fe0-a883-f6b3852dfc6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T14:03:01.145Z", + "completed":"2016-08-28T14:03:01.145Z", + "new_balance":"5523.05", + "value":"-3.44" + } + }, + { + "id":"de7ea945-4c0d-4835-bf28-9fc6f3838943", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T20:28:14.963Z", + "completed":"2016-08-30T20:28:14.963Z", + "new_balance":"5518.78", + "value":"-4.27" + } + }, + { + "id":"876b88c1-c026-4070-b009-b3b675347506", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:43:01.901Z", + "completed":"2016-09-01T17:43:01.901Z", + "new_balance":"5512.38", + "value":"-6.40" + } + }, + { + "id":"c5d42376-59ec-46f9-b1ad-d738b938ba54", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T04:55:57.501Z", + "completed":"2016-09-03T04:55:57.501Z", + "new_balance":"5505.19", + "value":"-7.19" + } + }, + { + "id":"132c4ad3-5b61-4552-9019-db0847699f53", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T11:54:58.519Z", + "completed":"2016-09-03T11:54:58.519Z", + "new_balance":"5501.75", + "value":"-3.44" + } + }, + { + "id":"7ec06847-a6c8-4a7b-8651-bcc3d32c976e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T13:07:57.048Z", + "completed":"2016-09-03T13:07:57.048Z", + "new_balance":"5499.29", + "value":"-2.46" + } + }, + { + "id":"03d73407-d146-40ea-a845-0fe71278d4a3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T17:14:32.900Z", + "completed":"2016-09-03T17:14:32.900Z", + "new_balance":"5441.06", + "value":"-58.23" + } + }, + { + "id":"071fb3b6-a0d7-4598-a1be-3b54e27edc24", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T13:54:58.537Z", + "completed":"2016-09-05T13:54:58.537Z", + "new_balance":"5436.17", + "value":"-4.89" + } + }, + { + "id":"d3402d28-93e1-4606-8d0e-0eea10442c7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T16:04:00.868Z", + "completed":"2016-09-05T16:04:00.868Z", + "new_balance":"5431.02", + "value":"-5.15" + } + }, + { + "id":"aa7268b6-6217-4211-8150-8c93ef1babda", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T08:32:23.300Z", + "completed":"2016-09-07T08:32:23.300Z", + "new_balance":"5429.15", + "value":"-1.87" + } + }, + { + "id":"33e2fe3b-f2a1-46d9-a9fa-991b908c30f3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T07:46:46.800Z", + "completed":"2016-09-09T07:46:46.800Z", + "new_balance":"5424.00", + "value":"-5.15" + } + }, + { + "id":"4be78318-d3a2-4e66-b4db-7edc7633499d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T01:53:34.593Z", + "completed":"2016-09-11T01:53:34.593Z", + "new_balance":"5422.42", + "value":"-1.58" + } + }, + { + "id":"df4085bb-9d60-47a1-b762-3bc7029669af", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T15:33:56.599Z", + "completed":"2016-09-13T15:33:56.599Z", + "new_balance":"5415.50", + "value":"-6.92" + } + }, + { + "id":"a5b77783-043e-456c-90a3-818cdb49d731", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T03:11:33.915Z", + "completed":"2016-09-14T03:11:33.915Z", + "new_balance":"5423.79", + "value":"8.29" + } + }, + { + "id":"f8e0049a-959f-481a-bd4d-a8f4f9650669", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T23:32:41.413Z", + "completed":"2016-09-14T23:32:41.413Z", + "new_balance":"5422.55", + "value":"-1.24" + } + }, + { + "id":"93144ad9-bc80-431f-877a-1e79ded1c499", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T08:00:29.282Z", + "completed":"2016-09-15T08:00:29.282Z", + "new_balance":"5418.28", + "value":"-4.27" + } + }, + { + "id":"8fdf5dca-2133-48b6-8e19-08ce8c3cf502", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T02:28:13.340Z", + "completed":"2016-09-26T02:28:13.340Z", + "new_balance":"5416.14", + "value":"-2.14" + } + }, + { + "id":"3da02097-5bee-49fd-afa7-a306ccf47464", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T09:00:11.131Z", + "completed":"2016-09-26T09:00:11.131Z", + "new_balance":"5414.15", + "value":"-1.99" + } + }, + { + "id":"dbe3afdb-7775-4ca4-a270-6c2138954c2e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T12:40:04.146Z", + "completed":"2016-09-26T12:40:04.146Z", + "new_balance":"5409.46", + "value":"-4.69" + } + }, + { + "id":"2244d622-3e92-411e-a6ee-de298e9e173f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T09:12:59.019Z", + "completed":"2016-09-27T09:12:59.019Z", + "new_balance":"5515.09", + "value":"105.63" + } + }, + { + "id":"c44da427-d001-4247-9c1b-ccfb587dfc1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T13:28:44.826Z", + "completed":"2016-09-27T13:28:44.826Z", + "new_balance":"5509.94", + "value":"-5.15" + } + }, + { + "id":"733f2e8c-bfd2-4fb1-abc8-646066b230fd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T22:19:26.457Z", + "completed":"2016-09-27T22:19:26.457Z", + "new_balance":"5505.52", + "value":"-4.42" + } + }, + { + "id":"68b8ca29-0e5c-4f8d-bf6a-6f4efde325c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T21:20:00.272Z", + "completed":"2016-09-28T21:20:00.272Z", + "new_balance":"5502.08", + "value":"-3.44" + } + }, + { + "id":"87a111b2-eed4-475d-93b8-c064da55fdf3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T17:07:50.724Z", + "completed":"2016-09-30T17:07:50.724Z", + "new_balance":"5497.81", + "value":"-4.27" + } + }, + { + "id":"e33033cb-7849-4e23-8037-34afa67362c4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T10:01:32.964Z", + "completed":"2016-10-01T10:01:32.964Z", + "new_balance":"5490.62", + "value":"-7.19" + } + }, + { + "id":"65fae595-404a-4c5a-bcad-079db273f988", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T15:32:05.639Z", + "completed":"2016-10-01T15:32:05.639Z", + "new_balance":"5484.22", + "value":"-6.40" + } + }, + { + "id":"2e987555-a929-4394-93a5-06412c27dc50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T15:40:27.817Z", + "completed":"2016-10-01T15:40:27.817Z", + "new_balance":"5425.99", + "value":"-58.23" + } + }, + { + "id":"0f37473f-dbab-4286-8fd5-50d11379f880", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T18:06:01.108Z", + "completed":"2016-10-01T18:06:01.108Z", + "new_balance":"5422.55", + "value":"-3.44" + } + }, + { + "id":"059acb4c-850a-4be2-af4c-e339e0dd4c87", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T20:23:38.713Z", + "completed":"2016-10-01T20:23:38.713Z", + "new_balance":"5420.09", + "value":"-2.46" + } + }, + { + "id":"c785c27b-5f93-4298-9dde-095d0190523b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T05:22:49.777Z", + "completed":"2016-10-05T05:22:49.777Z", + "new_balance":"5414.94", + "value":"-5.15" + } + }, + { + "id":"3d4556c0-5ca8-4b89-ba20-6616aed0315d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T09:09:38.801Z", + "completed":"2016-10-05T09:09:38.801Z", + "new_balance":"5410.52", + "value":"-4.42" + } + }, + { + "id":"b9e967af-fe03-4800-a722-de6f7df30171", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:11:25.188Z", + "completed":"2016-10-05T18:11:25.188Z", + "new_balance":"5409.37", + "value":"-1.15" + } + }, + { + "id":"2858aeb5-e883-46fc-a188-2e3f33be6cfd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T23:36:58.611Z", + "completed":"2016-10-05T23:36:58.611Z", + "new_balance":"5405.70", + "value":"-3.67" + } + }, + { + "id":"19582fbf-6b77-4250-9268-938dccb074b3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T10:51:52.730Z", + "completed":"2016-10-07T10:51:52.730Z", + "new_balance":"5403.38", + "value":"-2.32" + } + }, + { + "id":"5305ab35-d89c-41ac-b4fe-f3e2dde07eb0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T06:00:28.180Z", + "completed":"2016-10-09T06:00:28.180Z", + "new_balance":"5398.23", + "value":"-5.15" + } + }, + { + "id":"1991ef6d-bf3a-442e-8af3-2e7a7bca7be2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T20:58:58.766Z", + "completed":"2016-10-09T20:58:58.766Z", + "new_balance":"5395.85", + "value":"-2.38" + } + }, + { + "id":"dc333d31-a292-4a61-b6bf-63c7c335ac79", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:28:57.953Z", + "completed":"2016-10-10T12:28:57.953Z", + "new_balance":"5393.12", + "value":"-2.73" + } + }, + { + "id":"c5003df7-f8a2-4682-bcb3-e99488f5adce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T15:26:16.914Z", + "completed":"2016-10-10T15:26:16.914Z", + "new_balance":"5390.66", + "value":"-2.46" + } + }, + { + "id":"02edd871-0938-4a5b-9107-3b83866175d5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T16:01:12.452Z", + "completed":"2016-10-10T16:01:12.452Z", + "new_balance":"5386.19", + "value":"-4.47" + } + }, + { + "id":"c72415d1-d2fd-4f4c-9198-d3cbdeaa3cc7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T17:01:02.560Z", + "completed":"2016-10-10T17:01:02.560Z", + "new_balance":"5383.56", + "value":"-2.63" + } + }, + { + "id":"d932a841-c4f3-4c20-a9ef-c41cd117112c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T00:56:21.614Z", + "completed":"2016-10-11T00:56:21.614Z", + "new_balance":"5380.97", + "value":"-2.59" + } + }, + { + "id":"10c09fcf-111b-4441-9853-607903175aed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T03:47:42.420Z", + "completed":"2016-10-11T03:47:42.420Z", + "new_balance":"5374.22", + "value":"-6.75" + } + }, + { + "id":"777aa521-745e-4ef1-bec3-512e8835c7f1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T10:36:47.166Z", + "completed":"2016-10-11T10:36:47.166Z", + "new_balance":"5371.80", + "value":"-2.42" + } + }, + { + "id":"d29a1fa2-f7a5-4b99-8310-54ab53777451", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T14:31:47.739Z", + "completed":"2016-10-11T14:31:47.739Z", + "new_balance":"5366.65", + "value":"-5.15" + } + }, + { + "id":"a8d6c289-961f-4338-b911-163f3a9ae914", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T16:24:08.845Z", + "completed":"2016-10-11T16:24:08.845Z", + "new_balance":"5365.69", + "value":"-0.96" + } + }, + { + "id":"56d5559e-0b20-48f9-a9b0-b787ffbeba6a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T06:04:07.435Z", + "completed":"2016-10-21T06:04:07.435Z", + "new_balance":"5360.54", + "value":"-5.15" + } + }, + { + "id":"05aa0413-3b58-4d2c-9ede-142840296eb2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T12:44:41.213Z", + "completed":"2016-10-23T12:44:41.213Z", + "new_balance":"5359.12", + "value":"-1.42" + } + }, + { + "id":"4dd023ec-ee45-4695-8bac-31d0d56f3796", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T05:44:39.623Z", + "completed":"2016-10-29T05:44:39.623Z", + "new_balance":"5464.75", + "value":"105.63" + } + }, + { + "id":"602f8300-c4f1-4d6f-bafb-e8fb80a29aea", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T17:20:15.232Z", + "completed":"2016-10-29T17:20:15.232Z", + "new_balance":"5461.31", + "value":"-3.44" + } + }, + { + "id":"64911687-3cfc-40e1-be39-30fad287945f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T20:55:10.739Z", + "completed":"2016-10-29T20:55:10.739Z", + "new_balance":"5456.50", + "value":"-4.81" + } + }, + { + "id":"ddb583f7-1e25-4d16-bb77-a380ed46f7e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T04:33:27.497Z", + "completed":"2016-10-30T04:33:27.497Z", + "new_balance":"5452.23", + "value":"-4.27" + } + }, + { + "id":"14865374-f36b-4383-bb9c-022775c3ffa7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T02:14:46.356Z", + "completed":"2016-11-02T02:14:46.356Z", + "new_balance":"5445.04", + "value":"-7.19" + } + }, + { + "id":"8d4965ad-fadc-4482-90f2-f5beb31d3d7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T03:11:32.307Z", + "completed":"2016-11-02T03:11:32.307Z", + "new_balance":"5442.58", + "value":"-2.46" + } + }, + { + "id":"3fb39a4b-a0ee-4c22-a8b4-cc64b0bbad42", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:02:42.777Z", + "completed":"2016-11-02T19:02:42.777Z", + "new_balance":"5384.35", + "value":"-58.23" + } + }, + { + "id":"e643161b-6323-4f25-a2b2-c5bf07857742", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T21:23:24.081Z", + "completed":"2016-11-02T21:23:24.081Z", + "new_balance":"5377.95", + "value":"-6.40" + } + }, + { + "id":"bd4fef09-490c-4a64-9d85-c5295ddf997c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T17:22:38.391Z", + "completed":"2016-11-06T17:22:38.391Z", + "new_balance":"5373.53", + "value":"-4.42" + } + }, + { + "id":"cfd94def-2412-4445-bdf2-68c1391a7563", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:27:38.782Z", + "completed":"2016-11-07T07:27:38.782Z", + "new_balance":"5370.50", + "value":"-3.03" + } + }, + { + "id":"65e8622e-77ef-4b1e-911f-cea42fad5226", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:52:13.029Z", + "completed":"2016-11-07T14:52:13.029Z", + "new_balance":"5368.18", + "value":"-2.32" + } + }, + { + "id":"81330797-6c78-40f0-a889-6dbca5a1a3d8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T16:42:19.113Z", + "completed":"2016-11-07T16:42:19.113Z", + "new_balance":"5363.69", + "value":"-4.49" + } + }, + { + "id":"c25d3366-389c-4ed6-a4a3-e14339c83dd7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T23:11:44.694Z", + "completed":"2016-11-07T23:11:44.694Z", + "new_balance":"5362.29", + "value":"-1.40" + } + }, + { + "id":"55a0395c-1e7f-41cf-a883-ffd4ea165a26", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:12:30.790Z", + "completed":"2016-11-08T07:12:30.790Z", + "new_balance":"5358.05", + "value":"-4.24" + } + }, + { + "id":"fa84115c-8ae8-4282-ae4d-f04486ead5d0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T22:09:16.411Z", + "completed":"2016-11-09T22:09:16.411Z", + "new_balance":"5354.61", + "value":"-3.44" + } + }, + { + "id":"44438665-687f-44e2-a993-550fb431178a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T03:43:54.619Z", + "completed":"2016-11-13T03:43:54.619Z", + "new_balance":"5349.46", + "value":"-5.15" + } + }, + { + "id":"e1fac84f-d1dc-4372-be39-573da23a194d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T03:48:50.837Z", + "completed":"2016-11-26T03:48:50.837Z", + "new_balance":"5348.06", + "value":"-1.40" + } + }, + { + "id":"e7bcaf4a-6862-4cdd-93af-01929ffc1b11", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T16:11:01.065Z", + "completed":"2016-11-26T16:11:01.065Z", + "new_balance":"5342.91", + "value":"-5.15" + } + }, + { + "id":"596c7b23-fd5d-47ab-a17e-5800b07be668", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T01:00:33.446Z", + "completed":"2016-11-27T01:00:33.446Z", + "new_balance":"5340.89", + "value":"-2.02" + } + }, + { + "id":"57fe9c11-dc48-424b-b6c5-40021fb08ebf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T20:18:54.797Z", + "completed":"2016-11-27T20:18:54.797Z", + "new_balance":"5336.08", + "value":"-4.81" + } + }, + { + "id":"e9a4a740-e652-4fc4-a43f-15d31cadaa46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T02:11:37.798Z", + "completed":"2016-11-30T02:11:37.798Z", + "new_balance":"5331.81", + "value":"-4.27" + } + }, + { + "id":"31a2ee02-9130-4ebd-a2a8-8679b462ea32", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T05:45:52.960Z", + "completed":"2016-11-30T05:45:52.960Z", + "new_balance":"5328.37", + "value":"-3.44" + } + }, + { + "id":"fd730760-fa3d-4065-8b28-6a9bc792969d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T16:16:01.575Z", + "completed":"2016-11-30T16:16:01.575Z", + "new_balance":"5434.00", + "value":"105.63" + } + }, + { + "id":"d374bafe-f707-4bf1-a2a5-091c660ff135", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:26:52.654Z", + "completed":"2016-12-01T04:26:52.654Z", + "new_balance":"5432.13", + "value":"-1.87" + } + }, + { + "id":"b72a8d6f-b07f-40f1-8be4-d54a34f34355", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T08:45:06.429Z", + "completed":"2016-12-01T08:45:06.429Z", + "new_balance":"5426.98", + "value":"-5.15" + } + }, + { + "id":"eb331e5a-f67a-4022-9d3e-4d2c56838d69", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T09:20:47.019Z", + "completed":"2016-12-01T09:20:47.019Z", + "new_balance":"5424.52", + "value":"-2.46" + } + }, + { + "id":"219bfcfb-d8a5-4b66-8925-907c5c439539", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T09:40:53.389Z", + "completed":"2016-12-01T09:40:53.389Z", + "new_balance":"5418.12", + "value":"-6.40" + } + }, + { + "id":"d75071a3-8447-4c3f-b573-22a2a68a8443", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T10:55:06.908Z", + "completed":"2016-12-01T10:55:06.908Z", + "new_balance":"5414.68", + "value":"-3.44" + } + }, + { + "id":"11db20f5-709d-48d8-88e4-2dc2ca6baad8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T12:21:14.301Z", + "completed":"2016-12-01T12:21:14.301Z", + "new_balance":"5409.79", + "value":"-4.89" + } + }, + { + "id":"a4f1415c-0d7c-44e7-9b6f-c26571752775", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T15:09:24.557Z", + "completed":"2016-12-01T15:09:24.557Z", + "new_balance":"5402.60", + "value":"-7.19" + } + }, + { + "id":"3a3ae456-a5e5-456a-a740-011a3251071d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T15:30:03.711Z", + "completed":"2016-12-01T15:30:03.711Z", + "new_balance":"5344.37", + "value":"-58.23" + } + }, + { + "id":"28e279ca-a631-41a6-a781-b06559632e8e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T23:40:13.659Z", + "completed":"2016-12-01T23:40:13.659Z", + "new_balance":"5339.22", + "value":"-5.15" + } + }, + { + "id":"50d8bf18-5162-4feb-ba95-0ddd62d9abe9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T03:00:33.292Z", + "completed":"2016-12-02T03:00:33.292Z", + "new_balance":"5337.64", + "value":"-1.58" + } + }, + { + "id":"093dc6c2-73f2-4f1f-801a-ed38ade16f2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T05:29:31.309Z", + "completed":"2016-12-02T05:29:31.309Z", + "new_balance":"5336.40", + "value":"-1.24" + } + }, + { + "id":"81b4862a-fffa-496d-af35-9078291e15a9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T05:39:53.997Z", + "completed":"2016-12-02T05:39:53.997Z", + "new_balance":"5329.48", + "value":"-6.92" + } + }, + { + "id":"eb2e8fc6-a9b8-4f66-babb-d311fbf96bb8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T02:12:49.854Z", + "completed":"2016-12-04T02:12:49.854Z", + "new_balance":"5325.21", + "value":"-4.27" + } + }, + { + "id":"b8a9e1d8-d14b-4115-aa7e-d96ee96444b1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T04:40:24.322Z", + "completed":"2016-12-04T04:40:24.322Z", + "new_balance":"5320.52", + "value":"-4.69" + } + }, + { + "id":"e4e25349-c5f1-4d4a-85fb-a17a6bd80a13", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T05:02:04.903Z", + "completed":"2016-12-04T05:02:04.903Z", + "new_balance":"5318.38", + "value":"-2.14" + } + }, + { + "id":"c8ebda3d-2547-4018-a9a0-2dc13e0d84e8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T16:59:54.645Z", + "completed":"2016-12-05T16:59:54.645Z", + "new_balance":"5313.96", + "value":"-4.42" + } + }, + { + "id":"8b851429-f399-45dc-9545-4f986b9f780b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T20:53:29.991Z", + "completed":"2016-12-05T20:53:29.991Z", + "new_balance":"5311.97", + "value":"-1.99" + } + }, + { + "id":"daf4183c-6849-4ad8-9716-be8455968d7d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T23:46:17.242Z", + "completed":"2016-12-18T23:46:17.242Z", + "new_balance":"5306.82", + "value":"-5.15" + } + }, + { + "id":"be69e8a8-ab05-4dce-9133-8c09311b7b50", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T00:32:30.576Z", + "completed":"2016-12-30T00:32:30.576Z", + "new_balance":"5303.71", + "value":"-3.11" + } + }, + { + "id":"10f62869-2798-49df-b9f7-d8d27ca3ccb3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T12:53:26.633Z", + "completed":"2016-12-30T12:53:26.633Z", + "new_balance":"5299.44", + "value":"-4.27" + } + }, + { + "id":"923d0aac-4b9e-476f-a723-3dc4e832397c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T13:10:41.719Z", + "completed":"2016-12-30T13:10:41.719Z", + "new_balance":"5296.00", + "value":"-3.44" + } + }, + { + "id":"87fbe974-6e2d-419f-9b49-3568a72151cd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T18:41:39.468Z", + "completed":"2016-12-30T18:41:39.468Z", + "new_balance":"5401.63", + "value":"105.63" + } + }, + { + "id":"5ccba187-3251-41a6-976c-03cf202a63fc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T10:37:26.485Z", + "completed":"2017-01-01T10:37:26.485Z", + "new_balance":"5395.23", + "value":"-6.40" + } + }, + { + "id":"4d4df23b-6b3f-4159-9adf-d4c0e0973e25", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T22:32:01.293Z", + "completed":"2017-01-01T22:32:01.293Z", + "new_balance":"5388.83", + "value":"-6.40" + } + }, + { + "id":"ac303f08-ec66-4714-b347-85d2a27d7dc5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T07:32:13.272Z", + "completed":"2017-01-03T07:32:13.272Z", + "new_balance":"5381.64", + "value":"-7.19" + } + }, + { + "id":"50f5d58b-d1bf-4023-a99e-402bf895b3d1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T16:29:47.096Z", + "completed":"2017-01-03T16:29:47.096Z", + "new_balance":"5323.41", + "value":"-58.23" + } + }, + { + "id":"8493ff26-c31a-44dd-8161-bd01a8f8eada", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T19:37:58.392Z", + "completed":"2017-01-03T19:37:58.392Z", + "new_balance":"5319.97", + "value":"-3.44" + } + }, + { + "id":"dfb9d52b-2f57-45d5-a37e-1acf615a9e56", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T20:14:47.110Z", + "completed":"2017-01-03T20:14:47.110Z", + "new_balance":"5317.51", + "value":"-2.46" + } + }, + { + "id":"c3b7c3d9-b0ce-4e01-a35a-05302c524246", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T05:25:58.466Z", + "completed":"2017-01-05T05:25:58.466Z", + "new_balance":"5312.36", + "value":"-5.15" + } + }, + { + "id":"5cfe7793-106c-46f5-afff-3f6855258a7d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T10:25:24.959Z", + "completed":"2017-01-05T10:25:24.959Z", + "new_balance":"5311.21", + "value":"-1.15" + } + }, + { + "id":"dcaf139f-d8d2-4b13-9a47-b06a8a2877c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T18:46:11.916Z", + "completed":"2017-01-05T18:46:11.916Z", + "new_balance":"5306.79", + "value":"-4.42" + } + }, + { + "id":"ad33ef45-900d-43e3-94e7-a20dd0510398", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T11:22:17.889Z", + "completed":"2017-01-06T11:22:17.889Z", + "new_balance":"5304.47", + "value":"-2.32" + } + }, + { + "id":"0851db4a-9012-4a28-a14b-dc80d7409575", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T21:06:26.896Z", + "completed":"2017-01-06T21:06:26.896Z", + "new_balance":"5300.80", + "value":"-3.67" + } + }, + { + "id":"061aafe7-6217-4fe1-8c6d-3e08951d474c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T00:19:12.436Z", + "completed":"2017-01-07T00:19:12.436Z", + "new_balance":"5296.33", + "value":"-4.47" + } + }, + { + "id":"9ddbcf9e-dfa0-4fd7-85f1-6318d1301385", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T01:31:54.188Z", + "completed":"2017-01-10T01:31:54.188Z", + "new_balance":"5293.95", + "value":"-2.38" + } + }, + { + "id":"13857cc2-8a84-4c01-9a3e-15acb8a16522", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T11:05:14.919Z", + "completed":"2017-01-10T11:05:14.919Z", + "new_balance":"5288.80", + "value":"-5.15" + } + }, + { + "id":"15b432e1-4ab6-4bfb-92b7-fa19e7566039", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T09:17:25.887Z", + "completed":"2017-01-12T09:17:25.887Z", + "new_balance":"5286.34", + "value":"-2.46" + } + }, + { + "id":"656c6dfb-dc00-4493-95fb-327dc9d16176", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T10:15:55.021Z", + "completed":"2017-01-12T10:15:55.021Z", + "new_balance":"5283.61", + "value":"-2.73" + } + }, + { + "id":"ba7062df-eb66-41da-87a4-3e6e329e0097", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T22:17:10.942Z", + "completed":"2017-01-12T22:17:10.942Z", + "new_balance":"5279.14", + "value":"-4.47" + } + }, + { + "id":"0f1667b5-7438-4863-b58d-27f96a6c7cc1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T00:05:42.261Z", + "completed":"2017-01-15T00:05:42.261Z", + "new_balance":"5276.51", + "value":"-2.63" + } + }, + { + "id":"fa2c47d4-8c06-4991-a09d-72b8733709f5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T05:34:49.604Z", + "completed":"2017-01-16T05:34:49.604Z", + "new_balance":"5271.36", + "value":"-5.15" + } + }, + { + "id":"38ca6091-0958-4933-9bae-d111424b3a0d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T05:38:59.254Z", + "completed":"2017-01-16T05:38:59.254Z", + "new_balance":"5270.40", + "value":"-0.96" + } + }, + { + "id":"3e5ef0fd-4a5f-4b02-958e-9fa4756fc391", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T09:01:01.442Z", + "completed":"2017-01-17T09:01:01.442Z", + "new_balance":"5263.65", + "value":"-6.75" + } + }, + { + "id":"c164295c-fe57-4133-b10c-5324b9af05fb", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T12:40:38.215Z", + "completed":"2017-01-17T12:40:38.215Z", + "new_balance":"5261.06", + "value":"-2.59" + } + }, + { + "id":"5db13be1-75ea-4c1c-9d41-a67e2d7b8514", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T20:02:40.706Z", + "completed":"2017-01-19T20:02:40.706Z", + "new_balance":"5258.64", + "value":"-2.42" + } + }, + { + "id":"b6d6d149-e01b-4427-9702-675ef6eb1b0a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T02:30:39.924Z", + "completed":"2017-01-20T02:30:39.924Z", + "new_balance":"5253.49", + "value":"-5.15" + } + }, + { + "id":"ca528451-a552-419d-b1c9-dcc5beea0759", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T00:54:00.913Z", + "completed":"2017-01-23T00:54:00.913Z", + "new_balance":"5252.07", + "value":"-1.42" + } + }, + { + "id":"c3cbaa59-c512-49d4-8077-25681fc8c45d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T12:00:52.981Z", + "completed":"2017-01-26T12:00:52.981Z", + "new_balance":"5247.26", + "value":"-4.81" + } + }, + { + "id":"74ee5736-76a6-44bc-ba0c-82df1daddd3e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T09:04:24.813Z", + "completed":"2017-01-27T09:04:24.813Z", + "new_balance":"5352.89", + "value":"105.63" + } + }, + { + "id":"d0ab8316-d64f-4d85-9aa5-dedc957e4a07", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T18:50:52.556Z", + "completed":"2017-01-28T18:50:52.556Z", + "new_balance":"5349.45", + "value":"-3.44" + } + }, + { + "id":"bd1b0ab9-e9d2-4b70-aa13-348555ec8f06", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T12:35:50.291Z", + "completed":"2017-01-30T12:35:50.291Z", + "new_balance":"5345.18", + "value":"-4.27" + } + }, + { + "id":"6a98bd63-896b-40a1-893a-59bc9ecfb0a9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T06:26:07.001Z", + "completed":"2017-02-03T06:26:07.001Z", + "new_balance":"5341.74", + "value":"-3.44" + } + }, + { + "id":"46bcc215-eedd-452c-b115-6121d33096ba", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T10:35:20.459Z", + "completed":"2017-02-03T10:35:20.459Z", + "new_balance":"5283.51", + "value":"-58.23" + } + }, + { + "id":"1a9bba32-4e3e-4068-85ff-0c7c981d5296", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T15:38:05.757Z", + "completed":"2017-02-03T15:38:05.757Z", + "new_balance":"5276.32", + "value":"-7.19" + } + }, + { + "id":"90c650c3-0f27-4afb-8412-6fbbd9dff420", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T16:10:10.517Z", + "completed":"2017-02-03T16:10:10.517Z", + "new_balance":"5273.86", + "value":"-2.46" + } + }, + { + "id":"aa17a6f5-0eec-4d75-bc23-2e111e4fe57d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T05:56:56.979Z", + "completed":"2017-02-08T05:56:56.979Z", + "new_balance":"5268.71", + "value":"-5.15" + } + }, + { + "id":"7e36cfd1-a059-44dc-a1df-d472d6d800dc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T14:14:08.477Z", + "completed":"2017-02-08T14:14:08.477Z", + "new_balance":"5264.29", + "value":"-4.42" + } + }, + { + "id":"d74d84e2-a502-47c5-b468-8a1583aef552", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T05:14:57.663Z", + "completed":"2017-02-11T05:14:57.663Z", + "new_balance":"5265.40", + "value":"1.11" + } + }, + { + "id":"c0f8726a-9bcf-4ec2-93a6-ea4793dd58a7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T09:01:06.106Z", + "completed":"2017-02-13T09:01:06.106Z", + "new_balance":"5263.08", + "value":"-2.32" + } + }, + { + "id":"eedd32b2-e7e5-4413-8f14-e69abddce21c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T02:35:24.583Z", + "completed":"2017-02-14T02:35:24.583Z", + "new_balance":"5260.05", + "value":"-3.03" + } + }, + { + "id":"0dcd7d9b-a72b-429d-ba4a-1b9c0582d23c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T01:07:51.896Z", + "completed":"2017-02-17T01:07:51.896Z", + "new_balance":"5258.65", + "value":"-1.40" + } + }, + { + "id":"abb885ac-2217-43a8-921e-85ed4c745c92", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T08:31:31.842Z", + "completed":"2017-02-21T08:31:31.842Z", + "new_balance":"5254.16", + "value":"-4.49" + } + }, + { + "id":"02d540d3-a6e0-444b-ada4-920ef1e2e8ea", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T16:30:31.824Z", + "completed":"2017-02-23T16:30:31.824Z", + "new_balance":"5249.01", + "value":"-5.15" + } + }, + { + "id":"176ceaa1-61e5-4470-ae90-e90f2240ff1e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T22:38:58.463Z", + "completed":"2017-02-23T22:38:58.463Z", + "new_balance":"5244.77", + "value":"-4.24" + } + }, + { + "id":"3afddb99-b569-4fff-9e5e-5e636e67fa59", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T12:28:44.048Z", + "completed":"2017-02-24T12:28:44.048Z", + "new_balance":"5243.37", + "value":"-1.40" + } + }, + { + "id":"32c9e228-cabb-47b6-a0f5-618420711514", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T11:00:19.908Z", + "completed":"2017-02-27T11:00:19.908Z", + "new_balance":"5349.00", + "value":"105.63" + } + }, + { + "id":"d53a060a-a952-4d81-b4ad-c940fe71407e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T12:35:06.982Z", + "completed":"2017-02-27T12:35:06.982Z", + "new_balance":"5346.98", + "value":"-2.02" + } + }, + { + "id":"71e5f4ef-8985-4d35-be9d-4eb5799d1da2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T16:40:43.950Z", + "completed":"2017-02-27T16:40:43.950Z", + "new_balance":"5342.17", + "value":"-4.81" + } + }, + { + "id":"7754c962-b0ee-46d1-a40d-cdb516ca8c46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T10:22:26.936Z", + "completed":"2017-02-28T10:22:26.936Z", + "new_balance":"5337.90", + "value":"-4.27" + } + }, + { + "id":"1a684ad8-824f-443e-af29-26285a986f7e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T11:50:30.817Z", + "completed":"2017-02-28T11:50:30.817Z", + "new_balance":"5334.46", + "value":"-3.44" + } + }, + { + "id":"db5c3974-24f9-4e8b-ae00-49d034c69ff9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T16:27:49.340Z", + "completed":"2017-03-01T16:27:49.340Z", + "new_balance":"5328.06", + "value":"-6.40" + } + }, + { + "id":"799d9630-7c8f-402a-a40d-132ba831a9ee", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T02:35:36.615Z", + "completed":"2017-03-03T02:35:36.615Z", + "new_balance":"5324.62", + "value":"-3.44" + } + }, + { + "id":"7ae6c656-38a6-4735-9783-4ebcbeff8704", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T12:37:36.484Z", + "completed":"2017-03-03T12:37:36.484Z", + "new_balance":"5317.43", + "value":"-7.19" + } + }, + { + "id":"913896a8-fbfe-4cc0-851c-3fabc7c8188a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T19:17:11.327Z", + "completed":"2017-03-03T19:17:11.327Z", + "new_balance":"5259.20", + "value":"-58.23" + } + }, + { + "id":"9783b45b-5fdc-4a8c-a69d-c5e94c888df6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T21:37:16.453Z", + "completed":"2017-03-03T21:37:16.453Z", + "new_balance":"5256.74", + "value":"-2.46" + } + }, + { + "id":"57b9ba98-9489-44b1-987d-9c0172f42192", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T10:57:46.891Z", + "completed":"2017-03-05T10:57:46.891Z", + "new_balance":"5251.59", + "value":"-5.15" + } + }, + { + "id":"85034fa7-d693-4685-b223-517713494cde", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:16:59.837Z", + "completed":"2017-03-05T19:16:59.837Z", + "new_balance":"5246.70", + "value":"-4.89" + } + }, + { + "id":"1a81e0e3-89c3-4fe4-8688-5189f6484526", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T14:35:57.705Z", + "completed":"2017-03-07T14:35:57.705Z", + "new_balance":"5244.83", + "value":"-1.87" + } + }, + { + "id":"71d869bf-c148-450d-90f5-ef4408028e0e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T06:42:40.158Z", + "completed":"2017-03-09T06:42:40.158Z", + "new_balance":"5239.68", + "value":"-5.15" + } + }, + { + "id":"34497131-e6c6-4918-863e-80ce96a1402a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T20:54:27.907Z", + "completed":"2017-03-11T20:54:27.907Z", + "new_balance":"5238.10", + "value":"-1.58" + } + }, + { + "id":"bfa55bae-c9cb-443c-ac40-1e4709e4eb09", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T05:42:39.799Z", + "completed":"2017-03-13T05:42:39.799Z", + "new_balance":"5231.18", + "value":"-6.92" + } + }, + { + "id":"0185c1b1-edb1-4480-ad36-936e03eec3df", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T02:48:00.372Z", + "completed":"2017-03-14T02:48:00.372Z", + "new_balance":"5239.47", + "value":"8.29" + } + }, + { + "id":"88882969-0584-4696-bc45-378630941242", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:01:04.194Z", + "completed":"2017-03-14T08:01:04.194Z", + "new_balance":"5238.23", + "value":"-1.24" + } + }, + { + "id":"51a3cfda-7301-4bf6-b76e-58644dfc3112", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T14:29:58.797Z", + "completed":"2017-03-15T14:29:58.797Z", + "new_balance":"5233.96", + "value":"-4.27" + } + }, + { + "id":"226fe63f-aaf2-40dd-a4f6-1017e5e95a59", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T09:48:30.207Z", + "completed":"2017-03-26T09:48:30.207Z", + "new_balance":"5231.97", + "value":"-1.99" + } + }, + { + "id":"66c10da7-3696-4fcd-8e4a-0476ba6a2989", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T16:45:14.071Z", + "completed":"2017-03-26T16:45:14.071Z", + "new_balance":"5227.28", + "value":"-4.69" + } + }, + { + "id":"06960816-847f-4eca-b9e5-f54a2d364704", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T17:37:50.123Z", + "completed":"2017-03-26T17:37:50.123Z", + "new_balance":"5225.14", + "value":"-2.14" + } + }, + { + "id":"c4a22d11-66c9-4262-b1fa-abfb171c88ec", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T00:58:54.825Z", + "completed":"2017-03-27T00:58:54.825Z", + "new_balance":"5330.77", + "value":"105.63" + } + }, + { + "id":"0a1a55f2-9450-4c5b-a3a4-42fed6c52a66", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T11:50:29.452Z", + "completed":"2017-03-27T11:50:29.452Z", + "new_balance":"5325.62", + "value":"-5.15" + } + }, + { + "id":"c0ac7444-4fdf-485b-8378-9f5024e81783", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T23:04:25.426Z", + "completed":"2017-03-27T23:04:25.426Z", + "new_balance":"5321.20", + "value":"-4.42" + } + }, + { + "id":"ccc25f6c-fd8b-4d02-bc63-f6f73a362eed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T13:43:00.026Z", + "completed":"2017-03-28T13:43:00.026Z", + "new_balance":"5317.76", + "value":"-3.44" + } + }, + { + "id":"0db93cab-652d-4f02-a44a-2658228993d8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T06:57:43.640Z", + "completed":"2017-03-30T06:57:43.640Z", + "new_balance":"5313.49", + "value":"-4.27" + } + }, + { + "id":"5596f552-3bb0-4211-b657-618298b9e7b7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T01:33:31.398Z", + "completed":"2017-04-01T01:33:31.398Z", + "new_balance":"5255.26", + "value":"-58.23" + } + }, + { + "id":"2d450ae8-47ba-47c9-bc7e-4d01409ff422", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T03:34:21.157Z", + "completed":"2017-04-01T03:34:21.157Z", + "new_balance":"5251.82", + "value":"-3.44" + } + }, + { + "id":"f3fb210b-f40a-457a-af4f-9e88e3625335", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T07:46:28.383Z", + "completed":"2017-04-01T07:46:28.383Z", + "new_balance":"5249.36", + "value":"-2.46" + } + }, + { + "id":"ccc7d3d8-6917-4bef-88eb-582715e2475a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T17:27:06.514Z", + "completed":"2017-04-01T17:27:06.514Z", + "new_balance":"5242.96", + "value":"-6.40" + } + }, + { + "id":"ea38f1eb-ecf3-4ed4-b4d3-cb075352e949", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T23:10:35.278Z", + "completed":"2017-04-01T23:10:35.278Z", + "new_balance":"5235.77", + "value":"-7.19" + } + }, + { + "id":"19243586-6950-4540-9854-01b425dd0c2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T00:39:17.409Z", + "completed":"2017-04-05T00:39:17.409Z", + "new_balance":"5230.62", + "value":"-5.15" + } + }, + { + "id":"5b4009ad-4239-40e6-a329-8d2ff34e6140", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T09:29:28.022Z", + "completed":"2017-04-05T09:29:28.022Z", + "new_balance":"5226.95", + "value":"-3.67" + } + }, + { + "id":"43cdd6f2-1525-4865-a9f3-30e3bc47bb54", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T13:04:39.613Z", + "completed":"2017-04-05T13:04:39.613Z", + "new_balance":"5225.80", + "value":"-1.15" + } + }, + { + "id":"de5db98e-87c9-4962-b8c8-19be98d84d2f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T19:03:45.129Z", + "completed":"2017-04-05T19:03:45.129Z", + "new_balance":"5221.38", + "value":"-4.42" + } + }, + { + "id":"23b8c068-289f-4a77-bd6c-1bb95df64a10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T07:27:04.637Z", + "completed":"2017-04-07T07:27:04.637Z", + "new_balance":"5219.06", + "value":"-2.32" + } + }, + { + "id":"847a0819-7c0a-4e95-ba43-ba4f0342973d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T00:04:49.232Z", + "completed":"2017-04-09T00:04:49.232Z", + "new_balance":"5213.91", + "value":"-5.15" + } + }, + { + "id":"4905bb8d-36ac-4917-9e9a-7254c7bad902", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T00:08:22.950Z", + "completed":"2017-04-09T00:08:22.950Z", + "new_balance":"5211.53", + "value":"-2.38" + } + }, + { + "id":"032b8087-de1d-47a0-a9ac-c90300b73a7b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T02:25:49.987Z", + "completed":"2017-04-10T02:25:49.987Z", + "new_balance":"5208.80", + "value":"-2.73" + } + }, + { + "id":"4000c3a6-ca32-495d-aba4-a29b654a113c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T08:49:37.399Z", + "completed":"2017-04-10T08:49:37.399Z", + "new_balance":"5204.33", + "value":"-4.47" + } + }, + { + "id":"bf79888f-3754-49ab-a524-442cd6af99d5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:05:42.807Z", + "completed":"2017-04-10T19:05:42.807Z", + "new_balance":"5201.87", + "value":"-2.46" + } + }, + { + "id":"3ecf6bb7-065d-42a1-a9f9-775a578a6941", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T20:59:28.555Z", + "completed":"2017-04-10T20:59:28.555Z", + "new_balance":"5199.24", + "value":"-2.63" + } + }, + { + "id":"aad57ec8-2994-4f5b-b4d3-8349e165777a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T03:53:40.964Z", + "completed":"2017-04-11T03:53:40.964Z", + "new_balance":"5196.82", + "value":"-2.42" + } + }, + { + "id":"e9b5c322-0c76-4e88-a2d6-d15ee34a64d3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:32:18.379Z", + "completed":"2017-04-11T04:32:18.379Z", + "new_balance":"5190.07", + "value":"-6.75" + } + }, + { + "id":"091ab726-22cf-4a58-8d68-c7e4b2ff22c4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T12:15:01.301Z", + "completed":"2017-04-11T12:15:01.301Z", + "new_balance":"5184.92", + "value":"-5.15" + } + }, + { + "id":"f121ec0e-89dd-4855-8e82-24b824a15dda", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T20:41:50.684Z", + "completed":"2017-04-11T20:41:50.684Z", + "new_balance":"5183.96", + "value":"-0.96" + } + }, + { + "id":"49a31d57-e2c3-4024-900f-bf379a57ccb6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T23:08:58.981Z", + "completed":"2017-04-11T23:08:58.981Z", + "new_balance":"5181.37", + "value":"-2.59" + } + }, + { + "id":"8655f2c3-5248-47ee-9bf7-586074813918", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T03:59:59.633Z", + "completed":"2017-04-21T03:59:59.633Z", + "new_balance":"5176.22", + "value":"-5.15" + } + }, + { + "id":"effd907f-32d5-447e-ba08-f1015246200c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T13:13:14.939Z", + "completed":"2017-04-23T13:13:14.939Z", + "new_balance":"5174.80", + "value":"-1.42" + } + }, + { + "id":"dfb8f303-7096-4f98-8f83-03dee569f684", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T17:00:10.672Z", + "completed":"2017-04-29T17:00:10.672Z", + "new_balance":"5169.99", + "value":"-4.81" + } + }, + { + "id":"93fdb11c-1d17-4d2a-acee-ab6c82ee5f7a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T21:44:59.296Z", + "completed":"2017-04-29T21:44:59.296Z", + "new_balance":"5275.62", + "value":"105.63" + } + }, + { + "id":"d10939d5-0593-493e-aba9-db28fac61329", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T22:44:48.359Z", + "completed":"2017-04-29T22:44:48.359Z", + "new_balance":"5272.18", + "value":"-3.44" + } + }, + { + "id":"8281b094-911b-4e0b-9c6b-5406ecce67ed", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T10:32:21.780Z", + "completed":"2017-04-30T10:32:21.780Z", + "new_balance":"5267.91", + "value":"-4.27" + } + }, + { + "id":"109ace4f-d193-43c8-9513-0d6bae51a39f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T01:06:43.004Z", + "completed":"2017-05-02T01:06:43.004Z", + "new_balance":"5261.51", + "value":"-6.40" + } + }, + { + "id":"d0b1080a-53b4-4621-a9b3-6be7efca0ffd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T14:19:18.330Z", + "completed":"2017-05-02T14:19:18.330Z", + "new_balance":"5259.05", + "value":"-2.46" + } + }, + { + "id":"2778ae10-c51b-427a-8a15-f049b9b888b6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T14:57:22.632Z", + "completed":"2017-05-02T14:57:22.632Z", + "new_balance":"5200.82", + "value":"-58.23" + } + }, + { + "id":"3e5764bb-fe74-44db-823b-f6b305b80a64", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:25:19.272Z", + "completed":"2017-05-02T23:25:19.272Z", + "new_balance":"5193.63", + "value":"-7.19" + } + }, + { + "id":"9a0655e9-760b-47cd-8895-063c4fbe6610", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T18:21:11.346Z", + "completed":"2017-05-06T18:21:11.346Z", + "new_balance":"5189.21", + "value":"-4.42" + } + }, + { + "id":"dc232a6a-aba1-4958-81e0-f98680a84e00", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T04:33:44.585Z", + "completed":"2017-05-07T04:33:44.585Z", + "new_balance":"5186.89", + "value":"-2.32" + } + }, + { + "id":"e737f7f5-729a-4014-ad9c-a34a9e4d027c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T05:53:56.276Z", + "completed":"2017-05-07T05:53:56.276Z", + "new_balance":"5185.49", + "value":"-1.40" + } + }, + { + "id":"2fcc2548-5339-4aba-b10d-b8883443a75f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T13:29:59.497Z", + "completed":"2017-05-07T13:29:59.497Z", + "new_balance":"5182.46", + "value":"-3.03" + } + }, + { + "id":"dfe18d65-df31-46cf-974d-2c684aec95a6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T17:30:38.322Z", + "completed":"2017-05-07T17:30:38.322Z", + "new_balance":"5177.97", + "value":"-4.49" + } + }, + { + "id":"3fcd7eee-d36e-4432-b4da-77a9a696c86b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T00:12:46.177Z", + "completed":"2017-05-08T00:12:46.177Z", + "new_balance":"5173.73", + "value":"-4.24" + } + }, + { + "id":"d15209e0-b798-40e4-8e83-f5b7b1f9cd32", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T17:37:17.060Z", + "completed":"2017-05-09T17:37:17.060Z", + "new_balance":"5170.29", + "value":"-3.44" + } + }, + { + "id":"69514d91-7f0a-40d2-bc19-e911ff678dd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T01:49:02.297Z", + "completed":"2017-05-13T01:49:02.297Z", + "new_balance":"5165.14", + "value":"-5.15" + } + }, + { + "id":"fe04a918-aedd-4142-ad3d-129d345e2e6c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T14:35:48.907Z", + "completed":"2017-05-26T14:35:48.907Z", + "new_balance":"5159.99", + "value":"-5.15" + } + }, + { + "id":"23b4e9b6-cd17-4b17-8017-833b393dfacd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:15:09.233Z", + "completed":"2017-05-26T19:15:09.233Z", + "new_balance":"5158.59", + "value":"-1.40" + } + }, + { + "id":"2cd71059-6cf0-4fec-93fc-b661147d1efe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T10:02:57.543Z", + "completed":"2017-05-27T10:02:57.543Z", + "new_balance":"5153.78", + "value":"-4.81" + } + }, + { + "id":"77683593-0561-41a5-8a8b-3aaab4c7ccb0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T19:03:58.388Z", + "completed":"2017-05-27T19:03:58.388Z", + "new_balance":"5151.76", + "value":"-2.02" + } + }, + { + "id":"87f820a1-cdf1-4ce3-9e9a-de10d38ce031", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T02:30:54.882Z", + "completed":"2017-05-30T02:30:54.882Z", + "new_balance":"5147.49", + "value":"-4.27" + } + }, + { + "id":"966d1d3e-fc7c-49b7-9661-86a73a874038", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T06:04:52.405Z", + "completed":"2017-05-30T06:04:52.405Z", + "new_balance":"5253.12", + "value":"105.63" + } + }, + { + "id":"e4eab6b7-c49c-41fb-98f8-e374d2887955", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T19:44:53.748Z", + "completed":"2017-05-30T19:44:53.748Z", + "new_balance":"5249.68", + "value":"-3.44" + } + }, + { + "id":"18e81d9e-565d-4c05-ad76-79d194d00cf1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T02:22:44.792Z", + "completed":"2017-06-01T02:22:44.792Z", + "new_balance":"5244.79", + "value":"-4.89" + } + }, + { + "id":"bd38aaec-1d11-43a5-ae13-f56a65f4b6ae", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T05:14:13.857Z", + "completed":"2017-06-01T05:14:13.857Z", + "new_balance":"5242.92", + "value":"-1.87" + } + }, + { + "id":"ff068abe-7453-462b-92cd-40bc62ace680", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T05:19:58.305Z", + "completed":"2017-06-01T05:19:58.305Z", + "new_balance":"5237.77", + "value":"-5.15" + } + }, + { + "id":"96989270-1d5f-48f8-be5f-19017aa91279", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T11:55:29.447Z", + "completed":"2017-06-01T11:55:29.447Z", + "new_balance":"5232.62", + "value":"-5.15" + } + }, + { + "id":"f3784395-6ecd-4dc4-b8bd-808a788f084b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T16:08:05.830Z", + "completed":"2017-06-01T16:08:05.830Z", + "new_balance":"5225.43", + "value":"-7.19" + } + }, + { + "id":"4bfc17a7-51c5-4d12-abf4-8b878c5b7fef", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T16:18:41.989Z", + "completed":"2017-06-01T16:18:41.989Z", + "new_balance":"5222.97", + "value":"-2.46" + } + }, + { + "id":"48f1a6a6-dda4-4de1-81e5-c2e2bdc750ad", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T16:18:55.477Z", + "completed":"2017-06-01T16:18:55.477Z", + "new_balance":"5219.53", + "value":"-3.44" + } + }, + { + "id":"f2206d16-0bfc-4b43-8b96-5a5306a506a1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T18:00:16.735Z", + "completed":"2017-06-01T18:00:16.735Z", + "new_balance":"5213.13", + "value":"-6.40" + } + }, + { + "id":"23614fe3-6a86-499b-9a4d-6f5bc9376de9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T23:31:45.457Z", + "completed":"2017-06-01T23:31:45.457Z", + "new_balance":"5154.90", + "value":"-58.23" + } + }, + { + "id":"d90792e1-92f3-47c3-a9c2-929fce45a96d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T02:16:32.411Z", + "completed":"2017-06-02T02:16:32.411Z", + "new_balance":"5153.66", + "value":"-1.24" + } + }, + { + "id":"a1461cb2-a439-40f2-b16e-9b5131f4069b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T10:42:21.698Z", + "completed":"2017-06-02T10:42:21.698Z", + "new_balance":"5152.08", + "value":"-1.58" + } + }, + { + "id":"839526a3-ca9a-485f-bd10-cdfa4cba6a7c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T12:22:44.305Z", + "completed":"2017-06-02T12:22:44.305Z", + "new_balance":"5145.16", + "value":"-6.92" + } + }, + { + "id":"877be687-af86-4878-9b4c-b1c595355ff4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T09:26:48.514Z", + "completed":"2017-06-04T09:26:48.514Z", + "new_balance":"5140.89", + "value":"-4.27" + } + }, + { + "id":"5b5aabcb-63b4-4f0c-9d34-4fb3a16bc38a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T10:18:35.446Z", + "completed":"2017-06-04T10:18:35.446Z", + "new_balance":"5136.20", + "value":"-4.69" + } + }, + { + "id":"9c4bde81-ccab-4c6a-ac2c-12b57f04bba6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T14:26:17.524Z", + "completed":"2017-06-04T14:26:17.524Z", + "new_balance":"5134.06", + "value":"-2.14" + } + }, + { + "id":"d51b9632-d7b1-479d-b11d-50f4efc52bf4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:27:21.620Z", + "completed":"2017-06-05T12:27:21.620Z", + "new_balance":"5132.07", + "value":"-1.99" + } + }, + { + "id":"432bc656-5cbd-44fe-ae79-1f1650225948", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T20:06:55.830Z", + "completed":"2017-06-05T20:06:55.830Z", + "new_balance":"5127.65", + "value":"-4.42" + } + }, + { + "id":"ebde008a-2b05-447d-8111-d8726146d6f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T01:02:04.477Z", + "completed":"2017-06-18T01:02:04.477Z", + "new_balance":"5122.50", + "value":"-5.15" + } + }, + { + "id":"1790131e-aa40-42d1-9080-29312d06b05f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T02:22:09.187Z", + "completed":"2017-06-30T02:22:09.187Z", + "new_balance":"5118.23", + "value":"-4.27" + } + }, + { + "id":"c01c2a07-afa7-4f1f-9281-f1a322d2b563", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T02:52:24.878Z", + "completed":"2017-06-30T02:52:24.878Z", + "new_balance":"5223.86", + "value":"105.63" + } + }, + { + "id":"27458a2a-2645-4a63-8579-c4be9e816343", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T07:54:59.227Z", + "completed":"2017-06-30T07:54:59.227Z", + "new_balance":"5220.42", + "value":"-3.44" + } + }, + { + "id":"957552e0-7d72-4dac-a346-55f8fe9a078d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T22:58:17.626Z", + "completed":"2017-06-30T22:58:17.626Z", + "new_balance":"5217.31", + "value":"-3.11" + } + }, + { + "id":"c27f39b6-985c-41c3-8bdc-5dfd1ad06a0e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T16:54:23.356Z", + "completed":"2017-07-01T16:54:23.356Z", + "new_balance":"5210.91", + "value":"-6.40" + } + }, + { + "id":"f5e03be6-6cce-45d4-9a35-a53ad95befc8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T02:30:17.080Z", + "completed":"2017-07-03T02:30:17.080Z", + "new_balance":"5208.45", + "value":"-2.46" + } + }, + { + "id":"fa9079b6-f4ff-422c-ac39-838e603a41b8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T12:19:48.833Z", + "completed":"2017-07-03T12:19:48.833Z", + "new_balance":"5205.01", + "value":"-3.44" + } + }, + { + "id":"1bda612c-c2f1-47ac-9d6d-412f49a997a1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T19:31:42.354Z", + "completed":"2017-07-03T19:31:42.354Z", + "new_balance":"5197.82", + "value":"-7.19" + } + }, + { + "id":"b5729ac7-e067-4d63-bd00-99d39df5893e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T20:12:57.297Z", + "completed":"2017-07-03T20:12:57.297Z", + "new_balance":"5139.59", + "value":"-58.23" + } + }, + { + "id":"b56010b6-6610-4a51-aa2b-91d84653f8cc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T06:38:39.055Z", + "completed":"2017-07-05T06:38:39.055Z", + "new_balance":"5135.17", + "value":"-4.42" + } + }, + { + "id":"53c24954-b38e-4728-a8fe-bc9b1de35e4e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T17:35:42.371Z", + "completed":"2017-07-05T17:35:42.371Z", + "new_balance":"5130.02", + "value":"-5.15" + } + }, + { + "id":"2c60f3b6-0b13-4fbc-ae9d-9b9b24be7261", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T23:35:00.364Z", + "completed":"2017-07-05T23:35:00.364Z", + "new_balance":"5128.87", + "value":"-1.15" + } + }, + { + "id":"0d3826e3-da3b-4658-967c-616eb7dc3c2e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T08:14:50.128Z", + "completed":"2017-07-06T08:14:50.128Z", + "new_balance":"5126.55", + "value":"-2.32" + } + }, + { + "id":"7b9ebffc-bab4-48f8-84ef-8cef4575a051", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T11:52:51.058Z", + "completed":"2017-07-06T11:52:51.058Z", + "new_balance":"5122.88", + "value":"-3.67" + } + }, + { + "id":"e1cfb0ea-c874-44dc-b6d5-979c7893c72b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T16:37:41.698Z", + "completed":"2017-07-07T16:37:41.698Z", + "new_balance":"5118.41", + "value":"-4.47" + } + }, + { + "id":"904ffe37-9fe4-4877-b2ff-f7258e895b14", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T09:21:43.979Z", + "completed":"2017-07-10T09:21:43.979Z", + "new_balance":"5116.03", + "value":"-2.38" + } + }, + { + "id":"5bdbe14a-03cd-4933-850f-3d26dc494219", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T16:47:03.440Z", + "completed":"2017-07-10T16:47:03.440Z", + "new_balance":"5110.88", + "value":"-5.15" + } + }, + { + "id":"51f7627e-2ae8-433c-996b-002ac51dacce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:59:27.399Z", + "completed":"2017-07-12T08:59:27.399Z", + "new_balance":"5108.15", + "value":"-2.73" + } + }, + { + "id":"d6fa3a0a-d9f9-4013-bf80-f385e2ea9188", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T12:36:58.427Z", + "completed":"2017-07-12T12:36:58.427Z", + "new_balance":"5105.69", + "value":"-2.46" + } + }, + { + "id":"1b3aa5df-d0e9-4a74-b5ad-952e1f30c41c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T22:40:05.814Z", + "completed":"2017-07-12T22:40:05.814Z", + "new_balance":"5101.22", + "value":"-4.47" + } + }, + { + "id":"937d3a4d-15eb-4ea9-97e5-925b73899e4e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T16:48:45.733Z", + "completed":"2017-07-15T16:48:45.733Z", + "new_balance":"5098.59", + "value":"-2.63" + } + }, + { + "id":"6fae8b6e-6952-41d7-82c0-595a4e01594c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T07:46:20.784Z", + "completed":"2017-07-16T07:46:20.784Z", + "new_balance":"5093.44", + "value":"-5.15" + } + }, + { + "id":"55acb51a-270a-477b-a4e9-edd5b307422e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T19:05:11.717Z", + "completed":"2017-07-16T19:05:11.717Z", + "new_balance":"5092.48", + "value":"-0.96" + } + }, + { + "id":"e3b06e35-8254-4d32-b90d-f80e905d2a80", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T07:25:30.042Z", + "completed":"2017-07-17T07:25:30.042Z", + "new_balance":"5085.73", + "value":"-6.75" + } + }, + { + "id":"4d3a73eb-8eb8-4954-bfd0-5d5e039fba53", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T19:45:05.128Z", + "completed":"2017-07-17T19:45:05.128Z", + "new_balance":"5083.14", + "value":"-2.59" + } + }, + { + "id":"488b2e76-6f4c-4767-8d84-93f1bdc6b703", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T13:58:25.737Z", + "completed":"2017-07-19T13:58:25.737Z", + "new_balance":"5080.72", + "value":"-2.42" + } + }, + { + "id":"68e4776d-14b9-4dbd-8db1-badf9b148fd5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T23:19:22.286Z", + "completed":"2017-07-20T23:19:22.286Z", + "new_balance":"5075.57", + "value":"-5.15" + } + }, + { + "id":"6e212ce0-a54a-423d-8097-bd214c06d47b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T07:26:43.200Z", + "completed":"2017-07-23T07:26:43.200Z", + "new_balance":"5074.15", + "value":"-1.42" + } + }, + { + "id":"9404b1f5-be29-4e80-848c-ca2e8c152d6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T17:48:59.432Z", + "completed":"2017-07-26T17:48:59.432Z", + "new_balance":"5069.34", + "value":"-4.81" + } + }, + { + "id":"cba7d91d-8420-4179-b1ed-ef1cca061a46", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T02:55:01.677Z", + "completed":"2017-07-27T02:55:01.677Z", + "new_balance":"5174.97", + "value":"105.63" + } + }, + { + "id":"a867d14c-99cb-4a76-993b-6d8361118874", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:12:34.977Z", + "completed":"2017-07-28T02:12:34.977Z", + "new_balance":"5171.53", + "value":"-3.44" + } + }, + { + "id":"95dec363-0c2a-4c35-bf4f-c6d38c46f577", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T20:14:12.839Z", + "completed":"2017-07-30T20:14:12.839Z", + "new_balance":"5167.26", + "value":"-4.27" + } + }, + { + "id":"85943691-3f2b-4786-ba5e-1a495919e3bf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T14:23:11.857Z", + "completed":"2017-08-01T14:23:11.857Z", + "new_balance":"5160.86", + "value":"-6.40" + } + }, + { + "id":"64256474-1540-4356-ac1e-8664933421a2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T02:02:08.406Z", + "completed":"2017-08-03T02:02:08.406Z", + "new_balance":"5157.42", + "value":"-3.44" + } + }, + { + "id":"ff1dc3c0-6643-4414-8555-0e80f597b743", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T08:29:04.593Z", + "completed":"2017-08-03T08:29:04.593Z", + "new_balance":"5154.96", + "value":"-2.46" + } + }, + { + "id":"63672cfc-d11e-4dad-a7ac-6c481d99fa4d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T15:24:56.556Z", + "completed":"2017-08-03T15:24:56.556Z", + "new_balance":"5096.73", + "value":"-58.23" + } + }, + { + "id":"80f5d848-abcf-4827-a103-fbb08ebb827c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T22:31:04.993Z", + "completed":"2017-08-03T22:31:04.993Z", + "new_balance":"5089.54", + "value":"-7.19" + } + }, + { + "id":"0fe7c093-c00a-4c03-9184-a696f8d04203", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T13:09:02.524Z", + "completed":"2017-08-08T13:09:02.524Z", + "new_balance":"5084.39", + "value":"-5.15" + } + }, + { + "id":"1c4d5ca2-d41c-40b0-8e8c-59488700e66e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:26:28.706Z", + "completed":"2017-08-08T16:26:28.706Z", + "new_balance":"5079.97", + "value":"-4.42" + } + }, + { + "id":"12241021-fe1e-48c2-8846-dd37924d926b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T13:32:45.905Z", + "completed":"2017-08-11T13:32:45.905Z", + "new_balance":"5081.08", + "value":"1.11" + } + }, + { + "id":"54b1ee70-9d25-4eb9-960f-09c74cf5d6f6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T07:12:39.129Z", + "completed":"2017-08-13T07:12:39.129Z", + "new_balance":"5078.76", + "value":"-2.32" + } + }, + { + "id":"d9536b96-4042-4922-bfd8-f793b24eb379", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T01:48:08.937Z", + "completed":"2017-08-14T01:48:08.937Z", + "new_balance":"5075.73", + "value":"-3.03" + } + }, + { + "id":"f62d0518-e9c4-4223-a5e8-c6bbff43eeb1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T14:24:06.708Z", + "completed":"2017-08-17T14:24:06.708Z", + "new_balance":"5074.33", + "value":"-1.40" + } + }, + { + "id":"6917918b-d78a-49af-a15d-9126e5327eaa", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T22:35:23.985Z", + "completed":"2017-08-21T22:35:23.985Z", + "new_balance":"5069.84", + "value":"-4.49" + } + }, + { + "id":"9bc4654f-3124-446e-9d37-09fc44d0788c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T12:07:55.419Z", + "completed":"2017-08-23T12:07:55.419Z", + "new_balance":"5064.69", + "value":"-5.15" + } + }, + { + "id":"1edb7112-b203-4579-9211-d73c34cdea10", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T18:35:21.670Z", + "completed":"2017-08-23T18:35:21.670Z", + "new_balance":"5060.45", + "value":"-4.24" + } + }, + { + "id":"e8a03fe1-aab0-40aa-bbf2-0dcdd255646c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T05:58:56.361Z", + "completed":"2017-08-24T05:58:56.361Z", + "new_balance":"5059.05", + "value":"-1.40" + } + }, + { + "id":"efb1e89c-bfc8-404e-a3e9-47dbb7a1aca5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T01:24:17.923Z", + "completed":"2017-08-27T01:24:17.923Z", + "new_balance":"5057.03", + "value":"-2.02" + } + }, + { + "id":"f47d30a5-462b-45d9-ab42-030e0188ee3a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T07:30:03.145Z", + "completed":"2017-08-27T07:30:03.145Z", + "new_balance":"5162.66", + "value":"105.63" + } + }, + { + "id":"5d23c235-6058-49cf-bcf2-c3539b0f31e6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T14:06:54.158Z", + "completed":"2017-08-27T14:06:54.158Z", + "new_balance":"5157.85", + "value":"-4.81" + } + }, + { + "id":"b2e7870d-bdab-40b9-9e73-25d36804ad5b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T16:37:28.851Z", + "completed":"2017-08-28T16:37:28.851Z", + "new_balance":"5154.41", + "value":"-3.44" + } + }, + { + "id":"0855d07b-5a0f-43b2-be12-0431e2f3d4b1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T15:16:29.093Z", + "completed":"2017-08-30T15:16:29.093Z", + "new_balance":"5150.14", + "value":"-4.27" + } + }, + { + "id":"8626f88d-e35f-43a2-a2fc-175726b5519b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T16:42:40.060Z", + "completed":"2017-09-01T16:42:40.060Z", + "new_balance":"5143.74", + "value":"-6.40" + } + }, + { + "id":"3f3a9b78-a7f8-416c-81e2-a222edde233b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T09:33:18.753Z", + "completed":"2017-09-03T09:33:18.753Z", + "new_balance":"5141.28", + "value":"-2.46" + } + }, + { + "id":"79ef71e9-2755-4df0-ad32-3e75dd8a6dcf", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T18:00:44.171Z", + "completed":"2017-09-03T18:00:44.171Z", + "new_balance":"5137.84", + "value":"-3.44" + } + }, + { + "id":"d3c3935d-3725-4a7b-985a-ffa29c1e2de2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T20:46:30.398Z", + "completed":"2017-09-03T20:46:30.398Z", + "new_balance":"5130.65", + "value":"-7.19" + } + }, + { + "id":"7eb0a8dc-1d70-4906-93e6-1d73b2262bd7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T23:44:55.840Z", + "completed":"2017-09-03T23:44:55.840Z", + "new_balance":"5072.42", + "value":"-58.23" + } + }, + { + "id":"58744083-236a-4385-96b3-4c4ec2575f1c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T16:11:11.939Z", + "completed":"2017-09-05T16:11:11.939Z", + "new_balance":"5067.27", + "value":"-5.15" + } + }, + { + "id":"303aa5e3-895e-49e5-b5cd-d03546de5d4b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T23:05:25.301Z", + "completed":"2017-09-05T23:05:25.301Z", + "new_balance":"5062.38", + "value":"-4.89" + } + }, + { + "id":"fdba926c-510a-410c-8a5d-a4ab67d9ef2d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T02:33:48.408Z", + "completed":"2017-09-07T02:33:48.408Z", + "new_balance":"5060.51", + "value":"-1.87" + } + }, + { + "id":"a9e906da-462a-49d7-9488-13265f4ce8f2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T15:24:34.779Z", + "completed":"2017-09-09T15:24:34.779Z", + "new_balance":"5055.36", + "value":"-5.15" + } + }, + { + "id":"62b98985-b19c-4c9c-ace8-cdc0117b48ba", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T13:38:35.262Z", + "completed":"2017-09-11T13:38:35.262Z", + "new_balance":"5053.78", + "value":"-1.58" + } + }, + { + "id":"f648fdbf-eb3a-4142-b68f-48be4a080b2b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T06:10:54.776Z", + "completed":"2017-09-13T06:10:54.776Z", + "new_balance":"5046.86", + "value":"-6.92" + } + }, + { + "id":"7746d54d-e6b8-40a3-bcc0-a614ce51bfd9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T08:11:26.917Z", + "completed":"2017-09-14T08:11:26.917Z", + "new_balance":"5055.15", + "value":"8.29" + } + }, + { + "id":"575a51c8-57a6-4107-a26d-f2a465df0a02", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T23:38:17.602Z", + "completed":"2017-09-14T23:38:17.602Z", + "new_balance":"5053.91", + "value":"-1.24" + } + }, + { + "id":"99e150ef-9083-4a8d-9906-66098e43b716", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T02:45:52.746Z", + "completed":"2017-09-15T02:45:52.746Z", + "new_balance":"5049.64", + "value":"-4.27" + } + }, + { + "id":"eb349d7a-bf42-4bce-a0f7-1255f71c4f1b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T01:56:36.588Z", + "completed":"2017-09-26T01:56:36.588Z", + "new_balance":"5044.95", + "value":"-4.69" + } + }, + { + "id":"f33400a9-1561-4aba-a4d5-7ffba57b4fe6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T06:52:41.216Z", + "completed":"2017-09-26T06:52:41.216Z", + "new_balance":"5042.96", + "value":"-1.99" + } + }, + { + "id":"b91ce68e-af8a-4b0b-a122-349420940c83", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T17:46:36.431Z", + "completed":"2017-09-26T17:46:36.431Z", + "new_balance":"5040.82", + "value":"-2.14" + } + }, + { + "id":"38615167-6574-4ed5-91e9-92279260728a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T00:58:45.231Z", + "completed":"2017-09-27T00:58:45.231Z", + "new_balance":"5036.40", + "value":"-4.42" + } + }, + { + "id":"7f0fa8dd-54f3-4528-9623-02685dce565a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T04:27:43.397Z", + "completed":"2017-09-27T04:27:43.397Z", + "new_balance":"5031.25", + "value":"-5.15" + } + }, + { + "id":"c7d2c86b-9fa4-4b01-954e-8dcd2c87de21", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T08:54:38.317Z", + "completed":"2017-09-27T08:54:38.317Z", + "new_balance":"5136.88", + "value":"105.63" + } + }, + { + "id":"91250b75-9ad8-475a-83da-7e8c59f709b9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T11:43:11.131Z", + "completed":"2017-09-28T11:43:11.131Z", + "new_balance":"5133.44", + "value":"-3.44" + } + }, + { + "id":"f8103dfb-f10b-46ce-8000-efc1420cbe43", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T18:30:48.431Z", + "completed":"2017-09-30T18:30:48.431Z", + "new_balance":"5129.17", + "value":"-4.27" + } + }, + { + "id":"c587b8f0-943e-46e2-9dde-6163a7df9ef4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T01:43:26.850Z", + "completed":"2017-10-01T01:43:26.850Z", + "new_balance":"5121.98", + "value":"-7.19" + } + }, + { + "id":"8f677bd8-db3a-4c2a-bff3-a92e778d14cc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T01:50:55.860Z", + "completed":"2017-10-01T01:50:55.860Z", + "new_balance":"5119.52", + "value":"-2.46" + } + }, + { + "id":"b509cc95-71df-41db-a0a5-529ef5b2d174", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T02:50:50.155Z", + "completed":"2017-10-01T02:50:50.155Z", + "new_balance":"5061.29", + "value":"-58.23" + } + }, + { + "id":"f73ba140-ea2d-405b-b608-1b83ebb52e65", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T09:18:33.953Z", + "completed":"2017-10-01T09:18:33.953Z", + "new_balance":"5057.85", + "value":"-3.44" + } + }, + { + "id":"cd41e926-aa89-43ec-a024-c05da30bf40b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T18:39:47.624Z", + "completed":"2017-10-01T18:39:47.624Z", + "new_balance":"5051.45", + "value":"-6.40" + } + }, + { + "id":"02dc8ff0-0b67-4295-af68-8bd2afbb6ea5", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T05:49:58.782Z", + "completed":"2017-10-05T05:49:58.782Z", + "new_balance":"5047.03", + "value":"-4.42" + } + }, + { + "id":"dbf011e1-2251-43da-b36e-b7470a0ea712", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T11:59:08.314Z", + "completed":"2017-10-05T11:59:08.314Z", + "new_balance":"5043.36", + "value":"-3.67" + } + }, + { + "id":"510fba81-17a6-4400-b4de-78d4dc10ed6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T14:24:31.105Z", + "completed":"2017-10-05T14:24:31.105Z", + "new_balance":"5038.21", + "value":"-5.15" + } + }, + { + "id":"eae766f1-5d46-4a8b-a2d1-c8a3942221c9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T15:08:39.323Z", + "completed":"2017-10-05T15:08:39.323Z", + "new_balance":"5037.06", + "value":"-1.15" + } + }, + { + "id":"4f9db7d9-a447-4f88-8ea7-4ef53ae92c63", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T03:01:30.586Z", + "completed":"2017-10-07T03:01:30.586Z", + "new_balance":"5034.74", + "value":"-2.32" + } + }, + { + "id":"4ebd8a89-0395-4a05-a242-7d6d1db6945e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T09:10:14.624Z", + "completed":"2017-10-09T09:10:14.624Z", + "new_balance":"5029.59", + "value":"-5.15" + } + }, + { + "id":"7f6e3254-738b-43cd-9352-975f8a5b3771", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T14:51:20.846Z", + "completed":"2017-10-09T14:51:20.846Z", + "new_balance":"5027.21", + "value":"-2.38" + } + }, + { + "id":"15d6a683-5a2b-416d-a4ce-70a11347da6b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T11:53:43.345Z", + "completed":"2017-10-10T11:53:43.345Z", + "new_balance":"5022.74", + "value":"-4.47" + } + }, + { + "id":"43b34caf-df4d-4878-9848-708c6c9f00fc", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T16:49:15.078Z", + "completed":"2017-10-10T16:49:15.078Z", + "new_balance":"5020.28", + "value":"-2.46" + } + }, + { + "id":"88e03ad6-07cf-4465-abb3-4896475fd3d9", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:36:24.174Z", + "completed":"2017-10-10T23:36:24.174Z", + "new_balance":"5017.55", + "value":"-2.73" + } + }, + { + "id":"8d9a91e9-6ffc-4330-be36-5d6699acf3ce", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:47:06.598Z", + "completed":"2017-10-10T23:47:06.598Z", + "new_balance":"5014.92", + "value":"-2.63" + } + }, + { + "id":"7682fc09-184a-4249-8ab4-1e153c538677", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T01:50:59.418Z", + "completed":"2017-10-11T01:50:59.418Z", + "new_balance":"5012.50", + "value":"-2.42" + } + }, + { + "id":"70ea3cd0-178d-477b-a949-0065efc3a0e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T05:19:05.584Z", + "completed":"2017-10-11T05:19:05.584Z", + "new_balance":"5005.75", + "value":"-6.75" + } + }, + { + "id":"648c1e3d-02cd-4531-915f-e930b8447cc6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:16:54.328Z", + "completed":"2017-10-11T06:16:54.328Z", + "new_balance":"5004.79", + "value":"-0.96" + } + }, + { + "id":"cd1054a1-5e22-48d1-b0a1-c0a74d56b594", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T07:29:55.388Z", + "completed":"2017-10-11T07:29:55.388Z", + "new_balance":"5002.20", + "value":"-2.59" + } + }, + { + "id":"905dd898-b5aa-4900-8c1c-dfc04aa290fe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T14:05:44.695Z", + "completed":"2017-10-11T14:05:44.695Z", + "new_balance":"4997.05", + "value":"-5.15" + } + }, + { + "id":"070aacbd-23c6-4932-86a7-6d47006b0dca", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T17:03:51.494Z", + "completed":"2017-10-21T17:03:51.494Z", + "new_balance":"4991.90", + "value":"-5.15" + } + }, + { + "id":"f07afed5-25d8-43f6-9340-59b41b9ee744", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T21:24:02.361Z", + "completed":"2017-10-23T21:24:02.361Z", + "new_balance":"4990.48", + "value":"-1.42" + } + }, + { + "id":"f1a5731b-ca7d-4f8a-9263-c42b9d939a3f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T05:21:14.141Z", + "completed":"2017-10-29T05:21:14.141Z", + "new_balance":"4985.67", + "value":"-4.81" + } + }, + { + "id":"54c0a4f3-4039-422d-b72c-d11a4608f986", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T14:32:06.141Z", + "completed":"2017-10-29T14:32:06.141Z", + "new_balance":"5091.30", + "value":"105.63" + } + }, + { + "id":"6f9f09d7-c03c-4734-b69a-ec8ccc84e9c3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T18:36:30.444Z", + "completed":"2017-10-29T18:36:30.444Z", + "new_balance":"5087.86", + "value":"-3.44" + } + }, + { + "id":"46fbcbfb-973f-4c76-9541-e08d27e418d4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T23:46:18.446Z", + "completed":"2017-10-30T23:46:18.446Z", + "new_balance":"5083.59", + "value":"-4.27" + } + }, + { + "id":"7970a04f-96bc-4a9a-8ba7-452f31dd29f7", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T04:04:53.108Z", + "completed":"2017-11-02T04:04:53.108Z", + "new_balance":"5076.40", + "value":"-7.19" + } + }, + { + "id":"e31fbf7b-3885-4c7e-900a-326a72dab9e3", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T06:41:07.270Z", + "completed":"2017-11-02T06:41:07.270Z", + "new_balance":"5070.00", + "value":"-6.40" + } + }, + { + "id":"6c060280-a4fc-4f57-8bad-a08cf78e8f85", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T14:21:59.070Z", + "completed":"2017-11-02T14:21:59.070Z", + "new_balance":"5011.77", + "value":"-58.23" + } + }, + { + "id":"2342c8a2-550a-46f0-86a8-4668d6994b96", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T21:57:47.580Z", + "completed":"2017-11-02T21:57:47.580Z", + "new_balance":"5009.31", + "value":"-2.46" + } + }, + { + "id":"121f725c-2b10-4749-898d-98253efcc520", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T18:03:21.003Z", + "completed":"2017-11-06T18:03:21.003Z", + "new_balance":"5004.89", + "value":"-4.42" + } + }, + { + "id":"819d3bce-37f0-4511-b0d7-af2070caa177", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T02:44:22.974Z", + "completed":"2017-11-07T02:44:22.974Z", + "new_balance":"5000.40", + "value":"-4.49" + } + }, + { + "id":"4925c472-08a5-4df6-82fb-b85cc7848f6d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T05:00:29.768Z", + "completed":"2017-11-07T05:00:29.768Z", + "new_balance":"4998.08", + "value":"-2.32" + } + }, + { + "id":"c4d039b5-76b7-4074-abbd-38c5ff7f73f6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T15:19:27.466Z", + "completed":"2017-11-07T15:19:27.466Z", + "new_balance":"4996.68", + "value":"-1.40" + } + }, + { + "id":"aa398d9d-92f0-4f61-be4e-029dc0976232", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T19:53:44.260Z", + "completed":"2017-11-07T19:53:44.260Z", + "new_balance":"4993.65", + "value":"-3.03" + } + }, + { + "id":"2212ccb3-cade-40bd-b988-c353076ba97f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T07:20:48.765Z", + "completed":"2017-11-08T07:20:48.765Z", + "new_balance":"4989.41", + "value":"-4.24" + } + }, + { + "id":"fa13bbab-d2d6-46c2-bab9-13031ac6e3fe", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T23:13:03.940Z", + "completed":"2017-11-09T23:13:03.940Z", + "new_balance":"4985.97", + "value":"-3.44" + } + }, + { + "id":"c46ca076-4f95-42b6-a6d0-1bdb360e63bd", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T03:01:07.249Z", + "completed":"2017-11-13T03:01:07.249Z", + "new_balance":"4980.82", + "value":"-5.15" + } + }, + { + "id":"c7211d6a-e159-4aa1-a9fc-19d40e9c3143", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T08:50:45.726Z", + "completed":"2017-11-26T08:50:45.726Z", + "new_balance":"4975.67", + "value":"-5.15" + } + }, + { + "id":"7e0333fa-e528-4cef-a160-5da31a415136", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T21:23:53.240Z", + "completed":"2017-11-26T21:23:53.240Z", + "new_balance":"4974.27", + "value":"-1.40" + } + }, + { + "id":"242ed7e5-63f3-4688-958a-980bf4e67b84", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T03:06:15.877Z", + "completed":"2017-11-27T03:06:15.877Z", + "new_balance":"4972.25", + "value":"-2.02" + } + }, + { + "id":"a898f3aa-1e70-4e40-9d0c-f3b62916423d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T21:25:14.228Z", + "completed":"2017-11-27T21:25:14.228Z", + "new_balance":"4967.44", + "value":"-4.81" + } + }, + { + "id":"7f947656-9121-482b-acc5-ae6084130c8c", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T00:30:57.199Z", + "completed":"2017-11-30T00:30:57.199Z", + "new_balance":"4963.17", + "value":"-4.27" + } + }, + { + "id":"4516675b-a06a-4747-800f-f138b71381d4", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T01:30:44.968Z", + "completed":"2017-11-30T01:30:44.968Z", + "new_balance":"5068.80", + "value":"105.63" + } + }, + { + "id":"40045577-a9d3-4ec7-a818-f933eb1d4967", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T12:09:44.989Z", + "completed":"2017-11-30T12:09:44.989Z", + "new_balance":"5065.36", + "value":"-3.44" + } + }, + { + "id":"e8c83a05-a789-4cf8-a4ff-164732de96a2", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T01:26:59.267Z", + "completed":"2017-12-01T01:26:59.267Z", + "new_balance":"5062.90", + "value":"-2.46" + } + }, + { + "id":"0fb99cec-0801-4bd8-80e5-23d8840b80d6", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T02:15:00.095Z", + "completed":"2017-12-01T02:15:00.095Z", + "new_balance":"5057.75", + "value":"-5.15" + } + }, + { + "id":"b5e5601a-7166-4811-b10e-08f86a3f0ffa", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T12:06:01.224Z", + "completed":"2017-12-01T12:06:01.224Z", + "new_balance":"5051.35", + "value":"-6.40" + } + }, + { + "id":"5ea15a18-2a35-40fa-8219-a75ee459de2a", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T12:08:11.240Z", + "completed":"2017-12-01T12:08:11.240Z", + "new_balance":"5047.91", + "value":"-3.44" + } + }, + { + "id":"279e5043-42a2-4562-9d2d-7878024a8f7f", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T13:15:30.193Z", + "completed":"2017-12-01T13:15:30.193Z", + "new_balance":"5043.02", + "value":"-4.89" + } + }, + { + "id":"1b40c080-641e-4cb8-b9ee-0045a59b5909", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T16:24:13.357Z", + "completed":"2017-12-01T16:24:13.357Z", + "new_balance":"5037.87", + "value":"-5.15" + } + }, + { + "id":"99f18546-c3b7-4fa4-b197-e63c15c6662e", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T16:49:10.736Z", + "completed":"2017-12-01T16:49:10.736Z", + "new_balance":"5030.68", + "value":"-7.19" + } + }, + { + "id":"cb6b4fae-12c7-4c01-ad0c-84081ae43c1d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T17:18:11.689Z", + "completed":"2017-12-01T17:18:11.689Z", + "new_balance":"4972.45", + "value":"-58.23" + } + }, + { + "id":"be95da90-9f1a-4f26-9f18-cda1ef322e74", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T19:37:27.581Z", + "completed":"2017-12-01T19:37:27.581Z", + "new_balance":"4970.58", + "value":"-1.87" + } + }, + { + "id":"93b781c5-19c5-4388-b920-cc28e41bf175", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T15:33:08.731Z", + "completed":"2017-12-02T15:33:08.731Z", + "new_balance":"4969.34", + "value":"-1.24" + } + }, + { + "id":"e6424fe0-7cf1-4d76-a6ed-b76bc6bb0101", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:22:36.164Z", + "completed":"2017-12-02T17:22:36.164Z", + "new_balance":"4962.42", + "value":"-6.92" + } + }, + { + "id":"ed52e84c-18d3-42a2-8bc9-db211a7bcb9d", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T22:05:24.226Z", + "completed":"2017-12-02T22:05:24.226Z", + "new_balance":"4960.84", + "value":"-1.58" + } + }, + { + "id":"29fa346e-a1ef-4be9-9825-31cb93b941c0", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T10:58:32.918Z", + "completed":"2017-12-04T10:58:32.918Z", + "new_balance":"4956.57", + "value":"-4.27" + } + }, + { + "id":"e7d09e49-8f58-4fcf-9088-d6014a49473b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T11:17:30.453Z", + "completed":"2017-12-04T11:17:30.453Z", + "new_balance":"4951.88", + "value":"-4.69" + } + }, + { + "id":"973837a8-953c-4470-a32b-27aba872844b", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:15:43.353Z", + "completed":"2017-12-04T17:15:43.353Z", + "new_balance":"4949.74", + "value":"-2.14" + } + }, + { + "id":"41b9b575-6342-4836-9023-d744f4f37920", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T02:56:33.789Z", + "completed":"2017-12-05T02:56:33.789Z", + "new_balance":"4947.75", + "value":"-1.99" + } + }, + { + "id":"02f35fea-122c-42e3-8456-532a277f8780", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T03:29:00.160Z", + "completed":"2017-12-05T03:29:00.160Z", + "new_balance":"4943.33", + "value":"-4.42" + } + }, + { + "id":"33846831-40a0-4ef8-9fbd-1351c5a06e51", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T18:05:18.175Z", + "completed":"2017-12-18T18:05:18.175Z", + "new_balance":"4938.18", + "value":"-5.15" + } + }, + { + "id":"c628bd28-6fcc-450a-b16c-4718092e8318", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T01:54:20.000Z", + "completed":"2017-12-30T01:54:20.000Z", + "new_balance":"4933.91", + "value":"-4.27" + } + }, + { + "id":"00a64e04-a91f-448e-a52b-d58e6e78b5f1", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T06:21:17.646Z", + "completed":"2017-12-30T06:21:17.646Z", + "new_balance":"5039.54", + "value":"105.63" + } + }, + { + "id":"ed169b06-c098-45e0-8527-d9ac2cde1a71", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T07:20:15.487Z", + "completed":"2017-12-30T07:20:15.487Z", + "new_balance":"5036.10", + "value":"-3.44" + } + }, + { + "id":"788d5bc5-e171-4cb5-8d55-add593efedd8", + "this_account":{ + "id":"2ec4878c-bc70-477c-8372-2f40c469ff04", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T16:35:45.475Z", + "completed":"2017-12-30T16:35:45.475Z", + "new_balance":"5032.99", + "value":"-3.11" + } + }, + { + "id":"58a6dff4-e80f-497b-bd6a-b8e251400dfc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T05:32:18.425Z", + "completed":"2016-01-01T05:32:18.425Z", + "new_balance":"7146.47", + "value":"-61.87" + } + }, + { + "id":"642f369c-5818-492e-8e9d-81908eb863f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:36:46.078Z", + "completed":"2016-01-01T19:36:46.078Z", + "new_balance":"7084.60", + "value":"-61.87" + } + }, + { + "id":"187c6b84-395a-441d-919e-bae08d1b176b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T02:23:54.159Z", + "completed":"2016-01-03T02:23:54.159Z", + "new_balance":"7010.67", + "value":"-73.93" + } + }, + { + "id":"98ff04b5-d909-4332-9284-b68fa4f8bf53", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T06:34:06.026Z", + "completed":"2016-01-03T06:34:06.026Z", + "new_balance":"6976.24", + "value":"-34.43" + } + }, + { + "id":"96ba61e9-6cb6-4889-91fe-069510e0f772", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T10:06:08.938Z", + "completed":"2016-01-03T10:06:08.938Z", + "new_balance":"6951.68", + "value":"-24.56" + } + }, + { + "id":"531b19e3-ae68-47ae-aebf-3d5b47184f34", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T23:47:28.736Z", + "completed":"2016-01-03T23:47:28.736Z", + "new_balance":"6441.14", + "value":"-510.54" + } + }, + { + "id":"9d1beccd-5ddb-415f-858c-53eeeafcedde", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T12:37:14.117Z", + "completed":"2016-01-05T12:37:14.117Z", + "new_balance":"6387.96", + "value":"-53.18" + } + }, + { + "id":"f94fdd91-cb63-4ff4-965f-fcb07316b4b0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T19:06:40.113Z", + "completed":"2016-01-05T19:06:40.113Z", + "new_balance":"6374.95", + "value":"-13.01" + } + }, + { + "id":"ba33bae9-8ab6-4ec4-a1b1-da1766106100", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T22:36:28.885Z", + "completed":"2016-01-05T22:36:28.885Z", + "new_balance":"6330.97", + "value":"-43.98" + } + }, + { + "id":"bf1fba70-99c1-49ea-b8f8-cbc256066a86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T04:46:00.031Z", + "completed":"2016-01-06T04:46:00.031Z", + "new_balance":"6301.09", + "value":"-29.88" + } + }, + { + "id":"cc903def-a9a4-4bcc-91df-c745ab03960a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T18:38:54.144Z", + "completed":"2016-01-06T18:38:54.144Z", + "new_balance":"6278.40", + "value":"-22.69" + } + }, + { + "id":"bb8469c1-1b00-456b-b31a-3d964aea013a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T22:43:22.830Z", + "completed":"2016-01-07T22:43:22.830Z", + "new_balance":"6239.23", + "value":"-39.17" + } + }, + { + "id":"49844f66-b211-4923-8c68-47b3e8cecc8b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T02:21:33.241Z", + "completed":"2016-01-10T02:21:33.241Z", + "new_balance":"6214.36", + "value":"-24.87" + } + }, + { + "id":"2555afa9-9033-463d-a36a-b4fdb7629c8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T11:31:18.317Z", + "completed":"2016-01-10T11:31:18.317Z", + "new_balance":"6161.18", + "value":"-53.18" + } + }, + { + "id":"8a166095-b12c-4d30-a777-c0365d7b29cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T05:26:38.852Z", + "completed":"2016-01-12T05:26:38.852Z", + "new_balance":"6141.11", + "value":"-20.07" + } + }, + { + "id":"82adcfa4-6302-45fb-87b6-f0beb0e1d187", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T07:12:04.777Z", + "completed":"2016-01-12T07:12:04.777Z", + "new_balance":"6101.94", + "value":"-39.17" + } + }, + { + "id":"631e2d71-4891-4f7b-9942-15808e424473", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:45:15.345Z", + "completed":"2016-01-12T22:45:15.345Z", + "new_balance":"6077.38", + "value":"-24.56" + } + }, + { + "id":"dfa78207-b9fb-4c92-8847-2a6ea634d25a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T13:23:25.957Z", + "completed":"2016-01-15T13:23:25.957Z", + "new_balance":"6060.98", + "value":"-16.40" + } + }, + { + "id":"793d5a6b-caa9-4686-aad9-2cb2d0b6ab1a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T14:08:51.888Z", + "completed":"2016-01-16T14:08:51.888Z", + "new_balance":"6007.80", + "value":"-53.18" + } + }, + { + "id":"618ea739-49e0-42a8-b4e6-5a13d856d377", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T17:25:42.044Z", + "completed":"2016-01-16T17:25:42.044Z", + "new_balance":"6001.65", + "value":"-6.15" + } + }, + { + "id":"211a2039-d0db-409d-a22b-ea788c7c29cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T00:41:24.715Z", + "completed":"2016-01-17T00:41:24.715Z", + "new_balance":"5940.47", + "value":"-61.18" + } + }, + { + "id":"84a1aafe-7f4d-4a7c-8e09-c3dc9356386e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T03:36:21.251Z", + "completed":"2016-01-17T03:36:21.251Z", + "new_balance":"5909.15", + "value":"-31.32" + } + }, + { + "id":"8b3fe66e-c2c5-4314-a76d-695b0a793afd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T17:47:16.308Z", + "completed":"2016-01-19T17:47:16.308Z", + "new_balance":"5878.75", + "value":"-30.40" + } + }, + { + "id":"35c8e4cd-17b5-4cdc-a32e-31c54334133f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T13:09:02.334Z", + "completed":"2016-01-20T13:09:02.334Z", + "new_balance":"5825.57", + "value":"-53.18" + } + }, + { + "id":"31f17559-1830-4afc-8393-b3044d31e791", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T20:33:39.074Z", + "completed":"2016-01-23T20:33:39.074Z", + "new_balance":"5809.74", + "value":"-15.83" + } + }, + { + "id":"401d733c-d8af-4ad7-a96f-6dd5069c4bef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T09:52:20.667Z", + "completed":"2016-01-26T09:52:20.667Z", + "new_balance":"5751.26", + "value":"-58.48" + } + }, + { + "id":"30558f5c-6020-4ea4-9be6-e3ae30125725", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T22:19:47.661Z", + "completed":"2016-01-27T22:19:47.661Z", + "new_balance":"6939.77", + "value":"1188.51" + } + }, + { + "id":"d91aa494-b728-4ae4-b941-129e8e1971c4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T08:50:43.916Z", + "completed":"2016-01-28T08:50:43.916Z", + "new_balance":"6905.34", + "value":"-34.43" + } + }, + { + "id":"96e77c67-eb78-4437-a709-98e960fb8376", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T02:26:23.459Z", + "completed":"2016-01-30T02:26:23.459Z", + "new_balance":"6863.00", + "value":"-42.34" + } + }, + { + "id":"25a4bea0-fe3b-48b4-960f-5df851c28f6c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T11:19:59.218Z", + "completed":"2016-02-03T11:19:59.218Z", + "new_balance":"6352.46", + "value":"-510.54" + } + }, + { + "id":"9baa8e3b-8596-46df-9e58-a3f35eb949c9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T12:03:52.005Z", + "completed":"2016-02-03T12:03:52.005Z", + "new_balance":"6327.90", + "value":"-24.56" + } + }, + { + "id":"260c77c8-cdc8-4cb6-b7fc-3f42ecb9aee8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T22:32:06.124Z", + "completed":"2016-02-03T22:32:06.124Z", + "new_balance":"6293.47", + "value":"-34.43" + } + }, + { + "id":"5ce81f2d-f6af-4c2a-a5ff-9366fbfca201", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T23:37:28.909Z", + "completed":"2016-02-03T23:37:28.909Z", + "new_balance":"6219.54", + "value":"-73.93" + } + }, + { + "id":"5ca02807-c339-4fcb-9e32-14cf33e0399a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:57:26.923Z", + "completed":"2016-02-08T15:57:26.923Z", + "new_balance":"6175.56", + "value":"-43.98" + } + }, + { + "id":"e8ec3745-d4d8-45a3-8855-a034591d6806", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T21:02:16.338Z", + "completed":"2016-02-08T21:02:16.338Z", + "new_balance":"6122.38", + "value":"-53.18" + } + }, + { + "id":"0bdd0927-1fb9-4956-ad07-0d46e65a958a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T15:20:39.624Z", + "completed":"2016-02-11T15:20:39.624Z", + "new_balance":"6133.27", + "value":"10.89" + } + }, + { + "id":"d5033a1c-4caa-4438-a7a7-79af5bac2b32", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T18:58:50.339Z", + "completed":"2016-02-13T18:58:50.339Z", + "new_balance":"6103.39", + "value":"-29.88" + } + }, + { + "id":"afc3ceee-b58c-4517-9df9-43e606fa4d3e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T19:35:29.539Z", + "completed":"2016-02-14T19:35:29.539Z", + "new_balance":"6075.54", + "value":"-27.85" + } + }, + { + "id":"e87fc543-be9c-44db-9cf8-ba4ead0ccb34", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T13:01:31.288Z", + "completed":"2016-02-17T13:01:31.288Z", + "new_balance":"6064.63", + "value":"-10.91" + } + }, + { + "id":"74e63955-2de3-412f-b649-0972af9db83e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T11:03:30.524Z", + "completed":"2016-02-21T11:03:30.524Z", + "new_balance":"6023.50", + "value":"-41.13" + } + }, + { + "id":"291c7e21-17ac-4737-92c4-5b03db302a14", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T08:27:22.120Z", + "completed":"2016-02-23T08:27:22.120Z", + "new_balance":"5982.58", + "value":"-40.92" + } + }, + { + "id":"b88ed2f5-ef5a-40c9-8d97-702c36d4a52e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T22:17:58.286Z", + "completed":"2016-02-23T22:17:58.286Z", + "new_balance":"5929.40", + "value":"-53.18" + } + }, + { + "id":"0a7607f4-68c3-4633-a4c7-853ac21d54b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T18:33:14.573Z", + "completed":"2016-02-24T18:33:14.573Z", + "new_balance":"5918.49", + "value":"-10.91" + } + }, + { + "id":"cb954c45-9f37-459e-9c2e-2b375eb61a13", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T11:53:35.639Z", + "completed":"2016-02-27T11:53:35.639Z", + "new_balance":"7107.00", + "value":"1188.51" + } + }, + { + "id":"7181b7ae-64de-45b0-be86-1b6521379556", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T15:56:16.259Z", + "completed":"2016-02-27T15:56:16.259Z", + "new_balance":"7048.52", + "value":"-58.48" + } + }, + { + "id":"82f1d218-67af-4845-a577-ef3f4a948ad6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T20:32:26.173Z", + "completed":"2016-02-27T20:32:26.173Z", + "new_balance":"7031.78", + "value":"-16.74" + } + }, + { + "id":"0399781e-985b-4e02-8017-9bcf01024a4e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T01:28:55.899Z", + "completed":"2016-02-28T01:28:55.899Z", + "new_balance":"6989.44", + "value":"-42.34" + } + }, + { + "id":"9307e4bd-8e45-49b0-8c7c-f1d3f46d9425", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T11:55:27.215Z", + "completed":"2016-02-28T11:55:27.215Z", + "new_balance":"6955.01", + "value":"-34.43" + } + }, + { + "id":"703d9bc5-c62d-48a0-855f-6d0887dbfdeb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T02:48:20.482Z", + "completed":"2016-03-01T02:48:20.482Z", + "new_balance":"6893.14", + "value":"-61.87" + } + }, + { + "id":"f2a4df24-5556-41d2-b8f6-0e24543260f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T01:24:50.290Z", + "completed":"2016-03-03T01:24:50.290Z", + "new_balance":"6868.58", + "value":"-24.56" + } + }, + { + "id":"549fff96-3a2a-438b-8f92-2aa5dba2154c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:20:03.158Z", + "completed":"2016-03-03T05:20:03.158Z", + "new_balance":"6834.15", + "value":"-34.43" + } + }, + { + "id":"6764b258-e156-4a1a-ad76-03ec468cdc89", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T13:14:21.052Z", + "completed":"2016-03-03T13:14:21.052Z", + "new_balance":"6323.61", + "value":"-510.54" + } + }, + { + "id":"60812ef7-b765-44fc-84fa-74854966470b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T22:24:29.901Z", + "completed":"2016-03-03T22:24:29.901Z", + "new_balance":"6249.68", + "value":"-73.93" + } + }, + { + "id":"ab0dba8e-e957-473c-9b5d-7d9a559f29ae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T11:21:01.521Z", + "completed":"2016-03-05T11:21:01.521Z", + "new_balance":"6196.50", + "value":"-53.18" + } + }, + { + "id":"c6bbea37-1e59-4ece-a4dd-6fde84449af7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T19:16:22.468Z", + "completed":"2016-03-05T19:16:22.468Z", + "new_balance":"6147.84", + "value":"-48.66" + } + }, + { + "id":"1466b3cc-24c3-492b-a781-591071eb6c8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T00:57:25.486Z", + "completed":"2016-03-07T00:57:25.486Z", + "new_balance":"6134.17", + "value":"-13.67" + } + }, + { + "id":"45a6c06d-5274-4abf-96c8-a1dfd94ab2b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T03:53:09.037Z", + "completed":"2016-03-09T03:53:09.037Z", + "new_balance":"6080.99", + "value":"-53.18" + } + }, + { + "id":"c84ef64b-1c5e-408a-b51f-50751112bf93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T12:08:11.027Z", + "completed":"2016-03-11T12:08:11.027Z", + "new_balance":"6069.99", + "value":"-11.00" + } + }, + { + "id":"cca1ee3b-72b1-458e-9944-60fadcc08cf2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T19:33:29.851Z", + "completed":"2016-03-13T19:33:29.851Z", + "new_balance":"6012.31", + "value":"-57.68" + } + }, + { + "id":"5fbfc146-9ff5-40a9-8951-7af13a05d5da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T15:38:29.495Z", + "completed":"2016-03-14T15:38:29.495Z", + "new_balance":"6000.38", + "value":"-11.93" + } + }, + { + "id":"e758c1b6-9a57-4560-84d6-a5e8642294db", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T22:22:34.652Z", + "completed":"2016-03-14T22:22:34.652Z", + "new_balance":"6063.74", + "value":"63.36" + } + }, + { + "id":"fd790d86-8eab-4bef-8bc2-5314dfdd56ea", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T19:18:17.776Z", + "completed":"2016-03-15T19:18:17.776Z", + "new_balance":"6021.40", + "value":"-42.34" + } + }, + { + "id":"f9a3183a-5035-4f0f-9f31-06daba633c56", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T10:41:33.139Z", + "completed":"2016-03-26T10:41:33.139Z", + "new_balance":"5974.47", + "value":"-46.93" + } + }, + { + "id":"7b953851-d43c-4d40-93f4-a0021953ef29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:49:55.184Z", + "completed":"2016-03-26T13:49:55.184Z", + "new_balance":"5949.10", + "value":"-25.37" + } + }, + { + "id":"ae8f7f79-736f-4e74-9530-041738f39465", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T18:42:48.090Z", + "completed":"2016-03-26T18:42:48.090Z", + "new_balance":"5922.26", + "value":"-26.84" + } + }, + { + "id":"25cb17f5-5574-4711-9821-0d2a214f283f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T06:22:47.029Z", + "completed":"2016-03-27T06:22:47.029Z", + "new_balance":"7110.77", + "value":"1188.51" + } + }, + { + "id":"15a5ccaf-5d73-4a2b-9fd5-399099aa9b5a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T14:56:48.604Z", + "completed":"2016-03-27T14:56:48.604Z", + "new_balance":"7057.59", + "value":"-53.18" + } + }, + { + "id":"5fbc7f9d-18b9-4aab-b832-05d2e3d0eaa2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T21:44:28.236Z", + "completed":"2016-03-27T21:44:28.236Z", + "new_balance":"6991.01", + "value":"-66.58" + } + }, + { + "id":"b247cc6c-60c8-428d-a4c9-29cb0d02acf9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T19:59:43.696Z", + "completed":"2016-03-28T19:59:43.696Z", + "new_balance":"6956.58", + "value":"-34.43" + } + }, + { + "id":"19d1f38e-34cd-4cc1-8747-5368bc1ec3dc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T17:40:58.221Z", + "completed":"2016-03-30T17:40:58.221Z", + "new_balance":"6914.24", + "value":"-42.34" + } + }, + { + "id":"beaa93a8-1ca2-468a-b374-5034997ec49c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T03:39:24.718Z", + "completed":"2016-04-01T03:39:24.718Z", + "new_balance":"6879.81", + "value":"-34.43" + } + }, + { + "id":"3e1b9420-3036-4b39-9dfc-c811729ece91", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T07:14:49.360Z", + "completed":"2016-04-01T07:14:49.360Z", + "new_balance":"6855.25", + "value":"-24.56" + } + }, + { + "id":"f6121aa6-0786-4fb1-af40-1f67e5545556", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T07:18:48.869Z", + "completed":"2016-04-01T07:18:48.869Z", + "new_balance":"6781.32", + "value":"-73.93" + } + }, + { + "id":"261c4885-6c12-4e01-bbbf-25a22ec87b41", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T12:39:49.383Z", + "completed":"2016-04-01T12:39:49.383Z", + "new_balance":"6719.45", + "value":"-61.87" + } + }, + { + "id":"aea1b61f-c706-4055-a188-4df4d3541c64", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:55:11.580Z", + "completed":"2016-04-01T14:55:11.580Z", + "new_balance":"6208.91", + "value":"-510.54" + } + }, + { + "id":"348db82f-2830-4f69-acd9-913ec0d84cb0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T03:50:57.578Z", + "completed":"2016-04-05T03:50:57.578Z", + "new_balance":"6195.90", + "value":"-13.01" + } + }, + { + "id":"303b3d8f-7559-4c12-a262-3aea7d62c9f8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T17:34:44.225Z", + "completed":"2016-04-05T17:34:44.225Z", + "new_balance":"6173.21", + "value":"-22.69" + } + }, + { + "id":"64eae10f-9186-423b-9619-36f55294edd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T18:34:15.875Z", + "completed":"2016-04-05T18:34:15.875Z", + "new_balance":"6120.03", + "value":"-53.18" + } + }, + { + "id":"700c0948-db39-4c96-b9ec-bb6af27e39e5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T22:22:49.699Z", + "completed":"2016-04-05T22:22:49.699Z", + "new_balance":"6076.05", + "value":"-43.98" + } + }, + { + "id":"c84d94d8-2376-4132-b570-b21351b84e13", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T12:20:13.469Z", + "completed":"2016-04-07T12:20:13.469Z", + "new_balance":"6046.17", + "value":"-29.88" + } + }, + { + "id":"6c6fd844-afea-4011-9ca7-a00c8372cd77", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T08:40:27.326Z", + "completed":"2016-04-09T08:40:27.326Z", + "new_balance":"6021.30", + "value":"-24.87" + } + }, + { + "id":"19462bc7-53d3-4c24-9009-fe50f41888aa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T20:11:25.091Z", + "completed":"2016-04-09T20:11:25.091Z", + "new_balance":"5968.12", + "value":"-53.18" + } + }, + { + "id":"9a777e90-5e8e-4330-bc34-f6e0eace2bcd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T04:42:17.053Z", + "completed":"2016-04-10T04:42:17.053Z", + "new_balance":"5943.56", + "value":"-24.56" + } + }, + { + "id":"4d056703-1b2e-4f80-ad86-1e75a62f940b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T07:30:14.958Z", + "completed":"2016-04-10T07:30:14.958Z", + "new_balance":"5904.39", + "value":"-39.17" + } + }, + { + "id":"dfc8fb88-3e00-43c9-9c6f-39745c129ac5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T10:30:21.312Z", + "completed":"2016-04-10T10:30:21.312Z", + "new_balance":"5884.32", + "value":"-20.07" + } + }, + { + "id":"3b362a20-961b-44ce-bdee-ec38341f8bff", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T19:44:27.179Z", + "completed":"2016-04-10T19:44:27.179Z", + "new_balance":"5867.92", + "value":"-16.40" + } + }, + { + "id":"13e4f833-b867-4912-a63b-ae1946b3de73", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T11:20:40.213Z", + "completed":"2016-04-11T11:20:40.213Z", + "new_balance":"5861.77", + "value":"-6.15" + } + }, + { + "id":"2a36b2e2-f4a9-4d57-a542-b1fe90d29ea6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T15:10:08.392Z", + "completed":"2016-04-11T15:10:08.392Z", + "new_balance":"5830.45", + "value":"-31.32" + } + }, + { + "id":"ce307af6-399b-4510-b7ff-e81c20253d41", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T17:58:43.246Z", + "completed":"2016-04-11T17:58:43.246Z", + "new_balance":"5777.27", + "value":"-53.18" + } + }, + { + "id":"e8368724-1ba9-48e7-be03-c3c23359860e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T18:34:19.722Z", + "completed":"2016-04-11T18:34:19.722Z", + "new_balance":"5716.09", + "value":"-61.18" + } + }, + { + "id":"3c9bd8b5-4f87-4b5b-9487-3b0e2b2e4ea9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T20:01:09.514Z", + "completed":"2016-04-11T20:01:09.514Z", + "new_balance":"5685.69", + "value":"-30.40" + } + }, + { + "id":"87c6a47f-2c3c-49ef-a777-9837c238dd92", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T12:11:19.293Z", + "completed":"2016-04-21T12:11:19.293Z", + "new_balance":"5632.51", + "value":"-53.18" + } + }, + { + "id":"58a8d304-f7b7-4852-9aeb-d272ac8a335a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T11:42:55.704Z", + "completed":"2016-04-23T11:42:55.704Z", + "new_balance":"5616.68", + "value":"-15.83" + } + }, + { + "id":"362fe145-35c9-42c3-8af4-a87e85bac2b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T11:41:07.313Z", + "completed":"2016-04-29T11:41:07.313Z", + "new_balance":"6805.19", + "value":"1188.51" + } + }, + { + "id":"155e982b-32e8-4072-ac4a-16f7d9b61932", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T17:38:18.913Z", + "completed":"2016-04-29T17:38:18.913Z", + "new_balance":"6746.71", + "value":"-58.48" + } + }, + { + "id":"aa9226bd-99dc-4ffa-af6b-689c172b803f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T22:04:43.561Z", + "completed":"2016-04-29T22:04:43.561Z", + "new_balance":"6712.28", + "value":"-34.43" + } + }, + { + "id":"30270dfa-6d1d-409b-a9e0-0453762eaf70", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T23:09:27.560Z", + "completed":"2016-04-30T23:09:27.560Z", + "new_balance":"6669.94", + "value":"-42.34" + } + }, + { + "id":"1fe95a2e-8208-431a-aa90-e03c05fe9ef6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T03:41:38.954Z", + "completed":"2016-05-02T03:41:38.954Z", + "new_balance":"6159.40", + "value":"-510.54" + } + }, + { + "id":"233bf8a5-3ac0-42e5-9628-c207e9232fca", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T04:17:54.768Z", + "completed":"2016-05-02T04:17:54.768Z", + "new_balance":"6097.53", + "value":"-61.87" + } + }, + { + "id":"fd6866f4-a2c3-4aa5-ab64-68b79ca0edb2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T15:45:55.948Z", + "completed":"2016-05-02T15:45:55.948Z", + "new_balance":"6072.97", + "value":"-24.56" + } + }, + { + "id":"c2ca0dd5-e093-4d04-a2e4-de6892855267", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T18:05:47.413Z", + "completed":"2016-05-02T18:05:47.413Z", + "new_balance":"5999.04", + "value":"-73.93" + } + }, + { + "id":"9f62f6c5-d9e5-4a89-b55b-8a1fca701747", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T01:14:39.380Z", + "completed":"2016-05-06T01:14:39.380Z", + "new_balance":"5955.06", + "value":"-43.98" + } + }, + { + "id":"9ad866e6-0e8f-4f7b-a424-a0ddfe382d3f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T11:01:17.524Z", + "completed":"2016-05-07T11:01:17.524Z", + "new_balance":"5944.15", + "value":"-10.91" + } + }, + { + "id":"a1f978cb-13e2-4b5f-9781-683f0f966bc5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T11:16:22.057Z", + "completed":"2016-05-07T11:16:22.057Z", + "new_balance":"5903.02", + "value":"-41.13" + } + }, + { + "id":"349a317f-21aa-4d9b-810d-11ba2c224675", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T14:25:31.688Z", + "completed":"2016-05-07T14:25:31.688Z", + "new_balance":"5875.17", + "value":"-27.85" + } + }, + { + "id":"6539a2d5-9097-42e2-b3a2-66ec4d86274f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T18:52:19.560Z", + "completed":"2016-05-07T18:52:19.560Z", + "new_balance":"5845.29", + "value":"-29.88" + } + }, + { + "id":"e0399441-4dbf-4bf9-9774-033f5dfbdcd1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T12:10:57.688Z", + "completed":"2016-05-08T12:10:57.688Z", + "new_balance":"5804.37", + "value":"-40.92" + } + }, + { + "id":"9d2b0c8f-9eba-49d3-96c2-4171463a6f9c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T03:06:48.977Z", + "completed":"2016-05-09T03:06:48.977Z", + "new_balance":"5769.94", + "value":"-34.43" + } + }, + { + "id":"6317f89c-0c33-420e-a903-dc2b072fa834", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T00:42:09.526Z", + "completed":"2016-05-13T00:42:09.526Z", + "new_balance":"5716.76", + "value":"-53.18" + } + }, + { + "id":"25121d65-fb00-48c5-8c5d-8fe1971f5d3f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T13:54:17.335Z", + "completed":"2016-05-26T13:54:17.335Z", + "new_balance":"5705.85", + "value":"-10.91" + } + }, + { + "id":"b18eaadf-ae16-4089-b2ad-a99fb2686334", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T23:24:26.301Z", + "completed":"2016-05-26T23:24:26.301Z", + "new_balance":"5652.67", + "value":"-53.18" + } + }, + { + "id":"607b5f42-90cf-4387-af79-28e79cea2992", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T12:53:00.795Z", + "completed":"2016-05-27T12:53:00.795Z", + "new_balance":"5635.93", + "value":"-16.74" + } + }, + { + "id":"4f6e3338-dbcb-4233-abe4-2652dea605bc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T21:28:12.368Z", + "completed":"2016-05-27T21:28:12.368Z", + "new_balance":"5577.45", + "value":"-58.48" + } + }, + { + "id":"40382147-d518-4e41-9161-7dd69435a3a2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T05:26:54.130Z", + "completed":"2016-05-30T05:26:54.130Z", + "new_balance":"6765.96", + "value":"1188.51" + } + }, + { + "id":"28a920c2-40a1-4f83-8344-38ef4e028861", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T08:03:53.418Z", + "completed":"2016-05-30T08:03:53.418Z", + "new_balance":"6723.62", + "value":"-42.34" + } + }, + { + "id":"8d3fd929-9106-4634-b8c2-c244e76a41ab", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T12:05:53.630Z", + "completed":"2016-05-30T12:05:53.630Z", + "new_balance":"6689.19", + "value":"-34.43" + } + }, + { + "id":"586e0344-4049-45e5-9033-59f05885d9fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T03:58:50.448Z", + "completed":"2016-06-01T03:58:50.448Z", + "new_balance":"6640.53", + "value":"-48.66" + } + }, + { + "id":"539d3fa8-170a-40aa-b632-741f58fee642", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T04:57:52.913Z", + "completed":"2016-06-01T04:57:52.913Z", + "new_balance":"6615.97", + "value":"-24.56" + } + }, + { + "id":"8e492daf-74c3-4ca1-b550-ae98156d9a5f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T06:10:46.535Z", + "completed":"2016-06-01T06:10:46.535Z", + "new_balance":"6105.43", + "value":"-510.54" + } + }, + { + "id":"dd6ab8e3-70e4-483b-aa44-67e29b805487", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:33:09.954Z", + "completed":"2016-06-01T06:33:09.954Z", + "new_balance":"6052.25", + "value":"-53.18" + } + }, + { + "id":"ee30cc09-6bd8-4e59-b18a-376c8993297b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T10:36:32.544Z", + "completed":"2016-06-01T10:36:32.544Z", + "new_balance":"6038.58", + "value":"-13.67" + } + }, + { + "id":"6da2b21a-b2e0-4b48-b455-ece1866ae667", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T12:44:00.980Z", + "completed":"2016-06-01T12:44:00.980Z", + "new_balance":"5976.71", + "value":"-61.87" + } + }, + { + "id":"82c9e0f8-7262-400f-a2ec-ba56442aed8e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T18:11:43.663Z", + "completed":"2016-06-01T18:11:43.663Z", + "new_balance":"5942.28", + "value":"-34.43" + } + }, + { + "id":"fa722fa4-3e25-43d7-91c7-77a8bf988588", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T20:26:29.766Z", + "completed":"2016-06-01T20:26:29.766Z", + "new_balance":"5868.35", + "value":"-73.93" + } + }, + { + "id":"2faa2b7f-b86d-4bdc-8432-60233c5152b3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T21:36:32.842Z", + "completed":"2016-06-01T21:36:32.842Z", + "new_balance":"5815.17", + "value":"-53.18" + } + }, + { + "id":"7596a59b-0e07-43dc-bc81-b1ac127b1dc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T11:44:00.801Z", + "completed":"2016-06-02T11:44:00.801Z", + "new_balance":"5803.24", + "value":"-11.93" + } + }, + { + "id":"76eaf900-9be4-4a45-9c1d-8bcd24120da2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T12:08:56.493Z", + "completed":"2016-06-02T12:08:56.493Z", + "new_balance":"5745.56", + "value":"-57.68" + } + }, + { + "id":"2a6280f1-efaa-49a6-b92d-fef9b188ad9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T16:07:27.029Z", + "completed":"2016-06-02T16:07:27.029Z", + "new_balance":"5734.56", + "value":"-11.00" + } + }, + { + "id":"09eaa661-e863-4ab1-b017-e07e0d547174", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T05:29:06.893Z", + "completed":"2016-06-04T05:29:06.893Z", + "new_balance":"5709.19", + "value":"-25.37" + } + }, + { + "id":"64045621-ff90-4a28-b112-4ed59766ff84", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T11:31:19.791Z", + "completed":"2016-06-04T11:31:19.791Z", + "new_balance":"5666.85", + "value":"-42.34" + } + }, + { + "id":"361b342d-c5e0-422a-8eb5-fbd26b061e86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T14:42:55.144Z", + "completed":"2016-06-04T14:42:55.144Z", + "new_balance":"5619.92", + "value":"-46.93" + } + }, + { + "id":"974efde2-7a3a-42e3-8dd9-5ef134070c4a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T00:24:42.059Z", + "completed":"2016-06-05T00:24:42.059Z", + "new_balance":"5553.34", + "value":"-66.58" + } + }, + { + "id":"dd099aa2-de23-454b-bfea-a33f1d1eceec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T11:27:30.629Z", + "completed":"2016-06-05T11:27:30.629Z", + "new_balance":"5526.50", + "value":"-26.84" + } + }, + { + "id":"ec5a7adb-6132-41ee-bc19-3c30f9687f05", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T22:23:32.676Z", + "completed":"2016-06-18T22:23:32.676Z", + "new_balance":"5473.32", + "value":"-53.18" + } + }, + { + "id":"24f6e75f-685e-4d9c-8ac2-e7388c2f7336", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T03:00:14.753Z", + "completed":"2016-06-30T03:00:14.753Z", + "new_balance":"5438.89", + "value":"-34.43" + } + }, + { + "id":"50b2269d-57e8-47b0-8566-ec652a69f472", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:33:55.449Z", + "completed":"2016-06-30T19:33:55.449Z", + "new_balance":"5397.36", + "value":"-41.53" + } + }, + { + "id":"8a1fc850-2b2d-46b9-b5d7-302020b7633b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T21:23:40.976Z", + "completed":"2016-06-30T21:23:40.976Z", + "new_balance":"5355.02", + "value":"-42.34" + } + }, + { + "id":"694446fa-65f8-4c1d-81b5-b8d191204798", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T22:56:23.363Z", + "completed":"2016-06-30T22:56:23.363Z", + "new_balance":"6543.53", + "value":"1188.51" + } + }, + { + "id":"0084c234-31f2-4251-b1cc-9678609763f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T07:38:04.080Z", + "completed":"2016-07-01T07:38:04.080Z", + "new_balance":"6481.66", + "value":"-61.87" + } + }, + { + "id":"e0aa25e0-de7e-4c34-a06b-550488925dc7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T03:42:46.033Z", + "completed":"2016-07-03T03:42:46.033Z", + "new_balance":"6407.73", + "value":"-73.93" + } + }, + { + "id":"72a6a173-39a7-421d-80bb-e365130f15cf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T04:28:14.508Z", + "completed":"2016-07-03T04:28:14.508Z", + "new_balance":"6373.30", + "value":"-34.43" + } + }, + { + "id":"fd7790f0-79a0-48b8-abe9-10ff27f42d43", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T05:05:04.609Z", + "completed":"2016-07-03T05:05:04.609Z", + "new_balance":"6348.74", + "value":"-24.56" + } + }, + { + "id":"6743517f-7d45-401d-be89-8be6d5b05b16", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T22:44:44.270Z", + "completed":"2016-07-03T22:44:44.270Z", + "new_balance":"5838.20", + "value":"-510.54" + } + }, + { + "id":"5de25ee5-a79f-4638-9d63-be4dd4938219", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T00:50:03.928Z", + "completed":"2016-07-05T00:50:03.928Z", + "new_balance":"5785.02", + "value":"-53.18" + } + }, + { + "id":"bfc4095a-4aee-4103-915d-382fa25ff495", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T01:52:39.271Z", + "completed":"2016-07-05T01:52:39.271Z", + "new_balance":"5772.01", + "value":"-13.01" + } + }, + { + "id":"bf6583aa-0184-43ea-966b-d3fa87c71303", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:16:26.013Z", + "completed":"2016-07-05T15:16:26.013Z", + "new_balance":"5728.03", + "value":"-43.98" + } + }, + { + "id":"bcbe6347-4423-4266-a6f0-4ae2bc36fc55", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T05:41:06.367Z", + "completed":"2016-07-06T05:41:06.367Z", + "new_balance":"5705.34", + "value":"-22.69" + } + }, + { + "id":"de563c4c-c27d-47d2-be94-08ef2f106fbf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T20:16:49.159Z", + "completed":"2016-07-06T20:16:49.159Z", + "new_balance":"5675.46", + "value":"-29.88" + } + }, + { + "id":"6cf1847f-5487-4ef6-8cc8-baf32ecac7ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T03:19:45.834Z", + "completed":"2016-07-07T03:19:45.834Z", + "new_balance":"5636.29", + "value":"-39.17" + } + }, + { + "id":"caf99343-0636-4078-9f75-ed7552216acd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T04:55:54.836Z", + "completed":"2016-07-10T04:55:54.836Z", + "new_balance":"5583.11", + "value":"-53.18" + } + }, + { + "id":"8e235cb3-2a9d-4b4f-b323-190f969b1782", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T08:10:27.312Z", + "completed":"2016-07-10T08:10:27.312Z", + "new_balance":"5558.24", + "value":"-24.87" + } + }, + { + "id":"ec2388c2-fe18-4b21-be77-92b708512b28", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T08:20:42.469Z", + "completed":"2016-07-12T08:20:42.469Z", + "new_balance":"5519.07", + "value":"-39.17" + } + }, + { + "id":"9eba6437-620b-48bf-95a5-a9191d5b50aa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T12:10:12.670Z", + "completed":"2016-07-12T12:10:12.670Z", + "new_balance":"5499.00", + "value":"-20.07" + } + }, + { + "id":"750ad99a-e33d-44af-8a46-67ef6e8a6c71", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T17:50:10.720Z", + "completed":"2016-07-12T17:50:10.720Z", + "new_balance":"5474.44", + "value":"-24.56" + } + }, + { + "id":"f248948d-186a-4395-bbb5-5e327de1e830", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T15:53:19.134Z", + "completed":"2016-07-15T15:53:19.134Z", + "new_balance":"5458.04", + "value":"-16.40" + } + }, + { + "id":"55a33c80-69c8-4a81-a4f2-08d019ce4769", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T01:42:36.234Z", + "completed":"2016-07-16T01:42:36.234Z", + "new_balance":"5451.89", + "value":"-6.15" + } + }, + { + "id":"cc483628-d2dd-4dbd-b34f-7637d057f43d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T13:09:57.455Z", + "completed":"2016-07-16T13:09:57.455Z", + "new_balance":"5398.71", + "value":"-53.18" + } + }, + { + "id":"0f7466f5-f5c3-4ac5-86a2-4fe98029044f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T12:43:13.065Z", + "completed":"2016-07-17T12:43:13.065Z", + "new_balance":"5337.53", + "value":"-61.18" + } + }, + { + "id":"409a38cd-30b9-4327-8f64-82ff6efefb57", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T20:23:49.615Z", + "completed":"2016-07-17T20:23:49.615Z", + "new_balance":"5306.21", + "value":"-31.32" + } + }, + { + "id":"be42944d-d0e3-4cdc-99dd-9b778de9df5d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T01:33:21.667Z", + "completed":"2016-07-19T01:33:21.667Z", + "new_balance":"5275.81", + "value":"-30.40" + } + }, + { + "id":"1f32cee4-1b97-44de-b8b8-3ec56f96bdfd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T07:01:29.780Z", + "completed":"2016-07-20T07:01:29.780Z", + "new_balance":"5222.63", + "value":"-53.18" + } + }, + { + "id":"34a42b1b-5122-4647-a35e-9cf67120cee2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T16:51:08.132Z", + "completed":"2016-07-23T16:51:08.132Z", + "new_balance":"5206.80", + "value":"-15.83" + } + }, + { + "id":"d7e6e2ba-29db-4e21-9787-47e7ee021eeb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T12:37:04.373Z", + "completed":"2016-07-26T12:37:04.373Z", + "new_balance":"5148.32", + "value":"-58.48" + } + }, + { + "id":"896bd243-3fcb-437d-9474-7195164fe29d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T04:39:09.424Z", + "completed":"2016-07-27T04:39:09.424Z", + "new_balance":"6336.83", + "value":"1188.51" + } + }, + { + "id":"a8d1c538-6b0f-4563-aa41-e2e6a40bccd3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T01:03:08.120Z", + "completed":"2016-07-28T01:03:08.120Z", + "new_balance":"6302.40", + "value":"-34.43" + } + }, + { + "id":"2c28aeed-e131-40ea-a822-2e6d0140febc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T18:04:45.375Z", + "completed":"2016-07-30T18:04:45.375Z", + "new_balance":"6260.06", + "value":"-42.34" + } + }, + { + "id":"db52c61f-3258-4746-9d7c-997ca70e13b5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T09:16:09.760Z", + "completed":"2016-08-01T09:16:09.760Z", + "new_balance":"6198.19", + "value":"-61.87" + } + }, + { + "id":"1a62c8a1-69ef-4f63-a5b0-732fcf183df2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T03:12:01.901Z", + "completed":"2016-08-03T03:12:01.901Z", + "new_balance":"6163.76", + "value":"-34.43" + } + }, + { + "id":"6ff7567b-3e8e-429b-a2ab-4320d64c5c21", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T13:15:16.105Z", + "completed":"2016-08-03T13:15:16.105Z", + "new_balance":"6089.83", + "value":"-73.93" + } + }, + { + "id":"e51aafe4-d173-46a7-a12c-599ff97722f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T21:26:56.117Z", + "completed":"2016-08-03T21:26:56.117Z", + "new_balance":"6065.27", + "value":"-24.56" + } + }, + { + "id":"32f4c95f-fd4c-49a7-98ee-e2870b8d0076", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T23:57:58.142Z", + "completed":"2016-08-03T23:57:58.142Z", + "new_balance":"5554.73", + "value":"-510.54" + } + }, + { + "id":"eaa0301c-d5d1-4ab2-a399-af632b819769", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T00:11:06.816Z", + "completed":"2016-08-08T00:11:06.816Z", + "new_balance":"5510.75", + "value":"-43.98" + } + }, + { + "id":"52d37a6b-0f7c-4feb-a84a-a3b1d3c52bfd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T12:17:04.605Z", + "completed":"2016-08-08T12:17:04.605Z", + "new_balance":"5457.57", + "value":"-53.18" + } + }, + { + "id":"13bf06c8-17ce-451f-9e1e-ef92eee65e36", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T12:39:49.701Z", + "completed":"2016-08-11T12:39:49.701Z", + "new_balance":"5468.46", + "value":"10.89" + } + }, + { + "id":"84ae64c2-1986-4761-996f-1d4fe5ea18c2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T12:25:48.391Z", + "completed":"2016-08-13T12:25:48.391Z", + "new_balance":"5438.58", + "value":"-29.88" + } + }, + { + "id":"8a9697e8-64c7-4d45-a40c-311b057eafdb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T09:52:24.421Z", + "completed":"2016-08-14T09:52:24.421Z", + "new_balance":"5410.73", + "value":"-27.85" + } + }, + { + "id":"84a39262-1151-42e5-96d1-53bb04c80e4e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T13:40:32.201Z", + "completed":"2016-08-17T13:40:32.201Z", + "new_balance":"5399.82", + "value":"-10.91" + } + }, + { + "id":"825a1174-2c75-48df-a952-a8f53c410eb9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T07:21:27.808Z", + "completed":"2016-08-21T07:21:27.808Z", + "new_balance":"5358.69", + "value":"-41.13" + } + }, + { + "id":"08f01325-42d1-45e3-aaab-3cbad8e618a6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T09:50:28.437Z", + "completed":"2016-08-23T09:50:28.437Z", + "new_balance":"5305.51", + "value":"-53.18" + } + }, + { + "id":"1b18bcb5-16c3-4013-84e1-79e303cae477", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T16:55:22.111Z", + "completed":"2016-08-23T16:55:22.111Z", + "new_balance":"5264.59", + "value":"-40.92" + } + }, + { + "id":"f37771d6-b710-413d-ab8c-7c6807db295f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T18:00:51.823Z", + "completed":"2016-08-24T18:00:51.823Z", + "new_balance":"5253.68", + "value":"-10.91" + } + }, + { + "id":"57c0fa5d-b636-4c66-b24f-e2a3d742dab8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T09:58:00.852Z", + "completed":"2016-08-27T09:58:00.852Z", + "new_balance":"5195.20", + "value":"-58.48" + } + }, + { + "id":"06a084b9-1195-45d4-be4c-6f3fac731fa3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T17:01:58.971Z", + "completed":"2016-08-27T17:01:58.971Z", + "new_balance":"5178.46", + "value":"-16.74" + } + }, + { + "id":"82c6ab08-db5f-4169-981c-ce4e8f5eabba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T20:17:59.207Z", + "completed":"2016-08-27T20:17:59.207Z", + "new_balance":"6366.97", + "value":"1188.51" + } + }, + { + "id":"261707d8-4520-48cf-8791-6a5fdac9f33b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T19:47:25.950Z", + "completed":"2016-08-28T19:47:25.950Z", + "new_balance":"6332.54", + "value":"-34.43" + } + }, + { + "id":"1271a5ef-030b-422d-86f6-5fa2b88af951", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T20:17:24.781Z", + "completed":"2016-08-30T20:17:24.781Z", + "new_balance":"6290.20", + "value":"-42.34" + } + }, + { + "id":"1bf7467c-22e9-4b03-b93e-be0a10770c22", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T07:10:22.650Z", + "completed":"2016-09-01T07:10:22.650Z", + "new_balance":"6228.33", + "value":"-61.87" + } + }, + { + "id":"bbcd189a-6979-4e56-a13b-84de9b4694ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T00:32:50.307Z", + "completed":"2016-09-03T00:32:50.307Z", + "new_balance":"6193.90", + "value":"-34.43" + } + }, + { + "id":"d6bfca29-5e29-4b6a-b40e-4f02ba796567", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T05:38:58.368Z", + "completed":"2016-09-03T05:38:58.368Z", + "new_balance":"6119.97", + "value":"-73.93" + } + }, + { + "id":"794f8319-b371-49d5-8b61-333ef30a4009", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T12:47:08.025Z", + "completed":"2016-09-03T12:47:08.025Z", + "new_balance":"5609.43", + "value":"-510.54" + } + }, + { + "id":"248bfe41-6f73-44f6-8105-84a0b666286b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T18:23:21.258Z", + "completed":"2016-09-03T18:23:21.258Z", + "new_balance":"5584.87", + "value":"-24.56" + } + }, + { + "id":"7cc1de2e-bca1-4002-9ea3-37027b8eb479", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T00:52:31.149Z", + "completed":"2016-09-05T00:52:31.149Z", + "new_balance":"5531.69", + "value":"-53.18" + } + }, + { + "id":"6b2ece83-56a6-48f0-ac88-891ea3741a5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T01:48:52.388Z", + "completed":"2016-09-05T01:48:52.388Z", + "new_balance":"5483.03", + "value":"-48.66" + } + }, + { + "id":"e2418bbc-8735-4882-b71c-6062e6cecd0e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T07:16:10.749Z", + "completed":"2016-09-07T07:16:10.749Z", + "new_balance":"5469.36", + "value":"-13.67" + } + }, + { + "id":"0ac4d770-405f-45d3-a3e5-182eec5e989c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T14:49:23.108Z", + "completed":"2016-09-09T14:49:23.108Z", + "new_balance":"5416.18", + "value":"-53.18" + } + }, + { + "id":"52d26b35-754e-4642-bc14-e63f382cbd5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T10:53:10.693Z", + "completed":"2016-09-11T10:53:10.693Z", + "new_balance":"5405.18", + "value":"-11.00" + } + }, + { + "id":"32404f76-f5dd-4745-a33f-0d5c4e4001ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T22:49:53.794Z", + "completed":"2016-09-13T22:49:53.794Z", + "new_balance":"5347.50", + "value":"-57.68" + } + }, + { + "id":"f22b1c40-ceb1-4d87-8612-530bd2c4fdae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T01:17:37.816Z", + "completed":"2016-09-14T01:17:37.816Z", + "new_balance":"5410.86", + "value":"63.36" + } + }, + { + "id":"60ee33c8-41c1-4be3-afd2-2a1fc3aa6c02", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:36:03.763Z", + "completed":"2016-09-14T18:36:03.763Z", + "new_balance":"5398.93", + "value":"-11.93" + } + }, + { + "id":"bb36d0d0-2c97-4c15-b537-e466ca3ab3ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T04:58:10.110Z", + "completed":"2016-09-15T04:58:10.110Z", + "new_balance":"5356.59", + "value":"-42.34" + } + }, + { + "id":"26da4cdc-4edf-448f-90e9-d56faa077e0e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T10:29:56.729Z", + "completed":"2016-09-26T10:29:56.729Z", + "new_balance":"5309.66", + "value":"-46.93" + } + }, + { + "id":"2519fac5-5fbf-4716-a373-f2a23c83a736", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T13:51:16.149Z", + "completed":"2016-09-26T13:51:16.149Z", + "new_balance":"5282.82", + "value":"-26.84" + } + }, + { + "id":"428a8d11-087b-41de-a2e6-18e9e63d5dc3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T22:24:48.810Z", + "completed":"2016-09-26T22:24:48.810Z", + "new_balance":"5257.45", + "value":"-25.37" + } + }, + { + "id":"de30eb3c-fcd9-4dc2-8d8d-754c23758da8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T08:06:31.832Z", + "completed":"2016-09-27T08:06:31.832Z", + "new_balance":"6445.96", + "value":"1188.51" + } + }, + { + "id":"fb7ed8c5-11a6-49c0-917d-3d167efd850f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T09:47:50.843Z", + "completed":"2016-09-27T09:47:50.843Z", + "new_balance":"6379.38", + "value":"-66.58" + } + }, + { + "id":"2039114c-0f2d-4c9c-93ce-bb6df7a2f017", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T09:51:16.922Z", + "completed":"2016-09-27T09:51:16.922Z", + "new_balance":"6326.20", + "value":"-53.18" + } + }, + { + "id":"9a2b5566-558d-4cd1-921d-70707a8049e9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T16:50:34.969Z", + "completed":"2016-09-28T16:50:34.969Z", + "new_balance":"6291.77", + "value":"-34.43" + } + }, + { + "id":"6536a103-30b4-4c33-bf2b-835639faa05d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T17:09:24.150Z", + "completed":"2016-09-30T17:09:24.150Z", + "new_balance":"6249.43", + "value":"-42.34" + } + }, + { + "id":"d5efe149-66ec-43b9-bcaa-2956e78a5e1d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T01:43:26.830Z", + "completed":"2016-10-01T01:43:26.830Z", + "new_balance":"5738.89", + "value":"-510.54" + } + }, + { + "id":"154943cf-62bb-4ae7-a2bf-c7994d76136b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:30:01.232Z", + "completed":"2016-10-01T05:30:01.232Z", + "new_balance":"5677.02", + "value":"-61.87" + } + }, + { + "id":"0bed6998-80d1-4fa6-ad83-52671a004c18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T10:07:47.345Z", + "completed":"2016-10-01T10:07:47.345Z", + "new_balance":"5652.46", + "value":"-24.56" + } + }, + { + "id":"27897983-6a9f-4ebd-9f46-75543f9df8eb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T14:37:12.148Z", + "completed":"2016-10-01T14:37:12.148Z", + "new_balance":"5618.03", + "value":"-34.43" + } + }, + { + "id":"c19d41c2-1589-4e74-8842-4263d8808283", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T16:50:17.481Z", + "completed":"2016-10-01T16:50:17.481Z", + "new_balance":"5544.10", + "value":"-73.93" + } + }, + { + "id":"b6c36b04-b6b0-4ed0-9a65-aa1f99d28b2a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:28:01.935Z", + "completed":"2016-10-05T05:28:01.935Z", + "new_balance":"5531.09", + "value":"-13.01" + } + }, + { + "id":"ee6b5f73-8028-4b87-a0ca-40025897c81c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:29:45.856Z", + "completed":"2016-10-05T05:29:45.856Z", + "new_balance":"5487.11", + "value":"-43.98" + } + }, + { + "id":"7b4384d8-ee4a-447f-9400-ed7edb41f498", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T10:21:00.454Z", + "completed":"2016-10-05T10:21:00.454Z", + "new_balance":"5464.42", + "value":"-22.69" + } + }, + { + "id":"44880aa8-0cd6-4f10-a38c-6224bb1312da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T16:41:34.160Z", + "completed":"2016-10-05T16:41:34.160Z", + "new_balance":"5411.24", + "value":"-53.18" + } + }, + { + "id":"d929203c-baa5-4ec5-9d0e-c1a44a83633a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T04:53:21.736Z", + "completed":"2016-10-07T04:53:21.736Z", + "new_balance":"5381.36", + "value":"-29.88" + } + }, + { + "id":"a89f8fc2-4b58-4e2e-b836-6206fc5e3ada", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T01:05:03.892Z", + "completed":"2016-10-09T01:05:03.892Z", + "new_balance":"5356.49", + "value":"-24.87" + } + }, + { + "id":"caae81d7-9316-4f20-ade9-1c564cadf686", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T16:28:32.203Z", + "completed":"2016-10-09T16:28:32.203Z", + "new_balance":"5303.31", + "value":"-53.18" + } + }, + { + "id":"a3feab08-853c-47da-aa85-4ee879250d0b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T02:48:37.300Z", + "completed":"2016-10-10T02:48:37.300Z", + "new_balance":"5264.14", + "value":"-39.17" + } + }, + { + "id":"c21dc736-9453-4f8d-86fe-6846299f0756", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T09:27:02.636Z", + "completed":"2016-10-10T09:27:02.636Z", + "new_balance":"5247.74", + "value":"-16.40" + } + }, + { + "id":"48dd8cca-78a4-473c-800c-4cc765b3d2a1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T19:22:04.752Z", + "completed":"2016-10-10T19:22:04.752Z", + "new_balance":"5223.18", + "value":"-24.56" + } + }, + { + "id":"d959b9b9-29f9-4745-9647-3a2687d496ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T21:48:27.545Z", + "completed":"2016-10-10T21:48:27.545Z", + "new_balance":"5203.11", + "value":"-20.07" + } + }, + { + "id":"48894a68-3bd5-4f15-bbf3-6bf0316fb7eb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T00:15:08.328Z", + "completed":"2016-10-11T00:15:08.328Z", + "new_balance":"5149.93", + "value":"-53.18" + } + }, + { + "id":"6c2c92c4-f460-417b-aafb-285df22e7c8c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T01:06:03.740Z", + "completed":"2016-10-11T01:06:03.740Z", + "new_balance":"5088.75", + "value":"-61.18" + } + }, + { + "id":"a2a6a895-05f5-4009-b843-3eb970bd15c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T08:50:02.871Z", + "completed":"2016-10-11T08:50:02.871Z", + "new_balance":"5058.35", + "value":"-30.40" + } + }, + { + "id":"de587fc1-d3ea-469c-b4c2-052158d5a59a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T15:32:57.133Z", + "completed":"2016-10-11T15:32:57.133Z", + "new_balance":"5052.20", + "value":"-6.15" + } + }, + { + "id":"c61e4a94-c3c8-4209-976e-f6b427cc78ec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T23:25:29.446Z", + "completed":"2016-10-11T23:25:29.446Z", + "new_balance":"5020.88", + "value":"-31.32" + } + }, + { + "id":"64e9def4-de9b-465d-a6f6-e6d9294ed85e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T02:08:19.981Z", + "completed":"2016-10-21T02:08:19.981Z", + "new_balance":"4967.70", + "value":"-53.18" + } + }, + { + "id":"c174b9f1-8d1d-4c63-a365-fe8fb5e0a559", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T09:15:30.711Z", + "completed":"2016-10-23T09:15:30.711Z", + "new_balance":"4951.87", + "value":"-15.83" + } + }, + { + "id":"626a81b2-f1f9-44e5-9c4c-90fcd926b7a6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T05:21:56.216Z", + "completed":"2016-10-29T05:21:56.216Z", + "new_balance":"6140.38", + "value":"1188.51" + } + }, + { + "id":"eef7ab96-690a-4f03-a685-410019743a15", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T08:41:32.350Z", + "completed":"2016-10-29T08:41:32.350Z", + "new_balance":"6081.90", + "value":"-58.48" + } + }, + { + "id":"099a4de5-2fbb-4c60-8dcb-58d588a3ec01", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T09:57:31.296Z", + "completed":"2016-10-29T09:57:31.296Z", + "new_balance":"6047.47", + "value":"-34.43" + } + }, + { + "id":"6122c4a7-816b-47b2-9ffa-8245fc79afab", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T21:18:07.207Z", + "completed":"2016-10-30T21:18:07.207Z", + "new_balance":"6005.13", + "value":"-42.34" + } + }, + { + "id":"a91ad2e4-aef4-4c25-9555-01287a001187", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T03:25:53.368Z", + "completed":"2016-11-02T03:25:53.368Z", + "new_balance":"5494.59", + "value":"-510.54" + } + }, + { + "id":"61cf181e-a0b2-4980-8241-76c5c642686f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T07:49:31.856Z", + "completed":"2016-11-02T07:49:31.856Z", + "new_balance":"5420.66", + "value":"-73.93" + } + }, + { + "id":"4e05b94a-c38b-431b-a6fa-453e51509d9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T18:27:40.342Z", + "completed":"2016-11-02T18:27:40.342Z", + "new_balance":"5396.10", + "value":"-24.56" + } + }, + { + "id":"165e9007-ca4d-4fbb-aa4d-02e4fbd8d45e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T19:00:38.843Z", + "completed":"2016-11-02T19:00:38.843Z", + "new_balance":"5334.23", + "value":"-61.87" + } + }, + { + "id":"b57308f0-801a-4488-972f-28ef3f16ba88", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T19:38:14.007Z", + "completed":"2016-11-06T19:38:14.007Z", + "new_balance":"5290.25", + "value":"-43.98" + } + }, + { + "id":"6a54b1f5-a88f-47f3-8996-c3c04b8f6fcd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T03:12:17.935Z", + "completed":"2016-11-07T03:12:17.935Z", + "new_balance":"5279.34", + "value":"-10.91" + } + }, + { + "id":"51d5a46f-ee91-497a-a1ab-39b8b8420c50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T06:50:56.856Z", + "completed":"2016-11-07T06:50:56.856Z", + "new_balance":"5238.21", + "value":"-41.13" + } + }, + { + "id":"d546b95a-9aca-480d-a725-818d44f9b94b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T11:16:29.825Z", + "completed":"2016-11-07T11:16:29.825Z", + "new_balance":"5210.36", + "value":"-27.85" + } + }, + { + "id":"2813543e-cdef-459c-8fa2-10b21caac4b7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:50:05.589Z", + "completed":"2016-11-07T17:50:05.589Z", + "new_balance":"5180.48", + "value":"-29.88" + } + }, + { + "id":"3ee4fbd7-7a9f-4fb6-8247-5062aad1523b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T11:13:12.650Z", + "completed":"2016-11-08T11:13:12.650Z", + "new_balance":"5139.56", + "value":"-40.92" + } + }, + { + "id":"f76245f4-8569-4a97-93e5-09815d502793", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T22:09:00.811Z", + "completed":"2016-11-09T22:09:00.811Z", + "new_balance":"5105.13", + "value":"-34.43" + } + }, + { + "id":"820bd963-469c-4a30-830b-ca0c615805c1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T19:47:15.990Z", + "completed":"2016-11-13T19:47:15.990Z", + "new_balance":"5051.95", + "value":"-53.18" + } + }, + { + "id":"0cc6f54c-d5ef-463a-8f2b-6376c5ede39e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T12:55:58.433Z", + "completed":"2016-11-26T12:55:58.433Z", + "new_balance":"5041.04", + "value":"-10.91" + } + }, + { + "id":"5dc82cbf-db67-450c-bc0f-edd5bd1735d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T14:15:26.465Z", + "completed":"2016-11-26T14:15:26.465Z", + "new_balance":"4987.86", + "value":"-53.18" + } + }, + { + "id":"7d6f6577-8a76-4641-a617-bd2d181ab04d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T07:54:38.567Z", + "completed":"2016-11-27T07:54:38.567Z", + "new_balance":"4929.38", + "value":"-58.48" + } + }, + { + "id":"937ab2c0-fb6d-4b33-9812-20c37cdc548a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T23:54:23.240Z", + "completed":"2016-11-27T23:54:23.240Z", + "new_balance":"4912.64", + "value":"-16.74" + } + }, + { + "id":"d2d282c1-69b1-44d7-8d2e-7aef42d2d467", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T01:51:05.088Z", + "completed":"2016-11-30T01:51:05.088Z", + "new_balance":"4878.21", + "value":"-34.43" + } + }, + { + "id":"d085c8ef-ce52-448a-95db-578457807835", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T06:20:43.077Z", + "completed":"2016-11-30T06:20:43.077Z", + "new_balance":"6066.72", + "value":"1188.51" + } + }, + { + "id":"b080fcc9-4c99-4019-8207-791e09c58fc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T18:44:17.234Z", + "completed":"2016-11-30T18:44:17.234Z", + "new_balance":"6024.38", + "value":"-42.34" + } + }, + { + "id":"476e7426-e1f8-4e05-a826-b5693928750c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T02:43:41.465Z", + "completed":"2016-12-01T02:43:41.465Z", + "new_balance":"5950.45", + "value":"-73.93" + } + }, + { + "id":"e39fc90e-106f-4603-baa1-6685aef26743", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:12:13.203Z", + "completed":"2016-12-01T04:12:13.203Z", + "new_balance":"5936.78", + "value":"-13.67" + } + }, + { + "id":"3509f151-9915-4853-9fc7-409e5c1977e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:08:31.956Z", + "completed":"2016-12-01T06:08:31.956Z", + "new_balance":"5902.35", + "value":"-34.43" + } + }, + { + "id":"1cb8a3e5-6149-4c4e-957d-23c51b786d9d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T07:45:42.565Z", + "completed":"2016-12-01T07:45:42.565Z", + "new_balance":"5877.79", + "value":"-24.56" + } + }, + { + "id":"fa489f0a-aaff-43dd-bc6b-26f15fa8c3b4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:46:07.065Z", + "completed":"2016-12-01T08:46:07.065Z", + "new_balance":"5815.92", + "value":"-61.87" + } + }, + { + "id":"b205900f-4071-4b42-8230-8132db704f23", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T09:21:54.487Z", + "completed":"2016-12-01T09:21:54.487Z", + "new_balance":"5305.38", + "value":"-510.54" + } + }, + { + "id":"a1850de9-c191-4115-a556-9d85c5c933c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T11:21:08.860Z", + "completed":"2016-12-01T11:21:08.860Z", + "new_balance":"5252.20", + "value":"-53.18" + } + }, + { + "id":"260cbc92-d2e5-4269-8e00-d2147ce37ab0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:51:40.015Z", + "completed":"2016-12-01T17:51:40.015Z", + "new_balance":"5203.54", + "value":"-48.66" + } + }, + { + "id":"8fe34a80-e771-4dc7-9beb-719e407b6661", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T23:58:34.569Z", + "completed":"2016-12-01T23:58:34.569Z", + "new_balance":"5150.36", + "value":"-53.18" + } + }, + { + "id":"97fb9268-3db3-4b0c-8d74-6c955f000b21", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T02:29:46.202Z", + "completed":"2016-12-02T02:29:46.202Z", + "new_balance":"5139.36", + "value":"-11.00" + } + }, + { + "id":"5dfadd3e-1df8-49a1-9cf2-aae8fb5a7b40", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T04:59:21.857Z", + "completed":"2016-12-02T04:59:21.857Z", + "new_balance":"5127.43", + "value":"-11.93" + } + }, + { + "id":"a6e13507-3d9e-480e-8e3a-726b7328f9fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:12:49.380Z", + "completed":"2016-12-02T20:12:49.380Z", + "new_balance":"5069.75", + "value":"-57.68" + } + }, + { + "id":"e6af90e0-e21c-4f47-95e1-3f9c5a0ae522", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T07:03:31.188Z", + "completed":"2016-12-04T07:03:31.188Z", + "new_balance":"5022.82", + "value":"-46.93" + } + }, + { + "id":"503939a3-4b6c-485e-a22b-f55698dc76cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T07:36:38.564Z", + "completed":"2016-12-04T07:36:38.564Z", + "new_balance":"4980.48", + "value":"-42.34" + } + }, + { + "id":"df20dc6b-1f96-4e77-9448-28a8689096e0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:26:07.178Z", + "completed":"2016-12-04T12:26:07.178Z", + "new_balance":"4955.11", + "value":"-25.37" + } + }, + { + "id":"8d1b34ff-af13-4bed-bf4b-c406a0d2484d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T01:58:25.146Z", + "completed":"2016-12-05T01:58:25.146Z", + "new_balance":"4888.53", + "value":"-66.58" + } + }, + { + "id":"6433b705-d500-43d0-a059-ca389f066f50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T19:00:25.403Z", + "completed":"2016-12-05T19:00:25.403Z", + "new_balance":"4861.69", + "value":"-26.84" + } + }, + { + "id":"90d0a821-f83c-4847-b93c-afb35cae39d0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T18:24:17.858Z", + "completed":"2016-12-18T18:24:17.858Z", + "new_balance":"4808.51", + "value":"-53.18" + } + }, + { + "id":"bb5b7a93-c20e-4e6c-a301-b8b97981e1ce", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T09:41:01.228Z", + "completed":"2016-12-30T09:41:01.228Z", + "new_balance":"4766.98", + "value":"-41.53" + } + }, + { + "id":"809071a2-dc86-4d8c-b93f-87c70be3a4a3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T14:10:30.456Z", + "completed":"2016-12-30T14:10:30.456Z", + "new_balance":"4732.55", + "value":"-34.43" + } + }, + { + "id":"2eb472ed-22b0-4e77-a972-8031e8dcd722", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T18:38:54.397Z", + "completed":"2016-12-30T18:38:54.397Z", + "new_balance":"4690.21", + "value":"-42.34" + } + }, + { + "id":"1e7f3bc4-a29f-4da6-9b5d-fb8de16ae084", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T19:38:52.126Z", + "completed":"2016-12-30T19:38:52.126Z", + "new_balance":"5878.72", + "value":"1188.51" + } + }, + { + "id":"dc739b03-d2a9-4b70-9de6-ccff8b19b049", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:35:40.772Z", + "completed":"2017-01-01T07:35:40.772Z", + "new_balance":"5816.85", + "value":"-61.87" + } + }, + { + "id":"997449eb-912f-4240-b1b9-8e98f480d7f0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T08:20:59.543Z", + "completed":"2017-01-01T08:20:59.543Z", + "new_balance":"5754.98", + "value":"-61.87" + } + }, + { + "id":"c44a43a6-8e27-4855-8248-8c986ccfda11", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T00:45:47.957Z", + "completed":"2017-01-03T00:45:47.957Z", + "new_balance":"5730.42", + "value":"-24.56" + } + }, + { + "id":"261efc01-db61-4e3f-9240-96b05f88abbb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T01:55:48.119Z", + "completed":"2017-01-03T01:55:48.119Z", + "new_balance":"5695.99", + "value":"-34.43" + } + }, + { + "id":"9c26a2a3-14d7-4828-9fa5-c191c621f838", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T10:19:59.292Z", + "completed":"2017-01-03T10:19:59.292Z", + "new_balance":"5185.45", + "value":"-510.54" + } + }, + { + "id":"9a8c2761-5b80-4c84-8888-998f5b25b672", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T19:46:10.007Z", + "completed":"2017-01-03T19:46:10.007Z", + "new_balance":"5111.52", + "value":"-73.93" + } + }, + { + "id":"c5ea263d-34da-4a9e-9cd0-bafe8ab24b70", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T05:39:41.751Z", + "completed":"2017-01-05T05:39:41.751Z", + "new_balance":"5058.34", + "value":"-53.18" + } + }, + { + "id":"e6a73bef-0e03-46e4-9301-725f7e46f15b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T09:11:53.252Z", + "completed":"2017-01-05T09:11:53.252Z", + "new_balance":"5014.36", + "value":"-43.98" + } + }, + { + "id":"de3e7f4d-7832-4654-8be5-38c5249a1ccf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T15:19:23.002Z", + "completed":"2017-01-05T15:19:23.002Z", + "new_balance":"5001.35", + "value":"-13.01" + } + }, + { + "id":"e6715080-efd3-4aa2-8d2c-ecd6e9d476fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T05:06:23.616Z", + "completed":"2017-01-06T05:06:23.616Z", + "new_balance":"4978.66", + "value":"-22.69" + } + }, + { + "id":"b23075ca-aecf-4338-8175-6aeed2fb3148", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T07:20:06.610Z", + "completed":"2017-01-06T07:20:06.610Z", + "new_balance":"4948.78", + "value":"-29.88" + } + }, + { + "id":"44d46f3e-e73d-4271-8b2a-d41bc31eb188", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T23:17:20.810Z", + "completed":"2017-01-07T23:17:20.810Z", + "new_balance":"4909.61", + "value":"-39.17" + } + }, + { + "id":"0505ba0f-c0c8-4bcb-a473-0df0e88847cc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T08:29:20.112Z", + "completed":"2017-01-10T08:29:20.112Z", + "new_balance":"4856.43", + "value":"-53.18" + } + }, + { + "id":"6cc28442-d9ed-4e4c-8c10-de73d540fc93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T10:36:48.838Z", + "completed":"2017-01-10T10:36:48.838Z", + "new_balance":"4831.56", + "value":"-24.87" + } + }, + { + "id":"f8b767d8-c301-4598-b955-784db301fddf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T11:23:34.110Z", + "completed":"2017-01-12T11:23:34.110Z", + "new_balance":"4811.49", + "value":"-20.07" + } + }, + { + "id":"a6b13eb5-8a6a-444e-8bc7-244a596cef4c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T16:19:15.952Z", + "completed":"2017-01-12T16:19:15.952Z", + "new_balance":"4772.32", + "value":"-39.17" + } + }, + { + "id":"0b20f7f2-793c-4895-ac62-e0e6d8be3ead", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T21:51:02.973Z", + "completed":"2017-01-12T21:51:02.973Z", + "new_balance":"4747.76", + "value":"-24.56" + } + }, + { + "id":"87237ba8-d366-4bd1-99dc-3acaa1e268b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T08:18:43.736Z", + "completed":"2017-01-15T08:18:43.736Z", + "new_balance":"4731.36", + "value":"-16.40" + } + }, + { + "id":"b69ffb3d-a3ee-4453-aa7c-a2361b8fb131", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T12:17:39.350Z", + "completed":"2017-01-16T12:17:39.350Z", + "new_balance":"4678.18", + "value":"-53.18" + } + }, + { + "id":"e415abc1-36d0-48bc-b336-ff9a96dcf1f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T20:10:50.884Z", + "completed":"2017-01-16T20:10:50.884Z", + "new_balance":"4672.03", + "value":"-6.15" + } + }, + { + "id":"19ee7d80-ec7a-4df8-b726-dd5318d290fe", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T03:05:19.849Z", + "completed":"2017-01-17T03:05:19.849Z", + "new_balance":"4610.85", + "value":"-61.18" + } + }, + { + "id":"122b0e29-ee91-47ae-9b44-d0b61e3c0fbe", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T13:14:21.533Z", + "completed":"2017-01-17T13:14:21.533Z", + "new_balance":"4579.53", + "value":"-31.32" + } + }, + { + "id":"47e3a213-747b-4656-8df6-58035cd11778", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T19:26:28.500Z", + "completed":"2017-01-19T19:26:28.500Z", + "new_balance":"4549.13", + "value":"-30.40" + } + }, + { + "id":"3fca3af9-e248-46b1-ba36-8576ec17aa1a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:59:59.636Z", + "completed":"2017-01-20T19:59:59.636Z", + "new_balance":"4495.95", + "value":"-53.18" + } + }, + { + "id":"2272c09e-50c3-46a3-95fb-f943f0dce50e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T17:58:42.593Z", + "completed":"2017-01-23T17:58:42.593Z", + "new_balance":"4480.12", + "value":"-15.83" + } + }, + { + "id":"a2d6aacf-e4cb-441a-9362-acfd37655fad", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T07:01:11.723Z", + "completed":"2017-01-26T07:01:11.723Z", + "new_balance":"4421.64", + "value":"-58.48" + } + }, + { + "id":"16f11421-43aa-4871-ac41-4e2676953f72", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T21:03:56.944Z", + "completed":"2017-01-27T21:03:56.944Z", + "new_balance":"5610.15", + "value":"1188.51" + } + }, + { + "id":"a6b98c39-f06e-438c-a984-48fb0f683d2b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T12:10:02.997Z", + "completed":"2017-01-28T12:10:02.997Z", + "new_balance":"5575.72", + "value":"-34.43" + } + }, + { + "id":"a641ff78-06a3-4f0e-b822-ad0fc33c4937", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T00:31:31.879Z", + "completed":"2017-01-30T00:31:31.879Z", + "new_balance":"5533.38", + "value":"-42.34" + } + }, + { + "id":"3fce4150-b8a2-440a-a77f-626b4bf3c14a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T00:48:30.007Z", + "completed":"2017-02-03T00:48:30.007Z", + "new_balance":"5498.95", + "value":"-34.43" + } + }, + { + "id":"da2b1ff9-7ec1-47a4-9ba7-bbcb72bfb081", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T01:37:21.762Z", + "completed":"2017-02-03T01:37:21.762Z", + "new_balance":"4988.41", + "value":"-510.54" + } + }, + { + "id":"40fb4f11-cb71-4755-a0a9-6ff6bb0208b9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T04:48:16.077Z", + "completed":"2017-02-03T04:48:16.077Z", + "new_balance":"4914.48", + "value":"-73.93" + } + }, + { + "id":"6dbaa94a-59bc-4d23-a48c-f8dcabd591cf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T18:01:31.374Z", + "completed":"2017-02-03T18:01:31.374Z", + "new_balance":"4889.92", + "value":"-24.56" + } + }, + { + "id":"f81e3937-565c-4b96-a80a-dbb04af3c064", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T04:28:57.775Z", + "completed":"2017-02-08T04:28:57.775Z", + "new_balance":"4836.74", + "value":"-53.18" + } + }, + { + "id":"af515e3c-ed1e-4432-bdac-f8342e0f6b73", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:57:18.027Z", + "completed":"2017-02-08T07:57:18.027Z", + "new_balance":"4792.76", + "value":"-43.98" + } + }, + { + "id":"052289d3-0ff3-4405-b3fc-91fe0cd7dc80", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T22:22:32.988Z", + "completed":"2017-02-11T22:22:32.988Z", + "new_balance":"4803.65", + "value":"10.89" + } + }, + { + "id":"33c99e7c-1a74-40c7-a4c2-b5a06a3276c7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T18:47:54.167Z", + "completed":"2017-02-13T18:47:54.167Z", + "new_balance":"4773.77", + "value":"-29.88" + } + }, + { + "id":"8bc1c335-6ead-454c-89d6-48ee03b6b07d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T23:14:49.113Z", + "completed":"2017-02-14T23:14:49.113Z", + "new_balance":"4745.92", + "value":"-27.85" + } + }, + { + "id":"8c728cb9-c638-4c3f-8792-422093054744", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T06:58:40.604Z", + "completed":"2017-02-17T06:58:40.604Z", + "new_balance":"4735.01", + "value":"-10.91" + } + }, + { + "id":"3281c143-997d-4b9b-a8f9-26a4fb5a12a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T06:03:22.687Z", + "completed":"2017-02-21T06:03:22.687Z", + "new_balance":"4693.88", + "value":"-41.13" + } + }, + { + "id":"a1914d7a-9112-4904-8ff2-de061038bc2e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T05:31:45.932Z", + "completed":"2017-02-23T05:31:45.932Z", + "new_balance":"4640.70", + "value":"-53.18" + } + }, + { + "id":"7b1224f1-ccbd-4af3-89a1-a882e8c37a12", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T19:08:35.770Z", + "completed":"2017-02-23T19:08:35.770Z", + "new_balance":"4599.78", + "value":"-40.92" + } + }, + { + "id":"cef888ae-855f-4b9d-b766-fbf97deba730", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T06:24:03.116Z", + "completed":"2017-02-24T06:24:03.116Z", + "new_balance":"4588.87", + "value":"-10.91" + } + }, + { + "id":"a8f436b6-4a45-4856-bc3a-6b235c2738f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T03:02:56.633Z", + "completed":"2017-02-27T03:02:56.633Z", + "new_balance":"4530.39", + "value":"-58.48" + } + }, + { + "id":"c11b0c1c-02d5-49ad-9c1f-4bf4af4aa36c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T18:52:37.158Z", + "completed":"2017-02-27T18:52:37.158Z", + "new_balance":"5718.90", + "value":"1188.51" + } + }, + { + "id":"5d7e2ee5-35f0-4790-b19a-7bc1c9a9c804", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T19:44:07.859Z", + "completed":"2017-02-27T19:44:07.859Z", + "new_balance":"5702.16", + "value":"-16.74" + } + }, + { + "id":"0adb75b1-9f1e-4565-81b9-9dd136a2cfe7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T10:24:18.926Z", + "completed":"2017-02-28T10:24:18.926Z", + "new_balance":"5667.73", + "value":"-34.43" + } + }, + { + "id":"463131ae-49ae-4ea1-a988-0b43d163a5ec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T21:25:02.464Z", + "completed":"2017-02-28T21:25:02.464Z", + "new_balance":"5625.39", + "value":"-42.34" + } + }, + { + "id":"d30ee914-1595-431f-b301-254dc7be718f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:53:56.844Z", + "completed":"2017-03-01T06:53:56.844Z", + "new_balance":"5563.52", + "value":"-61.87" + } + }, + { + "id":"3ff1426a-d6f9-456d-8ad8-686124ae72ef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T11:54:37.782Z", + "completed":"2017-03-03T11:54:37.782Z", + "new_balance":"5529.09", + "value":"-34.43" + } + }, + { + "id":"1382be5c-b095-4d75-b735-f4d5260c8fdf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T12:48:40.706Z", + "completed":"2017-03-03T12:48:40.706Z", + "new_balance":"5018.55", + "value":"-510.54" + } + }, + { + "id":"4ee8515d-0a32-4847-9c5b-46e15cebb7e3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T19:56:59.335Z", + "completed":"2017-03-03T19:56:59.335Z", + "new_balance":"4944.62", + "value":"-73.93" + } + }, + { + "id":"ac17e12f-5b78-43d9-a649-237b1e45cc33", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T22:41:40.405Z", + "completed":"2017-03-03T22:41:40.405Z", + "new_balance":"4920.06", + "value":"-24.56" + } + }, + { + "id":"e9702bd8-d79b-42b1-a079-487197e55c6b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T16:21:57.634Z", + "completed":"2017-03-05T16:21:57.634Z", + "new_balance":"4866.88", + "value":"-53.18" + } + }, + { + "id":"dc250a13-903b-4bd5-955f-8d7c3890b8bf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T22:23:07.431Z", + "completed":"2017-03-05T22:23:07.431Z", + "new_balance":"4818.22", + "value":"-48.66" + } + }, + { + "id":"4f8fdb51-272d-4fc6-8cd2-e86dd1a0cd7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T16:54:37.811Z", + "completed":"2017-03-07T16:54:37.811Z", + "new_balance":"4804.55", + "value":"-13.67" + } + }, + { + "id":"fb291276-3d93-4f30-bbff-1ca3cd34dc48", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:57:40.095Z", + "completed":"2017-03-09T10:57:40.095Z", + "new_balance":"4751.37", + "value":"-53.18" + } + }, + { + "id":"fab9c04c-cf18-4049-92e4-f70eb78fd5b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T03:29:39.633Z", + "completed":"2017-03-11T03:29:39.633Z", + "new_balance":"4740.37", + "value":"-11.00" + } + }, + { + "id":"4a251efd-a261-4361-9039-57f3f09844d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T22:26:02.505Z", + "completed":"2017-03-13T22:26:02.505Z", + "new_balance":"4682.69", + "value":"-57.68" + } + }, + { + "id":"bde34e04-d53d-4a38-9748-51d32ddfb61c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:13:36.583Z", + "completed":"2017-03-14T08:13:36.583Z", + "new_balance":"4670.76", + "value":"-11.93" + } + }, + { + "id":"2ae447f3-af3f-441d-9812-3aab94cc142a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T18:56:16.513Z", + "completed":"2017-03-14T18:56:16.513Z", + "new_balance":"4734.12", + "value":"63.36" + } + }, + { + "id":"48783686-f621-4bd7-959a-007526e134e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T19:32:06.409Z", + "completed":"2017-03-15T19:32:06.409Z", + "new_balance":"4691.78", + "value":"-42.34" + } + }, + { + "id":"a620e545-db45-4cb8-a479-e91c2c9e9e50", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T03:17:19.287Z", + "completed":"2017-03-26T03:17:19.287Z", + "new_balance":"4664.94", + "value":"-26.84" + } + }, + { + "id":"de893111-d2af-4801-842a-a88321bdf79d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T11:54:41.230Z", + "completed":"2017-03-26T11:54:41.230Z", + "new_balance":"4618.01", + "value":"-46.93" + } + }, + { + "id":"f8de7ea3-9095-4ce6-aa4f-a4adbc17a757", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T16:07:19.401Z", + "completed":"2017-03-26T16:07:19.401Z", + "new_balance":"4592.64", + "value":"-25.37" + } + }, + { + "id":"72c7cdb7-1e4a-4741-9ceb-42bfa1580bb9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T08:25:59.919Z", + "completed":"2017-03-27T08:25:59.919Z", + "new_balance":"5781.15", + "value":"1188.51" + } + }, + { + "id":"35f91fae-ee44-47bf-8ffc-607c14074b2e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T10:50:47.226Z", + "completed":"2017-03-27T10:50:47.226Z", + "new_balance":"5727.97", + "value":"-53.18" + } + }, + { + "id":"d9490fa4-2376-45af-9cde-23403eab9c76", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T18:11:10.246Z", + "completed":"2017-03-27T18:11:10.246Z", + "new_balance":"5661.39", + "value":"-66.58" + } + }, + { + "id":"7a88f035-d45f-44ac-96d3-c2436df10315", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T15:27:30.427Z", + "completed":"2017-03-28T15:27:30.427Z", + "new_balance":"5626.96", + "value":"-34.43" + } + }, + { + "id":"0d604146-11ea-4c23-baee-282474502ae9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T06:47:22.024Z", + "completed":"2017-03-30T06:47:22.024Z", + "new_balance":"5584.62", + "value":"-42.34" + } + }, + { + "id":"0fbc3617-8c88-45b7-933d-53771256b89f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T04:15:42.924Z", + "completed":"2017-04-01T04:15:42.924Z", + "new_balance":"5560.06", + "value":"-24.56" + } + }, + { + "id":"d2032574-a1c6-4b86-b134-883857722066", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T08:21:50.169Z", + "completed":"2017-04-01T08:21:50.169Z", + "new_balance":"5486.13", + "value":"-73.93" + } + }, + { + "id":"8d131328-f321-4c0d-bc19-71e9ce93ddcb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T14:00:19.734Z", + "completed":"2017-04-01T14:00:19.734Z", + "new_balance":"4975.59", + "value":"-510.54" + } + }, + { + "id":"6f5e027c-595a-48f3-be25-fda8b1433813", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T16:50:52.840Z", + "completed":"2017-04-01T16:50:52.840Z", + "new_balance":"4941.16", + "value":"-34.43" + } + }, + { + "id":"e081c05e-0fdb-41b3-b38b-925dfcfc3438", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T18:24:06.435Z", + "completed":"2017-04-01T18:24:06.435Z", + "new_balance":"4879.29", + "value":"-61.87" + } + }, + { + "id":"75e38276-6d94-4c41-af7b-d370dd5b76a4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T01:17:57.708Z", + "completed":"2017-04-05T01:17:57.708Z", + "new_balance":"4826.11", + "value":"-53.18" + } + }, + { + "id":"4d12e138-767a-4d63-8d74-e4f570029f57", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T03:39:47.336Z", + "completed":"2017-04-05T03:39:47.336Z", + "new_balance":"4813.10", + "value":"-13.01" + } + }, + { + "id":"9f6c248b-f6a8-4c32-ad74-e5a2b40db6fd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T20:20:19.892Z", + "completed":"2017-04-05T20:20:19.892Z", + "new_balance":"4790.41", + "value":"-22.69" + } + }, + { + "id":"67e26d54-033a-4357-aba2-a8044fe296d5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T21:15:49.301Z", + "completed":"2017-04-05T21:15:49.301Z", + "new_balance":"4746.43", + "value":"-43.98" + } + }, + { + "id":"55cf31d6-830d-4928-a6fd-3658e1da3c4d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T03:52:06.408Z", + "completed":"2017-04-07T03:52:06.408Z", + "new_balance":"4716.55", + "value":"-29.88" + } + }, + { + "id":"1d09cac5-c20e-43c3-93cf-85662e3cab1d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T01:34:13.111Z", + "completed":"2017-04-09T01:34:13.111Z", + "new_balance":"4663.37", + "value":"-53.18" + } + }, + { + "id":"dff27c80-c425-4290-a4c5-73422b9bbaf0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T09:56:34.038Z", + "completed":"2017-04-09T09:56:34.038Z", + "new_balance":"4638.50", + "value":"-24.87" + } + }, + { + "id":"f28a843b-5f98-4268-b92c-a891093dbaf2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T01:35:29.723Z", + "completed":"2017-04-10T01:35:29.723Z", + "new_balance":"4618.43", + "value":"-20.07" + } + }, + { + "id":"787d803c-b217-46a6-9714-01abc585a13e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T10:24:21.998Z", + "completed":"2017-04-10T10:24:21.998Z", + "new_balance":"4602.03", + "value":"-16.40" + } + }, + { + "id":"2f09597e-0e1c-464d-b78c-5e5d4293b1b9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T16:57:21.640Z", + "completed":"2017-04-10T16:57:21.640Z", + "new_balance":"4577.47", + "value":"-24.56" + } + }, + { + "id":"20e10d96-9e7b-4f6b-921a-e9ffb4803490", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T18:43:17.211Z", + "completed":"2017-04-10T18:43:17.211Z", + "new_balance":"4538.30", + "value":"-39.17" + } + }, + { + "id":"43dfcc0f-2d7f-4f19-830c-e7f40c11c1f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T00:50:13.218Z", + "completed":"2017-04-11T00:50:13.218Z", + "new_balance":"4477.12", + "value":"-61.18" + } + }, + { + "id":"6d0a71f0-4237-4b93-99b0-83285ab31c91", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T02:57:41.088Z", + "completed":"2017-04-11T02:57:41.088Z", + "new_balance":"4446.72", + "value":"-30.40" + } + }, + { + "id":"d6afc1d7-e83c-4284-bfca-d7cae4bd5e49", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T11:14:58.203Z", + "completed":"2017-04-11T11:14:58.203Z", + "new_balance":"4440.57", + "value":"-6.15" + } + }, + { + "id":"5b72246f-0e1e-4177-b382-2433b6230f14", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T13:49:36.096Z", + "completed":"2017-04-11T13:49:36.096Z", + "new_balance":"4387.39", + "value":"-53.18" + } + }, + { + "id":"6579ce78-cb85-47c0-8c7c-e06c1dd347c5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T20:40:42.476Z", + "completed":"2017-04-11T20:40:42.476Z", + "new_balance":"4356.07", + "value":"-31.32" + } + }, + { + "id":"bb84244d-c268-45e4-a1e6-61b79c31f0fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T01:58:20.691Z", + "completed":"2017-04-21T01:58:20.691Z", + "new_balance":"4302.89", + "value":"-53.18" + } + }, + { + "id":"671f330c-e615-4267-b247-435de497ddd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T17:23:07.185Z", + "completed":"2017-04-23T17:23:07.185Z", + "new_balance":"4287.06", + "value":"-15.83" + } + }, + { + "id":"29fb909c-57f6-43e6-a9d2-f5289eafd3b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T10:02:28.275Z", + "completed":"2017-04-29T10:02:28.275Z", + "new_balance":"4252.63", + "value":"-34.43" + } + }, + { + "id":"02c075bc-2da2-49a4-851a-5e716ef8c5d2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T15:32:42.539Z", + "completed":"2017-04-29T15:32:42.539Z", + "new_balance":"4194.15", + "value":"-58.48" + } + }, + { + "id":"e689d81b-e5ce-446d-badf-45f916aeeb18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T20:48:05.058Z", + "completed":"2017-04-29T20:48:05.058Z", + "new_balance":"5382.66", + "value":"1188.51" + } + }, + { + "id":"9999ef01-da3c-471d-bcf8-36faa5218918", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T11:28:27.358Z", + "completed":"2017-04-30T11:28:27.358Z", + "new_balance":"5340.32", + "value":"-42.34" + } + }, + { + "id":"b9faff10-6b20-45e3-b44e-7ffc408e6a38", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T00:22:30.623Z", + "completed":"2017-05-02T00:22:30.623Z", + "new_balance":"5315.76", + "value":"-24.56" + } + }, + { + "id":"a56457a7-3a4e-4abc-81f4-8b8b0e7af881", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T11:51:18.899Z", + "completed":"2017-05-02T11:51:18.899Z", + "new_balance":"4805.22", + "value":"-510.54" + } + }, + { + "id":"2431219c-39f5-455f-8fa7-34c394363f67", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T17:35:18.907Z", + "completed":"2017-05-02T17:35:18.907Z", + "new_balance":"4743.35", + "value":"-61.87" + } + }, + { + "id":"60cb8a6c-7e95-4e1c-b54a-c87f6215e1cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:58:25.832Z", + "completed":"2017-05-02T23:58:25.832Z", + "new_balance":"4669.42", + "value":"-73.93" + } + }, + { + "id":"68b3a1c8-d239-4149-a6b4-690b58bf0929", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T05:57:29.696Z", + "completed":"2017-05-06T05:57:29.696Z", + "new_balance":"4625.44", + "value":"-43.98" + } + }, + { + "id":"53b086c2-5711-4246-83c3-58bf4bc00f5b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:31:06.396Z", + "completed":"2017-05-07T02:31:06.396Z", + "new_balance":"4584.31", + "value":"-41.13" + } + }, + { + "id":"65a1d08e-42d1-4655-ad2c-e538e7d9f0c3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T06:12:21.822Z", + "completed":"2017-05-07T06:12:21.822Z", + "new_balance":"4573.40", + "value":"-10.91" + } + }, + { + "id":"c9e5aff1-85ad-417f-8d7b-a667803f8478", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T19:24:49.345Z", + "completed":"2017-05-07T19:24:49.345Z", + "new_balance":"4545.55", + "value":"-27.85" + } + }, + { + "id":"9d06dab5-d9e5-40e0-b42b-43942ad282d0", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T19:58:12.090Z", + "completed":"2017-05-07T19:58:12.090Z", + "new_balance":"4515.67", + "value":"-29.88" + } + }, + { + "id":"a1f46357-9a00-4cb0-a3ea-091a0e20ef6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T04:20:14.654Z", + "completed":"2017-05-08T04:20:14.654Z", + "new_balance":"4474.75", + "value":"-40.92" + } + }, + { + "id":"8171f0d5-d442-4690-86c6-29eb1b66330a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T15:15:50.007Z", + "completed":"2017-05-09T15:15:50.007Z", + "new_balance":"4440.32", + "value":"-34.43" + } + }, + { + "id":"404ab1f7-8059-4b7a-8d30-1fb6289dac35", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T08:01:56.602Z", + "completed":"2017-05-13T08:01:56.602Z", + "new_balance":"4387.14", + "value":"-53.18" + } + }, + { + "id":"b8e541f8-0781-445d-82c4-29a37541d3d6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T18:27:08.525Z", + "completed":"2017-05-26T18:27:08.525Z", + "new_balance":"4333.96", + "value":"-53.18" + } + }, + { + "id":"9e4f6eb8-f8ae-45c0-8271-b83412a196b8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:33:19.084Z", + "completed":"2017-05-26T19:33:19.084Z", + "new_balance":"4323.05", + "value":"-10.91" + } + }, + { + "id":"1831f90c-41d9-46ee-b3d4-6b8347024ab2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T08:04:11.123Z", + "completed":"2017-05-27T08:04:11.123Z", + "new_balance":"4306.31", + "value":"-16.74" + } + }, + { + "id":"772b3666-04a1-48e5-869d-39c39089d95f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T19:37:08.281Z", + "completed":"2017-05-27T19:37:08.281Z", + "new_balance":"4247.83", + "value":"-58.48" + } + }, + { + "id":"7c4f3e82-3cc5-40bb-90ba-087326231b9e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T03:03:05.867Z", + "completed":"2017-05-30T03:03:05.867Z", + "new_balance":"4213.40", + "value":"-34.43" + } + }, + { + "id":"c1f86742-01fa-43f5-ad13-dbb3d859dbc9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T11:01:37.195Z", + "completed":"2017-05-30T11:01:37.195Z", + "new_balance":"4171.06", + "value":"-42.34" + } + }, + { + "id":"41e79ca9-4743-479f-9e2a-17691e712604", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T19:59:48.735Z", + "completed":"2017-05-30T19:59:48.735Z", + "new_balance":"5359.57", + "value":"1188.51" + } + }, + { + "id":"339f0dac-be6b-4de1-98a1-922c162ea926", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T02:57:17.378Z", + "completed":"2017-06-01T02:57:17.378Z", + "new_balance":"5306.39", + "value":"-53.18" + } + }, + { + "id":"ca6fabdb-e23f-4b76-babc-748813326974", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:22:28.465Z", + "completed":"2017-06-01T04:22:28.465Z", + "new_balance":"5232.46", + "value":"-73.93" + } + }, + { + "id":"d7809bd1-0608-4d1f-ad5e-b4eeaa235176", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T05:42:09.627Z", + "completed":"2017-06-01T05:42:09.627Z", + "new_balance":"5179.28", + "value":"-53.18" + } + }, + { + "id":"e75df02d-ec1b-4a28-b157-10f4bdebd979", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T08:00:30.051Z", + "completed":"2017-06-01T08:00:30.051Z", + "new_balance":"5154.72", + "value":"-24.56" + } + }, + { + "id":"96516ef2-62cb-4ae7-83e4-42ef5c76335e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T12:07:54.937Z", + "completed":"2017-06-01T12:07:54.937Z", + "new_balance":"5141.05", + "value":"-13.67" + } + }, + { + "id":"f6b098a5-5242-434f-b4bc-ded5ca8e197f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T15:22:37.445Z", + "completed":"2017-06-01T15:22:37.445Z", + "new_balance":"4630.51", + "value":"-510.54" + } + }, + { + "id":"b6fc180b-f09c-4641-803d-96853deaf2cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T17:22:02.017Z", + "completed":"2017-06-01T17:22:02.017Z", + "new_balance":"4568.64", + "value":"-61.87" + } + }, + { + "id":"04a4c4d0-1f85-4684-a948-9dd7f9f8fe3b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T20:58:50.285Z", + "completed":"2017-06-01T20:58:50.285Z", + "new_balance":"4519.98", + "value":"-48.66" + } + }, + { + "id":"ead43a05-2878-441b-b10f-8a28cdbb144c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T22:13:53.625Z", + "completed":"2017-06-01T22:13:53.625Z", + "new_balance":"4485.55", + "value":"-34.43" + } + }, + { + "id":"aefda03d-fd82-42aa-90ba-c92c4776adba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T08:38:50.328Z", + "completed":"2017-06-02T08:38:50.328Z", + "new_balance":"4427.87", + "value":"-57.68" + } + }, + { + "id":"59510d9e-3fd2-4cb1-827a-aeadcc71be2c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T23:19:33.561Z", + "completed":"2017-06-02T23:19:33.561Z", + "new_balance":"4416.87", + "value":"-11.00" + } + }, + { + "id":"b1ddb3f1-31b5-46a7-ad3f-454b48ae3a8a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:22:54.581Z", + "completed":"2017-06-02T23:22:54.581Z", + "new_balance":"4404.94", + "value":"-11.93" + } + }, + { + "id":"fbfa7ad8-a568-4e62-8aa8-e125258ff345", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T12:06:36.219Z", + "completed":"2017-06-04T12:06:36.219Z", + "new_balance":"4379.57", + "value":"-25.37" + } + }, + { + "id":"2bfd18cb-0263-498a-a00d-7b55736085cd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T14:48:59.881Z", + "completed":"2017-06-04T14:48:59.881Z", + "new_balance":"4337.23", + "value":"-42.34" + } + }, + { + "id":"01f74e2d-69bf-4860-b08f-2e426e2c928f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T18:52:10.773Z", + "completed":"2017-06-04T18:52:10.773Z", + "new_balance":"4290.30", + "value":"-46.93" + } + }, + { + "id":"197aa29c-b0f7-4ab1-a5bb-993dd16b18cb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T02:27:17.645Z", + "completed":"2017-06-05T02:27:17.645Z", + "new_balance":"4263.46", + "value":"-26.84" + } + }, + { + "id":"423a3f76-8308-40d7-a7a3-77a265669b7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T13:30:29.823Z", + "completed":"2017-06-05T13:30:29.823Z", + "new_balance":"4196.88", + "value":"-66.58" + } + }, + { + "id":"d1672d9d-decc-4fcb-b9cd-b61799953acc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T19:50:04.236Z", + "completed":"2017-06-18T19:50:04.236Z", + "new_balance":"4143.70", + "value":"-53.18" + } + }, + { + "id":"2b5bb33d-f4f6-4520-b55e-2ae631150d9b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T06:10:22.419Z", + "completed":"2017-06-30T06:10:22.419Z", + "new_balance":"4101.36", + "value":"-42.34" + } + }, + { + "id":"71ca4608-b71d-4cd8-8057-e43a24bfc5f4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T13:17:12.535Z", + "completed":"2017-06-30T13:17:12.535Z", + "new_balance":"4059.83", + "value":"-41.53" + } + }, + { + "id":"e3819f53-5f64-4e8c-9aa8-d184077b03b6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T16:33:13.157Z", + "completed":"2017-06-30T16:33:13.157Z", + "new_balance":"5248.34", + "value":"1188.51" + } + }, + { + "id":"e280aee4-ed5a-4f44-8e3b-f31d63fe150a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T18:41:15.667Z", + "completed":"2017-06-30T18:41:15.667Z", + "new_balance":"5213.91", + "value":"-34.43" + } + }, + { + "id":"1e550935-62ac-43ed-bd17-933e907430ba", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T15:52:52.260Z", + "completed":"2017-07-01T15:52:52.260Z", + "new_balance":"5152.04", + "value":"-61.87" + } + }, + { + "id":"0e13dd97-e1c1-44e7-8cce-3eee28c37bd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T09:14:00.430Z", + "completed":"2017-07-03T09:14:00.430Z", + "new_balance":"4641.50", + "value":"-510.54" + } + }, + { + "id":"0d822288-985a-4927-a63f-c527a428e4a1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T10:59:06.063Z", + "completed":"2017-07-03T10:59:06.063Z", + "new_balance":"4616.94", + "value":"-24.56" + } + }, + { + "id":"e768ec4e-c5b1-4ba1-bde8-96ca18bbfcb1", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T14:41:19.091Z", + "completed":"2017-07-03T14:41:19.091Z", + "new_balance":"4543.01", + "value":"-73.93" + } + }, + { + "id":"a8629dd1-311a-419a-90cc-027d2ebf5a0d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T19:32:14.414Z", + "completed":"2017-07-03T19:32:14.414Z", + "new_balance":"4508.58", + "value":"-34.43" + } + }, + { + "id":"ef741ff8-819e-46fe-a2b4-539a0e7d85d2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T10:32:43.636Z", + "completed":"2017-07-05T10:32:43.636Z", + "new_balance":"4455.40", + "value":"-53.18" + } + }, + { + "id":"b40bd944-e19c-448e-aeb3-1178ac76f50a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T12:05:52.225Z", + "completed":"2017-07-05T12:05:52.225Z", + "new_balance":"4411.42", + "value":"-43.98" + } + }, + { + "id":"a36b09d7-c60c-4520-9939-084148463251", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T20:01:32.146Z", + "completed":"2017-07-05T20:01:32.146Z", + "new_balance":"4398.41", + "value":"-13.01" + } + }, + { + "id":"66cd9a45-00f6-47f3-bb5d-5ad83a789642", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T00:01:11.066Z", + "completed":"2017-07-06T00:01:11.066Z", + "new_balance":"4368.53", + "value":"-29.88" + } + }, + { + "id":"d508db08-06f2-4f63-a24a-ed6d40bcd889", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T04:00:39.512Z", + "completed":"2017-07-06T04:00:39.512Z", + "new_balance":"4345.84", + "value":"-22.69" + } + }, + { + "id":"cdadbde5-ad75-44a0-9bbf-b3acd76d9d18", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T08:52:49.348Z", + "completed":"2017-07-07T08:52:49.348Z", + "new_balance":"4306.67", + "value":"-39.17" + } + }, + { + "id":"a8dbdf07-99c7-4af0-bfbc-7a62c903bdd4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T10:35:37.725Z", + "completed":"2017-07-10T10:35:37.725Z", + "new_balance":"4253.49", + "value":"-53.18" + } + }, + { + "id":"1c145f7a-5b81-4b00-8b7a-0e9359a8bd87", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T10:49:38.709Z", + "completed":"2017-07-10T10:49:38.709Z", + "new_balance":"4228.62", + "value":"-24.87" + } + }, + { + "id":"e6aa1dd3-cd6c-4b99-a2d8-844a9b366ba3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T04:40:56.623Z", + "completed":"2017-07-12T04:40:56.623Z", + "new_balance":"4208.55", + "value":"-20.07" + } + }, + { + "id":"3303ef8a-e613-4cd9-bb9a-9d90db043eda", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T15:04:30.880Z", + "completed":"2017-07-12T15:04:30.880Z", + "new_balance":"4183.99", + "value":"-24.56" + } + }, + { + "id":"fb2b5782-013c-483c-b794-20ac5e2624e5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T17:29:20.868Z", + "completed":"2017-07-12T17:29:20.868Z", + "new_balance":"4144.82", + "value":"-39.17" + } + }, + { + "id":"3cf1349b-6618-4fd2-851d-2226e985f8f3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T15:43:17.695Z", + "completed":"2017-07-15T15:43:17.695Z", + "new_balance":"4128.42", + "value":"-16.40" + } + }, + { + "id":"0bb89334-fdec-4166-85a4-2c7ae9a04ae7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T02:34:39.554Z", + "completed":"2017-07-16T02:34:39.554Z", + "new_balance":"4075.24", + "value":"-53.18" + } + }, + { + "id":"1c6e50d3-4495-4f7b-b394-1376766573e9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T14:06:35.769Z", + "completed":"2017-07-16T14:06:35.769Z", + "new_balance":"4069.09", + "value":"-6.15" + } + }, + { + "id":"c1613a24-18d0-43ce-874a-293567d02505", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T00:57:57.799Z", + "completed":"2017-07-17T00:57:57.799Z", + "new_balance":"4007.91", + "value":"-61.18" + } + }, + { + "id":"d8695d07-2cf2-424d-84b3-683de24d2af8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T16:44:02.403Z", + "completed":"2017-07-17T16:44:02.403Z", + "new_balance":"3976.59", + "value":"-31.32" + } + }, + { + "id":"d8aed5b1-895e-4799-ba14-6a6abd57b70d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T06:35:26.301Z", + "completed":"2017-07-19T06:35:26.301Z", + "new_balance":"3946.19", + "value":"-30.40" + } + }, + { + "id":"bc6b6e4d-454e-4751-a320-3912e26192fc", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T14:30:16.548Z", + "completed":"2017-07-20T14:30:16.548Z", + "new_balance":"3893.01", + "value":"-53.18" + } + }, + { + "id":"594b565d-e18b-4898-a224-36fd2089d139", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T01:30:35.309Z", + "completed":"2017-07-23T01:30:35.309Z", + "new_balance":"3877.18", + "value":"-15.83" + } + }, + { + "id":"5e44132e-7590-4681-80c9-ed5f8e7ef8f9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T01:09:41.879Z", + "completed":"2017-07-26T01:09:41.879Z", + "new_balance":"3818.70", + "value":"-58.48" + } + }, + { + "id":"12e158e7-c3ac-4090-8a22-8a4cf21e08a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T03:19:21.430Z", + "completed":"2017-07-27T03:19:21.430Z", + "new_balance":"5007.21", + "value":"1188.51" + } + }, + { + "id":"12d2b9ad-93d1-42eb-8e49-327462fc807c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T15:09:45.125Z", + "completed":"2017-07-28T15:09:45.125Z", + "new_balance":"4972.78", + "value":"-34.43" + } + }, + { + "id":"78eca58c-863d-48f1-a3e6-2c71672d2d9a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T18:43:06.754Z", + "completed":"2017-07-30T18:43:06.754Z", + "new_balance":"4930.44", + "value":"-42.34" + } + }, + { + "id":"ac6146c9-79e0-4fe8-8c78-ea1a08d0b453", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T15:53:38.257Z", + "completed":"2017-08-01T15:53:38.257Z", + "new_balance":"4868.57", + "value":"-61.87" + } + }, + { + "id":"84ffaaec-76cf-401b-9bb5-fab98ac4fab5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T00:25:10.744Z", + "completed":"2017-08-03T00:25:10.744Z", + "new_balance":"4834.14", + "value":"-34.43" + } + }, + { + "id":"a49c5c72-873f-436b-9a11-7b98cdc19682", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T02:07:57.118Z", + "completed":"2017-08-03T02:07:57.118Z", + "new_balance":"4323.60", + "value":"-510.54" + } + }, + { + "id":"e5c56209-d9af-453c-ab0e-1b70b07f5b09", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T11:37:57.261Z", + "completed":"2017-08-03T11:37:57.261Z", + "new_balance":"4249.67", + "value":"-73.93" + } + }, + { + "id":"cf22059c-56f2-4fb3-9fcf-22aa134947fd", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T22:50:49.928Z", + "completed":"2017-08-03T22:50:49.928Z", + "new_balance":"4225.11", + "value":"-24.56" + } + }, + { + "id":"c12270fb-affd-4cb6-87da-d37bcc5f62fb", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T00:44:13.083Z", + "completed":"2017-08-08T00:44:13.083Z", + "new_balance":"4171.93", + "value":"-53.18" + } + }, + { + "id":"e9972e58-ef2e-4322-9e55-9487c377b9d4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:36:30.505Z", + "completed":"2017-08-08T16:36:30.505Z", + "new_balance":"4127.95", + "value":"-43.98" + } + }, + { + "id":"c172e3af-ca12-47ba-9e24-53f3d410b872", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T11:42:49.728Z", + "completed":"2017-08-11T11:42:49.728Z", + "new_balance":"4138.84", + "value":"10.89" + } + }, + { + "id":"7a54ca79-88fd-4b84-bf34-d395bff76bf6", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T18:36:42.029Z", + "completed":"2017-08-13T18:36:42.029Z", + "new_balance":"4108.96", + "value":"-29.88" + } + }, + { + "id":"717ac98a-817e-4032-94c9-75f292f8c427", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T06:39:47.271Z", + "completed":"2017-08-14T06:39:47.271Z", + "new_balance":"4081.11", + "value":"-27.85" + } + }, + { + "id":"580e7dd8-24ea-4ffa-9b07-cc4e72255bef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:06:52.904Z", + "completed":"2017-08-17T15:06:52.904Z", + "new_balance":"4070.20", + "value":"-10.91" + } + }, + { + "id":"8b87fedb-b60a-45e6-850d-cf15b444b878", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T08:18:40.047Z", + "completed":"2017-08-21T08:18:40.047Z", + "new_balance":"4029.07", + "value":"-41.13" + } + }, + { + "id":"329967a4-29e0-4b20-a1ec-6e579aca4629", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T08:30:24.564Z", + "completed":"2017-08-23T08:30:24.564Z", + "new_balance":"3988.15", + "value":"-40.92" + } + }, + { + "id":"ae0b46be-f6c6-43c8-b5bb-f6e8b9b22c93", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T09:10:58.178Z", + "completed":"2017-08-23T09:10:58.178Z", + "new_balance":"3934.97", + "value":"-53.18" + } + }, + { + "id":"e2df8523-7910-469d-b19d-64cdf0ef83bf", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T00:02:23.227Z", + "completed":"2017-08-24T00:02:23.227Z", + "new_balance":"3924.06", + "value":"-10.91" + } + }, + { + "id":"7f19d94f-3eb3-4102-93ff-bddd76fd24ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T04:37:45.769Z", + "completed":"2017-08-27T04:37:45.769Z", + "new_balance":"5112.57", + "value":"1188.51" + } + }, + { + "id":"50c3f4f4-55ca-41dd-b7ab-7d1635a57de3", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T19:52:55.779Z", + "completed":"2017-08-27T19:52:55.779Z", + "new_balance":"5095.83", + "value":"-16.74" + } + }, + { + "id":"84e77c41-7ec2-4a8a-88db-96acc9e75f2b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T22:58:34.772Z", + "completed":"2017-08-27T22:58:34.772Z", + "new_balance":"5037.35", + "value":"-58.48" + } + }, + { + "id":"6be3ed0b-31d5-4b89-a734-ca5b0cc20a53", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T01:40:20.185Z", + "completed":"2017-08-28T01:40:20.185Z", + "new_balance":"5002.92", + "value":"-34.43" + } + }, + { + "id":"d2c81a4c-2046-43c4-bd1a-3b60ce7da98e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T09:15:41.870Z", + "completed":"2017-08-30T09:15:41.870Z", + "new_balance":"4960.58", + "value":"-42.34" + } + }, + { + "id":"d176c018-e533-4b19-a195-e3516a50a475", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:56:59.655Z", + "completed":"2017-09-01T14:56:59.655Z", + "new_balance":"4898.71", + "value":"-61.87" + } + }, + { + "id":"d4536c43-3ba0-47ab-acdc-9fdb22d4ac89", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T04:28:39.636Z", + "completed":"2017-09-03T04:28:39.636Z", + "new_balance":"4824.78", + "value":"-73.93" + } + }, + { + "id":"909fe703-b77e-4b72-b937-eb6e3a0f257c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T09:41:51.260Z", + "completed":"2017-09-03T09:41:51.260Z", + "new_balance":"4790.35", + "value":"-34.43" + } + }, + { + "id":"0613cbbf-13f1-47cc-b5ad-38ed45f8f864", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T16:30:14.999Z", + "completed":"2017-09-03T16:30:14.999Z", + "new_balance":"4765.79", + "value":"-24.56" + } + }, + { + "id":"08e34e06-ca56-4ee7-a16d-ee8596874e6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T20:03:06.772Z", + "completed":"2017-09-03T20:03:06.772Z", + "new_balance":"4255.25", + "value":"-510.54" + } + }, + { + "id":"f7169388-0241-4df8-b502-65d7603bc977", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T03:48:23.057Z", + "completed":"2017-09-05T03:48:23.057Z", + "new_balance":"4202.07", + "value":"-53.18" + } + }, + { + "id":"49bda59e-ecea-4851-baa6-eda194317592", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T19:18:51.245Z", + "completed":"2017-09-05T19:18:51.245Z", + "new_balance":"4153.41", + "value":"-48.66" + } + }, + { + "id":"2afd45af-94c2-486a-a34e-5b5f355ae94f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T00:28:29.920Z", + "completed":"2017-09-07T00:28:29.920Z", + "new_balance":"4139.74", + "value":"-13.67" + } + }, + { + "id":"a71a3cc0-faa7-4970-b569-df31590bf448", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T10:31:06.607Z", + "completed":"2017-09-09T10:31:06.607Z", + "new_balance":"4086.56", + "value":"-53.18" + } + }, + { + "id":"e2e012cc-b365-4551-a904-f493d3222d63", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T21:23:08.545Z", + "completed":"2017-09-11T21:23:08.545Z", + "new_balance":"4075.56", + "value":"-11.00" + } + }, + { + "id":"b04178eb-a698-45c3-ad6c-c320c4d5ab9c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T19:24:42.620Z", + "completed":"2017-09-13T19:24:42.620Z", + "new_balance":"4017.88", + "value":"-57.68" + } + }, + { + "id":"366d96d1-373a-43b6-acbf-5d6c7f487e47", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T02:00:50.084Z", + "completed":"2017-09-14T02:00:50.084Z", + "new_balance":"4005.95", + "value":"-11.93" + } + }, + { + "id":"c3e798a7-73d3-4d83-802f-cf76635d6626", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:51:57.175Z", + "completed":"2017-09-14T17:51:57.175Z", + "new_balance":"4069.31", + "value":"63.36" + } + }, + { + "id":"45c5e0e5-f36d-42d6-913c-cc3baebd932e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T04:08:01.098Z", + "completed":"2017-09-15T04:08:01.098Z", + "new_balance":"4026.97", + "value":"-42.34" + } + }, + { + "id":"727dd1e1-52e6-442b-a028-8a2a5684c66e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T02:26:44.416Z", + "completed":"2017-09-26T02:26:44.416Z", + "new_balance":"4001.60", + "value":"-25.37" + } + }, + { + "id":"8574c528-b0ae-4370-bb7d-21fcda09ab9d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T02:26:57.571Z", + "completed":"2017-09-26T02:26:57.571Z", + "new_balance":"3954.67", + "value":"-46.93" + } + }, + { + "id":"406f9bc1-e9ee-4820-9a61-056c9312114d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T04:02:56.262Z", + "completed":"2017-09-26T04:02:56.262Z", + "new_balance":"3927.83", + "value":"-26.84" + } + }, + { + "id":"0c162fe7-08a9-4917-920f-057c0c164e06", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T02:20:42.585Z", + "completed":"2017-09-27T02:20:42.585Z", + "new_balance":"3874.65", + "value":"-53.18" + } + }, + { + "id":"a023e3bd-eeea-42c9-ab2a-72d0b33c8f47", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T06:26:54.783Z", + "completed":"2017-09-27T06:26:54.783Z", + "new_balance":"3808.07", + "value":"-66.58" + } + }, + { + "id":"16ed17af-5f69-4f48-93df-d7748a8b06fa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T21:29:37.168Z", + "completed":"2017-09-27T21:29:37.168Z", + "new_balance":"4996.58", + "value":"1188.51" + } + }, + { + "id":"420502a7-ee41-4c61-a92d-dfea01ad0d86", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T03:01:05.680Z", + "completed":"2017-09-28T03:01:05.680Z", + "new_balance":"4962.15", + "value":"-34.43" + } + }, + { + "id":"577afdb8-3470-4d99-ae1c-6034e31005f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:34:58.971Z", + "completed":"2017-09-30T12:34:58.971Z", + "new_balance":"4919.81", + "value":"-42.34" + } + }, + { + "id":"6e65baad-c40b-4a60-91e2-b8369e7beb01", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T00:36:19.583Z", + "completed":"2017-10-01T00:36:19.583Z", + "new_balance":"4409.27", + "value":"-510.54" + } + }, + { + "id":"09edf4a1-535a-491d-a067-403414e4ec0f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T07:53:33.507Z", + "completed":"2017-10-01T07:53:33.507Z", + "new_balance":"4384.71", + "value":"-24.56" + } + }, + { + "id":"af718d53-6c51-45a0-ae3e-c29daf583fe4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T08:50:02.196Z", + "completed":"2017-10-01T08:50:02.196Z", + "new_balance":"4350.28", + "value":"-34.43" + } + }, + { + "id":"ae2049f7-d941-48b7-9acb-7ad4304b0c38", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T17:38:56.395Z", + "completed":"2017-10-01T17:38:56.395Z", + "new_balance":"4288.41", + "value":"-61.87" + } + }, + { + "id":"c78aae40-7707-4045-9268-aad647cf8427", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T20:02:09.381Z", + "completed":"2017-10-01T20:02:09.381Z", + "new_balance":"4214.48", + "value":"-73.93" + } + }, + { + "id":"fe480793-036c-4579-958e-74d49d6770a4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T06:42:45.210Z", + "completed":"2017-10-05T06:42:45.210Z", + "new_balance":"4191.79", + "value":"-22.69" + } + }, + { + "id":"56da0cf3-df96-44dd-b94d-24cd56161564", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T16:06:57.249Z", + "completed":"2017-10-05T16:06:57.249Z", + "new_balance":"4138.61", + "value":"-53.18" + } + }, + { + "id":"4cc4b7d0-d54f-4ab8-bbe6-d4b15a116dd5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T22:06:40.307Z", + "completed":"2017-10-05T22:06:40.307Z", + "new_balance":"4094.63", + "value":"-43.98" + } + }, + { + "id":"d364527c-a5ba-4757-9fe2-c32d4b1829ee", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T23:38:09.194Z", + "completed":"2017-10-05T23:38:09.194Z", + "new_balance":"4081.62", + "value":"-13.01" + } + }, + { + "id":"01aa10a9-82b5-457c-af65-99f50087a379", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T21:12:00.693Z", + "completed":"2017-10-07T21:12:00.693Z", + "new_balance":"4051.74", + "value":"-29.88" + } + }, + { + "id":"d1bbc135-6809-4d5d-b30b-e7ad7ff4e09b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T00:11:09.663Z", + "completed":"2017-10-09T00:11:09.663Z", + "new_balance":"4026.87", + "value":"-24.87" + } + }, + { + "id":"61c8f9d3-cd7d-429d-8bba-e4f4f7e30fae", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T17:25:02.430Z", + "completed":"2017-10-09T17:25:02.430Z", + "new_balance":"3973.69", + "value":"-53.18" + } + }, + { + "id":"3d88d107-ea86-44da-ae48-434ced6b87ed", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T03:35:53.880Z", + "completed":"2017-10-10T03:35:53.880Z", + "new_balance":"3934.52", + "value":"-39.17" + } + }, + { + "id":"769939c9-16e0-42f5-9723-e6f867eb44c9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T12:24:27.423Z", + "completed":"2017-10-10T12:24:27.423Z", + "new_balance":"3909.96", + "value":"-24.56" + } + }, + { + "id":"a474012e-6349-441c-88a4-9ca3e044d8a7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T15:56:03.203Z", + "completed":"2017-10-10T15:56:03.203Z", + "new_balance":"3889.89", + "value":"-20.07" + } + }, + { + "id":"469fa411-5b3e-4ce1-bd5e-5b920a75c0d5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:16:11.734Z", + "completed":"2017-10-10T23:16:11.734Z", + "new_balance":"3873.49", + "value":"-16.40" + } + }, + { + "id":"db16ceac-9431-4cad-aeea-9650e0448679", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T10:10:01.661Z", + "completed":"2017-10-11T10:10:01.661Z", + "new_balance":"3843.09", + "value":"-30.40" + } + }, + { + "id":"1779df86-8fbd-45c0-a4f2-b8f74ca557da", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T13:22:44.803Z", + "completed":"2017-10-11T13:22:44.803Z", + "new_balance":"3789.91", + "value":"-53.18" + } + }, + { + "id":"d8161bdc-396e-47d6-95fd-52380531f294", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T18:14:11.143Z", + "completed":"2017-10-11T18:14:11.143Z", + "new_balance":"3783.76", + "value":"-6.15" + } + }, + { + "id":"aa2c8f22-17e9-4ef2-9b64-1d1a318ec143", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T23:05:09.409Z", + "completed":"2017-10-11T23:05:09.409Z", + "new_balance":"3752.44", + "value":"-31.32" + } + }, + { + "id":"e6814a2f-d87d-4289-98be-4abd34743b6f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T23:25:50.030Z", + "completed":"2017-10-11T23:25:50.030Z", + "new_balance":"3691.26", + "value":"-61.18" + } + }, + { + "id":"300c5e2c-287a-4e8a-8990-3cba38bdb06b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T21:22:01.687Z", + "completed":"2017-10-21T21:22:01.687Z", + "new_balance":"3638.08", + "value":"-53.18" + } + }, + { + "id":"7fcacfb9-1f2d-4359-8868-e7f0c0f7fdb4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T20:56:40.222Z", + "completed":"2017-10-23T20:56:40.222Z", + "new_balance":"3622.25", + "value":"-15.83" + } + }, + { + "id":"597584bf-f52e-40f3-a67f-c81122226de9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T03:59:53.669Z", + "completed":"2017-10-29T03:59:53.669Z", + "new_balance":"3563.77", + "value":"-58.48" + } + }, + { + "id":"2b9e0d33-bdb4-4785-a307-556c7e458ef9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T20:43:17.417Z", + "completed":"2017-10-29T20:43:17.417Z", + "new_balance":"3529.34", + "value":"-34.43" + } + }, + { + "id":"1c114fe0-8101-46ba-b864-dea18755edd7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T21:04:39.003Z", + "completed":"2017-10-29T21:04:39.003Z", + "new_balance":"4717.85", + "value":"1188.51" + } + }, + { + "id":"4b67cd97-731e-4021-af08-d7e550bce53c", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T06:33:04.775Z", + "completed":"2017-10-30T06:33:04.775Z", + "new_balance":"4675.51", + "value":"-42.34" + } + }, + { + "id":"e294ef15-45b3-4b07-9ee8-7842ab0a589a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T04:49:53.590Z", + "completed":"2017-11-02T04:49:53.590Z", + "new_balance":"4164.97", + "value":"-510.54" + } + }, + { + "id":"574df537-bf32-4fff-8689-77363f18ff29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T07:26:26.366Z", + "completed":"2017-11-02T07:26:26.366Z", + "new_balance":"4091.04", + "value":"-73.93" + } + }, + { + "id":"a59a0080-9f49-4c16-9bb5-ae7277f11e74", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T14:40:18.427Z", + "completed":"2017-11-02T14:40:18.427Z", + "new_balance":"4066.48", + "value":"-24.56" + } + }, + { + "id":"f81163fb-4287-4cde-b01a-1af993b57932", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T22:06:20.106Z", + "completed":"2017-11-02T22:06:20.106Z", + "new_balance":"4004.61", + "value":"-61.87" + } + }, + { + "id":"03af86e5-7e8e-4e97-b204-86798681ae7f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T22:04:53.865Z", + "completed":"2017-11-06T22:04:53.865Z", + "new_balance":"3960.63", + "value":"-43.98" + } + }, + { + "id":"f0278b76-54b1-400c-8a3d-faf5f2528c4f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T00:55:10.524Z", + "completed":"2017-11-07T00:55:10.524Z", + "new_balance":"3932.78", + "value":"-27.85" + } + }, + { + "id":"1695c23e-927a-4639-bac2-388ca1cf8273", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T07:10:18.011Z", + "completed":"2017-11-07T07:10:18.011Z", + "new_balance":"3921.87", + "value":"-10.91" + } + }, + { + "id":"ebbfd8d3-1f68-4ec5-9309-c4ed5018a32d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T18:09:39.039Z", + "completed":"2017-11-07T18:09:39.039Z", + "new_balance":"3880.74", + "value":"-41.13" + } + }, + { + "id":"9d0d9939-a5c1-4540-917e-5ac76ed910ca", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T18:39:58.314Z", + "completed":"2017-11-07T18:39:58.314Z", + "new_balance":"3850.86", + "value":"-29.88" + } + }, + { + "id":"4a2dc538-88dc-4b2f-bb02-969ae97d57e8", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T15:27:02.086Z", + "completed":"2017-11-08T15:27:02.086Z", + "new_balance":"3809.94", + "value":"-40.92" + } + }, + { + "id":"7514b4be-843d-4453-a004-88defe630f78", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T20:34:23.517Z", + "completed":"2017-11-09T20:34:23.517Z", + "new_balance":"3775.51", + "value":"-34.43" + } + }, + { + "id":"a3a62670-1616-42c4-b38c-1af3f7369cb5", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T06:14:50.788Z", + "completed":"2017-11-13T06:14:50.788Z", + "new_balance":"3722.33", + "value":"-53.18" + } + }, + { + "id":"a6f0a0cb-f7fc-432c-b101-91c9988b6054", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T07:57:23.822Z", + "completed":"2017-11-26T07:57:23.822Z", + "new_balance":"3711.42", + "value":"-10.91" + } + }, + { + "id":"c73f7985-5403-4f1d-a2c1-6a5dbface66f", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T20:07:21.145Z", + "completed":"2017-11-26T20:07:21.145Z", + "new_balance":"3658.24", + "value":"-53.18" + } + }, + { + "id":"def65613-0d0b-4558-aac0-7173a11fcb81", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T02:04:49.766Z", + "completed":"2017-11-27T02:04:49.766Z", + "new_balance":"3599.76", + "value":"-58.48" + } + }, + { + "id":"72c979f3-40fb-4960-bcf9-237b98fa273b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T12:55:54.317Z", + "completed":"2017-11-27T12:55:54.317Z", + "new_balance":"3583.02", + "value":"-16.74" + } + }, + { + "id":"4de461b8-c0b0-4ed0-8fcf-a80d1fec8cad", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T02:27:43.691Z", + "completed":"2017-11-30T02:27:43.691Z", + "new_balance":"3540.68", + "value":"-42.34" + } + }, + { + "id":"81030238-e511-4e2c-a60d-7974837b0325", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T08:33:39.025Z", + "completed":"2017-11-30T08:33:39.025Z", + "new_balance":"3506.25", + "value":"-34.43" + } + }, + { + "id":"2ff47163-0e52-4ffc-9db6-71ea65d9ad29", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T16:37:05.973Z", + "completed":"2017-11-30T16:37:05.973Z", + "new_balance":"4694.76", + "value":"1188.51" + } + }, + { + "id":"139fe246-f882-4494-af40-a2f329508a80", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:23:09.505Z", + "completed":"2017-12-01T07:23:09.505Z", + "new_balance":"4184.22", + "value":"-510.54" + } + }, + { + "id":"a538a86d-4041-4440-ad58-194c0860f974", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T11:29:19.599Z", + "completed":"2017-12-01T11:29:19.599Z", + "new_balance":"4135.56", + "value":"-48.66" + } + }, + { + "id":"a8fa1701-6223-47b0-b5b1-c11b86200ea4", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T11:43:06.436Z", + "completed":"2017-12-01T11:43:06.436Z", + "new_balance":"4101.13", + "value":"-34.43" + } + }, + { + "id":"33845968-bd0c-46e2-a2ee-50b35dbe9528", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T13:30:28.841Z", + "completed":"2017-12-01T13:30:28.841Z", + "new_balance":"4039.26", + "value":"-61.87" + } + }, + { + "id":"07573bca-e4d0-4efc-b77e-5247fed4dbef", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T14:28:11.362Z", + "completed":"2017-12-01T14:28:11.362Z", + "new_balance":"4025.59", + "value":"-13.67" + } + }, + { + "id":"7a139fd9-225a-4f83-93eb-1c8363962413", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T14:47:49.447Z", + "completed":"2017-12-01T14:47:49.447Z", + "new_balance":"3972.41", + "value":"-53.18" + } + }, + { + "id":"c6957935-0388-4852-a40d-3e8a1592142b", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T17:39:35.880Z", + "completed":"2017-12-01T17:39:35.880Z", + "new_balance":"3947.85", + "value":"-24.56" + } + }, + { + "id":"ee5416c8-4149-4b38-9145-a0cd0f6ccc5d", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T19:50:49.465Z", + "completed":"2017-12-01T19:50:49.465Z", + "new_balance":"3894.67", + "value":"-53.18" + } + }, + { + "id":"45d5afd8-654b-47ed-98b1-4e1501cace9e", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:39:18.045Z", + "completed":"2017-12-01T22:39:18.045Z", + "new_balance":"3820.74", + "value":"-73.93" + } + }, + { + "id":"d731b4ea-2f4f-4812-8ec1-db153c872cb7", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T02:39:47.621Z", + "completed":"2017-12-02T02:39:47.621Z", + "new_balance":"3808.81", + "value":"-11.93" + } + }, + { + "id":"acb01ee2-400d-49c5-b585-587f25963aec", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T09:49:22.725Z", + "completed":"2017-12-02T09:49:22.725Z", + "new_balance":"3797.81", + "value":"-11.00" + } + }, + { + "id":"c88f4a8f-787f-4318-9788-52520491fb06", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T11:43:17.134Z", + "completed":"2017-12-02T11:43:17.134Z", + "new_balance":"3740.13", + "value":"-57.68" + } + }, + { + "id":"a46a0c5a-2c5d-4b74-a44e-8fbc5d4da630", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:08:09.443Z", + "completed":"2017-12-04T07:08:09.443Z", + "new_balance":"3714.76", + "value":"-25.37" + } + }, + { + "id":"d730b8ac-aee3-4c45-9eec-6ea0177da7fa", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T12:02:55.250Z", + "completed":"2017-12-04T12:02:55.250Z", + "new_balance":"3667.83", + "value":"-46.93" + } + }, + { + "id":"2d85e7d0-de46-4467-910e-b638d30f841a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T13:37:00.669Z", + "completed":"2017-12-04T13:37:00.669Z", + "new_balance":"3625.49", + "value":"-42.34" + } + }, + { + "id":"329be884-a77b-4d38-9181-42ef473faeda", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T07:26:35.397Z", + "completed":"2017-12-05T07:26:35.397Z", + "new_balance":"3598.65", + "value":"-26.84" + } + }, + { + "id":"7d7b3d27-0520-4974-88d4-808c3d703e19", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T16:54:10.363Z", + "completed":"2017-12-05T16:54:10.363Z", + "new_balance":"3532.07", + "value":"-66.58" + } + }, + { + "id":"46cff976-181d-444e-a737-4cac69b0d5f2", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T21:13:05.469Z", + "completed":"2017-12-18T21:13:05.469Z", + "new_balance":"3478.89", + "value":"-53.18" + } + }, + { + "id":"1d677cd8-edbe-4401-b0bb-1ab3a559c97a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T03:15:50.430Z", + "completed":"2017-12-30T03:15:50.430Z", + "new_balance":"3436.55", + "value":"-42.34" + } + }, + { + "id":"f5831df2-9cb3-4b6e-94bc-6bff18b16fd9", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T06:55:12.338Z", + "completed":"2017-12-30T06:55:12.338Z", + "new_balance":"3395.02", + "value":"-41.53" + } + }, + { + "id":"ac2a0e0b-f429-4d74-80d1-ecb4b3ecb075", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T14:24:04.986Z", + "completed":"2017-12-30T14:24:04.986Z", + "new_balance":"3360.59", + "value":"-34.43" + } + }, + { + "id":"44fa8286-89cf-4242-bce6-cae638e1b14a", + "this_account":{ + "id":"2ef3dc6f-85f3-4e07-b722-6dfcdc380144", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T14:52:31.661Z", + "completed":"2017-12-30T14:52:31.661Z", + "new_balance":"4549.10", + "value":"1188.51" + } + }, + { + "id":"43b0e500-388c-43d0-85ea-702d482cee2e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:17:47.780Z", + "completed":"2016-01-01T12:17:47.780Z", + "new_balance":"5389.18", + "value":"1680.41" + } + }, + { + "id":"dc7b4c1e-104b-4ec4-b847-f91c5b07278c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:28:22.682Z", + "completed":"2016-01-01T12:28:22.682Z", + "new_balance":"6411.60", + "value":"1022.42" + } + }, + { + "id":"26e1c97b-1ec9-494d-8ecb-87707a091623", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T02:57:05.626Z", + "completed":"2016-01-02T02:57:05.626Z", + "new_balance":"6004.03", + "value":"-407.57" + } + }, + { + "id":"504eb7a3-d52a-4c43-adc1-e7d42b550dae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T01:33:43.771Z", + "completed":"2016-01-03T01:33:43.771Z", + "new_balance":"5957.23", + "value":"-46.80" + } + }, + { + "id":"15bc3a81-d1e1-46b4-a204-2388e8a35f44", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T01:53:21.427Z", + "completed":"2016-01-03T01:53:21.427Z", + "new_balance":"5939.61", + "value":"-17.62" + } + }, + { + "id":"8799076c-c90c-4f2c-a3fa-f60a225083c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T22:38:59.496Z", + "completed":"2016-01-03T22:38:59.496Z", + "new_balance":"5933.23", + "value":"-6.38" + } + }, + { + "id":"e9ec059c-a1b5-4aa1-b24a-b439c97bb78c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T04:53:03.913Z", + "completed":"2016-01-04T04:53:03.913Z", + "new_balance":"5922.32", + "value":"-10.91" + } + }, + { + "id":"158b060b-9c41-4abb-b81f-132e8fd9600a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T13:29:59.374Z", + "completed":"2016-01-05T13:29:59.374Z", + "new_balance":"5915.33", + "value":"-6.99" + } + }, + { + "id":"ca8c6e06-0fa3-429d-aab0-3fa1182eceec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T08:45:36.604Z", + "completed":"2016-01-07T08:45:36.604Z", + "new_balance":"5890.40", + "value":"-24.93" + } + }, + { + "id":"d2d627e0-61fe-496b-a8cd-1fda0195098e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T15:01:33.063Z", + "completed":"2016-01-07T15:01:33.063Z", + "new_balance":"5871.24", + "value":"-19.16" + } + }, + { + "id":"2841439c-2ec0-4163-b22e-8bb28264c43e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T05:28:29.893Z", + "completed":"2016-01-08T05:28:29.893Z", + "new_balance":"5856.25", + "value":"-14.99" + } + }, + { + "id":"79e60115-f33b-4e3f-a1b9-20d01cbc3df5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T21:56:48.052Z", + "completed":"2016-01-08T21:56:48.052Z", + "new_balance":"5840.24", + "value":"-16.01" + } + }, + { + "id":"550009b0-a16f-4e80-821b-12be31eaabb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T09:52:09.381Z", + "completed":"2016-01-09T09:52:09.381Z", + "new_balance":"5795.18", + "value":"-45.06" + } + }, + { + "id":"1ab6a1a7-d166-4d8e-a60a-7204b4745378", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T10:11:00.739Z", + "completed":"2016-01-09T10:11:00.739Z", + "new_balance":"5766.02", + "value":"-29.16" + } + }, + { + "id":"f299dbec-4aab-4126-b05a-f85c81963559", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T20:52:31.814Z", + "completed":"2016-01-10T20:52:31.814Z", + "new_balance":"5721.54", + "value":"-44.48" + } + }, + { + "id":"07c01899-a406-4c10-af85-8a395220e0e0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T23:30:45.553Z", + "completed":"2016-01-10T23:30:45.553Z", + "new_balance":"5616.82", + "value":"-104.72" + } + }, + { + "id":"6bcdae59-7293-40c9-b98f-691788cb3710", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T06:53:18.451Z", + "completed":"2016-01-11T06:53:18.451Z", + "new_balance":"5611.05", + "value":"-5.77" + } + }, + { + "id":"18511fae-4963-4009-aa9f-188137fc1ef6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T07:56:10.366Z", + "completed":"2016-01-11T07:56:10.366Z", + "new_balance":"5531.97", + "value":"-79.08" + } + }, + { + "id":"85bf93e1-d91f-4af7-8fe2-ded771e8f3f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T11:33:02.019Z", + "completed":"2016-01-11T11:33:02.019Z", + "new_balance":"5622.85", + "value":"90.88" + } + }, + { + "id":"3012b141-4ad3-4eb6-a95a-21d914b963c2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T14:23:12.310Z", + "completed":"2016-01-12T14:23:12.310Z", + "new_balance":"5612.78", + "value":"-10.07" + } + }, + { + "id":"eb3fbc50-fa54-4bcd-a91c-7438eb51bf3c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T10:07:37.430Z", + "completed":"2016-01-15T10:07:37.430Z", + "new_balance":"5587.38", + "value":"-25.40" + } + }, + { + "id":"21ae03e9-7254-4748-a72b-5877126cb1b8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T06:20:39.983Z", + "completed":"2016-01-16T06:20:39.983Z", + "new_balance":"5556.57", + "value":"-30.81" + } + }, + { + "id":"363d18e0-3e95-48b5-a46c-ca5c695f8358", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:40:08.420Z", + "completed":"2016-01-17T10:40:08.420Z", + "new_balance":"5541.74", + "value":"-14.83" + } + }, + { + "id":"fbf9945b-246f-4f3d-9a9b-ef64556dc3ff", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T18:57:24.625Z", + "completed":"2016-01-20T18:57:24.625Z", + "new_balance":"5534.75", + "value":"-6.99" + } + }, + { + "id":"c36ed901-09b4-4756-b761-3c7fd23b0861", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:39:38.559Z", + "completed":"2016-01-21T04:39:38.559Z", + "new_balance":"5485.97", + "value":"-48.78" + } + }, + { + "id":"ef253907-a5cf-47f2-bcc4-aeb9db6263f4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T10:42:01.228Z", + "completed":"2016-01-23T10:42:01.228Z", + "new_balance":"5288.06", + "value":"-197.91" + } + }, + { + "id":"5a93eab3-2700-4211-92a3-5a3bd5ccbe70", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T18:19:13.652Z", + "completed":"2016-02-01T18:19:13.652Z", + "new_balance":"6310.48", + "value":"1022.42" + } + }, + { + "id":"a6d8e12e-bdd2-46bb-a7b4-98d52ceaf14d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T01:24:52.135Z", + "completed":"2016-02-03T01:24:52.135Z", + "new_balance":"5902.91", + "value":"-407.57" + } + }, + { + "id":"6f90cac6-164b-41fe-b5b8-98d6b07655eb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T13:46:50.835Z", + "completed":"2016-02-03T13:46:50.835Z", + "new_balance":"5739.43", + "value":"-163.48" + } + }, + { + "id":"8abbc667-6830-4039-9702-1b726d2b73f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T00:45:40.937Z", + "completed":"2016-02-04T00:45:40.937Z", + "new_balance":"5724.92", + "value":"-14.51" + } + }, + { + "id":"d32c85a9-d750-4cd4-bc98-f7968c2882c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T12:20:34.885Z", + "completed":"2016-02-05T12:20:34.885Z", + "new_balance":"5718.43", + "value":"-6.49" + } + }, + { + "id":"7797dcfb-8f64-4c2e-8db3-3c2f5331cb97", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T05:12:23.507Z", + "completed":"2016-02-06T05:12:23.507Z", + "new_balance":"5693.63", + "value":"-24.80" + } + }, + { + "id":"d956ae67-baea-4b2e-b2fd-ea9033439d0a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T00:44:15.548Z", + "completed":"2016-02-07T00:44:15.548Z", + "new_balance":"5652.28", + "value":"-41.35" + } + }, + { + "id":"62dd8356-609a-4803-8b58-48c850a7a26f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T16:05:21.464Z", + "completed":"2016-02-07T16:05:21.464Z", + "new_balance":"5547.56", + "value":"-104.72" + } + }, + { + "id":"9d2d826b-e59d-498d-a1cb-a8c090776140", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T22:21:37.816Z", + "completed":"2016-02-07T22:21:37.816Z", + "new_balance":"5518.40", + "value":"-29.16" + } + }, + { + "id":"73385f84-9530-4b2d-9283-65f744bd7f2c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T07:28:53.438Z", + "completed":"2016-02-08T07:28:53.438Z", + "new_balance":"5467.84", + "value":"-50.56" + } + }, + { + "id":"535da05d-c380-450c-b7a7-587c78eb9227", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T15:33:45.729Z", + "completed":"2016-02-09T15:33:45.729Z", + "new_balance":"5442.04", + "value":"-25.80" + } + }, + { + "id":"b33fda0a-e5ac-4cfc-ba76-1c499ad91243", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T07:38:04.540Z", + "completed":"2016-02-10T07:38:04.540Z", + "new_balance":"5435.05", + "value":"-6.99" + } + }, + { + "id":"bfeabf89-7360-4683-9184-9455ac729282", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T22:27:51.560Z", + "completed":"2016-02-12T22:27:51.560Z", + "new_balance":"5399.86", + "value":"-35.19" + } + }, + { + "id":"6a3530bb-2440-4480-b374-8602bbd8fcf6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T18:35:59.037Z", + "completed":"2016-02-14T18:35:59.037Z", + "new_balance":"5370.70", + "value":"-29.16" + } + }, + { + "id":"01fc5d32-b5a6-4956-955b-c6b5ff567c42", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T18:47:20.807Z", + "completed":"2016-02-16T18:47:20.807Z", + "new_balance":"5364.93", + "value":"-5.77" + } + }, + { + "id":"d3fecb46-859f-4b72-b93d-ffe854d0af70", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T21:05:08.816Z", + "completed":"2016-02-16T21:05:08.816Z", + "new_balance":"5319.42", + "value":"-45.51" + } + }, + { + "id":"da669185-1a41-421a-8790-01ab0dd25604", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T00:14:30.223Z", + "completed":"2016-02-18T00:14:30.223Z", + "new_balance":"5311.02", + "value":"-8.40" + } + }, + { + "id":"dfebf7f8-7ce9-4365-9d35-121a6fcf9e36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T09:43:41.194Z", + "completed":"2016-02-21T09:43:41.194Z", + "new_balance":"5425.16", + "value":"114.14" + } + }, + { + "id":"7a109c9c-dbee-4014-981b-89f308c3e395", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T12:54:07.915Z", + "completed":"2016-02-21T12:54:07.915Z", + "new_balance":"5376.38", + "value":"-48.78" + } + }, + { + "id":"def6dc6c-4c6e-49ed-9b21-7491af911a8d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T19:24:47.581Z", + "completed":"2016-02-27T19:24:47.581Z", + "new_balance":"5178.47", + "value":"-197.91" + } + }, + { + "id":"95a14525-1a1f-45c6-91fe-4948dbd45ed1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:30:29.193Z", + "completed":"2016-03-01T03:30:29.193Z", + "new_balance":"6200.89", + "value":"1022.42" + } + }, + { + "id":"0a29f2d3-77ae-4676-8f52-570c018447c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T00:32:35.648Z", + "completed":"2016-03-03T00:32:35.648Z", + "new_balance":"5793.32", + "value":"-407.57" + } + }, + { + "id":"59976ddb-0ca4-4663-b188-591031458a29", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T07:55:13.623Z", + "completed":"2016-03-04T07:55:13.623Z", + "new_balance":"5776.32", + "value":"-17.00" + } + }, + { + "id":"249bf65e-5b66-47af-beba-b67ee3fe9e87", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T11:36:59.358Z", + "completed":"2016-03-04T11:36:59.358Z", + "new_balance":"5745.51", + "value":"-30.81" + } + }, + { + "id":"ac21ec75-c48c-48da-ab6e-c44288f855cd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T16:10:32.202Z", + "completed":"2016-03-04T16:10:32.202Z", + "new_balance":"5714.06", + "value":"-31.45" + } + }, + { + "id":"3fc40eea-9728-4875-b945-1d9434122e8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T19:35:15.566Z", + "completed":"2016-03-04T19:35:15.566Z", + "new_balance":"5668.55", + "value":"-45.51" + } + }, + { + "id":"3c0f66c8-81bc-4cc7-8b59-f5d7fc1f6e2d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T04:08:51.745Z", + "completed":"2016-03-05T04:08:51.745Z", + "new_balance":"5654.49", + "value":"-14.06" + } + }, + { + "id":"98b0833d-da08-44bd-b180-a3e770323730", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T09:09:11.140Z", + "completed":"2016-03-05T09:09:11.140Z", + "new_balance":"5648.72", + "value":"-5.77" + } + }, + { + "id":"38f111c3-fd77-4e1e-9527-a6f2b69b508c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T09:57:49.389Z", + "completed":"2016-03-05T09:57:49.389Z", + "new_balance":"5544.00", + "value":"-104.72" + } + }, + { + "id":"7a152867-699d-4f28-845d-b4ca03497eaf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T11:50:17.613Z", + "completed":"2016-03-05T11:50:17.613Z", + "new_balance":"5498.46", + "value":"-45.54" + } + }, + { + "id":"e5bffd52-f48d-403e-8c44-e2fb610f71f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T00:27:28.479Z", + "completed":"2016-03-06T00:27:28.479Z", + "new_balance":"5399.34", + "value":"-99.12" + } + }, + { + "id":"ff578e04-9f07-4c07-a6cb-ea5755b16769", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T01:22:36.653Z", + "completed":"2016-03-06T01:22:36.653Z", + "new_balance":"5317.55", + "value":"-81.79" + } + }, + { + "id":"4c8803a3-6363-457a-b23c-fa36eeeb2d22", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T08:39:17.547Z", + "completed":"2016-03-07T08:39:17.547Z", + "new_balance":"5311.78", + "value":"-5.77" + } + }, + { + "id":"a0bf62bb-de1b-47cf-8d61-27becc018298", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T09:26:10.729Z", + "completed":"2016-03-07T09:26:10.729Z", + "new_balance":"5304.17", + "value":"-7.61" + } + }, + { + "id":"9b6b079c-5b3b-471a-a52f-dee941198517", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T08:15:19.842Z", + "completed":"2016-03-08T08:15:19.842Z", + "new_balance":"5296.56", + "value":"-7.61" + } + }, + { + "id":"7e0d8358-1844-4f9c-a4a3-7b7a1f93cddc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T11:08:50.065Z", + "completed":"2016-03-08T11:08:50.065Z", + "new_balance":"5288.04", + "value":"-8.52" + } + }, + { + "id":"cd5ee411-6a7a-4b96-9472-885dd03fc99d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T21:52:56.840Z", + "completed":"2016-03-10T21:52:56.840Z", + "new_balance":"5255.70", + "value":"-32.34" + } + }, + { + "id":"360f46ed-e95a-4a36-a8b0-5076a65ff2ac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T04:28:39.755Z", + "completed":"2016-03-11T04:28:39.755Z", + "new_balance":"5231.40", + "value":"-24.30" + } + }, + { + "id":"185fd082-1ce2-4005-b6bc-e1cc4f975681", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T09:18:14.239Z", + "completed":"2016-03-11T09:18:14.239Z", + "new_balance":"5219.03", + "value":"-12.37" + } + }, + { + "id":"d23aa6e5-44b0-4dd8-be6c-c2c011fb464f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T20:06:10.726Z", + "completed":"2016-03-11T20:06:10.726Z", + "new_balance":"5213.26", + "value":"-5.77" + } + }, + { + "id":"4937fb9f-0070-47c9-bdf9-c60fad3bd904", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T06:27:44.682Z", + "completed":"2016-03-12T06:27:44.682Z", + "new_balance":"5194.10", + "value":"-19.16" + } + }, + { + "id":"5a959a8f-e802-46db-8b9a-70d183beefa0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T06:48:12.817Z", + "completed":"2016-03-12T06:48:12.817Z", + "new_balance":"5127.92", + "value":"-66.18" + } + }, + { + "id":"1a25ca66-a03a-48c1-bade-b98dfa5ab548", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T19:00:13.517Z", + "completed":"2016-03-12T19:00:13.517Z", + "new_balance":"5122.15", + "value":"-5.77" + } + }, + { + "id":"10bef1f6-459f-4b09-a7ef-7eedc38e53fc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T21:51:08.076Z", + "completed":"2016-03-12T21:51:08.076Z", + "new_balance":"5020.89", + "value":"-101.26" + } + }, + { + "id":"508d27a8-8ba5-48c2-942e-913d4f1acf37", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T14:23:52.235Z", + "completed":"2016-03-13T14:23:52.235Z", + "new_balance":"5015.12", + "value":"-5.77" + } + }, + { + "id":"067c5e7f-6261-45db-928e-1a3502d35261", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T22:49:23.591Z", + "completed":"2016-03-13T22:49:23.591Z", + "new_balance":"4972.63", + "value":"-42.49" + } + }, + { + "id":"22d9c466-3038-4ee5-8787-58564dabdc91", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T04:50:40.066Z", + "completed":"2016-03-15T04:50:40.066Z", + "new_balance":"4930.40", + "value":"-42.23" + } + }, + { + "id":"9f5321d5-6ff8-455f-8fe3-cce378921e6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T14:09:44.790Z", + "completed":"2016-03-15T14:09:44.790Z", + "new_balance":"4881.51", + "value":"-48.89" + } + }, + { + "id":"ebfbaae2-c734-42e1-a2ca-ebb449046c14", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T11:19:09.382Z", + "completed":"2016-03-17T11:19:09.382Z", + "new_balance":"4837.54", + "value":"-43.97" + } + }, + { + "id":"94f98ec6-57f0-4e00-875e-c6189c8cf433", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T15:45:00.944Z", + "completed":"2016-03-18T15:45:00.944Z", + "new_balance":"4740.04", + "value":"-97.50" + } + }, + { + "id":"bb56091b-d2d6-4032-9605-cff5eff3a544", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T00:30:24.032Z", + "completed":"2016-03-20T00:30:24.032Z", + "new_balance":"4635.72", + "value":"-104.32" + } + }, + { + "id":"bd893b0b-7064-45d0-8d16-95f099d8d131", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T22:19:01.268Z", + "completed":"2016-03-22T22:19:01.268Z", + "new_balance":"4595.40", + "value":"-40.32" + } + }, + { + "id":"8a7aa297-e78f-4df6-b833-9ae21174bc8e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T16:11:18.955Z", + "completed":"2016-03-25T16:11:18.955Z", + "new_balance":"4582.39", + "value":"-13.01" + } + }, + { + "id":"77470a03-9d37-4413-9a2e-fa3696b7902c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T23:36:58.509Z", + "completed":"2016-03-25T23:36:58.509Z", + "new_balance":"4576.62", + "value":"-5.77" + } + }, + { + "id":"ae540216-8237-4502-b044-5599e8738217", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T02:53:04.167Z", + "completed":"2016-03-26T02:53:04.167Z", + "new_balance":"4551.00", + "value":"-25.62" + } + }, + { + "id":"972d7118-b2af-44ca-bc1d-4100cf216462", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T13:27:32.542Z", + "completed":"2016-03-26T13:27:32.542Z", + "new_balance":"4538.21", + "value":"-12.79" + } + }, + { + "id":"38246fd9-dd6c-464b-82c0-c4ba5dcd3cef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T06:25:00.094Z", + "completed":"2016-03-27T06:25:00.094Z", + "new_balance":"4524.02", + "value":"-14.19" + } + }, + { + "id":"7f26ee39-8b56-47d9-a533-a2046178c1de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T16:41:15.665Z", + "completed":"2016-03-28T16:41:15.665Z", + "new_balance":"4475.24", + "value":"-48.78" + } + }, + { + "id":"a40ff053-f7a4-44ae-bfd9-83b88114dfa8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T14:12:24.035Z", + "completed":"2016-03-31T14:12:24.035Z", + "new_balance":"4277.33", + "value":"-197.91" + } + }, + { + "id":"9dd1e9a4-40c3-41d9-986e-c66974e21e7e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T12:39:25.390Z", + "completed":"2016-04-01T12:39:25.390Z", + "new_balance":"3869.76", + "value":"-407.57" + } + }, + { + "id":"d8344bd9-45fa-4623-a58e-8550d2eb3fa3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T20:27:56.616Z", + "completed":"2016-04-01T20:27:56.616Z", + "new_balance":"4892.18", + "value":"1022.42" + } + }, + { + "id":"d1006996-bd51-4ea8-a0af-bc7aafd5bf38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T22:45:05.638Z", + "completed":"2016-04-01T22:45:05.638Z", + "new_balance":"6572.59", + "value":"1680.41" + } + }, + { + "id":"c9e0bdfc-3406-44b3-92f7-b1ec1885aed4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T07:02:51.722Z", + "completed":"2016-04-03T07:02:51.722Z", + "new_balance":"6525.79", + "value":"-46.80" + } + }, + { + "id":"7f522e2b-e4e5-4228-921c-f872139e5b2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T07:43:16.259Z", + "completed":"2016-04-03T07:43:16.259Z", + "new_balance":"6508.17", + "value":"-17.62" + } + }, + { + "id":"537713a6-79d6-46b1-acac-915f27ff1607", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T21:26:24.216Z", + "completed":"2016-04-03T21:26:24.216Z", + "new_balance":"6501.79", + "value":"-6.38" + } + }, + { + "id":"3cc03ad2-8373-4501-b5a3-44a325ae901a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T05:21:03.235Z", + "completed":"2016-04-05T05:21:03.235Z", + "new_balance":"6490.88", + "value":"-10.91" + } + }, + { + "id":"a3cd3fea-e659-4dfd-8e83-a4c5e7bdc764", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:22:19.048Z", + "completed":"2016-04-05T15:22:19.048Z", + "new_balance":"6483.89", + "value":"-6.99" + } + }, + { + "id":"830aaafb-4e93-46c8-8290-4f6dd6095ec5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T03:56:05.881Z", + "completed":"2016-04-06T03:56:05.881Z", + "new_balance":"6458.96", + "value":"-24.93" + } + }, + { + "id":"d939c47e-909e-4239-83e6-57120bb9d9d4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T13:31:15.087Z", + "completed":"2016-04-09T13:31:15.087Z", + "new_balance":"6439.80", + "value":"-19.16" + } + }, + { + "id":"6bf52cbb-3766-4a06-9929-815d439d5418", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T12:05:53.704Z", + "completed":"2016-04-10T12:05:53.704Z", + "new_balance":"6424.81", + "value":"-14.99" + } + }, + { + "id":"01c2afe0-7be0-40f2-96be-0186c1453833", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T08:12:10.137Z", + "completed":"2016-04-11T08:12:10.137Z", + "new_balance":"6408.80", + "value":"-16.01" + } + }, + { + "id":"b6948c6e-3236-4b81-94ba-01ef26c5a1a1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T22:49:22.819Z", + "completed":"2016-04-11T22:49:22.819Z", + "new_balance":"6379.64", + "value":"-29.16" + } + }, + { + "id":"a3a17ec7-80e7-45fc-b032-7a3d932ff749", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T17:19:53.885Z", + "completed":"2016-04-13T17:19:53.885Z", + "new_balance":"6334.58", + "value":"-45.06" + } + }, + { + "id":"4c9dd1cc-9cd9-477b-9eb5-a10b56308757", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T19:14:55.570Z", + "completed":"2016-04-13T19:14:55.570Z", + "new_balance":"6229.86", + "value":"-104.72" + } + }, + { + "id":"9c198cb1-af4b-47a1-a02a-bb92516efc60", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T01:24:31.642Z", + "completed":"2016-04-15T01:24:31.642Z", + "new_balance":"6185.38", + "value":"-44.48" + } + }, + { + "id":"1413179a-d491-4bc5-a562-be731148d353", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T16:41:33.329Z", + "completed":"2016-04-16T16:41:33.329Z", + "new_balance":"6179.61", + "value":"-5.77" + } + }, + { + "id":"af3aa79a-9392-47d4-a9c2-0aa583796bf1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T23:53:31.674Z", + "completed":"2016-04-16T23:53:31.674Z", + "new_balance":"6169.54", + "value":"-10.07" + } + }, + { + "id":"2ae1bfea-3ed4-4082-ac09-6b63d57bd168", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T15:07:22.821Z", + "completed":"2016-04-18T15:07:22.821Z", + "new_balance":"6090.46", + "value":"-79.08" + } + }, + { + "id":"62f29434-9be3-4684-ae91-e61f12109ab6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T04:14:07.565Z", + "completed":"2016-04-23T04:14:07.565Z", + "new_balance":"6065.06", + "value":"-25.40" + } + }, + { + "id":"d65e34db-b4ca-4f0b-b140-a2f4e251fe36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T05:23:43.361Z", + "completed":"2016-04-24T05:23:43.361Z", + "new_balance":"6034.25", + "value":"-30.81" + } + }, + { + "id":"b71ca14e-c4af-4823-9949-d00333e43c7d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T23:26:31.447Z", + "completed":"2016-04-24T23:26:31.447Z", + "new_balance":"6019.42", + "value":"-14.83" + } + }, + { + "id":"acfa85cc-b84e-45b0-b40a-4c261c765ef8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T07:01:37.237Z", + "completed":"2016-04-26T07:01:37.237Z", + "new_balance":"6012.43", + "value":"-6.99" + } + }, + { + "id":"9fc46342-bb89-46f4-a358-7c868de6bce4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T16:48:57.394Z", + "completed":"2016-04-28T16:48:57.394Z", + "new_balance":"5963.65", + "value":"-48.78" + } + }, + { + "id":"fc81c09d-f4cc-4a14-88a1-46565c0b30db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T23:00:37.708Z", + "completed":"2016-04-28T23:00:37.708Z", + "new_balance":"5765.74", + "value":"-197.91" + } + }, + { + "id":"dc182d03-c177-48a0-a909-f9466a28b945", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T12:13:30.736Z", + "completed":"2016-05-02T12:13:30.736Z", + "new_balance":"5358.17", + "value":"-407.57" + } + }, + { + "id":"512b90a5-66c5-4058-9ac7-dacf517a2bb9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T12:34:52.998Z", + "completed":"2016-05-02T12:34:52.998Z", + "new_balance":"5194.69", + "value":"-163.48" + } + }, + { + "id":"9e222512-51a0-45d7-abc1-1d55f89ad16a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T18:13:07.863Z", + "completed":"2016-05-02T18:13:07.863Z", + "new_balance":"5180.18", + "value":"-14.51" + } + }, + { + "id":"3467f809-0db5-49f9-a284-4b8f8787e740", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T21:36:26.962Z", + "completed":"2016-05-02T21:36:26.962Z", + "new_balance":"5173.69", + "value":"-6.49" + } + }, + { + "id":"a5cefcb6-07a5-4880-9f6b-71b1655dadbd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T19:26:47.882Z", + "completed":"2016-05-06T19:26:47.882Z", + "new_balance":"5148.89", + "value":"-24.80" + } + }, + { + "id":"73995273-5e3f-4e23-a858-5f4aeab77d9b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T20:02:23.503Z", + "completed":"2016-05-06T20:02:23.503Z", + "new_balance":"5119.73", + "value":"-29.16" + } + }, + { + "id":"ef8a61d0-0cec-4af0-b3b5-20dbe79547d0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T00:32:26.600Z", + "completed":"2016-05-07T00:32:26.600Z", + "new_balance":"5015.01", + "value":"-104.72" + } + }, + { + "id":"404fdc4d-49e7-4f63-9a98-8d969792d856", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T04:59:32.275Z", + "completed":"2016-05-07T04:59:32.275Z", + "new_balance":"4973.66", + "value":"-41.35" + } + }, + { + "id":"339d6add-b0d1-49f6-81ad-823224b7220c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T00:12:07.376Z", + "completed":"2016-05-09T00:12:07.376Z", + "new_balance":"5996.08", + "value":"1022.42" + } + }, + { + "id":"1b8d377b-fb88-40ec-b4fd-97e073703609", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T02:10:45.891Z", + "completed":"2016-05-14T02:10:45.891Z", + "new_balance":"5970.28", + "value":"-25.80" + } + }, + { + "id":"543fe5a4-75da-4d9d-9373-ef336f507c9a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T07:31:45.219Z", + "completed":"2016-05-14T07:31:45.219Z", + "new_balance":"5919.72", + "value":"-50.56" + } + }, + { + "id":"1a7c28b1-f100-4ffb-b5ca-67590f11642f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T20:05:34.163Z", + "completed":"2016-05-16T20:05:34.163Z", + "new_balance":"5912.73", + "value":"-6.99" + } + }, + { + "id":"551c6502-bf09-4fd7-b0b9-2a921f72bf74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T00:18:53.762Z", + "completed":"2016-05-21T00:18:53.762Z", + "new_balance":"5877.54", + "value":"-35.19" + } + }, + { + "id":"f4993ba7-6afc-4bdc-b72d-02f0fe2e7e71", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T09:02:54.590Z", + "completed":"2016-05-23T09:02:54.590Z", + "new_balance":"5871.77", + "value":"-5.77" + } + }, + { + "id":"03031c41-0b74-421c-a6e2-4ea73b06c681", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T15:13:35.493Z", + "completed":"2016-05-23T15:13:35.493Z", + "new_balance":"5842.61", + "value":"-29.16" + } + }, + { + "id":"13f8f705-9e02-4dab-ab17-66f5f471b649", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T05:02:59.522Z", + "completed":"2016-05-24T05:02:59.522Z", + "new_balance":"5797.10", + "value":"-45.51" + } + }, + { + "id":"7abe4442-9812-4ebf-a0e0-08f84f8181a6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T10:13:20.451Z", + "completed":"2016-05-27T10:13:20.451Z", + "new_balance":"5788.70", + "value":"-8.40" + } + }, + { + "id":"b3bec993-49b5-4d0b-9b00-964d6ecd8453", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T00:31:06.311Z", + "completed":"2016-05-30T00:31:06.311Z", + "new_balance":"5590.79", + "value":"-197.91" + } + }, + { + "id":"3cf1e2e8-5fc6-4af8-b695-82d82eabb9fa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T21:04:45.451Z", + "completed":"2016-05-30T21:04:45.451Z", + "new_balance":"5542.01", + "value":"-48.78" + } + }, + { + "id":"e0a13fff-f47c-49f8-bd41-dbc8813731c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T07:24:08.566Z", + "completed":"2016-06-01T07:24:08.566Z", + "new_balance":"5134.44", + "value":"-407.57" + } + }, + { + "id":"c4e808f7-a089-4bb1-b7d9-e3d21fcfc4dd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T11:03:54.544Z", + "completed":"2016-06-01T11:03:54.544Z", + "new_balance":"6156.86", + "value":"1022.42" + } + }, + { + "id":"7347c4b4-9fda-48b5-9d68-ef1b503dc35f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:36:48.677Z", + "completed":"2016-06-04T01:36:48.677Z", + "new_balance":"6125.41", + "value":"-31.45" + } + }, + { + "id":"5a9ea4b2-99f9-4f5c-a502-df8996fa1dbf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T03:21:05.658Z", + "completed":"2016-06-04T03:21:05.658Z", + "new_balance":"6108.41", + "value":"-17.00" + } + }, + { + "id":"f83163f9-3604-461e-922f-fd7d554963ae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T01:46:20.419Z", + "completed":"2016-06-11T01:46:20.419Z", + "new_balance":"6077.60", + "value":"-30.81" + } + }, + { + "id":"8153bbb0-148b-4d62-b34b-7a824afbf91b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T09:41:49.122Z", + "completed":"2016-06-11T09:41:49.122Z", + "new_balance":"6032.09", + "value":"-45.51" + } + }, + { + "id":"d44bc601-67e8-4598-934f-d6be940a0d57", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T05:19:47.916Z", + "completed":"2016-06-12T05:19:47.916Z", + "new_balance":"6018.03", + "value":"-14.06" + } + }, + { + "id":"856d00fa-b2a2-439b-8be4-033e48933b48", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T09:05:25.644Z", + "completed":"2016-06-12T09:05:25.644Z", + "new_balance":"5913.31", + "value":"-104.72" + } + }, + { + "id":"949e3d5d-1f81-450f-b188-48899c6e3016", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T16:05:48.821Z", + "completed":"2016-06-12T16:05:48.821Z", + "new_balance":"5907.54", + "value":"-5.77" + } + }, + { + "id":"97775a1d-cff0-4407-93f4-7aef1d6bef32", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T09:09:09.052Z", + "completed":"2016-06-13T09:09:09.052Z", + "new_balance":"5808.42", + "value":"-99.12" + } + }, + { + "id":"c3ff6faa-a8e8-4362-9940-339a3b902a7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:16:31.443Z", + "completed":"2016-06-13T21:16:31.443Z", + "new_balance":"5762.88", + "value":"-45.54" + } + }, + { + "id":"72e0b271-0fb7-49c4-a7ae-4790ad4e82e7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T22:24:15.840Z", + "completed":"2016-06-13T22:24:15.840Z", + "new_balance":"5681.09", + "value":"-81.79" + } + }, + { + "id":"b7f5f60e-1be8-4b5b-a6f7-cadc970b292f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T09:42:53.836Z", + "completed":"2016-06-14T09:42:53.836Z", + "new_balance":"5675.32", + "value":"-5.77" + } + }, + { + "id":"d90de930-2b7d-4a1c-8a7f-318c049420c8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T12:41:48.685Z", + "completed":"2016-06-14T12:41:48.685Z", + "new_balance":"5667.71", + "value":"-7.61" + } + }, + { + "id":"88458267-55f2-470f-8786-3d604153cd1d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T13:17:37.413Z", + "completed":"2016-06-14T13:17:37.413Z", + "new_balance":"5660.10", + "value":"-7.61" + } + }, + { + "id":"4635f2dd-381f-4342-b6da-35a74b604e26", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T14:12:34.698Z", + "completed":"2016-06-15T14:12:34.698Z", + "new_balance":"5627.76", + "value":"-32.34" + } + }, + { + "id":"73f31a76-c9ae-4adc-bf67-e389243b8e24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T16:58:40.399Z", + "completed":"2016-06-15T16:58:40.399Z", + "new_balance":"5619.24", + "value":"-8.52" + } + }, + { + "id":"389c5ad8-f0aa-40f5-b509-2fb404a06069", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T18:31:56.637Z", + "completed":"2016-06-15T18:31:56.637Z", + "new_balance":"5613.47", + "value":"-5.77" + } + }, + { + "id":"74678d0b-b5b9-4d24-8fbc-da2a986d3e56", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T22:39:28.346Z", + "completed":"2016-06-16T22:39:28.346Z", + "new_balance":"5589.17", + "value":"-24.30" + } + }, + { + "id":"6aa5c050-a170-4697-b59f-4d4563baea50", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T08:55:03.009Z", + "completed":"2016-06-17T08:55:03.009Z", + "new_balance":"5576.80", + "value":"-12.37" + } + }, + { + "id":"cd6ab8b2-c66c-4a05-a65d-f39bdfb1be01", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T01:32:32.075Z", + "completed":"2016-06-18T01:32:32.075Z", + "new_balance":"5557.64", + "value":"-19.16" + } + }, + { + "id":"a45f2420-df64-48ea-b13c-a49c33c387c5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:45:38.738Z", + "completed":"2016-06-18T02:45:38.738Z", + "new_balance":"5551.87", + "value":"-5.77" + } + }, + { + "id":"b45655d7-13fc-4aed-ac17-a2c6c72bf431", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T09:40:16.026Z", + "completed":"2016-06-18T09:40:16.026Z", + "new_balance":"5450.61", + "value":"-101.26" + } + }, + { + "id":"c322e4c9-92a2-4612-82dc-7ce9b467acff", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T10:46:01.266Z", + "completed":"2016-06-18T10:46:01.266Z", + "new_balance":"5384.43", + "value":"-66.18" + } + }, + { + "id":"436c3929-b8ec-4814-ad49-0541e59aac5c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T13:52:16.362Z", + "completed":"2016-06-18T13:52:16.362Z", + "new_balance":"5341.94", + "value":"-42.49" + } + }, + { + "id":"209093f6-be98-4103-a169-c25b53d76379", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T20:19:08.090Z", + "completed":"2016-06-18T20:19:08.090Z", + "new_balance":"5336.17", + "value":"-5.77" + } + }, + { + "id":"9cc8bc96-5f43-4bb1-a683-74cd0765201d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:41:04.390Z", + "completed":"2016-06-19T03:41:04.390Z", + "new_balance":"5292.20", + "value":"-43.97" + } + }, + { + "id":"bfd56455-043e-4bca-a06f-6974e92496ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T14:48:12.983Z", + "completed":"2016-06-19T14:48:12.983Z", + "new_balance":"5249.97", + "value":"-42.23" + } + }, + { + "id":"94cb0069-2c59-4b00-b6a6-73c75ec5ab03", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T15:32:00.737Z", + "completed":"2016-06-19T15:32:00.737Z", + "new_balance":"5201.08", + "value":"-48.89" + } + }, + { + "id":"4a244c4c-9989-423b-b88a-30341e4fb323", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T00:28:56.277Z", + "completed":"2016-06-21T00:28:56.277Z", + "new_balance":"5103.58", + "value":"-97.50" + } + }, + { + "id":"4f347fc0-e28b-4f6c-bdd4-9f596663e218", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T22:26:28.453Z", + "completed":"2016-06-21T22:26:28.453Z", + "new_balance":"4999.26", + "value":"-104.32" + } + }, + { + "id":"c3e77a5c-26a4-43e5-bf89-4be732ea26c4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T10:51:42.557Z", + "completed":"2016-06-22T10:51:42.557Z", + "new_balance":"4993.49", + "value":"-5.77" + } + }, + { + "id":"c8946d6f-30e6-4323-89d8-6cd3c93a086e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T13:11:08.052Z", + "completed":"2016-06-22T13:11:08.052Z", + "new_balance":"4953.17", + "value":"-40.32" + } + }, + { + "id":"9991f50a-40a3-45c8-b6bd-119bb81115ce", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T15:50:41.491Z", + "completed":"2016-06-22T15:50:41.491Z", + "new_balance":"4940.16", + "value":"-13.01" + } + }, + { + "id":"5b64ad87-c51c-4714-b4db-f094e807e470", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T12:38:55.375Z", + "completed":"2016-06-23T12:38:55.375Z", + "new_balance":"4927.37", + "value":"-12.79" + } + }, + { + "id":"e5e4e777-1dc7-4bda-a14f-63f16c08d3c9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T14:32:07.924Z", + "completed":"2016-06-24T14:32:07.924Z", + "new_balance":"4901.75", + "value":"-25.62" + } + }, + { + "id":"0ec188ef-101a-4112-8948-dc1aaafe26b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T11:01:33.440Z", + "completed":"2016-06-26T11:01:33.440Z", + "new_balance":"4887.56", + "value":"-14.19" + } + }, + { + "id":"e3946fe7-b51e-48a3-a30e-ba9ccb4d5550", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T01:06:25.289Z", + "completed":"2016-06-30T01:06:25.289Z", + "new_balance":"4838.78", + "value":"-48.78" + } + }, + { + "id":"05407fbc-3cfe-4d35-a261-73455ed4a081", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T19:40:03.451Z", + "completed":"2016-06-30T19:40:03.451Z", + "new_balance":"4640.87", + "value":"-197.91" + } + }, + { + "id":"103cd0a9-1644-4a19-a099-a351c551cf26", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T12:47:09.946Z", + "completed":"2016-07-01T12:47:09.946Z", + "new_balance":"5663.29", + "value":"1022.42" + } + }, + { + "id":"31181407-15ea-4f52-8a64-e4ffe6911c65", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T22:11:02.250Z", + "completed":"2016-07-01T22:11:02.250Z", + "new_balance":"7343.70", + "value":"1680.41" + } + }, + { + "id":"71c67965-e2e8-48ff-a85c-b47de58ceaed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T07:22:26.832Z", + "completed":"2016-07-03T07:22:26.832Z", + "new_balance":"6936.13", + "value":"-407.57" + } + }, + { + "id":"17524b19-b470-46e9-9663-ae6681bcdc3e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T12:09:44.273Z", + "completed":"2016-07-04T12:09:44.273Z", + "new_balance":"6918.51", + "value":"-17.62" + } + }, + { + "id":"b0d82c1d-5909-4eac-85a4-f84e8fec8da7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T14:05:29.384Z", + "completed":"2016-07-04T14:05:29.384Z", + "new_balance":"6871.71", + "value":"-46.80" + } + }, + { + "id":"14150640-2038-45b2-a8cb-9c1ca73ba5c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T15:25:31.068Z", + "completed":"2016-07-04T15:25:31.068Z", + "new_balance":"6865.33", + "value":"-6.38" + } + }, + { + "id":"ea527442-99f2-402b-a31d-bf6526d9483f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T08:48:18.698Z", + "completed":"2016-07-05T08:48:18.698Z", + "new_balance":"6854.42", + "value":"-10.91" + } + }, + { + "id":"c14bb3d6-df7e-4079-93e3-56465067d64f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T02:38:20.955Z", + "completed":"2016-07-07T02:38:20.955Z", + "new_balance":"6847.43", + "value":"-6.99" + } + }, + { + "id":"39974c08-d205-4026-97b6-a32c674133a0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:07:37.934Z", + "completed":"2016-07-11T10:07:37.934Z", + "new_balance":"6832.44", + "value":"-14.99" + } + }, + { + "id":"e1fe41bd-dcd1-4727-9d51-26e7e254153c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T12:11:24.488Z", + "completed":"2016-07-11T12:11:24.488Z", + "new_balance":"6813.28", + "value":"-19.16" + } + }, + { + "id":"db9e436f-3596-4ed9-9d98-80845ffc4281", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T14:13:55.200Z", + "completed":"2016-07-11T14:13:55.200Z", + "new_balance":"6784.12", + "value":"-29.16" + } + }, + { + "id":"a98300ec-f63a-4bd8-a914-3934b7f37f6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:18:36.708Z", + "completed":"2016-07-11T16:18:36.708Z", + "new_balance":"6759.19", + "value":"-24.93" + } + }, + { + "id":"9efe6d10-2569-44ac-9c8e-b58056f45f89", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:19:13.924Z", + "completed":"2016-07-11T16:19:13.924Z", + "new_balance":"6743.18", + "value":"-16.01" + } + }, + { + "id":"3a5606b0-cb3e-47bc-8791-a8e6a34223e4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T18:19:04.395Z", + "completed":"2016-07-13T18:19:04.395Z", + "new_balance":"6638.46", + "value":"-104.72" + } + }, + { + "id":"18550a81-6986-4a7f-bfa8-a2a60a9af9a0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T22:47:25.723Z", + "completed":"2016-07-13T22:47:25.723Z", + "new_balance":"6593.40", + "value":"-45.06" + } + }, + { + "id":"2d843315-3c94-4575-867c-2c547574ccbb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T18:39:30.357Z", + "completed":"2016-07-16T18:39:30.357Z", + "new_balance":"6548.92", + "value":"-44.48" + } + }, + { + "id":"993578d2-931e-4a16-a200-ab271e76cad2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T21:30:42.307Z", + "completed":"2016-07-16T21:30:42.307Z", + "new_balance":"6639.80", + "value":"90.88" + } + }, + { + "id":"f989be33-9545-473e-8682-e04204c21d20", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T08:30:13.179Z", + "completed":"2016-07-17T08:30:13.179Z", + "new_balance":"6634.03", + "value":"-5.77" + } + }, + { + "id":"71a02ac0-813e-4d4f-80fe-b85a15671c72", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:58:10.266Z", + "completed":"2016-07-17T16:58:10.266Z", + "new_balance":"6623.96", + "value":"-10.07" + } + }, + { + "id":"1be289a0-6b5f-4349-80b2-a2b8d68cdcfb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T11:16:08.607Z", + "completed":"2016-07-19T11:16:08.607Z", + "new_balance":"6544.88", + "value":"-79.08" + } + }, + { + "id":"fe1cdc70-41df-4413-afb3-72ff3b8c1006", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T04:53:07.000Z", + "completed":"2016-07-21T04:53:07.000Z", + "new_balance":"6519.48", + "value":"-25.40" + } + }, + { + "id":"4231a7af-c38a-47de-8323-e268e4ccc8cc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T11:25:08.606Z", + "completed":"2016-07-23T11:25:08.606Z", + "new_balance":"6488.67", + "value":"-30.81" + } + }, + { + "id":"bda52860-547e-41de-893c-2d193ad2dcef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T13:22:00.364Z", + "completed":"2016-07-25T13:22:00.364Z", + "new_balance":"6473.84", + "value":"-14.83" + } + }, + { + "id":"516dfd01-a951-4850-9058-42db743eab88", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T20:51:27.067Z", + "completed":"2016-07-27T20:51:27.067Z", + "new_balance":"6466.85", + "value":"-6.99" + } + }, + { + "id":"e370ee5d-5a58-4340-8a17-bdb89c70589f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T02:47:21.148Z", + "completed":"2016-07-28T02:47:21.148Z", + "new_balance":"6418.07", + "value":"-48.78" + } + }, + { + "id":"e1c9de01-4497-4421-8ac9-c44e50b50044", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T22:10:40.494Z", + "completed":"2016-07-28T22:10:40.494Z", + "new_balance":"6220.16", + "value":"-197.91" + } + }, + { + "id":"995847b6-1852-4ba9-982a-2570090f9e11", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T21:04:19.494Z", + "completed":"2016-08-01T21:04:19.494Z", + "new_balance":"7242.58", + "value":"1022.42" + } + }, + { + "id":"0a3b4cda-7df8-45c9-afe6-6967e5462cf4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T08:10:19.706Z", + "completed":"2016-08-03T08:10:19.706Z", + "new_balance":"7079.10", + "value":"-163.48" + } + }, + { + "id":"dd786974-689e-4f0a-aa78-790afedc8f6b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T14:44:20.152Z", + "completed":"2016-08-03T14:44:20.152Z", + "new_balance":"6671.53", + "value":"-407.57" + } + }, + { + "id":"7b241c6a-4249-4a9d-9618-b2dadefd3515", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T23:22:29.878Z", + "completed":"2016-08-04T23:22:29.878Z", + "new_balance":"6657.02", + "value":"-14.51" + } + }, + { + "id":"aff2c549-fc99-43b8-b270-375b98272026", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T03:26:00.530Z", + "completed":"2016-08-07T03:26:00.530Z", + "new_balance":"6650.53", + "value":"-6.49" + } + }, + { + "id":"ca35d7a2-5430-45e6-ac20-efe357af8177", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T03:41:47.222Z", + "completed":"2016-08-07T03:41:47.222Z", + "new_balance":"6625.73", + "value":"-24.80" + } + }, + { + "id":"55fe1d95-f0c8-4627-83f6-94ded74aed57", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T05:25:10.642Z", + "completed":"2016-08-07T05:25:10.642Z", + "new_balance":"6596.57", + "value":"-29.16" + } + }, + { + "id":"77775181-bfcf-4bf5-b7b7-c7550ad00de4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T07:31:48.435Z", + "completed":"2016-08-08T07:31:48.435Z", + "new_balance":"6555.22", + "value":"-41.35" + } + }, + { + "id":"ee580766-5544-4b95-885f-0750607ecc02", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T08:41:10.177Z", + "completed":"2016-08-08T08:41:10.177Z", + "new_balance":"6450.50", + "value":"-104.72" + } + }, + { + "id":"0f6ffd3d-e8a9-4a5c-a096-362f580788f3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T09:59:32.973Z", + "completed":"2016-08-08T09:59:32.973Z", + "new_balance":"6399.94", + "value":"-50.56" + } + }, + { + "id":"ad960567-a7da-4b42-b679-1a9297ac4e2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T15:43:17.522Z", + "completed":"2016-08-09T15:43:17.522Z", + "new_balance":"6374.14", + "value":"-25.80" + } + }, + { + "id":"e112f9f0-6ba2-4860-8850-bd8e9a810b23", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T18:14:33.914Z", + "completed":"2016-08-11T18:14:33.914Z", + "new_balance":"6367.15", + "value":"-6.99" + } + }, + { + "id":"491d0fcd-6a07-4486-ad2a-2d075f7a8109", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T12:04:40.420Z", + "completed":"2016-08-14T12:04:40.420Z", + "new_balance":"6331.96", + "value":"-35.19" + } + }, + { + "id":"749a0226-88e7-48ee-ac2d-698345caee9c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T12:36:18.458Z", + "completed":"2016-08-15T12:36:18.458Z", + "new_balance":"6302.80", + "value":"-29.16" + } + }, + { + "id":"ebecab43-647f-4bf5-8538-030120efb110", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T15:42:41.470Z", + "completed":"2016-08-17T15:42:41.470Z", + "new_balance":"6297.03", + "value":"-5.77" + } + }, + { + "id":"63f61a9a-7855-49a3-9582-2613bb504571", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T20:36:26.070Z", + "completed":"2016-08-17T20:36:26.070Z", + "new_balance":"6251.52", + "value":"-45.51" + } + }, + { + "id":"b7a9b57e-973e-411d-a8d6-9e9e5776fd03", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T10:28:18.983Z", + "completed":"2016-08-19T10:28:18.983Z", + "new_balance":"6243.12", + "value":"-8.40" + } + }, + { + "id":"83e485ab-a3e2-4698-8bc3-02b5e485f349", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T21:23:45.751Z", + "completed":"2016-08-25T21:23:45.751Z", + "new_balance":"6357.26", + "value":"114.14" + } + }, + { + "id":"e88052cc-e682-41bd-b51a-88d9f3cb8fa8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T05:46:10.194Z", + "completed":"2016-08-28T05:46:10.194Z", + "new_balance":"6308.48", + "value":"-48.78" + } + }, + { + "id":"2fd764c4-bc35-4171-9f40-31e93597d169", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T21:40:26.800Z", + "completed":"2016-08-28T21:40:26.800Z", + "new_balance":"6110.57", + "value":"-197.91" + } + }, + { + "id":"facc09e7-f736-4b49-9dbb-a071691b1392", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T15:10:00.654Z", + "completed":"2016-09-01T15:10:00.654Z", + "new_balance":"7132.99", + "value":"1022.42" + } + }, + { + "id":"f0c0f676-32f5-4e8e-9f6d-d0f03c2242d8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T23:50:44.457Z", + "completed":"2016-09-03T23:50:44.457Z", + "new_balance":"6725.42", + "value":"-407.57" + } + }, + { + "id":"367f9528-4191-417d-82ba-a63ae6ca6d04", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T06:37:34.860Z", + "completed":"2016-09-04T06:37:34.860Z", + "new_balance":"6679.91", + "value":"-45.51" + } + }, + { + "id":"a217b90e-f8d1-4a3a-8864-32c89c9a789a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T08:38:28.001Z", + "completed":"2016-09-04T08:38:28.001Z", + "new_balance":"6648.46", + "value":"-31.45" + } + }, + { + "id":"073f7d05-8d91-4b00-9a89-cce6d3c05323", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T10:55:36.289Z", + "completed":"2016-09-04T10:55:36.289Z", + "new_balance":"6631.46", + "value":"-17.00" + } + }, + { + "id":"9fd5a20f-5188-49bb-9201-7f990b97ff8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T19:23:10.857Z", + "completed":"2016-09-04T19:23:10.857Z", + "new_balance":"6600.65", + "value":"-30.81" + } + }, + { + "id":"254b55dc-6294-44e6-a20c-eec0ad66d3ee", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T00:10:07.205Z", + "completed":"2016-09-05T00:10:07.205Z", + "new_balance":"6518.86", + "value":"-81.79" + } + }, + { + "id":"9f48dfa1-f3d7-470e-a55c-52ab162d4561", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T01:28:03.850Z", + "completed":"2016-09-05T01:28:03.850Z", + "new_balance":"6504.80", + "value":"-14.06" + } + }, + { + "id":"17f7ddb6-fb76-4573-8fc5-6983376602b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T01:37:41.722Z", + "completed":"2016-09-05T01:37:41.722Z", + "new_balance":"6499.03", + "value":"-5.77" + } + }, + { + "id":"0ec1ec55-8540-4401-b4e7-410bb8047e7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T08:04:53.966Z", + "completed":"2016-09-05T08:04:53.966Z", + "new_balance":"6394.31", + "value":"-104.72" + } + }, + { + "id":"322c52f1-6d93-4095-a162-eedd654b1c2f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T11:30:39.589Z", + "completed":"2016-09-05T11:30:39.589Z", + "new_balance":"6295.19", + "value":"-99.12" + } + }, + { + "id":"760fd78f-8e31-488f-a7f7-3229ac2d2d92", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T22:29:53.903Z", + "completed":"2016-09-05T22:29:53.903Z", + "new_balance":"6249.65", + "value":"-45.54" + } + }, + { + "id":"21347e40-eba6-405a-90b0-303e32109918", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T02:38:32.359Z", + "completed":"2016-09-07T02:38:32.359Z", + "new_balance":"6241.13", + "value":"-8.52" + } + }, + { + "id":"40238ff1-c7c2-4452-acc5-18d34eb1c3c5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T04:47:13.766Z", + "completed":"2016-09-07T04:47:13.766Z", + "new_balance":"6233.52", + "value":"-7.61" + } + }, + { + "id":"34392706-ae54-460a-b326-6609608962ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T15:25:09.871Z", + "completed":"2016-09-07T15:25:09.871Z", + "new_balance":"6225.91", + "value":"-7.61" + } + }, + { + "id":"a60b52f8-15fb-49d0-aeaf-40a48f37feb4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T22:26:24.472Z", + "completed":"2016-09-07T22:26:24.472Z", + "new_balance":"6220.14", + "value":"-5.77" + } + }, + { + "id":"57f0dcfe-cf4a-4de8-a524-70fe10e77e9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:30:06.326Z", + "completed":"2016-09-10T22:30:06.326Z", + "new_balance":"6187.80", + "value":"-32.34" + } + }, + { + "id":"4ad16285-56e2-4f4b-b6b4-46cefdf76754", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T01:04:38.075Z", + "completed":"2016-09-11T01:04:38.075Z", + "new_balance":"6175.43", + "value":"-12.37" + } + }, + { + "id":"3326d720-a54f-4c03-819e-94a974712e87", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T01:32:50.534Z", + "completed":"2016-09-11T01:32:50.534Z", + "new_balance":"6151.13", + "value":"-24.30" + } + }, + { + "id":"0e4581b9-7a32-4cdc-a33f-626708f11627", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T12:07:38.669Z", + "completed":"2016-09-11T12:07:38.669Z", + "new_balance":"6145.36", + "value":"-5.77" + } + }, + { + "id":"abdd118b-73cc-42b4-8cb0-3d38f4c23fe8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T05:07:30.145Z", + "completed":"2016-09-12T05:07:30.145Z", + "new_balance":"6126.20", + "value":"-19.16" + } + }, + { + "id":"76a761ed-7b23-4158-8a78-016eae1122fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:31:12.089Z", + "completed":"2016-09-12T10:31:12.089Z", + "new_balance":"6060.02", + "value":"-66.18" + } + }, + { + "id":"910f376a-a4c4-401d-ad72-6a569360781e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T19:06:19.072Z", + "completed":"2016-09-12T19:06:19.072Z", + "new_balance":"5958.76", + "value":"-101.26" + } + }, + { + "id":"40328cae-0dba-4157-8340-e04ecc26075c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T19:44:27.799Z", + "completed":"2016-09-12T19:44:27.799Z", + "new_balance":"5952.99", + "value":"-5.77" + } + }, + { + "id":"1da51a5f-7039-41ee-a6c4-d647bbc28abc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T12:43:04.151Z", + "completed":"2016-09-13T12:43:04.151Z", + "new_balance":"5910.50", + "value":"-42.49" + } + }, + { + "id":"c7218cd1-a721-41aa-a36e-89f055faf59e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T05:43:13.238Z", + "completed":"2016-09-14T05:43:13.238Z", + "new_balance":"5868.27", + "value":"-42.23" + } + }, + { + "id":"3c4ef94b-7c3d-4b1a-b37d-9adc92d80f11", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T07:34:21.525Z", + "completed":"2016-09-14T07:34:21.525Z", + "new_balance":"5862.50", + "value":"-5.77" + } + }, + { + "id":"94221e9f-d1b2-4122-b05b-3ae71dcd7fe3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T15:31:59.265Z", + "completed":"2016-09-16T15:31:59.265Z", + "new_balance":"5813.61", + "value":"-48.89" + } + }, + { + "id":"1b07f8b6-4d6e-455e-95bf-443f32154d2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T18:58:41.661Z", + "completed":"2016-09-18T18:58:41.661Z", + "new_balance":"5769.64", + "value":"-43.97" + } + }, + { + "id":"4962cc9d-6cd5-4ccd-88b3-1f8e24bee602", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T06:14:00.069Z", + "completed":"2016-09-21T06:14:00.069Z", + "new_balance":"5665.32", + "value":"-104.32" + } + }, + { + "id":"b54ccaf9-422b-443f-9380-b43dc1b3b254", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T13:47:44.079Z", + "completed":"2016-09-21T13:47:44.079Z", + "new_balance":"5567.82", + "value":"-97.50" + } + }, + { + "id":"26c2d4c9-20d9-4703-924a-926772d198af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T07:23:11.709Z", + "completed":"2016-09-23T07:23:11.709Z", + "new_balance":"5527.50", + "value":"-40.32" + } + }, + { + "id":"47ec67e2-0f60-48b2-8fcc-eb1c4fbc1bcb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T00:39:46.865Z", + "completed":"2016-09-24T00:39:46.865Z", + "new_balance":"5521.73", + "value":"-5.77" + } + }, + { + "id":"af742212-3068-4856-b60d-f339bdcc6064", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T10:20:31.291Z", + "completed":"2016-09-26T10:20:31.291Z", + "new_balance":"5508.94", + "value":"-12.79" + } + }, + { + "id":"c7fd032f-2609-45f9-ad37-3485848826aa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T10:35:58.023Z", + "completed":"2016-09-26T10:35:58.023Z", + "new_balance":"5483.32", + "value":"-25.62" + } + }, + { + "id":"bb7591e2-dc6b-462e-b4c9-9bd42afe3680", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T17:36:40.877Z", + "completed":"2016-09-26T17:36:40.877Z", + "new_balance":"5470.31", + "value":"-13.01" + } + }, + { + "id":"de04f6f4-d471-45cd-b311-6d8268f9a30a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T08:36:33.431Z", + "completed":"2016-09-27T08:36:33.431Z", + "new_balance":"5456.12", + "value":"-14.19" + } + }, + { + "id":"7bc5c115-eb60-4889-a38d-127f07753886", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T08:04:50.091Z", + "completed":"2016-09-28T08:04:50.091Z", + "new_balance":"5407.34", + "value":"-48.78" + } + }, + { + "id":"e551c846-db2e-4c95-8951-8a36971189a8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T18:01:40.310Z", + "completed":"2016-09-28T18:01:40.310Z", + "new_balance":"5209.43", + "value":"-197.91" + } + }, + { + "id":"0d0d6ab7-0ea0-4bbc-8511-c50ae70482ec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T03:50:21.586Z", + "completed":"2016-10-01T03:50:21.586Z", + "new_balance":"6231.85", + "value":"1022.42" + } + }, + { + "id":"60e844a8-52f7-4b29-b1b1-b70055e12387", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T08:19:17.172Z", + "completed":"2016-10-01T08:19:17.172Z", + "new_balance":"5824.28", + "value":"-407.57" + } + }, + { + "id":"626870ea-34fb-4919-9410-64e5ef36b754", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T18:12:21.501Z", + "completed":"2016-10-01T18:12:21.501Z", + "new_balance":"7504.69", + "value":"1680.41" + } + }, + { + "id":"659ab2cd-97f7-4786-9a45-4389c54d3c31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T11:17:31.172Z", + "completed":"2016-10-03T11:17:31.172Z", + "new_balance":"7487.07", + "value":"-17.62" + } + }, + { + "id":"4258ab60-d2a2-48aa-9249-4e7349abad12", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T17:39:02.285Z", + "completed":"2016-10-03T17:39:02.285Z", + "new_balance":"7440.27", + "value":"-46.80" + } + }, + { + "id":"4f72b017-abb7-4c3f-b4cf-e7e1f3bee7f5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T22:40:09.494Z", + "completed":"2016-10-03T22:40:09.494Z", + "new_balance":"7433.89", + "value":"-6.38" + } + }, + { + "id":"9e49b3ee-d677-4415-b31e-644082cb3cf8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:55:35.436Z", + "completed":"2016-10-05T12:55:35.436Z", + "new_balance":"7426.90", + "value":"-6.99" + } + }, + { + "id":"2c73c18b-5735-4f27-b48b-d3d6108a6fc1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T20:14:17.322Z", + "completed":"2016-10-05T20:14:17.322Z", + "new_balance":"7415.99", + "value":"-10.91" + } + }, + { + "id":"b48841f7-5f9b-44c7-b090-b96e7fe82c5b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T02:24:22.534Z", + "completed":"2016-10-06T02:24:22.534Z", + "new_balance":"7391.06", + "value":"-24.93" + } + }, + { + "id":"26ca2a37-4ba7-41d9-9f8a-9f1929c42bf0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T12:15:16.404Z", + "completed":"2016-10-09T12:15:16.404Z", + "new_balance":"7371.90", + "value":"-19.16" + } + }, + { + "id":"95ecb97f-88dc-456e-b1ab-4b943ee953c7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T13:40:44.982Z", + "completed":"2016-10-10T13:40:44.982Z", + "new_balance":"7356.91", + "value":"-14.99" + } + }, + { + "id":"4b535354-5035-49e5-8dee-25149ef3af5f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T01:21:26.644Z", + "completed":"2016-10-11T01:21:26.644Z", + "new_balance":"7327.75", + "value":"-29.16" + } + }, + { + "id":"321f07f0-f31f-4603-b942-f610648822fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T22:51:13.751Z", + "completed":"2016-10-11T22:51:13.751Z", + "new_balance":"7311.74", + "value":"-16.01" + } + }, + { + "id":"0e970c60-1336-4c3e-bfa0-ca849962cd94", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T02:56:53.807Z", + "completed":"2016-10-14T02:56:53.807Z", + "new_balance":"7207.02", + "value":"-104.72" + } + }, + { + "id":"e32f1a0b-504c-42b1-bb4f-c31446944aab", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T18:34:46.738Z", + "completed":"2016-10-14T18:34:46.738Z", + "new_balance":"7161.96", + "value":"-45.06" + } + }, + { + "id":"92853609-7ab7-4def-8365-8af7f11dca6b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T12:25:37.105Z", + "completed":"2016-10-17T12:25:37.105Z", + "new_balance":"7117.48", + "value":"-44.48" + } + }, + { + "id":"8ddff9b1-6e14-4802-8010-80a56514fedb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T03:00:03.388Z", + "completed":"2016-10-18T03:00:03.388Z", + "new_balance":"7107.41", + "value":"-10.07" + } + }, + { + "id":"987eda76-39a7-47a7-921f-8960408e17af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T08:48:25.459Z", + "completed":"2016-10-18T08:48:25.459Z", + "new_balance":"7101.64", + "value":"-5.77" + } + }, + { + "id":"12ba898c-d020-4f3e-9e19-7c279a2223b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T17:23:07.632Z", + "completed":"2016-10-18T17:23:07.632Z", + "new_balance":"7022.56", + "value":"-79.08" + } + }, + { + "id":"cc78f51e-1021-42be-b253-427e2a339343", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T01:09:31.260Z", + "completed":"2016-10-23T01:09:31.260Z", + "new_balance":"6997.16", + "value":"-25.40" + } + }, + { + "id":"01a72c1b-f573-4dcd-bec3-51ae5933ed90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T04:45:32.370Z", + "completed":"2016-10-24T04:45:32.370Z", + "new_balance":"6982.33", + "value":"-14.83" + } + }, + { + "id":"c9c7cca1-c3cf-4623-a6bb-5a6929998eec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T08:44:18.316Z", + "completed":"2016-10-24T08:44:18.316Z", + "new_balance":"6951.52", + "value":"-30.81" + } + }, + { + "id":"1959f0d7-ce7d-41ee-8f33-54897236b917", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T19:52:13.121Z", + "completed":"2016-10-26T19:52:13.121Z", + "new_balance":"6944.53", + "value":"-6.99" + } + }, + { + "id":"fb69621a-8121-4a15-bedf-343fd238767e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T04:11:06.279Z", + "completed":"2016-10-30T04:11:06.279Z", + "new_balance":"6895.75", + "value":"-48.78" + } + }, + { + "id":"2ed9755b-3623-4562-aabd-162bb81ba01e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T22:38:42.471Z", + "completed":"2016-10-30T22:38:42.471Z", + "new_balance":"6697.84", + "value":"-197.91" + } + }, + { + "id":"cea3455c-5e08-4587-9600-a3c8a90413bf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T18:49:21.685Z", + "completed":"2016-11-02T18:49:21.685Z", + "new_balance":"6683.33", + "value":"-14.51" + } + }, + { + "id":"3e9f9f6b-513c-46ad-ba0e-647200bb059b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T21:56:33.728Z", + "completed":"2016-11-02T21:56:33.728Z", + "new_balance":"6275.76", + "value":"-407.57" + } + }, + { + "id":"69ec80d6-ed1c-4030-8d38-3ca82bfe27db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T22:49:45.780Z", + "completed":"2016-11-02T22:49:45.780Z", + "new_balance":"6112.28", + "value":"-163.48" + } + }, + { + "id":"bec73a66-a3b2-473c-8af1-f26e674b97ef", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T23:27:24.131Z", + "completed":"2016-11-02T23:27:24.131Z", + "new_balance":"6105.79", + "value":"-6.49" + } + }, + { + "id":"cb1d6bce-0c78-424c-941d-defb1e31d86e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T11:35:21.494Z", + "completed":"2016-11-06T11:35:21.494Z", + "new_balance":"6076.63", + "value":"-29.16" + } + }, + { + "id":"9b641e38-7f01-4159-96be-35d2abd78047", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T23:37:51.847Z", + "completed":"2016-11-06T23:37:51.847Z", + "new_balance":"6051.83", + "value":"-24.80" + } + }, + { + "id":"ad5090c6-3312-4025-9506-1f9dd003bc08", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:01:33.414Z", + "completed":"2016-11-07T14:01:33.414Z", + "new_balance":"6010.48", + "value":"-41.35" + } + }, + { + "id":"d0f5cf9b-1b8a-4210-9bb8-d3d2f72daad3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T15:35:23.416Z", + "completed":"2016-11-07T15:35:23.416Z", + "new_balance":"5905.76", + "value":"-104.72" + } + }, + { + "id":"a4ff9966-db6e-4cf3-abaa-897e66687038", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T22:55:18.909Z", + "completed":"2016-11-09T22:55:18.909Z", + "new_balance":"6928.18", + "value":"1022.42" + } + }, + { + "id":"3353149f-6c91-4677-b58f-42de96d47722", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:29:32.516Z", + "completed":"2016-11-14T01:29:32.516Z", + "new_balance":"6902.38", + "value":"-25.80" + } + }, + { + "id":"586a9f9c-ff50-4f34-8764-ab3d8090ce9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T02:49:05.008Z", + "completed":"2016-11-14T02:49:05.008Z", + "new_balance":"6851.82", + "value":"-50.56" + } + }, + { + "id":"149948d2-b15d-4cc6-9274-0156fe9c1240", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T17:22:23.448Z", + "completed":"2016-11-16T17:22:23.448Z", + "new_balance":"6844.83", + "value":"-6.99" + } + }, + { + "id":"0d55e0a9-c2de-447f-b4bf-66568ce54fc1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T18:54:43.030Z", + "completed":"2016-11-20T18:54:43.030Z", + "new_balance":"6809.64", + "value":"-35.19" + } + }, + { + "id":"45b07525-5412-4d49-8f6b-7c2b91923cfd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T00:30:27.676Z", + "completed":"2016-11-23T00:30:27.676Z", + "new_balance":"6780.48", + "value":"-29.16" + } + }, + { + "id":"c4f56cb2-3291-42c0-b023-534d6272545f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T06:14:39.744Z", + "completed":"2016-11-23T06:14:39.744Z", + "new_balance":"6734.97", + "value":"-45.51" + } + }, + { + "id":"4e7707c7-345a-4815-9aaf-79f1e46160e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T11:22:27.797Z", + "completed":"2016-11-23T11:22:27.797Z", + "new_balance":"6729.20", + "value":"-5.77" + } + }, + { + "id":"99e276fc-95aa-4569-be37-f958d1451217", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T19:08:58.683Z", + "completed":"2016-11-28T19:08:58.683Z", + "new_balance":"6720.80", + "value":"-8.40" + } + }, + { + "id":"57f4fd0f-24d5-4ace-83cc-ca05b45eef7b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T10:29:55.497Z", + "completed":"2016-11-30T10:29:55.497Z", + "new_balance":"6672.02", + "value":"-48.78" + } + }, + { + "id":"6da6aa5b-566e-47f0-9a9b-3a39691dfaba", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T20:44:37.504Z", + "completed":"2016-11-30T20:44:37.504Z", + "new_balance":"6474.11", + "value":"-197.91" + } + }, + { + "id":"d8abd850-ec1c-4c99-8b8f-1128724b2694", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T04:37:43.659Z", + "completed":"2016-12-01T04:37:43.659Z", + "new_balance":"7496.53", + "value":"1022.42" + } + }, + { + "id":"8613d318-1133-4221-91e6-be4de1ba5622", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T13:06:38.083Z", + "completed":"2016-12-01T13:06:38.083Z", + "new_balance":"7088.96", + "value":"-407.57" + } + }, + { + "id":"f20dd421-5d28-4947-bfd4-672dc79e6d48", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T13:43:00.253Z", + "completed":"2016-12-04T13:43:00.253Z", + "new_balance":"7057.51", + "value":"-31.45" + } + }, + { + "id":"65963fea-02ef-4a91-af4f-88402a6bbe10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T22:27:40.404Z", + "completed":"2016-12-04T22:27:40.404Z", + "new_balance":"7040.51", + "value":"-17.00" + } + }, + { + "id":"2c5e8d9c-683d-4721-bc80-abd66797d414", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T09:29:57.719Z", + "completed":"2016-12-11T09:29:57.719Z", + "new_balance":"7009.70", + "value":"-30.81" + } + }, + { + "id":"63c0d31f-6095-47b3-94ee-a4ea7e215719", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T23:32:58.865Z", + "completed":"2016-12-11T23:32:58.865Z", + "new_balance":"6964.19", + "value":"-45.51" + } + }, + { + "id":"3a1e5f2a-8737-4d5c-b0e9-7ed033650980", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T02:41:53.739Z", + "completed":"2016-12-14T02:41:53.739Z", + "new_balance":"6950.13", + "value":"-14.06" + } + }, + { + "id":"19243dc1-fd06-40da-8dfb-25f11600238f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T03:38:04.711Z", + "completed":"2016-12-14T03:38:04.711Z", + "new_balance":"6942.52", + "value":"-7.61" + } + }, + { + "id":"01f82378-25bd-4fde-930e-7a69d43b04e1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T04:01:47.964Z", + "completed":"2016-12-14T04:01:47.964Z", + "new_balance":"6837.80", + "value":"-104.72" + } + }, + { + "id":"7ca5ed93-a1c7-4bcd-829d-ee636f9b7057", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T04:43:28.191Z", + "completed":"2016-12-14T04:43:28.191Z", + "new_balance":"6832.03", + "value":"-5.77" + } + }, + { + "id":"1b4262b8-094a-4442-85d4-91d2189d9df9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T07:34:48.408Z", + "completed":"2016-12-14T07:34:48.408Z", + "new_balance":"6732.91", + "value":"-99.12" + } + }, + { + "id":"590f28f8-e68d-4a3d-87bd-5dd10acbf395", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T10:54:24.819Z", + "completed":"2016-12-14T10:54:24.819Z", + "new_balance":"6687.37", + "value":"-45.54" + } + }, + { + "id":"6820fcc6-f3b7-47e7-a279-d152ee471eac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T15:06:06.573Z", + "completed":"2016-12-14T15:06:06.573Z", + "new_balance":"6679.76", + "value":"-7.61" + } + }, + { + "id":"0b5b4209-d5a9-4324-bfa3-5294916116af", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T17:05:50.663Z", + "completed":"2016-12-14T17:05:50.663Z", + "new_balance":"6597.97", + "value":"-81.79" + } + }, + { + "id":"db9029fb-253c-431a-b3ea-202159df4840", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T22:48:12.414Z", + "completed":"2016-12-14T22:48:12.414Z", + "new_balance":"6592.20", + "value":"-5.77" + } + }, + { + "id":"f7e35f70-90a0-4985-b221-eb475f421f27", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T08:45:00.573Z", + "completed":"2016-12-15T08:45:00.573Z", + "new_balance":"6583.68", + "value":"-8.52" + } + }, + { + "id":"5dc47e26-5882-42fe-a340-10fe6a13038a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T14:12:37.658Z", + "completed":"2016-12-15T14:12:37.658Z", + "new_balance":"6551.34", + "value":"-32.34" + } + }, + { + "id":"b58efac6-d9c0-4624-9cfc-e264505f4562", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T20:07:34.199Z", + "completed":"2016-12-15T20:07:34.199Z", + "new_balance":"6545.57", + "value":"-5.77" + } + }, + { + "id":"a7ece894-cc30-4ec6-9640-46fce4df8253", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T03:43:00.809Z", + "completed":"2016-12-18T03:43:00.809Z", + "new_balance":"6444.31", + "value":"-101.26" + } + }, + { + "id":"73c900f9-711f-427d-bf61-748fd96b6850", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T05:13:07.872Z", + "completed":"2016-12-18T05:13:07.872Z", + "new_balance":"6420.01", + "value":"-24.30" + } + }, + { + "id":"3cec3911-5b73-41a1-acc5-b100efc6f738", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T08:51:28.687Z", + "completed":"2016-12-18T08:51:28.687Z", + "new_balance":"6414.24", + "value":"-5.77" + } + }, + { + "id":"891e0fb7-336f-4c25-86b9-18ccf22e30d0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T11:36:50.654Z", + "completed":"2016-12-18T11:36:50.654Z", + "new_balance":"6395.08", + "value":"-19.16" + } + }, + { + "id":"0a3e43a6-dd24-49e1-b99b-c335f5f2bdd3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T14:48:23.220Z", + "completed":"2016-12-18T14:48:23.220Z", + "new_balance":"6352.59", + "value":"-42.49" + } + }, + { + "id":"31bfc868-acea-417c-8d1f-9d206309dde2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T14:54:31.890Z", + "completed":"2016-12-18T14:54:31.890Z", + "new_balance":"6286.41", + "value":"-66.18" + } + }, + { + "id":"f99e0cfe-4557-4a57-9478-a123d8daa6d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T18:08:02.201Z", + "completed":"2016-12-18T18:08:02.201Z", + "new_balance":"6280.64", + "value":"-5.77" + } + }, + { + "id":"efe7acc3-d09d-484b-82aa-6f9daf9928ba", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T18:34:42.603Z", + "completed":"2016-12-18T18:34:42.603Z", + "new_balance":"6268.27", + "value":"-12.37" + } + }, + { + "id":"bbb4a0b1-583c-458d-b885-ea32ea2b4214", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T01:31:53.708Z", + "completed":"2016-12-19T01:31:53.708Z", + "new_balance":"6219.38", + "value":"-48.89" + } + }, + { + "id":"8eb7f369-e313-436c-a6bf-c823f9ed0437", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:36:47.262Z", + "completed":"2016-12-19T02:36:47.262Z", + "new_balance":"6177.15", + "value":"-42.23" + } + }, + { + "id":"9d4bb3e6-8cf6-4ab5-b64e-56ac36220abc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:44:00.863Z", + "completed":"2016-12-19T15:44:00.863Z", + "new_balance":"6133.18", + "value":"-43.97" + } + }, + { + "id":"8fe8e8e9-40de-4327-ba34-93d1404ec8f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T12:46:35.846Z", + "completed":"2016-12-21T12:46:35.846Z", + "new_balance":"6127.41", + "value":"-5.77" + } + }, + { + "id":"278bb0c6-c951-4f13-be24-48d1e9a56ca7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T14:21:30.414Z", + "completed":"2016-12-21T14:21:30.414Z", + "new_balance":"6114.40", + "value":"-13.01" + } + }, + { + "id":"b5524b33-2535-42a6-881f-af2ef7f75201", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T18:41:47.891Z", + "completed":"2016-12-21T18:41:47.891Z", + "new_balance":"6010.08", + "value":"-104.32" + } + }, + { + "id":"5a4b3820-89d8-4696-b99d-2f79cc7cc413", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T19:15:02.710Z", + "completed":"2016-12-21T19:15:02.710Z", + "new_balance":"5969.76", + "value":"-40.32" + } + }, + { + "id":"bb9c28f4-bf75-4dab-a430-a61df03618e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T19:40:56.545Z", + "completed":"2016-12-21T19:40:56.545Z", + "new_balance":"5872.26", + "value":"-97.50" + } + }, + { + "id":"2ace4295-3d4b-4610-919c-5689c57dc328", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T07:37:12.510Z", + "completed":"2016-12-24T07:37:12.510Z", + "new_balance":"5858.07", + "value":"-14.19" + } + }, + { + "id":"784caff0-8873-4bd0-8fd0-9965c763d5d2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T17:27:50.529Z", + "completed":"2016-12-24T17:27:50.529Z", + "new_balance":"5845.28", + "value":"-12.79" + } + }, + { + "id":"162548bf-026d-4738-9585-f016ca4d3712", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T21:52:38.002Z", + "completed":"2016-12-24T21:52:38.002Z", + "new_balance":"5819.66", + "value":"-25.62" + } + }, + { + "id":"3eb81abc-b29c-488d-b990-91e8164a70a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T05:00:28.039Z", + "completed":"2016-12-30T05:00:28.039Z", + "new_balance":"5770.88", + "value":"-48.78" + } + }, + { + "id":"4a829cba-0b73-43e1-b2fd-0f4d4f3fd944", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T16:07:48.085Z", + "completed":"2016-12-30T16:07:48.085Z", + "new_balance":"5572.97", + "value":"-197.91" + } + }, + { + "id":"9be0b02d-1e4d-4df6-b1db-00578f0f1dca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T12:07:10.783Z", + "completed":"2017-01-01T12:07:10.783Z", + "new_balance":"6595.39", + "value":"1022.42" + } + }, + { + "id":"0180dc78-4b17-403c-88ba-dee784b9c16b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T23:00:04.708Z", + "completed":"2017-01-01T23:00:04.708Z", + "new_balance":"8275.80", + "value":"1680.41" + } + }, + { + "id":"55779d12-1f13-4195-a6a3-be05a6ad7c31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T09:03:19.588Z", + "completed":"2017-01-02T09:03:19.588Z", + "new_balance":"7868.23", + "value":"-407.57" + } + }, + { + "id":"bf99b30c-6264-4163-9866-5e1308e2180d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T02:13:29.842Z", + "completed":"2017-01-03T02:13:29.842Z", + "new_balance":"7821.43", + "value":"-46.80" + } + }, + { + "id":"1c4f255a-a7d9-4244-ba6a-a0f51a3dec61", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T04:04:44.654Z", + "completed":"2017-01-03T04:04:44.654Z", + "new_balance":"7803.81", + "value":"-17.62" + } + }, + { + "id":"ec8feb86-affd-4a19-8640-bfb9e5a79fbc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T14:00:59.403Z", + "completed":"2017-01-03T14:00:59.403Z", + "new_balance":"7797.43", + "value":"-6.38" + } + }, + { + "id":"9c95629b-87e1-4692-acd4-d6e3797f4ed4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T21:01:59.067Z", + "completed":"2017-01-04T21:01:59.067Z", + "new_balance":"7786.52", + "value":"-10.91" + } + }, + { + "id":"681f8629-7f70-4f83-bd63-6e81a6bdf67f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T00:41:55.580Z", + "completed":"2017-01-05T00:41:55.580Z", + "new_balance":"7779.53", + "value":"-6.99" + } + }, + { + "id":"d6220eb2-17b7-430f-b97f-23db52d9e2f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T08:50:24.363Z", + "completed":"2017-01-07T08:50:24.363Z", + "new_balance":"7754.60", + "value":"-24.93" + } + }, + { + "id":"908c6cdf-335b-4406-b93f-6b1d898abc3a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T11:02:00.619Z", + "completed":"2017-01-07T11:02:00.619Z", + "new_balance":"7735.44", + "value":"-19.16" + } + }, + { + "id":"887fe8be-dd13-4c86-b007-4f5584099348", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T05:20:32.014Z", + "completed":"2017-01-08T05:20:32.014Z", + "new_balance":"7719.43", + "value":"-16.01" + } + }, + { + "id":"17d972f1-fd36-4e2e-b099-207a013f2b01", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T23:15:49.617Z", + "completed":"2017-01-08T23:15:49.617Z", + "new_balance":"7704.44", + "value":"-14.99" + } + }, + { + "id":"d61d5be2-7053-4b57-847f-b9a1903372b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T07:33:11.168Z", + "completed":"2017-01-09T07:33:11.168Z", + "new_balance":"7659.38", + "value":"-45.06" + } + }, + { + "id":"28d3b76f-09e3-4869-b173-3e62ebf25d49", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T21:03:13.350Z", + "completed":"2017-01-09T21:03:13.350Z", + "new_balance":"7630.22", + "value":"-29.16" + } + }, + { + "id":"f38aeb66-856d-4803-8c28-be71c70a8e59", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T11:29:37.488Z", + "completed":"2017-01-10T11:29:37.488Z", + "new_balance":"7525.50", + "value":"-104.72" + } + }, + { + "id":"3dec1dbc-00e2-4b0f-b668-25692d8e56f5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T17:29:58.899Z", + "completed":"2017-01-10T17:29:58.899Z", + "new_balance":"7481.02", + "value":"-44.48" + } + }, + { + "id":"bf7c231e-1095-4dca-a149-9d8f68810574", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T01:21:44.594Z", + "completed":"2017-01-11T01:21:44.594Z", + "new_balance":"7571.90", + "value":"90.88" + } + }, + { + "id":"a067a19f-8bfd-433a-aab0-b963af5fb3a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T02:50:06.605Z", + "completed":"2017-01-11T02:50:06.605Z", + "new_balance":"7566.13", + "value":"-5.77" + } + }, + { + "id":"f76a4385-c51a-4bd5-a223-97022ec51a93", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T03:09:51.290Z", + "completed":"2017-01-11T03:09:51.290Z", + "new_balance":"7487.05", + "value":"-79.08" + } + }, + { + "id":"a646e179-25a5-47a3-b4aa-2a2e55ee5882", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T21:52:03.345Z", + "completed":"2017-01-12T21:52:03.345Z", + "new_balance":"7476.98", + "value":"-10.07" + } + }, + { + "id":"19b9438a-56d7-41bf-a70f-47180b9dff23", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T20:49:16.448Z", + "completed":"2017-01-15T20:49:16.448Z", + "new_balance":"7451.58", + "value":"-25.40" + } + }, + { + "id":"c9d83f66-3b08-4a15-9b05-8bf9fc903fc9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T05:07:12.903Z", + "completed":"2017-01-16T05:07:12.903Z", + "new_balance":"7420.77", + "value":"-30.81" + } + }, + { + "id":"4cc345d6-9977-4290-be02-b4ee790c1ec0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T22:01:31.314Z", + "completed":"2017-01-17T22:01:31.314Z", + "new_balance":"7405.94", + "value":"-14.83" + } + }, + { + "id":"41679eaa-7e12-40c0-aecb-c600b9f51e3c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T23:55:21.127Z", + "completed":"2017-01-20T23:55:21.127Z", + "new_balance":"7398.95", + "value":"-6.99" + } + }, + { + "id":"bb495469-a32d-40b7-a3d6-18c96755a257", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T08:36:26.847Z", + "completed":"2017-01-21T08:36:26.847Z", + "new_balance":"7350.17", + "value":"-48.78" + } + }, + { + "id":"d842955b-0e1d-4e29-bb0c-75a5f2517f4e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T05:08:57.267Z", + "completed":"2017-01-23T05:08:57.267Z", + "new_balance":"7152.26", + "value":"-197.91" + } + }, + { + "id":"5679cc89-45cf-4d3f-8bb0-48132ab0fa16", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T13:18:11.411Z", + "completed":"2017-02-01T13:18:11.411Z", + "new_balance":"8174.68", + "value":"1022.42" + } + }, + { + "id":"3bd55340-d80b-48d2-bd5e-3cf02d130061", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T05:28:00.564Z", + "completed":"2017-02-03T05:28:00.564Z", + "new_balance":"8011.20", + "value":"-163.48" + } + }, + { + "id":"8e8c0615-c1ba-46f9-b2a5-1ec61bfdf92b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T23:58:23.186Z", + "completed":"2017-02-03T23:58:23.186Z", + "new_balance":"7603.63", + "value":"-407.57" + } + }, + { + "id":"bffc2520-25bf-47ac-952f-badbe0993889", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T18:19:55.676Z", + "completed":"2017-02-04T18:19:55.676Z", + "new_balance":"7589.12", + "value":"-14.51" + } + }, + { + "id":"6ef1030d-3bd8-4dfa-a4d6-371bfbb3cc0f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T18:50:32.260Z", + "completed":"2017-02-05T18:50:32.260Z", + "new_balance":"7582.63", + "value":"-6.49" + } + }, + { + "id":"9cf6ae37-d337-4576-8c71-2769daee4332", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T07:21:10.786Z", + "completed":"2017-02-06T07:21:10.786Z", + "new_balance":"7557.83", + "value":"-24.80" + } + }, + { + "id":"26c0798f-6aec-455c-9569-30c3bd29464f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T09:40:27.181Z", + "completed":"2017-02-07T09:40:27.181Z", + "new_balance":"7453.11", + "value":"-104.72" + } + }, + { + "id":"42481dff-373b-48d7-abb3-589edf19013a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T10:57:46.471Z", + "completed":"2017-02-07T10:57:46.471Z", + "new_balance":"7411.76", + "value":"-41.35" + } + }, + { + "id":"3326fefb-db24-4e02-af78-90af7d8eddd7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:35:48.705Z", + "completed":"2017-02-07T20:35:48.705Z", + "new_balance":"7382.60", + "value":"-29.16" + } + }, + { + "id":"bb1c094b-e377-419e-8e7f-22662514654c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T03:08:28.798Z", + "completed":"2017-02-08T03:08:28.798Z", + "new_balance":"7332.04", + "value":"-50.56" + } + }, + { + "id":"5458025d-ad85-43f3-b51e-bfa68f7b90de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T12:36:12.930Z", + "completed":"2017-02-09T12:36:12.930Z", + "new_balance":"7306.24", + "value":"-25.80" + } + }, + { + "id":"863d35b3-745f-407f-a565-a0d072d317ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T17:05:44.457Z", + "completed":"2017-02-10T17:05:44.457Z", + "new_balance":"7299.25", + "value":"-6.99" + } + }, + { + "id":"54ba7ffe-eeba-4436-aded-700fd1701271", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T17:49:49.318Z", + "completed":"2017-02-12T17:49:49.318Z", + "new_balance":"7264.06", + "value":"-35.19" + } + }, + { + "id":"8c20b184-623e-46a1-9792-f1d58dc0b509", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T10:36:17.568Z", + "completed":"2017-02-14T10:36:17.568Z", + "new_balance":"7234.90", + "value":"-29.16" + } + }, + { + "id":"cf13b36e-2fd4-4805-ae37-23361996433c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T13:25:42.995Z", + "completed":"2017-02-16T13:25:42.995Z", + "new_balance":"7229.13", + "value":"-5.77" + } + }, + { + "id":"37fc270c-a78c-484b-a487-e2b0f2d92033", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T19:37:30.457Z", + "completed":"2017-02-16T19:37:30.457Z", + "new_balance":"7183.62", + "value":"-45.51" + } + }, + { + "id":"43185c0c-99f0-4808-8b08-3f11f4af7d82", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T01:51:17.929Z", + "completed":"2017-02-18T01:51:17.929Z", + "new_balance":"7175.22", + "value":"-8.40" + } + }, + { + "id":"532d63f7-52c7-42d2-abd4-0d8663e5476e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T01:10:52.898Z", + "completed":"2017-02-21T01:10:52.898Z", + "new_balance":"7289.36", + "value":"114.14" + } + }, + { + "id":"20e9365d-6c19-4faa-8598-5fc947123f46", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T22:33:24.901Z", + "completed":"2017-02-21T22:33:24.901Z", + "new_balance":"7240.58", + "value":"-48.78" + } + }, + { + "id":"95b24f73-2d05-4026-8563-600826d7215b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T12:15:38.990Z", + "completed":"2017-02-27T12:15:38.990Z", + "new_balance":"7042.67", + "value":"-197.91" + } + }, + { + "id":"315e37fb-268c-426c-854c-6df35fb38ef0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T22:32:05.734Z", + "completed":"2017-03-01T22:32:05.734Z", + "new_balance":"8065.09", + "value":"1022.42" + } + }, + { + "id":"7a6593a4-8ebd-4600-9b7d-764e629a4ee3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T13:15:30.770Z", + "completed":"2017-03-03T13:15:30.770Z", + "new_balance":"7657.52", + "value":"-407.57" + } + }, + { + "id":"6268bd08-cc94-4b61-8713-0b92bc509881", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T04:03:46.459Z", + "completed":"2017-03-04T04:03:46.459Z", + "new_balance":"7612.01", + "value":"-45.51" + } + }, + { + "id":"8233f1db-e226-4ca6-8928-7fbab4640462", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T11:03:59.900Z", + "completed":"2017-03-04T11:03:59.900Z", + "new_balance":"7595.01", + "value":"-17.00" + } + }, + { + "id":"4b6955db-a680-4874-834b-31e60b6c5154", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:39:45.011Z", + "completed":"2017-03-04T11:39:45.011Z", + "new_balance":"7564.20", + "value":"-30.81" + } + }, + { + "id":"b535ce68-5065-42b6-b23f-8097d8e6c15f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T14:04:45.017Z", + "completed":"2017-03-04T14:04:45.017Z", + "new_balance":"7532.75", + "value":"-31.45" + } + }, + { + "id":"41fbfe7a-067c-47cb-ad67-ca559a4b3397", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T01:16:44.163Z", + "completed":"2017-03-05T01:16:44.163Z", + "new_balance":"7526.98", + "value":"-5.77" + } + }, + { + "id":"f349f049-7ba3-489b-9862-3f6d1aef3fc3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T01:22:42.371Z", + "completed":"2017-03-05T01:22:42.371Z", + "new_balance":"7512.92", + "value":"-14.06" + } + }, + { + "id":"76d811cc-2c16-4982-be05-515b59c40d90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T02:50:33.543Z", + "completed":"2017-03-05T02:50:33.543Z", + "new_balance":"7467.38", + "value":"-45.54" + } + }, + { + "id":"e5858b56-0161-4da1-b21b-3387bf6affb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T15:39:45.289Z", + "completed":"2017-03-05T15:39:45.289Z", + "new_balance":"7362.66", + "value":"-104.72" + } + }, + { + "id":"69c80096-7ec1-42d9-aec8-17adb8bc637e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T03:46:08.945Z", + "completed":"2017-03-06T03:46:08.945Z", + "new_balance":"7280.87", + "value":"-81.79" + } + }, + { + "id":"c36744ad-01ef-4aea-afe9-f47ba2ad2df6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T20:11:26.494Z", + "completed":"2017-03-06T20:11:26.494Z", + "new_balance":"7181.75", + "value":"-99.12" + } + }, + { + "id":"003aa67b-bcfa-4af4-8f91-78d755d4762d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T04:55:19.341Z", + "completed":"2017-03-07T04:55:19.341Z", + "new_balance":"7174.14", + "value":"-7.61" + } + }, + { + "id":"367c7996-9a33-4fde-b9d2-4a6e55871c17", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T07:06:51.535Z", + "completed":"2017-03-07T07:06:51.535Z", + "new_balance":"7168.37", + "value":"-5.77" + } + }, + { + "id":"eee95d43-8477-4e97-9110-4bfa1ee03b9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T11:51:21.429Z", + "completed":"2017-03-08T11:51:21.429Z", + "new_balance":"7159.85", + "value":"-8.52" + } + }, + { + "id":"76c5d20f-c7e9-482a-beb7-391ff47d22ad", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T16:43:10.689Z", + "completed":"2017-03-08T16:43:10.689Z", + "new_balance":"7152.24", + "value":"-7.61" + } + }, + { + "id":"12429c6d-3991-4415-8232-ce73a726a1fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T08:34:11.754Z", + "completed":"2017-03-10T08:34:11.754Z", + "new_balance":"7119.90", + "value":"-32.34" + } + }, + { + "id":"aefa4390-c813-4dcd-ab38-cf84d26b1534", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:06:46.362Z", + "completed":"2017-03-11T19:06:46.362Z", + "new_balance":"7107.53", + "value":"-12.37" + } + }, + { + "id":"e710b32d-6fc1-4eaf-a6d4-cbc3cdaa2d2a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T21:51:11.248Z", + "completed":"2017-03-11T21:51:11.248Z", + "new_balance":"7083.23", + "value":"-24.30" + } + }, + { + "id":"f41b3fda-fc44-403d-9c12-2f24927dacb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T23:49:33.935Z", + "completed":"2017-03-11T23:49:33.935Z", + "new_balance":"7077.46", + "value":"-5.77" + } + }, + { + "id":"c51cbfea-2386-43ee-9828-af522bc6001e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T02:35:28.317Z", + "completed":"2017-03-12T02:35:28.317Z", + "new_balance":"7011.28", + "value":"-66.18" + } + }, + { + "id":"80a54643-94e5-4253-9ef9-62571126d145", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T15:48:33.937Z", + "completed":"2017-03-12T15:48:33.937Z", + "new_balance":"6992.12", + "value":"-19.16" + } + }, + { + "id":"a0b7dd90-6de5-4fe4-9af6-247d33a7f3f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T19:34:59.860Z", + "completed":"2017-03-12T19:34:59.860Z", + "new_balance":"6986.35", + "value":"-5.77" + } + }, + { + "id":"07ec7c83-26f3-4bb3-ae01-8d66c50ef34f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:47:24.015Z", + "completed":"2017-03-12T20:47:24.015Z", + "new_balance":"6885.09", + "value":"-101.26" + } + }, + { + "id":"f147b7d5-2e6e-4451-8539-022007ad2efc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T04:35:46.398Z", + "completed":"2017-03-13T04:35:46.398Z", + "new_balance":"6842.60", + "value":"-42.49" + } + }, + { + "id":"706b81b8-7648-4866-91f5-245392be9c94", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T14:11:16.454Z", + "completed":"2017-03-13T14:11:16.454Z", + "new_balance":"6836.83", + "value":"-5.77" + } + }, + { + "id":"9ee6d8ec-3c3a-47b9-9de5-f08f060b0afa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T13:14:26.747Z", + "completed":"2017-03-15T13:14:26.747Z", + "new_balance":"6787.94", + "value":"-48.89" + } + }, + { + "id":"5f2bd463-0fa7-4b33-b763-139eeb68359c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:21:01.857Z", + "completed":"2017-03-15T20:21:01.857Z", + "new_balance":"6745.71", + "value":"-42.23" + } + }, + { + "id":"24d2aeb6-e146-4188-b0c5-676560ebf524", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T10:43:16.152Z", + "completed":"2017-03-17T10:43:16.152Z", + "new_balance":"6701.74", + "value":"-43.97" + } + }, + { + "id":"d469f97a-0b16-46f2-86d9-7eaa97129599", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T12:18:22.873Z", + "completed":"2017-03-18T12:18:22.873Z", + "new_balance":"6604.24", + "value":"-97.50" + } + }, + { + "id":"3f613b92-9588-4bd1-86c2-9f7996a52583", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T23:19:50.593Z", + "completed":"2017-03-20T23:19:50.593Z", + "new_balance":"6499.92", + "value":"-104.32" + } + }, + { + "id":"1fe75d66-a984-47eb-8a6a-478746e352f9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T12:24:46.044Z", + "completed":"2017-03-22T12:24:46.044Z", + "new_balance":"6459.60", + "value":"-40.32" + } + }, + { + "id":"8f41d664-bf77-4df3-ae4a-7791bde3de41", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T12:43:06.683Z", + "completed":"2017-03-25T12:43:06.683Z", + "new_balance":"6446.59", + "value":"-13.01" + } + }, + { + "id":"b802769b-03f5-4a13-a1ba-a607b7086ef4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T19:18:54.909Z", + "completed":"2017-03-25T19:18:54.909Z", + "new_balance":"6440.82", + "value":"-5.77" + } + }, + { + "id":"b47f007f-a705-47de-9832-216269f47629", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T14:23:40.365Z", + "completed":"2017-03-26T14:23:40.365Z", + "new_balance":"6428.03", + "value":"-12.79" + } + }, + { + "id":"5b18fd90-4d81-4632-a184-ef2693448789", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T00:21:44.324Z", + "completed":"2017-03-27T00:21:44.324Z", + "new_balance":"6413.84", + "value":"-14.19" + } + }, + { + "id":"d2a24ffe-97ec-4f57-b344-8ffc263d9a99", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-27T00:28:25.953Z", + "completed":"2017-03-27T00:28:25.953Z", + "new_balance":"6388.22", + "value":"-25.62" + } + }, + { + "id":"c623f067-f795-44e6-97f7-4db36ccd7595", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T16:12:53.363Z", + "completed":"2017-03-28T16:12:53.363Z", + "new_balance":"6339.44", + "value":"-48.78" + } + }, + { + "id":"25d24218-5563-4e6c-a425-5bf3f154fc9d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T05:21:17.878Z", + "completed":"2017-03-31T05:21:17.878Z", + "new_balance":"6141.53", + "value":"-197.91" + } + }, + { + "id":"1d63b223-001a-4524-bf94-39442e0fa933", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T09:28:48.952Z", + "completed":"2017-04-01T09:28:48.952Z", + "new_balance":"7821.94", + "value":"1680.41" + } + }, + { + "id":"5648658c-d1d6-4921-891c-0328e087a40f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T13:59:01.433Z", + "completed":"2017-04-01T13:59:01.433Z", + "new_balance":"8844.36", + "value":"1022.42" + } + }, + { + "id":"e4a32bab-5e5a-4b50-98c7-6bca95950c80", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T16:35:28.691Z", + "completed":"2017-04-01T16:35:28.691Z", + "new_balance":"8436.79", + "value":"-407.57" + } + }, + { + "id":"3fde720d-cca1-4660-9e8a-c3f4036a2652", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T06:23:27.325Z", + "completed":"2017-04-03T06:23:27.325Z", + "new_balance":"8430.41", + "value":"-6.38" + } + }, + { + "id":"0eda18d1-ecd8-495b-8b87-0f20ad21bd97", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T13:43:19.207Z", + "completed":"2017-04-03T13:43:19.207Z", + "new_balance":"8383.61", + "value":"-46.80" + } + }, + { + "id":"d036ec2d-69a8-4c13-85aa-37c55603c474", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T20:21:19.159Z", + "completed":"2017-04-03T20:21:19.159Z", + "new_balance":"8365.99", + "value":"-17.62" + } + }, + { + "id":"46f6791a-28e9-46ab-87e6-8532940069d8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T02:26:20.491Z", + "completed":"2017-04-05T02:26:20.491Z", + "new_balance":"8355.08", + "value":"-10.91" + } + }, + { + "id":"7c2b1b78-30e5-47af-b023-83a21f5190bc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T11:04:24.591Z", + "completed":"2017-04-05T11:04:24.591Z", + "new_balance":"8348.09", + "value":"-6.99" + } + }, + { + "id":"52500383-302e-4af1-b639-c8841bd3fcd0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T12:21:02.553Z", + "completed":"2017-04-06T12:21:02.553Z", + "new_balance":"8323.16", + "value":"-24.93" + } + }, + { + "id":"24270b59-d59d-46b1-be0f-074b8f464474", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T13:42:36.746Z", + "completed":"2017-04-09T13:42:36.746Z", + "new_balance":"8304.00", + "value":"-19.16" + } + }, + { + "id":"8ea264f8-1bc9-4b76-aff7-8040459c1b21", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T01:57:09.846Z", + "completed":"2017-04-10T01:57:09.846Z", + "new_balance":"8289.01", + "value":"-14.99" + } + }, + { + "id":"21725991-acff-4f11-ac61-14985358510b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T17:14:21.690Z", + "completed":"2017-04-11T17:14:21.690Z", + "new_balance":"8273.00", + "value":"-16.01" + } + }, + { + "id":"9c93085e-68f1-497e-bab5-a5ba2ccfa828", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T21:42:53.092Z", + "completed":"2017-04-11T21:42:53.092Z", + "new_balance":"8243.84", + "value":"-29.16" + } + }, + { + "id":"3cbcef49-1176-42dd-b901-15318b77dbbd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T13:39:06.522Z", + "completed":"2017-04-13T13:39:06.522Z", + "new_balance":"8198.78", + "value":"-45.06" + } + }, + { + "id":"5a641b33-4cce-4f60-9e1a-51d9a09484f1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T14:02:14.363Z", + "completed":"2017-04-13T14:02:14.363Z", + "new_balance":"8094.06", + "value":"-104.72" + } + }, + { + "id":"025e5c6a-269c-4ad0-920b-5c298b02192d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T19:45:06.260Z", + "completed":"2017-04-15T19:45:06.260Z", + "new_balance":"8049.58", + "value":"-44.48" + } + }, + { + "id":"8e6b0c5c-50a8-46e1-a662-a84860aad815", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T01:26:29.871Z", + "completed":"2017-04-16T01:26:29.871Z", + "new_balance":"8043.81", + "value":"-5.77" + } + }, + { + "id":"288aefec-320c-4a62-9731-4ea7977c1271", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T13:40:00.093Z", + "completed":"2017-04-16T13:40:00.093Z", + "new_balance":"8033.74", + "value":"-10.07" + } + }, + { + "id":"b554c99f-dd7a-478f-94f0-748c2de6e796", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T23:46:50.238Z", + "completed":"2017-04-18T23:46:50.238Z", + "new_balance":"7954.66", + "value":"-79.08" + } + }, + { + "id":"3235d7e7-c844-4c3e-981f-ce7ffb9603b3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T11:36:18.366Z", + "completed":"2017-04-23T11:36:18.366Z", + "new_balance":"7929.26", + "value":"-25.40" + } + }, + { + "id":"9d006489-c884-4cc0-b4d3-7e9ca93651f6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T18:36:07.110Z", + "completed":"2017-04-24T18:36:07.110Z", + "new_balance":"7914.43", + "value":"-14.83" + } + }, + { + "id":"6b4ef0be-8a95-46e7-bbab-ad287c124a89", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T20:46:27.970Z", + "completed":"2017-04-24T20:46:27.970Z", + "new_balance":"7883.62", + "value":"-30.81" + } + }, + { + "id":"df5a91fc-3d06-4ef2-be33-2d813ec1b71e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T22:21:45.299Z", + "completed":"2017-04-26T22:21:45.299Z", + "new_balance":"7876.63", + "value":"-6.99" + } + }, + { + "id":"a3ce3b47-7f1e-47cd-8a6f-01d351d16f64", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T02:10:09.370Z", + "completed":"2017-04-28T02:10:09.370Z", + "new_balance":"7827.85", + "value":"-48.78" + } + }, + { + "id":"9d8a515e-c533-470f-858f-f8a18d0d743c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T12:34:44.685Z", + "completed":"2017-04-28T12:34:44.685Z", + "new_balance":"7629.94", + "value":"-197.91" + } + }, + { + "id":"170e4ec1-4768-41ea-9f0b-bea83436d5d5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T02:11:57.043Z", + "completed":"2017-05-02T02:11:57.043Z", + "new_balance":"7615.43", + "value":"-14.51" + } + }, + { + "id":"37d6c78e-ed13-4aa5-9686-4980a892d969", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T07:40:58.756Z", + "completed":"2017-05-02T07:40:58.756Z", + "new_balance":"7608.94", + "value":"-6.49" + } + }, + { + "id":"f4d2aa18-3751-4623-889f-733ee107e0fb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T10:29:58.223Z", + "completed":"2017-05-02T10:29:58.223Z", + "new_balance":"7445.46", + "value":"-163.48" + } + }, + { + "id":"24487c18-0e8c-452f-87ab-55cd2e1b8a39", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T20:50:03.681Z", + "completed":"2017-05-02T20:50:03.681Z", + "new_balance":"7037.89", + "value":"-407.57" + } + }, + { + "id":"ecec0e53-a36c-4a05-ac2f-17dd9217e3d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T02:38:06.245Z", + "completed":"2017-05-06T02:38:06.245Z", + "new_balance":"7013.09", + "value":"-24.80" + } + }, + { + "id":"86324113-1219-49aa-af76-6c2610ccbc17", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T12:45:04.565Z", + "completed":"2017-05-06T12:45:04.565Z", + "new_balance":"6983.93", + "value":"-29.16" + } + }, + { + "id":"bc21d991-0993-4ad2-b827-54eeffded3f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T10:11:02.551Z", + "completed":"2017-05-07T10:11:02.551Z", + "new_balance":"6942.58", + "value":"-41.35" + } + }, + { + "id":"44c67458-8acc-4ff4-92ba-7b71af01e78b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T10:27:20.925Z", + "completed":"2017-05-07T10:27:20.925Z", + "new_balance":"6837.86", + "value":"-104.72" + } + }, + { + "id":"806a9126-a52f-43e0-8501-73c7b37e3941", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T05:46:28.499Z", + "completed":"2017-05-09T05:46:28.499Z", + "new_balance":"7860.28", + "value":"1022.42" + } + }, + { + "id":"b9f5dff3-62a3-490d-baec-357b543e2946", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T10:01:50.782Z", + "completed":"2017-05-14T10:01:50.782Z", + "new_balance":"7809.72", + "value":"-50.56" + } + }, + { + "id":"26d0a929-3ccb-499e-87f0-e4f66a99d9b6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T22:08:42.374Z", + "completed":"2017-05-14T22:08:42.374Z", + "new_balance":"7783.92", + "value":"-25.80" + } + }, + { + "id":"d25668f9-e775-4ecf-8a86-02107bd9341d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T13:21:48.789Z", + "completed":"2017-05-16T13:21:48.789Z", + "new_balance":"7776.93", + "value":"-6.99" + } + }, + { + "id":"d151527b-4450-4f51-9b11-d3f28f3ce3b7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T10:53:32.842Z", + "completed":"2017-05-21T10:53:32.842Z", + "new_balance":"7741.74", + "value":"-35.19" + } + }, + { + "id":"39d1a333-6d99-41eb-b365-2b5a4e0b3c7f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T02:21:14.509Z", + "completed":"2017-05-23T02:21:14.509Z", + "new_balance":"7735.97", + "value":"-5.77" + } + }, + { + "id":"fa58c356-12d2-4eea-8738-2b5db135800f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T03:54:45.483Z", + "completed":"2017-05-23T03:54:45.483Z", + "new_balance":"7706.81", + "value":"-29.16" + } + }, + { + "id":"4836a675-1a59-4ffa-873f-128f29388f8c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T02:43:24.707Z", + "completed":"2017-05-24T02:43:24.707Z", + "new_balance":"7661.30", + "value":"-45.51" + } + }, + { + "id":"c67cc3b5-4a67-407b-ba9a-7dd2c79ab8e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:38:56.219Z", + "completed":"2017-05-27T08:38:56.219Z", + "new_balance":"7652.90", + "value":"-8.40" + } + }, + { + "id":"a7f9590a-20fa-4391-8b1e-0d35778a7b6e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T02:16:40.444Z", + "completed":"2017-05-30T02:16:40.444Z", + "new_balance":"7604.12", + "value":"-48.78" + } + }, + { + "id":"8a6ec2f5-f64b-46b9-9026-49ae0ae1e7b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T12:08:13.521Z", + "completed":"2017-05-30T12:08:13.521Z", + "new_balance":"7406.21", + "value":"-197.91" + } + }, + { + "id":"9c588a35-6ff3-4641-8c1d-e86fb85d4d31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T06:49:01.221Z", + "completed":"2017-06-01T06:49:01.221Z", + "new_balance":"8428.63", + "value":"1022.42" + } + }, + { + "id":"5f7e7f5b-ee33-4fac-8e4e-58cd406c00db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T09:36:04.200Z", + "completed":"2017-06-01T09:36:04.200Z", + "new_balance":"8021.06", + "value":"-407.57" + } + }, + { + "id":"1cb5681f-00a0-403e-9a4b-4b4bb734f2f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:21:25.790Z", + "completed":"2017-06-04T06:21:25.790Z", + "new_balance":"7989.61", + "value":"-31.45" + } + }, + { + "id":"c2097a41-507e-4951-abd2-cfd1a6492534", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T19:10:48.202Z", + "completed":"2017-06-04T19:10:48.202Z", + "new_balance":"7972.61", + "value":"-17.00" + } + }, + { + "id":"04b50ea8-aca6-4691-8c83-fd99e49b4bc5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T04:38:50.659Z", + "completed":"2017-06-11T04:38:50.659Z", + "new_balance":"7927.10", + "value":"-45.51" + } + }, + { + "id":"da2c129d-b967-4f12-8390-f71555efd1b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:34:37.009Z", + "completed":"2017-06-11T22:34:37.009Z", + "new_balance":"7896.29", + "value":"-30.81" + } + }, + { + "id":"e1474c44-2801-4117-b940-eec5fd46c757", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T02:32:37.469Z", + "completed":"2017-06-12T02:32:37.469Z", + "new_balance":"7882.23", + "value":"-14.06" + } + }, + { + "id":"dfdeb7c3-0c1d-40c2-89b4-d417cdacb4a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T06:35:58.756Z", + "completed":"2017-06-12T06:35:58.756Z", + "new_balance":"7876.46", + "value":"-5.77" + } + }, + { + "id":"8d8df625-bb17-4137-a649-dfb595c1c35c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T18:09:28.887Z", + "completed":"2017-06-12T18:09:28.887Z", + "new_balance":"7771.74", + "value":"-104.72" + } + }, + { + "id":"55962e3d-54bc-49bf-9443-e90f0a12f19a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T10:46:35.841Z", + "completed":"2017-06-13T10:46:35.841Z", + "new_balance":"7689.95", + "value":"-81.79" + } + }, + { + "id":"f93bfa9a-e8cd-4de3-8225-73aa2ca5ac74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:51:48.079Z", + "completed":"2017-06-13T17:51:48.079Z", + "new_balance":"7644.41", + "value":"-45.54" + } + }, + { + "id":"a95e188c-8e08-478b-a87e-48053e0a1377", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T23:36:01.592Z", + "completed":"2017-06-13T23:36:01.592Z", + "new_balance":"7545.29", + "value":"-99.12" + } + }, + { + "id":"7e8c2abe-7bce-4ad1-b350-084e07a6ea38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:19:52.587Z", + "completed":"2017-06-14T06:19:52.587Z", + "new_balance":"7539.52", + "value":"-5.77" + } + }, + { + "id":"b675660e-8772-468b-b981-ce8e450546b3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T08:03:13.757Z", + "completed":"2017-06-14T08:03:13.757Z", + "new_balance":"7531.91", + "value":"-7.61" + } + }, + { + "id":"41fc02ba-5319-403c-956e-cda122c0cd8e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T20:58:22.322Z", + "completed":"2017-06-14T20:58:22.322Z", + "new_balance":"7524.30", + "value":"-7.61" + } + }, + { + "id":"dd3b7ba1-8397-4cbf-9e10-81566f6f8e31", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T00:40:50.221Z", + "completed":"2017-06-15T00:40:50.221Z", + "new_balance":"7491.96", + "value":"-32.34" + } + }, + { + "id":"ef49e2f3-a840-42ea-ac20-834d481765a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T07:42:30.512Z", + "completed":"2017-06-15T07:42:30.512Z", + "new_balance":"7483.44", + "value":"-8.52" + } + }, + { + "id":"48aaa731-4859-4505-86c4-b211101daf24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T12:56:14.990Z", + "completed":"2017-06-15T12:56:14.990Z", + "new_balance":"7477.67", + "value":"-5.77" + } + }, + { + "id":"0c73ce42-ffb4-4252-b229-5dd8de559d8f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T16:39:13.454Z", + "completed":"2017-06-16T16:39:13.454Z", + "new_balance":"7453.37", + "value":"-24.30" + } + }, + { + "id":"a771256e-8590-4bc7-9188-c6e0f23cef49", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T06:24:07.656Z", + "completed":"2017-06-17T06:24:07.656Z", + "new_balance":"7441.00", + "value":"-12.37" + } + }, + { + "id":"3bf851a4-a194-4083-be04-8b7cb3b3e43d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T07:13:21.120Z", + "completed":"2017-06-18T07:13:21.120Z", + "new_balance":"7398.51", + "value":"-42.49" + } + }, + { + "id":"ca506f6d-193a-4f89-a18d-b527d899ee75", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:15:51.833Z", + "completed":"2017-06-18T08:15:51.833Z", + "new_balance":"7392.74", + "value":"-5.77" + } + }, + { + "id":"3e9aad20-42ab-4109-a045-0bc1babf6aa5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T11:34:25.251Z", + "completed":"2017-06-18T11:34:25.251Z", + "new_balance":"7386.97", + "value":"-5.77" + } + }, + { + "id":"3d7dc943-6c31-44dd-bf40-5a522ddde2f8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T11:46:34.769Z", + "completed":"2017-06-18T11:46:34.769Z", + "new_balance":"7367.81", + "value":"-19.16" + } + }, + { + "id":"b9e6938b-25e1-4c87-81dc-c6421b549296", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T16:59:31.320Z", + "completed":"2017-06-18T16:59:31.320Z", + "new_balance":"7301.63", + "value":"-66.18" + } + }, + { + "id":"580ef06d-5d93-46de-ac2b-a4770f12b49f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T23:30:33.073Z", + "completed":"2017-06-18T23:30:33.073Z", + "new_balance":"7200.37", + "value":"-101.26" + } + }, + { + "id":"fbabba86-3992-464e-85a7-6286b8dc37fd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:45:41.479Z", + "completed":"2017-06-19T06:45:41.479Z", + "new_balance":"7156.40", + "value":"-43.97" + } + }, + { + "id":"a866825b-c9c7-4c7a-ad77-27fe0716a904", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T08:45:22.641Z", + "completed":"2017-06-19T08:45:22.641Z", + "new_balance":"7107.51", + "value":"-48.89" + } + }, + { + "id":"e80ad3b0-382e-491a-9d55-15cfd66ba0f7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T19:49:20.331Z", + "completed":"2017-06-19T19:49:20.331Z", + "new_balance":"7065.28", + "value":"-42.23" + } + }, + { + "id":"ed11a431-1a83-4d0a-8ad3-883d17da57d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T09:18:32.050Z", + "completed":"2017-06-21T09:18:32.050Z", + "new_balance":"6960.96", + "value":"-104.32" + } + }, + { + "id":"f0dbdaa4-6fe8-48a1-9b24-7837793979da", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T18:02:57.163Z", + "completed":"2017-06-21T18:02:57.163Z", + "new_balance":"6863.46", + "value":"-97.50" + } + }, + { + "id":"d983d174-7f00-4468-b232-4e82b1255850", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T07:31:36.057Z", + "completed":"2017-06-22T07:31:36.057Z", + "new_balance":"6823.14", + "value":"-40.32" + } + }, + { + "id":"a8b8542c-f234-45b6-9876-eca5639ef24f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T17:52:39.626Z", + "completed":"2017-06-22T17:52:39.626Z", + "new_balance":"6817.37", + "value":"-5.77" + } + }, + { + "id":"51e7b18c-7105-4f6a-aa4f-f7c6b3a7d8fc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T23:49:09.887Z", + "completed":"2017-06-22T23:49:09.887Z", + "new_balance":"6804.36", + "value":"-13.01" + } + }, + { + "id":"6aa9e8fe-2f80-4975-87f1-4f8e5601e806", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T17:37:29.646Z", + "completed":"2017-06-23T17:37:29.646Z", + "new_balance":"6791.57", + "value":"-12.79" + } + }, + { + "id":"5dae5db1-ace5-4f60-beee-4fd1b67676a8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T18:22:52.813Z", + "completed":"2017-06-24T18:22:52.813Z", + "new_balance":"6765.95", + "value":"-25.62" + } + }, + { + "id":"54c3ef20-f6af-404a-a756-c5efcb748fed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T09:08:02.564Z", + "completed":"2017-06-26T09:08:02.564Z", + "new_balance":"6751.76", + "value":"-14.19" + } + }, + { + "id":"b6a46804-ecb1-46b7-be56-fd17c5898500", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T00:55:10.250Z", + "completed":"2017-06-30T00:55:10.250Z", + "new_balance":"6553.85", + "value":"-197.91" + } + }, + { + "id":"a560f42b-7861-4357-af05-34bdbf30b4e0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T23:35:15.264Z", + "completed":"2017-06-30T23:35:15.264Z", + "new_balance":"6505.07", + "value":"-48.78" + } + }, + { + "id":"9b6ac343-be6e-4d07-b559-13dc789ef8fa", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T01:36:33.005Z", + "completed":"2017-07-01T01:36:33.005Z", + "new_balance":"7527.49", + "value":"1022.42" + } + }, + { + "id":"bb842d28-eb94-43e6-980d-3e7b1de0ca34", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T12:27:44.915Z", + "completed":"2017-07-01T12:27:44.915Z", + "new_balance":"9207.90", + "value":"1680.41" + } + }, + { + "id":"8750e513-a865-45b0-a16b-9fb505174334", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T08:15:34.580Z", + "completed":"2017-07-03T08:15:34.580Z", + "new_balance":"8800.33", + "value":"-407.57" + } + }, + { + "id":"983b682c-c0ce-40bf-9615-f7e2c2ba910b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:24:24.983Z", + "completed":"2017-07-04T13:24:24.983Z", + "new_balance":"8793.95", + "value":"-6.38" + } + }, + { + "id":"5b310e34-a0f6-4eef-8f18-7c38d30a06e8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T16:37:57.612Z", + "completed":"2017-07-04T16:37:57.612Z", + "new_balance":"8776.33", + "value":"-17.62" + } + }, + { + "id":"f750a381-67d3-44b7-a2e6-4aaa5cd07d0d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T20:36:32.788Z", + "completed":"2017-07-04T20:36:32.788Z", + "new_balance":"8729.53", + "value":"-46.80" + } + }, + { + "id":"2450b39b-e94b-4efd-8387-8c28cf58555d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T17:19:41.564Z", + "completed":"2017-07-05T17:19:41.564Z", + "new_balance":"8718.62", + "value":"-10.91" + } + }, + { + "id":"05ec7f97-7e28-4bc0-9912-6e89a8fb5cb6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T05:55:49.881Z", + "completed":"2017-07-07T05:55:49.881Z", + "new_balance":"8711.63", + "value":"-6.99" + } + }, + { + "id":"372be686-5deb-4533-8563-b2eb6217291a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T01:38:58.636Z", + "completed":"2017-07-11T01:38:58.636Z", + "new_balance":"8682.47", + "value":"-29.16" + } + }, + { + "id":"b4550e34-ecbd-4a7a-85b8-7cd9acf7e7db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T02:28:22.708Z", + "completed":"2017-07-11T02:28:22.708Z", + "new_balance":"8667.48", + "value":"-14.99" + } + }, + { + "id":"027fcf9c-52bc-4e86-891e-590cac81dc36", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T14:00:16.718Z", + "completed":"2017-07-11T14:00:16.718Z", + "new_balance":"8648.32", + "value":"-19.16" + } + }, + { + "id":"dfa974be-3ee9-4531-9bd5-8c7c2d615e66", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T20:35:24.173Z", + "completed":"2017-07-11T20:35:24.173Z", + "new_balance":"8623.39", + "value":"-24.93" + } + }, + { + "id":"29af4146-61c3-4254-b6b8-c5a16b7ae2c8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T21:33:20.338Z", + "completed":"2017-07-11T21:33:20.338Z", + "new_balance":"8607.38", + "value":"-16.01" + } + }, + { + "id":"6b2bc532-68f2-4415-a77e-67a5ce8ef229", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T12:19:41.235Z", + "completed":"2017-07-13T12:19:41.235Z", + "new_balance":"8562.32", + "value":"-45.06" + } + }, + { + "id":"0d6386e6-7d87-4fb4-805b-c15733ecdbe4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T17:04:30.376Z", + "completed":"2017-07-13T17:04:30.376Z", + "new_balance":"8457.60", + "value":"-104.72" + } + }, + { + "id":"d259864c-c648-423e-88eb-d41df08ac0f6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:38:03.740Z", + "completed":"2017-07-16T06:38:03.740Z", + "new_balance":"8548.48", + "value":"90.88" + } + }, + { + "id":"de07feea-f7f4-4d24-8cdc-b171c938e3bd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T20:24:14.684Z", + "completed":"2017-07-16T20:24:14.684Z", + "new_balance":"8504.00", + "value":"-44.48" + } + }, + { + "id":"2e42c474-58b6-4689-930d-49ad3f8c7173", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T20:26:07.309Z", + "completed":"2017-07-17T20:26:07.309Z", + "new_balance":"8493.93", + "value":"-10.07" + } + }, + { + "id":"6b60bd08-077e-4219-a9f0-065a24a78491", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T22:51:38.789Z", + "completed":"2017-07-17T22:51:38.789Z", + "new_balance":"8488.16", + "value":"-5.77" + } + }, + { + "id":"97729758-6ddc-4a3c-b0a2-382841124902", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T07:27:03.965Z", + "completed":"2017-07-19T07:27:03.965Z", + "new_balance":"8409.08", + "value":"-79.08" + } + }, + { + "id":"125a99ea-c6d2-43ff-88d6-432aee4ac0c7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T12:52:38.215Z", + "completed":"2017-07-21T12:52:38.215Z", + "new_balance":"8383.68", + "value":"-25.40" + } + }, + { + "id":"fa34ea9e-d50e-4b01-9e23-7c8a74082d92", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T11:45:16.596Z", + "completed":"2017-07-23T11:45:16.596Z", + "new_balance":"8352.87", + "value":"-30.81" + } + }, + { + "id":"30ac81e1-1e4e-4682-9406-ed6eb9b51007", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T02:34:13.993Z", + "completed":"2017-07-25T02:34:13.993Z", + "new_balance":"8338.04", + "value":"-14.83" + } + }, + { + "id":"0f4a8ddf-a5f9-4fba-a871-8883ca96e8e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T00:31:04.246Z", + "completed":"2017-07-27T00:31:04.246Z", + "new_balance":"8331.05", + "value":"-6.99" + } + }, + { + "id":"b696959e-6fc2-49dd-9cfc-67eab0478c7a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T09:49:45.103Z", + "completed":"2017-07-28T09:49:45.103Z", + "new_balance":"8282.27", + "value":"-48.78" + } + }, + { + "id":"409be5d4-2ca8-48e9-b5a2-f9ad64dc9fb0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T20:24:36.066Z", + "completed":"2017-07-28T20:24:36.066Z", + "new_balance":"8084.36", + "value":"-197.91" + } + }, + { + "id":"a93ce764-d12e-4f21-acb7-5837e493b594", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T09:10:48.234Z", + "completed":"2017-08-01T09:10:48.234Z", + "new_balance":"9106.78", + "value":"1022.42" + } + }, + { + "id":"888b356a-ba2f-4e52-a376-337722e3e842", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T05:37:15.320Z", + "completed":"2017-08-03T05:37:15.320Z", + "new_balance":"8699.21", + "value":"-407.57" + } + }, + { + "id":"2082a161-215b-4eff-8c46-3c0cdad01e38", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T06:58:50.846Z", + "completed":"2017-08-03T06:58:50.846Z", + "new_balance":"8535.73", + "value":"-163.48" + } + }, + { + "id":"71bd4ac1-399c-4451-ba98-d229fccfdf24", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T18:44:23.989Z", + "completed":"2017-08-04T18:44:23.989Z", + "new_balance":"8521.22", + "value":"-14.51" + } + }, + { + "id":"6d2d2ad0-e3d4-42d3-a503-5b97f76284a3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T04:59:51.148Z", + "completed":"2017-08-07T04:59:51.148Z", + "new_balance":"8514.73", + "value":"-6.49" + } + }, + { + "id":"d70dd0e5-d39f-4755-8b3c-7c513f417519", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T10:41:27.681Z", + "completed":"2017-08-07T10:41:27.681Z", + "new_balance":"8485.57", + "value":"-29.16" + } + }, + { + "id":"8e644f07-ed69-458f-a86f-5fac023c508b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T14:51:46.147Z", + "completed":"2017-08-07T14:51:46.147Z", + "new_balance":"8460.77", + "value":"-24.80" + } + }, + { + "id":"5300840a-f635-42fa-8d11-8d95d2000e6f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T06:37:02.708Z", + "completed":"2017-08-08T06:37:02.708Z", + "new_balance":"8356.05", + "value":"-104.72" + } + }, + { + "id":"c63702f8-2816-48a4-80bb-f7197e91b2d2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T11:38:46.349Z", + "completed":"2017-08-08T11:38:46.349Z", + "new_balance":"8314.70", + "value":"-41.35" + } + }, + { + "id":"2f4d8ffc-c3f5-4ebb-9162-f820d9486344", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T15:21:09.703Z", + "completed":"2017-08-08T15:21:09.703Z", + "new_balance":"8264.14", + "value":"-50.56" + } + }, + { + "id":"12aad4c7-dd3b-4db3-bb9f-33bac26f2a4c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T00:24:41.908Z", + "completed":"2017-08-09T00:24:41.908Z", + "new_balance":"8238.34", + "value":"-25.80" + } + }, + { + "id":"23b322a0-1314-4c38-bb0f-cbd3ad2167d9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T09:12:47.080Z", + "completed":"2017-08-11T09:12:47.080Z", + "new_balance":"8231.35", + "value":"-6.99" + } + }, + { + "id":"f288e7d7-750b-4849-b1e3-de9ef9bf8846", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T01:31:51.140Z", + "completed":"2017-08-14T01:31:51.140Z", + "new_balance":"8196.16", + "value":"-35.19" + } + }, + { + "id":"13e06809-3051-4e83-bcdf-4ae8e1b1d4f0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T15:14:43.783Z", + "completed":"2017-08-15T15:14:43.783Z", + "new_balance":"8167.00", + "value":"-29.16" + } + }, + { + "id":"b1385136-ce66-4e28-8f89-ec5fc81745db", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T12:05:35.410Z", + "completed":"2017-08-17T12:05:35.410Z", + "new_balance":"8161.23", + "value":"-5.77" + } + }, + { + "id":"889a440d-7e54-4f2a-b8ca-9e89b5c61367", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T22:05:58.454Z", + "completed":"2017-08-17T22:05:58.454Z", + "new_balance":"8115.72", + "value":"-45.51" + } + }, + { + "id":"075bfe92-5430-45c5-b63d-34d03fcf0f42", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T01:08:08.530Z", + "completed":"2017-08-19T01:08:08.530Z", + "new_balance":"8107.32", + "value":"-8.40" + } + }, + { + "id":"d5de725c-9399-4f0f-84b5-9bb841706792", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T13:25:04.947Z", + "completed":"2017-08-25T13:25:04.947Z", + "new_balance":"8221.46", + "value":"114.14" + } + }, + { + "id":"2fec3cd1-4d7b-4388-ac08-71e47e458bb9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T05:14:06.637Z", + "completed":"2017-08-28T05:14:06.637Z", + "new_balance":"8023.55", + "value":"-197.91" + } + }, + { + "id":"f258643d-32f4-4900-9053-c0e5d5a5c5e2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T20:55:28.791Z", + "completed":"2017-08-28T20:55:28.791Z", + "new_balance":"7974.77", + "value":"-48.78" + } + }, + { + "id":"109f5c7f-291e-47eb-9550-bdd1b83dc224", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T23:38:40.358Z", + "completed":"2017-09-01T23:38:40.358Z", + "new_balance":"8997.19", + "value":"1022.42" + } + }, + { + "id":"6342506a-073d-4b8a-b1f9-a101ac213296", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T10:04:20.070Z", + "completed":"2017-09-03T10:04:20.070Z", + "new_balance":"8589.62", + "value":"-407.57" + } + }, + { + "id":"5009e9bd-135f-4b5c-b847-3ab3ae134bb4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T06:02:24.494Z", + "completed":"2017-09-04T06:02:24.494Z", + "new_balance":"8558.17", + "value":"-31.45" + } + }, + { + "id":"ae84db46-e012-4029-8627-6a9ceb38a66c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T06:35:07.286Z", + "completed":"2017-09-04T06:35:07.286Z", + "new_balance":"8541.17", + "value":"-17.00" + } + }, + { + "id":"97810931-bf43-44e3-8ebb-f7d6f41540de", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T08:36:19.264Z", + "completed":"2017-09-04T08:36:19.264Z", + "new_balance":"8510.36", + "value":"-30.81" + } + }, + { + "id":"567be97a-66d6-441c-acab-1a4dbb6b8d74", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T20:34:40.692Z", + "completed":"2017-09-04T20:34:40.692Z", + "new_balance":"8464.85", + "value":"-45.51" + } + }, + { + "id":"7aca5793-61aa-4c10-b3b3-5c900acc43ac", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T08:41:58.384Z", + "completed":"2017-09-05T08:41:58.384Z", + "new_balance":"8365.73", + "value":"-99.12" + } + }, + { + "id":"2eedcf17-96e3-4c9a-88f9-af2095f57348", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T10:44:48.227Z", + "completed":"2017-09-05T10:44:48.227Z", + "new_balance":"8320.19", + "value":"-45.54" + } + }, + { + "id":"5d1c85da-3de6-43a9-9cff-51c6f9075c62", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T20:17:24.196Z", + "completed":"2017-09-05T20:17:24.196Z", + "new_balance":"8215.47", + "value":"-104.72" + } + }, + { + "id":"47790cc9-baa0-4750-89d4-0cca589ee8e8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T21:24:30.842Z", + "completed":"2017-09-05T21:24:30.842Z", + "new_balance":"8209.70", + "value":"-5.77" + } + }, + { + "id":"b97fdc29-3edb-40b2-9ef5-8828ba3551a9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T23:05:48.945Z", + "completed":"2017-09-05T23:05:48.945Z", + "new_balance":"8127.91", + "value":"-81.79" + } + }, + { + "id":"f8a6996c-4af6-4cff-bd9b-0b8eb019fb1e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T23:11:31.215Z", + "completed":"2017-09-05T23:11:31.215Z", + "new_balance":"8113.85", + "value":"-14.06" + } + }, + { + "id":"38dd29eb-3d88-4962-ab60-2cc682492cf2", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T01:36:11.989Z", + "completed":"2017-09-07T01:36:11.989Z", + "new_balance":"8106.24", + "value":"-7.61" + } + }, + { + "id":"8e1ef5e1-efa3-46b0-a5c9-eaf3d32e5f00", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T02:43:45.522Z", + "completed":"2017-09-07T02:43:45.522Z", + "new_balance":"8097.72", + "value":"-8.52" + } + }, + { + "id":"f9487b2a-b491-45b2-abed-aa7d94e86e68", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T19:39:53.170Z", + "completed":"2017-09-07T19:39:53.170Z", + "new_balance":"8091.95", + "value":"-5.77" + } + }, + { + "id":"56117a39-c75e-471e-bd60-ea79dd3e7f90", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T23:01:14.079Z", + "completed":"2017-09-07T23:01:14.079Z", + "new_balance":"8084.34", + "value":"-7.61" + } + }, + { + "id":"88b52f21-ffa0-444a-bb2a-3252e787431c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T02:41:31.389Z", + "completed":"2017-09-10T02:41:31.389Z", + "new_balance":"8052.00", + "value":"-32.34" + } + }, + { + "id":"2b37e5bb-dcc1-47d2-8a0b-6eaea86033b9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T04:16:23.054Z", + "completed":"2017-09-11T04:16:23.054Z", + "new_balance":"8039.63", + "value":"-12.37" + } + }, + { + "id":"2b3f53e4-81f0-4afa-b3ff-678039a8615e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:37:20.151Z", + "completed":"2017-09-11T08:37:20.151Z", + "new_balance":"8015.33", + "value":"-24.30" + } + }, + { + "id":"dd74a29f-f08a-4596-8c5a-189babe5da15", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T18:21:38.112Z", + "completed":"2017-09-11T18:21:38.112Z", + "new_balance":"8009.56", + "value":"-5.77" + } + }, + { + "id":"9ecd02f0-0bc4-4289-b64e-bde050feeb58", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T05:55:56.323Z", + "completed":"2017-09-12T05:55:56.323Z", + "new_balance":"7943.38", + "value":"-66.18" + } + }, + { + "id":"0833cfbe-dfe5-40a5-b5b2-6f5515ee974d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:06:10.108Z", + "completed":"2017-09-12T16:06:10.108Z", + "new_balance":"7924.22", + "value":"-19.16" + } + }, + { + "id":"2b47cb6a-0499-4c5d-8817-47d2d51f68e4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T19:14:35.986Z", + "completed":"2017-09-12T19:14:35.986Z", + "new_balance":"7918.45", + "value":"-5.77" + } + }, + { + "id":"a546d0e9-deaf-45eb-89b2-3852a0efdaae", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T22:57:29.030Z", + "completed":"2017-09-12T22:57:29.030Z", + "new_balance":"7817.19", + "value":"-101.26" + } + }, + { + "id":"0afc6b1c-15b2-4a98-9dff-a582c4d1df0b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T03:40:37.650Z", + "completed":"2017-09-13T03:40:37.650Z", + "new_balance":"7774.70", + "value":"-42.49" + } + }, + { + "id":"b2d349ca-4e9d-491e-a5d7-95a23073a324", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T16:26:11.564Z", + "completed":"2017-09-14T16:26:11.564Z", + "new_balance":"7732.47", + "value":"-42.23" + } + }, + { + "id":"92f17d8c-2741-41c7-a45d-73dafa0e8ced", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T20:10:44.611Z", + "completed":"2017-09-14T20:10:44.611Z", + "new_balance":"7726.70", + "value":"-5.77" + } + }, + { + "id":"dccebe3f-6125-4477-a9d2-2ce5edfabe5d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T23:00:34.394Z", + "completed":"2017-09-16T23:00:34.394Z", + "new_balance":"7677.81", + "value":"-48.89" + } + }, + { + "id":"db728762-476a-4b31-88ed-fd172d00b0ed", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T22:57:28.054Z", + "completed":"2017-09-18T22:57:28.054Z", + "new_balance":"7633.84", + "value":"-43.97" + } + }, + { + "id":"f80dabdf-c55c-4d5e-8eb5-fe08894eeb2b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T06:13:59.149Z", + "completed":"2017-09-21T06:13:59.149Z", + "new_balance":"7529.52", + "value":"-104.32" + } + }, + { + "id":"df20d87b-52f6-4db9-84db-d9fe8e7f2376", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T09:06:20.071Z", + "completed":"2017-09-21T09:06:20.071Z", + "new_balance":"7432.02", + "value":"-97.50" + } + }, + { + "id":"72c7e09a-d8c0-4db5-8f47-ab3c60fc3dda", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T16:43:20.551Z", + "completed":"2017-09-23T16:43:20.551Z", + "new_balance":"7391.70", + "value":"-40.32" + } + }, + { + "id":"a698ed00-bf87-4a6d-a697-689ff9374189", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T23:06:54.546Z", + "completed":"2017-09-24T23:06:54.546Z", + "new_balance":"7385.93", + "value":"-5.77" + } + }, + { + "id":"5b8c5329-3b21-4f0f-a164-6eb7bc7d8f16", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T14:33:57.996Z", + "completed":"2017-09-26T14:33:57.996Z", + "new_balance":"7373.14", + "value":"-12.79" + } + }, + { + "id":"54cb9f09-e5cb-4743-8902-5b028d9845fe", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T14:52:27.836Z", + "completed":"2017-09-26T14:52:27.836Z", + "new_balance":"7360.13", + "value":"-13.01" + } + }, + { + "id":"f55570ee-15f4-45d7-ba37-4fa6e0bf37d6", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T21:05:33.135Z", + "completed":"2017-09-26T21:05:33.135Z", + "new_balance":"7334.51", + "value":"-25.62" + } + }, + { + "id":"4ff89cd3-0972-48e9-b2af-273f9df489a5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T04:47:23.940Z", + "completed":"2017-09-27T04:47:23.940Z", + "new_balance":"7320.32", + "value":"-14.19" + } + }, + { + "id":"c418165e-66d4-42b7-b1ab-643c226443b8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T00:39:49.991Z", + "completed":"2017-09-28T00:39:49.991Z", + "new_balance":"7122.41", + "value":"-197.91" + } + }, + { + "id":"66825a20-6444-4e84-b131-3e943f805a47", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T03:37:03.813Z", + "completed":"2017-09-28T03:37:03.813Z", + "new_balance":"7073.63", + "value":"-48.78" + } + }, + { + "id":"156481c7-86bc-49f1-b1ba-f52cd2bf1881", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T06:01:40.238Z", + "completed":"2017-10-01T06:01:40.238Z", + "new_balance":"8096.05", + "value":"1022.42" + } + }, + { + "id":"d16e4ff8-a518-4852-88a6-de6035a2c99a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T14:59:27.240Z", + "completed":"2017-10-01T14:59:27.240Z", + "new_balance":"9776.46", + "value":"1680.41" + } + }, + { + "id":"1ec4fdb2-8e74-46c1-bd47-4353b71b7857", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T21:00:12.940Z", + "completed":"2017-10-01T21:00:12.940Z", + "new_balance":"9368.89", + "value":"-407.57" + } + }, + { + "id":"e016fb8d-998f-4f20-8d0b-a7836d7d8f35", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T12:16:50.138Z", + "completed":"2017-10-03T12:16:50.138Z", + "new_balance":"9322.09", + "value":"-46.80" + } + }, + { + "id":"d38971e8-0c86-460e-bbe1-4fa5f169e756", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T17:32:48.344Z", + "completed":"2017-10-03T17:32:48.344Z", + "new_balance":"9304.47", + "value":"-17.62" + } + }, + { + "id":"f75f7116-99ea-4e11-95a0-8d2b37095ec8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T21:10:32.300Z", + "completed":"2017-10-03T21:10:32.300Z", + "new_balance":"9298.09", + "value":"-6.38" + } + }, + { + "id":"8f2d2811-597f-4fad-9522-880f735f1d96", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T17:31:19.147Z", + "completed":"2017-10-05T17:31:19.147Z", + "new_balance":"9291.10", + "value":"-6.99" + } + }, + { + "id":"70e84cfe-dc79-42f0-a8c1-8db2c0ee4fb7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T21:03:30.370Z", + "completed":"2017-10-05T21:03:30.370Z", + "new_balance":"9280.19", + "value":"-10.91" + } + }, + { + "id":"1125f938-3a9a-4635-9af4-3b0c88b0a435", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T15:53:28.155Z", + "completed":"2017-10-06T15:53:28.155Z", + "new_balance":"9255.26", + "value":"-24.93" + } + }, + { + "id":"ea5879eb-5455-4642-89ea-55aacea66ed8", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T20:54:39.373Z", + "completed":"2017-10-09T20:54:39.373Z", + "new_balance":"9236.10", + "value":"-19.16" + } + }, + { + "id":"4371047c-e297-4d71-814d-3d7c49004e10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T11:28:53.504Z", + "completed":"2017-10-10T11:28:53.504Z", + "new_balance":"9221.11", + "value":"-14.99" + } + }, + { + "id":"676ef5d8-ef75-46e6-8195-79f3ffa828df", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T15:22:42.624Z", + "completed":"2017-10-11T15:22:42.624Z", + "new_balance":"9205.10", + "value":"-16.01" + } + }, + { + "id":"cf142dc8-a923-472f-a669-7259ee06943b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T19:38:17.123Z", + "completed":"2017-10-11T19:38:17.123Z", + "new_balance":"9175.94", + "value":"-29.16" + } + }, + { + "id":"673d2219-b1ef-4770-a137-445199f5077b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T01:40:53.103Z", + "completed":"2017-10-14T01:40:53.103Z", + "new_balance":"9130.88", + "value":"-45.06" + } + }, + { + "id":"265ef7a8-bd79-486c-98ff-a4247334edec", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T13:22:34.594Z", + "completed":"2017-10-14T13:22:34.594Z", + "new_balance":"9026.16", + "value":"-104.72" + } + }, + { + "id":"d9deb330-a5f0-45db-af3d-2cbcd069a56b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T09:50:20.585Z", + "completed":"2017-10-17T09:50:20.585Z", + "new_balance":"8981.68", + "value":"-44.48" + } + }, + { + "id":"8aad0329-918e-4105-bc3a-8a8fabb0bce3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T00:55:36.918Z", + "completed":"2017-10-18T00:55:36.918Z", + "new_balance":"8975.91", + "value":"-5.77" + } + }, + { + "id":"734661ae-9bb5-4a11-8df2-80a30eeeccfe", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:29:11.621Z", + "completed":"2017-10-18T06:29:11.621Z", + "new_balance":"8896.83", + "value":"-79.08" + } + }, + { + "id":"ef3901c1-6106-416f-9004-22b1a99a9cc5", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T10:46:25.781Z", + "completed":"2017-10-18T10:46:25.781Z", + "new_balance":"8886.76", + "value":"-10.07" + } + }, + { + "id":"fd752da0-dba9-4d05-8f9f-731e271600d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T20:11:36.690Z", + "completed":"2017-10-23T20:11:36.690Z", + "new_balance":"8861.36", + "value":"-25.40" + } + }, + { + "id":"26790545-0baa-466c-9bc6-f75b63c0ba5e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T13:41:37.019Z", + "completed":"2017-10-24T13:41:37.019Z", + "new_balance":"8846.53", + "value":"-14.83" + } + }, + { + "id":"d31168f0-e1e1-4a70-9f07-7292c0ac872e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:24:46.631Z", + "completed":"2017-10-24T15:24:46.631Z", + "new_balance":"8815.72", + "value":"-30.81" + } + }, + { + "id":"e37ce6aa-1dd4-4a4c-bd10-260de798ce5b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:13:54.264Z", + "completed":"2017-10-26T02:13:54.264Z", + "new_balance":"8808.73", + "value":"-6.99" + } + }, + { + "id":"6bc4fa40-947f-4b4b-abbe-e88ab2a42244", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T01:47:12.824Z", + "completed":"2017-10-30T01:47:12.824Z", + "new_balance":"8759.95", + "value":"-48.78" + } + }, + { + "id":"9b819664-7ab2-452e-8b44-58aba2be0499", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T09:49:58.750Z", + "completed":"2017-10-30T09:49:58.750Z", + "new_balance":"8562.04", + "value":"-197.91" + } + }, + { + "id":"d8c2ef82-2546-4ffd-88d3-4f41fa65edb1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T01:19:25.079Z", + "completed":"2017-11-02T01:19:25.079Z", + "new_balance":"8547.53", + "value":"-14.51" + } + }, + { + "id":"320c281c-c1dc-411a-b0ed-d05711deb247", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T14:45:51.970Z", + "completed":"2017-11-02T14:45:51.970Z", + "new_balance":"8139.96", + "value":"-407.57" + } + }, + { + "id":"0a90f212-23dc-4945-ac92-0e1e32a72392", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T15:39:41.610Z", + "completed":"2017-11-02T15:39:41.610Z", + "new_balance":"8133.47", + "value":"-6.49" + } + }, + { + "id":"f01da370-ab88-4c55-a35c-3e84774515d1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T16:18:53.286Z", + "completed":"2017-11-02T16:18:53.286Z", + "new_balance":"7969.99", + "value":"-163.48" + } + }, + { + "id":"b3feadd0-0e1b-4c9b-9c19-a89fff9a4ee4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T09:05:47.956Z", + "completed":"2017-11-06T09:05:47.956Z", + "new_balance":"7940.83", + "value":"-29.16" + } + }, + { + "id":"f9582f97-117d-4865-99bc-61c2c003d14b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T10:54:51.899Z", + "completed":"2017-11-06T10:54:51.899Z", + "new_balance":"7916.03", + "value":"-24.80" + } + }, + { + "id":"120bfa2f-d2ff-4dee-bab1-3355ef0a00bd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T09:04:39.760Z", + "completed":"2017-11-07T09:04:39.760Z", + "new_balance":"7811.31", + "value":"-104.72" + } + }, + { + "id":"2539242a-0c66-4fd6-8925-1805ca105fe4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T13:45:20.083Z", + "completed":"2017-11-07T13:45:20.083Z", + "new_balance":"7769.96", + "value":"-41.35" + } + }, + { + "id":"1db3aac5-a453-4073-948b-26c3c6b459ad", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T22:43:51.829Z", + "completed":"2017-11-09T22:43:51.829Z", + "new_balance":"8792.38", + "value":"1022.42" + } + }, + { + "id":"9399195b-4a9d-4d1b-a7f3-e17d4986615c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T09:50:30.575Z", + "completed":"2017-11-14T09:50:30.575Z", + "new_balance":"8741.82", + "value":"-50.56" + } + }, + { + "id":"e14df54a-0b4b-439a-875a-51c4c6daaa0b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T19:08:18.259Z", + "completed":"2017-11-14T19:08:18.259Z", + "new_balance":"8716.02", + "value":"-25.80" + } + }, + { + "id":"b3239a41-4983-4aff-a2fa-173deb172247", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T01:11:33.754Z", + "completed":"2017-11-16T01:11:33.754Z", + "new_balance":"8709.03", + "value":"-6.99" + } + }, + { + "id":"de728c92-4cd3-4936-87ff-009dee02a9ca", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T05:03:29.049Z", + "completed":"2017-11-20T05:03:29.049Z", + "new_balance":"8673.84", + "value":"-35.19" + } + }, + { + "id":"431dc45d-b6ba-45ea-9181-ea7f071cd049", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T00:06:23.206Z", + "completed":"2017-11-23T00:06:23.206Z", + "new_balance":"8668.07", + "value":"-5.77" + } + }, + { + "id":"446bf85a-36bd-408c-8b70-625b31c19af4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T12:28:14.927Z", + "completed":"2017-11-23T12:28:14.927Z", + "new_balance":"8622.56", + "value":"-45.51" + } + }, + { + "id":"77f07c0f-9945-438d-b406-79f3d0bca7d4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T17:38:27.627Z", + "completed":"2017-11-23T17:38:27.627Z", + "new_balance":"8593.40", + "value":"-29.16" + } + }, + { + "id":"7b6ef66e-e067-435f-aa31-006a2893d555", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T17:28:20.145Z", + "completed":"2017-11-28T17:28:20.145Z", + "new_balance":"8585.00", + "value":"-8.40" + } + }, + { + "id":"3a2c158c-a264-4281-b401-f11a474c06b4", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T00:02:22.668Z", + "completed":"2017-11-30T00:02:22.668Z", + "new_balance":"8536.22", + "value":"-48.78" + } + }, + { + "id":"8ea5f20e-25bb-4493-944d-0ef4735fe47b", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T14:39:35.721Z", + "completed":"2017-11-30T14:39:35.721Z", + "new_balance":"8338.31", + "value":"-197.91" + } + }, + { + "id":"e33f4a17-6104-48f5-9bba-d6b869a29e9d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T07:51:20.547Z", + "completed":"2017-12-01T07:51:20.547Z", + "new_balance":"9360.73", + "value":"1022.42" + } + }, + { + "id":"6491e210-58bd-4fa0-a72b-dd82af48ad22", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T19:55:33.038Z", + "completed":"2017-12-01T19:55:33.038Z", + "new_balance":"8953.16", + "value":"-407.57" + } + }, + { + "id":"7ad8a723-6267-45bc-b30c-bbb166e7792a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T02:44:21.824Z", + "completed":"2017-12-04T02:44:21.824Z", + "new_balance":"8936.16", + "value":"-17.00" + } + }, + { + "id":"0917e920-e476-4f8f-bb20-eb6e0ccacbf3", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:11:53.181Z", + "completed":"2017-12-04T10:11:53.181Z", + "new_balance":"8904.71", + "value":"-31.45" + } + }, + { + "id":"419e117b-e95e-4a2f-9055-3bce0981c8c0", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T04:29:26.465Z", + "completed":"2017-12-11T04:29:26.465Z", + "new_balance":"8873.90", + "value":"-30.81" + } + }, + { + "id":"aeda6c33-4eb0-49a8-8f01-1e099f37d8df", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T16:31:51.248Z", + "completed":"2017-12-11T16:31:51.248Z", + "new_balance":"8828.39", + "value":"-45.51" + } + }, + { + "id":"55d04c7d-2825-4a69-85eb-cc0dd5a72812", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T01:24:05.039Z", + "completed":"2017-12-14T01:24:05.039Z", + "new_balance":"8822.62", + "value":"-5.77" + } + }, + { + "id":"7e3add51-d5dd-425e-b89b-0a17cbd9b967", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T02:34:25.884Z", + "completed":"2017-12-14T02:34:25.884Z", + "new_balance":"8815.01", + "value":"-7.61" + } + }, + { + "id":"d8cee159-ffdf-4e5d-a1ff-66455f952b1f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T06:48:40.911Z", + "completed":"2017-12-14T06:48:40.911Z", + "new_balance":"8800.95", + "value":"-14.06" + } + }, + { + "id":"977ecc28-64f9-4fa8-9065-13c33f320cfc", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T08:07:02.090Z", + "completed":"2017-12-14T08:07:02.090Z", + "new_balance":"8795.18", + "value":"-5.77" + } + }, + { + "id":"7d96fe96-aa83-4bae-9c29-81478fab8b84", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T12:33:01.248Z", + "completed":"2017-12-14T12:33:01.248Z", + "new_balance":"8690.46", + "value":"-104.72" + } + }, + { + "id":"fc29814f-5941-49ee-897a-16d77c250940", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T14:57:26.589Z", + "completed":"2017-12-14T14:57:26.589Z", + "new_balance":"8608.67", + "value":"-81.79" + } + }, + { + "id":"15a50d90-b91b-4500-a0c1-d3961164396a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T19:53:34.917Z", + "completed":"2017-12-14T19:53:34.917Z", + "new_balance":"8601.06", + "value":"-7.61" + } + }, + { + "id":"47b69058-84b1-4bb9-bf6f-3a6491a41438", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T21:06:21.636Z", + "completed":"2017-12-14T21:06:21.636Z", + "new_balance":"8555.52", + "value":"-45.54" + } + }, + { + "id":"9d4986c0-51f7-4c72-a2f5-3d5befec5c76", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T22:37:16.700Z", + "completed":"2017-12-14T22:37:16.700Z", + "new_balance":"8456.40", + "value":"-99.12" + } + }, + { + "id":"6681c985-6c2a-4d7b-b587-dc2fa70b30e9", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T03:32:39.959Z", + "completed":"2017-12-15T03:32:39.959Z", + "new_balance":"8450.63", + "value":"-5.77" + } + }, + { + "id":"22329006-e683-480b-a4af-4b12a15677b1", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:19:57.343Z", + "completed":"2017-12-15T04:19:57.343Z", + "new_balance":"8442.11", + "value":"-8.52" + } + }, + { + "id":"395487f7-b094-493d-931e-99ae09a508cf", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T05:45:44.602Z", + "completed":"2017-12-15T05:45:44.602Z", + "new_balance":"8409.77", + "value":"-32.34" + } + }, + { + "id":"73d97ca4-5c26-4b21-a192-d6136fb890eb", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T02:59:08.139Z", + "completed":"2017-12-18T02:59:08.139Z", + "new_balance":"8343.59", + "value":"-66.18" + } + }, + { + "id":"d1a9eeda-549b-463a-9026-131cf743d866", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T04:04:42.727Z", + "completed":"2017-12-18T04:04:42.727Z", + "new_balance":"8337.82", + "value":"-5.77" + } + }, + { + "id":"90afe726-361b-47bb-9c27-ae8bc2027a66", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T05:47:29.776Z", + "completed":"2017-12-18T05:47:29.776Z", + "new_balance":"8332.05", + "value":"-5.77" + } + }, + { + "id":"f226429e-bc9a-4e7a-8ebc-eb128783d674", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T07:28:27.202Z", + "completed":"2017-12-18T07:28:27.202Z", + "new_balance":"8312.89", + "value":"-19.16" + } + }, + { + "id":"ee003a21-bba8-425a-8d8c-545fe1bc1c10", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T10:33:25.319Z", + "completed":"2017-12-18T10:33:25.319Z", + "new_balance":"8270.40", + "value":"-42.49" + } + }, + { + "id":"23c0aa29-1ec1-48d0-97c4-bcb5bd103ec7", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T10:34:08.507Z", + "completed":"2017-12-18T10:34:08.507Z", + "new_balance":"8258.03", + "value":"-12.37" + } + }, + { + "id":"f35a195f-8750-47ea-9d61-1c1f3888f42d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T21:36:13.921Z", + "completed":"2017-12-18T21:36:13.921Z", + "new_balance":"8156.77", + "value":"-101.26" + } + }, + { + "id":"44cea079-461d-4148-a99f-27121a398560", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T21:36:19.296Z", + "completed":"2017-12-18T21:36:19.296Z", + "new_balance":"8132.47", + "value":"-24.30" + } + }, + { + "id":"162ce058-d429-4d5a-b9b8-6d8804ed2e46", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T00:12:35.457Z", + "completed":"2017-12-19T00:12:35.457Z", + "new_balance":"8083.58", + "value":"-48.89" + } + }, + { + "id":"fdf0c0f1-a22b-468c-a115-ccedc0694ddd", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T03:46:35.402Z", + "completed":"2017-12-19T03:46:35.402Z", + "new_balance":"8039.61", + "value":"-43.97" + } + }, + { + "id":"71ca8c3b-9d57-4d20-8fd3-e6e241962c5d", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T06:17:46.662Z", + "completed":"2017-12-19T06:17:46.662Z", + "new_balance":"7997.38", + "value":"-42.23" + } + }, + { + "id":"08b930cf-ca2f-420f-aa41-17690e648a5c", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T02:10:38.823Z", + "completed":"2017-12-21T02:10:38.823Z", + "new_balance":"7991.61", + "value":"-5.77" + } + }, + { + "id":"d8ce6726-1438-4c43-ae9a-a49cd55c2821", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T06:15:47.278Z", + "completed":"2017-12-21T06:15:47.278Z", + "new_balance":"7894.11", + "value":"-97.50" + } + }, + { + "id":"c5ddc84c-9f3b-4def-a396-614de1e441ee", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T09:09:13.812Z", + "completed":"2017-12-21T09:09:13.812Z", + "new_balance":"7853.79", + "value":"-40.32" + } + }, + { + "id":"25a26dd3-aeae-42c9-ab3d-f2287512ea9f", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T09:57:49.224Z", + "completed":"2017-12-21T09:57:49.224Z", + "new_balance":"7840.78", + "value":"-13.01" + } + }, + { + "id":"c72db10c-decd-4727-9db1-8cc45ba44c2e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T23:39:34.021Z", + "completed":"2017-12-21T23:39:34.021Z", + "new_balance":"7736.46", + "value":"-104.32" + } + }, + { + "id":"bdfdb00c-3d69-4a3b-82b6-599bfe17167a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T07:46:57.144Z", + "completed":"2017-12-24T07:46:57.144Z", + "new_balance":"7723.67", + "value":"-12.79" + } + }, + { + "id":"eb07ea3c-3df8-4080-9911-e2b1a9c0ea9e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T09:41:17.501Z", + "completed":"2017-12-24T09:41:17.501Z", + "new_balance":"7698.05", + "value":"-25.62" + } + }, + { + "id":"a0914ea3-6352-4093-9e62-c2289ff29516", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T17:04:46.139Z", + "completed":"2017-12-24T17:04:46.139Z", + "new_balance":"7683.86", + "value":"-14.19" + } + }, + { + "id":"9e3f8519-0d13-4e09-af99-a7739773f90a", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T00:35:54.037Z", + "completed":"2017-12-30T00:35:54.037Z", + "new_balance":"7485.95", + "value":"-197.91" + } + }, + { + "id":"d3d3f424-dfbc-428a-b5ff-0d099ecd356e", + "this_account":{ + "id":"3212fe95-6ff5-4c88-88fc-5207026a0ea5", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T03:48:13.674Z", + "completed":"2017-12-30T03:48:13.674Z", + "new_balance":"7437.17", + "value":"-48.78" + } + }, + { + "id":"4df4153a-3672-4d7d-a4e7-b2dfb932e58a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T17:54:45.482Z", + "completed":"2016-01-01T17:54:45.482Z", + "new_balance":"5418.71", + "value":"182.70" + } + }, + { + "id":"23b68965-b1af-4786-a207-9e8d3d58c797", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T23:51:28.524Z", + "completed":"2016-01-01T23:51:28.524Z", + "new_balance":"5559.69", + "value":"140.98" + } + }, + { + "id":"4331f811-64da-4718-b960-b145a164b0f6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T21:36:31.202Z", + "completed":"2016-01-02T21:36:31.202Z", + "new_balance":"5527.97", + "value":"-31.72" + } + }, + { + "id":"6ff9a4ee-53ba-49d5-9bbb-1127714532ca", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T04:50:11.932Z", + "completed":"2016-01-03T04:50:11.932Z", + "new_balance":"5527.30", + "value":"-0.67" + } + }, + { + "id":"95e4bc5a-2339-4b0e-9507-c2af907e7b1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T05:00:15.565Z", + "completed":"2016-01-03T05:00:15.565Z", + "new_balance":"5522.48", + "value":"-4.82" + } + }, + { + "id":"382bd2ea-ce4a-4a2b-8b5b-b384dd2dfb8c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T12:57:34.039Z", + "completed":"2016-01-03T12:57:34.039Z", + "new_balance":"5520.74", + "value":"-1.74" + } + }, + { + "id":"84edd877-95c7-43b9-a3a3-b822f9720dd8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T01:23:36.300Z", + "completed":"2016-01-04T01:23:36.300Z", + "new_balance":"5519.34", + "value":"-1.40" + } + }, + { + "id":"62624f71-cef3-42e5-8a42-5cc40fd08bb2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T16:53:27.205Z", + "completed":"2016-01-05T16:53:27.205Z", + "new_balance":"5518.82", + "value":"-0.52" + } + }, + { + "id":"b9eef1cc-b679-4325-8877-b16fcfaef95d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T07:32:46.254Z", + "completed":"2016-01-07T07:32:46.254Z", + "new_balance":"5517.22", + "value":"-1.60" + } + }, + { + "id":"552b9d42-ffd4-4289-be8a-fea93006e7b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T23:53:41.054Z", + "completed":"2016-01-07T23:53:41.054Z", + "new_balance":"5514.63", + "value":"-2.59" + } + }, + { + "id":"440dd4d8-002e-4ee5-b85e-ea39696b6166", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T07:19:06.370Z", + "completed":"2016-01-08T07:19:06.370Z", + "new_balance":"5512.95", + "value":"-1.68" + } + }, + { + "id":"51c82a0b-75a9-4949-bdc9-5df465f08e4e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T15:24:34.195Z", + "completed":"2016-01-08T15:24:34.195Z", + "new_balance":"5511.08", + "value":"-1.87" + } + }, + { + "id":"f8617daa-ec76-4e38-ab47-a5c7520a8086", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T16:09:09.738Z", + "completed":"2016-01-09T16:09:09.738Z", + "new_balance":"5504.95", + "value":"-6.13" + } + }, + { + "id":"f7a16e96-2ce3-488d-813c-8e025079a4f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T20:15:01.096Z", + "completed":"2016-01-09T20:15:01.096Z", + "new_balance":"5502.64", + "value":"-2.31" + } + }, + { + "id":"75fb208d-0c39-41ef-b7da-b94004c2431c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:03:47.081Z", + "completed":"2016-01-10T00:03:47.081Z", + "new_balance":"5494.94", + "value":"-7.70" + } + }, + { + "id":"79035c76-6de3-45e4-a439-e98ce1e387c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T07:28:40.988Z", + "completed":"2016-01-10T07:28:40.988Z", + "new_balance":"5490.41", + "value":"-4.53" + } + }, + { + "id":"f5c058d8-9a53-4b61-a5c6-a4511cd471c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T05:09:56.797Z", + "completed":"2016-01-11T05:09:56.797Z", + "new_balance":"5499.40", + "value":"8.99" + } + }, + { + "id":"c3b5aeb6-4309-451a-a009-c22a73b0a521", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T05:42:50.996Z", + "completed":"2016-01-11T05:42:50.996Z", + "new_balance":"5498.93", + "value":"-0.47" + } + }, + { + "id":"75920d3a-773c-452f-b431-561981da835d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T20:48:14.441Z", + "completed":"2016-01-11T20:48:14.441Z", + "new_balance":"5493.45", + "value":"-5.48" + } + }, + { + "id":"3930d9b7-0d88-4937-a64b-c575d204f868", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T12:16:43.194Z", + "completed":"2016-01-12T12:16:43.194Z", + "new_balance":"5492.64", + "value":"-0.81" + } + }, + { + "id":"ec2a8773-024d-46d6-9840-a7afa3bb464b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T13:47:30.593Z", + "completed":"2016-01-15T13:47:30.593Z", + "new_balance":"5490.21", + "value":"-2.43" + } + }, + { + "id":"05f46a9d-1d00-433b-b836-9ade3016e131", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T13:51:37.861Z", + "completed":"2016-01-16T13:51:37.861Z", + "new_balance":"5486.91", + "value":"-3.30" + } + }, + { + "id":"909f0421-b284-4bc9-8632-668371029fce", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T20:18:00.961Z", + "completed":"2016-01-17T20:18:00.961Z", + "new_balance":"5485.34", + "value":"-1.57" + } + }, + { + "id":"31703192-d05c-40f3-b469-937a952651b8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T08:07:27.996Z", + "completed":"2016-01-20T08:07:27.996Z", + "new_balance":"5484.82", + "value":"-0.52" + } + }, + { + "id":"f7448f03-ad3c-4c40-ae35-f16a3cc004fc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T08:34:03.497Z", + "completed":"2016-01-21T08:34:03.497Z", + "new_balance":"5481.10", + "value":"-3.72" + } + }, + { + "id":"d75b58f3-2512-42ed-82b1-eeaf392d123b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T22:58:42.006Z", + "completed":"2016-01-23T22:58:42.006Z", + "new_balance":"5458.74", + "value":"-22.36" + } + }, + { + "id":"84871a7d-b631-4f44-9760-82737960e89f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:00:30.132Z", + "completed":"2016-02-01T01:00:30.132Z", + "new_balance":"5599.72", + "value":"140.98" + } + }, + { + "id":"4869f14e-ed91-4a22-aee3-2e342dc60d20", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T18:11:10.872Z", + "completed":"2016-02-03T18:11:10.872Z", + "new_balance":"5586.62", + "value":"-13.10" + } + }, + { + "id":"3bbd6a81-a65f-4bdf-b8db-f0cb6be54656", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T23:46:52.329Z", + "completed":"2016-02-03T23:46:52.329Z", + "new_balance":"5554.90", + "value":"-31.72" + } + }, + { + "id":"0b1cf439-b6cd-4120-a676-f914ddd78ee5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T17:00:12.024Z", + "completed":"2016-02-04T17:00:12.024Z", + "new_balance":"5553.58", + "value":"-1.32" + } + }, + { + "id":"46884a51-bb00-44aa-89c6-6203e0792b0f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T19:45:18.011Z", + "completed":"2016-02-05T19:45:18.011Z", + "new_balance":"5552.91", + "value":"-0.67" + } + }, + { + "id":"d1446fc3-9495-4349-8b12-dc17509fc1e7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T13:41:11.458Z", + "completed":"2016-02-06T13:41:11.458Z", + "new_balance":"5550.72", + "value":"-2.19" + } + }, + { + "id":"1b70546e-05e8-46d0-90f8-b70a79660d68", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T11:51:18.456Z", + "completed":"2016-02-07T11:51:18.456Z", + "new_balance":"5546.15", + "value":"-4.57" + } + }, + { + "id":"75e4ca7d-75f4-4695-9e84-48db20ae7401", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T13:52:37.080Z", + "completed":"2016-02-07T13:52:37.080Z", + "new_balance":"5543.84", + "value":"-2.31" + } + }, + { + "id":"ba57ec64-2a46-4b24-bc79-682ea821dd92", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T23:58:39.656Z", + "completed":"2016-02-07T23:58:39.656Z", + "new_balance":"5536.14", + "value":"-7.70" + } + }, + { + "id":"4c9f0e8d-e19f-41e7-8592-83664ad4845f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T13:38:44.045Z", + "completed":"2016-02-08T13:38:44.045Z", + "new_balance":"5532.00", + "value":"-4.14" + } + }, + { + "id":"313ee104-a100-4778-a63d-ea51ebbe292f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T06:36:13.509Z", + "completed":"2016-02-09T06:36:13.509Z", + "new_balance":"5529.60", + "value":"-2.40" + } + }, + { + "id":"92bfb3d4-6fc5-4c68-b681-7771b9bf21eb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T11:55:30.538Z", + "completed":"2016-02-10T11:55:30.538Z", + "new_balance":"5529.08", + "value":"-0.52" + } + }, + { + "id":"5174d0b3-21c9-44cb-a71e-a26edac9176c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T20:03:58.092Z", + "completed":"2016-02-12T20:03:58.092Z", + "new_balance":"5526.20", + "value":"-2.88" + } + }, + { + "id":"fb30e4b4-3307-4812-a7dc-b92e974685b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T07:43:07.401Z", + "completed":"2016-02-14T07:43:07.401Z", + "new_balance":"5523.89", + "value":"-2.31" + } + }, + { + "id":"48aa0155-ebb6-4a43-8c42-4677d0fc0739", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T10:06:17.380Z", + "completed":"2016-02-16T10:06:17.380Z", + "new_balance":"5523.42", + "value":"-0.47" + } + }, + { + "id":"7b7bedab-e5d9-4336-a20b-41876c7ba07a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T15:35:29.307Z", + "completed":"2016-02-16T15:35:29.307Z", + "new_balance":"5518.81", + "value":"-4.61" + } + }, + { + "id":"86563f43-e756-451d-a4db-b5e3b4a2db8d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T13:49:47.113Z", + "completed":"2016-02-18T13:49:47.113Z", + "new_balance":"5518.22", + "value":"-0.59" + } + }, + { + "id":"4c8c754e-8a57-4a87-bcf3-c4ecec1e66d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T00:26:20.768Z", + "completed":"2016-02-21T00:26:20.768Z", + "new_balance":"5529.62", + "value":"11.40" + } + }, + { + "id":"13638795-cca6-4623-b9ac-9666d2a8549f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T06:35:22.210Z", + "completed":"2016-02-21T06:35:22.210Z", + "new_balance":"5525.90", + "value":"-3.72" + } + }, + { + "id":"bcb0dd7c-fd9b-42b5-8a09-5b4ea200a839", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T22:50:41.341Z", + "completed":"2016-02-27T22:50:41.341Z", + "new_balance":"5503.54", + "value":"-22.36" + } + }, + { + "id":"2f381bea-80de-49d2-b8bc-d72b5c346a7a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T08:13:34.963Z", + "completed":"2016-03-01T08:13:34.963Z", + "new_balance":"5644.52", + "value":"140.98" + } + }, + { + "id":"3d6ec481-07b1-4a65-8ff6-9e2aaf781052", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T13:10:20.572Z", + "completed":"2016-03-03T13:10:20.572Z", + "new_balance":"5612.80", + "value":"-31.72" + } + }, + { + "id":"c903ee3b-cfce-4824-b4a5-e5e44015da89", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T02:32:36.562Z", + "completed":"2016-03-04T02:32:36.562Z", + "new_balance":"5610.75", + "value":"-2.05" + } + }, + { + "id":"bf67713e-3284-407a-9815-662f0c805d61", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T08:04:57.907Z", + "completed":"2016-03-04T08:04:57.907Z", + "new_balance":"5607.45", + "value":"-3.30" + } + }, + { + "id":"1ea7a248-2848-4065-b419-4844662ea4b1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T12:52:49.022Z", + "completed":"2016-03-04T12:52:49.022Z", + "new_balance":"5603.99", + "value":"-3.46" + } + }, + { + "id":"fe3cc123-43e5-437d-93a4-432131095479", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T18:03:45.272Z", + "completed":"2016-03-04T18:03:45.272Z", + "new_balance":"5599.38", + "value":"-4.61" + } + }, + { + "id":"a8176d2a-444f-4bb0-b504-e9701759b0c3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T00:12:38.367Z", + "completed":"2016-03-05T00:12:38.367Z", + "new_balance":"5591.68", + "value":"-7.70" + } + }, + { + "id":"54b1b21a-96e8-4168-ad6d-726ccc45ebbe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T03:23:21.041Z", + "completed":"2016-03-05T03:23:21.041Z", + "new_balance":"5591.21", + "value":"-0.47" + } + }, + { + "id":"bef1aae5-b52d-4350-a4fb-453208e91868", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T04:06:19.505Z", + "completed":"2016-03-05T04:06:19.505Z", + "new_balance":"5589.91", + "value":"-1.30" + } + }, + { + "id":"148b7e24-58ce-4b81-ad16-7f15a382b7e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T13:51:27.347Z", + "completed":"2016-03-05T13:51:27.347Z", + "new_balance":"5583.16", + "value":"-6.75" + } + }, + { + "id":"8f8df357-0535-47f3-a905-ffc60e3d3256", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T02:24:46.557Z", + "completed":"2016-03-06T02:24:46.557Z", + "new_balance":"5576.52", + "value":"-6.64" + } + }, + { + "id":"612cd948-4414-4e32-a005-9c97eb6b61d5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T15:17:55.799Z", + "completed":"2016-03-06T15:17:55.799Z", + "new_balance":"5568.78", + "value":"-7.74" + } + }, + { + "id":"5f5206c7-8ed3-4c18-82ba-5e1d29641943", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T01:00:28.238Z", + "completed":"2016-03-07T01:00:28.238Z", + "new_balance":"5568.31", + "value":"-0.47" + } + }, + { + "id":"c40e9522-ec06-4df3-abe4-9a4c1ae28ad0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T09:23:32.662Z", + "completed":"2016-03-07T09:23:32.662Z", + "new_balance":"5567.51", + "value":"-0.80" + } + }, + { + "id":"7d96b445-1573-4dbb-8cf8-97ceed59b3af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T02:23:22.590Z", + "completed":"2016-03-08T02:23:22.590Z", + "new_balance":"5566.74", + "value":"-0.77" + } + }, + { + "id":"328447be-52f8-4c50-962c-17acacf4e8f3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T05:48:25.190Z", + "completed":"2016-03-08T05:48:25.190Z", + "new_balance":"5565.94", + "value":"-0.80" + } + }, + { + "id":"6cbb5f41-c765-461e-b1ab-6bc2badda531", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T02:21:25.367Z", + "completed":"2016-03-10T02:21:25.367Z", + "new_balance":"5563.23", + "value":"-2.71" + } + }, + { + "id":"d14c93e1-9657-42b9-800b-d4bbfe0af735", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T07:10:49.628Z", + "completed":"2016-03-11T07:10:49.628Z", + "new_balance":"5562.76", + "value":"-0.47" + } + }, + { + "id":"b84cd733-0d4d-4f1d-9f49-a7211a0b2117", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T13:56:44.920Z", + "completed":"2016-03-11T13:56:44.920Z", + "new_balance":"5561.16", + "value":"-1.60" + } + }, + { + "id":"f458543c-4b62-4472-9ff5-95aa7b683d11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T17:33:15.063Z", + "completed":"2016-03-11T17:33:15.063Z", + "new_balance":"5558.44", + "value":"-2.72" + } + }, + { + "id":"0f08fe2d-3a0e-452b-b6d5-4528860b6e1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T00:28:54.781Z", + "completed":"2016-03-12T00:28:54.781Z", + "new_balance":"5557.97", + "value":"-0.47" + } + }, + { + "id":"b94514e7-bf4d-4956-814e-68763654329d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T19:21:00.014Z", + "completed":"2016-03-12T19:21:00.014Z", + "new_balance":"5551.81", + "value":"-6.16" + } + }, + { + "id":"554705a5-f38a-4e59-aa9c-d49801a7af87", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T21:57:22.859Z", + "completed":"2016-03-12T21:57:22.859Z", + "new_balance":"5541.66", + "value":"-10.15" + } + }, + { + "id":"00ac7a43-91b3-49c1-a0f6-f9daa7f6ff57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:49:58.595Z", + "completed":"2016-03-12T22:49:58.595Z", + "new_balance":"5539.07", + "value":"-2.59" + } + }, + { + "id":"8af5498f-3f2f-436b-8d61-386c516d3df3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T00:49:59.259Z", + "completed":"2016-03-13T00:49:59.259Z", + "new_balance":"5536.49", + "value":"-2.58" + } + }, + { + "id":"8dc87db2-1337-4c4c-9fc7-c651a324e8e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T07:13:51.069Z", + "completed":"2016-03-13T07:13:51.069Z", + "new_balance":"5536.02", + "value":"-0.47" + } + }, + { + "id":"0c6c5d91-abf3-4e24-bef7-fac0342b7c15", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T09:53:09.790Z", + "completed":"2016-03-15T09:53:09.790Z", + "new_balance":"5531.90", + "value":"-4.12" + } + }, + { + "id":"82e03786-3d30-42ee-b9fa-abacce899db2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T18:31:05.402Z", + "completed":"2016-03-15T18:31:05.402Z", + "new_balance":"5526.98", + "value":"-4.92" + } + }, + { + "id":"905f7692-5ffe-4e6a-9c48-f4153f586ec7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T04:05:19.597Z", + "completed":"2016-03-17T04:05:19.597Z", + "new_balance":"5522.59", + "value":"-4.39" + } + }, + { + "id":"fd5d78cd-d2c2-436c-ab75-7885fabbf07e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T13:43:28.424Z", + "completed":"2016-03-18T13:43:28.424Z", + "new_balance":"5512.98", + "value":"-9.61" + } + }, + { + "id":"c3465576-d0c5-4216-9d00-8a0e2400c744", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T19:31:42.785Z", + "completed":"2016-03-20T19:31:42.785Z", + "new_balance":"5500.62", + "value":"-12.36" + } + }, + { + "id":"91a8ec18-1cc2-4c2d-b616-4beb6673a9d9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:57:50.129Z", + "completed":"2016-03-22T06:57:50.129Z", + "new_balance":"5497.15", + "value":"-3.47" + } + }, + { + "id":"b59e9b88-f77e-4388-9534-bd89ecef22f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T06:42:54.025Z", + "completed":"2016-03-25T06:42:54.025Z", + "new_balance":"5496.68", + "value":"-0.47" + } + }, + { + "id":"bcc82a29-a4e2-464d-ba2f-fb889d23175b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T17:50:41.629Z", + "completed":"2016-03-25T17:50:41.629Z", + "new_balance":"5495.53", + "value":"-1.15" + } + }, + { + "id":"eb337208-b002-4ac9-a214-b0ce3d780c18", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T08:45:42.825Z", + "completed":"2016-03-26T08:45:42.825Z", + "new_balance":"5494.18", + "value":"-1.35" + } + }, + { + "id":"4cb87e60-bf9f-4b09-8c0b-e94d6fdc16d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T10:48:07.332Z", + "completed":"2016-03-26T10:48:07.332Z", + "new_balance":"5491.79", + "value":"-2.39" + } + }, + { + "id":"21ab7d5a-0c57-4576-9658-09522cda233f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T21:02:16.756Z", + "completed":"2016-03-27T21:02:16.756Z", + "new_balance":"5490.59", + "value":"-1.20" + } + }, + { + "id":"5ecfc9f1-1bab-44fe-a5d1-e218b2aa2b26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T17:37:10.966Z", + "completed":"2016-03-28T17:37:10.966Z", + "new_balance":"5486.87", + "value":"-3.72" + } + }, + { + "id":"01816681-b874-4f51-be19-5d194fb52138", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T21:33:13.190Z", + "completed":"2016-03-31T21:33:13.190Z", + "new_balance":"5464.51", + "value":"-22.36" + } + }, + { + "id":"1b57682d-a9d6-47c8-b5d6-4f859f228513", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T05:00:49.246Z", + "completed":"2016-04-01T05:00:49.246Z", + "new_balance":"5432.79", + "value":"-31.72" + } + }, + { + "id":"4b2a5364-f8ef-4177-922a-f01a2923caca", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T16:56:41.649Z", + "completed":"2016-04-01T16:56:41.649Z", + "new_balance":"5615.49", + "value":"182.70" + } + }, + { + "id":"f12a8c17-dbdb-4354-9a43-65b54516711a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T20:46:08.841Z", + "completed":"2016-04-01T20:46:08.841Z", + "new_balance":"5756.47", + "value":"140.98" + } + }, + { + "id":"9604a8d0-b338-4bc6-b9d7-f03d61636811", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T07:05:00.528Z", + "completed":"2016-04-03T07:05:00.528Z", + "new_balance":"5751.65", + "value":"-4.82" + } + }, + { + "id":"97285fc5-7263-4787-8978-9de7bf6017ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T19:19:27.231Z", + "completed":"2016-04-03T19:19:27.231Z", + "new_balance":"5750.98", + "value":"-0.67" + } + }, + { + "id":"2a22238e-0c57-472a-8342-b0383af7c862", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T20:42:23.314Z", + "completed":"2016-04-03T20:42:23.314Z", + "new_balance":"5749.24", + "value":"-1.74" + } + }, + { + "id":"cacd7b00-c1ee-4a78-9498-28156e9b09a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T11:44:58.359Z", + "completed":"2016-04-05T11:44:58.359Z", + "new_balance":"5748.72", + "value":"-0.52" + } + }, + { + "id":"b6562125-6bb1-4e7d-b0d5-c79639cb9031", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T14:23:54.353Z", + "completed":"2016-04-05T14:23:54.353Z", + "new_balance":"5747.32", + "value":"-1.40" + } + }, + { + "id":"87f9c5c8-46b7-4ff9-a1c3-4dab3fe67d55", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T14:54:44.582Z", + "completed":"2016-04-06T14:54:44.582Z", + "new_balance":"5745.72", + "value":"-1.60" + } + }, + { + "id":"20ba67c7-c2c1-42c7-a258-243abcf09a35", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T06:11:09.644Z", + "completed":"2016-04-09T06:11:09.644Z", + "new_balance":"5743.13", + "value":"-2.59" + } + }, + { + "id":"eae76fd6-4471-47c9-8f3e-5ce443ad1e47", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T04:41:22.125Z", + "completed":"2016-04-10T04:41:22.125Z", + "new_balance":"5741.45", + "value":"-1.68" + } + }, + { + "id":"f7111210-bc3f-470f-8c83-4b9fff346b06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:27:14.270Z", + "completed":"2016-04-11T14:27:14.270Z", + "new_balance":"5739.58", + "value":"-1.87" + } + }, + { + "id":"73ed3582-584a-4c96-9876-c60ef761fa28", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T18:45:37.032Z", + "completed":"2016-04-11T18:45:37.032Z", + "new_balance":"5737.27", + "value":"-2.31" + } + }, + { + "id":"afa50773-c4c0-4012-b093-1852e3174691", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T03:45:04.946Z", + "completed":"2016-04-13T03:45:04.946Z", + "new_balance":"5729.57", + "value":"-7.70" + } + }, + { + "id":"316c290a-939d-4550-bd95-4b05b70661a8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T22:11:49.665Z", + "completed":"2016-04-13T22:11:49.665Z", + "new_balance":"5723.44", + "value":"-6.13" + } + }, + { + "id":"c98be94f-a14f-46f6-9d76-9ce8f5935dd7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T07:46:36.183Z", + "completed":"2016-04-15T07:46:36.183Z", + "new_balance":"5718.91", + "value":"-4.53" + } + }, + { + "id":"e847b612-7416-40e2-b277-20dd7fa9d80b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T04:43:41.877Z", + "completed":"2016-04-16T04:43:41.877Z", + "new_balance":"5718.10", + "value":"-0.81" + } + }, + { + "id":"5e0a848e-b546-40f1-8b9b-b21458315c3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T17:35:21.330Z", + "completed":"2016-04-16T17:35:21.330Z", + "new_balance":"5717.63", + "value":"-0.47" + } + }, + { + "id":"a61cc42b-90a2-4bcb-a193-ea0953b31428", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T11:47:59.709Z", + "completed":"2016-04-18T11:47:59.709Z", + "new_balance":"5712.15", + "value":"-5.48" + } + }, + { + "id":"d22056dd-3894-45fa-937d-78a3f1f573a7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T22:41:36.769Z", + "completed":"2016-04-23T22:41:36.769Z", + "new_balance":"5709.72", + "value":"-2.43" + } + }, + { + "id":"dcf9a2bc-c456-44fe-936c-906493f53a2d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T00:48:58.307Z", + "completed":"2016-04-24T00:48:58.307Z", + "new_balance":"5708.15", + "value":"-1.57" + } + }, + { + "id":"18c86f47-f2fa-464e-930f-fd86a465b3f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T04:33:38.570Z", + "completed":"2016-04-24T04:33:38.570Z", + "new_balance":"5704.85", + "value":"-3.30" + } + }, + { + "id":"afbcdcf4-2143-4396-b356-26e2bfccd802", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T11:24:36.401Z", + "completed":"2016-04-26T11:24:36.401Z", + "new_balance":"5704.33", + "value":"-0.52" + } + }, + { + "id":"9257297f-8324-4414-be41-85b955dc88a7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T03:09:56.141Z", + "completed":"2016-04-28T03:09:56.141Z", + "new_balance":"5700.61", + "value":"-3.72" + } + }, + { + "id":"c9c9bf3a-76f0-45c6-8572-efccdfe808d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T13:25:20.618Z", + "completed":"2016-04-28T13:25:20.618Z", + "new_balance":"5678.25", + "value":"-22.36" + } + }, + { + "id":"0fe4f3d7-cb83-4d12-bc2a-6295a9c56d3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T03:36:39.861Z", + "completed":"2016-05-02T03:36:39.861Z", + "new_balance":"5665.15", + "value":"-13.10" + } + }, + { + "id":"8d8894bd-d825-472e-8063-e9d5dc7ac281", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T03:54:50.040Z", + "completed":"2016-05-02T03:54:50.040Z", + "new_balance":"5664.48", + "value":"-0.67" + } + }, + { + "id":"be6bd602-a841-44a5-b639-7b149921a9e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T04:23:50.355Z", + "completed":"2016-05-02T04:23:50.355Z", + "new_balance":"5632.76", + "value":"-31.72" + } + }, + { + "id":"179f7ede-bf1e-4672-a2a4-7320d935241a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T23:29:05.083Z", + "completed":"2016-05-02T23:29:05.083Z", + "new_balance":"5631.44", + "value":"-1.32" + } + }, + { + "id":"4f0cd619-fa5e-467a-85ce-81915704bf51", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T11:20:36.591Z", + "completed":"2016-05-06T11:20:36.591Z", + "new_balance":"5629.25", + "value":"-2.19" + } + }, + { + "id":"23c8a324-8f47-4e24-905a-c72de4b35233", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T22:17:29.421Z", + "completed":"2016-05-06T22:17:29.421Z", + "new_balance":"5626.94", + "value":"-2.31" + } + }, + { + "id":"c9116fcc-2b95-4eeb-932a-8765a8598378", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T07:27:26.566Z", + "completed":"2016-05-07T07:27:26.566Z", + "new_balance":"5622.37", + "value":"-4.57" + } + }, + { + "id":"41055845-2e1f-4ee2-af02-b205124e8b9d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T20:54:22.124Z", + "completed":"2016-05-07T20:54:22.124Z", + "new_balance":"5614.67", + "value":"-7.70" + } + }, + { + "id":"75ed4151-0e10-419d-8e9d-661b6a0b971f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T17:40:53.542Z", + "completed":"2016-05-09T17:40:53.542Z", + "new_balance":"5755.65", + "value":"140.98" + } + }, + { + "id":"c91b58e3-8bc7-46af-b683-58427fb72d4a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T08:36:57.890Z", + "completed":"2016-05-14T08:36:57.890Z", + "new_balance":"5751.51", + "value":"-4.14" + } + }, + { + "id":"feb3f9bf-02a7-48ac-91f3-84c92614fd51", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T11:01:56.352Z", + "completed":"2016-05-14T11:01:56.352Z", + "new_balance":"5749.11", + "value":"-2.40" + } + }, + { + "id":"d5aa2e02-37d3-4127-9da0-7a04993cb28d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T22:50:08.417Z", + "completed":"2016-05-16T22:50:08.417Z", + "new_balance":"5748.59", + "value":"-0.52" + } + }, + { + "id":"25197b1d-b88e-400d-b910-e3cd20ea4846", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T09:37:16.867Z", + "completed":"2016-05-21T09:37:16.867Z", + "new_balance":"5745.71", + "value":"-2.88" + } + }, + { + "id":"ec5660fd-8665-46e2-a040-c9d64f9c8b31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T14:52:37.834Z", + "completed":"2016-05-23T14:52:37.834Z", + "new_balance":"5745.24", + "value":"-0.47" + } + }, + { + "id":"67a19ffa-bde2-463e-b352-fa7c3e07dd3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T19:42:56.421Z", + "completed":"2016-05-23T19:42:56.421Z", + "new_balance":"5742.93", + "value":"-2.31" + } + }, + { + "id":"9f055413-558a-465c-a60f-a28c3853be46", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T21:23:52.602Z", + "completed":"2016-05-24T21:23:52.602Z", + "new_balance":"5738.32", + "value":"-4.61" + } + }, + { + "id":"9258ae9f-e9ca-4ebb-bfe1-30cea383bcb3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T17:07:20.104Z", + "completed":"2016-05-27T17:07:20.104Z", + "new_balance":"5737.73", + "value":"-0.59" + } + }, + { + "id":"32e17b73-1fe8-4fd3-844e-27a2e064f1d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T14:46:12.431Z", + "completed":"2016-05-30T14:46:12.431Z", + "new_balance":"5734.01", + "value":"-3.72" + } + }, + { + "id":"53b4bfd9-7def-4f78-93dd-5cfa8d94640b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T19:17:47.838Z", + "completed":"2016-05-30T19:17:47.838Z", + "new_balance":"5711.65", + "value":"-22.36" + } + }, + { + "id":"f52118db-ef44-4d3b-9427-e546a345e45d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T20:08:20.705Z", + "completed":"2016-06-01T20:08:20.705Z", + "new_balance":"5679.93", + "value":"-31.72" + } + }, + { + "id":"45e588ee-8cd9-48a2-bd21-6f61837920e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T21:34:15.160Z", + "completed":"2016-06-01T21:34:15.160Z", + "new_balance":"5820.91", + "value":"140.98" + } + }, + { + "id":"e8b949b3-b295-4cd2-9b5d-a8c62336c5ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T07:55:51.639Z", + "completed":"2016-06-04T07:55:51.639Z", + "new_balance":"5817.45", + "value":"-3.46" + } + }, + { + "id":"6d5dabd6-a57c-4449-b8a9-8bf1c5d60181", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T10:03:06.790Z", + "completed":"2016-06-04T10:03:06.790Z", + "new_balance":"5815.40", + "value":"-2.05" + } + }, + { + "id":"d6b263a7-db61-413b-9bf3-e6be2b7e94fe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T14:25:34.841Z", + "completed":"2016-06-11T14:25:34.841Z", + "new_balance":"5810.79", + "value":"-4.61" + } + }, + { + "id":"7f6c7362-3921-4854-ad0e-b3ffd5cd0f06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T14:35:35.623Z", + "completed":"2016-06-11T14:35:35.623Z", + "new_balance":"5807.49", + "value":"-3.30" + } + }, + { + "id":"7cc4d31c-698a-46ce-a629-7a57eda3a655", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T13:25:35.260Z", + "completed":"2016-06-12T13:25:35.260Z", + "new_balance":"5807.02", + "value":"-0.47" + } + }, + { + "id":"d42c7790-4582-40c0-a58f-f8ed2650114a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T13:41:26.658Z", + "completed":"2016-06-12T13:41:26.658Z", + "new_balance":"5805.72", + "value":"-1.30" + } + }, + { + "id":"a2792106-36f5-4a33-a227-60867b3d5021", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T22:11:47.215Z", + "completed":"2016-06-12T22:11:47.215Z", + "new_balance":"5798.02", + "value":"-7.70" + } + }, + { + "id":"34bdeab3-2f5d-41c5-a3e7-c51ac0eaf38a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T03:02:45.885Z", + "completed":"2016-06-13T03:02:45.885Z", + "new_balance":"5790.28", + "value":"-7.74" + } + }, + { + "id":"6190b842-af1b-4b5b-80e7-bcf8e7e1bb5a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T13:19:48.815Z", + "completed":"2016-06-13T13:19:48.815Z", + "new_balance":"5783.53", + "value":"-6.75" + } + }, + { + "id":"0b781472-cb58-4762-8244-30dd1ec147e1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T17:56:14.668Z", + "completed":"2016-06-13T17:56:14.668Z", + "new_balance":"5776.89", + "value":"-6.64" + } + }, + { + "id":"dea07d1f-e825-49f8-8cc7-a9ae356e21c2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T09:45:04.259Z", + "completed":"2016-06-14T09:45:04.259Z", + "new_balance":"5776.42", + "value":"-0.47" + } + }, + { + "id":"f4f66a27-60fc-4215-9574-388052c2b788", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T12:37:29.771Z", + "completed":"2016-06-14T12:37:29.771Z", + "new_balance":"5775.62", + "value":"-0.80" + } + }, + { + "id":"97e363ad-a7c6-4c99-8967-3ca859490cd0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T22:24:25.758Z", + "completed":"2016-06-14T22:24:25.758Z", + "new_balance":"5774.82", + "value":"-0.80" + } + }, + { + "id":"f1e60c6c-be60-4d2d-baa5-140ca870ffe1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T00:11:13.189Z", + "completed":"2016-06-15T00:11:13.189Z", + "new_balance":"5774.05", + "value":"-0.77" + } + }, + { + "id":"2120f469-e9f2-429a-9319-d6660c0589de", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:22:42.730Z", + "completed":"2016-06-15T05:22:42.730Z", + "new_balance":"5771.34", + "value":"-2.71" + } + }, + { + "id":"2570c85c-220e-4073-8170-623026f3e33c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T09:25:02.772Z", + "completed":"2016-06-15T09:25:02.772Z", + "new_balance":"5770.87", + "value":"-0.47" + } + }, + { + "id":"6e3adb41-6715-4e09-a07a-abc5a7d724bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T21:27:11.870Z", + "completed":"2016-06-16T21:27:11.870Z", + "new_balance":"5768.15", + "value":"-2.72" + } + }, + { + "id":"1f75d09d-3618-491e-9f45-c86bbc657e26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T00:06:10.904Z", + "completed":"2016-06-17T00:06:10.904Z", + "new_balance":"5766.55", + "value":"-1.60" + } + }, + { + "id":"70563cf1-33f7-41f5-b133-fabf334c11ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T01:22:19.014Z", + "completed":"2016-06-18T01:22:19.014Z", + "new_balance":"5756.40", + "value":"-10.15" + } + }, + { + "id":"c137607b-38e7-433c-833c-e93157da2e69", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T01:57:06.556Z", + "completed":"2016-06-18T01:57:06.556Z", + "new_balance":"5753.82", + "value":"-2.58" + } + }, + { + "id":"e3dcdd75-f7e0-4ffe-b397-292b4bca3154", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:19:12.434Z", + "completed":"2016-06-18T02:19:12.434Z", + "new_balance":"5753.35", + "value":"-0.47" + } + }, + { + "id":"f10b126f-a70b-4ab8-9ee0-6a4a1d5846e2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T12:53:43.988Z", + "completed":"2016-06-18T12:53:43.988Z", + "new_balance":"5752.88", + "value":"-0.47" + } + }, + { + "id":"5b36da65-ba61-440a-a7f3-bace28deb445", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T14:48:20.518Z", + "completed":"2016-06-18T14:48:20.518Z", + "new_balance":"5750.29", + "value":"-2.59" + } + }, + { + "id":"3382a7f8-b9fd-4eed-9481-9c308817d38b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T15:28:54.114Z", + "completed":"2016-06-18T15:28:54.114Z", + "new_balance":"5744.13", + "value":"-6.16" + } + }, + { + "id":"6569313f-b6b4-43ba-ab01-3c592ab0e9f0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T00:58:41.122Z", + "completed":"2016-06-19T00:58:41.122Z", + "new_balance":"5739.74", + "value":"-4.39" + } + }, + { + "id":"0a439808-09d7-4c9e-872d-2c8bb764ee1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T09:14:25.105Z", + "completed":"2016-06-19T09:14:25.105Z", + "new_balance":"5734.82", + "value":"-4.92" + } + }, + { + "id":"7ca68f9c-d292-4c17-94d3-54c3175eeae8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T20:36:35.187Z", + "completed":"2016-06-19T20:36:35.187Z", + "new_balance":"5730.70", + "value":"-4.12" + } + }, + { + "id":"8c7ef798-ecbd-4f10-9192-241a98c1cc15", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T03:01:15.064Z", + "completed":"2016-06-21T03:01:15.064Z", + "new_balance":"5721.09", + "value":"-9.61" + } + }, + { + "id":"432358bf-0f2e-46aa-9872-73851f766245", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T10:18:46.651Z", + "completed":"2016-06-21T10:18:46.651Z", + "new_balance":"5708.73", + "value":"-12.36" + } + }, + { + "id":"5c61fba7-0b58-4cf3-8a9e-346477ccb0d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T01:55:40.779Z", + "completed":"2016-06-22T01:55:40.779Z", + "new_balance":"5708.26", + "value":"-0.47" + } + }, + { + "id":"5b65584f-4579-4bd3-bc44-a52232353f3f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T02:59:41.615Z", + "completed":"2016-06-22T02:59:41.615Z", + "new_balance":"5704.79", + "value":"-3.47" + } + }, + { + "id":"984ee61f-a6da-42c0-9e15-8c33d3ee4d45", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T07:27:42.782Z", + "completed":"2016-06-22T07:27:42.782Z", + "new_balance":"5703.64", + "value":"-1.15" + } + }, + { + "id":"55f43e43-3d03-42d2-b1ca-d75d174d4e22", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T18:22:51.843Z", + "completed":"2016-06-23T18:22:51.843Z", + "new_balance":"5702.29", + "value":"-1.35" + } + }, + { + "id":"fbed936f-075e-4bef-89a5-a4fd6b48c694", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T23:16:55.851Z", + "completed":"2016-06-24T23:16:55.851Z", + "new_balance":"5699.90", + "value":"-2.39" + } + }, + { + "id":"d334b98a-0c9b-4afa-9aec-4afd5752b390", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T09:04:37.871Z", + "completed":"2016-06-26T09:04:37.871Z", + "new_balance":"5698.70", + "value":"-1.20" + } + }, + { + "id":"12aca8d9-da38-48b9-bb8d-66179320aa58", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T08:19:54.167Z", + "completed":"2016-06-30T08:19:54.167Z", + "new_balance":"5694.98", + "value":"-3.72" + } + }, + { + "id":"cba7489a-49d9-45fe-a6f0-a3934f4235f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T14:56:53.764Z", + "completed":"2016-06-30T14:56:53.764Z", + "new_balance":"5672.62", + "value":"-22.36" + } + }, + { + "id":"55fd1035-86e6-46e2-aea9-d9a8f53860a9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:14:29.493Z", + "completed":"2016-07-01T18:14:29.493Z", + "new_balance":"5855.32", + "value":"182.70" + } + }, + { + "id":"013340c6-cfc5-4786-b5b0-56b84523e907", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:27:15.014Z", + "completed":"2016-07-01T18:27:15.014Z", + "new_balance":"5996.30", + "value":"140.98" + } + }, + { + "id":"d0485861-71ee-459a-b09b-6992876e49f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T13:31:42.631Z", + "completed":"2016-07-03T13:31:42.631Z", + "new_balance":"5964.58", + "value":"-31.72" + } + }, + { + "id":"0a94020e-b7d5-43d1-8deb-f52167971463", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T07:19:34.637Z", + "completed":"2016-07-04T07:19:34.637Z", + "new_balance":"5959.76", + "value":"-4.82" + } + }, + { + "id":"92d493bf-59a6-43bd-990e-e217cf04eb5f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T12:09:24.601Z", + "completed":"2016-07-04T12:09:24.601Z", + "new_balance":"5959.09", + "value":"-0.67" + } + }, + { + "id":"2405f984-3f79-42bd-b007-c2615ca72892", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T20:42:48.727Z", + "completed":"2016-07-04T20:42:48.727Z", + "new_balance":"5957.35", + "value":"-1.74" + } + }, + { + "id":"e61036db-dd17-4716-8be7-f6e91e6d91e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T03:10:24.579Z", + "completed":"2016-07-05T03:10:24.579Z", + "new_balance":"5955.95", + "value":"-1.40" + } + }, + { + "id":"574b7f57-0b64-4511-ace4-5e147f760da7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T03:42:25.727Z", + "completed":"2016-07-07T03:42:25.727Z", + "new_balance":"5955.43", + "value":"-0.52" + } + }, + { + "id":"0e65cfd3-a86b-45aa-8306-f8d60b817173", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T05:30:24.872Z", + "completed":"2016-07-11T05:30:24.872Z", + "new_balance":"5953.83", + "value":"-1.60" + } + }, + { + "id":"909755f6-c64f-44ce-aef1-dad7f28de49a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T10:20:07.249Z", + "completed":"2016-07-11T10:20:07.249Z", + "new_balance":"5952.15", + "value":"-1.68" + } + }, + { + "id":"3c35c8e2-304b-4c31-af04-cb8ead427733", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T11:28:51.355Z", + "completed":"2016-07-11T11:28:51.355Z", + "new_balance":"5949.56", + "value":"-2.59" + } + }, + { + "id":"d317052a-2de7-4fdc-b284-40333e34d0e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T19:41:27.527Z", + "completed":"2016-07-11T19:41:27.527Z", + "new_balance":"5947.25", + "value":"-2.31" + } + }, + { + "id":"11771867-ed33-47e6-a8aa-5e5ccf041b53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T21:09:55.454Z", + "completed":"2016-07-11T21:09:55.454Z", + "new_balance":"5945.38", + "value":"-1.87" + } + }, + { + "id":"b81895aa-6c6e-459c-bbe2-92f3e1512d29", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T11:09:07.208Z", + "completed":"2016-07-13T11:09:07.208Z", + "new_balance":"5939.25", + "value":"-6.13" + } + }, + { + "id":"75060213-597c-4923-bf6b-0f07b9c3c09b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T19:36:34.246Z", + "completed":"2016-07-13T19:36:34.246Z", + "new_balance":"5931.55", + "value":"-7.70" + } + }, + { + "id":"14a841be-6df7-458a-8685-1fa534464e79", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:42:02.790Z", + "completed":"2016-07-16T16:42:02.790Z", + "new_balance":"5940.54", + "value":"8.99" + } + }, + { + "id":"7110c9a2-5ed2-4607-8010-8db1b15cfb09", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T20:30:44.600Z", + "completed":"2016-07-16T20:30:44.600Z", + "new_balance":"5936.01", + "value":"-4.53" + } + }, + { + "id":"50e35a5a-cdf7-442a-8927-e2b019f15bfa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T03:22:24.722Z", + "completed":"2016-07-17T03:22:24.722Z", + "new_balance":"5935.20", + "value":"-0.81" + } + }, + { + "id":"fd3824fc-45e9-42a8-b2d3-6205c0ce54f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:39:30.988Z", + "completed":"2016-07-17T03:39:30.988Z", + "new_balance":"5934.73", + "value":"-0.47" + } + }, + { + "id":"5b80614a-52ff-439f-a484-34526e5c6c6f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T16:34:07.233Z", + "completed":"2016-07-19T16:34:07.233Z", + "new_balance":"5929.25", + "value":"-5.48" + } + }, + { + "id":"f98e8538-ec9d-4176-b278-43e6e90ea1e7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T02:34:18.468Z", + "completed":"2016-07-21T02:34:18.468Z", + "new_balance":"5926.82", + "value":"-2.43" + } + }, + { + "id":"586ddef2-0212-4ec0-91d4-e8f2e7f72beb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T18:11:19.644Z", + "completed":"2016-07-23T18:11:19.644Z", + "new_balance":"5923.52", + "value":"-3.30" + } + }, + { + "id":"d5954d97-5a23-470b-88f8-3965eb834611", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T17:25:59.173Z", + "completed":"2016-07-25T17:25:59.173Z", + "new_balance":"5921.95", + "value":"-1.57" + } + }, + { + "id":"f97abc7e-d59a-4e98-b068-54a467d42553", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T22:50:02.008Z", + "completed":"2016-07-27T22:50:02.008Z", + "new_balance":"5921.43", + "value":"-0.52" + } + }, + { + "id":"4540b816-ff3a-4093-adc5-47e26b6ea689", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T12:38:51.848Z", + "completed":"2016-07-28T12:38:51.848Z", + "new_balance":"5899.07", + "value":"-22.36" + } + }, + { + "id":"1e0fa58f-9ff3-4a5f-980c-d96bb0359f59", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T19:32:02.026Z", + "completed":"2016-07-28T19:32:02.026Z", + "new_balance":"5895.35", + "value":"-3.72" + } + }, + { + "id":"6a63f18a-bcda-4fb5-9719-847b8719c554", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T02:34:25.935Z", + "completed":"2016-08-01T02:34:25.935Z", + "new_balance":"6036.33", + "value":"140.98" + } + }, + { + "id":"b6aa5f7f-cb77-4229-9669-d1ce3802ea88", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:34:49.635Z", + "completed":"2016-08-03T09:34:49.635Z", + "new_balance":"6004.61", + "value":"-31.72" + } + }, + { + "id":"1926858c-1093-4c30-917b-9d0e46b92faa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T22:19:20.445Z", + "completed":"2016-08-03T22:19:20.445Z", + "new_balance":"5991.51", + "value":"-13.10" + } + }, + { + "id":"7db4c755-9d8d-4411-a0f7-f475d1e83730", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T02:09:59.742Z", + "completed":"2016-08-04T02:09:59.742Z", + "new_balance":"5990.19", + "value":"-1.32" + } + }, + { + "id":"9a13b799-78af-47b7-8889-72ab8a602eea", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T00:15:25.276Z", + "completed":"2016-08-07T00:15:25.276Z", + "new_balance":"5988.00", + "value":"-2.19" + } + }, + { + "id":"1e0ae56c-2e02-455a-bec1-e08ce0bff869", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T07:59:44.184Z", + "completed":"2016-08-07T07:59:44.184Z", + "new_balance":"5987.33", + "value":"-0.67" + } + }, + { + "id":"6f487c6c-42ad-4ecc-aa22-3ecc2494db37", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T21:44:50.368Z", + "completed":"2016-08-07T21:44:50.368Z", + "new_balance":"5985.02", + "value":"-2.31" + } + }, + { + "id":"11311f72-bf26-4227-afa2-3d7ebe0ba8ae", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T09:02:55.660Z", + "completed":"2016-08-08T09:02:55.660Z", + "new_balance":"5980.88", + "value":"-4.14" + } + }, + { + "id":"da40351b-1dcd-4f44-9cfe-f682c1614c02", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T09:53:17.341Z", + "completed":"2016-08-08T09:53:17.341Z", + "new_balance":"5976.31", + "value":"-4.57" + } + }, + { + "id":"f2111b16-69f4-44c3-8bba-63b961f67903", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T14:36:30.167Z", + "completed":"2016-08-08T14:36:30.167Z", + "new_balance":"5968.61", + "value":"-7.70" + } + }, + { + "id":"8cd33f3f-6147-4a2e-be2d-c56ffcf8162a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T02:57:34.660Z", + "completed":"2016-08-09T02:57:34.660Z", + "new_balance":"5966.21", + "value":"-2.40" + } + }, + { + "id":"b57197f5-175d-4cee-992a-7b84aae14017", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T09:32:48.138Z", + "completed":"2016-08-11T09:32:48.138Z", + "new_balance":"5965.69", + "value":"-0.52" + } + }, + { + "id":"92d351c0-0522-4cb6-bdeb-05edaa788a8e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T14:12:54.227Z", + "completed":"2016-08-14T14:12:54.227Z", + "new_balance":"5962.81", + "value":"-2.88" + } + }, + { + "id":"0078be9d-a294-4ddc-95b6-0429e7a48c5a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T03:14:13.570Z", + "completed":"2016-08-15T03:14:13.570Z", + "new_balance":"5960.50", + "value":"-2.31" + } + }, + { + "id":"fd24485e-d32e-418c-b4a4-8bfa0cdd9e26", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T01:11:22.982Z", + "completed":"2016-08-17T01:11:22.982Z", + "new_balance":"5960.03", + "value":"-0.47" + } + }, + { + "id":"f6d83101-2323-4dc3-9ec0-715353c437d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T15:34:31.170Z", + "completed":"2016-08-17T15:34:31.170Z", + "new_balance":"5955.42", + "value":"-4.61" + } + }, + { + "id":"82c1b6e6-d58a-4872-88f2-ece1a4d731e9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T16:52:39.012Z", + "completed":"2016-08-19T16:52:39.012Z", + "new_balance":"5954.83", + "value":"-0.59" + } + }, + { + "id":"c4f9b323-2787-4973-b5fd-0bfad8683dfe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T12:26:22.097Z", + "completed":"2016-08-25T12:26:22.097Z", + "new_balance":"5966.23", + "value":"11.40" + } + }, + { + "id":"a66427c2-e198-4c76-a0a1-5a8e5ed3dfc9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T02:15:35.133Z", + "completed":"2016-08-28T02:15:35.133Z", + "new_balance":"5943.87", + "value":"-22.36" + } + }, + { + "id":"f7641473-963c-44bf-af91-25d7f1479a58", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T21:55:01.186Z", + "completed":"2016-08-28T21:55:01.186Z", + "new_balance":"5940.15", + "value":"-3.72" + } + }, + { + "id":"607793a0-a9b5-40dd-81c4-5ee3a565c13e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T21:11:19.835Z", + "completed":"2016-09-01T21:11:19.835Z", + "new_balance":"6081.13", + "value":"140.98" + } + }, + { + "id":"ff323ff4-60b5-4157-8ccf-fa7f53bdcde5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T08:45:14.061Z", + "completed":"2016-09-03T08:45:14.061Z", + "new_balance":"6049.41", + "value":"-31.72" + } + }, + { + "id":"f3c58040-5687-406a-92f5-2a77312b3f94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T03:05:11.671Z", + "completed":"2016-09-04T03:05:11.671Z", + "new_balance":"6046.11", + "value":"-3.30" + } + }, + { + "id":"ff83e1fc-5444-4870-96c2-0af34320a8ba", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T04:16:15.633Z", + "completed":"2016-09-04T04:16:15.633Z", + "new_balance":"6044.06", + "value":"-2.05" + } + }, + { + "id":"2ecea9d5-5908-4b0a-8b54-d6d1d91263e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:44:31.916Z", + "completed":"2016-09-04T10:44:31.916Z", + "new_balance":"6040.60", + "value":"-3.46" + } + }, + { + "id":"8715c9c9-d0bf-4854-8de7-7ba6655cc71e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T13:52:06.779Z", + "completed":"2016-09-04T13:52:06.779Z", + "new_balance":"6035.99", + "value":"-4.61" + } + }, + { + "id":"3b77a528-ce3e-49d8-9e6f-c312f9cdf0d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T02:25:09.376Z", + "completed":"2016-09-05T02:25:09.376Z", + "new_balance":"6029.35", + "value":"-6.64" + } + }, + { + "id":"5da7f250-3d0e-4e84-8a81-060324b0699c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T05:39:52.896Z", + "completed":"2016-09-05T05:39:52.896Z", + "new_balance":"6021.61", + "value":"-7.74" + } + }, + { + "id":"6a5ff0e3-3eb3-4fbc-aa6e-9e5cac4ffbd0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T07:02:29.958Z", + "completed":"2016-09-05T07:02:29.958Z", + "new_balance":"6014.86", + "value":"-6.75" + } + }, + { + "id":"e87b5c9e-23b2-4ba4-b989-e03097b19a57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T08:26:46.667Z", + "completed":"2016-09-05T08:26:46.667Z", + "new_balance":"6007.16", + "value":"-7.70" + } + }, + { + "id":"40665f09-bafd-4e20-bc62-62e03b504eea", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T13:36:57.664Z", + "completed":"2016-09-05T13:36:57.664Z", + "new_balance":"6005.86", + "value":"-1.30" + } + }, + { + "id":"8cd4633a-6ef2-4797-82ed-48bb87b7a5df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T17:19:03.166Z", + "completed":"2016-09-05T17:19:03.166Z", + "new_balance":"6005.39", + "value":"-0.47" + } + }, + { + "id":"df27263c-5dd9-4607-93dd-915f51b5b658", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T00:22:01.850Z", + "completed":"2016-09-07T00:22:01.850Z", + "new_balance":"6004.59", + "value":"-0.80" + } + }, + { + "id":"a70255f5-64e0-4385-8149-a05bfd2385de", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T08:06:41.356Z", + "completed":"2016-09-07T08:06:41.356Z", + "new_balance":"6003.79", + "value":"-0.80" + } + }, + { + "id":"f9c4ade5-8c87-4e2e-8bd7-b7eda73843a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T22:04:39.814Z", + "completed":"2016-09-07T22:04:39.814Z", + "new_balance":"6003.02", + "value":"-0.77" + } + }, + { + "id":"35c455f2-7de0-4bcc-8b7d-2cd31b70ae05", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T22:31:57.985Z", + "completed":"2016-09-07T22:31:57.985Z", + "new_balance":"6002.55", + "value":"-0.47" + } + }, + { + "id":"60a9ec41-e3f7-46d6-a0ac-a507c349019b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T03:03:14.662Z", + "completed":"2016-09-10T03:03:14.662Z", + "new_balance":"5999.84", + "value":"-2.71" + } + }, + { + "id":"90aa63e3-bf09-49d5-960f-4564ec928e82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T00:48:23.855Z", + "completed":"2016-09-11T00:48:23.855Z", + "new_balance":"5998.24", + "value":"-1.60" + } + }, + { + "id":"f341c17c-5a72-414a-ab62-4bf8137cda3d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T00:58:29.082Z", + "completed":"2016-09-11T00:58:29.082Z", + "new_balance":"5997.77", + "value":"-0.47" + } + }, + { + "id":"4c870574-d487-4759-b384-620b1b4e07d9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T23:40:35.929Z", + "completed":"2016-09-11T23:40:35.929Z", + "new_balance":"5995.05", + "value":"-2.72" + } + }, + { + "id":"1e9070a9-68fc-4810-b94e-b29eb0b779db", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:13:13.107Z", + "completed":"2016-09-12T10:13:13.107Z", + "new_balance":"5988.89", + "value":"-6.16" + } + }, + { + "id":"9803e43a-d7c1-4add-a758-30419540b26e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T16:15:40.233Z", + "completed":"2016-09-12T16:15:40.233Z", + "new_balance":"5978.74", + "value":"-10.15" + } + }, + { + "id":"76f77cf5-299d-4b16-98dd-1cb4840e60b8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T16:19:15.343Z", + "completed":"2016-09-12T16:19:15.343Z", + "new_balance":"5978.27", + "value":"-0.47" + } + }, + { + "id":"4a791b13-a266-4d71-90c1-c9a58646cebe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T23:13:43.324Z", + "completed":"2016-09-12T23:13:43.324Z", + "new_balance":"5975.68", + "value":"-2.59" + } + }, + { + "id":"9586e292-8ff0-4434-b8d9-2dd80997d1c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T00:26:25.830Z", + "completed":"2016-09-13T00:26:25.830Z", + "new_balance":"5973.10", + "value":"-2.58" + } + }, + { + "id":"aa4b4be8-5317-4c21-9ef4-5d1550f63239", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T06:43:27.115Z", + "completed":"2016-09-14T06:43:27.115Z", + "new_balance":"5972.63", + "value":"-0.47" + } + }, + { + "id":"454f4ffe-7ce7-4c62-8a21-859770ee2c83", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T14:54:41.240Z", + "completed":"2016-09-14T14:54:41.240Z", + "new_balance":"5967.71", + "value":"-4.92" + } + }, + { + "id":"515aa120-2652-4f05-aa71-8688a1e7bfad", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T13:30:50.691Z", + "completed":"2016-09-16T13:30:50.691Z", + "new_balance":"5963.59", + "value":"-4.12" + } + }, + { + "id":"eaf17d7c-90b2-4249-919b-8b7326743857", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T16:26:32.061Z", + "completed":"2016-09-18T16:26:32.061Z", + "new_balance":"5959.20", + "value":"-4.39" + } + }, + { + "id":"3a7eb43f-0cf2-4e10-9670-a82acaa8bb53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T02:09:05.973Z", + "completed":"2016-09-21T02:09:05.973Z", + "new_balance":"5946.84", + "value":"-12.36" + } + }, + { + "id":"9f59c822-e10b-4650-a497-6d72c6d58ca7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:29:03.428Z", + "completed":"2016-09-21T10:29:03.428Z", + "new_balance":"5937.23", + "value":"-9.61" + } + }, + { + "id":"e313b636-35cc-46c4-aa22-87d7f845f95c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T22:40:45.688Z", + "completed":"2016-09-23T22:40:45.688Z", + "new_balance":"5933.76", + "value":"-3.47" + } + }, + { + "id":"4006dd7a-ad6b-4859-8d1e-2aec23b6adb5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T12:07:08.790Z", + "completed":"2016-09-24T12:07:08.790Z", + "new_balance":"5933.29", + "value":"-0.47" + } + }, + { + "id":"67a73d26-b138-4940-90f0-47e93072064b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T05:17:44.476Z", + "completed":"2016-09-26T05:17:44.476Z", + "new_balance":"5932.14", + "value":"-1.15" + } + }, + { + "id":"ceb9523a-4d3a-4416-933d-aa98c487747e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T11:40:16.975Z", + "completed":"2016-09-26T11:40:16.975Z", + "new_balance":"5929.75", + "value":"-2.39" + } + }, + { + "id":"76272005-d3e8-43cf-a165-334e3908575e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:31:47.119Z", + "completed":"2016-09-26T15:31:47.119Z", + "new_balance":"5928.40", + "value":"-1.35" + } + }, + { + "id":"31297d6a-0a2b-47a4-bfae-ff413658533a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T13:42:46.135Z", + "completed":"2016-09-27T13:42:46.135Z", + "new_balance":"5927.20", + "value":"-1.20" + } + }, + { + "id":"6b61cd24-d169-4df2-be04-354fb516208e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:04:13.750Z", + "completed":"2016-09-28T06:04:13.750Z", + "new_balance":"5923.48", + "value":"-3.72" + } + }, + { + "id":"5967adc9-38a5-4a63-8f4d-735c793cfa07", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T22:09:56.498Z", + "completed":"2016-09-28T22:09:56.498Z", + "new_balance":"5901.12", + "value":"-22.36" + } + }, + { + "id":"a535a33e-0738-4ce2-8dc6-cae65817d797", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T12:37:28.974Z", + "completed":"2016-10-01T12:37:28.974Z", + "new_balance":"5869.40", + "value":"-31.72" + } + }, + { + "id":"e20bdcb2-b09f-4437-8333-c3c96f16c37c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T14:37:16.200Z", + "completed":"2016-10-01T14:37:16.200Z", + "new_balance":"6010.38", + "value":"140.98" + } + }, + { + "id":"bd05513f-858d-4fa1-aa4c-ee42c9cc48e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T16:35:51.911Z", + "completed":"2016-10-01T16:35:51.911Z", + "new_balance":"6193.08", + "value":"182.70" + } + }, + { + "id":"e3172ec0-454d-4ce3-9714-6dfb0f735509", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T01:25:42.371Z", + "completed":"2016-10-03T01:25:42.371Z", + "new_balance":"6192.41", + "value":"-0.67" + } + }, + { + "id":"1418498d-fa2a-4e88-b8cc-dd582c7c2320", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T02:35:52.787Z", + "completed":"2016-10-03T02:35:52.787Z", + "new_balance":"6190.67", + "value":"-1.74" + } + }, + { + "id":"aa0a0660-7ea1-4bb4-80a7-ba1309ccac97", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T13:17:01.273Z", + "completed":"2016-10-03T13:17:01.273Z", + "new_balance":"6185.85", + "value":"-4.82" + } + }, + { + "id":"1ed7a456-63ff-4021-9289-22ad7cc35452", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T08:21:46.043Z", + "completed":"2016-10-05T08:21:46.043Z", + "new_balance":"6185.33", + "value":"-0.52" + } + }, + { + "id":"b9af20fb-0a63-4a94-a14e-6df0abbcf98a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T18:02:58.920Z", + "completed":"2016-10-05T18:02:58.920Z", + "new_balance":"6183.93", + "value":"-1.40" + } + }, + { + "id":"a8b1d3c5-4cca-4ca6-890b-8b24da471287", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T00:30:23.540Z", + "completed":"2016-10-06T00:30:23.540Z", + "new_balance":"6182.33", + "value":"-1.60" + } + }, + { + "id":"ae50ba26-bbff-4598-bed3-ec567514f392", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T16:02:53.994Z", + "completed":"2016-10-09T16:02:53.994Z", + "new_balance":"6179.74", + "value":"-2.59" + } + }, + { + "id":"a48db152-7e1c-4b1c-95b4-e2188f9d6d8a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T22:21:31.571Z", + "completed":"2016-10-10T22:21:31.571Z", + "new_balance":"6178.06", + "value":"-1.68" + } + }, + { + "id":"fad8baf0-fab1-4834-8ff4-3c88beb7f35b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T08:08:55.971Z", + "completed":"2016-10-11T08:08:55.971Z", + "new_balance":"6175.75", + "value":"-2.31" + } + }, + { + "id":"572b88f8-19c4-421a-8386-ad28d3a5ff19", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:22:57.697Z", + "completed":"2016-10-11T17:22:57.697Z", + "new_balance":"6173.88", + "value":"-1.87" + } + }, + { + "id":"a92b9a98-acb0-4b17-a2fb-ad8cece0aa86", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T10:09:37.077Z", + "completed":"2016-10-14T10:09:37.077Z", + "new_balance":"6166.18", + "value":"-7.70" + } + }, + { + "id":"507e57b4-5ce2-44f6-8db5-fba47545a04e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T14:07:36.741Z", + "completed":"2016-10-14T14:07:36.741Z", + "new_balance":"6160.05", + "value":"-6.13" + } + }, + { + "id":"87528e4f-05d7-42fc-9f27-99f811719297", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T14:22:39.556Z", + "completed":"2016-10-17T14:22:39.556Z", + "new_balance":"6155.52", + "value":"-4.53" + } + }, + { + "id":"90e11b7d-bbdb-4ee1-84ca-08da343708e5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T01:00:58.240Z", + "completed":"2016-10-18T01:00:58.240Z", + "new_balance":"6154.71", + "value":"-0.81" + } + }, + { + "id":"e8ea4873-0c8f-4a89-8b2c-e631f13b5433", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T09:30:45.678Z", + "completed":"2016-10-18T09:30:45.678Z", + "new_balance":"6154.24", + "value":"-0.47" + } + }, + { + "id":"5ec362ed-a19d-4659-b573-dda47b39626f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T14:52:31.622Z", + "completed":"2016-10-18T14:52:31.622Z", + "new_balance":"6148.76", + "value":"-5.48" + } + }, + { + "id":"8a6b9eec-fb10-46cd-9f1e-ec89cce18379", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T03:25:29.409Z", + "completed":"2016-10-23T03:25:29.409Z", + "new_balance":"6146.33", + "value":"-2.43" + } + }, + { + "id":"44620eeb-c66f-4b80-8d00-61b54be33a53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T09:43:43.921Z", + "completed":"2016-10-24T09:43:43.921Z", + "new_balance":"6143.03", + "value":"-3.30" + } + }, + { + "id":"c2733d6d-61f6-4659-bde6-9be2205ed8c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T22:11:13.233Z", + "completed":"2016-10-24T22:11:13.233Z", + "new_balance":"6141.46", + "value":"-1.57" + } + }, + { + "id":"41b54e6e-78ca-4fdb-a219-42879810381f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T09:58:22.053Z", + "completed":"2016-10-26T09:58:22.053Z", + "new_balance":"6140.94", + "value":"-0.52" + } + }, + { + "id":"279acdfe-fccf-41a9-b231-89858bb32afa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T01:11:16.827Z", + "completed":"2016-10-30T01:11:16.827Z", + "new_balance":"6137.22", + "value":"-3.72" + } + }, + { + "id":"9068564d-ba4a-4e03-8144-1a06cf6cbb43", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T06:06:37.777Z", + "completed":"2016-10-30T06:06:37.777Z", + "new_balance":"6114.86", + "value":"-22.36" + } + }, + { + "id":"2699ff9f-de44-45b2-9756-5cbc302a6e6f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T03:12:03.242Z", + "completed":"2016-11-02T03:12:03.242Z", + "new_balance":"6113.54", + "value":"-1.32" + } + }, + { + "id":"47313011-af09-4080-9970-46ceef6a2549", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T03:43:26.874Z", + "completed":"2016-11-02T03:43:26.874Z", + "new_balance":"6112.87", + "value":"-0.67" + } + }, + { + "id":"318e25fa-c612-4cff-b023-e779fdb2f7e8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T07:14:33.469Z", + "completed":"2016-11-02T07:14:33.469Z", + "new_balance":"6099.77", + "value":"-13.10" + } + }, + { + "id":"73bedd82-6f67-43af-9472-e9d7885d2408", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T09:15:03.596Z", + "completed":"2016-11-02T09:15:03.596Z", + "new_balance":"6068.05", + "value":"-31.72" + } + }, + { + "id":"2dc33b95-59b1-496a-a2d8-8f9f75136ed3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T04:48:45.416Z", + "completed":"2016-11-06T04:48:45.416Z", + "new_balance":"6065.86", + "value":"-2.19" + } + }, + { + "id":"ffd957de-3c83-4ee7-97a1-d5e06d158e31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T15:11:15.625Z", + "completed":"2016-11-06T15:11:15.625Z", + "new_balance":"6063.55", + "value":"-2.31" + } + }, + { + "id":"4709c607-12e3-469b-ab69-e9cd4efb5f5d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T00:55:44.009Z", + "completed":"2016-11-07T00:55:44.009Z", + "new_balance":"6055.85", + "value":"-7.70" + } + }, + { + "id":"b66b9991-7ba7-4d9c-bd00-e292bab12a2f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T21:22:46.930Z", + "completed":"2016-11-07T21:22:46.930Z", + "new_balance":"6051.28", + "value":"-4.57" + } + }, + { + "id":"c00159b2-f1ab-43e1-982d-04518f4cd5e5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T10:08:26.797Z", + "completed":"2016-11-09T10:08:26.797Z", + "new_balance":"6192.26", + "value":"140.98" + } + }, + { + "id":"ef5cf459-f2ca-4da3-9c50-353334a89dc5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:42:16.722Z", + "completed":"2016-11-14T05:42:16.722Z", + "new_balance":"6188.12", + "value":"-4.14" + } + }, + { + "id":"d284b0f6-7350-4ea3-ae2d-b557bca6c307", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T15:19:21.301Z", + "completed":"2016-11-14T15:19:21.301Z", + "new_balance":"6185.72", + "value":"-2.40" + } + }, + { + "id":"afc1f669-e540-4a24-9bd9-3e0ab092ba91", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T07:06:07.798Z", + "completed":"2016-11-16T07:06:07.798Z", + "new_balance":"6185.20", + "value":"-0.52" + } + }, + { + "id":"5b856086-2d5f-4519-a216-8c54e81d1561", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T21:09:52.121Z", + "completed":"2016-11-20T21:09:52.121Z", + "new_balance":"6182.32", + "value":"-2.88" + } + }, + { + "id":"ebe7d3a2-bec7-45bf-8028-cd244f88cce4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T01:42:33.601Z", + "completed":"2016-11-23T01:42:33.601Z", + "new_balance":"6181.85", + "value":"-0.47" + } + }, + { + "id":"6f7d11a4-4e90-4a29-ab66-9ab4bc58f0fb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T15:46:03.635Z", + "completed":"2016-11-23T15:46:03.635Z", + "new_balance":"6177.24", + "value":"-4.61" + } + }, + { + "id":"3509454b-b7af-42ab-951d-5dd30b92cdc8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T20:46:20.865Z", + "completed":"2016-11-23T20:46:20.865Z", + "new_balance":"6174.93", + "value":"-2.31" + } + }, + { + "id":"fcd29af2-551d-4f23-b48b-bbb0145916d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T06:28:27.385Z", + "completed":"2016-11-28T06:28:27.385Z", + "new_balance":"6174.34", + "value":"-0.59" + } + }, + { + "id":"61816437-57ec-4194-b646-6b388eb7c66f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T06:55:12.167Z", + "completed":"2016-11-30T06:55:12.167Z", + "new_balance":"6151.98", + "value":"-22.36" + } + }, + { + "id":"4255e814-85d4-4785-9f0b-bb6629ac767e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T16:33:09.592Z", + "completed":"2016-11-30T16:33:09.592Z", + "new_balance":"6148.26", + "value":"-3.72" + } + }, + { + "id":"0d833de4-0ff5-475b-b938-ec07c9b160d4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T00:20:13.474Z", + "completed":"2016-12-01T00:20:13.474Z", + "new_balance":"6289.24", + "value":"140.98" + } + }, + { + "id":"bb090225-80f8-417f-81d2-45180ad618f5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T00:20:36.623Z", + "completed":"2016-12-01T00:20:36.623Z", + "new_balance":"6257.52", + "value":"-31.72" + } + }, + { + "id":"c87ae8c9-1611-46a8-88a9-5ee8514ea4d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:53:02.177Z", + "completed":"2016-12-04T14:53:02.177Z", + "new_balance":"6254.06", + "value":"-3.46" + } + }, + { + "id":"927315cc-cc8a-4ee1-8e08-d766186ee103", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T21:33:47.168Z", + "completed":"2016-12-04T21:33:47.168Z", + "new_balance":"6252.01", + "value":"-2.05" + } + }, + { + "id":"eea1ece4-447f-44d3-b948-7d3ec1e48c01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T09:03:43.676Z", + "completed":"2016-12-11T09:03:43.676Z", + "new_balance":"6248.71", + "value":"-3.30" + } + }, + { + "id":"2547008b-86d1-45c2-b52f-57e1480c5940", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T09:29:40.175Z", + "completed":"2016-12-11T09:29:40.175Z", + "new_balance":"6244.10", + "value":"-4.61" + } + }, + { + "id":"0c7ff0e6-3fa0-4224-ac52-d699e7e243c5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T02:34:42.670Z", + "completed":"2016-12-14T02:34:42.670Z", + "new_balance":"6236.40", + "value":"-7.70" + } + }, + { + "id":"48ccdf20-eadc-4757-a66a-6f6cc669c29a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T04:12:05.324Z", + "completed":"2016-12-14T04:12:05.324Z", + "new_balance":"6229.65", + "value":"-6.75" + } + }, + { + "id":"4e5b8c74-9923-42c6-8364-b906af3aa2d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T06:50:17.585Z", + "completed":"2016-12-14T06:50:17.585Z", + "new_balance":"6223.01", + "value":"-6.64" + } + }, + { + "id":"00e94327-83db-4556-b310-68a75495fc5f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T11:20:30.425Z", + "completed":"2016-12-14T11:20:30.425Z", + "new_balance":"6222.21", + "value":"-0.80" + } + }, + { + "id":"27867202-d5fc-488f-9956-3b9f0901d622", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T13:08:05.638Z", + "completed":"2016-12-14T13:08:05.638Z", + "new_balance":"6220.91", + "value":"-1.30" + } + }, + { + "id":"533521b0-324f-41d4-bef0-469e34069632", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T14:05:05.641Z", + "completed":"2016-12-14T14:05:05.641Z", + "new_balance":"6220.44", + "value":"-0.47" + } + }, + { + "id":"121a1486-9ef8-4e4e-8b66-abe610093ace", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T18:26:38.414Z", + "completed":"2016-12-14T18:26:38.414Z", + "new_balance":"6219.64", + "value":"-0.80" + } + }, + { + "id":"a9dad7a3-8adc-44b8-becc-ab8b04df7419", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T20:40:52.319Z", + "completed":"2016-12-14T20:40:52.319Z", + "new_balance":"6211.90", + "value":"-7.74" + } + }, + { + "id":"e2c0a3da-8c0d-4d89-9a10-1aa1b95fe875", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T21:04:42.329Z", + "completed":"2016-12-14T21:04:42.329Z", + "new_balance":"6211.43", + "value":"-0.47" + } + }, + { + "id":"f7d2f79b-6182-4c95-b6c8-9742d7ac6f73", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T01:33:05.090Z", + "completed":"2016-12-15T01:33:05.090Z", + "new_balance":"6210.66", + "value":"-0.77" + } + }, + { + "id":"237bafc1-f3e7-4ad0-84c8-f30b575ca0f9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T05:33:55.929Z", + "completed":"2016-12-15T05:33:55.929Z", + "new_balance":"6210.19", + "value":"-0.47" + } + }, + { + "id":"adbb6c57-8e3d-4ff5-9669-3594e4b7555b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:13:45.809Z", + "completed":"2016-12-15T18:13:45.809Z", + "new_balance":"6207.48", + "value":"-2.71" + } + }, + { + "id":"c5c298b1-f950-44d3-8ccb-19117b2f6ac9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T00:08:40.561Z", + "completed":"2016-12-18T00:08:40.561Z", + "new_balance":"6204.89", + "value":"-2.59" + } + }, + { + "id":"2b8250c1-7b76-440d-a222-85e1e8940e2c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T03:51:40.854Z", + "completed":"2016-12-18T03:51:40.854Z", + "new_balance":"6204.42", + "value":"-0.47" + } + }, + { + "id":"aef63704-dedc-4e59-964b-de981bca6131", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T11:34:49.989Z", + "completed":"2016-12-18T11:34:49.989Z", + "new_balance":"6201.70", + "value":"-2.72" + } + }, + { + "id":"83513a42-2df4-4d41-aef9-beeebbbcdf4d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T11:44:00.183Z", + "completed":"2016-12-18T11:44:00.183Z", + "new_balance":"6191.55", + "value":"-10.15" + } + }, + { + "id":"91bc4100-8ac6-4e58-a28d-e39182cfd14d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T12:51:00.245Z", + "completed":"2016-12-18T12:51:00.245Z", + "new_balance":"6189.95", + "value":"-1.60" + } + }, + { + "id":"f2d4c2a3-42b3-499d-a4a0-9b6268de2784", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T18:39:04.642Z", + "completed":"2016-12-18T18:39:04.642Z", + "new_balance":"6187.37", + "value":"-2.58" + } + }, + { + "id":"67aa0c92-6e89-4e89-a6ae-d5ce9f65cb01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T20:13:57.186Z", + "completed":"2016-12-18T20:13:57.186Z", + "new_balance":"6181.21", + "value":"-6.16" + } + }, + { + "id":"49316af3-1876-4c06-8e8c-d9adfd85112b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T23:38:23.227Z", + "completed":"2016-12-18T23:38:23.227Z", + "new_balance":"6180.74", + "value":"-0.47" + } + }, + { + "id":"8300bbdb-a96c-43f1-9b6d-3f2d3caaf96b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T03:22:48.032Z", + "completed":"2016-12-19T03:22:48.032Z", + "new_balance":"6175.82", + "value":"-4.92" + } + }, + { + "id":"fc3d8710-9087-48f8-9714-0861a5bc0d94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T08:44:05.326Z", + "completed":"2016-12-19T08:44:05.326Z", + "new_balance":"6171.70", + "value":"-4.12" + } + }, + { + "id":"3db1d68f-395d-422b-994b-f137f4c0a940", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T10:50:06.737Z", + "completed":"2016-12-19T10:50:06.737Z", + "new_balance":"6167.31", + "value":"-4.39" + } + }, + { + "id":"5de81ab5-c79b-409f-aeaf-1d2f5562d0bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T11:03:40.969Z", + "completed":"2016-12-21T11:03:40.969Z", + "new_balance":"6166.16", + "value":"-1.15" + } + }, + { + "id":"a7d95921-298e-4dd8-a602-805f490b3fc1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T12:37:04.510Z", + "completed":"2016-12-21T12:37:04.510Z", + "new_balance":"6165.69", + "value":"-0.47" + } + }, + { + "id":"aaa439b9-b478-4ad8-a172-7b75b175eb8b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T16:41:44.528Z", + "completed":"2016-12-21T16:41:44.528Z", + "new_balance":"6162.22", + "value":"-3.47" + } + }, + { + "id":"f9c33b08-bee9-4e68-a9e6-4a2929f0bd82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T17:31:05.976Z", + "completed":"2016-12-21T17:31:05.976Z", + "new_balance":"6152.61", + "value":"-9.61" + } + }, + { + "id":"e7360154-5cb0-4899-a5fa-0d675d707646", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T22:13:21.223Z", + "completed":"2016-12-21T22:13:21.223Z", + "new_balance":"6140.25", + "value":"-12.36" + } + }, + { + "id":"9dacb40b-91ac-4448-9f98-207537110407", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T04:19:34.937Z", + "completed":"2016-12-24T04:19:34.937Z", + "new_balance":"6139.05", + "value":"-1.20" + } + }, + { + "id":"dfbfd9e5-1108-4dc5-8acb-65d7737e556c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T09:12:54.571Z", + "completed":"2016-12-24T09:12:54.571Z", + "new_balance":"6136.66", + "value":"-2.39" + } + }, + { + "id":"3ae26c59-f646-40e7-bb6b-2089cd753f1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T14:23:26.671Z", + "completed":"2016-12-24T14:23:26.671Z", + "new_balance":"6135.31", + "value":"-1.35" + } + }, + { + "id":"bff589b2-56ef-487b-b54f-9303bdb41ca3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T02:07:48.261Z", + "completed":"2016-12-30T02:07:48.261Z", + "new_balance":"6112.95", + "value":"-22.36" + } + }, + { + "id":"c49fcd8c-6d8c-47a3-8963-5d58d8d71dda", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T15:35:38.130Z", + "completed":"2016-12-30T15:35:38.130Z", + "new_balance":"6109.23", + "value":"-3.72" + } + }, + { + "id":"a7417e8a-2e6f-4cfc-ae80-0f719a6fb3cc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T19:51:49.884Z", + "completed":"2017-01-01T19:51:49.884Z", + "new_balance":"6250.21", + "value":"140.98" + } + }, + { + "id":"83c50699-d191-4e70-9501-840966b0e090", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T19:51:53.979Z", + "completed":"2017-01-01T19:51:53.979Z", + "new_balance":"6432.91", + "value":"182.70" + } + }, + { + "id":"f61b59d3-d560-4bca-b0e5-4981479119c1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T17:24:57.536Z", + "completed":"2017-01-02T17:24:57.536Z", + "new_balance":"6401.19", + "value":"-31.72" + } + }, + { + "id":"bfa3e99d-eb97-463e-9615-51db089245ad", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T05:58:10.215Z", + "completed":"2017-01-03T05:58:10.215Z", + "new_balance":"6400.52", + "value":"-0.67" + } + }, + { + "id":"2958b97d-76e9-4545-809d-47fe072ee6d1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T15:14:48.008Z", + "completed":"2017-01-03T15:14:48.008Z", + "new_balance":"6395.70", + "value":"-4.82" + } + }, + { + "id":"0f8fbc24-1799-412c-a7eb-f8fc3fea42d2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T22:48:06.242Z", + "completed":"2017-01-03T22:48:06.242Z", + "new_balance":"6393.96", + "value":"-1.74" + } + }, + { + "id":"06dcd031-62c3-478e-bbb4-c739fb1cf0e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T17:53:27.345Z", + "completed":"2017-01-04T17:53:27.345Z", + "new_balance":"6392.56", + "value":"-1.40" + } + }, + { + "id":"9d7198a7-f7d6-4678-9ff5-652e3809e341", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:01:23.862Z", + "completed":"2017-01-05T19:01:23.862Z", + "new_balance":"6392.04", + "value":"-0.52" + } + }, + { + "id":"08c2678d-1464-4f2d-8887-a2a10673cb42", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T14:27:38.710Z", + "completed":"2017-01-07T14:27:38.710Z", + "new_balance":"6390.44", + "value":"-1.60" + } + }, + { + "id":"97b3a0a1-19ca-49ac-bb96-3db94fa0f2c4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T14:44:41.222Z", + "completed":"2017-01-07T14:44:41.222Z", + "new_balance":"6387.85", + "value":"-2.59" + } + }, + { + "id":"a2ebe0e3-a61c-4216-bd62-6744844cf954", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T01:03:43.673Z", + "completed":"2017-01-08T01:03:43.673Z", + "new_balance":"6386.17", + "value":"-1.68" + } + }, + { + "id":"63c5ec4d-f17c-498c-be88-ebce2fd4c151", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T11:27:08.421Z", + "completed":"2017-01-08T11:27:08.421Z", + "new_balance":"6384.30", + "value":"-1.87" + } + }, + { + "id":"af5683a3-36b8-42d9-989a-729e0cc2606b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T02:15:27.088Z", + "completed":"2017-01-09T02:15:27.088Z", + "new_balance":"6378.17", + "value":"-6.13" + } + }, + { + "id":"e7e867a5-48ad-4617-aa71-ce065fe88622", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T07:45:51.669Z", + "completed":"2017-01-09T07:45:51.669Z", + "new_balance":"6375.86", + "value":"-2.31" + } + }, + { + "id":"25e62d33-c0fd-4b27-8053-e10079a4510c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T03:33:56.303Z", + "completed":"2017-01-10T03:33:56.303Z", + "new_balance":"6368.16", + "value":"-7.70" + } + }, + { + "id":"05db0f58-6e5c-4af9-9988-1a2b235a0524", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T10:41:29.226Z", + "completed":"2017-01-10T10:41:29.226Z", + "new_balance":"6363.63", + "value":"-4.53" + } + }, + { + "id":"a9808a9d-5dd7-4c31-a179-604713abac63", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T04:10:07.169Z", + "completed":"2017-01-11T04:10:07.169Z", + "new_balance":"6363.16", + "value":"-0.47" + } + }, + { + "id":"2bb3f529-f269-48a8-9eda-c9bf518fa277", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T10:35:54.517Z", + "completed":"2017-01-11T10:35:54.517Z", + "new_balance":"6372.15", + "value":"8.99" + } + }, + { + "id":"5d9ac3a8-08ff-44a1-8ae8-dc9165276352", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T13:22:21.834Z", + "completed":"2017-01-11T13:22:21.834Z", + "new_balance":"6366.67", + "value":"-5.48" + } + }, + { + "id":"0313fd36-0666-40e2-ba69-530a2636086a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T12:37:57.648Z", + "completed":"2017-01-12T12:37:57.648Z", + "new_balance":"6365.86", + "value":"-0.81" + } + }, + { + "id":"ee968f96-124f-4120-a5f0-94b62cdba3f7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T07:05:59.190Z", + "completed":"2017-01-15T07:05:59.190Z", + "new_balance":"6363.43", + "value":"-2.43" + } + }, + { + "id":"0f376fbd-4b78-46c2-9ff8-aa20c94a8276", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T19:58:51.696Z", + "completed":"2017-01-16T19:58:51.696Z", + "new_balance":"6360.13", + "value":"-3.30" + } + }, + { + "id":"1fed7a10-3f22-4c9d-999d-54f616497639", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T23:54:09.853Z", + "completed":"2017-01-17T23:54:09.853Z", + "new_balance":"6358.56", + "value":"-1.57" + } + }, + { + "id":"afe1b4f2-4f79-4cf6-b51c-0d7100a3278f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T18:04:04.932Z", + "completed":"2017-01-20T18:04:04.932Z", + "new_balance":"6358.04", + "value":"-0.52" + } + }, + { + "id":"450e0bd7-32e5-4429-a600-460b4aa775df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T22:49:33.472Z", + "completed":"2017-01-21T22:49:33.472Z", + "new_balance":"6354.32", + "value":"-3.72" + } + }, + { + "id":"5fa6bad9-c0b7-4643-9f1f-0a5757354c4f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T21:41:17.704Z", + "completed":"2017-01-23T21:41:17.704Z", + "new_balance":"6331.96", + "value":"-22.36" + } + }, + { + "id":"764b1527-72a1-4b98-963d-a844435a3b20", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T20:43:35.800Z", + "completed":"2017-02-01T20:43:35.800Z", + "new_balance":"6472.94", + "value":"140.98" + } + }, + { + "id":"b26dce8a-73dd-431f-a004-613e8454e44c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T00:19:59.025Z", + "completed":"2017-02-03T00:19:59.025Z", + "new_balance":"6459.84", + "value":"-13.10" + } + }, + { + "id":"fda74a67-0bd5-4b20-b59a-7561d088d360", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T13:33:15.666Z", + "completed":"2017-02-03T13:33:15.666Z", + "new_balance":"6428.12", + "value":"-31.72" + } + }, + { + "id":"8f85c8cb-44f3-4b0b-845f-d8f67541a68b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T10:08:17.791Z", + "completed":"2017-02-04T10:08:17.791Z", + "new_balance":"6426.80", + "value":"-1.32" + } + }, + { + "id":"74700471-5dd7-41ba-b5b8-de4ce8b53feb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T00:16:44.771Z", + "completed":"2017-02-05T00:16:44.771Z", + "new_balance":"6426.13", + "value":"-0.67" + } + }, + { + "id":"186576a4-d0ab-45a1-b2f9-e3caa065a74c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T14:32:43.164Z", + "completed":"2017-02-06T14:32:43.164Z", + "new_balance":"6423.94", + "value":"-2.19" + } + }, + { + "id":"3a28f536-216f-4552-9a34-da4d7f28305d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T05:15:38.844Z", + "completed":"2017-02-07T05:15:38.844Z", + "new_balance":"6419.37", + "value":"-4.57" + } + }, + { + "id":"13e0335e-6b46-49f0-a994-e536b94c2618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T13:50:52.441Z", + "completed":"2017-02-07T13:50:52.441Z", + "new_balance":"6411.67", + "value":"-7.70" + } + }, + { + "id":"d9b27546-9122-420a-beb3-b7075e401bd4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:56:57.782Z", + "completed":"2017-02-07T20:56:57.782Z", + "new_balance":"6409.36", + "value":"-2.31" + } + }, + { + "id":"6f9f23ee-5c68-47ed-8297-0adaa92957e2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T12:31:36.273Z", + "completed":"2017-02-08T12:31:36.273Z", + "new_balance":"6405.22", + "value":"-4.14" + } + }, + { + "id":"9ff23716-ca0e-4ab0-a4dc-8b558354d358", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T23:36:45.374Z", + "completed":"2017-02-09T23:36:45.374Z", + "new_balance":"6402.82", + "value":"-2.40" + } + }, + { + "id":"7f2c93a5-c511-46d0-98a4-26467a8d90b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T23:32:39.990Z", + "completed":"2017-02-10T23:32:39.990Z", + "new_balance":"6402.30", + "value":"-0.52" + } + }, + { + "id":"b2fc6875-043f-494d-b84d-45d28c399f19", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T18:26:59.830Z", + "completed":"2017-02-12T18:26:59.830Z", + "new_balance":"6399.42", + "value":"-2.88" + } + }, + { + "id":"cda6fdc5-31b2-491f-b04e-9fff1d3cbc31", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T10:44:41.341Z", + "completed":"2017-02-14T10:44:41.341Z", + "new_balance":"6397.11", + "value":"-2.31" + } + }, + { + "id":"aa96c582-ea96-42e4-ad04-94c0bdba9415", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T08:59:46.313Z", + "completed":"2017-02-16T08:59:46.313Z", + "new_balance":"6392.50", + "value":"-4.61" + } + }, + { + "id":"368b55d9-1b0a-43fc-ab98-32bf28bc14bb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T15:15:23.695Z", + "completed":"2017-02-16T15:15:23.695Z", + "new_balance":"6392.03", + "value":"-0.47" + } + }, + { + "id":"8130c5e2-44cd-4f4d-b903-c2d1efcd3588", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T11:58:26.128Z", + "completed":"2017-02-18T11:58:26.128Z", + "new_balance":"6391.44", + "value":"-0.59" + } + }, + { + "id":"db7de792-fd36-4aa8-b7dc-7c2e674cfc0a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T16:01:09.489Z", + "completed":"2017-02-21T16:01:09.489Z", + "new_balance":"6402.84", + "value":"11.40" + } + }, + { + "id":"2bdb09ce-ce0f-4593-8c93-f7c2fd7d9d71", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T19:21:55.996Z", + "completed":"2017-02-21T19:21:55.996Z", + "new_balance":"6399.12", + "value":"-3.72" + } + }, + { + "id":"ea19f236-2a58-4b60-b81c-47844e26a6d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:38:45.216Z", + "completed":"2017-02-27T17:38:45.216Z", + "new_balance":"6376.76", + "value":"-22.36" + } + }, + { + "id":"409bc6ae-7305-43a9-87f8-1e4210659437", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T16:01:41.521Z", + "completed":"2017-03-01T16:01:41.521Z", + "new_balance":"6517.74", + "value":"140.98" + } + }, + { + "id":"9e90048d-7b9a-47e5-92ff-a7c3288baa2b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T19:13:15.602Z", + "completed":"2017-03-03T19:13:15.602Z", + "new_balance":"6486.02", + "value":"-31.72" + } + }, + { + "id":"5b672762-795e-4344-a2e4-41f74b1ec597", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T11:37:35.319Z", + "completed":"2017-03-04T11:37:35.319Z", + "new_balance":"6482.72", + "value":"-3.30" + } + }, + { + "id":"e6b9d15a-1338-4488-a3c3-6aed26aee596", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:01:35.199Z", + "completed":"2017-03-04T16:01:35.199Z", + "new_balance":"6480.67", + "value":"-2.05" + } + }, + { + "id":"1a91e73f-521e-40c6-9065-3ba84c2ef150", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T16:23:05.130Z", + "completed":"2017-03-04T16:23:05.130Z", + "new_balance":"6477.21", + "value":"-3.46" + } + }, + { + "id":"2a9cf6d8-ab57-41ad-bfd4-e5efc307f278", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T18:01:45.704Z", + "completed":"2017-03-04T18:01:45.704Z", + "new_balance":"6472.60", + "value":"-4.61" + } + }, + { + "id":"3f7cf21e-9d0e-4a9d-8b85-88f087011ddf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T02:24:08.780Z", + "completed":"2017-03-05T02:24:08.780Z", + "new_balance":"6471.30", + "value":"-1.30" + } + }, + { + "id":"e393c7d6-cd2b-412d-8fb4-8093ff108943", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T11:49:23.456Z", + "completed":"2017-03-05T11:49:23.456Z", + "new_balance":"6463.60", + "value":"-7.70" + } + }, + { + "id":"86db14ea-070b-45b5-90bd-bcd377a26ab4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T16:35:38.141Z", + "completed":"2017-03-05T16:35:38.141Z", + "new_balance":"6463.13", + "value":"-0.47" + } + }, + { + "id":"a779e694-49e6-48de-b6cf-15468c5e24f2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T18:25:01.252Z", + "completed":"2017-03-05T18:25:01.252Z", + "new_balance":"6456.38", + "value":"-6.75" + } + }, + { + "id":"e08cb510-7477-46ce-bc64-c6ffb34b56cb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T10:21:27.061Z", + "completed":"2017-03-06T10:21:27.061Z", + "new_balance":"6448.64", + "value":"-7.74" + } + }, + { + "id":"3704fd19-f9f9-4944-bad7-99e8329912af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T22:35:08.587Z", + "completed":"2017-03-06T22:35:08.587Z", + "new_balance":"6442.00", + "value":"-6.64" + } + }, + { + "id":"4d422175-d12e-42ab-a38f-1e122004632d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T06:57:11.057Z", + "completed":"2017-03-07T06:57:11.057Z", + "new_balance":"6441.20", + "value":"-0.80" + } + }, + { + "id":"89ac05d1-57d6-428f-afea-e85fc606b101", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T22:07:15.330Z", + "completed":"2017-03-07T22:07:15.330Z", + "new_balance":"6440.73", + "value":"-0.47" + } + }, + { + "id":"0acf8be8-de13-41a0-a791-181483b1b61c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T20:33:47.034Z", + "completed":"2017-03-08T20:33:47.034Z", + "new_balance":"6439.96", + "value":"-0.77" + } + }, + { + "id":"fe9909da-d9ea-4a7b-89be-ae4d6725bda5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T21:41:05.804Z", + "completed":"2017-03-08T21:41:05.804Z", + "new_balance":"6439.16", + "value":"-0.80" + } + }, + { + "id":"7c7deae4-0a52-4c50-8789-6a492cdb748f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T07:09:32.336Z", + "completed":"2017-03-10T07:09:32.336Z", + "new_balance":"6436.45", + "value":"-2.71" + } + }, + { + "id":"c5d60fed-2b19-4ad4-9190-67c3236ed07b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T00:42:58.453Z", + "completed":"2017-03-11T00:42:58.453Z", + "new_balance":"6434.85", + "value":"-1.60" + } + }, + { + "id":"915cbad5-7935-4614-acfc-0605a38ae80a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T14:53:40.630Z", + "completed":"2017-03-11T14:53:40.630Z", + "new_balance":"6434.38", + "value":"-0.47" + } + }, + { + "id":"66a613ff-ff13-4df7-bdb7-19385ce5fe53", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T18:54:31.924Z", + "completed":"2017-03-11T18:54:31.924Z", + "new_balance":"6431.66", + "value":"-2.72" + } + }, + { + "id":"4992fd03-6151-4f3f-b3ef-8419a20c7213", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T02:34:02.287Z", + "completed":"2017-03-12T02:34:02.287Z", + "new_balance":"6425.50", + "value":"-6.16" + } + }, + { + "id":"7a7e6379-f7cc-4393-aec0-515b0fc84d06", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T06:56:04.780Z", + "completed":"2017-03-12T06:56:04.780Z", + "new_balance":"6415.35", + "value":"-10.15" + } + }, + { + "id":"6f5a1ca4-1442-40e4-a572-c3a6b9bacced", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:12:12.242Z", + "completed":"2017-03-12T14:12:12.242Z", + "new_balance":"6412.76", + "value":"-2.59" + } + }, + { + "id":"ba6ca444-4a18-4f76-85e8-e01f0070332a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T15:49:03.045Z", + "completed":"2017-03-12T15:49:03.045Z", + "new_balance":"6412.29", + "value":"-0.47" + } + }, + { + "id":"338fa275-66b0-4cf9-9481-043422401058", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T11:36:37.681Z", + "completed":"2017-03-13T11:36:37.681Z", + "new_balance":"6409.71", + "value":"-2.58" + } + }, + { + "id":"7f898545-691a-426b-8e56-8f26d32fed2b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T20:48:43.480Z", + "completed":"2017-03-13T20:48:43.480Z", + "new_balance":"6409.24", + "value":"-0.47" + } + }, + { + "id":"a35973c4-5672-4fe1-9229-8e1e6826c5f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T03:11:39.138Z", + "completed":"2017-03-15T03:11:39.138Z", + "new_balance":"6405.12", + "value":"-4.12" + } + }, + { + "id":"457d829f-93b1-4a32-86b6-8732e2d894f4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T23:48:44.850Z", + "completed":"2017-03-15T23:48:44.850Z", + "new_balance":"6400.20", + "value":"-4.92" + } + }, + { + "id":"12679808-b83b-4d0d-b464-d5510db29b24", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T06:26:16.916Z", + "completed":"2017-03-17T06:26:16.916Z", + "new_balance":"6395.81", + "value":"-4.39" + } + }, + { + "id":"6e9968ba-b4f6-404a-8344-350aed0a246a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T20:35:12.406Z", + "completed":"2017-03-18T20:35:12.406Z", + "new_balance":"6386.20", + "value":"-9.61" + } + }, + { + "id":"e7a90d60-8da1-4242-bf13-f1d1efd05df0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T00:07:41.038Z", + "completed":"2017-03-20T00:07:41.038Z", + "new_balance":"6373.84", + "value":"-12.36" + } + }, + { + "id":"a296208d-d760-49fe-8b1c-b10a528d1c87", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T09:02:51.390Z", + "completed":"2017-03-22T09:02:51.390Z", + "new_balance":"6370.37", + "value":"-3.47" + } + }, + { + "id":"59915253-3a39-42c2-8180-de656706b261", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T05:40:55.696Z", + "completed":"2017-03-25T05:40:55.696Z", + "new_balance":"6369.22", + "value":"-1.15" + } + }, + { + "id":"101d1d06-ebf4-47bd-a9c5-54ffabaade1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T22:50:49.483Z", + "completed":"2017-03-25T22:50:49.483Z", + "new_balance":"6368.75", + "value":"-0.47" + } + }, + { + "id":"921c88fc-20e9-4d75-b88f-6cacc6331619", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T10:02:28.916Z", + "completed":"2017-03-26T10:02:28.916Z", + "new_balance":"6367.40", + "value":"-1.35" + } + }, + { + "id":"8975a087-7b6f-49a2-93fc-2f4c25f5438a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T23:29:17.418Z", + "completed":"2017-03-26T23:29:17.418Z", + "new_balance":"6365.01", + "value":"-2.39" + } + }, + { + "id":"bba106b0-8af2-4cfe-b091-7b955b33b55d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T07:47:09.002Z", + "completed":"2017-03-27T07:47:09.002Z", + "new_balance":"6363.81", + "value":"-1.20" + } + }, + { + "id":"d37a5fe0-9833-457d-8c5a-bf261cf2a237", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T14:12:57.134Z", + "completed":"2017-03-28T14:12:57.134Z", + "new_balance":"6360.09", + "value":"-3.72" + } + }, + { + "id":"41d27c15-7786-4911-a742-a48662cf1526", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T09:42:57.688Z", + "completed":"2017-03-31T09:42:57.688Z", + "new_balance":"6337.73", + "value":"-22.36" + } + }, + { + "id":"4199334d-5d30-42da-bdca-7149304d9447", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T08:04:54.978Z", + "completed":"2017-04-01T08:04:54.978Z", + "new_balance":"6520.43", + "value":"182.70" + } + }, + { + "id":"5cc62ca2-2ef2-4a1f-9656-f480c3d95196", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T13:53:00.578Z", + "completed":"2017-04-01T13:53:00.578Z", + "new_balance":"6661.41", + "value":"140.98" + } + }, + { + "id":"d803a1fd-f2e7-4238-bcdb-7042aef51d17", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T16:16:10.960Z", + "completed":"2017-04-01T16:16:10.960Z", + "new_balance":"6629.69", + "value":"-31.72" + } + }, + { + "id":"8e986a15-a1e3-4858-a8c5-0597f93a260b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T01:04:58.552Z", + "completed":"2017-04-03T01:04:58.552Z", + "new_balance":"6629.02", + "value":"-0.67" + } + }, + { + "id":"bacaf0f8-6b0a-40eb-b848-a62b1827728b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T18:53:48.251Z", + "completed":"2017-04-03T18:53:48.251Z", + "new_balance":"6627.28", + "value":"-1.74" + } + }, + { + "id":"cf7c0669-f031-42a5-a6f3-37f02b69e952", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:28:11.807Z", + "completed":"2017-04-03T23:28:11.807Z", + "new_balance":"6622.46", + "value":"-4.82" + } + }, + { + "id":"0e83efb0-4afe-4211-81db-802e2e2070e9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:42:22.866Z", + "completed":"2017-04-05T17:42:22.866Z", + "new_balance":"6621.94", + "value":"-0.52" + } + }, + { + "id":"d1cc7077-7bf7-4981-906e-24ab82fc20df", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T18:07:39.340Z", + "completed":"2017-04-05T18:07:39.340Z", + "new_balance":"6620.54", + "value":"-1.40" + } + }, + { + "id":"693ece2f-29f3-457c-b1f0-2fecbd7307c6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T07:46:22.160Z", + "completed":"2017-04-06T07:46:22.160Z", + "new_balance":"6618.94", + "value":"-1.60" + } + }, + { + "id":"6391f530-5976-4dca-b04f-b796c1622304", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T02:23:39.490Z", + "completed":"2017-04-09T02:23:39.490Z", + "new_balance":"6616.35", + "value":"-2.59" + } + }, + { + "id":"e9c42513-e149-4687-b88d-4501fe90edbf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:26:09.929Z", + "completed":"2017-04-10T14:26:09.929Z", + "new_balance":"6614.67", + "value":"-1.68" + } + }, + { + "id":"b650e32d-d864-4475-9259-08c3e14aa73f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T12:22:07.277Z", + "completed":"2017-04-11T12:22:07.277Z", + "new_balance":"6612.36", + "value":"-2.31" + } + }, + { + "id":"fb824c74-b419-4343-b3eb-eabccbe3ce34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T20:56:48.745Z", + "completed":"2017-04-11T20:56:48.745Z", + "new_balance":"6610.49", + "value":"-1.87" + } + }, + { + "id":"628059a8-bdb4-49c2-bfe4-f9c194cc4618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T07:38:26.570Z", + "completed":"2017-04-13T07:38:26.570Z", + "new_balance":"6602.79", + "value":"-7.70" + } + }, + { + "id":"c9064e01-9eb9-49d7-b656-458e0c899b4c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T23:45:12.818Z", + "completed":"2017-04-13T23:45:12.818Z", + "new_balance":"6596.66", + "value":"-6.13" + } + }, + { + "id":"8d945ca3-46e4-4aae-a130-a11687d8c619", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T18:57:52.031Z", + "completed":"2017-04-15T18:57:52.031Z", + "new_balance":"6592.13", + "value":"-4.53" + } + }, + { + "id":"3c73d83c-7dac-4718-93b9-539962cac742", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T00:54:35.609Z", + "completed":"2017-04-16T00:54:35.609Z", + "new_balance":"6591.66", + "value":"-0.47" + } + }, + { + "id":"35483552-3a21-4e3f-aa12-7212abd67a0a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T15:25:21.854Z", + "completed":"2017-04-16T15:25:21.854Z", + "new_balance":"6590.85", + "value":"-0.81" + } + }, + { + "id":"78d6a0bf-97c8-43c5-8b85-0db571f0d1af", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T04:03:35.720Z", + "completed":"2017-04-18T04:03:35.720Z", + "new_balance":"6585.37", + "value":"-5.48" + } + }, + { + "id":"f3797f6c-20ec-46a2-a305-78031a71d1e0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T16:56:45.887Z", + "completed":"2017-04-23T16:56:45.887Z", + "new_balance":"6582.94", + "value":"-2.43" + } + }, + { + "id":"3c294513-b5e9-459c-99c1-57606ce243b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T10:57:49.421Z", + "completed":"2017-04-24T10:57:49.421Z", + "new_balance":"6581.37", + "value":"-1.57" + } + }, + { + "id":"e6c8627a-0dc0-49bc-8850-69198d458b1d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T23:58:22.369Z", + "completed":"2017-04-24T23:58:22.369Z", + "new_balance":"6578.07", + "value":"-3.30" + } + }, + { + "id":"09383295-69ad-4d3e-bfc6-87ea72d8e496", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T01:32:33.998Z", + "completed":"2017-04-26T01:32:33.998Z", + "new_balance":"6577.55", + "value":"-0.52" + } + }, + { + "id":"2a21bcfa-10c3-4c81-a1c8-0b7d890e3079", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T09:31:40.558Z", + "completed":"2017-04-28T09:31:40.558Z", + "new_balance":"6573.83", + "value":"-3.72" + } + }, + { + "id":"77877f25-acb6-4454-b6eb-8aed92bff391", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T18:47:20.550Z", + "completed":"2017-04-28T18:47:20.550Z", + "new_balance":"6551.47", + "value":"-22.36" + } + }, + { + "id":"e92254d8-6a33-4770-a137-c71a49f12c11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T07:12:01.859Z", + "completed":"2017-05-02T07:12:01.859Z", + "new_balance":"6550.15", + "value":"-1.32" + } + }, + { + "id":"9a0e6fa5-1340-47c1-b3e1-7c49b85c57f0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T14:20:27.311Z", + "completed":"2017-05-02T14:20:27.311Z", + "new_balance":"6537.05", + "value":"-13.10" + } + }, + { + "id":"93b806d5-92a1-43c2-a512-1ca8b75392c1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T21:04:37.290Z", + "completed":"2017-05-02T21:04:37.290Z", + "new_balance":"6505.33", + "value":"-31.72" + } + }, + { + "id":"63b43770-83dc-42fe-a38f-28db2e0528b6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T22:13:57.620Z", + "completed":"2017-05-02T22:13:57.620Z", + "new_balance":"6504.66", + "value":"-0.67" + } + }, + { + "id":"944f837f-271f-4fb5-9af3-4dc1284fb0a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T05:57:05.211Z", + "completed":"2017-05-06T05:57:05.211Z", + "new_balance":"6502.35", + "value":"-2.31" + } + }, + { + "id":"3d5eb40b-62c4-483d-96c4-8456e8aa954b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T06:36:36.100Z", + "completed":"2017-05-06T06:36:36.100Z", + "new_balance":"6500.16", + "value":"-2.19" + } + }, + { + "id":"fc711e8d-af2b-429a-a1fe-604a39067367", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T02:17:55.975Z", + "completed":"2017-05-07T02:17:55.975Z", + "new_balance":"6492.46", + "value":"-7.70" + } + }, + { + "id":"e4d974e1-ae13-46fc-8849-4d91564bbd21", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T09:13:56.802Z", + "completed":"2017-05-07T09:13:56.802Z", + "new_balance":"6487.89", + "value":"-4.57" + } + }, + { + "id":"d48d91b1-9928-4a20-b58d-b6a3008d09a0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T15:33:54.751Z", + "completed":"2017-05-09T15:33:54.751Z", + "new_balance":"6628.87", + "value":"140.98" + } + }, + { + "id":"097de017-1d4e-41f7-a70a-821a93a34b64", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T13:09:30.182Z", + "completed":"2017-05-14T13:09:30.182Z", + "new_balance":"6626.47", + "value":"-2.40" + } + }, + { + "id":"3c38efe9-50c0-45c1-a6fe-ca6a50a92604", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T17:02:51.478Z", + "completed":"2017-05-14T17:02:51.478Z", + "new_balance":"6622.33", + "value":"-4.14" + } + }, + { + "id":"2b648cb1-5be8-4c64-8730-ed9238f12525", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T03:41:55.634Z", + "completed":"2017-05-16T03:41:55.634Z", + "new_balance":"6621.81", + "value":"-0.52" + } + }, + { + "id":"266e4fff-b6c2-48ff-9d63-b19b820b4887", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T23:14:31.197Z", + "completed":"2017-05-21T23:14:31.197Z", + "new_balance":"6618.93", + "value":"-2.88" + } + }, + { + "id":"ec6d28bd-ac50-4de1-832f-e0ae83e646b0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T18:45:27.770Z", + "completed":"2017-05-23T18:45:27.770Z", + "new_balance":"6616.62", + "value":"-2.31" + } + }, + { + "id":"915084e5-dbd9-4285-a8e4-3127646f0cb6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T19:25:11.645Z", + "completed":"2017-05-23T19:25:11.645Z", + "new_balance":"6616.15", + "value":"-0.47" + } + }, + { + "id":"6dea2eb6-93e0-4b72-844d-12b8a9c086f6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T01:04:38.636Z", + "completed":"2017-05-24T01:04:38.636Z", + "new_balance":"6611.54", + "value":"-4.61" + } + }, + { + "id":"084c0387-b6f8-4856-9cce-63bd8ddb06ef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T10:18:26.639Z", + "completed":"2017-05-27T10:18:26.639Z", + "new_balance":"6610.95", + "value":"-0.59" + } + }, + { + "id":"741520e0-aa9f-4d43-91ae-4517bd5a2840", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T18:22:07.098Z", + "completed":"2017-05-30T18:22:07.098Z", + "new_balance":"6607.23", + "value":"-3.72" + } + }, + { + "id":"d2491276-4936-4649-b158-325ed69498d6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T19:27:45.084Z", + "completed":"2017-05-30T19:27:45.084Z", + "new_balance":"6584.87", + "value":"-22.36" + } + }, + { + "id":"4fed5f25-0b66-474e-a9b8-b80360131747", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T15:55:17.871Z", + "completed":"2017-06-01T15:55:17.871Z", + "new_balance":"6725.85", + "value":"140.98" + } + }, + { + "id":"955c81c1-8713-48a4-a13f-e2c583dfc9f1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T23:12:54.850Z", + "completed":"2017-06-01T23:12:54.850Z", + "new_balance":"6694.13", + "value":"-31.72" + } + }, + { + "id":"5c089348-7490-4c3a-a444-b59905eb1eb9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:24:52.030Z", + "completed":"2017-06-04T19:24:52.030Z", + "new_balance":"6690.67", + "value":"-3.46" + } + }, + { + "id":"7cf74877-84bb-44ff-9344-ded8206ab04c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T23:57:54.102Z", + "completed":"2017-06-04T23:57:54.102Z", + "new_balance":"6688.62", + "value":"-2.05" + } + }, + { + "id":"fe4e6880-c4df-4f24-bd70-a8371e2f5d34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T14:31:18.103Z", + "completed":"2017-06-11T14:31:18.103Z", + "new_balance":"6684.01", + "value":"-4.61" + } + }, + { + "id":"839fdb47-4cd9-47d1-a95b-2bc8611fa857", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T21:18:09.461Z", + "completed":"2017-06-11T21:18:09.461Z", + "new_balance":"6680.71", + "value":"-3.30" + } + }, + { + "id":"ea475d9b-74d9-4f4c-b7a9-9ede238f4384", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T08:56:20.315Z", + "completed":"2017-06-12T08:56:20.315Z", + "new_balance":"6679.41", + "value":"-1.30" + } + }, + { + "id":"2c3a36a5-dd0d-444e-a160-5984608016b3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T09:19:13.733Z", + "completed":"2017-06-12T09:19:13.733Z", + "new_balance":"6678.94", + "value":"-0.47" + } + }, + { + "id":"a4f33022-7c8a-45a8-a19f-f81915810283", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T18:43:24.222Z", + "completed":"2017-06-12T18:43:24.222Z", + "new_balance":"6671.24", + "value":"-7.70" + } + }, + { + "id":"9b4f7cf3-ab3f-4eba-a395-14a8b80e6961", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T03:34:14.701Z", + "completed":"2017-06-13T03:34:14.701Z", + "new_balance":"6664.60", + "value":"-6.64" + } + }, + { + "id":"181a3e1c-7758-459d-ac59-ce1470c1f15a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T18:42:50.324Z", + "completed":"2017-06-13T18:42:50.324Z", + "new_balance":"6656.86", + "value":"-7.74" + } + }, + { + "id":"9db07a8f-25bb-496c-aa67-6347bd2b1a38", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T18:52:36.882Z", + "completed":"2017-06-13T18:52:36.882Z", + "new_balance":"6650.11", + "value":"-6.75" + } + }, + { + "id":"c40c1189-864a-42cd-9964-40acdc16ef8d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T07:55:10.451Z", + "completed":"2017-06-14T07:55:10.451Z", + "new_balance":"6649.31", + "value":"-0.80" + } + }, + { + "id":"0ca7c3f2-3d9a-4f6d-bc28-f06ff7758c4d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T15:10:09.412Z", + "completed":"2017-06-14T15:10:09.412Z", + "new_balance":"6648.51", + "value":"-0.80" + } + }, + { + "id":"9c3bd188-dbd5-41ad-8fa8-aa1973a58631", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T22:21:10.116Z", + "completed":"2017-06-14T22:21:10.116Z", + "new_balance":"6648.04", + "value":"-0.47" + } + }, + { + "id":"d97e78d9-b74f-4d52-8e09-286ea6128561", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T12:08:06.272Z", + "completed":"2017-06-15T12:08:06.272Z", + "new_balance":"6645.33", + "value":"-2.71" + } + }, + { + "id":"ca4e4a4d-6797-41b8-939f-ac6177238190", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T13:06:11.268Z", + "completed":"2017-06-15T13:06:11.268Z", + "new_balance":"6644.56", + "value":"-0.77" + } + }, + { + "id":"199110e1-0cea-40be-8610-53a5e0b8f65f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T18:40:33.914Z", + "completed":"2017-06-15T18:40:33.914Z", + "new_balance":"6644.09", + "value":"-0.47" + } + }, + { + "id":"38a5fe14-57e1-4351-adb3-725bef91e8e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T13:13:21.288Z", + "completed":"2017-06-16T13:13:21.288Z", + "new_balance":"6641.37", + "value":"-2.72" + } + }, + { + "id":"5779c60c-ab26-4d53-a7f0-1adddeb29ddc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T12:59:32.062Z", + "completed":"2017-06-17T12:59:32.062Z", + "new_balance":"6639.77", + "value":"-1.60" + } + }, + { + "id":"5ebc8dc8-da82-449f-8788-0546c094cf3a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T00:29:58.919Z", + "completed":"2017-06-18T00:29:58.919Z", + "new_balance":"6637.19", + "value":"-2.58" + } + }, + { + "id":"3e895fb9-757f-4f4a-a2c4-ce6f5f53dd1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T01:38:38.145Z", + "completed":"2017-06-18T01:38:38.145Z", + "new_balance":"6634.60", + "value":"-2.59" + } + }, + { + "id":"5aa3cd2a-6356-4688-8c7d-4a4955cdd742", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T09:56:46.922Z", + "completed":"2017-06-18T09:56:46.922Z", + "new_balance":"6624.45", + "value":"-10.15" + } + }, + { + "id":"7f9d5e03-da20-45a4-be14-e7e8379c2c56", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T12:37:44.386Z", + "completed":"2017-06-18T12:37:44.386Z", + "new_balance":"6623.98", + "value":"-0.47" + } + }, + { + "id":"04342618-5a40-4d9d-a1d7-88e9ccd36a57", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T15:11:04.144Z", + "completed":"2017-06-18T15:11:04.144Z", + "new_balance":"6623.51", + "value":"-0.47" + } + }, + { + "id":"d61e4ed6-ce0d-4cc4-8b90-0dd8ed5bd85e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:51:28.733Z", + "completed":"2017-06-18T19:51:28.733Z", + "new_balance":"6617.35", + "value":"-6.16" + } + }, + { + "id":"a9cc9054-e285-4dd4-aeab-92141d85c48c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T08:01:03.749Z", + "completed":"2017-06-19T08:01:03.749Z", + "new_balance":"6613.23", + "value":"-4.12" + } + }, + { + "id":"8ef25efe-c725-47c1-a3d7-ca691c2caf79", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T08:36:13.212Z", + "completed":"2017-06-19T08:36:13.212Z", + "new_balance":"6608.31", + "value":"-4.92" + } + }, + { + "id":"6b898d69-6abd-4f63-86f8-27a53f9a3ac9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T13:47:09.315Z", + "completed":"2017-06-19T13:47:09.315Z", + "new_balance":"6603.92", + "value":"-4.39" + } + }, + { + "id":"96316114-2b38-45e3-b9f1-585cb1cabd1b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T04:10:54.003Z", + "completed":"2017-06-21T04:10:54.003Z", + "new_balance":"6591.56", + "value":"-12.36" + } + }, + { + "id":"6a15aca6-c568-4d25-a1d4-767057df9bab", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T21:23:33.537Z", + "completed":"2017-06-21T21:23:33.537Z", + "new_balance":"6581.95", + "value":"-9.61" + } + }, + { + "id":"3a8cc3b0-b40b-4da7-800c-894bdb3231ac", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T01:41:07.899Z", + "completed":"2017-06-22T01:41:07.899Z", + "new_balance":"6580.80", + "value":"-1.15" + } + }, + { + "id":"017657ae-ebe6-41cf-9352-d6103376436c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T21:55:29.141Z", + "completed":"2017-06-22T21:55:29.141Z", + "new_balance":"6577.33", + "value":"-3.47" + } + }, + { + "id":"77aa93ee-ac56-4422-95e8-1c662bbb8672", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T22:16:00.699Z", + "completed":"2017-06-22T22:16:00.699Z", + "new_balance":"6576.86", + "value":"-0.47" + } + }, + { + "id":"071d5ddc-56a0-4f41-9c10-6d3d58730300", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T20:58:44.833Z", + "completed":"2017-06-23T20:58:44.833Z", + "new_balance":"6575.51", + "value":"-1.35" + } + }, + { + "id":"b8ac8cf4-ca86-4d48-b618-5cd1f8eae946", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T02:15:56.653Z", + "completed":"2017-06-24T02:15:56.653Z", + "new_balance":"6573.12", + "value":"-2.39" + } + }, + { + "id":"6465e921-fc90-408a-88c3-8db7380856b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T05:53:59.767Z", + "completed":"2017-06-26T05:53:59.767Z", + "new_balance":"6571.92", + "value":"-1.20" + } + }, + { + "id":"b00786aa-9b30-44c7-b828-934efcaa7e82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T10:40:14.606Z", + "completed":"2017-06-30T10:40:14.606Z", + "new_balance":"6568.20", + "value":"-3.72" + } + }, + { + "id":"18a3ae94-b3aa-490b-a86c-723fe545e71a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T17:16:21.193Z", + "completed":"2017-06-30T17:16:21.193Z", + "new_balance":"6545.84", + "value":"-22.36" + } + }, + { + "id":"3c352bad-2b33-4c8d-9b19-c9ccc2b0a811", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T02:05:05.881Z", + "completed":"2017-07-01T02:05:05.881Z", + "new_balance":"6728.54", + "value":"182.70" + } + }, + { + "id":"8bf3b8e0-bc56-4dd7-92ab-a3beded72783", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T16:38:58.375Z", + "completed":"2017-07-01T16:38:58.375Z", + "new_balance":"6869.52", + "value":"140.98" + } + }, + { + "id":"ba68865f-9f1a-43f0-9dbd-f5d6d462a99d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T04:48:22.418Z", + "completed":"2017-07-03T04:48:22.418Z", + "new_balance":"6837.80", + "value":"-31.72" + } + }, + { + "id":"7289d4e9-d5fa-41da-b91a-19a4ebfa367a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T04:26:54.536Z", + "completed":"2017-07-04T04:26:54.536Z", + "new_balance":"6832.98", + "value":"-4.82" + } + }, + { + "id":"d88a02d6-890c-47b1-973f-2776679b8623", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T14:18:05.403Z", + "completed":"2017-07-04T14:18:05.403Z", + "new_balance":"6832.31", + "value":"-0.67" + } + }, + { + "id":"e3dd3a61-ca19-4de4-9b0a-bce84553a78c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T14:22:03.252Z", + "completed":"2017-07-04T14:22:03.252Z", + "new_balance":"6830.57", + "value":"-1.74" + } + }, + { + "id":"5f657787-5cdb-40e3-9610-358effec3a1a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T17:33:27.646Z", + "completed":"2017-07-05T17:33:27.646Z", + "new_balance":"6829.17", + "value":"-1.40" + } + }, + { + "id":"37ba35b3-3b8b-44fd-aee1-ad1ff12ac049", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T11:19:18.584Z", + "completed":"2017-07-07T11:19:18.584Z", + "new_balance":"6828.65", + "value":"-0.52" + } + }, + { + "id":"a38041b1-e453-4e26-bfc0-325bdf07c3ee", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T06:15:42.585Z", + "completed":"2017-07-11T06:15:42.585Z", + "new_balance":"6826.97", + "value":"-1.68" + } + }, + { + "id":"6b822d78-09b3-48cb-aae9-a88c0f6077f5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T07:50:21.527Z", + "completed":"2017-07-11T07:50:21.527Z", + "new_balance":"6825.37", + "value":"-1.60" + } + }, + { + "id":"79c1ab0d-710e-415e-a354-c1bfe17bdd47", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T08:59:21.148Z", + "completed":"2017-07-11T08:59:21.148Z", + "new_balance":"6822.78", + "value":"-2.59" + } + }, + { + "id":"28aa3a9e-5e40-47a5-ba4d-bc130beaece9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T18:27:51.501Z", + "completed":"2017-07-11T18:27:51.501Z", + "new_balance":"6820.91", + "value":"-1.87" + } + }, + { + "id":"67e15dd9-b4b1-4119-ac84-05a3daaa177e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T19:03:48.227Z", + "completed":"2017-07-11T19:03:48.227Z", + "new_balance":"6818.60", + "value":"-2.31" + } + }, + { + "id":"29e42613-d712-41aa-91a6-30c2427772b2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T08:37:45.362Z", + "completed":"2017-07-13T08:37:45.362Z", + "new_balance":"6812.47", + "value":"-6.13" + } + }, + { + "id":"d3873a8b-2423-45f2-8c37-16c8acb1a9cc", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T19:49:06.707Z", + "completed":"2017-07-13T19:49:06.707Z", + "new_balance":"6804.77", + "value":"-7.70" + } + }, + { + "id":"3d5b6849-83ef-4b1f-9318-278d6a766405", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T11:11:11.038Z", + "completed":"2017-07-16T11:11:11.038Z", + "new_balance":"6813.76", + "value":"8.99" + } + }, + { + "id":"008a6a90-a5d5-45ef-9f6d-cdb6df93e4fd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T23:44:27.283Z", + "completed":"2017-07-16T23:44:27.283Z", + "new_balance":"6809.23", + "value":"-4.53" + } + }, + { + "id":"e98382a4-b213-4c07-8a5d-896bb439e9ed", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T18:46:11.632Z", + "completed":"2017-07-17T18:46:11.632Z", + "new_balance":"6808.76", + "value":"-0.47" + } + }, + { + "id":"c58c6ead-35e8-4cd2-b46e-3e4e73dd3a65", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T22:22:54.671Z", + "completed":"2017-07-17T22:22:54.671Z", + "new_balance":"6807.95", + "value":"-0.81" + } + }, + { + "id":"6b64922f-0809-44ea-b49c-b9819fa6edf3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T08:18:44.082Z", + "completed":"2017-07-19T08:18:44.082Z", + "new_balance":"6802.47", + "value":"-5.48" + } + }, + { + "id":"a39c0556-785f-4d1d-ba41-e212fdb8f084", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T04:22:16.459Z", + "completed":"2017-07-21T04:22:16.459Z", + "new_balance":"6800.04", + "value":"-2.43" + } + }, + { + "id":"31ed990a-1a42-4e4f-b951-a3db395b47d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T15:40:39.057Z", + "completed":"2017-07-23T15:40:39.057Z", + "new_balance":"6796.74", + "value":"-3.30" + } + }, + { + "id":"1f7e5391-3ca2-4284-99cf-4c24a0d2bb62", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T16:03:44.267Z", + "completed":"2017-07-25T16:03:44.267Z", + "new_balance":"6795.17", + "value":"-1.57" + } + }, + { + "id":"0bdba098-9e1c-4cfb-923d-91182ef8240b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T19:27:57.862Z", + "completed":"2017-07-27T19:27:57.862Z", + "new_balance":"6794.65", + "value":"-0.52" + } + }, + { + "id":"87b95b84-9458-4c55-a3a9-b35db69d326c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T12:37:08.024Z", + "completed":"2017-07-28T12:37:08.024Z", + "new_balance":"6790.93", + "value":"-3.72" + } + }, + { + "id":"ab671f86-9345-4600-99d6-5b77fdc3f3fa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T22:38:28.891Z", + "completed":"2017-07-28T22:38:28.891Z", + "new_balance":"6768.57", + "value":"-22.36" + } + }, + { + "id":"f7bce4a8-1cfb-4b46-adbb-260bc4dc96cd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T17:02:27.327Z", + "completed":"2017-08-01T17:02:27.327Z", + "new_balance":"6909.55", + "value":"140.98" + } + }, + { + "id":"9f3f15b4-2517-4a0b-aa79-b19a1a80a562", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T03:21:39.242Z", + "completed":"2017-08-03T03:21:39.242Z", + "new_balance":"6896.45", + "value":"-13.10" + } + }, + { + "id":"56d93a95-8b6c-4078-a7b2-e51eb0c0d618", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T08:43:05.742Z", + "completed":"2017-08-03T08:43:05.742Z", + "new_balance":"6864.73", + "value":"-31.72" + } + }, + { + "id":"95639d5c-bad1-4b74-884d-b09b3bde52a4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T05:26:19.294Z", + "completed":"2017-08-04T05:26:19.294Z", + "new_balance":"6863.41", + "value":"-1.32" + } + }, + { + "id":"e6dc1485-eee0-4663-a9b3-044b26a33059", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T04:23:11.865Z", + "completed":"2017-08-07T04:23:11.865Z", + "new_balance":"6862.74", + "value":"-0.67" + } + }, + { + "id":"52602e9d-1269-46e1-ab02-75675026d4e6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T04:54:59.135Z", + "completed":"2017-08-07T04:54:59.135Z", + "new_balance":"6860.55", + "value":"-2.19" + } + }, + { + "id":"3057a155-7454-4dbb-a75f-e9f6be1aaf8b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T08:15:18.329Z", + "completed":"2017-08-07T08:15:18.329Z", + "new_balance":"6858.24", + "value":"-2.31" + } + }, + { + "id":"fc522572-8135-405f-8b98-5a0725a2a7fd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T02:29:38.180Z", + "completed":"2017-08-08T02:29:38.180Z", + "new_balance":"6850.54", + "value":"-7.70" + } + }, + { + "id":"aa31807f-dff7-4aff-8dce-f62b278d8fc2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T03:27:45.357Z", + "completed":"2017-08-08T03:27:45.357Z", + "new_balance":"6845.97", + "value":"-4.57" + } + }, + { + "id":"87ed0a51-f7a8-481e-bbf2-6469f9b5de4b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T07:49:54.526Z", + "completed":"2017-08-08T07:49:54.526Z", + "new_balance":"6841.83", + "value":"-4.14" + } + }, + { + "id":"22f90811-6a2c-4068-91dc-4fbf289671d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T17:30:51.494Z", + "completed":"2017-08-09T17:30:51.494Z", + "new_balance":"6839.43", + "value":"-2.40" + } + }, + { + "id":"e140dd55-bfb0-4168-8aaf-e61804006207", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T01:01:54.591Z", + "completed":"2017-08-11T01:01:54.591Z", + "new_balance":"6838.91", + "value":"-0.52" + } + }, + { + "id":"3b9879d2-a615-472a-b643-8042851df495", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T05:24:34.941Z", + "completed":"2017-08-14T05:24:34.941Z", + "new_balance":"6836.03", + "value":"-2.88" + } + }, + { + "id":"6ff46270-5731-48b4-9a34-c447494798a8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T12:05:28.678Z", + "completed":"2017-08-15T12:05:28.678Z", + "new_balance":"6833.72", + "value":"-2.31" + } + }, + { + "id":"4c52113e-4ae4-4abd-a7ce-c6dcafc136f8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T11:42:17.181Z", + "completed":"2017-08-17T11:42:17.181Z", + "new_balance":"6833.25", + "value":"-0.47" + } + }, + { + "id":"efdab4aa-f938-4b98-a84f-f71bac4575eb", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T17:02:23.258Z", + "completed":"2017-08-17T17:02:23.258Z", + "new_balance":"6828.64", + "value":"-4.61" + } + }, + { + "id":"afd50f61-7eeb-4ae5-8049-673c021db46e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T04:47:13.918Z", + "completed":"2017-08-19T04:47:13.918Z", + "new_balance":"6828.05", + "value":"-0.59" + } + }, + { + "id":"e9b9eeff-026c-4fd6-8e45-417879091c3c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T21:54:50.962Z", + "completed":"2017-08-25T21:54:50.962Z", + "new_balance":"6839.45", + "value":"11.40" + } + }, + { + "id":"3d187adc-a3af-423d-9ce6-a763e9af4caa", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T05:41:26.153Z", + "completed":"2017-08-28T05:41:26.153Z", + "new_balance":"6817.09", + "value":"-22.36" + } + }, + { + "id":"b6e5807d-4151-4c4a-b3b7-502ed06bca8f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T11:28:36.042Z", + "completed":"2017-08-28T11:28:36.042Z", + "new_balance":"6813.37", + "value":"-3.72" + } + }, + { + "id":"b5c7f864-e113-4942-b4e1-428437b0a04d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T10:25:39.452Z", + "completed":"2017-09-01T10:25:39.452Z", + "new_balance":"6954.35", + "value":"140.98" + } + }, + { + "id":"6ce20365-6a65-42e4-a08b-f1791a3697ff", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T09:52:50.031Z", + "completed":"2017-09-03T09:52:50.031Z", + "new_balance":"6922.63", + "value":"-31.72" + } + }, + { + "id":"3d5f1af8-7a67-49bc-bb30-39244ab417b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T03:05:40.220Z", + "completed":"2017-09-04T03:05:40.220Z", + "new_balance":"6919.33", + "value":"-3.30" + } + }, + { + "id":"5da97fae-337b-445e-8d2d-c8d06283810b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T16:56:03.764Z", + "completed":"2017-09-04T16:56:03.764Z", + "new_balance":"6917.28", + "value":"-2.05" + } + }, + { + "id":"3349d463-b483-408d-a695-bb5e19c0ab82", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T18:06:19.760Z", + "completed":"2017-09-04T18:06:19.760Z", + "new_balance":"6913.82", + "value":"-3.46" + } + }, + { + "id":"49adc6c5-1794-4c9f-a6e5-591f06443fbd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T22:22:51.034Z", + "completed":"2017-09-04T22:22:51.034Z", + "new_balance":"6909.21", + "value":"-4.61" + } + }, + { + "id":"e4c5031f-333d-4158-8289-1e4cebc8d42f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T00:12:32.353Z", + "completed":"2017-09-05T00:12:32.353Z", + "new_balance":"6902.46", + "value":"-6.75" + } + }, + { + "id":"06cff00b-ac03-44cc-873b-35e141db0dbe", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T03:49:18.381Z", + "completed":"2017-09-05T03:49:18.381Z", + "new_balance":"6901.16", + "value":"-1.30" + } + }, + { + "id":"b274b089-176e-4d1e-8357-ca53454bccd5", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T04:38:04.312Z", + "completed":"2017-09-05T04:38:04.312Z", + "new_balance":"6893.42", + "value":"-7.74" + } + }, + { + "id":"195fac4f-847b-4c69-87d4-e479bbee715a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T06:58:42.855Z", + "completed":"2017-09-05T06:58:42.855Z", + "new_balance":"6886.78", + "value":"-6.64" + } + }, + { + "id":"70d0e8a2-f476-44a5-a059-2a019f3046ac", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T09:01:50.873Z", + "completed":"2017-09-05T09:01:50.873Z", + "new_balance":"6886.31", + "value":"-0.47" + } + }, + { + "id":"0f9c64e5-288b-4b40-823b-9f46b010b6da", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T16:20:48.972Z", + "completed":"2017-09-05T16:20:48.972Z", + "new_balance":"6878.61", + "value":"-7.70" + } + }, + { + "id":"a295b4d5-8987-453b-93af-800e06fd0a4a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T07:24:38.743Z", + "completed":"2017-09-07T07:24:38.743Z", + "new_balance":"6877.84", + "value":"-0.77" + } + }, + { + "id":"a3642818-0e2c-42fa-983c-5457ce3f0eae", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T08:18:11.243Z", + "completed":"2017-09-07T08:18:11.243Z", + "new_balance":"6877.04", + "value":"-0.80" + } + }, + { + "id":"a282518f-2e40-4747-8b53-d62080e55a08", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T10:48:57.049Z", + "completed":"2017-09-07T10:48:57.049Z", + "new_balance":"6876.24", + "value":"-0.80" + } + }, + { + "id":"57bfc413-c4f6-4756-82e8-82d157fd005c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T11:36:24.270Z", + "completed":"2017-09-07T11:36:24.270Z", + "new_balance":"6875.77", + "value":"-0.47" + } + }, + { + "id":"da379363-9141-426c-948c-8e907e16d31a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T11:13:39.006Z", + "completed":"2017-09-10T11:13:39.006Z", + "new_balance":"6873.06", + "value":"-2.71" + } + }, + { + "id":"6c604e59-cf8b-41ec-be8f-1febd1a87240", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:57:09.093Z", + "completed":"2017-09-11T00:57:09.093Z", + "new_balance":"6871.46", + "value":"-1.60" + } + }, + { + "id":"7ae7cfee-b66c-4e3d-ad2a-f877185560d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:17:40.445Z", + "completed":"2017-09-11T08:17:40.445Z", + "new_balance":"6868.74", + "value":"-2.72" + } + }, + { + "id":"4957dac4-59e4-4144-8263-7d7fc9f42110", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T15:19:52.569Z", + "completed":"2017-09-11T15:19:52.569Z", + "new_balance":"6868.27", + "value":"-0.47" + } + }, + { + "id":"b883ee52-a8e4-4f60-8855-0078f69c46d7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T01:36:36.385Z", + "completed":"2017-09-12T01:36:36.385Z", + "new_balance":"6865.68", + "value":"-2.59" + } + }, + { + "id":"5c3591e7-fd7b-4ce8-9190-4e93e7aa09d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T17:06:17.170Z", + "completed":"2017-09-12T17:06:17.170Z", + "new_balance":"6859.52", + "value":"-6.16" + } + }, + { + "id":"9185043c-a6e7-4835-a303-7633d21eeac1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T21:27:26.354Z", + "completed":"2017-09-12T21:27:26.354Z", + "new_balance":"6849.37", + "value":"-10.15" + } + }, + { + "id":"80e68c52-a1da-484b-8531-685b02c2d051", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:28:02.702Z", + "completed":"2017-09-12T23:28:02.702Z", + "new_balance":"6848.90", + "value":"-0.47" + } + }, + { + "id":"9f0386cb-0134-4a19-af69-12a089d94206", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T03:33:36.926Z", + "completed":"2017-09-13T03:33:36.926Z", + "new_balance":"6846.32", + "value":"-2.58" + } + }, + { + "id":"56f7b5b4-c88d-40b7-ba40-3062d2dd42a4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T08:57:25.220Z", + "completed":"2017-09-14T08:57:25.220Z", + "new_balance":"6845.85", + "value":"-0.47" + } + }, + { + "id":"c5e19139-9238-44f2-afb6-537a7818bad9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T17:49:41.518Z", + "completed":"2017-09-14T17:49:41.518Z", + "new_balance":"6840.93", + "value":"-4.92" + } + }, + { + "id":"4abc0f02-a059-4e41-b151-89b881373c39", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T05:58:01.316Z", + "completed":"2017-09-16T05:58:01.316Z", + "new_balance":"6836.81", + "value":"-4.12" + } + }, + { + "id":"6bce5258-0b11-4840-abcb-de3c1d9a2b2a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T00:03:37.985Z", + "completed":"2017-09-18T00:03:37.985Z", + "new_balance":"6832.42", + "value":"-4.39" + } + }, + { + "id":"abc51b1e-8174-49b8-9d93-960980bfd47f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T10:17:56.772Z", + "completed":"2017-09-21T10:17:56.772Z", + "new_balance":"6822.81", + "value":"-9.61" + } + }, + { + "id":"cad86d92-0017-4de1-a9d7-feff87cb0a34", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T19:59:11.765Z", + "completed":"2017-09-21T19:59:11.765Z", + "new_balance":"6810.45", + "value":"-12.36" + } + }, + { + "id":"6a382e1b-2690-4ab5-a559-3f72f4d264e4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T09:13:26.336Z", + "completed":"2017-09-23T09:13:26.336Z", + "new_balance":"6806.98", + "value":"-3.47" + } + }, + { + "id":"ad38093c-9071-4b25-8c1b-f9ee7eb29021", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T03:08:42.174Z", + "completed":"2017-09-24T03:08:42.174Z", + "new_balance":"6806.51", + "value":"-0.47" + } + }, + { + "id":"dbb5e5e4-3172-4f23-9807-33d8e2217854", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T00:10:27.187Z", + "completed":"2017-09-26T00:10:27.187Z", + "new_balance":"6804.12", + "value":"-2.39" + } + }, + { + "id":"4f804a1c-0e0d-4a0a-ac79-dd8dbd6e23d3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T17:12:04.178Z", + "completed":"2017-09-26T17:12:04.178Z", + "new_balance":"6802.97", + "value":"-1.15" + } + }, + { + "id":"09797ab4-fb2d-4e75-837e-15008d0adb4e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T22:36:49.308Z", + "completed":"2017-09-26T22:36:49.308Z", + "new_balance":"6801.62", + "value":"-1.35" + } + }, + { + "id":"ccbd7bf5-1a61-4601-bd9f-256711ae55b7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T10:20:32.050Z", + "completed":"2017-09-27T10:20:32.050Z", + "new_balance":"6800.42", + "value":"-1.20" + } + }, + { + "id":"c22d4075-a0e7-4153-9ae6-3c61fb510502", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T06:09:42.442Z", + "completed":"2017-09-28T06:09:42.442Z", + "new_balance":"6778.06", + "value":"-22.36" + } + }, + { + "id":"0e7b71cc-96df-4d8e-bfd9-d3695c1bfd3d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T13:33:47.035Z", + "completed":"2017-09-28T13:33:47.035Z", + "new_balance":"6774.34", + "value":"-3.72" + } + }, + { + "id":"c3036fcc-340f-42b3-96f0-d131b60a004a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T08:25:05.745Z", + "completed":"2017-10-01T08:25:05.745Z", + "new_balance":"6915.32", + "value":"140.98" + } + }, + { + "id":"18ec436a-51e7-4b79-ae69-5532ba87c39c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T16:08:36.754Z", + "completed":"2017-10-01T16:08:36.754Z", + "new_balance":"7098.02", + "value":"182.70" + } + }, + { + "id":"57948750-db11-4490-b04f-da89a700ec54", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T18:50:04.430Z", + "completed":"2017-10-01T18:50:04.430Z", + "new_balance":"7066.30", + "value":"-31.72" + } + }, + { + "id":"3f6ba088-8b40-4835-8425-2a54f498d5b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T04:17:36.478Z", + "completed":"2017-10-03T04:17:36.478Z", + "new_balance":"7065.63", + "value":"-0.67" + } + }, + { + "id":"7ee8fbb7-81b7-4e3a-a599-f6970d7b0a32", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T05:48:21.220Z", + "completed":"2017-10-03T05:48:21.220Z", + "new_balance":"7063.89", + "value":"-1.74" + } + }, + { + "id":"c94b87dc-b0c9-4cd4-9985-31fbcae24ffd", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T18:13:17.671Z", + "completed":"2017-10-03T18:13:17.671Z", + "new_balance":"7059.07", + "value":"-4.82" + } + }, + { + "id":"a87284bb-95e5-45de-ae70-ca55c1174e0b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T00:51:10.267Z", + "completed":"2017-10-05T00:51:10.267Z", + "new_balance":"7058.55", + "value":"-0.52" + } + }, + { + "id":"9a86e741-2a25-46cd-86d4-0e51cf8d909c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T17:08:35.964Z", + "completed":"2017-10-05T17:08:35.964Z", + "new_balance":"7057.15", + "value":"-1.40" + } + }, + { + "id":"c4a1a896-ca60-4bdd-8ccf-ebb001444a98", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T09:21:08.038Z", + "completed":"2017-10-06T09:21:08.038Z", + "new_balance":"7055.55", + "value":"-1.60" + } + }, + { + "id":"422c54c6-afd2-4fa9-b6dc-0480fa26ea3e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T07:31:56.388Z", + "completed":"2017-10-09T07:31:56.388Z", + "new_balance":"7052.96", + "value":"-2.59" + } + }, + { + "id":"e21c5267-681c-4d6c-accf-53a5074a76e1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:18:54.262Z", + "completed":"2017-10-10T23:18:54.262Z", + "new_balance":"7051.28", + "value":"-1.68" + } + }, + { + "id":"3614ccb4-d737-434d-b726-bcbc095b9cf0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T09:32:27.100Z", + "completed":"2017-10-11T09:32:27.100Z", + "new_balance":"7049.41", + "value":"-1.87" + } + }, + { + "id":"7cc58c78-8233-4da1-beb2-cd1e8859e37e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T16:03:11.392Z", + "completed":"2017-10-11T16:03:11.392Z", + "new_balance":"7047.10", + "value":"-2.31" + } + }, + { + "id":"549a387e-6457-42c5-9ccd-b7af898c927d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T03:50:12.248Z", + "completed":"2017-10-14T03:50:12.248Z", + "new_balance":"7039.40", + "value":"-7.70" + } + }, + { + "id":"39f373c0-3af5-47a7-9270-aebf80b00a9d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T07:19:12.000Z", + "completed":"2017-10-14T07:19:12.000Z", + "new_balance":"7033.27", + "value":"-6.13" + } + }, + { + "id":"8b049a7f-f82e-42fb-b0a0-fd28402c9862", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T08:14:26.649Z", + "completed":"2017-10-17T08:14:26.649Z", + "new_balance":"7028.74", + "value":"-4.53" + } + }, + { + "id":"f284a925-b40b-46ca-b539-0691761490f2", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T09:10:51.202Z", + "completed":"2017-10-18T09:10:51.202Z", + "new_balance":"7027.93", + "value":"-0.81" + } + }, + { + "id":"46c15dc8-70af-4e45-9468-5ec88d6e0d3b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T10:34:04.505Z", + "completed":"2017-10-18T10:34:04.505Z", + "new_balance":"7027.46", + "value":"-0.47" + } + }, + { + "id":"4ed373a9-97cf-48e6-b6e9-95a1a41f4c99", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T21:36:55.784Z", + "completed":"2017-10-18T21:36:55.784Z", + "new_balance":"7021.98", + "value":"-5.48" + } + }, + { + "id":"156e73f9-d5fd-4945-b5e8-571b38fd082e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T11:39:08.187Z", + "completed":"2017-10-23T11:39:08.187Z", + "new_balance":"7019.55", + "value":"-2.43" + } + }, + { + "id":"5bc387e9-bc76-4a1f-a469-4117fef54089", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T09:20:04.389Z", + "completed":"2017-10-24T09:20:04.389Z", + "new_balance":"7017.98", + "value":"-1.57" + } + }, + { + "id":"61121ac9-fc50-41b4-9296-3b7e9d6fccef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T21:53:20.355Z", + "completed":"2017-10-24T21:53:20.355Z", + "new_balance":"7014.68", + "value":"-3.30" + } + }, + { + "id":"91055bee-3647-4131-af18-9a30dcce0e0d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T04:47:46.743Z", + "completed":"2017-10-26T04:47:46.743Z", + "new_balance":"7014.16", + "value":"-0.52" + } + }, + { + "id":"78b1ebc9-6918-4c6d-a22f-cc16229a6085", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T04:25:43.124Z", + "completed":"2017-10-30T04:25:43.124Z", + "new_balance":"6991.80", + "value":"-22.36" + } + }, + { + "id":"bf303026-95f2-45b1-bc98-9e4dbc3761ef", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T07:29:53.173Z", + "completed":"2017-10-30T07:29:53.173Z", + "new_balance":"6988.08", + "value":"-3.72" + } + }, + { + "id":"9c1280af-a7bc-40cf-8392-2f9daf4da47e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T10:26:20.065Z", + "completed":"2017-11-02T10:26:20.065Z", + "new_balance":"6956.36", + "value":"-31.72" + } + }, + { + "id":"a75b96ef-2b17-41dc-9364-1db7c4bb6859", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T11:48:06.432Z", + "completed":"2017-11-02T11:48:06.432Z", + "new_balance":"6943.26", + "value":"-13.10" + } + }, + { + "id":"0b308e22-0e4c-49a7-b318-0e1d0fe29e9b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T13:16:46.936Z", + "completed":"2017-11-02T13:16:46.936Z", + "new_balance":"6941.94", + "value":"-1.32" + } + }, + { + "id":"1a2d63a9-e2ed-4a38-9e13-b70eeaa7467b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T22:21:55.667Z", + "completed":"2017-11-02T22:21:55.667Z", + "new_balance":"6941.27", + "value":"-0.67" + } + }, + { + "id":"a650fb49-7d51-417e-bdd8-52c719f55512", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T08:29:55.141Z", + "completed":"2017-11-06T08:29:55.141Z", + "new_balance":"6939.08", + "value":"-2.19" + } + }, + { + "id":"83b399a3-87aa-453a-a761-68694f45b421", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T10:35:20.460Z", + "completed":"2017-11-06T10:35:20.460Z", + "new_balance":"6936.77", + "value":"-2.31" + } + }, + { + "id":"81ac74e3-c409-4825-b56c-3b3988c496b4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:06:42.995Z", + "completed":"2017-11-07T04:06:42.995Z", + "new_balance":"6932.20", + "value":"-4.57" + } + }, + { + "id":"f55032a1-e8e2-4e77-bf5a-8cb4d2fa407c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T12:48:34.883Z", + "completed":"2017-11-07T12:48:34.883Z", + "new_balance":"6924.50", + "value":"-7.70" + } + }, + { + "id":"aba07861-9078-4f07-b422-00b758b1fe5b", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T01:37:14.218Z", + "completed":"2017-11-09T01:37:14.218Z", + "new_balance":"7065.48", + "value":"140.98" + } + }, + { + "id":"5c91dfe4-16ff-4019-8dfa-8b6c6f460980", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T20:51:37.167Z", + "completed":"2017-11-14T20:51:37.167Z", + "new_balance":"7061.34", + "value":"-4.14" + } + }, + { + "id":"20c87d62-816e-46c0-be84-485cd259ef94", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T21:28:25.721Z", + "completed":"2017-11-14T21:28:25.721Z", + "new_balance":"7058.94", + "value":"-2.40" + } + }, + { + "id":"4e3374fa-1c31-44f9-b291-e91d2634960e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T07:00:35.650Z", + "completed":"2017-11-16T07:00:35.650Z", + "new_balance":"7058.42", + "value":"-0.52" + } + }, + { + "id":"f0e5e584-931b-4f19-a533-a1fa361c705e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T03:15:49.885Z", + "completed":"2017-11-20T03:15:49.885Z", + "new_balance":"7055.54", + "value":"-2.88" + } + }, + { + "id":"95ba9518-c20b-49ed-a06f-3c69d48a218f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T05:33:55.065Z", + "completed":"2017-11-23T05:33:55.065Z", + "new_balance":"7050.93", + "value":"-4.61" + } + }, + { + "id":"8e350f17-3f01-4952-b59c-8e08d39fe6f7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T06:54:39.074Z", + "completed":"2017-11-23T06:54:39.074Z", + "new_balance":"7050.46", + "value":"-0.47" + } + }, + { + "id":"02d9d070-58aa-421e-a7c0-c095d4e2035a", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T09:09:31.713Z", + "completed":"2017-11-23T09:09:31.713Z", + "new_balance":"7048.15", + "value":"-2.31" + } + }, + { + "id":"7143a1ea-507e-48f9-bbdf-d7fdf8502211", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T00:45:43.157Z", + "completed":"2017-11-28T00:45:43.157Z", + "new_balance":"7047.56", + "value":"-0.59" + } + }, + { + "id":"86b70a24-94f6-4643-bf87-f53990a40cf6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T21:32:20.630Z", + "completed":"2017-11-30T21:32:20.630Z", + "new_balance":"7043.84", + "value":"-3.72" + } + }, + { + "id":"83de0c25-eb9e-4966-98c5-7bd72d5d91b4", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T22:16:43.401Z", + "completed":"2017-11-30T22:16:43.401Z", + "new_balance":"7021.48", + "value":"-22.36" + } + }, + { + "id":"a4f0124d-5356-4a63-bcbc-0e7ef758ca01", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T14:09:49.237Z", + "completed":"2017-12-01T14:09:49.237Z", + "new_balance":"6989.76", + "value":"-31.72" + } + }, + { + "id":"db467d97-17e5-4d39-a488-b135909dfa0d", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T19:37:02.002Z", + "completed":"2017-12-01T19:37:02.002Z", + "new_balance":"7130.74", + "value":"140.98" + } + }, + { + "id":"006c86f8-3388-47a5-b37e-be5d0c523bf6", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T00:33:09.941Z", + "completed":"2017-12-04T00:33:09.941Z", + "new_balance":"7128.69", + "value":"-2.05" + } + }, + { + "id":"08defa8a-87e0-4c9e-b37e-39a4f9152146", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T06:44:17.360Z", + "completed":"2017-12-04T06:44:17.360Z", + "new_balance":"7125.23", + "value":"-3.46" + } + }, + { + "id":"3b670f72-7907-46a2-9b3b-93bb54bafe23", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T00:41:19.733Z", + "completed":"2017-12-11T00:41:19.733Z", + "new_balance":"7121.93", + "value":"-3.30" + } + }, + { + "id":"caceb552-bff3-4fbc-b13d-9c1fc508253f", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T23:26:15.606Z", + "completed":"2017-12-11T23:26:15.606Z", + "new_balance":"7117.32", + "value":"-4.61" + } + }, + { + "id":"18738f9f-ea34-459d-8e5d-86f7a5c32e11", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T05:32:14.985Z", + "completed":"2017-12-14T05:32:14.985Z", + "new_balance":"7116.85", + "value":"-0.47" + } + }, + { + "id":"0e928fed-6d91-4428-9b69-0da64efcb0ba", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:51:53.312Z", + "completed":"2017-12-14T12:51:53.312Z", + "new_balance":"7110.21", + "value":"-6.64" + } + }, + { + "id":"6b6c5490-cd70-4ea5-aba0-9e3cc3974f69", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T13:56:17.843Z", + "completed":"2017-12-14T13:56:17.843Z", + "new_balance":"7109.41", + "value":"-0.80" + } + }, + { + "id":"6b6649d4-5015-4ee8-ba30-4e814145b241", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T14:33:40.676Z", + "completed":"2017-12-14T14:33:40.676Z", + "new_balance":"7108.61", + "value":"-0.80" + } + }, + { + "id":"f9a77074-654c-4e60-9ef5-bfbe54d979d8", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T17:49:52.244Z", + "completed":"2017-12-14T17:49:52.244Z", + "new_balance":"7107.31", + "value":"-1.30" + } + }, + { + "id":"c8e136d2-06fc-4033-b4cd-5f0090262396", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T18:08:37.622Z", + "completed":"2017-12-14T18:08:37.622Z", + "new_balance":"7099.57", + "value":"-7.74" + } + }, + { + "id":"2e019469-02cc-481c-a3d8-758cd6f02b05", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T18:16:51.292Z", + "completed":"2017-12-14T18:16:51.292Z", + "new_balance":"7091.87", + "value":"-7.70" + } + }, + { + "id":"72446b5d-2adc-4f64-979a-10647b9cc711", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:01:57.413Z", + "completed":"2017-12-14T20:01:57.413Z", + "new_balance":"7091.40", + "value":"-0.47" + } + }, + { + "id":"5031967e-20bb-4030-a619-0dc76c28fd77", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T20:16:43.146Z", + "completed":"2017-12-14T20:16:43.146Z", + "new_balance":"7084.65", + "value":"-6.75" + } + }, + { + "id":"02065d90-635c-485f-963a-123cb9c42d62", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T14:45:37.754Z", + "completed":"2017-12-15T14:45:37.754Z", + "new_balance":"7081.94", + "value":"-2.71" + } + }, + { + "id":"01ac004e-14b0-41c3-ba96-d593b16e812c", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T15:10:33.755Z", + "completed":"2017-12-15T15:10:33.755Z", + "new_balance":"7081.47", + "value":"-0.47" + } + }, + { + "id":"11546c97-64af-48fe-b07c-05e6b10100d1", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T20:04:44.636Z", + "completed":"2017-12-15T20:04:44.636Z", + "new_balance":"7080.70", + "value":"-0.77" + } + }, + { + "id":"42033275-e2db-4aa7-9a5a-0fb248dd87d0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T00:39:50.244Z", + "completed":"2017-12-18T00:39:50.244Z", + "new_balance":"7078.12", + "value":"-2.58" + } + }, + { + "id":"12fc7cb4-d0c0-4008-b18e-5273bd49e6bf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T05:03:53.963Z", + "completed":"2017-12-18T05:03:53.963Z", + "new_balance":"7077.65", + "value":"-0.47" + } + }, + { + "id":"63bd4504-992e-4c2d-81f0-3606d81b314e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T10:52:38.838Z", + "completed":"2017-12-18T10:52:38.838Z", + "new_balance":"7067.50", + "value":"-10.15" + } + }, + { + "id":"f270fe83-5f2e-4d0f-b40f-f77d47003772", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T12:19:56.721Z", + "completed":"2017-12-18T12:19:56.721Z", + "new_balance":"7064.91", + "value":"-2.59" + } + }, + { + "id":"c2ac883d-1096-418a-8590-aabe2c527d42", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T13:42:32.978Z", + "completed":"2017-12-18T13:42:32.978Z", + "new_balance":"7062.19", + "value":"-2.72" + } + }, + { + "id":"6c1aa8a2-167f-4369-b64a-ecd75c11b967", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T16:21:32.105Z", + "completed":"2017-12-18T16:21:32.105Z", + "new_balance":"7061.72", + "value":"-0.47" + } + }, + { + "id":"0c50482d-59f4-4391-9425-a84538bb20a9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T17:57:57.048Z", + "completed":"2017-12-18T17:57:57.048Z", + "new_balance":"7055.56", + "value":"-6.16" + } + }, + { + "id":"82fe3401-e0f9-4ad8-9c43-ed47de1ee437", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T18:34:48.415Z", + "completed":"2017-12-18T18:34:48.415Z", + "new_balance":"7053.96", + "value":"-1.60" + } + }, + { + "id":"7a6286e5-df16-4a6a-91e3-8d1f30db8ba9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T15:47:20.822Z", + "completed":"2017-12-19T15:47:20.822Z", + "new_balance":"7049.84", + "value":"-4.12" + } + }, + { + "id":"d8f32aad-8152-44ba-a08e-f6731ab5ffb7", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T17:13:18.789Z", + "completed":"2017-12-19T17:13:18.789Z", + "new_balance":"7045.45", + "value":"-4.39" + } + }, + { + "id":"a6fa1e2c-b072-48d5-a203-b2f2d2c2dee3", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T17:34:05.974Z", + "completed":"2017-12-19T17:34:05.974Z", + "new_balance":"7040.53", + "value":"-4.92" + } + }, + { + "id":"c0e3618b-5b98-4316-ab60-30d186150282", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T04:02:12.386Z", + "completed":"2017-12-21T04:02:12.386Z", + "new_balance":"7028.17", + "value":"-12.36" + } + }, + { + "id":"abf75224-0848-4659-8c77-54126d90ce1e", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T10:36:10.916Z", + "completed":"2017-12-21T10:36:10.916Z", + "new_balance":"7018.56", + "value":"-9.61" + } + }, + { + "id":"ba0ee5b4-c173-46cd-abad-8ed2e5bbf1b9", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T17:09:24.573Z", + "completed":"2017-12-21T17:09:24.573Z", + "new_balance":"7017.41", + "value":"-1.15" + } + }, + { + "id":"142451d3-0f21-46d3-88d2-5185c4ae1792", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T17:30:19.397Z", + "completed":"2017-12-21T17:30:19.397Z", + "new_balance":"7016.94", + "value":"-0.47" + } + }, + { + "id":"a263c14e-d438-4967-ba59-862dc2ead490", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T18:14:02.716Z", + "completed":"2017-12-21T18:14:02.716Z", + "new_balance":"7013.47", + "value":"-3.47" + } + }, + { + "id":"e31a7e18-b334-4336-971f-485342a646c0", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T08:32:55.408Z", + "completed":"2017-12-24T08:32:55.408Z", + "new_balance":"7012.27", + "value":"-1.20" + } + }, + { + "id":"17eab95e-00b7-48bb-851f-8a9bce77eccf", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T10:00:02.131Z", + "completed":"2017-12-24T10:00:02.131Z", + "new_balance":"7009.88", + "value":"-2.39" + } + }, + { + "id":"626ad581-4591-42b3-90a3-6f6008d46222", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T14:48:37.857Z", + "completed":"2017-12-24T14:48:37.857Z", + "new_balance":"7008.53", + "value":"-1.35" + } + }, + { + "id":"a7ee65b1-d4aa-49d2-aa9f-e6af76c72a07", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T07:09:09.281Z", + "completed":"2017-12-30T07:09:09.281Z", + "new_balance":"6986.17", + "value":"-22.36" + } + }, + { + "id":"4c98223d-564f-4ce7-ab58-2dc044c6e411", + "this_account":{ + "id":"49d64b47-9e81-4aa2-a55d-03f8502eb707", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T13:18:44.515Z", + "completed":"2017-12-30T13:18:44.515Z", + "new_balance":"6982.45", + "value":"-3.72" + } + }, + { + "id":"eb418ca7-98ce-43d5-ab75-33324e932919", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T00:54:40.131Z", + "completed":"2016-01-01T00:54:40.131Z", + "new_balance":"5159.55", + "value":"-3.44" + } + }, + { + "id":"233fd63c-b357-4766-bda5-72c87bdf8691", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T05:29:19.068Z", + "completed":"2016-01-01T05:29:19.068Z", + "new_balance":"5156.11", + "value":"-3.44" + } + }, + { + "id":"575c5d5a-d32f-4b9d-b62e-ff95e00a1c3a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T08:00:58.576Z", + "completed":"2016-01-01T08:00:58.576Z", + "new_balance":"5151.93", + "value":"-4.18" + } + }, + { + "id":"433e9777-cb8d-46b0-a511-1381eb797d84", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T09:12:07.091Z", + "completed":"2016-01-01T09:12:07.091Z", + "new_balance":"5144.23", + "value":"-7.70" + } + }, + { + "id":"eb071491-6486-4c27-a859-8c5fb353b097", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T18:01:45.884Z", + "completed":"2016-01-05T18:01:45.884Z", + "new_balance":"5136.93", + "value":"-7.30" + } + }, + { + "id":"2a21566c-71b8-4594-a57d-1cc343693576", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T22:51:24.399Z", + "completed":"2016-01-05T22:51:24.399Z", + "new_balance":"5126.89", + "value":"-10.04" + } + }, + { + "id":"6f596a71-9e5c-4de5-a5f1-26714932a50d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T14:08:09.151Z", + "completed":"2016-01-08T14:08:09.151Z", + "new_balance":"5125.49", + "value":"-1.40" + } + }, + { + "id":"8666ff09-c0ac-4571-9cef-d4f9c913051c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T16:03:33.325Z", + "completed":"2016-01-10T16:03:33.325Z", + "new_balance":"5120.83", + "value":"-4.66" + } + }, + { + "id":"fbde3ca0-33a5-4684-b26e-48201de437c8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T09:05:46.774Z", + "completed":"2016-01-11T09:05:46.774Z", + "new_balance":"5115.42", + "value":"-5.41" + } + }, + { + "id":"21e86cad-c80d-446d-a2d0-35edea189d5b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T01:11:50.260Z", + "completed":"2016-01-12T01:11:50.260Z", + "new_balance":"5111.98", + "value":"-3.44" + } + }, + { + "id":"cfe606cc-379a-49e4-b4a5-8fbe2a7df3df", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T07:19:46.252Z", + "completed":"2016-01-13T07:19:46.252Z", + "new_balance":"5111.52", + "value":"-0.46" + } + }, + { + "id":"39a4bd30-3be3-4921-b556-81783c4b34b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T08:52:56.800Z", + "completed":"2016-01-13T08:52:56.800Z", + "new_balance":"5111.01", + "value":"-0.51" + } + }, + { + "id":"cc46372d-a2fd-43d7-b553-324576e10edb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T23:11:16.728Z", + "completed":"2016-01-16T23:11:16.728Z", + "new_balance":"5101.49", + "value":"-9.52" + } + }, + { + "id":"d1fc14b0-2572-4b6d-b8e3-7ce34966e1be", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T12:35:59.501Z", + "completed":"2016-01-19T12:35:59.501Z", + "new_balance":"5094.66", + "value":"-6.83" + } + }, + { + "id":"e53c4cf7-b3c4-443e-97a2-817962d4da16", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T15:01:24.826Z", + "completed":"2016-01-19T15:01:24.826Z", + "new_balance":"5087.36", + "value":"-7.30" + } + }, + { + "id":"634adf57-27f9-4e04-9db3-dcac078deb4a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T11:09:18.372Z", + "completed":"2016-01-24T11:09:18.372Z", + "new_balance":"5084.68", + "value":"-2.68" + } + }, + { + "id":"ea9652c2-09fb-45e3-b413-04787b402584", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T01:51:20.599Z", + "completed":"2016-01-27T01:51:20.599Z", + "new_balance":"5081.01", + "value":"-3.67" + } + }, + { + "id":"70356868-94f5-4fe1-b589-3b51d622da02", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T13:32:25.919Z", + "completed":"2016-01-27T13:32:25.919Z", + "new_balance":"5315.97", + "value":"234.96" + } + }, + { + "id":"0f492b02-f0ac-44c8-971f-f0ed4aaa7f1d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T14:08:00.588Z", + "completed":"2016-01-31T14:08:00.588Z", + "new_balance":"5292.73", + "value":"-23.24" + } + }, + { + "id":"fb2043dd-45b4-47d5-accb-9bbf0840913b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T02:50:41.782Z", + "completed":"2016-02-01T02:50:41.782Z", + "new_balance":"5289.29", + "value":"-3.44" + } + }, + { + "id":"cf60b7d3-41ff-48fa-8be1-bb8173a11f28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T15:51:02.447Z", + "completed":"2016-02-01T15:51:02.447Z", + "new_balance":"5281.59", + "value":"-7.70" + } + }, + { + "id":"b42fbc8a-b0c3-4b72-af4d-c139110f555f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T18:08:29.471Z", + "completed":"2016-02-01T18:08:29.471Z", + "new_balance":"5278.15", + "value":"-3.44" + } + }, + { + "id":"61c134cd-c8d1-42e4-9f67-e0ff36b1768d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T22:03:39.738Z", + "completed":"2016-02-01T22:03:39.738Z", + "new_balance":"5273.97", + "value":"-4.18" + } + }, + { + "id":"aed975c0-9760-4d1b-a839-915319566081", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T11:54:01.900Z", + "completed":"2016-02-03T11:54:01.900Z", + "new_balance":"5273.27", + "value":"-0.70" + } + }, + { + "id":"9fd3269f-d3e8-4bfe-b92c-da4b1a5a6b11", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T03:41:27.852Z", + "completed":"2016-02-04T03:41:27.852Z", + "new_balance":"5265.97", + "value":"-7.30" + } + }, + { + "id":"bee02504-97f4-4e6f-8978-c08a183cd6c6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T19:45:40.854Z", + "completed":"2016-02-06T19:45:40.854Z", + "new_balance":"5255.87", + "value":"-10.10" + } + }, + { + "id":"a76d4a7c-2c53-4ec0-b84f-ea6cad8120c7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T23:54:11.919Z", + "completed":"2016-02-06T23:54:11.919Z", + "new_balance":"5246.41", + "value":"-9.46" + } + }, + { + "id":"3eebc0c9-5400-48b0-b505-760b29edc603", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T07:46:22.193Z", + "completed":"2016-02-07T07:46:22.193Z", + "new_balance":"5242.61", + "value":"-3.80" + } + }, + { + "id":"c8875bc2-2fa0-4451-8eda-e9543879ba8e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T08:28:56.648Z", + "completed":"2016-02-08T08:28:56.648Z", + "new_balance":"5241.49", + "value":"-1.12" + } + }, + { + "id":"528f5faa-a13b-4f90-a727-ceabfae7d2e2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T04:15:25.933Z", + "completed":"2016-02-09T04:15:25.933Z", + "new_balance":"5236.90", + "value":"-4.59" + } + }, + { + "id":"491b32e9-2f3f-4c05-8f9a-4ddd1361073a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T12:50:40.582Z", + "completed":"2016-02-11T12:50:40.582Z", + "new_balance":"5234.50", + "value":"-2.40" + } + }, + { + "id":"d3590892-cf58-4900-8b80-d70ca6e96dca", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T15:13:44.652Z", + "completed":"2016-02-13T15:13:44.652Z", + "new_balance":"5231.62", + "value":"-2.88" + } + }, + { + "id":"0b475942-db1e-4e9f-99d5-3a975cb7d96c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T11:34:27.281Z", + "completed":"2016-02-17T11:34:27.281Z", + "new_balance":"5231.10", + "value":"-0.52" + } + }, + { + "id":"3a3f375a-bdfb-4bcc-bd85-feb2fc27a734", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T01:09:55.379Z", + "completed":"2016-02-19T01:09:55.379Z", + "new_balance":"5225.92", + "value":"-5.18" + } + }, + { + "id":"07a0cd36-3c16-40f8-8256-79a33c670f57", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T17:00:53.221Z", + "completed":"2016-02-21T17:00:53.221Z", + "new_balance":"5218.62", + "value":"-7.30" + } + }, + { + "id":"f4129865-aaad-47ba-b5ea-14c6f22c8231", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T15:46:24.925Z", + "completed":"2016-02-24T15:46:24.925Z", + "new_balance":"5214.95", + "value":"-3.67" + } + }, + { + "id":"60fee663-62f8-4fab-86e3-17d0cd86eb73", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T06:01:39.214Z", + "completed":"2016-02-26T06:01:39.214Z", + "new_balance":"5449.91", + "value":"234.96" + } + }, + { + "id":"27242b24-7ce4-4eb6-9268-f35f02162020", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T07:38:31.838Z", + "completed":"2016-03-01T07:38:31.838Z", + "new_balance":"5442.21", + "value":"-7.70" + } + }, + { + "id":"89196c0b-af6c-46e6-9ee1-c7def5dc7c4c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T08:58:05.065Z", + "completed":"2016-03-01T08:58:05.065Z", + "new_balance":"5438.77", + "value":"-3.44" + } + }, + { + "id":"e4b23a19-95f4-458e-a7a0-0e69a6bb6a2e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T14:45:30.924Z", + "completed":"2016-03-01T14:45:30.924Z", + "new_balance":"5434.59", + "value":"-4.18" + } + }, + { + "id":"dc8e4e0f-1ea3-4a68-a626-2cbe0fafa4fb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T19:05:20.237Z", + "completed":"2016-03-01T19:05:20.237Z", + "new_balance":"5431.15", + "value":"-3.44" + } + }, + { + "id":"f84330d7-852c-48d1-a5bb-fb99d0d68591", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T03:52:53.812Z", + "completed":"2016-03-09T03:52:53.812Z", + "new_balance":"5425.33", + "value":"-5.82" + } + }, + { + "id":"03142307-f8a9-477a-922e-aea25523c0f4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T07:59:05.335Z", + "completed":"2016-03-09T07:59:05.335Z", + "new_balance":"5418.07", + "value":"-7.26" + } + }, + { + "id":"21876efd-4dfe-41c8-9cdc-8fa913f5413a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T04:33:51.144Z", + "completed":"2016-03-17T04:33:51.144Z", + "new_balance":"5410.33", + "value":"-7.74" + } + }, + { + "id":"623b326b-5ebd-4c85-af09-066eafc9a12d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T00:45:05.435Z", + "completed":"2016-03-18T00:45:05.435Z", + "new_balance":"5409.72", + "value":"-0.61" + } + }, + { + "id":"18170700-9ddd-4715-ad0c-25a3a191f5ba", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T06:09:04.390Z", + "completed":"2016-03-18T06:09:04.390Z", + "new_balance":"5405.65", + "value":"-4.07" + } + }, + { + "id":"18cc37de-39d3-4bf2-bf3a-612c69e29b8e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T19:03:58.934Z", + "completed":"2016-03-18T19:03:58.934Z", + "new_balance":"5397.91", + "value":"-7.74" + } + }, + { + "id":"44ed1ba3-f3b9-4a72-b7f8-71b5c893b25d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T22:26:54.929Z", + "completed":"2016-03-18T22:26:54.929Z", + "new_balance":"5393.50", + "value":"-4.41" + } + }, + { + "id":"338126e9-3b3c-4e10-b34f-816617f2503a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T22:54:52.439Z", + "completed":"2016-03-22T22:54:52.439Z", + "new_balance":"5383.49", + "value":"-10.01" + } + }, + { + "id":"b684cf63-9f83-4471-926b-6a86264dd9c6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T06:50:29.483Z", + "completed":"2016-03-29T06:50:29.483Z", + "new_balance":"5618.45", + "value":"234.96" + } + }, + { + "id":"0e318044-b288-4c9d-a33e-26f0e156c3c0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T11:41:51.224Z", + "completed":"2016-03-29T11:41:51.224Z", + "new_balance":"5614.78", + "value":"-3.67" + } + }, + { + "id":"65a20dfd-fd63-4e29-be99-c4d1ba0f25ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T22:16:12.903Z", + "completed":"2016-03-31T22:16:12.903Z", + "new_balance":"5591.54", + "value":"-23.24" + } + }, + { + "id":"7063327d-13fe-4848-a93a-f1fceacae08f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T01:00:01.652Z", + "completed":"2016-04-01T01:00:01.652Z", + "new_balance":"5583.84", + "value":"-7.70" + } + }, + { + "id":"5a313eb1-50ed-45fc-b9bc-19d21d287ddc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T03:19:34.890Z", + "completed":"2016-04-01T03:19:34.890Z", + "new_balance":"5579.66", + "value":"-4.18" + } + }, + { + "id":"96880f0a-bbf8-4935-9b60-4fee7b75ca3c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T16:05:16.043Z", + "completed":"2016-04-01T16:05:16.043Z", + "new_balance":"5576.22", + "value":"-3.44" + } + }, + { + "id":"71416bad-528a-4d50-ad97-992f31149fd7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T23:29:55.230Z", + "completed":"2016-04-01T23:29:55.230Z", + "new_balance":"5572.78", + "value":"-3.44" + } + }, + { + "id":"78d93f66-83c3-478a-960f-8a118f143c3d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T08:20:17.918Z", + "completed":"2016-04-02T08:20:17.918Z", + "new_balance":"5565.22", + "value":"-7.56" + } + }, + { + "id":"c6ae12f5-174f-4845-a2b5-72fe6b9e1baf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T03:43:14.901Z", + "completed":"2016-04-05T03:43:14.901Z", + "new_balance":"5561.78", + "value":"-3.44" + } + }, + { + "id":"ef5e8796-abe2-42dd-af42-6f0cbbdb64f5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T08:45:01.927Z", + "completed":"2016-04-05T08:45:01.927Z", + "new_balance":"5561.08", + "value":"-0.70" + } + }, + { + "id":"3494f276-5f24-4697-9f63-72e0cf5da13e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T10:41:54.582Z", + "completed":"2016-04-05T10:41:54.582Z", + "new_balance":"5559.84", + "value":"-1.24" + } + }, + { + "id":"84c561dc-70d9-4053-bbfb-755ff4875776", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T14:40:00.483Z", + "completed":"2016-04-05T14:40:00.483Z", + "new_balance":"5559.25", + "value":"-0.59" + } + }, + { + "id":"a51b8f83-a28e-4fc6-97cb-d7d28426300c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T16:14:54.540Z", + "completed":"2016-04-05T16:14:54.540Z", + "new_balance":"5553.80", + "value":"-5.45" + } + }, + { + "id":"d729e788-2bcb-4239-b5fb-9b3c06b076b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T19:31:35.283Z", + "completed":"2016-04-05T19:31:35.283Z", + "new_balance":"5549.62", + "value":"-4.18" + } + }, + { + "id":"87de7b74-7913-4915-ac33-c58a701bdf9f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T23:03:08.725Z", + "completed":"2016-04-05T23:03:08.725Z", + "new_balance":"5542.32", + "value":"-7.30" + } + }, + { + "id":"808e111a-7f81-444a-997c-a3932ff73b95", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T23:35:22.186Z", + "completed":"2016-04-08T23:35:22.186Z", + "new_balance":"5534.23", + "value":"-8.09" + } + }, + { + "id":"9f773fa6-39e4-49ab-8ecd-2fc9e9d44303", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T03:01:31.161Z", + "completed":"2016-04-10T03:01:31.161Z", + "new_balance":"5528.11", + "value":"-6.12" + } + }, + { + "id":"eae0a292-1006-4dcc-9be5-11c6c449c743", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T14:13:34.903Z", + "completed":"2016-04-11T14:13:34.903Z", + "new_balance":"5520.81", + "value":"-7.30" + } + }, + { + "id":"53d3377e-8748-4add-97a9-0ee9ad4c324c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T20:13:09.794Z", + "completed":"2016-04-11T20:13:09.794Z", + "new_balance":"5518.13", + "value":"-2.68" + } + }, + { + "id":"0d66ac46-9c9e-4f04-8a0a-d22d06bdbcc8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:08:56.940Z", + "completed":"2016-04-13T06:08:56.940Z", + "new_balance":"5514.46", + "value":"-3.67" + } + }, + { + "id":"c43b356f-66a4-4fe2-9e58-4893c78ad34b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T00:12:28.330Z", + "completed":"2016-04-18T00:12:28.330Z", + "new_balance":"5749.42", + "value":"234.96" + } + }, + { + "id":"21202b77-375f-4911-81e4-c0cb482b0494", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T06:10:37.740Z", + "completed":"2016-04-25T06:10:37.740Z", + "new_balance":"5726.18", + "value":"-23.24" + } + }, + { + "id":"935833a4-3d81-4700-8a6b-dd609e8d247d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T08:21:46.225Z", + "completed":"2016-05-02T08:21:46.225Z", + "new_balance":"5722.74", + "value":"-3.44" + } + }, + { + "id":"575956a8-d336-40e6-b689-f03aa9fd8f53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T12:41:24.828Z", + "completed":"2016-05-02T12:41:24.828Z", + "new_balance":"5715.04", + "value":"-7.70" + } + }, + { + "id":"9050511f-9e06-45dc-b558-d069f15355dc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T14:57:22.757Z", + "completed":"2016-05-02T14:57:22.757Z", + "new_balance":"5711.60", + "value":"-3.44" + } + }, + { + "id":"4b74c353-1cd7-46d5-a892-07600d2cec8b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T20:49:24.641Z", + "completed":"2016-05-02T20:49:24.641Z", + "new_balance":"5707.42", + "value":"-4.18" + } + }, + { + "id":"27ee1b65-bba8-419c-ae2a-6b458bf29556", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T04:29:55.812Z", + "completed":"2016-05-04T04:29:55.812Z", + "new_balance":"5700.12", + "value":"-7.30" + } + }, + { + "id":"5f56b2ef-bbe7-46e3-893f-7883925f2d43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T18:56:27.178Z", + "completed":"2016-05-04T18:56:27.178Z", + "new_balance":"5699.42", + "value":"-0.70" + } + }, + { + "id":"14a45a56-615a-4c75-87c2-2bd6de15d490", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T06:04:28.403Z", + "completed":"2016-05-06T06:04:28.403Z", + "new_balance":"5691.98", + "value":"-7.44" + } + }, + { + "id":"49a50d89-edc4-4a13-9b42-d6b5ea881695", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T01:44:58.273Z", + "completed":"2016-05-07T01:44:58.273Z", + "new_balance":"5689.27", + "value":"-2.71" + } + }, + { + "id":"a217304f-fa69-4294-a9c0-daacdbcf8c49", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T04:59:54.520Z", + "completed":"2016-05-07T04:59:54.520Z", + "new_balance":"5681.71", + "value":"-7.56" + } + }, + { + "id":"72dbd704-0540-4dba-945a-73c2253b330f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T06:53:00.305Z", + "completed":"2016-05-09T06:53:00.305Z", + "new_balance":"5680.47", + "value":"-1.24" + } + }, + { + "id":"e4ecefa2-9da7-4b48-8849-100b9956d7de", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T18:05:12.858Z", + "completed":"2016-05-09T18:05:12.858Z", + "new_balance":"5675.88", + "value":"-4.59" + } + }, + { + "id":"9b1db0a2-7170-4575-b9cc-4e20da978b13", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T04:44:49.724Z", + "completed":"2016-05-13T04:44:49.724Z", + "new_balance":"5673.17", + "value":"-2.71" + } + }, + { + "id":"8f5915d9-eb2e-4441-bea9-7c1e5b16dd6b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T05:18:45.652Z", + "completed":"2016-05-13T05:18:45.652Z", + "new_balance":"5672.47", + "value":"-0.70" + } + }, + { + "id":"bb37b8bd-45c1-4e29-a6a2-d70dc84ee319", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T20:00:12.448Z", + "completed":"2016-05-13T20:00:12.448Z", + "new_balance":"5670.34", + "value":"-2.13" + } + }, + { + "id":"ccc90e71-dbaa-4716-900c-03c35c682de9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T00:34:37.085Z", + "completed":"2016-05-14T00:34:37.085Z", + "new_balance":"5663.04", + "value":"-7.30" + } + }, + { + "id":"55dfb9ed-64c1-4aea-a1c3-5162a1b6a896", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T23:57:47.069Z", + "completed":"2016-05-14T23:57:47.069Z", + "new_balance":"5658.58", + "value":"-4.46" + } + }, + { + "id":"799ee5b1-6e9d-482f-a8ba-71189a9d20a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T08:40:02.980Z", + "completed":"2016-05-15T08:40:02.980Z", + "new_balance":"5654.91", + "value":"-3.67" + } + }, + { + "id":"429fa195-db32-4a6f-ba4d-2dbef75a9021", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T02:57:37.746Z", + "completed":"2016-05-30T02:57:37.746Z", + "new_balance":"5631.67", + "value":"-23.24" + } + }, + { + "id":"32b402c0-6204-4ac5-a6cc-fefa189fa4ec", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T20:42:07.892Z", + "completed":"2016-05-30T20:42:07.892Z", + "new_balance":"5866.63", + "value":"234.96" + } + }, + { + "id":"da9d7504-4d3a-40e0-8fb4-6e74c010bdbf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T06:05:28.584Z", + "completed":"2016-06-01T06:05:28.584Z", + "new_balance":"5863.19", + "value":"-3.44" + } + }, + { + "id":"2f352939-aa47-48e7-8c26-e6486bcd3d96", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T09:55:47.114Z", + "completed":"2016-06-01T09:55:47.114Z", + "new_balance":"5859.01", + "value":"-4.18" + } + }, + { + "id":"d6b7e3f3-00d6-4bb5-afc0-5e0689749daf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:45:43.748Z", + "completed":"2016-06-01T16:45:43.748Z", + "new_balance":"5855.57", + "value":"-3.44" + } + }, + { + "id":"8fdb4047-6200-47f4-9f63-0501bd9b6b99", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T21:55:27.174Z", + "completed":"2016-06-01T21:55:27.174Z", + "new_balance":"5847.87", + "value":"-7.70" + } + }, + { + "id":"6cec06d5-d76a-4c0f-8f4f-44e86b94bc79", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T00:37:27.412Z", + "completed":"2016-06-04T00:37:27.412Z", + "new_balance":"5840.61", + "value":"-7.26" + } + }, + { + "id":"799ca103-a93e-4aa8-8952-ce59f363f91d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T19:40:32.040Z", + "completed":"2016-06-04T19:40:32.040Z", + "new_balance":"5834.79", + "value":"-5.82" + } + }, + { + "id":"82116638-d0ef-4f7f-9a5f-3ab23a1205f0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T14:56:29.666Z", + "completed":"2016-06-11T14:56:29.666Z", + "new_balance":"5827.05", + "value":"-7.74" + } + }, + { + "id":"242642c6-7085-4a65-a6b7-a67553a8e295", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T20:17:09.592Z", + "completed":"2016-06-11T20:17:09.592Z", + "new_balance":"5819.31", + "value":"-7.74" + } + }, + { + "id":"ed65893d-d720-4ef0-b6fe-afd6c180ee35", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T21:25:39.839Z", + "completed":"2016-06-11T21:25:39.839Z", + "new_balance":"5814.90", + "value":"-4.41" + } + }, + { + "id":"b87029fd-5a41-4646-b584-32534ced1dfa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T14:28:21.203Z", + "completed":"2016-06-12T14:28:21.203Z", + "new_balance":"5810.83", + "value":"-4.07" + } + }, + { + "id":"4430f718-8041-47c7-bb32-fe5e35f9d2ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T21:18:14.746Z", + "completed":"2016-06-12T21:18:14.746Z", + "new_balance":"5810.22", + "value":"-0.61" + } + }, + { + "id":"80792272-422a-44d8-9d00-56154aedaeb3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:05:22.555Z", + "completed":"2016-06-16T00:05:22.555Z", + "new_balance":"5800.21", + "value":"-10.01" + } + }, + { + "id":"a653552c-61a6-4a83-964a-fdd4d8663990", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T04:35:27.922Z", + "completed":"2016-06-29T04:35:27.922Z", + "new_balance":"5796.54", + "value":"-3.67" + } + }, + { + "id":"ca615ec8-2bb8-4876-af1a-6f2c795c3230", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T03:00:41.750Z", + "completed":"2016-06-30T03:00:41.750Z", + "new_balance":"6031.50", + "value":"234.96" + } + }, + { + "id":"5a785692-5920-4715-94ff-2ad2750d1927", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T09:34:16.473Z", + "completed":"2016-06-30T09:34:16.473Z", + "new_balance":"6008.26", + "value":"-23.24" + } + }, + { + "id":"6a3e974f-a586-40e7-83e0-27f3fbd71de9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T00:56:56.292Z", + "completed":"2016-07-01T00:56:56.292Z", + "new_balance":"6004.82", + "value":"-3.44" + } + }, + { + "id":"235148da-cb1c-49d9-b715-6bbbfae50f64", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T03:03:36.462Z", + "completed":"2016-07-01T03:03:36.462Z", + "new_balance":"6001.38", + "value":"-3.44" + } + }, + { + "id":"c813b9e6-ecbb-4521-96fc-098122cd8447", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T05:24:41.043Z", + "completed":"2016-07-01T05:24:41.043Z", + "new_balance":"5997.20", + "value":"-4.18" + } + }, + { + "id":"0f1c4b5d-ac8f-41b7-a848-f14817a05ec8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T19:46:25.545Z", + "completed":"2016-07-01T19:46:25.545Z", + "new_balance":"5989.50", + "value":"-7.70" + } + }, + { + "id":"0f19aca8-81e2-4ffb-9b9a-a112acdcd079", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T06:52:26.824Z", + "completed":"2016-07-05T06:52:26.824Z", + "new_balance":"5979.46", + "value":"-10.04" + } + }, + { + "id":"44020080-90b6-45d6-bfb3-903b987d4e18", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T22:38:35.983Z", + "completed":"2016-07-05T22:38:35.983Z", + "new_balance":"5972.16", + "value":"-7.30" + } + }, + { + "id":"5cab774c-3c95-40bd-a404-ec787fbc9a7c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T07:05:31.392Z", + "completed":"2016-07-08T07:05:31.392Z", + "new_balance":"5970.76", + "value":"-1.40" + } + }, + { + "id":"180eadbc-901d-4b1e-93ee-d262fc53b9f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T18:55:04.309Z", + "completed":"2016-07-10T18:55:04.309Z", + "new_balance":"5966.10", + "value":"-4.66" + } + }, + { + "id":"0548ae59-9378-4b14-b8b5-3af339b7812d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T08:36:19.949Z", + "completed":"2016-07-12T08:36:19.949Z", + "new_balance":"5962.66", + "value":"-3.44" + } + }, + { + "id":"2fd146dd-a6a9-4b7b-8c15-83a161e2657b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T16:32:49.378Z", + "completed":"2016-07-12T16:32:49.378Z", + "new_balance":"5957.25", + "value":"-5.41" + } + }, + { + "id":"d3eb343f-4ade-41e7-9e68-f0f48b8deef3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T00:54:21.298Z", + "completed":"2016-07-13T00:54:21.298Z", + "new_balance":"5956.79", + "value":"-0.46" + } + }, + { + "id":"4b77ebd5-920d-42b2-b984-35d6f9a2d09c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T07:04:48.139Z", + "completed":"2016-07-13T07:04:48.139Z", + "new_balance":"5956.28", + "value":"-0.51" + } + }, + { + "id":"79490475-b3f1-46e0-a0f3-1efec75e8d5d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T11:35:34.631Z", + "completed":"2016-07-18T11:35:34.631Z", + "new_balance":"5946.76", + "value":"-9.52" + } + }, + { + "id":"181dc3ec-9670-4979-b597-bbd5085838c8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T00:14:16.792Z", + "completed":"2016-07-20T00:14:16.792Z", + "new_balance":"5939.93", + "value":"-6.83" + } + }, + { + "id":"6b0f6f4e-6643-4e4f-8412-60399464af79", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T18:37:56.688Z", + "completed":"2016-07-20T18:37:56.688Z", + "new_balance":"5932.63", + "value":"-7.30" + } + }, + { + "id":"1252c3a2-d8b3-4162-a9e8-b39689488f6d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T22:54:43.184Z", + "completed":"2016-07-24T22:54:43.184Z", + "new_balance":"5929.95", + "value":"-2.68" + } + }, + { + "id":"ebd4dd67-0954-4205-8e53-d57d15ca6354", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T06:33:47.013Z", + "completed":"2016-07-29T06:33:47.013Z", + "new_balance":"6164.91", + "value":"234.96" + } + }, + { + "id":"8d46c38a-873f-4de9-aa31-3ea78c923e44", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T19:21:11.522Z", + "completed":"2016-07-29T19:21:11.522Z", + "new_balance":"6161.24", + "value":"-3.67" + } + }, + { + "id":"507efd82-c98c-4358-81e7-af14f0fbfed1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T05:50:22.461Z", + "completed":"2016-07-30T05:50:22.461Z", + "new_balance":"6138.00", + "value":"-23.24" + } + }, + { + "id":"e0393e5b-58e1-421e-95c3-af365b57fe26", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T02:58:56.092Z", + "completed":"2016-08-01T02:58:56.092Z", + "new_balance":"6133.82", + "value":"-4.18" + } + }, + { + "id":"ddc8fe9f-c2f8-4981-9246-e3c0598d2ddd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T06:48:53.414Z", + "completed":"2016-08-01T06:48:53.414Z", + "new_balance":"6130.38", + "value":"-3.44" + } + }, + { + "id":"e69331c8-5a0f-4f1e-8138-9c86713a2798", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T11:10:44.302Z", + "completed":"2016-08-01T11:10:44.302Z", + "new_balance":"6126.94", + "value":"-3.44" + } + }, + { + "id":"1c7db135-a6eb-4c8d-be75-5d62a41c1f47", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T20:12:08.531Z", + "completed":"2016-08-01T20:12:08.531Z", + "new_balance":"6119.24", + "value":"-7.70" + } + }, + { + "id":"bdf38d3a-89b8-41a1-8167-378ce3a64288", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T06:18:45.816Z", + "completed":"2016-08-03T06:18:45.816Z", + "new_balance":"6118.54", + "value":"-0.70" + } + }, + { + "id":"bc4e0abe-5f94-43f1-a4eb-b79d04624a63", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T06:29:55.064Z", + "completed":"2016-08-04T06:29:55.064Z", + "new_balance":"6111.24", + "value":"-7.30" + } + }, + { + "id":"08e9f844-9e07-4415-9088-43bb519e9f96", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:08:17.797Z", + "completed":"2016-08-08T03:08:17.797Z", + "new_balance":"6110.12", + "value":"-1.12" + } + }, + { + "id":"ae57a375-ae37-4d30-b1fb-967ad580938c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T07:29:24.744Z", + "completed":"2016-08-08T07:29:24.744Z", + "new_balance":"6100.66", + "value":"-9.46" + } + }, + { + "id":"daec86e4-9ed9-4d73-958a-63400b725907", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:16:20.495Z", + "completed":"2016-08-08T10:16:20.495Z", + "new_balance":"6096.86", + "value":"-3.80" + } + }, + { + "id":"fefd5c15-e8d3-4d03-a0ba-f651dd7052b9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T14:52:52.395Z", + "completed":"2016-08-08T14:52:52.395Z", + "new_balance":"6086.76", + "value":"-10.10" + } + }, + { + "id":"c8c9caac-e292-4dbf-9fcc-7a947bb93403", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:13:20.146Z", + "completed":"2016-08-09T16:13:20.146Z", + "new_balance":"6082.17", + "value":"-4.59" + } + }, + { + "id":"a9ca3fc0-de39-473d-9c34-ae5d4c64b5fd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T00:14:37.674Z", + "completed":"2016-08-14T00:14:37.674Z", + "new_balance":"6079.77", + "value":"-2.40" + } + }, + { + "id":"964f1bd2-cbd2-4f37-8e55-08aafb077135", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T13:31:41.514Z", + "completed":"2016-08-15T13:31:41.514Z", + "new_balance":"6076.89", + "value":"-2.88" + } + }, + { + "id":"3d749082-bee3-4f5a-a9e4-e0605bcf440a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T01:08:59.292Z", + "completed":"2016-08-19T01:08:59.292Z", + "new_balance":"6076.37", + "value":"-0.52" + } + }, + { + "id":"f6e6f705-11d6-40a4-b523-956e158a5e88", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T14:56:41.122Z", + "completed":"2016-08-22T14:56:41.122Z", + "new_balance":"6071.19", + "value":"-5.18" + } + }, + { + "id":"e6c008a2-95fe-481f-b866-e63305f0112b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T01:04:26.070Z", + "completed":"2016-08-26T01:04:26.070Z", + "new_balance":"6063.89", + "value":"-7.30" + } + }, + { + "id":"4bcf4f8d-9e02-464c-afd4-16a76421e2fb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T13:06:06.922Z", + "completed":"2016-08-28T13:06:06.922Z", + "new_balance":"6040.65", + "value":"-23.24" + } + }, + { + "id":"a37ee20e-7bc5-46bc-9a2a-9aaaf720f81f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T00:50:01.219Z", + "completed":"2016-08-29T00:50:01.219Z", + "new_balance":"6036.98", + "value":"-3.67" + } + }, + { + "id":"6d2fdcad-d95c-4ef3-999c-9d4ea3a9fa5d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T09:28:24.258Z", + "completed":"2016-08-29T09:28:24.258Z", + "new_balance":"6271.94", + "value":"234.96" + } + }, + { + "id":"9e6d5072-6b6f-4b07-bc95-504925d2f010", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T19:23:23.356Z", + "completed":"2016-08-30T19:23:23.356Z", + "new_balance":"6248.70", + "value":"-23.24" + } + }, + { + "id":"f0e91116-276c-4def-a1a6-36196d2624bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T10:17:54.579Z", + "completed":"2016-09-01T10:17:54.579Z", + "new_balance":"6241.00", + "value":"-7.70" + } + }, + { + "id":"78459e04-5ff8-4ec5-a503-c20ac2862717", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T11:40:57.330Z", + "completed":"2016-09-01T11:40:57.330Z", + "new_balance":"6236.82", + "value":"-4.18" + } + }, + { + "id":"66a5387a-0822-49ca-86e4-71fbaa485925", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:54:06.058Z", + "completed":"2016-09-01T16:54:06.058Z", + "new_balance":"6233.38", + "value":"-3.44" + } + }, + { + "id":"00d1448f-7337-4f5a-bbaa-83ee40512ee6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T22:35:30.908Z", + "completed":"2016-09-01T22:35:30.908Z", + "new_balance":"6229.94", + "value":"-3.44" + } + }, + { + "id":"131ce71e-9027-4af2-8bc2-3cb5c91eeebc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T13:37:10.477Z", + "completed":"2016-09-09T13:37:10.477Z", + "new_balance":"6222.68", + "value":"-7.26" + } + }, + { + "id":"7b15f7b2-5a7e-4bb9-99e2-719abecb5049", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T15:26:55.531Z", + "completed":"2016-09-09T15:26:55.531Z", + "new_balance":"6216.86", + "value":"-5.82" + } + }, + { + "id":"69542b87-a4f0-464e-b5eb-62d552d0f9c1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T19:27:04.669Z", + "completed":"2016-09-17T19:27:04.669Z", + "new_balance":"6209.12", + "value":"-7.74" + } + }, + { + "id":"130d9653-ca15-4fec-b522-90eedb53e7e5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T00:03:40.365Z", + "completed":"2016-09-18T00:03:40.365Z", + "new_balance":"6208.51", + "value":"-0.61" + } + }, + { + "id":"fb399b7a-4f1a-4fa3-b94a-e71b37dfeb2c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T03:39:44.709Z", + "completed":"2016-09-18T03:39:44.709Z", + "new_balance":"6204.10", + "value":"-4.41" + } + }, + { + "id":"ab1ddb05-f125-4892-99fc-ebb971911dd6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T17:25:00.933Z", + "completed":"2016-09-18T17:25:00.933Z", + "new_balance":"6196.36", + "value":"-7.74" + } + }, + { + "id":"cd7af34e-d44c-4f13-ab47-7451ff010ddb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T20:50:05.742Z", + "completed":"2016-09-18T20:50:05.742Z", + "new_balance":"6192.29", + "value":"-4.07" + } + }, + { + "id":"48b12b25-e119-4466-af12-1e079f9c2c43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T15:23:29.383Z", + "completed":"2016-09-22T15:23:29.383Z", + "new_balance":"6182.28", + "value":"-10.01" + } + }, + { + "id":"555288d1-a0e2-4c62-819c-7351a70a2905", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T21:29:43.851Z", + "completed":"2016-09-29T21:29:43.851Z", + "new_balance":"6178.61", + "value":"-3.67" + } + }, + { + "id":"433f8452-b0fb-4bb5-9805-5558c5ba126c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T23:42:09.742Z", + "completed":"2016-09-29T23:42:09.742Z", + "new_balance":"6413.57", + "value":"234.96" + } + }, + { + "id":"c88f30ea-a1a1-4dd6-a7d5-a440fd0cb1f5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T05:14:50.871Z", + "completed":"2016-09-30T05:14:50.871Z", + "new_balance":"6390.33", + "value":"-23.24" + } + }, + { + "id":"2245325b-2300-46d9-880a-b7256053561e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T00:07:05.870Z", + "completed":"2016-10-01T00:07:05.870Z", + "new_balance":"6382.63", + "value":"-7.70" + } + }, + { + "id":"0176e94a-4f45-4291-a4ca-483ec6f1b5d2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T11:34:16.572Z", + "completed":"2016-10-01T11:34:16.572Z", + "new_balance":"6379.19", + "value":"-3.44" + } + }, + { + "id":"b53d4ac2-6bb7-4583-b054-5e22add6dd19", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T19:39:40.953Z", + "completed":"2016-10-01T19:39:40.953Z", + "new_balance":"6375.01", + "value":"-4.18" + } + }, + { + "id":"f794b35d-f252-4ad0-bef2-868ee7002a43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T21:05:19.720Z", + "completed":"2016-10-01T21:05:19.720Z", + "new_balance":"6371.57", + "value":"-3.44" + } + }, + { + "id":"6862af1e-5185-4ce6-b00d-edd7349bfbc4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T19:52:59.567Z", + "completed":"2016-10-02T19:52:59.567Z", + "new_balance":"6364.01", + "value":"-7.56" + } + }, + { + "id":"aa2a4cf2-dc4e-4002-920f-f4450230a771", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T02:03:09.829Z", + "completed":"2016-10-05T02:03:09.829Z", + "new_balance":"6360.57", + "value":"-3.44" + } + }, + { + "id":"ee7e61c4-9550-40a0-abde-08f7cfc78aa6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T06:17:57.376Z", + "completed":"2016-10-05T06:17:57.376Z", + "new_balance":"6356.39", + "value":"-4.18" + } + }, + { + "id":"a24f66b0-9f00-4670-92bd-6bb3d3b62e01", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T09:11:45.026Z", + "completed":"2016-10-05T09:11:45.026Z", + "new_balance":"6350.94", + "value":"-5.45" + } + }, + { + "id":"581186ff-b290-46b9-b702-f6bd32c64c77", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T14:53:29.401Z", + "completed":"2016-10-05T14:53:29.401Z", + "new_balance":"6349.70", + "value":"-1.24" + } + }, + { + "id":"0809bf12-211b-405f-9b5d-150f8e3b085c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T15:41:26.682Z", + "completed":"2016-10-05T15:41:26.682Z", + "new_balance":"6349.11", + "value":"-0.59" + } + }, + { + "id":"8c1a5c91-2855-4392-bf30-2bfbee69775d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T17:38:32.647Z", + "completed":"2016-10-05T17:38:32.647Z", + "new_balance":"6341.81", + "value":"-7.30" + } + }, + { + "id":"4bd25554-8f8d-4414-80ab-7269fbe08778", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T21:56:18.715Z", + "completed":"2016-10-05T21:56:18.715Z", + "new_balance":"6341.11", + "value":"-0.70" + } + }, + { + "id":"5ffea325-8543-4eb3-afc9-424fa7686432", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T16:38:42.467Z", + "completed":"2016-10-09T16:38:42.467Z", + "new_balance":"6333.02", + "value":"-8.09" + } + }, + { + "id":"c76beeaf-91ad-4b81-8677-814d2473d0fc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T04:53:51.200Z", + "completed":"2016-10-11T04:53:51.200Z", + "new_balance":"6326.90", + "value":"-6.12" + } + }, + { + "id":"f4a605bf-25c4-4177-a5f7-88a50c84250e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T01:06:45.790Z", + "completed":"2016-10-12T01:06:45.790Z", + "new_balance":"6319.60", + "value":"-7.30" + } + }, + { + "id":"4e7580e9-3fab-4624-b265-b5615641954d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T15:48:47.904Z", + "completed":"2016-10-12T15:48:47.904Z", + "new_balance":"6316.92", + "value":"-2.68" + } + }, + { + "id":"53f46b8d-84d3-4f02-96a4-44ad40c07482", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T22:04:45.047Z", + "completed":"2016-10-20T22:04:45.047Z", + "new_balance":"6313.25", + "value":"-3.67" + } + }, + { + "id":"3e708ff8-76b4-4bd3-89ad-3294050fc98c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T04:06:34.428Z", + "completed":"2016-10-29T04:06:34.428Z", + "new_balance":"6548.21", + "value":"234.96" + } + }, + { + "id":"0f79f883-a67f-4b4a-bd83-b3f588799683", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T12:54:28.439Z", + "completed":"2016-10-30T12:54:28.439Z", + "new_balance":"6524.97", + "value":"-23.24" + } + }, + { + "id":"f7f08e15-2e7d-4e1c-91f7-ca03514d65f7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T03:30:31.496Z", + "completed":"2016-11-02T03:30:31.496Z", + "new_balance":"6521.53", + "value":"-3.44" + } + }, + { + "id":"ca713650-e2f5-4535-9037-b7d3c93abb69", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T08:00:32.407Z", + "completed":"2016-11-02T08:00:32.407Z", + "new_balance":"6513.83", + "value":"-7.70" + } + }, + { + "id":"4fa2777c-e84a-440d-9f49-37cc8aead6c1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T15:38:10.291Z", + "completed":"2016-11-02T15:38:10.291Z", + "new_balance":"6509.65", + "value":"-4.18" + } + }, + { + "id":"939d9dfc-dbc9-4a8c-884b-a21d18cd9772", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T20:56:30.035Z", + "completed":"2016-11-02T20:56:30.035Z", + "new_balance":"6506.21", + "value":"-3.44" + } + }, + { + "id":"9c9b159b-90fe-493d-b230-7ef1fb050233", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T02:18:55.810Z", + "completed":"2016-11-04T02:18:55.810Z", + "new_balance":"6498.91", + "value":"-7.30" + } + }, + { + "id":"2bd34da4-d650-4ea1-9daa-342b9d85a445", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T20:02:28.257Z", + "completed":"2016-11-04T20:02:28.257Z", + "new_balance":"6498.21", + "value":"-0.70" + } + }, + { + "id":"dc06575d-3628-4200-a1e6-3aefbb2afc6d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T02:37:42.037Z", + "completed":"2016-11-06T02:37:42.037Z", + "new_balance":"6490.77", + "value":"-7.44" + } + }, + { + "id":"01d9b596-d911-44d5-a49b-5cb342495804", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T05:10:19.276Z", + "completed":"2016-11-07T05:10:19.276Z", + "new_balance":"6483.21", + "value":"-7.56" + } + }, + { + "id":"47b6a2b1-03f1-4fab-a12d-614ef315c2ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T12:35:08.685Z", + "completed":"2016-11-07T12:35:08.685Z", + "new_balance":"6480.50", + "value":"-2.71" + } + }, + { + "id":"ef49bd2a-f040-4466-87b0-0dd0daed9119", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T18:13:14.329Z", + "completed":"2016-11-09T18:13:14.329Z", + "new_balance":"6475.91", + "value":"-4.59" + } + }, + { + "id":"509e16c7-2046-4e43-9333-e666726581f7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T19:08:47.342Z", + "completed":"2016-11-09T19:08:47.342Z", + "new_balance":"6474.67", + "value":"-1.24" + } + }, + { + "id":"7b383689-77dc-4cf6-985c-6ea1e6990f3b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T06:19:29.272Z", + "completed":"2016-11-13T06:19:29.272Z", + "new_balance":"6473.97", + "value":"-0.70" + } + }, + { + "id":"6e3b377f-cb1d-4230-97cf-b06b034216b6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T08:15:07.426Z", + "completed":"2016-11-13T08:15:07.426Z", + "new_balance":"6471.26", + "value":"-2.71" + } + }, + { + "id":"ea5abe42-a924-4e54-b48d-dbed7f72e807", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T23:07:40.084Z", + "completed":"2016-11-13T23:07:40.084Z", + "new_balance":"6469.13", + "value":"-2.13" + } + }, + { + "id":"28a42e9f-6d24-483b-a609-44977761c0ed", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T13:38:52.980Z", + "completed":"2016-11-14T13:38:52.980Z", + "new_balance":"6464.67", + "value":"-4.46" + } + }, + { + "id":"50a2eed9-66be-41c1-9345-c84625efd571", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:06:37.496Z", + "completed":"2016-11-14T17:06:37.496Z", + "new_balance":"6457.37", + "value":"-7.30" + } + }, + { + "id":"e16cd209-1844-4983-9b61-a508956e81ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T22:04:55.966Z", + "completed":"2016-11-15T22:04:55.966Z", + "new_balance":"6453.70", + "value":"-3.67" + } + }, + { + "id":"e2c7f8c0-2208-4259-8833-12a5dc978f74", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T17:34:47.993Z", + "completed":"2016-11-30T17:34:47.993Z", + "new_balance":"6688.66", + "value":"234.96" + } + }, + { + "id":"bc340d65-5321-4f94-9165-8a5bb04f6021", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T23:48:29.703Z", + "completed":"2016-11-30T23:48:29.703Z", + "new_balance":"6665.42", + "value":"-23.24" + } + }, + { + "id":"d3b52186-22ef-483f-9922-4a1831007ec6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T14:05:43.992Z", + "completed":"2016-12-01T14:05:43.992Z", + "new_balance":"6657.72", + "value":"-7.70" + } + }, + { + "id":"6a4cd923-dc8e-4801-8c90-d55e4d5ee273", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T19:26:02.636Z", + "completed":"2016-12-01T19:26:02.636Z", + "new_balance":"6654.28", + "value":"-3.44" + } + }, + { + "id":"954b5e0b-fbdc-4869-addd-04e9371d130a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T20:49:23.836Z", + "completed":"2016-12-01T20:49:23.836Z", + "new_balance":"6650.10", + "value":"-4.18" + } + }, + { + "id":"88057af8-4ad1-45aa-937c-24d8b1416216", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:48:34.253Z", + "completed":"2016-12-01T22:48:34.253Z", + "new_balance":"6646.66", + "value":"-3.44" + } + }, + { + "id":"fc93ccda-f41b-4b2f-a717-6951a27daea5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T20:06:17.144Z", + "completed":"2016-12-04T20:06:17.144Z", + "new_balance":"6639.40", + "value":"-7.26" + } + }, + { + "id":"ca69e582-2b72-4f2c-809b-9eb1094b209e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T23:12:54.917Z", + "completed":"2016-12-04T23:12:54.917Z", + "new_balance":"6633.58", + "value":"-5.82" + } + }, + { + "id":"2b98f838-64a6-4bb6-a5f6-c698e25c006c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T00:06:28.103Z", + "completed":"2016-12-11T00:06:28.103Z", + "new_balance":"6629.17", + "value":"-4.41" + } + }, + { + "id":"b7f7ca8b-1387-4568-a21e-9319f5b8d7df", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T19:01:18.604Z", + "completed":"2016-12-11T19:01:18.604Z", + "new_balance":"6621.43", + "value":"-7.74" + } + }, + { + "id":"f4cba316-6bd9-4618-8d69-9b8185f5525f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T22:25:05.496Z", + "completed":"2016-12-11T22:25:05.496Z", + "new_balance":"6613.69", + "value":"-7.74" + } + }, + { + "id":"1256a68f-e770-4d40-8a81-b7e95d633dfa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T00:31:14.908Z", + "completed":"2016-12-12T00:31:14.908Z", + "new_balance":"6613.08", + "value":"-0.61" + } + }, + { + "id":"58b10300-f453-4526-9527-fec270376dc7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T13:19:37.986Z", + "completed":"2016-12-12T13:19:37.986Z", + "new_balance":"6609.01", + "value":"-4.07" + } + }, + { + "id":"42c4c849-31e8-4bb9-bd05-030050e39e30", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:45:21.927Z", + "completed":"2016-12-16T16:45:21.927Z", + "new_balance":"6599.00", + "value":"-10.01" + } + }, + { + "id":"cfed46f6-a285-47f3-8264-1c61d53da9a8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T15:15:11.268Z", + "completed":"2016-12-29T15:15:11.268Z", + "new_balance":"6595.33", + "value":"-3.67" + } + }, + { + "id":"a35e9f7f-43c7-491c-9555-e708bc4c7e66", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T03:42:03.059Z", + "completed":"2016-12-30T03:42:03.059Z", + "new_balance":"6572.09", + "value":"-23.24" + } + }, + { + "id":"6fd3627b-1922-4749-aedd-d9aea589e48a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T06:28:40.574Z", + "completed":"2016-12-30T06:28:40.574Z", + "new_balance":"6807.05", + "value":"234.96" + } + }, + { + "id":"f924b8d3-f149-4aa0-b34a-24cb00eca5d4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T00:55:42.767Z", + "completed":"2017-01-01T00:55:42.767Z", + "new_balance":"6799.35", + "value":"-7.70" + } + }, + { + "id":"38015ff3-3f5d-4a7b-9b22-7b3ddb7f72b8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T08:14:17.787Z", + "completed":"2017-01-01T08:14:17.787Z", + "new_balance":"6795.17", + "value":"-4.18" + } + }, + { + "id":"4cd99774-b27f-4d57-ab1c-68fc3f9bd5de", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:46:16.757Z", + "completed":"2017-01-01T13:46:16.757Z", + "new_balance":"6791.73", + "value":"-3.44" + } + }, + { + "id":"3a82453e-c919-46f1-9dde-efa664df07bb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T23:21:42.321Z", + "completed":"2017-01-01T23:21:42.321Z", + "new_balance":"6788.29", + "value":"-3.44" + } + }, + { + "id":"c48761e9-b983-4494-85cd-b4781449f5bf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T10:26:23.336Z", + "completed":"2017-01-05T10:26:23.336Z", + "new_balance":"6780.99", + "value":"-7.30" + } + }, + { + "id":"6515e317-af62-4841-bb6f-a5f793e48855", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T13:13:01.291Z", + "completed":"2017-01-05T13:13:01.291Z", + "new_balance":"6770.95", + "value":"-10.04" + } + }, + { + "id":"9bf8bd5a-8527-4c15-8af7-56ff274705b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T21:52:04.454Z", + "completed":"2017-01-08T21:52:04.454Z", + "new_balance":"6769.55", + "value":"-1.40" + } + }, + { + "id":"a330f3aa-dfd4-4bf1-8fa7-3c9d8dc08162", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T07:42:44.967Z", + "completed":"2017-01-10T07:42:44.967Z", + "new_balance":"6764.89", + "value":"-4.66" + } + }, + { + "id":"1aa93b65-619d-47e0-b617-ec168c21dd38", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T14:08:51.655Z", + "completed":"2017-01-11T14:08:51.655Z", + "new_balance":"6759.48", + "value":"-5.41" + } + }, + { + "id":"5ce1172b-be5d-4da6-b622-426143d32921", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T23:19:31.189Z", + "completed":"2017-01-12T23:19:31.189Z", + "new_balance":"6756.04", + "value":"-3.44" + } + }, + { + "id":"a55de025-4d49-4220-93ed-ae89f605cfab", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T16:56:36.325Z", + "completed":"2017-01-13T16:56:36.325Z", + "new_balance":"6755.53", + "value":"-0.51" + } + }, + { + "id":"4d420969-e141-418a-b7e4-e67c5af80dc6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T23:13:22.105Z", + "completed":"2017-01-13T23:13:22.105Z", + "new_balance":"6755.07", + "value":"-0.46" + } + }, + { + "id":"4dfc4d89-651e-45f8-89fc-92da0480d0f2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T23:39:06.507Z", + "completed":"2017-01-16T23:39:06.507Z", + "new_balance":"6745.55", + "value":"-9.52" + } + }, + { + "id":"4265b694-9131-4392-848c-c3b8275520b6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T06:24:38.759Z", + "completed":"2017-01-19T06:24:38.759Z", + "new_balance":"6738.25", + "value":"-7.30" + } + }, + { + "id":"558a7718-9116-4c92-ab7e-9650dcb3a895", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T14:19:24.149Z", + "completed":"2017-01-19T14:19:24.149Z", + "new_balance":"6731.42", + "value":"-6.83" + } + }, + { + "id":"7ec8bdb7-8bee-4862-832b-302034e5b18d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:06:43.241Z", + "completed":"2017-01-24T23:06:43.241Z", + "new_balance":"6728.74", + "value":"-2.68" + } + }, + { + "id":"c90dad92-725e-4065-9be7-193744103d28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T00:00:17.689Z", + "completed":"2017-01-27T00:00:17.689Z", + "new_balance":"6963.70", + "value":"234.96" + } + }, + { + "id":"4bee9195-4a01-4b2f-86fa-1c1b774780be", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T09:40:25.216Z", + "completed":"2017-01-27T09:40:25.216Z", + "new_balance":"6960.03", + "value":"-3.67" + } + }, + { + "id":"3f366681-250a-4a2c-a225-554164a1239d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T04:07:44.814Z", + "completed":"2017-01-31T04:07:44.814Z", + "new_balance":"6936.79", + "value":"-23.24" + } + }, + { + "id":"3a6ed758-2d90-4d34-a161-0cb55a3be8b7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T07:46:23.108Z", + "completed":"2017-02-01T07:46:23.108Z", + "new_balance":"6933.35", + "value":"-3.44" + } + }, + { + "id":"0a8f6639-0e12-44e5-8506-c208248cb8f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T09:21:39.572Z", + "completed":"2017-02-01T09:21:39.572Z", + "new_balance":"6929.17", + "value":"-4.18" + } + }, + { + "id":"d4f9ba2a-47cc-4920-980d-750a97a7dc4b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T10:43:28.777Z", + "completed":"2017-02-01T10:43:28.777Z", + "new_balance":"6925.73", + "value":"-3.44" + } + }, + { + "id":"6e80ac23-479d-4aca-96bc-ad73a0253ac9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T19:29:41.503Z", + "completed":"2017-02-01T19:29:41.503Z", + "new_balance":"6918.03", + "value":"-7.70" + } + }, + { + "id":"5a42dd78-041d-4f6a-9d5b-1a8b6de77c2b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T23:29:07.150Z", + "completed":"2017-02-03T23:29:07.150Z", + "new_balance":"6917.33", + "value":"-0.70" + } + }, + { + "id":"aa46b747-1a81-40ee-aba8-3df39992be88", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T07:44:32.646Z", + "completed":"2017-02-04T07:44:32.646Z", + "new_balance":"6910.03", + "value":"-7.30" + } + }, + { + "id":"7db7a038-3fd4-4db2-be41-52354e83f140", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T03:35:02.058Z", + "completed":"2017-02-06T03:35:02.058Z", + "new_balance":"6899.93", + "value":"-10.10" + } + }, + { + "id":"e65d74ae-7df4-4ae5-8c9a-e37489244b3a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T17:21:18.663Z", + "completed":"2017-02-06T17:21:18.663Z", + "new_balance":"6890.47", + "value":"-9.46" + } + }, + { + "id":"230fedd5-be8b-43ed-826f-1cbfec64a272", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T20:49:58.990Z", + "completed":"2017-02-07T20:49:58.990Z", + "new_balance":"6886.67", + "value":"-3.80" + } + }, + { + "id":"85f39f4e-8c56-471c-aeea-83e9e6502ac5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T13:55:58.012Z", + "completed":"2017-02-08T13:55:58.012Z", + "new_balance":"6885.55", + "value":"-1.12" + } + }, + { + "id":"5987c480-d514-4b4c-a8d1-899ab131f0fe", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T20:48:41.085Z", + "completed":"2017-02-09T20:48:41.085Z", + "new_balance":"6880.96", + "value":"-4.59" + } + }, + { + "id":"f37285a0-ef92-492c-b773-793d165da47c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:09:15.689Z", + "completed":"2017-02-11T05:09:15.689Z", + "new_balance":"6878.56", + "value":"-2.40" + } + }, + { + "id":"0acd8f14-9891-4abe-bcc7-d7afdf4aab82", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T13:43:51.581Z", + "completed":"2017-02-13T13:43:51.581Z", + "new_balance":"6875.68", + "value":"-2.88" + } + }, + { + "id":"18d486d9-1eaa-4d60-8555-7afb9d05c401", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T20:17:57.183Z", + "completed":"2017-02-17T20:17:57.183Z", + "new_balance":"6875.16", + "value":"-0.52" + } + }, + { + "id":"356c0caa-83a6-465b-a0c5-f53263c2a5b9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T07:19:03.632Z", + "completed":"2017-02-19T07:19:03.632Z", + "new_balance":"6869.98", + "value":"-5.18" + } + }, + { + "id":"e815495c-d376-44c9-a74a-72e9182976aa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T00:24:06.114Z", + "completed":"2017-02-21T00:24:06.114Z", + "new_balance":"6862.68", + "value":"-7.30" + } + }, + { + "id":"c545ae92-610e-44c9-b4a7-33b7a5e703f6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T03:53:01.223Z", + "completed":"2017-02-24T03:53:01.223Z", + "new_balance":"6859.01", + "value":"-3.67" + } + }, + { + "id":"644f75b6-28a5-4abd-b6aa-a4d8d9019e0b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T23:10:15.115Z", + "completed":"2017-02-26T23:10:15.115Z", + "new_balance":"7093.97", + "value":"234.96" + } + }, + { + "id":"1a6e5288-1223-4e18-aaa0-044631016c33", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T06:13:55.878Z", + "completed":"2017-03-01T06:13:55.878Z", + "new_balance":"7090.53", + "value":"-3.44" + } + }, + { + "id":"ec07f776-6135-4f15-a106-404e18d94dbe", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T13:44:11.788Z", + "completed":"2017-03-01T13:44:11.788Z", + "new_balance":"7086.35", + "value":"-4.18" + } + }, + { + "id":"cc318bc5-5f2e-4c5a-97f3-227d08540ab4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T19:29:13.677Z", + "completed":"2017-03-01T19:29:13.677Z", + "new_balance":"7078.65", + "value":"-7.70" + } + }, + { + "id":"5a0ff38a-02d5-4831-b2ec-f6a3f92fd700", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T20:03:56.399Z", + "completed":"2017-03-01T20:03:56.399Z", + "new_balance":"7075.21", + "value":"-3.44" + } + }, + { + "id":"3c8a5349-0dc8-4630-b330-b8d0c7fd06ef", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:20:51.409Z", + "completed":"2017-03-09T10:20:51.409Z", + "new_balance":"7067.95", + "value":"-7.26" + } + }, + { + "id":"af87e944-5947-4fa8-b240-f2465442aa73", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T23:06:20.910Z", + "completed":"2017-03-09T23:06:20.910Z", + "new_balance":"7062.13", + "value":"-5.82" + } + }, + { + "id":"c6ec25e8-2bec-49c5-8559-a598cf5ff0c4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T22:57:22.307Z", + "completed":"2017-03-17T22:57:22.307Z", + "new_balance":"7054.39", + "value":"-7.74" + } + }, + { + "id":"8ae3619b-bba3-4ad9-979c-ea31f4d048bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T07:15:56.244Z", + "completed":"2017-03-18T07:15:56.244Z", + "new_balance":"7049.98", + "value":"-4.41" + } + }, + { + "id":"2a86d35c-136a-4aa6-917a-129dae1c3f6e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T09:19:44.731Z", + "completed":"2017-03-18T09:19:44.731Z", + "new_balance":"7049.37", + "value":"-0.61" + } + }, + { + "id":"f66962e4-42ce-4f63-a33b-7f887bc14576", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T15:49:21.664Z", + "completed":"2017-03-18T15:49:21.664Z", + "new_balance":"7041.63", + "value":"-7.74" + } + }, + { + "id":"ca827887-c2fe-47f8-af1c-757029cda3d0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T18:57:59.405Z", + "completed":"2017-03-18T18:57:59.405Z", + "new_balance":"7037.56", + "value":"-4.07" + } + }, + { + "id":"83afb955-db7d-49e9-9564-e7e78486433c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T20:40:34.928Z", + "completed":"2017-03-22T20:40:34.928Z", + "new_balance":"7027.55", + "value":"-10.01" + } + }, + { + "id":"974f0d3c-486c-4c19-a05e-cd59f1fa54a6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T13:15:20.222Z", + "completed":"2017-03-29T13:15:20.222Z", + "new_balance":"7262.51", + "value":"234.96" + } + }, + { + "id":"2c45bd70-ac80-48bd-85c0-5a209f030863", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T17:10:34.765Z", + "completed":"2017-03-29T17:10:34.765Z", + "new_balance":"7258.84", + "value":"-3.67" + } + }, + { + "id":"c3e8ee96-61da-4222-b318-2ae36bba2e26", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T18:27:31.397Z", + "completed":"2017-03-31T18:27:31.397Z", + "new_balance":"7235.60", + "value":"-23.24" + } + }, + { + "id":"2e010b09-6aa4-4698-84b8-1ca486d4a3a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T02:01:19.633Z", + "completed":"2017-04-01T02:01:19.633Z", + "new_balance":"7227.90", + "value":"-7.70" + } + }, + { + "id":"331b72d3-1b50-4c6c-95ea-e8f6bd417183", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T03:06:40.655Z", + "completed":"2017-04-01T03:06:40.655Z", + "new_balance":"7223.72", + "value":"-4.18" + } + }, + { + "id":"4a7f1973-afad-4513-9e21-d7f28403683a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T10:08:48.514Z", + "completed":"2017-04-01T10:08:48.514Z", + "new_balance":"7220.28", + "value":"-3.44" + } + }, + { + "id":"0f57796b-90c4-4319-8446-81ae200f2975", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T16:15:14.045Z", + "completed":"2017-04-01T16:15:14.045Z", + "new_balance":"7216.84", + "value":"-3.44" + } + }, + { + "id":"521b9d9c-c3ac-4c08-948d-a6bb7ab5d22b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T16:58:48.560Z", + "completed":"2017-04-02T16:58:48.560Z", + "new_balance":"7209.28", + "value":"-7.56" + } + }, + { + "id":"18d03c6b-f56e-4280-b9e9-c731ceea804f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T00:20:39.882Z", + "completed":"2017-04-05T00:20:39.882Z", + "new_balance":"7201.98", + "value":"-7.30" + } + }, + { + "id":"993bf0c3-1f90-45ef-8009-47a7a46cf590", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T06:41:21.548Z", + "completed":"2017-04-05T06:41:21.548Z", + "new_balance":"7198.54", + "value":"-3.44" + } + }, + { + "id":"4bf47427-6213-416e-935a-e06cfb2d456b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T11:52:08.642Z", + "completed":"2017-04-05T11:52:08.642Z", + "new_balance":"7197.95", + "value":"-0.59" + } + }, + { + "id":"62989b97-8f0f-474f-823d-18d3c8489ada", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T19:43:56.449Z", + "completed":"2017-04-05T19:43:56.449Z", + "new_balance":"7196.71", + "value":"-1.24" + } + }, + { + "id":"e1220910-de5d-4516-859f-3c1b81b53362", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T21:49:51.171Z", + "completed":"2017-04-05T21:49:51.171Z", + "new_balance":"7191.26", + "value":"-5.45" + } + }, + { + "id":"dfd0027e-3442-421d-94b9-3f00ecee71bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T22:04:19.705Z", + "completed":"2017-04-05T22:04:19.705Z", + "new_balance":"7187.08", + "value":"-4.18" + } + }, + { + "id":"8fde65f3-c3e6-409e-92c6-7b946859f456", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T23:47:44.260Z", + "completed":"2017-04-05T23:47:44.260Z", + "new_balance":"7186.38", + "value":"-0.70" + } + }, + { + "id":"926e1caf-19a7-4a90-bd91-365c9106edd8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T14:48:20.104Z", + "completed":"2017-04-08T14:48:20.104Z", + "new_balance":"7178.29", + "value":"-8.09" + } + }, + { + "id":"15cb5bf1-6b67-4db8-985b-db0f6dbd7100", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T00:07:17.504Z", + "completed":"2017-04-10T00:07:17.504Z", + "new_balance":"7172.17", + "value":"-6.12" + } + }, + { + "id":"abefd4ed-3e96-4417-8a33-de16bf95f291", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T01:08:05.884Z", + "completed":"2017-04-11T01:08:05.884Z", + "new_balance":"7169.49", + "value":"-2.68" + } + }, + { + "id":"ba69dc37-75ae-43fc-9d96-bb858a734aaf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T14:52:08.828Z", + "completed":"2017-04-11T14:52:08.828Z", + "new_balance":"7162.19", + "value":"-7.30" + } + }, + { + "id":"910e2276-483f-4154-819e-f2b4205c100a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T20:32:40.621Z", + "completed":"2017-04-13T20:32:40.621Z", + "new_balance":"7158.52", + "value":"-3.67" + } + }, + { + "id":"8bb860b7-1b03-4b7d-80cc-eae6aab2e650", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T08:20:07.228Z", + "completed":"2017-04-18T08:20:07.228Z", + "new_balance":"7393.48", + "value":"234.96" + } + }, + { + "id":"72fbc1ff-b3ec-4a09-99e3-3c78674bacd5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T16:15:49.215Z", + "completed":"2017-04-25T16:15:49.215Z", + "new_balance":"7370.24", + "value":"-23.24" + } + }, + { + "id":"ebc31bc0-95f8-4fb6-88e1-550d4266dcde", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T00:12:29.459Z", + "completed":"2017-05-02T00:12:29.459Z", + "new_balance":"7366.80", + "value":"-3.44" + } + }, + { + "id":"636ed0f5-ffd9-4009-8356-ecddcfd2bd53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T01:22:04.796Z", + "completed":"2017-05-02T01:22:04.796Z", + "new_balance":"7362.62", + "value":"-4.18" + } + }, + { + "id":"f845ee2d-e807-465a-8e22-cf7096416a82", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T09:05:38.505Z", + "completed":"2017-05-02T09:05:38.505Z", + "new_balance":"7354.92", + "value":"-7.70" + } + }, + { + "id":"a1444590-d7ca-4cd4-9dd2-56793a183a43", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T12:32:55.740Z", + "completed":"2017-05-02T12:32:55.740Z", + "new_balance":"7351.48", + "value":"-3.44" + } + }, + { + "id":"69db8cd2-4b4a-4ddf-814b-ea969fc12aaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T01:26:35.105Z", + "completed":"2017-05-04T01:26:35.105Z", + "new_balance":"7344.18", + "value":"-7.30" + } + }, + { + "id":"4da3361e-e765-48a4-9a36-5a541b11de08", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T20:14:18.410Z", + "completed":"2017-05-04T20:14:18.410Z", + "new_balance":"7343.48", + "value":"-0.70" + } + }, + { + "id":"3a12d776-f2b7-4153-ba3b-9307c7abb752", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T01:22:54.076Z", + "completed":"2017-05-06T01:22:54.076Z", + "new_balance":"7336.04", + "value":"-7.44" + } + }, + { + "id":"4e3cc728-7566-4cbb-b468-533109a05d0f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T08:44:14.897Z", + "completed":"2017-05-07T08:44:14.897Z", + "new_balance":"7328.48", + "value":"-7.56" + } + }, + { + "id":"9e3a8eac-cd04-4fb4-a573-759bcaa77ac7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T22:38:14.060Z", + "completed":"2017-05-07T22:38:14.060Z", + "new_balance":"7325.77", + "value":"-2.71" + } + }, + { + "id":"fd7a0334-c06b-4db0-931c-6ded6ed18c5e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T01:46:05.283Z", + "completed":"2017-05-09T01:46:05.283Z", + "new_balance":"7324.53", + "value":"-1.24" + } + }, + { + "id":"484fef08-90b4-404a-b469-d6dc404f4268", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T11:34:11.488Z", + "completed":"2017-05-09T11:34:11.488Z", + "new_balance":"7319.94", + "value":"-4.59" + } + }, + { + "id":"421c82ef-997e-4435-ad10-bc7baf36d977", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T00:41:58.649Z", + "completed":"2017-05-13T00:41:58.649Z", + "new_balance":"7317.23", + "value":"-2.71" + } + }, + { + "id":"ddd49b77-59be-444c-b6f8-cf4d9ec92518", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T13:38:58.646Z", + "completed":"2017-05-13T13:38:58.646Z", + "new_balance":"7316.53", + "value":"-0.70" + } + }, + { + "id":"ae107540-0efc-49d4-a93c-d6ea9ff910d8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T20:33:47.049Z", + "completed":"2017-05-13T20:33:47.049Z", + "new_balance":"7314.40", + "value":"-2.13" + } + }, + { + "id":"8c99ed13-f6fb-4ad3-b498-3e8aafe5594d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T13:10:49.657Z", + "completed":"2017-05-14T13:10:49.657Z", + "new_balance":"7307.10", + "value":"-7.30" + } + }, + { + "id":"d2fc9252-2f9f-4ddb-a1d4-ba36f6065b5b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T17:16:10.984Z", + "completed":"2017-05-14T17:16:10.984Z", + "new_balance":"7302.64", + "value":"-4.46" + } + }, + { + "id":"421073cf-2fe0-4a85-8dbc-2af33d477814", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T03:40:29.667Z", + "completed":"2017-05-15T03:40:29.667Z", + "new_balance":"7298.97", + "value":"-3.67" + } + }, + { + "id":"f09074f8-6fdd-4b3b-b96e-004f43d4fb8c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T04:36:10.354Z", + "completed":"2017-05-30T04:36:10.354Z", + "new_balance":"7533.93", + "value":"234.96" + } + }, + { + "id":"2adc9103-2db2-4194-acfa-be067ad8d728", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T05:33:38.366Z", + "completed":"2017-05-30T05:33:38.366Z", + "new_balance":"7510.69", + "value":"-23.24" + } + }, + { + "id":"14b95d62-bd3e-460e-995a-747338a7895e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:43:11.673Z", + "completed":"2017-06-01T05:43:11.673Z", + "new_balance":"7507.25", + "value":"-3.44" + } + }, + { + "id":"f67eb33f-7eaa-4e59-b3c9-a76423732a72", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T09:08:10.399Z", + "completed":"2017-06-01T09:08:10.399Z", + "new_balance":"7499.55", + "value":"-7.70" + } + }, + { + "id":"9b326580-b56c-4c0d-b50b-8b63983294dd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T10:02:54.349Z", + "completed":"2017-06-01T10:02:54.349Z", + "new_balance":"7495.37", + "value":"-4.18" + } + }, + { + "id":"add6cf88-b9a5-47f2-baaa-8fc4bb5bfcd0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T12:38:41.763Z", + "completed":"2017-06-01T12:38:41.763Z", + "new_balance":"7491.93", + "value":"-3.44" + } + }, + { + "id":"3f39ae46-8300-41f6-8e55-d762251d5968", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T19:22:36.412Z", + "completed":"2017-06-04T19:22:36.412Z", + "new_balance":"7484.67", + "value":"-7.26" + } + }, + { + "id":"a1f2abbc-6484-4380-8136-0ffe75dc9904", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T21:49:23.318Z", + "completed":"2017-06-04T21:49:23.318Z", + "new_balance":"7478.85", + "value":"-5.82" + } + }, + { + "id":"2177cdd7-2a1e-467d-8f11-543087d16245", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T07:30:58.671Z", + "completed":"2017-06-11T07:30:58.671Z", + "new_balance":"7474.44", + "value":"-4.41" + } + }, + { + "id":"1131a4b8-9534-405f-a9e4-11c70deb4e68", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T19:49:11.679Z", + "completed":"2017-06-11T19:49:11.679Z", + "new_balance":"7466.70", + "value":"-7.74" + } + }, + { + "id":"0a019f9e-6875-4166-959c-5f5c5648a204", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T21:15:25.828Z", + "completed":"2017-06-11T21:15:25.828Z", + "new_balance":"7458.96", + "value":"-7.74" + } + }, + { + "id":"4404a14c-32cd-4368-b736-ed565f7fe205", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T06:19:58.024Z", + "completed":"2017-06-12T06:19:58.024Z", + "new_balance":"7458.35", + "value":"-0.61" + } + }, + { + "id":"3f1eea5c-532a-4b73-95a5-ca88a9297d41", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T06:26:58.727Z", + "completed":"2017-06-12T06:26:58.727Z", + "new_balance":"7454.28", + "value":"-4.07" + } + }, + { + "id":"ffec097a-62e7-4f8a-96d0-d2cada45caaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T21:15:26.565Z", + "completed":"2017-06-16T21:15:26.565Z", + "new_balance":"7444.27", + "value":"-10.01" + } + }, + { + "id":"0d8bede2-a837-4d39-b7ed-5a9617c465f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T00:22:12.659Z", + "completed":"2017-06-29T00:22:12.659Z", + "new_balance":"7440.60", + "value":"-3.67" + } + }, + { + "id":"67fc2796-803c-4904-bcc9-7b20a6cc7317", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:32:38.861Z", + "completed":"2017-06-30T01:32:38.861Z", + "new_balance":"7675.56", + "value":"234.96" + } + }, + { + "id":"b1a58169-98aa-4900-9cc5-4bded40f438d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T09:58:46.130Z", + "completed":"2017-06-30T09:58:46.130Z", + "new_balance":"7652.32", + "value":"-23.24" + } + }, + { + "id":"eb418421-4cfa-4998-a831-d973b1fb3fbc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T05:48:07.838Z", + "completed":"2017-07-01T05:48:07.838Z", + "new_balance":"7648.14", + "value":"-4.18" + } + }, + { + "id":"3c5ff8a7-28ef-4496-9cce-fd82c7bfd548", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T11:20:45.436Z", + "completed":"2017-07-01T11:20:45.436Z", + "new_balance":"7640.44", + "value":"-7.70" + } + }, + { + "id":"9cc13f1c-2758-483f-acb3-4d520c5ad39e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T15:01:32.541Z", + "completed":"2017-07-01T15:01:32.541Z", + "new_balance":"7637.00", + "value":"-3.44" + } + }, + { + "id":"7bf10692-aaba-4d48-9f2a-4a03119606ef", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T18:43:39.433Z", + "completed":"2017-07-01T18:43:39.433Z", + "new_balance":"7633.56", + "value":"-3.44" + } + }, + { + "id":"648279ef-24ad-42b5-a3c4-fb94207ae1ac", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T14:53:05.113Z", + "completed":"2017-07-05T14:53:05.113Z", + "new_balance":"7626.26", + "value":"-7.30" + } + }, + { + "id":"f4879dfe-6717-454a-8f95-9490162f82a4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T21:23:19.567Z", + "completed":"2017-07-05T21:23:19.567Z", + "new_balance":"7616.22", + "value":"-10.04" + } + }, + { + "id":"1de79c6f-d106-4c6e-9ed6-695c5a371793", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T19:04:59.259Z", + "completed":"2017-07-08T19:04:59.259Z", + "new_balance":"7614.82", + "value":"-1.40" + } + }, + { + "id":"0e7287f8-d304-4178-a849-27ccebe58203", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T03:49:45.548Z", + "completed":"2017-07-10T03:49:45.548Z", + "new_balance":"7610.16", + "value":"-4.66" + } + }, + { + "id":"237292e8-99f5-419e-ba33-269e2c5ddf31", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T05:00:05.870Z", + "completed":"2017-07-12T05:00:05.870Z", + "new_balance":"7604.75", + "value":"-5.41" + } + }, + { + "id":"2cd573c3-7de5-4941-98bb-3b1f2e662c72", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T22:38:27.602Z", + "completed":"2017-07-12T22:38:27.602Z", + "new_balance":"7601.31", + "value":"-3.44" + } + }, + { + "id":"81b6468f-2a74-4e5d-bb10-ebdae4833ee4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T14:31:26.482Z", + "completed":"2017-07-13T14:31:26.482Z", + "new_balance":"7600.80", + "value":"-0.51" + } + }, + { + "id":"a9b5d8ed-9438-49ed-8191-8e7502e79620", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T16:49:14.521Z", + "completed":"2017-07-13T16:49:14.521Z", + "new_balance":"7600.34", + "value":"-0.46" + } + }, + { + "id":"8186331b-cb21-40cf-9dd6-ac0669defe55", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T19:05:22.658Z", + "completed":"2017-07-18T19:05:22.658Z", + "new_balance":"7590.82", + "value":"-9.52" + } + }, + { + "id":"78b75bf1-b185-458d-a73e-f8614c008357", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T10:13:35.490Z", + "completed":"2017-07-20T10:13:35.490Z", + "new_balance":"7583.52", + "value":"-7.30" + } + }, + { + "id":"47fea274-28a2-46a3-93ef-333d079c28d1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T21:38:05.269Z", + "completed":"2017-07-20T21:38:05.269Z", + "new_balance":"7576.69", + "value":"-6.83" + } + }, + { + "id":"f8f68087-5860-4d19-9e38-3a0cc91618a6", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T09:06:02.929Z", + "completed":"2017-07-24T09:06:02.929Z", + "new_balance":"7574.01", + "value":"-2.68" + } + }, + { + "id":"35a6a7f0-f489-44bd-9409-dcfedce3915e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T00:47:04.473Z", + "completed":"2017-07-29T00:47:04.473Z", + "new_balance":"7808.97", + "value":"234.96" + } + }, + { + "id":"bb331651-476a-4d3b-9289-e1b93dfd1516", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T04:31:04.715Z", + "completed":"2017-07-29T04:31:04.715Z", + "new_balance":"7805.30", + "value":"-3.67" + } + }, + { + "id":"e8190ce5-4e45-4f2b-b9ed-2cf3895330b2", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T20:51:24.362Z", + "completed":"2017-07-30T20:51:24.362Z", + "new_balance":"7782.06", + "value":"-23.24" + } + }, + { + "id":"1ff4ab57-75d7-4aa3-9487-31f21b520f71", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:22:48.063Z", + "completed":"2017-08-01T00:22:48.063Z", + "new_balance":"7778.62", + "value":"-3.44" + } + }, + { + "id":"acd0ee60-d810-4045-8e3a-1f4a62bf513b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T05:32:27.505Z", + "completed":"2017-08-01T05:32:27.505Z", + "new_balance":"7774.44", + "value":"-4.18" + } + }, + { + "id":"c95db272-273f-45ee-b902-e42e620a65b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T10:33:31.131Z", + "completed":"2017-08-01T10:33:31.131Z", + "new_balance":"7766.74", + "value":"-7.70" + } + }, + { + "id":"7a82f0e2-410f-41d4-979e-365cf84cb536", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T15:35:06.883Z", + "completed":"2017-08-01T15:35:06.883Z", + "new_balance":"7763.30", + "value":"-3.44" + } + }, + { + "id":"0d953f76-125d-4ec6-a184-a1fccd167c53", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T20:28:52.044Z", + "completed":"2017-08-03T20:28:52.044Z", + "new_balance":"7762.60", + "value":"-0.70" + } + }, + { + "id":"882474af-aad7-4082-ab2e-107b1a10cdcc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T14:21:54.154Z", + "completed":"2017-08-04T14:21:54.154Z", + "new_balance":"7755.30", + "value":"-7.30" + } + }, + { + "id":"c188f383-9c2c-4bb0-aeca-1acc5c31c437", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T00:49:37.539Z", + "completed":"2017-08-08T00:49:37.539Z", + "new_balance":"7751.50", + "value":"-3.80" + } + }, + { + "id":"0d481ff2-3770-4cf5-ab41-62615f99463f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T09:20:31.090Z", + "completed":"2017-08-08T09:20:31.090Z", + "new_balance":"7750.38", + "value":"-1.12" + } + }, + { + "id":"cc299b20-8c6f-4443-8bdb-1231c38871eb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T11:46:29.707Z", + "completed":"2017-08-08T11:46:29.707Z", + "new_balance":"7740.28", + "value":"-10.10" + } + }, + { + "id":"1562fc4f-018e-4f5c-920c-6b5f4260756a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T18:33:14.604Z", + "completed":"2017-08-08T18:33:14.604Z", + "new_balance":"7730.82", + "value":"-9.46" + } + }, + { + "id":"30653075-49dd-48ce-9a18-c20dec67b2e3", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T10:34:42.543Z", + "completed":"2017-08-09T10:34:42.543Z", + "new_balance":"7726.23", + "value":"-4.59" + } + }, + { + "id":"a9750a67-53c3-4886-95aa-63da1223ab4f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T18:33:53.133Z", + "completed":"2017-08-14T18:33:53.133Z", + "new_balance":"7723.83", + "value":"-2.40" + } + }, + { + "id":"0b82d495-3503-4c57-8452-92bd02527781", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T16:46:01.719Z", + "completed":"2017-08-15T16:46:01.719Z", + "new_balance":"7720.95", + "value":"-2.88" + } + }, + { + "id":"666bd76a-7070-4d27-af9f-f4db4f656f03", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T12:02:27.214Z", + "completed":"2017-08-19T12:02:27.214Z", + "new_balance":"7720.43", + "value":"-0.52" + } + }, + { + "id":"7f87cb98-7249-4598-9259-17039695589a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T15:31:27.127Z", + "completed":"2017-08-22T15:31:27.127Z", + "new_balance":"7715.25", + "value":"-5.18" + } + }, + { + "id":"b3b2d51d-7f73-469d-b49b-a404f58623bb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T17:34:40.809Z", + "completed":"2017-08-26T17:34:40.809Z", + "new_balance":"7707.95", + "value":"-7.30" + } + }, + { + "id":"dd739848-14f4-4abd-8dbc-3b7bd104127c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T14:04:20.779Z", + "completed":"2017-08-28T14:04:20.779Z", + "new_balance":"7684.71", + "value":"-23.24" + } + }, + { + "id":"550a2f6b-d5d0-4968-8278-5a442e268bf0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T05:25:30.877Z", + "completed":"2017-08-29T05:25:30.877Z", + "new_balance":"7681.04", + "value":"-3.67" + } + }, + { + "id":"61f6fb9e-ca3d-4eae-bc42-c39e854e5a34", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T17:23:09.674Z", + "completed":"2017-08-29T17:23:09.674Z", + "new_balance":"7916.00", + "value":"234.96" + } + }, + { + "id":"6a1564a7-2961-4e79-add5-c9f201c9f0cb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T15:22:08.688Z", + "completed":"2017-08-30T15:22:08.688Z", + "new_balance":"7892.76", + "value":"-23.24" + } + }, + { + "id":"32dca9bd-c056-46c8-8780-c3e0fe3cc7b7", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T09:57:19.436Z", + "completed":"2017-09-01T09:57:19.436Z", + "new_balance":"7888.58", + "value":"-4.18" + } + }, + { + "id":"1959dae7-f0ab-4074-97bf-615576691074", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T15:54:44.353Z", + "completed":"2017-09-01T15:54:44.353Z", + "new_balance":"7885.14", + "value":"-3.44" + } + }, + { + "id":"d3e42d94-8cbb-4e4e-ad63-35c90b6f44b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T17:08:51.795Z", + "completed":"2017-09-01T17:08:51.795Z", + "new_balance":"7881.70", + "value":"-3.44" + } + }, + { + "id":"d5429cab-a495-4f6f-9920-8a781570061e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T22:46:49.164Z", + "completed":"2017-09-01T22:46:49.164Z", + "new_balance":"7874.00", + "value":"-7.70" + } + }, + { + "id":"1406e89b-d90c-48da-b65e-f02aabdefb3e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T04:18:52.108Z", + "completed":"2017-09-09T04:18:52.108Z", + "new_balance":"7868.18", + "value":"-5.82" + } + }, + { + "id":"4a114281-8681-4e5a-8de4-3ff824176c9f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T17:56:45.531Z", + "completed":"2017-09-09T17:56:45.531Z", + "new_balance":"7860.92", + "value":"-7.26" + } + }, + { + "id":"daecada0-2a18-4680-812d-8958ee3d7cb8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:11:46.943Z", + "completed":"2017-09-17T13:11:46.943Z", + "new_balance":"7853.18", + "value":"-7.74" + } + }, + { + "id":"c25e84c9-24f4-4122-bf2c-5b67387d58f8", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T05:39:58.854Z", + "completed":"2017-09-18T05:39:58.854Z", + "new_balance":"7845.44", + "value":"-7.74" + } + }, + { + "id":"f03ff820-293e-4a5d-93b2-d3732cb386a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:11:00.598Z", + "completed":"2017-09-18T07:11:00.598Z", + "new_balance":"7844.83", + "value":"-0.61" + } + }, + { + "id":"1a8df45e-b980-488a-a892-82d2e4133ae4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T12:01:08.142Z", + "completed":"2017-09-18T12:01:08.142Z", + "new_balance":"7840.76", + "value":"-4.07" + } + }, + { + "id":"0a4101b9-858f-4f99-a994-5a19d6ee218b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T18:04:51.433Z", + "completed":"2017-09-18T18:04:51.433Z", + "new_balance":"7836.35", + "value":"-4.41" + } + }, + { + "id":"6b42cc75-34c1-42ed-8130-605207b6c552", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T04:28:17.669Z", + "completed":"2017-09-22T04:28:17.669Z", + "new_balance":"7826.34", + "value":"-10.01" + } + }, + { + "id":"7dff2c74-5b4a-40d1-b58c-4f00709b6d7c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:47:29.981Z", + "completed":"2017-09-29T06:47:29.981Z", + "new_balance":"8061.30", + "value":"234.96" + } + }, + { + "id":"bffb8e4e-0963-43f3-a440-ca313a60c18c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T20:07:46.264Z", + "completed":"2017-09-29T20:07:46.264Z", + "new_balance":"8057.63", + "value":"-3.67" + } + }, + { + "id":"f8567bf8-50a2-47ff-b470-8861d729a5ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T07:59:10.645Z", + "completed":"2017-09-30T07:59:10.645Z", + "new_balance":"8034.39", + "value":"-23.24" + } + }, + { + "id":"304f4885-988b-4788-905a-9ca5bae660cd", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T04:46:47.236Z", + "completed":"2017-10-01T04:46:47.236Z", + "new_balance":"8030.21", + "value":"-4.18" + } + }, + { + "id":"bef90efb-c2f7-4d13-bbd5-9683700ef6bc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T08:46:07.945Z", + "completed":"2017-10-01T08:46:07.945Z", + "new_balance":"8026.77", + "value":"-3.44" + } + }, + { + "id":"040d63a6-dfb0-46ac-b08d-8c17a195b178", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T13:02:21.243Z", + "completed":"2017-10-01T13:02:21.243Z", + "new_balance":"8023.33", + "value":"-3.44" + } + }, + { + "id":"79c02875-2c9b-4144-bdab-69c0e103885a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T13:43:43.290Z", + "completed":"2017-10-01T13:43:43.290Z", + "new_balance":"8015.63", + "value":"-7.70" + } + }, + { + "id":"6b4b4034-8587-4bb4-ace8-9bb979ef7549", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T22:19:57.757Z", + "completed":"2017-10-02T22:19:57.757Z", + "new_balance":"8008.07", + "value":"-7.56" + } + }, + { + "id":"9a7f2c05-f5c3-472e-a0d7-222de9626f8d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T01:04:02.810Z", + "completed":"2017-10-05T01:04:02.810Z", + "new_balance":"8003.89", + "value":"-4.18" + } + }, + { + "id":"73c8d504-2372-480f-b19a-38380bcc2c24", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T03:50:55.986Z", + "completed":"2017-10-05T03:50:55.986Z", + "new_balance":"8002.65", + "value":"-1.24" + } + }, + { + "id":"30323131-62f4-467c-acce-29f514299298", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T11:14:18.820Z", + "completed":"2017-10-05T11:14:18.820Z", + "new_balance":"8002.06", + "value":"-0.59" + } + }, + { + "id":"1380a3e5-baf4-4ad8-9834-293153627faf", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T13:03:04.792Z", + "completed":"2017-10-05T13:03:04.792Z", + "new_balance":"7994.76", + "value":"-7.30" + } + }, + { + "id":"ca6b812b-a3a5-41f3-b7f4-6a3465ca13b5", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T13:24:09.748Z", + "completed":"2017-10-05T13:24:09.748Z", + "new_balance":"7989.31", + "value":"-5.45" + } + }, + { + "id":"8b6bde1e-279f-4419-9976-6cae80d3cc58", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T18:16:56.876Z", + "completed":"2017-10-05T18:16:56.876Z", + "new_balance":"7985.87", + "value":"-3.44" + } + }, + { + "id":"81bc1f73-d03c-4601-8d4b-d6cdd1eb1477", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T18:57:26.539Z", + "completed":"2017-10-05T18:57:26.539Z", + "new_balance":"7985.17", + "value":"-0.70" + } + }, + { + "id":"3dd278d3-49e2-41a7-9a34-bedc59b21a8a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T06:57:00.890Z", + "completed":"2017-10-09T06:57:00.890Z", + "new_balance":"7977.08", + "value":"-8.09" + } + }, + { + "id":"e5c0aa47-847f-45ce-8e9d-90b0905e700e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T17:18:43.837Z", + "completed":"2017-10-11T17:18:43.837Z", + "new_balance":"7970.96", + "value":"-6.12" + } + }, + { + "id":"cee4efd1-0309-48e3-b047-a1255f4fc867", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T02:59:48.754Z", + "completed":"2017-10-12T02:59:48.754Z", + "new_balance":"7968.28", + "value":"-2.68" + } + }, + { + "id":"2964452f-b32e-45ed-bd00-55be059f0631", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T15:13:13.770Z", + "completed":"2017-10-12T15:13:13.770Z", + "new_balance":"7960.98", + "value":"-7.30" + } + }, + { + "id":"7dc6bc64-3a94-48ce-aa7f-10ef812c21a1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T03:54:05.340Z", + "completed":"2017-10-20T03:54:05.340Z", + "new_balance":"7957.31", + "value":"-3.67" + } + }, + { + "id":"b128a70d-6057-4b2a-ae92-a47fa413a74c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T04:05:05.396Z", + "completed":"2017-10-29T04:05:05.396Z", + "new_balance":"8192.27", + "value":"234.96" + } + }, + { + "id":"46729256-f6b2-42c0-8bb7-c8a34778962a", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T23:52:04.442Z", + "completed":"2017-10-30T23:52:04.442Z", + "new_balance":"8169.03", + "value":"-23.24" + } + }, + { + "id":"6cafebc2-2206-4988-88b6-57d8f9fd7deb", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T04:30:19.311Z", + "completed":"2017-11-02T04:30:19.311Z", + "new_balance":"8161.33", + "value":"-7.70" + } + }, + { + "id":"6a0d6f1a-78b1-498c-acb6-d109e796a2b0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T11:13:49.041Z", + "completed":"2017-11-02T11:13:49.041Z", + "new_balance":"8157.89", + "value":"-3.44" + } + }, + { + "id":"a16959d5-5381-47f4-8aec-aec334f28921", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T11:50:39.987Z", + "completed":"2017-11-02T11:50:39.987Z", + "new_balance":"8154.45", + "value":"-3.44" + } + }, + { + "id":"5fe65857-6ec5-48ef-9de8-b2fe492c8327", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T13:14:31.942Z", + "completed":"2017-11-02T13:14:31.942Z", + "new_balance":"8150.27", + "value":"-4.18" + } + }, + { + "id":"6937e42f-a719-4068-ab20-944b6b8fecaa", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T17:55:54.171Z", + "completed":"2017-11-04T17:55:54.171Z", + "new_balance":"8149.57", + "value":"-0.70" + } + }, + { + "id":"fa86c109-ba99-4fec-971d-3f62d4c2b862", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T18:17:12.173Z", + "completed":"2017-11-04T18:17:12.173Z", + "new_balance":"8142.27", + "value":"-7.30" + } + }, + { + "id":"5db0e534-7397-49fc-8740-5280340e795e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T06:49:24.113Z", + "completed":"2017-11-06T06:49:24.113Z", + "new_balance":"8134.83", + "value":"-7.44" + } + }, + { + "id":"e0a262a8-09cb-41ba-920c-d6208809d4f9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T19:25:09.772Z", + "completed":"2017-11-07T19:25:09.772Z", + "new_balance":"8127.27", + "value":"-7.56" + } + }, + { + "id":"8b652a46-000e-41e0-b742-2568d712ceb4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T21:26:43.500Z", + "completed":"2017-11-07T21:26:43.500Z", + "new_balance":"8124.56", + "value":"-2.71" + } + }, + { + "id":"c90dc90f-6605-44b4-83ba-e132442bc9ee", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T00:09:02.458Z", + "completed":"2017-11-09T00:09:02.458Z", + "new_balance":"8119.97", + "value":"-4.59" + } + }, + { + "id":"ac81ef34-9601-4d1c-b195-900c30cab77d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T02:16:45.157Z", + "completed":"2017-11-09T02:16:45.157Z", + "new_balance":"8118.73", + "value":"-1.24" + } + }, + { + "id":"eef21fce-c866-4a42-80fa-c75012307676", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T02:49:54.412Z", + "completed":"2017-11-13T02:49:54.412Z", + "new_balance":"8116.60", + "value":"-2.13" + } + }, + { + "id":"d5fa1404-6703-4ef2-a3cd-44b429f1d552", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T14:39:22.734Z", + "completed":"2017-11-13T14:39:22.734Z", + "new_balance":"8113.89", + "value":"-2.71" + } + }, + { + "id":"5ebe4cd6-97b2-418f-8e70-86ca8e10d9b1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T18:29:04.406Z", + "completed":"2017-11-13T18:29:04.406Z", + "new_balance":"8113.19", + "value":"-0.70" + } + }, + { + "id":"b587b8f7-1162-4c77-b8fa-b72b9b7f4777", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T03:19:08.593Z", + "completed":"2017-11-14T03:19:08.593Z", + "new_balance":"8108.73", + "value":"-4.46" + } + }, + { + "id":"da277045-c073-4ffe-b859-49dd7bb5c61f", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T23:08:20.787Z", + "completed":"2017-11-14T23:08:20.787Z", + "new_balance":"8101.43", + "value":"-7.30" + } + }, + { + "id":"1681603c-b8bc-403a-8df0-022c7736144b", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T08:28:27.083Z", + "completed":"2017-11-15T08:28:27.083Z", + "new_balance":"8097.76", + "value":"-3.67" + } + }, + { + "id":"95264b49-45a6-4348-b02e-9cc71b1f5064", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T14:32:21.475Z", + "completed":"2017-11-30T14:32:21.475Z", + "new_balance":"8074.52", + "value":"-23.24" + } + }, + { + "id":"7e450c10-2dd5-45f2-8ff7-3000782df132", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T23:25:28.950Z", + "completed":"2017-11-30T23:25:28.950Z", + "new_balance":"8309.48", + "value":"234.96" + } + }, + { + "id":"5986d581-692b-44ec-aad6-5e7f00a342d1", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:16:37.655Z", + "completed":"2017-12-01T00:16:37.655Z", + "new_balance":"8306.04", + "value":"-3.44" + } + }, + { + "id":"f47abb23-16db-4416-a190-a82ac89e04c4", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T01:57:01.423Z", + "completed":"2017-12-01T01:57:01.423Z", + "new_balance":"8301.86", + "value":"-4.18" + } + }, + { + "id":"5f6a833d-d8d2-4f27-988b-4270b7f11efc", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T02:17:47.426Z", + "completed":"2017-12-01T02:17:47.426Z", + "new_balance":"8294.16", + "value":"-7.70" + } + }, + { + "id":"56dd38c6-45dd-41be-80d0-d1144dc07a5c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T19:33:32.155Z", + "completed":"2017-12-01T19:33:32.155Z", + "new_balance":"8290.72", + "value":"-3.44" + } + }, + { + "id":"34becefb-f90b-4eed-b1fd-edbbc25474d0", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T17:30:17.762Z", + "completed":"2017-12-04T17:30:17.762Z", + "new_balance":"8283.46", + "value":"-7.26" + } + }, + { + "id":"5ffdab3e-9103-45da-b103-8636ef4cae2d", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T22:15:13.177Z", + "completed":"2017-12-04T22:15:13.177Z", + "new_balance":"8277.64", + "value":"-5.82" + } + }, + { + "id":"7d69eaaa-01a2-4f67-aa71-703a9e44e75c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T01:20:40.479Z", + "completed":"2017-12-11T01:20:40.479Z", + "new_balance":"8269.90", + "value":"-7.74" + } + }, + { + "id":"6571c5b1-f9ea-4739-8ac5-ba13c65752a9", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T18:11:52.547Z", + "completed":"2017-12-11T18:11:52.547Z", + "new_balance":"8265.49", + "value":"-4.41" + } + }, + { + "id":"3491fb06-5379-4126-a818-b8fa2fec4213", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T20:13:36.058Z", + "completed":"2017-12-11T20:13:36.058Z", + "new_balance":"8257.75", + "value":"-7.74" + } + }, + { + "id":"b9d99beb-c150-4ab1-9268-423abe2ec1da", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T09:18:57.670Z", + "completed":"2017-12-12T09:18:57.670Z", + "new_balance":"8257.14", + "value":"-0.61" + } + }, + { + "id":"5faa01d1-5b02-401c-9d5b-b51ac523031c", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T19:44:40.650Z", + "completed":"2017-12-12T19:44:40.650Z", + "new_balance":"8253.07", + "value":"-4.07" + } + }, + { + "id":"bcf2ad69-4c37-4f1f-baa0-14a12fbbdeff", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:29:09.597Z", + "completed":"2017-12-16T02:29:09.597Z", + "new_balance":"8243.06", + "value":"-10.01" + } + }, + { + "id":"e6e62a7d-7f3e-4674-9d10-e38b8a46bc28", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T14:17:37.235Z", + "completed":"2017-12-29T14:17:37.235Z", + "new_balance":"8239.39", + "value":"-3.67" + } + }, + { + "id":"d7b0a0ed-26c7-4ddd-b617-e712ab3e517e", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T04:05:33.048Z", + "completed":"2017-12-30T04:05:33.048Z", + "new_balance":"8216.15", + "value":"-23.24" + } + }, + { + "id":"84bdb121-e43d-4ab5-835d-f7ecb455cd62", + "this_account":{ + "id":"4e591df4-480a-4a92-be4e-4599674031d5", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T13:24:04.516Z", + "completed":"2017-12-30T13:24:04.516Z", + "new_balance":"8451.11", + "value":"234.96" + } + }, + { + "id":"7db9156a-b171-41ec-8664-64eea5c59b1b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T21:28:27.505Z", + "completed":"2016-01-01T21:28:27.505Z", + "new_balance":"2921.99", + "value":"-6.40" + } + }, + { + "id":"9dfc87b0-e486-4659-857e-6c83e2d5d98b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T23:01:59.168Z", + "completed":"2016-01-01T23:01:59.168Z", + "new_balance":"2915.59", + "value":"-6.40" + } + }, + { + "id":"5b7dfbc4-6c29-465d-a70d-8c0bf0ac8eab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T04:27:36.159Z", + "completed":"2016-01-03T04:27:36.159Z", + "new_balance":"2913.13", + "value":"-2.46" + } + }, + { + "id":"891ec60c-ab72-48d9-9f1a-4e687275e38e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T12:45:07.089Z", + "completed":"2016-01-03T12:45:07.089Z", + "new_balance":"2905.94", + "value":"-7.19" + } + }, + { + "id":"c2f7e015-1a83-44b0-b78f-6b7fe3b6b904", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T14:51:03.287Z", + "completed":"2016-01-03T14:51:03.287Z", + "new_balance":"2902.50", + "value":"-3.44" + } + }, + { + "id":"84448978-a267-4256-89f7-808c073704b1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T18:30:21.512Z", + "completed":"2016-01-03T18:30:21.512Z", + "new_balance":"2844.27", + "value":"-58.23" + } + }, + { + "id":"6578c4da-920a-422a-9df2-03dd1d1e7376", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T04:28:02.180Z", + "completed":"2016-01-05T04:28:02.180Z", + "new_balance":"2843.12", + "value":"-1.15" + } + }, + { + "id":"ff805aa6-f695-490b-ab08-6b3e2f92fed3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T17:28:17.774Z", + "completed":"2016-01-05T17:28:17.774Z", + "new_balance":"2837.97", + "value":"-5.15" + } + }, + { + "id":"a614f2f4-8576-4011-91f1-6b7ef3ad4e45", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T17:48:26.366Z", + "completed":"2016-01-05T17:48:26.366Z", + "new_balance":"2833.55", + "value":"-4.42" + } + }, + { + "id":"46c3ab23-5bfa-4490-ad95-31c140775d2d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T02:39:53.331Z", + "completed":"2016-01-06T02:39:53.331Z", + "new_balance":"2829.88", + "value":"-3.67" + } + }, + { + "id":"41fcedb7-19e9-4dbe-941a-b3c934f071ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T23:14:55.690Z", + "completed":"2016-01-06T23:14:55.690Z", + "new_balance":"2827.56", + "value":"-2.32" + } + }, + { + "id":"6fa4cf39-d826-4cbf-b4c0-98e012f1425b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T16:16:04.793Z", + "completed":"2016-01-07T16:16:04.793Z", + "new_balance":"2823.09", + "value":"-4.47" + } + }, + { + "id":"f4575151-4b6c-4fed-8338-d0f2ec3dae71", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T16:59:26.083Z", + "completed":"2016-01-10T16:59:26.083Z", + "new_balance":"2817.94", + "value":"-5.15" + } + }, + { + "id":"39086317-db9d-40ca-bb1d-939448b99ecb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T20:55:07.418Z", + "completed":"2016-01-10T20:55:07.418Z", + "new_balance":"2815.56", + "value":"-2.38" + } + }, + { + "id":"e083f723-496e-41ab-b497-33132bc26de4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:15:59.754Z", + "completed":"2016-01-12T04:15:59.754Z", + "new_balance":"2812.83", + "value":"-2.73" + } + }, + { + "id":"ab7ed841-b6df-46c3-a180-a5ee0d2aa4cd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T12:14:22.173Z", + "completed":"2016-01-12T12:14:22.173Z", + "new_balance":"2808.36", + "value":"-4.47" + } + }, + { + "id":"427d546d-0319-40d9-b990-a7df0f478f08", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T22:21:30.135Z", + "completed":"2016-01-12T22:21:30.135Z", + "new_balance":"2805.90", + "value":"-2.46" + } + }, + { + "id":"3f1c5776-b4b5-4a68-8943-f3718f8f9430", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T10:15:37.614Z", + "completed":"2016-01-15T10:15:37.614Z", + "new_balance":"2803.27", + "value":"-2.63" + } + }, + { + "id":"be8f85a2-f7fa-49df-a965-9636268c6faf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T10:08:59.884Z", + "completed":"2016-01-16T10:08:59.884Z", + "new_balance":"2802.31", + "value":"-0.96" + } + }, + { + "id":"3f4dc069-1a7c-4e13-bf74-c9718b2b9357", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T19:25:20.104Z", + "completed":"2016-01-16T19:25:20.104Z", + "new_balance":"2797.16", + "value":"-5.15" + } + }, + { + "id":"0e53f089-29cf-4143-b295-547bad9dc365", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T00:58:45.110Z", + "completed":"2016-01-17T00:58:45.110Z", + "new_balance":"2794.57", + "value":"-2.59" + } + }, + { + "id":"8d3a697d-1a8c-4210-841e-098fc084595c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T01:25:15.743Z", + "completed":"2016-01-17T01:25:15.743Z", + "new_balance":"2787.82", + "value":"-6.75" + } + }, + { + "id":"5448ced4-07bc-40d3-8ab3-0d396938b43f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T09:25:47.050Z", + "completed":"2016-01-19T09:25:47.050Z", + "new_balance":"2785.40", + "value":"-2.42" + } + }, + { + "id":"b9aa9cdd-8d3d-4ec2-bc54-5375663b66aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T21:30:10.516Z", + "completed":"2016-01-20T21:30:10.516Z", + "new_balance":"2780.25", + "value":"-5.15" + } + }, + { + "id":"6f16981b-777d-48c0-93d3-0f7290581801", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:10:21.938Z", + "completed":"2016-01-23T22:10:21.938Z", + "new_balance":"2778.83", + "value":"-1.42" + } + }, + { + "id":"8b6c1ffc-4bd7-45d5-9c40-9d2d544787d2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T12:16:36.435Z", + "completed":"2016-01-26T12:16:36.435Z", + "new_balance":"2774.02", + "value":"-4.81" + } + }, + { + "id":"1eec3d66-9e35-4e8e-9f29-e1f3ac72675c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T13:52:12.007Z", + "completed":"2016-01-27T13:52:12.007Z", + "new_balance":"2879.65", + "value":"105.63" + } + }, + { + "id":"bd4d1f11-6be4-4462-b2d7-6875b9be7a07", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T05:13:12.677Z", + "completed":"2016-01-28T05:13:12.677Z", + "new_balance":"2876.21", + "value":"-3.44" + } + }, + { + "id":"d97c87f1-1406-49bf-82e8-2ce1d4a93b7d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T09:54:57.384Z", + "completed":"2016-01-30T09:54:57.384Z", + "new_balance":"2871.94", + "value":"-4.27" + } + }, + { + "id":"d075870c-0276-466e-87d8-8d776a85f6b7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T00:51:11.407Z", + "completed":"2016-02-03T00:51:11.407Z", + "new_balance":"2864.75", + "value":"-7.19" + } + }, + { + "id":"00a71472-9149-4b62-ac90-7b3adf65086f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T02:56:36.996Z", + "completed":"2016-02-03T02:56:36.996Z", + "new_balance":"2862.29", + "value":"-2.46" + } + }, + { + "id":"8f88114d-14b2-47d0-9218-b01cf45128cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T08:59:57.456Z", + "completed":"2016-02-03T08:59:57.456Z", + "new_balance":"2804.06", + "value":"-58.23" + } + }, + { + "id":"3d67e897-68c7-475c-a4ae-4e916eab61e3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T22:32:31.858Z", + "completed":"2016-02-03T22:32:31.858Z", + "new_balance":"2800.62", + "value":"-3.44" + } + }, + { + "id":"8c0b8637-967f-4bee-af37-870151766f68", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:27:26.676Z", + "completed":"2016-02-08T15:27:26.676Z", + "new_balance":"2796.20", + "value":"-4.42" + } + }, + { + "id":"71635d12-270a-4dfc-bb6a-f1632220627e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T16:14:08.125Z", + "completed":"2016-02-08T16:14:08.125Z", + "new_balance":"2791.05", + "value":"-5.15" + } + }, + { + "id":"5851b4c8-5de9-4d0f-b33a-f3aeb3d80a74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T15:08:43.813Z", + "completed":"2016-02-11T15:08:43.813Z", + "new_balance":"2792.16", + "value":"1.11" + } + }, + { + "id":"2bd7ed0f-c8a8-4d75-aff9-8f6f72a08582", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T05:06:22.871Z", + "completed":"2016-02-13T05:06:22.871Z", + "new_balance":"2789.84", + "value":"-2.32" + } + }, + { + "id":"a021aa39-1a59-42a0-895f-491b289c12ab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T00:33:24.898Z", + "completed":"2016-02-14T00:33:24.898Z", + "new_balance":"2786.81", + "value":"-3.03" + } + }, + { + "id":"de1b71cd-b413-478e-ad17-53ad58ff20df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T03:30:31.997Z", + "completed":"2016-02-17T03:30:31.997Z", + "new_balance":"2785.41", + "value":"-1.40" + } + }, + { + "id":"cdcb325b-dff9-4411-95e6-fe8b39ecdd61", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T03:55:34.866Z", + "completed":"2016-02-21T03:55:34.866Z", + "new_balance":"2780.92", + "value":"-4.49" + } + }, + { + "id":"9a13a24b-da63-4850-8062-b5e4600f232f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T01:25:53.293Z", + "completed":"2016-02-23T01:25:53.293Z", + "new_balance":"2775.77", + "value":"-5.15" + } + }, + { + "id":"bee7289d-45d1-4b3e-8cc4-416209cb8b7c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T09:11:28.968Z", + "completed":"2016-02-23T09:11:28.968Z", + "new_balance":"2771.53", + "value":"-4.24" + } + }, + { + "id":"5d6e1faa-12f9-44d0-8e73-93d2f7b7cea8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T00:05:22.804Z", + "completed":"2016-02-24T00:05:22.804Z", + "new_balance":"2770.13", + "value":"-1.40" + } + }, + { + "id":"cc4121be-0101-4e3c-98a7-9e7324bb70ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T00:18:19.813Z", + "completed":"2016-02-27T00:18:19.813Z", + "new_balance":"2875.76", + "value":"105.63" + } + }, + { + "id":"c1ec3c57-2a86-44d7-9733-901b8f64ed57", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T10:35:16.211Z", + "completed":"2016-02-27T10:35:16.211Z", + "new_balance":"2873.74", + "value":"-2.02" + } + }, + { + "id":"73fe46bb-55ee-4b30-8b94-1a8d758cca93", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T22:28:08.680Z", + "completed":"2016-02-27T22:28:08.680Z", + "new_balance":"2868.93", + "value":"-4.81" + } + }, + { + "id":"9be94a7e-7904-4d25-8200-6945855dfa43", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T09:21:41.589Z", + "completed":"2016-02-28T09:21:41.589Z", + "new_balance":"2865.49", + "value":"-3.44" + } + }, + { + "id":"465afeb0-0578-4a78-ab7b-f257daeaa04c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T09:27:15.000Z", + "completed":"2016-02-28T09:27:15.000Z", + "new_balance":"2861.22", + "value":"-4.27" + } + }, + { + "id":"b561015d-7d23-420e-abf4-817bec619dd6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T07:18:38.811Z", + "completed":"2016-03-01T07:18:38.811Z", + "new_balance":"2854.82", + "value":"-6.40" + } + }, + { + "id":"3b557447-e943-4949-9368-7d417b654dae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T06:52:18.859Z", + "completed":"2016-03-03T06:52:18.859Z", + "new_balance":"2796.59", + "value":"-58.23" + } + }, + { + "id":"a6a18074-4166-481a-b7d2-28f0f1596e2a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T08:21:59.961Z", + "completed":"2016-03-03T08:21:59.961Z", + "new_balance":"2789.40", + "value":"-7.19" + } + }, + { + "id":"e0431a88-8e17-43eb-8c68-bd36bc56f068", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T12:28:22.453Z", + "completed":"2016-03-03T12:28:22.453Z", + "new_balance":"2785.96", + "value":"-3.44" + } + }, + { + "id":"188c8a31-0a00-42e8-a2b0-b729ccda2991", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T19:22:16.505Z", + "completed":"2016-03-03T19:22:16.505Z", + "new_balance":"2783.50", + "value":"-2.46" + } + }, + { + "id":"dd59b85d-9d97-4b7e-9ff2-35c6c528919e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T19:55:20.522Z", + "completed":"2016-03-05T19:55:20.522Z", + "new_balance":"2778.35", + "value":"-5.15" + } + }, + { + "id":"c2c05a49-c85c-496c-a152-02e4d37db7a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T22:16:09.005Z", + "completed":"2016-03-05T22:16:09.005Z", + "new_balance":"2773.46", + "value":"-4.89" + } + }, + { + "id":"a537606b-cddb-43bf-918f-12bfe75b8d3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T01:50:44.738Z", + "completed":"2016-03-07T01:50:44.738Z", + "new_balance":"2771.59", + "value":"-1.87" + } + }, + { + "id":"d917ba96-cdcd-4849-9f42-4f75cdb15bd7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T04:18:24.224Z", + "completed":"2016-03-09T04:18:24.224Z", + "new_balance":"2766.44", + "value":"-5.15" + } + }, + { + "id":"a32c6571-d6ba-44a6-bfdb-f79204c106c3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T14:13:00.290Z", + "completed":"2016-03-11T14:13:00.290Z", + "new_balance":"2764.86", + "value":"-1.58" + } + }, + { + "id":"a73bc9df-28ba-401e-b6ba-b4645ea18f03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:10:41.780Z", + "completed":"2016-03-13T04:10:41.780Z", + "new_balance":"2757.94", + "value":"-6.92" + } + }, + { + "id":"f59ca50e-851a-48fd-9428-16bd993ae563", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T03:29:48.709Z", + "completed":"2016-03-14T03:29:48.709Z", + "new_balance":"2756.70", + "value":"-1.24" + } + }, + { + "id":"14c9e421-33a1-4ee4-88e1-7fb8969c0a0f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T17:25:51.461Z", + "completed":"2016-03-14T17:25:51.461Z", + "new_balance":"2764.99", + "value":"8.29" + } + }, + { + "id":"f9265ecd-1ea0-4277-a73f-e55c6d9df40f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T21:34:10.337Z", + "completed":"2016-03-15T21:34:10.337Z", + "new_balance":"2760.72", + "value":"-4.27" + } + }, + { + "id":"bdcf85f7-e241-49f5-a188-5864d971d63f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:16:05.574Z", + "completed":"2016-03-26T01:16:05.574Z", + "new_balance":"2758.58", + "value":"-2.14" + } + }, + { + "id":"dd651247-f7a5-4d37-91ee-6ecdeb8eb2fd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T07:29:58.236Z", + "completed":"2016-03-26T07:29:58.236Z", + "new_balance":"2753.89", + "value":"-4.69" + } + }, + { + "id":"bd878962-42d3-4059-b7fd-59523e7bfdb1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T21:56:33.024Z", + "completed":"2016-03-26T21:56:33.024Z", + "new_balance":"2751.90", + "value":"-1.99" + } + }, + { + "id":"eadd6fe0-4b65-4e32-8758-e36f751e5a87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T01:40:24.640Z", + "completed":"2016-03-27T01:40:24.640Z", + "new_balance":"2857.53", + "value":"105.63" + } + }, + { + "id":"be98446b-b8ca-42ae-b10f-2bacccbd42fd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T09:08:36.360Z", + "completed":"2016-03-27T09:08:36.360Z", + "new_balance":"2853.11", + "value":"-4.42" + } + }, + { + "id":"2511a6f1-92ec-47c8-a963-b436ba7740c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T11:24:16.042Z", + "completed":"2016-03-27T11:24:16.042Z", + "new_balance":"2847.96", + "value":"-5.15" + } + }, + { + "id":"2af501cb-c2da-4a34-a333-07e3e79029b9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T16:53:41.741Z", + "completed":"2016-03-28T16:53:41.741Z", + "new_balance":"2844.52", + "value":"-3.44" + } + }, + { + "id":"41bf1e95-ddc7-4f43-9b63-034503113e92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T00:00:55.689Z", + "completed":"2016-03-30T00:00:55.689Z", + "new_balance":"2840.25", + "value":"-4.27" + } + }, + { + "id":"f6d8b792-789b-46d5-a009-066537d348a0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T00:54:30.262Z", + "completed":"2016-04-01T00:54:30.262Z", + "new_balance":"2833.06", + "value":"-7.19" + } + }, + { + "id":"5675b866-39ac-4095-9325-cf4ae0b20cae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T02:59:47.545Z", + "completed":"2016-04-01T02:59:47.545Z", + "new_balance":"2829.62", + "value":"-3.44" + } + }, + { + "id":"d79c968f-d24c-4ce4-b0f0-d071bf5226f7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T04:20:56.869Z", + "completed":"2016-04-01T04:20:56.869Z", + "new_balance":"2771.39", + "value":"-58.23" + } + }, + { + "id":"1e6e3bdb-a5a2-40d1-b95e-ca1e0dfd6a7b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T06:59:22.477Z", + "completed":"2016-04-01T06:59:22.477Z", + "new_balance":"2764.99", + "value":"-6.40" + } + }, + { + "id":"3a175b5a-9359-45da-b386-91d205485b20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T20:58:36.024Z", + "completed":"2016-04-01T20:58:36.024Z", + "new_balance":"2762.53", + "value":"-2.46" + } + }, + { + "id":"3c4a1613-ebfc-456a-a3b7-4dba98ad6edb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T11:43:21.371Z", + "completed":"2016-04-05T11:43:21.371Z", + "new_balance":"2757.38", + "value":"-5.15" + } + }, + { + "id":"fb581163-3cb4-4d1b-8b50-8c24ba036e38", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T11:54:11.220Z", + "completed":"2016-04-05T11:54:11.220Z", + "new_balance":"2753.71", + "value":"-3.67" + } + }, + { + "id":"b0c2cdce-a0ad-4294-bcdc-292ba2abe011", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T16:04:25.420Z", + "completed":"2016-04-05T16:04:25.420Z", + "new_balance":"2752.56", + "value":"-1.15" + } + }, + { + "id":"a795cd58-0b22-4a06-b6ab-155602e3a9e4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T18:05:18.497Z", + "completed":"2016-04-05T18:05:18.497Z", + "new_balance":"2748.14", + "value":"-4.42" + } + }, + { + "id":"2931a9e8-b594-41b1-9c5a-034e2371a267", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T18:08:17.895Z", + "completed":"2016-04-07T18:08:17.895Z", + "new_balance":"2745.82", + "value":"-2.32" + } + }, + { + "id":"5dc48f5f-a245-4da1-aa78-9dfafdd167d3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T09:16:41.372Z", + "completed":"2016-04-09T09:16:41.372Z", + "new_balance":"2743.44", + "value":"-2.38" + } + }, + { + "id":"a970e804-9f50-4df4-9f0c-e915bbb7daff", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T11:50:47.913Z", + "completed":"2016-04-09T11:50:47.913Z", + "new_balance":"2738.29", + "value":"-5.15" + } + }, + { + "id":"553f9c45-cacd-4adb-8178-9f1d199b4130", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T00:15:26.725Z", + "completed":"2016-04-10T00:15:26.725Z", + "new_balance":"2735.56", + "value":"-2.73" + } + }, + { + "id":"2a5ddf97-56f0-4105-b685-f30d26eefeef", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T07:47:31.644Z", + "completed":"2016-04-10T07:47:31.644Z", + "new_balance":"2733.10", + "value":"-2.46" + } + }, + { + "id":"62938fe6-7333-47fa-bd77-fe5b543a1818", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T12:37:38.802Z", + "completed":"2016-04-10T12:37:38.802Z", + "new_balance":"2730.47", + "value":"-2.63" + } + }, + { + "id":"6df725b4-e959-45b3-b91a-647ded6934fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T20:03:14.188Z", + "completed":"2016-04-10T20:03:14.188Z", + "new_balance":"2726.00", + "value":"-4.47" + } + }, + { + "id":"0fb067cd-3610-49f4-8366-f01754d0f6b6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T03:13:37.860Z", + "completed":"2016-04-11T03:13:37.860Z", + "new_balance":"2723.58", + "value":"-2.42" + } + }, + { + "id":"6d45b519-bf9e-4157-aae1-e7577c47243c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T18:04:25.146Z", + "completed":"2016-04-11T18:04:25.146Z", + "new_balance":"2720.99", + "value":"-2.59" + } + }, + { + "id":"d077146d-23ae-4236-8803-c9d34d46ef8f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T19:25:07.624Z", + "completed":"2016-04-11T19:25:07.624Z", + "new_balance":"2715.84", + "value":"-5.15" + } + }, + { + "id":"e8855b32-332a-4434-9746-0018376d4e11", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T20:27:03.517Z", + "completed":"2016-04-11T20:27:03.517Z", + "new_balance":"2709.09", + "value":"-6.75" + } + }, + { + "id":"c7cf79ce-2706-4a37-9e05-82f1728f09f7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T23:44:08.290Z", + "completed":"2016-04-11T23:44:08.290Z", + "new_balance":"2708.13", + "value":"-0.96" + } + }, + { + "id":"a50e2d5c-cbbb-4546-b333-0f6203eb409b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T16:34:22.032Z", + "completed":"2016-04-21T16:34:22.032Z", + "new_balance":"2702.98", + "value":"-5.15" + } + }, + { + "id":"168993cb-0b23-4864-a846-4ca775eaa02c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T03:31:03.459Z", + "completed":"2016-04-23T03:31:03.459Z", + "new_balance":"2701.56", + "value":"-1.42" + } + }, + { + "id":"9391948b-0af8-401e-8037-e9e9417b4114", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T00:35:49.966Z", + "completed":"2016-04-29T00:35:49.966Z", + "new_balance":"2807.19", + "value":"105.63" + } + }, + { + "id":"b35d6b2f-37ca-4a2a-b4f7-4d24b67fb29f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T19:17:12.691Z", + "completed":"2016-04-29T19:17:12.691Z", + "new_balance":"2803.75", + "value":"-3.44" + } + }, + { + "id":"6e80ba92-b180-4a29-be40-201e865c7f9b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T23:22:22.782Z", + "completed":"2016-04-29T23:22:22.782Z", + "new_balance":"2798.94", + "value":"-4.81" + } + }, + { + "id":"55a4fb9e-8180-4da6-b227-d4656d0959ac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T12:47:49.385Z", + "completed":"2016-04-30T12:47:49.385Z", + "new_balance":"2794.67", + "value":"-4.27" + } + }, + { + "id":"4c75937c-1060-4645-ad5a-a94451762617", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T02:59:11.459Z", + "completed":"2016-05-02T02:59:11.459Z", + "new_balance":"2736.44", + "value":"-58.23" + } + }, + { + "id":"05d414e1-c00e-45d8-8a06-00e9c9530a71", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T06:14:58.400Z", + "completed":"2016-05-02T06:14:58.400Z", + "new_balance":"2729.25", + "value":"-7.19" + } + }, + { + "id":"b33d7bab-2aea-42d7-8338-ca462a44bd20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T07:32:14.294Z", + "completed":"2016-05-02T07:32:14.294Z", + "new_balance":"2722.85", + "value":"-6.40" + } + }, + { + "id":"a11ab18e-d8bf-4c67-b4ea-f986690e2a15", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T07:46:39.698Z", + "completed":"2016-05-02T07:46:39.698Z", + "new_balance":"2720.39", + "value":"-2.46" + } + }, + { + "id":"ca33042f-0990-4e2d-9c51-1409a05c9be2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T08:04:29.425Z", + "completed":"2016-05-06T08:04:29.425Z", + "new_balance":"2715.97", + "value":"-4.42" + } + }, + { + "id":"66d98d15-a0aa-469b-84e7-2c8e2866a5a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T08:47:21.198Z", + "completed":"2016-05-07T08:47:21.198Z", + "new_balance":"2711.48", + "value":"-4.49" + } + }, + { + "id":"21595baf-b9db-4a6b-b7a6-ac8b3bc57a46", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T09:36:54.804Z", + "completed":"2016-05-07T09:36:54.804Z", + "new_balance":"2709.16", + "value":"-2.32" + } + }, + { + "id":"95260072-1bbb-4b70-9d89-bbd2052db810", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:24:13.056Z", + "completed":"2016-05-07T20:24:13.056Z", + "new_balance":"2707.76", + "value":"-1.40" + } + }, + { + "id":"f41ee8bd-fed6-4958-9ccb-bfb1975394f8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T23:04:24.545Z", + "completed":"2016-05-07T23:04:24.545Z", + "new_balance":"2704.73", + "value":"-3.03" + } + }, + { + "id":"2033ef2a-5602-4be7-8c48-33472b076618", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T02:08:14.912Z", + "completed":"2016-05-08T02:08:14.912Z", + "new_balance":"2700.49", + "value":"-4.24" + } + }, + { + "id":"51dfba83-fda1-4851-8980-ca739341c5e7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T17:07:11.484Z", + "completed":"2016-05-09T17:07:11.484Z", + "new_balance":"2697.05", + "value":"-3.44" + } + }, + { + "id":"d01a0c5d-fc3e-4fa1-9069-c869b2e19c94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T02:14:21.265Z", + "completed":"2016-05-13T02:14:21.265Z", + "new_balance":"2691.90", + "value":"-5.15" + } + }, + { + "id":"3d60cce5-b234-4dff-9026-7b293a815906", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T08:20:17.186Z", + "completed":"2016-05-26T08:20:17.186Z", + "new_balance":"2686.75", + "value":"-5.15" + } + }, + { + "id":"2162b448-39aa-440a-bdc7-80d0913a17bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T20:27:56.970Z", + "completed":"2016-05-26T20:27:56.970Z", + "new_balance":"2685.35", + "value":"-1.40" + } + }, + { + "id":"c3405cf9-e298-4937-abc9-fb70a2dfa6aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T14:59:10.361Z", + "completed":"2016-05-27T14:59:10.361Z", + "new_balance":"2680.54", + "value":"-4.81" + } + }, + { + "id":"fcb1a2ea-38fd-4d9f-8091-00a967d339a3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T22:13:01.295Z", + "completed":"2016-05-27T22:13:01.295Z", + "new_balance":"2678.52", + "value":"-2.02" + } + }, + { + "id":"a8faf270-6b0a-41ae-a769-da8773602dc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T00:46:43.658Z", + "completed":"2016-05-30T00:46:43.658Z", + "new_balance":"2675.08", + "value":"-3.44" + } + }, + { + "id":"8dd14e0c-8f7e-4f00-90df-04ff0708a6cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T10:10:24.004Z", + "completed":"2016-05-30T10:10:24.004Z", + "new_balance":"2670.81", + "value":"-4.27" + } + }, + { + "id":"7f254f64-7d5b-4318-89b7-34f49bb8c569", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T15:44:53.132Z", + "completed":"2016-05-30T15:44:53.132Z", + "new_balance":"2776.44", + "value":"105.63" + } + }, + { + "id":"4454b91e-4c6d-4b5c-aa34-5040d1fbc495", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T05:52:11.159Z", + "completed":"2016-06-01T05:52:11.159Z", + "new_balance":"2773.98", + "value":"-2.46" + } + }, + { + "id":"f08f1dd8-34d0-424e-85c4-f6a516d0f578", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T11:17:36.071Z", + "completed":"2016-06-01T11:17:36.071Z", + "new_balance":"2768.83", + "value":"-5.15" + } + }, + { + "id":"1d3aa412-719d-4b91-b57e-a281b66c180d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T13:48:20.449Z", + "completed":"2016-06-01T13:48:20.449Z", + "new_balance":"2763.94", + "value":"-4.89" + } + }, + { + "id":"20fb19c0-0f3e-432d-8b9b-7c489afe1d55", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T16:31:40.408Z", + "completed":"2016-06-01T16:31:40.408Z", + "new_balance":"2760.50", + "value":"-3.44" + } + }, + { + "id":"abad44d2-2829-4e0b-ae78-4c1603324f06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:43:53.064Z", + "completed":"2016-06-01T16:43:53.064Z", + "new_balance":"2753.31", + "value":"-7.19" + } + }, + { + "id":"223a1c1d-fe67-44cb-901a-51b049807869", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T17:50:58.447Z", + "completed":"2016-06-01T17:50:58.447Z", + "new_balance":"2695.08", + "value":"-58.23" + } + }, + { + "id":"a8ffa21b-8683-43e5-bece-be0ebd73faf5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T18:19:35.617Z", + "completed":"2016-06-01T18:19:35.617Z", + "new_balance":"2689.93", + "value":"-5.15" + } + }, + { + "id":"f37edee5-47be-4fbd-ab29-2ced73614b84", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:50:54.637Z", + "completed":"2016-06-01T18:50:54.637Z", + "new_balance":"2683.53", + "value":"-6.40" + } + }, + { + "id":"38a72e5e-82b4-4039-9b2e-403f1fb078e4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:00:06.009Z", + "completed":"2016-06-01T22:00:06.009Z", + "new_balance":"2681.66", + "value":"-1.87" + } + }, + { + "id":"8890856a-e980-4175-8537-066f7ee90f25", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T11:31:56.758Z", + "completed":"2016-06-02T11:31:56.758Z", + "new_balance":"2680.08", + "value":"-1.58" + } + }, + { + "id":"ded466e8-918c-42be-8f69-4be5e907cf94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T17:12:01.448Z", + "completed":"2016-06-02T17:12:01.448Z", + "new_balance":"2673.16", + "value":"-6.92" + } + }, + { + "id":"b1d4d015-37e2-482e-a536-d7a8eb31beb9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T17:59:28.957Z", + "completed":"2016-06-02T17:59:28.957Z", + "new_balance":"2671.92", + "value":"-1.24" + } + }, + { + "id":"6736bbe5-4933-47ea-8e1c-a45af979109b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T00:35:21.762Z", + "completed":"2016-06-04T00:35:21.762Z", + "new_balance":"2669.78", + "value":"-2.14" + } + }, + { + "id":"c52c2fd8-84e7-439d-9397-be576a00863a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T10:07:50.933Z", + "completed":"2016-06-04T10:07:50.933Z", + "new_balance":"2665.09", + "value":"-4.69" + } + }, + { + "id":"98e18c7f-da15-4971-9b3c-e278ffe8d83e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T16:17:10.856Z", + "completed":"2016-06-04T16:17:10.856Z", + "new_balance":"2660.82", + "value":"-4.27" + } + }, + { + "id":"aceb762f-81e2-4f43-b01e-fa5d3ed71314", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T04:59:28.273Z", + "completed":"2016-06-05T04:59:28.273Z", + "new_balance":"2656.40", + "value":"-4.42" + } + }, + { + "id":"3a5f7fd2-f5c3-4b72-8571-3040bab57c03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T14:16:59.957Z", + "completed":"2016-06-05T14:16:59.957Z", + "new_balance":"2654.41", + "value":"-1.99" + } + }, + { + "id":"fc1e4a85-8c0b-4d0e-b7e5-ceece260e02e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T10:51:43.853Z", + "completed":"2016-06-18T10:51:43.853Z", + "new_balance":"2649.26", + "value":"-5.15" + } + }, + { + "id":"04723bcd-dc46-42a2-a6d5-4a22c541dc58", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T02:06:20.300Z", + "completed":"2016-06-30T02:06:20.300Z", + "new_balance":"2646.15", + "value":"-3.11" + } + }, + { + "id":"d098c49f-d646-45cd-8e65-f91e2938bbea", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T02:13:14.764Z", + "completed":"2016-06-30T02:13:14.764Z", + "new_balance":"2642.71", + "value":"-3.44" + } + }, + { + "id":"18b62128-0409-4160-a8e5-3c7e872dd1ae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T17:41:16.992Z", + "completed":"2016-06-30T17:41:16.992Z", + "new_balance":"2638.44", + "value":"-4.27" + } + }, + { + "id":"b437eb79-9492-4b68-b7e5-add2a2b03d4e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T18:48:33.050Z", + "completed":"2016-06-30T18:48:33.050Z", + "new_balance":"2744.07", + "value":"105.63" + } + }, + { + "id":"3671caf4-d72e-4e77-8084-e5a4f3772cf6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T07:17:55.498Z", + "completed":"2016-07-01T07:17:55.498Z", + "new_balance":"2737.67", + "value":"-6.40" + } + }, + { + "id":"43879b21-dacc-4420-a1d8-0719537b816d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T02:44:37.584Z", + "completed":"2016-07-03T02:44:37.584Z", + "new_balance":"2679.44", + "value":"-58.23" + } + }, + { + "id":"e33dd371-0b8a-4116-9930-c0cfcbcdde5d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T04:36:47.826Z", + "completed":"2016-07-03T04:36:47.826Z", + "new_balance":"2676.98", + "value":"-2.46" + } + }, + { + "id":"26337bfa-8a52-44d3-92b6-4aabf9718b30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T08:31:34.784Z", + "completed":"2016-07-03T08:31:34.784Z", + "new_balance":"2669.79", + "value":"-7.19" + } + }, + { + "id":"fd362ff7-3dbd-459b-b4c5-fee09889d7cf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T12:23:58.021Z", + "completed":"2016-07-03T12:23:58.021Z", + "new_balance":"2666.35", + "value":"-3.44" + } + }, + { + "id":"f06bd032-3d75-49ab-b19a-31d7cfda2247", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T05:45:34.229Z", + "completed":"2016-07-05T05:45:34.229Z", + "new_balance":"2665.20", + "value":"-1.15" + } + }, + { + "id":"113b8c44-98f1-430e-93c9-84c6e9ccbbd8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T06:23:01.260Z", + "completed":"2016-07-05T06:23:01.260Z", + "new_balance":"2660.78", + "value":"-4.42" + } + }, + { + "id":"c0132230-44ac-48a3-b1d7-61185a57d89e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T20:16:37.566Z", + "completed":"2016-07-05T20:16:37.566Z", + "new_balance":"2655.63", + "value":"-5.15" + } + }, + { + "id":"511f8e62-5458-4f20-a007-be410d8b89cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T21:25:10.368Z", + "completed":"2016-07-06T21:25:10.368Z", + "new_balance":"2651.96", + "value":"-3.67" + } + }, + { + "id":"96a8b4b4-f94c-4b82-9f69-33daf81269e5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T22:09:13.667Z", + "completed":"2016-07-06T22:09:13.667Z", + "new_balance":"2649.64", + "value":"-2.32" + } + }, + { + "id":"b6d00e4b-89ac-4194-acc8-d9999c40d964", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T19:37:21.586Z", + "completed":"2016-07-07T19:37:21.586Z", + "new_balance":"2645.17", + "value":"-4.47" + } + }, + { + "id":"9d168130-179c-4fe5-871b-b23e356258e7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T12:29:52.162Z", + "completed":"2016-07-10T12:29:52.162Z", + "new_balance":"2642.79", + "value":"-2.38" + } + }, + { + "id":"7b728994-9194-41d4-ad21-9e47d7ffb490", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T21:38:08.963Z", + "completed":"2016-07-10T21:38:08.963Z", + "new_balance":"2637.64", + "value":"-5.15" + } + }, + { + "id":"18a16889-5b37-4e23-a83d-c487802b3953", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T01:54:25.541Z", + "completed":"2016-07-12T01:54:25.541Z", + "new_balance":"2634.91", + "value":"-2.73" + } + }, + { + "id":"0839b631-ef2f-4a0d-a194-6598e8bc9e0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T04:19:15.321Z", + "completed":"2016-07-12T04:19:15.321Z", + "new_balance":"2630.44", + "value":"-4.47" + } + }, + { + "id":"84665ae2-6579-4d5d-8c08-e49f1bd3ca64", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T23:47:30.345Z", + "completed":"2016-07-12T23:47:30.345Z", + "new_balance":"2627.98", + "value":"-2.46" + } + }, + { + "id":"4f9dd43c-d60e-4804-b51d-2b6ffc05954b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T08:04:31.949Z", + "completed":"2016-07-15T08:04:31.949Z", + "new_balance":"2625.35", + "value":"-2.63" + } + }, + { + "id":"a2b1b0c1-4cba-4d79-89d7-6505ec0c3237", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T12:45:54.479Z", + "completed":"2016-07-16T12:45:54.479Z", + "new_balance":"2620.20", + "value":"-5.15" + } + }, + { + "id":"41553ed9-b3f4-4340-8c42-da798a0edd30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:30:46.936Z", + "completed":"2016-07-16T16:30:46.936Z", + "new_balance":"2619.24", + "value":"-0.96" + } + }, + { + "id":"713cd11f-557e-43bb-b371-8469ccd9fe86", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T00:17:55.930Z", + "completed":"2016-07-17T00:17:55.930Z", + "new_balance":"2616.65", + "value":"-2.59" + } + }, + { + "id":"bdc0f585-e32f-4ce1-b0af-5a0f47d18454", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:21:03.218Z", + "completed":"2016-07-17T14:21:03.218Z", + "new_balance":"2609.90", + "value":"-6.75" + } + }, + { + "id":"465e1ab9-0723-4dc3-ac85-e9911c339b57", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T17:27:40.110Z", + "completed":"2016-07-19T17:27:40.110Z", + "new_balance":"2607.48", + "value":"-2.42" + } + }, + { + "id":"652bc886-2d51-418b-acbe-2a83423f216d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T02:59:57.724Z", + "completed":"2016-07-20T02:59:57.724Z", + "new_balance":"2602.33", + "value":"-5.15" + } + }, + { + "id":"fee1f2f5-b3b1-416b-9cd0-26657a648826", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T03:17:54.244Z", + "completed":"2016-07-23T03:17:54.244Z", + "new_balance":"2600.91", + "value":"-1.42" + } + }, + { + "id":"d65d90fb-cd0b-4262-afda-6e6e5b9c0df4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T13:48:30.526Z", + "completed":"2016-07-26T13:48:30.526Z", + "new_balance":"2596.10", + "value":"-4.81" + } + }, + { + "id":"f11a6caa-429d-4eb3-a785-b5635a27c8e6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T02:10:49.330Z", + "completed":"2016-07-27T02:10:49.330Z", + "new_balance":"2701.73", + "value":"105.63" + } + }, + { + "id":"0be4c1b8-5575-43a1-849a-9d7681a79fd4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T09:40:14.097Z", + "completed":"2016-07-28T09:40:14.097Z", + "new_balance":"2698.29", + "value":"-3.44" + } + }, + { + "id":"221e48d9-f804-4942-8062-4971997f8bae", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T11:57:02.542Z", + "completed":"2016-07-30T11:57:02.542Z", + "new_balance":"2694.02", + "value":"-4.27" + } + }, + { + "id":"24c2eaa0-7430-494d-83a8-a912d0c73c61", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T06:53:11.350Z", + "completed":"2016-08-01T06:53:11.350Z", + "new_balance":"2687.62", + "value":"-6.40" + } + }, + { + "id":"fdd0b3bd-44ac-42f1-a368-83b6ac22171b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T09:40:05.356Z", + "completed":"2016-08-03T09:40:05.356Z", + "new_balance":"2685.16", + "value":"-2.46" + } + }, + { + "id":"a22f741c-e23a-4bc1-8f49-06305983af87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:02:36.423Z", + "completed":"2016-08-03T12:02:36.423Z", + "new_balance":"2677.97", + "value":"-7.19" + } + }, + { + "id":"047ff6eb-2c0e-464e-9169-d978cb5094a8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T16:35:35.771Z", + "completed":"2016-08-03T16:35:35.771Z", + "new_balance":"2674.53", + "value":"-3.44" + } + }, + { + "id":"7bd08742-506a-481f-a05e-7ac6ab295001", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T19:33:31.075Z", + "completed":"2016-08-03T19:33:31.075Z", + "new_balance":"2616.30", + "value":"-58.23" + } + }, + { + "id":"df9083d9-e42d-4467-9303-14876f6b4bb0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T01:25:29.568Z", + "completed":"2016-08-08T01:25:29.568Z", + "new_balance":"2611.15", + "value":"-5.15" + } + }, + { + "id":"6dd71f90-e171-4f79-97b1-2c49b935d977", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T04:54:22.404Z", + "completed":"2016-08-08T04:54:22.404Z", + "new_balance":"2606.73", + "value":"-4.42" + } + }, + { + "id":"5636665d-704f-43ae-acf0-8934f1b02f09", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T19:50:00.749Z", + "completed":"2016-08-11T19:50:00.749Z", + "new_balance":"2607.84", + "value":"1.11" + } + }, + { + "id":"1f41bb9c-ccd8-4f46-856c-7820d6b1efcb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T10:10:01.770Z", + "completed":"2016-08-13T10:10:01.770Z", + "new_balance":"2605.52", + "value":"-2.32" + } + }, + { + "id":"044ffddb-ea4b-4e4e-a621-16800afd15fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T18:49:06.188Z", + "completed":"2016-08-14T18:49:06.188Z", + "new_balance":"2602.49", + "value":"-3.03" + } + }, + { + "id":"e28472c8-d032-4fb9-803a-a8c07252cddd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T11:13:36.820Z", + "completed":"2016-08-17T11:13:36.820Z", + "new_balance":"2601.09", + "value":"-1.40" + } + }, + { + "id":"3c9f0024-25be-48c9-8a75-2ac95b0e1b92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T15:07:36.834Z", + "completed":"2016-08-21T15:07:36.834Z", + "new_balance":"2596.60", + "value":"-4.49" + } + }, + { + "id":"3469311f-b110-4790-9ede-20431f0a80d5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T01:51:41.409Z", + "completed":"2016-08-23T01:51:41.409Z", + "new_balance":"2592.36", + "value":"-4.24" + } + }, + { + "id":"3118aec0-ab6f-4115-b59a-d7463eead306", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T09:04:24.638Z", + "completed":"2016-08-23T09:04:24.638Z", + "new_balance":"2587.21", + "value":"-5.15" + } + }, + { + "id":"65624204-0401-477a-9af5-11ad735f7e9c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T05:05:47.717Z", + "completed":"2016-08-24T05:05:47.717Z", + "new_balance":"2585.81", + "value":"-1.40" + } + }, + { + "id":"b2d9ffd9-c2ec-400e-8f83-8077204ea946", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T02:00:13.686Z", + "completed":"2016-08-27T02:00:13.686Z", + "new_balance":"2581.00", + "value":"-4.81" + } + }, + { + "id":"422efa3a-2508-4f41-b6b7-482fb245df04", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T12:14:51.135Z", + "completed":"2016-08-27T12:14:51.135Z", + "new_balance":"2578.98", + "value":"-2.02" + } + }, + { + "id":"cbca38f6-95bd-4b70-b964-16926ec6760b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T16:38:46.708Z", + "completed":"2016-08-27T16:38:46.708Z", + "new_balance":"2684.61", + "value":"105.63" + } + }, + { + "id":"39ae1ef1-aa02-4e28-8e6a-de2d09a88f29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T01:00:33.415Z", + "completed":"2016-08-28T01:00:33.415Z", + "new_balance":"2681.17", + "value":"-3.44" + } + }, + { + "id":"a7f69189-a759-437f-89ae-19f8ae47c9de", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T02:44:40.688Z", + "completed":"2016-08-30T02:44:40.688Z", + "new_balance":"2676.90", + "value":"-4.27" + } + }, + { + "id":"03580386-6d7a-46fa-8092-a9d914e474f1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:15:53.114Z", + "completed":"2016-09-01T17:15:53.114Z", + "new_balance":"2670.50", + "value":"-6.40" + } + }, + { + "id":"e856931a-8fd1-41c7-82ed-6ce2a0067348", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:21:38.925Z", + "completed":"2016-09-03T01:21:38.925Z", + "new_balance":"2667.06", + "value":"-3.44" + } + }, + { + "id":"92fbe8bf-bc2f-45b1-a016-faaaefc1b8a6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T03:22:42.897Z", + "completed":"2016-09-03T03:22:42.897Z", + "new_balance":"2608.83", + "value":"-58.23" + } + }, + { + "id":"c60ceb2b-083a-482b-a359-d9c5d393ed0a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T07:23:52.378Z", + "completed":"2016-09-03T07:23:52.378Z", + "new_balance":"2601.64", + "value":"-7.19" + } + }, + { + "id":"7ff7d6df-8a2b-44dc-92eb-b5341d143ffb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T10:17:29.350Z", + "completed":"2016-09-03T10:17:29.350Z", + "new_balance":"2599.18", + "value":"-2.46" + } + }, + { + "id":"be10cc63-e963-44b3-a615-461bf321c185", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T02:18:13.138Z", + "completed":"2016-09-05T02:18:13.138Z", + "new_balance":"2594.29", + "value":"-4.89" + } + }, + { + "id":"9cad5fd6-1f48-45ea-8d2f-d81289206ef9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T13:25:52.248Z", + "completed":"2016-09-05T13:25:52.248Z", + "new_balance":"2589.14", + "value":"-5.15" + } + }, + { + "id":"3932f607-8842-4393-8eb5-f9c36f1fcbb7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T08:55:59.347Z", + "completed":"2016-09-07T08:55:59.347Z", + "new_balance":"2587.27", + "value":"-1.87" + } + }, + { + "id":"16ce7e5b-ad56-49d1-9606-b6a6c159f8c9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T12:22:30.309Z", + "completed":"2016-09-09T12:22:30.309Z", + "new_balance":"2582.12", + "value":"-5.15" + } + }, + { + "id":"a137dfa2-3311-46af-82d7-76d0b09d675d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T08:48:47.780Z", + "completed":"2016-09-11T08:48:47.780Z", + "new_balance":"2580.54", + "value":"-1.58" + } + }, + { + "id":"2ec4fa92-8f16-4c7d-9e69-17a3bd5297bc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:08:45.167Z", + "completed":"2016-09-13T09:08:45.167Z", + "new_balance":"2573.62", + "value":"-6.92" + } + }, + { + "id":"349a519f-71fe-42b7-bc29-622323b33a19", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:10:23.491Z", + "completed":"2016-09-14T00:10:23.491Z", + "new_balance":"2572.38", + "value":"-1.24" + } + }, + { + "id":"e9d3c0d4-fc7d-4586-b21a-bdd3f15c53e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T11:40:49.520Z", + "completed":"2016-09-14T11:40:49.520Z", + "new_balance":"2580.67", + "value":"8.29" + } + }, + { + "id":"ed9b1842-423a-4c1c-9f27-8a9b49a91f52", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T12:37:24.697Z", + "completed":"2016-09-15T12:37:24.697Z", + "new_balance":"2576.40", + "value":"-4.27" + } + }, + { + "id":"d42003a0-4071-40c0-b894-34ba6d3b3377", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T07:58:34.268Z", + "completed":"2016-09-26T07:58:34.268Z", + "new_balance":"2574.41", + "value":"-1.99" + } + }, + { + "id":"b46eede4-a4ef-4cba-969e-d8214c7d2673", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T09:07:04.732Z", + "completed":"2016-09-26T09:07:04.732Z", + "new_balance":"2572.27", + "value":"-2.14" + } + }, + { + "id":"bd514859-b74f-4177-bb33-f0375ea290b5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T21:49:20.751Z", + "completed":"2016-09-26T21:49:20.751Z", + "new_balance":"2567.58", + "value":"-4.69" + } + }, + { + "id":"6dfe9dd8-4507-4872-b9ee-8d7ec688e8a8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T03:49:26.689Z", + "completed":"2016-09-27T03:49:26.689Z", + "new_balance":"2563.16", + "value":"-4.42" + } + }, + { + "id":"d081f16b-a39f-4c41-b249-39842dd3cbc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T18:27:43.687Z", + "completed":"2016-09-27T18:27:43.687Z", + "new_balance":"2668.79", + "value":"105.63" + } + }, + { + "id":"a5a9cf95-a273-42d9-8978-9c3b456fbbd9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T22:13:29.399Z", + "completed":"2016-09-27T22:13:29.399Z", + "new_balance":"2663.64", + "value":"-5.15" + } + }, + { + "id":"6781b60a-b58c-422e-a0c3-e2deee544471", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T12:42:03.175Z", + "completed":"2016-09-28T12:42:03.175Z", + "new_balance":"2660.20", + "value":"-3.44" + } + }, + { + "id":"9292788d-ed22-4d99-9e5e-8c2fda99b800", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T10:23:14.995Z", + "completed":"2016-09-30T10:23:14.995Z", + "new_balance":"2655.93", + "value":"-4.27" + } + }, + { + "id":"a4cfef41-9047-4d1e-bb98-081bf93dcf49", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T00:26:01.195Z", + "completed":"2016-10-01T00:26:01.195Z", + "new_balance":"2597.70", + "value":"-58.23" + } + }, + { + "id":"525e6d0f-11f4-4101-9be3-9348b165e82e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T01:14:50.660Z", + "completed":"2016-10-01T01:14:50.660Z", + "new_balance":"2591.30", + "value":"-6.40" + } + }, + { + "id":"914899ea-35bc-4f06-9b13-510d15d96705", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T02:31:37.386Z", + "completed":"2016-10-01T02:31:37.386Z", + "new_balance":"2588.84", + "value":"-2.46" + } + }, + { + "id":"ea806ae3-af7c-454e-8815-f988500e7e17", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T09:34:41.026Z", + "completed":"2016-10-01T09:34:41.026Z", + "new_balance":"2585.40", + "value":"-3.44" + } + }, + { + "id":"d2f8d39f-8c8b-4ed4-b8c8-4c9ebfa92386", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:37:57.264Z", + "completed":"2016-10-01T23:37:57.264Z", + "new_balance":"2578.21", + "value":"-7.19" + } + }, + { + "id":"520d98c6-c55e-4fc7-b2cb-cf06e6b43920", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T06:12:33.312Z", + "completed":"2016-10-05T06:12:33.312Z", + "new_balance":"2577.06", + "value":"-1.15" + } + }, + { + "id":"ba1a015e-438f-419e-89b4-05d0fdec211e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T07:05:07.909Z", + "completed":"2016-10-05T07:05:07.909Z", + "new_balance":"2572.64", + "value":"-4.42" + } + }, + { + "id":"e9eb726c-9002-41ab-8bc2-c22e5b5d534e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T20:13:08.786Z", + "completed":"2016-10-05T20:13:08.786Z", + "new_balance":"2568.97", + "value":"-3.67" + } + }, + { + "id":"b226acd4-ef75-4a22-84cd-6f0d4ffa34e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T22:29:39.904Z", + "completed":"2016-10-05T22:29:39.904Z", + "new_balance":"2563.82", + "value":"-5.15" + } + }, + { + "id":"c8ed33f4-095f-43ec-9381-2c17a9032755", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T12:11:34.160Z", + "completed":"2016-10-07T12:11:34.160Z", + "new_balance":"2561.50", + "value":"-2.32" + } + }, + { + "id":"ad2e5ce6-3845-4737-8342-e2334d7f9677", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T16:13:43.914Z", + "completed":"2016-10-09T16:13:43.914Z", + "new_balance":"2559.12", + "value":"-2.38" + } + }, + { + "id":"4badce0e-80b9-483c-86ec-3c6f07be3627", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T21:31:55.955Z", + "completed":"2016-10-09T21:31:55.955Z", + "new_balance":"2553.97", + "value":"-5.15" + } + }, + { + "id":"70ff4c67-f900-4746-b413-319f9883a431", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T06:20:55.164Z", + "completed":"2016-10-10T06:20:55.164Z", + "new_balance":"2551.51", + "value":"-2.46" + } + }, + { + "id":"193ba9cb-4ef5-4ade-b332-7e5e6589c629", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T08:44:47.280Z", + "completed":"2016-10-10T08:44:47.280Z", + "new_balance":"2547.04", + "value":"-4.47" + } + }, + { + "id":"3fc377de-9eb2-4abd-95e2-2b42fa52fd63", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T13:46:32.560Z", + "completed":"2016-10-10T13:46:32.560Z", + "new_balance":"2544.41", + "value":"-2.63" + } + }, + { + "id":"3fc2281c-63fb-4647-b805-18d954d1d694", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T23:52:33.911Z", + "completed":"2016-10-10T23:52:33.911Z", + "new_balance":"2541.68", + "value":"-2.73" + } + }, + { + "id":"c76b69f3-41e8-4072-a639-a7e5999a4bd5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T02:49:19.135Z", + "completed":"2016-10-11T02:49:19.135Z", + "new_balance":"2536.53", + "value":"-5.15" + } + }, + { + "id":"7656aed3-6771-47c1-a2a8-ae1eaf642062", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T06:47:05.401Z", + "completed":"2016-10-11T06:47:05.401Z", + "new_balance":"2533.94", + "value":"-2.59" + } + }, + { + "id":"0048fa4f-11bd-45a3-8a42-c66c59d884af", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:43:19.079Z", + "completed":"2016-10-11T14:43:19.079Z", + "new_balance":"2532.98", + "value":"-0.96" + } + }, + { + "id":"2698f0e5-7bd9-41d1-aece-d8eac8343c14", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:32:02.488Z", + "completed":"2016-10-11T17:32:02.488Z", + "new_balance":"2526.23", + "value":"-6.75" + } + }, + { + "id":"c768c1d8-0959-4b42-a99b-4066a69bef05", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T18:36:08.089Z", + "completed":"2016-10-11T18:36:08.089Z", + "new_balance":"2523.81", + "value":"-2.42" + } + }, + { + "id":"667a7652-1b68-4d5c-8b43-3451c85644f3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T12:52:46.168Z", + "completed":"2016-10-21T12:52:46.168Z", + "new_balance":"2518.66", + "value":"-5.15" + } + }, + { + "id":"ee5c8a3a-e756-4a13-90b5-5a90d344972e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T14:55:19.573Z", + "completed":"2016-10-23T14:55:19.573Z", + "new_balance":"2517.24", + "value":"-1.42" + } + }, + { + "id":"7ba19bbb-8e81-4b35-a7d5-918b7fdb5e15", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T02:15:10.674Z", + "completed":"2016-10-29T02:15:10.674Z", + "new_balance":"2622.87", + "value":"105.63" + } + }, + { + "id":"5cbdafd3-fa3a-4f43-8adc-45ae24c8457d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T04:57:11.738Z", + "completed":"2016-10-29T04:57:11.738Z", + "new_balance":"2618.06", + "value":"-4.81" + } + }, + { + "id":"6e84d8b5-65bb-44b9-90df-7f078ca16276", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T09:01:14.176Z", + "completed":"2016-10-29T09:01:14.176Z", + "new_balance":"2614.62", + "value":"-3.44" + } + }, + { + "id":"2f5fb3ab-aff5-42c4-9d11-86c14ba09076", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T05:02:42.837Z", + "completed":"2016-10-30T05:02:42.837Z", + "new_balance":"2610.35", + "value":"-4.27" + } + }, + { + "id":"da0950c0-7e21-49a5-9eed-ecfda7b27bf0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T00:02:40.751Z", + "completed":"2016-11-02T00:02:40.751Z", + "new_balance":"2603.16", + "value":"-7.19" + } + }, + { + "id":"84c9d82f-12bc-438f-bd18-1b7e4a1d38d6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T05:49:54.009Z", + "completed":"2016-11-02T05:49:54.009Z", + "new_balance":"2544.93", + "value":"-58.23" + } + }, + { + "id":"d50a6636-1319-4bf1-b162-6ffd6eea183b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T12:58:32.301Z", + "completed":"2016-11-02T12:58:32.301Z", + "new_balance":"2538.53", + "value":"-6.40" + } + }, + { + "id":"4486f91f-445d-4fd1-8a91-96a8c01f0a03", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T21:19:42.467Z", + "completed":"2016-11-02T21:19:42.467Z", + "new_balance":"2536.07", + "value":"-2.46" + } + }, + { + "id":"39abd94e-2a2f-4c08-8306-e6e123dc46a4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T16:47:14.368Z", + "completed":"2016-11-06T16:47:14.368Z", + "new_balance":"2531.65", + "value":"-4.42" + } + }, + { + "id":"936d6f1b-e3f2-49d2-9c13-71d1a4e50f87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T00:12:46.481Z", + "completed":"2016-11-07T00:12:46.481Z", + "new_balance":"2527.16", + "value":"-4.49" + } + }, + { + "id":"69a0742b-f025-442f-bd13-bd6639c46746", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T03:22:15.562Z", + "completed":"2016-11-07T03:22:15.562Z", + "new_balance":"2525.76", + "value":"-1.40" + } + }, + { + "id":"df381ca8-9e99-4b56-b608-aa83472d183a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T03:32:16.610Z", + "completed":"2016-11-07T03:32:16.610Z", + "new_balance":"2523.44", + "value":"-2.32" + } + }, + { + "id":"b66b6cd2-777c-4fc7-89d0-904f74c560fc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T09:30:56.930Z", + "completed":"2016-11-07T09:30:56.930Z", + "new_balance":"2520.41", + "value":"-3.03" + } + }, + { + "id":"43e6d8f5-54c8-4015-9c70-447bc8168496", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T13:10:33.155Z", + "completed":"2016-11-08T13:10:33.155Z", + "new_balance":"2516.17", + "value":"-4.24" + } + }, + { + "id":"66be1992-fff5-40d0-8719-a00636fdfd80", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T05:11:05.575Z", + "completed":"2016-11-09T05:11:05.575Z", + "new_balance":"2512.73", + "value":"-3.44" + } + }, + { + "id":"5c634363-82d1-4322-adcc-e120e7dd2ead", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T06:52:11.145Z", + "completed":"2016-11-13T06:52:11.145Z", + "new_balance":"2507.58", + "value":"-5.15" + } + }, + { + "id":"3ac4ffae-a1dd-4e91-be96-527a142832cb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T01:07:11.731Z", + "completed":"2016-11-26T01:07:11.731Z", + "new_balance":"2506.18", + "value":"-1.40" + } + }, + { + "id":"c905f724-54aa-4abd-9162-701818e58973", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T13:24:02.950Z", + "completed":"2016-11-26T13:24:02.950Z", + "new_balance":"2501.03", + "value":"-5.15" + } + }, + { + "id":"dfceeb87-c95e-4834-b92d-f8faa0d8b912", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T11:12:12.336Z", + "completed":"2016-11-27T11:12:12.336Z", + "new_balance":"2496.22", + "value":"-4.81" + } + }, + { + "id":"3b8d38f5-781d-4e82-b418-6fa8722bbf7b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T19:00:52.240Z", + "completed":"2016-11-27T19:00:52.240Z", + "new_balance":"2494.20", + "value":"-2.02" + } + }, + { + "id":"3ecc9416-71dc-453a-8959-04fbe13406b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T02:43:00.966Z", + "completed":"2016-11-30T02:43:00.966Z", + "new_balance":"2490.76", + "value":"-3.44" + } + }, + { + "id":"7ab0edea-4ae2-4552-8dda-c2284100cb9d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T08:42:58.265Z", + "completed":"2016-11-30T08:42:58.265Z", + "new_balance":"2486.49", + "value":"-4.27" + } + }, + { + "id":"0a7c67ad-af79-4d30-94fb-972338c0eef5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T17:20:01.041Z", + "completed":"2016-11-30T17:20:01.041Z", + "new_balance":"2592.12", + "value":"105.63" + } + }, + { + "id":"8a10e65d-e0f2-426d-9e5c-edb616214ba2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T04:03:57.497Z", + "completed":"2016-12-01T04:03:57.497Z", + "new_balance":"2590.25", + "value":"-1.87" + } + }, + { + "id":"ecaf6cce-43b3-4cf7-a9ed-86c07e8d3bdb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T07:55:06.761Z", + "completed":"2016-12-01T07:55:06.761Z", + "new_balance":"2587.79", + "value":"-2.46" + } + }, + { + "id":"b037ec9d-8480-4b52-8fe1-e6e9ae03fd50", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T08:13:21.307Z", + "completed":"2016-12-01T08:13:21.307Z", + "new_balance":"2582.64", + "value":"-5.15" + } + }, + { + "id":"70614c23-3cc5-4eac-bace-d4e183d16593", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T10:03:15.828Z", + "completed":"2016-12-01T10:03:15.828Z", + "new_balance":"2579.20", + "value":"-3.44" + } + }, + { + "id":"59af4e2a-8bed-4dbd-a852-bc85ebcfc80c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T14:10:31.208Z", + "completed":"2016-12-01T14:10:31.208Z", + "new_balance":"2520.97", + "value":"-58.23" + } + }, + { + "id":"4ded006e-800b-4a06-80c2-a811cee31b59", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T15:13:10.057Z", + "completed":"2016-12-01T15:13:10.057Z", + "new_balance":"2514.57", + "value":"-6.40" + } + }, + { + "id":"4d6bfd7b-15ff-464f-afe2-c2bb0c64396b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T16:44:11.329Z", + "completed":"2016-12-01T16:44:11.329Z", + "new_balance":"2509.68", + "value":"-4.89" + } + }, + { + "id":"a8793d4b-0095-4b62-a6ef-4b0a4f1974c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T16:53:38.262Z", + "completed":"2016-12-01T16:53:38.262Z", + "new_balance":"2504.53", + "value":"-5.15" + } + }, + { + "id":"dc884d60-ef6f-43cb-a4d6-3171df8bcf3a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T18:51:13.630Z", + "completed":"2016-12-01T18:51:13.630Z", + "new_balance":"2497.34", + "value":"-7.19" + } + }, + { + "id":"b2525632-61b0-40c9-865e-b134ea327a93", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T04:04:17.238Z", + "completed":"2016-12-02T04:04:17.238Z", + "new_balance":"2490.42", + "value":"-6.92" + } + }, + { + "id":"00aefa28-b70b-4e40-ac6b-c720be874526", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T17:49:42.382Z", + "completed":"2016-12-02T17:49:42.382Z", + "new_balance":"2488.84", + "value":"-1.58" + } + }, + { + "id":"119edad4-45ef-4551-90c7-085cc5c95e56", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T19:56:45.760Z", + "completed":"2016-12-02T19:56:45.760Z", + "new_balance":"2487.60", + "value":"-1.24" + } + }, + { + "id":"9e8ec3e3-293d-4ebf-8116-a05bfa54163f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T04:01:50.873Z", + "completed":"2016-12-04T04:01:50.873Z", + "new_balance":"2485.46", + "value":"-2.14" + } + }, + { + "id":"ba9236a9-43ed-4df4-876f-eedf75a7cc79", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T04:22:51.384Z", + "completed":"2016-12-04T04:22:51.384Z", + "new_balance":"2481.19", + "value":"-4.27" + } + }, + { + "id":"363272cb-5427-45ee-809c-72864db9ea20", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T15:05:33.192Z", + "completed":"2016-12-04T15:05:33.192Z", + "new_balance":"2476.50", + "value":"-4.69" + } + }, + { + "id":"3e218866-7b69-4370-9052-2202f1caed9e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T10:27:51.143Z", + "completed":"2016-12-05T10:27:51.143Z", + "new_balance":"2472.08", + "value":"-4.42" + } + }, + { + "id":"fcf406b8-49e7-4008-9410-57a804871a99", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T14:35:53.361Z", + "completed":"2016-12-05T14:35:53.361Z", + "new_balance":"2470.09", + "value":"-1.99" + } + }, + { + "id":"9b4320d7-36b1-487f-b792-45b473ce8dac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T11:41:51.179Z", + "completed":"2016-12-18T11:41:51.179Z", + "new_balance":"2464.94", + "value":"-5.15" + } + }, + { + "id":"28f910a3-d93e-4d6d-8989-76aeec483e16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T02:26:55.592Z", + "completed":"2016-12-30T02:26:55.592Z", + "new_balance":"2570.57", + "value":"105.63" + } + }, + { + "id":"4c2fa95e-675f-494d-981e-7d47572abc40", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T03:08:05.579Z", + "completed":"2016-12-30T03:08:05.579Z", + "new_balance":"2567.46", + "value":"-3.11" + } + }, + { + "id":"a34adcba-ea95-45fa-adf1-2cc91efa144b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T05:23:14.434Z", + "completed":"2016-12-30T05:23:14.434Z", + "new_balance":"2563.19", + "value":"-4.27" + } + }, + { + "id":"88ed7598-37fb-4ea3-88fb-342a649090be", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T07:39:03.345Z", + "completed":"2016-12-30T07:39:03.345Z", + "new_balance":"2559.75", + "value":"-3.44" + } + }, + { + "id":"b81e7d47-9d5a-46d0-9e62-fd6ef2046a78", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:45:31.577Z", + "completed":"2017-01-01T05:45:31.577Z", + "new_balance":"2553.35", + "value":"-6.40" + } + }, + { + "id":"f423daee-c82d-4fe5-84f1-6a469730a58f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T19:50:50.260Z", + "completed":"2017-01-01T19:50:50.260Z", + "new_balance":"2546.95", + "value":"-6.40" + } + }, + { + "id":"b8a62ef5-ea21-4567-b718-a13a800902d7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T07:56:30.719Z", + "completed":"2017-01-03T07:56:30.719Z", + "new_balance":"2544.49", + "value":"-2.46" + } + }, + { + "id":"8b2bb1f2-7ad2-4cbc-93de-0466b9cb3612", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T11:35:34.727Z", + "completed":"2017-01-03T11:35:34.727Z", + "new_balance":"2541.05", + "value":"-3.44" + } + }, + { + "id":"7ed8688e-ca78-4c09-b8f3-98047c1c100f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T11:48:43.691Z", + "completed":"2017-01-03T11:48:43.691Z", + "new_balance":"2533.86", + "value":"-7.19" + } + }, + { + "id":"b8399db9-afdb-4947-a7d6-da35c47c5411", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T20:44:45.878Z", + "completed":"2017-01-03T20:44:45.878Z", + "new_balance":"2475.63", + "value":"-58.23" + } + }, + { + "id":"6baa6fd4-b5c8-41f1-8b8e-f31eb5a02c70", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:02:59.127Z", + "completed":"2017-01-05T14:02:59.127Z", + "new_balance":"2474.48", + "value":"-1.15" + } + }, + { + "id":"3519d85c-f7b7-4354-8c3b-314414003ba4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:51:30.652Z", + "completed":"2017-01-05T14:51:30.652Z", + "new_balance":"2470.06", + "value":"-4.42" + } + }, + { + "id":"b615f469-e690-48b5-ac46-be6a7998b077", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T18:40:59.703Z", + "completed":"2017-01-05T18:40:59.703Z", + "new_balance":"2464.91", + "value":"-5.15" + } + }, + { + "id":"94fe712b-8995-47c0-91fb-3a0e086ae569", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T05:00:44.036Z", + "completed":"2017-01-06T05:00:44.036Z", + "new_balance":"2461.24", + "value":"-3.67" + } + }, + { + "id":"16e0bb2a-cac8-46c9-89fb-96da5e010c50", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T22:53:48.585Z", + "completed":"2017-01-06T22:53:48.585Z", + "new_balance":"2458.92", + "value":"-2.32" + } + }, + { + "id":"34f47c00-d6df-48ae-841a-497f69567004", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T21:43:44.962Z", + "completed":"2017-01-07T21:43:44.962Z", + "new_balance":"2454.45", + "value":"-4.47" + } + }, + { + "id":"c325f8e6-cd1c-49ec-913a-a53d224f2dd0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T06:45:51.838Z", + "completed":"2017-01-10T06:45:51.838Z", + "new_balance":"2452.07", + "value":"-2.38" + } + }, + { + "id":"d211b057-1d8d-4bed-bb8a-464af0ad6374", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T16:14:39.410Z", + "completed":"2017-01-10T16:14:39.410Z", + "new_balance":"2446.92", + "value":"-5.15" + } + }, + { + "id":"ef4b8ef2-a1e2-4391-ae8e-66ae7f823ed2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T06:20:24.518Z", + "completed":"2017-01-12T06:20:24.518Z", + "new_balance":"2444.46", + "value":"-2.46" + } + }, + { + "id":"67ac562c-82f3-40c3-880c-cbf6c62ef1ca", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T15:12:37.410Z", + "completed":"2017-01-12T15:12:37.410Z", + "new_balance":"2439.99", + "value":"-4.47" + } + }, + { + "id":"bc58303e-44ac-4343-8756-b7a28b910984", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T23:50:02.154Z", + "completed":"2017-01-12T23:50:02.154Z", + "new_balance":"2437.26", + "value":"-2.73" + } + }, + { + "id":"c3d0ce83-af98-4c96-846c-475de31f2220", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T15:37:35.298Z", + "completed":"2017-01-15T15:37:35.298Z", + "new_balance":"2434.63", + "value":"-2.63" + } + }, + { + "id":"628f7e8a-08e3-4a0c-aa48-416198d8a337", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T08:36:15.091Z", + "completed":"2017-01-16T08:36:15.091Z", + "new_balance":"2433.67", + "value":"-0.96" + } + }, + { + "id":"03caf9fe-8d8b-4d99-addb-356ac01f0488", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T12:01:52.559Z", + "completed":"2017-01-16T12:01:52.559Z", + "new_balance":"2428.52", + "value":"-5.15" + } + }, + { + "id":"8d7b6d16-1627-473b-a6fd-1b4bc85587b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T01:06:35.677Z", + "completed":"2017-01-17T01:06:35.677Z", + "new_balance":"2421.77", + "value":"-6.75" + } + }, + { + "id":"ff3428f9-f049-498b-90c8-35836e17445f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T17:13:09.344Z", + "completed":"2017-01-17T17:13:09.344Z", + "new_balance":"2419.18", + "value":"-2.59" + } + }, + { + "id":"3569af1c-239b-4c47-b422-4cd1404235bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T15:21:20.153Z", + "completed":"2017-01-19T15:21:20.153Z", + "new_balance":"2416.76", + "value":"-2.42" + } + }, + { + "id":"9db313cd-e93c-4f98-8666-5d69e88342ff", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T15:33:22.299Z", + "completed":"2017-01-20T15:33:22.299Z", + "new_balance":"2411.61", + "value":"-5.15" + } + }, + { + "id":"5ad277b3-43bc-4672-b4f3-81d1f978548b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T00:48:03.408Z", + "completed":"2017-01-23T00:48:03.408Z", + "new_balance":"2410.19", + "value":"-1.42" + } + }, + { + "id":"447f6132-0c13-424d-a9b9-c10bc8afa959", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T02:34:09.302Z", + "completed":"2017-01-26T02:34:09.302Z", + "new_balance":"2405.38", + "value":"-4.81" + } + }, + { + "id":"4e7cc211-85e8-4183-8a58-e12577854c94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T13:00:46.778Z", + "completed":"2017-01-27T13:00:46.778Z", + "new_balance":"2511.01", + "value":"105.63" + } + }, + { + "id":"2f81ba82-4da9-415f-a63c-f1bb18b0563b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T08:41:33.066Z", + "completed":"2017-01-28T08:41:33.066Z", + "new_balance":"2507.57", + "value":"-3.44" + } + }, + { + "id":"4405ace9-a71f-44f7-962a-7acfa9b1c9bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T03:25:15.254Z", + "completed":"2017-01-30T03:25:15.254Z", + "new_balance":"2503.30", + "value":"-4.27" + } + }, + { + "id":"5a26337f-39bc-4eb1-90c5-57b40ef9a9e1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T05:24:03.795Z", + "completed":"2017-02-03T05:24:03.795Z", + "new_balance":"2500.84", + "value":"-2.46" + } + }, + { + "id":"b6b46e3e-e5fc-435e-91db-4bc9326df623", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T07:39:34.219Z", + "completed":"2017-02-03T07:39:34.219Z", + "new_balance":"2493.65", + "value":"-7.19" + } + }, + { + "id":"084a435e-d991-4dc6-9afd-f6a6f1192b83", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T18:36:34.663Z", + "completed":"2017-02-03T18:36:34.663Z", + "new_balance":"2490.21", + "value":"-3.44" + } + }, + { + "id":"fdd6212f-d4ed-4961-876f-63d171f756d9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T18:57:46.712Z", + "completed":"2017-02-03T18:57:46.712Z", + "new_balance":"2431.98", + "value":"-58.23" + } + }, + { + "id":"58482cde-6e41-4e27-8690-e7fcc4902d94", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T00:27:59.571Z", + "completed":"2017-02-08T00:27:59.571Z", + "new_balance":"2426.83", + "value":"-5.15" + } + }, + { + "id":"e3ae8558-500b-4c5b-b2ad-ec326d25104c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T19:20:48.174Z", + "completed":"2017-02-08T19:20:48.174Z", + "new_balance":"2422.41", + "value":"-4.42" + } + }, + { + "id":"2171c3bf-a399-44b2-b6f2-53709d6f3dfc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T07:58:44.384Z", + "completed":"2017-02-11T07:58:44.384Z", + "new_balance":"2423.52", + "value":"1.11" + } + }, + { + "id":"6e239c09-5746-450d-bcda-2043097f5d98", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T14:10:32.579Z", + "completed":"2017-02-13T14:10:32.579Z", + "new_balance":"2421.20", + "value":"-2.32" + } + }, + { + "id":"e8c22e5a-9ead-48d1-acb6-639b0427d6bb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T03:34:47.312Z", + "completed":"2017-02-14T03:34:47.312Z", + "new_balance":"2418.17", + "value":"-3.03" + } + }, + { + "id":"2e08495d-faad-4d5f-b75b-184164acbf55", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T08:01:26.350Z", + "completed":"2017-02-17T08:01:26.350Z", + "new_balance":"2416.77", + "value":"-1.40" + } + }, + { + "id":"03847573-a9ce-4258-9ced-d077f2fe218a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T08:03:14.758Z", + "completed":"2017-02-21T08:03:14.758Z", + "new_balance":"2412.28", + "value":"-4.49" + } + }, + { + "id":"8b8fc088-73fb-41c2-9540-3c48ab968602", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T00:22:00.637Z", + "completed":"2017-02-23T00:22:00.637Z", + "new_balance":"2408.04", + "value":"-4.24" + } + }, + { + "id":"798fdbd2-8a12-4976-9b7e-61155b022b7c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T13:27:09.817Z", + "completed":"2017-02-23T13:27:09.817Z", + "new_balance":"2402.89", + "value":"-5.15" + } + }, + { + "id":"00186033-fe48-42ea-a436-15a03b4f8678", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T16:41:34.310Z", + "completed":"2017-02-24T16:41:34.310Z", + "new_balance":"2401.49", + "value":"-1.40" + } + }, + { + "id":"302c27ae-7f34-4be3-890f-f4f0047aaf04", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T02:11:18.910Z", + "completed":"2017-02-27T02:11:18.910Z", + "new_balance":"2399.47", + "value":"-2.02" + } + }, + { + "id":"55e089f2-ae11-4d4e-ae63-864fd4293410", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T15:45:47.711Z", + "completed":"2017-02-27T15:45:47.711Z", + "new_balance":"2394.66", + "value":"-4.81" + } + }, + { + "id":"e19834f7-882b-43a8-a61f-a763aecd46a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T19:00:28.004Z", + "completed":"2017-02-27T19:00:28.004Z", + "new_balance":"2500.29", + "value":"105.63" + } + }, + { + "id":"d2f7f73f-19bb-407e-92a0-d0308a00ccd2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T10:53:08.204Z", + "completed":"2017-02-28T10:53:08.204Z", + "new_balance":"2496.85", + "value":"-3.44" + } + }, + { + "id":"4c376caf-5133-4210-8c08-9d1168ecc837", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T21:03:28.380Z", + "completed":"2017-02-28T21:03:28.380Z", + "new_balance":"2492.58", + "value":"-4.27" + } + }, + { + "id":"bcdcdbce-0621-441f-a23b-d0e4ab899d3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T21:03:20.628Z", + "completed":"2017-03-01T21:03:20.628Z", + "new_balance":"2486.18", + "value":"-6.40" + } + }, + { + "id":"45506508-cb6a-4335-be40-19b523922c8c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T01:22:42.211Z", + "completed":"2017-03-03T01:22:42.211Z", + "new_balance":"2482.74", + "value":"-3.44" + } + }, + { + "id":"52fab5bc-4294-4fc6-baa6-1713da054865", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T10:01:54.865Z", + "completed":"2017-03-03T10:01:54.865Z", + "new_balance":"2475.55", + "value":"-7.19" + } + }, + { + "id":"6608af9e-dc3e-4266-9fc0-da3470a70c09", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T10:20:43.508Z", + "completed":"2017-03-03T10:20:43.508Z", + "new_balance":"2417.32", + "value":"-58.23" + } + }, + { + "id":"1c8f9903-e9b0-46fd-a2f4-0d84558fade5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T13:54:30.288Z", + "completed":"2017-03-03T13:54:30.288Z", + "new_balance":"2414.86", + "value":"-2.46" + } + }, + { + "id":"faf2ee2f-2cbc-44cd-a45b-d979012e7b92", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:41:04.955Z", + "completed":"2017-03-05T19:41:04.955Z", + "new_balance":"2409.97", + "value":"-4.89" + } + }, + { + "id":"6c5c9a0a-0067-48c3-aacc-93cb0298c069", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T19:51:24.438Z", + "completed":"2017-03-05T19:51:24.438Z", + "new_balance":"2404.82", + "value":"-5.15" + } + }, + { + "id":"dbdcd503-3631-4dd5-9b43-a99dcb1d67b2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T09:19:44.173Z", + "completed":"2017-03-07T09:19:44.173Z", + "new_balance":"2402.95", + "value":"-1.87" + } + }, + { + "id":"8a85ca64-5ee3-4e39-a337-3638a305ae5e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T05:50:02.702Z", + "completed":"2017-03-09T05:50:02.702Z", + "new_balance":"2397.80", + "value":"-5.15" + } + }, + { + "id":"72cbafb9-63b0-49c8-9044-38618066cf7d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:44:36.460Z", + "completed":"2017-03-11T19:44:36.460Z", + "new_balance":"2396.22", + "value":"-1.58" + } + }, + { + "id":"35c4621c-5f6b-406b-86a4-851618a3b9df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T20:22:54.192Z", + "completed":"2017-03-13T20:22:54.192Z", + "new_balance":"2389.30", + "value":"-6.92" + } + }, + { + "id":"d48e2605-a953-4bdc-a367-70b46fc7a9d7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T15:35:52.334Z", + "completed":"2017-03-14T15:35:52.334Z", + "new_balance":"2388.06", + "value":"-1.24" + } + }, + { + "id":"194bb910-6065-4046-ac6c-5b3b4d108622", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T20:43:24.703Z", + "completed":"2017-03-14T20:43:24.703Z", + "new_balance":"2396.35", + "value":"8.29" + } + }, + { + "id":"29122689-f7bc-46eb-b08a-5bd2691e122a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T20:07:34.040Z", + "completed":"2017-03-15T20:07:34.040Z", + "new_balance":"2392.08", + "value":"-4.27" + } + }, + { + "id":"ba05b379-bc1e-4880-a3e9-98c604e33b45", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T08:06:52.738Z", + "completed":"2017-03-26T08:06:52.738Z", + "new_balance":"2389.94", + "value":"-2.14" + } + }, + { + "id":"3f460eb4-d93f-4afa-828f-d366b12d520e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T11:09:29.520Z", + "completed":"2017-03-26T11:09:29.520Z", + "new_balance":"2385.25", + "value":"-4.69" + } + }, + { + "id":"8e0aba1b-34c4-45ef-a687-6c8265bf8a05", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T17:08:48.850Z", + "completed":"2017-03-26T17:08:48.850Z", + "new_balance":"2383.26", + "value":"-1.99" + } + }, + { + "id":"4a82a6dd-9e20-4337-8f34-adba376d3137", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T02:40:43.971Z", + "completed":"2017-03-27T02:40:43.971Z", + "new_balance":"2378.84", + "value":"-4.42" + } + }, + { + "id":"1f6d161e-44a3-4476-a59a-18d6896ed94c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T13:52:34.773Z", + "completed":"2017-03-27T13:52:34.773Z", + "new_balance":"2484.47", + "value":"105.63" + } + }, + { + "id":"ffcd7f80-8a52-43c3-ac64-03453f23dd74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T21:50:45.546Z", + "completed":"2017-03-27T21:50:45.546Z", + "new_balance":"2479.32", + "value":"-5.15" + } + }, + { + "id":"fa86a197-4486-4bf3-abdc-5e410ab317cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T19:03:56.748Z", + "completed":"2017-03-28T19:03:56.748Z", + "new_balance":"2475.88", + "value":"-3.44" + } + }, + { + "id":"be918c04-521c-466f-9d43-83b7636bae87", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T18:37:21.857Z", + "completed":"2017-03-30T18:37:21.857Z", + "new_balance":"2471.61", + "value":"-4.27" + } + }, + { + "id":"c8184ecd-ac5e-4be4-a15b-7dca43cb8847", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T03:20:32.736Z", + "completed":"2017-04-01T03:20:32.736Z", + "new_balance":"2464.42", + "value":"-7.19" + } + }, + { + "id":"ce6f89d2-3a52-4ac5-8dbd-010c24f016b6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T08:49:33.702Z", + "completed":"2017-04-01T08:49:33.702Z", + "new_balance":"2461.96", + "value":"-2.46" + } + }, + { + "id":"15571fd5-5e4f-4a1a-8fd9-409426ee7b96", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T12:06:45.923Z", + "completed":"2017-04-01T12:06:45.923Z", + "new_balance":"2458.52", + "value":"-3.44" + } + }, + { + "id":"4e10bd9d-f6f8-41c3-b35f-f13e73653511", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T21:00:28.606Z", + "completed":"2017-04-01T21:00:28.606Z", + "new_balance":"2400.29", + "value":"-58.23" + } + }, + { + "id":"799ddad4-f784-4ca5-9b26-aacc59a66409", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T21:11:06.292Z", + "completed":"2017-04-01T21:11:06.292Z", + "new_balance":"2393.89", + "value":"-6.40" + } + }, + { + "id":"abce850b-8827-45bc-a037-df32519bd7d5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T01:28:14.687Z", + "completed":"2017-04-05T01:28:14.687Z", + "new_balance":"2389.47", + "value":"-4.42" + } + }, + { + "id":"48b82a39-2706-467a-be64-70f961dafc37", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T09:47:23.284Z", + "completed":"2017-04-05T09:47:23.284Z", + "new_balance":"2388.32", + "value":"-1.15" + } + }, + { + "id":"f56185b2-28ec-40d9-a2a8-81431f73e660", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T12:35:05.612Z", + "completed":"2017-04-05T12:35:05.612Z", + "new_balance":"2384.65", + "value":"-3.67" + } + }, + { + "id":"407fd5b0-ff63-470c-8660-aa716398319c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T15:43:38.622Z", + "completed":"2017-04-05T15:43:38.622Z", + "new_balance":"2379.50", + "value":"-5.15" + } + }, + { + "id":"126fd0ca-bbd2-429b-9c26-a0aa62a182ce", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T04:00:35.704Z", + "completed":"2017-04-07T04:00:35.704Z", + "new_balance":"2377.18", + "value":"-2.32" + } + }, + { + "id":"b88668c7-77cc-4fd0-9e23-6634ef8f1b01", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T08:06:54.364Z", + "completed":"2017-04-09T08:06:54.364Z", + "new_balance":"2372.03", + "value":"-5.15" + } + }, + { + "id":"5efb8c73-4686-4b24-8446-55c8f1f5374f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T17:30:29.350Z", + "completed":"2017-04-09T17:30:29.350Z", + "new_balance":"2369.65", + "value":"-2.38" + } + }, + { + "id":"b670eade-1139-4a67-9fd8-97b894a19fa4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T03:03:34.920Z", + "completed":"2017-04-10T03:03:34.920Z", + "new_balance":"2367.19", + "value":"-2.46" + } + }, + { + "id":"f18eed45-7462-47e8-8a12-1d098f687ae8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T05:22:55.125Z", + "completed":"2017-04-10T05:22:55.125Z", + "new_balance":"2364.56", + "value":"-2.63" + } + }, + { + "id":"706da075-93ba-47d4-9b43-101a197749db", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T12:36:43.009Z", + "completed":"2017-04-10T12:36:43.009Z", + "new_balance":"2360.09", + "value":"-4.47" + } + }, + { + "id":"f36b4394-d6b9-403c-bb6d-45ad1de82718", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:49:40.372Z", + "completed":"2017-04-10T19:49:40.372Z", + "new_balance":"2357.36", + "value":"-2.73" + } + }, + { + "id":"20c7b122-9809-4652-be06-ca2b4f33db16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T00:14:09.099Z", + "completed":"2017-04-11T00:14:09.099Z", + "new_balance":"2354.77", + "value":"-2.59" + } + }, + { + "id":"a0d23704-0e2b-4648-ba59-641412202933", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T06:36:01.976Z", + "completed":"2017-04-11T06:36:01.976Z", + "new_balance":"2348.02", + "value":"-6.75" + } + }, + { + "id":"4cb98bcb-7c17-4f01-a440-fc3438e63e06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T09:34:23.753Z", + "completed":"2017-04-11T09:34:23.753Z", + "new_balance":"2342.87", + "value":"-5.15" + } + }, + { + "id":"00f2bea6-ae5e-4cb2-92af-849a03821d0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:36:08.850Z", + "completed":"2017-04-11T17:36:08.850Z", + "new_balance":"2340.45", + "value":"-2.42" + } + }, + { + "id":"db48f1e0-0daf-4ff7-a7e7-dd7dc6421a98", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:59:30.080Z", + "completed":"2017-04-11T23:59:30.080Z", + "new_balance":"2339.49", + "value":"-0.96" + } + }, + { + "id":"280098ed-fe2e-442c-b372-7db4e915c9a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:52:22.022Z", + "completed":"2017-04-21T23:52:22.022Z", + "new_balance":"2334.34", + "value":"-5.15" + } + }, + { + "id":"036b1243-da5b-45cc-9ee7-936639d5dc4d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T07:29:05.710Z", + "completed":"2017-04-23T07:29:05.710Z", + "new_balance":"2332.92", + "value":"-1.42" + } + }, + { + "id":"2896407f-c7ae-48cb-b391-c5fa0fd660b8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T03:06:25.205Z", + "completed":"2017-04-29T03:06:25.205Z", + "new_balance":"2329.48", + "value":"-3.44" + } + }, + { + "id":"74c1c9e6-1b68-4cac-a5ac-0d64a73838f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T06:19:47.285Z", + "completed":"2017-04-29T06:19:47.285Z", + "new_balance":"2324.67", + "value":"-4.81" + } + }, + { + "id":"13c37b5d-3f48-4f43-9a4b-0e7203e7cacd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T17:24:05.716Z", + "completed":"2017-04-29T17:24:05.716Z", + "new_balance":"2430.30", + "value":"105.63" + } + }, + { + "id":"bf9408e0-052d-4885-9ae8-20ba20f7f140", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T16:54:28.031Z", + "completed":"2017-04-30T16:54:28.031Z", + "new_balance":"2426.03", + "value":"-4.27" + } + }, + { + "id":"bb7aeb0d-6f80-4f64-b33c-caf2cdf9d26d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T02:24:18.826Z", + "completed":"2017-05-02T02:24:18.826Z", + "new_balance":"2419.63", + "value":"-6.40" + } + }, + { + "id":"9e4ddd74-d330-47c8-92e3-780a7806ffbc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T03:51:12.208Z", + "completed":"2017-05-02T03:51:12.208Z", + "new_balance":"2361.40", + "value":"-58.23" + } + }, + { + "id":"93e23338-ce71-4aef-913a-80af2cfddeb8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T09:02:28.139Z", + "completed":"2017-05-02T09:02:28.139Z", + "new_balance":"2358.94", + "value":"-2.46" + } + }, + { + "id":"7129a956-ffad-498f-8ae6-0773953018b5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T11:35:21.421Z", + "completed":"2017-05-02T11:35:21.421Z", + "new_balance":"2351.75", + "value":"-7.19" + } + }, + { + "id":"3092ec9b-0de0-466c-aadc-f223b287a302", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T00:23:40.889Z", + "completed":"2017-05-06T00:23:40.889Z", + "new_balance":"2347.33", + "value":"-4.42" + } + }, + { + "id":"1aa42837-03a7-415d-9f33-618cecff88fa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:37:34.520Z", + "completed":"2017-05-07T02:37:34.520Z", + "new_balance":"2342.84", + "value":"-4.49" + } + }, + { + "id":"ce3d07db-c203-4602-88ec-2ecc83514cb8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T03:59:31.754Z", + "completed":"2017-05-07T03:59:31.754Z", + "new_balance":"2340.52", + "value":"-2.32" + } + }, + { + "id":"2b14bac8-a776-4c4d-b547-376e0f70d030", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T18:57:46.205Z", + "completed":"2017-05-07T18:57:46.205Z", + "new_balance":"2339.12", + "value":"-1.40" + } + }, + { + "id":"b9054cea-439e-42ba-bdb1-8f0a422329f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T20:13:28.051Z", + "completed":"2017-05-07T20:13:28.051Z", + "new_balance":"2336.09", + "value":"-3.03" + } + }, + { + "id":"4404e5bb-a8fc-4de8-8fdf-a825f2ff1094", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T21:07:54.308Z", + "completed":"2017-05-08T21:07:54.308Z", + "new_balance":"2331.85", + "value":"-4.24" + } + }, + { + "id":"ba881a1a-2bde-46fb-9e09-d3ef345bd135", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T08:33:08.298Z", + "completed":"2017-05-09T08:33:08.298Z", + "new_balance":"2328.41", + "value":"-3.44" + } + }, + { + "id":"3102569e-c8b6-4d0b-a206-68d8cfa94697", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T18:34:27.161Z", + "completed":"2017-05-13T18:34:27.161Z", + "new_balance":"2323.26", + "value":"-5.15" + } + }, + { + "id":"c0f3b91f-4b04-4365-9632-14e04a55f712", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T12:58:35.614Z", + "completed":"2017-05-26T12:58:35.614Z", + "new_balance":"2318.11", + "value":"-5.15" + } + }, + { + "id":"c8b970df-7763-4f6f-8f8c-23a37eb0fca8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T18:28:25.129Z", + "completed":"2017-05-26T18:28:25.129Z", + "new_balance":"2316.71", + "value":"-1.40" + } + }, + { + "id":"943da9d1-1aa0-479a-8608-dbffc5031cb7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:00:29.923Z", + "completed":"2017-05-27T02:00:29.923Z", + "new_balance":"2311.90", + "value":"-4.81" + } + }, + { + "id":"b0cd1f2a-1959-4259-a3ba-218d3953cb82", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T23:37:32.478Z", + "completed":"2017-05-27T23:37:32.478Z", + "new_balance":"2309.88", + "value":"-2.02" + } + }, + { + "id":"53ebfae8-d8dc-4aea-a9c2-89de9c2d46ed", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T07:10:09.839Z", + "completed":"2017-05-30T07:10:09.839Z", + "new_balance":"2305.61", + "value":"-4.27" + } + }, + { + "id":"834d50e6-1f66-4e18-8f01-53812f108631", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T12:34:08.599Z", + "completed":"2017-05-30T12:34:08.599Z", + "new_balance":"2302.17", + "value":"-3.44" + } + }, + { + "id":"657f8031-80be-4bb9-9468-0244e2d5c683", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T21:08:16.526Z", + "completed":"2017-05-30T21:08:16.526Z", + "new_balance":"2407.80", + "value":"105.63" + } + }, + { + "id":"47a57683-e9fd-4e18-b89f-efff12236f0f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T00:30:52.013Z", + "completed":"2017-06-01T00:30:52.013Z", + "new_balance":"2402.91", + "value":"-4.89" + } + }, + { + "id":"f241a437-ff13-403f-888c-516afb291475", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T04:35:08.007Z", + "completed":"2017-06-01T04:35:08.007Z", + "new_balance":"2401.04", + "value":"-1.87" + } + }, + { + "id":"4769d755-a08c-4869-a37c-78dd929c9c25", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:58:06.931Z", + "completed":"2017-06-01T05:58:06.931Z", + "new_balance":"2394.64", + "value":"-6.40" + } + }, + { + "id":"7188a258-8e05-4ab5-be16-d42100ab11da", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T06:36:04.509Z", + "completed":"2017-06-01T06:36:04.509Z", + "new_balance":"2392.18", + "value":"-2.46" + } + }, + { + "id":"da9c16b6-9abd-4a4a-96ad-047297dd4ab2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:03:20.422Z", + "completed":"2017-06-01T07:03:20.422Z", + "new_balance":"2387.03", + "value":"-5.15" + } + }, + { + "id":"3df00f2f-7294-4ec3-955a-c02cfb1422a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T08:12:52.456Z", + "completed":"2017-06-01T08:12:52.456Z", + "new_balance":"2379.84", + "value":"-7.19" + } + }, + { + "id":"4568b4ad-50ea-4db9-9517-8f619e1370f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T08:23:53.325Z", + "completed":"2017-06-01T08:23:53.325Z", + "new_balance":"2376.40", + "value":"-3.44" + } + }, + { + "id":"a5687672-74f3-4eed-a76a-0989e1dd0ac1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T12:16:45.874Z", + "completed":"2017-06-01T12:16:45.874Z", + "new_balance":"2318.17", + "value":"-58.23" + } + }, + { + "id":"cd25a9d9-55dc-4212-af28-fc2b1144f561", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:30:08.824Z", + "completed":"2017-06-01T15:30:08.824Z", + "new_balance":"2313.02", + "value":"-5.15" + } + }, + { + "id":"91cd865b-b987-40b0-9bb5-d904fe642920", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T12:21:05.410Z", + "completed":"2017-06-02T12:21:05.410Z", + "new_balance":"2311.78", + "value":"-1.24" + } + }, + { + "id":"aac34c9c-0889-4749-9a8e-86c909cce437", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T20:51:44.233Z", + "completed":"2017-06-02T20:51:44.233Z", + "new_balance":"2304.86", + "value":"-6.92" + } + }, + { + "id":"35b0f4b3-1e65-4ed9-abba-a6984ab50aea", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T23:41:28.413Z", + "completed":"2017-06-02T23:41:28.413Z", + "new_balance":"2303.28", + "value":"-1.58" + } + }, + { + "id":"b97cfdfa-f8c4-4e01-8afd-70da35d63eac", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T00:25:39.193Z", + "completed":"2017-06-04T00:25:39.193Z", + "new_balance":"2299.01", + "value":"-4.27" + } + }, + { + "id":"9532a32e-51a1-4a95-9e07-11e23a09051e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T05:01:10.765Z", + "completed":"2017-06-04T05:01:10.765Z", + "new_balance":"2294.32", + "value":"-4.69" + } + }, + { + "id":"61071c92-4b1e-486e-9340-eb9c96ec9dce", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:42:12.971Z", + "completed":"2017-06-04T13:42:12.971Z", + "new_balance":"2292.18", + "value":"-2.14" + } + }, + { + "id":"d6e208db-471a-4acf-b9c3-035f2464d9ab", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T07:18:13.159Z", + "completed":"2017-06-05T07:18:13.159Z", + "new_balance":"2290.19", + "value":"-1.99" + } + }, + { + "id":"a9c01e8c-fa7d-4d04-9904-d3ad1f1e6f43", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:43:11.776Z", + "completed":"2017-06-05T12:43:11.776Z", + "new_balance":"2285.77", + "value":"-4.42" + } + }, + { + "id":"caca59f9-c29a-4628-b414-17ea55934267", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T08:37:06.248Z", + "completed":"2017-06-18T08:37:06.248Z", + "new_balance":"2280.62", + "value":"-5.15" + } + }, + { + "id":"58d4d4cb-251b-4bab-97b0-fa4522e8880a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T02:55:51.517Z", + "completed":"2017-06-30T02:55:51.517Z", + "new_balance":"2276.35", + "value":"-4.27" + } + }, + { + "id":"8cdaba00-2226-4cf6-b8e0-5707e04eeda6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T05:21:13.259Z", + "completed":"2017-06-30T05:21:13.259Z", + "new_balance":"2272.91", + "value":"-3.44" + } + }, + { + "id":"9b187414-2765-48d6-bee0-27f836b2d729", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T10:16:30.073Z", + "completed":"2017-06-30T10:16:30.073Z", + "new_balance":"2378.54", + "value":"105.63" + } + }, + { + "id":"f3143fdf-2bba-4700-b051-b4ae422cead6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T13:42:44.885Z", + "completed":"2017-06-30T13:42:44.885Z", + "new_balance":"2375.43", + "value":"-3.11" + } + }, + { + "id":"ba112eb6-6273-47a1-84cd-635b9ab021c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T19:52:34.465Z", + "completed":"2017-07-01T19:52:34.465Z", + "new_balance":"2369.03", + "value":"-6.40" + } + }, + { + "id":"2596565a-4ee6-4ffb-be67-2b22fedf02a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T01:33:36.056Z", + "completed":"2017-07-03T01:33:36.056Z", + "new_balance":"2366.57", + "value":"-2.46" + } + }, + { + "id":"4d4cb1d8-934e-4301-987b-aa2b5a055fbd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T01:54:00.701Z", + "completed":"2017-07-03T01:54:00.701Z", + "new_balance":"2359.38", + "value":"-7.19" + } + }, + { + "id":"cea412a2-20ac-4821-aca9-acda1e57e51b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T09:03:43.308Z", + "completed":"2017-07-03T09:03:43.308Z", + "new_balance":"2301.15", + "value":"-58.23" + } + }, + { + "id":"b842e6a9-9822-4987-bac3-50458fbd6400", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T11:58:02.726Z", + "completed":"2017-07-03T11:58:02.726Z", + "new_balance":"2297.71", + "value":"-3.44" + } + }, + { + "id":"84f037b1-d1b3-4dd7-b568-85feda50e7e0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:02:07.069Z", + "completed":"2017-07-05T07:02:07.069Z", + "new_balance":"2293.29", + "value":"-4.42" + } + }, + { + "id":"36bbab5f-3a37-4b72-a5b4-4d9e2dc8b7b1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T10:55:52.921Z", + "completed":"2017-07-05T10:55:52.921Z", + "new_balance":"2292.14", + "value":"-1.15" + } + }, + { + "id":"237e3f73-0260-4f32-bf71-8c2e1bed01f6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T15:12:39.569Z", + "completed":"2017-07-05T15:12:39.569Z", + "new_balance":"2286.99", + "value":"-5.15" + } + }, + { + "id":"71736f05-842c-45cf-beab-5b75b5f01ca7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T20:29:42.009Z", + "completed":"2017-07-06T20:29:42.009Z", + "new_balance":"2283.32", + "value":"-3.67" + } + }, + { + "id":"bd3b2db3-6b14-4dc0-978d-d772b2de1559", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T22:11:04.274Z", + "completed":"2017-07-06T22:11:04.274Z", + "new_balance":"2281.00", + "value":"-2.32" + } + }, + { + "id":"dbd5be50-cee0-4a21-afd6-90c20f91ed0a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T17:49:45.540Z", + "completed":"2017-07-07T17:49:45.540Z", + "new_balance":"2276.53", + "value":"-4.47" + } + }, + { + "id":"7b05cb39-1218-40db-b224-9ae67e1633fa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T03:56:46.558Z", + "completed":"2017-07-10T03:56:46.558Z", + "new_balance":"2274.15", + "value":"-2.38" + } + }, + { + "id":"7e483e7b-abb9-44fb-9ded-3d2848202339", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T17:56:27.861Z", + "completed":"2017-07-10T17:56:27.861Z", + "new_balance":"2269.00", + "value":"-5.15" + } + }, + { + "id":"5a085108-16bf-4086-a685-11084d505f9d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T10:08:08.297Z", + "completed":"2017-07-12T10:08:08.297Z", + "new_balance":"2264.53", + "value":"-4.47" + } + }, + { + "id":"a6cbe330-09c4-4d20-b6da-ae31bc0ba23b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:32:11.584Z", + "completed":"2017-07-12T19:32:11.584Z", + "new_balance":"2262.07", + "value":"-2.46" + } + }, + { + "id":"e574518b-8ba2-46b3-975a-0a9aed86c03f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T23:02:03.022Z", + "completed":"2017-07-12T23:02:03.022Z", + "new_balance":"2259.34", + "value":"-2.73" + } + }, + { + "id":"a7ac91b0-07b0-42d0-aa5f-7aeb215f8c74", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T21:19:42.673Z", + "completed":"2017-07-15T21:19:42.673Z", + "new_balance":"2256.71", + "value":"-2.63" + } + }, + { + "id":"a9fd59ab-8498-4458-8889-0e11578a9ca1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T06:56:34.420Z", + "completed":"2017-07-16T06:56:34.420Z", + "new_balance":"2255.75", + "value":"-0.96" + } + }, + { + "id":"20e5bf0b-b4e0-4221-8005-4fe05458c780", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T13:57:34.984Z", + "completed":"2017-07-16T13:57:34.984Z", + "new_balance":"2250.60", + "value":"-5.15" + } + }, + { + "id":"0bf1020f-87e8-4fce-aa16-b8515cff0dc5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T04:14:40.553Z", + "completed":"2017-07-17T04:14:40.553Z", + "new_balance":"2243.85", + "value":"-6.75" + } + }, + { + "id":"24c1f910-e805-418c-b483-8d0f8eb9abbc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T14:42:32.795Z", + "completed":"2017-07-17T14:42:32.795Z", + "new_balance":"2241.26", + "value":"-2.59" + } + }, + { + "id":"d3c5c032-b495-427b-84b4-83f8ab5352c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T11:18:57.129Z", + "completed":"2017-07-19T11:18:57.129Z", + "new_balance":"2238.84", + "value":"-2.42" + } + }, + { + "id":"0fdc6457-c7ea-417c-b391-5bee2201ada6", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T11:01:49.720Z", + "completed":"2017-07-20T11:01:49.720Z", + "new_balance":"2233.69", + "value":"-5.15" + } + }, + { + "id":"f8e398fb-616a-48a3-8cc0-5951c6f58042", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T10:28:45.015Z", + "completed":"2017-07-23T10:28:45.015Z", + "new_balance":"2232.27", + "value":"-1.42" + } + }, + { + "id":"7b60d8e6-9c84-4342-9f67-7eb343f3a4aa", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T03:24:18.409Z", + "completed":"2017-07-26T03:24:18.409Z", + "new_balance":"2227.46", + "value":"-4.81" + } + }, + { + "id":"db896067-93f8-4d57-9150-06512e4b1991", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T11:47:29.276Z", + "completed":"2017-07-27T11:47:29.276Z", + "new_balance":"2333.09", + "value":"105.63" + } + }, + { + "id":"b132f707-207e-4910-8050-1d0c7d5d491e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T05:11:39.888Z", + "completed":"2017-07-28T05:11:39.888Z", + "new_balance":"2329.65", + "value":"-3.44" + } + }, + { + "id":"cdec48a8-9948-44f0-bd04-c4efd61bf962", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T19:19:20.023Z", + "completed":"2017-07-30T19:19:20.023Z", + "new_balance":"2325.38", + "value":"-4.27" + } + }, + { + "id":"93891e18-88f8-42a5-a443-c5933ea5f347", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T04:49:54.778Z", + "completed":"2017-08-01T04:49:54.778Z", + "new_balance":"2318.98", + "value":"-6.40" + } + }, + { + "id":"f7d54cac-4b2f-4b71-80bb-4441b698af44", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T01:45:45.948Z", + "completed":"2017-08-03T01:45:45.948Z", + "new_balance":"2311.79", + "value":"-7.19" + } + }, + { + "id":"48a9de42-c2c3-493a-b869-91015129c938", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T10:51:50.768Z", + "completed":"2017-08-03T10:51:50.768Z", + "new_balance":"2309.33", + "value":"-2.46" + } + }, + { + "id":"9f3b0d76-b086-4fe8-86c7-d699d9fce282", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T17:42:52.239Z", + "completed":"2017-08-03T17:42:52.239Z", + "new_balance":"2251.10", + "value":"-58.23" + } + }, + { + "id":"1cd02fe3-787a-4e19-b22f-25060bc69eca", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T21:10:09.433Z", + "completed":"2017-08-03T21:10:09.433Z", + "new_balance":"2247.66", + "value":"-3.44" + } + }, + { + "id":"3e298c68-0884-445d-8061-69350f486ac2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T09:06:45.524Z", + "completed":"2017-08-08T09:06:45.524Z", + "new_balance":"2242.51", + "value":"-5.15" + } + }, + { + "id":"e54468d7-8410-4334-a73f-c20f4c457f29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T19:09:17.497Z", + "completed":"2017-08-08T19:09:17.497Z", + "new_balance":"2238.09", + "value":"-4.42" + } + }, + { + "id":"df3fce3f-7895-47e6-8711-9390018d5a00", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T11:57:39.476Z", + "completed":"2017-08-11T11:57:39.476Z", + "new_balance":"2239.20", + "value":"1.11" + } + }, + { + "id":"fbe8e450-ffd8-47af-b4cc-fbb586dd299c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T07:48:31.868Z", + "completed":"2017-08-13T07:48:31.868Z", + "new_balance":"2236.88", + "value":"-2.32" + } + }, + { + "id":"b8ba71b9-0eae-47a2-85bf-b8118f082b0d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T13:52:05.335Z", + "completed":"2017-08-14T13:52:05.335Z", + "new_balance":"2233.85", + "value":"-3.03" + } + }, + { + "id":"00fa410f-2bb3-4e27-af07-47c0bc2d545a", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T01:43:53.156Z", + "completed":"2017-08-17T01:43:53.156Z", + "new_balance":"2232.45", + "value":"-1.40" + } + }, + { + "id":"d8a3edeb-337b-4656-8b0e-285c0acd0c30", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T15:01:51.403Z", + "completed":"2017-08-21T15:01:51.403Z", + "new_balance":"2227.96", + "value":"-4.49" + } + }, + { + "id":"46b19053-d0d0-47b6-aafc-0230c54c5d52", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T14:28:46.322Z", + "completed":"2017-08-23T14:28:46.322Z", + "new_balance":"2222.81", + "value":"-5.15" + } + }, + { + "id":"43dd0f3e-f34a-4332-8605-8181887b8186", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T22:01:11.154Z", + "completed":"2017-08-23T22:01:11.154Z", + "new_balance":"2218.57", + "value":"-4.24" + } + }, + { + "id":"7fb094dc-798b-4d3c-b3ec-2e757adf2487", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T13:09:19.988Z", + "completed":"2017-08-24T13:09:19.988Z", + "new_balance":"2217.17", + "value":"-1.40" + } + }, + { + "id":"743f06e3-47bf-44b6-8880-6a672b214a67", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T09:25:59.626Z", + "completed":"2017-08-27T09:25:59.626Z", + "new_balance":"2322.80", + "value":"105.63" + } + }, + { + "id":"bada29dc-a0e2-4efd-bde9-ea9aa5e8b1f8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T16:28:12.195Z", + "completed":"2017-08-27T16:28:12.195Z", + "new_balance":"2320.78", + "value":"-2.02" + } + }, + { + "id":"e6aa8b6a-fb60-44c3-a1a2-932b3e648542", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T23:33:11.777Z", + "completed":"2017-08-27T23:33:11.777Z", + "new_balance":"2315.97", + "value":"-4.81" + } + }, + { + "id":"386da31c-4608-486f-a2bb-be11ae2572d9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T17:51:51.762Z", + "completed":"2017-08-28T17:51:51.762Z", + "new_balance":"2312.53", + "value":"-3.44" + } + }, + { + "id":"f94af37d-1ed0-4f3b-aba3-6affc26628a2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T09:51:56.125Z", + "completed":"2017-08-30T09:51:56.125Z", + "new_balance":"2308.26", + "value":"-4.27" + } + }, + { + "id":"42bbf956-13a1-4dc3-8ade-1662575aecf9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T12:13:04.924Z", + "completed":"2017-09-01T12:13:04.924Z", + "new_balance":"2301.86", + "value":"-6.40" + } + }, + { + "id":"8de82751-e723-433a-a501-4ce798344b65", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T09:01:49.998Z", + "completed":"2017-09-03T09:01:49.998Z", + "new_balance":"2299.40", + "value":"-2.46" + } + }, + { + "id":"7290b78e-cc73-4501-b53b-5021fb84cbba", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T13:34:07.773Z", + "completed":"2017-09-03T13:34:07.773Z", + "new_balance":"2292.21", + "value":"-7.19" + } + }, + { + "id":"552bee69-96b1-4c7c-880d-5afb52d7fe23", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T14:04:28.706Z", + "completed":"2017-09-03T14:04:28.706Z", + "new_balance":"2233.98", + "value":"-58.23" + } + }, + { + "id":"3ae38d2b-2b79-428b-8160-794cd1c67b24", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T17:19:01.702Z", + "completed":"2017-09-03T17:19:01.702Z", + "new_balance":"2230.54", + "value":"-3.44" + } + }, + { + "id":"badcac58-326e-4d41-b887-2de49694a0af", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T06:41:53.822Z", + "completed":"2017-09-05T06:41:53.822Z", + "new_balance":"2225.65", + "value":"-4.89" + } + }, + { + "id":"d4e040be-ea52-4de0-b7e6-94200915748b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T23:23:44.744Z", + "completed":"2017-09-05T23:23:44.744Z", + "new_balance":"2220.50", + "value":"-5.15" + } + }, + { + "id":"0170552e-857b-4944-ac56-fc3fc07faa6c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T11:44:37.386Z", + "completed":"2017-09-07T11:44:37.386Z", + "new_balance":"2218.63", + "value":"-1.87" + } + }, + { + "id":"c272bdcb-61f7-4849-a4b5-f8623902f0f0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T17:54:13.900Z", + "completed":"2017-09-09T17:54:13.900Z", + "new_balance":"2213.48", + "value":"-5.15" + } + }, + { + "id":"1a4e2e9b-2cca-4835-a922-4551a08b0dc0", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T19:48:16.676Z", + "completed":"2017-09-11T19:48:16.676Z", + "new_balance":"2211.90", + "value":"-1.58" + } + }, + { + "id":"46cf5d37-31a9-4224-aea1-6ec93cd9c5b3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T07:41:53.760Z", + "completed":"2017-09-13T07:41:53.760Z", + "new_balance":"2204.98", + "value":"-6.92" + } + }, + { + "id":"da9b68c3-1a9b-4d98-8137-e61d31aaf33e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T18:33:22.718Z", + "completed":"2017-09-14T18:33:22.718Z", + "new_balance":"2203.74", + "value":"-1.24" + } + }, + { + "id":"b59989cb-155f-468f-b98f-b817fcaa5a60", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T22:35:26.385Z", + "completed":"2017-09-14T22:35:26.385Z", + "new_balance":"2212.03", + "value":"8.29" + } + }, + { + "id":"ebc442a3-eb20-46df-a497-9b0c57d8af89", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T15:50:37.119Z", + "completed":"2017-09-15T15:50:37.119Z", + "new_balance":"2207.76", + "value":"-4.27" + } + }, + { + "id":"d0302075-d214-4a69-a496-ec426621b82c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T10:25:12.186Z", + "completed":"2017-09-26T10:25:12.186Z", + "new_balance":"2205.77", + "value":"-1.99" + } + }, + { + "id":"c909af27-80bd-4ce3-8eb9-eca3287343f3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T12:02:24.502Z", + "completed":"2017-09-26T12:02:24.502Z", + "new_balance":"2201.08", + "value":"-4.69" + } + }, + { + "id":"7cb65797-6763-43d3-bcd2-a1a171f58fec", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T23:59:00.159Z", + "completed":"2017-09-26T23:59:00.159Z", + "new_balance":"2198.94", + "value":"-2.14" + } + }, + { + "id":"18576f34-19cb-487a-ac35-ed2e257be704", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T11:35:12.154Z", + "completed":"2017-09-27T11:35:12.154Z", + "new_balance":"2193.79", + "value":"-5.15" + } + }, + { + "id":"e6d95080-7d59-481a-8c56-ecc147567250", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T20:25:54.215Z", + "completed":"2017-09-27T20:25:54.215Z", + "new_balance":"2299.42", + "value":"105.63" + } + }, + { + "id":"9fc15cd6-9130-4d72-80ed-d07925cdd714", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T23:55:31.359Z", + "completed":"2017-09-27T23:55:31.359Z", + "new_balance":"2295.00", + "value":"-4.42" + } + }, + { + "id":"7b6283b6-6ea0-47b1-be43-2969f994837e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T05:52:47.521Z", + "completed":"2017-09-28T05:52:47.521Z", + "new_balance":"2291.56", + "value":"-3.44" + } + }, + { + "id":"3eae8a41-afe5-45e0-bfed-7f381ff661bb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:14:32.579Z", + "completed":"2017-09-30T12:14:32.579Z", + "new_balance":"2287.29", + "value":"-4.27" + } + }, + { + "id":"9190d673-18aa-482d-b122-4353e06dd722", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T05:17:12.321Z", + "completed":"2017-10-01T05:17:12.321Z", + "new_balance":"2284.83", + "value":"-2.46" + } + }, + { + "id":"226d7968-2e1c-4e5e-b028-1c24dc9fe6d2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T12:15:47.709Z", + "completed":"2017-10-01T12:15:47.709Z", + "new_balance":"2278.43", + "value":"-6.40" + } + }, + { + "id":"0cb133ff-4250-4b7f-a8b0-70765bc67908", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T16:52:46.421Z", + "completed":"2017-10-01T16:52:46.421Z", + "new_balance":"2274.99", + "value":"-3.44" + } + }, + { + "id":"034123e4-51ea-4b62-8b52-ef73347a23dd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T18:06:53.764Z", + "completed":"2017-10-01T18:06:53.764Z", + "new_balance":"2216.76", + "value":"-58.23" + } + }, + { + "id":"dfdd1c96-681f-476f-881a-3381df510ea5", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T19:57:58.200Z", + "completed":"2017-10-01T19:57:58.200Z", + "new_balance":"2209.57", + "value":"-7.19" + } + }, + { + "id":"e9d97b2a-2883-418e-91a3-249806eb73a4", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T02:08:49.846Z", + "completed":"2017-10-05T02:08:49.846Z", + "new_balance":"2205.90", + "value":"-3.67" + } + }, + { + "id":"a1471bfc-9ef9-4a1b-be3a-d7c6d0b682a7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T09:49:15.314Z", + "completed":"2017-10-05T09:49:15.314Z", + "new_balance":"2204.75", + "value":"-1.15" + } + }, + { + "id":"93d005e4-e520-4195-9050-f1eb6dbbdafc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:47:23.759Z", + "completed":"2017-10-05T13:47:23.759Z", + "new_balance":"2200.33", + "value":"-4.42" + } + }, + { + "id":"ea75d4ab-736b-4fae-ae8d-44b034385542", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T14:00:18.370Z", + "completed":"2017-10-05T14:00:18.370Z", + "new_balance":"2195.18", + "value":"-5.15" + } + }, + { + "id":"3198b279-5c87-4881-96d4-a945e86f1545", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Otical 88" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T22:16:16.340Z", + "completed":"2017-10-07T22:16:16.340Z", + "new_balance":"2192.86", + "value":"-2.32" + } + }, + { + "id":"322b0c40-6011-49b9-85d1-2e3cb8750d06", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T02:15:06.604Z", + "completed":"2017-10-09T02:15:06.604Z", + "new_balance":"2190.48", + "value":"-2.38" + } + }, + { + "id":"e7dfd161-eead-47bd-9b48-ed70d092a280", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T03:45:21.375Z", + "completed":"2017-10-09T03:45:21.375Z", + "new_balance":"2185.33", + "value":"-5.15" + } + }, + { + "id":"9585c85f-4d07-4494-aefe-bfaf1a461e41", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T10:01:08.424Z", + "completed":"2017-10-10T10:01:08.424Z", + "new_balance":"2182.60", + "value":"-2.73" + } + }, + { + "id":"6aa06a18-5aa7-4f2b-8656-2bd14c07724d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T11:46:59.375Z", + "completed":"2017-10-10T11:46:59.375Z", + "new_balance":"2179.97", + "value":"-2.63" + } + }, + { + "id":"0b49233e-bca9-4e34-a343-cbd40741f7ee", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:24:08.033Z", + "completed":"2017-10-10T18:24:08.033Z", + "new_balance":"2177.51", + "value":"-2.46" + } + }, + { + "id":"917f3406-a490-4a67-8a0a-d41c123f4c1f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:13:16.310Z", + "completed":"2017-10-10T23:13:16.310Z", + "new_balance":"2173.04", + "value":"-4.47" + } + }, + { + "id":"0bf6fea0-7a64-4aba-8edc-b216f68aa35d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T03:53:18.659Z", + "completed":"2017-10-11T03:53:18.659Z", + "new_balance":"2170.45", + "value":"-2.59" + } + }, + { + "id":"3df3637c-b10c-47a4-9a7a-5a013dbdc10d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T12:09:46.548Z", + "completed":"2017-10-11T12:09:46.548Z", + "new_balance":"2169.49", + "value":"-0.96" + } + }, + { + "id":"6d894f40-cbd4-41aa-83d9-da7105f1cd28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T15:20:52.107Z", + "completed":"2017-10-11T15:20:52.107Z", + "new_balance":"2162.74", + "value":"-6.75" + } + }, + { + "id":"0f70effb-02d8-4e0b-b2f0-374cdb1deb28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T17:06:29.738Z", + "completed":"2017-10-11T17:06:29.738Z", + "new_balance":"2157.59", + "value":"-5.15" + } + }, + { + "id":"5a12938b-5031-4c2c-8a66-77c57c97a45b", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T17:08:28.536Z", + "completed":"2017-10-11T17:08:28.536Z", + "new_balance":"2155.17", + "value":"-2.42" + } + }, + { + "id":"858cb0f5-6e83-407f-b4e2-1b86c2618285", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T03:39:45.207Z", + "completed":"2017-10-21T03:39:45.207Z", + "new_balance":"2150.02", + "value":"-5.15" + } + }, + { + "id":"6f106527-3788-4b3f-b73f-7c7213bc80cc", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T03:41:44.605Z", + "completed":"2017-10-23T03:41:44.605Z", + "new_balance":"2148.60", + "value":"-1.42" + } + }, + { + "id":"e7664f8a-4cb6-49fa-90b6-2a4fe166f3c3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T16:56:13.968Z", + "completed":"2017-10-29T16:56:13.968Z", + "new_balance":"2143.79", + "value":"-4.81" + } + }, + { + "id":"e1cb4757-83c0-4525-b74b-bbc1a4c84f0c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T21:17:49.102Z", + "completed":"2017-10-29T21:17:49.102Z", + "new_balance":"2249.42", + "value":"105.63" + } + }, + { + "id":"e3439a48-bce7-449b-b9bb-9b87c1b38dbd", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T22:00:13.883Z", + "completed":"2017-10-29T22:00:13.883Z", + "new_balance":"2245.98", + "value":"-3.44" + } + }, + { + "id":"8ca872fe-bb7d-4010-85cf-84b6ad6061a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T12:28:14.974Z", + "completed":"2017-10-30T12:28:14.974Z", + "new_balance":"2241.71", + "value":"-4.27" + } + }, + { + "id":"0fea0fba-36a1-47b4-af14-4abb2685b6e3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T00:12:48.401Z", + "completed":"2017-11-02T00:12:48.401Z", + "new_balance":"2183.48", + "value":"-58.23" + } + }, + { + "id":"92a0fc23-aeed-4bda-886c-d7ef990af8ee", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T04:14:05.171Z", + "completed":"2017-11-02T04:14:05.171Z", + "new_balance":"2176.29", + "value":"-7.19" + } + }, + { + "id":"fcbe20f5-5d49-4ffe-b4eb-ebb9990618c8", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T07:56:27.319Z", + "completed":"2017-11-02T07:56:27.319Z", + "new_balance":"2169.89", + "value":"-6.40" + } + }, + { + "id":"106f93db-9a38-4b69-80d3-133864a9d5c7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T08:10:03.664Z", + "completed":"2017-11-02T08:10:03.664Z", + "new_balance":"2167.43", + "value":"-2.46" + } + }, + { + "id":"15f22cf8-2833-4728-942d-a907b3dbe44f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T01:45:42.134Z", + "completed":"2017-11-06T01:45:42.134Z", + "new_balance":"2163.01", + "value":"-4.42" + } + }, + { + "id":"47418b6f-dbc6-4597-a254-434298799d29", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T03:01:27.053Z", + "completed":"2017-11-07T03:01:27.053Z", + "new_balance":"2160.69", + "value":"-2.32" + } + }, + { + "id":"def77785-0f9b-49f8-848c-8486270c5809", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Reader" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T08:08:35.420Z", + "completed":"2017-11-07T08:08:35.420Z", + "new_balance":"2159.29", + "value":"-1.40" + } + }, + { + "id":"fde323c1-9f66-4598-99d7-60b70953c8fb", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T18:04:18.345Z", + "completed":"2017-11-07T18:04:18.345Z", + "new_balance":"2154.80", + "value":"-4.49" + } + }, + { + "id":"e92c777b-def5-445a-beed-e962ab3c5c3f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T21:56:11.165Z", + "completed":"2017-11-07T21:56:11.165Z", + "new_balance":"2151.77", + "value":"-3.03" + } + }, + { + "id":"4867e99b-2fcd-4fbe-8c56-825d595142df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T13:49:54.439Z", + "completed":"2017-11-08T13:49:54.439Z", + "new_balance":"2147.53", + "value":"-4.24" + } + }, + { + "id":"7d2a1ae3-855c-47ec-ad28-00f8560093a9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T22:47:40.626Z", + "completed":"2017-11-09T22:47:40.626Z", + "new_balance":"2144.09", + "value":"-3.44" + } + }, + { + "id":"5b7c5a36-d904-410a-b7e2-2391244c3269", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T07:52:30.949Z", + "completed":"2017-11-13T07:52:30.949Z", + "new_balance":"2138.94", + "value":"-5.15" + } + }, + { + "id":"599f6fba-dc5b-47fa-92c2-22479aa622f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"E Cox" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T07:43:54.385Z", + "completed":"2017-11-26T07:43:54.385Z", + "new_balance":"2137.54", + "value":"-1.40" + } + }, + { + "id":"d3e1c591-1f4e-492d-8bb8-a89ed317ff28", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T14:18:18.791Z", + "completed":"2017-11-26T14:18:18.791Z", + "new_balance":"2132.39", + "value":"-5.15" + } + }, + { + "id":"375688a0-a449-443f-9aa8-927f5a2efb62", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T00:14:23.939Z", + "completed":"2017-11-27T00:14:23.939Z", + "new_balance":"2130.37", + "value":"-2.02" + } + }, + { + "id":"f42cb244-d532-4240-aab4-7744ad94aa9f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T23:56:36.555Z", + "completed":"2017-11-27T23:56:36.555Z", + "new_balance":"2125.56", + "value":"-4.81" + } + }, + { + "id":"b3b22480-3af2-434a-a3bb-ac34725fc403", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T08:09:56.765Z", + "completed":"2017-11-30T08:09:56.765Z", + "new_balance":"2121.29", + "value":"-4.27" + } + }, + { + "id":"021425bd-eba2-41d4-ac5b-e631b83c4729", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T17:23:57.365Z", + "completed":"2017-11-30T17:23:57.365Z", + "new_balance":"2226.92", + "value":"105.63" + } + }, + { + "id":"5c0d5d9a-110c-443c-9371-1022736b4149", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T19:47:35.471Z", + "completed":"2017-11-30T19:47:35.471Z", + "new_balance":"2223.48", + "value":"-3.44" + } + }, + { + "id":"7b4a7364-7eae-450b-92ff-571bef815650", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T01:57:06.081Z", + "completed":"2017-12-01T01:57:06.081Z", + "new_balance":"2218.33", + "value":"-5.15" + } + }, + { + "id":"2f40868e-abea-4bac-8955-9a439d6f842c", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HK Electric" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T02:10:00.524Z", + "completed":"2017-12-01T02:10:00.524Z", + "new_balance":"2211.14", + "value":"-7.19" + } + }, + { + "id":"56165898-23a6-4ece-9ab0-d14ea91d9a32", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T09:19:43.521Z", + "completed":"2017-12-01T09:19:43.521Z", + "new_balance":"2207.70", + "value":"-3.44" + } + }, + { + "id":"49c179b5-c5f8-49d2-b9d3-ae3f1df19ead", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T09:34:50.699Z", + "completed":"2017-12-01T09:34:50.699Z", + "new_balance":"2201.30", + "value":"-6.40" + } + }, + { + "id":"983ed0af-e5d0-4a41-84de-160f65d8d66e", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netvigator" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T09:57:22.563Z", + "completed":"2017-12-01T09:57:22.563Z", + "new_balance":"2198.84", + "value":"-2.46" + } + }, + { + "id":"69aa3acd-90eb-448c-9d46-bc3ce051a6df", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T17:10:16.030Z", + "completed":"2017-12-01T17:10:16.030Z", + "new_balance":"2193.95", + "value":"-4.89" + } + }, + { + "id":"d4183abb-6e9c-4925-a532-125d78dda4f9", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T18:12:26.920Z", + "completed":"2017-12-01T18:12:26.920Z", + "new_balance":"2135.72", + "value":"-58.23" + } + }, + { + "id":"8370a7c5-c7fa-452c-8b43-4e4e7a9f97f2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T22:19:25.236Z", + "completed":"2017-12-01T22:19:25.236Z", + "new_balance":"2130.57", + "value":"-5.15" + } + }, + { + "id":"32c74d72-027d-4ee8-b3c0-e8af3fe8f573", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T23:57:58.625Z", + "completed":"2017-12-01T23:57:58.625Z", + "new_balance":"2128.70", + "value":"-1.87" + } + }, + { + "id":"57923408-0a66-4fde-9e4e-a285c014ff16", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T12:59:19.673Z", + "completed":"2017-12-02T12:59:19.673Z", + "new_balance":"2127.12", + "value":"-1.58" + } + }, + { + "id":"ebd97812-b8b5-4036-ab73-840863881098", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T15:52:12.946Z", + "completed":"2017-12-02T15:52:12.946Z", + "new_balance":"2120.20", + "value":"-6.92" + } + }, + { + "id":"8f9020f5-f1f8-4604-b968-befdd8819af3", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Daiso" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T19:31:47.425Z", + "completed":"2017-12-02T19:31:47.425Z", + "new_balance":"2118.96", + "value":"-1.24" + } + }, + { + "id":"f8624168-0d41-4aae-b3e0-9dd90781dc3d", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T08:50:55.672Z", + "completed":"2017-12-04T08:50:55.672Z", + "new_balance":"2114.69", + "value":"-4.27" + } + }, + { + "id":"1c3ca0a8-891b-4a04-8427-fb75df8b76bf", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T20:29:53.643Z", + "completed":"2017-12-04T20:29:53.643Z", + "new_balance":"2110.00", + "value":"-4.69" + } + }, + { + "id":"74ee1935-193e-4202-99c4-ed789ee0ac79", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Yata" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T21:31:02.677Z", + "completed":"2017-12-04T21:31:02.677Z", + "new_balance":"2107.86", + "value":"-2.14" + } + }, + { + "id":"901d0ae1-49bb-4595-a3d7-037219d56cd1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Escapade Sports" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T01:28:57.236Z", + "completed":"2017-12-05T01:28:57.236Z", + "new_balance":"2105.87", + "value":"-1.99" + } + }, + { + "id":"3b59f99d-6c27-43b1-a6a1-5046c6b0f927", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gateway" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T09:23:14.557Z", + "completed":"2017-12-05T09:23:14.557Z", + "new_balance":"2101.45", + "value":"-4.42" + } + }, + { + "id":"b98116d4-a1b1-4405-a401-8a9eb6c4dc95", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T17:23:32.994Z", + "completed":"2017-12-18T17:23:32.994Z", + "new_balance":"2096.30", + "value":"-5.15" + } + }, + { + "id":"bd3778fa-df5f-4ec4-86c5-c2d1f89251b2", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Citi Bank" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T10:41:45.503Z", + "completed":"2017-12-30T10:41:45.503Z", + "new_balance":"2092.03", + "value":"-4.27" + } + }, + { + "id":"8709ec2c-fbe5-4fd8-b413-f30a8013efc7", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Esso Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T10:45:02.884Z", + "completed":"2017-12-30T10:45:02.884Z", + "new_balance":"2088.92", + "value":"-3.11" + } + }, + { + "id":"71eb2907-cec5-41ce-a617-617796fea91f", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T17:14:07.099Z", + "completed":"2017-12-30T17:14:07.099Z", + "new_balance":"2194.55", + "value":"105.63" + } + }, + { + "id":"d27e7017-59d7-4117-ae57-5d4137b656e1", + "this_account":{ + "id":"5074fda5-052c-4048-a856-4a1d712c4466", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T18:17:34.975Z", + "completed":"2017-12-30T18:17:34.975Z", + "new_balance":"2191.11", + "value":"-3.44" + } + }, + { + "id":"fd789fe7-0f70-442b-8a1d-2c518b71255d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:38:50.294Z", + "completed":"2016-01-01T02:38:50.294Z", + "new_balance":"8095.12", + "value":"-3.44" + } + }, + { + "id":"41c155e0-30aa-4af2-9200-65f205d3458e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:51:28.206Z", + "completed":"2016-01-01T02:51:28.206Z", + "new_balance":"8091.68", + "value":"-3.44" + } + }, + { + "id":"2b3be2f5-e18c-4c68-93c5-fa16a1b115df", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T10:04:23.227Z", + "completed":"2016-01-01T10:04:23.227Z", + "new_balance":"8033.45", + "value":"-58.23" + } + }, + { + "id":"8f8bf40e-b600-497a-adcb-aaa5eec571f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T10:44:52.117Z", + "completed":"2016-01-01T10:44:52.117Z", + "new_balance":"8031.13", + "value":"-2.32" + } + }, + { + "id":"38a2f816-75b4-4cf9-8be7-e9672d3654b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T12:45:10.511Z", + "completed":"2016-01-01T12:45:10.511Z", + "new_balance":"8025.98", + "value":"-5.15" + } + }, + { + "id":"81767b64-545f-4878-a5d7-ee2867a0914b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T22:39:06.944Z", + "completed":"2016-01-01T22:39:06.944Z", + "new_balance":"8010.73", + "value":"-15.25" + } + }, + { + "id":"e33cb9bf-d87f-41ae-a861-d95bb4098cf7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T03:07:05.758Z", + "completed":"2016-01-02T03:07:05.758Z", + "new_balance":"8003.63", + "value":"-7.10" + } + }, + { + "id":"f181368e-cc6b-4810-bd0c-c5be381706ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T23:47:27.271Z", + "completed":"2016-01-02T23:47:27.271Z", + "new_balance":"7993.94", + "value":"-9.69" + } + }, + { + "id":"b83ca910-203b-4d56-a882-1c85749eaacd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:22:43.300Z", + "completed":"2016-01-04T04:22:43.300Z", + "new_balance":"7990.16", + "value":"-3.78" + } + }, + { + "id":"11e4d36a-759c-46bd-b4c6-c6a99621efed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T06:21:36.888Z", + "completed":"2016-01-04T06:21:36.888Z", + "new_balance":"7987.25", + "value":"-2.91" + } + }, + { + "id":"75069669-657d-4bc5-9e7a-c0c9c9fe119f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T11:31:42.273Z", + "completed":"2016-01-07T11:31:42.273Z", + "new_balance":"7980.06", + "value":"-7.19" + } + }, + { + "id":"c7b2bc96-bd9c-4c8a-8653-aeb2d4c69175", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T17:18:26.859Z", + "completed":"2016-01-09T17:18:26.859Z", + "new_balance":"7979.60", + "value":"-0.46" + } + }, + { + "id":"68de1227-4722-4220-83a4-f50a6da675f8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T17:09:52.716Z", + "completed":"2016-01-10T17:09:52.716Z", + "new_balance":"7976.92", + "value":"-2.68" + } + }, + { + "id":"482d33e0-8adb-416e-806f-2ff4a5d09bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T08:22:25.190Z", + "completed":"2016-01-12T08:22:25.190Z", + "new_balance":"7973.70", + "value":"-3.22" + } + }, + { + "id":"586596c4-e6a4-4d93-873b-b8aed3d6309c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T07:54:29.804Z", + "completed":"2016-01-15T07:54:29.804Z", + "new_balance":"7972.17", + "value":"-1.53" + } + }, + { + "id":"3cc7534c-5192-42ac-99da-c8e0eb2d2000", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T18:50:22.113Z", + "completed":"2016-01-15T18:50:22.113Z", + "new_balance":"7971.27", + "value":"-0.90" + } + }, + { + "id":"ec5b4b26-7047-41f5-ac3b-63318b25bc24", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T04:40:38.283Z", + "completed":"2016-01-17T04:40:38.283Z", + "new_balance":"7969.16", + "value":"-2.11" + } + }, + { + "id":"938b7b74-14a3-4cba-ba85-6f348bb461cf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T15:42:55.625Z", + "completed":"2016-01-19T15:42:55.625Z", + "new_balance":"7941.66", + "value":"-27.50" + } + }, + { + "id":"81e05466-429c-4489-ad54-b1096cf6979e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T05:16:51.709Z", + "completed":"2016-01-20T05:16:51.709Z", + "new_balance":"7941.22", + "value":"-0.44" + } + }, + { + "id":"f4f74ec9-83d4-49f8-816f-9aa66c9007e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T09:56:19.127Z", + "completed":"2016-01-22T09:56:19.127Z", + "new_balance":"7936.74", + "value":"-4.48" + } + }, + { + "id":"619f21b9-28ab-49bf-b747-4b727c899af0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T20:45:44.701Z", + "completed":"2016-01-22T20:45:44.701Z", + "new_balance":"7935.63", + "value":"-1.11" + } + }, + { + "id":"789973c0-f4f0-44dd-9504-9ea414266118", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T06:51:59.509Z", + "completed":"2016-01-24T06:51:59.509Z", + "new_balance":"7932.82", + "value":"-2.81" + } + }, + { + "id":"c12a5fa4-7aeb-4fde-9da2-0192f5cc3b5d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T02:09:57.651Z", + "completed":"2016-01-25T02:09:57.651Z", + "new_balance":"7927.42", + "value":"-5.40" + } + }, + { + "id":"05f1164f-18d8-4585-bf8f-15abf2660d39", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T02:37:09.221Z", + "completed":"2016-01-25T02:37:09.221Z", + "new_balance":"7926.98", + "value":"-0.44" + } + }, + { + "id":"dbb8a888-4f15-4b17-aba0-67f5ca109149", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T17:27:28.531Z", + "completed":"2016-01-26T17:27:28.531Z", + "new_balance":"7921.16", + "value":"-5.82" + } + }, + { + "id":"ab63741c-6723-4dc9-a56b-1829b28ca37d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T01:46:11.405Z", + "completed":"2016-02-01T01:46:11.405Z", + "new_balance":"8103.86", + "value":"182.70" + } + }, + { + "id":"4956ae76-2e4a-4a1d-b6a0-bacdc6b7e80e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T06:45:41.176Z", + "completed":"2016-02-01T06:45:41.176Z", + "new_balance":"8098.71", + "value":"-5.15" + } + }, + { + "id":"20c2d674-fbbd-4271-bd1a-5139c4df3401", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T06:54:54.332Z", + "completed":"2016-02-01T06:54:54.332Z", + "new_balance":"8096.39", + "value":"-2.32" + } + }, + { + "id":"045e00d7-dd44-489f-b195-62011c71db93", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T11:00:42.193Z", + "completed":"2016-02-01T11:00:42.193Z", + "new_balance":"8038.16", + "value":"-58.23" + } + }, + { + "id":"257db04a-123d-47bd-a84c-d7d2714bee6a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T12:46:38.362Z", + "completed":"2016-02-01T12:46:38.362Z", + "new_balance":"8034.72", + "value":"-3.44" + } + }, + { + "id":"a7e1ef03-3fb2-4a76-a999-7ffb3c169ca0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T21:07:07.228Z", + "completed":"2016-02-01T21:07:07.228Z", + "new_balance":"8019.47", + "value":"-15.25" + } + }, + { + "id":"fb986b4a-6ae4-433c-b502-3b621e56039b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T00:07:58.770Z", + "completed":"2016-02-02T00:07:58.770Z", + "new_balance":"8012.37", + "value":"-7.10" + } + }, + { + "id":"2a8ff39c-3294-40ba-89ae-124e7fa52ee5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T04:31:20.278Z", + "completed":"2016-02-02T04:31:20.278Z", + "new_balance":"8011.22", + "value":"-1.15" + } + }, + { + "id":"db7801c7-bd7e-448b-b391-c5f45d0b003e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T09:19:57.864Z", + "completed":"2016-02-02T09:19:57.864Z", + "new_balance":"8009.12", + "value":"-2.10" + } + }, + { + "id":"c690218f-388f-4990-b2a8-2b5033cd4799", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:09:11.154Z", + "completed":"2016-02-03T02:09:11.154Z", + "new_balance":"8006.72", + "value":"-2.40" + } + }, + { + "id":"615814c4-f3c8-4417-bfa6-1a3787f9964b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T12:39:56.223Z", + "completed":"2016-02-03T12:39:56.223Z", + "new_balance":"8004.22", + "value":"-2.50" + } + }, + { + "id":"3fa61e39-5ee8-4755-96df-97eda5aa4446", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T19:26:26.575Z", + "completed":"2016-02-03T19:26:26.575Z", + "new_balance":"8000.89", + "value":"-3.33" + } + }, + { + "id":"cdafee8f-9629-4a0f-b787-4e43fb169de3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T12:37:46.154Z", + "completed":"2016-02-06T12:37:46.154Z", + "new_balance":"7993.70", + "value":"-7.19" + } + }, + { + "id":"963daca0-5f9a-4205-90dc-cbc0d9382125", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T09:37:42.001Z", + "completed":"2016-02-08T09:37:42.001Z", + "new_balance":"7991.25", + "value":"-2.45" + } + }, + { + "id":"7421a5e8-4966-4379-b68e-7bbe26ff7b14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T12:56:28.228Z", + "completed":"2016-02-08T12:56:28.228Z", + "new_balance":"7990.77", + "value":"-0.48" + } + }, + { + "id":"f892ffa3-abac-483e-8769-681c53cce2df", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T13:31:00.818Z", + "completed":"2016-02-08T13:31:00.818Z", + "new_balance":"7987.74", + "value":"-3.03" + } + }, + { + "id":"e9a96e3f-179b-40f6-a63d-8a95f2bfff77", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T16:21:02.864Z", + "completed":"2016-02-09T16:21:02.864Z", + "new_balance":"7984.60", + "value":"-3.14" + } + }, + { + "id":"f1751a41-f362-40a0-b186-af2ce0156662", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T23:20:44.464Z", + "completed":"2016-02-09T23:20:44.464Z", + "new_balance":"7981.12", + "value":"-3.48" + } + }, + { + "id":"441ae9b0-bb70-402e-9e26-ce34d14a38c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T03:51:14.741Z", + "completed":"2016-02-12T03:51:14.741Z", + "new_balance":"7980.65", + "value":"-0.47" + } + }, + { + "id":"5dbd6a4a-2be0-440b-8d9a-e76baa04a01c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T15:05:20.598Z", + "completed":"2016-02-13T15:05:20.598Z", + "new_balance":"7974.22", + "value":"-6.43" + } + }, + { + "id":"0043f507-e2bb-41e2-9c6d-0b4258990278", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T17:00:36.681Z", + "completed":"2016-02-13T17:00:36.681Z", + "new_balance":"7973.45", + "value":"-0.77" + } + }, + { + "id":"dadfd117-f4cb-4b1f-ba0a-a32f7ddbd68f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T19:11:52.235Z", + "completed":"2016-02-13T19:11:52.235Z", + "new_balance":"7977.53", + "value":"4.08" + } + }, + { + "id":"f43e0624-962f-4bd4-9d8f-f32de73dca1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:10:51.536Z", + "completed":"2016-02-14T04:10:51.536Z", + "new_balance":"7973.41", + "value":"-4.12" + } + }, + { + "id":"1e233cd1-215e-4849-8fa3-69ad8f98ea96", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T20:13:56.889Z", + "completed":"2016-02-15T20:13:56.889Z", + "new_balance":"7970.86", + "value":"-2.55" + } + }, + { + "id":"5793fc17-e2e8-4245-a555-5425c38f5afb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T14:03:23.562Z", + "completed":"2016-02-28T14:03:23.562Z", + "new_balance":"7967.92", + "value":"-2.94" + } + }, + { + "id":"d5b2caaa-82cf-424f-8275-f47a43868362", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T01:18:54.609Z", + "completed":"2016-03-01T01:18:54.609Z", + "new_balance":"7965.60", + "value":"-2.32" + } + }, + { + "id":"966d9e4d-862c-4d9d-9d81-3a6fdf35b4fb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T02:06:22.319Z", + "completed":"2016-03-01T02:06:22.319Z", + "new_balance":"7960.45", + "value":"-5.15" + } + }, + { + "id":"9cbd38e1-a1c6-4f60-8610-9a417922a29e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T02:56:41.560Z", + "completed":"2016-03-01T02:56:41.560Z", + "new_balance":"7902.22", + "value":"-58.23" + } + }, + { + "id":"8a84d952-2a50-43e2-927f-aada6e7e277c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T09:37:51.305Z", + "completed":"2016-03-01T09:37:51.305Z", + "new_balance":"7886.97", + "value":"-15.25" + } + }, + { + "id":"4201023c-bf49-4b69-bb08-78c56a7974b7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T14:57:06.518Z", + "completed":"2016-03-01T14:57:06.518Z", + "new_balance":"7883.53", + "value":"-3.44" + } + }, + { + "id":"8840e743-8e2e-42de-8d8f-45b8e83c6c43", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T15:28:39.208Z", + "completed":"2016-03-01T15:28:39.208Z", + "new_balance":"8066.23", + "value":"182.70" + } + }, + { + "id":"75fbd6f4-b082-4dec-b1c8-d55ee2625cd6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T17:47:31.138Z", + "completed":"2016-03-02T17:47:31.138Z", + "new_balance":"8059.13", + "value":"-7.10" + } + }, + { + "id":"e0e993e4-c824-4a56-b183-46ec461e69fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T09:18:41.978Z", + "completed":"2016-03-04T09:18:41.978Z", + "new_balance":"8051.83", + "value":"-7.30" + } + }, + { + "id":"b86666f5-1ea3-4a46-87d6-57ae3d160a3d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T19:39:34.565Z", + "completed":"2016-03-04T19:39:34.565Z", + "new_balance":"8051.07", + "value":"-0.76" + } + }, + { + "id":"3b0966ad-4d9b-4f80-b929-e5e462d1ff0b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T20:11:12.769Z", + "completed":"2016-03-04T20:11:12.769Z", + "new_balance":"8047.77", + "value":"-3.30" + } + }, + { + "id":"a6242f58-782e-49a3-820a-27bc5ba25cf1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T20:27:47.844Z", + "completed":"2016-03-04T20:27:47.844Z", + "new_balance":"8046.52", + "value":"-1.25" + } + }, + { + "id":"d279636b-14f3-4ee2-b246-1ca754a4d2f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T13:04:18.581Z", + "completed":"2016-03-05T13:04:18.581Z", + "new_balance":"8046.12", + "value":"-0.40" + } + }, + { + "id":"c9e84501-d186-408c-a253-82f64f42fd40", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T19:55:44.607Z", + "completed":"2016-03-05T19:55:44.607Z", + "new_balance":"8042.08", + "value":"-4.04" + } + }, + { + "id":"009a0217-ee29-48e9-b581-65f7b5b9e70e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T00:29:23.329Z", + "completed":"2016-03-06T00:29:23.329Z", + "new_balance":"8034.78", + "value":"-7.30" + } + }, + { + "id":"ec051e17-ef06-4881-8d63-d2f48928d42f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T07:17:59.827Z", + "completed":"2016-03-06T07:17:59.827Z", + "new_balance":"8029.51", + "value":"-5.27" + } + }, + { + "id":"9b96004d-8135-4313-b323-532e8ed6e699", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T09:33:50.092Z", + "completed":"2016-03-07T09:33:50.092Z", + "new_balance":"8025.24", + "value":"-4.27" + } + }, + { + "id":"04de1a84-6852-4338-ae2c-98c40729ffe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T22:54:20.206Z", + "completed":"2016-03-08T22:54:20.206Z", + "new_balance":"8019.97", + "value":"-5.27" + } + }, + { + "id":"a8853c5d-9858-4ca7-b9d1-36c256b3de3f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T13:38:56.904Z", + "completed":"2016-03-09T13:38:56.904Z", + "new_balance":"8019.43", + "value":"-0.54" + } + }, + { + "id":"35f849ce-1bb2-482e-8b5c-562f33605947", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T19:22:43.913Z", + "completed":"2016-03-10T19:22:43.913Z", + "new_balance":"8013.11", + "value":"-6.32" + } + }, + { + "id":"f2156b0f-7fec-4d10-9d89-5a47931e9e80", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:54:47.924Z", + "completed":"2016-03-11T08:54:47.924Z", + "new_balance":"8012.34", + "value":"-0.77" + } + }, + { + "id":"5d62e278-4783-44d4-aa5c-6ed5018f2719", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T05:59:16.521Z", + "completed":"2016-03-12T05:59:16.521Z", + "new_balance":"8011.29", + "value":"-1.05" + } + }, + { + "id":"12abe5c6-b35d-4353-af52-85c36506a132", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T09:26:38.056Z", + "completed":"2016-03-12T09:26:38.056Z", + "new_balance":"8009.04", + "value":"-2.25" + } + }, + { + "id":"716c8e5a-4d33-45e0-8523-37a61272481a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T06:15:28.855Z", + "completed":"2016-03-13T06:15:28.855Z", + "new_balance":"8004.78", + "value":"-4.26" + } + }, + { + "id":"2e5c5e3b-ac97-4a61-b135-f5f678d03b61", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T10:31:59.940Z", + "completed":"2016-03-14T10:31:59.940Z", + "new_balance":"8004.26", + "value":"-0.52" + } + }, + { + "id":"2af2b807-eb7b-49c7-96a0-65daa0c9defe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T11:10:07.585Z", + "completed":"2016-03-16T11:10:07.585Z", + "new_balance":"7999.44", + "value":"-4.82" + } + }, + { + "id":"1bc2ce77-ace1-425b-9bec-adc8fc95c79b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T20:57:07.801Z", + "completed":"2016-03-16T20:57:07.801Z", + "new_balance":"7989.65", + "value":"-9.79" + } + }, + { + "id":"9d03b02c-0bd9-4d22-a074-5d5338142a09", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T16:55:42.695Z", + "completed":"2016-03-18T16:55:42.695Z", + "new_balance":"7989.13", + "value":"-0.52" + } + }, + { + "id":"58e6174e-fd44-427b-a4b9-9c9e2a8c242c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T07:52:10.418Z", + "completed":"2016-03-19T07:52:10.418Z", + "new_balance":"7984.84", + "value":"-4.29" + } + }, + { + "id":"e3cea88a-255e-4571-8ef9-1a0aecf2696b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T15:04:33.448Z", + "completed":"2016-03-19T15:04:33.448Z", + "new_balance":"7978.52", + "value":"-6.32" + } + }, + { + "id":"093e9548-08ed-4845-96e8-28e088d60687", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T18:17:12.691Z", + "completed":"2016-03-19T18:17:12.691Z", + "new_balance":"7974.37", + "value":"-4.15" + } + }, + { + "id":"1830f4ce-5d86-4118-81c1-e69bb310d504", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T14:24:12.895Z", + "completed":"2016-03-20T14:24:12.895Z", + "new_balance":"7967.41", + "value":"-6.96" + } + }, + { + "id":"56450c00-475e-445e-a88d-ddc1b9447edb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T22:27:13.179Z", + "completed":"2016-03-20T22:27:13.179Z", + "new_balance":"7962.25", + "value":"-5.16" + } + }, + { + "id":"21639e89-c814-441c-8466-dd92a988fcb7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T11:13:36.445Z", + "completed":"2016-03-21T11:13:36.445Z", + "new_balance":"7961.66", + "value":"-0.59" + } + }, + { + "id":"d1aa1712-c357-4a7d-ac2e-24edce365d12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T19:13:34.430Z", + "completed":"2016-03-21T19:13:34.430Z", + "new_balance":"7960.90", + "value":"-0.76" + } + }, + { + "id":"6602ca2f-cac0-46a4-93da-c1f653f5336c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T11:21:43.002Z", + "completed":"2016-03-23T11:21:43.002Z", + "new_balance":"7959.99", + "value":"-0.91" + } + }, + { + "id":"e79dc971-fecb-43e9-83f7-40626cfd66c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T15:34:41.125Z", + "completed":"2016-03-23T15:34:41.125Z", + "new_balance":"7955.38", + "value":"-4.61" + } + }, + { + "id":"2f7a090a-f2bf-4ead-b6b9-874fef53790e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T12:26:21.725Z", + "completed":"2016-03-24T12:26:21.725Z", + "new_balance":"7951.83", + "value":"-3.55" + } + }, + { + "id":"0e6cf457-c1de-41ca-97eb-0e71a84929b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T03:34:13.123Z", + "completed":"2016-03-25T03:34:13.123Z", + "new_balance":"7950.52", + "value":"-1.31" + } + }, + { + "id":"1fe08df4-5654-43c9-9025-74ba3172644f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T11:31:04.241Z", + "completed":"2016-03-25T11:31:04.241Z", + "new_balance":"7947.46", + "value":"-3.06" + } + }, + { + "id":"968c48e8-44a8-40e4-91fc-7ddbf7c013b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T21:53:55.337Z", + "completed":"2016-03-27T21:53:55.337Z", + "new_balance":"7919.96", + "value":"-27.50" + } + }, + { + "id":"0d94282b-a9c9-4aad-b33b-f0af0e9a61ff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T16:32:02.217Z", + "completed":"2016-03-28T16:32:02.217Z", + "new_balance":"7917.22", + "value":"-2.74" + } + }, + { + "id":"6184e84f-3330-4ed9-8fa7-05baa0e51f2e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T02:23:56.824Z", + "completed":"2016-04-01T02:23:56.824Z", + "new_balance":"7858.99", + "value":"-58.23" + } + }, + { + "id":"75e0b803-5b18-4cc3-ac9c-f1f767e8384a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T08:19:32.949Z", + "completed":"2016-04-01T08:19:32.949Z", + "new_balance":"7856.67", + "value":"-2.32" + } + }, + { + "id":"736c07be-5c5e-4999-821f-345268b7163e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T18:46:34.517Z", + "completed":"2016-04-01T18:46:34.517Z", + "new_balance":"7841.42", + "value":"-15.25" + } + }, + { + "id":"efb55b10-ff2b-47e4-8b9b-003ed09f0a6e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T22:12:07.380Z", + "completed":"2016-04-01T22:12:07.380Z", + "new_balance":"7836.27", + "value":"-5.15" + } + }, + { + "id":"7419839d-c130-4baa-b919-53318982554a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T00:23:03.006Z", + "completed":"2016-04-02T00:23:03.006Z", + "new_balance":"7826.58", + "value":"-9.69" + } + }, + { + "id":"d60339e0-82a6-4e92-8740-0e4482d063b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T10:59:42.020Z", + "completed":"2016-04-02T10:59:42.020Z", + "new_balance":"7819.48", + "value":"-7.10" + } + }, + { + "id":"aaf88047-6847-4b14-80a7-5229142fde5f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:12:54.559Z", + "completed":"2016-04-03T02:12:54.559Z", + "new_balance":"7827.42", + "value":"7.94" + } + }, + { + "id":"f0469249-fd36-405d-a65c-198fbb38ffa1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T03:29:53.136Z", + "completed":"2016-04-03T03:29:53.136Z", + "new_balance":"7824.51", + "value":"-2.91" + } + }, + { + "id":"4627b1f1-0f36-4679-9485-b8f2e6920184", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T04:59:21.070Z", + "completed":"2016-04-03T04:59:21.070Z", + "new_balance":"7836.85", + "value":"12.34" + } + }, + { + "id":"0e5a36c1-42f2-4a1a-861c-0bdad86e2afb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:02:56.657Z", + "completed":"2016-04-03T08:02:56.657Z", + "new_balance":"7833.07", + "value":"-3.78" + } + }, + { + "id":"f10c1d58-6767-44f2-800c-85296e1f61cd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:14:40.971Z", + "completed":"2016-04-03T19:14:40.971Z", + "new_balance":"7829.29", + "value":"-3.78" + } + }, + { + "id":"1d50d406-3b27-46e4-84bc-01f06ab1eca3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T03:49:06.173Z", + "completed":"2016-04-04T03:49:06.173Z", + "new_balance":"7822.10", + "value":"-7.19" + } + }, + { + "id":"34cccd32-1fb4-4500-a19d-c1da0a1d5c5a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T15:59:55.396Z", + "completed":"2016-04-05T15:59:55.396Z", + "new_balance":"7819.42", + "value":"-2.68" + } + }, + { + "id":"8d05dd23-e4e3-402e-ac9f-6ae7d212b114", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T21:47:35.990Z", + "completed":"2016-04-05T21:47:35.990Z", + "new_balance":"7818.96", + "value":"-0.46" + } + }, + { + "id":"34ce46ab-10da-4b00-82e3-d3dd89445b12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T07:49:08.788Z", + "completed":"2016-04-07T07:49:08.788Z", + "new_balance":"7815.74", + "value":"-3.22" + } + }, + { + "id":"15c165ba-af6e-4165-9948-beeaa1f6fb4a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T20:48:32.491Z", + "completed":"2016-04-07T20:48:32.491Z", + "new_balance":"7814.21", + "value":"-1.53" + } + }, + { + "id":"1e170ecd-0e07-4a65-b8ee-192f7b6224fa", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T10:28:59.989Z", + "completed":"2016-04-08T10:28:59.989Z", + "new_balance":"7813.31", + "value":"-0.90" + } + }, + { + "id":"2c064590-09e5-4ccf-baba-900252202342", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T03:17:08.113Z", + "completed":"2016-04-09T03:17:08.113Z", + "new_balance":"7811.20", + "value":"-2.11" + } + }, + { + "id":"ff04cc5b-fa94-4df1-8fec-f6e51c3d431c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T09:42:40.405Z", + "completed":"2016-04-09T09:42:40.405Z", + "new_balance":"7810.76", + "value":"-0.44" + } + }, + { + "id":"54c34610-2008-42f4-8536-ef36bd3d7268", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T13:39:59.305Z", + "completed":"2016-04-09T13:39:59.305Z", + "new_balance":"7783.26", + "value":"-27.50" + } + }, + { + "id":"95ba799b-5db6-4789-9d30-6f79349edae6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T00:25:12.667Z", + "completed":"2016-04-10T00:25:12.667Z", + "new_balance":"7778.78", + "value":"-4.48" + } + }, + { + "id":"913a5185-ca81-4e9e-86c7-128a7831c2e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T06:30:17.618Z", + "completed":"2016-04-17T06:30:17.618Z", + "new_balance":"7777.67", + "value":"-1.11" + } + }, + { + "id":"64fb9613-0869-47d7-acd3-ebe9e092eeab", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T17:51:21.140Z", + "completed":"2016-04-18T17:51:21.140Z", + "new_balance":"7774.86", + "value":"-2.81" + } + }, + { + "id":"3707bae3-e4ff-4c3f-80a0-d40520d30478", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T21:22:54.109Z", + "completed":"2016-04-25T21:22:54.109Z", + "new_balance":"7769.46", + "value":"-5.40" + } + }, + { + "id":"f8005793-1fe3-4a45-9820-9af979d98b38", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T14:27:25.278Z", + "completed":"2016-04-26T14:27:25.278Z", + "new_balance":"7763.64", + "value":"-5.82" + } + }, + { + "id":"f39af54c-4952-4cc0-971f-b9ec21b3e04f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T22:35:59.329Z", + "completed":"2016-04-26T22:35:59.329Z", + "new_balance":"7763.20", + "value":"-0.44" + } + }, + { + "id":"23386970-b29b-40d7-8148-0e685ed36234", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T00:55:34.948Z", + "completed":"2016-05-02T00:55:34.948Z", + "new_balance":"7747.95", + "value":"-15.25" + } + }, + { + "id":"7c9b7875-536d-41f6-8bde-845b10824af3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T03:04:12.522Z", + "completed":"2016-05-02T03:04:12.522Z", + "new_balance":"7740.85", + "value":"-7.10" + } + }, + { + "id":"cc5d50c2-ca9b-4ac4-810c-a3ec562d4629", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T05:17:21.749Z", + "completed":"2016-05-02T05:17:21.749Z", + "new_balance":"7923.55", + "value":"182.70" + } + }, + { + "id":"08642f89-9ff2-42e3-a704-13a42bcbf20f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T10:52:19.100Z", + "completed":"2016-05-02T10:52:19.100Z", + "new_balance":"7865.32", + "value":"-58.23" + } + }, + { + "id":"8aa944d9-2e9a-4b0d-98e8-eee2e305779b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T13:43:17.186Z", + "completed":"2016-05-02T13:43:17.186Z", + "new_balance":"7861.88", + "value":"-3.44" + } + }, + { + "id":"530f1d67-8799-461f-b224-c1cc46926c4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T20:17:44.785Z", + "completed":"2016-05-02T20:17:44.785Z", + "new_balance":"7859.56", + "value":"-2.32" + } + }, + { + "id":"22bf5eed-816b-494c-8383-8225a3ad3d1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T20:30:23.173Z", + "completed":"2016-05-02T20:30:23.173Z", + "new_balance":"7858.41", + "value":"-1.15" + } + }, + { + "id":"d5c5c4a4-dbe5-4c03-ace8-d76c4c4588f3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T23:14:06.998Z", + "completed":"2016-05-02T23:14:06.998Z", + "new_balance":"7853.26", + "value":"-5.15" + } + }, + { + "id":"46b66c72-3c0d-4300-8a58-ac4f9d89ff5e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T16:05:47.708Z", + "completed":"2016-05-03T16:05:47.708Z", + "new_balance":"7851.16", + "value":"-2.10" + } + }, + { + "id":"7efb14e1-5a6a-4d19-bf0c-b5592e1dfee7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T23:08:48.805Z", + "completed":"2016-05-03T23:08:48.805Z", + "new_balance":"7848.66", + "value":"-2.50" + } + }, + { + "id":"baea8f74-418b-46ae-9045-4b77318afd82", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T19:59:31.566Z", + "completed":"2016-05-04T19:59:31.566Z", + "new_balance":"7846.26", + "value":"-2.40" + } + }, + { + "id":"157e16dc-91ee-4146-88d0-c4e6f3c88236", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T20:52:01.799Z", + "completed":"2016-05-04T20:52:01.799Z", + "new_balance":"7842.93", + "value":"-3.33" + } + }, + { + "id":"29beca00-8757-424b-8ed9-a34e420a5286", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T11:10:38.561Z", + "completed":"2016-05-05T11:10:38.561Z", + "new_balance":"7835.74", + "value":"-7.19" + } + }, + { + "id":"5b48f01e-502a-4cf5-b6bd-41ba353fdc1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T03:38:22.778Z", + "completed":"2016-05-07T03:38:22.778Z", + "new_balance":"7835.26", + "value":"-0.48" + } + }, + { + "id":"6e9ddead-69be-4413-bd39-7134b022e34e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T12:10:17.919Z", + "completed":"2016-05-07T12:10:17.919Z", + "new_balance":"7832.23", + "value":"-3.03" + } + }, + { + "id":"dce2f85d-bbd4-4fee-b615-57ea2119af6b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T11:54:00.727Z", + "completed":"2016-05-12T11:54:00.727Z", + "new_balance":"7829.78", + "value":"-2.45" + } + }, + { + "id":"a4b06233-89e2-4a8a-8a99-34ae0adbf561", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T17:41:01.695Z", + "completed":"2016-05-12T17:41:01.695Z", + "new_balance":"7826.64", + "value":"-3.14" + } + }, + { + "id":"4f3de982-c155-42c0-9594-fa89e609e9d5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T17:09:40.862Z", + "completed":"2016-05-14T17:09:40.862Z", + "new_balance":"7823.16", + "value":"-3.48" + } + }, + { + "id":"0cbf6fc2-1c57-4610-97ce-ab872beecd85", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T16:22:46.661Z", + "completed":"2016-05-16T16:22:46.661Z", + "new_balance":"7822.69", + "value":"-0.47" + } + }, + { + "id":"f55a2439-d692-44b7-8352-d088c890ef9b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T09:41:26.584Z", + "completed":"2016-05-18T09:41:26.584Z", + "new_balance":"7821.92", + "value":"-0.77" + } + }, + { + "id":"ede52688-7c16-4011-a922-ef866f8af825", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T20:53:04.632Z", + "completed":"2016-05-20T20:53:04.632Z", + "new_balance":"7826.00", + "value":"4.08" + } + }, + { + "id":"e452df76-44a6-45a1-8ac6-83dee6527b4e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T04:36:41.710Z", + "completed":"2016-05-21T04:36:41.710Z", + "new_balance":"7821.88", + "value":"-4.12" + } + }, + { + "id":"846974dc-e1c6-460e-b8a4-67b097403813", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T07:21:56.945Z", + "completed":"2016-05-21T07:21:56.945Z", + "new_balance":"7815.45", + "value":"-6.43" + } + }, + { + "id":"d5347c2c-db6c-4dce-a4df-1fea34f97d21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:16.480Z", + "completed":"2016-05-27T06:27:16.480Z", + "new_balance":"7812.90", + "value":"-2.55" + } + }, + { + "id":"fd0d4ae6-4a04-4518-99e5-ebb2c03a5920", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T08:11:32.298Z", + "completed":"2016-05-27T08:11:32.298Z", + "new_balance":"7809.96", + "value":"-2.94" + } + }, + { + "id":"af9d1957-9f5a-40f4-a12d-d95464501b4a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T00:58:28.867Z", + "completed":"2016-06-01T00:58:28.867Z", + "new_balance":"7751.73", + "value":"-58.23" + } + }, + { + "id":"5cef8a29-4b08-4209-b354-51646c92bc7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T02:54:14.784Z", + "completed":"2016-06-01T02:54:14.784Z", + "new_balance":"7934.43", + "value":"182.70" + } + }, + { + "id":"ce9e1fba-e701-4e45-934a-f43795a6f90f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T05:51:32.970Z", + "completed":"2016-06-01T05:51:32.970Z", + "new_balance":"7932.11", + "value":"-2.32" + } + }, + { + "id":"59ab8aa5-a3e8-4a00-a34e-e24fab613924", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T14:43:59.671Z", + "completed":"2016-06-01T14:43:59.671Z", + "new_balance":"7928.67", + "value":"-3.44" + } + }, + { + "id":"0e93529b-2f20-4631-85e8-62434add86cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T16:38:06.287Z", + "completed":"2016-06-01T16:38:06.287Z", + "new_balance":"7913.42", + "value":"-15.25" + } + }, + { + "id":"49724337-7626-4ccd-8f39-25d0b8c82347", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T17:42:10.569Z", + "completed":"2016-06-01T17:42:10.569Z", + "new_balance":"7908.27", + "value":"-5.15" + } + }, + { + "id":"68221512-9ad3-4fc5-8269-e2af281748bc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T12:02:38.216Z", + "completed":"2016-06-04T12:02:38.216Z", + "new_balance":"7901.17", + "value":"-7.10" + } + }, + { + "id":"84fe5004-ecd3-49ea-b1f3-986762d0b59e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T17:34:24.818Z", + "completed":"2016-06-04T17:34:24.818Z", + "new_balance":"7889.21", + "value":"-11.96" + } + }, + { + "id":"3fa55aa5-39d0-49ce-8c1d-20187a7b0836", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:26:32.109Z", + "completed":"2016-06-11T11:26:32.109Z", + "new_balance":"7885.91", + "value":"-3.30" + } + }, + { + "id":"76a7621d-3221-4c8c-9dd2-56a9edd0fd79", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T02:05:28.952Z", + "completed":"2016-06-12T02:05:28.952Z", + "new_balance":"7884.66", + "value":"-1.25" + } + }, + { + "id":"5d360259-df27-4562-88fa-515ed250cb72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T12:59:21.202Z", + "completed":"2016-06-13T12:59:21.202Z", + "new_balance":"7877.36", + "value":"-7.30" + } + }, + { + "id":"9cae4892-16ff-478c-9ba1-e046b99502e7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T13:46:18.661Z", + "completed":"2016-06-13T13:46:18.661Z", + "new_balance":"7876.60", + "value":"-0.76" + } + }, + { + "id":"754d9932-14d3-45bb-b2ad-8e1cb234e706", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:05:48.891Z", + "completed":"2016-06-16T17:05:48.891Z", + "new_balance":"7872.56", + "value":"-4.04" + } + }, + { + "id":"f1a60792-a7ea-4b87-9708-6c76c1b5efb9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T02:33:31.225Z", + "completed":"2016-06-17T02:33:31.225Z", + "new_balance":"7865.26", + "value":"-7.30" + } + }, + { + "id":"dbd287f8-941b-453c-9a11-4937af675f3d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T23:58:42.252Z", + "completed":"2016-06-17T23:58:42.252Z", + "new_balance":"7864.86", + "value":"-0.40" + } + }, + { + "id":"d5ef5000-6fb7-4f3e-98c9-74c913ee7f12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T07:20:31.042Z", + "completed":"2016-06-18T07:20:31.042Z", + "new_balance":"7859.59", + "value":"-5.27" + } + }, + { + "id":"95cde4d3-daea-4a25-9ec6-16575df9fc6a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T06:03:22.732Z", + "completed":"2016-06-19T06:03:22.732Z", + "new_balance":"7855.32", + "value":"-4.27" + } + }, + { + "id":"7ea5b2cf-70d7-4841-8110-1f17eb123d45", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T19:28:54.420Z", + "completed":"2016-06-19T19:28:54.420Z", + "new_balance":"7850.05", + "value":"-5.27" + } + }, + { + "id":"1cd7e6ec-d994-4b22-b646-68433bca998d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T00:05:49.001Z", + "completed":"2016-06-21T00:05:49.001Z", + "new_balance":"7849.51", + "value":"-0.54" + } + }, + { + "id":"b9fedf18-cbb9-407b-a81a-aeb069794c89", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T12:43:21.414Z", + "completed":"2016-06-21T12:43:21.414Z", + "new_balance":"7843.19", + "value":"-6.32" + } + }, + { + "id":"b77e5914-8bbf-4a00-92a8-bb20da02e327", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T07:03:59.997Z", + "completed":"2016-06-23T07:03:59.997Z", + "new_balance":"7842.42", + "value":"-0.77" + } + }, + { + "id":"6b7567c2-b9ed-4314-afb7-b23fc631bd21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T20:16:18.598Z", + "completed":"2016-06-23T20:16:18.598Z", + "new_balance":"7840.17", + "value":"-2.25" + } + }, + { + "id":"8ad1e1d2-1212-41ec-b50c-67fd492fe64e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T11:50:34.352Z", + "completed":"2016-06-24T11:50:34.352Z", + "new_balance":"7839.12", + "value":"-1.05" + } + }, + { + "id":"fe631050-5395-4f90-a4b2-5985db051f8f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T15:51:10.531Z", + "completed":"2016-06-24T15:51:10.531Z", + "new_balance":"7834.86", + "value":"-4.26" + } + }, + { + "id":"40b4a0cb-d35d-453d-9385-a1afbcfdd12a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:12:20.326Z", + "completed":"2016-06-28T06:12:20.326Z", + "new_balance":"7834.34", + "value":"-0.52" + } + }, + { + "id":"069c36fa-db74-4af4-aeb0-a129440f6535", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T09:36:25.931Z", + "completed":"2016-06-28T09:36:25.931Z", + "new_balance":"7833.82", + "value":"-0.52" + } + }, + { + "id":"0445066b-8811-42c1-b767-6a2ba8b52707", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T13:05:45.981Z", + "completed":"2016-06-28T13:05:45.981Z", + "new_balance":"7829.00", + "value":"-4.82" + } + }, + { + "id":"afa50d16-ae6c-46ff-b3db-3a242f7faef4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T15:09:48.971Z", + "completed":"2016-06-28T15:09:48.971Z", + "new_balance":"7819.21", + "value":"-9.79" + } + }, + { + "id":"f78fd436-f1f6-43da-8f0a-a65b2695cb71", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T14:50:32.664Z", + "completed":"2016-06-29T14:50:32.664Z", + "new_balance":"7814.92", + "value":"-4.29" + } + }, + { + "id":"79202517-0c0e-4d7a-8db8-74a7044c9af0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T15:33:50.249Z", + "completed":"2016-06-29T15:33:50.249Z", + "new_balance":"7808.60", + "value":"-6.32" + } + }, + { + "id":"18bf5c75-5051-40ae-ae4f-944b0c0d9641", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T16:29:15.913Z", + "completed":"2016-06-29T16:29:15.913Z", + "new_balance":"7803.44", + "value":"-5.16" + } + }, + { + "id":"37d04b49-16b5-4f87-b13e-89034b747d63", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T19:47:07.401Z", + "completed":"2016-06-29T19:47:07.401Z", + "new_balance":"7799.29", + "value":"-4.15" + } + }, + { + "id":"da6199c7-4634-4d56-97f6-9f052c7f2986", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T20:12:57.819Z", + "completed":"2016-06-29T20:12:57.819Z", + "new_balance":"7798.53", + "value":"-0.76" + } + }, + { + "id":"21d885c5-a612-4fc7-8160-3e3ca8ade952", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:25:23.714Z", + "completed":"2016-06-29T23:25:23.714Z", + "new_balance":"7791.57", + "value":"-6.96" + } + }, + { + "id":"adb56cde-ada6-4e55-9a1f-9a14976681ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T06:54:40.364Z", + "completed":"2016-06-30T06:54:40.364Z", + "new_balance":"7790.66", + "value":"-0.91" + } + }, + { + "id":"6b65e34e-1b25-447e-9647-46f2ccec9824", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T15:17:08.328Z", + "completed":"2016-06-30T15:17:08.328Z", + "new_balance":"7787.11", + "value":"-3.55" + } + }, + { + "id":"ec6ad25a-6bc2-4b16-bc9e-0c86ac42b4bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T17:46:51.693Z", + "completed":"2016-06-30T17:46:51.693Z", + "new_balance":"7786.52", + "value":"-0.59" + } + }, + { + "id":"c89a5404-585f-438b-ad88-9db449e9ba21", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T17:52:49.073Z", + "completed":"2016-06-30T17:52:49.073Z", + "new_balance":"7781.91", + "value":"-4.61" + } + }, + { + "id":"eaac7adb-0dbf-4a9f-82d3-01c9c55df0b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T02:02:08.757Z", + "completed":"2016-07-01T02:02:08.757Z", + "new_balance":"7779.17", + "value":"-2.74" + } + }, + { + "id":"1e4839f9-48e4-4b0e-9ac7-fcc0250fade0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T06:29:50.489Z", + "completed":"2016-07-01T06:29:50.489Z", + "new_balance":"7775.73", + "value":"-3.44" + } + }, + { + "id":"6866f1d1-f48c-4829-a9a2-dd705fde71e9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T10:17:13.188Z", + "completed":"2016-07-01T10:17:13.188Z", + "new_balance":"7748.23", + "value":"-27.50" + } + }, + { + "id":"de4c9fdb-ab41-4f48-ae73-ff2f390727d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T14:48:15.104Z", + "completed":"2016-07-01T14:48:15.104Z", + "new_balance":"7745.17", + "value":"-3.06" + } + }, + { + "id":"19e68676-2148-4dd6-83bb-fa76400a8184", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T16:27:19.905Z", + "completed":"2016-07-01T16:27:19.905Z", + "new_balance":"7740.02", + "value":"-5.15" + } + }, + { + "id":"26f43f61-9e21-4ec1-b46e-31920a0c0a59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T18:25:20.865Z", + "completed":"2016-07-01T18:25:20.865Z", + "new_balance":"7681.79", + "value":"-58.23" + } + }, + { + "id":"e404ba1d-4cc7-4088-a5c5-37d8c97dffe1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T18:53:14.095Z", + "completed":"2016-07-01T18:53:14.095Z", + "new_balance":"7666.54", + "value":"-15.25" + } + }, + { + "id":"1142890a-4b2a-4a99-a780-284a4a3e8e76", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:07:57.390Z", + "completed":"2016-07-01T21:07:57.390Z", + "new_balance":"7663.10", + "value":"-3.44" + } + }, + { + "id":"9a334423-652c-4761-8853-a1b6e15fe995", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T21:12:56.520Z", + "completed":"2016-07-01T21:12:56.520Z", + "new_balance":"7660.78", + "value":"-2.32" + } + }, + { + "id":"c79bba1f-03b7-4d04-a832-2d01f45bf304", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T22:23:48.445Z", + "completed":"2016-07-01T22:23:48.445Z", + "new_balance":"7659.47", + "value":"-1.31" + } + }, + { + "id":"708448a7-d798-4ad2-9ffb-ce168be14aa7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T05:26:46.803Z", + "completed":"2016-07-02T05:26:46.803Z", + "new_balance":"7652.37", + "value":"-7.10" + } + }, + { + "id":"cea993ea-5340-438a-9894-34fdde768a75", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T19:45:07.977Z", + "completed":"2016-07-03T19:45:07.977Z", + "new_balance":"7641.90", + "value":"-10.47" + } + }, + { + "id":"c2be0ee6-b503-4181-93c1-d76e55812159", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T01:49:33.026Z", + "completed":"2016-07-04T01:49:33.026Z", + "new_balance":"7640.12", + "value":"-1.78" + } + }, + { + "id":"f6f19595-6268-4d33-83f7-6fff61e7c5e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:09:19.315Z", + "completed":"2016-07-05T15:09:19.315Z", + "new_balance":"7630.48", + "value":"-9.64" + } + }, + { + "id":"ae158e59-e8b3-4d37-93fd-dedce8d82b23", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T23:33:29.164Z", + "completed":"2016-07-05T23:33:29.164Z", + "new_balance":"7623.29", + "value":"-7.19" + } + }, + { + "id":"120d8379-2870-4c36-9e8d-cc82675ff38d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T18:17:22.346Z", + "completed":"2016-07-06T18:17:22.346Z", + "new_balance":"7622.83", + "value":"-0.46" + } + }, + { + "id":"50d7b9b9-b690-408d-a7af-3cf6cfab1842", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T14:11:09.161Z", + "completed":"2016-07-11T14:11:09.161Z", + "new_balance":"7620.15", + "value":"-2.68" + } + }, + { + "id":"9c7d7b71-ec56-45ad-abfe-f27d47489321", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T07:11:36.537Z", + "completed":"2016-07-12T07:11:36.537Z", + "new_balance":"7616.93", + "value":"-3.22" + } + }, + { + "id":"69f6eef3-b968-4858-9cfb-dc17242dc259", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T18:00:06.619Z", + "completed":"2016-07-14T18:00:06.619Z", + "new_balance":"7615.40", + "value":"-1.53" + } + }, + { + "id":"63da4655-e534-413e-ad5f-370f35633fd3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T00:56:52.124Z", + "completed":"2016-07-16T00:56:52.124Z", + "new_balance":"7614.50", + "value":"-0.90" + } + }, + { + "id":"e5191867-ddf2-4348-bb85-33bb32fffef4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T05:52:40.996Z", + "completed":"2016-07-18T05:52:40.996Z", + "new_balance":"7612.39", + "value":"-2.11" + } + }, + { + "id":"27da2b6b-5063-412d-a865-1a8385081a59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T09:24:11.502Z", + "completed":"2016-07-20T09:24:11.502Z", + "new_balance":"7611.95", + "value":"-0.44" + } + }, + { + "id":"cd5dc281-e5f8-4341-863b-5008712f3a7d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T21:18:22.279Z", + "completed":"2016-07-20T21:18:22.279Z", + "new_balance":"7584.45", + "value":"-27.50" + } + }, + { + "id":"fc0fb70d-1652-4a35-b50c-5550a223b9e8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T05:39:54.632Z", + "completed":"2016-07-24T05:39:54.632Z", + "new_balance":"7583.34", + "value":"-1.11" + } + }, + { + "id":"13c028bd-209b-492b-99f2-f729200351dd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T17:38:30.450Z", + "completed":"2016-07-24T17:38:30.450Z", + "new_balance":"7578.86", + "value":"-4.48" + } + }, + { + "id":"48e2dfa0-c6ae-418d-b6d9-93a06b014e00", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T02:59:13.265Z", + "completed":"2016-07-25T02:59:13.265Z", + "new_balance":"7573.46", + "value":"-5.40" + } + }, + { + "id":"09963b53-0563-445a-802e-81777a8de911", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T07:59:40.014Z", + "completed":"2016-07-25T07:59:40.014Z", + "new_balance":"7570.65", + "value":"-2.81" + } + }, + { + "id":"55c00925-8aad-4c90-87da-493ef013f160", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T20:25:34.031Z", + "completed":"2016-07-26T20:25:34.031Z", + "new_balance":"7564.83", + "value":"-5.82" + } + }, + { + "id":"51443538-3bbf-4972-8c82-0735791bbe8b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T19:54:02.591Z", + "completed":"2016-07-27T19:54:02.591Z", + "new_balance":"7564.39", + "value":"-0.44" + } + }, + { + "id":"b49d48db-b15e-4a86-aa4c-9362827af88b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T06:13:46.664Z", + "completed":"2016-08-01T06:13:46.664Z", + "new_balance":"7562.07", + "value":"-2.32" + } + }, + { + "id":"cf845d8c-8d1b-496f-ae2d-386eb5bce4ab", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T08:50:01.929Z", + "completed":"2016-08-01T08:50:01.929Z", + "new_balance":"7744.77", + "value":"182.70" + } + }, + { + "id":"3994f07b-171f-4e7b-abf3-b933f733c14a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T09:11:55.434Z", + "completed":"2016-08-01T09:11:55.434Z", + "new_balance":"7739.62", + "value":"-5.15" + } + }, + { + "id":"82a6533f-456c-416a-9cb7-e360c0902056", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T09:38:43.284Z", + "completed":"2016-08-01T09:38:43.284Z", + "new_balance":"7724.37", + "value":"-15.25" + } + }, + { + "id":"c0c848f4-a5b0-4bb6-a973-303121d718b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T13:06:14.266Z", + "completed":"2016-08-01T13:06:14.266Z", + "new_balance":"7666.14", + "value":"-58.23" + } + }, + { + "id":"6194233d-db5d-463d-b78a-6915ba3e692e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T21:27:34.975Z", + "completed":"2016-08-01T21:27:34.975Z", + "new_balance":"7662.70", + "value":"-3.44" + } + }, + { + "id":"273770e0-cdd2-4897-bcef-b1c3881c8cee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T21:14:55.113Z", + "completed":"2016-08-02T21:14:55.113Z", + "new_balance":"7655.60", + "value":"-7.10" + } + }, + { + "id":"3412e9fe-6338-4c7e-b9cd-5c6e5ea7b411", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T19:08:02.368Z", + "completed":"2016-08-03T19:08:02.368Z", + "new_balance":"7655.14", + "value":"-0.46" + } + }, + { + "id":"e6c70a93-7086-46d1-8cc6-44b99d97cd5a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T21:30:11.221Z", + "completed":"2016-08-04T21:30:11.221Z", + "new_balance":"7652.22", + "value":"-2.92" + } + }, + { + "id":"5cfbf55d-4a7e-4181-b4e2-336bcf02788b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T12:13:10.908Z", + "completed":"2016-08-07T12:13:10.908Z", + "new_balance":"7649.72", + "value":"-2.50" + } + }, + { + "id":"78022670-5fc6-49f2-b913-c94505b1308e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T18:46:36.948Z", + "completed":"2016-08-09T18:46:36.948Z", + "new_balance":"7646.39", + "value":"-3.33" + } + }, + { + "id":"c1347768-34bd-431f-ad40-9841b6449fd8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T23:05:50.523Z", + "completed":"2016-08-09T23:05:50.523Z", + "new_balance":"7643.99", + "value":"-2.40" + } + }, + { + "id":"ea224af5-af3a-43a5-87ee-0d5b9e0181ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T12:50:28.706Z", + "completed":"2016-08-10T12:50:28.706Z", + "new_balance":"7636.80", + "value":"-7.19" + } + }, + { + "id":"43a67b93-46bb-4b75-8da3-2a47c735171e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T10:01:17.842Z", + "completed":"2016-08-14T10:01:17.842Z", + "new_balance":"7636.32", + "value":"-0.48" + } + }, + { + "id":"6ed38f19-1c70-4550-ad9b-c2017bf28773", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T07:44:13.923Z", + "completed":"2016-08-15T07:44:13.923Z", + "new_balance":"7633.29", + "value":"-3.03" + } + }, + { + "id":"e8420723-1e37-45d3-bec1-59e2dd1ca4a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T10:47:53.696Z", + "completed":"2016-08-15T10:47:53.696Z", + "new_balance":"7630.07", + "value":"-3.22" + } + }, + { + "id":"5582b6cc-6de2-44fc-aeef-c8c79ae17d51", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T12:41:55.898Z", + "completed":"2016-08-16T12:41:55.898Z", + "new_balance":"7626.93", + "value":"-3.14" + } + }, + { + "id":"0763971f-7c46-4365-b38e-54a317bd1d50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T07:17:03.621Z", + "completed":"2016-08-17T07:17:03.621Z", + "new_balance":"7623.45", + "value":"-3.48" + } + }, + { + "id":"46756f88-bef0-4124-8ab8-d2c3f8ef7cc4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T03:19:04.627Z", + "completed":"2016-08-20T03:19:04.627Z", + "new_balance":"7622.68", + "value":"-0.77" + } + }, + { + "id":"e4ff833b-235d-42d1-9b8d-da950058ff01", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T16:13:30.294Z", + "completed":"2016-08-20T16:13:30.294Z", + "new_balance":"7622.21", + "value":"-0.47" + } + }, + { + "id":"ba27b449-ef61-4a51-911d-deb8c3fa3501", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T10:49:03.394Z", + "completed":"2016-08-22T10:49:03.394Z", + "new_balance":"7626.29", + "value":"4.08" + } + }, + { + "id":"cf979252-39fc-49f3-b621-1de3218eb9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T03:15:30.802Z", + "completed":"2016-08-23T03:15:30.802Z", + "new_balance":"7619.86", + "value":"-6.43" + } + }, + { + "id":"968a60b5-19e6-4741-b69c-b7b098b23136", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T18:08:45.178Z", + "completed":"2016-08-23T18:08:45.178Z", + "new_balance":"7615.74", + "value":"-4.12" + } + }, + { + "id":"71a92cc8-7e4d-47c7-af41-731fada4d10e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T13:42:04.002Z", + "completed":"2016-08-28T13:42:04.002Z", + "new_balance":"7613.19", + "value":"-2.55" + } + }, + { + "id":"55f6616c-18f5-418a-a247-65985e4d0b54", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T14:03:09.382Z", + "completed":"2016-08-28T14:03:09.382Z", + "new_balance":"7610.25", + "value":"-2.94" + } + }, + { + "id":"06ad096a-a3bc-4eb6-a170-f5525988f3fc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T09:12:23.910Z", + "completed":"2016-09-01T09:12:23.910Z", + "new_balance":"7605.10", + "value":"-5.15" + } + }, + { + "id":"d361dc9b-da46-4da1-bdab-78954c23e39e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T17:37:01.878Z", + "completed":"2016-09-01T17:37:01.878Z", + "new_balance":"7601.66", + "value":"-3.44" + } + }, + { + "id":"15d33177-ba46-44ae-ae68-81e68805c546", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T17:41:20.189Z", + "completed":"2016-09-01T17:41:20.189Z", + "new_balance":"7784.36", + "value":"182.70" + } + }, + { + "id":"ed398ca7-e1bc-4b02-8d41-6423cba3078f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T21:50:04.948Z", + "completed":"2016-09-01T21:50:04.948Z", + "new_balance":"7726.13", + "value":"-58.23" + } + }, + { + "id":"71f446cf-dce3-4312-be0b-727bdc60cb52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T23:02:17.475Z", + "completed":"2016-09-01T23:02:17.475Z", + "new_balance":"7710.88", + "value":"-15.25" + } + }, + { + "id":"04d3efd9-1d05-4289-b35c-423bd51241ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T23:07:40.495Z", + "completed":"2016-09-01T23:07:40.495Z", + "new_balance":"7708.56", + "value":"-2.32" + } + }, + { + "id":"dbc2fac6-30aa-4ea9-94af-882390702186", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T10:30:43.366Z", + "completed":"2016-09-02T10:30:43.366Z", + "new_balance":"7701.46", + "value":"-7.10" + } + }, + { + "id":"c0b8fd67-cb08-47e0-a129-9dbed0ab98e2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T05:55:22.618Z", + "completed":"2016-09-04T05:55:22.618Z", + "new_balance":"7698.16", + "value":"-3.30" + } + }, + { + "id":"dd9814a5-e6cc-4c7e-86d4-560926ffae7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T11:07:03.552Z", + "completed":"2016-09-04T11:07:03.552Z", + "new_balance":"7696.91", + "value":"-1.25" + } + }, + { + "id":"5e337e1a-5f34-498f-8742-2fc9c56dc91e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T12:05:16.893Z", + "completed":"2016-09-04T12:05:16.893Z", + "new_balance":"7689.61", + "value":"-7.30" + } + }, + { + "id":"0cddff3a-2e69-4f15-bced-fd6c65c30e68", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T22:38:11.149Z", + "completed":"2016-09-04T22:38:11.149Z", + "new_balance":"7688.85", + "value":"-0.76" + } + }, + { + "id":"c08e43f7-cbad-4f23-8c17-78c3a4a8b3fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:47:45.499Z", + "completed":"2016-09-05T06:47:45.499Z", + "new_balance":"7688.45", + "value":"-0.40" + } + }, + { + "id":"ee4b4cca-43cd-434f-877a-7d3a33ac27ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T22:24:53.725Z", + "completed":"2016-09-05T22:24:53.725Z", + "new_balance":"7684.41", + "value":"-4.04" + } + }, + { + "id":"48a53e43-2bae-41b9-bc95-222d9c2f743e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T01:21:05.658Z", + "completed":"2016-09-06T01:21:05.658Z", + "new_balance":"7677.11", + "value":"-7.30" + } + }, + { + "id":"fe2b7b9a-e2bd-4d25-b034-4ff153312dbe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T22:49:41.011Z", + "completed":"2016-09-06T22:49:41.011Z", + "new_balance":"7671.84", + "value":"-5.27" + } + }, + { + "id":"5600306e-6491-4629-b8d0-7ce811055177", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T10:24:53.184Z", + "completed":"2016-09-08T10:24:53.184Z", + "new_balance":"7667.57", + "value":"-4.27" + } + }, + { + "id":"b1dd9ad4-3848-43a0-981b-e435890f1765", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T21:32:55.312Z", + "completed":"2016-09-08T21:32:55.312Z", + "new_balance":"7662.30", + "value":"-5.27" + } + }, + { + "id":"71b4ae4b-917a-4d37-9c5e-e76d24e61596", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T06:45:51.525Z", + "completed":"2016-09-10T06:45:51.525Z", + "new_balance":"7655.98", + "value":"-6.32" + } + }, + { + "id":"d8b81fe4-f2c1-450e-acf0-20bc036ceace", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T23:08:45.187Z", + "completed":"2016-09-10T23:08:45.187Z", + "new_balance":"7655.44", + "value":"-0.54" + } + }, + { + "id":"8da8efc0-a605-498b-85c2-735deeda4aa0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T15:34:00.615Z", + "completed":"2016-09-11T15:34:00.615Z", + "new_balance":"7654.67", + "value":"-0.77" + } + }, + { + "id":"bfb340d3-90c6-45ce-8d78-95559e1f062e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T05:04:27.617Z", + "completed":"2016-09-12T05:04:27.617Z", + "new_balance":"7652.42", + "value":"-2.25" + } + }, + { + "id":"eeb6d34c-abf0-4e1a-b9df-a717dea0723c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T05:45:15.099Z", + "completed":"2016-09-12T05:45:15.099Z", + "new_balance":"7651.37", + "value":"-1.05" + } + }, + { + "id":"e1f906fc-58a3-4ccb-9aef-231999118d8e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:58:20.132Z", + "completed":"2016-09-13T16:58:20.132Z", + "new_balance":"7647.11", + "value":"-4.26" + } + }, + { + "id":"7e116801-94e3-45a8-9d63-daa934663e3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T20:40:03.750Z", + "completed":"2016-09-16T20:40:03.750Z", + "new_balance":"7646.59", + "value":"-0.52" + } + }, + { + "id":"62422b11-cec4-4fe2-ab25-4bd5398c8060", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T01:07:53.242Z", + "completed":"2016-09-17T01:07:53.242Z", + "new_balance":"7641.77", + "value":"-4.82" + } + }, + { + "id":"463c5e9e-9270-468a-b23c-a1b112cca6a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T02:22:09.104Z", + "completed":"2016-09-17T02:22:09.104Z", + "new_balance":"7631.98", + "value":"-9.79" + } + }, + { + "id":"18ff01ea-a7af-4379-a203-ba28b827beed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T15:50:32.607Z", + "completed":"2016-09-18T15:50:32.607Z", + "new_balance":"7631.46", + "value":"-0.52" + } + }, + { + "id":"f45b4184-8427-486f-b57a-1054e9edd842", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T10:34:29.630Z", + "completed":"2016-09-19T10:34:29.630Z", + "new_balance":"7625.14", + "value":"-6.32" + } + }, + { + "id":"648ed131-9c59-494c-8992-426a94fe483b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T10:46:50.660Z", + "completed":"2016-09-19T10:46:50.660Z", + "new_balance":"7620.99", + "value":"-4.15" + } + }, + { + "id":"546b4799-4b1a-4a7e-943a-d98d5605f312", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T20:22:53.499Z", + "completed":"2016-09-19T20:22:53.499Z", + "new_balance":"7616.70", + "value":"-4.29" + } + }, + { + "id":"1b31b2ad-9736-4968-a73e-16092d485fe4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T08:37:23.921Z", + "completed":"2016-09-20T08:37:23.921Z", + "new_balance":"7611.54", + "value":"-5.16" + } + }, + { + "id":"4e6f52f7-c49e-457b-8010-e4cd59ce5cfc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T22:54:24.296Z", + "completed":"2016-09-20T22:54:24.296Z", + "new_balance":"7604.58", + "value":"-6.96" + } + }, + { + "id":"6cf107f1-d3d9-4b53-bd8e-38263041969c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T05:01:19.017Z", + "completed":"2016-09-21T05:01:19.017Z", + "new_balance":"7603.99", + "value":"-0.59" + } + }, + { + "id":"bfbf93b8-076c-4211-b1e6-303282802056", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T06:49:52.264Z", + "completed":"2016-09-21T06:49:52.264Z", + "new_balance":"7603.23", + "value":"-0.76" + } + }, + { + "id":"88b66e4c-854e-4054-ad27-53641ea30904", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T07:41:18.837Z", + "completed":"2016-09-23T07:41:18.837Z", + "new_balance":"7602.32", + "value":"-0.91" + } + }, + { + "id":"d32eef75-5985-4c9d-8cfb-c568f7df32a4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T09:20:04.115Z", + "completed":"2016-09-23T09:20:04.115Z", + "new_balance":"7597.71", + "value":"-4.61" + } + }, + { + "id":"41c50041-5df3-4f67-abee-b5c3c4f50a30", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T23:20:05.276Z", + "completed":"2016-09-24T23:20:05.276Z", + "new_balance":"7594.16", + "value":"-3.55" + } + }, + { + "id":"e30b1f18-5bba-4e45-8b3e-38ea55db5abf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T02:47:41.370Z", + "completed":"2016-09-25T02:47:41.370Z", + "new_balance":"7592.85", + "value":"-1.31" + } + }, + { + "id":"4965864f-7915-4f74-8595-663cd3edd6e8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T10:29:06.798Z", + "completed":"2016-09-25T10:29:06.798Z", + "new_balance":"7589.79", + "value":"-3.06" + } + }, + { + "id":"69781df9-fb46-4d83-bf69-0f0375039aff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T07:28:28.112Z", + "completed":"2016-09-27T07:28:28.112Z", + "new_balance":"7562.29", + "value":"-27.50" + } + }, + { + "id":"a477bed1-0882-44e3-9cab-2cfa75bcfcd9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T21:22:53.521Z", + "completed":"2016-09-29T21:22:53.521Z", + "new_balance":"7559.55", + "value":"-2.74" + } + }, + { + "id":"d73cf687-7840-4dfd-80c3-70216cf2b8cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T04:15:01.909Z", + "completed":"2016-10-01T04:15:01.909Z", + "new_balance":"7544.30", + "value":"-15.25" + } + }, + { + "id":"fcf93d71-ccf8-4400-91c9-41403f6b0210", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T11:26:22.317Z", + "completed":"2016-10-01T11:26:22.317Z", + "new_balance":"7539.15", + "value":"-5.15" + } + }, + { + "id":"13485383-796c-48d6-8262-3e6910e7f4a7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T11:27:46.238Z", + "completed":"2016-10-01T11:27:46.238Z", + "new_balance":"7480.92", + "value":"-58.23" + } + }, + { + "id":"ce3883f5-73a0-4543-afb4-87dce1add819", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T20:30:48.137Z", + "completed":"2016-10-01T20:30:48.137Z", + "new_balance":"7478.60", + "value":"-2.32" + } + }, + { + "id":"0d10ecbf-7815-451e-8f18-546862aaa7e1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T12:07:42.475Z", + "completed":"2016-10-02T12:07:42.475Z", + "new_balance":"7468.91", + "value":"-9.69" + } + }, + { + "id":"b0059dd4-7c65-4159-890c-d630637426a6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T15:01:23.105Z", + "completed":"2016-10-02T15:01:23.105Z", + "new_balance":"7461.81", + "value":"-7.10" + } + }, + { + "id":"cadc265b-9966-48aa-a926-c47a04840181", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T00:04:58.893Z", + "completed":"2016-10-03T00:04:58.893Z", + "new_balance":"7458.90", + "value":"-2.91" + } + }, + { + "id":"6c92bf92-4c47-44f2-add4-3bbf3e5a1301", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T00:23:12.014Z", + "completed":"2016-10-03T00:23:12.014Z", + "new_balance":"7445.80", + "value":"-13.10" + } + }, + { + "id":"548d67ca-1c9f-4c16-a43a-21efd7e069f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T06:54:03.616Z", + "completed":"2016-10-03T06:54:03.616Z", + "new_balance":"7388.99", + "value":"-56.81" + } + }, + { + "id":"a95824e0-8d6d-4cf1-acb8-601c4dd51196", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:59:55.884Z", + "completed":"2016-10-03T08:59:55.884Z", + "new_balance":"7385.21", + "value":"-3.78" + } + }, + { + "id":"04d7854d-67d1-4731-9585-947579f9560a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T16:11:05.921Z", + "completed":"2016-10-03T16:11:05.921Z", + "new_balance":"7357.71", + "value":"-27.50" + } + }, + { + "id":"94f6b5dc-5269-4f1c-8491-518b2d48277d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T02:43:00.722Z", + "completed":"2016-10-04T02:43:00.722Z", + "new_balance":"7350.52", + "value":"-7.19" + } + }, + { + "id":"7cc1251e-621c-4f58-a59d-749e01211856", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:14:15.820Z", + "completed":"2016-10-05T03:14:15.820Z", + "new_balance":"7347.84", + "value":"-2.68" + } + }, + { + "id":"7e82dea2-7df9-4923-8188-4266f8135d2c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T18:29:38.012Z", + "completed":"2016-10-05T18:29:38.012Z", + "new_balance":"7347.38", + "value":"-0.46" + } + }, + { + "id":"1a0d8847-fdc0-4b6c-91ea-47fef0cdd651", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T07:11:57.767Z", + "completed":"2016-10-07T07:11:57.767Z", + "new_balance":"7344.16", + "value":"-3.22" + } + }, + { + "id":"222c3420-1692-46c9-a238-9a097d78be55", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T08:25:26.680Z", + "completed":"2016-10-07T08:25:26.680Z", + "new_balance":"7342.63", + "value":"-1.53" + } + }, + { + "id":"39a89e8d-f9c3-4bfc-a648-66cd6bf5efa6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T14:35:47.682Z", + "completed":"2016-10-08T14:35:47.682Z", + "new_balance":"7341.73", + "value":"-0.90" + } + }, + { + "id":"e27a3ae2-76b4-45bb-be3d-1387e9c2433a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T10:29:38.362Z", + "completed":"2016-10-09T10:29:38.362Z", + "new_balance":"7339.62", + "value":"-2.11" + } + }, + { + "id":"9eed99dd-b799-417a-99a4-bb009c04bfba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T20:43:26.385Z", + "completed":"2016-10-09T20:43:26.385Z", + "new_balance":"7339.18", + "value":"-0.44" + } + }, + { + "id":"5cfe1473-6b8d-4d26-bbed-eecfcd224397", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T20:45:26.863Z", + "completed":"2016-10-09T20:45:26.863Z", + "new_balance":"7311.68", + "value":"-27.50" + } + }, + { + "id":"ec77aa4d-2ae2-4b3c-9e45-988f4a37dd70", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T14:26:38.962Z", + "completed":"2016-10-10T14:26:38.962Z", + "new_balance":"7307.20", + "value":"-4.48" + } + }, + { + "id":"de6dd4ec-ef35-4876-ad6f-35bcf8b2ea41", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:50:03.559Z", + "completed":"2016-10-17T06:50:03.559Z", + "new_balance":"7306.09", + "value":"-1.11" + } + }, + { + "id":"d0cd8d6e-6d0d-4645-a6f9-1464a42dbdaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T19:03:48.811Z", + "completed":"2016-10-18T19:03:48.811Z", + "new_balance":"7303.28", + "value":"-2.81" + } + }, + { + "id":"1de540a8-fa12-41fb-8020-24e1931598da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T11:58:57.135Z", + "completed":"2016-10-25T11:58:57.135Z", + "new_balance":"7297.88", + "value":"-5.40" + } + }, + { + "id":"6728a898-f734-47bf-a5be-16c12ef596c0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T07:03:31.927Z", + "completed":"2016-10-26T07:03:31.927Z", + "new_balance":"7297.44", + "value":"-0.44" + } + }, + { + "id":"fd15886e-c032-44b9-9233-5fc993ac27cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T16:02:34.126Z", + "completed":"2016-10-26T16:02:34.126Z", + "new_balance":"7291.62", + "value":"-5.82" + } + }, + { + "id":"256cf6d9-f28c-4acf-8a65-8bb299b769ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T00:02:58.687Z", + "completed":"2016-11-02T00:02:58.687Z", + "new_balance":"7289.30", + "value":"-2.32" + } + }, + { + "id":"4e32cda3-e460-4841-83a9-f0f5dfc057a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T03:43:15.231Z", + "completed":"2016-11-02T03:43:15.231Z", + "new_balance":"7282.20", + "value":"-7.10" + } + }, + { + "id":"10507ab0-8888-474e-88b8-35adf0229072", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T10:16:02.662Z", + "completed":"2016-11-02T10:16:02.662Z", + "new_balance":"7464.90", + "value":"182.70" + } + }, + { + "id":"66efa6cc-b952-437d-bd32-dfa44bfbda0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T14:11:12.689Z", + "completed":"2016-11-02T14:11:12.689Z", + "new_balance":"7406.67", + "value":"-58.23" + } + }, + { + "id":"691e289b-5c4d-40b4-8f00-e199e4dacfec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:41:33.147Z", + "completed":"2016-11-02T14:41:33.147Z", + "new_balance":"7401.52", + "value":"-5.15" + } + }, + { + "id":"179d0276-c292-4d80-953a-7cbb41805fb6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T14:55:50.486Z", + "completed":"2016-11-02T14:55:50.486Z", + "new_balance":"7400.37", + "value":"-1.15" + } + }, + { + "id":"03978c8c-6157-43d2-8c3e-44854f9f0d45", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T23:01:51.976Z", + "completed":"2016-11-02T23:01:51.976Z", + "new_balance":"7385.12", + "value":"-15.25" + } + }, + { + "id":"f89b2451-684d-42b4-96f9-e0341a0f6f32", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T23:05:35.456Z", + "completed":"2016-11-02T23:05:35.456Z", + "new_balance":"7381.68", + "value":"-3.44" + } + }, + { + "id":"6c4471a9-67cf-49b1-a320-81b2a6f484ec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T11:36:10.660Z", + "completed":"2016-11-06T11:36:10.660Z", + "new_balance":"7379.58", + "value":"-2.10" + } + }, + { + "id":"93c581b0-af5d-4f76-96a8-982db8daee4c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T02:14:13.132Z", + "completed":"2016-11-07T02:14:13.132Z", + "new_balance":"7376.25", + "value":"-3.33" + } + }, + { + "id":"e9acd6a0-9da8-45b2-b853-600d3b9c4e10", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:09:42.138Z", + "completed":"2016-11-07T07:09:42.138Z", + "new_balance":"7373.75", + "value":"-2.50" + } + }, + { + "id":"8e976d24-e3bd-46c5-946c-320fe8120d90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T10:23:04.483Z", + "completed":"2016-11-07T10:23:04.483Z", + "new_balance":"7371.35", + "value":"-2.40" + } + }, + { + "id":"887f320f-257b-477c-aaed-33e7d0b191a8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T03:19:49.652Z", + "completed":"2016-11-09T03:19:49.652Z", + "new_balance":"7364.16", + "value":"-7.19" + } + }, + { + "id":"69769344-ce93-4b4f-b305-0a058551c243", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T04:05:08.498Z", + "completed":"2016-11-09T04:05:08.498Z", + "new_balance":"7363.68", + "value":"-0.48" + } + }, + { + "id":"6d6f5a28-9c12-489c-b673-5e112027a09c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T12:54:52.716Z", + "completed":"2016-11-12T12:54:52.716Z", + "new_balance":"7360.65", + "value":"-3.03" + } + }, + { + "id":"0c472c7a-c245-4562-841a-fa08e232ad26", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T22:49:51.276Z", + "completed":"2016-11-12T22:49:51.276Z", + "new_balance":"7358.20", + "value":"-2.45" + } + }, + { + "id":"536d484f-3fd1-44ad-b8dc-061da554bedd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T07:42:22.746Z", + "completed":"2016-11-14T07:42:22.746Z", + "new_balance":"7354.72", + "value":"-3.48" + } + }, + { + "id":"e97cdb1d-18c8-4d75-abbb-b3405d1bbac7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T10:29:55.933Z", + "completed":"2016-11-14T10:29:55.933Z", + "new_balance":"7351.58", + "value":"-3.14" + } + }, + { + "id":"7155a0ec-23d8-4234-8ba3-583cf395f0db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T17:06:57.418Z", + "completed":"2016-11-16T17:06:57.418Z", + "new_balance":"7351.11", + "value":"-0.47" + } + }, + { + "id":"e950e14b-2989-4af7-9ca0-d963f5b3edaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T10:59:48.933Z", + "completed":"2016-11-18T10:59:48.933Z", + "new_balance":"7350.34", + "value":"-0.77" + } + }, + { + "id":"9232f68f-8a38-42d0-8d07-42a103f98c68", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T00:08:26.785Z", + "completed":"2016-11-20T00:08:26.785Z", + "new_balance":"7354.42", + "value":"4.08" + } + }, + { + "id":"0f032d0c-db07-4965-9a1c-bdaf70b3c5a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T02:23:50.440Z", + "completed":"2016-11-21T02:23:50.440Z", + "new_balance":"7347.99", + "value":"-6.43" + } + }, + { + "id":"df899707-f1e4-4dea-8f08-4cdc8863d244", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T17:17:49.064Z", + "completed":"2016-11-21T17:17:49.064Z", + "new_balance":"7343.87", + "value":"-4.12" + } + }, + { + "id":"95aa1e82-22e4-406c-a900-f4c82351e156", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T09:32:17.848Z", + "completed":"2016-11-27T09:32:17.848Z", + "new_balance":"7341.32", + "value":"-2.55" + } + }, + { + "id":"aca67b3c-5b03-49d4-b293-d86cf021fe99", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T19:53:00.853Z", + "completed":"2016-11-27T19:53:00.853Z", + "new_balance":"7338.38", + "value":"-2.94" + } + }, + { + "id":"441bf241-0a7c-4e3e-8ec3-e6f6fcfabcdd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T00:35:08.586Z", + "completed":"2016-12-01T00:35:08.586Z", + "new_balance":"7336.06", + "value":"-2.32" + } + }, + { + "id":"239e5bd6-3f7d-4fb5-ad2d-68dd8b9dddf1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T01:42:11.692Z", + "completed":"2016-12-01T01:42:11.692Z", + "new_balance":"7277.83", + "value":"-58.23" + } + }, + { + "id":"544822c0-b6fd-4153-b401-719845af0192", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:54:39.334Z", + "completed":"2016-12-01T01:54:39.334Z", + "new_balance":"7274.39", + "value":"-3.44" + } + }, + { + "id":"adc9227d-334a-428a-b596-bea49e91fbde", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T12:10:37.297Z", + "completed":"2016-12-01T12:10:37.297Z", + "new_balance":"7269.24", + "value":"-5.15" + } + }, + { + "id":"18983bf6-b246-48dc-918b-d117b2e27c90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T12:41:47.204Z", + "completed":"2016-12-01T12:41:47.204Z", + "new_balance":"7253.99", + "value":"-15.25" + } + }, + { + "id":"ea3743fe-85d2-4ef5-8e08-4ee37a25f254", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T22:54:27.755Z", + "completed":"2016-12-01T22:54:27.755Z", + "new_balance":"7436.69", + "value":"182.70" + } + }, + { + "id":"eb9cfd6d-9672-4854-99c3-dae5fac21aff", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T22:46:54.908Z", + "completed":"2016-12-04T22:46:54.908Z", + "new_balance":"7429.59", + "value":"-7.10" + } + }, + { + "id":"9c60fa66-c1cc-4097-a2ae-e086120efb17", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T23:36:40.393Z", + "completed":"2016-12-04T23:36:40.393Z", + "new_balance":"7417.63", + "value":"-11.96" + } + }, + { + "id":"000bc186-57de-446c-add1-8a3e5d9099c6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T06:08:21.155Z", + "completed":"2016-12-12T06:08:21.155Z", + "new_balance":"7414.33", + "value":"-3.30" + } + }, + { + "id":"0e68da8e-f543-4a60-8eac-b8a0b7f976eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T12:36:55.678Z", + "completed":"2016-12-12T12:36:55.678Z", + "new_balance":"7413.08", + "value":"-1.25" + } + }, + { + "id":"4b7458d9-e751-4d8f-894d-e8fed828bd59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T05:46:28.168Z", + "completed":"2016-12-13T05:46:28.168Z", + "new_balance":"7405.78", + "value":"-7.30" + } + }, + { + "id":"dc7140f2-7635-4586-9aec-0548bf934017", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T18:40:44.633Z", + "completed":"2016-12-13T18:40:44.633Z", + "new_balance":"7405.02", + "value":"-0.76" + } + }, + { + "id":"2d3e56fe-c9af-467c-b518-5f0f8ee4207b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T23:11:08.325Z", + "completed":"2016-12-16T23:11:08.325Z", + "new_balance":"7400.98", + "value":"-4.04" + } + }, + { + "id":"19590733-c7c1-4076-9875-03de18176255", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T07:15:05.104Z", + "completed":"2016-12-18T07:15:05.104Z", + "new_balance":"7400.58", + "value":"-0.40" + } + }, + { + "id":"5e55208f-9171-40c0-834d-cdfaee2dd9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:40:26.578Z", + "completed":"2016-12-19T05:40:26.578Z", + "new_balance":"7395.31", + "value":"-5.27" + } + }, + { + "id":"d8af9ad1-9fff-4c11-b6a1-c698b0d016f1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T14:57:04.586Z", + "completed":"2016-12-19T14:57:04.586Z", + "new_balance":"7388.01", + "value":"-7.30" + } + }, + { + "id":"b76463c2-a63f-4311-a636-815429ac4664", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T07:48:07.835Z", + "completed":"2016-12-20T07:48:07.835Z", + "new_balance":"7383.74", + "value":"-4.27" + } + }, + { + "id":"3b75a53d-78ae-4485-a4c2-45dc6ee0581c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T06:03:35.346Z", + "completed":"2016-12-21T06:03:35.346Z", + "new_balance":"7378.47", + "value":"-5.27" + } + }, + { + "id":"fdb7e797-61c5-45d3-b8f9-da0f35f3351b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T00:13:00.807Z", + "completed":"2016-12-24T00:13:00.807Z", + "new_balance":"7374.21", + "value":"-4.26" + } + }, + { + "id":"2b1ecf2f-5131-4988-97ff-f76f035a6793", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T00:43:53.135Z", + "completed":"2016-12-24T00:43:53.135Z", + "new_balance":"7373.67", + "value":"-0.54" + } + }, + { + "id":"ec6c979a-0fab-4eec-8620-1b993a2aec7d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T07:07:21.381Z", + "completed":"2016-12-24T07:07:21.381Z", + "new_balance":"7372.90", + "value":"-0.77" + } + }, + { + "id":"f5d400d3-b72c-4f1a-92ec-59accab6e7e0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T10:19:10.011Z", + "completed":"2016-12-24T10:19:10.011Z", + "new_balance":"7371.85", + "value":"-1.05" + } + }, + { + "id":"a353bc4c-f031-4d48-aadf-dbcb7ed056c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T13:38:16.172Z", + "completed":"2016-12-24T13:38:16.172Z", + "new_balance":"7369.60", + "value":"-2.25" + } + }, + { + "id":"96aeaa0c-d338-4330-a201-85e68f12ab3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T22:52:08.288Z", + "completed":"2016-12-24T22:52:08.288Z", + "new_balance":"7363.28", + "value":"-6.32" + } + }, + { + "id":"f015bf6d-01b0-48f8-b4da-3d11c4f86d74", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T00:54:03.433Z", + "completed":"2016-12-28T00:54:03.433Z", + "new_balance":"7358.46", + "value":"-4.82" + } + }, + { + "id":"83b85d7d-5bcd-49c0-a9e7-e7e9a5210d69", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T01:38:49.852Z", + "completed":"2016-12-28T01:38:49.852Z", + "new_balance":"7357.94", + "value":"-0.52" + } + }, + { + "id":"588b5c64-4e58-4b0d-b4c9-77f37d3bbb2b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T18:40:58.268Z", + "completed":"2016-12-28T18:40:58.268Z", + "new_balance":"7348.15", + "value":"-9.79" + } + }, + { + "id":"08dff5c5-844d-4dfc-8e14-70aa89e3fb0e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T22:35:56.819Z", + "completed":"2016-12-28T22:35:56.819Z", + "new_balance":"7347.63", + "value":"-0.52" + } + }, + { + "id":"a31b589d-a8a4-4c3a-95eb-86d2611724db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T00:10:44.763Z", + "completed":"2016-12-29T00:10:44.763Z", + "new_balance":"7341.31", + "value":"-6.32" + } + }, + { + "id":"3435827e-ca50-4c88-8f71-5694b06e70db", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T00:57:57.891Z", + "completed":"2016-12-29T00:57:57.891Z", + "new_balance":"7336.15", + "value":"-5.16" + } + }, + { + "id":"859a8405-d1ac-4bc7-bb88-2c04c3d93a64", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T08:19:15.016Z", + "completed":"2016-12-29T08:19:15.016Z", + "new_balance":"7331.86", + "value":"-4.29" + } + }, + { + "id":"2cd81f52-379b-43f5-8d5b-820743fb1713", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T20:30:50.509Z", + "completed":"2016-12-29T20:30:50.509Z", + "new_balance":"7324.90", + "value":"-6.96" + } + }, + { + "id":"a57684a2-91d4-4a28-b017-079e1b806473", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T21:06:53.408Z", + "completed":"2016-12-29T21:06:53.408Z", + "new_balance":"7320.75", + "value":"-4.15" + } + }, + { + "id":"4b95f8d0-56a3-46c7-9546-dc5485b87947", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T21:33:21.357Z", + "completed":"2016-12-29T21:33:21.357Z", + "new_balance":"7319.99", + "value":"-0.76" + } + }, + { + "id":"5adae228-6c69-484b-ae75-1b0bfa618240", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T01:34:39.783Z", + "completed":"2016-12-30T01:34:39.783Z", + "new_balance":"7319.08", + "value":"-0.91" + } + }, + { + "id":"826cbefe-49a1-4367-bd31-95085fddc9a4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T11:13:09.413Z", + "completed":"2016-12-30T11:13:09.413Z", + "new_balance":"7314.47", + "value":"-4.61" + } + }, + { + "id":"771f6395-3ab8-4534-ab5d-3a00f9e47bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T15:23:54.190Z", + "completed":"2016-12-30T15:23:54.190Z", + "new_balance":"7310.92", + "value":"-3.55" + } + }, + { + "id":"1c754f01-a9d7-452e-84ad-1be44de9b3fb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T17:55:32.841Z", + "completed":"2016-12-30T17:55:32.841Z", + "new_balance":"7310.33", + "value":"-0.59" + } + }, + { + "id":"cfa63cd5-1f96-4609-97f6-425cf95ae068", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T06:34:12.340Z", + "completed":"2016-12-31T06:34:12.340Z", + "new_balance":"7307.59", + "value":"-2.74" + } + }, + { + "id":"ce30d4a2-d196-4244-b34d-411f5041d99b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T14:48:39.827Z", + "completed":"2016-12-31T14:48:39.827Z", + "new_balance":"7280.09", + "value":"-27.50" + } + }, + { + "id":"bab2c45d-d39d-4818-beeb-cae25b6af491", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T16:06:57.305Z", + "completed":"2016-12-31T16:06:57.305Z", + "new_balance":"7277.03", + "value":"-3.06" + } + }, + { + "id":"353429eb-2375-4dde-a9f1-7792f21fdbbc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T22:43:36.738Z", + "completed":"2016-12-31T22:43:36.738Z", + "new_balance":"7275.72", + "value":"-1.31" + } + }, + { + "id":"078de3eb-b179-46c1-80a9-b25e14f34cc3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T06:21:28.074Z", + "completed":"2017-01-01T06:21:28.074Z", + "new_balance":"7260.47", + "value":"-15.25" + } + }, + { + "id":"88c92f86-7173-41f9-b101-b5e6ee01173f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T10:32:20.789Z", + "completed":"2017-01-01T10:32:20.789Z", + "new_balance":"7257.03", + "value":"-3.44" + } + }, + { + "id":"6ce7d943-227d-4ac5-94b5-39a2724951f7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T19:03:03.321Z", + "completed":"2017-01-01T19:03:03.321Z", + "new_balance":"7254.71", + "value":"-2.32" + } + }, + { + "id":"2293b624-6786-48cc-b34e-22d923f20507", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T19:13:17.969Z", + "completed":"2017-01-01T19:13:17.969Z", + "new_balance":"7249.56", + "value":"-5.15" + } + }, + { + "id":"57b927c7-4294-4154-9f7a-f28aac29fa3b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:02:58.420Z", + "completed":"2017-01-01T21:02:58.420Z", + "new_balance":"7246.12", + "value":"-3.44" + } + }, + { + "id":"66a31c2b-f634-4d51-b057-a2066f5a407b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T21:41:23.743Z", + "completed":"2017-01-01T21:41:23.743Z", + "new_balance":"7187.89", + "value":"-58.23" + } + }, + { + "id":"b53091c0-6804-4d15-ab8b-51e03ffac01e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T03:44:46.527Z", + "completed":"2017-01-02T03:44:46.527Z", + "new_balance":"7178.20", + "value":"-9.69" + } + }, + { + "id":"2fa5171f-091f-4ba0-b948-817fb6a0258f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T12:02:02.823Z", + "completed":"2017-01-02T12:02:02.823Z", + "new_balance":"7171.10", + "value":"-7.10" + } + }, + { + "id":"7939a5ec-e09e-4fd0-bbbe-8f2ea30df64f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T12:52:27.487Z", + "completed":"2017-01-04T12:52:27.487Z", + "new_balance":"7168.19", + "value":"-2.91" + } + }, + { + "id":"5c5282be-0bf3-4182-848d-beb2bd748926", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T17:40:41.766Z", + "completed":"2017-01-04T17:40:41.766Z", + "new_balance":"7164.41", + "value":"-3.78" + } + }, + { + "id":"a7575776-a8a7-405c-a3e4-2c8e9da29a88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T11:50:39.240Z", + "completed":"2017-01-07T11:50:39.240Z", + "new_balance":"7157.22", + "value":"-7.19" + } + }, + { + "id":"d3306d4c-a8db-44eb-a9bf-52ea069c5a36", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T07:38:47.407Z", + "completed":"2017-01-09T07:38:47.407Z", + "new_balance":"7156.76", + "value":"-0.46" + } + }, + { + "id":"89f8b108-0bf3-4386-8fd0-649fe8071cb9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T09:54:41.681Z", + "completed":"2017-01-10T09:54:41.681Z", + "new_balance":"7154.08", + "value":"-2.68" + } + }, + { + "id":"c588254a-aa48-4417-8f10-ec711a630c88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T00:48:34.528Z", + "completed":"2017-01-12T00:48:34.528Z", + "new_balance":"7150.86", + "value":"-3.22" + } + }, + { + "id":"2c9c4756-6cbd-4db7-b370-1f6eb7b69bef", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T16:12:58.866Z", + "completed":"2017-01-15T16:12:58.866Z", + "new_balance":"7149.33", + "value":"-1.53" + } + }, + { + "id":"93cd51f0-67fa-41a3-b8c2-999a1f91eeca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T23:19:48.712Z", + "completed":"2017-01-15T23:19:48.712Z", + "new_balance":"7148.43", + "value":"-0.90" + } + }, + { + "id":"9adc4038-3b3e-493f-98c2-2a90d94ce1bc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T01:01:21.035Z", + "completed":"2017-01-17T01:01:21.035Z", + "new_balance":"7146.32", + "value":"-2.11" + } + }, + { + "id":"b2fd340f-fcb1-4a68-b87d-98bcaf5fab8a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T14:11:10.910Z", + "completed":"2017-01-19T14:11:10.910Z", + "new_balance":"7118.82", + "value":"-27.50" + } + }, + { + "id":"3b44dc5f-6675-465a-9dc1-c3feef19e0b9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T16:34:07.225Z", + "completed":"2017-01-20T16:34:07.225Z", + "new_balance":"7118.38", + "value":"-0.44" + } + }, + { + "id":"dcd2233a-7d1f-48bc-9678-8d264ba2f7ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T20:59:34.112Z", + "completed":"2017-01-22T20:59:34.112Z", + "new_balance":"7113.90", + "value":"-4.48" + } + }, + { + "id":"49736e32-38e4-437e-b651-f2ea31a822f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T23:59:15.130Z", + "completed":"2017-01-22T23:59:15.130Z", + "new_balance":"7112.79", + "value":"-1.11" + } + }, + { + "id":"10038142-8cdf-4577-81ad-c21814076adf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T13:28:18.079Z", + "completed":"2017-01-24T13:28:18.079Z", + "new_balance":"7109.98", + "value":"-2.81" + } + }, + { + "id":"d5623972-d810-4ad3-8e3e-6e968d16d482", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T04:42:32.043Z", + "completed":"2017-01-25T04:42:32.043Z", + "new_balance":"7109.54", + "value":"-0.44" + } + }, + { + "id":"f588423e-8b08-45da-bdce-588be4a5d9ba", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T22:39:50.120Z", + "completed":"2017-01-25T22:39:50.120Z", + "new_balance":"7104.14", + "value":"-5.40" + } + }, + { + "id":"86cb9314-f731-4894-b042-27defa516124", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T18:46:40.936Z", + "completed":"2017-01-26T18:46:40.936Z", + "new_balance":"7098.32", + "value":"-5.82" + } + }, + { + "id":"ef8d72c4-d2b2-46aa-9aea-ff9ea5683785", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T02:13:58.816Z", + "completed":"2017-02-01T02:13:58.816Z", + "new_balance":"7094.88", + "value":"-3.44" + } + }, + { + "id":"ded4e167-df25-47a3-b389-6c1f42c090f5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T10:40:01.494Z", + "completed":"2017-02-01T10:40:01.494Z", + "new_balance":"7036.65", + "value":"-58.23" + } + }, + { + "id":"f8711618-6d66-44a0-82e1-befdb2883d61", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:16:03.868Z", + "completed":"2017-02-01T15:16:03.868Z", + "new_balance":"7219.35", + "value":"182.70" + } + }, + { + "id":"d3ee0c89-4db4-4b77-a61b-c71cfc77dbbf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T17:11:18.552Z", + "completed":"2017-02-01T17:11:18.552Z", + "new_balance":"7217.03", + "value":"-2.32" + } + }, + { + "id":"05648091-489d-4e4c-b1ac-78e2185e2fe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T19:34:06.013Z", + "completed":"2017-02-01T19:34:06.013Z", + "new_balance":"7201.78", + "value":"-15.25" + } + }, + { + "id":"0a7c1266-5c8a-43d8-a089-e84fc586e5a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T20:57:15.473Z", + "completed":"2017-02-01T20:57:15.473Z", + "new_balance":"7196.63", + "value":"-5.15" + } + }, + { + "id":"ac723c03-41e4-4020-ab6e-03a4df862894", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T11:41:59.276Z", + "completed":"2017-02-02T11:41:59.276Z", + "new_balance":"7195.48", + "value":"-1.15" + } + }, + { + "id":"5607cd1c-9b60-42b3-bffc-e5e5428885f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T12:30:27.290Z", + "completed":"2017-02-02T12:30:27.290Z", + "new_balance":"7188.38", + "value":"-7.10" + } + }, + { + "id":"7b574c8a-4885-4afe-b8fb-c783d44d3c02", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T17:02:59.555Z", + "completed":"2017-02-02T17:02:59.555Z", + "new_balance":"7186.28", + "value":"-2.10" + } + }, + { + "id":"f2aa69da-bec9-413a-8b5b-26667e8dea7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T11:58:35.247Z", + "completed":"2017-02-03T11:58:35.247Z", + "new_balance":"7183.88", + "value":"-2.40" + } + }, + { + "id":"f6706dea-be30-4d05-a787-a8db2398f29c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T12:10:08.550Z", + "completed":"2017-02-03T12:10:08.550Z", + "new_balance":"7181.38", + "value":"-2.50" + } + }, + { + "id":"b688875d-574b-444e-bb1b-11aae3cba4cf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T17:22:45.314Z", + "completed":"2017-02-03T17:22:45.314Z", + "new_balance":"7178.05", + "value":"-3.33" + } + }, + { + "id":"80eab2a4-5254-406c-9f71-674043436e52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T20:53:01.338Z", + "completed":"2017-02-06T20:53:01.338Z", + "new_balance":"7170.86", + "value":"-7.19" + } + }, + { + "id":"ad92b63f-a5c6-4838-9bd4-07f88fd70b41", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T16:03:04.175Z", + "completed":"2017-02-08T16:03:04.175Z", + "new_balance":"7168.41", + "value":"-2.45" + } + }, + { + "id":"d054dec3-30fd-4ed9-847c-2e1efd662597", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T18:56:13.523Z", + "completed":"2017-02-08T18:56:13.523Z", + "new_balance":"7167.93", + "value":"-0.48" + } + }, + { + "id":"c090c268-df1d-4580-b701-72d3712e6627", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T20:43:21.120Z", + "completed":"2017-02-08T20:43:21.120Z", + "new_balance":"7164.90", + "value":"-3.03" + } + }, + { + "id":"5169ad71-40ff-4b8d-93e5-f6eff6306533", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T06:11:41.002Z", + "completed":"2017-02-09T06:11:41.002Z", + "new_balance":"7161.42", + "value":"-3.48" + } + }, + { + "id":"d1daaac8-033f-4c44-93de-d013c783058a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T07:26:02.794Z", + "completed":"2017-02-09T07:26:02.794Z", + "new_balance":"7158.28", + "value":"-3.14" + } + }, + { + "id":"5475d9ef-741d-45ef-a6cc-f014b4533c59", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T03:34:22.554Z", + "completed":"2017-02-12T03:34:22.554Z", + "new_balance":"7157.81", + "value":"-0.47" + } + }, + { + "id":"5a9ab683-ce91-4c4a-bbc3-b3f11362af3e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T00:08:43.694Z", + "completed":"2017-02-13T00:08:43.694Z", + "new_balance":"7161.89", + "value":"4.08" + } + }, + { + "id":"32b427a8-75f2-4f7d-9002-7350bc96a6de", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T10:46:08.638Z", + "completed":"2017-02-13T10:46:08.638Z", + "new_balance":"7155.46", + "value":"-6.43" + } + }, + { + "id":"ae1f6276-d70f-4ba2-a1dd-07c6dba03a50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T21:50:54.532Z", + "completed":"2017-02-13T21:50:54.532Z", + "new_balance":"7154.69", + "value":"-0.77" + } + }, + { + "id":"ff3f4945-020d-404e-b1dd-7b40f01f6ff0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T07:15:41.436Z", + "completed":"2017-02-14T07:15:41.436Z", + "new_balance":"7150.57", + "value":"-4.12" + } + }, + { + "id":"9ab92454-95ef-4437-9920-08d6c59943ef", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T10:51:39.897Z", + "completed":"2017-02-15T10:51:39.897Z", + "new_balance":"7148.02", + "value":"-2.55" + } + }, + { + "id":"01cece56-59ba-440a-8074-990e1d1d0f9e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T18:02:15.258Z", + "completed":"2017-02-28T18:02:15.258Z", + "new_balance":"7145.08", + "value":"-2.94" + } + }, + { + "id":"e4fc545c-394c-4763-b385-6a60a874a83d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T01:19:49.255Z", + "completed":"2017-03-01T01:19:49.255Z", + "new_balance":"7142.76", + "value":"-2.32" + } + }, + { + "id":"fdbecd97-13f8-49e1-8949-b195513e96d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T08:46:03.196Z", + "completed":"2017-03-01T08:46:03.196Z", + "new_balance":"7084.53", + "value":"-58.23" + } + }, + { + "id":"1d434c0f-a6d0-4f4d-acfe-466e1409e030", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T09:54:14.329Z", + "completed":"2017-03-01T09:54:14.329Z", + "new_balance":"7081.09", + "value":"-3.44" + } + }, + { + "id":"e2a54a89-989b-4135-839e-b2254f09b41a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T14:18:33.296Z", + "completed":"2017-03-01T14:18:33.296Z", + "new_balance":"7075.94", + "value":"-5.15" + } + }, + { + "id":"5828a9ea-88ca-47f3-a807-7ea3ba00ff32", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T14:39:30.483Z", + "completed":"2017-03-01T14:39:30.483Z", + "new_balance":"7258.64", + "value":"182.70" + } + }, + { + "id":"1a7249d7-7f15-452d-ad4b-2d49966882e6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T23:37:08.954Z", + "completed":"2017-03-01T23:37:08.954Z", + "new_balance":"7243.39", + "value":"-15.25" + } + }, + { + "id":"d91697c6-a4ad-4e74-a3f7-2ec7b8828ac6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T09:30:29.044Z", + "completed":"2017-03-02T09:30:29.044Z", + "new_balance":"7236.29", + "value":"-7.10" + } + }, + { + "id":"fa005273-346f-41f6-9ba3-9b4d951d76b8", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T03:28:20.703Z", + "completed":"2017-03-04T03:28:20.703Z", + "new_balance":"7235.53", + "value":"-0.76" + } + }, + { + "id":"049f764c-31ae-443d-aa5d-379dbaf95741", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T05:37:17.815Z", + "completed":"2017-03-04T05:37:17.815Z", + "new_balance":"7234.28", + "value":"-1.25" + } + }, + { + "id":"ea989a00-32e3-439b-aac0-73e6337c7d72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T11:13:25.129Z", + "completed":"2017-03-04T11:13:25.129Z", + "new_balance":"7230.98", + "value":"-3.30" + } + }, + { + "id":"0184f146-4999-4001-b74e-1cc945f9b490", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:41:38.583Z", + "completed":"2017-03-04T23:41:38.583Z", + "new_balance":"7223.68", + "value":"-7.30" + } + }, + { + "id":"24652dfd-8fd6-4ec2-ab53-54ebf93664eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T08:39:04.377Z", + "completed":"2017-03-05T08:39:04.377Z", + "new_balance":"7219.64", + "value":"-4.04" + } + }, + { + "id":"5a71140b-f1a8-4234-b6da-cc4def127082", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T12:01:30.180Z", + "completed":"2017-03-05T12:01:30.180Z", + "new_balance":"7219.24", + "value":"-0.40" + } + }, + { + "id":"27d20915-96d8-4dd8-8c8e-a2543fe41c7b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T02:43:28.667Z", + "completed":"2017-03-06T02:43:28.667Z", + "new_balance":"7213.97", + "value":"-5.27" + } + }, + { + "id":"6f351476-1542-4cb0-9c8c-f2ae4ace980b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:53:40.186Z", + "completed":"2017-03-06T03:53:40.186Z", + "new_balance":"7206.67", + "value":"-7.30" + } + }, + { + "id":"97c869a2-1397-490f-873b-4d660707f44b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T16:07:43.023Z", + "completed":"2017-03-07T16:07:43.023Z", + "new_balance":"7202.40", + "value":"-4.27" + } + }, + { + "id":"61679b7c-f7da-43c4-a161-6fa8c26e0f13", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T07:02:05.350Z", + "completed":"2017-03-08T07:02:05.350Z", + "new_balance":"7197.13", + "value":"-5.27" + } + }, + { + "id":"e997163d-da4d-4b6e-a759-21f1a8ab89c2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T00:58:54.835Z", + "completed":"2017-03-09T00:58:54.835Z", + "new_balance":"7196.59", + "value":"-0.54" + } + }, + { + "id":"bce04cc2-d2f6-4e28-9cd2-d82ef2ba62bd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T01:33:37.746Z", + "completed":"2017-03-10T01:33:37.746Z", + "new_balance":"7190.27", + "value":"-6.32" + } + }, + { + "id":"735a4af5-a454-4023-8c82-7d8ff6b34e52", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:08:05.391Z", + "completed":"2017-03-11T16:08:05.391Z", + "new_balance":"7189.50", + "value":"-0.77" + } + }, + { + "id":"72428666-57f3-4816-8129-9bf87e397fe2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T11:11:26.470Z", + "completed":"2017-03-12T11:11:26.470Z", + "new_balance":"7187.25", + "value":"-2.25" + } + }, + { + "id":"c5762b6d-a251-4a05-9f43-58ed5c61e0c0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T23:34:03.931Z", + "completed":"2017-03-12T23:34:03.931Z", + "new_balance":"7186.20", + "value":"-1.05" + } + }, + { + "id":"0e64b9f2-b4d7-42fb-9f22-b734cb581b1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T12:47:32.963Z", + "completed":"2017-03-13T12:47:32.963Z", + "new_balance":"7181.94", + "value":"-4.26" + } + }, + { + "id":"0f21a27e-5915-4239-8074-555036c5de5d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T19:56:51.211Z", + "completed":"2017-03-14T19:56:51.211Z", + "new_balance":"7181.42", + "value":"-0.52" + } + }, + { + "id":"7e13ceb1-d2e3-4fc4-898c-6d6a068ec04a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T04:49:42.509Z", + "completed":"2017-03-16T04:49:42.509Z", + "new_balance":"7171.63", + "value":"-9.79" + } + }, + { + "id":"35a7954b-655e-47a7-b9b0-ae15a804edf4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T19:30:53.937Z", + "completed":"2017-03-16T19:30:53.937Z", + "new_balance":"7166.81", + "value":"-4.82" + } + }, + { + "id":"5f262a26-fab5-4506-bfac-f7e2047f990f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T10:00:38.639Z", + "completed":"2017-03-18T10:00:38.639Z", + "new_balance":"7166.29", + "value":"-0.52" + } + }, + { + "id":"1221e646-e390-4c07-a968-47bca6f28230", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T00:19:12.492Z", + "completed":"2017-03-19T00:19:12.492Z", + "new_balance":"7159.97", + "value":"-6.32" + } + }, + { + "id":"e029d462-544f-4a42-b620-a619c0e1f226", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:25:31.405Z", + "completed":"2017-03-19T14:25:31.405Z", + "new_balance":"7155.82", + "value":"-4.15" + } + }, + { + "id":"11681196-f630-4797-be39-5c9497dcc4e1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T21:21:12.049Z", + "completed":"2017-03-19T21:21:12.049Z", + "new_balance":"7151.53", + "value":"-4.29" + } + }, + { + "id":"d879e5bf-bd12-49c5-adb0-d47184f5c3d3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T03:15:12.730Z", + "completed":"2017-03-20T03:15:12.730Z", + "new_balance":"7144.57", + "value":"-6.96" + } + }, + { + "id":"58b76fb7-1c59-4ddc-8b1d-f4c59a2b5369", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T15:04:45.417Z", + "completed":"2017-03-20T15:04:45.417Z", + "new_balance":"7139.41", + "value":"-5.16" + } + }, + { + "id":"9386e55c-2498-492e-9610-8d8b34a5fc4d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:16:10.105Z", + "completed":"2017-03-21T07:16:10.105Z", + "new_balance":"7138.82", + "value":"-0.59" + } + }, + { + "id":"ce37cb6f-57ff-41ce-beac-2c0ebd7eb13a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T14:42:50.811Z", + "completed":"2017-03-21T14:42:50.811Z", + "new_balance":"7138.06", + "value":"-0.76" + } + }, + { + "id":"8e48b38d-8f3e-42df-a432-cbcbb390e91d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:18:28.359Z", + "completed":"2017-03-23T04:18:28.359Z", + "new_balance":"7133.45", + "value":"-4.61" + } + }, + { + "id":"d2b4b824-40bf-4a09-8368-2b7000585fa5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T11:33:51.823Z", + "completed":"2017-03-23T11:33:51.823Z", + "new_balance":"7132.54", + "value":"-0.91" + } + }, + { + "id":"53b48417-552d-419e-ab7d-3c01dca452c2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T14:56:15.781Z", + "completed":"2017-03-24T14:56:15.781Z", + "new_balance":"7128.99", + "value":"-3.55" + } + }, + { + "id":"fbfd233f-6a47-4529-81df-eb32f07b5d9f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T12:28:32.627Z", + "completed":"2017-03-25T12:28:32.627Z", + "new_balance":"7127.68", + "value":"-1.31" + } + }, + { + "id":"af41ef97-e2b3-4b6f-aaee-fe402bd40046", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T23:56:24.717Z", + "completed":"2017-03-25T23:56:24.717Z", + "new_balance":"7124.62", + "value":"-3.06" + } + }, + { + "id":"8fa1b75b-8419-4fe8-b22c-c8a3320ba03e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T14:46:52.962Z", + "completed":"2017-03-27T14:46:52.962Z", + "new_balance":"7097.12", + "value":"-27.50" + } + }, + { + "id":"1127fe80-79f3-4a7f-a6d3-6c5a7f305002", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T07:33:07.680Z", + "completed":"2017-03-28T07:33:07.680Z", + "new_balance":"7094.38", + "value":"-2.74" + } + }, + { + "id":"5830cc09-7208-42d8-bada-ff6a168cbedb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T00:33:16.731Z", + "completed":"2017-04-01T00:33:16.731Z", + "new_balance":"7089.23", + "value":"-5.15" + } + }, + { + "id":"fab077bd-3810-41cd-9c7f-e0d2f921d96a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T01:10:05.109Z", + "completed":"2017-04-01T01:10:05.109Z", + "new_balance":"7086.91", + "value":"-2.32" + } + }, + { + "id":"d404d1ff-4370-4447-b32f-ab7c594d7e0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T02:55:04.749Z", + "completed":"2017-04-01T02:55:04.749Z", + "new_balance":"7028.68", + "value":"-58.23" + } + }, + { + "id":"a05445bc-b1e0-4abf-97ba-68e15f8eb658", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T07:02:37.931Z", + "completed":"2017-04-01T07:02:37.931Z", + "new_balance":"7013.43", + "value":"-15.25" + } + }, + { + "id":"e46b1781-f30c-4b96-90b3-64510f48311c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T16:30:52.705Z", + "completed":"2017-04-02T16:30:52.705Z", + "new_balance":"7006.33", + "value":"-7.10" + } + }, + { + "id":"6b1f0631-3d62-42ec-b67d-36f19a50748c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T19:33:19.025Z", + "completed":"2017-04-02T19:33:19.025Z", + "new_balance":"6996.64", + "value":"-9.69" + } + }, + { + "id":"df35bf09-b86c-4782-ae23-d2a823227a6f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T01:59:32.779Z", + "completed":"2017-04-03T01:59:32.779Z", + "new_balance":"7004.58", + "value":"7.94" + } + }, + { + "id":"33f1fff4-bc69-489d-95d5-065a41598fe3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:02:26.476Z", + "completed":"2017-04-03T08:02:26.476Z", + "new_balance":"7000.80", + "value":"-3.78" + } + }, + { + "id":"edd280d7-ac58-45ec-8c61-535ec9a9760c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T10:06:07.553Z", + "completed":"2017-04-03T10:06:07.553Z", + "new_balance":"6997.89", + "value":"-2.91" + } + }, + { + "id":"ffdaaef9-e86a-4b52-b369-690d3b7c5954", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T12:44:49.740Z", + "completed":"2017-04-03T12:44:49.740Z", + "new_balance":"6994.11", + "value":"-3.78" + } + }, + { + "id":"83bd58ef-6e40-4ba3-8fc0-34631e60c469", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:55:22.809Z", + "completed":"2017-04-03T14:55:22.809Z", + "new_balance":"7006.45", + "value":"12.34" + } + }, + { + "id":"e3606919-519e-44f9-825f-a67422257a3a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T01:36:27.686Z", + "completed":"2017-04-04T01:36:27.686Z", + "new_balance":"6999.26", + "value":"-7.19" + } + }, + { + "id":"8c4a879d-2c5b-4097-9faa-dc71706ff3d7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T11:46:31.112Z", + "completed":"2017-04-05T11:46:31.112Z", + "new_balance":"6996.58", + "value":"-2.68" + } + }, + { + "id":"27b20fa6-68cb-403c-9956-253847b36ead", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T13:24:55.066Z", + "completed":"2017-04-05T13:24:55.066Z", + "new_balance":"6996.12", + "value":"-0.46" + } + }, + { + "id":"3558accb-bf72-4238-892b-09fdab019309", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T12:07:45.388Z", + "completed":"2017-04-07T12:07:45.388Z", + "new_balance":"6994.59", + "value":"-1.53" + } + }, + { + "id":"9f02d6b4-52b2-4de0-b1a7-4cc024ab0839", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T23:41:14.569Z", + "completed":"2017-04-07T23:41:14.569Z", + "new_balance":"6991.37", + "value":"-3.22" + } + }, + { + "id":"27af3f39-29ec-494f-9fbe-516a5e3a171e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T03:52:22.862Z", + "completed":"2017-04-08T03:52:22.862Z", + "new_balance":"6990.47", + "value":"-0.90" + } + }, + { + "id":"0ffd3ee3-3552-4476-bacc-54097c515aa0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T05:56:33.633Z", + "completed":"2017-04-09T05:56:33.633Z", + "new_balance":"6962.97", + "value":"-27.50" + } + }, + { + "id":"ca44c355-52fd-4477-b8b8-a970336fe71d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T07:05:46.211Z", + "completed":"2017-04-09T07:05:46.211Z", + "new_balance":"6962.53", + "value":"-0.44" + } + }, + { + "id":"efe92207-b102-426e-bf90-96e7762c50b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T12:11:20.935Z", + "completed":"2017-04-09T12:11:20.935Z", + "new_balance":"6960.42", + "value":"-2.11" + } + }, + { + "id":"00332e78-6b1d-40dd-84b0-5b0866b015ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T23:37:54.762Z", + "completed":"2017-04-10T23:37:54.762Z", + "new_balance":"6955.94", + "value":"-4.48" + } + }, + { + "id":"6427e4d3-a31d-448d-8fa3-b6984ff9202d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T21:46:58.646Z", + "completed":"2017-04-17T21:46:58.646Z", + "new_balance":"6954.83", + "value":"-1.11" + } + }, + { + "id":"feaaefd7-4927-4551-a71a-e48fd185f56f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T07:17:52.370Z", + "completed":"2017-04-18T07:17:52.370Z", + "new_balance":"6952.02", + "value":"-2.81" + } + }, + { + "id":"305c2f18-b1a6-4905-b713-e0fb153f756d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T16:37:07.651Z", + "completed":"2017-04-25T16:37:07.651Z", + "new_balance":"6946.62", + "value":"-5.40" + } + }, + { + "id":"0a6916ff-c08a-4bc5-9ecc-0e42e631d729", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T06:01:34.773Z", + "completed":"2017-04-26T06:01:34.773Z", + "new_balance":"6946.18", + "value":"-0.44" + } + }, + { + "id":"2feec103-d6e6-4ff4-9516-89ece82c0d66", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T12:20:41.328Z", + "completed":"2017-04-26T12:20:41.328Z", + "new_balance":"6940.36", + "value":"-5.82" + } + }, + { + "id":"bf9824fe-82ac-4a95-a45d-89ebbffdf7c6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T06:04:40.806Z", + "completed":"2017-05-02T06:04:40.806Z", + "new_balance":"6936.92", + "value":"-3.44" + } + }, + { + "id":"91ffee34-0eff-4c2a-a8d6-528c880761c4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T07:30:34.990Z", + "completed":"2017-05-02T07:30:34.990Z", + "new_balance":"6921.67", + "value":"-15.25" + } + }, + { + "id":"2502dc02-9a2a-4d4e-b8ae-b342b97a2d31", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T08:40:33.523Z", + "completed":"2017-05-02T08:40:33.523Z", + "new_balance":"6919.35", + "value":"-2.32" + } + }, + { + "id":"eac651bb-6c6d-4135-84d2-ec1fc0264a1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T09:08:03.555Z", + "completed":"2017-05-02T09:08:03.555Z", + "new_balance":"6912.25", + "value":"-7.10" + } + }, + { + "id":"0a535dd7-a81a-4270-b7ef-9f9356feaf5b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T09:50:47.235Z", + "completed":"2017-05-02T09:50:47.235Z", + "new_balance":"6911.10", + "value":"-1.15" + } + }, + { + "id":"30548b38-a63d-4909-919b-8a1de9956972", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:49:35.794Z", + "completed":"2017-05-02T14:49:35.794Z", + "new_balance":"6852.87", + "value":"-58.23" + } + }, + { + "id":"89f3504e-73a9-4338-90e7-5fbfb09abb2b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T18:05:55.168Z", + "completed":"2017-05-02T18:05:55.168Z", + "new_balance":"6847.72", + "value":"-5.15" + } + }, + { + "id":"7d1b98e1-3844-46fa-861c-cac38a233d93", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T23:46:30.280Z", + "completed":"2017-05-02T23:46:30.280Z", + "new_balance":"7030.42", + "value":"182.70" + } + }, + { + "id":"d09adff0-fcec-4d21-a5bd-58987c7985c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:23:17.977Z", + "completed":"2017-05-03T05:23:17.977Z", + "new_balance":"7027.92", + "value":"-2.50" + } + }, + { + "id":"58e266c0-2794-4660-a45a-eef8ba6ef8a9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T13:06:52.924Z", + "completed":"2017-05-03T13:06:52.924Z", + "new_balance":"7025.82", + "value":"-2.10" + } + }, + { + "id":"e352cc41-94b6-4a1c-a25a-3b1dafdaf587", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T01:31:24.107Z", + "completed":"2017-05-04T01:31:24.107Z", + "new_balance":"7022.49", + "value":"-3.33" + } + }, + { + "id":"bba30b06-4906-4041-b5e9-c6b28049423e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T11:57:21.662Z", + "completed":"2017-05-04T11:57:21.662Z", + "new_balance":"7020.09", + "value":"-2.40" + } + }, + { + "id":"7babe7c5-b20d-4de5-a160-bb0730715a72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T16:07:06.344Z", + "completed":"2017-05-05T16:07:06.344Z", + "new_balance":"7012.90", + "value":"-7.19" + } + }, + { + "id":"848210af-4625-42d1-991c-1b89d1337d50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T13:50:32.119Z", + "completed":"2017-05-07T13:50:32.119Z", + "new_balance":"7012.42", + "value":"-0.48" + } + }, + { + "id":"d7c85e04-aa72-477e-a002-c83ece6c7b88", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:19:22.552Z", + "completed":"2017-05-07T14:19:22.552Z", + "new_balance":"7009.39", + "value":"-3.03" + } + }, + { + "id":"8c442bf1-5431-4e65-bef4-495ac8461792", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:15:20.627Z", + "completed":"2017-05-12T21:15:20.627Z", + "new_balance":"7006.25", + "value":"-3.14" + } + }, + { + "id":"c359ca7a-f0d7-49d9-9612-582ac0d91da5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T23:48:38.795Z", + "completed":"2017-05-12T23:48:38.795Z", + "new_balance":"7003.80", + "value":"-2.45" + } + }, + { + "id":"4f3178b3-980c-4971-a807-1b17ea14f560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T09:04:14.417Z", + "completed":"2017-05-14T09:04:14.417Z", + "new_balance":"7000.32", + "value":"-3.48" + } + }, + { + "id":"073fe20f-e3c0-4f8a-88b5-2fe865f1655e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T02:25:35.597Z", + "completed":"2017-05-16T02:25:35.597Z", + "new_balance":"6999.85", + "value":"-0.47" + } + }, + { + "id":"bf0bbfcb-381d-4b1f-a1a5-ac66398a3e7f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:31:33.359Z", + "completed":"2017-05-18T18:31:33.359Z", + "new_balance":"6999.08", + "value":"-0.77" + } + }, + { + "id":"845d9443-a544-410f-a299-b61b8a7a62d3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:48:01.553Z", + "completed":"2017-05-20T06:48:01.553Z", + "new_balance":"7003.16", + "value":"4.08" + } + }, + { + "id":"1c6bf97e-2fb7-4b5a-a3f8-79b3c9af2cc5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T09:56:56.601Z", + "completed":"2017-05-21T09:56:56.601Z", + "new_balance":"6996.73", + "value":"-6.43" + } + }, + { + "id":"c99ffad5-2af4-4949-90d8-12cd2559f6f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T10:32:21.359Z", + "completed":"2017-05-21T10:32:21.359Z", + "new_balance":"6992.61", + "value":"-4.12" + } + }, + { + "id":"4a4199c1-58e2-4334-9ee8-c95322aa4b50", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T07:30:46.131Z", + "completed":"2017-05-27T07:30:46.131Z", + "new_balance":"6990.06", + "value":"-2.55" + } + }, + { + "id":"fb4074cf-c1c5-45c9-9260-2b933e7fe491", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T08:01:08.064Z", + "completed":"2017-05-27T08:01:08.064Z", + "new_balance":"6987.12", + "value":"-2.94" + } + }, + { + "id":"152762fb-01c4-47d2-9b14-c64f405a6216", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T01:11:07.206Z", + "completed":"2017-06-01T01:11:07.206Z", + "new_balance":"6928.89", + "value":"-58.23" + } + }, + { + "id":"19d4a774-c39f-41ba-a41b-693c3d843a11", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T01:48:59.324Z", + "completed":"2017-06-01T01:48:59.324Z", + "new_balance":"6926.57", + "value":"-2.32" + } + }, + { + "id":"7f039a25-3e5c-4ff6-97ae-339dc970fc34", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T07:30:00.978Z", + "completed":"2017-06-01T07:30:00.978Z", + "new_balance":"7109.27", + "value":"182.70" + } + }, + { + "id":"e2ec6ebc-40c8-42ef-a459-ba3297af369e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T10:25:47.332Z", + "completed":"2017-06-01T10:25:47.332Z", + "new_balance":"7094.02", + "value":"-15.25" + } + }, + { + "id":"373574f9-82ce-4ed4-bb6f-f67ddb2e299a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T17:11:39.374Z", + "completed":"2017-06-01T17:11:39.374Z", + "new_balance":"7090.58", + "value":"-3.44" + } + }, + { + "id":"fed063ad-c045-4ba5-a9db-6c7ab1935956", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T19:18:55.550Z", + "completed":"2017-06-01T19:18:55.550Z", + "new_balance":"7085.43", + "value":"-5.15" + } + }, + { + "id":"466f6915-eb59-498d-9f2a-0c5008d2ac89", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T03:43:14.702Z", + "completed":"2017-06-04T03:43:14.702Z", + "new_balance":"7073.47", + "value":"-11.96" + } + }, + { + "id":"f0f08ca9-0fec-411c-b8f9-8ca34e4a480e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T09:54:35.394Z", + "completed":"2017-06-04T09:54:35.394Z", + "new_balance":"7066.37", + "value":"-7.10" + } + }, + { + "id":"2184e1bd-d712-4ef0-ba52-8253b4062f95", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T14:19:36.667Z", + "completed":"2017-06-11T14:19:36.667Z", + "new_balance":"7063.07", + "value":"-3.30" + } + }, + { + "id":"58a70368-8630-4f2f-8f58-6dda143ef032", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T03:56:52.333Z", + "completed":"2017-06-12T03:56:52.333Z", + "new_balance":"7061.82", + "value":"-1.25" + } + }, + { + "id":"260e5211-9f33-4904-9a2f-020896263e7c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T05:51:44.337Z", + "completed":"2017-06-13T05:51:44.337Z", + "new_balance":"7054.52", + "value":"-7.30" + } + }, + { + "id":"eaa8bfbe-df95-4bd6-9abc-b4ab1b2fa2b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T23:38:18.970Z", + "completed":"2017-06-13T23:38:18.970Z", + "new_balance":"7053.76", + "value":"-0.76" + } + }, + { + "id":"56c4cc73-ef96-4dcf-a56c-8539d651f21a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T04:30:49.386Z", + "completed":"2017-06-16T04:30:49.386Z", + "new_balance":"7049.72", + "value":"-4.04" + } + }, + { + "id":"9adaf7e7-096f-4be5-b4ce-9d14617c4c96", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T17:02:34.818Z", + "completed":"2017-06-17T17:02:34.818Z", + "new_balance":"7049.32", + "value":"-0.40" + } + }, + { + "id":"f74e4432-78b3-41fc-a541-2a3e888b4b04", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T19:44:34.556Z", + "completed":"2017-06-17T19:44:34.556Z", + "new_balance":"7042.02", + "value":"-7.30" + } + }, + { + "id":"4ba93136-e03b-4dc5-97ff-43dfaa776a51", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T13:17:57.703Z", + "completed":"2017-06-18T13:17:57.703Z", + "new_balance":"7036.75", + "value":"-5.27" + } + }, + { + "id":"97f544f5-a941-4640-ad1f-f4a183739b6b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T07:04:09.722Z", + "completed":"2017-06-19T07:04:09.722Z", + "new_balance":"7031.48", + "value":"-5.27" + } + }, + { + "id":"c3e20d80-de04-4f1b-b270-5c1fe6820b4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T11:24:45.242Z", + "completed":"2017-06-19T11:24:45.242Z", + "new_balance":"7027.21", + "value":"-4.27" + } + }, + { + "id":"185e259d-538b-47ad-a7b4-37ea35308a6e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T02:56:38.803Z", + "completed":"2017-06-21T02:56:38.803Z", + "new_balance":"7020.89", + "value":"-6.32" + } + }, + { + "id":"c8e916aa-4775-4bc7-91bb-ba704d0e4374", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T15:21:54.588Z", + "completed":"2017-06-21T15:21:54.588Z", + "new_balance":"7020.35", + "value":"-0.54" + } + }, + { + "id":"e1c78c54-4824-47ca-93c3-4de076450c04", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T04:25:53.777Z", + "completed":"2017-06-23T04:25:53.777Z", + "new_balance":"7018.10", + "value":"-2.25" + } + }, + { + "id":"54ea2bbd-b9e2-44ba-92d0-249f9ccc6497", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T09:41:33.062Z", + "completed":"2017-06-23T09:41:33.062Z", + "new_balance":"7017.33", + "value":"-0.77" + } + }, + { + "id":"32043233-3e45-4620-aa7a-9b5b63c224c9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T08:20:42.245Z", + "completed":"2017-06-24T08:20:42.245Z", + "new_balance":"7016.28", + "value":"-1.05" + } + }, + { + "id":"a3edcbf7-6714-4396-9b25-b2353a60f934", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T17:09:48.307Z", + "completed":"2017-06-24T17:09:48.307Z", + "new_balance":"7012.02", + "value":"-4.26" + } + }, + { + "id":"d6d20282-6a37-4ecf-84c8-3f278872de08", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:13:55.627Z", + "completed":"2017-06-28T01:13:55.627Z", + "new_balance":"7002.23", + "value":"-9.79" + } + }, + { + "id":"6cc0fbd1-07ce-4902-a15c-26c2a4345d11", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T05:13:10.999Z", + "completed":"2017-06-28T05:13:10.999Z", + "new_balance":"7001.71", + "value":"-0.52" + } + }, + { + "id":"77543773-7b20-4e90-a662-8ea193e092be", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T16:11:17.584Z", + "completed":"2017-06-28T16:11:17.584Z", + "new_balance":"6996.89", + "value":"-4.82" + } + }, + { + "id":"2cde46f2-51e2-449c-8220-3fe052fede95", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T18:47:45.483Z", + "completed":"2017-06-28T18:47:45.483Z", + "new_balance":"6996.37", + "value":"-0.52" + } + }, + { + "id":"0a46ca3e-7d44-4e5d-b595-cd839634bd1a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T00:25:55.015Z", + "completed":"2017-06-29T00:25:55.015Z", + "new_balance":"6989.41", + "value":"-6.96" + } + }, + { + "id":"c2cc001a-3b23-438e-8601-a3c9c4287a05", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T04:18:25.780Z", + "completed":"2017-06-29T04:18:25.780Z", + "new_balance":"6984.25", + "value":"-5.16" + } + }, + { + "id":"13da1d2a-6093-4a0e-b651-25ea76316203", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T04:27:44.547Z", + "completed":"2017-06-29T04:27:44.547Z", + "new_balance":"6983.49", + "value":"-0.76" + } + }, + { + "id":"b9af0340-4001-4815-b319-056513d03c62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T06:20:38.161Z", + "completed":"2017-06-29T06:20:38.161Z", + "new_balance":"6979.34", + "value":"-4.15" + } + }, + { + "id":"37c138db-fdf8-4d9c-bbf1-0b97d9762dd2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T11:55:17.258Z", + "completed":"2017-06-29T11:55:17.258Z", + "new_balance":"6975.05", + "value":"-4.29" + } + }, + { + "id":"fb19a5ef-2a06-43b6-9a88-b942ec406eaf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T18:13:18.226Z", + "completed":"2017-06-29T18:13:18.226Z", + "new_balance":"6968.73", + "value":"-6.32" + } + }, + { + "id":"61b087f8-59a0-46b7-89f8-f3c7ffb8b39a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T02:00:26.916Z", + "completed":"2017-06-30T02:00:26.916Z", + "new_balance":"6968.14", + "value":"-0.59" + } + }, + { + "id":"11975381-53ac-45b4-a471-1d80bccc9012", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T04:01:34.529Z", + "completed":"2017-06-30T04:01:34.529Z", + "new_balance":"6967.23", + "value":"-0.91" + } + }, + { + "id":"1a3a2c3f-baff-4a79-8b31-af8b2d7a4684", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T09:32:08.045Z", + "completed":"2017-06-30T09:32:08.045Z", + "new_balance":"6962.62", + "value":"-4.61" + } + }, + { + "id":"2e66d5b8-9977-43e5-bb7d-bca22b8bc9ed", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T12:29:09.491Z", + "completed":"2017-06-30T12:29:09.491Z", + "new_balance":"6959.07", + "value":"-3.55" + } + }, + { + "id":"575465cb-55f2-45ff-babe-7c26f0823520", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T01:43:21.537Z", + "completed":"2017-07-01T01:43:21.537Z", + "new_balance":"6957.76", + "value":"-1.31" + } + }, + { + "id":"b4fdd156-caa8-4fc5-9279-0c58478bc97d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T01:55:09.239Z", + "completed":"2017-07-01T01:55:09.239Z", + "new_balance":"6942.51", + "value":"-15.25" + } + }, + { + "id":"57e2c4eb-e9b0-4a4e-892b-773d43321b81", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T04:47:14.819Z", + "completed":"2017-07-01T04:47:14.819Z", + "new_balance":"6884.28", + "value":"-58.23" + } + }, + { + "id":"7d485336-5184-4d50-86aa-711af0467452", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T06:59:34.755Z", + "completed":"2017-07-01T06:59:34.755Z", + "new_balance":"6881.54", + "value":"-2.74" + } + }, + { + "id":"7eb4b2b7-d14b-4fb1-80be-d94e07fb30e5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:21:27.047Z", + "completed":"2017-07-01T13:21:27.047Z", + "new_balance":"6876.39", + "value":"-5.15" + } + }, + { + "id":"7881ba6d-5a32-4ce2-b2b5-205b29cfc09c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T13:28:43.593Z", + "completed":"2017-07-01T13:28:43.593Z", + "new_balance":"6874.07", + "value":"-2.32" + } + }, + { + "id":"5301aacf-18e8-48bc-ba73-979a3890e17d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T13:55:24.143Z", + "completed":"2017-07-01T13:55:24.143Z", + "new_balance":"6871.01", + "value":"-3.06" + } + }, + { + "id":"94f13df3-fb77-4833-9910-1b75d4234337", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T17:58:25.647Z", + "completed":"2017-07-01T17:58:25.647Z", + "new_balance":"6867.57", + "value":"-3.44" + } + }, + { + "id":"46ced700-5930-4595-9f1f-397eb9ada6f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T19:30:16.733Z", + "completed":"2017-07-01T19:30:16.733Z", + "new_balance":"6864.13", + "value":"-3.44" + } + }, + { + "id":"30833a6e-79f9-4b8e-865d-5ef22a5b541d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T22:49:01.467Z", + "completed":"2017-07-01T22:49:01.467Z", + "new_balance":"6836.63", + "value":"-27.50" + } + }, + { + "id":"af425680-aa35-48dc-835a-31aec945e461", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T18:06:27.281Z", + "completed":"2017-07-02T18:06:27.281Z", + "new_balance":"6829.53", + "value":"-7.10" + } + }, + { + "id":"7d6a7f34-41e1-42ef-9719-b8405e4cad0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T19:14:19.321Z", + "completed":"2017-07-03T19:14:19.321Z", + "new_balance":"6819.06", + "value":"-10.47" + } + }, + { + "id":"5cfbb480-9aa0-4ce3-a630-a1e21a2888cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:26:51.960Z", + "completed":"2017-07-04T08:26:51.960Z", + "new_balance":"6817.28", + "value":"-1.78" + } + }, + { + "id":"d841444e-114f-4430-b567-8994194802ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T12:16:15.032Z", + "completed":"2017-07-05T12:16:15.032Z", + "new_balance":"6810.09", + "value":"-7.19" + } + }, + { + "id":"1407c31a-eb32-4ccc-ba89-2e2c3c9445fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T23:24:31.081Z", + "completed":"2017-07-05T23:24:31.081Z", + "new_balance":"6800.45", + "value":"-9.64" + } + }, + { + "id":"0391a36d-b607-4f86-b7c2-169a3b8a8220", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T07:58:57.459Z", + "completed":"2017-07-06T07:58:57.459Z", + "new_balance":"6799.99", + "value":"-0.46" + } + }, + { + "id":"b0900586-9bdb-4f7c-a795-042480ccf0da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T14:04:16.332Z", + "completed":"2017-07-11T14:04:16.332Z", + "new_balance":"6797.31", + "value":"-2.68" + } + }, + { + "id":"1281d177-d587-49b0-9c59-7bd151ddb04b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T16:38:11.316Z", + "completed":"2017-07-12T16:38:11.316Z", + "new_balance":"6794.09", + "value":"-3.22" + } + }, + { + "id":"d53eeec3-e146-4531-9724-b5a8f82d38b2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T09:43:02.987Z", + "completed":"2017-07-14T09:43:02.987Z", + "new_balance":"6792.56", + "value":"-1.53" + } + }, + { + "id":"bd4dee14-3ff9-41e2-a2ab-5dc5c8213cb6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T01:15:53.659Z", + "completed":"2017-07-16T01:15:53.659Z", + "new_balance":"6791.66", + "value":"-0.90" + } + }, + { + "id":"eeb6977c-9635-4a70-9a4b-46079989ee19", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T07:29:57.244Z", + "completed":"2017-07-18T07:29:57.244Z", + "new_balance":"6789.55", + "value":"-2.11" + } + }, + { + "id":"03d42dc3-51c7-41db-8fc0-72c54e5e4f1f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T18:18:13.402Z", + "completed":"2017-07-20T18:18:13.402Z", + "new_balance":"6789.11", + "value":"-0.44" + } + }, + { + "id":"8d09f272-1328-404a-82fc-6ec4f20647ee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T20:40:54.592Z", + "completed":"2017-07-20T20:40:54.592Z", + "new_balance":"6761.61", + "value":"-27.50" + } + }, + { + "id":"3b1a51ff-82ea-4197-a600-c60b34642f76", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T06:25:48.491Z", + "completed":"2017-07-24T06:25:48.491Z", + "new_balance":"6757.13", + "value":"-4.48" + } + }, + { + "id":"a7ffdf64-7d93-4632-8fbd-e0e700c633f4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T12:38:07.272Z", + "completed":"2017-07-24T12:38:07.272Z", + "new_balance":"6756.02", + "value":"-1.11" + } + }, + { + "id":"d2e6d960-4b88-4490-802d-ad2658d1b9b7", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T08:50:13.924Z", + "completed":"2017-07-25T08:50:13.924Z", + "new_balance":"6750.62", + "value":"-5.40" + } + }, + { + "id":"7ddac4a3-b1f2-4d9b-82b4-dd8ecf581538", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T14:49:51.374Z", + "completed":"2017-07-25T14:49:51.374Z", + "new_balance":"6747.81", + "value":"-2.81" + } + }, + { + "id":"477d7ac9-14be-4149-8f0d-2b18c21cf6cc", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T01:06:55.657Z", + "completed":"2017-07-26T01:06:55.657Z", + "new_balance":"6741.99", + "value":"-5.82" + } + }, + { + "id":"4c1329b2-1d7f-4921-82c1-ac50a651d01e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T16:30:04.935Z", + "completed":"2017-07-27T16:30:04.935Z", + "new_balance":"6741.55", + "value":"-0.44" + } + }, + { + "id":"8160a6d0-2688-46c1-aa6b-444f45280560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T07:22:24.722Z", + "completed":"2017-08-01T07:22:24.722Z", + "new_balance":"6736.40", + "value":"-5.15" + } + }, + { + "id":"8a191c7b-6769-4ba7-bed7-a5fcb44beff2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T09:01:58.739Z", + "completed":"2017-08-01T09:01:58.739Z", + "new_balance":"6678.17", + "value":"-58.23" + } + }, + { + "id":"8dd8e5e3-5290-4b57-998c-8825f75d2640", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T14:51:46.883Z", + "completed":"2017-08-01T14:51:46.883Z", + "new_balance":"6674.73", + "value":"-3.44" + } + }, + { + "id":"0751ff10-4061-4553-95f9-b927b013c085", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:10:15.473Z", + "completed":"2017-08-01T21:10:15.473Z", + "new_balance":"6659.48", + "value":"-15.25" + } + }, + { + "id":"b4232984-45dc-415e-803a-679a87b4f9a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T21:23:56.742Z", + "completed":"2017-08-01T21:23:56.742Z", + "new_balance":"6657.16", + "value":"-2.32" + } + }, + { + "id":"10350251-30dc-4623-91fb-a121d9703bfb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T22:40:57.480Z", + "completed":"2017-08-01T22:40:57.480Z", + "new_balance":"6839.86", + "value":"182.70" + } + }, + { + "id":"298fecf0-0c4e-48f1-af24-130344f0d84b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T12:23:12.660Z", + "completed":"2017-08-02T12:23:12.660Z", + "new_balance":"6832.76", + "value":"-7.10" + } + }, + { + "id":"fb3920d8-4bf2-4130-9643-9b271bf9739a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T22:03:04.353Z", + "completed":"2017-08-03T22:03:04.353Z", + "new_balance":"6832.30", + "value":"-0.46" + } + }, + { + "id":"943bc7d5-b49c-4568-92a9-2565435fcd7a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T02:58:41.939Z", + "completed":"2017-08-04T02:58:41.939Z", + "new_balance":"6829.38", + "value":"-2.92" + } + }, + { + "id":"957c342a-bee2-45c2-a88f-e811a34a64b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:33:49.260Z", + "completed":"2017-08-07T09:33:49.260Z", + "new_balance":"6826.88", + "value":"-2.50" + } + }, + { + "id":"cb8bb8fa-796a-4f36-8edb-646394ddae4c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T16:35:30.297Z", + "completed":"2017-08-09T16:35:30.297Z", + "new_balance":"6823.55", + "value":"-3.33" + } + }, + { + "id":"6416d04d-7d25-4871-96be-82400d250aee", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T22:06:26.399Z", + "completed":"2017-08-09T22:06:26.399Z", + "new_balance":"6821.15", + "value":"-2.40" + } + }, + { + "id":"c155c401-87e2-4b89-aaad-5a9c02dc4b13", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T00:24:11.355Z", + "completed":"2017-08-10T00:24:11.355Z", + "new_balance":"6813.96", + "value":"-7.19" + } + }, + { + "id":"30156742-2a90-4e80-a27a-715540ba4def", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T06:48:00.478Z", + "completed":"2017-08-14T06:48:00.478Z", + "new_balance":"6813.48", + "value":"-0.48" + } + }, + { + "id":"2907a7c5-bbce-439b-8268-b3041a3e4780", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T04:19:20.798Z", + "completed":"2017-08-15T04:19:20.798Z", + "new_balance":"6810.26", + "value":"-3.22" + } + }, + { + "id":"61bcab40-169c-43da-a806-a4f3fc7b7ac1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T07:59:36.097Z", + "completed":"2017-08-15T07:59:36.097Z", + "new_balance":"6807.23", + "value":"-3.03" + } + }, + { + "id":"58c692e2-71a1-4083-a45b-e0da870a5e91", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T09:08:08.948Z", + "completed":"2017-08-16T09:08:08.948Z", + "new_balance":"6804.09", + "value":"-3.14" + } + }, + { + "id":"294cc349-2c36-4c49-a0c6-e5a5f230e9b3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T12:18:05.277Z", + "completed":"2017-08-17T12:18:05.277Z", + "new_balance":"6800.61", + "value":"-3.48" + } + }, + { + "id":"1a2806f5-b55e-4d8c-9f5b-6bf6667986a3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T00:18:21.045Z", + "completed":"2017-08-20T00:18:21.045Z", + "new_balance":"6799.84", + "value":"-0.77" + } + }, + { + "id":"774bca44-c0bb-4a76-83b1-3ebc773b0d9d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T15:15:36.240Z", + "completed":"2017-08-20T15:15:36.240Z", + "new_balance":"6799.37", + "value":"-0.47" + } + }, + { + "id":"964bbea6-69ff-4fa9-870c-705ce6e11e4e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T14:28:34.411Z", + "completed":"2017-08-22T14:28:34.411Z", + "new_balance":"6803.45", + "value":"4.08" + } + }, + { + "id":"bad261df-759c-4f80-8853-01e27b161987", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T10:53:03.075Z", + "completed":"2017-08-23T10:53:03.075Z", + "new_balance":"6799.33", + "value":"-4.12" + } + }, + { + "id":"96d6f721-c4a6-4641-b239-3a5f3bb35071", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T17:10:21.843Z", + "completed":"2017-08-23T17:10:21.843Z", + "new_balance":"6792.90", + "value":"-6.43" + } + }, + { + "id":"ef8eba0b-db24-4ac3-8e31-a47aa2eff17b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T02:29:50.348Z", + "completed":"2017-08-28T02:29:50.348Z", + "new_balance":"6790.35", + "value":"-2.55" + } + }, + { + "id":"e20d18e8-4406-4222-bb6a-a01e0ca80d19", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T14:34:32.343Z", + "completed":"2017-08-28T14:34:32.343Z", + "new_balance":"6787.41", + "value":"-2.94" + } + }, + { + "id":"412c5f58-e1c5-4cd2-8efe-861be0671b14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T02:47:08.260Z", + "completed":"2017-09-01T02:47:08.260Z", + "new_balance":"6785.09", + "value":"-2.32" + } + }, + { + "id":"3293542d-3b02-40db-817f-8c4b8f52d571", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T05:09:00.390Z", + "completed":"2017-09-01T05:09:00.390Z", + "new_balance":"6779.94", + "value":"-5.15" + } + }, + { + "id":"3d8b00f8-7c90-4b2f-a556-77d5d43f2626", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T14:08:47.040Z", + "completed":"2017-09-01T14:08:47.040Z", + "new_balance":"6764.69", + "value":"-15.25" + } + }, + { + "id":"34136809-58bd-499f-9c2a-5b0ee6c59dd6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T19:49:10.916Z", + "completed":"2017-09-01T19:49:10.916Z", + "new_balance":"6947.39", + "value":"182.70" + } + }, + { + "id":"80afac8a-34e2-4dc7-82dd-364b2f0c04b1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T22:19:35.918Z", + "completed":"2017-09-01T22:19:35.918Z", + "new_balance":"6943.95", + "value":"-3.44" + } + }, + { + "id":"9ceddecd-32ff-4173-bc6f-177c83b5e057", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T22:57:05.879Z", + "completed":"2017-09-01T22:57:05.879Z", + "new_balance":"6885.72", + "value":"-58.23" + } + }, + { + "id":"1acb7155-8145-4b18-84b3-fc9ba2c18c9b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T20:54:26.117Z", + "completed":"2017-09-02T20:54:26.117Z", + "new_balance":"6878.62", + "value":"-7.10" + } + }, + { + "id":"fde9016a-a138-4a0c-a749-4b469b3c5971", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T01:45:07.605Z", + "completed":"2017-09-04T01:45:07.605Z", + "new_balance":"6871.32", + "value":"-7.30" + } + }, + { + "id":"20805d82-e2ee-4a86-8f4d-8e62e40ec5a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:03:04.458Z", + "completed":"2017-09-04T02:03:04.458Z", + "new_balance":"6870.56", + "value":"-0.76" + } + }, + { + "id":"74fc5592-69f6-4ff9-a581-763d299354da", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T10:06:45.899Z", + "completed":"2017-09-04T10:06:45.899Z", + "new_balance":"6867.26", + "value":"-3.30" + } + }, + { + "id":"1f749ab4-da6e-4535-a4ce-4741956c687d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T14:04:37.007Z", + "completed":"2017-09-04T14:04:37.007Z", + "new_balance":"6866.01", + "value":"-1.25" + } + }, + { + "id":"e19b55a8-a133-4108-834a-889d46406e72", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T04:03:23.141Z", + "completed":"2017-09-05T04:03:23.141Z", + "new_balance":"6865.61", + "value":"-0.40" + } + }, + { + "id":"f21c4e43-77b9-46d8-a1e5-560a56ca11ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T07:53:13.576Z", + "completed":"2017-09-05T07:53:13.576Z", + "new_balance":"6861.57", + "value":"-4.04" + } + }, + { + "id":"8f222c0f-e5f3-4c9b-bed2-2635baf877bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T13:27:25.631Z", + "completed":"2017-09-06T13:27:25.631Z", + "new_balance":"6854.27", + "value":"-7.30" + } + }, + { + "id":"cf65e930-16e3-4336-bd97-c8d10c264b3c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T13:45:34.827Z", + "completed":"2017-09-06T13:45:34.827Z", + "new_balance":"6849.00", + "value":"-5.27" + } + }, + { + "id":"13bba013-b74c-4605-880b-8ca9875baf20", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T12:21:03.069Z", + "completed":"2017-09-08T12:21:03.069Z", + "new_balance":"6844.73", + "value":"-4.27" + } + }, + { + "id":"d1513f4a-1816-4789-b1e8-fd897773f506", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:30:27.622Z", + "completed":"2017-09-08T22:30:27.622Z", + "new_balance":"6839.46", + "value":"-5.27" + } + }, + { + "id":"d23224a0-4296-4895-8693-68c23cefccf0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T06:06:33.261Z", + "completed":"2017-09-10T06:06:33.261Z", + "new_balance":"6838.92", + "value":"-0.54" + } + }, + { + "id":"f9db5d86-d909-4a51-9e56-d5bc44fab995", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T22:52:09.895Z", + "completed":"2017-09-10T22:52:09.895Z", + "new_balance":"6832.60", + "value":"-6.32" + } + }, + { + "id":"98618ff8-4b6d-45f8-91de-5a3c8c1e32fd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T10:51:30.002Z", + "completed":"2017-09-11T10:51:30.002Z", + "new_balance":"6831.83", + "value":"-0.77" + } + }, + { + "id":"6f1aff69-7bc6-42fe-b8e0-13b58f640fcf", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T15:46:50.211Z", + "completed":"2017-09-12T15:46:50.211Z", + "new_balance":"6829.58", + "value":"-2.25" + } + }, + { + "id":"1aa74b1d-4576-4845-93c7-b7b60a90b167", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T16:29:22.357Z", + "completed":"2017-09-12T16:29:22.357Z", + "new_balance":"6828.53", + "value":"-1.05" + } + }, + { + "id":"4ee9d640-c166-45ed-a9ac-0c0c4a22a997", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T09:43:04.505Z", + "completed":"2017-09-13T09:43:04.505Z", + "new_balance":"6824.27", + "value":"-4.26" + } + }, + { + "id":"3a3a5e85-cb3a-4035-b3fb-8c5829b8838a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T07:16:10.808Z", + "completed":"2017-09-16T07:16:10.808Z", + "new_balance":"6823.75", + "value":"-0.52" + } + }, + { + "id":"a13cf347-6960-4ddc-934f-d96523ceb87f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T02:49:07.946Z", + "completed":"2017-09-17T02:49:07.946Z", + "new_balance":"6818.93", + "value":"-4.82" + } + }, + { + "id":"76dd1f0c-99d7-4176-be2a-13b209c90c9f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T22:27:39.009Z", + "completed":"2017-09-17T22:27:39.009Z", + "new_balance":"6809.14", + "value":"-9.79" + } + }, + { + "id":"89e387e6-b88d-4d34-b7aa-5aeeaa9bfff0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T13:55:07.898Z", + "completed":"2017-09-18T13:55:07.898Z", + "new_balance":"6808.62", + "value":"-0.52" + } + }, + { + "id":"c04ffd73-9097-4cb0-afcf-afb189e3c42b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T05:43:09.622Z", + "completed":"2017-09-19T05:43:09.622Z", + "new_balance":"6804.47", + "value":"-4.15" + } + }, + { + "id":"d3dc66a4-d444-4ecc-982b-b67952afb713", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T07:17:31.445Z", + "completed":"2017-09-19T07:17:31.445Z", + "new_balance":"6798.15", + "value":"-6.32" + } + }, + { + "id":"50be1b89-9b14-420f-a95b-4ccfadbb88f9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T19:05:50.594Z", + "completed":"2017-09-19T19:05:50.594Z", + "new_balance":"6793.86", + "value":"-4.29" + } + }, + { + "id":"a5061817-78bf-4996-987c-d15a32b2000b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T07:05:09.323Z", + "completed":"2017-09-20T07:05:09.323Z", + "new_balance":"6788.70", + "value":"-5.16" + } + }, + { + "id":"07fdacc2-ad57-4f7e-b2f4-e186e135c166", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T23:30:05.415Z", + "completed":"2017-09-20T23:30:05.415Z", + "new_balance":"6781.74", + "value":"-6.96" + } + }, + { + "id":"176ecdc1-0326-46f0-9a46-cb9a96888922", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T19:55:14.316Z", + "completed":"2017-09-21T19:55:14.316Z", + "new_balance":"6780.98", + "value":"-0.76" + } + }, + { + "id":"cd5f1f91-760c-4d59-852c-574773378420", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T20:50:19.776Z", + "completed":"2017-09-21T20:50:19.776Z", + "new_balance":"6780.39", + "value":"-0.59" + } + }, + { + "id":"4c90321e-d639-4504-9a9a-125fd4833fa5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T17:25:54.476Z", + "completed":"2017-09-23T17:25:54.476Z", + "new_balance":"6779.48", + "value":"-0.91" + } + }, + { + "id":"b69fe351-a719-4eb5-863f-c813adfc6e98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T21:06:55.547Z", + "completed":"2017-09-23T21:06:55.547Z", + "new_balance":"6774.87", + "value":"-4.61" + } + }, + { + "id":"00de62e8-ec1a-4d0e-8077-1496fed0b479", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T16:19:17.033Z", + "completed":"2017-09-24T16:19:17.033Z", + "new_balance":"6771.32", + "value":"-3.55" + } + }, + { + "id":"9dd23a0c-4075-4a4b-b445-6f53f909f5ae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T05:57:27.313Z", + "completed":"2017-09-25T05:57:27.313Z", + "new_balance":"6770.01", + "value":"-1.31" + } + }, + { + "id":"f90b12a5-9852-4e2a-bac2-fc31c783c8ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T13:44:09.548Z", + "completed":"2017-09-25T13:44:09.548Z", + "new_balance":"6766.95", + "value":"-3.06" + } + }, + { + "id":"c48fb4e4-5851-470e-a233-b8bf27e64a17", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T17:32:11.923Z", + "completed":"2017-09-27T17:32:11.923Z", + "new_balance":"6739.45", + "value":"-27.50" + } + }, + { + "id":"afefd3c7-8b7f-4caf-8c9d-bd793d2337bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T08:45:53.812Z", + "completed":"2017-09-29T08:45:53.812Z", + "new_balance":"6736.71", + "value":"-2.74" + } + }, + { + "id":"a23573fd-65ce-4097-bd10-77b25e67ca02", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T12:46:15.440Z", + "completed":"2017-10-01T12:46:15.440Z", + "new_balance":"6678.48", + "value":"-58.23" + } + }, + { + "id":"65c6a0d3-f7b2-4b9d-b90c-08a568392318", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T17:37:35.377Z", + "completed":"2017-10-01T17:37:35.377Z", + "new_balance":"6673.33", + "value":"-5.15" + } + }, + { + "id":"87cad3e4-642c-4a8f-9c13-1fc39b3be237", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T21:39:38.641Z", + "completed":"2017-10-01T21:39:38.641Z", + "new_balance":"6671.01", + "value":"-2.32" + } + }, + { + "id":"f566a318-656f-4943-9ec6-3de14456b0d1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T22:45:22.661Z", + "completed":"2017-10-01T22:45:22.661Z", + "new_balance":"6655.76", + "value":"-15.25" + } + }, + { + "id":"c61be948-3ceb-4a82-b96b-555e4cfa01bb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T20:02:05.529Z", + "completed":"2017-10-02T20:02:05.529Z", + "new_balance":"6648.66", + "value":"-7.10" + } + }, + { + "id":"2eed07d8-215a-45a2-86a5-ededc35cd119", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T21:59:27.050Z", + "completed":"2017-10-02T21:59:27.050Z", + "new_balance":"6638.97", + "value":"-9.69" + } + }, + { + "id":"77611052-7c0b-4d8b-9ef1-8a85661d3560", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T00:05:13.194Z", + "completed":"2017-10-03T00:05:13.194Z", + "new_balance":"6582.16", + "value":"-56.81" + } + }, + { + "id":"4bd53a13-807d-499f-b85c-734bcbc4d24a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T04:45:34.385Z", + "completed":"2017-10-03T04:45:34.385Z", + "new_balance":"6569.06", + "value":"-13.10" + } + }, + { + "id":"fb10a82f-0137-4eb3-a18c-f2e11be9ad2c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T12:27:54.054Z", + "completed":"2017-10-03T12:27:54.054Z", + "new_balance":"6565.28", + "value":"-3.78" + } + }, + { + "id":"16e0240b-2797-4d4b-a4d1-22db6018b9fe", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T21:42:20.362Z", + "completed":"2017-10-03T21:42:20.362Z", + "new_balance":"6562.37", + "value":"-2.91" + } + }, + { + "id":"c7428589-3137-434a-93d2-a7964a41bbb4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T21:51:45.893Z", + "completed":"2017-10-03T21:51:45.893Z", + "new_balance":"6534.87", + "value":"-27.50" + } + }, + { + "id":"e68a4d31-f5dd-4bd7-a888-c3364cae487e", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T06:10:49.777Z", + "completed":"2017-10-04T06:10:49.777Z", + "new_balance":"6527.68", + "value":"-7.19" + } + }, + { + "id":"f3908183-3eb2-4b95-95fe-4f2135445469", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T08:36:16.653Z", + "completed":"2017-10-05T08:36:16.653Z", + "new_balance":"6525.00", + "value":"-2.68" + } + }, + { + "id":"fa2a7ddf-bd53-4d64-bc69-cd782e914516", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T20:36:14.143Z", + "completed":"2017-10-05T20:36:14.143Z", + "new_balance":"6524.54", + "value":"-0.46" + } + }, + { + "id":"a553100f-dfb7-4c4b-8167-0a3f91c5e5ae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T02:57:58.514Z", + "completed":"2017-10-07T02:57:58.514Z", + "new_balance":"6523.01", + "value":"-1.53" + } + }, + { + "id":"8202dce5-b6ad-426c-8d6b-8b1ec4a7e9dd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T09:46:06.286Z", + "completed":"2017-10-07T09:46:06.286Z", + "new_balance":"6519.79", + "value":"-3.22" + } + }, + { + "id":"4ad2cd68-ebbf-4b4c-bdef-2ad134506a0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T07:44:18.762Z", + "completed":"2017-10-08T07:44:18.762Z", + "new_balance":"6518.89", + "value":"-0.90" + } + }, + { + "id":"6d70773d-c7cb-4e02-98cc-255d61107f14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T16:05:13.058Z", + "completed":"2017-10-09T16:05:13.058Z", + "new_balance":"6516.78", + "value":"-2.11" + } + }, + { + "id":"18e927a8-7418-4cc5-8b38-ca47bc4b3a62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T23:09:41.067Z", + "completed":"2017-10-09T23:09:41.067Z", + "new_balance":"6489.28", + "value":"-27.50" + } + }, + { + "id":"48469904-f8b0-4057-be3f-accdd55371e9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T23:10:45.958Z", + "completed":"2017-10-09T23:10:45.958Z", + "new_balance":"6488.84", + "value":"-0.44" + } + }, + { + "id":"9f1fbd1a-e6da-4769-9d7b-2e3bc6ada00c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T04:16:01.739Z", + "completed":"2017-10-10T04:16:01.739Z", + "new_balance":"6484.36", + "value":"-4.48" + } + }, + { + "id":"3af51668-8057-45f3-91d0-456ddab01149", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T21:07:47.890Z", + "completed":"2017-10-17T21:07:47.890Z", + "new_balance":"6483.25", + "value":"-1.11" + } + }, + { + "id":"208f65ba-84c2-427e-a995-16039c486a62", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:33:49.858Z", + "completed":"2017-10-18T01:33:49.858Z", + "new_balance":"6480.44", + "value":"-2.81" + } + }, + { + "id":"a03b5398-1cb4-4e9a-ac06-996c0615df98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T11:04:29.920Z", + "completed":"2017-10-25T11:04:29.920Z", + "new_balance":"6475.04", + "value":"-5.40" + } + }, + { + "id":"e0ec7a41-cb98-4163-9918-27774d8c1e98", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T19:08:14.582Z", + "completed":"2017-10-26T19:08:14.582Z", + "new_balance":"6474.60", + "value":"-0.44" + } + }, + { + "id":"41f5bc6e-ee73-49a3-9251-ae3fd13cb1e0", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T21:25:38.097Z", + "completed":"2017-10-26T21:25:38.097Z", + "new_balance":"6468.78", + "value":"-5.82" + } + }, + { + "id":"4c7b5085-3f5d-466f-a890-0023a7d0f86c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T03:43:24.071Z", + "completed":"2017-11-02T03:43:24.071Z", + "new_balance":"6651.48", + "value":"182.70" + } + }, + { + "id":"2c9543da-f6e7-4e76-978c-c7a58fadb652", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T13:20:54.464Z", + "completed":"2017-11-02T13:20:54.464Z", + "new_balance":"6593.25", + "value":"-58.23" + } + }, + { + "id":"64ceff19-7430-47db-b31c-42b8e95fdab4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T15:07:15.299Z", + "completed":"2017-11-02T15:07:15.299Z", + "new_balance":"6589.81", + "value":"-3.44" + } + }, + { + "id":"0ef53c09-adba-422d-940c-fe8c909ada92", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T17:26:35.996Z", + "completed":"2017-11-02T17:26:35.996Z", + "new_balance":"6574.56", + "value":"-15.25" + } + }, + { + "id":"035f28eb-ef74-48dc-84a0-41e9c9992d4f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T17:36:40.377Z", + "completed":"2017-11-02T17:36:40.377Z", + "new_balance":"6573.41", + "value":"-1.15" + } + }, + { + "id":"922ad11c-69d7-4199-9e2a-655803d2ca14", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T20:19:58.732Z", + "completed":"2017-11-02T20:19:58.732Z", + "new_balance":"6566.31", + "value":"-7.10" + } + }, + { + "id":"45612b3a-87f9-4594-8bdb-4642ccb309c3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T21:16:52.731Z", + "completed":"2017-11-02T21:16:52.731Z", + "new_balance":"6563.99", + "value":"-2.32" + } + }, + { + "id":"6574dd90-c2a9-468a-a1c6-3f0025845be4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T22:00:59.311Z", + "completed":"2017-11-02T22:00:59.311Z", + "new_balance":"6558.84", + "value":"-5.15" + } + }, + { + "id":"c503068a-a1a6-4009-8aa5-757aa742254c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T11:50:27.797Z", + "completed":"2017-11-06T11:50:27.797Z", + "new_balance":"6556.74", + "value":"-2.10" + } + }, + { + "id":"3960e815-d472-4d3c-af46-5c5fac535e94", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T05:07:24.759Z", + "completed":"2017-11-07T05:07:24.759Z", + "new_balance":"6554.34", + "value":"-2.40" + } + }, + { + "id":"9af535ea-20ee-49c2-ba11-861912e4989f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T07:57:29.367Z", + "completed":"2017-11-07T07:57:29.367Z", + "new_balance":"6551.01", + "value":"-3.33" + } + }, + { + "id":"5eade63c-3ca3-4411-95bc-4ade570a99a1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T11:43:35.698Z", + "completed":"2017-11-07T11:43:35.698Z", + "new_balance":"6548.51", + "value":"-2.50" + } + }, + { + "id":"475f1ba3-788c-4283-afae-6babe74f8a12", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T06:44:08.773Z", + "completed":"2017-11-09T06:44:08.773Z", + "new_balance":"6541.32", + "value":"-7.19" + } + }, + { + "id":"516c3011-d560-4ea2-b957-fd9e506d3170", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T20:13:10.221Z", + "completed":"2017-11-09T20:13:10.221Z", + "new_balance":"6540.84", + "value":"-0.48" + } + }, + { + "id":"6b82de8f-3a74-48c3-8fe3-3bb41d6ff0ea", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T17:44:42.383Z", + "completed":"2017-11-12T17:44:42.383Z", + "new_balance":"6538.39", + "value":"-2.45" + } + }, + { + "id":"11f098ca-22e9-42c0-b60b-7249733387ca", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T20:40:06.823Z", + "completed":"2017-11-12T20:40:06.823Z", + "new_balance":"6535.36", + "value":"-3.03" + } + }, + { + "id":"ba542f40-b5dd-4b28-9da4-7f72ac73fd7c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T10:02:06.989Z", + "completed":"2017-11-14T10:02:06.989Z", + "new_balance":"6532.22", + "value":"-3.14" + } + }, + { + "id":"1d286db0-31b9-46b8-afdf-20d7f60b8014", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T14:53:12.404Z", + "completed":"2017-11-14T14:53:12.404Z", + "new_balance":"6528.74", + "value":"-3.48" + } + }, + { + "id":"0b052f81-3e3a-4162-8c16-c0ab64f325d5", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T12:36:27.203Z", + "completed":"2017-11-16T12:36:27.203Z", + "new_balance":"6528.27", + "value":"-0.47" + } + }, + { + "id":"a320cb8a-5814-4248-831a-37a41d2cb5eb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T23:13:34.240Z", + "completed":"2017-11-18T23:13:34.240Z", + "new_balance":"6527.50", + "value":"-0.77" + } + }, + { + "id":"a34c4200-c75f-458c-a6f8-e7dc2a1d931f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T14:08:50.079Z", + "completed":"2017-11-20T14:08:50.079Z", + "new_balance":"6531.58", + "value":"4.08" + } + }, + { + "id":"9cd98b1e-96d6-456b-8e5a-44049e3be72d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T00:35:49.020Z", + "completed":"2017-11-21T00:35:49.020Z", + "new_balance":"6525.15", + "value":"-6.43" + } + }, + { + "id":"22b44cdf-6ec5-4b01-8ebc-0c97666d1b03", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T18:54:30.446Z", + "completed":"2017-11-21T18:54:30.446Z", + "new_balance":"6521.03", + "value":"-4.12" + } + }, + { + "id":"15d277ff-4508-4327-9237-aa5b49acc9ce", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T02:42:10.694Z", + "completed":"2017-11-27T02:42:10.694Z", + "new_balance":"6518.48", + "value":"-2.55" + } + }, + { + "id":"a7a108fd-ba48-45b7-8abe-bd6bac313c28", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T09:15:36.039Z", + "completed":"2017-11-27T09:15:36.039Z", + "new_balance":"6515.54", + "value":"-2.94" + } + }, + { + "id":"13dfb8af-79c0-4039-a160-3fea08eb9e40", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:23:37.976Z", + "completed":"2017-12-01T02:23:37.976Z", + "new_balance":"6500.29", + "value":"-15.25" + } + }, + { + "id":"d8f69426-d682-4aae-a53a-7bc515d5f4c1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T04:36:42.323Z", + "completed":"2017-12-01T04:36:42.323Z", + "new_balance":"6496.85", + "value":"-3.44" + } + }, + { + "id":"28d45a80-abbe-47d4-9c43-a45feaf90c24", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T18:14:09.989Z", + "completed":"2017-12-01T18:14:09.989Z", + "new_balance":"6438.62", + "value":"-58.23" + } + }, + { + "id":"54fc0921-c717-4e06-bf17-d93ec3e822f6", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T18:46:04.642Z", + "completed":"2017-12-01T18:46:04.642Z", + "new_balance":"6621.32", + "value":"182.70" + } + }, + { + "id":"29e5c440-d6dc-47be-a861-8185d560f7e3", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T19:35:37.081Z", + "completed":"2017-12-01T19:35:37.081Z", + "new_balance":"6616.17", + "value":"-5.15" + } + }, + { + "id":"c091668e-fa59-4df7-b5de-7ffaa79840d4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:56:12.838Z", + "completed":"2017-12-01T19:56:12.838Z", + "new_balance":"6613.85", + "value":"-2.32" + } + }, + { + "id":"39fb85be-6a3e-4e88-828e-51f9e72cb3a2", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T09:18:55.555Z", + "completed":"2017-12-04T09:18:55.555Z", + "new_balance":"6606.75", + "value":"-7.10" + } + }, + { + "id":"38d621f5-ad1d-4b93-a7a0-24111bfb0355", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:13:33.569Z", + "completed":"2017-12-04T17:13:33.569Z", + "new_balance":"6594.79", + "value":"-11.96" + } + }, + { + "id":"015946e5-f857-48d2-995e-718ced5f34ad", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T01:01:11.661Z", + "completed":"2017-12-12T01:01:11.661Z", + "new_balance":"6591.49", + "value":"-3.30" + } + }, + { + "id":"c0c1cf9a-74f2-4250-979f-6190514f1150", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T01:44:58.268Z", + "completed":"2017-12-12T01:44:58.268Z", + "new_balance":"6590.24", + "value":"-1.25" + } + }, + { + "id":"23581d24-d4b6-4527-a6c0-d1f7b9b54294", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T17:03:44.615Z", + "completed":"2017-12-13T17:03:44.615Z", + "new_balance":"6589.48", + "value":"-0.76" + } + }, + { + "id":"91369792-b11e-47e8-b49a-e8dce97b5fae", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T22:51:18.814Z", + "completed":"2017-12-13T22:51:18.814Z", + "new_balance":"6582.18", + "value":"-7.30" + } + }, + { + "id":"158c2c52-d1a3-4027-ad6a-962c807d877f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T06:21:17.432Z", + "completed":"2017-12-16T06:21:17.432Z", + "new_balance":"6578.14", + "value":"-4.04" + } + }, + { + "id":"479bcaab-4502-4bce-82a4-15e6f21714a1", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T16:23:28.567Z", + "completed":"2017-12-18T16:23:28.567Z", + "new_balance":"6577.74", + "value":"-0.40" + } + }, + { + "id":"25cb7337-0aaa-4319-9508-5e9206c86cec", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:34:33.885Z", + "completed":"2017-12-19T08:34:33.885Z", + "new_balance":"6570.44", + "value":"-7.30" + } + }, + { + "id":"c22a70ea-320d-4275-b2e1-1a4b642d5310", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T13:04:27.611Z", + "completed":"2017-12-19T13:04:27.611Z", + "new_balance":"6565.17", + "value":"-5.27" + } + }, + { + "id":"9444cf6f-fcac-40c0-999f-18bc4c3a9d90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T23:33:27.734Z", + "completed":"2017-12-20T23:33:27.734Z", + "new_balance":"6560.90", + "value":"-4.27" + } + }, + { + "id":"c8f83292-9b6d-49f3-a8a0-77c1a3201a0f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T17:42:29.108Z", + "completed":"2017-12-21T17:42:29.108Z", + "new_balance":"6555.63", + "value":"-5.27" + } + }, + { + "id":"90999d01-3cc3-43d1-848d-2a7ec84d367c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T03:28:38.171Z", + "completed":"2017-12-24T03:28:38.171Z", + "new_balance":"6549.31", + "value":"-6.32" + } + }, + { + "id":"f418b97f-29be-451e-bdc3-88a2fc8fc5b4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T03:29:20.159Z", + "completed":"2017-12-24T03:29:20.159Z", + "new_balance":"6548.26", + "value":"-1.05" + } + }, + { + "id":"cdfb5c16-4506-4c5a-b1cc-9a361ea33d8c", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T14:07:56.322Z", + "completed":"2017-12-24T14:07:56.322Z", + "new_balance":"6544.00", + "value":"-4.26" + } + }, + { + "id":"e185cf41-425e-45f5-8198-48a1ec425323", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T14:13:57.990Z", + "completed":"2017-12-24T14:13:57.990Z", + "new_balance":"6541.75", + "value":"-2.25" + } + }, + { + "id":"dc1f74ec-9fc5-44d2-9bd8-75567360bc85", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T17:41:56.785Z", + "completed":"2017-12-24T17:41:56.785Z", + "new_balance":"6540.98", + "value":"-0.77" + } + }, + { + "id":"a97bb0d4-6a73-49be-be63-82c375eeee07", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T20:24:00.506Z", + "completed":"2017-12-24T20:24:00.506Z", + "new_balance":"6540.44", + "value":"-0.54" + } + }, + { + "id":"33bec6e9-8d03-4967-bca3-b261627f17f9", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T04:21:30.065Z", + "completed":"2017-12-28T04:21:30.065Z", + "new_balance":"6530.65", + "value":"-9.79" + } + }, + { + "id":"80a6fe45-b2fe-4331-8f71-b00a15713031", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T04:37:00.107Z", + "completed":"2017-12-28T04:37:00.107Z", + "new_balance":"6530.13", + "value":"-0.52" + } + }, + { + "id":"16e303b0-97c3-4a3c-84b8-13a4d0a1e95d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T07:38:33.244Z", + "completed":"2017-12-28T07:38:33.244Z", + "new_balance":"6529.61", + "value":"-0.52" + } + }, + { + "id":"68bc384e-aa2c-4dbd-9ea0-810ca71e547d", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T16:06:15.374Z", + "completed":"2017-12-28T16:06:15.374Z", + "new_balance":"6524.79", + "value":"-4.82" + } + }, + { + "id":"da4fda81-0fff-4249-b246-36b57025f922", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T00:37:56.436Z", + "completed":"2017-12-29T00:37:56.436Z", + "new_balance":"6517.83", + "value":"-6.96" + } + }, + { + "id":"e8b8797f-c38a-4bda-81d4-308c55a0fa7b", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T01:49:46.916Z", + "completed":"2017-12-29T01:49:46.916Z", + "new_balance":"6513.68", + "value":"-4.15" + } + }, + { + "id":"28482841-2c8f-4ad0-8acb-6c5220e3c725", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T02:28:30.473Z", + "completed":"2017-12-29T02:28:30.473Z", + "new_balance":"6508.52", + "value":"-5.16" + } + }, + { + "id":"286b45b9-7d72-4f0a-928e-83a2d733ff0a", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T03:39:52.241Z", + "completed":"2017-12-29T03:39:52.241Z", + "new_balance":"6507.76", + "value":"-0.76" + } + }, + { + "id":"1186f9e5-9541-4f6e-9500-ae9783ea655f", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T05:15:18.620Z", + "completed":"2017-12-29T05:15:18.620Z", + "new_balance":"6503.47", + "value":"-4.29" + } + }, + { + "id":"cff6bdea-7363-4bf6-bd3a-78f9510f3a90", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T13:01:07.316Z", + "completed":"2017-12-29T13:01:07.316Z", + "new_balance":"6497.15", + "value":"-6.32" + } + }, + { + "id":"92614ab1-9358-4126-96b0-8ef71f88db22", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T00:19:28.820Z", + "completed":"2017-12-30T00:19:28.820Z", + "new_balance":"6493.60", + "value":"-3.55" + } + }, + { + "id":"fdb52cdb-32b8-48eb-9b6b-2480db879527", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T02:58:31.276Z", + "completed":"2017-12-30T02:58:31.276Z", + "new_balance":"6492.69", + "value":"-0.91" + } + }, + { + "id":"7d60eba1-8f9e-44e2-a673-2b8a60d7e0bd", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T05:45:46.189Z", + "completed":"2017-12-30T05:45:46.189Z", + "new_balance":"6492.10", + "value":"-0.59" + } + }, + { + "id":"454ac18e-8b75-4c10-a672-78857c56e307", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T11:08:24.103Z", + "completed":"2017-12-30T11:08:24.103Z", + "new_balance":"6487.49", + "value":"-4.61" + } + }, + { + "id":"a13b9d89-977d-4683-befe-5a86faeebff4", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:30:52.221Z", + "completed":"2017-12-31T00:30:52.221Z", + "new_balance":"6459.99", + "value":"-27.50" + } + }, + { + "id":"2653716c-5350-46bf-a12e-e61518ee2bdb", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T07:21:00.930Z", + "completed":"2017-12-31T07:21:00.930Z", + "new_balance":"6457.25", + "value":"-2.74" + } + }, + { + "id":"a6b3f9ab-0bb6-47fb-b3df-ac6312ccbb79", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T13:27:06.318Z", + "completed":"2017-12-31T13:27:06.318Z", + "new_balance":"6455.94", + "value":"-1.31" + } + }, + { + "id":"0671b6c5-22fb-4f96-b252-460a1ec1a239", + "this_account":{ + "id":"50f75352-dfa5-4fb5-9f93-18eae3aa590e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T17:06:16.276Z", + "completed":"2017-12-31T17:06:16.276Z", + "new_balance":"6452.88", + "value":"-3.06" + } + }, + { + "id":"a096ff44-bfee-446a-b001-bc02710e5e05", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T10:42:31.847Z", + "completed":"2016-03-02T10:42:31.847Z", + "new_balance":"15492.99", + "value":"-118.32" + } + }, + { + "id":"0ef773df-fa0b-47d9-9ac0-434565221b99", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:31:43.815Z", + "completed":"2016-03-02T14:31:43.815Z", + "new_balance":"15464.12", + "value":"-28.87" + } + }, + { + "id":"caf9b265-98fb-4bbf-a3ad-c62e281fc80e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T09:47:32.585Z", + "completed":"2016-03-03T09:47:32.585Z", + "new_balance":"15456.93", + "value":"-7.19" + } + }, + { + "id":"1b4007a2-bc17-47bf-be2d-f0d31951812f", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T12:10:50.416Z", + "completed":"2016-03-03T12:10:50.416Z", + "new_balance":"15007.22", + "value":"-449.71" + } + }, + { + "id":"3481c810-6fc0-4c65-8935-8351bef5d108", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T09:12:45.923Z", + "completed":"2016-03-04T09:12:45.923Z", + "new_balance":"15000.12", + "value":"-7.10" + } + }, + { + "id":"2fd1d635-13ca-45c7-b3e6-8916de1c952b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T12:46:25.588Z", + "completed":"2016-03-04T12:46:25.588Z", + "new_balance":"14967.91", + "value":"-32.21" + } + }, + { + "id":"5ee3d3b5-6bd8-4d5f-96ed-9db903d1620b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T18:50:03.414Z", + "completed":"2016-03-07T18:50:03.414Z", + "new_balance":"14962.76", + "value":"-5.15" + } + }, + { + "id":"da86e26b-aaed-4870-b824-ef2c85750f54", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T13:14:48.656Z", + "completed":"2016-03-09T13:14:48.656Z", + "new_balance":"14844.44", + "value":"-118.32" + } + }, + { + "id":"24648071-d983-488e-8edf-6edf4e693b91", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T12:00:14.914Z", + "completed":"2016-03-16T12:00:14.914Z", + "new_balance":"14759.52", + "value":"-84.92" + } + }, + { + "id":"52ca9b00-9bc3-437c-8bcf-ac6cb050cd44", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T12:24:49.474Z", + "completed":"2016-03-25T12:24:49.474Z", + "new_balance":"14674.60", + "value":"-84.92" + } + }, + { + "id":"d074cf5a-0afc-4aaf-92cd-8c0a7b1127c3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T20:48:34.577Z", + "completed":"2016-03-30T20:48:34.577Z", + "new_balance":"14397.12", + "value":"-277.48" + } + }, + { + "id":"4789d90f-9e7e-4071-ba39-0ad620d80c63", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T16:03:10.623Z", + "completed":"2016-06-07T16:03:10.623Z", + "new_balance":"14368.25", + "value":"-28.87" + } + }, + { + "id":"cbad2b53-22dc-4b24-85eb-c517bed9b921", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:08:56.895Z", + "completed":"2016-06-07T18:08:56.895Z", + "new_balance":"14249.93", + "value":"-118.32" + } + }, + { + "id":"f97d85e1-169b-409c-bfe5-40a47afde59c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:16:17.840Z", + "completed":"2016-06-07T18:16:17.840Z", + "new_balance":"13800.22", + "value":"-449.71" + } + }, + { + "id":"1536a0b3-f372-4e4c-ac78-5420fc3f0b80", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T04:13:22.410Z", + "completed":"2016-06-10T04:13:22.410Z", + "new_balance":"13793.12", + "value":"-7.10" + } + }, + { + "id":"a9d8e086-e278-472e-a4fb-439db6e42c6c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T20:01:29.405Z", + "completed":"2016-06-14T20:01:29.405Z", + "new_balance":"13760.91", + "value":"-32.21" + } + }, + { + "id":"1a271346-8afa-4276-a5df-620775c05aca", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T05:28:19.852Z", + "completed":"2016-06-19T05:28:19.852Z", + "new_balance":"13753.72", + "value":"-7.19" + } + }, + { + "id":"768b3b34-8d1e-47b9-b44f-92eefb0e2308", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T08:40:17.281Z", + "completed":"2016-06-19T08:40:17.281Z", + "new_balance":"13748.57", + "value":"-5.15" + } + }, + { + "id":"7ad81241-4e41-446f-8633-086c7db2d4b0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T00:18:41.783Z", + "completed":"2016-06-20T00:18:41.783Z", + "new_balance":"13630.25", + "value":"-118.32" + } + }, + { + "id":"489e5144-54a5-4973-bb2f-69f5319e48f0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T07:42:50.482Z", + "completed":"2016-06-28T07:42:50.482Z", + "new_balance":"13545.33", + "value":"-84.92" + } + }, + { + "id":"f4295d22-a77c-4455-bc7e-b99e6e6c7b0e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T01:22:53.618Z", + "completed":"2016-07-01T01:22:53.618Z", + "new_balance":"13267.85", + "value":"-277.48" + } + }, + { + "id":"6fedafee-f622-4db9-9f34-ad3ba2223d4b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T18:22:45.531Z", + "completed":"2016-07-01T18:22:45.531Z", + "new_balance":"13182.93", + "value":"-84.92" + } + }, + { + "id":"558d473b-1627-4c37-866e-95a277c14d49", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T07:57:47.362Z", + "completed":"2016-09-02T07:57:47.362Z", + "new_balance":"13154.06", + "value":"-28.87" + } + }, + { + "id":"0a5464f5-3a7a-4142-b167-215c8a120ae1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T17:35:33.414Z", + "completed":"2016-09-02T17:35:33.414Z", + "new_balance":"13035.74", + "value":"-118.32" + } + }, + { + "id":"d463e9e3-ae5b-498f-88f8-172a845b4c44", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T19:11:30.820Z", + "completed":"2016-09-03T19:11:30.820Z", + "new_balance":"13028.55", + "value":"-7.19" + } + }, + { + "id":"71cd7223-b084-4b13-994e-d174d813d886", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T19:20:18.783Z", + "completed":"2016-09-03T19:20:18.783Z", + "new_balance":"13024.37", + "value":"-4.18" + } + }, + { + "id":"10ef14bd-0ed9-4257-9488-cd62959733fc", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T22:55:43.934Z", + "completed":"2016-09-03T22:55:43.934Z", + "new_balance":"12574.66", + "value":"-449.71" + } + }, + { + "id":"413d0b50-aa3a-45ba-be32-4e3f5a205cd7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T17:29:11.119Z", + "completed":"2016-09-04T17:29:11.119Z", + "new_balance":"12542.45", + "value":"-32.21" + } + }, + { + "id":"d5ad306f-0090-4f66-bb69-ff2a96275399", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T05:54:36.949Z", + "completed":"2016-09-07T05:54:36.949Z", + "new_balance":"12537.30", + "value":"-5.15" + } + }, + { + "id":"9f520f65-c033-4be6-93ba-c92ccc73c5e7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T07:05:19.995Z", + "completed":"2016-09-09T07:05:19.995Z", + "new_balance":"12418.98", + "value":"-118.32" + } + }, + { + "id":"0954420a-ccce-407b-8b99-ef212637a48d", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T07:55:47.270Z", + "completed":"2016-09-16T07:55:47.270Z", + "new_balance":"12334.06", + "value":"-84.92" + } + }, + { + "id":"dde0f99f-1550-4e4f-a58f-134ecc13d136", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T09:56:56.596Z", + "completed":"2016-09-25T09:56:56.596Z", + "new_balance":"12249.14", + "value":"-84.92" + } + }, + { + "id":"27602cf2-e1a5-47bc-adf5-d4424523fac5", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T12:10:27.741Z", + "completed":"2016-09-30T12:10:27.741Z", + "new_balance":"11971.66", + "value":"-277.48" + } + }, + { + "id":"6dfd93a4-d570-4339-9bb8-0248c3fd75d6", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T10:32:51.778Z", + "completed":"2016-12-07T10:32:51.778Z", + "new_balance":"11521.95", + "value":"-449.71" + } + }, + { + "id":"e8ab3a71-2a9d-4854-87c4-f617fe8423d1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T13:12:08.564Z", + "completed":"2016-12-07T13:12:08.564Z", + "new_balance":"11403.63", + "value":"-118.32" + } + }, + { + "id":"4259c628-695b-416c-93c9-b87585839b0a", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T16:23:24.092Z", + "completed":"2016-12-07T16:23:24.092Z", + "new_balance":"11374.76", + "value":"-28.87" + } + }, + { + "id":"79f31f37-956f-4acf-968a-f646b7a43c75", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T11:20:01.549Z", + "completed":"2016-12-11T11:20:01.549Z", + "new_balance":"11367.57", + "value":"-7.19" + } + }, + { + "id":"b2f1e511-cbaa-4af8-8725-12dfcb927220", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T22:43:27.404Z", + "completed":"2016-12-11T22:43:27.404Z", + "new_balance":"11360.47", + "value":"-7.10" + } + }, + { + "id":"05c1d67b-b274-4f3f-acb3-ccb745d18cc3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T04:49:44.082Z", + "completed":"2016-12-14T04:49:44.082Z", + "new_balance":"11328.26", + "value":"-32.21" + } + }, + { + "id":"68809598-6dfd-4232-84e0-ba161aae3eb1", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T01:37:57.998Z", + "completed":"2016-12-20T01:37:57.998Z", + "new_balance":"11323.11", + "value":"-5.15" + } + }, + { + "id":"6984a86e-1693-4532-a9d1-04c727a1c44a", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T08:00:57.190Z", + "completed":"2016-12-22T08:00:57.190Z", + "new_balance":"11204.79", + "value":"-118.32" + } + }, + { + "id":"bb52cdd3-5515-4d07-b523-24d78dd4f517", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T11:27:07.185Z", + "completed":"2016-12-28T11:27:07.185Z", + "new_balance":"11119.87", + "value":"-84.92" + } + }, + { + "id":"9e40e44e-bac7-4a96-be9c-c89e7eb3b6bd", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T07:48:09.906Z", + "completed":"2016-12-31T07:48:09.906Z", + "new_balance":"11034.95", + "value":"-84.92" + } + }, + { + "id":"928b697c-2290-4182-ac6e-fb3b04698895", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T13:04:06.958Z", + "completed":"2016-12-31T13:04:06.958Z", + "new_balance":"10757.47", + "value":"-277.48" + } + }, + { + "id":"a92462f9-e2a5-4c82-b26d-b8ab91c771eb", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T11:26:07.189Z", + "completed":"2017-03-02T11:26:07.189Z", + "new_balance":"10639.15", + "value":"-118.32" + } + }, + { + "id":"6e2f6203-b097-45cc-a7b4-62398947ef3e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T16:04:42.760Z", + "completed":"2017-03-02T16:04:42.760Z", + "new_balance":"10610.28", + "value":"-28.87" + } + }, + { + "id":"56856d9c-a2c1-4932-95be-65ac339aa296", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T02:50:10.563Z", + "completed":"2017-03-03T02:50:10.563Z", + "new_balance":"10160.57", + "value":"-449.71" + } + }, + { + "id":"9953f0fe-1fb9-45e3-baa6-b400326f73c0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T20:47:37.722Z", + "completed":"2017-03-03T20:47:37.722Z", + "new_balance":"10153.38", + "value":"-7.19" + } + }, + { + "id":"db966633-aec8-40ad-9068-01d9de98df40", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T12:48:52.392Z", + "completed":"2017-03-04T12:48:52.392Z", + "new_balance":"10121.17", + "value":"-32.21" + } + }, + { + "id":"96cf7d50-71c3-4761-8f70-5fdad51de571", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T15:15:38.391Z", + "completed":"2017-03-04T15:15:38.391Z", + "new_balance":"10114.07", + "value":"-7.10" + } + }, + { + "id":"063974b1-c11d-4ed1-bae6-d63dfe48245f", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T17:49:19.469Z", + "completed":"2017-03-07T17:49:19.469Z", + "new_balance":"10108.92", + "value":"-5.15" + } + }, + { + "id":"9e15e6f2-7b77-43de-9282-d339832e0b90", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T05:28:02.940Z", + "completed":"2017-03-09T05:28:02.940Z", + "new_balance":"9990.60", + "value":"-118.32" + } + }, + { + "id":"5fb3627d-f902-4444-b021-b788ec1a04d8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T18:42:48.649Z", + "completed":"2017-03-16T18:42:48.649Z", + "new_balance":"9905.68", + "value":"-84.92" + } + }, + { + "id":"5aecc601-a0b2-4f4c-add6-9ab253e82060", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T18:56:46.815Z", + "completed":"2017-03-25T18:56:46.815Z", + "new_balance":"9820.76", + "value":"-84.92" + } + }, + { + "id":"6699754f-3df4-4036-a723-dee04856d7a5", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T01:40:40.027Z", + "completed":"2017-03-30T01:40:40.027Z", + "new_balance":"9543.28", + "value":"-277.48" + } + }, + { + "id":"b8c9b55a-69e9-4e4a-b4dd-63643dfdf005", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T08:49:44.663Z", + "completed":"2017-06-07T08:49:44.663Z", + "new_balance":"9424.96", + "value":"-118.32" + } + }, + { + "id":"e2601952-7550-4593-88c1-3da998af68b2", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T10:39:27.043Z", + "completed":"2017-06-07T10:39:27.043Z", + "new_balance":"9396.09", + "value":"-28.87" + } + }, + { + "id":"1dbaba9f-8d20-4409-b7d1-2fe5ce52f2f4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T18:21:17.398Z", + "completed":"2017-06-07T18:21:17.398Z", + "new_balance":"8946.38", + "value":"-449.71" + } + }, + { + "id":"bb36177f-6f23-489d-aeb7-fdcf705f35e4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T21:47:22.794Z", + "completed":"2017-06-10T21:47:22.794Z", + "new_balance":"8939.28", + "value":"-7.10" + } + }, + { + "id":"ef328c3f-5da6-45b8-b10c-f04800250b2c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T18:03:46.041Z", + "completed":"2017-06-14T18:03:46.041Z", + "new_balance":"8907.07", + "value":"-32.21" + } + }, + { + "id":"6d82b3d5-196a-4464-a4f8-59855b30d348", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T08:27:39.050Z", + "completed":"2017-06-19T08:27:39.050Z", + "new_balance":"8899.88", + "value":"-7.19" + } + }, + { + "id":"92f80765-3f27-4892-b267-1bdb7bbc241d", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T15:04:20.536Z", + "completed":"2017-06-19T15:04:20.536Z", + "new_balance":"8894.73", + "value":"-5.15" + } + }, + { + "id":"32c4bf41-07ce-4cfb-8346-f66b3ac3a2a7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T19:10:29.568Z", + "completed":"2017-06-20T19:10:29.568Z", + "new_balance":"8776.41", + "value":"-118.32" + } + }, + { + "id":"c2c6ec47-7499-4786-971b-273e204806ef", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T17:50:04.645Z", + "completed":"2017-06-28T17:50:04.645Z", + "new_balance":"8691.49", + "value":"-84.92" + } + }, + { + "id":"84f6e572-c796-41e9-930b-bc1ad4a7336c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:05:05.157Z", + "completed":"2017-07-01T17:05:05.157Z", + "new_balance":"8606.57", + "value":"-84.92" + } + }, + { + "id":"63ea2f7f-97e1-4d82-a0ab-c4c4802a1ea3", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T18:02:31.117Z", + "completed":"2017-07-01T18:02:31.117Z", + "new_balance":"8329.09", + "value":"-277.48" + } + }, + { + "id":"a9d2cdee-21d9-4e9f-b578-68d24d0b9073", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T03:50:38.556Z", + "completed":"2017-09-02T03:50:38.556Z", + "new_balance":"8300.22", + "value":"-28.87" + } + }, + { + "id":"f746ad35-4e87-4915-b04e-a01f068d678e", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T06:01:03.138Z", + "completed":"2017-09-02T06:01:03.138Z", + "new_balance":"8181.90", + "value":"-118.32" + } + }, + { + "id":"3baf4cfd-bb87-432b-b03c-f3c3e1e13b6b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T01:30:52.382Z", + "completed":"2017-09-03T01:30:52.382Z", + "new_balance":"7732.19", + "value":"-449.71" + } + }, + { + "id":"b206490a-ee66-4a90-987f-f0faf4242ffa", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T07:28:17.691Z", + "completed":"2017-09-03T07:28:17.691Z", + "new_balance":"7728.01", + "value":"-4.18" + } + }, + { + "id":"86810ff2-0e1f-4fdc-aa0e-aa0780a8e325", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T16:25:30.568Z", + "completed":"2017-09-03T16:25:30.568Z", + "new_balance":"7720.82", + "value":"-7.19" + } + }, + { + "id":"0eec4bd0-8f79-4257-b83a-6b3fcf72bac6", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T17:39:37.435Z", + "completed":"2017-09-04T17:39:37.435Z", + "new_balance":"7688.61", + "value":"-32.21" + } + }, + { + "id":"16eec5a9-f390-427b-a00b-238ca410d939", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T09:52:51.176Z", + "completed":"2017-09-07T09:52:51.176Z", + "new_balance":"7683.46", + "value":"-5.15" + } + }, + { + "id":"6cab3483-3a21-47b4-9e4e-c7c7cf91f604", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T14:17:16.057Z", + "completed":"2017-09-09T14:17:16.057Z", + "new_balance":"7565.14", + "value":"-118.32" + } + }, + { + "id":"f55170e3-e422-4de0-81ee-d7d40723328b", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T09:26:03.254Z", + "completed":"2017-09-16T09:26:03.254Z", + "new_balance":"7480.22", + "value":"-84.92" + } + }, + { + "id":"df5f6c2c-92b8-4fc2-93c8-f70592399cc7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T04:21:29.847Z", + "completed":"2017-09-25T04:21:29.847Z", + "new_balance":"7395.30", + "value":"-84.92" + } + }, + { + "id":"c37ffda0-109d-49f8-9ecc-49b024c11b3c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T02:16:21.534Z", + "completed":"2017-09-30T02:16:21.534Z", + "new_balance":"7117.82", + "value":"-277.48" + } + }, + { + "id":"bb56fa16-b53a-4afa-83db-79ae0bdebfbf", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T19:43:37.002Z", + "completed":"2017-12-07T19:43:37.002Z", + "new_balance":"6668.11", + "value":"-449.71" + } + }, + { + "id":"4f9c0a08-0d72-4cc2-92e0-fe9189bc77c4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T22:13:56.981Z", + "completed":"2017-12-07T22:13:56.981Z", + "new_balance":"6639.24", + "value":"-28.87" + } + }, + { + "id":"3c48a2c7-db16-4348-a24e-67e06fc72329", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T23:41:34.385Z", + "completed":"2017-12-07T23:41:34.385Z", + "new_balance":"6520.92", + "value":"-118.32" + } + }, + { + "id":"1150610d-4984-442b-8506-296b8faf42d7", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T19:38:16.111Z", + "completed":"2017-12-11T19:38:16.111Z", + "new_balance":"6513.73", + "value":"-7.19" + } + }, + { + "id":"a4c2b86f-209b-4767-b5ed-ebce4b1c6cb8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T23:24:02.321Z", + "completed":"2017-12-11T23:24:02.321Z", + "new_balance":"6506.63", + "value":"-7.10" + } + }, + { + "id":"765c472a-ef53-47e2-aedd-9738beb6aca8", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T11:00:33.516Z", + "completed":"2017-12-14T11:00:33.516Z", + "new_balance":"6474.42", + "value":"-32.21" + } + }, + { + "id":"0295afde-bb13-406b-9464-d83a89d274a0", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T10:07:40.903Z", + "completed":"2017-12-20T10:07:40.903Z", + "new_balance":"6469.27", + "value":"-5.15" + } + }, + { + "id":"0d66adbe-b080-478b-88c9-01da9c1dbc5c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T15:41:04.585Z", + "completed":"2017-12-22T15:41:04.585Z", + "new_balance":"6350.95", + "value":"-118.32" + } + }, + { + "id":"71273505-f1de-4244-9988-69ac02d5fa3c", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T17:23:06.953Z", + "completed":"2017-12-28T17:23:06.953Z", + "new_balance":"6266.03", + "value":"-84.92" + } + }, + { + "id":"73f954b3-30a1-4702-88bb-3ad12f881510", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T00:47:11.622Z", + "completed":"2017-12-31T00:47:11.622Z", + "new_balance":"5988.55", + "value":"-277.48" + } + }, + { + "id":"fb613c7e-f687-431e-b30a-374bfa3b17a4", + "this_account":{ + "id":"51d20dde-9956-4169-a3b6-80ab60186b6b", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T22:14:34.655Z", + "completed":"2017-12-31T22:14:34.655Z", + "new_balance":"5903.63", + "value":"-84.92" + } + }, + { + "id":"be80a5e7-9868-4d30-9697-fa318f319d0e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T17:53:31.301Z", + "completed":"2016-01-01T17:53:31.301Z", + "new_balance":"4118.45", + "value":"140.98" + } + }, + { + "id":"ec17fa5a-c2dc-46a4-a187-130fd30cced2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T22:56:33.710Z", + "completed":"2016-01-01T22:56:33.710Z", + "new_balance":"4301.15", + "value":"182.70" + } + }, + { + "id":"40f44175-288a-41bb-a293-db5fcd24d807", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T03:30:48.069Z", + "completed":"2016-01-02T03:30:48.069Z", + "new_balance":"4269.43", + "value":"-31.72" + } + }, + { + "id":"53870e62-6d9b-4f9d-9d66-d78da331e6ef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T06:05:20.047Z", + "completed":"2016-01-03T06:05:20.047Z", + "new_balance":"4264.61", + "value":"-4.82" + } + }, + { + "id":"980d44d0-ceb2-46d2-acbd-6ce0a4a4cb76", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T16:08:13.045Z", + "completed":"2016-01-03T16:08:13.045Z", + "new_balance":"4263.94", + "value":"-0.67" + } + }, + { + "id":"56ab6b13-b23e-4a04-b6e4-ee318921cd05", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T20:09:09.535Z", + "completed":"2016-01-03T20:09:09.535Z", + "new_balance":"4262.20", + "value":"-1.74" + } + }, + { + "id":"c443edf4-c060-4649-986b-735c15b72c8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T15:29:51.529Z", + "completed":"2016-01-04T15:29:51.529Z", + "new_balance":"4260.80", + "value":"-1.40" + } + }, + { + "id":"70a5afd9-bc67-4025-b603-a74d041163a9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T22:24:23.590Z", + "completed":"2016-01-05T22:24:23.590Z", + "new_balance":"4260.28", + "value":"-0.52" + } + }, + { + "id":"673b8592-23d7-48aa-88c1-26da848e6cf8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T03:34:23.469Z", + "completed":"2016-01-07T03:34:23.469Z", + "new_balance":"4257.69", + "value":"-2.59" + } + }, + { + "id":"c544f142-5347-40d7-9d2b-59d213118b5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T13:56:21.994Z", + "completed":"2016-01-07T13:56:21.994Z", + "new_balance":"4256.09", + "value":"-1.60" + } + }, + { + "id":"bee88f94-9629-4c5d-b51c-e2dc0b8f475e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T07:09:27.932Z", + "completed":"2016-01-08T07:09:27.932Z", + "new_balance":"4254.22", + "value":"-1.87" + } + }, + { + "id":"42dbc82c-16c9-4a5d-9f58-b9fa0db76707", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T14:11:22.733Z", + "completed":"2016-01-08T14:11:22.733Z", + "new_balance":"4252.54", + "value":"-1.68" + } + }, + { + "id":"b4c3b83c-0f29-4f66-8a00-a9bbcb44e14b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:45:10.530Z", + "completed":"2016-01-09T07:45:10.530Z", + "new_balance":"4250.23", + "value":"-2.31" + } + }, + { + "id":"9a89c8ff-fb90-4a09-bf6f-b2ce8fbfd57c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T22:17:17.862Z", + "completed":"2016-01-09T22:17:17.862Z", + "new_balance":"4244.10", + "value":"-6.13" + } + }, + { + "id":"d59e4b7a-ca96-44da-b61f-d20232455b03", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:14:37.292Z", + "completed":"2016-01-10T00:14:37.292Z", + "new_balance":"4236.40", + "value":"-7.70" + } + }, + { + "id":"d5c67da0-2d8c-40ed-8d7f-505f4c76a1a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T06:47:21.117Z", + "completed":"2016-01-10T06:47:21.117Z", + "new_balance":"4231.87", + "value":"-4.53" + } + }, + { + "id":"14bb55f4-8b92-4c0c-91ce-d78abbdfdcfb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T05:17:53.566Z", + "completed":"2016-01-11T05:17:53.566Z", + "new_balance":"4240.86", + "value":"8.99" + } + }, + { + "id":"2b94e10c-014c-4404-8dd8-ed501d7bf7c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T09:46:12.261Z", + "completed":"2016-01-11T09:46:12.261Z", + "new_balance":"4240.39", + "value":"-0.47" + } + }, + { + "id":"c739fb74-3fea-46a7-b6d5-3d7f1cc85a3f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T10:26:36.029Z", + "completed":"2016-01-11T10:26:36.029Z", + "new_balance":"4234.91", + "value":"-5.48" + } + }, + { + "id":"24c3ac7e-53ad-46b6-946e-867b4794d4ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T04:09:42.731Z", + "completed":"2016-01-12T04:09:42.731Z", + "new_balance":"4234.10", + "value":"-0.81" + } + }, + { + "id":"fbfac57d-20ff-4ead-b26d-57017a5c13ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T02:02:50.324Z", + "completed":"2016-01-15T02:02:50.324Z", + "new_balance":"4231.67", + "value":"-2.43" + } + }, + { + "id":"22a94dd1-0bc6-4495-b7d8-5e08f6428870", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T20:31:14.332Z", + "completed":"2016-01-16T20:31:14.332Z", + "new_balance":"4228.37", + "value":"-3.30" + } + }, + { + "id":"a10f7ba8-f171-4748-b98e-0661c937e4c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T22:31:50.318Z", + "completed":"2016-01-17T22:31:50.318Z", + "new_balance":"4226.80", + "value":"-1.57" + } + }, + { + "id":"6063b1a3-6c29-44d6-8bfa-4a7a25181725", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T07:01:41.755Z", + "completed":"2016-01-20T07:01:41.755Z", + "new_balance":"4226.28", + "value":"-0.52" + } + }, + { + "id":"9e2b5353-3a33-47d0-b682-c091b55caed4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T05:56:05.086Z", + "completed":"2016-01-21T05:56:05.086Z", + "new_balance":"4222.56", + "value":"-3.72" + } + }, + { + "id":"7f2899fd-c653-4a9d-8171-458f29ad522a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T15:16:28.684Z", + "completed":"2016-01-23T15:16:28.684Z", + "new_balance":"4200.20", + "value":"-22.36" + } + }, + { + "id":"b90e3c18-dfcd-4031-8e5d-37022d700e77", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:01:14.117Z", + "completed":"2016-02-01T02:01:14.117Z", + "new_balance":"4341.18", + "value":"140.98" + } + }, + { + "id":"a0a192bf-cccb-4bfc-944d-be7947c36352", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T19:04:06.118Z", + "completed":"2016-02-03T19:04:06.118Z", + "new_balance":"4309.46", + "value":"-31.72" + } + }, + { + "id":"6e58aa62-7c1b-43ca-93c8-2d4fd287d542", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T22:13:01.694Z", + "completed":"2016-02-03T22:13:01.694Z", + "new_balance":"4296.36", + "value":"-13.10" + } + }, + { + "id":"f668c9dc-061e-4a1b-af5b-0a325ca429fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T15:56:16.749Z", + "completed":"2016-02-04T15:56:16.749Z", + "new_balance":"4295.04", + "value":"-1.32" + } + }, + { + "id":"3e520267-2524-43f5-a80e-a68889bb64c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T14:20:20.497Z", + "completed":"2016-02-05T14:20:20.497Z", + "new_balance":"4294.37", + "value":"-0.67" + } + }, + { + "id":"21740375-7132-4bf0-8aa3-ad7d83f3e4ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T22:52:35.028Z", + "completed":"2016-02-06T22:52:35.028Z", + "new_balance":"4292.18", + "value":"-2.19" + } + }, + { + "id":"0ce90d1f-29d6-4ac3-9db1-6d2b89405889", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T04:17:12.267Z", + "completed":"2016-02-07T04:17:12.267Z", + "new_balance":"4287.61", + "value":"-4.57" + } + }, + { + "id":"2598f054-0ffe-43ad-8bdc-7163a1b19063", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T15:11:48.266Z", + "completed":"2016-02-07T15:11:48.266Z", + "new_balance":"4285.30", + "value":"-2.31" + } + }, + { + "id":"1ce6350b-b03b-46a6-976b-dea7dd1f217c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T16:42:52.501Z", + "completed":"2016-02-07T16:42:52.501Z", + "new_balance":"4277.60", + "value":"-7.70" + } + }, + { + "id":"a4d4557b-47cc-4f91-827d-601264bbdcd7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T08:22:44.229Z", + "completed":"2016-02-08T08:22:44.229Z", + "new_balance":"4273.46", + "value":"-4.14" + } + }, + { + "id":"da2dc289-a72a-41c6-8bf1-2a784d0cebca", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T18:56:06.432Z", + "completed":"2016-02-09T18:56:06.432Z", + "new_balance":"4271.06", + "value":"-2.40" + } + }, + { + "id":"2d4527a0-b5a9-453e-98dc-0fc2fa254e5d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T02:16:53.764Z", + "completed":"2016-02-10T02:16:53.764Z", + "new_balance":"4270.54", + "value":"-0.52" + } + }, + { + "id":"ed640df0-364e-451b-999b-b257eafeb5c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T06:03:05.640Z", + "completed":"2016-02-12T06:03:05.640Z", + "new_balance":"4267.66", + "value":"-2.88" + } + }, + { + "id":"fafbf3e0-632d-45c4-ab0f-b90fbe021290", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:47:18.693Z", + "completed":"2016-02-14T14:47:18.693Z", + "new_balance":"4265.35", + "value":"-2.31" + } + }, + { + "id":"10bb8a82-ebf2-4e3e-8e78-4dced17dfcae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T11:13:47.288Z", + "completed":"2016-02-16T11:13:47.288Z", + "new_balance":"4260.74", + "value":"-4.61" + } + }, + { + "id":"869c8fd4-5b97-4fec-9566-0f07017642ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T13:30:40.345Z", + "completed":"2016-02-16T13:30:40.345Z", + "new_balance":"4260.27", + "value":"-0.47" + } + }, + { + "id":"350aa440-16f4-4c59-9eba-8319c5bb3391", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T11:47:28.652Z", + "completed":"2016-02-18T11:47:28.652Z", + "new_balance":"4259.68", + "value":"-0.59" + } + }, + { + "id":"fe47ee9e-b246-4114-a430-74567bd4483d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T07:34:54.126Z", + "completed":"2016-02-21T07:34:54.126Z", + "new_balance":"4255.96", + "value":"-3.72" + } + }, + { + "id":"8c523c46-3c2f-446e-bfa9-31420b3bd167", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T19:10:54.607Z", + "completed":"2016-02-21T19:10:54.607Z", + "new_balance":"4267.36", + "value":"11.40" + } + }, + { + "id":"20d48455-30b5-4d23-8ee0-7e47495e214b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T21:24:54.473Z", + "completed":"2016-02-27T21:24:54.473Z", + "new_balance":"4245.00", + "value":"-22.36" + } + }, + { + "id":"b0b5944b-52b7-49e1-b734-8a4326070ce4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T18:39:17.599Z", + "completed":"2016-03-01T18:39:17.599Z", + "new_balance":"4385.98", + "value":"140.98" + } + }, + { + "id":"4a8eb5eb-6cea-4437-9a28-0bf58c7d64d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T01:43:46.812Z", + "completed":"2016-03-03T01:43:46.812Z", + "new_balance":"4354.26", + "value":"-31.72" + } + }, + { + "id":"54d43d5c-d384-430f-be6b-6dbacc097cc9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T07:26:02.055Z", + "completed":"2016-03-04T07:26:02.055Z", + "new_balance":"4349.65", + "value":"-4.61" + } + }, + { + "id":"3490a3ac-bf66-49ad-927d-1fa5d0e88036", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T07:46:41.072Z", + "completed":"2016-03-04T07:46:41.072Z", + "new_balance":"4346.35", + "value":"-3.30" + } + }, + { + "id":"48fad873-3394-4311-9aab-27940d668185", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T15:46:32.999Z", + "completed":"2016-03-04T15:46:32.999Z", + "new_balance":"4342.89", + "value":"-3.46" + } + }, + { + "id":"e5e9585d-a5ee-456d-ba2c-91c2b178633e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T16:17:30.898Z", + "completed":"2016-03-04T16:17:30.898Z", + "new_balance":"4340.84", + "value":"-2.05" + } + }, + { + "id":"2e329fbc-55e2-4089-8a02-1fba554b5945", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T01:58:21.130Z", + "completed":"2016-03-05T01:58:21.130Z", + "new_balance":"4340.37", + "value":"-0.47" + } + }, + { + "id":"2ba6b635-f651-456a-b103-643e5cdba490", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T02:43:44.064Z", + "completed":"2016-03-05T02:43:44.064Z", + "new_balance":"4339.07", + "value":"-1.30" + } + }, + { + "id":"95f0bdee-8731-49a5-9328-1bc1f8a3e817", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T13:48:13.388Z", + "completed":"2016-03-05T13:48:13.388Z", + "new_balance":"4331.37", + "value":"-7.70" + } + }, + { + "id":"14672a94-21f6-43df-b9a4-4a67671cbce5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T17:42:09.230Z", + "completed":"2016-03-05T17:42:09.230Z", + "new_balance":"4324.62", + "value":"-6.75" + } + }, + { + "id":"14b995b3-ebb8-4480-87e9-48fe82f5adbb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T13:03:54.723Z", + "completed":"2016-03-06T13:03:54.723Z", + "new_balance":"4317.98", + "value":"-6.64" + } + }, + { + "id":"c8ad5d5a-af3b-4e9e-97e4-d08228f0ba3c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T15:16:52.306Z", + "completed":"2016-03-06T15:16:52.306Z", + "new_balance":"4310.24", + "value":"-7.74" + } + }, + { + "id":"e18f6384-1553-464f-bbeb-fd880d137b02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T05:36:45.640Z", + "completed":"2016-03-07T05:36:45.640Z", + "new_balance":"4309.77", + "value":"-0.47" + } + }, + { + "id":"70f5b331-9952-4a63-b413-76a3484ee257", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T21:36:31.341Z", + "completed":"2016-03-07T21:36:31.341Z", + "new_balance":"4308.97", + "value":"-0.80" + } + }, + { + "id":"a16302ef-700c-4fec-895c-9868c0c7d98d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T03:08:56.772Z", + "completed":"2016-03-08T03:08:56.772Z", + "new_balance":"4308.17", + "value":"-0.80" + } + }, + { + "id":"7e1786d8-fd97-46ec-8e83-5e7d8f8e9de1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T19:54:29.971Z", + "completed":"2016-03-08T19:54:29.971Z", + "new_balance":"4307.40", + "value":"-0.77" + } + }, + { + "id":"fc32c44f-8fba-41a6-906e-b3d57ad3d5c1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T18:19:19.676Z", + "completed":"2016-03-10T18:19:19.676Z", + "new_balance":"4304.69", + "value":"-2.71" + } + }, + { + "id":"a0a68a2d-0130-4a70-ae08-06e6ddb5d3cb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T09:19:35.096Z", + "completed":"2016-03-11T09:19:35.096Z", + "new_balance":"4303.09", + "value":"-1.60" + } + }, + { + "id":"3de0d818-9655-4cfe-b832-9e7343eaa42c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T13:46:10.211Z", + "completed":"2016-03-11T13:46:10.211Z", + "new_balance":"4300.37", + "value":"-2.72" + } + }, + { + "id":"b88ec9f0-ed11-4825-8bbd-471eeb134919", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T21:24:52.977Z", + "completed":"2016-03-11T21:24:52.977Z", + "new_balance":"4299.90", + "value":"-0.47" + } + }, + { + "id":"e059f249-babc-4b26-b5c6-103209b09268", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T03:37:56.616Z", + "completed":"2016-03-12T03:37:56.616Z", + "new_balance":"4293.74", + "value":"-6.16" + } + }, + { + "id":"034a70ec-891a-4397-ac4c-2d097e1dc9e9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T14:09:14.957Z", + "completed":"2016-03-12T14:09:14.957Z", + "new_balance":"4293.27", + "value":"-0.47" + } + }, + { + "id":"99fdd46a-985a-4498-9d65-2c78bdfaaa64", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T14:56:23.819Z", + "completed":"2016-03-12T14:56:23.819Z", + "new_balance":"4283.12", + "value":"-10.15" + } + }, + { + "id":"de84a75e-be1e-447b-8f11-db334e6ec640", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:24:26.843Z", + "completed":"2016-03-12T16:24:26.843Z", + "new_balance":"4280.53", + "value":"-2.59" + } + }, + { + "id":"b85c4718-0ba3-47a5-a9c3-4f7bff97c6f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T12:13:07.460Z", + "completed":"2016-03-13T12:13:07.460Z", + "new_balance":"4277.95", + "value":"-2.58" + } + }, + { + "id":"5e6708c4-f0d2-4cf0-9517-e3452ec118bc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T15:29:27.050Z", + "completed":"2016-03-13T15:29:27.050Z", + "new_balance":"4277.48", + "value":"-0.47" + } + }, + { + "id":"be469003-a1e9-485e-bf08-f079863d06bd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T04:53:25.891Z", + "completed":"2016-03-15T04:53:25.891Z", + "new_balance":"4272.56", + "value":"-4.92" + } + }, + { + "id":"2f04644e-fdef-43df-b3ce-06439866f0f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T06:42:44.586Z", + "completed":"2016-03-15T06:42:44.586Z", + "new_balance":"4268.44", + "value":"-4.12" + } + }, + { + "id":"99e270a9-379e-4769-afb8-a3b56751d307", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T14:23:53.870Z", + "completed":"2016-03-17T14:23:53.870Z", + "new_balance":"4264.05", + "value":"-4.39" + } + }, + { + "id":"e225bf70-c983-4fe6-a0ad-def73f7ed2ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T05:45:04.657Z", + "completed":"2016-03-18T05:45:04.657Z", + "new_balance":"4254.44", + "value":"-9.61" + } + }, + { + "id":"a54b4d47-cae0-454b-9e88-6b0853742107", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T04:49:47.376Z", + "completed":"2016-03-20T04:49:47.376Z", + "new_balance":"4242.08", + "value":"-12.36" + } + }, + { + "id":"1a8bf80c-69a6-418b-b662-6d444754aca2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:27:40.022Z", + "completed":"2016-03-22T06:27:40.022Z", + "new_balance":"4238.61", + "value":"-3.47" + } + }, + { + "id":"64a0ab82-c9fe-412a-84cb-f979ea20a3f3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T05:31:49.784Z", + "completed":"2016-03-25T05:31:49.784Z", + "new_balance":"4238.14", + "value":"-0.47" + } + }, + { + "id":"45f90d1c-7f85-424e-a6af-98a9ccee4d97", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T16:27:59.768Z", + "completed":"2016-03-25T16:27:59.768Z", + "new_balance":"4236.99", + "value":"-1.15" + } + }, + { + "id":"9c19d334-a7c6-4e97-8e37-e80c0f7a2c86", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T15:33:31.467Z", + "completed":"2016-03-26T15:33:31.467Z", + "new_balance":"4234.60", + "value":"-2.39" + } + }, + { + "id":"773c8bbd-2b1c-4140-8b04-790b4bb94c25", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T19:48:19.531Z", + "completed":"2016-03-26T19:48:19.531Z", + "new_balance":"4233.25", + "value":"-1.35" + } + }, + { + "id":"e9c9c692-31a2-4335-8fae-db40e686c495", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:14:03.023Z", + "completed":"2016-03-27T22:14:03.023Z", + "new_balance":"4232.05", + "value":"-1.20" + } + }, + { + "id":"49c2915b-35e5-4c67-a28b-f9aeb6cd53f9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T11:34:40.306Z", + "completed":"2016-03-28T11:34:40.306Z", + "new_balance":"4228.33", + "value":"-3.72" + } + }, + { + "id":"0a8afe7a-058d-4398-9145-c7613d6334cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T11:20:04.158Z", + "completed":"2016-03-31T11:20:04.158Z", + "new_balance":"4205.97", + "value":"-22.36" + } + }, + { + "id":"688765c8-9cb3-4f0d-963d-baf786f12e7b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T01:37:42.015Z", + "completed":"2016-04-01T01:37:42.015Z", + "new_balance":"4346.95", + "value":"140.98" + } + }, + { + "id":"4e9dae3d-2408-4478-be2a-b91dbaa67899", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T06:54:59.362Z", + "completed":"2016-04-01T06:54:59.362Z", + "new_balance":"4315.23", + "value":"-31.72" + } + }, + { + "id":"e1520a33-c5ae-4079-b3b5-25338e9f9196", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T21:37:36.987Z", + "completed":"2016-04-01T21:37:36.987Z", + "new_balance":"4497.93", + "value":"182.70" + } + }, + { + "id":"4212d544-7125-4d26-9765-aac59359db7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T01:47:11.899Z", + "completed":"2016-04-03T01:47:11.899Z", + "new_balance":"4497.26", + "value":"-0.67" + } + }, + { + "id":"8eae3507-ab3b-47ab-a262-8d78991726b0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T14:14:10.937Z", + "completed":"2016-04-03T14:14:10.937Z", + "new_balance":"4495.52", + "value":"-1.74" + } + }, + { + "id":"a94bd2d6-0755-4d9f-9e08-7395d1422cc7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T14:21:56.698Z", + "completed":"2016-04-03T14:21:56.698Z", + "new_balance":"4490.70", + "value":"-4.82" + } + }, + { + "id":"125465f0-1e6f-424f-b8fa-09316cb61dd1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T19:09:41.537Z", + "completed":"2016-04-05T19:09:41.537Z", + "new_balance":"4490.18", + "value":"-0.52" + } + }, + { + "id":"36b90da8-f277-4247-80d2-0a1f6ad8ba2a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T20:41:57.297Z", + "completed":"2016-04-05T20:41:57.297Z", + "new_balance":"4488.78", + "value":"-1.40" + } + }, + { + "id":"0b17d6b2-01b1-460d-a782-f3c5f969c221", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T04:37:02.532Z", + "completed":"2016-04-06T04:37:02.532Z", + "new_balance":"4487.18", + "value":"-1.60" + } + }, + { + "id":"8d0a23d7-2cf6-4d9d-af9c-e909fe4b7a8b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T10:22:16.359Z", + "completed":"2016-04-09T10:22:16.359Z", + "new_balance":"4484.59", + "value":"-2.59" + } + }, + { + "id":"1b461e34-3f30-4606-bd6f-093cc05339b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T18:15:41.837Z", + "completed":"2016-04-10T18:15:41.837Z", + "new_balance":"4482.91", + "value":"-1.68" + } + }, + { + "id":"f660c43e-decb-440a-8d8b-6a80a170f6fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T19:25:52.503Z", + "completed":"2016-04-11T19:25:52.503Z", + "new_balance":"4480.60", + "value":"-2.31" + } + }, + { + "id":"05d3a25b-a254-4e35-b4ad-dcd5c235f136", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T22:20:10.995Z", + "completed":"2016-04-11T22:20:10.995Z", + "new_balance":"4478.73", + "value":"-1.87" + } + }, + { + "id":"ac726dc6-a48d-4094-aa05-753ccfd0bf5c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T16:01:59.139Z", + "completed":"2016-04-13T16:01:59.139Z", + "new_balance":"4472.60", + "value":"-6.13" + } + }, + { + "id":"abb3bf3f-f732-4c45-9dd9-18931e441e26", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T23:26:39.088Z", + "completed":"2016-04-13T23:26:39.088Z", + "new_balance":"4464.90", + "value":"-7.70" + } + }, + { + "id":"4dc8bb03-ee4b-45ba-b45d-6c97f8bf4f93", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T20:36:17.750Z", + "completed":"2016-04-15T20:36:17.750Z", + "new_balance":"4460.37", + "value":"-4.53" + } + }, + { + "id":"990bcaf8-b855-40fa-b5fd-78bb692ff678", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T00:22:01.390Z", + "completed":"2016-04-16T00:22:01.390Z", + "new_balance":"4459.56", + "value":"-0.81" + } + }, + { + "id":"781d0008-182e-45d5-bb96-46bbcb89f1ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T12:48:55.688Z", + "completed":"2016-04-16T12:48:55.688Z", + "new_balance":"4459.09", + "value":"-0.47" + } + }, + { + "id":"731ef7ff-c742-4103-a34e-0a5c8107cd0d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T23:51:50.185Z", + "completed":"2016-04-18T23:51:50.185Z", + "new_balance":"4453.61", + "value":"-5.48" + } + }, + { + "id":"7b555dee-59a5-4e42-8ed9-e6697dc9ec4b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T18:24:18.669Z", + "completed":"2016-04-23T18:24:18.669Z", + "new_balance":"4451.18", + "value":"-2.43" + } + }, + { + "id":"1f8518a5-093b-4ffd-bb5d-fa94fafca7d3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T13:55:35.577Z", + "completed":"2016-04-24T13:55:35.577Z", + "new_balance":"4449.61", + "value":"-1.57" + } + }, + { + "id":"240f679f-de80-49af-a6fb-761468e1025e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T20:46:35.575Z", + "completed":"2016-04-24T20:46:35.575Z", + "new_balance":"4446.31", + "value":"-3.30" + } + }, + { + "id":"fbb06ef1-b115-483b-a163-660e964b99aa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T23:31:26.644Z", + "completed":"2016-04-26T23:31:26.644Z", + "new_balance":"4445.79", + "value":"-0.52" + } + }, + { + "id":"c4cf8aeb-1dde-42c3-89fd-272a2a61864b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T01:42:20.719Z", + "completed":"2016-04-28T01:42:20.719Z", + "new_balance":"4442.07", + "value":"-3.72" + } + }, + { + "id":"110f1b1a-5921-43ca-af53-6e27b10b7b23", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T17:55:52.293Z", + "completed":"2016-04-28T17:55:52.293Z", + "new_balance":"4419.71", + "value":"-22.36" + } + }, + { + "id":"1271273f-4ae3-4799-88b3-1384009f4b81", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T11:23:23.678Z", + "completed":"2016-05-02T11:23:23.678Z", + "new_balance":"4418.39", + "value":"-1.32" + } + }, + { + "id":"72ca61c4-aff9-4478-ba1b-82458296e8e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T16:29:10.247Z", + "completed":"2016-05-02T16:29:10.247Z", + "new_balance":"4386.67", + "value":"-31.72" + } + }, + { + "id":"0e0fc165-5960-4bb4-bae0-5baf83334c90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T17:01:15.642Z", + "completed":"2016-05-02T17:01:15.642Z", + "new_balance":"4373.57", + "value":"-13.10" + } + }, + { + "id":"f3dba25f-0876-4c58-9e38-9345a9513074", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T23:21:08.054Z", + "completed":"2016-05-02T23:21:08.054Z", + "new_balance":"4372.90", + "value":"-0.67" + } + }, + { + "id":"a1a1771f-1bfe-4611-9597-d5cccf2a559a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T09:03:00.387Z", + "completed":"2016-05-06T09:03:00.387Z", + "new_balance":"4370.59", + "value":"-2.31" + } + }, + { + "id":"fa1cc692-f20a-402c-b022-6730a2316b8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T17:59:00.598Z", + "completed":"2016-05-06T17:59:00.598Z", + "new_balance":"4368.40", + "value":"-2.19" + } + }, + { + "id":"6c5a6c7c-a10e-4e52-b1d9-6cfc055d501f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T00:20:39.887Z", + "completed":"2016-05-07T00:20:39.887Z", + "new_balance":"4360.70", + "value":"-7.70" + } + }, + { + "id":"99f0dcfd-b25e-4839-950f-7eafd8a6c9a2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:13:01.073Z", + "completed":"2016-05-07T14:13:01.073Z", + "new_balance":"4356.13", + "value":"-4.57" + } + }, + { + "id":"5eb3c959-8296-437b-abd8-7bd301ae091a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T01:10:17.626Z", + "completed":"2016-05-09T01:10:17.626Z", + "new_balance":"4497.11", + "value":"140.98" + } + }, + { + "id":"64c8e879-96c8-41a1-9cba-7886008f03ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T16:43:24.179Z", + "completed":"2016-05-14T16:43:24.179Z", + "new_balance":"4492.97", + "value":"-4.14" + } + }, + { + "id":"d807c065-c808-43e8-a79f-c8735f79c538", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T18:29:40.831Z", + "completed":"2016-05-14T18:29:40.831Z", + "new_balance":"4490.57", + "value":"-2.40" + } + }, + { + "id":"88f17cbb-7a5a-4b32-abc1-c261728cf46d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T19:07:40.586Z", + "completed":"2016-05-16T19:07:40.586Z", + "new_balance":"4490.05", + "value":"-0.52" + } + }, + { + "id":"61344078-5456-42a1-8929-05495d0c0b1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T06:12:14.434Z", + "completed":"2016-05-21T06:12:14.434Z", + "new_balance":"4487.17", + "value":"-2.88" + } + }, + { + "id":"1fe380e4-f5fa-4ccf-a198-daa33537556a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T01:42:07.677Z", + "completed":"2016-05-23T01:42:07.677Z", + "new_balance":"4486.70", + "value":"-0.47" + } + }, + { + "id":"1d42e03f-7cad-4180-954d-d4d07b201826", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T07:19:24.555Z", + "completed":"2016-05-23T07:19:24.555Z", + "new_balance":"4484.39", + "value":"-2.31" + } + }, + { + "id":"00b26ef0-07f0-4091-99d8-97186adf2f7a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T12:47:02.585Z", + "completed":"2016-05-24T12:47:02.585Z", + "new_balance":"4479.78", + "value":"-4.61" + } + }, + { + "id":"fbea9e7d-feac-41c8-beb1-df864d003e63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T09:30:53.118Z", + "completed":"2016-05-27T09:30:53.118Z", + "new_balance":"4479.19", + "value":"-0.59" + } + }, + { + "id":"421954fd-ca49-4aa6-8ca6-3382e79c2dd8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T06:55:44.586Z", + "completed":"2016-05-30T06:55:44.586Z", + "new_balance":"4456.83", + "value":"-22.36" + } + }, + { + "id":"2575bddb-da14-4d1a-977a-f318d3f494d3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T08:49:28.645Z", + "completed":"2016-05-30T08:49:28.645Z", + "new_balance":"4453.11", + "value":"-3.72" + } + }, + { + "id":"34929484-be67-4527-9611-ed62bfbcf339", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T02:43:07.060Z", + "completed":"2016-06-01T02:43:07.060Z", + "new_balance":"4421.39", + "value":"-31.72" + } + }, + { + "id":"3e2dfd24-7d1c-4422-b849-d1a78e8a76cb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T16:31:56.816Z", + "completed":"2016-06-01T16:31:56.816Z", + "new_balance":"4562.37", + "value":"140.98" + } + }, + { + "id":"4470bf34-fc40-4db4-b5bd-d218a28f2e37", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:31:16.273Z", + "completed":"2016-06-04T01:31:16.273Z", + "new_balance":"4558.91", + "value":"-3.46" + } + }, + { + "id":"de12daed-a44d-4fa6-b065-54290a66cdea", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T09:45:21.509Z", + "completed":"2016-06-04T09:45:21.509Z", + "new_balance":"4556.86", + "value":"-2.05" + } + }, + { + "id":"4b6dd24e-4534-491f-b15e-1469d63bb694", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T06:08:18.659Z", + "completed":"2016-06-11T06:08:18.659Z", + "new_balance":"4552.25", + "value":"-4.61" + } + }, + { + "id":"ea806a4f-1974-487b-857a-4ec652b980ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T23:27:02.097Z", + "completed":"2016-06-11T23:27:02.097Z", + "new_balance":"4548.95", + "value":"-3.30" + } + }, + { + "id":"8d5b8daa-bd62-478d-a558-e635edab8ac3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T10:37:20.825Z", + "completed":"2016-06-12T10:37:20.825Z", + "new_balance":"4547.65", + "value":"-1.30" + } + }, + { + "id":"db26c4a5-1a7c-4f27-8343-2366a88c7477", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T22:41:21.048Z", + "completed":"2016-06-12T22:41:21.048Z", + "new_balance":"4539.95", + "value":"-7.70" + } + }, + { + "id":"4afea8ee-c302-42ff-a0cb-a54f7a8667dd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T22:50:14.194Z", + "completed":"2016-06-12T22:50:14.194Z", + "new_balance":"4539.48", + "value":"-0.47" + } + }, + { + "id":"1dfe96e9-65f8-439f-9aa7-3ed79ee40901", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T05:32:31.409Z", + "completed":"2016-06-13T05:32:31.409Z", + "new_balance":"4531.74", + "value":"-7.74" + } + }, + { + "id":"ef8412f3-7004-434e-bb80-a80e11a4f8b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T13:42:23.316Z", + "completed":"2016-06-13T13:42:23.316Z", + "new_balance":"4525.10", + "value":"-6.64" + } + }, + { + "id":"a99b9289-c696-4f2f-a691-266fdd561fea", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:26:23.850Z", + "completed":"2016-06-13T21:26:23.850Z", + "new_balance":"4518.35", + "value":"-6.75" + } + }, + { + "id":"d6628ef9-575b-4112-af88-84ae3df5c2e3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T01:21:10.602Z", + "completed":"2016-06-14T01:21:10.602Z", + "new_balance":"4517.55", + "value":"-0.80" + } + }, + { + "id":"fbae7900-0ca4-473b-8880-953862cdc9b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T07:34:08.909Z", + "completed":"2016-06-14T07:34:08.909Z", + "new_balance":"4517.08", + "value":"-0.47" + } + }, + { + "id":"ab4485e2-7c8e-4328-926c-e52c83c3742c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T21:47:53.191Z", + "completed":"2016-06-14T21:47:53.191Z", + "new_balance":"4516.28", + "value":"-0.80" + } + }, + { + "id":"ab6f7e8f-03a4-4def-9e6a-b692efb040ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T00:35:16.691Z", + "completed":"2016-06-15T00:35:16.691Z", + "new_balance":"4515.81", + "value":"-0.47" + } + }, + { + "id":"1c92cff7-a8c8-439e-a274-e57fb29568f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:32:38.791Z", + "completed":"2016-06-15T05:32:38.791Z", + "new_balance":"4515.04", + "value":"-0.77" + } + }, + { + "id":"0b8452c0-6e24-47b0-bff2-5f82dff517c9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T14:10:30.224Z", + "completed":"2016-06-15T14:10:30.224Z", + "new_balance":"4512.33", + "value":"-2.71" + } + }, + { + "id":"a9cdb571-2a9c-4d54-bc88-5c30629b4675", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T15:17:38.518Z", + "completed":"2016-06-16T15:17:38.518Z", + "new_balance":"4509.61", + "value":"-2.72" + } + }, + { + "id":"17e435a0-33c6-4bec-93df-1b4ad9b3b0a4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T08:07:50.705Z", + "completed":"2016-06-17T08:07:50.705Z", + "new_balance":"4508.01", + "value":"-1.60" + } + }, + { + "id":"b6eeaac5-8cce-4658-9df1-ca602628368b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T02:11:51.155Z", + "completed":"2016-06-18T02:11:51.155Z", + "new_balance":"4507.54", + "value":"-0.47" + } + }, + { + "id":"7b37cfb9-9321-4c85-b274-6c5f807f2137", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T02:44:47.858Z", + "completed":"2016-06-18T02:44:47.858Z", + "new_balance":"4501.38", + "value":"-6.16" + } + }, + { + "id":"69ed925f-a691-4a98-b443-bc8e0ef8e011", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T09:48:16.563Z", + "completed":"2016-06-18T09:48:16.563Z", + "new_balance":"4500.91", + "value":"-0.47" + } + }, + { + "id":"a9d15ff4-b863-4128-bc12-87d2dc90bf24", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T18:41:06.812Z", + "completed":"2016-06-18T18:41:06.812Z", + "new_balance":"4498.32", + "value":"-2.59" + } + }, + { + "id":"e5d6cc04-42dc-489f-9be8-c27ec7c75177", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T19:02:17.548Z", + "completed":"2016-06-18T19:02:17.548Z", + "new_balance":"4495.74", + "value":"-2.58" + } + }, + { + "id":"f4cd6745-6928-4822-8753-64d9ede5a1da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T22:42:13.307Z", + "completed":"2016-06-18T22:42:13.307Z", + "new_balance":"4485.59", + "value":"-10.15" + } + }, + { + "id":"5fda56f6-7dc4-434c-88ff-4fc7f4bd756c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T09:44:10.554Z", + "completed":"2016-06-19T09:44:10.554Z", + "new_balance":"4481.20", + "value":"-4.39" + } + }, + { + "id":"b5a6004f-b112-4695-80b5-8cbff26720fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:16:59.098Z", + "completed":"2016-06-19T17:16:59.098Z", + "new_balance":"4476.28", + "value":"-4.92" + } + }, + { + "id":"d1b82a3a-38bc-49c2-85a4-6e9f21117809", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T19:06:13.235Z", + "completed":"2016-06-19T19:06:13.235Z", + "new_balance":"4472.16", + "value":"-4.12" + } + }, + { + "id":"e5e39e1c-7744-4380-a973-8dccb2074f55", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T14:21:00.010Z", + "completed":"2016-06-21T14:21:00.010Z", + "new_balance":"4462.55", + "value":"-9.61" + } + }, + { + "id":"fe7439b5-1512-4544-a47b-d8cf1c9cf0cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T22:44:43.402Z", + "completed":"2016-06-21T22:44:43.402Z", + "new_balance":"4450.19", + "value":"-12.36" + } + }, + { + "id":"92cb7d70-0801-44f2-a11d-9d3ac1383067", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T19:34:04.888Z", + "completed":"2016-06-22T19:34:04.888Z", + "new_balance":"4446.72", + "value":"-3.47" + } + }, + { + "id":"a1e06f01-7405-4784-a86f-7bf9fd807b2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T22:14:55.703Z", + "completed":"2016-06-22T22:14:55.703Z", + "new_balance":"4445.57", + "value":"-1.15" + } + }, + { + "id":"56e161d5-f762-43d5-aa09-535399f575ec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T22:41:05.991Z", + "completed":"2016-06-22T22:41:05.991Z", + "new_balance":"4445.10", + "value":"-0.47" + } + }, + { + "id":"19531021-21ab-4a12-9519-4ca3e5c40c9b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T07:05:49.144Z", + "completed":"2016-06-23T07:05:49.144Z", + "new_balance":"4443.75", + "value":"-1.35" + } + }, + { + "id":"3c36eadb-5d9e-4dd7-9aad-a615081f9f4a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T01:31:28.804Z", + "completed":"2016-06-24T01:31:28.804Z", + "new_balance":"4441.36", + "value":"-2.39" + } + }, + { + "id":"08da4d4e-c662-4fde-8610-aef0394727c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T04:20:25.803Z", + "completed":"2016-06-26T04:20:25.803Z", + "new_balance":"4440.16", + "value":"-1.20" + } + }, + { + "id":"85387950-3f80-4997-8124-8564873f41ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T06:05:35.316Z", + "completed":"2016-06-30T06:05:35.316Z", + "new_balance":"4436.44", + "value":"-3.72" + } + }, + { + "id":"4e734377-c119-43a9-8e22-a0ea0d189f7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T23:49:53.500Z", + "completed":"2016-06-30T23:49:53.500Z", + "new_balance":"4414.08", + "value":"-22.36" + } + }, + { + "id":"6275dbec-0d38-4f78-9b68-a0a7047b9f3e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T00:36:26.394Z", + "completed":"2016-07-01T00:36:26.394Z", + "new_balance":"4555.06", + "value":"140.98" + } + }, + { + "id":"508916cb-6caa-4945-a96d-155ecf875120", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T01:08:59.123Z", + "completed":"2016-07-01T01:08:59.123Z", + "new_balance":"4737.76", + "value":"182.70" + } + }, + { + "id":"ee3ccf88-f974-4139-aed5-3abc83aa4b62", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T16:23:23.818Z", + "completed":"2016-07-03T16:23:23.818Z", + "new_balance":"4706.04", + "value":"-31.72" + } + }, + { + "id":"2612f46b-148c-404c-bbc6-197a49bb35af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T15:20:00.396Z", + "completed":"2016-07-04T15:20:00.396Z", + "new_balance":"4701.22", + "value":"-4.82" + } + }, + { + "id":"084df0df-4b10-4d58-bc46-cf3095d8e57f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T18:14:40.732Z", + "completed":"2016-07-04T18:14:40.732Z", + "new_balance":"4699.48", + "value":"-1.74" + } + }, + { + "id":"b09a0dde-f21f-48d3-8e63-0138594c1cfe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T20:18:00.047Z", + "completed":"2016-07-04T20:18:00.047Z", + "new_balance":"4698.81", + "value":"-0.67" + } + }, + { + "id":"af12c63a-345c-4177-95cc-f1e6283e54f8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T06:21:07.558Z", + "completed":"2016-07-05T06:21:07.558Z", + "new_balance":"4697.41", + "value":"-1.40" + } + }, + { + "id":"b1936e8b-4a61-4b95-b271-7f252202db0e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T19:14:57.672Z", + "completed":"2016-07-07T19:14:57.672Z", + "new_balance":"4696.89", + "value":"-0.52" + } + }, + { + "id":"b7db6408-8ea8-48ce-a4dc-ac0775441c6e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T06:47:50.644Z", + "completed":"2016-07-11T06:47:50.644Z", + "new_balance":"4694.58", + "value":"-2.31" + } + }, + { + "id":"f6d8fc65-ba09-403f-9d69-c955dda3be8e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T12:40:10.976Z", + "completed":"2016-07-11T12:40:10.976Z", + "new_balance":"4692.98", + "value":"-1.60" + } + }, + { + "id":"f10170f0-0207-4af9-855c-f040f4e82658", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T18:12:05.504Z", + "completed":"2016-07-11T18:12:05.504Z", + "new_balance":"4691.11", + "value":"-1.87" + } + }, + { + "id":"ac0d262a-9e76-4448-8bf3-ec81cd999130", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T19:11:59.927Z", + "completed":"2016-07-11T19:11:59.927Z", + "new_balance":"4688.52", + "value":"-2.59" + } + }, + { + "id":"72d95a85-cf68-4369-8ac9-da045f80857f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T19:46:49.899Z", + "completed":"2016-07-11T19:46:49.899Z", + "new_balance":"4686.84", + "value":"-1.68" + } + }, + { + "id":"ee30517d-c1f0-419a-8258-18d576ead04a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T04:35:48.493Z", + "completed":"2016-07-13T04:35:48.493Z", + "new_balance":"4680.71", + "value":"-6.13" + } + }, + { + "id":"fed9b65e-f583-456a-af67-9622e93cfc79", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T10:32:44.100Z", + "completed":"2016-07-13T10:32:44.100Z", + "new_balance":"4673.01", + "value":"-7.70" + } + }, + { + "id":"a92e6296-b762-46d0-9eae-6ea3c0afbdd0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T03:48:20.365Z", + "completed":"2016-07-16T03:48:20.365Z", + "new_balance":"4668.48", + "value":"-4.53" + } + }, + { + "id":"bcf285b0-827d-41e0-86e5-b8cf6165bc4d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:07:45.259Z", + "completed":"2016-07-16T15:07:45.259Z", + "new_balance":"4677.47", + "value":"8.99" + } + }, + { + "id":"fc03edc8-e104-4010-978d-b0fcc6dce770", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T17:03:24.415Z", + "completed":"2016-07-17T17:03:24.415Z", + "new_balance":"4676.66", + "value":"-0.81" + } + }, + { + "id":"19168bf3-2ab2-4735-9a62-bec2c89f2705", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T17:24:04.687Z", + "completed":"2016-07-17T17:24:04.687Z", + "new_balance":"4676.19", + "value":"-0.47" + } + }, + { + "id":"a8431a54-b646-45b9-ba90-52986e939bfb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T21:22:14.800Z", + "completed":"2016-07-19T21:22:14.800Z", + "new_balance":"4670.71", + "value":"-5.48" + } + }, + { + "id":"ac2ef412-b3ca-444b-94da-13b3796131ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T10:34:09.850Z", + "completed":"2016-07-21T10:34:09.850Z", + "new_balance":"4668.28", + "value":"-2.43" + } + }, + { + "id":"78466148-8d0c-4488-93da-8fea74823db0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T04:14:20.429Z", + "completed":"2016-07-23T04:14:20.429Z", + "new_balance":"4664.98", + "value":"-3.30" + } + }, + { + "id":"a39f8cc3-e926-4462-9cb6-c23c8ab7d3bc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T10:51:46.829Z", + "completed":"2016-07-25T10:51:46.829Z", + "new_balance":"4663.41", + "value":"-1.57" + } + }, + { + "id":"4aeefa24-049b-447d-8d49-b193411d70b8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T08:44:26.400Z", + "completed":"2016-07-27T08:44:26.400Z", + "new_balance":"4662.89", + "value":"-0.52" + } + }, + { + "id":"e5680ef6-42e1-437c-960a-025a766144a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T06:01:15.435Z", + "completed":"2016-07-28T06:01:15.435Z", + "new_balance":"4659.17", + "value":"-3.72" + } + }, + { + "id":"766de80e-b443-4ed2-b273-79c934e75721", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T20:04:31.211Z", + "completed":"2016-07-28T20:04:31.211Z", + "new_balance":"4636.81", + "value":"-22.36" + } + }, + { + "id":"82caac18-0dbd-409f-a03b-dde3dca966f0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T07:57:50.668Z", + "completed":"2016-08-01T07:57:50.668Z", + "new_balance":"4777.79", + "value":"140.98" + } + }, + { + "id":"9a6de1fc-89aa-4e40-b2f8-8e1cfccc6126", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T06:05:02.562Z", + "completed":"2016-08-03T06:05:02.562Z", + "new_balance":"4764.69", + "value":"-13.10" + } + }, + { + "id":"fbd704ec-c00e-42da-9f18-cf30371c8e82", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T09:08:24.058Z", + "completed":"2016-08-03T09:08:24.058Z", + "new_balance":"4732.97", + "value":"-31.72" + } + }, + { + "id":"d18d5e6f-beca-489c-8903-b809c9f60de6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T03:30:50.466Z", + "completed":"2016-08-04T03:30:50.466Z", + "new_balance":"4731.65", + "value":"-1.32" + } + }, + { + "id":"970a9131-17eb-4ea1-a13b-59485bd27f99", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T01:16:34.292Z", + "completed":"2016-08-07T01:16:34.292Z", + "new_balance":"4729.34", + "value":"-2.31" + } + }, + { + "id":"6421d235-5876-47db-a434-1c6ef905b66d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T19:45:53.614Z", + "completed":"2016-08-07T19:45:53.614Z", + "new_balance":"4727.15", + "value":"-2.19" + } + }, + { + "id":"37b4f211-a4cc-40b2-bef7-e65492c08e8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T20:13:04.838Z", + "completed":"2016-08-07T20:13:04.838Z", + "new_balance":"4726.48", + "value":"-0.67" + } + }, + { + "id":"5c9277ff-653b-4e3c-a3f1-e0584cb01d18", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T04:07:56.124Z", + "completed":"2016-08-08T04:07:56.124Z", + "new_balance":"4722.34", + "value":"-4.14" + } + }, + { + "id":"d910cfa9-5dd0-4e2d-a516-3f0109f559c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T22:08:11.996Z", + "completed":"2016-08-08T22:08:11.996Z", + "new_balance":"4714.64", + "value":"-7.70" + } + }, + { + "id":"9a41ca54-ab68-4c9a-8ca8-d27661639e02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T22:39:50.101Z", + "completed":"2016-08-08T22:39:50.101Z", + "new_balance":"4710.07", + "value":"-4.57" + } + }, + { + "id":"f2b1315e-1b1e-43fe-8e58-b6e9cf73af31", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T04:50:57.612Z", + "completed":"2016-08-09T04:50:57.612Z", + "new_balance":"4707.67", + "value":"-2.40" + } + }, + { + "id":"5d1d3d5a-eb0f-4565-835b-e52bd1eb1d67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T05:51:42.666Z", + "completed":"2016-08-11T05:51:42.666Z", + "new_balance":"4707.15", + "value":"-0.52" + } + }, + { + "id":"640c059d-1f60-4714-ab02-f382983ea778", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T16:50:49.493Z", + "completed":"2016-08-14T16:50:49.493Z", + "new_balance":"4704.27", + "value":"-2.88" + } + }, + { + "id":"3cd732b1-ee86-46ce-ae09-3700994bafe2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T12:43:08.333Z", + "completed":"2016-08-15T12:43:08.333Z", + "new_balance":"4701.96", + "value":"-2.31" + } + }, + { + "id":"9a3513a5-024a-40ff-8d6d-0d87c7b2fd0b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T02:10:10.263Z", + "completed":"2016-08-17T02:10:10.263Z", + "new_balance":"4701.49", + "value":"-0.47" + } + }, + { + "id":"1ffc92c3-2d29-4cc0-9ecb-a9f61bffa7d8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T03:48:38.937Z", + "completed":"2016-08-17T03:48:38.937Z", + "new_balance":"4696.88", + "value":"-4.61" + } + }, + { + "id":"ba8ceec2-1036-412d-a8a9-2862e9f88c7e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T15:47:21.354Z", + "completed":"2016-08-19T15:47:21.354Z", + "new_balance":"4696.29", + "value":"-0.59" + } + }, + { + "id":"991f7254-da12-4a9c-aaa0-eb084ed8d7a7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T11:30:17.748Z", + "completed":"2016-08-25T11:30:17.748Z", + "new_balance":"4707.69", + "value":"11.40" + } + }, + { + "id":"053fa5c0-dffc-41a8-b2dc-780c207cb26f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T09:07:32.940Z", + "completed":"2016-08-28T09:07:32.940Z", + "new_balance":"4703.97", + "value":"-3.72" + } + }, + { + "id":"81832e79-7215-431e-9deb-e8f60701c84c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T18:48:35.674Z", + "completed":"2016-08-28T18:48:35.674Z", + "new_balance":"4681.61", + "value":"-22.36" + } + }, + { + "id":"4afbfe47-2a48-4335-87b7-d36785884043", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T01:41:37.862Z", + "completed":"2016-09-01T01:41:37.862Z", + "new_balance":"4822.59", + "value":"140.98" + } + }, + { + "id":"ad1c507c-189c-4f6e-9c10-6b8a195bb82c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T16:17:24.547Z", + "completed":"2016-09-03T16:17:24.547Z", + "new_balance":"4790.87", + "value":"-31.72" + } + }, + { + "id":"b3f5f550-e3db-4f7c-9263-7b66055b7a5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T05:16:37.880Z", + "completed":"2016-09-04T05:16:37.880Z", + "new_balance":"4787.57", + "value":"-3.30" + } + }, + { + "id":"0318359a-bb55-41d2-be0f-9c6ba33de03d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T08:58:48.268Z", + "completed":"2016-09-04T08:58:48.268Z", + "new_balance":"4785.52", + "value":"-2.05" + } + }, + { + "id":"6d17f370-f522-4ec2-ae08-b059e06700ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T09:39:34.671Z", + "completed":"2016-09-04T09:39:34.671Z", + "new_balance":"4780.91", + "value":"-4.61" + } + }, + { + "id":"261963e6-ac0e-4b67-92ff-6736e13f4316", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T23:20:12.903Z", + "completed":"2016-09-04T23:20:12.903Z", + "new_balance":"4777.45", + "value":"-3.46" + } + }, + { + "id":"970add05-23cd-4b71-8a54-b4dc3fe99009", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T00:38:10.398Z", + "completed":"2016-09-05T00:38:10.398Z", + "new_balance":"4769.71", + "value":"-7.74" + } + }, + { + "id":"2bcf46d1-17c1-49c1-87de-63fc7b5e8703", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T07:49:21.461Z", + "completed":"2016-09-05T07:49:21.461Z", + "new_balance":"4762.96", + "value":"-6.75" + } + }, + { + "id":"6a5d4adf-55fc-458d-8ab6-58624e3f1deb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T11:03:38.448Z", + "completed":"2016-09-05T11:03:38.448Z", + "new_balance":"4755.26", + "value":"-7.70" + } + }, + { + "id":"7a6b02f7-6c2e-446c-b628-4061e62f4197", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T12:05:08.435Z", + "completed":"2016-09-05T12:05:08.435Z", + "new_balance":"4748.62", + "value":"-6.64" + } + }, + { + "id":"2baf56e7-749f-4d32-b3c5-aa0d2cf2eddc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T12:49:35.078Z", + "completed":"2016-09-05T12:49:35.078Z", + "new_balance":"4748.15", + "value":"-0.47" + } + }, + { + "id":"f67d7e16-949c-4298-9b7f-000d0e1995f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T23:48:22.728Z", + "completed":"2016-09-05T23:48:22.728Z", + "new_balance":"4746.85", + "value":"-1.30" + } + }, + { + "id":"34f2ba16-3a0b-4a1f-9ac8-fbe98f3c2fa3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T07:19:08.312Z", + "completed":"2016-09-07T07:19:08.312Z", + "new_balance":"4746.08", + "value":"-0.77" + } + }, + { + "id":"5c051eea-626f-45ea-9ff1-25c38db25944", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T11:24:04.620Z", + "completed":"2016-09-07T11:24:04.620Z", + "new_balance":"4745.61", + "value":"-0.47" + } + }, + { + "id":"67fda072-5846-4a35-bd78-fb077dd2d842", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T13:31:11.782Z", + "completed":"2016-09-07T13:31:11.782Z", + "new_balance":"4744.81", + "value":"-0.80" + } + }, + { + "id":"bcd25efa-effe-472e-a6f3-00e4d1d9bd38", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T23:11:40.149Z", + "completed":"2016-09-07T23:11:40.149Z", + "new_balance":"4744.01", + "value":"-0.80" + } + }, + { + "id":"95a28e87-1f57-478a-9e54-d4b1e0ecd367", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T10:46:54.529Z", + "completed":"2016-09-10T10:46:54.529Z", + "new_balance":"4741.30", + "value":"-2.71" + } + }, + { + "id":"2602c74b-177c-422e-a76c-c4deb4c0376a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T06:34:18.460Z", + "completed":"2016-09-11T06:34:18.460Z", + "new_balance":"4738.58", + "value":"-2.72" + } + }, + { + "id":"42358ce6-31aa-42a8-b857-6fbc7e72401d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T14:10:57.095Z", + "completed":"2016-09-11T14:10:57.095Z", + "new_balance":"4736.98", + "value":"-1.60" + } + }, + { + "id":"a44f0326-0542-42de-8c1f-1d13d95e92b5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T21:42:14.254Z", + "completed":"2016-09-11T21:42:14.254Z", + "new_balance":"4736.51", + "value":"-0.47" + } + }, + { + "id":"2af82069-14ad-46aa-a9bb-6662d59f9dd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T03:02:54.812Z", + "completed":"2016-09-12T03:02:54.812Z", + "new_balance":"4733.92", + "value":"-2.59" + } + }, + { + "id":"f83170ba-c1ab-4444-a8e9-7b141b9e1738", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:16:09.141Z", + "completed":"2016-09-12T04:16:09.141Z", + "new_balance":"4723.77", + "value":"-10.15" + } + }, + { + "id":"8d1d0387-a3a9-420c-b1d2-39a23b41d235", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T17:27:19.595Z", + "completed":"2016-09-12T17:27:19.595Z", + "new_balance":"4723.30", + "value":"-0.47" + } + }, + { + "id":"47b883d2-932d-4174-83d2-2aee186a1565", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T23:09:07.810Z", + "completed":"2016-09-12T23:09:07.810Z", + "new_balance":"4717.14", + "value":"-6.16" + } + }, + { + "id":"af017eb3-d9f7-4564-9839-ffdfdecfd077", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T08:01:40.618Z", + "completed":"2016-09-13T08:01:40.618Z", + "new_balance":"4714.56", + "value":"-2.58" + } + }, + { + "id":"12c89e2d-143a-409a-90ad-7f5aff310c16", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T02:10:57.117Z", + "completed":"2016-09-14T02:10:57.117Z", + "new_balance":"4714.09", + "value":"-0.47" + } + }, + { + "id":"2cc117a0-48a6-43bf-bb17-b898eaebc8c2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T14:11:10.493Z", + "completed":"2016-09-14T14:11:10.493Z", + "new_balance":"4709.17", + "value":"-4.92" + } + }, + { + "id":"ca60c990-edd9-424c-ae3f-4210d06794a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T17:19:37.102Z", + "completed":"2016-09-16T17:19:37.102Z", + "new_balance":"4705.05", + "value":"-4.12" + } + }, + { + "id":"64ac9da7-dcbb-46d0-a232-da17c4a06ebe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T06:09:10.043Z", + "completed":"2016-09-18T06:09:10.043Z", + "new_balance":"4700.66", + "value":"-4.39" + } + }, + { + "id":"f01fe135-7e85-4660-9a7e-0738b35d5084", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T16:34:19.930Z", + "completed":"2016-09-21T16:34:19.930Z", + "new_balance":"4688.30", + "value":"-12.36" + } + }, + { + "id":"905d347e-2f7a-4f13-850f-428ca3b378cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T23:49:33.364Z", + "completed":"2016-09-21T23:49:33.364Z", + "new_balance":"4678.69", + "value":"-9.61" + } + }, + { + "id":"9043bf02-1971-48b4-9466-fac52aa56792", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T22:59:55.477Z", + "completed":"2016-09-23T22:59:55.477Z", + "new_balance":"4675.22", + "value":"-3.47" + } + }, + { + "id":"608aa1a7-b466-473e-a808-7f32507aec5f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T14:00:31.336Z", + "completed":"2016-09-24T14:00:31.336Z", + "new_balance":"4674.75", + "value":"-0.47" + } + }, + { + "id":"482e2e7a-2719-44b0-b219-edb53531bf26", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T06:51:45.192Z", + "completed":"2016-09-26T06:51:45.192Z", + "new_balance":"4673.60", + "value":"-1.15" + } + }, + { + "id":"3983124a-fb80-4940-937f-ce4131ce94e1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:16:21.331Z", + "completed":"2016-09-26T15:16:21.331Z", + "new_balance":"4672.25", + "value":"-1.35" + } + }, + { + "id":"94c27cb5-a80b-4643-b780-b034700a0fb2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T22:47:05.323Z", + "completed":"2016-09-26T22:47:05.323Z", + "new_balance":"4669.86", + "value":"-2.39" + } + }, + { + "id":"0072e7fe-1293-464d-af3d-925eec9b68be", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T14:59:23.848Z", + "completed":"2016-09-27T14:59:23.848Z", + "new_balance":"4668.66", + "value":"-1.20" + } + }, + { + "id":"c144b1c7-c50f-4430-851f-2c2bd185de10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T04:43:28.155Z", + "completed":"2016-09-28T04:43:28.155Z", + "new_balance":"4664.94", + "value":"-3.72" + } + }, + { + "id":"968127cd-0b07-4cd2-91ec-d3a7a85e9737", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T10:11:53.956Z", + "completed":"2016-09-28T10:11:53.956Z", + "new_balance":"4642.58", + "value":"-22.36" + } + }, + { + "id":"4d22e99c-0beb-45c3-b120-f96576da9cae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T05:21:53.068Z", + "completed":"2016-10-01T05:21:53.068Z", + "new_balance":"4610.86", + "value":"-31.72" + } + }, + { + "id":"7d023dcc-f432-4842-b011-3e773ecaf3d8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T11:36:58.643Z", + "completed":"2016-10-01T11:36:58.643Z", + "new_balance":"4793.56", + "value":"182.70" + } + }, + { + "id":"ad540433-5ea3-41f4-bb53-dffe54f17468", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T13:54:10.795Z", + "completed":"2016-10-01T13:54:10.795Z", + "new_balance":"4934.54", + "value":"140.98" + } + }, + { + "id":"b6745ee7-9699-4fba-b0bb-cc0a9c0f0d14", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T02:41:17.793Z", + "completed":"2016-10-03T02:41:17.793Z", + "new_balance":"4932.80", + "value":"-1.74" + } + }, + { + "id":"20e5b86e-e07d-425d-b9f2-ed6f347e93f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T03:47:51.330Z", + "completed":"2016-10-03T03:47:51.330Z", + "new_balance":"4932.13", + "value":"-0.67" + } + }, + { + "id":"7d89b0ac-98b0-4036-ba72-bedd9b420092", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T21:05:34.321Z", + "completed":"2016-10-03T21:05:34.321Z", + "new_balance":"4927.31", + "value":"-4.82" + } + }, + { + "id":"a77efe2e-a72d-46e2-b187-497352df2e62", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T17:01:08.705Z", + "completed":"2016-10-05T17:01:08.705Z", + "new_balance":"4926.79", + "value":"-0.52" + } + }, + { + "id":"c1807e71-7b18-4314-8be3-d044a9c8a963", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T23:29:36.631Z", + "completed":"2016-10-05T23:29:36.631Z", + "new_balance":"4925.39", + "value":"-1.40" + } + }, + { + "id":"509b92dc-58d0-4641-81b3-70be2c5e6619", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T11:49:12.876Z", + "completed":"2016-10-06T11:49:12.876Z", + "new_balance":"4923.79", + "value":"-1.60" + } + }, + { + "id":"a5e8e5ee-15ac-4c1c-a0c1-01e40f706ea7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T04:51:07.318Z", + "completed":"2016-10-09T04:51:07.318Z", + "new_balance":"4921.20", + "value":"-2.59" + } + }, + { + "id":"210f1223-cd6e-42eb-8148-6393bd808dec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T12:15:35.593Z", + "completed":"2016-10-10T12:15:35.593Z", + "new_balance":"4919.52", + "value":"-1.68" + } + }, + { + "id":"5cfeabdf-a4ae-45d9-9bb9-3ac6df8ebeeb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T09:50:35.676Z", + "completed":"2016-10-11T09:50:35.676Z", + "new_balance":"4917.21", + "value":"-2.31" + } + }, + { + "id":"7c677b4d-2b63-4f4c-ac27-38dfa6b5fe36", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:19:25.277Z", + "completed":"2016-10-11T13:19:25.277Z", + "new_balance":"4915.34", + "value":"-1.87" + } + }, + { + "id":"bc78441f-898d-4151-8194-eb9d4c9f4c63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T01:27:09.584Z", + "completed":"2016-10-14T01:27:09.584Z", + "new_balance":"4909.21", + "value":"-6.13" + } + }, + { + "id":"de837360-30d0-452e-8caa-1a76165a7922", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T01:45:41.947Z", + "completed":"2016-10-14T01:45:41.947Z", + "new_balance":"4901.51", + "value":"-7.70" + } + }, + { + "id":"9e0c9688-2aa1-4407-92bf-20173cba3d23", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T22:20:41.504Z", + "completed":"2016-10-17T22:20:41.504Z", + "new_balance":"4896.98", + "value":"-4.53" + } + }, + { + "id":"b252fddb-ebf8-4d91-b64f-603dc0d7ab07", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T01:17:26.959Z", + "completed":"2016-10-18T01:17:26.959Z", + "new_balance":"4896.51", + "value":"-0.47" + } + }, + { + "id":"43443261-9239-433f-807c-4601d9c71791", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T14:15:14.307Z", + "completed":"2016-10-18T14:15:14.307Z", + "new_balance":"4891.03", + "value":"-5.48" + } + }, + { + "id":"31bcb48c-53ac-4ce0-af3f-9e411d02b3ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T17:38:28.426Z", + "completed":"2016-10-18T17:38:28.426Z", + "new_balance":"4890.22", + "value":"-0.81" + } + }, + { + "id":"2d06b1da-28c6-479a-9e6a-14f21135f2ff", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T09:32:00.381Z", + "completed":"2016-10-23T09:32:00.381Z", + "new_balance":"4887.79", + "value":"-2.43" + } + }, + { + "id":"ecdbee3c-604a-4e45-a157-97323cbc5ed4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T02:05:48.218Z", + "completed":"2016-10-24T02:05:48.218Z", + "new_balance":"4884.49", + "value":"-3.30" + } + }, + { + "id":"53cd3b81-a3f1-4e30-a953-948e9592affa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T06:02:52.608Z", + "completed":"2016-10-24T06:02:52.608Z", + "new_balance":"4882.92", + "value":"-1.57" + } + }, + { + "id":"f4df3179-b97e-434b-b23b-6368934e40e6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T01:33:39.017Z", + "completed":"2016-10-26T01:33:39.017Z", + "new_balance":"4882.40", + "value":"-0.52" + } + }, + { + "id":"d845391b-25c1-4d00-95f6-7f045ea93689", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T11:45:04.309Z", + "completed":"2016-10-30T11:45:04.309Z", + "new_balance":"4860.04", + "value":"-22.36" + } + }, + { + "id":"b918777e-b8e7-49e6-87d9-c819a83eb2d1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T18:50:36.381Z", + "completed":"2016-10-30T18:50:36.381Z", + "new_balance":"4856.32", + "value":"-3.72" + } + }, + { + "id":"66b601b0-748a-4eab-8c13-2feeae0bcb3f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T01:34:03.330Z", + "completed":"2016-11-02T01:34:03.330Z", + "new_balance":"4843.22", + "value":"-13.10" + } + }, + { + "id":"5e784815-5075-4173-afae-3a74980ce9be", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T07:45:15.370Z", + "completed":"2016-11-02T07:45:15.370Z", + "new_balance":"4842.55", + "value":"-0.67" + } + }, + { + "id":"fde5af1e-5aa4-48df-8d16-2045de9c954d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T08:56:46.271Z", + "completed":"2016-11-02T08:56:46.271Z", + "new_balance":"4810.83", + "value":"-31.72" + } + }, + { + "id":"afd646ca-4bba-4d1d-b4d1-65332158e147", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T19:22:28.017Z", + "completed":"2016-11-02T19:22:28.017Z", + "new_balance":"4809.51", + "value":"-1.32" + } + }, + { + "id":"d01268de-c63d-4e1a-b9db-2e10ecdb8bad", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T00:39:47.511Z", + "completed":"2016-11-06T00:39:47.511Z", + "new_balance":"4807.20", + "value":"-2.31" + } + }, + { + "id":"529b53ec-3f5b-4e7f-b299-b3d8c2020a0f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T20:16:55.375Z", + "completed":"2016-11-06T20:16:55.375Z", + "new_balance":"4805.01", + "value":"-2.19" + } + }, + { + "id":"3cd4f026-e899-405a-8c45-93acb8ddb462", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T07:46:29.649Z", + "completed":"2016-11-07T07:46:29.649Z", + "new_balance":"4800.44", + "value":"-4.57" + } + }, + { + "id":"26778518-486b-4f09-8aa7-71001ab4a525", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T16:20:17.582Z", + "completed":"2016-11-07T16:20:17.582Z", + "new_balance":"4792.74", + "value":"-7.70" + } + }, + { + "id":"7dbd09b4-389f-446b-9553-d01fff3ef2a4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T06:26:10.569Z", + "completed":"2016-11-09T06:26:10.569Z", + "new_balance":"4933.72", + "value":"140.98" + } + }, + { + "id":"0eaccb29-dd32-42e0-9ea7-9bbd0681e786", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T05:45:46.966Z", + "completed":"2016-11-14T05:45:46.966Z", + "new_balance":"4931.32", + "value":"-2.40" + } + }, + { + "id":"e0ce7d47-18e5-4199-802a-4e496194fcbc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T12:24:54.347Z", + "completed":"2016-11-14T12:24:54.347Z", + "new_balance":"4927.18", + "value":"-4.14" + } + }, + { + "id":"e4c67b35-dd57-4eeb-b37b-df28f754cd44", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T22:12:26.654Z", + "completed":"2016-11-16T22:12:26.654Z", + "new_balance":"4926.66", + "value":"-0.52" + } + }, + { + "id":"77971c77-56a0-4305-944d-42d8fee3dc20", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T10:16:30.310Z", + "completed":"2016-11-20T10:16:30.310Z", + "new_balance":"4923.78", + "value":"-2.88" + } + }, + { + "id":"1ad2cc19-4c47-4edd-8fa3-cea8c1047750", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T02:18:23.939Z", + "completed":"2016-11-23T02:18:23.939Z", + "new_balance":"4919.17", + "value":"-4.61" + } + }, + { + "id":"bbbf01bd-bdad-45e0-ab4b-6ddd89a697c4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T08:11:06.122Z", + "completed":"2016-11-23T08:11:06.122Z", + "new_balance":"4916.86", + "value":"-2.31" + } + }, + { + "id":"68e825bc-137a-4271-b1ac-bedbddbd817a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T14:43:50.284Z", + "completed":"2016-11-23T14:43:50.284Z", + "new_balance":"4916.39", + "value":"-0.47" + } + }, + { + "id":"a4c2e131-2b1b-4dd7-a77a-49b6e3c317fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T18:14:00.343Z", + "completed":"2016-11-28T18:14:00.343Z", + "new_balance":"4915.80", + "value":"-0.59" + } + }, + { + "id":"9bb9c6b6-dc8d-4708-a0a1-afd92ee21f7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T10:23:40.998Z", + "completed":"2016-11-30T10:23:40.998Z", + "new_balance":"4893.44", + "value":"-22.36" + } + }, + { + "id":"f7adacff-55f9-452b-aa2b-5e5c973efce4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T15:58:43.785Z", + "completed":"2016-11-30T15:58:43.785Z", + "new_balance":"4889.72", + "value":"-3.72" + } + }, + { + "id":"2016b7d5-d3c7-46b5-8427-cefa9c0307c5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T05:36:02.360Z", + "completed":"2016-12-01T05:36:02.360Z", + "new_balance":"4858.00", + "value":"-31.72" + } + }, + { + "id":"1fa3fc4d-79ef-4318-b86c-d06d7fe62cb2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:36:57.125Z", + "completed":"2016-12-01T16:36:57.125Z", + "new_balance":"4998.98", + "value":"140.98" + } + }, + { + "id":"d2945e13-95b3-4106-9e0c-b47e4095111c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T15:09:45.677Z", + "completed":"2016-12-04T15:09:45.677Z", + "new_balance":"4996.93", + "value":"-2.05" + } + }, + { + "id":"b4cc5089-4162-4e31-9baf-127625a70277", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:47:09.727Z", + "completed":"2016-12-04T18:47:09.727Z", + "new_balance":"4993.47", + "value":"-3.46" + } + }, + { + "id":"64880132-9550-432d-8878-5ce182bd6608", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T03:04:08.168Z", + "completed":"2016-12-11T03:04:08.168Z", + "new_balance":"4990.17", + "value":"-3.30" + } + }, + { + "id":"a0825cf8-c62d-484d-ada2-b7c743db915d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T07:29:24.093Z", + "completed":"2016-12-11T07:29:24.093Z", + "new_balance":"4985.56", + "value":"-4.61" + } + }, + { + "id":"c21b14c0-1777-475c-b062-ad415fffe809", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T00:21:01.189Z", + "completed":"2016-12-14T00:21:01.189Z", + "new_balance":"4978.92", + "value":"-6.64" + } + }, + { + "id":"2c616667-040e-4e88-b410-29a8a825fc90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T02:47:07.578Z", + "completed":"2016-12-14T02:47:07.578Z", + "new_balance":"4971.18", + "value":"-7.74" + } + }, + { + "id":"c5dddc1d-10dd-4acc-b48e-17df2d4a427f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:40:38.522Z", + "completed":"2016-12-14T03:40:38.522Z", + "new_balance":"4970.71", + "value":"-0.47" + } + }, + { + "id":"74ed1bf1-636e-4d0e-b2ec-8ef9402077cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T07:03:36.281Z", + "completed":"2016-12-14T07:03:36.281Z", + "new_balance":"4969.91", + "value":"-0.80" + } + }, + { + "id":"57ae3f11-0ee9-4e10-ace7-4943ee72b52d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T09:21:26.075Z", + "completed":"2016-12-14T09:21:26.075Z", + "new_balance":"4968.61", + "value":"-1.30" + } + }, + { + "id":"8ef34031-ca6b-4cad-a68c-c92d34e49ab5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T10:34:31.245Z", + "completed":"2016-12-14T10:34:31.245Z", + "new_balance":"4968.14", + "value":"-0.47" + } + }, + { + "id":"78b76b75-9b49-42a4-8162-6731579291c8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T14:39:32.877Z", + "completed":"2016-12-14T14:39:32.877Z", + "new_balance":"4961.39", + "value":"-6.75" + } + }, + { + "id":"0ef2ea05-c609-4334-b178-ecac7478e716", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T16:12:52.099Z", + "completed":"2016-12-14T16:12:52.099Z", + "new_balance":"4960.59", + "value":"-0.80" + } + }, + { + "id":"89936a62-14ae-421e-b927-dd1d5cb884a5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T16:27:03.815Z", + "completed":"2016-12-14T16:27:03.815Z", + "new_balance":"4952.89", + "value":"-7.70" + } + }, + { + "id":"5c4d8204-f3c7-42e9-ba2e-db51e9f24045", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T04:14:50.845Z", + "completed":"2016-12-15T04:14:50.845Z", + "new_balance":"4950.18", + "value":"-2.71" + } + }, + { + "id":"353b9b81-1486-44a3-8ece-375f0b1dcfb1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T11:50:22.858Z", + "completed":"2016-12-15T11:50:22.858Z", + "new_balance":"4949.71", + "value":"-0.47" + } + }, + { + "id":"511049b0-691e-465e-a8be-15d23bf397f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T22:04:31.630Z", + "completed":"2016-12-15T22:04:31.630Z", + "new_balance":"4948.94", + "value":"-0.77" + } + }, + { + "id":"70c8e57c-6183-4533-a6a0-4a28f924c720", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T06:10:40.673Z", + "completed":"2016-12-18T06:10:40.673Z", + "new_balance":"4946.35", + "value":"-2.59" + } + }, + { + "id":"268bf36b-e6cb-4105-b7b8-4b593a7b27b5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T07:26:53.292Z", + "completed":"2016-12-18T07:26:53.292Z", + "new_balance":"4936.20", + "value":"-10.15" + } + }, + { + "id":"582c419f-85c8-4a3f-9819-063e50ed5f2e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T07:35:02.141Z", + "completed":"2016-12-18T07:35:02.141Z", + "new_balance":"4933.62", + "value":"-2.58" + } + }, + { + "id":"dce84cb8-c7a6-4e0a-8e5b-878879e7374f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T10:22:55.874Z", + "completed":"2016-12-18T10:22:55.874Z", + "new_balance":"4933.15", + "value":"-0.47" + } + }, + { + "id":"ed4a63c2-8595-4754-9370-0210c26da5da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T10:56:20.416Z", + "completed":"2016-12-18T10:56:20.416Z", + "new_balance":"4932.68", + "value":"-0.47" + } + }, + { + "id":"ca5014c1-d4d7-43f5-8ca7-d33b501319f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T17:11:07.891Z", + "completed":"2016-12-18T17:11:07.891Z", + "new_balance":"4929.96", + "value":"-2.72" + } + }, + { + "id":"1ea3f09a-f31a-44e7-ab8a-2ce43667bfc1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T22:21:04.573Z", + "completed":"2016-12-18T22:21:04.573Z", + "new_balance":"4923.80", + "value":"-6.16" + } + }, + { + "id":"92a0b735-5a52-4fd0-9b84-c3b6d373a403", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T23:27:22.572Z", + "completed":"2016-12-18T23:27:22.572Z", + "new_balance":"4922.20", + "value":"-1.60" + } + }, + { + "id":"b620bf38-078a-4b79-84d4-6e857009f59c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T04:55:20.234Z", + "completed":"2016-12-19T04:55:20.234Z", + "new_balance":"4917.81", + "value":"-4.39" + } + }, + { + "id":"d4d26df4-e84e-47c6-8d8d-ff7ed2d416c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:42:33.587Z", + "completed":"2016-12-19T05:42:33.587Z", + "new_balance":"4912.89", + "value":"-4.92" + } + }, + { + "id":"61ff2b1e-b9bf-4396-8655-fae97a0fa9c3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T07:18:19.977Z", + "completed":"2016-12-19T07:18:19.977Z", + "new_balance":"4908.77", + "value":"-4.12" + } + }, + { + "id":"5ef6f80b-3c5b-4191-8d4b-0a7864a26462", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T07:35:49.820Z", + "completed":"2016-12-21T07:35:49.820Z", + "new_balance":"4908.30", + "value":"-0.47" + } + }, + { + "id":"667a5971-4842-4f1d-8d77-061868e11987", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T14:11:01.908Z", + "completed":"2016-12-21T14:11:01.908Z", + "new_balance":"4904.83", + "value":"-3.47" + } + }, + { + "id":"dff3ec64-20c8-4602-a85f-ab4d16cc464b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T15:24:11.440Z", + "completed":"2016-12-21T15:24:11.440Z", + "new_balance":"4892.47", + "value":"-12.36" + } + }, + { + "id":"e1595687-d5a6-4af5-a51c-9ed63322b6ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T15:51:31.715Z", + "completed":"2016-12-21T15:51:31.715Z", + "new_balance":"4891.32", + "value":"-1.15" + } + }, + { + "id":"53248c17-c3ad-4c5e-94a2-6787f8226423", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T16:09:59.708Z", + "completed":"2016-12-21T16:09:59.708Z", + "new_balance":"4881.71", + "value":"-9.61" + } + }, + { + "id":"84abd0f9-d3ec-458a-babb-4c6b569c9b6a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T00:24:04.794Z", + "completed":"2016-12-24T00:24:04.794Z", + "new_balance":"4880.51", + "value":"-1.20" + } + }, + { + "id":"4b9b67cf-46d7-4d21-821b-3bd955cc149c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T09:33:07.178Z", + "completed":"2016-12-24T09:33:07.178Z", + "new_balance":"4878.12", + "value":"-2.39" + } + }, + { + "id":"f5e1a5b7-f281-4fda-9b9f-76736ed9f74b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T11:57:34.851Z", + "completed":"2016-12-24T11:57:34.851Z", + "new_balance":"4876.77", + "value":"-1.35" + } + }, + { + "id":"41c14b08-d4cb-47f5-8957-0d0549292d73", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T08:53:29.973Z", + "completed":"2016-12-30T08:53:29.973Z", + "new_balance":"4854.41", + "value":"-22.36" + } + }, + { + "id":"86706251-569f-4e5b-a017-5b654192bfb3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T10:17:47.069Z", + "completed":"2016-12-30T10:17:47.069Z", + "new_balance":"4850.69", + "value":"-3.72" + } + }, + { + "id":"925a0992-cfc7-4c1b-9d8c-a81183f9900a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T06:00:25.798Z", + "completed":"2017-01-01T06:00:25.798Z", + "new_balance":"5033.39", + "value":"182.70" + } + }, + { + "id":"94f0ad55-c2ea-40f2-8f7d-8de16712e081", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T22:32:30.649Z", + "completed":"2017-01-01T22:32:30.649Z", + "new_balance":"5174.37", + "value":"140.98" + } + }, + { + "id":"e01ad1a7-5a36-4065-a3a2-f744e395df00", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T13:53:30.875Z", + "completed":"2017-01-02T13:53:30.875Z", + "new_balance":"5142.65", + "value":"-31.72" + } + }, + { + "id":"36c5d3a4-f23e-4aea-9526-99a86f43db1b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T01:23:52.230Z", + "completed":"2017-01-03T01:23:52.230Z", + "new_balance":"5140.91", + "value":"-1.74" + } + }, + { + "id":"ffa2b05d-630d-4902-8cf8-659bded51306", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T14:57:50.960Z", + "completed":"2017-01-03T14:57:50.960Z", + "new_balance":"5136.09", + "value":"-4.82" + } + }, + { + "id":"b1ba98c7-949b-47dd-9ccd-024e212509c5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T23:10:53.251Z", + "completed":"2017-01-03T23:10:53.251Z", + "new_balance":"5135.42", + "value":"-0.67" + } + }, + { + "id":"c2c102a6-120c-4f23-bdaa-7e619288097b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T15:14:41.535Z", + "completed":"2017-01-04T15:14:41.535Z", + "new_balance":"5134.02", + "value":"-1.40" + } + }, + { + "id":"e0b59e5a-a44e-4692-a29b-cfe44edb7f6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T10:31:09.397Z", + "completed":"2017-01-05T10:31:09.397Z", + "new_balance":"5133.50", + "value":"-0.52" + } + }, + { + "id":"9ade3bbb-e725-40f6-8417-4f64b62d96dc", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T04:46:17.659Z", + "completed":"2017-01-07T04:46:17.659Z", + "new_balance":"5130.91", + "value":"-2.59" + } + }, + { + "id":"cd57f0af-8412-46df-a38d-b0bda70ac569", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T10:35:09.066Z", + "completed":"2017-01-07T10:35:09.066Z", + "new_balance":"5129.31", + "value":"-1.60" + } + }, + { + "id":"5f17e7ec-db44-444d-839c-b581501d6432", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T07:08:01.717Z", + "completed":"2017-01-08T07:08:01.717Z", + "new_balance":"5127.44", + "value":"-1.87" + } + }, + { + "id":"52784af8-09d9-4995-b99e-1e4dd769a7fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T23:50:26.697Z", + "completed":"2017-01-08T23:50:26.697Z", + "new_balance":"5125.76", + "value":"-1.68" + } + }, + { + "id":"cbc1d523-830e-4460-9e8d-8ba67e71993a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T03:02:50.184Z", + "completed":"2017-01-09T03:02:50.184Z", + "new_balance":"5119.63", + "value":"-6.13" + } + }, + { + "id":"e427ae84-f231-43d0-a22e-77306007f24c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T23:20:51.479Z", + "completed":"2017-01-09T23:20:51.479Z", + "new_balance":"5117.32", + "value":"-2.31" + } + }, + { + "id":"adee00d4-ce42-4941-b6d4-cfb2285926a2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T01:29:25.514Z", + "completed":"2017-01-10T01:29:25.514Z", + "new_balance":"5112.79", + "value":"-4.53" + } + }, + { + "id":"009705bf-95ea-4d2f-95df-559b087b069d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T03:10:10.342Z", + "completed":"2017-01-10T03:10:10.342Z", + "new_balance":"5105.09", + "value":"-7.70" + } + }, + { + "id":"b92b7a2f-74f9-47e2-ab5a-9a5c9ce74fe4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T06:35:24.940Z", + "completed":"2017-01-11T06:35:24.940Z", + "new_balance":"5099.61", + "value":"-5.48" + } + }, + { + "id":"b41845ab-1d34-47ca-bcf5-2b0dfafc9f4e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T10:19:20.637Z", + "completed":"2017-01-11T10:19:20.637Z", + "new_balance":"5108.60", + "value":"8.99" + } + }, + { + "id":"878c490b-1711-479b-ad6d-bda7a01901c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T16:56:41.593Z", + "completed":"2017-01-11T16:56:41.593Z", + "new_balance":"5108.13", + "value":"-0.47" + } + }, + { + "id":"60a9cb38-ba56-427c-815d-0f46fab2fa2c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T00:03:52.720Z", + "completed":"2017-01-12T00:03:52.720Z", + "new_balance":"5107.32", + "value":"-0.81" + } + }, + { + "id":"deb2b8dc-04bf-4a4c-b16f-644cbb7b5587", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T01:56:59.901Z", + "completed":"2017-01-15T01:56:59.901Z", + "new_balance":"5104.89", + "value":"-2.43" + } + }, + { + "id":"23715cd3-9f74-44f4-9f82-c2c4cc29de2e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T15:38:57.622Z", + "completed":"2017-01-16T15:38:57.622Z", + "new_balance":"5101.59", + "value":"-3.30" + } + }, + { + "id":"0baa8f61-dbda-4ab4-a517-392c7703ab97", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:00:14.652Z", + "completed":"2017-01-17T18:00:14.652Z", + "new_balance":"5100.02", + "value":"-1.57" + } + }, + { + "id":"a5be6033-0a09-4a44-a609-03dc70448d42", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T16:53:14.286Z", + "completed":"2017-01-20T16:53:14.286Z", + "new_balance":"5099.50", + "value":"-0.52" + } + }, + { + "id":"76fb3c7d-f59d-43ee-b051-cdc9a19970d2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T04:07:02.912Z", + "completed":"2017-01-21T04:07:02.912Z", + "new_balance":"5095.78", + "value":"-3.72" + } + }, + { + "id":"22ece904-ab23-44f6-af73-1996cf1667d4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T06:27:07.251Z", + "completed":"2017-01-23T06:27:07.251Z", + "new_balance":"5073.42", + "value":"-22.36" + } + }, + { + "id":"9f5737c5-1500-4293-b369-b802f02dc583", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T07:22:14.315Z", + "completed":"2017-02-01T07:22:14.315Z", + "new_balance":"5214.40", + "value":"140.98" + } + }, + { + "id":"cc241631-d6b1-4afb-bb6b-0aee90308190", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T01:25:08.035Z", + "completed":"2017-02-03T01:25:08.035Z", + "new_balance":"5182.68", + "value":"-31.72" + } + }, + { + "id":"d3c85346-95f2-4a45-956b-13c9bd931c98", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T20:15:47.210Z", + "completed":"2017-02-03T20:15:47.210Z", + "new_balance":"5169.58", + "value":"-13.10" + } + }, + { + "id":"f0ce6322-71ca-4142-9144-abd02be9cc99", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T06:26:06.571Z", + "completed":"2017-02-04T06:26:06.571Z", + "new_balance":"5168.26", + "value":"-1.32" + } + }, + { + "id":"a9034661-0920-41af-b602-1d67dae7d650", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T01:02:37.860Z", + "completed":"2017-02-05T01:02:37.860Z", + "new_balance":"5167.59", + "value":"-0.67" + } + }, + { + "id":"c848cedd-a84c-4750-b6b7-64d7cd90b48d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T06:18:47.519Z", + "completed":"2017-02-06T06:18:47.519Z", + "new_balance":"5165.40", + "value":"-2.19" + } + }, + { + "id":"63430782-7954-4e97-bdc8-bd8534fb442d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T00:19:21.504Z", + "completed":"2017-02-07T00:19:21.504Z", + "new_balance":"5160.83", + "value":"-4.57" + } + }, + { + "id":"5b19e609-3268-47c4-a0de-27f33d40cf6b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T05:38:20.522Z", + "completed":"2017-02-07T05:38:20.522Z", + "new_balance":"5158.52", + "value":"-2.31" + } + }, + { + "id":"ac352cf6-1f85-4306-9893-b166281b6119", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T12:30:06.767Z", + "completed":"2017-02-07T12:30:06.767Z", + "new_balance":"5150.82", + "value":"-7.70" + } + }, + { + "id":"037eb72b-1ec2-4e5a-898d-88525878bc44", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T04:11:19.856Z", + "completed":"2017-02-08T04:11:19.856Z", + "new_balance":"5146.68", + "value":"-4.14" + } + }, + { + "id":"b0c73c93-bc45-4e72-b06c-5882ff86b1b1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T01:30:24.843Z", + "completed":"2017-02-09T01:30:24.843Z", + "new_balance":"5144.28", + "value":"-2.40" + } + }, + { + "id":"b9a5d94f-de60-44ac-8b66-4ca40c3a8e13", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T22:01:33.220Z", + "completed":"2017-02-10T22:01:33.220Z", + "new_balance":"5143.76", + "value":"-0.52" + } + }, + { + "id":"36a0e48a-9071-45a3-99c1-c77c217f6818", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T12:57:36.368Z", + "completed":"2017-02-12T12:57:36.368Z", + "new_balance":"5140.88", + "value":"-2.88" + } + }, + { + "id":"6e28751b-e548-4b7e-a55c-80cb5a6b080c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:15:44.669Z", + "completed":"2017-02-14T20:15:44.669Z", + "new_balance":"5138.57", + "value":"-2.31" + } + }, + { + "id":"e1b8643a-130c-4a5a-b670-7b77ce812c67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T16:15:43.110Z", + "completed":"2017-02-16T16:15:43.110Z", + "new_balance":"5133.96", + "value":"-4.61" + } + }, + { + "id":"ebe341bf-3d15-4b69-9a29-712564ffa064", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T22:12:08.817Z", + "completed":"2017-02-16T22:12:08.817Z", + "new_balance":"5133.49", + "value":"-0.47" + } + }, + { + "id":"59069a5b-28ff-4e89-bf96-18e577f53381", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T08:05:29.783Z", + "completed":"2017-02-18T08:05:29.783Z", + "new_balance":"5132.90", + "value":"-0.59" + } + }, + { + "id":"d0283996-5498-4052-9dcb-1d8e8d84a6ce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T03:02:59.686Z", + "completed":"2017-02-21T03:02:59.686Z", + "new_balance":"5129.18", + "value":"-3.72" + } + }, + { + "id":"cf647e4e-db3c-4e3e-8c0a-2143c48db4fa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T18:33:09.970Z", + "completed":"2017-02-21T18:33:09.970Z", + "new_balance":"5140.58", + "value":"11.40" + } + }, + { + "id":"3e6117e7-a2f4-4666-aa7b-fed69e08ae81", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T21:18:16.314Z", + "completed":"2017-02-27T21:18:16.314Z", + "new_balance":"5118.22", + "value":"-22.36" + } + }, + { + "id":"325a92e7-ef14-409d-b92a-bf245b468a65", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T20:48:17.411Z", + "completed":"2017-03-01T20:48:17.411Z", + "new_balance":"5259.20", + "value":"140.98" + } + }, + { + "id":"e27f9f35-e01f-4c98-a477-4f555a43f389", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T17:19:29.302Z", + "completed":"2017-03-03T17:19:29.302Z", + "new_balance":"5227.48", + "value":"-31.72" + } + }, + { + "id":"e583b9ff-d346-4b6f-9df9-4b221536a8fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T08:07:46.204Z", + "completed":"2017-03-04T08:07:46.204Z", + "new_balance":"5224.02", + "value":"-3.46" + } + }, + { + "id":"2cd55ea6-a894-48ab-b4c7-bf138d480060", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T08:34:50.657Z", + "completed":"2017-03-04T08:34:50.657Z", + "new_balance":"5219.41", + "value":"-4.61" + } + }, + { + "id":"9ee7f978-e89b-4395-933b-cb07cb246792", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:35:25.727Z", + "completed":"2017-03-04T16:35:25.727Z", + "new_balance":"5217.36", + "value":"-2.05" + } + }, + { + "id":"a0674eb3-c3c7-498d-98de-0bf653c06877", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T20:36:56.227Z", + "completed":"2017-03-04T20:36:56.227Z", + "new_balance":"5214.06", + "value":"-3.30" + } + }, + { + "id":"abd97d74-94c7-44b3-b0c3-021867851153", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T04:16:04.389Z", + "completed":"2017-03-05T04:16:04.389Z", + "new_balance":"5206.36", + "value":"-7.70" + } + }, + { + "id":"e1bdbba9-498d-42b5-a155-08cf547fdb52", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:57:02.457Z", + "completed":"2017-03-05T11:57:02.457Z", + "new_balance":"5205.06", + "value":"-1.30" + } + }, + { + "id":"6fa407d6-9874-4f52-8dfc-d54e6ba60322", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T15:10:14.782Z", + "completed":"2017-03-05T15:10:14.782Z", + "new_balance":"5198.31", + "value":"-6.75" + } + }, + { + "id":"d398d06f-f638-4423-8566-5660f5334309", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T21:05:41.097Z", + "completed":"2017-03-05T21:05:41.097Z", + "new_balance":"5197.84", + "value":"-0.47" + } + }, + { + "id":"33b78b05-99b1-4da0-98db-487dd2d614c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T02:02:41.296Z", + "completed":"2017-03-06T02:02:41.296Z", + "new_balance":"5191.20", + "value":"-6.64" + } + }, + { + "id":"2d528579-46ec-4623-852a-dd4ee07634e0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T06:11:11.101Z", + "completed":"2017-03-06T06:11:11.101Z", + "new_balance":"5183.46", + "value":"-7.74" + } + }, + { + "id":"02b15f0f-9496-420e-ae78-9c9e4713aded", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T04:32:27.622Z", + "completed":"2017-03-07T04:32:27.622Z", + "new_balance":"5182.99", + "value":"-0.47" + } + }, + { + "id":"0ebbf941-254c-4cc0-aae6-975b86a7ac8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T20:51:08.206Z", + "completed":"2017-03-07T20:51:08.206Z", + "new_balance":"5182.19", + "value":"-0.80" + } + }, + { + "id":"ae16ff9a-eeab-45b4-adcd-8b477877ff89", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T05:47:13.621Z", + "completed":"2017-03-08T05:47:13.621Z", + "new_balance":"5181.39", + "value":"-0.80" + } + }, + { + "id":"ec5960fa-0f29-402d-9ba1-e47fee6936b9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T13:40:12.152Z", + "completed":"2017-03-08T13:40:12.152Z", + "new_balance":"5180.62", + "value":"-0.77" + } + }, + { + "id":"b92bb9d6-3263-4e88-8704-3003fc2b9456", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T21:33:55.921Z", + "completed":"2017-03-10T21:33:55.921Z", + "new_balance":"5177.91", + "value":"-2.71" + } + }, + { + "id":"dd4bf8e5-3105-4bc4-b053-a47489c83009", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T00:35:49.980Z", + "completed":"2017-03-11T00:35:49.980Z", + "new_balance":"5175.19", + "value":"-2.72" + } + }, + { + "id":"60628d35-8ea0-475c-bd53-c0deec5a0b8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T06:28:35.256Z", + "completed":"2017-03-11T06:28:35.256Z", + "new_balance":"5174.72", + "value":"-0.47" + } + }, + { + "id":"5b1a84b5-a981-4cbe-aaca-4ab0faa7556b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:46:46.564Z", + "completed":"2017-03-11T16:46:46.564Z", + "new_balance":"5173.12", + "value":"-1.60" + } + }, + { + "id":"20c4cd7d-1b63-47e4-8ffe-b70bc1442e28", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T06:20:24.831Z", + "completed":"2017-03-12T06:20:24.831Z", + "new_balance":"5170.53", + "value":"-2.59" + } + }, + { + "id":"67420538-9347-4d2b-9cc6-ff433612f0f5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T09:27:56.926Z", + "completed":"2017-03-12T09:27:56.926Z", + "new_balance":"5170.06", + "value":"-0.47" + } + }, + { + "id":"ef8c9751-1bd3-4aeb-8afd-11c0daaab685", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T15:53:52.800Z", + "completed":"2017-03-12T15:53:52.800Z", + "new_balance":"5159.91", + "value":"-10.15" + } + }, + { + "id":"1ba89eaa-ec09-41c5-ba3d-8c76adeacdcf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T21:59:56.144Z", + "completed":"2017-03-12T21:59:56.144Z", + "new_balance":"5153.75", + "value":"-6.16" + } + }, + { + "id":"e72531c3-e691-45c1-9982-ceb0d47d5d6a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T04:26:44.572Z", + "completed":"2017-03-13T04:26:44.572Z", + "new_balance":"5153.28", + "value":"-0.47" + } + }, + { + "id":"26b2f566-3923-4c20-ad85-4d1ed4282689", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T06:36:31.163Z", + "completed":"2017-03-13T06:36:31.163Z", + "new_balance":"5150.70", + "value":"-2.58" + } + }, + { + "id":"4e412470-3ecb-4d3d-b06f-1adf09f98a10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T13:19:45.523Z", + "completed":"2017-03-15T13:19:45.523Z", + "new_balance":"5145.78", + "value":"-4.92" + } + }, + { + "id":"3d7d82ee-c4e5-4f1b-98cb-dac36876925f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T20:36:40.511Z", + "completed":"2017-03-15T20:36:40.511Z", + "new_balance":"5141.66", + "value":"-4.12" + } + }, + { + "id":"86011f75-f062-49c0-8ab6-d8a70a96f7a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T02:24:29.367Z", + "completed":"2017-03-17T02:24:29.367Z", + "new_balance":"5137.27", + "value":"-4.39" + } + }, + { + "id":"aa06b056-7266-47df-a5c4-3863cb9dfcd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T15:06:57.872Z", + "completed":"2017-03-18T15:06:57.872Z", + "new_balance":"5127.66", + "value":"-9.61" + } + }, + { + "id":"61fcc58f-3d2e-44d8-b03b-f99b0103c5fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T13:09:38.163Z", + "completed":"2017-03-20T13:09:38.163Z", + "new_balance":"5115.30", + "value":"-12.36" + } + }, + { + "id":"f295d8e1-c438-47b3-8093-3860bdf9dc4a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T22:24:18.046Z", + "completed":"2017-03-22T22:24:18.046Z", + "new_balance":"5111.83", + "value":"-3.47" + } + }, + { + "id":"bf4473fd-bd38-459f-a8f0-17562c55cb59", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T03:34:57.987Z", + "completed":"2017-03-25T03:34:57.987Z", + "new_balance":"5110.68", + "value":"-1.15" + } + }, + { + "id":"ca00da72-48b2-41a8-ab39-860da6ed1686", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T07:42:02.200Z", + "completed":"2017-03-25T07:42:02.200Z", + "new_balance":"5110.21", + "value":"-0.47" + } + }, + { + "id":"afb5b70e-1909-4bfc-abbf-befa0424517a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T12:51:24.586Z", + "completed":"2017-03-26T12:51:24.586Z", + "new_balance":"5108.86", + "value":"-1.35" + } + }, + { + "id":"40ccff40-b435-4dcc-b45c-cd359754aa00", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T13:56:37.391Z", + "completed":"2017-03-26T13:56:37.391Z", + "new_balance":"5106.47", + "value":"-2.39" + } + }, + { + "id":"bc70c5d3-d18e-4eeb-a54e-8ce4d71c2756", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T02:01:29.248Z", + "completed":"2017-03-27T02:01:29.248Z", + "new_balance":"5105.27", + "value":"-1.20" + } + }, + { + "id":"6e4280ee-d499-4195-bf11-8116d707cbdb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T05:07:46.878Z", + "completed":"2017-03-28T05:07:46.878Z", + "new_balance":"5101.55", + "value":"-3.72" + } + }, + { + "id":"845ccd5e-4754-4f11-8270-e0377e57e42b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T20:14:02.780Z", + "completed":"2017-03-31T20:14:02.780Z", + "new_balance":"5079.19", + "value":"-22.36" + } + }, + { + "id":"767576a3-f43f-47e9-8ca9-22322b422e3b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T17:53:16.324Z", + "completed":"2017-04-01T17:53:16.324Z", + "new_balance":"5261.89", + "value":"182.70" + } + }, + { + "id":"35d1d6ea-d900-4eaf-958d-60cca39ee902", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T18:13:40.386Z", + "completed":"2017-04-01T18:13:40.386Z", + "new_balance":"5230.17", + "value":"-31.72" + } + }, + { + "id":"8b778b01-e6fd-4f69-bcb1-9bfee3fcde02", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T20:49:23.853Z", + "completed":"2017-04-01T20:49:23.853Z", + "new_balance":"5371.15", + "value":"140.98" + } + }, + { + "id":"7c8c004d-c899-4844-ab01-8f6536f2f756", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T08:26:04.122Z", + "completed":"2017-04-03T08:26:04.122Z", + "new_balance":"5370.48", + "value":"-0.67" + } + }, + { + "id":"478a49b9-99c4-4b9b-a81f-3a6e883fd310", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T19:54:20.855Z", + "completed":"2017-04-03T19:54:20.855Z", + "new_balance":"5365.66", + "value":"-4.82" + } + }, + { + "id":"7f3638a4-b981-4107-964c-461f31c025da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T23:11:46.006Z", + "completed":"2017-04-03T23:11:46.006Z", + "new_balance":"5363.92", + "value":"-1.74" + } + }, + { + "id":"668b1af8-cf6b-4945-a93e-b2f2cea58cce", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T06:43:55.729Z", + "completed":"2017-04-05T06:43:55.729Z", + "new_balance":"5363.40", + "value":"-0.52" + } + }, + { + "id":"b2fd306a-5e75-4170-966c-72e05c25e254", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T13:43:24.660Z", + "completed":"2017-04-05T13:43:24.660Z", + "new_balance":"5362.00", + "value":"-1.40" + } + }, + { + "id":"73682ad1-2bb1-4844-a662-933b5a318631", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T12:44:59.765Z", + "completed":"2017-04-06T12:44:59.765Z", + "new_balance":"5360.40", + "value":"-1.60" + } + }, + { + "id":"4d54bd95-59f0-4cb2-b581-1628af1c5bd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T13:43:46.439Z", + "completed":"2017-04-09T13:43:46.439Z", + "new_balance":"5357.81", + "value":"-2.59" + } + }, + { + "id":"72c515a5-4d80-4a99-875f-06e45f5e9cfd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:23:14.132Z", + "completed":"2017-04-10T00:23:14.132Z", + "new_balance":"5356.13", + "value":"-1.68" + } + }, + { + "id":"2262e81e-29e8-4334-8e4a-f97407634d6b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T10:02:28.577Z", + "completed":"2017-04-11T10:02:28.577Z", + "new_balance":"5354.26", + "value":"-1.87" + } + }, + { + "id":"46e2875f-ca59-4afe-8f9a-8e24b5583b47", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:03:17.552Z", + "completed":"2017-04-11T17:03:17.552Z", + "new_balance":"5351.95", + "value":"-2.31" + } + }, + { + "id":"ccc05c73-f0ff-442e-9ecf-b5b05cc669df", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T08:07:08.772Z", + "completed":"2017-04-13T08:07:08.772Z", + "new_balance":"5345.82", + "value":"-6.13" + } + }, + { + "id":"fa9e56a9-3499-4d97-9d88-77ac4776b0fe", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T12:14:38.302Z", + "completed":"2017-04-13T12:14:38.302Z", + "new_balance":"5338.12", + "value":"-7.70" + } + }, + { + "id":"ab73d671-f878-423c-95eb-dbbbcd5717b8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T15:26:21.127Z", + "completed":"2017-04-15T15:26:21.127Z", + "new_balance":"5333.59", + "value":"-4.53" + } + }, + { + "id":"547c6306-af21-414c-8e5c-2135e0cd87f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T18:35:22.556Z", + "completed":"2017-04-16T18:35:22.556Z", + "new_balance":"5332.78", + "value":"-0.81" + } + }, + { + "id":"d4c578f0-a023-4903-9522-a054c72fb1d1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T23:09:29.137Z", + "completed":"2017-04-16T23:09:29.137Z", + "new_balance":"5332.31", + "value":"-0.47" + } + }, + { + "id":"4aec68d4-a6d5-4914-82d9-45453cbb4f7d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T06:17:57.685Z", + "completed":"2017-04-18T06:17:57.685Z", + "new_balance":"5326.83", + "value":"-5.48" + } + }, + { + "id":"2b37cddd-a6ce-48c1-9ca6-09360c44b487", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T14:04:07.138Z", + "completed":"2017-04-23T14:04:07.138Z", + "new_balance":"5324.40", + "value":"-2.43" + } + }, + { + "id":"b8227e8b-101c-42b1-bc9a-b12583df7cac", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T05:08:35.223Z", + "completed":"2017-04-24T05:08:35.223Z", + "new_balance":"5322.83", + "value":"-1.57" + } + }, + { + "id":"bfb4f0d5-8fdd-41e7-a7d1-be5f68ab7d6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T07:09:13.282Z", + "completed":"2017-04-24T07:09:13.282Z", + "new_balance":"5319.53", + "value":"-3.30" + } + }, + { + "id":"b8fc5a00-f53e-4fca-9565-1a791142d0df", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T12:54:25.977Z", + "completed":"2017-04-26T12:54:25.977Z", + "new_balance":"5319.01", + "value":"-0.52" + } + }, + { + "id":"ebadbd7d-f40e-45e0-9a16-62d0a175c860", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T10:56:05.664Z", + "completed":"2017-04-28T10:56:05.664Z", + "new_balance":"5315.29", + "value":"-3.72" + } + }, + { + "id":"1016c794-80ad-491a-bdd8-c61a26b32aec", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T12:21:16.404Z", + "completed":"2017-04-28T12:21:16.404Z", + "new_balance":"5292.93", + "value":"-22.36" + } + }, + { + "id":"3bc118b9-6246-40f7-96d4-f076681dbd4c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T00:39:16.219Z", + "completed":"2017-05-02T00:39:16.219Z", + "new_balance":"5279.83", + "value":"-13.10" + } + }, + { + "id":"cb645d5f-af3d-4846-8e44-06aa38c8d023", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T03:54:25.146Z", + "completed":"2017-05-02T03:54:25.146Z", + "new_balance":"5279.16", + "value":"-0.67" + } + }, + { + "id":"dac2cb99-55e8-4e8c-b80a-b2407afe08ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T08:27:24.400Z", + "completed":"2017-05-02T08:27:24.400Z", + "new_balance":"5247.44", + "value":"-31.72" + } + }, + { + "id":"098ecbc0-4c12-4528-aeea-2a5e20868e1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T11:51:26.170Z", + "completed":"2017-05-02T11:51:26.170Z", + "new_balance":"5246.12", + "value":"-1.32" + } + }, + { + "id":"5af91ccb-af2d-4232-8a8f-98ed16b1432c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T02:59:58.182Z", + "completed":"2017-05-06T02:59:58.182Z", + "new_balance":"5243.81", + "value":"-2.31" + } + }, + { + "id":"4f06d12c-a71c-4994-88c5-8177b6d59f2c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T19:55:42.339Z", + "completed":"2017-05-06T19:55:42.339Z", + "new_balance":"5241.62", + "value":"-2.19" + } + }, + { + "id":"a89b7982-a730-4df8-98a9-bb096fdffba9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T03:21:49.977Z", + "completed":"2017-05-07T03:21:49.977Z", + "new_balance":"5237.05", + "value":"-4.57" + } + }, + { + "id":"ad7381c2-07e2-48da-8909-4f9ddd06eba1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T11:28:47.292Z", + "completed":"2017-05-07T11:28:47.292Z", + "new_balance":"5229.35", + "value":"-7.70" + } + }, + { + "id":"ef3f346c-ca54-4c2b-99a1-b8e8a8f196ab", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T14:46:19.321Z", + "completed":"2017-05-09T14:46:19.321Z", + "new_balance":"5370.33", + "value":"140.98" + } + }, + { + "id":"da45799e-2b31-4159-9946-720a13448407", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T07:55:27.109Z", + "completed":"2017-05-14T07:55:27.109Z", + "new_balance":"5367.93", + "value":"-2.40" + } + }, + { + "id":"34e7974e-e84f-420f-b184-5b09ad34d5e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T15:32:32.302Z", + "completed":"2017-05-14T15:32:32.302Z", + "new_balance":"5363.79", + "value":"-4.14" + } + }, + { + "id":"0f8e26bd-9021-4f45-bf5f-f2835cb58514", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T10:25:44.876Z", + "completed":"2017-05-16T10:25:44.876Z", + "new_balance":"5363.27", + "value":"-0.52" + } + }, + { + "id":"fbca1968-fed6-4601-bb0b-099216c4d516", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T03:28:04.701Z", + "completed":"2017-05-21T03:28:04.701Z", + "new_balance":"5360.39", + "value":"-2.88" + } + }, + { + "id":"67a5b964-503b-438c-b6af-dc34c6136901", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T17:01:56.456Z", + "completed":"2017-05-23T17:01:56.456Z", + "new_balance":"5359.92", + "value":"-0.47" + } + }, + { + "id":"aa4840f1-967d-472f-a677-18441d74ec7c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T21:03:44.933Z", + "completed":"2017-05-23T21:03:44.933Z", + "new_balance":"5357.61", + "value":"-2.31" + } + }, + { + "id":"2543e888-799e-4aa0-aa5a-94718afe4d2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T19:16:37.020Z", + "completed":"2017-05-24T19:16:37.020Z", + "new_balance":"5353.00", + "value":"-4.61" + } + }, + { + "id":"00fe7a36-288a-4281-b80d-86525e5e21ab", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T18:32:33.788Z", + "completed":"2017-05-27T18:32:33.788Z", + "new_balance":"5352.41", + "value":"-0.59" + } + }, + { + "id":"34821b69-42db-484d-968c-4330ef72cf85", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T03:17:08.232Z", + "completed":"2017-05-30T03:17:08.232Z", + "new_balance":"5330.05", + "value":"-22.36" + } + }, + { + "id":"f3f70614-ef52-44e6-afd6-7c25f461af34", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T20:01:44.410Z", + "completed":"2017-05-30T20:01:44.410Z", + "new_balance":"5326.33", + "value":"-3.72" + } + }, + { + "id":"ec97adc1-ecf6-4929-a61e-059b20cc66fb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T00:57:28.130Z", + "completed":"2017-06-01T00:57:28.130Z", + "new_balance":"5294.61", + "value":"-31.72" + } + }, + { + "id":"9371a644-bf3f-4526-9f93-34cb5aa7ea87", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T01:44:28.990Z", + "completed":"2017-06-01T01:44:28.990Z", + "new_balance":"5435.59", + "value":"140.98" + } + }, + { + "id":"99573c06-ce51-491d-927b-72672fac3733", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T09:28:35.399Z", + "completed":"2017-06-04T09:28:35.399Z", + "new_balance":"5433.54", + "value":"-2.05" + } + }, + { + "id":"a19b6839-e91d-4136-bac7-d8f93aecb908", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:07:42.383Z", + "completed":"2017-06-04T13:07:42.383Z", + "new_balance":"5430.08", + "value":"-3.46" + } + }, + { + "id":"1efd169d-1ea2-4c08-99ab-c7ec3d820605", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T03:08:02.846Z", + "completed":"2017-06-11T03:08:02.846Z", + "new_balance":"5426.78", + "value":"-3.30" + } + }, + { + "id":"21a9c9bf-13d6-4133-8218-6a78488da2da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T12:36:44.254Z", + "completed":"2017-06-11T12:36:44.254Z", + "new_balance":"5422.17", + "value":"-4.61" + } + }, + { + "id":"5d20e387-d557-405c-9516-4908ff2bd1e1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T07:38:21.893Z", + "completed":"2017-06-12T07:38:21.893Z", + "new_balance":"5420.87", + "value":"-1.30" + } + }, + { + "id":"9f0e57b6-4629-4b0b-a628-f4df7575bccd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T12:16:17.449Z", + "completed":"2017-06-12T12:16:17.449Z", + "new_balance":"5413.17", + "value":"-7.70" + } + }, + { + "id":"7fbf76d2-cca3-439a-a908-6942cb321248", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T21:50:21.978Z", + "completed":"2017-06-12T21:50:21.978Z", + "new_balance":"5412.70", + "value":"-0.47" + } + }, + { + "id":"d0093848-0389-4e03-9724-605da8f806fd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T06:12:16.103Z", + "completed":"2017-06-13T06:12:16.103Z", + "new_balance":"5405.95", + "value":"-6.75" + } + }, + { + "id":"11a1ae61-b0b0-4176-a9d2-58222f7bb8b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T17:58:58.698Z", + "completed":"2017-06-13T17:58:58.698Z", + "new_balance":"5399.31", + "value":"-6.64" + } + }, + { + "id":"7dafd5d0-dc6a-4b8e-a5c2-69c74d1e9220", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T19:25:04.272Z", + "completed":"2017-06-13T19:25:04.272Z", + "new_balance":"5391.57", + "value":"-7.74" + } + }, + { + "id":"dc30f79d-b9bd-4668-92af-12b43b87a9ad", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T05:04:17.368Z", + "completed":"2017-06-14T05:04:17.368Z", + "new_balance":"5390.77", + "value":"-0.80" + } + }, + { + "id":"b71439a1-ddc7-4d31-855d-63148edfa631", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T06:25:04.643Z", + "completed":"2017-06-14T06:25:04.643Z", + "new_balance":"5390.30", + "value":"-0.47" + } + }, + { + "id":"96bc9513-f1e2-4551-99f5-2582e8132dcb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T13:24:17.550Z", + "completed":"2017-06-14T13:24:17.550Z", + "new_balance":"5389.50", + "value":"-0.80" + } + }, + { + "id":"1ab48bd5-6554-40bb-8c6c-051759e257ae", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T16:20:06.548Z", + "completed":"2017-06-15T16:20:06.548Z", + "new_balance":"5389.03", + "value":"-0.47" + } + }, + { + "id":"2cf97e53-283a-4c02-8746-39cf50cfe662", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T19:51:26.949Z", + "completed":"2017-06-15T19:51:26.949Z", + "new_balance":"5388.26", + "value":"-0.77" + } + }, + { + "id":"041fd6a0-67a3-471f-b7bb-8e474e376765", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T21:27:39.682Z", + "completed":"2017-06-15T21:27:39.682Z", + "new_balance":"5385.55", + "value":"-2.71" + } + }, + { + "id":"0ab9d866-66d5-4064-9a5a-4476daa0950c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T09:17:29.570Z", + "completed":"2017-06-16T09:17:29.570Z", + "new_balance":"5382.83", + "value":"-2.72" + } + }, + { + "id":"a84c3dea-b831-4991-9540-d7127b285595", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T20:36:31.869Z", + "completed":"2017-06-17T20:36:31.869Z", + "new_balance":"5381.23", + "value":"-1.60" + } + }, + { + "id":"5b8a7126-9ed1-4b88-b34f-8c622df3bb45", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T09:04:16.320Z", + "completed":"2017-06-18T09:04:16.320Z", + "new_balance":"5378.64", + "value":"-2.59" + } + }, + { + "id":"3b90108f-9aa4-4824-b9b4-a9285e94153e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T14:00:11.332Z", + "completed":"2017-06-18T14:00:11.332Z", + "new_balance":"5378.17", + "value":"-0.47" + } + }, + { + "id":"2b1641f1-15c4-4905-a685-dee5ab5b43c3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T17:38:30.165Z", + "completed":"2017-06-18T17:38:30.165Z", + "new_balance":"5372.01", + "value":"-6.16" + } + }, + { + "id":"93ce598c-5829-49d3-b6be-ae901abfe330", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:39:30.586Z", + "completed":"2017-06-18T19:39:30.586Z", + "new_balance":"5361.86", + "value":"-10.15" + } + }, + { + "id":"ef612e75-da0b-4156-adfe-560ac0d9893b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T20:48:14.107Z", + "completed":"2017-06-18T20:48:14.107Z", + "new_balance":"5361.39", + "value":"-0.47" + } + }, + { + "id":"5a3f1ae3-7dfd-406a-b5ea-f9d4e75c8f8c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T21:07:59.300Z", + "completed":"2017-06-18T21:07:59.300Z", + "new_balance":"5358.81", + "value":"-2.58" + } + }, + { + "id":"73dd4f4b-6b6b-45ea-9016-847f3bbc04d9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T06:03:39.671Z", + "completed":"2017-06-19T06:03:39.671Z", + "new_balance":"5354.69", + "value":"-4.12" + } + }, + { + "id":"63d38ddb-251b-46f3-93ec-00ce7b569e90", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T15:28:56.203Z", + "completed":"2017-06-19T15:28:56.203Z", + "new_balance":"5350.30", + "value":"-4.39" + } + }, + { + "id":"bb5a2034-f961-4e3e-b64c-2e4700c64ed3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T23:54:03.731Z", + "completed":"2017-06-19T23:54:03.731Z", + "new_balance":"5345.38", + "value":"-4.92" + } + }, + { + "id":"ce21b5d5-d716-429f-b391-948e5fab9640", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T11:35:55.618Z", + "completed":"2017-06-21T11:35:55.618Z", + "new_balance":"5333.02", + "value":"-12.36" + } + }, + { + "id":"9660e750-8b60-4ecf-92d5-d029ecaa37f6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T23:50:30.375Z", + "completed":"2017-06-21T23:50:30.375Z", + "new_balance":"5323.41", + "value":"-9.61" + } + }, + { + "id":"700d58e2-aa2c-4cdb-9a74-ecf4c7462539", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T06:29:19.171Z", + "completed":"2017-06-22T06:29:19.171Z", + "new_balance":"5322.26", + "value":"-1.15" + } + }, + { + "id":"94a8e04b-5d74-4eea-bf8d-87aac98252ed", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T06:58:37.488Z", + "completed":"2017-06-22T06:58:37.488Z", + "new_balance":"5318.79", + "value":"-3.47" + } + }, + { + "id":"e208ca06-83f8-4656-ba26-9b3f581d770f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T18:56:19.051Z", + "completed":"2017-06-22T18:56:19.051Z", + "new_balance":"5318.32", + "value":"-0.47" + } + }, + { + "id":"cff998a7-6f84-459e-a58e-a3d6e98640f9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T15:18:03.332Z", + "completed":"2017-06-23T15:18:03.332Z", + "new_balance":"5316.97", + "value":"-1.35" + } + }, + { + "id":"e35fcf41-a755-4230-b3db-278b26e09dc5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T20:49:42.548Z", + "completed":"2017-06-24T20:49:42.548Z", + "new_balance":"5314.58", + "value":"-2.39" + } + }, + { + "id":"17fdde56-fe71-4cd3-b83a-2cea59ab5bf9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T20:17:31.992Z", + "completed":"2017-06-26T20:17:31.992Z", + "new_balance":"5313.38", + "value":"-1.20" + } + }, + { + "id":"6d764841-a8ca-4748-8e39-cda5d497489a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T13:12:26.686Z", + "completed":"2017-06-30T13:12:26.686Z", + "new_balance":"5291.02", + "value":"-22.36" + } + }, + { + "id":"8b4ed808-1bd3-47a2-b48f-d59c3a77d931", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:02:12.233Z", + "completed":"2017-06-30T20:02:12.233Z", + "new_balance":"5287.30", + "value":"-3.72" + } + }, + { + "id":"2fe332b0-a995-4191-94b6-9dbeb8b8b5cd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T11:28:04.746Z", + "completed":"2017-07-01T11:28:04.746Z", + "new_balance":"5470.00", + "value":"182.70" + } + }, + { + "id":"120e97a4-7e5e-4961-8cf7-234edad7e041", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T23:33:40.371Z", + "completed":"2017-07-01T23:33:40.371Z", + "new_balance":"5610.98", + "value":"140.98" + } + }, + { + "id":"ea1c92e5-b02f-4005-bfea-c3c6237d6f84", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T19:36:01.758Z", + "completed":"2017-07-03T19:36:01.758Z", + "new_balance":"5579.26", + "value":"-31.72" + } + }, + { + "id":"037e8e36-4b70-4e54-96b0-e0286a23ff80", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T09:19:21.488Z", + "completed":"2017-07-04T09:19:21.488Z", + "new_balance":"5574.44", + "value":"-4.82" + } + }, + { + "id":"af4fcc3e-2815-42bc-86eb-f666a1fab609", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:48:48.786Z", + "completed":"2017-07-04T13:48:48.786Z", + "new_balance":"5573.77", + "value":"-0.67" + } + }, + { + "id":"cd6484ce-d119-4097-bc7e-7fd4114b4821", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T18:50:43.777Z", + "completed":"2017-07-04T18:50:43.777Z", + "new_balance":"5572.03", + "value":"-1.74" + } + }, + { + "id":"4cf10850-a05c-4acc-aab4-b7760ffdba56", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T23:49:40.950Z", + "completed":"2017-07-05T23:49:40.950Z", + "new_balance":"5570.63", + "value":"-1.40" + } + }, + { + "id":"d65b3a00-628c-40a9-b9dd-02e05e78c8cf", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T16:24:10.510Z", + "completed":"2017-07-07T16:24:10.510Z", + "new_balance":"5570.11", + "value":"-0.52" + } + }, + { + "id":"864f45f8-1e8a-4305-b0fd-07c630aee22f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T02:54:48.272Z", + "completed":"2017-07-11T02:54:48.272Z", + "new_balance":"5568.51", + "value":"-1.60" + } + }, + { + "id":"2b547820-4b15-47b2-82c0-d61cd78d0a8a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T08:39:41.816Z", + "completed":"2017-07-11T08:39:41.816Z", + "new_balance":"5566.20", + "value":"-2.31" + } + }, + { + "id":"69147f12-b957-4ef4-a02e-8cce29e4d1e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T12:14:28.155Z", + "completed":"2017-07-11T12:14:28.155Z", + "new_balance":"5564.33", + "value":"-1.87" + } + }, + { + "id":"4117523e-a126-4132-86ac-5054eaacbc0c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T15:59:44.003Z", + "completed":"2017-07-11T15:59:44.003Z", + "new_balance":"5561.74", + "value":"-2.59" + } + }, + { + "id":"415a508e-99f5-4a5e-b8c5-e4437cb95741", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T19:05:10.865Z", + "completed":"2017-07-11T19:05:10.865Z", + "new_balance":"5560.06", + "value":"-1.68" + } + }, + { + "id":"d28f774d-787c-450a-ac8a-980dcf028d9e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T00:38:09.127Z", + "completed":"2017-07-13T00:38:09.127Z", + "new_balance":"5553.93", + "value":"-6.13" + } + }, + { + "id":"fe6c0d03-f846-4342-b6b2-88b6c494a564", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T01:53:31.787Z", + "completed":"2017-07-13T01:53:31.787Z", + "new_balance":"5546.23", + "value":"-7.70" + } + }, + { + "id":"4fb062da-dbc7-4fa5-a56c-62d4423e52f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T04:42:52.918Z", + "completed":"2017-07-16T04:42:52.918Z", + "new_balance":"5541.70", + "value":"-4.53" + } + }, + { + "id":"b45ad0de-e0e9-44aa-a1e6-4c1683d1dfc0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T23:17:22.487Z", + "completed":"2017-07-16T23:17:22.487Z", + "new_balance":"5550.69", + "value":"8.99" + } + }, + { + "id":"38e732a7-d960-4291-beb4-3d7ef206b858", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T06:28:24.923Z", + "completed":"2017-07-17T06:28:24.923Z", + "new_balance":"5549.88", + "value":"-0.81" + } + }, + { + "id":"9b05d5c3-545f-4605-9d92-e1c449b216f2", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T16:39:31.166Z", + "completed":"2017-07-17T16:39:31.166Z", + "new_balance":"5549.41", + "value":"-0.47" + } + }, + { + "id":"d68e3243-3838-43ab-9523-bb5d4e42d48c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T23:12:09.724Z", + "completed":"2017-07-19T23:12:09.724Z", + "new_balance":"5543.93", + "value":"-5.48" + } + }, + { + "id":"6e1a2037-c461-4b8d-b880-8cd3c1172b69", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T23:19:58.354Z", + "completed":"2017-07-21T23:19:58.354Z", + "new_balance":"5541.50", + "value":"-2.43" + } + }, + { + "id":"7f9cfe09-b12d-4bcc-b083-f1142f1a6714", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T16:55:34.166Z", + "completed":"2017-07-23T16:55:34.166Z", + "new_balance":"5538.20", + "value":"-3.30" + } + }, + { + "id":"a3c7f366-8c09-4a4d-bf3a-40c0c534ad10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T19:39:59.918Z", + "completed":"2017-07-25T19:39:59.918Z", + "new_balance":"5536.63", + "value":"-1.57" + } + }, + { + "id":"bbc697ac-fffc-4ac2-ba30-9c85a9dd0fb1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T06:35:15.398Z", + "completed":"2017-07-27T06:35:15.398Z", + "new_balance":"5536.11", + "value":"-0.52" + } + }, + { + "id":"39054879-950c-464a-8c2d-eea7559ae29d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T11:19:42.509Z", + "completed":"2017-07-28T11:19:42.509Z", + "new_balance":"5532.39", + "value":"-3.72" + } + }, + { + "id":"d3847a5f-cb24-43fa-ba1d-639de3e5a3ee", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T12:16:16.673Z", + "completed":"2017-07-28T12:16:16.673Z", + "new_balance":"5510.03", + "value":"-22.36" + } + }, + { + "id":"f5b65b92-fcdc-456b-8844-f7cc125a3aef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:54:40.126Z", + "completed":"2017-08-01T03:54:40.126Z", + "new_balance":"5651.01", + "value":"140.98" + } + }, + { + "id":"0b3ea970-3168-42e2-8b62-d8e9717889d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T14:39:15.656Z", + "completed":"2017-08-03T14:39:15.656Z", + "new_balance":"5637.91", + "value":"-13.10" + } + }, + { + "id":"d5274b2d-acc2-4118-8214-0090aeaad80d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T21:29:43.157Z", + "completed":"2017-08-03T21:29:43.157Z", + "new_balance":"5606.19", + "value":"-31.72" + } + }, + { + "id":"0ce10df0-3e52-445b-b853-9c49b5b06c31", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T16:14:34.804Z", + "completed":"2017-08-04T16:14:34.804Z", + "new_balance":"5604.87", + "value":"-1.32" + } + }, + { + "id":"38d4f1d8-73c7-4570-99ab-8cdae14f5da9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T01:20:11.654Z", + "completed":"2017-08-07T01:20:11.654Z", + "new_balance":"5602.68", + "value":"-2.19" + } + }, + { + "id":"3fdec350-279a-4162-b024-b477c7810099", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T12:27:34.738Z", + "completed":"2017-08-07T12:27:34.738Z", + "new_balance":"5602.01", + "value":"-0.67" + } + }, + { + "id":"2ba0c305-42ef-42c7-9484-8d2619ba40d9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T21:34:15.835Z", + "completed":"2017-08-07T21:34:15.835Z", + "new_balance":"5599.70", + "value":"-2.31" + } + }, + { + "id":"82ceee04-e7c3-4688-b2f6-0c0e4d1f288b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T05:52:09.486Z", + "completed":"2017-08-08T05:52:09.486Z", + "new_balance":"5595.13", + "value":"-4.57" + } + }, + { + "id":"d7348bf9-9376-478b-8be0-668d9842815e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T12:37:50.729Z", + "completed":"2017-08-08T12:37:50.729Z", + "new_balance":"5590.99", + "value":"-4.14" + } + }, + { + "id":"efb8562f-e85d-4e1b-a9f1-3e905a6db43d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T18:09:04.810Z", + "completed":"2017-08-08T18:09:04.810Z", + "new_balance":"5583.29", + "value":"-7.70" + } + }, + { + "id":"6384b670-7ec1-48b6-b0d9-f0de3fd99305", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T03:28:45.784Z", + "completed":"2017-08-09T03:28:45.784Z", + "new_balance":"5580.89", + "value":"-2.40" + } + }, + { + "id":"27b73404-1260-4518-8e02-98ffed8f00b3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T00:10:37.202Z", + "completed":"2017-08-11T00:10:37.202Z", + "new_balance":"5580.37", + "value":"-0.52" + } + }, + { + "id":"701ac415-fd23-47be-a473-9e5aed728bd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T03:55:38.095Z", + "completed":"2017-08-14T03:55:38.095Z", + "new_balance":"5577.49", + "value":"-2.88" + } + }, + { + "id":"1b4fef9f-da2b-4da5-b8f3-ed36fdf27d29", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T05:56:00.524Z", + "completed":"2017-08-15T05:56:00.524Z", + "new_balance":"5575.18", + "value":"-2.31" + } + }, + { + "id":"340b90ee-9759-40b2-b485-7fa98074b438", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T16:38:23.931Z", + "completed":"2017-08-17T16:38:23.931Z", + "new_balance":"5574.71", + "value":"-0.47" + } + }, + { + "id":"0b6c79a8-abba-4b46-a4f3-8d974eb8aa61", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T23:51:19.333Z", + "completed":"2017-08-17T23:51:19.333Z", + "new_balance":"5570.10", + "value":"-4.61" + } + }, + { + "id":"02b60c0d-0f81-4efd-a039-b44cf3bfd6c9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T18:02:29.659Z", + "completed":"2017-08-19T18:02:29.659Z", + "new_balance":"5569.51", + "value":"-0.59" + } + }, + { + "id":"1d678ff4-9809-491b-891d-ffe52ad35eb9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T22:31:08.470Z", + "completed":"2017-08-25T22:31:08.470Z", + "new_balance":"5580.91", + "value":"11.40" + } + }, + { + "id":"70269e6e-79b6-4a37-bd3a-7521938233d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T20:31:42.352Z", + "completed":"2017-08-28T20:31:42.352Z", + "new_balance":"5558.55", + "value":"-22.36" + } + }, + { + "id":"867f2453-d994-4873-b5d0-36044a7172ba", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T22:06:36.619Z", + "completed":"2017-08-28T22:06:36.619Z", + "new_balance":"5554.83", + "value":"-3.72" + } + }, + { + "id":"2af0b3ed-9adc-427e-8328-9173e28d3ea5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T12:27:49.564Z", + "completed":"2017-09-01T12:27:49.564Z", + "new_balance":"5695.81", + "value":"140.98" + } + }, + { + "id":"6540f0a4-e1f7-49bb-90d6-40cbee3a4b5a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T02:51:42.625Z", + "completed":"2017-09-03T02:51:42.625Z", + "new_balance":"5664.09", + "value":"-31.72" + } + }, + { + "id":"a8e6224d-4653-483a-ae04-4f2399152735", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T04:15:02.411Z", + "completed":"2017-09-04T04:15:02.411Z", + "new_balance":"5662.04", + "value":"-2.05" + } + }, + { + "id":"d2c92e1e-4e03-478b-b545-ef39de4fbe63", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T12:42:00.384Z", + "completed":"2017-09-04T12:42:00.384Z", + "new_balance":"5658.74", + "value":"-3.30" + } + }, + { + "id":"a6c49726-6f05-4745-9dd7-a0ee1edfe982", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:43:09.563Z", + "completed":"2017-09-04T19:43:09.563Z", + "new_balance":"5655.28", + "value":"-3.46" + } + }, + { + "id":"d8383091-7eab-45dc-aa5b-e261d05edff5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T23:25:14.069Z", + "completed":"2017-09-04T23:25:14.069Z", + "new_balance":"5650.67", + "value":"-4.61" + } + }, + { + "id":"89a4af7f-e824-4c4f-bcf9-cc8ae9675f5b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T07:29:22.804Z", + "completed":"2017-09-05T07:29:22.804Z", + "new_balance":"5650.20", + "value":"-0.47" + } + }, + { + "id":"ca89a33f-d747-4987-ba97-607cdc1d8cd9", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T07:31:43.884Z", + "completed":"2017-09-05T07:31:43.884Z", + "new_balance":"5642.46", + "value":"-7.74" + } + }, + { + "id":"fb24c28c-45c8-4ea2-8609-697a26b66d33", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T09:10:42.053Z", + "completed":"2017-09-05T09:10:42.053Z", + "new_balance":"5641.16", + "value":"-1.30" + } + }, + { + "id":"3a5fcb03-d88e-4789-839b-710305903741", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T13:14:05.859Z", + "completed":"2017-09-05T13:14:05.859Z", + "new_balance":"5634.52", + "value":"-6.64" + } + }, + { + "id":"4d2c5039-9a8a-4089-b4ec-c130fb066eb7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T18:06:25.652Z", + "completed":"2017-09-05T18:06:25.652Z", + "new_balance":"5626.82", + "value":"-7.70" + } + }, + { + "id":"8279ff1a-332f-43b6-aeea-ca2d073e518c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T22:16:26.372Z", + "completed":"2017-09-05T22:16:26.372Z", + "new_balance":"5620.07", + "value":"-6.75" + } + }, + { + "id":"604d86d1-9992-4b48-8957-0d273400f0af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T00:38:30.848Z", + "completed":"2017-09-07T00:38:30.848Z", + "new_balance":"5619.30", + "value":"-0.77" + } + }, + { + "id":"44835a97-21e7-415e-a937-4abc4d8febc6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:12:05.007Z", + "completed":"2017-09-07T03:12:05.007Z", + "new_balance":"5618.50", + "value":"-0.80" + } + }, + { + "id":"596097ea-e022-4bd8-9884-39ca15b8ea82", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T05:18:12.166Z", + "completed":"2017-09-07T05:18:12.166Z", + "new_balance":"5618.03", + "value":"-0.47" + } + }, + { + "id":"bc9da5e0-b882-48ad-b069-5f6bfb186f56", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T21:35:23.269Z", + "completed":"2017-09-07T21:35:23.269Z", + "new_balance":"5617.23", + "value":"-0.80" + } + }, + { + "id":"e6fb27c1-a719-4461-a706-9b690eb2e561", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T19:51:59.514Z", + "completed":"2017-09-10T19:51:59.514Z", + "new_balance":"5614.52", + "value":"-2.71" + } + }, + { + "id":"91e3d7e7-33a8-499c-bfa4-477d77037edb", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T11:19:45.482Z", + "completed":"2017-09-11T11:19:45.482Z", + "new_balance":"5611.80", + "value":"-2.72" + } + }, + { + "id":"4f21783d-4420-4fbd-ad60-f38739c2c74e", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T17:05:57.928Z", + "completed":"2017-09-11T17:05:57.928Z", + "new_balance":"5611.33", + "value":"-0.47" + } + }, + { + "id":"4fb767bf-9773-4cd8-85ef-17531493ec8c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T19:36:22.984Z", + "completed":"2017-09-11T19:36:22.984Z", + "new_balance":"5609.73", + "value":"-1.60" + } + }, + { + "id":"515ab76f-a853-44d6-a93c-20cc38dd7be1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T06:59:06.915Z", + "completed":"2017-09-12T06:59:06.915Z", + "new_balance":"5603.57", + "value":"-6.16" + } + }, + { + "id":"f45836d7-8da8-402a-8a98-29357a8bff5f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T08:25:26.092Z", + "completed":"2017-09-12T08:25:26.092Z", + "new_balance":"5603.10", + "value":"-0.47" + } + }, + { + "id":"43063a97-22a3-4512-9e6c-c56f6c2299f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T08:59:48.462Z", + "completed":"2017-09-12T08:59:48.462Z", + "new_balance":"5600.51", + "value":"-2.59" + } + }, + { + "id":"9c1b9412-85c0-4fb3-a04a-f861e86b3947", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T13:26:50.892Z", + "completed":"2017-09-12T13:26:50.892Z", + "new_balance":"5590.36", + "value":"-10.15" + } + }, + { + "id":"7fbe3ea6-609a-4964-bd2f-def9174869c7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T13:52:21.602Z", + "completed":"2017-09-13T13:52:21.602Z", + "new_balance":"5587.78", + "value":"-2.58" + } + }, + { + "id":"0e59e97e-bed1-4962-8bde-461b9849da64", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T13:24:58.781Z", + "completed":"2017-09-14T13:24:58.781Z", + "new_balance":"5587.31", + "value":"-0.47" + } + }, + { + "id":"3773cbfa-6a62-446c-bfee-72c994332c2a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T13:27:40.108Z", + "completed":"2017-09-14T13:27:40.108Z", + "new_balance":"5582.39", + "value":"-4.92" + } + }, + { + "id":"a8c420f1-beec-4322-a7c3-19b936135f10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T07:09:48.848Z", + "completed":"2017-09-16T07:09:48.848Z", + "new_balance":"5578.27", + "value":"-4.12" + } + }, + { + "id":"e0395d33-55b5-4e09-a0ff-3e9b665c12f8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T10:05:11.085Z", + "completed":"2017-09-18T10:05:11.085Z", + "new_balance":"5573.88", + "value":"-4.39" + } + }, + { + "id":"72987446-e519-4ddc-bbc4-d79036f8f9a6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T12:08:15.309Z", + "completed":"2017-09-21T12:08:15.309Z", + "new_balance":"5561.52", + "value":"-12.36" + } + }, + { + "id":"6c5bdab8-ed03-4d9f-94bf-423482bfc372", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T20:46:54.262Z", + "completed":"2017-09-21T20:46:54.262Z", + "new_balance":"5551.91", + "value":"-9.61" + } + }, + { + "id":"c26ee3df-b41f-484d-a863-7d8f5348b705", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T23:40:35.405Z", + "completed":"2017-09-23T23:40:35.405Z", + "new_balance":"5548.44", + "value":"-3.47" + } + }, + { + "id":"ae0d3c1a-2cae-470c-b7b3-8e7277820126", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T09:15:00.645Z", + "completed":"2017-09-24T09:15:00.645Z", + "new_balance":"5547.97", + "value":"-0.47" + } + }, + { + "id":"8743d8d5-ea50-41d4-a104-af84b571c01d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:19:31.957Z", + "completed":"2017-09-26T07:19:31.957Z", + "new_balance":"5546.82", + "value":"-1.15" + } + }, + { + "id":"2d85bf99-b8bc-4e44-bb06-722647652998", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T10:48:08.779Z", + "completed":"2017-09-26T10:48:08.779Z", + "new_balance":"5544.43", + "value":"-2.39" + } + }, + { + "id":"f4084f15-5ab2-4364-8aa6-794b026426d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T21:07:34.175Z", + "completed":"2017-09-26T21:07:34.175Z", + "new_balance":"5543.08", + "value":"-1.35" + } + }, + { + "id":"50b125ab-a7df-4461-a591-5db29dc81099", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T10:45:35.763Z", + "completed":"2017-09-27T10:45:35.763Z", + "new_balance":"5541.88", + "value":"-1.20" + } + }, + { + "id":"051c5e7e-6ffa-4278-aa6c-508303694db3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T05:58:03.071Z", + "completed":"2017-09-28T05:58:03.071Z", + "new_balance":"5538.16", + "value":"-3.72" + } + }, + { + "id":"f3253f89-e6fb-4158-b48e-bcbe1e33aa8d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T21:16:39.738Z", + "completed":"2017-09-28T21:16:39.738Z", + "new_balance":"5515.80", + "value":"-22.36" + } + }, + { + "id":"6131e229-ec45-4c3e-8dd4-46b73919d9da", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T08:02:54.998Z", + "completed":"2017-10-01T08:02:54.998Z", + "new_balance":"5656.78", + "value":"140.98" + } + }, + { + "id":"5df4d4aa-76cd-4c87-87bb-93e49fd88ae3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T10:05:47.937Z", + "completed":"2017-10-01T10:05:47.937Z", + "new_balance":"5839.48", + "value":"182.70" + } + }, + { + "id":"285c3e16-b556-47bb-832e-c191c83086b7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T12:29:38.453Z", + "completed":"2017-10-01T12:29:38.453Z", + "new_balance":"5807.76", + "value":"-31.72" + } + }, + { + "id":"c7574579-0757-444a-b323-808cbf33dd4f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T00:11:57.812Z", + "completed":"2017-10-03T00:11:57.812Z", + "new_balance":"5802.94", + "value":"-4.82" + } + }, + { + "id":"f3513764-0db6-48aa-9eaa-475a02a5e1e4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:42:41.471Z", + "completed":"2017-10-03T11:42:41.471Z", + "new_balance":"5801.20", + "value":"-1.74" + } + }, + { + "id":"4fe3e700-f717-4364-9419-7164a2af6fd5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T19:40:00.892Z", + "completed":"2017-10-03T19:40:00.892Z", + "new_balance":"5800.53", + "value":"-0.67" + } + }, + { + "id":"85140134-6fe1-43e0-8f23-46adaf07c13f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T16:06:44.744Z", + "completed":"2017-10-05T16:06:44.744Z", + "new_balance":"5799.13", + "value":"-1.40" + } + }, + { + "id":"160d4205-3d5d-45d2-9255-5cddde0ec5f7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:53:32.452Z", + "completed":"2017-10-05T20:53:32.452Z", + "new_balance":"5798.61", + "value":"-0.52" + } + }, + { + "id":"b9425f81-2b64-4019-bf7a-4813e87fe5e8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T17:49:32.811Z", + "completed":"2017-10-06T17:49:32.811Z", + "new_balance":"5797.01", + "value":"-1.60" + } + }, + { + "id":"3afb9bd8-92da-4226-9c8f-8431783b8a83", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T04:56:12.464Z", + "completed":"2017-10-09T04:56:12.464Z", + "new_balance":"5794.42", + "value":"-2.59" + } + }, + { + "id":"c941e630-8cac-49c6-80d5-f5d9c1dc3e1b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:26:44.156Z", + "completed":"2017-10-10T23:26:44.156Z", + "new_balance":"5792.74", + "value":"-1.68" + } + }, + { + "id":"86dd8691-089e-4615-8559-bc44ed7469c0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T07:18:45.342Z", + "completed":"2017-10-11T07:18:45.342Z", + "new_balance":"5790.87", + "value":"-1.87" + } + }, + { + "id":"e730d5ab-d5ea-4b1b-b1c0-dc4a0632dfef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T18:06:55.779Z", + "completed":"2017-10-11T18:06:55.779Z", + "new_balance":"5788.56", + "value":"-2.31" + } + }, + { + "id":"ecfee757-f18f-467d-ae8a-636986c845a5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T06:03:42.247Z", + "completed":"2017-10-14T06:03:42.247Z", + "new_balance":"5782.43", + "value":"-6.13" + } + }, + { + "id":"91c0f79e-58a2-4463-b87f-5d098de60c1c", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T22:53:49.832Z", + "completed":"2017-10-14T22:53:49.832Z", + "new_balance":"5774.73", + "value":"-7.70" + } + }, + { + "id":"49a4c79e-825f-405e-b744-a596d7eee2b4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T02:20:58.647Z", + "completed":"2017-10-17T02:20:58.647Z", + "new_balance":"5770.20", + "value":"-4.53" + } + }, + { + "id":"97a513c1-a128-45b9-807f-ce0e79f17e14", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:03:16.592Z", + "completed":"2017-10-18T06:03:16.592Z", + "new_balance":"5764.72", + "value":"-5.48" + } + }, + { + "id":"f2d0b2ff-4a32-402e-acc2-548f30d1867a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T09:02:43.170Z", + "completed":"2017-10-18T09:02:43.170Z", + "new_balance":"5764.25", + "value":"-0.47" + } + }, + { + "id":"8b8148d1-f655-420d-892b-c07db2a6f75d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T09:59:23.455Z", + "completed":"2017-10-18T09:59:23.455Z", + "new_balance":"5763.44", + "value":"-0.81" + } + }, + { + "id":"963c2c16-6a86-45cf-b78e-88e2a4104cdd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T14:32:58.412Z", + "completed":"2017-10-23T14:32:58.412Z", + "new_balance":"5761.01", + "value":"-2.43" + } + }, + { + "id":"0b8b80f8-d4c5-42b9-8ab2-f254e7b3fa72", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T16:00:12.290Z", + "completed":"2017-10-24T16:00:12.290Z", + "new_balance":"5759.44", + "value":"-1.57" + } + }, + { + "id":"dbb43908-6726-4394-960c-e1ce02bdea28", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T19:03:40.969Z", + "completed":"2017-10-24T19:03:40.969Z", + "new_balance":"5756.14", + "value":"-3.30" + } + }, + { + "id":"7ada0ac0-2fd7-4d44-a2df-9c8da289c71d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T10:17:33.713Z", + "completed":"2017-10-26T10:17:33.713Z", + "new_balance":"5755.62", + "value":"-0.52" + } + }, + { + "id":"9d2415c3-80da-4e25-be0c-3a24ac05a1ef", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T21:20:07.379Z", + "completed":"2017-10-30T21:20:07.379Z", + "new_balance":"5733.26", + "value":"-22.36" + } + }, + { + "id":"599bbf69-dc57-4b54-9db1-d250f113ffe1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T23:01:08.601Z", + "completed":"2017-10-30T23:01:08.601Z", + "new_balance":"5729.54", + "value":"-3.72" + } + }, + { + "id":"d7bb0483-2966-41a6-a2dd-827b4e871956", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T00:37:34.458Z", + "completed":"2017-11-02T00:37:34.458Z", + "new_balance":"5716.44", + "value":"-13.10" + } + }, + { + "id":"e82ab21a-3569-4dd6-a57d-ccd6abf0e26d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T02:45:02.891Z", + "completed":"2017-11-02T02:45:02.891Z", + "new_balance":"5715.77", + "value":"-0.67" + } + }, + { + "id":"d712a237-685e-4af7-bfbc-91cbe1c50da6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T12:25:42.392Z", + "completed":"2017-11-02T12:25:42.392Z", + "new_balance":"5714.45", + "value":"-1.32" + } + }, + { + "id":"88b91a53-77d1-4e3a-989e-3fb1a572285f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T21:03:48.540Z", + "completed":"2017-11-02T21:03:48.540Z", + "new_balance":"5682.73", + "value":"-31.72" + } + }, + { + "id":"52f80e2f-59f4-43a5-8912-313c0b08a8f0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T12:13:04.540Z", + "completed":"2017-11-06T12:13:04.540Z", + "new_balance":"5680.54", + "value":"-2.19" + } + }, + { + "id":"f430a559-dfa9-45ec-8e6a-bdbd7e20b295", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T14:28:09.328Z", + "completed":"2017-11-06T14:28:09.328Z", + "new_balance":"5678.23", + "value":"-2.31" + } + }, + { + "id":"8c1d1dd3-169c-4dbc-8ea5-bd747836e17f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T01:15:38.085Z", + "completed":"2017-11-07T01:15:38.085Z", + "new_balance":"5670.53", + "value":"-7.70" + } + }, + { + "id":"20be0591-6d90-4f2c-9ebc-489e043c5cb7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T06:42:58.289Z", + "completed":"2017-11-07T06:42:58.289Z", + "new_balance":"5665.96", + "value":"-4.57" + } + }, + { + "id":"8e5654e5-8cae-44bd-b97b-1cbb3c1c6077", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T15:43:51.144Z", + "completed":"2017-11-09T15:43:51.144Z", + "new_balance":"5806.94", + "value":"140.98" + } + }, + { + "id":"e29fbab8-fee7-4d19-a0fb-fce4762da45d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T13:30:06.966Z", + "completed":"2017-11-14T13:30:06.966Z", + "new_balance":"5804.54", + "value":"-2.40" + } + }, + { + "id":"3c65b234-0ede-4071-a46a-a7ce9cd398a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T14:15:42.404Z", + "completed":"2017-11-14T14:15:42.404Z", + "new_balance":"5800.40", + "value":"-4.14" + } + }, + { + "id":"8520cdc5-0f0d-4b7f-ba85-5e896ca85f08", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T22:58:34.865Z", + "completed":"2017-11-16T22:58:34.865Z", + "new_balance":"5799.88", + "value":"-0.52" + } + }, + { + "id":"f70db6fd-6c09-4403-963c-fa0dd24d7c4d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T11:18:54.175Z", + "completed":"2017-11-20T11:18:54.175Z", + "new_balance":"5797.00", + "value":"-2.88" + } + }, + { + "id":"7f468f18-4ae0-4d77-b62e-1f195292c7f4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T08:32:16.561Z", + "completed":"2017-11-23T08:32:16.561Z", + "new_balance":"5796.53", + "value":"-0.47" + } + }, + { + "id":"c84e8fd3-765c-4d5d-991a-9160df007b10", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T18:30:43.297Z", + "completed":"2017-11-23T18:30:43.297Z", + "new_balance":"5794.22", + "value":"-2.31" + } + }, + { + "id":"ee6de5b6-d066-4767-8641-caa4b37ec0c6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T23:59:04.033Z", + "completed":"2017-11-23T23:59:04.033Z", + "new_balance":"5789.61", + "value":"-4.61" + } + }, + { + "id":"3ab14920-ab86-4ee3-ba40-18a25d122b7d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T13:15:22.770Z", + "completed":"2017-11-28T13:15:22.770Z", + "new_balance":"5789.02", + "value":"-0.59" + } + }, + { + "id":"149bbd20-1c5a-43a7-a55d-022aee59fc03", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T00:59:37.461Z", + "completed":"2017-11-30T00:59:37.461Z", + "new_balance":"5785.30", + "value":"-3.72" + } + }, + { + "id":"481fcb2f-cf21-4b7c-b506-1a0bb8b6e3c7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T17:33:55.349Z", + "completed":"2017-11-30T17:33:55.349Z", + "new_balance":"5762.94", + "value":"-22.36" + } + }, + { + "id":"de7bab73-70bd-401b-91fb-8c56b831de07", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T05:35:56.230Z", + "completed":"2017-12-01T05:35:56.230Z", + "new_balance":"5731.22", + "value":"-31.72" + } + }, + { + "id":"cd424692-5465-4d32-8594-11e0dccae900", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:23:40.026Z", + "completed":"2017-12-01T16:23:40.026Z", + "new_balance":"5872.20", + "value":"140.98" + } + }, + { + "id":"52a3134d-a815-4a75-a12b-755f010752f1", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T09:30:54.418Z", + "completed":"2017-12-04T09:30:54.418Z", + "new_balance":"5870.15", + "value":"-2.05" + } + }, + { + "id":"56c9193f-6ea2-4bb7-a81f-a68337a2ec3b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:33:10.577Z", + "completed":"2017-12-04T10:33:10.577Z", + "new_balance":"5866.69", + "value":"-3.46" + } + }, + { + "id":"82d23327-e35d-4b9e-ab17-fead025b4860", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T05:52:05.783Z", + "completed":"2017-12-11T05:52:05.783Z", + "new_balance":"5862.08", + "value":"-4.61" + } + }, + { + "id":"8e745d19-4bee-4075-b23d-edb145884f2d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T16:32:06.069Z", + "completed":"2017-12-11T16:32:06.069Z", + "new_balance":"5858.78", + "value":"-3.30" + } + }, + { + "id":"3ac54e06-95ef-41bc-8c27-32e25c95cc61", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T02:36:15.420Z", + "completed":"2017-12-14T02:36:15.420Z", + "new_balance":"5852.14", + "value":"-6.64" + } + }, + { + "id":"77740ef6-50fd-40ea-8028-a5557a436a67", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:44:11.867Z", + "completed":"2017-12-14T03:44:11.867Z", + "new_balance":"5851.34", + "value":"-0.80" + } + }, + { + "id":"d634ddbc-5d24-47ae-81a4-ec027e70f327", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T07:02:39.787Z", + "completed":"2017-12-14T07:02:39.787Z", + "new_balance":"5843.60", + "value":"-7.74" + } + }, + { + "id":"63f38bc2-473e-4c97-a54a-0cb44bb7b0a8", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T07:31:58.703Z", + "completed":"2017-12-14T07:31:58.703Z", + "new_balance":"5842.80", + "value":"-0.80" + } + }, + { + "id":"07bbdb4f-46c0-4fd5-af1e-5c51b66566bd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T10:29:23.408Z", + "completed":"2017-12-14T10:29:23.408Z", + "new_balance":"5842.33", + "value":"-0.47" + } + }, + { + "id":"72215af6-d018-41be-884d-d25acff3e309", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T15:39:38.257Z", + "completed":"2017-12-14T15:39:38.257Z", + "new_balance":"5835.58", + "value":"-6.75" + } + }, + { + "id":"134057cc-e69d-485d-bb48-da993f11a3a3", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T16:54:46.471Z", + "completed":"2017-12-14T16:54:46.471Z", + "new_balance":"5834.28", + "value":"-1.30" + } + }, + { + "id":"b7a35287-7d6b-400c-8f26-b139b9f9fe69", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T17:48:29.698Z", + "completed":"2017-12-14T17:48:29.698Z", + "new_balance":"5826.58", + "value":"-7.70" + } + }, + { + "id":"e2efb7d4-845c-4f37-82c7-1791c3de7b39", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:27:15.080Z", + "completed":"2017-12-14T20:27:15.080Z", + "new_balance":"5826.11", + "value":"-0.47" + } + }, + { + "id":"169cd824-b79a-4d2c-aaa1-03e7bbd18194", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:08:48.361Z", + "completed":"2017-12-15T04:08:48.361Z", + "new_balance":"5825.34", + "value":"-0.77" + } + }, + { + "id":"00cf02a8-ba05-493e-909e-c10d146f996b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T04:45:10.442Z", + "completed":"2017-12-15T04:45:10.442Z", + "new_balance":"5822.63", + "value":"-2.71" + } + }, + { + "id":"3904b393-94fe-4da1-84bf-831fc32b14af", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T09:42:47.630Z", + "completed":"2017-12-15T09:42:47.630Z", + "new_balance":"5822.16", + "value":"-0.47" + } + }, + { + "id":"a2c046a6-4637-450a-b1a1-e8f29aeaf0fa", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T00:54:36.810Z", + "completed":"2017-12-18T00:54:36.810Z", + "new_balance":"5819.44", + "value":"-2.72" + } + }, + { + "id":"5b279026-e277-43e7-9541-57d1f8e70cbd", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T02:54:41.119Z", + "completed":"2017-12-18T02:54:41.119Z", + "new_balance":"5809.29", + "value":"-10.15" + } + }, + { + "id":"7a3100f3-0cfa-40e9-b278-0f82db796764", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T07:16:02.499Z", + "completed":"2017-12-18T07:16:02.499Z", + "new_balance":"5808.82", + "value":"-0.47" + } + }, + { + "id":"09e3c9a9-691a-4c4b-9e00-b0712d05b5d6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T12:03:14.822Z", + "completed":"2017-12-18T12:03:14.822Z", + "new_balance":"5808.35", + "value":"-0.47" + } + }, + { + "id":"45c86f6d-ae3a-492d-9d1f-24c542e4ab9f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T15:21:25.840Z", + "completed":"2017-12-18T15:21:25.840Z", + "new_balance":"5802.19", + "value":"-6.16" + } + }, + { + "id":"852acefa-7532-4089-88e7-38c808addd7f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T17:13:39.893Z", + "completed":"2017-12-18T17:13:39.893Z", + "new_balance":"5800.59", + "value":"-1.60" + } + }, + { + "id":"4c78ae81-efce-48e5-8ed0-b964d2bfa7d7", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T20:04:15.719Z", + "completed":"2017-12-18T20:04:15.719Z", + "new_balance":"5798.00", + "value":"-2.59" + } + }, + { + "id":"6b6e70f7-4ea0-4028-9de0-8d0533821581", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T23:51:34.608Z", + "completed":"2017-12-18T23:51:34.608Z", + "new_balance":"5795.42", + "value":"-2.58" + } + }, + { + "id":"3bd02938-90b5-4854-ae23-4c989559e754", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T09:45:54.612Z", + "completed":"2017-12-19T09:45:54.612Z", + "new_balance":"5791.03", + "value":"-4.39" + } + }, + { + "id":"42c88dda-62ad-4e79-b1be-a4d79f00f548", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T09:47:57.731Z", + "completed":"2017-12-19T09:47:57.731Z", + "new_balance":"5786.11", + "value":"-4.92" + } + }, + { + "id":"a15d8ef5-9a32-4469-b641-1121a5761a3a", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T15:38:18.578Z", + "completed":"2017-12-19T15:38:18.578Z", + "new_balance":"5781.99", + "value":"-4.12" + } + }, + { + "id":"81dad466-ef77-4cb0-9317-66efb5d3505d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T05:49:43.866Z", + "completed":"2017-12-21T05:49:43.866Z", + "new_balance":"5778.52", + "value":"-3.47" + } + }, + { + "id":"e926af8c-42a5-4b06-86be-f1ce40157e42", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T11:58:03.498Z", + "completed":"2017-12-21T11:58:03.498Z", + "new_balance":"5766.16", + "value":"-12.36" + } + }, + { + "id":"b20b4585-ed48-4b44-a438-743a5cb404b6", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T15:01:20.725Z", + "completed":"2017-12-21T15:01:20.725Z", + "new_balance":"5756.55", + "value":"-9.61" + } + }, + { + "id":"b7bcff83-fbdd-46ab-964f-09b1d351afd4", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T16:19:46.530Z", + "completed":"2017-12-21T16:19:46.530Z", + "new_balance":"5755.40", + "value":"-1.15" + } + }, + { + "id":"aebd8a40-da17-4b3d-b0c1-a92119be5fed", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T22:17:31.012Z", + "completed":"2017-12-21T22:17:31.012Z", + "new_balance":"5754.93", + "value":"-0.47" + } + }, + { + "id":"9c91fe81-8b82-4000-a8b8-e6dc97bd78d0", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T03:33:52.268Z", + "completed":"2017-12-24T03:33:52.268Z", + "new_balance":"5753.73", + "value":"-1.20" + } + }, + { + "id":"7b3e3839-781b-4284-a11c-de4f594cd02b", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:34:39.134Z", + "completed":"2017-12-24T05:34:39.134Z", + "new_balance":"5751.34", + "value":"-2.39" + } + }, + { + "id":"8f3a2706-f464-41cf-aeda-7f416692962d", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T09:21:52.619Z", + "completed":"2017-12-24T09:21:52.619Z", + "new_balance":"5749.99", + "value":"-1.35" + } + }, + { + "id":"461caccf-6e1d-44a6-88a0-c54405893e6f", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T22:13:28.918Z", + "completed":"2017-12-30T22:13:28.918Z", + "new_balance":"5727.63", + "value":"-22.36" + } + }, + { + "id":"d082fa4e-d65e-4ed7-be0a-243dd0f358e5", + "this_account":{ + "id":"53291fd9-e0bf-4f98-97f9-7b0435e1427d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T23:31:16.218Z", + "completed":"2017-12-30T23:31:16.218Z", + "new_balance":"5723.91", + "value":"-3.72" + } + }, + { + "id":"c599b8b1-8ead-4924-b7f3-812bce87ef0b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:12:54.392Z", + "completed":"2016-03-02T07:12:54.392Z", + "new_balance":"90344.31", + "value":"-832.36" + } + }, + { + "id":"8e6b2292-4369-45ed-b699-a41929c3b2a6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:21:38.839Z", + "completed":"2016-03-02T14:21:38.839Z", + "new_balance":"89965.98", + "value":"-378.33" + } + }, + { + "id":"42cfe933-1eb9-444b-a0fa-b6b3e3730a4f", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T05:16:39.604Z", + "completed":"2016-03-03T05:16:39.604Z", + "new_balance":"85380.82", + "value":"-4585.16" + } + }, + { + "id":"acd345cf-9042-48e7-8774-9e232630ee10", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T09:25:47.522Z", + "completed":"2016-03-03T09:25:47.522Z", + "new_balance":"85306.89", + "value":"-73.93" + } + }, + { + "id":"72e97ede-c74f-4a7d-8300-ed88c194ecde", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T00:25:36.859Z", + "completed":"2016-03-04T00:25:36.859Z", + "new_balance":"84942.60", + "value":"-364.29" + } + }, + { + "id":"dc6e1760-cbc3-4e81-9367-e53b27fd9028", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T13:13:44.378Z", + "completed":"2016-03-04T13:13:44.378Z", + "new_balance":"84856.04", + "value":"-86.56" + } + }, + { + "id":"6248d329-b979-4fda-a346-ed014df2f472", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T15:53:31.388Z", + "completed":"2016-03-07T15:53:31.388Z", + "new_balance":"84802.86", + "value":"-53.18" + } + }, + { + "id":"8618523a-87ee-4578-bfb3-667c2c1caec3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T00:34:41.258Z", + "completed":"2016-03-09T00:34:41.258Z", + "new_balance":"83970.50", + "value":"-832.36" + } + }, + { + "id":"489d6619-1e2c-4455-b198-09169ee351ef", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T21:51:53.542Z", + "completed":"2016-03-16T21:51:53.542Z", + "new_balance":"83425.34", + "value":"-545.16" + } + }, + { + "id":"16ab7a69-8565-46be-b277-708cab477dcd", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T15:37:18.592Z", + "completed":"2016-03-25T15:37:18.592Z", + "new_balance":"82880.18", + "value":"-545.16" + } + }, + { + "id":"502ccf6a-c637-4697-a329-604e5579f73a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T05:23:40.843Z", + "completed":"2016-03-30T05:23:40.843Z", + "new_balance":"80248.97", + "value":"-2631.21" + } + }, + { + "id":"98def093-59b0-4b1f-b9d6-38319357e094", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T04:41:01.029Z", + "completed":"2016-06-07T04:41:01.029Z", + "new_balance":"75663.81", + "value":"-4585.16" + } + }, + { + "id":"32f9188c-97f8-4488-9151-383c8cc819d4", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T19:43:48.403Z", + "completed":"2016-06-07T19:43:48.403Z", + "new_balance":"74831.45", + "value":"-832.36" + } + }, + { + "id":"b0cffa49-66e9-4517-9548-bf3e772c4f9e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T20:13:04.852Z", + "completed":"2016-06-07T20:13:04.852Z", + "new_balance":"74453.12", + "value":"-378.33" + } + }, + { + "id":"9c1f08d0-a565-497d-8a86-43198627d827", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:47:13.729Z", + "completed":"2016-06-10T12:47:13.729Z", + "new_balance":"74366.56", + "value":"-86.56" + } + }, + { + "id":"9db211fd-98cc-4718-b809-1de914976387", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T20:37:34.575Z", + "completed":"2016-06-14T20:37:34.575Z", + "new_balance":"74002.27", + "value":"-364.29" + } + }, + { + "id":"dcc5de62-1168-4172-b113-43545909fce1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T04:52:17.617Z", + "completed":"2016-06-19T04:52:17.617Z", + "new_balance":"73928.34", + "value":"-73.93" + } + }, + { + "id":"b8536fd9-dd4b-4910-a567-66573616352e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T21:34:42.236Z", + "completed":"2016-06-19T21:34:42.236Z", + "new_balance":"73875.16", + "value":"-53.18" + } + }, + { + "id":"c8349810-74ae-4607-a2e4-d1dde724c5be", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T07:36:33.875Z", + "completed":"2016-06-20T07:36:33.875Z", + "new_balance":"73042.80", + "value":"-832.36" + } + }, + { + "id":"443adaa7-5584-464d-9897-bf4178ced4b6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T14:40:10.674Z", + "completed":"2016-06-28T14:40:10.674Z", + "new_balance":"72497.64", + "value":"-545.16" + } + }, + { + "id":"7e01f312-3f0a-404f-b850-0ed8f52351d3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T12:26:27.725Z", + "completed":"2016-07-01T12:26:27.725Z", + "new_balance":"69866.43", + "value":"-2631.21" + } + }, + { + "id":"91d8f631-ee70-4f6b-b1a3-5a3fc2cc6912", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T16:59:14.640Z", + "completed":"2016-07-01T16:59:14.640Z", + "new_balance":"69321.27", + "value":"-545.16" + } + }, + { + "id":"685ce513-82ef-4798-88fc-c75d0b3f0395", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T00:10:24.931Z", + "completed":"2016-09-02T00:10:24.931Z", + "new_balance":"68942.94", + "value":"-378.33" + } + }, + { + "id":"971fe2fc-689c-48fc-86a5-4f540838a272", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T16:33:06.087Z", + "completed":"2016-09-02T16:33:06.087Z", + "new_balance":"68110.58", + "value":"-832.36" + } + }, + { + "id":"394772d3-588b-4022-a4dc-9a84443a3211", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:23:02.047Z", + "completed":"2016-09-03T02:23:02.047Z", + "new_balance":"68036.65", + "value":"-73.93" + } + }, + { + "id":"57cb6df1-ce9b-4d8d-83df-1911c4256eec", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T21:08:57.098Z", + "completed":"2016-09-03T21:08:57.098Z", + "new_balance":"63451.49", + "value":"-4585.16" + } + }, + { + "id":"29a65ee1-52eb-4131-bd0b-ec53c430242a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T21:50:49.261Z", + "completed":"2016-09-03T21:50:49.261Z", + "new_balance":"63404.59", + "value":"-46.90" + } + }, + { + "id":"29bb4ab1-35eb-4ef3-973f-bc7f6dda6ced", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T22:53:58.419Z", + "completed":"2016-09-04T22:53:58.419Z", + "new_balance":"63040.30", + "value":"-364.29" + } + }, + { + "id":"02075c41-7970-479b-bb38-535833482d05", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T09:20:47.288Z", + "completed":"2016-09-07T09:20:47.288Z", + "new_balance":"62987.12", + "value":"-53.18" + } + }, + { + "id":"a3b7f6c9-7930-4537-9c52-6171fae839d2", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T13:50:33.547Z", + "completed":"2016-09-09T13:50:33.547Z", + "new_balance":"62154.76", + "value":"-832.36" + } + }, + { + "id":"0dc56329-84d1-4f34-bbbb-0fa556496989", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T15:52:37.535Z", + "completed":"2016-09-16T15:52:37.535Z", + "new_balance":"61609.60", + "value":"-545.16" + } + }, + { + "id":"cfc24dc0-990b-484c-89ed-d0610f811511", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T12:15:55.381Z", + "completed":"2016-09-25T12:15:55.381Z", + "new_balance":"61064.44", + "value":"-545.16" + } + }, + { + "id":"a11dfc14-277f-495a-b57a-1c2559fe2f12", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T17:14:05.339Z", + "completed":"2016-09-30T17:14:05.339Z", + "new_balance":"58433.23", + "value":"-2631.21" + } + }, + { + "id":"1a9ea7a5-4bc4-489f-9fee-c6b3e1921943", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T03:47:08.415Z", + "completed":"2016-12-07T03:47:08.415Z", + "new_balance":"58054.90", + "value":"-378.33" + } + }, + { + "id":"3940c248-1de5-46de-be14-dcc60faac0bc", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T06:19:13.687Z", + "completed":"2016-12-07T06:19:13.687Z", + "new_balance":"57222.54", + "value":"-832.36" + } + }, + { + "id":"19449cc2-464b-4594-8666-5c0adfebbf72", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T09:32:45.553Z", + "completed":"2016-12-07T09:32:45.553Z", + "new_balance":"52637.38", + "value":"-4585.16" + } + }, + { + "id":"6464e249-878b-4d4f-a5c4-b3846e889669", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T13:13:24.544Z", + "completed":"2016-12-11T13:13:24.544Z", + "new_balance":"52563.45", + "value":"-73.93" + } + }, + { + "id":"3146f91e-2a79-4a7b-8a33-ad29c418c2a3", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T13:29:06.440Z", + "completed":"2016-12-11T13:29:06.440Z", + "new_balance":"52476.89", + "value":"-86.56" + } + }, + { + "id":"26279d7b-8de9-4056-b158-5ee876e8050b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T15:37:38.352Z", + "completed":"2016-12-14T15:37:38.352Z", + "new_balance":"52112.60", + "value":"-364.29" + } + }, + { + "id":"6ff47768-2537-4439-bb69-46abeacc6345", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T02:52:50.533Z", + "completed":"2016-12-20T02:52:50.533Z", + "new_balance":"52059.42", + "value":"-53.18" + } + }, + { + "id":"c8b36ba2-5174-4591-b32f-7b3d52a02ff0", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T06:32:55.577Z", + "completed":"2016-12-22T06:32:55.577Z", + "new_balance":"51227.06", + "value":"-832.36" + } + }, + { + "id":"dd9ddb56-7731-4740-ab2f-b0ce526b8150", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T07:23:54.243Z", + "completed":"2016-12-28T07:23:54.243Z", + "new_balance":"50681.90", + "value":"-545.16" + } + }, + { + "id":"7409d9cb-d473-459e-bf5e-b49efc018a55", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T05:47:03.021Z", + "completed":"2016-12-31T05:47:03.021Z", + "new_balance":"50136.74", + "value":"-545.16" + } + }, + { + "id":"c412d495-9a0d-49ba-9ecb-57fcfae92e98", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T20:01:47.241Z", + "completed":"2016-12-31T20:01:47.241Z", + "new_balance":"47505.53", + "value":"-2631.21" + } + }, + { + "id":"4a1a9206-543d-4fa5-90ba-a07e3e85b654", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T18:55:06.724Z", + "completed":"2017-03-02T18:55:06.724Z", + "new_balance":"46673.17", + "value":"-832.36" + } + }, + { + "id":"78f2de38-9506-49fd-bf01-40d25d80ac3b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T20:54:59.208Z", + "completed":"2017-03-02T20:54:59.208Z", + "new_balance":"46294.84", + "value":"-378.33" + } + }, + { + "id":"549b319e-cd2f-49c8-b278-579309a63c3a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T06:21:53.457Z", + "completed":"2017-03-03T06:21:53.457Z", + "new_balance":"41709.68", + "value":"-4585.16" + } + }, + { + "id":"f023a572-afcb-4df5-97c8-ba18d27b264c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T17:47:06.474Z", + "completed":"2017-03-03T17:47:06.474Z", + "new_balance":"41635.75", + "value":"-73.93" + } + }, + { + "id":"708a57be-6294-462d-a966-43b7804d2d8b", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T01:12:09.890Z", + "completed":"2017-03-04T01:12:09.890Z", + "new_balance":"41271.46", + "value":"-364.29" + } + }, + { + "id":"ab41f899-0549-4351-b032-1de07480db79", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:03:03.400Z", + "completed":"2017-03-04T23:03:03.400Z", + "new_balance":"41184.90", + "value":"-86.56" + } + }, + { + "id":"c53bd319-af64-4164-87b6-da20081cc2dd", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T22:38:25.822Z", + "completed":"2017-03-07T22:38:25.822Z", + "new_balance":"41131.72", + "value":"-53.18" + } + }, + { + "id":"08d60068-8c06-445d-87cc-5fc1879e3430", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T17:56:57.343Z", + "completed":"2017-03-09T17:56:57.343Z", + "new_balance":"40299.36", + "value":"-832.36" + } + }, + { + "id":"ab2cd18a-56bf-44d2-8658-2c30a92729ef", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T10:28:39.745Z", + "completed":"2017-03-16T10:28:39.745Z", + "new_balance":"39754.20", + "value":"-545.16" + } + }, + { + "id":"e4effb14-1dd3-4a48-a1fe-141ed5daffa8", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:45:24.651Z", + "completed":"2017-03-25T14:45:24.651Z", + "new_balance":"39209.04", + "value":"-545.16" + } + }, + { + "id":"f13c9058-b854-410c-ad2c-422de2ee3f74", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T19:26:06.807Z", + "completed":"2017-03-30T19:26:06.807Z", + "new_balance":"36577.83", + "value":"-2631.21" + } + }, + { + "id":"a989b9db-8dfc-45a4-afd5-7f93d849296c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T05:36:26.870Z", + "completed":"2017-06-07T05:36:26.870Z", + "new_balance":"36199.50", + "value":"-378.33" + } + }, + { + "id":"d1b570b3-fef3-4c5a-97a5-614e32bd4ee0", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T13:05:54.068Z", + "completed":"2017-06-07T13:05:54.068Z", + "new_balance":"31614.34", + "value":"-4585.16" + } + }, + { + "id":"916eabe8-7867-49ec-88d9-8aebc7c427c1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T15:33:22.711Z", + "completed":"2017-06-07T15:33:22.711Z", + "new_balance":"30781.98", + "value":"-832.36" + } + }, + { + "id":"e238e2f1-0a6f-4aae-a1a6-8741b1b6cec1", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T19:12:51.482Z", + "completed":"2017-06-10T19:12:51.482Z", + "new_balance":"30695.42", + "value":"-86.56" + } + }, + { + "id":"4d77ab61-a856-43ab-b5e5-3a7742686ead", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T17:59:20.974Z", + "completed":"2017-06-14T17:59:20.974Z", + "new_balance":"30331.13", + "value":"-364.29" + } + }, + { + "id":"bbea602a-c5bd-4b80-9e49-ad38d71c8c08", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T15:09:12.481Z", + "completed":"2017-06-19T15:09:12.481Z", + "new_balance":"30257.20", + "value":"-73.93" + } + }, + { + "id":"85694ebd-f461-43db-89b6-dc6cf360e1cb", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T19:57:51.427Z", + "completed":"2017-06-19T19:57:51.427Z", + "new_balance":"30204.02", + "value":"-53.18" + } + }, + { + "id":"b0b18d67-29bc-4edd-8ca7-63ce5ce28332", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T19:14:52.252Z", + "completed":"2017-06-20T19:14:52.252Z", + "new_balance":"29371.66", + "value":"-832.36" + } + }, + { + "id":"f946b360-48fa-4fb2-ae77-45efece054b6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T20:53:17.765Z", + "completed":"2017-06-28T20:53:17.765Z", + "new_balance":"28826.50", + "value":"-545.16" + } + }, + { + "id":"0cad7bdb-419f-44d4-bb30-5e9f95dae45e", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T03:00:52.464Z", + "completed":"2017-07-01T03:00:52.464Z", + "new_balance":"28281.34", + "value":"-545.16" + } + }, + { + "id":"ed173991-dff7-4f00-ac1e-a742378414a8", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T07:10:34.787Z", + "completed":"2017-07-01T07:10:34.787Z", + "new_balance":"25650.13", + "value":"-2631.21" + } + }, + { + "id":"d95d010b-6f7b-46df-a606-a915df4d615c", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:20:50.064Z", + "completed":"2017-09-02T08:20:50.064Z", + "new_balance":"24817.77", + "value":"-832.36" + } + }, + { + "id":"541efa27-dc38-48ab-84f1-7fc9dacb13f7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T14:36:41.993Z", + "completed":"2017-09-02T14:36:41.993Z", + "new_balance":"24439.44", + "value":"-378.33" + } + }, + { + "id":"f4c7e80a-9a89-4d2b-887a-3356b5a664f7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T13:32:11.608Z", + "completed":"2017-09-03T13:32:11.608Z", + "new_balance":"24365.51", + "value":"-73.93" + } + }, + { + "id":"13392d3d-c112-4288-8499-15319c83cc98", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T14:06:51.778Z", + "completed":"2017-09-03T14:06:51.778Z", + "new_balance":"19780.35", + "value":"-4585.16" + } + }, + { + "id":"89f20832-1181-4d62-8197-2814ce389d59", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T17:34:07.270Z", + "completed":"2017-09-03T17:34:07.270Z", + "new_balance":"19733.45", + "value":"-46.90" + } + }, + { + "id":"d9dff8bc-2f8d-4f26-8176-6ea2b727b553", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T18:48:37.014Z", + "completed":"2017-09-04T18:48:37.014Z", + "new_balance":"19369.16", + "value":"-364.29" + } + }, + { + "id":"fee00f5b-e26b-4759-86df-460ddcb4db89", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T07:22:53.255Z", + "completed":"2017-09-07T07:22:53.255Z", + "new_balance":"19315.98", + "value":"-53.18" + } + }, + { + "id":"54b50d2f-bfd1-486d-95ec-b71c20597013", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T16:31:42.364Z", + "completed":"2017-09-09T16:31:42.364Z", + "new_balance":"18483.62", + "value":"-832.36" + } + }, + { + "id":"4f467f05-3d29-4fae-bf2b-abf79b0776ca", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T15:08:00.677Z", + "completed":"2017-09-16T15:08:00.677Z", + "new_balance":"17938.46", + "value":"-545.16" + } + }, + { + "id":"baf2213c-c23e-40ae-81e6-f0808a627e3a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T14:16:42.852Z", + "completed":"2017-09-25T14:16:42.852Z", + "new_balance":"17393.30", + "value":"-545.16" + } + }, + { + "id":"8c199b84-f998-4ce6-b4ed-f8253a492b64", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T05:56:31.741Z", + "completed":"2017-09-30T05:56:31.741Z", + "new_balance":"14762.09", + "value":"-2631.21" + } + }, + { + "id":"e57c2a81-0d07-4246-857d-b2cd0f9a12e7", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T07:16:28.859Z", + "completed":"2017-12-07T07:16:28.859Z", + "new_balance":"10176.93", + "value":"-4585.16" + } + }, + { + "id":"672f2151-8820-4dd6-8ed0-eefe7bb86ca2", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:10:43.228Z", + "completed":"2017-12-07T12:10:43.228Z", + "new_balance":"9798.60", + "value":"-378.33" + } + }, + { + "id":"cdfecceb-85cd-49f1-b7ce-91bd8915dcdf", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T12:46:51.879Z", + "completed":"2017-12-07T12:46:51.879Z", + "new_balance":"8966.24", + "value":"-832.36" + } + }, + { + "id":"74c887d0-01b1-4629-99ad-f0f1f18a1352", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T11:57:23.375Z", + "completed":"2017-12-11T11:57:23.375Z", + "new_balance":"8879.68", + "value":"-86.56" + } + }, + { + "id":"78623d58-6c06-4558-9f7f-742e0eb0f50a", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T23:24:43.793Z", + "completed":"2017-12-11T23:24:43.793Z", + "new_balance":"8805.75", + "value":"-73.93" + } + }, + { + "id":"1b3cda2f-d7f7-4262-a6cf-8db98eb8fcc6", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T13:45:07.445Z", + "completed":"2017-12-14T13:45:07.445Z", + "new_balance":"8441.46", + "value":"-364.29" + } + }, + { + "id":"94949457-8d0a-4cf0-961d-a0f6b1d5a044", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T19:54:06.473Z", + "completed":"2017-12-20T19:54:06.473Z", + "new_balance":"8388.28", + "value":"-53.18" + } + }, + { + "id":"91ff128f-14a4-4561-a030-b94193a6eb21", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T08:55:04.709Z", + "completed":"2017-12-22T08:55:04.709Z", + "new_balance":"7555.92", + "value":"-832.36" + } + }, + { + "id":"8dd30380-1eb0-4b59-9467-8c2434f93683", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:33:33.132Z", + "completed":"2017-12-28T01:33:33.132Z", + "new_balance":"7010.76", + "value":"-545.16" + } + }, + { + "id":"4a01b208-895d-4953-9cb2-1156c62c4c84", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T21:36:20.576Z", + "completed":"2017-12-31T21:36:20.576Z", + "new_balance":"4379.55", + "value":"-2631.21" + } + }, + { + "id":"498e5f4b-0bb7-4906-a9d4-039bd2dc13b4", + "this_account":{ + "id":"5c026fba-69c1-4213-85fb-22be49ba4723", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T21:47:19.434Z", + "completed":"2017-12-31T21:47:19.434Z", + "new_balance":"3834.39", + "value":"-545.16" + } + }, + { + "id":"b366f395-2458-4340-9b99-d5798efc7691", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T06:51:44.683Z", + "completed":"2016-03-01T06:51:44.683Z", + "new_balance":"10075.98", + "value":"-45.51" + } + }, + { + "id":"44bff993-f29f-4a12-9dc0-6dba3c2194cc", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T09:35:16.185Z", + "completed":"2016-03-02T09:35:16.185Z", + "new_balance":"10002.05", + "value":"-73.93" + } + }, + { + "id":"b64d612d-1585-48ec-a8cc-961a0c33ef5b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T06:56:01.058Z", + "completed":"2016-03-06T06:56:01.058Z", + "new_balance":"9950.95", + "value":"-51.10" + } + }, + { + "id":"b694e521-1427-4bef-967a-524991277146", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T10:15:40.210Z", + "completed":"2016-03-11T10:15:40.210Z", + "new_balance":"9944.26", + "value":"-6.69" + } + }, + { + "id":"2e60f7a9-e0a3-4eb1-bfc7-b676772bbabf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T20:09:36.416Z", + "completed":"2016-03-13T20:09:36.416Z", + "new_balance":"9940.56", + "value":"-3.70" + } + }, + { + "id":"2526b843-2105-4032-b5d2-ce8ab22c675f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T10:53:18.835Z", + "completed":"2016-03-16T10:53:18.835Z", + "new_balance":"9623.35", + "value":"-317.21" + } + }, + { + "id":"fce70e82-9f6f-414b-b5c3-bd5cee0c2a8d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T14:17:51.164Z", + "completed":"2016-03-17T14:17:51.164Z", + "new_balance":"9581.01", + "value":"-42.34" + } + }, + { + "id":"e02ebc96-aeaa-4ff3-a256-f2c027434584", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T18:07:16.608Z", + "completed":"2016-03-17T18:07:16.608Z", + "new_balance":"9417.53", + "value":"-163.48" + } + }, + { + "id":"7b0553bf-6371-40cb-8ae4-e8050adef94e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T22:46:22.224Z", + "completed":"2016-03-19T22:46:22.224Z", + "new_balance":"9413.83", + "value":"-3.70" + } + }, + { + "id":"2f9a9f59-6109-435e-8a4c-035b2e9b0b0a", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T00:36:30.041Z", + "completed":"2016-03-21T00:36:30.041Z", + "new_balance":"9394.25", + "value":"-19.58" + } + }, + { + "id":"ab1a18ef-33fc-4759-82a5-0338052df0bc", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T17:48:09.916Z", + "completed":"2016-03-23T17:48:09.916Z", + "new_balance":"9348.74", + "value":"-45.51" + } + }, + { + "id":"2756a0ae-e0e5-4f53-808c-c7a3f5370895", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T23:46:20.036Z", + "completed":"2016-03-24T23:46:20.036Z", + "new_balance":"9342.05", + "value":"-6.69" + } + }, + { + "id":"8bc95fb9-f7e6-4bff-930c-5f7996312b31", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T00:24:34.554Z", + "completed":"2016-03-26T00:24:34.554Z", + "new_balance":"9329.04", + "value":"-13.01" + } + }, + { + "id":"0c9b5872-bf00-48c6-907f-a4d6343e0192", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T00:42:37.175Z", + "completed":"2016-04-01T00:42:37.175Z", + "new_balance":"9316.03", + "value":"-13.01" + } + }, + { + "id":"9d75699d-d3cb-40b7-a963-78340edc426c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T13:15:03.846Z", + "completed":"2016-06-01T13:15:03.846Z", + "new_balance":"9270.52", + "value":"-45.51" + } + }, + { + "id":"e93eeab1-81ad-478e-939d-b3b9c16c6eaa", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T09:12:34.183Z", + "completed":"2016-06-04T09:12:34.183Z", + "new_balance":"9196.59", + "value":"-73.93" + } + }, + { + "id":"cfd574f7-7b0f-48aa-8344-180e4d78d61d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T08:46:39.012Z", + "completed":"2016-06-19T08:46:39.012Z", + "new_balance":"9145.49", + "value":"-51.10" + } + }, + { + "id":"b16907ac-76d6-41f6-965b-05ca415a3d4d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T10:35:57.324Z", + "completed":"2016-06-21T10:35:57.324Z", + "new_balance":"9138.80", + "value":"-6.69" + } + }, + { + "id":"cbf4f23e-d2ca-4efc-8e23-859bcca70445", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T06:08:03.097Z", + "completed":"2016-06-24T06:08:03.097Z", + "new_balance":"9135.10", + "value":"-3.70" + } + }, + { + "id":"8074d2f3-d8bf-43d7-93b2-a202570c4393", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T05:20:13.975Z", + "completed":"2016-06-28T05:20:13.975Z", + "new_balance":"8817.89", + "value":"-317.21" + } + }, + { + "id":"bfe3d36e-48e7-48f5-ba28-45d5951445c1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T06:51:02.510Z", + "completed":"2016-06-28T06:51:02.510Z", + "new_balance":"8654.41", + "value":"-163.48" + } + }, + { + "id":"1fb91939-0d44-454f-ba22-e0eed28a322d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T09:43:51.733Z", + "completed":"2016-06-28T09:43:51.733Z", + "new_balance":"8612.07", + "value":"-42.34" + } + }, + { + "id":"9fd09127-74d7-4453-b08c-e417a67418d4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T23:58:13.792Z", + "completed":"2016-06-29T23:58:13.792Z", + "new_balance":"8608.37", + "value":"-3.70" + } + }, + { + "id":"4798b264-9825-49fb-bc61-4c8131feebed", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T04:09:51.704Z", + "completed":"2016-06-30T04:09:51.704Z", + "new_balance":"8562.86", + "value":"-45.51" + } + }, + { + "id":"1589cd55-3fa0-416f-b2a4-89f6f9881322", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T15:12:09.961Z", + "completed":"2016-06-30T15:12:09.961Z", + "new_balance":"8543.28", + "value":"-19.58" + } + }, + { + "id":"7b96f98f-3209-49df-9ca4-e61343e77ef3", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T19:04:49.693Z", + "completed":"2016-06-30T19:04:49.693Z", + "new_balance":"8536.59", + "value":"-6.69" + } + }, + { + "id":"8b7bdc0e-f422-442b-abfc-04db7990c4c4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T07:03:48.004Z", + "completed":"2016-09-01T07:03:48.004Z", + "new_balance":"8512.73", + "value":"-23.86" + } + }, + { + "id":"db214bc0-52ee-430c-bdb8-399a20cc9895", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T11:11:24.835Z", + "completed":"2016-09-02T11:11:24.835Z", + "new_balance":"8438.80", + "value":"-73.93" + } + }, + { + "id":"7c71d199-0f8e-4049-a10d-f856f85b6d6b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T00:49:44.985Z", + "completed":"2016-09-07T00:49:44.985Z", + "new_balance":"8387.70", + "value":"-51.10" + } + }, + { + "id":"f277a4d4-179a-4385-9b15-475aca20ae8e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T06:59:22.814Z", + "completed":"2016-09-11T06:59:22.814Z", + "new_balance":"8381.01", + "value":"-6.69" + } + }, + { + "id":"a17e3ecd-1a16-46c4-9c6e-2b6d825b9929", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T03:48:18.602Z", + "completed":"2016-09-15T03:48:18.602Z", + "new_balance":"8370.10", + "value":"-10.91" + } + }, + { + "id":"8d2f9bb1-f2f1-4b65-9625-5082502c3736", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T12:16:09.855Z", + "completed":"2016-09-17T12:16:09.855Z", + "new_balance":"8327.76", + "value":"-42.34" + } + }, + { + "id":"c3fb1dc8-0820-461b-bca0-759215a1fefb", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T14:17:35.274Z", + "completed":"2016-09-17T14:17:35.274Z", + "new_balance":"8164.28", + "value":"-163.48" + } + }, + { + "id":"c7fc9346-e0d3-46c4-a98a-b1e1e15a25e2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T21:20:08.637Z", + "completed":"2016-09-17T21:20:08.637Z", + "new_balance":"7847.07", + "value":"-317.21" + } + }, + { + "id":"c5b29fb1-d3a5-44a4-8cc5-623f208233a2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T01:54:24.095Z", + "completed":"2016-09-19T01:54:24.095Z", + "new_balance":"7843.37", + "value":"-3.70" + } + }, + { + "id":"dc6ee7cc-6968-4ba7-829b-311f4c6ddec1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T00:52:06.735Z", + "completed":"2016-09-21T00:52:06.735Z", + "new_balance":"7823.79", + "value":"-19.58" + } + }, + { + "id":"3b986e19-1f30-4802-b176-536065e0ee5c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T12:37:24.088Z", + "completed":"2016-09-23T12:37:24.088Z", + "new_balance":"7778.28", + "value":"-45.51" + } + }, + { + "id":"4ecb9563-3171-4299-a51e-45565f46942d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T14:13:13.634Z", + "completed":"2016-09-24T14:13:13.634Z", + "new_balance":"7771.59", + "value":"-6.69" + } + }, + { + "id":"f53523d7-8ed1-49a4-9a7a-fc4bf51bac7d", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T13:55:46.179Z", + "completed":"2016-09-27T13:55:46.179Z", + "new_balance":"7758.58", + "value":"-13.01" + } + }, + { + "id":"61e6699c-cc17-401c-9fba-4fa5bc182940", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T02:07:17.478Z", + "completed":"2016-10-01T02:07:17.478Z", + "new_balance":"7745.57", + "value":"-13.01" + } + }, + { + "id":"c9fcdf8a-7b02-47b8-96cf-addfd678b802", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T00:18:29.940Z", + "completed":"2016-12-01T00:18:29.940Z", + "new_balance":"7700.06", + "value":"-45.51" + } + }, + { + "id":"73c32535-5a69-4eca-b65f-026ab7dbf5b4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T19:54:08.847Z", + "completed":"2016-12-04T19:54:08.847Z", + "new_balance":"7626.13", + "value":"-73.93" + } + }, + { + "id":"f6253610-0214-4d2f-9284-260c7fbbfe37", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T17:49:46.605Z", + "completed":"2016-12-19T17:49:46.605Z", + "new_balance":"7575.03", + "value":"-51.10" + } + }, + { + "id":"e9fe7120-eab8-4405-ae02-eb3716fada4a", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T00:09:59.140Z", + "completed":"2016-12-24T00:09:59.140Z", + "new_balance":"7571.33", + "value":"-3.70" + } + }, + { + "id":"7cd0edf2-fa96-4a13-8d51-f43cff874095", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T20:57:53.887Z", + "completed":"2016-12-24T20:57:53.887Z", + "new_balance":"7564.64", + "value":"-6.69" + } + }, + { + "id":"8ce9c2c4-6378-4b3c-9da1-7878a1dad2d9", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T04:07:45.818Z", + "completed":"2016-12-28T04:07:45.818Z", + "new_balance":"7522.30", + "value":"-42.34" + } + }, + { + "id":"67e19631-fd36-48e7-bb50-37334061a96e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T13:48:04.563Z", + "completed":"2016-12-28T13:48:04.563Z", + "new_balance":"7205.09", + "value":"-317.21" + } + }, + { + "id":"96305a69-b624-48c6-9c33-194059c2130e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T15:15:15.173Z", + "completed":"2016-12-28T15:15:15.173Z", + "new_balance":"7041.61", + "value":"-163.48" + } + }, + { + "id":"635e8ddd-edf2-4195-84fe-3466b75a6396", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T17:52:04.139Z", + "completed":"2016-12-29T17:52:04.139Z", + "new_balance":"7037.91", + "value":"-3.70" + } + }, + { + "id":"fc80010c-d641-4931-b16c-00a52d278765", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T05:43:16.945Z", + "completed":"2016-12-30T05:43:16.945Z", + "new_balance":"6992.40", + "value":"-45.51" + } + }, + { + "id":"9b9a021d-0766-4262-99f3-5913703f0aa0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T11:07:09.332Z", + "completed":"2016-12-30T11:07:09.332Z", + "new_balance":"6985.71", + "value":"-6.69" + } + }, + { + "id":"1d17fca9-a5c5-4312-95d3-0390fe0a527e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T21:10:32.030Z", + "completed":"2016-12-30T21:10:32.030Z", + "new_balance":"6966.13", + "value":"-19.58" + } + }, + { + "id":"e8b2a3b6-f885-4673-9d6a-e1bca5d88f25", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T07:19:46.457Z", + "completed":"2017-03-01T07:19:46.457Z", + "new_balance":"6920.62", + "value":"-45.51" + } + }, + { + "id":"a6bb67df-e8f0-4f31-847b-b1e9dd222e14", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T10:36:10.662Z", + "completed":"2017-03-02T10:36:10.662Z", + "new_balance":"6846.69", + "value":"-73.93" + } + }, + { + "id":"02719642-4644-451b-8014-a6a41b46e593", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T12:34:25.028Z", + "completed":"2017-03-06T12:34:25.028Z", + "new_balance":"6795.59", + "value":"-51.10" + } + }, + { + "id":"c0531cb3-b809-49e2-805c-1de309a00faf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T04:55:22.622Z", + "completed":"2017-03-11T04:55:22.622Z", + "new_balance":"6788.90", + "value":"-6.69" + } + }, + { + "id":"5dca850e-1d30-40f2-888c-977221174c23", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T02:41:55.336Z", + "completed":"2017-03-13T02:41:55.336Z", + "new_balance":"6785.20", + "value":"-3.70" + } + }, + { + "id":"bd830949-e73b-480f-9284-19181996d1ad", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T18:20:30.798Z", + "completed":"2017-03-16T18:20:30.798Z", + "new_balance":"6467.99", + "value":"-317.21" + } + }, + { + "id":"7d02a482-03a3-4708-a4ab-043f4170a76f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T08:53:33.823Z", + "completed":"2017-03-17T08:53:33.823Z", + "new_balance":"6304.51", + "value":"-163.48" + } + }, + { + "id":"72029c1c-ccc5-4a08-8144-8d5c88fa1f94", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T12:01:35.268Z", + "completed":"2017-03-17T12:01:35.268Z", + "new_balance":"6262.17", + "value":"-42.34" + } + }, + { + "id":"e1a067e3-aa9b-4811-b565-3688defb7794", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T20:33:24.757Z", + "completed":"2017-03-19T20:33:24.757Z", + "new_balance":"6258.47", + "value":"-3.70" + } + }, + { + "id":"54934289-3cf1-48eb-8149-f1c6579599d5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T14:45:34.714Z", + "completed":"2017-03-21T14:45:34.714Z", + "new_balance":"6238.89", + "value":"-19.58" + } + }, + { + "id":"3ff4725f-1318-411b-8366-194f6d3088f5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T21:36:51.776Z", + "completed":"2017-03-23T21:36:51.776Z", + "new_balance":"6193.38", + "value":"-45.51" + } + }, + { + "id":"e62cb39f-049e-443b-bd32-038d7287fa48", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T13:02:52.481Z", + "completed":"2017-03-24T13:02:52.481Z", + "new_balance":"6186.69", + "value":"-6.69" + } + }, + { + "id":"351284ae-9164-4a23-95a1-ec1638d975da", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T08:40:40.719Z", + "completed":"2017-03-26T08:40:40.719Z", + "new_balance":"6173.68", + "value":"-13.01" + } + }, + { + "id":"51495bed-95ad-41d6-b952-f2b34c7b4c6f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T12:41:35.734Z", + "completed":"2017-04-01T12:41:35.734Z", + "new_balance":"6160.67", + "value":"-13.01" + } + }, + { + "id":"7ee6d545-26bf-4ee1-8d59-730a9ee23858", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T03:41:48.373Z", + "completed":"2017-06-01T03:41:48.373Z", + "new_balance":"6115.16", + "value":"-45.51" + } + }, + { + "id":"f87d35dd-e719-4822-989c-1fa5f52bd798", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T05:14:43.857Z", + "completed":"2017-06-04T05:14:43.857Z", + "new_balance":"6041.23", + "value":"-73.93" + } + }, + { + "id":"2001cd3c-6a73-4af7-9f41-910c79849c94", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T01:52:07.319Z", + "completed":"2017-06-19T01:52:07.319Z", + "new_balance":"5990.13", + "value":"-51.10" + } + }, + { + "id":"513598fb-250f-41cf-85ca-32eaadf252e3", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T21:23:41.431Z", + "completed":"2017-06-21T21:23:41.431Z", + "new_balance":"5983.44", + "value":"-6.69" + } + }, + { + "id":"f0e0a338-4a9c-4a26-a3e7-8e86b650b6eb", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T08:55:45.086Z", + "completed":"2017-06-24T08:55:45.086Z", + "new_balance":"5979.74", + "value":"-3.70" + } + }, + { + "id":"df03d7c1-f900-447a-bf19-1d8abe87e387", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T05:25:53.796Z", + "completed":"2017-06-28T05:25:53.796Z", + "new_balance":"5937.40", + "value":"-42.34" + } + }, + { + "id":"8e098c7b-6962-4c32-9f64-f3e1083e6cab", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T15:25:13.887Z", + "completed":"2017-06-28T15:25:13.887Z", + "new_balance":"5620.19", + "value":"-317.21" + } + }, + { + "id":"f91b89e2-fd02-4927-9651-d02415cbd339", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T16:34:28.812Z", + "completed":"2017-06-28T16:34:28.812Z", + "new_balance":"5456.71", + "value":"-163.48" + } + }, + { + "id":"dee30225-9414-4596-8907-159566b78eb6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T03:15:10.041Z", + "completed":"2017-06-29T03:15:10.041Z", + "new_balance":"5453.01", + "value":"-3.70" + } + }, + { + "id":"2af5a488-3062-4992-8151-e102efb8177c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T00:57:26.666Z", + "completed":"2017-06-30T00:57:26.666Z", + "new_balance":"5433.43", + "value":"-19.58" + } + }, + { + "id":"a31d6d16-f610-4bc3-9238-15d42f8379d2", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T02:06:18.117Z", + "completed":"2017-06-30T02:06:18.117Z", + "new_balance":"5426.74", + "value":"-6.69" + } + }, + { + "id":"1d5efcba-b967-44a9-bd53-0e44529102c6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T15:34:59.856Z", + "completed":"2017-06-30T15:34:59.856Z", + "new_balance":"5381.23", + "value":"-45.51" + } + }, + { + "id":"c9e0f390-5318-4342-8146-33b02dc5a057", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T15:40:11.163Z", + "completed":"2017-09-01T15:40:11.163Z", + "new_balance":"5357.37", + "value":"-23.86" + } + }, + { + "id":"f6be8421-7cd2-44d1-884a-a60c9321f982", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T14:55:15.064Z", + "completed":"2017-09-02T14:55:15.064Z", + "new_balance":"5283.44", + "value":"-73.93" + } + }, + { + "id":"99403486-b214-4f1a-922d-d96e57f8db31", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T15:49:51.019Z", + "completed":"2017-09-07T15:49:51.019Z", + "new_balance":"5232.34", + "value":"-51.10" + } + }, + { + "id":"ffddbe15-5812-4053-a36b-59b18a4ff533", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T03:08:57.853Z", + "completed":"2017-09-11T03:08:57.853Z", + "new_balance":"5225.65", + "value":"-6.69" + } + }, + { + "id":"801a4442-7fa3-40e6-a862-8716faae01e5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T03:23:53.362Z", + "completed":"2017-09-15T03:23:53.362Z", + "new_balance":"5214.74", + "value":"-10.91" + } + }, + { + "id":"97e83548-704e-4a30-9959-134bf3b3c6d1", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T04:34:04.479Z", + "completed":"2017-09-17T04:34:04.479Z", + "new_balance":"5051.26", + "value":"-163.48" + } + }, + { + "id":"ef54fa9b-fb0a-4a2e-be3c-2e63c0652b25", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T10:01:30.782Z", + "completed":"2017-09-17T10:01:30.782Z", + "new_balance":"5008.92", + "value":"-42.34" + } + }, + { + "id":"52292d20-3a4b-413f-a6d9-08ed8ceb8e7e", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T15:11:15.880Z", + "completed":"2017-09-17T15:11:15.880Z", + "new_balance":"4691.71", + "value":"-317.21" + } + }, + { + "id":"d29fe752-9da8-4847-9487-c7202efaebcf", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T02:06:57.588Z", + "completed":"2017-09-19T02:06:57.588Z", + "new_balance":"4688.01", + "value":"-3.70" + } + }, + { + "id":"936f0ebe-4eca-4229-8922-e668a76cacff", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T19:41:24.919Z", + "completed":"2017-09-21T19:41:24.919Z", + "new_balance":"4668.43", + "value":"-19.58" + } + }, + { + "id":"71256525-8e91-43b3-8cd6-35e2ff7af449", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T19:57:50.574Z", + "completed":"2017-09-23T19:57:50.574Z", + "new_balance":"4622.92", + "value":"-45.51" + } + }, + { + "id":"3d832e62-b55c-494a-b1c5-0c1dada89b7b", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T08:54:44.614Z", + "completed":"2017-09-24T08:54:44.614Z", + "new_balance":"4616.23", + "value":"-6.69" + } + }, + { + "id":"75a88165-907b-42ba-ab1a-f5d6ef79f517", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:49:38.239Z", + "completed":"2017-09-27T21:49:38.239Z", + "new_balance":"4603.22", + "value":"-13.01" + } + }, + { + "id":"c264b5aa-59f9-4eef-b05b-265f9497bff7", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T05:07:14.655Z", + "completed":"2017-10-01T05:07:14.655Z", + "new_balance":"4590.21", + "value":"-13.01" + } + }, + { + "id":"1fbb69d6-22c6-4f50-92b2-451e2317c4f5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T00:03:44.992Z", + "completed":"2017-12-01T00:03:44.992Z", + "new_balance":"4544.70", + "value":"-45.51" + } + }, + { + "id":"cb7b9058-2ffb-4661-a0ee-f100c9f6e23f", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T17:31:54.848Z", + "completed":"2017-12-04T17:31:54.848Z", + "new_balance":"4470.77", + "value":"-73.93" + } + }, + { + "id":"4659d340-852f-4014-be3d-0670bcb46e03", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:41:58.819Z", + "completed":"2017-12-19T10:41:58.819Z", + "new_balance":"4419.67", + "value":"-51.10" + } + }, + { + "id":"b2273076-4356-4ba5-862f-8d761ebc8a78", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T06:55:58.643Z", + "completed":"2017-12-24T06:55:58.643Z", + "new_balance":"4412.98", + "value":"-6.69" + } + }, + { + "id":"17cdc65e-cc47-4b34-80fc-16fe37ea39e0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T12:02:41.136Z", + "completed":"2017-12-24T12:02:41.136Z", + "new_balance":"4409.28", + "value":"-3.70" + } + }, + { + "id":"ad3f560e-efca-42af-acbb-eed3d8e3bfc4", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T03:35:04.578Z", + "completed":"2017-12-28T03:35:04.578Z", + "new_balance":"4092.07", + "value":"-317.21" + } + }, + { + "id":"809bc1fc-87b0-4b17-b018-527de86bf432", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T15:15:09.580Z", + "completed":"2017-12-28T15:15:09.580Z", + "new_balance":"4049.73", + "value":"-42.34" + } + }, + { + "id":"67326419-ce71-49f6-83ed-429cdaa0e9c5", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T18:32:32.959Z", + "completed":"2017-12-28T18:32:32.959Z", + "new_balance":"3886.25", + "value":"-163.48" + } + }, + { + "id":"d8846d7b-5841-4e6f-b95b-4e0b835545f7", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T15:21:25.987Z", + "completed":"2017-12-29T15:21:25.987Z", + "new_balance":"3882.55", + "value":"-3.70" + } + }, + { + "id":"e18910c9-e6b2-4b1c-88b5-e74c3f9cf4c0", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T07:14:37.760Z", + "completed":"2017-12-30T07:14:37.760Z", + "new_balance":"3837.04", + "value":"-45.51" + } + }, + { + "id":"e98e4168-7662-49b0-a6c9-b595df0acbf6", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T08:47:00.960Z", + "completed":"2017-12-30T08:47:00.960Z", + "new_balance":"3817.46", + "value":"-19.58" + } + }, + { + "id":"aa924c0a-e671-4b9d-be76-fff73af7507c", + "this_account":{ + "id":"638019b0-239f-4575-9c70-8650d73a4dda", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T18:27:23.370Z", + "completed":"2017-12-30T18:27:23.370Z", + "new_balance":"3810.77", + "value":"-6.69" + } + }, + { + "id":"e1cac2f3-0b8b-46f8-af16-1978d25434bd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:55:08.486Z", + "completed":"2016-01-01T02:55:08.486Z", + "new_balance":"2899.72", + "value":"-3.44" + } + }, + { + "id":"fe55c120-ab52-4913-8e53-f55da023a32b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T13:47:23.669Z", + "completed":"2016-01-01T13:47:23.669Z", + "new_balance":"2896.28", + "value":"-3.44" + } + }, + { + "id":"fcf6b56f-d00a-4bd4-8401-63d380f52c87", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T13:57:29.555Z", + "completed":"2016-01-01T13:57:29.555Z", + "new_balance":"2892.10", + "value":"-4.18" + } + }, + { + "id":"39bfc7a2-4138-4419-9109-018e1dfd5d45", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T17:48:34.087Z", + "completed":"2016-01-01T17:48:34.087Z", + "new_balance":"2884.40", + "value":"-7.70" + } + }, + { + "id":"4976ce70-590b-4afd-9247-8857844e1174", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T00:58:49.982Z", + "completed":"2016-01-05T00:58:49.982Z", + "new_balance":"2877.10", + "value":"-7.30" + } + }, + { + "id":"c0c5f459-90da-412d-9fe3-5840e20819b6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T13:06:23.336Z", + "completed":"2016-01-05T13:06:23.336Z", + "new_balance":"2867.06", + "value":"-10.04" + } + }, + { + "id":"e0b8136d-b40c-4ee3-a3d0-b13ec0772eea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T19:59:50.567Z", + "completed":"2016-01-08T19:59:50.567Z", + "new_balance":"2865.66", + "value":"-1.40" + } + }, + { + "id":"cb85ca04-7c38-48ec-bd64-227c89df9516", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T13:50:11.606Z", + "completed":"2016-01-10T13:50:11.606Z", + "new_balance":"2861.00", + "value":"-4.66" + } + }, + { + "id":"d1d990b9-cfa5-4605-997f-94ce68e0a1fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T12:01:03.309Z", + "completed":"2016-01-11T12:01:03.309Z", + "new_balance":"2855.59", + "value":"-5.41" + } + }, + { + "id":"bc9cb52f-30e3-460f-aec2-e0c634104baa", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T00:11:59.153Z", + "completed":"2016-01-12T00:11:59.153Z", + "new_balance":"2852.15", + "value":"-3.44" + } + }, + { + "id":"643fb809-1411-49c7-9feb-0377cdf89cbf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T15:06:52.343Z", + "completed":"2016-01-13T15:06:52.343Z", + "new_balance":"2851.64", + "value":"-0.51" + } + }, + { + "id":"1f11dd91-85fc-41ee-bb83-3e86f712a885", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T15:52:33.157Z", + "completed":"2016-01-13T15:52:33.157Z", + "new_balance":"2851.18", + "value":"-0.46" + } + }, + { + "id":"63e9ce2b-582a-48a3-aa7a-24612c7ab586", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T02:37:29.210Z", + "completed":"2016-01-16T02:37:29.210Z", + "new_balance":"2841.66", + "value":"-9.52" + } + }, + { + "id":"96657b6b-ff5f-471e-9de8-5e5f9922b3e4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T09:33:24.214Z", + "completed":"2016-01-19T09:33:24.214Z", + "new_balance":"2834.36", + "value":"-7.30" + } + }, + { + "id":"42061771-1446-449d-b61b-19a4ffb66b38", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T10:25:42.407Z", + "completed":"2016-01-19T10:25:42.407Z", + "new_balance":"2827.53", + "value":"-6.83" + } + }, + { + "id":"5cfa7edb-d851-42f6-b3af-6cbf09f4c64f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T01:57:03.853Z", + "completed":"2016-01-24T01:57:03.853Z", + "new_balance":"2824.85", + "value":"-2.68" + } + }, + { + "id":"56b6166d-283e-4925-9227-078f7f404e0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T04:50:46.205Z", + "completed":"2016-01-27T04:50:46.205Z", + "new_balance":"2821.18", + "value":"-3.67" + } + }, + { + "id":"8d4c4e22-daf3-4aaa-903f-8274b8b4b529", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T14:21:09.390Z", + "completed":"2016-01-27T14:21:09.390Z", + "new_balance":"3056.14", + "value":"234.96" + } + }, + { + "id":"edbb7d5f-013f-404e-8e49-78569036359c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T18:24:59.933Z", + "completed":"2016-01-31T18:24:59.933Z", + "new_balance":"3032.90", + "value":"-23.24" + } + }, + { + "id":"635b5372-0615-4418-bd5f-a192392045c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T13:04:40.040Z", + "completed":"2016-02-01T13:04:40.040Z", + "new_balance":"3029.46", + "value":"-3.44" + } + }, + { + "id":"cf4fbd02-53f9-46bf-8e6e-9071bde2b578", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T17:58:25.442Z", + "completed":"2016-02-01T17:58:25.442Z", + "new_balance":"3021.76", + "value":"-7.70" + } + }, + { + "id":"63aadeab-e5a2-44dd-ace4-bfddfa866da0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T20:42:47.246Z", + "completed":"2016-02-01T20:42:47.246Z", + "new_balance":"3018.32", + "value":"-3.44" + } + }, + { + "id":"e5f2fba4-8347-4186-b157-7beb12d4ec56", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T21:57:20.264Z", + "completed":"2016-02-01T21:57:20.264Z", + "new_balance":"3014.14", + "value":"-4.18" + } + }, + { + "id":"1857e176-5f29-4991-a841-a175da4b248e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T07:20:12.720Z", + "completed":"2016-02-03T07:20:12.720Z", + "new_balance":"3013.44", + "value":"-0.70" + } + }, + { + "id":"e1cb6bd4-8467-4740-a8dc-8a6cbf008468", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T02:49:29.134Z", + "completed":"2016-02-04T02:49:29.134Z", + "new_balance":"3006.14", + "value":"-7.30" + } + }, + { + "id":"302248f7-3750-48c8-b993-ac68ebcf5689", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T03:35:56.227Z", + "completed":"2016-02-06T03:35:56.227Z", + "new_balance":"2996.04", + "value":"-10.10" + } + }, + { + "id":"f095c98f-1a50-4a29-bf95-e5fac2a5260c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T20:50:19.424Z", + "completed":"2016-02-06T20:50:19.424Z", + "new_balance":"2986.58", + "value":"-9.46" + } + }, + { + "id":"cbe4a1e5-d8a3-4d71-b734-f54378a11b04", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T10:13:22.054Z", + "completed":"2016-02-07T10:13:22.054Z", + "new_balance":"2982.78", + "value":"-3.80" + } + }, + { + "id":"66157d6a-5e5d-406c-baef-95be2b825310", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T23:43:02.026Z", + "completed":"2016-02-08T23:43:02.026Z", + "new_balance":"2981.66", + "value":"-1.12" + } + }, + { + "id":"6aa0e2c8-5a6b-4c72-a72a-995f1ff11869", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:55:09.632Z", + "completed":"2016-02-09T00:55:09.632Z", + "new_balance":"2977.07", + "value":"-4.59" + } + }, + { + "id":"63675a52-6d33-4d44-b5f5-85022845ed9e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T09:50:17.839Z", + "completed":"2016-02-11T09:50:17.839Z", + "new_balance":"2974.67", + "value":"-2.40" + } + }, + { + "id":"36b9a2c1-fc72-4836-9add-842995a9da9e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T07:39:23.668Z", + "completed":"2016-02-13T07:39:23.668Z", + "new_balance":"2971.79", + "value":"-2.88" + } + }, + { + "id":"f38e4dfc-e1be-445d-807c-af805d0ff447", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T22:59:50.983Z", + "completed":"2016-02-17T22:59:50.983Z", + "new_balance":"2971.27", + "value":"-0.52" + } + }, + { + "id":"3490614d-3de6-4a81-8168-cee4ccc99cfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T02:40:31.470Z", + "completed":"2016-02-19T02:40:31.470Z", + "new_balance":"2966.09", + "value":"-5.18" + } + }, + { + "id":"d07a0eeb-ad1a-4422-b39e-b07970ce039d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T02:19:21.064Z", + "completed":"2016-02-21T02:19:21.064Z", + "new_balance":"2958.79", + "value":"-7.30" + } + }, + { + "id":"92afe7a0-700d-4c80-b436-8d45035c1adc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T21:35:55.407Z", + "completed":"2016-02-24T21:35:55.407Z", + "new_balance":"2955.12", + "value":"-3.67" + } + }, + { + "id":"c3fea72d-328b-4f39-b133-a6dfb853fc7b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T02:04:34.765Z", + "completed":"2016-02-26T02:04:34.765Z", + "new_balance":"3190.08", + "value":"234.96" + } + }, + { + "id":"b64afd0a-a802-4ff6-8154-eec25840ca6c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T03:32:16.095Z", + "completed":"2016-03-01T03:32:16.095Z", + "new_balance":"3186.64", + "value":"-3.44" + } + }, + { + "id":"938e70a8-b560-467c-b213-ba4e154e854d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T15:14:21.260Z", + "completed":"2016-03-01T15:14:21.260Z", + "new_balance":"3182.46", + "value":"-4.18" + } + }, + { + "id":"999427c1-26e5-43f0-aba2-aa227ff75a97", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T16:48:18.595Z", + "completed":"2016-03-01T16:48:18.595Z", + "new_balance":"3174.76", + "value":"-7.70" + } + }, + { + "id":"b3c5db30-c365-4fab-b9ac-c5ad27cf6430", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T22:34:05.555Z", + "completed":"2016-03-01T22:34:05.555Z", + "new_balance":"3171.32", + "value":"-3.44" + } + }, + { + "id":"524dbead-a10c-4a6c-a84f-40873e4b7ec4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T13:09:17.275Z", + "completed":"2016-03-09T13:09:17.275Z", + "new_balance":"3165.50", + "value":"-5.82" + } + }, + { + "id":"474e3d01-bd48-4bf3-8097-3b675cb8f2cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T23:10:26.287Z", + "completed":"2016-03-09T23:10:26.287Z", + "new_balance":"3158.24", + "value":"-7.26" + } + }, + { + "id":"37d2a00f-3c27-46b2-9475-e5c5bcdbf7a6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T03:58:14.730Z", + "completed":"2016-03-17T03:58:14.730Z", + "new_balance":"3150.50", + "value":"-7.74" + } + }, + { + "id":"7478a0af-b600-4ecc-95de-277c64311025", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T00:00:28.145Z", + "completed":"2016-03-18T00:00:28.145Z", + "new_balance":"3146.43", + "value":"-4.07" + } + }, + { + "id":"4efc7a8f-950e-4286-b77f-c3daf9a88744", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T14:28:22.321Z", + "completed":"2016-03-18T14:28:22.321Z", + "new_balance":"3142.02", + "value":"-4.41" + } + }, + { + "id":"f219b5de-0f6e-464c-8237-1306a7850b1c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T18:56:17.969Z", + "completed":"2016-03-18T18:56:17.969Z", + "new_balance":"3141.41", + "value":"-0.61" + } + }, + { + "id":"37c1fe1a-195b-4508-8c7b-9f89a76e29b6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T22:59:57.143Z", + "completed":"2016-03-18T22:59:57.143Z", + "new_balance":"3133.67", + "value":"-7.74" + } + }, + { + "id":"512003ae-88ed-44d8-97d3-5f01c8c9a4a5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T14:26:51.079Z", + "completed":"2016-03-22T14:26:51.079Z", + "new_balance":"3123.66", + "value":"-10.01" + } + }, + { + "id":"7e35e363-1f88-42c9-b73e-f3bea11513b2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T05:15:25.367Z", + "completed":"2016-03-29T05:15:25.367Z", + "new_balance":"3358.62", + "value":"234.96" + } + }, + { + "id":"c562de02-e9a0-4ac4-9407-5ab10510f213", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T21:17:19.580Z", + "completed":"2016-03-29T21:17:19.580Z", + "new_balance":"3354.95", + "value":"-3.67" + } + }, + { + "id":"4eae278c-21b8-4c49-a41a-4109d7a0025a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T18:36:45.830Z", + "completed":"2016-03-31T18:36:45.830Z", + "new_balance":"3331.71", + "value":"-23.24" + } + }, + { + "id":"fac4b816-fc8e-4ce5-a6aa-96a38bff14e0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T00:56:12.170Z", + "completed":"2016-04-01T00:56:12.170Z", + "new_balance":"3324.01", + "value":"-7.70" + } + }, + { + "id":"bb2cbfbd-012a-424a-84ce-6262ead241ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T09:49:55.746Z", + "completed":"2016-04-01T09:49:55.746Z", + "new_balance":"3320.57", + "value":"-3.44" + } + }, + { + "id":"cbc74686-9843-411d-9890-1fab36f95190", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T13:39:08.282Z", + "completed":"2016-04-01T13:39:08.282Z", + "new_balance":"3317.13", + "value":"-3.44" + } + }, + { + "id":"62246a86-4e74-4f7c-a0f3-6ac1c74b9c50", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T16:34:24.904Z", + "completed":"2016-04-01T16:34:24.904Z", + "new_balance":"3312.95", + "value":"-4.18" + } + }, + { + "id":"e9edf816-d396-467d-a68a-c8dcce50fe68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T01:35:03.321Z", + "completed":"2016-04-02T01:35:03.321Z", + "new_balance":"3305.39", + "value":"-7.56" + } + }, + { + "id":"70a99746-6489-451d-b328-14b94f5988f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T03:27:44.885Z", + "completed":"2016-04-05T03:27:44.885Z", + "new_balance":"3304.80", + "value":"-0.59" + } + }, + { + "id":"05bd572b-10a6-42a5-9afc-12042f22d99b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T03:40:05.689Z", + "completed":"2016-04-05T03:40:05.689Z", + "new_balance":"3301.36", + "value":"-3.44" + } + }, + { + "id":"3e9aab86-65d0-4a4f-83fa-06262d4838ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T08:16:39.226Z", + "completed":"2016-04-05T08:16:39.226Z", + "new_balance":"3297.18", + "value":"-4.18" + } + }, + { + "id":"82cba2e1-7e54-4be3-b13e-ad7b2d8393d4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T13:01:38.188Z", + "completed":"2016-04-05T13:01:38.188Z", + "new_balance":"3295.94", + "value":"-1.24" + } + }, + { + "id":"19b9f918-5466-4db7-b31e-6c3401496a35", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T13:13:21.503Z", + "completed":"2016-04-05T13:13:21.503Z", + "new_balance":"3295.24", + "value":"-0.70" + } + }, + { + "id":"9ecc060c-1f3f-4021-81ee-5c470be98ba2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T21:46:32.461Z", + "completed":"2016-04-05T21:46:32.461Z", + "new_balance":"3289.79", + "value":"-5.45" + } + }, + { + "id":"90130053-dff4-4650-a9b7-be21ffd86ff2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T22:48:17.310Z", + "completed":"2016-04-05T22:48:17.310Z", + "new_balance":"3282.49", + "value":"-7.30" + } + }, + { + "id":"b5ad4a5c-c447-431d-a4f0-1eafc091b5d4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T04:34:25.524Z", + "completed":"2016-04-08T04:34:25.524Z", + "new_balance":"3274.40", + "value":"-8.09" + } + }, + { + "id":"6c7850bc-45d2-40a5-8de2-89a46b0ed297", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T13:21:52.737Z", + "completed":"2016-04-10T13:21:52.737Z", + "new_balance":"3268.28", + "value":"-6.12" + } + }, + { + "id":"07d10221-1361-49fd-bc2f-3f81882c1faf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T15:19:10.648Z", + "completed":"2016-04-11T15:19:10.648Z", + "new_balance":"3265.60", + "value":"-2.68" + } + }, + { + "id":"d21fbb11-4ef5-4881-8f21-a75c6e956d60", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T23:49:43.933Z", + "completed":"2016-04-11T23:49:43.933Z", + "new_balance":"3258.30", + "value":"-7.30" + } + }, + { + "id":"e2237841-5e01-4fbb-87f3-8955195f02c5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T06:18:26.495Z", + "completed":"2016-04-13T06:18:26.495Z", + "new_balance":"3254.63", + "value":"-3.67" + } + }, + { + "id":"ee0a0a56-cfca-4a85-9ee5-697d40fb5aba", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T12:30:07.780Z", + "completed":"2016-04-18T12:30:07.780Z", + "new_balance":"3489.59", + "value":"234.96" + } + }, + { + "id":"35c2b1e2-628a-4ca6-beee-b2074ca842a7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:05:03.340Z", + "completed":"2016-04-25T19:05:03.340Z", + "new_balance":"3466.35", + "value":"-23.24" + } + }, + { + "id":"5f72ef8b-c723-4827-8bd7-d9e38fe15cdb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T01:38:44.907Z", + "completed":"2016-05-02T01:38:44.907Z", + "new_balance":"3462.17", + "value":"-4.18" + } + }, + { + "id":"48215603-0dc0-4904-ae4f-180bcdb6934b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T05:01:09.992Z", + "completed":"2016-05-02T05:01:09.992Z", + "new_balance":"3458.73", + "value":"-3.44" + } + }, + { + "id":"6f3b5337-8af2-4e50-b1ca-0ce9d59c2cbe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T05:35:00.909Z", + "completed":"2016-05-02T05:35:00.909Z", + "new_balance":"3451.03", + "value":"-7.70" + } + }, + { + "id":"58d0b1b5-9259-4e46-997e-63b54b2504a1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T17:37:56.046Z", + "completed":"2016-05-02T17:37:56.046Z", + "new_balance":"3447.59", + "value":"-3.44" + } + }, + { + "id":"ea15e32c-f207-4768-9db4-86cd87463a7f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T01:56:03.361Z", + "completed":"2016-05-04T01:56:03.361Z", + "new_balance":"3446.89", + "value":"-0.70" + } + }, + { + "id":"36f73527-e579-44d4-8653-8ba7e73c3649", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T06:33:35.784Z", + "completed":"2016-05-04T06:33:35.784Z", + "new_balance":"3439.59", + "value":"-7.30" + } + }, + { + "id":"e91b6809-82f4-44bd-a565-b175753a684f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T10:18:57.571Z", + "completed":"2016-05-06T10:18:57.571Z", + "new_balance":"3432.15", + "value":"-7.44" + } + }, + { + "id":"36284f91-0a74-4ddc-8888-c1acc1765d09", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T20:49:45.789Z", + "completed":"2016-05-07T20:49:45.789Z", + "new_balance":"3429.44", + "value":"-2.71" + } + }, + { + "id":"9fdb3978-7b71-4a43-82b5-bfb8ba24111f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T21:25:28.767Z", + "completed":"2016-05-07T21:25:28.767Z", + "new_balance":"3421.88", + "value":"-7.56" + } + }, + { + "id":"7dcdafcb-21c8-44d1-925e-458827da337f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T05:46:55.195Z", + "completed":"2016-05-09T05:46:55.195Z", + "new_balance":"3417.29", + "value":"-4.59" + } + }, + { + "id":"977a9630-50cf-4093-9c11-2ec622c175bf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T18:02:07.370Z", + "completed":"2016-05-09T18:02:07.370Z", + "new_balance":"3416.05", + "value":"-1.24" + } + }, + { + "id":"7cc354ea-31a8-4dcc-941c-da10dcb62bbb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T02:44:11.316Z", + "completed":"2016-05-13T02:44:11.316Z", + "new_balance":"3413.92", + "value":"-2.13" + } + }, + { + "id":"f9c0d1aa-38a7-4f10-a492-0d624089441c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T16:18:33.832Z", + "completed":"2016-05-13T16:18:33.832Z", + "new_balance":"3411.21", + "value":"-2.71" + } + }, + { + "id":"f90f7d89-b648-4ed8-80c3-e5b4f3637da6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T17:12:14.291Z", + "completed":"2016-05-13T17:12:14.291Z", + "new_balance":"3410.51", + "value":"-0.70" + } + }, + { + "id":"0fd19779-9533-41f2-af1e-3787caee8068", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T03:39:00.796Z", + "completed":"2016-05-14T03:39:00.796Z", + "new_balance":"3406.05", + "value":"-4.46" + } + }, + { + "id":"63975c1d-b7fa-45ee-9bfe-27c9966cf3f7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T04:13:16.684Z", + "completed":"2016-05-14T04:13:16.684Z", + "new_balance":"3398.75", + "value":"-7.30" + } + }, + { + "id":"2c61538a-7721-4003-8dfc-89d26e3d2cfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T14:43:53.393Z", + "completed":"2016-05-15T14:43:53.393Z", + "new_balance":"3395.08", + "value":"-3.67" + } + }, + { + "id":"ffc1f02f-7ea4-4be8-aeef-6d1d2fb35763", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T18:26:29.399Z", + "completed":"2016-05-30T18:26:29.399Z", + "new_balance":"3630.04", + "value":"234.96" + } + }, + { + "id":"7180b3ff-d7f3-44ff-9062-c5454a6cfa8c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T20:10:07.997Z", + "completed":"2016-05-30T20:10:07.997Z", + "new_balance":"3606.80", + "value":"-23.24" + } + }, + { + "id":"014a305e-721c-4183-a52d-1d6605e47e1a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:14:13.164Z", + "completed":"2016-06-01T00:14:13.164Z", + "new_balance":"3603.36", + "value":"-3.44" + } + }, + { + "id":"f21e2c34-9e16-44a0-a2e7-91c01e763b11", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T03:31:51.290Z", + "completed":"2016-06-01T03:31:51.290Z", + "new_balance":"3599.92", + "value":"-3.44" + } + }, + { + "id":"5ea1aa0c-20a9-4a57-a2b9-c519972ce719", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T19:34:18.819Z", + "completed":"2016-06-01T19:34:18.819Z", + "new_balance":"3592.22", + "value":"-7.70" + } + }, + { + "id":"be8b7e83-3a2b-4ace-b69d-1aa92633491a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T23:30:02.298Z", + "completed":"2016-06-01T23:30:02.298Z", + "new_balance":"3588.04", + "value":"-4.18" + } + }, + { + "id":"a6b90e88-97a7-4669-9b82-b39ce88c4738", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T01:39:29.428Z", + "completed":"2016-06-04T01:39:29.428Z", + "new_balance":"3582.22", + "value":"-5.82" + } + }, + { + "id":"645c9f9d-c096-4479-9bff-ce0b5e84f18c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T06:18:28.189Z", + "completed":"2016-06-04T06:18:28.189Z", + "new_balance":"3574.96", + "value":"-7.26" + } + }, + { + "id":"10fc5b56-b063-4084-8b39-8aa6f9ff4a8b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T07:48:22.993Z", + "completed":"2016-06-11T07:48:22.993Z", + "new_balance":"3567.22", + "value":"-7.74" + } + }, + { + "id":"335daa4c-138e-425f-8d41-a9b81b675147", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T11:00:24.335Z", + "completed":"2016-06-11T11:00:24.335Z", + "new_balance":"3562.81", + "value":"-4.41" + } + }, + { + "id":"546ec627-0087-456e-b3fb-be779c4b87ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T21:40:22.719Z", + "completed":"2016-06-11T21:40:22.719Z", + "new_balance":"3555.07", + "value":"-7.74" + } + }, + { + "id":"c34f4466-3515-4d50-a3bb-9faa17e9e710", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T10:16:33.640Z", + "completed":"2016-06-12T10:16:33.640Z", + "new_balance":"3551.00", + "value":"-4.07" + } + }, + { + "id":"d04be3b3-e83d-4bff-868f-c249f8246ca5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T23:04:17.987Z", + "completed":"2016-06-12T23:04:17.987Z", + "new_balance":"3550.39", + "value":"-0.61" + } + }, + { + "id":"94a4d282-4dd8-47e7-8f5d-d872ce215cbb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T09:11:57.262Z", + "completed":"2016-06-16T09:11:57.262Z", + "new_balance":"3540.38", + "value":"-10.01" + } + }, + { + "id":"3b570b6a-8a03-4426-bc80-c155420d158c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T13:00:56.086Z", + "completed":"2016-06-29T13:00:56.086Z", + "new_balance":"3536.71", + "value":"-3.67" + } + }, + { + "id":"17971304-bae6-4aa9-8f49-0825616281ce", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T12:07:44.194Z", + "completed":"2016-06-30T12:07:44.194Z", + "new_balance":"3513.47", + "value":"-23.24" + } + }, + { + "id":"94d6527f-72fd-4419-9ff4-5f7b29da5f72", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T14:28:02.679Z", + "completed":"2016-06-30T14:28:02.679Z", + "new_balance":"3748.43", + "value":"234.96" + } + }, + { + "id":"a193949c-7e9a-4eb3-96c7-f0641cbee4cf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:35:23.669Z", + "completed":"2016-07-01T02:35:23.669Z", + "new_balance":"3744.25", + "value":"-4.18" + } + }, + { + "id":"0a972c8d-a0ee-4986-a223-6584250d991c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T06:32:55.392Z", + "completed":"2016-07-01T06:32:55.392Z", + "new_balance":"3740.81", + "value":"-3.44" + } + }, + { + "id":"3b549988-014a-4e7e-8de7-c70ea2c541a9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T08:47:50.193Z", + "completed":"2016-07-01T08:47:50.193Z", + "new_balance":"3733.11", + "value":"-7.70" + } + }, + { + "id":"0d453e61-dc81-4e82-b366-94d9ce2fa462", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T16:45:33.639Z", + "completed":"2016-07-01T16:45:33.639Z", + "new_balance":"3729.67", + "value":"-3.44" + } + }, + { + "id":"6dd9a134-6830-40c8-81b4-628bcd48a260", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T01:17:38.805Z", + "completed":"2016-07-05T01:17:38.805Z", + "new_balance":"3722.37", + "value":"-7.30" + } + }, + { + "id":"cffa2f04-fcb1-4e7a-8052-cc43b50a7865", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T14:57:36.134Z", + "completed":"2016-07-05T14:57:36.134Z", + "new_balance":"3712.33", + "value":"-10.04" + } + }, + { + "id":"d3c10a83-a53e-494c-bdd6-02538ab59227", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T09:53:24.460Z", + "completed":"2016-07-08T09:53:24.460Z", + "new_balance":"3710.93", + "value":"-1.40" + } + }, + { + "id":"ecefbf5e-2442-421e-90d3-8842be9eb10c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T02:41:59.596Z", + "completed":"2016-07-10T02:41:59.596Z", + "new_balance":"3706.27", + "value":"-4.66" + } + }, + { + "id":"9b9bb8dc-ea0f-4c76-b883-0617082b4983", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T01:41:49.160Z", + "completed":"2016-07-12T01:41:49.160Z", + "new_balance":"3702.83", + "value":"-3.44" + } + }, + { + "id":"d9d419a1-899d-4e41-b4b9-33c7306256c7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T22:37:26.347Z", + "completed":"2016-07-12T22:37:26.347Z", + "new_balance":"3697.42", + "value":"-5.41" + } + }, + { + "id":"c7247eba-1ceb-4bc3-9af8-acfc1cbac481", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T16:11:19.964Z", + "completed":"2016-07-13T16:11:19.964Z", + "new_balance":"3696.96", + "value":"-0.46" + } + }, + { + "id":"2c2b291b-2844-4e80-9ddb-1026a826c192", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T19:25:57.384Z", + "completed":"2016-07-13T19:25:57.384Z", + "new_balance":"3696.45", + "value":"-0.51" + } + }, + { + "id":"3604e2bd-ae42-4360-a074-5fa15fa6a803", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T03:53:06.736Z", + "completed":"2016-07-18T03:53:06.736Z", + "new_balance":"3686.93", + "value":"-9.52" + } + }, + { + "id":"76f8fb57-c94f-4936-a316-093610602df6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T19:49:10.883Z", + "completed":"2016-07-20T19:49:10.883Z", + "new_balance":"3679.63", + "value":"-7.30" + } + }, + { + "id":"9eaddc60-f33a-4bbc-80de-f944dd9f1ee2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T21:10:12.830Z", + "completed":"2016-07-20T21:10:12.830Z", + "new_balance":"3672.80", + "value":"-6.83" + } + }, + { + "id":"f647b770-2d3a-40da-92c3-07a31ff7389f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T06:30:19.170Z", + "completed":"2016-07-24T06:30:19.170Z", + "new_balance":"3670.12", + "value":"-2.68" + } + }, + { + "id":"a27741c3-3ef7-488a-a4bb-e5659b630ff6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T06:59:44.370Z", + "completed":"2016-07-29T06:59:44.370Z", + "new_balance":"3905.08", + "value":"234.96" + } + }, + { + "id":"96f61f8a-db03-4d53-b57b-1012d97ae139", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T09:46:14.711Z", + "completed":"2016-07-29T09:46:14.711Z", + "new_balance":"3901.41", + "value":"-3.67" + } + }, + { + "id":"18641b54-a1d3-430e-ad74-10cc6d2f5547", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T21:42:02.092Z", + "completed":"2016-07-30T21:42:02.092Z", + "new_balance":"3878.17", + "value":"-23.24" + } + }, + { + "id":"6dc729f9-2487-4ce9-98ad-ceceebc8fc23", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T04:55:43.492Z", + "completed":"2016-08-01T04:55:43.492Z", + "new_balance":"3873.99", + "value":"-4.18" + } + }, + { + "id":"255ed06a-ef8c-44b9-bf8d-5d005d1187cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T11:02:21.044Z", + "completed":"2016-08-01T11:02:21.044Z", + "new_balance":"3866.29", + "value":"-7.70" + } + }, + { + "id":"485f8671-4f30-440f-9fba-97476fd5f0c4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T16:47:49.888Z", + "completed":"2016-08-01T16:47:49.888Z", + "new_balance":"3862.85", + "value":"-3.44" + } + }, + { + "id":"e223b2c0-e8a9-4cc7-9778-5d83b38f78ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T17:21:52.930Z", + "completed":"2016-08-01T17:21:52.930Z", + "new_balance":"3859.41", + "value":"-3.44" + } + }, + { + "id":"dd0af698-1af6-4605-a533-0d810e0f09e7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T13:44:49.807Z", + "completed":"2016-08-03T13:44:49.807Z", + "new_balance":"3858.71", + "value":"-0.70" + } + }, + { + "id":"e22bd4b5-83c2-4fe0-9ab8-ebea03cad4b9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T18:11:52.542Z", + "completed":"2016-08-04T18:11:52.542Z", + "new_balance":"3851.41", + "value":"-7.30" + } + }, + { + "id":"7fcab05a-30d3-4c15-b297-b62f1dcd05cc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T02:28:48.099Z", + "completed":"2016-08-08T02:28:48.099Z", + "new_balance":"3850.29", + "value":"-1.12" + } + }, + { + "id":"d7083b20-ebd0-4624-9349-23f78446b74b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T03:55:26.141Z", + "completed":"2016-08-08T03:55:26.141Z", + "new_balance":"3840.83", + "value":"-9.46" + } + }, + { + "id":"4ee753db-5b86-430e-8cb4-a376601bd986", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T12:52:17.269Z", + "completed":"2016-08-08T12:52:17.269Z", + "new_balance":"3837.03", + "value":"-3.80" + } + }, + { + "id":"6ec5f716-e8fb-4148-a614-4d883f8ee0ae", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T22:03:40.847Z", + "completed":"2016-08-08T22:03:40.847Z", + "new_balance":"3826.93", + "value":"-10.10" + } + }, + { + "id":"fbb9af87-26be-419b-b510-8142fc578829", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T23:01:39.713Z", + "completed":"2016-08-09T23:01:39.713Z", + "new_balance":"3822.34", + "value":"-4.59" + } + }, + { + "id":"19397f77-3ce6-451c-9329-799e900b2a35", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T22:44:31.971Z", + "completed":"2016-08-14T22:44:31.971Z", + "new_balance":"3819.94", + "value":"-2.40" + } + }, + { + "id":"d8ec9940-39db-41b9-bb94-a4b42c4db24b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T07:33:16.162Z", + "completed":"2016-08-15T07:33:16.162Z", + "new_balance":"3817.06", + "value":"-2.88" + } + }, + { + "id":"870552c6-6ff0-435a-b438-0360eea63dfa", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T17:08:49.949Z", + "completed":"2016-08-19T17:08:49.949Z", + "new_balance":"3816.54", + "value":"-0.52" + } + }, + { + "id":"0584348a-caa0-4908-8666-5c69251cff3d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T22:29:42.440Z", + "completed":"2016-08-22T22:29:42.440Z", + "new_balance":"3811.36", + "value":"-5.18" + } + }, + { + "id":"94ecc867-b42b-4dbf-b5e6-5b3fb5fd8a1a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T12:26:12.829Z", + "completed":"2016-08-26T12:26:12.829Z", + "new_balance":"3804.06", + "value":"-7.30" + } + }, + { + "id":"e9a70c81-67d4-4504-870f-8fe067e00326", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T17:11:03.035Z", + "completed":"2016-08-28T17:11:03.035Z", + "new_balance":"3780.82", + "value":"-23.24" + } + }, + { + "id":"9bd0ca6d-f058-4e7b-b324-3db3a49600c5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T07:31:44.425Z", + "completed":"2016-08-29T07:31:44.425Z", + "new_balance":"4015.78", + "value":"234.96" + } + }, + { + "id":"4052b894-1b59-4d4f-b9b6-ef1df2d21aca", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T23:44:39.298Z", + "completed":"2016-08-29T23:44:39.298Z", + "new_balance":"4012.11", + "value":"-3.67" + } + }, + { + "id":"9b5fa07d-b84d-4bcd-ad16-68152aaa539a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T04:32:38.731Z", + "completed":"2016-08-30T04:32:38.731Z", + "new_balance":"3988.87", + "value":"-23.24" + } + }, + { + "id":"7bb588d4-62dd-49cd-9049-71642d0d9197", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T08:14:47.222Z", + "completed":"2016-09-01T08:14:47.222Z", + "new_balance":"3985.43", + "value":"-3.44" + } + }, + { + "id":"f5477bac-1877-436b-b756-554607a51a41", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T08:18:15.744Z", + "completed":"2016-09-01T08:18:15.744Z", + "new_balance":"3981.25", + "value":"-4.18" + } + }, + { + "id":"8db5721e-aa05-4abe-99b6-cfebee1898c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T20:24:28.750Z", + "completed":"2016-09-01T20:24:28.750Z", + "new_balance":"3977.81", + "value":"-3.44" + } + }, + { + "id":"ccde8598-b16f-4be2-a1aa-78bdd6c434ad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T21:33:11.384Z", + "completed":"2016-09-01T21:33:11.384Z", + "new_balance":"3970.11", + "value":"-7.70" + } + }, + { + "id":"1963408c-2434-4c5a-839a-798fc6852f36", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T14:59:51.184Z", + "completed":"2016-09-09T14:59:51.184Z", + "new_balance":"3962.85", + "value":"-7.26" + } + }, + { + "id":"2906af7b-b8b2-4521-bd72-d7442e947aa2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T20:01:13.638Z", + "completed":"2016-09-09T20:01:13.638Z", + "new_balance":"3957.03", + "value":"-5.82" + } + }, + { + "id":"46e05752-af2d-43b7-adb2-658641666d0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T11:31:22.342Z", + "completed":"2016-09-17T11:31:22.342Z", + "new_balance":"3949.29", + "value":"-7.74" + } + }, + { + "id":"b5974ca6-e95c-471d-9ca3-2e061479101f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T08:25:35.476Z", + "completed":"2016-09-18T08:25:35.476Z", + "new_balance":"3948.68", + "value":"-0.61" + } + }, + { + "id":"094841a6-280a-4063-8552-f9ced549a317", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T13:16:34.001Z", + "completed":"2016-09-18T13:16:34.001Z", + "new_balance":"3944.27", + "value":"-4.41" + } + }, + { + "id":"95bd5e28-72d7-4cfb-bfde-2bfb1b0eb6d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T20:32:44.161Z", + "completed":"2016-09-18T20:32:44.161Z", + "new_balance":"3936.53", + "value":"-7.74" + } + }, + { + "id":"3225def4-2a25-4344-ad89-8fef2abec58e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T21:20:12.491Z", + "completed":"2016-09-18T21:20:12.491Z", + "new_balance":"3932.46", + "value":"-4.07" + } + }, + { + "id":"20c42cab-c7f9-49e9-81b1-89f3ad29fa9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T20:32:56.326Z", + "completed":"2016-09-22T20:32:56.326Z", + "new_balance":"3922.45", + "value":"-10.01" + } + }, + { + "id":"0757cbc0-5231-47d4-827a-6906a6cdfe68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T01:15:44.785Z", + "completed":"2016-09-29T01:15:44.785Z", + "new_balance":"4157.41", + "value":"234.96" + } + }, + { + "id":"6b4cf1f5-0930-432c-9cba-9a051e16ec94", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T02:46:00.380Z", + "completed":"2016-09-29T02:46:00.380Z", + "new_balance":"4153.74", + "value":"-3.67" + } + }, + { + "id":"283c0f57-ab27-4473-b7fc-085ee1d33588", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T17:03:59.166Z", + "completed":"2016-09-30T17:03:59.166Z", + "new_balance":"4130.50", + "value":"-23.24" + } + }, + { + "id":"a2d6cf7a-97ec-46ae-8cc2-7f66c421c104", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T03:36:40.900Z", + "completed":"2016-10-01T03:36:40.900Z", + "new_balance":"4127.06", + "value":"-3.44" + } + }, + { + "id":"6756cec3-1f2b-4c7c-851f-ea40c038c26f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T10:13:56.914Z", + "completed":"2016-10-01T10:13:56.914Z", + "new_balance":"4122.88", + "value":"-4.18" + } + }, + { + "id":"effaf5fe-5160-4020-8dc1-2fb3d096f9f8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T18:32:57.340Z", + "completed":"2016-10-01T18:32:57.340Z", + "new_balance":"4115.18", + "value":"-7.70" + } + }, + { + "id":"e9d36d9a-a7f2-494e-8427-14737f475c1d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T19:19:29.728Z", + "completed":"2016-10-01T19:19:29.728Z", + "new_balance":"4111.74", + "value":"-3.44" + } + }, + { + "id":"6aa1b1b0-3ed2-4da2-a6f5-9eb9b5323cf3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T18:20:40.015Z", + "completed":"2016-10-02T18:20:40.015Z", + "new_balance":"4104.18", + "value":"-7.56" + } + }, + { + "id":"ca8818f3-fe58-4e59-94ca-59ae9a92ab72", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T06:59:25.707Z", + "completed":"2016-10-05T06:59:25.707Z", + "new_balance":"4098.73", + "value":"-5.45" + } + }, + { + "id":"fc961a02-96f3-4efa-8d4e-7abd765e1747", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T10:38:22.495Z", + "completed":"2016-10-05T10:38:22.495Z", + "new_balance":"4098.03", + "value":"-0.70" + } + }, + { + "id":"45eab23f-b37e-4d68-a9bc-47feb752218e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T13:27:23.008Z", + "completed":"2016-10-05T13:27:23.008Z", + "new_balance":"4090.73", + "value":"-7.30" + } + }, + { + "id":"d7f1c63a-6045-4300-a189-72eeb7ee3c9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:11:33.764Z", + "completed":"2016-10-05T18:11:33.764Z", + "new_balance":"4087.29", + "value":"-3.44" + } + }, + { + "id":"133d3618-8449-4128-9c83-f5497b8ce344", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T19:09:05.636Z", + "completed":"2016-10-05T19:09:05.636Z", + "new_balance":"4086.05", + "value":"-1.24" + } + }, + { + "id":"886e9dc6-4fef-46cb-8003-e28b74228e16", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T22:03:30.959Z", + "completed":"2016-10-05T22:03:30.959Z", + "new_balance":"4081.87", + "value":"-4.18" + } + }, + { + "id":"ef88811e-077f-4002-a349-ff1d460c4ea6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T22:53:01.974Z", + "completed":"2016-10-05T22:53:01.974Z", + "new_balance":"4081.28", + "value":"-0.59" + } + }, + { + "id":"089ac018-606b-464d-957c-15a6ad18ddd9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T04:12:48.387Z", + "completed":"2016-10-09T04:12:48.387Z", + "new_balance":"4073.19", + "value":"-8.09" + } + }, + { + "id":"056a9c41-b7a0-4d62-8b5c-adc506219b44", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T23:39:05.225Z", + "completed":"2016-10-11T23:39:05.225Z", + "new_balance":"4067.07", + "value":"-6.12" + } + }, + { + "id":"bcf670ce-e215-47ad-ae69-93441a7be666", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T17:17:26.880Z", + "completed":"2016-10-12T17:17:26.880Z", + "new_balance":"4059.77", + "value":"-7.30" + } + }, + { + "id":"a0d103ef-68a2-4133-bec4-d4b0b4132249", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T20:25:02.068Z", + "completed":"2016-10-12T20:25:02.068Z", + "new_balance":"4057.09", + "value":"-2.68" + } + }, + { + "id":"5397f544-1122-43b9-9a8d-d6028ec20d2a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T21:31:59.453Z", + "completed":"2016-10-20T21:31:59.453Z", + "new_balance":"4053.42", + "value":"-3.67" + } + }, + { + "id":"79219bcc-00b5-45da-b374-f7a734428236", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T10:16:51.192Z", + "completed":"2016-10-29T10:16:51.192Z", + "new_balance":"4288.38", + "value":"234.96" + } + }, + { + "id":"778d8cdb-ac30-4c01-9661-e16b6e0c56df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:31:44.259Z", + "completed":"2016-10-30T05:31:44.259Z", + "new_balance":"4265.14", + "value":"-23.24" + } + }, + { + "id":"ea6eb73d-465d-41cb-8b69-6193758def76", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T04:21:48.114Z", + "completed":"2016-11-02T04:21:48.114Z", + "new_balance":"4257.44", + "value":"-7.70" + } + }, + { + "id":"4d133f32-26f5-4d91-bd38-45d47a87ef83", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T04:22:54.706Z", + "completed":"2016-11-02T04:22:54.706Z", + "new_balance":"4254.00", + "value":"-3.44" + } + }, + { + "id":"023abed9-e1bc-457b-ab8b-b262eb750332", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T20:08:08.408Z", + "completed":"2016-11-02T20:08:08.408Z", + "new_balance":"4250.56", + "value":"-3.44" + } + }, + { + "id":"fc92b08f-78f7-494c-9fce-d836323cac5c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T20:39:10.949Z", + "completed":"2016-11-02T20:39:10.949Z", + "new_balance":"4246.38", + "value":"-4.18" + } + }, + { + "id":"62946ddb-2583-47e2-a228-4d97a55931f6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T09:56:29.218Z", + "completed":"2016-11-04T09:56:29.218Z", + "new_balance":"4239.08", + "value":"-7.30" + } + }, + { + "id":"681fcd93-3f4d-4c97-b59f-9073b0b55337", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T14:25:27.404Z", + "completed":"2016-11-04T14:25:27.404Z", + "new_balance":"4238.38", + "value":"-0.70" + } + }, + { + "id":"3bca7b7b-be86-4726-a4ee-5908c5cb67fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T18:16:19.732Z", + "completed":"2016-11-06T18:16:19.732Z", + "new_balance":"4230.94", + "value":"-7.44" + } + }, + { + "id":"47b79532-bc2b-4450-945f-5b1a664bb200", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T00:03:14.415Z", + "completed":"2016-11-07T00:03:14.415Z", + "new_balance":"4228.23", + "value":"-2.71" + } + }, + { + "id":"2297435b-a92a-45ef-b85d-878f7c010ac3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T10:13:08.323Z", + "completed":"2016-11-07T10:13:08.323Z", + "new_balance":"4220.67", + "value":"-7.56" + } + }, + { + "id":"94c27bde-e83b-49d0-8d34-75cfa7e75ce7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T01:25:52.247Z", + "completed":"2016-11-09T01:25:52.247Z", + "new_balance":"4216.08", + "value":"-4.59" + } + }, + { + "id":"e6cc5963-7a7b-458d-adb8-0a7e2085cf8b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T18:07:50.717Z", + "completed":"2016-11-09T18:07:50.717Z", + "new_balance":"4214.84", + "value":"-1.24" + } + }, + { + "id":"14c4e5c6-2d10-48f7-ab60-51f73234ebdc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T00:15:13.434Z", + "completed":"2016-11-13T00:15:13.434Z", + "new_balance":"4212.71", + "value":"-2.13" + } + }, + { + "id":"33d18a9b-2ef7-4cc8-910a-c089a30247d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T12:04:10.673Z", + "completed":"2016-11-13T12:04:10.673Z", + "new_balance":"4212.01", + "value":"-0.70" + } + }, + { + "id":"5546f12d-f033-4680-b6a0-96c978fdfec4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T21:03:16.561Z", + "completed":"2016-11-13T21:03:16.561Z", + "new_balance":"4209.30", + "value":"-2.71" + } + }, + { + "id":"de61fc2c-c101-4f52-b966-fbfeede766d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T04:03:00.878Z", + "completed":"2016-11-14T04:03:00.878Z", + "new_balance":"4204.84", + "value":"-4.46" + } + }, + { + "id":"78a00008-dd91-4e86-9011-acea462682a7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T17:36:45.377Z", + "completed":"2016-11-14T17:36:45.377Z", + "new_balance":"4197.54", + "value":"-7.30" + } + }, + { + "id":"54c4283e-1f23-4e5e-94b9-e2302f1f6101", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T21:15:35.017Z", + "completed":"2016-11-15T21:15:35.017Z", + "new_balance":"4193.87", + "value":"-3.67" + } + }, + { + "id":"f4b7048c-b554-4a5a-9d28-04b269668437", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T05:09:26.777Z", + "completed":"2016-11-30T05:09:26.777Z", + "new_balance":"4428.83", + "value":"234.96" + } + }, + { + "id":"71b4c596-293b-4001-9215-0bb59143c4cf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T08:35:43.120Z", + "completed":"2016-11-30T08:35:43.120Z", + "new_balance":"4405.59", + "value":"-23.24" + } + }, + { + "id":"94a65c83-ddcb-4be0-863b-4ada05002be4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T10:53:57.496Z", + "completed":"2016-12-01T10:53:57.496Z", + "new_balance":"4402.15", + "value":"-3.44" + } + }, + { + "id":"d3b1592c-3a32-4128-9aea-eddd88006c33", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T11:01:26.637Z", + "completed":"2016-12-01T11:01:26.637Z", + "new_balance":"4398.71", + "value":"-3.44" + } + }, + { + "id":"5c3357b9-6089-459e-a094-94e164b9d428", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T12:03:21.893Z", + "completed":"2016-12-01T12:03:21.893Z", + "new_balance":"4394.53", + "value":"-4.18" + } + }, + { + "id":"b974c716-062f-45ab-a277-2a6afd343003", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T16:23:06.547Z", + "completed":"2016-12-01T16:23:06.547Z", + "new_balance":"4386.83", + "value":"-7.70" + } + }, + { + "id":"707a87e9-d208-4bf9-a2a1-1d2a068c8797", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T05:17:06.112Z", + "completed":"2016-12-04T05:17:06.112Z", + "new_balance":"4381.01", + "value":"-5.82" + } + }, + { + "id":"f1500432-993e-4844-941f-ec50c6f97b87", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T07:04:13.051Z", + "completed":"2016-12-04T07:04:13.051Z", + "new_balance":"4373.75", + "value":"-7.26" + } + }, + { + "id":"022882ba-f825-43ed-bbff-9220695ecee6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T00:21:09.860Z", + "completed":"2016-12-11T00:21:09.860Z", + "new_balance":"4366.01", + "value":"-7.74" + } + }, + { + "id":"fcac5b73-411b-4194-ae76-ea859d72eea9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:13:22.946Z", + "completed":"2016-12-11T06:13:22.946Z", + "new_balance":"4361.60", + "value":"-4.41" + } + }, + { + "id":"4248a6d1-953b-4a4c-a08b-6b69af3596c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T18:33:36.858Z", + "completed":"2016-12-11T18:33:36.858Z", + "new_balance":"4353.86", + "value":"-7.74" + } + }, + { + "id":"f3dbae59-78ec-4dd5-ac6c-b5d65cb2f02a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T01:49:34.811Z", + "completed":"2016-12-12T01:49:34.811Z", + "new_balance":"4353.25", + "value":"-0.61" + } + }, + { + "id":"52a2b01f-a5b5-47be-b079-f4ca242422ac", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T13:12:45.528Z", + "completed":"2016-12-12T13:12:45.528Z", + "new_balance":"4349.18", + "value":"-4.07" + } + }, + { + "id":"0579e48d-9aae-4187-b0fb-40340c297b06", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:58:02.617Z", + "completed":"2016-12-16T16:58:02.617Z", + "new_balance":"4339.17", + "value":"-10.01" + } + }, + { + "id":"d2b04d37-b015-48c3-9cd0-6f1e5c743f81", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T14:50:49.101Z", + "completed":"2016-12-29T14:50:49.101Z", + "new_balance":"4335.50", + "value":"-3.67" + } + }, + { + "id":"354eca51-5228-498a-a94e-f151eb8d23a0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T08:16:17.991Z", + "completed":"2016-12-30T08:16:17.991Z", + "new_balance":"4312.26", + "value":"-23.24" + } + }, + { + "id":"20a68099-4f99-4c98-8a7a-c5c7b8aa7dab", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T21:50:10.151Z", + "completed":"2016-12-30T21:50:10.151Z", + "new_balance":"4547.22", + "value":"234.96" + } + }, + { + "id":"3a7810a5-e28e-42cb-bc1b-38e99a31784f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T01:36:29.293Z", + "completed":"2017-01-01T01:36:29.293Z", + "new_balance":"4539.52", + "value":"-7.70" + } + }, + { + "id":"e3919abe-7b44-49b7-bbe3-897cd1a81192", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T08:02:21.518Z", + "completed":"2017-01-01T08:02:21.518Z", + "new_balance":"4536.08", + "value":"-3.44" + } + }, + { + "id":"bae443b4-ca6a-4751-8d51-3b70a50d7fa6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T13:46:43.446Z", + "completed":"2017-01-01T13:46:43.446Z", + "new_balance":"4531.90", + "value":"-4.18" + } + }, + { + "id":"1d14ec75-c5e0-4cd8-b63e-3822df89b344", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T18:14:55.853Z", + "completed":"2017-01-01T18:14:55.853Z", + "new_balance":"4528.46", + "value":"-3.44" + } + }, + { + "id":"44b1d715-9c84-487e-ae54-d6608c24ee61", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T04:34:27.603Z", + "completed":"2017-01-05T04:34:27.603Z", + "new_balance":"4518.42", + "value":"-10.04" + } + }, + { + "id":"adc08e68-b273-4772-9f8e-0607b5d7acae", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T11:37:17.968Z", + "completed":"2017-01-05T11:37:17.968Z", + "new_balance":"4511.12", + "value":"-7.30" + } + }, + { + "id":"ab40a059-4bd4-42b4-af6b-3a87b4924bc0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T13:18:18.469Z", + "completed":"2017-01-08T13:18:18.469Z", + "new_balance":"4509.72", + "value":"-1.40" + } + }, + { + "id":"34c9cce2-1cb3-4e1e-95a5-5122ef44070d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T18:49:41.500Z", + "completed":"2017-01-10T18:49:41.500Z", + "new_balance":"4505.06", + "value":"-4.66" + } + }, + { + "id":"db7bf131-85a6-4480-9e2d-957e192223f4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T04:12:50.873Z", + "completed":"2017-01-11T04:12:50.873Z", + "new_balance":"4499.65", + "value":"-5.41" + } + }, + { + "id":"2932140b-2555-4385-9789-20ef45de8e88", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T08:59:28.314Z", + "completed":"2017-01-12T08:59:28.314Z", + "new_balance":"4496.21", + "value":"-3.44" + } + }, + { + "id":"826d0ef5-37e8-4ff6-8066-1be5e12dde60", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:33:20.027Z", + "completed":"2017-01-13T05:33:20.027Z", + "new_balance":"4495.75", + "value":"-0.46" + } + }, + { + "id":"a2ac408d-83f6-48a1-86f5-e65c1632c3c3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T23:07:18.343Z", + "completed":"2017-01-13T23:07:18.343Z", + "new_balance":"4495.24", + "value":"-0.51" + } + }, + { + "id":"07b5a0dc-a253-448c-888a-7bae28e8a7a1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T17:57:07.464Z", + "completed":"2017-01-16T17:57:07.464Z", + "new_balance":"4485.72", + "value":"-9.52" + } + }, + { + "id":"e9dcd7e6-86a8-4d37-a631-bd0630d290f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T07:15:07.391Z", + "completed":"2017-01-19T07:15:07.391Z", + "new_balance":"4478.42", + "value":"-7.30" + } + }, + { + "id":"46c4b406-3115-4fba-b709-3aedcab5df2d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T14:18:31.959Z", + "completed":"2017-01-19T14:18:31.959Z", + "new_balance":"4471.59", + "value":"-6.83" + } + }, + { + "id":"7d31d9b5-f9bd-44c0-9320-55633e623095", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T04:16:06.576Z", + "completed":"2017-01-24T04:16:06.576Z", + "new_balance":"4468.91", + "value":"-2.68" + } + }, + { + "id":"31c55f53-0807-4555-93a8-e1e7d3d311d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T03:46:59.750Z", + "completed":"2017-01-27T03:46:59.750Z", + "new_balance":"4703.87", + "value":"234.96" + } + }, + { + "id":"c6191600-d8f1-4246-907e-5483c0cef0a9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T23:25:55.237Z", + "completed":"2017-01-27T23:25:55.237Z", + "new_balance":"4700.20", + "value":"-3.67" + } + }, + { + "id":"28c46df9-09fa-49dc-9129-364ef5dda6c0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T22:15:38.132Z", + "completed":"2017-01-31T22:15:38.132Z", + "new_balance":"4676.96", + "value":"-23.24" + } + }, + { + "id":"4fb9b411-528d-49ab-b5df-ed4557c6e0b5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T06:43:09.865Z", + "completed":"2017-02-01T06:43:09.865Z", + "new_balance":"4673.52", + "value":"-3.44" + } + }, + { + "id":"f48bf975-de5f-4bae-a329-d530798503eb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T17:46:15.258Z", + "completed":"2017-02-01T17:46:15.258Z", + "new_balance":"4670.08", + "value":"-3.44" + } + }, + { + "id":"956eb525-f9d5-4d68-b960-13ae28711d42", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T18:27:18.749Z", + "completed":"2017-02-01T18:27:18.749Z", + "new_balance":"4662.38", + "value":"-7.70" + } + }, + { + "id":"2eb8df16-2d4a-4bfa-864a-88ab72f30a10", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T23:04:04.667Z", + "completed":"2017-02-01T23:04:04.667Z", + "new_balance":"4658.20", + "value":"-4.18" + } + }, + { + "id":"2e4df989-382c-441e-b0e3-19be053dc8a6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T05:53:59.722Z", + "completed":"2017-02-03T05:53:59.722Z", + "new_balance":"4657.50", + "value":"-0.70" + } + }, + { + "id":"1c2ee687-0033-4a11-b360-f14197dfda41", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T08:52:52.873Z", + "completed":"2017-02-04T08:52:52.873Z", + "new_balance":"4650.20", + "value":"-7.30" + } + }, + { + "id":"9b3bf091-484e-4325-aef3-cfc2a85d8ee5", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T15:42:38.848Z", + "completed":"2017-02-06T15:42:38.848Z", + "new_balance":"4640.74", + "value":"-9.46" + } + }, + { + "id":"81ace29b-17b6-461f-b9d0-2b6306f2e4d0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T20:37:20.253Z", + "completed":"2017-02-06T20:37:20.253Z", + "new_balance":"4630.64", + "value":"-10.10" + } + }, + { + "id":"6273d3a6-75ad-4316-983e-c14c95ff7885", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T05:55:48.467Z", + "completed":"2017-02-07T05:55:48.467Z", + "new_balance":"4626.84", + "value":"-3.80" + } + }, + { + "id":"439c963c-b848-432f-9e7b-f6b96732a160", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T20:53:54.908Z", + "completed":"2017-02-08T20:53:54.908Z", + "new_balance":"4625.72", + "value":"-1.12" + } + }, + { + "id":"66fc1715-886f-4e0f-b7e1-de95a9703189", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T17:39:20.973Z", + "completed":"2017-02-09T17:39:20.973Z", + "new_balance":"4621.13", + "value":"-4.59" + } + }, + { + "id":"3c3c0a61-8e65-40f0-9cd2-f6b0c7a1723c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T03:16:39.672Z", + "completed":"2017-02-11T03:16:39.672Z", + "new_balance":"4618.73", + "value":"-2.40" + } + }, + { + "id":"9fdc00f6-90e9-40f9-9d4d-b2fba5b677e6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T04:28:17.149Z", + "completed":"2017-02-13T04:28:17.149Z", + "new_balance":"4615.85", + "value":"-2.88" + } + }, + { + "id":"86b207f0-7811-45f2-8ed4-157110920f73", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T14:48:25.963Z", + "completed":"2017-02-17T14:48:25.963Z", + "new_balance":"4615.33", + "value":"-0.52" + } + }, + { + "id":"49a1b6ea-b7af-4ac1-90c3-9f6bb7847b7a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T05:21:57.184Z", + "completed":"2017-02-19T05:21:57.184Z", + "new_balance":"4610.15", + "value":"-5.18" + } + }, + { + "id":"ba2ff55e-614a-4c46-88bd-527c5cf34584", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T01:41:08.476Z", + "completed":"2017-02-21T01:41:08.476Z", + "new_balance":"4602.85", + "value":"-7.30" + } + }, + { + "id":"e7d42600-7755-4fb9-a07d-b038f37272b1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T07:53:16.745Z", + "completed":"2017-02-24T07:53:16.745Z", + "new_balance":"4599.18", + "value":"-3.67" + } + }, + { + "id":"5d899741-24db-4480-88b8-42f4632a7aa9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T21:50:39.475Z", + "completed":"2017-02-26T21:50:39.475Z", + "new_balance":"4834.14", + "value":"234.96" + } + }, + { + "id":"ae1e0c02-0127-4ecf-a173-d82749a5ca23", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T04:01:25.832Z", + "completed":"2017-03-01T04:01:25.832Z", + "new_balance":"4830.70", + "value":"-3.44" + } + }, + { + "id":"2a586ac5-0ef5-49b6-9818-4a9ddb5fd358", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T08:04:30.120Z", + "completed":"2017-03-01T08:04:30.120Z", + "new_balance":"4827.26", + "value":"-3.44" + } + }, + { + "id":"4ae25fa6-d610-415b-ba9b-f098f8aeb9bf", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T18:36:41.284Z", + "completed":"2017-03-01T18:36:41.284Z", + "new_balance":"4819.56", + "value":"-7.70" + } + }, + { + "id":"77ef9406-783d-4d12-a97a-67daa281c9f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T23:50:43.901Z", + "completed":"2017-03-01T23:50:43.901Z", + "new_balance":"4815.38", + "value":"-4.18" + } + }, + { + "id":"99c6e058-d810-4129-8f3b-59040197b7a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T02:39:54.584Z", + "completed":"2017-03-09T02:39:54.584Z", + "new_balance":"4809.56", + "value":"-5.82" + } + }, + { + "id":"7019a516-74bf-43de-82b7-6f39332bdbd8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T12:56:59.827Z", + "completed":"2017-03-09T12:56:59.827Z", + "new_balance":"4802.30", + "value":"-7.26" + } + }, + { + "id":"b0a0ecd7-61df-4f0c-a5b6-e4680da8665a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T15:31:26.538Z", + "completed":"2017-03-17T15:31:26.538Z", + "new_balance":"4794.56", + "value":"-7.74" + } + }, + { + "id":"1b256c6d-8a63-4140-a3af-bf2c4ee84db4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T00:02:36.018Z", + "completed":"2017-03-18T00:02:36.018Z", + "new_balance":"4793.95", + "value":"-0.61" + } + }, + { + "id":"89721cda-1ffc-42bd-90c2-1e06227d606a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T05:59:10.273Z", + "completed":"2017-03-18T05:59:10.273Z", + "new_balance":"4789.88", + "value":"-4.07" + } + }, + { + "id":"48d0c832-acbb-4acb-858a-f42beb2206f0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T09:01:36.484Z", + "completed":"2017-03-18T09:01:36.484Z", + "new_balance":"4782.14", + "value":"-7.74" + } + }, + { + "id":"d791d514-5856-4aaa-a150-531a9a2381d0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T18:08:48.995Z", + "completed":"2017-03-18T18:08:48.995Z", + "new_balance":"4777.73", + "value":"-4.41" + } + }, + { + "id":"4c5a23a9-a907-4605-9400-6bacaf7cb2d7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T21:34:43.867Z", + "completed":"2017-03-22T21:34:43.867Z", + "new_balance":"4767.72", + "value":"-10.01" + } + }, + { + "id":"2833bf56-1ca6-4cd0-bf41-53fc4c361494", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T00:25:52.924Z", + "completed":"2017-03-29T00:25:52.924Z", + "new_balance":"5002.68", + "value":"234.96" + } + }, + { + "id":"2b7a792b-863d-4c26-a3f7-664b60c24184", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T01:56:31.396Z", + "completed":"2017-03-29T01:56:31.396Z", + "new_balance":"4999.01", + "value":"-3.67" + } + }, + { + "id":"8588ac40-8323-428d-96f2-b98022498b04", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T03:45:47.472Z", + "completed":"2017-03-31T03:45:47.472Z", + "new_balance":"4975.77", + "value":"-23.24" + } + }, + { + "id":"79a2c68b-7274-4397-ad7b-f57b6e3df9c7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T06:15:34.596Z", + "completed":"2017-04-01T06:15:34.596Z", + "new_balance":"4971.59", + "value":"-4.18" + } + }, + { + "id":"b502e752-9772-4623-8d24-7df28ee86e2a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T08:10:26.827Z", + "completed":"2017-04-01T08:10:26.827Z", + "new_balance":"4968.15", + "value":"-3.44" + } + }, + { + "id":"cac41b51-00af-4171-ae9e-e6a4b7966813", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T17:21:59.223Z", + "completed":"2017-04-01T17:21:59.223Z", + "new_balance":"4960.45", + "value":"-7.70" + } + }, + { + "id":"fc38fee6-4581-4b5a-afd5-f1ca6dfd81a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T21:39:35.673Z", + "completed":"2017-04-01T21:39:35.673Z", + "new_balance":"4957.01", + "value":"-3.44" + } + }, + { + "id":"83c8292b-c94d-43e1-9fec-577fe62eb0a2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T21:25:09.065Z", + "completed":"2017-04-02T21:25:09.065Z", + "new_balance":"4949.45", + "value":"-7.56" + } + }, + { + "id":"b268f5c8-0da6-4c97-a0bb-abf2dc596297", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T01:57:12.569Z", + "completed":"2017-04-05T01:57:12.569Z", + "new_balance":"4945.27", + "value":"-4.18" + } + }, + { + "id":"b14ebdb6-b2c8-407d-babc-65413cdf1108", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T02:58:25.467Z", + "completed":"2017-04-05T02:58:25.467Z", + "new_balance":"4941.83", + "value":"-3.44" + } + }, + { + "id":"1e8918dd-3fb6-40e9-81d4-93f862a89b13", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T05:02:54.263Z", + "completed":"2017-04-05T05:02:54.263Z", + "new_balance":"4941.24", + "value":"-0.59" + } + }, + { + "id":"5021086b-8859-425e-b5d6-e60191cb52ad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T09:21:08.957Z", + "completed":"2017-04-05T09:21:08.957Z", + "new_balance":"4940.00", + "value":"-1.24" + } + }, + { + "id":"6d093de1-37c0-4d7e-ac41-818406b1f73c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T10:17:55.875Z", + "completed":"2017-04-05T10:17:55.875Z", + "new_balance":"4939.30", + "value":"-0.70" + } + }, + { + "id":"6639a89e-50e9-4580-a494-c96bde88d831", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T11:33:01.780Z", + "completed":"2017-04-05T11:33:01.780Z", + "new_balance":"4933.85", + "value":"-5.45" + } + }, + { + "id":"b10e0d5b-fb65-4143-890c-4a2398ad54df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T13:14:03.854Z", + "completed":"2017-04-05T13:14:03.854Z", + "new_balance":"4926.55", + "value":"-7.30" + } + }, + { + "id":"292003e4-76d4-41fc-aa71-f87c3cdb759a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T18:47:06.668Z", + "completed":"2017-04-08T18:47:06.668Z", + "new_balance":"4918.46", + "value":"-8.09" + } + }, + { + "id":"c95ff207-3009-4e08-82cb-f109419216fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T09:30:49.247Z", + "completed":"2017-04-10T09:30:49.247Z", + "new_balance":"4912.34", + "value":"-6.12" + } + }, + { + "id":"fa183c43-b701-4cb4-9623-e923bb91c597", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T09:56:35.563Z", + "completed":"2017-04-11T09:56:35.563Z", + "new_balance":"4905.04", + "value":"-7.30" + } + }, + { + "id":"97d4c726-5218-46ea-b8c0-5d45a58fe17a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T16:57:34.131Z", + "completed":"2017-04-11T16:57:34.131Z", + "new_balance":"4902.36", + "value":"-2.68" + } + }, + { + "id":"4aa2f281-0c94-481f-aed5-5e2f5d0afb38", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T03:45:16.454Z", + "completed":"2017-04-13T03:45:16.454Z", + "new_balance":"4898.69", + "value":"-3.67" + } + }, + { + "id":"ba244b57-3520-4eba-8ada-441320bca909", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T11:59:57.095Z", + "completed":"2017-04-18T11:59:57.095Z", + "new_balance":"5133.65", + "value":"234.96" + } + }, + { + "id":"2eef8bac-8f55-4540-b45c-be34e310e009", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T01:24:50.323Z", + "completed":"2017-04-25T01:24:50.323Z", + "new_balance":"5110.41", + "value":"-23.24" + } + }, + { + "id":"6e54bd73-497a-4c39-8992-e8840df2415f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T03:46:13.416Z", + "completed":"2017-05-02T03:46:13.416Z", + "new_balance":"5106.97", + "value":"-3.44" + } + }, + { + "id":"5ca20678-162e-47bc-936c-493a04cf77d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T03:52:01.989Z", + "completed":"2017-05-02T03:52:01.989Z", + "new_balance":"5102.79", + "value":"-4.18" + } + }, + { + "id":"498ccc13-d1ae-4bf0-a61b-e6f00ee7ef59", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T08:01:50.303Z", + "completed":"2017-05-02T08:01:50.303Z", + "new_balance":"5099.35", + "value":"-3.44" + } + }, + { + "id":"555c3b09-799e-47a0-8e73-0283bf22b161", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T20:45:35.279Z", + "completed":"2017-05-02T20:45:35.279Z", + "new_balance":"5091.65", + "value":"-7.70" + } + }, + { + "id":"d4ddd23d-a643-47fe-a6d5-0ee866a345fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T02:01:21.595Z", + "completed":"2017-05-04T02:01:21.595Z", + "new_balance":"5090.95", + "value":"-0.70" + } + }, + { + "id":"a3fa5446-017d-475c-a4a6-1d397da51eda", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T09:25:31.132Z", + "completed":"2017-05-04T09:25:31.132Z", + "new_balance":"5083.65", + "value":"-7.30" + } + }, + { + "id":"f113c045-096e-4a2f-830f-f456f82d71f9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T06:51:44.238Z", + "completed":"2017-05-06T06:51:44.238Z", + "new_balance":"5076.21", + "value":"-7.44" + } + }, + { + "id":"c0bfbf14-62ae-4fd6-bf84-2f7291b7752f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T04:57:20.667Z", + "completed":"2017-05-07T04:57:20.667Z", + "new_balance":"5073.50", + "value":"-2.71" + } + }, + { + "id":"8230a892-bc77-48ff-9c20-e167c65a6f4c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T06:07:19.011Z", + "completed":"2017-05-07T06:07:19.011Z", + "new_balance":"5065.94", + "value":"-7.56" + } + }, + { + "id":"1ab2965e-0baf-48c8-b075-17bb8fa12bf2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T01:53:51.664Z", + "completed":"2017-05-09T01:53:51.664Z", + "new_balance":"5064.70", + "value":"-1.24" + } + }, + { + "id":"cba45e12-03fe-4913-a0e6-a559753d7c2f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T05:30:44.307Z", + "completed":"2017-05-09T05:30:44.307Z", + "new_balance":"5060.11", + "value":"-4.59" + } + }, + { + "id":"ebaf6dd3-5427-420a-a21f-5e23275b8a17", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T05:11:34.162Z", + "completed":"2017-05-13T05:11:34.162Z", + "new_balance":"5057.98", + "value":"-2.13" + } + }, + { + "id":"92d5917a-e767-4f2b-a9b1-6e7135d42690", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T18:45:09.915Z", + "completed":"2017-05-13T18:45:09.915Z", + "new_balance":"5055.27", + "value":"-2.71" + } + }, + { + "id":"616cd0df-1194-469e-8ba8-af8f8c846d43", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T23:59:47.690Z", + "completed":"2017-05-13T23:59:47.690Z", + "new_balance":"5054.57", + "value":"-0.70" + } + }, + { + "id":"d1d8b260-b285-45dd-8afd-6dc53ce66f7c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T02:06:42.223Z", + "completed":"2017-05-14T02:06:42.223Z", + "new_balance":"5047.27", + "value":"-7.30" + } + }, + { + "id":"d05afb2f-4b2f-4890-9f16-e20add19fb15", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T14:57:41.033Z", + "completed":"2017-05-14T14:57:41.033Z", + "new_balance":"5042.81", + "value":"-4.46" + } + }, + { + "id":"06418ca4-47c5-47f2-8d8f-3a72543593d3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T01:25:08.539Z", + "completed":"2017-05-15T01:25:08.539Z", + "new_balance":"5039.14", + "value":"-3.67" + } + }, + { + "id":"0b860592-a89e-43d1-80db-6b6ee16c0493", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T12:02:40.789Z", + "completed":"2017-05-30T12:02:40.789Z", + "new_balance":"5274.10", + "value":"234.96" + } + }, + { + "id":"46811fcf-153a-4e35-9c42-df1a3b5e0e2e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T16:36:52.739Z", + "completed":"2017-05-30T16:36:52.739Z", + "new_balance":"5250.86", + "value":"-23.24" + } + }, + { + "id":"ef2f2387-d1c2-4d04-9a9a-277356767533", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T09:30:15.380Z", + "completed":"2017-06-01T09:30:15.380Z", + "new_balance":"5247.42", + "value":"-3.44" + } + }, + { + "id":"17a18a40-3991-4a59-934f-dd1747da7f1e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T09:33:42.045Z", + "completed":"2017-06-01T09:33:42.045Z", + "new_balance":"5239.72", + "value":"-7.70" + } + }, + { + "id":"d5cbf0f1-06c9-4e0f-aa7f-c0faa27db5f9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T11:35:29.925Z", + "completed":"2017-06-01T11:35:29.925Z", + "new_balance":"5235.54", + "value":"-4.18" + } + }, + { + "id":"6a345187-216f-423b-b0ea-715995899acd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T19:33:26.582Z", + "completed":"2017-06-01T19:33:26.582Z", + "new_balance":"5232.10", + "value":"-3.44" + } + }, + { + "id":"e14ed44d-09f8-4c69-be67-18c502e0f08b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T01:35:08.576Z", + "completed":"2017-06-04T01:35:08.576Z", + "new_balance":"5226.28", + "value":"-5.82" + } + }, + { + "id":"7abdbf4f-12ae-4338-9dff-299d6a591796", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T08:28:35.386Z", + "completed":"2017-06-04T08:28:35.386Z", + "new_balance":"5219.02", + "value":"-7.26" + } + }, + { + "id":"6f175bbb-6aa0-4c42-aeef-92cc22145d98", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T01:11:59.400Z", + "completed":"2017-06-11T01:11:59.400Z", + "new_balance":"5211.28", + "value":"-7.74" + } + }, + { + "id":"358ffe75-bd98-4fc0-95ea-bf3fd693b233", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T05:37:39.807Z", + "completed":"2017-06-11T05:37:39.807Z", + "new_balance":"5203.54", + "value":"-7.74" + } + }, + { + "id":"98c2db02-3e3a-4886-8403-37275270b086", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T16:58:32.223Z", + "completed":"2017-06-11T16:58:32.223Z", + "new_balance":"5199.13", + "value":"-4.41" + } + }, + { + "id":"85f13f67-99e5-4afa-a28d-437b17fb356e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T10:26:05.629Z", + "completed":"2017-06-12T10:26:05.629Z", + "new_balance":"5198.52", + "value":"-0.61" + } + }, + { + "id":"eea9c626-a649-4c23-b6a8-d1f291310e2d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T22:55:58.024Z", + "completed":"2017-06-12T22:55:58.024Z", + "new_balance":"5194.45", + "value":"-4.07" + } + }, + { + "id":"8e783fdb-695f-43e1-819e-0ce19057b244", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T11:08:29.783Z", + "completed":"2017-06-16T11:08:29.783Z", + "new_balance":"5184.44", + "value":"-10.01" + } + }, + { + "id":"e285214a-5a0b-4ac2-9382-abb585749972", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T17:35:43.041Z", + "completed":"2017-06-29T17:35:43.041Z", + "new_balance":"5180.77", + "value":"-3.67" + } + }, + { + "id":"6ad88b2a-f401-4517-a319-45185bf7f536", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:54:15.687Z", + "completed":"2017-06-30T01:54:15.687Z", + "new_balance":"5415.73", + "value":"234.96" + } + }, + { + "id":"72f79662-f431-4dc7-b4f5-054227c78e7c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T18:03:42.500Z", + "completed":"2017-06-30T18:03:42.500Z", + "new_balance":"5392.49", + "value":"-23.24" + } + }, + { + "id":"c0b6dfe7-d32a-4b35-bf2f-ba6464cf9e9d", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T11:06:58.062Z", + "completed":"2017-07-01T11:06:58.062Z", + "new_balance":"5388.31", + "value":"-4.18" + } + }, + { + "id":"0bf45645-6545-4059-aa16-6c4ac9d6b9cb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T13:53:29.258Z", + "completed":"2017-07-01T13:53:29.258Z", + "new_balance":"5384.87", + "value":"-3.44" + } + }, + { + "id":"f3f8ec27-f3e6-4842-9330-1a7331d46952", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T22:41:06.300Z", + "completed":"2017-07-01T22:41:06.300Z", + "new_balance":"5381.43", + "value":"-3.44" + } + }, + { + "id":"6a279b49-3bfe-476e-838d-52ef42fd288c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T23:30:14.029Z", + "completed":"2017-07-01T23:30:14.029Z", + "new_balance":"5373.73", + "value":"-7.70" + } + }, + { + "id":"042e2056-ce8c-4e1c-a21d-4ab51da1d7da", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T00:56:16.518Z", + "completed":"2017-07-05T00:56:16.518Z", + "new_balance":"5366.43", + "value":"-7.30" + } + }, + { + "id":"6221e136-ff5e-47c9-ad20-1b87860a0c56", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T22:54:18.082Z", + "completed":"2017-07-05T22:54:18.082Z", + "new_balance":"5356.39", + "value":"-10.04" + } + }, + { + "id":"551c0f95-50d6-4c16-bda5-cb6ad2845723", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T00:57:07.516Z", + "completed":"2017-07-08T00:57:07.516Z", + "new_balance":"5354.99", + "value":"-1.40" + } + }, + { + "id":"14dbd04b-2829-4a44-9c71-9f9479bc997f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T00:49:43.318Z", + "completed":"2017-07-10T00:49:43.318Z", + "new_balance":"5350.33", + "value":"-4.66" + } + }, + { + "id":"eb3dc46a-1856-4a71-8c64-f401f5514db3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T11:10:16.768Z", + "completed":"2017-07-12T11:10:16.768Z", + "new_balance":"5346.89", + "value":"-3.44" + } + }, + { + "id":"e432a7c8-2540-4a7e-8783-76d5b7172cb8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T19:37:51.458Z", + "completed":"2017-07-12T19:37:51.458Z", + "new_balance":"5341.48", + "value":"-5.41" + } + }, + { + "id":"78d095cb-3485-478b-b6ba-106b8ed51e06", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T16:02:16.582Z", + "completed":"2017-07-13T16:02:16.582Z", + "new_balance":"5340.97", + "value":"-0.51" + } + }, + { + "id":"46c95c7a-d6d0-46a9-83b3-86940e6566ef", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T19:51:33.298Z", + "completed":"2017-07-13T19:51:33.298Z", + "new_balance":"5340.51", + "value":"-0.46" + } + }, + { + "id":"af4f62fc-4362-43dd-8c8f-0afeeafb4bad", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T00:39:53.331Z", + "completed":"2017-07-18T00:39:53.331Z", + "new_balance":"5330.99", + "value":"-9.52" + } + }, + { + "id":"95261a36-a9af-4170-acad-284de4fc8820", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T00:18:04.449Z", + "completed":"2017-07-20T00:18:04.449Z", + "new_balance":"5324.16", + "value":"-6.83" + } + }, + { + "id":"dca5d08e-1a99-4c54-971c-a76e268035fc", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T17:26:46.173Z", + "completed":"2017-07-20T17:26:46.173Z", + "new_balance":"5316.86", + "value":"-7.30" + } + }, + { + "id":"b521804c-575c-4744-a955-da2dba9a8411", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T06:32:04.508Z", + "completed":"2017-07-24T06:32:04.508Z", + "new_balance":"5314.18", + "value":"-2.68" + } + }, + { + "id":"671f4386-2ad7-46e7-9857-f169250804d6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T15:50:54.906Z", + "completed":"2017-07-29T15:50:54.906Z", + "new_balance":"5549.14", + "value":"234.96" + } + }, + { + "id":"5dde64e7-3d0a-4c3b-a878-bbc83c69a049", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T21:21:59.541Z", + "completed":"2017-07-29T21:21:59.541Z", + "new_balance":"5545.47", + "value":"-3.67" + } + }, + { + "id":"79f13f4d-1d22-42cf-8f0c-9ec4d845edd0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T13:07:46.784Z", + "completed":"2017-07-30T13:07:46.784Z", + "new_balance":"5522.23", + "value":"-23.24" + } + }, + { + "id":"58101bb0-4073-4217-8cb6-96a879af5452", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T06:53:50.233Z", + "completed":"2017-08-01T06:53:50.233Z", + "new_balance":"5518.79", + "value":"-3.44" + } + }, + { + "id":"44406eb5-07a6-4a21-b386-faf441bb4a20", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T11:31:07.190Z", + "completed":"2017-08-01T11:31:07.190Z", + "new_balance":"5514.61", + "value":"-4.18" + } + }, + { + "id":"dff171fc-4bf6-4e56-af94-a53cb2a9d83f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T12:44:21.571Z", + "completed":"2017-08-01T12:44:21.571Z", + "new_balance":"5511.17", + "value":"-3.44" + } + }, + { + "id":"bcb12372-03eb-4e76-ab52-d68339e43838", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T20:41:56.414Z", + "completed":"2017-08-01T20:41:56.414Z", + "new_balance":"5503.47", + "value":"-7.70" + } + }, + { + "id":"533d8c11-44de-4c6a-b1eb-bcc73ff529c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T03:39:19.338Z", + "completed":"2017-08-03T03:39:19.338Z", + "new_balance":"5502.77", + "value":"-0.70" + } + }, + { + "id":"5f338c36-d8bf-4005-acee-12e4d799b065", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T09:24:23.066Z", + "completed":"2017-08-04T09:24:23.066Z", + "new_balance":"5495.47", + "value":"-7.30" + } + }, + { + "id":"4be9e92f-f2ce-4578-aa68-522ae2338565", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T01:56:48.902Z", + "completed":"2017-08-08T01:56:48.902Z", + "new_balance":"5494.35", + "value":"-1.12" + } + }, + { + "id":"9c10adcc-493a-460a-9dfa-b0b2833b1d8f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T05:28:53.075Z", + "completed":"2017-08-08T05:28:53.075Z", + "new_balance":"5490.55", + "value":"-3.80" + } + }, + { + "id":"079ddece-a04d-47b9-b29c-e45eb9c851ca", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T08:43:43.559Z", + "completed":"2017-08-08T08:43:43.559Z", + "new_balance":"5480.45", + "value":"-10.10" + } + }, + { + "id":"88d43c72-af8c-4666-804f-a7083abe1018", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T15:13:16.208Z", + "completed":"2017-08-08T15:13:16.208Z", + "new_balance":"5470.99", + "value":"-9.46" + } + }, + { + "id":"d0e7f54a-a8ba-45d6-a15c-f6e54a464bc1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T06:46:05.730Z", + "completed":"2017-08-09T06:46:05.730Z", + "new_balance":"5466.40", + "value":"-4.59" + } + }, + { + "id":"2ba15ec8-6a7b-4c5a-86c6-241857beff15", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T06:52:08.166Z", + "completed":"2017-08-14T06:52:08.166Z", + "new_balance":"5464.00", + "value":"-2.40" + } + }, + { + "id":"e95a9bc0-7627-49ea-899a-7239c4b7e891", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T02:43:14.002Z", + "completed":"2017-08-15T02:43:14.002Z", + "new_balance":"5461.12", + "value":"-2.88" + } + }, + { + "id":"0ad53887-2395-42d1-b071-f24c4abd8bd6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T14:30:36.849Z", + "completed":"2017-08-19T14:30:36.849Z", + "new_balance":"5460.60", + "value":"-0.52" + } + }, + { + "id":"c6870b86-3da6-46e5-b423-8f4a0aa39334", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T14:18:38.348Z", + "completed":"2017-08-22T14:18:38.348Z", + "new_balance":"5455.42", + "value":"-5.18" + } + }, + { + "id":"951cc5fc-7f90-4d5c-9657-6bb1519755f2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T03:56:56.892Z", + "completed":"2017-08-26T03:56:56.892Z", + "new_balance":"5448.12", + "value":"-7.30" + } + }, + { + "id":"686cbe59-9370-41e0-9329-8cacf4f0f1d1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T23:08:46.144Z", + "completed":"2017-08-28T23:08:46.144Z", + "new_balance":"5424.88", + "value":"-23.24" + } + }, + { + "id":"2c0a8d86-ba06-4b52-8c82-0ca502861b1b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T12:09:51.072Z", + "completed":"2017-08-29T12:09:51.072Z", + "new_balance":"5659.84", + "value":"234.96" + } + }, + { + "id":"9dfcf876-c1e0-42d9-acbf-9fb9ded950cd", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T15:33:29.199Z", + "completed":"2017-08-29T15:33:29.199Z", + "new_balance":"5656.17", + "value":"-3.67" + } + }, + { + "id":"27b0b3a6-ca04-4fc8-b70b-14ed006ebe47", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T14:27:22.048Z", + "completed":"2017-08-30T14:27:22.048Z", + "new_balance":"5632.93", + "value":"-23.24" + } + }, + { + "id":"63e1e5da-d834-4386-8349-fc2d7e81d106", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T04:22:59.030Z", + "completed":"2017-09-01T04:22:59.030Z", + "new_balance":"5629.49", + "value":"-3.44" + } + }, + { + "id":"f6b4a8d9-ce46-4267-b783-e0acfa37f0e9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T11:17:20.789Z", + "completed":"2017-09-01T11:17:20.789Z", + "new_balance":"5625.31", + "value":"-4.18" + } + }, + { + "id":"d5f38b2e-537c-4501-96cc-fe89655b3bfb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T14:12:50.466Z", + "completed":"2017-09-01T14:12:50.466Z", + "new_balance":"5617.61", + "value":"-7.70" + } + }, + { + "id":"ef4c732b-d83a-4135-9954-d9b40e61961a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T23:47:54.252Z", + "completed":"2017-09-01T23:47:54.252Z", + "new_balance":"5614.17", + "value":"-3.44" + } + }, + { + "id":"bb6b0917-5635-477a-b359-130251955f73", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T11:00:40.088Z", + "completed":"2017-09-09T11:00:40.088Z", + "new_balance":"5606.91", + "value":"-7.26" + } + }, + { + "id":"52a83b13-ea6c-4645-8b39-82cf7866dd46", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T22:31:41.230Z", + "completed":"2017-09-09T22:31:41.230Z", + "new_balance":"5601.09", + "value":"-5.82" + } + }, + { + "id":"a62acf08-77bf-4c35-9f29-9d67efc9dc68", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T13:26:14.095Z", + "completed":"2017-09-17T13:26:14.095Z", + "new_balance":"5593.35", + "value":"-7.74" + } + }, + { + "id":"1164ddd0-609b-4019-b28d-f841c35ec8ea", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T07:01:56.868Z", + "completed":"2017-09-18T07:01:56.868Z", + "new_balance":"5589.28", + "value":"-4.07" + } + }, + { + "id":"3031c83a-8b63-4905-b8ff-713e0ff7bdc2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T19:32:47.798Z", + "completed":"2017-09-18T19:32:47.798Z", + "new_balance":"5588.67", + "value":"-0.61" + } + }, + { + "id":"18ce0aea-8c18-48cd-8cfa-10cfefefe206", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T23:31:50.469Z", + "completed":"2017-09-18T23:31:50.469Z", + "new_balance":"5580.93", + "value":"-7.74" + } + }, + { + "id":"d90ce69c-74f2-4317-83ec-0ea9f79e6906", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T23:36:59.185Z", + "completed":"2017-09-18T23:36:59.185Z", + "new_balance":"5576.52", + "value":"-4.41" + } + }, + { + "id":"12c7b943-0c3d-454b-acdc-9bb4e3b77b95", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T12:42:25.888Z", + "completed":"2017-09-22T12:42:25.888Z", + "new_balance":"5566.51", + "value":"-10.01" + } + }, + { + "id":"ac450bc5-f776-4eb5-a12f-453fc028e1b2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T03:09:20.056Z", + "completed":"2017-09-29T03:09:20.056Z", + "new_balance":"5801.47", + "value":"234.96" + } + }, + { + "id":"aecd0ce8-4f78-49a0-9c8e-38401ea1c15b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T11:57:35.046Z", + "completed":"2017-09-29T11:57:35.046Z", + "new_balance":"5797.80", + "value":"-3.67" + } + }, + { + "id":"1b21c05b-7e86-4645-a24b-aa83831bba31", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T15:47:43.633Z", + "completed":"2017-09-30T15:47:43.633Z", + "new_balance":"5774.56", + "value":"-23.24" + } + }, + { + "id":"d40a1bde-5ddc-44f3-adef-7b12cf3603a4", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T02:47:23.736Z", + "completed":"2017-10-01T02:47:23.736Z", + "new_balance":"5766.86", + "value":"-7.70" + } + }, + { + "id":"e0e52bea-b475-4ebd-a0b5-7b441ab10c10", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T03:39:14.958Z", + "completed":"2017-10-01T03:39:14.958Z", + "new_balance":"5763.42", + "value":"-3.44" + } + }, + { + "id":"6b86d0f6-5013-4b97-afb0-77ebe66786a8", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T11:24:00.392Z", + "completed":"2017-10-01T11:24:00.392Z", + "new_balance":"5759.98", + "value":"-3.44" + } + }, + { + "id":"1e2a993d-1bd1-489e-bd99-29c676341c08", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T12:42:11.029Z", + "completed":"2017-10-01T12:42:11.029Z", + "new_balance":"5755.80", + "value":"-4.18" + } + }, + { + "id":"a2f00dce-91d3-4cec-bb2e-6412cb5b04cb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T15:58:06.127Z", + "completed":"2017-10-02T15:58:06.127Z", + "new_balance":"5748.24", + "value":"-7.56" + } + }, + { + "id":"b269bfee-9cf4-4153-9063-ec2f0dcb2529", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T00:50:52.896Z", + "completed":"2017-10-05T00:50:52.896Z", + "new_balance":"5742.79", + "value":"-5.45" + } + }, + { + "id":"25362b57-a2f4-49b4-b812-6361e058d2c2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Xpress Flowers" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T01:45:57.201Z", + "completed":"2017-10-05T01:45:57.201Z", + "new_balance":"5739.35", + "value":"-3.44" + } + }, + { + "id":"ebfe7823-6c58-4706-97ac-19ba98845a5b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T04:27:01.870Z", + "completed":"2017-10-05T04:27:01.870Z", + "new_balance":"5735.17", + "value":"-4.18" + } + }, + { + "id":"23086323-3a1a-4058-a004-8e31793e6a61", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T07:01:46.527Z", + "completed":"2017-10-05T07:01:46.527Z", + "new_balance":"5734.58", + "value":"-0.59" + } + }, + { + "id":"331f4f99-3116-4dbc-83ca-a620cbda8007", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T08:06:53.607Z", + "completed":"2017-10-05T08:06:53.607Z", + "new_balance":"5733.34", + "value":"-1.24" + } + }, + { + "id":"a0bd4a34-2aea-4fd7-a25b-856a88542db0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:58:58.437Z", + "completed":"2017-10-05T10:58:58.437Z", + "new_balance":"5726.04", + "value":"-7.30" + } + }, + { + "id":"dd26a41b-3f2c-416d-b421-a8b04c368fd0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T23:24:50.752Z", + "completed":"2017-10-05T23:24:50.752Z", + "new_balance":"5725.34", + "value":"-0.70" + } + }, + { + "id":"b73bbf59-26d6-4489-8037-824735297b8f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T00:43:16.847Z", + "completed":"2017-10-09T00:43:16.847Z", + "new_balance":"5717.25", + "value":"-8.09" + } + }, + { + "id":"81cba52a-36da-4be4-b3ff-78c6fd9a5094", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T11:41:53.603Z", + "completed":"2017-10-11T11:41:53.603Z", + "new_balance":"5711.13", + "value":"-6.12" + } + }, + { + "id":"4883d2b7-648e-4e97-8baf-1c6b629294a0", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T04:16:57.000Z", + "completed":"2017-10-12T04:16:57.000Z", + "new_balance":"5708.45", + "value":"-2.68" + } + }, + { + "id":"ea942a5f-f88c-4dd1-81a2-b3dc44491471", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T12:07:43.019Z", + "completed":"2017-10-12T12:07:43.019Z", + "new_balance":"5701.15", + "value":"-7.30" + } + }, + { + "id":"41a7b7b7-5958-4edf-9636-e52d5c9a45ec", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T18:02:54.168Z", + "completed":"2017-10-20T18:02:54.168Z", + "new_balance":"5697.48", + "value":"-3.67" + } + }, + { + "id":"12fb21ef-f39a-46ef-9cdd-000b9995a0b7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T21:23:29.573Z", + "completed":"2017-10-29T21:23:29.573Z", + "new_balance":"5932.44", + "value":"234.96" + } + }, + { + "id":"f9a47f61-a7ed-49ea-8754-764cd0e6a2c6", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T12:49:39.013Z", + "completed":"2017-10-30T12:49:39.013Z", + "new_balance":"5909.20", + "value":"-23.24" + } + }, + { + "id":"55aa9126-312c-4d5a-bee4-a462041c04df", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T01:18:26.306Z", + "completed":"2017-11-02T01:18:26.306Z", + "new_balance":"5905.02", + "value":"-4.18" + } + }, + { + "id":"8bbc39b2-b610-41c6-bf36-5fd2d864232a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T14:48:07.993Z", + "completed":"2017-11-02T14:48:07.993Z", + "new_balance":"5901.58", + "value":"-3.44" + } + }, + { + "id":"d00eb4e1-ddfa-4198-aef0-5ef3797a639b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T16:01:48.193Z", + "completed":"2017-11-02T16:01:48.193Z", + "new_balance":"5898.14", + "value":"-3.44" + } + }, + { + "id":"9479951d-5513-4d52-8700-c3029cb8498b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T19:13:50.118Z", + "completed":"2017-11-02T19:13:50.118Z", + "new_balance":"5890.44", + "value":"-7.70" + } + }, + { + "id":"2a89602b-526f-4de5-a445-0ab074143c5e", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T08:15:36.633Z", + "completed":"2017-11-04T08:15:36.633Z", + "new_balance":"5883.14", + "value":"-7.30" + } + }, + { + "id":"a97f6db6-af57-44c4-8a10-8b13ff70ad76", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Journalize" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T23:26:48.514Z", + "completed":"2017-11-04T23:26:48.514Z", + "new_balance":"5882.44", + "value":"-0.70" + } + }, + { + "id":"83bd8420-14c3-4d4b-ab8b-0ee397897594", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T12:50:27.094Z", + "completed":"2017-11-06T12:50:27.094Z", + "new_balance":"5875.00", + "value":"-7.44" + } + }, + { + "id":"39ff4672-387b-479a-8d08-51d0e2a34d74", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T04:07:00.806Z", + "completed":"2017-11-07T04:07:00.806Z", + "new_balance":"5872.29", + "value":"-2.71" + } + }, + { + "id":"9fdded5e-f5df-43de-a5d1-b69f9c5efd93", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rare" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T05:01:38.374Z", + "completed":"2017-11-07T05:01:38.374Z", + "new_balance":"5864.73", + "value":"-7.56" + } + }, + { + "id":"919448dc-0155-400e-881d-0e26ec386ac1", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T06:20:01.437Z", + "completed":"2017-11-09T06:20:01.437Z", + "new_balance":"5860.14", + "value":"-4.59" + } + }, + { + "id":"98edbd36-e926-4fde-90e0-2f52a5d273bb", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T15:24:52.780Z", + "completed":"2017-11-09T15:24:52.780Z", + "new_balance":"5858.90", + "value":"-1.24" + } + }, + { + "id":"b0bd52d4-4cb1-4023-b4bc-fd91c7afa6e7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T03:59:41.906Z", + "completed":"2017-11-13T03:59:41.906Z", + "new_balance":"5858.20", + "value":"-0.70" + } + }, + { + "id":"520fb729-4347-456c-b820-7f21ac9ba08a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T07:58:58.703Z", + "completed":"2017-11-13T07:58:58.703Z", + "new_balance":"5856.07", + "value":"-2.13" + } + }, + { + "id":"0ff5c233-fa07-4685-9196-5e23db53cde7", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T12:46:10.598Z", + "completed":"2017-11-13T12:46:10.598Z", + "new_balance":"5853.36", + "value":"-2.71" + } + }, + { + "id":"f8a2032f-1a64-4a42-9eb6-7cd488c9ff95", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T04:36:17.930Z", + "completed":"2017-11-14T04:36:17.930Z", + "new_balance":"5848.90", + "value":"-4.46" + } + }, + { + "id":"a8739fe8-25ab-438a-b91a-df4e470bd18c", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T23:31:15.852Z", + "completed":"2017-11-14T23:31:15.852Z", + "new_balance":"5841.60", + "value":"-7.30" + } + }, + { + "id":"dc638497-2d85-482c-a4db-163bc32db0fe", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T11:10:21.037Z", + "completed":"2017-11-15T11:10:21.037Z", + "new_balance":"5837.93", + "value":"-3.67" + } + }, + { + "id":"9ae0beb9-ffef-44a9-8b65-4185b699b1a3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:20:18.744Z", + "completed":"2017-11-30T00:20:18.744Z", + "new_balance":"5814.69", + "value":"-23.24" + } + }, + { + "id":"de274e3e-e622-4741-98f6-5c7e3441bdb3", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T03:52:57.770Z", + "completed":"2017-11-30T03:52:57.770Z", + "new_balance":"6049.65", + "value":"234.96" + } + }, + { + "id":"3bbd0e1f-22b3-40d6-bf11-d29e6938d8d9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Town Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T05:36:39.102Z", + "completed":"2017-12-01T05:36:39.102Z", + "new_balance":"6041.95", + "value":"-7.70" + } + }, + { + "id":"6a578bb5-b54f-44a8-b6b3-ccdc436e8a57", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Hong Kong Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T06:49:47.138Z", + "completed":"2017-12-01T06:49:47.138Z", + "new_balance":"6037.77", + "value":"-4.18" + } + }, + { + "id":"511399bc-c1c3-4e81-85cc-ed821696842f", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T06:57:31.372Z", + "completed":"2017-12-01T06:57:31.372Z", + "new_balance":"6034.33", + "value":"-3.44" + } + }, + { + "id":"3ab9068c-6aea-4060-b9ba-2d71493a0504", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:36:57.067Z", + "completed":"2017-12-01T19:36:57.067Z", + "new_balance":"6030.89", + "value":"-3.44" + } + }, + { + "id":"3ce8199d-e436-442f-88f7-f9f3238447ff", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T05:23:34.961Z", + "completed":"2017-12-04T05:23:34.961Z", + "new_balance":"6023.63", + "value":"-7.26" + } + }, + { + "id":"bee4b516-21ff-4651-958b-18eaeb3fee7a", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T15:59:28.731Z", + "completed":"2017-12-04T15:59:28.731Z", + "new_balance":"6017.81", + "value":"-5.82" + } + }, + { + "id":"c756e854-8d1b-43cd-b608-cfe41b8c74ba", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T07:01:11.155Z", + "completed":"2017-12-11T07:01:11.155Z", + "new_balance":"6013.40", + "value":"-4.41" + } + }, + { + "id":"84d8fc7a-4ed5-4012-b46f-a292a0b1bc39", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T10:50:53.349Z", + "completed":"2017-12-11T10:50:53.349Z", + "new_balance":"6005.66", + "value":"-7.74" + } + }, + { + "id":"0f8229c3-77d5-4c8a-8527-0f11c5c30cc2", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T18:05:16.642Z", + "completed":"2017-12-11T18:05:16.642Z", + "new_balance":"5997.92", + "value":"-7.74" + } + }, + { + "id":"a6bf4548-0447-4738-85e1-0ea3f7900cd9", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T17:36:24.877Z", + "completed":"2017-12-12T17:36:24.877Z", + "new_balance":"5997.31", + "value":"-0.61" + } + }, + { + "id":"31c884f9-e828-4ff8-a298-0a3bdcc2ad65", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T23:15:27.720Z", + "completed":"2017-12-12T23:15:27.720Z", + "new_balance":"5993.24", + "value":"-4.07" + } + }, + { + "id":"4f157c12-39a5-4d25-a35c-1ccad9704479", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T07:23:32.837Z", + "completed":"2017-12-16T07:23:32.837Z", + "new_balance":"5983.23", + "value":"-10.01" + } + }, + { + "id":"7151fd00-1bc6-4555-89d4-3a3fd4f69016", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T06:48:40.354Z", + "completed":"2017-12-29T06:48:40.354Z", + "new_balance":"5979.56", + "value":"-3.67" + } + }, + { + "id":"7b597735-4050-4547-b987-62dbfcb01481", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T00:14:33.394Z", + "completed":"2017-12-30T00:14:33.394Z", + "new_balance":"5956.32", + "value":"-23.24" + } + }, + { + "id":"4239fa3c-5fbb-4b8f-b603-8f1882d69c0b", + "this_account":{ + "id":"66166623-78b5-41d4-a80e-fb53ff427d49", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T06:03:00.441Z", + "completed":"2017-12-30T06:03:00.441Z", + "new_balance":"6191.28", + "value":"234.96" + } + }, + { + "id":"a0a30811-f8c2-406d-a3f2-6a6a0d47077b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T20:17:18.263Z", + "completed":"2016-03-01T20:17:18.263Z", + "new_balance":"3477.45", + "value":"-4.61" + } + }, + { + "id":"2355c7b5-ee2e-4b27-96a7-c9ba75cd8c82", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T01:15:31.908Z", + "completed":"2016-03-02T01:15:31.908Z", + "new_balance":"3470.26", + "value":"-7.19" + } + }, + { + "id":"70cd5e45-f540-43fa-8d15-e04d1d11102c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T12:15:10.315Z", + "completed":"2016-03-06T12:15:10.315Z", + "new_balance":"3463.73", + "value":"-6.53" + } + }, + { + "id":"4209221a-17df-4af7-972b-4c86f50947e8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T05:08:33.218Z", + "completed":"2016-03-11T05:08:33.218Z", + "new_balance":"3463.08", + "value":"-0.65" + } + }, + { + "id":"94e64556-0032-4ca5-9aa3-3e79e9bd856f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T09:17:03.099Z", + "completed":"2016-03-13T09:17:03.099Z", + "new_balance":"3462.74", + "value":"-0.34" + } + }, + { + "id":"c870e074-6572-44f9-8934-234a78b258bb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T13:38:19.375Z", + "completed":"2016-03-16T13:38:19.375Z", + "new_balance":"3439.50", + "value":"-23.24" + } + }, + { + "id":"c85bbeae-1cb6-45ca-a325-27847b93fe0f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T01:37:09.742Z", + "completed":"2016-03-17T01:37:09.742Z", + "new_balance":"3435.23", + "value":"-4.27" + } + }, + { + "id":"f37aecd4-b47d-41e9-a5fe-5d187cde62cb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T01:55:10.628Z", + "completed":"2016-03-17T01:55:10.628Z", + "new_balance":"3422.13", + "value":"-13.10" + } + }, + { + "id":"794d6431-366a-4008-95ce-f689f0012bee", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T03:20:29.562Z", + "completed":"2016-03-19T03:20:29.562Z", + "new_balance":"3421.79", + "value":"-0.34" + } + }, + { + "id":"ecf8c65d-53a8-4b66-a2a7-d616a6c47ad4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T00:33:00.718Z", + "completed":"2016-03-21T00:33:00.718Z", + "new_balance":"3419.47", + "value":"-2.32" + } + }, + { + "id":"dd10738c-d31e-404a-add5-1690771e5895", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T01:15:43.797Z", + "completed":"2016-03-23T01:15:43.797Z", + "new_balance":"3414.86", + "value":"-4.61" + } + }, + { + "id":"67dbad43-6e72-481d-ab97-d50c075e267a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T03:45:01.232Z", + "completed":"2016-03-24T03:45:01.232Z", + "new_balance":"3414.21", + "value":"-0.65" + } + }, + { + "id":"f6a8196b-2531-4ed2-8508-aa55c4b6f03e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T20:19:26.458Z", + "completed":"2016-03-26T20:19:26.458Z", + "new_balance":"3413.06", + "value":"-1.15" + } + }, + { + "id":"73c15c89-cd43-45f6-a2f1-a0f8d75075c6", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T08:18:01.498Z", + "completed":"2016-04-01T08:18:01.498Z", + "new_balance":"3411.91", + "value":"-1.15" + } + }, + { + "id":"7bba8061-e95e-458f-a5b4-4e3759093baa", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T17:39:13.767Z", + "completed":"2016-06-01T17:39:13.767Z", + "new_balance":"3407.30", + "value":"-4.61" + } + }, + { + "id":"6ebd398c-b937-4378-8b85-fcddc1f5ddc6", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T09:05:18.607Z", + "completed":"2016-06-04T09:05:18.607Z", + "new_balance":"3400.11", + "value":"-7.19" + } + }, + { + "id":"d7685d3d-3380-4e5b-b7af-1331ed3a02a4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T18:31:00.950Z", + "completed":"2016-06-19T18:31:00.950Z", + "new_balance":"3393.58", + "value":"-6.53" + } + }, + { + "id":"c376dd53-fc14-4dc0-b1a7-373950cc1efe", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T03:36:14.325Z", + "completed":"2016-06-21T03:36:14.325Z", + "new_balance":"3392.93", + "value":"-0.65" + } + }, + { + "id":"461ee224-c0f9-4ee7-9b35-d1c7b657035c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T20:07:09.278Z", + "completed":"2016-06-24T20:07:09.278Z", + "new_balance":"3392.59", + "value":"-0.34" + } + }, + { + "id":"8d1e0615-074f-4193-8b56-567a18a2de82", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T03:20:49.218Z", + "completed":"2016-06-28T03:20:49.218Z", + "new_balance":"3369.35", + "value":"-23.24" + } + }, + { + "id":"c6b5090c-ec40-40e1-a65f-2e5cd5b007fc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T06:20:06.969Z", + "completed":"2016-06-28T06:20:06.969Z", + "new_balance":"3356.25", + "value":"-13.10" + } + }, + { + "id":"ce1ba1f4-23ae-46ef-949d-a67e0bb50c0d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T13:47:51.615Z", + "completed":"2016-06-28T13:47:51.615Z", + "new_balance":"3351.98", + "value":"-4.27" + } + }, + { + "id":"0924bbe8-fc3f-4e06-9f4d-98ecd60c4c78", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T16:21:40.297Z", + "completed":"2016-06-29T16:21:40.297Z", + "new_balance":"3351.64", + "value":"-0.34" + } + }, + { + "id":"d3c0be3d-6e80-4413-a638-ebf7038ebedf", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T03:55:25.429Z", + "completed":"2016-06-30T03:55:25.429Z", + "new_balance":"3347.03", + "value":"-4.61" + } + }, + { + "id":"126bca6c-04c3-4b0d-8078-a053cbcad43e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T06:37:02.654Z", + "completed":"2016-06-30T06:37:02.654Z", + "new_balance":"3346.38", + "value":"-0.65" + } + }, + { + "id":"046e8606-e8f4-4528-a429-21c20aad6b25", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T14:24:54.639Z", + "completed":"2016-06-30T14:24:54.639Z", + "new_balance":"3344.06", + "value":"-2.32" + } + }, + { + "id":"0453a424-56a3-4abd-9763-7c3a6818c4ce", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T13:01:47.489Z", + "completed":"2016-09-01T13:01:47.489Z", + "new_balance":"3342.21", + "value":"-1.85" + } + }, + { + "id":"6014ac72-45db-4cf4-ab32-36493cfecbd3", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T04:41:58.434Z", + "completed":"2016-09-02T04:41:58.434Z", + "new_balance":"3335.02", + "value":"-7.19" + } + }, + { + "id":"74dc0f7c-ff50-4334-a4f8-8fa727f9e95b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T01:44:43.465Z", + "completed":"2016-09-07T01:44:43.465Z", + "new_balance":"3328.49", + "value":"-6.53" + } + }, + { + "id":"cbe8eb01-396f-4b71-ad54-c63bb8eeef73", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T05:49:30.898Z", + "completed":"2016-09-11T05:49:30.898Z", + "new_balance":"3327.84", + "value":"-0.65" + } + }, + { + "id":"b4a06bc3-d22a-4512-b836-6cc589c4bf4d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T20:44:15.972Z", + "completed":"2016-09-15T20:44:15.972Z", + "new_balance":"3326.44", + "value":"-1.40" + } + }, + { + "id":"b45efb47-04e4-49bd-bdc7-a33d08907dcb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T03:39:41.278Z", + "completed":"2016-09-17T03:39:41.278Z", + "new_balance":"3313.34", + "value":"-13.10" + } + }, + { + "id":"9149cad0-c6ad-4468-baa6-08f1f42c000c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T05:02:46.781Z", + "completed":"2016-09-17T05:02:46.781Z", + "new_balance":"3290.10", + "value":"-23.24" + } + }, + { + "id":"72edd15a-8209-4ab8-8279-a736605c3d11", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T21:51:31.360Z", + "completed":"2016-09-17T21:51:31.360Z", + "new_balance":"3285.83", + "value":"-4.27" + } + }, + { + "id":"b7283fcd-ba9c-4296-a3aa-b549f7bd893c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T08:34:56.860Z", + "completed":"2016-09-19T08:34:56.860Z", + "new_balance":"3285.49", + "value":"-0.34" + } + }, + { + "id":"7d650da5-fa9d-4937-919c-c39f3b1267c2", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T06:34:48.054Z", + "completed":"2016-09-21T06:34:48.054Z", + "new_balance":"3283.17", + "value":"-2.32" + } + }, + { + "id":"e989d199-16b4-45b1-8570-5858b427c162", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T12:07:15.647Z", + "completed":"2016-09-23T12:07:15.647Z", + "new_balance":"3278.56", + "value":"-4.61" + } + }, + { + "id":"a9fe50eb-db6f-4d75-919f-69856d62a1b7", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T09:49:30.240Z", + "completed":"2016-09-24T09:49:30.240Z", + "new_balance":"3277.91", + "value":"-0.65" + } + }, + { + "id":"9a15f9b1-0803-48f1-94ed-fd9750b20b23", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T15:08:30.541Z", + "completed":"2016-09-27T15:08:30.541Z", + "new_balance":"3276.76", + "value":"-1.15" + } + }, + { + "id":"845330ed-10ca-4b7c-a752-001dcbc7d870", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T23:55:16.919Z", + "completed":"2016-10-01T23:55:16.919Z", + "new_balance":"3275.61", + "value":"-1.15" + } + }, + { + "id":"18a02b33-04a3-43f8-bdbe-ae2726651eac", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T15:51:56.944Z", + "completed":"2016-12-01T15:51:56.944Z", + "new_balance":"3271.00", + "value":"-4.61" + } + }, + { + "id":"29e42167-f129-4e74-9c66-ea2765769ec1", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T01:32:17.207Z", + "completed":"2016-12-04T01:32:17.207Z", + "new_balance":"3263.81", + "value":"-7.19" + } + }, + { + "id":"4441f122-e710-45cb-8cc0-0c1fd1177d60", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T17:20:05.510Z", + "completed":"2016-12-19T17:20:05.510Z", + "new_balance":"3257.28", + "value":"-6.53" + } + }, + { + "id":"29b98dce-74bd-41cb-a771-eab6b5c3f42a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T06:33:24.949Z", + "completed":"2016-12-24T06:33:24.949Z", + "new_balance":"3256.94", + "value":"-0.34" + } + }, + { + "id":"a1370d85-7fd3-4056-a20b-0befdf047f7a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T09:02:59.528Z", + "completed":"2016-12-24T09:02:59.528Z", + "new_balance":"3256.29", + "value":"-0.65" + } + }, + { + "id":"1395995f-1b3b-4cc9-9d33-89398b0de44d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T02:18:19.914Z", + "completed":"2016-12-28T02:18:19.914Z", + "new_balance":"3243.19", + "value":"-13.10" + } + }, + { + "id":"ca6d8bd6-4160-46e1-ac50-1f1f0af95ad2", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T10:49:59.800Z", + "completed":"2016-12-28T10:49:59.800Z", + "new_balance":"3238.92", + "value":"-4.27" + } + }, + { + "id":"3903486e-7ed4-40ed-ab01-1f8fd38797cc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T18:01:53.823Z", + "completed":"2016-12-28T18:01:53.823Z", + "new_balance":"3215.68", + "value":"-23.24" + } + }, + { + "id":"5d87a071-a37d-47ea-8f4d-b26317be6a73", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T22:26:23.761Z", + "completed":"2016-12-29T22:26:23.761Z", + "new_balance":"3215.34", + "value":"-0.34" + } + }, + { + "id":"68ea5006-23dd-4fa8-ba7d-23eb07cfb747", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T15:02:38.428Z", + "completed":"2016-12-30T15:02:38.428Z", + "new_balance":"3210.73", + "value":"-4.61" + } + }, + { + "id":"d25cc5e0-2441-46b9-9e03-2b0b449898dc", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T18:55:50.320Z", + "completed":"2016-12-30T18:55:50.320Z", + "new_balance":"3208.41", + "value":"-2.32" + } + }, + { + "id":"116305f0-f19a-415b-9ef8-76d5162b62eb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T22:49:03.815Z", + "completed":"2016-12-30T22:49:03.815Z", + "new_balance":"3207.76", + "value":"-0.65" + } + }, + { + "id":"517fed56-5499-4cbe-9e66-42d828e4f855", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T11:32:03.257Z", + "completed":"2017-03-01T11:32:03.257Z", + "new_balance":"3203.15", + "value":"-4.61" + } + }, + { + "id":"30601a5d-cc07-44f9-b26e-1d6c501f53f5", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T19:32:22.601Z", + "completed":"2017-03-02T19:32:22.601Z", + "new_balance":"3195.96", + "value":"-7.19" + } + }, + { + "id":"afb503d6-d049-447e-9f91-f2a2b929fdf5", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T10:47:21.521Z", + "completed":"2017-03-06T10:47:21.521Z", + "new_balance":"3189.43", + "value":"-6.53" + } + }, + { + "id":"456904b6-0ad3-40c8-8839-91a302a08b59", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T07:07:54.457Z", + "completed":"2017-03-11T07:07:54.457Z", + "new_balance":"3188.78", + "value":"-0.65" + } + }, + { + "id":"d95f8856-5037-4a6f-a24e-e1271c40c0f0", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T13:55:56.712Z", + "completed":"2017-03-13T13:55:56.712Z", + "new_balance":"3188.44", + "value":"-0.34" + } + }, + { + "id":"0df3445b-bb33-4711-8c4b-dfddd663e894", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T17:08:38.902Z", + "completed":"2017-03-16T17:08:38.902Z", + "new_balance":"3165.20", + "value":"-23.24" + } + }, + { + "id":"4a0ccef3-ca33-4503-b300-999f75f4e018", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T02:34:59.313Z", + "completed":"2017-03-17T02:34:59.313Z", + "new_balance":"3160.93", + "value":"-4.27" + } + }, + { + "id":"167d0972-eb13-4bfe-a383-e3c7fa2d53f9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T20:02:19.320Z", + "completed":"2017-03-17T20:02:19.320Z", + "new_balance":"3147.83", + "value":"-13.10" + } + }, + { + "id":"049666e0-baf7-49ba-a756-350ae0cf694b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T07:21:27.458Z", + "completed":"2017-03-19T07:21:27.458Z", + "new_balance":"3147.49", + "value":"-0.34" + } + }, + { + "id":"cf005bbc-ed14-4a8a-8b46-45444e4639af", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T08:36:47.635Z", + "completed":"2017-03-21T08:36:47.635Z", + "new_balance":"3145.17", + "value":"-2.32" + } + }, + { + "id":"7a82dd2c-c8ef-4b07-a106-4cfae78e9aa1", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T04:38:51.415Z", + "completed":"2017-03-23T04:38:51.415Z", + "new_balance":"3140.56", + "value":"-4.61" + } + }, + { + "id":"c3ab56b8-c289-45fe-949f-b39faf013226", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T16:35:31.760Z", + "completed":"2017-03-24T16:35:31.760Z", + "new_balance":"3139.91", + "value":"-0.65" + } + }, + { + "id":"c7accdcc-6a48-4e13-9ccf-45f223453a8e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T15:08:52.419Z", + "completed":"2017-03-26T15:08:52.419Z", + "new_balance":"3138.76", + "value":"-1.15" + } + }, + { + "id":"a3105b5a-e41d-4d00-88fe-fe19afd29c28", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T00:23:01.470Z", + "completed":"2017-04-01T00:23:01.470Z", + "new_balance":"3137.61", + "value":"-1.15" + } + }, + { + "id":"7887b118-7768-4a2d-9298-67555fe385a8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T16:04:12.577Z", + "completed":"2017-06-01T16:04:12.577Z", + "new_balance":"3133.00", + "value":"-4.61" + } + }, + { + "id":"13464fad-8d48-4130-9cb9-5ffbd732f367", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T10:54:35.980Z", + "completed":"2017-06-04T10:54:35.980Z", + "new_balance":"3125.81", + "value":"-7.19" + } + }, + { + "id":"2ec1f173-6261-41ac-aeda-6867fc49ae3e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T15:04:46.132Z", + "completed":"2017-06-19T15:04:46.132Z", + "new_balance":"3119.28", + "value":"-6.53" + } + }, + { + "id":"073a2cf7-c156-44d4-8627-84b18eaf455e", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T02:57:54.602Z", + "completed":"2017-06-21T02:57:54.602Z", + "new_balance":"3118.63", + "value":"-0.65" + } + }, + { + "id":"b38b182f-4133-4a73-9213-f3586a29879b", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T01:35:02.986Z", + "completed":"2017-06-24T01:35:02.986Z", + "new_balance":"3118.29", + "value":"-0.34" + } + }, + { + "id":"76d1f32e-98c6-4db6-8870-99721093d15d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T02:30:05.592Z", + "completed":"2017-06-28T02:30:05.592Z", + "new_balance":"3105.19", + "value":"-13.10" + } + }, + { + "id":"f929dc05-fda2-4484-a5ca-34280cf06739", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T02:52:59.327Z", + "completed":"2017-06-28T02:52:59.327Z", + "new_balance":"3081.95", + "value":"-23.24" + } + }, + { + "id":"85d5ff3c-e227-4f94-b1a4-a02c88e3ba2c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T18:59:12.878Z", + "completed":"2017-06-28T18:59:12.878Z", + "new_balance":"3077.68", + "value":"-4.27" + } + }, + { + "id":"12feff7d-49fb-471d-a2e8-ae004d098937", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T05:20:32.714Z", + "completed":"2017-06-29T05:20:32.714Z", + "new_balance":"3077.34", + "value":"-0.34" + } + }, + { + "id":"d099d1c0-d927-45a9-92ae-37b714e77452", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T02:11:17.201Z", + "completed":"2017-06-30T02:11:17.201Z", + "new_balance":"3072.73", + "value":"-4.61" + } + }, + { + "id":"114d2d29-78d0-4ee1-a922-935cb2787de8", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T07:29:32.988Z", + "completed":"2017-06-30T07:29:32.988Z", + "new_balance":"3070.41", + "value":"-2.32" + } + }, + { + "id":"4fbd2e8f-6dd2-4a4c-a03f-0e39108dd003", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:25:17.431Z", + "completed":"2017-06-30T10:25:17.431Z", + "new_balance":"3069.76", + "value":"-0.65" + } + }, + { + "id":"52ae9e08-5291-4f6f-b53d-14f33280764d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T06:14:32.732Z", + "completed":"2017-09-01T06:14:32.732Z", + "new_balance":"3067.91", + "value":"-1.85" + } + }, + { + "id":"3a63f199-bbbc-4ccb-af70-e931f293332c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T10:24:12.210Z", + "completed":"2017-09-02T10:24:12.210Z", + "new_balance":"3060.72", + "value":"-7.19" + } + }, + { + "id":"7715e1fb-d637-428b-b0b3-595273f9f76a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T15:41:43.270Z", + "completed":"2017-09-07T15:41:43.270Z", + "new_balance":"3054.19", + "value":"-6.53" + } + }, + { + "id":"05805600-edcd-47b2-bb73-db360b09c0ec", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T17:45:52.299Z", + "completed":"2017-09-11T17:45:52.299Z", + "new_balance":"3053.54", + "value":"-0.65" + } + }, + { + "id":"1c2ba59b-c2c6-4adc-8239-b9df4dcde49f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T10:51:25.366Z", + "completed":"2017-09-15T10:51:25.366Z", + "new_balance":"3052.14", + "value":"-1.40" + } + }, + { + "id":"ccf203f8-e46b-4606-b43e-d90408f27c9c", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T00:45:39.378Z", + "completed":"2017-09-17T00:45:39.378Z", + "new_balance":"3028.90", + "value":"-23.24" + } + }, + { + "id":"fd7231d6-b3a5-4998-9d5b-b2ccb74a751f", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T03:05:15.310Z", + "completed":"2017-09-17T03:05:15.310Z", + "new_balance":"3024.63", + "value":"-4.27" + } + }, + { + "id":"baf801ad-3bf0-48d4-a8f4-842670d7b8b9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T18:14:09.343Z", + "completed":"2017-09-17T18:14:09.343Z", + "new_balance":"3011.53", + "value":"-13.10" + } + }, + { + "id":"b3ce4d20-9c1b-461e-ba48-819dc90d074d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T08:34:25.880Z", + "completed":"2017-09-19T08:34:25.880Z", + "new_balance":"3011.19", + "value":"-0.34" + } + }, + { + "id":"8a256f95-91ae-4e3c-91e2-4dc462174a3a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T23:14:04.182Z", + "completed":"2017-09-21T23:14:04.182Z", + "new_balance":"3008.87", + "value":"-2.32" + } + }, + { + "id":"4adf984f-db5e-46bf-8327-8cc476749435", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T06:14:53.120Z", + "completed":"2017-09-23T06:14:53.120Z", + "new_balance":"3004.26", + "value":"-4.61" + } + }, + { + "id":"90cfd557-e2fc-4942-a807-f2fe722e31f7", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T14:35:32.877Z", + "completed":"2017-09-24T14:35:32.877Z", + "new_balance":"3003.61", + "value":"-0.65" + } + }, + { + "id":"c91243c3-3334-4628-b2ff-6861ee186129", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T06:04:09.239Z", + "completed":"2017-09-27T06:04:09.239Z", + "new_balance":"3002.46", + "value":"-1.15" + } + }, + { + "id":"11f94bd7-1b39-4a90-adbc-876c0a8328df", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T20:30:01.228Z", + "completed":"2017-10-01T20:30:01.228Z", + "new_balance":"3001.31", + "value":"-1.15" + } + }, + { + "id":"1482258c-854e-4fc2-b87f-04bb522aeb5d", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T21:03:39.027Z", + "completed":"2017-12-01T21:03:39.027Z", + "new_balance":"2996.70", + "value":"-4.61" + } + }, + { + "id":"4d9c356f-3011-4dfd-92cc-5441350a555a", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T02:41:44.939Z", + "completed":"2017-12-04T02:41:44.939Z", + "new_balance":"2989.51", + "value":"-7.19" + } + }, + { + "id":"cb153063-4f5d-4940-ab9d-1e3ea122dc85", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T14:25:26.387Z", + "completed":"2017-12-19T14:25:26.387Z", + "new_balance":"2982.98", + "value":"-6.53" + } + }, + { + "id":"431244d3-f7be-43bf-b560-41c90303fbf9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T09:53:18.615Z", + "completed":"2017-12-24T09:53:18.615Z", + "new_balance":"2982.33", + "value":"-0.65" + } + }, + { + "id":"0beb8198-0594-4ac6-a969-765970ca02c4", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T20:48:52.751Z", + "completed":"2017-12-24T20:48:52.751Z", + "new_balance":"2981.99", + "value":"-0.34" + } + }, + { + "id":"fac26d50-fa84-4c35-8b3d-7ff7d428d789", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T05:46:36.821Z", + "completed":"2017-12-28T05:46:36.821Z", + "new_balance":"2968.89", + "value":"-13.10" + } + }, + { + "id":"68819a63-b612-43f6-a47e-1ecae8820dea", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T06:25:34.410Z", + "completed":"2017-12-28T06:25:34.410Z", + "new_balance":"2964.62", + "value":"-4.27" + } + }, + { + "id":"5771f81f-a2c3-4c95-a891-e905e4ce0bf0", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T13:59:14.749Z", + "completed":"2017-12-28T13:59:14.749Z", + "new_balance":"2941.38", + "value":"-23.24" + } + }, + { + "id":"ac2ff83a-f611-4bf3-a60b-26c738f2caeb", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T06:58:03.343Z", + "completed":"2017-12-29T06:58:03.343Z", + "new_balance":"2941.04", + "value":"-0.34" + } + }, + { + "id":"7b37273e-0a8b-4c64-b56c-d3dbe0f00270", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T00:42:18.079Z", + "completed":"2017-12-30T00:42:18.079Z", + "new_balance":"2936.43", + "value":"-4.61" + } + }, + { + "id":"09004df3-ed8f-4744-901e-530e22ac9bf9", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T02:48:03.632Z", + "completed":"2017-12-30T02:48:03.632Z", + "new_balance":"2934.11", + "value":"-2.32" + } + }, + { + "id":"c94b60e6-a977-499a-9f8d-442dcb783252", + "this_account":{ + "id":"66970940-e3b1-4e7f-9c88-749075d65955", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T23:57:00.059Z", + "completed":"2017-12-30T23:57:00.059Z", + "new_balance":"2933.46", + "value":"-0.65" + } + }, + { + "id":"b6d7b137-9f1d-493c-b0bd-454ce199cc41", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T04:43:56.513Z", + "completed":"2016-01-01T04:43:56.513Z", + "new_balance":"6883.51", + "value":"-34.43" + } + }, + { + "id":"49866480-6b4a-4337-ac4f-732f4f535901", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T06:55:58.158Z", + "completed":"2016-01-01T06:55:58.158Z", + "new_balance":"6778.79", + "value":"-104.72" + } + }, + { + "id":"e99d9eaf-527b-4d2e-974e-42c8bd35710f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T07:35:17.844Z", + "completed":"2016-01-01T07:35:17.844Z", + "new_balance":"6731.89", + "value":"-46.90" + } + }, + { + "id":"d7d06696-bc3d-40ab-a4d7-c5b21d36b206", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T18:32:34.929Z", + "completed":"2016-01-01T18:32:34.929Z", + "new_balance":"6697.46", + "value":"-34.43" + } + }, + { + "id":"c99fead2-5bf3-4a0e-aea3-313b7518b030", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T21:01:05.629Z", + "completed":"2016-01-05T21:01:05.629Z", + "new_balance":"6630.01", + "value":"-67.45" + } + }, + { + "id":"f52bbab7-736a-4add-b40d-8378f31050fc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T21:02:07.154Z", + "completed":"2016-01-05T21:02:07.154Z", + "new_balance":"6548.80", + "value":"-81.21" + } + }, + { + "id":"9732d88f-8873-461e-88a2-b0063ef19a03", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T06:47:42.496Z", + "completed":"2016-01-08T06:47:42.496Z", + "new_balance":"6537.89", + "value":"-10.91" + } + }, + { + "id":"18eeda5d-4450-4626-8966-3cca772fb3c2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T14:19:35.496Z", + "completed":"2016-01-10T14:19:35.496Z", + "new_balance":"6491.43", + "value":"-46.46" + } + }, + { + "id":"bcac5d8d-0320-4e16-a426-aad74ca83467", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T17:14:56.108Z", + "completed":"2016-01-11T17:14:56.108Z", + "new_balance":"6434.79", + "value":"-56.64" + } + }, + { + "id":"e2c17371-7d47-431b-8c60-ea566ec6d73a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T18:28:43.261Z", + "completed":"2016-01-12T18:28:43.261Z", + "new_balance":"6400.36", + "value":"-34.43" + } + }, + { + "id":"ebff61c3-8850-4ad5-ad54-42ade7cceec6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T01:26:20.816Z", + "completed":"2016-01-13T01:26:20.816Z", + "new_balance":"6394.71", + "value":"-5.65" + } + }, + { + "id":"e0a4a5f2-b63d-457a-b44b-04bd2a3ca2a2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T03:20:34.740Z", + "completed":"2016-01-13T03:20:34.740Z", + "new_balance":"6391.12", + "value":"-3.59" + } + }, + { + "id":"c194c154-b744-4a92-86f7-a438dad52037", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T07:31:57.794Z", + "completed":"2016-01-16T07:31:57.794Z", + "new_balance":"6308.03", + "value":"-83.09" + } + }, + { + "id":"771e16a6-a410-4ee9-890e-8986fbe12130", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T01:28:15.188Z", + "completed":"2016-01-19T01:28:15.188Z", + "new_balance":"6226.59", + "value":"-81.44" + } + }, + { + "id":"281af7ca-384b-40c8-a406-a3f772e38914", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T01:59:01.453Z", + "completed":"2016-01-19T01:59:01.453Z", + "new_balance":"6145.38", + "value":"-81.21" + } + }, + { + "id":"138cef4f-c5e8-43ed-a7fe-45f36aeb0a05", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T04:46:48.881Z", + "completed":"2016-01-24T04:46:48.881Z", + "new_balance":"6117.93", + "value":"-27.45" + } + }, + { + "id":"86378136-5dfe-47d8-9337-9b9ecbae0ea7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T08:14:45.838Z", + "completed":"2016-01-27T08:14:45.838Z", + "new_balance":"8468.14", + "value":"2350.21" + } + }, + { + "id":"89621808-89b3-41d0-939b-3a5802097d35", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T21:39:52.478Z", + "completed":"2016-01-27T21:39:52.478Z", + "new_balance":"8440.16", + "value":"-27.98" + } + }, + { + "id":"3b3bcc85-e85f-4b76-8bf7-160709c609cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T02:19:03.299Z", + "completed":"2016-01-31T02:19:03.299Z", + "new_balance":"8122.95", + "value":"-317.21" + } + }, + { + "id":"17c544f4-4360-459e-b421-1ed7dc006467", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T00:48:08.832Z", + "completed":"2016-02-01T00:48:08.832Z", + "new_balance":"8088.52", + "value":"-34.43" + } + }, + { + "id":"f5ad9152-b7bb-48a6-bd9c-e6e38b2596b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T02:39:00.797Z", + "completed":"2016-02-01T02:39:00.797Z", + "new_balance":"7983.80", + "value":"-104.72" + } + }, + { + "id":"19747e31-b109-4503-8628-1b4f452315ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T17:40:45.398Z", + "completed":"2016-02-01T17:40:45.398Z", + "new_balance":"7949.37", + "value":"-34.43" + } + }, + { + "id":"037c8f11-08e0-4533-a5e5-f9a751a5a3b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T23:01:08.262Z", + "completed":"2016-02-01T23:01:08.262Z", + "new_balance":"7902.47", + "value":"-46.90" + } + }, + { + "id":"2630e24d-89d8-43eb-b867-aa11bf971b79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T01:31:30.199Z", + "completed":"2016-02-03T01:31:30.199Z", + "new_balance":"7895.75", + "value":"-6.72" + } + }, + { + "id":"2d890411-2913-4e72-a0cd-a117ea6f5cf6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T00:46:49.888Z", + "completed":"2016-02-04T00:46:49.888Z", + "new_balance":"7814.54", + "value":"-81.21" + } + }, + { + "id":"d9174f77-3790-4b5d-8267-b3efd86425d5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T01:49:02.182Z", + "completed":"2016-02-06T01:49:02.182Z", + "new_balance":"7707.73", + "value":"-106.81" + } + }, + { + "id":"6c09c9b2-c997-42cb-a43b-67d5f65911f2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T14:24:17.296Z", + "completed":"2016-02-06T14:24:17.296Z", + "new_balance":"7626.56", + "value":"-81.17" + } + }, + { + "id":"56d892da-8ff2-4ec9-829e-3e3631dabdb4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T15:15:35.059Z", + "completed":"2016-02-07T15:15:35.059Z", + "new_balance":"7598.53", + "value":"-28.03" + } + }, + { + "id":"937fbbae-69dd-4c5b-9f51-69c80f50560a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T23:30:49.851Z", + "completed":"2016-02-08T23:30:49.851Z", + "new_balance":"7583.24", + "value":"-15.29" + } + }, + { + "id":"98ae2c7f-76b8-4252-b4fc-d56b4e25e58b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T00:49:09.530Z", + "completed":"2016-02-09T00:49:09.530Z", + "new_balance":"7540.29", + "value":"-42.95" + } + }, + { + "id":"a4169a68-dd30-4325-afaa-8cbdfb5210fc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T07:38:51.482Z", + "completed":"2016-02-11T07:38:51.482Z", + "new_balance":"7513.56", + "value":"-26.73" + } + }, + { + "id":"b4657e3a-0018-447d-9f4b-b7a515dc67ef", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T12:06:38.700Z", + "completed":"2016-02-13T12:06:38.700Z", + "new_balance":"7472.02", + "value":"-41.54" + } + }, + { + "id":"fabcda1e-7e2a-4ae4-95b1-92710b8b5b3d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T11:02:26.626Z", + "completed":"2016-02-17T11:02:26.626Z", + "new_balance":"7465.03", + "value":"-6.99" + } + }, + { + "id":"c1cb54b9-20be-448c-bf80-ac61562fd8eb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T06:09:31.124Z", + "completed":"2016-02-19T06:09:31.124Z", + "new_balance":"7415.09", + "value":"-49.94" + } + }, + { + "id":"8a3d8df1-18c3-42bf-a5c4-b2072f987ae7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T01:39:55.619Z", + "completed":"2016-02-21T01:39:55.619Z", + "new_balance":"7333.88", + "value":"-81.21" + } + }, + { + "id":"6af8b91c-affd-4423-b558-7d1d42e33768", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T20:04:57.787Z", + "completed":"2016-02-24T20:04:57.787Z", + "new_balance":"7305.90", + "value":"-27.98" + } + }, + { + "id":"21c2d14c-f31c-4df3-ab6b-648a37bfb424", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T17:37:59.476Z", + "completed":"2016-02-26T17:37:59.476Z", + "new_balance":"9656.11", + "value":"2350.21" + } + }, + { + "id":"b2656c5b-f170-4e4f-836d-0e86a933276d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T01:59:32.891Z", + "completed":"2016-03-01T01:59:32.891Z", + "new_balance":"9551.39", + "value":"-104.72" + } + }, + { + "id":"5ce79078-0914-4ae9-9229-3805b19b1f38", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T07:19:41.061Z", + "completed":"2016-03-01T07:19:41.061Z", + "new_balance":"9504.49", + "value":"-46.90" + } + }, + { + "id":"bc30df38-584c-4bdf-996f-dda73b594e43", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T15:48:04.576Z", + "completed":"2016-03-01T15:48:04.576Z", + "new_balance":"9470.06", + "value":"-34.43" + } + }, + { + "id":"3eb706a1-5611-4459-b81c-2cfb3b946344", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T18:02:23.887Z", + "completed":"2016-03-01T18:02:23.887Z", + "new_balance":"9435.63", + "value":"-34.43" + } + }, + { + "id":"20f89258-2fba-43b8-8cdc-3dfe0f06b1b8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T00:43:29.689Z", + "completed":"2016-03-09T00:43:29.689Z", + "new_balance":"9372.06", + "value":"-63.57" + } + }, + { + "id":"749037e5-d6c8-414a-be1f-eb98733280a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T20:35:20.428Z", + "completed":"2016-03-09T20:35:20.428Z", + "new_balance":"9310.69", + "value":"-61.37" + } + }, + { + "id":"612d799f-1998-4757-b034-f1ec8c8a4345", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T13:48:17.093Z", + "completed":"2016-03-17T13:48:17.093Z", + "new_balance":"9222.20", + "value":"-88.49" + } + }, + { + "id":"90ae9d2e-bc28-4a9c-bcb8-0ac9f725a4df", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T10:52:44.975Z", + "completed":"2016-03-18T10:52:44.975Z", + "new_balance":"9215.43", + "value":"-6.77" + } + }, + { + "id":"780dbc6a-ed8f-47ee-bc45-bf1c5b9136ea", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T12:24:28.034Z", + "completed":"2016-03-18T12:24:28.034Z", + "new_balance":"9169.96", + "value":"-45.47" + } + }, + { + "id":"028ff427-834a-452b-b055-54aa18181556", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T13:26:48.925Z", + "completed":"2016-03-18T13:26:48.925Z", + "new_balance":"9088.17", + "value":"-81.79" + } + }, + { + "id":"533cd08c-adfa-42f3-ae30-a01033a984e2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T13:57:48.468Z", + "completed":"2016-03-18T13:57:48.468Z", + "new_balance":"9048.53", + "value":"-39.64" + } + }, + { + "id":"30b8e2b0-095a-45c2-b3f1-a3e80ad4c91b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T02:34:09.705Z", + "completed":"2016-03-22T02:34:09.705Z", + "new_balance":"8944.34", + "value":"-104.19" + } + }, + { + "id":"98510c07-ee83-4f57-9449-4dfa17a68771", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T14:09:40.167Z", + "completed":"2016-03-29T14:09:40.167Z", + "new_balance":"11294.55", + "value":"2350.21" + } + }, + { + "id":"13707018-666c-430c-bd4d-21f29f01655a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T23:18:41.325Z", + "completed":"2016-03-29T23:18:41.325Z", + "new_balance":"11266.57", + "value":"-27.98" + } + }, + { + "id":"ecdde746-0bbc-4b7b-b054-25f5e5a0c896", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T16:26:49.709Z", + "completed":"2016-03-31T16:26:49.709Z", + "new_balance":"10949.36", + "value":"-317.21" + } + }, + { + "id":"8845850a-b289-4a63-87a1-a0c822e07f19", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T08:06:49.863Z", + "completed":"2016-04-01T08:06:49.863Z", + "new_balance":"10844.64", + "value":"-104.72" + } + }, + { + "id":"dd769f56-7692-4251-b107-990ca597ab43", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T09:16:55.938Z", + "completed":"2016-04-01T09:16:55.938Z", + "new_balance":"10810.21", + "value":"-34.43" + } + }, + { + "id":"a80afd8a-3fce-4d56-a525-39161ee7df4b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:37:39.160Z", + "completed":"2016-04-01T11:37:39.160Z", + "new_balance":"10775.78", + "value":"-34.43" + } + }, + { + "id":"df9fa39e-d6ca-4353-93e8-62e4e5b1b571", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T13:03:57.433Z", + "completed":"2016-04-01T13:03:57.433Z", + "new_balance":"10728.88", + "value":"-46.90" + } + }, + { + "id":"1d8f56bb-33c4-4e08-b15e-5b65d7b17375", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T18:18:46.718Z", + "completed":"2016-04-02T18:18:46.718Z", + "new_balance":"10634.55", + "value":"-94.33" + } + }, + { + "id":"3f06e14d-44ec-4e73-aa89-cb632404d8f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T00:49:38.427Z", + "completed":"2016-04-05T00:49:38.427Z", + "new_balance":"10629.91", + "value":"-4.64" + } + }, + { + "id":"2ff824ea-38bc-4bf0-bf94-d816782acb51", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T04:33:50.361Z", + "completed":"2016-04-05T04:33:50.361Z", + "new_balance":"10548.70", + "value":"-81.21" + } + }, + { + "id":"b4b21591-8986-498c-9546-06a39c1dd4e3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T07:33:43.804Z", + "completed":"2016-04-05T07:33:43.804Z", + "new_balance":"10514.27", + "value":"-34.43" + } + }, + { + "id":"d36ef3e1-9b0e-4bc7-84fb-15e0a0217e91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T12:02:26.735Z", + "completed":"2016-04-05T12:02:26.735Z", + "new_balance":"10459.43", + "value":"-54.84" + } + }, + { + "id":"39c821e0-9c98-4f33-af93-3770e63de895", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T18:30:00.490Z", + "completed":"2016-04-05T18:30:00.490Z", + "new_balance":"10452.85", + "value":"-6.58" + } + }, + { + "id":"a4b78625-903f-42b9-936b-5befffe6a475", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T20:22:19.170Z", + "completed":"2016-04-05T20:22:19.170Z", + "new_balance":"10440.92", + "value":"-11.93" + } + }, + { + "id":"9624f687-1f9e-4833-a937-ba5fd0050968", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T20:50:56.143Z", + "completed":"2016-04-05T20:50:56.143Z", + "new_balance":"10399.49", + "value":"-41.43" + } + }, + { + "id":"69d9cd13-b38b-4333-a0d0-ae15f881ea86", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T00:11:36.359Z", + "completed":"2016-04-08T00:11:36.359Z", + "new_balance":"10301.57", + "value":"-97.92" + } + }, + { + "id":"f5acc49c-f58c-439c-aea6-2886932052ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T11:05:44.133Z", + "completed":"2016-04-10T11:05:44.133Z", + "new_balance":"10245.44", + "value":"-56.13" + } + }, + { + "id":"10f62234-da94-4f0e-8873-a3e523591008", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T03:44:38.627Z", + "completed":"2016-04-11T03:44:38.627Z", + "new_balance":"10217.99", + "value":"-27.45" + } + }, + { + "id":"be0f7171-69ba-4a70-a507-83c4e9f75e24", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T23:23:44.247Z", + "completed":"2016-04-11T23:23:44.247Z", + "new_balance":"10136.78", + "value":"-81.21" + } + }, + { + "id":"9f3a7ddb-9f64-45d1-ae68-e6ce07e3393c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T18:48:21.331Z", + "completed":"2016-04-13T18:48:21.331Z", + "new_balance":"10108.80", + "value":"-27.98" + } + }, + { + "id":"af9a8c34-03e8-42a7-8982-01fd2313e309", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T20:36:05.166Z", + "completed":"2016-04-18T20:36:05.166Z", + "new_balance":"12459.01", + "value":"2350.21" + } + }, + { + "id":"a95e9f57-06ad-4f3e-ad9a-0d19bb6fa86e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T19:51:25.524Z", + "completed":"2016-04-25T19:51:25.524Z", + "new_balance":"12141.80", + "value":"-317.21" + } + }, + { + "id":"62b81400-1055-4d7e-a87e-f1d16dc144d8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T03:36:02.401Z", + "completed":"2016-05-02T03:36:02.401Z", + "new_balance":"12037.08", + "value":"-104.72" + } + }, + { + "id":"bf6829c3-2fc3-4d34-8e1c-2c02b4f41c04", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T08:10:39.427Z", + "completed":"2016-05-02T08:10:39.427Z", + "new_balance":"12002.65", + "value":"-34.43" + } + }, + { + "id":"480bae28-2030-4fcd-a557-e8875b1be664", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T15:41:18.762Z", + "completed":"2016-05-02T15:41:18.762Z", + "new_balance":"11955.75", + "value":"-46.90" + } + }, + { + "id":"95074e99-22f1-425f-8d23-aa63a4da36e4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:56:42.286Z", + "completed":"2016-05-02T21:56:42.286Z", + "new_balance":"11921.32", + "value":"-34.43" + } + }, + { + "id":"55e5cdc8-1399-40ea-920e-406bd732aa50", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T11:52:47.533Z", + "completed":"2016-05-04T11:52:47.533Z", + "new_balance":"11840.11", + "value":"-81.21" + } + }, + { + "id":"23bd543f-d90a-4647-82c2-4d644ca359b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T20:38:53.811Z", + "completed":"2016-05-04T20:38:53.811Z", + "new_balance":"11833.53", + "value":"-6.58" + } + }, + { + "id":"a75ddba7-b16e-4455-8393-3092a095cce0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T17:10:20.056Z", + "completed":"2016-05-06T17:10:20.056Z", + "new_balance":"11753.32", + "value":"-80.21" + } + }, + { + "id":"6f0fad49-8946-448c-b468-bbe8477a7225", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T16:11:40.703Z", + "completed":"2016-05-07T16:11:40.703Z", + "new_balance":"11718.81", + "value":"-34.51" + } + }, + { + "id":"2a133ac2-44f8-4ebf-90ec-192e0847ba2e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T21:37:19.624Z", + "completed":"2016-05-07T21:37:19.624Z", + "new_balance":"11624.48", + "value":"-94.33" + } + }, + { + "id":"21d6cc98-e9a8-486f-ba6f-76c060c78fff", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T07:16:01.864Z", + "completed":"2016-05-09T07:16:01.864Z", + "new_balance":"11612.55", + "value":"-11.93" + } + }, + { + "id":"040b2924-fb5f-4f58-bee2-76fdb800ca0f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T14:54:17.776Z", + "completed":"2016-05-09T14:54:17.776Z", + "new_balance":"11569.60", + "value":"-42.95" + } + }, + { + "id":"4c7b81c6-fc73-4433-919a-f40bcd79172b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T06:45:06.921Z", + "completed":"2016-05-13T06:45:06.921Z", + "new_balance":"11563.02", + "value":"-6.58" + } + }, + { + "id":"3ef18ac7-7361-4328-a3c3-11f5f4448190", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T07:02:01.297Z", + "completed":"2016-05-13T07:02:01.297Z", + "new_balance":"11528.51", + "value":"-34.51" + } + }, + { + "id":"a5004cfc-1578-4289-bd29-6fbbd85a0979", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T12:30:09.182Z", + "completed":"2016-05-13T12:30:09.182Z", + "new_balance":"11500.32", + "value":"-28.19" + } + }, + { + "id":"dc2de99e-e2c6-4bbc-bbcb-53f8adf1b79c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T12:34:57.509Z", + "completed":"2016-05-14T12:34:57.509Z", + "new_balance":"11419.11", + "value":"-81.21" + } + }, + { + "id":"07fdc5d7-a2e2-4a35-a9dd-c7ca3a2867fe", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T13:50:45.426Z", + "completed":"2016-05-14T13:50:45.426Z", + "new_balance":"11353.88", + "value":"-65.23" + } + }, + { + "id":"e3cd1738-aebe-4daa-9a88-5a8982d29d4e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T14:29:34.110Z", + "completed":"2016-05-15T14:29:34.110Z", + "new_balance":"11325.90", + "value":"-27.98" + } + }, + { + "id":"1e370205-1459-4f95-8026-168560fd3f1c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T11:42:41.039Z", + "completed":"2016-05-30T11:42:41.039Z", + "new_balance":"13676.11", + "value":"2350.21" + } + }, + { + "id":"a300ba0f-e25e-4c2b-aaf8-3e3138f1f62b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T12:14:17.597Z", + "completed":"2016-05-30T12:14:17.597Z", + "new_balance":"13358.90", + "value":"-317.21" + } + }, + { + "id":"7b325c7c-e121-4474-aff2-68d35d0156c3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T00:01:45.128Z", + "completed":"2016-06-01T00:01:45.128Z", + "new_balance":"13254.18", + "value":"-104.72" + } + }, + { + "id":"af1292c8-a118-4c7c-b4dc-5188881b9dcb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T06:00:28.919Z", + "completed":"2016-06-01T06:00:28.919Z", + "new_balance":"13219.75", + "value":"-34.43" + } + }, + { + "id":"6820aa38-334b-44f5-82e7-ad34b4a3cfca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T10:57:01.443Z", + "completed":"2016-06-01T10:57:01.443Z", + "new_balance":"13172.85", + "value":"-46.90" + } + }, + { + "id":"6170ef98-3de0-4a15-b05d-2eb9873b75d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T22:59:03.229Z", + "completed":"2016-06-01T22:59:03.229Z", + "new_balance":"13138.42", + "value":"-34.43" + } + }, + { + "id":"385f689b-a5a3-424f-a19a-ae7820632bc1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T02:02:28.901Z", + "completed":"2016-06-04T02:02:28.901Z", + "new_balance":"13074.85", + "value":"-63.57" + } + }, + { + "id":"982c30e6-0083-4ff8-8d3b-768033fdd99b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T03:33:31.021Z", + "completed":"2016-06-04T03:33:31.021Z", + "new_balance":"13013.48", + "value":"-61.37" + } + }, + { + "id":"fb50f5e9-fb52-4460-bc6d-7057ce4fee91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T03:34:39.210Z", + "completed":"2016-06-11T03:34:39.210Z", + "new_balance":"12924.99", + "value":"-88.49" + } + }, + { + "id":"dfc073d4-3522-4caa-a2fa-eeae7a8574df", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T07:48:46.964Z", + "completed":"2016-06-11T07:48:46.964Z", + "new_balance":"12843.20", + "value":"-81.79" + } + }, + { + "id":"44e27686-9d09-4ff3-829e-597c5485e847", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T18:25:56.698Z", + "completed":"2016-06-11T18:25:56.698Z", + "new_balance":"12797.73", + "value":"-45.47" + } + }, + { + "id":"9e78f82e-e35a-4233-ab92-597264879709", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T05:44:46.832Z", + "completed":"2016-06-12T05:44:46.832Z", + "new_balance":"12758.09", + "value":"-39.64" + } + }, + { + "id":"569fc4f1-200b-4a79-8ce1-1e253f8fca7d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T18:37:50.926Z", + "completed":"2016-06-12T18:37:50.926Z", + "new_balance":"12751.32", + "value":"-6.77" + } + }, + { + "id":"609e7c03-1420-4f05-b555-78a5cb30b24d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T05:45:15.150Z", + "completed":"2016-06-16T05:45:15.150Z", + "new_balance":"12647.13", + "value":"-104.19" + } + }, + { + "id":"46482488-fc2e-4dca-a654-bdd0791dcd7c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T00:27:20.771Z", + "completed":"2016-06-29T00:27:20.771Z", + "new_balance":"12619.15", + "value":"-27.98" + } + }, + { + "id":"f0f449a1-4cfe-4752-bf3c-669002989068", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T03:50:06.485Z", + "completed":"2016-06-30T03:50:06.485Z", + "new_balance":"12301.94", + "value":"-317.21" + } + }, + { + "id":"8df3b3a1-857d-4934-8d76-6955300fbb71", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T17:05:12.212Z", + "completed":"2016-06-30T17:05:12.212Z", + "new_balance":"14652.15", + "value":"2350.21" + } + }, + { + "id":"26dc97a4-9073-40c2-bc1e-34b60478a835", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T00:23:38.810Z", + "completed":"2016-07-01T00:23:38.810Z", + "new_balance":"14617.72", + "value":"-34.43" + } + }, + { + "id":"5cdeafb4-50cc-47ed-9092-fa3a74438073", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T02:26:10.027Z", + "completed":"2016-07-01T02:26:10.027Z", + "new_balance":"14570.82", + "value":"-46.90" + } + }, + { + "id":"826c6cb2-a9f0-4b4a-9418-93599958abd8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T08:15:26.811Z", + "completed":"2016-07-01T08:15:26.811Z", + "new_balance":"14536.39", + "value":"-34.43" + } + }, + { + "id":"66c1c9c3-917a-4aab-ad85-e4a71a650ce0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T11:42:20.662Z", + "completed":"2016-07-01T11:42:20.662Z", + "new_balance":"14431.67", + "value":"-104.72" + } + }, + { + "id":"e4058346-d2c9-4da2-891e-ebb57685b632", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T08:23:43.063Z", + "completed":"2016-07-05T08:23:43.063Z", + "new_balance":"14350.46", + "value":"-81.21" + } + }, + { + "id":"97ac3825-9b4f-4b45-8e76-993ea408a26c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T16:17:37.310Z", + "completed":"2016-07-05T16:17:37.310Z", + "new_balance":"14283.01", + "value":"-67.45" + } + }, + { + "id":"89e590f9-ae19-474a-b4d5-418f42d710d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T14:54:45.858Z", + "completed":"2016-07-08T14:54:45.858Z", + "new_balance":"14272.10", + "value":"-10.91" + } + }, + { + "id":"e71eb620-1379-4519-82c3-51fd0652b869", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T02:45:39.437Z", + "completed":"2016-07-10T02:45:39.437Z", + "new_balance":"14225.64", + "value":"-46.46" + } + }, + { + "id":"f225995e-d164-48c4-b9e1-3eb42810e7f7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T07:07:01.582Z", + "completed":"2016-07-12T07:07:01.582Z", + "new_balance":"14191.21", + "value":"-34.43" + } + }, + { + "id":"4ebe1288-54fb-4e33-92c0-3b29c3dfbd9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T23:20:57.248Z", + "completed":"2016-07-12T23:20:57.248Z", + "new_balance":"14134.57", + "value":"-56.64" + } + }, + { + "id":"c67c2518-f065-4a5f-a1fb-148a7473a6ac", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T13:58:23.910Z", + "completed":"2016-07-13T13:58:23.910Z", + "new_balance":"14128.92", + "value":"-5.65" + } + }, + { + "id":"80567d8a-1d28-459d-84b8-356cf017fbb3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T22:18:34.024Z", + "completed":"2016-07-13T22:18:34.024Z", + "new_balance":"14125.33", + "value":"-3.59" + } + }, + { + "id":"eaaa37aa-4459-49d1-859c-a93458eb5f2c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T02:39:33.685Z", + "completed":"2016-07-18T02:39:33.685Z", + "new_balance":"14042.24", + "value":"-83.09" + } + }, + { + "id":"1213abdc-372d-4be3-a20c-08c9866db3bb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T04:06:43.602Z", + "completed":"2016-07-20T04:06:43.602Z", + "new_balance":"13961.03", + "value":"-81.21" + } + }, + { + "id":"5e3122a6-b416-4ce0-b497-593b3c254361", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T05:42:46.344Z", + "completed":"2016-07-20T05:42:46.344Z", + "new_balance":"13879.59", + "value":"-81.44" + } + }, + { + "id":"9b87b976-b7f9-441b-9d15-767b409d5231", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T17:19:54.819Z", + "completed":"2016-07-24T17:19:54.819Z", + "new_balance":"13852.14", + "value":"-27.45" + } + }, + { + "id":"95a3fb0f-d8db-4c9d-8d2a-73907ba74b9f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T09:08:19.871Z", + "completed":"2016-07-29T09:08:19.871Z", + "new_balance":"13824.16", + "value":"-27.98" + } + }, + { + "id":"f5111b96-436e-4507-ade8-d2a57c679ba4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T21:11:43.682Z", + "completed":"2016-07-29T21:11:43.682Z", + "new_balance":"16174.37", + "value":"2350.21" + } + }, + { + "id":"8eeb5c5c-7f69-436d-82a0-d9a947412771", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T23:21:36.809Z", + "completed":"2016-07-30T23:21:36.809Z", + "new_balance":"15857.16", + "value":"-317.21" + } + }, + { + "id":"51871960-4a44-49ac-843c-f6a2db48cc1c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T05:53:56.320Z", + "completed":"2016-08-01T05:53:56.320Z", + "new_balance":"15752.44", + "value":"-104.72" + } + }, + { + "id":"67069a46-e206-4431-aa0f-4c18c74a2e79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T11:37:11.530Z", + "completed":"2016-08-01T11:37:11.530Z", + "new_balance":"15718.01", + "value":"-34.43" + } + }, + { + "id":"7ea5eb2b-2fed-410d-9273-7f09e4e39e9d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T14:19:07.220Z", + "completed":"2016-08-01T14:19:07.220Z", + "new_balance":"15683.58", + "value":"-34.43" + } + }, + { + "id":"d08dc5bb-a26c-428c-a27e-77370d90137d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T23:06:47.583Z", + "completed":"2016-08-01T23:06:47.583Z", + "new_balance":"15636.68", + "value":"-46.90" + } + }, + { + "id":"07b19b1b-dc7c-4dad-aba4-a0716528baa1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T20:15:18.156Z", + "completed":"2016-08-03T20:15:18.156Z", + "new_balance":"15629.96", + "value":"-6.72" + } + }, + { + "id":"afda4999-a3c1-4c51-8610-dd9b80e5df30", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T22:53:19.040Z", + "completed":"2016-08-04T22:53:19.040Z", + "new_balance":"15548.75", + "value":"-81.21" + } + }, + { + "id":"70705233-de84-40a2-a10d-1116d55d37f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T03:24:59.469Z", + "completed":"2016-08-08T03:24:59.469Z", + "new_balance":"15441.94", + "value":"-106.81" + } + }, + { + "id":"590fa6a7-dacf-470d-b8d4-9a35c23295d6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T06:43:01.040Z", + "completed":"2016-08-08T06:43:01.040Z", + "new_balance":"15360.77", + "value":"-81.17" + } + }, + { + "id":"bf0d6b1a-02a3-480c-adea-3bbefdafc26e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T07:33:33.612Z", + "completed":"2016-08-08T07:33:33.612Z", + "new_balance":"15332.74", + "value":"-28.03" + } + }, + { + "id":"e7e31e43-c19f-4189-b21d-105de915c0c1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T12:07:02.812Z", + "completed":"2016-08-08T12:07:02.812Z", + "new_balance":"15317.45", + "value":"-15.29" + } + }, + { + "id":"d67d0465-1839-49ee-b355-55678e3f28fe", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T16:26:51.912Z", + "completed":"2016-08-09T16:26:51.912Z", + "new_balance":"15274.50", + "value":"-42.95" + } + }, + { + "id":"89dae5eb-dce3-4fd2-8a9b-0461ef15f9cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T19:01:34.866Z", + "completed":"2016-08-14T19:01:34.866Z", + "new_balance":"15247.77", + "value":"-26.73" + } + }, + { + "id":"e1ac68a1-005e-4cbe-a5ea-74217b76b6ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T22:47:36.998Z", + "completed":"2016-08-15T22:47:36.998Z", + "new_balance":"15206.23", + "value":"-41.54" + } + }, + { + "id":"42f6ff29-6c66-4e1f-91e8-c314af4b318c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T19:01:23.855Z", + "completed":"2016-08-19T19:01:23.855Z", + "new_balance":"15199.24", + "value":"-6.99" + } + }, + { + "id":"19bf1439-830b-458c-8654-3167df018e79", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T18:44:17.949Z", + "completed":"2016-08-22T18:44:17.949Z", + "new_balance":"15149.30", + "value":"-49.94" + } + }, + { + "id":"144e0480-df82-45be-83b2-4aa54410a25b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T03:28:05.651Z", + "completed":"2016-08-26T03:28:05.651Z", + "new_balance":"15068.09", + "value":"-81.21" + } + }, + { + "id":"cf07bdc9-a351-4be3-a9e8-fcf63ae6f206", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T01:57:35.095Z", + "completed":"2016-08-28T01:57:35.095Z", + "new_balance":"14750.88", + "value":"-317.21" + } + }, + { + "id":"f4323321-5c23-4590-9da6-a77ab3b26d86", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T06:20:57.755Z", + "completed":"2016-08-29T06:20:57.755Z", + "new_balance":"17101.09", + "value":"2350.21" + } + }, + { + "id":"110763d9-9bc1-420c-b595-bb3edf43324e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T13:38:38.409Z", + "completed":"2016-08-29T13:38:38.409Z", + "new_balance":"17073.11", + "value":"-27.98" + } + }, + { + "id":"910b03e9-4eca-4201-9ee5-4645183b4b96", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T21:26:01.458Z", + "completed":"2016-08-30T21:26:01.458Z", + "new_balance":"16755.90", + "value":"-317.21" + } + }, + { + "id":"ced92a06-9ca5-4729-b369-9a02d9ec11fa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T03:11:18.523Z", + "completed":"2016-09-01T03:11:18.523Z", + "new_balance":"16709.00", + "value":"-46.90" + } + }, + { + "id":"e7b4ad17-46dc-42ea-8ac8-065174aeeadb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:38:28.260Z", + "completed":"2016-09-01T06:38:28.260Z", + "new_balance":"16674.57", + "value":"-34.43" + } + }, + { + "id":"73722d8d-353c-4bfa-993b-b25f9223f327", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T13:06:54.874Z", + "completed":"2016-09-01T13:06:54.874Z", + "new_balance":"16640.14", + "value":"-34.43" + } + }, + { + "id":"c18e205c-3fdb-4f6c-9b4d-55010de35b4c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T16:39:30.590Z", + "completed":"2016-09-01T16:39:30.590Z", + "new_balance":"16535.42", + "value":"-104.72" + } + }, + { + "id":"e9351168-08e0-454e-9bc7-23587a1c3ed5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T15:09:18.924Z", + "completed":"2016-09-09T15:09:18.924Z", + "new_balance":"16471.85", + "value":"-63.57" + } + }, + { + "id":"b54d50db-487d-4f27-a37b-5c1fbcdbd327", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T19:57:59.343Z", + "completed":"2016-09-09T19:57:59.343Z", + "new_balance":"16410.48", + "value":"-61.37" + } + }, + { + "id":"59b1e664-4972-4b07-91f0-2ae0a498ffe9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T19:44:02.196Z", + "completed":"2016-09-17T19:44:02.196Z", + "new_balance":"16321.99", + "value":"-88.49" + } + }, + { + "id":"edb8a1a2-e8e0-4028-8aba-7b78b8a741a2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T02:19:55.337Z", + "completed":"2016-09-18T02:19:55.337Z", + "new_balance":"16282.35", + "value":"-39.64" + } + }, + { + "id":"2fa3831e-f5ec-430c-8a5d-9add172a7e9c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T05:00:03.532Z", + "completed":"2016-09-18T05:00:03.532Z", + "new_balance":"16200.56", + "value":"-81.79" + } + }, + { + "id":"a8cd99d1-2fb4-41c3-b3ad-25ac2acee1ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T20:16:37.380Z", + "completed":"2016-09-18T20:16:37.380Z", + "new_balance":"16193.79", + "value":"-6.77" + } + }, + { + "id":"0be24a05-21c6-463e-8321-9ed327dde980", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T21:45:01.425Z", + "completed":"2016-09-18T21:45:01.425Z", + "new_balance":"16148.32", + "value":"-45.47" + } + }, + { + "id":"3797f1d3-b1c5-4536-bec4-893cfd6f22ad", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T04:02:37.391Z", + "completed":"2016-09-22T04:02:37.391Z", + "new_balance":"16044.13", + "value":"-104.19" + } + }, + { + "id":"ccc107c0-3d8c-4ab3-8738-d972865faa99", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T08:24:12.406Z", + "completed":"2016-09-29T08:24:12.406Z", + "new_balance":"18394.34", + "value":"2350.21" + } + }, + { + "id":"b7f257df-0964-438f-8897-185002d26671", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T12:04:17.065Z", + "completed":"2016-09-29T12:04:17.065Z", + "new_balance":"18366.36", + "value":"-27.98" + } + }, + { + "id":"5738c55a-9ded-4d9f-a422-df42d3f0bfde", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T22:14:16.384Z", + "completed":"2016-09-30T22:14:16.384Z", + "new_balance":"18049.15", + "value":"-317.21" + } + }, + { + "id":"856563c3-2254-4af7-bd39-08cdc734c9f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T06:49:53.673Z", + "completed":"2016-10-01T06:49:53.673Z", + "new_balance":"18002.25", + "value":"-46.90" + } + }, + { + "id":"9fec0e3a-dcd8-49da-b8d2-4bf369079e64", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T10:51:54.484Z", + "completed":"2016-10-01T10:51:54.484Z", + "new_balance":"17897.53", + "value":"-104.72" + } + }, + { + "id":"2a2ed831-4ada-40c5-ad20-410c69e4249a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T11:22:19.217Z", + "completed":"2016-10-01T11:22:19.217Z", + "new_balance":"17863.10", + "value":"-34.43" + } + }, + { + "id":"5febc097-d7fd-4cd5-9189-a2ab3f13af2a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T20:29:45.177Z", + "completed":"2016-10-01T20:29:45.177Z", + "new_balance":"17828.67", + "value":"-34.43" + } + }, + { + "id":"dec58972-8a3f-4787-9082-92b1e97211f7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T13:11:16.070Z", + "completed":"2016-10-02T13:11:16.070Z", + "new_balance":"17734.34", + "value":"-94.33" + } + }, + { + "id":"8e424902-2f89-40ab-95b3-c337365ad1ae", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T01:41:21.241Z", + "completed":"2016-10-05T01:41:21.241Z", + "new_balance":"17679.50", + "value":"-54.84" + } + }, + { + "id":"520dc8b3-9fe7-4fd3-a92f-8e56486e5908", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T02:04:26.261Z", + "completed":"2016-10-05T02:04:26.261Z", + "new_balance":"17667.57", + "value":"-11.93" + } + }, + { + "id":"44320814-493c-413d-bf37-1f473c90b8b9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T02:52:35.729Z", + "completed":"2016-10-05T02:52:35.729Z", + "new_balance":"17586.36", + "value":"-81.21" + } + }, + { + "id":"a102136e-9170-4fa4-8d8d-d4b7728ff291", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T07:57:52.820Z", + "completed":"2016-10-05T07:57:52.820Z", + "new_balance":"17581.72", + "value":"-4.64" + } + }, + { + "id":"ed2465ab-e6e2-455e-ae28-945b06d85b01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T12:36:05.713Z", + "completed":"2016-10-05T12:36:05.713Z", + "new_balance":"17547.29", + "value":"-34.43" + } + }, + { + "id":"7dc1baf4-5e1c-4fa6-bf49-21c9b8e8b127", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T19:34:43.898Z", + "completed":"2016-10-05T19:34:43.898Z", + "new_balance":"17540.71", + "value":"-6.58" + } + }, + { + "id":"e2436c8e-3226-4d7f-90d9-4a937af63a14", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T20:34:24.141Z", + "completed":"2016-10-05T20:34:24.141Z", + "new_balance":"17499.28", + "value":"-41.43" + } + }, + { + "id":"9823c326-e8ba-4ddb-8588-a04d9c107acf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T09:34:28.448Z", + "completed":"2016-10-09T09:34:28.448Z", + "new_balance":"17401.36", + "value":"-97.92" + } + }, + { + "id":"0dfa390e-ea13-4028-a7d1-3e9683dee56d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T13:49:11.157Z", + "completed":"2016-10-11T13:49:11.157Z", + "new_balance":"17345.23", + "value":"-56.13" + } + }, + { + "id":"869c95cb-b96d-41c6-bb5e-812f21556a1e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T00:06:48.140Z", + "completed":"2016-10-12T00:06:48.140Z", + "new_balance":"17264.02", + "value":"-81.21" + } + }, + { + "id":"14f3ce7d-cf34-4efc-8488-66f44ff52a01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T10:51:38.888Z", + "completed":"2016-10-12T10:51:38.888Z", + "new_balance":"17236.57", + "value":"-27.45" + } + }, + { + "id":"98cdaaab-c4a4-4daf-a530-b542feacdecb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T12:37:12.127Z", + "completed":"2016-10-20T12:37:12.127Z", + "new_balance":"17208.59", + "value":"-27.98" + } + }, + { + "id":"16b499df-ebe6-4092-8952-490cab8351bb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T14:38:13.790Z", + "completed":"2016-10-29T14:38:13.790Z", + "new_balance":"19558.80", + "value":"2350.21" + } + }, + { + "id":"0c6f7359-25bc-46a0-b6b4-86303511cb7f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:25:04.566Z", + "completed":"2016-10-30T05:25:04.566Z", + "new_balance":"19241.59", + "value":"-317.21" + } + }, + { + "id":"cfa29920-82c6-4d40-a7c2-8d52a9ef5354", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T08:53:59.358Z", + "completed":"2016-11-02T08:53:59.358Z", + "new_balance":"19194.69", + "value":"-46.90" + } + }, + { + "id":"c1f1f12e-ec2a-47b4-b136-58c152e8806b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T15:01:49.818Z", + "completed":"2016-11-02T15:01:49.818Z", + "new_balance":"19160.26", + "value":"-34.43" + } + }, + { + "id":"54dcb279-1b3a-4a88-a6a0-88fa5066cfb0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T18:43:09.951Z", + "completed":"2016-11-02T18:43:09.951Z", + "new_balance":"19055.54", + "value":"-104.72" + } + }, + { + "id":"9a582755-d9d4-412d-b106-642d710cfc03", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T20:38:06.752Z", + "completed":"2016-11-02T20:38:06.752Z", + "new_balance":"19021.11", + "value":"-34.43" + } + }, + { + "id":"7f8f8929-129f-414d-8661-c75df47e1c66", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T01:49:55.667Z", + "completed":"2016-11-04T01:49:55.667Z", + "new_balance":"19014.53", + "value":"-6.58" + } + }, + { + "id":"a87104cd-211a-4057-9399-5cc6ef9d3314", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T08:14:34.068Z", + "completed":"2016-11-04T08:14:34.068Z", + "new_balance":"18933.32", + "value":"-81.21" + } + }, + { + "id":"091b04fc-bf0c-4053-82aa-5083caf2932a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T15:35:24.748Z", + "completed":"2016-11-06T15:35:24.748Z", + "new_balance":"18853.11", + "value":"-80.21" + } + }, + { + "id":"1aa0e78f-51b8-4dac-910c-193840f9bd73", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T13:54:56.075Z", + "completed":"2016-11-07T13:54:56.075Z", + "new_balance":"18818.60", + "value":"-34.51" + } + }, + { + "id":"12948e33-55f5-41b3-af7f-16057a1ce4ec", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T19:02:46.441Z", + "completed":"2016-11-07T19:02:46.441Z", + "new_balance":"18724.27", + "value":"-94.33" + } + }, + { + "id":"8d2c7d90-a696-4fc9-9449-3e8b079c8eec", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T03:15:24.899Z", + "completed":"2016-11-09T03:15:24.899Z", + "new_balance":"18681.32", + "value":"-42.95" + } + }, + { + "id":"d890e8d3-6f9b-4575-a3a2-3b968ee5e8f0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T09:09:33.124Z", + "completed":"2016-11-09T09:09:33.124Z", + "new_balance":"18669.39", + "value":"-11.93" + } + }, + { + "id":"c1bfc370-f599-4231-a438-05763e080544", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T17:55:38.084Z", + "completed":"2016-11-13T17:55:38.084Z", + "new_balance":"18634.88", + "value":"-34.51" + } + }, + { + "id":"cf02dbf9-de49-4d8d-b62f-fc48efdbbcf4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T20:31:15.783Z", + "completed":"2016-11-13T20:31:15.783Z", + "new_balance":"18606.69", + "value":"-28.19" + } + }, + { + "id":"2c37d5eb-5e36-4ead-8bda-22e4a6c13ded", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T21:32:42.686Z", + "completed":"2016-11-13T21:32:42.686Z", + "new_balance":"18600.11", + "value":"-6.58" + } + }, + { + "id":"d0750e94-682b-4d62-aa54-113edd3b2ae3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T07:08:07.688Z", + "completed":"2016-11-14T07:08:07.688Z", + "new_balance":"18518.90", + "value":"-81.21" + } + }, + { + "id":"ed0b3fc9-04e1-4927-adc7-524ec38cd00c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T10:43:47.390Z", + "completed":"2016-11-14T10:43:47.390Z", + "new_balance":"18453.67", + "value":"-65.23" + } + }, + { + "id":"4c9f7403-2bd3-4f5b-bbf2-517fde3bfd9e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T04:48:22.473Z", + "completed":"2016-11-15T04:48:22.473Z", + "new_balance":"18425.69", + "value":"-27.98" + } + }, + { + "id":"cf8c046b-f5d1-4b58-94c8-d77cce21b9e4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T06:52:00.433Z", + "completed":"2016-11-30T06:52:00.433Z", + "new_balance":"18108.48", + "value":"-317.21" + } + }, + { + "id":"938f73ab-a290-4eb1-b52d-c96d4063d10c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T11:08:47.290Z", + "completed":"2016-11-30T11:08:47.290Z", + "new_balance":"20458.69", + "value":"2350.21" + } + }, + { + "id":"ee826c54-9320-497d-aeb4-0774b553c6d3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T00:12:59.691Z", + "completed":"2016-12-01T00:12:59.691Z", + "new_balance":"20411.79", + "value":"-46.90" + } + }, + { + "id":"ccd062ed-0695-4252-b3e8-8ada956bcf65", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T13:49:04.245Z", + "completed":"2016-12-01T13:49:04.245Z", + "new_balance":"20307.07", + "value":"-104.72" + } + }, + { + "id":"ed67811a-0637-49b9-a531-adbc2024a32b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T18:42:50.818Z", + "completed":"2016-12-01T18:42:50.818Z", + "new_balance":"20272.64", + "value":"-34.43" + } + }, + { + "id":"dacbbe51-036a-4346-a834-241cb9546800", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T20:03:09.651Z", + "completed":"2016-12-01T20:03:09.651Z", + "new_balance":"20238.21", + "value":"-34.43" + } + }, + { + "id":"3e842a98-cec2-4abc-a665-8b0092778148", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T00:29:11.219Z", + "completed":"2016-12-04T00:29:11.219Z", + "new_balance":"20174.64", + "value":"-63.57" + } + }, + { + "id":"b4f6ed1b-9406-4da1-a701-3cf293ee280a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T03:34:28.894Z", + "completed":"2016-12-04T03:34:28.894Z", + "new_balance":"20113.27", + "value":"-61.37" + } + }, + { + "id":"d3d68ccb-2eef-4b87-a788-fed3200c4677", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T00:13:19.659Z", + "completed":"2016-12-11T00:13:19.659Z", + "new_balance":"20024.78", + "value":"-88.49" + } + }, + { + "id":"30d2facf-4c1c-4fd0-9870-66eb3a8b7840", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T01:03:14.534Z", + "completed":"2016-12-11T01:03:14.534Z", + "new_balance":"19942.99", + "value":"-81.79" + } + }, + { + "id":"08cbecb6-2e1e-4bd7-8eaa-fc0edd9c42d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T02:41:14.443Z", + "completed":"2016-12-11T02:41:14.443Z", + "new_balance":"19897.52", + "value":"-45.47" + } + }, + { + "id":"fafbe85b-9d14-492a-90d4-f731acdd2a3c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T05:21:24.167Z", + "completed":"2016-12-12T05:21:24.167Z", + "new_balance":"19890.75", + "value":"-6.77" + } + }, + { + "id":"25ba857d-fc11-497f-b0ca-57eec111b907", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T19:14:45.244Z", + "completed":"2016-12-12T19:14:45.244Z", + "new_balance":"19851.11", + "value":"-39.64" + } + }, + { + "id":"8951b8ad-09c7-489b-b3ff-7bb5abc4e9a3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T16:55:02.332Z", + "completed":"2016-12-16T16:55:02.332Z", + "new_balance":"19746.92", + "value":"-104.19" + } + }, + { + "id":"f3e86812-d9d5-4500-8044-eb79dca4ea15", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T01:28:26.636Z", + "completed":"2016-12-29T01:28:26.636Z", + "new_balance":"19718.94", + "value":"-27.98" + } + }, + { + "id":"ced296c0-fe5e-4b84-9fbe-001da0a9e70d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T07:28:58.578Z", + "completed":"2016-12-30T07:28:58.578Z", + "new_balance":"19401.73", + "value":"-317.21" + } + }, + { + "id":"dd2f3b32-5917-4db7-b1ed-817809ad2e7a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T15:59:38.777Z", + "completed":"2016-12-30T15:59:38.777Z", + "new_balance":"21751.94", + "value":"2350.21" + } + }, + { + "id":"967ad821-a017-4fc1-8685-e12d72358917", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T05:28:37.160Z", + "completed":"2017-01-01T05:28:37.160Z", + "new_balance":"21717.51", + "value":"-34.43" + } + }, + { + "id":"4298e2a0-2f4d-4a52-b54c-b822e519f40b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T18:03:34.852Z", + "completed":"2017-01-01T18:03:34.852Z", + "new_balance":"21670.61", + "value":"-46.90" + } + }, + { + "id":"1e44e199-cf6a-4170-a8e5-b811a13a58b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T21:54:25.339Z", + "completed":"2017-01-01T21:54:25.339Z", + "new_balance":"21636.18", + "value":"-34.43" + } + }, + { + "id":"649ac9b9-4b55-4ee1-a7ee-fd7421ec5062", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T23:09:42.387Z", + "completed":"2017-01-01T23:09:42.387Z", + "new_balance":"21531.46", + "value":"-104.72" + } + }, + { + "id":"8ca44442-8f5d-45e3-be43-617f2d497bfa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T01:36:43.547Z", + "completed":"2017-01-05T01:36:43.547Z", + "new_balance":"21464.01", + "value":"-67.45" + } + }, + { + "id":"0f0343ff-5118-43fb-80d6-27d00a7c64fb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T01:54:43.901Z", + "completed":"2017-01-05T01:54:43.901Z", + "new_balance":"21382.80", + "value":"-81.21" + } + }, + { + "id":"51373823-f6d4-48e0-804b-050c62461a90", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T09:59:25.983Z", + "completed":"2017-01-08T09:59:25.983Z", + "new_balance":"21371.89", + "value":"-10.91" + } + }, + { + "id":"e508a8a4-b9c0-4196-ab15-0d56518e7dd2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T21:43:28.421Z", + "completed":"2017-01-10T21:43:28.421Z", + "new_balance":"21325.43", + "value":"-46.46" + } + }, + { + "id":"7df7fa8c-1468-4b34-8aea-ba0c43e1a97e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T02:49:42.784Z", + "completed":"2017-01-11T02:49:42.784Z", + "new_balance":"21268.79", + "value":"-56.64" + } + }, + { + "id":"b1dd029c-71f3-4023-92ec-e8a8704f11f9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T23:38:07.461Z", + "completed":"2017-01-12T23:38:07.461Z", + "new_balance":"21234.36", + "value":"-34.43" + } + }, + { + "id":"a9cc1bb6-13b4-4e27-a45b-0a30e26a5950", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:32:50.357Z", + "completed":"2017-01-13T05:32:50.357Z", + "new_balance":"21230.77", + "value":"-3.59" + } + }, + { + "id":"3969eb70-794d-43c2-9db1-a72795c3bae3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T08:33:38.477Z", + "completed":"2017-01-13T08:33:38.477Z", + "new_balance":"21225.12", + "value":"-5.65" + } + }, + { + "id":"44281d10-1e84-4349-a308-db2ae844e2a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T03:24:38.138Z", + "completed":"2017-01-16T03:24:38.138Z", + "new_balance":"21142.03", + "value":"-83.09" + } + }, + { + "id":"0c8642f9-d5ef-40c1-8761-5db22f107692", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T00:13:52.118Z", + "completed":"2017-01-19T00:13:52.118Z", + "new_balance":"21060.82", + "value":"-81.21" + } + }, + { + "id":"12b78ca6-294c-4c0f-8b99-f46add38b1a0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T12:58:50.828Z", + "completed":"2017-01-19T12:58:50.828Z", + "new_balance":"20979.38", + "value":"-81.44" + } + }, + { + "id":"f37e459e-897f-49a6-82db-c6cf807421b1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T23:44:34.197Z", + "completed":"2017-01-24T23:44:34.197Z", + "new_balance":"20951.93", + "value":"-27.45" + } + }, + { + "id":"7bd93fbe-cd06-442b-b712-1a1a8dfb3eaa", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T03:26:57.464Z", + "completed":"2017-01-27T03:26:57.464Z", + "new_balance":"23302.14", + "value":"2350.21" + } + }, + { + "id":"7167c70f-84d9-43f9-a330-842dab14bfa1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T09:10:10.568Z", + "completed":"2017-01-27T09:10:10.568Z", + "new_balance":"23274.16", + "value":"-27.98" + } + }, + { + "id":"dfe39b26-55a0-4da4-a60a-25a8781d3d75", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T19:26:05.313Z", + "completed":"2017-01-31T19:26:05.313Z", + "new_balance":"22956.95", + "value":"-317.21" + } + }, + { + "id":"b03094ab-46a6-483f-9b6e-8ed63ef07b30", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T00:51:38.647Z", + "completed":"2017-02-01T00:51:38.647Z", + "new_balance":"22910.05", + "value":"-46.90" + } + }, + { + "id":"2bf919d6-6d3e-4fa4-9aba-185a9092058e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T12:54:58.443Z", + "completed":"2017-02-01T12:54:58.443Z", + "new_balance":"22875.62", + "value":"-34.43" + } + }, + { + "id":"de9f2032-6d85-4ba6-8dc8-ad9cba30150c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T14:21:33.491Z", + "completed":"2017-02-01T14:21:33.491Z", + "new_balance":"22770.90", + "value":"-104.72" + } + }, + { + "id":"cb8ab8a3-ce54-4a79-9e9c-0936d4470217", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T23:25:37.755Z", + "completed":"2017-02-01T23:25:37.755Z", + "new_balance":"22736.47", + "value":"-34.43" + } + }, + { + "id":"6d7c0bbf-ec3d-4698-aa9b-e009b80743fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T13:40:04.265Z", + "completed":"2017-02-03T13:40:04.265Z", + "new_balance":"22729.75", + "value":"-6.72" + } + }, + { + "id":"8819d223-cfae-4793-b84c-1286b92be30c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T17:18:00.570Z", + "completed":"2017-02-04T17:18:00.570Z", + "new_balance":"22648.54", + "value":"-81.21" + } + }, + { + "id":"98c05b10-a882-4d78-9db9-460e5c0e88b8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T06:32:17.628Z", + "completed":"2017-02-06T06:32:17.628Z", + "new_balance":"22541.73", + "value":"-106.81" + } + }, + { + "id":"b7850292-44d1-49de-96de-396c23ad00e7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T08:03:19.483Z", + "completed":"2017-02-06T08:03:19.483Z", + "new_balance":"22460.56", + "value":"-81.17" + } + }, + { + "id":"61c14895-17d6-4bb5-b971-ef6293682c15", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T16:44:42.711Z", + "completed":"2017-02-07T16:44:42.711Z", + "new_balance":"22432.53", + "value":"-28.03" + } + }, + { + "id":"af3bc7f6-bd7e-4084-bbd4-2fa2d6762c20", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T04:56:10.536Z", + "completed":"2017-02-08T04:56:10.536Z", + "new_balance":"22417.24", + "value":"-15.29" + } + }, + { + "id":"388697b8-a998-4ad5-acb1-b231d5c93f28", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T05:41:40.419Z", + "completed":"2017-02-09T05:41:40.419Z", + "new_balance":"22374.29", + "value":"-42.95" + } + }, + { + "id":"e3115642-d5d9-471b-919a-fdaed2534770", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T19:19:56.524Z", + "completed":"2017-02-11T19:19:56.524Z", + "new_balance":"22347.56", + "value":"-26.73" + } + }, + { + "id":"ad98b73d-9acf-451f-8874-332ca0c74f32", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T07:43:21.616Z", + "completed":"2017-02-13T07:43:21.616Z", + "new_balance":"22306.02", + "value":"-41.54" + } + }, + { + "id":"fe6d9438-4cd1-4a6f-a273-2a019e1be38f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T03:56:25.319Z", + "completed":"2017-02-17T03:56:25.319Z", + "new_balance":"22299.03", + "value":"-6.99" + } + }, + { + "id":"c11400bf-bc2e-4719-8fb2-9762aa639426", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T15:40:15.934Z", + "completed":"2017-02-19T15:40:15.934Z", + "new_balance":"22249.09", + "value":"-49.94" + } + }, + { + "id":"58e97b13-4960-4a69-90f7-d895bc03d6c2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T18:15:46.823Z", + "completed":"2017-02-21T18:15:46.823Z", + "new_balance":"22167.88", + "value":"-81.21" + } + }, + { + "id":"8b6bd957-e30d-49fe-b492-2470cf6c39c8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T23:13:51.498Z", + "completed":"2017-02-24T23:13:51.498Z", + "new_balance":"22139.90", + "value":"-27.98" + } + }, + { + "id":"11a9ee8a-542e-41b0-ac15-de2eb9e04097", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T15:06:37.421Z", + "completed":"2017-02-26T15:06:37.421Z", + "new_balance":"24490.11", + "value":"2350.21" + } + }, + { + "id":"96d4ba7a-9be7-4cb9-b865-fd3c135e58ea", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T10:11:10.886Z", + "completed":"2017-03-01T10:11:10.886Z", + "new_balance":"24443.21", + "value":"-46.90" + } + }, + { + "id":"aca9c57e-f5a6-4f19-bcd5-e9b03bddbb6d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T12:30:06.023Z", + "completed":"2017-03-01T12:30:06.023Z", + "new_balance":"24408.78", + "value":"-34.43" + } + }, + { + "id":"ae73867b-1349-4910-8918-ff191241cbd8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T18:34:28.681Z", + "completed":"2017-03-01T18:34:28.681Z", + "new_balance":"24374.35", + "value":"-34.43" + } + }, + { + "id":"c3a7d0d8-9d67-40dd-a430-09a1320eeee6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T21:50:05.653Z", + "completed":"2017-03-01T21:50:05.653Z", + "new_balance":"24269.63", + "value":"-104.72" + } + }, + { + "id":"c52ab963-4a0d-45d4-918d-1ed15afbd19a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T10:03:57.442Z", + "completed":"2017-03-09T10:03:57.442Z", + "new_balance":"24206.06", + "value":"-63.57" + } + }, + { + "id":"b2486187-48c4-4c29-b93d-c1f32e3af187", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T19:33:56.446Z", + "completed":"2017-03-09T19:33:56.446Z", + "new_balance":"24144.69", + "value":"-61.37" + } + }, + { + "id":"010b4cd6-6a29-4598-998c-91cf47b4a5c9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T05:49:59.474Z", + "completed":"2017-03-17T05:49:59.474Z", + "new_balance":"24056.20", + "value":"-88.49" + } + }, + { + "id":"be5cbf16-702c-40cf-bf67-1372a5362c26", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T01:26:17.462Z", + "completed":"2017-03-18T01:26:17.462Z", + "new_balance":"23974.41", + "value":"-81.79" + } + }, + { + "id":"06a2b875-ccb5-4501-b72a-f410e4861caf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T02:58:22.520Z", + "completed":"2017-03-18T02:58:22.520Z", + "new_balance":"23967.64", + "value":"-6.77" + } + }, + { + "id":"2f050621-f94f-416d-8c9c-d01e15f8ce01", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T15:46:44.790Z", + "completed":"2017-03-18T15:46:44.790Z", + "new_balance":"23922.17", + "value":"-45.47" + } + }, + { + "id":"611863c5-be6f-491d-bbcb-f233b553ddf9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T21:08:31.851Z", + "completed":"2017-03-18T21:08:31.851Z", + "new_balance":"23882.53", + "value":"-39.64" + } + }, + { + "id":"a53f9a7e-022d-4ab8-bbe6-ab9b205a084c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T04:21:21.457Z", + "completed":"2017-03-22T04:21:21.457Z", + "new_balance":"23778.34", + "value":"-104.19" + } + }, + { + "id":"e65384fe-9a96-4fd1-a4b4-511daf5401d0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T12:35:43.545Z", + "completed":"2017-03-29T12:35:43.545Z", + "new_balance":"23750.36", + "value":"-27.98" + } + }, + { + "id":"f3f2bb2c-0ba3-4719-b526-109b9e7dc764", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T16:59:00.336Z", + "completed":"2017-03-29T16:59:00.336Z", + "new_balance":"26100.57", + "value":"2350.21" + } + }, + { + "id":"b0f7bb0b-bedd-476f-9743-62a84a40c3ce", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T00:39:15.215Z", + "completed":"2017-03-31T00:39:15.215Z", + "new_balance":"25783.36", + "value":"-317.21" + } + }, + { + "id":"837bf623-7901-4f1b-a745-d96c91966cdf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T09:34:15.885Z", + "completed":"2017-04-01T09:34:15.885Z", + "new_balance":"25748.93", + "value":"-34.43" + } + }, + { + "id":"28e9c17d-4d86-44f0-b017-d30878a151d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T11:22:27.508Z", + "completed":"2017-04-01T11:22:27.508Z", + "new_balance":"25714.50", + "value":"-34.43" + } + }, + { + "id":"09f1e6da-726e-4850-ad3f-91d2aab11b26", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T17:43:01.791Z", + "completed":"2017-04-01T17:43:01.791Z", + "new_balance":"25609.78", + "value":"-104.72" + } + }, + { + "id":"9adfcda6-672b-45df-92b7-12343fb2b617", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T18:29:53.546Z", + "completed":"2017-04-01T18:29:53.546Z", + "new_balance":"25562.88", + "value":"-46.90" + } + }, + { + "id":"f27f6d22-c8fd-4f30-9957-4fc710263b6b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T06:59:29.128Z", + "completed":"2017-04-02T06:59:29.128Z", + "new_balance":"25468.55", + "value":"-94.33" + } + }, + { + "id":"b330fe95-a2c5-4de6-8dca-a6a6b4e75d9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T00:49:19.521Z", + "completed":"2017-04-05T00:49:19.521Z", + "new_balance":"25461.97", + "value":"-6.58" + } + }, + { + "id":"c7dc1fd8-eb66-4b6b-8b73-73094d05dece", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T04:36:37.834Z", + "completed":"2017-04-05T04:36:37.834Z", + "new_balance":"25407.13", + "value":"-54.84" + } + }, + { + "id":"6ab8f789-0d6c-4aab-935e-3f51e776464f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T12:19:55.398Z", + "completed":"2017-04-05T12:19:55.398Z", + "new_balance":"25365.70", + "value":"-41.43" + } + }, + { + "id":"b25e8214-5ddb-4178-a600-3061a3efe1e6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T12:54:54.664Z", + "completed":"2017-04-05T12:54:54.664Z", + "new_balance":"25361.06", + "value":"-4.64" + } + }, + { + "id":"04f0d223-462b-4005-b893-d6b1ad953cd3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T13:17:42.254Z", + "completed":"2017-04-05T13:17:42.254Z", + "new_balance":"25349.13", + "value":"-11.93" + } + }, + { + "id":"3f15931a-dbc8-4314-b0fa-a9c3b2f9dbb1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T23:01:39.485Z", + "completed":"2017-04-05T23:01:39.485Z", + "new_balance":"25314.70", + "value":"-34.43" + } + }, + { + "id":"b36a77f3-1481-425e-8d40-b8c7f64dba36", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T23:55:21.578Z", + "completed":"2017-04-05T23:55:21.578Z", + "new_balance":"25233.49", + "value":"-81.21" + } + }, + { + "id":"6fd9fb82-d4e2-431c-840c-e8f686ca44cf", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T09:33:26.363Z", + "completed":"2017-04-08T09:33:26.363Z", + "new_balance":"25135.57", + "value":"-97.92" + } + }, + { + "id":"770f4c35-985d-4a41-977a-3f5e6069b670", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T13:53:41.405Z", + "completed":"2017-04-10T13:53:41.405Z", + "new_balance":"25079.44", + "value":"-56.13" + } + }, + { + "id":"a5cf85be-64c5-42e9-a8e3-d663e4056183", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T05:08:40.206Z", + "completed":"2017-04-11T05:08:40.206Z", + "new_balance":"24998.23", + "value":"-81.21" + } + }, + { + "id":"f88fff26-b348-448a-bc76-6b5e29dde3ca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T23:42:44.787Z", + "completed":"2017-04-11T23:42:44.787Z", + "new_balance":"24970.78", + "value":"-27.45" + } + }, + { + "id":"8656ca2a-2de4-458f-9837-8b1340a7200c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T19:00:41.758Z", + "completed":"2017-04-13T19:00:41.758Z", + "new_balance":"24942.80", + "value":"-27.98" + } + }, + { + "id":"b5165850-f891-4cbc-afc2-c198a6f8b8d9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T10:57:20.343Z", + "completed":"2017-04-18T10:57:20.343Z", + "new_balance":"27293.01", + "value":"2350.21" + } + }, + { + "id":"2c474f99-08a5-4cf2-a018-a0d6ba132d64", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T18:58:57.099Z", + "completed":"2017-04-25T18:58:57.099Z", + "new_balance":"26975.80", + "value":"-317.21" + } + }, + { + "id":"c8dfd054-751a-4717-9d8f-7b7ef983786d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T03:01:57.411Z", + "completed":"2017-05-02T03:01:57.411Z", + "new_balance":"26928.90", + "value":"-46.90" + } + }, + { + "id":"d269942b-bdea-449b-ac04-b53dae40cbc6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T03:19:04.377Z", + "completed":"2017-05-02T03:19:04.377Z", + "new_balance":"26894.47", + "value":"-34.43" + } + }, + { + "id":"d90fb004-b069-4e7f-845f-c68488daaef2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:15:44.532Z", + "completed":"2017-05-02T10:15:44.532Z", + "new_balance":"26860.04", + "value":"-34.43" + } + }, + { + "id":"8806b293-2b4a-43bc-bf91-ea9da17eebe5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T19:34:45.501Z", + "completed":"2017-05-02T19:34:45.501Z", + "new_balance":"26755.32", + "value":"-104.72" + } + }, + { + "id":"3d910e91-3106-4435-8ad1-760550b2075f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T15:24:27.400Z", + "completed":"2017-05-04T15:24:27.400Z", + "new_balance":"26674.11", + "value":"-81.21" + } + }, + { + "id":"3c432bbb-4ff0-4bda-a602-37fb14541e91", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T17:12:18.679Z", + "completed":"2017-05-04T17:12:18.679Z", + "new_balance":"26667.53", + "value":"-6.58" + } + }, + { + "id":"28bc8fc0-3e5b-4b05-b973-e8be7ffbeae0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T13:10:05.358Z", + "completed":"2017-05-06T13:10:05.358Z", + "new_balance":"26587.32", + "value":"-80.21" + } + }, + { + "id":"0c0e0e36-1e53-4dcc-94c3-1fa163f5b901", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T12:56:41.924Z", + "completed":"2017-05-07T12:56:41.924Z", + "new_balance":"26492.99", + "value":"-94.33" + } + }, + { + "id":"50b7e7bd-2ac6-4f84-bf78-b0de18e9452a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T13:23:52.356Z", + "completed":"2017-05-07T13:23:52.356Z", + "new_balance":"26458.48", + "value":"-34.51" + } + }, + { + "id":"68659b75-63cb-4503-b6a5-c77a5af060ab", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T06:56:56.354Z", + "completed":"2017-05-09T06:56:56.354Z", + "new_balance":"26446.55", + "value":"-11.93" + } + }, + { + "id":"0873bf9d-30e4-40de-a727-9de5e8a24947", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T22:29:26.768Z", + "completed":"2017-05-09T22:29:26.768Z", + "new_balance":"26403.60", + "value":"-42.95" + } + }, + { + "id":"2df0452a-0466-4699-a483-9837645ee19f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T00:31:01.615Z", + "completed":"2017-05-13T00:31:01.615Z", + "new_balance":"26375.41", + "value":"-28.19" + } + }, + { + "id":"eddd6d30-66ad-4ac2-a646-37a567cda7c4", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T05:17:16.140Z", + "completed":"2017-05-13T05:17:16.140Z", + "new_balance":"26340.90", + "value":"-34.51" + } + }, + { + "id":"5f604b1e-71e6-431f-b376-1909e859bcfc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T17:00:27.163Z", + "completed":"2017-05-13T17:00:27.163Z", + "new_balance":"26334.32", + "value":"-6.58" + } + }, + { + "id":"4792c20c-cb8a-47d6-b246-4403741d003e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T09:35:50.692Z", + "completed":"2017-05-14T09:35:50.692Z", + "new_balance":"26269.09", + "value":"-65.23" + } + }, + { + "id":"449e29be-8cdd-4d77-87bc-93f9b8eca94d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T18:51:21.477Z", + "completed":"2017-05-14T18:51:21.477Z", + "new_balance":"26187.88", + "value":"-81.21" + } + }, + { + "id":"0cc9604f-654f-4b4e-8cd0-1b99d8a55c82", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T02:56:19.060Z", + "completed":"2017-05-15T02:56:19.060Z", + "new_balance":"26159.90", + "value":"-27.98" + } + }, + { + "id":"22042dee-0535-412a-a303-e9e0609ecee6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T04:47:10.645Z", + "completed":"2017-05-30T04:47:10.645Z", + "new_balance":"28510.11", + "value":"2350.21" + } + }, + { + "id":"2d987cae-bb2e-43f7-867d-6be5482249c8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T09:18:55.521Z", + "completed":"2017-05-30T09:18:55.521Z", + "new_balance":"28192.90", + "value":"-317.21" + } + }, + { + "id":"35546b8c-a880-4614-972a-c310c6b42af6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T08:38:45.181Z", + "completed":"2017-06-01T08:38:45.181Z", + "new_balance":"28146.00", + "value":"-46.90" + } + }, + { + "id":"936403be-a13e-44d9-86f0-5782271b3126", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T16:07:35.618Z", + "completed":"2017-06-01T16:07:35.618Z", + "new_balance":"28041.28", + "value":"-104.72" + } + }, + { + "id":"b932b199-6d9e-4723-af78-684ec18b452e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T17:59:39.887Z", + "completed":"2017-06-01T17:59:39.887Z", + "new_balance":"28006.85", + "value":"-34.43" + } + }, + { + "id":"e190dd12-130f-4249-ae4f-1a915dd54669", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T19:53:33.833Z", + "completed":"2017-06-01T19:53:33.833Z", + "new_balance":"27972.42", + "value":"-34.43" + } + }, + { + "id":"c217c8dd-5b2c-48fe-b8b9-7a7507534c3e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T05:05:23.506Z", + "completed":"2017-06-04T05:05:23.506Z", + "new_balance":"27908.85", + "value":"-63.57" + } + }, + { + "id":"709acfca-a43e-4b89-b39a-7e8770d9d2a8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T22:05:00.256Z", + "completed":"2017-06-04T22:05:00.256Z", + "new_balance":"27847.48", + "value":"-61.37" + } + }, + { + "id":"3a25f64b-fb3f-4db5-83e8-b3c6d2680c19", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T08:29:40.538Z", + "completed":"2017-06-11T08:29:40.538Z", + "new_balance":"27802.01", + "value":"-45.47" + } + }, + { + "id":"41ee6aa2-ffef-4898-b1a3-d0b160777fb9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:02:32.659Z", + "completed":"2017-06-11T14:02:32.659Z", + "new_balance":"27713.52", + "value":"-88.49" + } + }, + { + "id":"50ede450-fed3-47f8-9f6f-8f4b19d2d4a5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T20:03:45.397Z", + "completed":"2017-06-11T20:03:45.397Z", + "new_balance":"27631.73", + "value":"-81.79" + } + }, + { + "id":"667519fe-90cd-478c-8d47-d3fb152440ca", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T09:06:22.248Z", + "completed":"2017-06-12T09:06:22.248Z", + "new_balance":"27592.09", + "value":"-39.64" + } + }, + { + "id":"c520fa3d-cf44-41d3-8584-90e1377144d2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T11:17:46.560Z", + "completed":"2017-06-12T11:17:46.560Z", + "new_balance":"27585.32", + "value":"-6.77" + } + }, + { + "id":"1af71c61-43aa-4b1c-a59f-0f7c1412361b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T04:26:16.905Z", + "completed":"2017-06-16T04:26:16.905Z", + "new_balance":"27481.13", + "value":"-104.19" + } + }, + { + "id":"da9e0e14-f1b0-4958-9a38-dbd6af098d06", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T06:39:07.431Z", + "completed":"2017-06-29T06:39:07.431Z", + "new_balance":"27453.15", + "value":"-27.98" + } + }, + { + "id":"0ef30d41-90bc-4cac-a57b-ddf8c13fbcdb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T11:38:07.862Z", + "completed":"2017-06-30T11:38:07.862Z", + "new_balance":"27135.94", + "value":"-317.21" + } + }, + { + "id":"7931fecb-ebfb-4648-93d5-38c08b3a26c9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T14:33:59.172Z", + "completed":"2017-06-30T14:33:59.172Z", + "new_balance":"29486.15", + "value":"2350.21" + } + }, + { + "id":"378fc3b9-469e-46ab-9d35-8644e26a4c8f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T00:13:47.734Z", + "completed":"2017-07-01T00:13:47.734Z", + "new_balance":"29439.25", + "value":"-46.90" + } + }, + { + "id":"73d34686-d5b7-42f9-86dd-9dfddc577478", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T04:08:54.565Z", + "completed":"2017-07-01T04:08:54.565Z", + "new_balance":"29404.82", + "value":"-34.43" + } + }, + { + "id":"2adcace5-4df5-47f1-a051-83798f8090f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T04:28:53.874Z", + "completed":"2017-07-01T04:28:53.874Z", + "new_balance":"29370.39", + "value":"-34.43" + } + }, + { + "id":"769d96bc-f9fd-458d-9850-6c273de0d14f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T13:18:17.675Z", + "completed":"2017-07-01T13:18:17.675Z", + "new_balance":"29265.67", + "value":"-104.72" + } + }, + { + "id":"e2ed58b2-668a-497f-956a-e3be35f70746", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T05:47:34.736Z", + "completed":"2017-07-05T05:47:34.736Z", + "new_balance":"29198.22", + "value":"-67.45" + } + }, + { + "id":"4062cde0-e237-4706-aa3d-81cb69f626f5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T17:15:48.903Z", + "completed":"2017-07-05T17:15:48.903Z", + "new_balance":"29117.01", + "value":"-81.21" + } + }, + { + "id":"98be30b6-a0fc-4496-af1e-f55bd4b20dbd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T17:38:41.966Z", + "completed":"2017-07-08T17:38:41.966Z", + "new_balance":"29106.10", + "value":"-10.91" + } + }, + { + "id":"9615e8e8-bf5b-4eb5-872e-bbf22c3ffcf9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T17:17:29.175Z", + "completed":"2017-07-10T17:17:29.175Z", + "new_balance":"29059.64", + "value":"-46.46" + } + }, + { + "id":"5a9da2a1-68af-400f-8a25-1e452e9a5062", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T08:40:54.359Z", + "completed":"2017-07-12T08:40:54.359Z", + "new_balance":"29025.21", + "value":"-34.43" + } + }, + { + "id":"e860491a-1d39-452b-972e-1bee3c3be427", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T12:19:04.077Z", + "completed":"2017-07-12T12:19:04.077Z", + "new_balance":"28968.57", + "value":"-56.64" + } + }, + { + "id":"588f874b-e475-4857-92d0-50950531206d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T13:18:01.894Z", + "completed":"2017-07-13T13:18:01.894Z", + "new_balance":"28964.98", + "value":"-3.59" + } + }, + { + "id":"69bdf2b5-743e-4fd7-8c15-dc81c3da69b9", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T20:28:06.118Z", + "completed":"2017-07-13T20:28:06.118Z", + "new_balance":"28959.33", + "value":"-5.65" + } + }, + { + "id":"8210a2ce-e5c0-4c34-b60e-b2a1a053a834", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T02:26:02.846Z", + "completed":"2017-07-18T02:26:02.846Z", + "new_balance":"28876.24", + "value":"-83.09" + } + }, + { + "id":"e71b67a9-7bdd-4f55-81e8-a4397cdda155", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T18:58:34.665Z", + "completed":"2017-07-20T18:58:34.665Z", + "new_balance":"28794.80", + "value":"-81.44" + } + }, + { + "id":"e67cb1f5-a39b-4d96-8229-745984cb3ce2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T21:21:48.892Z", + "completed":"2017-07-20T21:21:48.892Z", + "new_balance":"28713.59", + "value":"-81.21" + } + }, + { + "id":"16282c7b-c4a5-4225-a319-ba60243342b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T18:46:47.798Z", + "completed":"2017-07-24T18:46:47.798Z", + "new_balance":"28686.14", + "value":"-27.45" + } + }, + { + "id":"c09bfc96-8b00-4e47-903f-9480e7c9117a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T17:27:46.134Z", + "completed":"2017-07-29T17:27:46.134Z", + "new_balance":"31036.35", + "value":"2350.21" + } + }, + { + "id":"0e543e86-9aad-4244-a8c8-d26427540044", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T21:49:12.893Z", + "completed":"2017-07-29T21:49:12.893Z", + "new_balance":"31008.37", + "value":"-27.98" + } + }, + { + "id":"f6934d51-5c8f-4819-a88d-6d6e11f4b6de", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T06:31:52.912Z", + "completed":"2017-07-30T06:31:52.912Z", + "new_balance":"30691.16", + "value":"-317.21" + } + }, + { + "id":"afcbf03f-45c2-4ec1-85f1-57eebd4c9d9a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:40:27.406Z", + "completed":"2017-08-01T09:40:27.406Z", + "new_balance":"30644.26", + "value":"-46.90" + } + }, + { + "id":"665d4a5d-9585-4c7d-aabe-ad97b1883959", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T11:30:22.628Z", + "completed":"2017-08-01T11:30:22.628Z", + "new_balance":"30609.83", + "value":"-34.43" + } + }, + { + "id":"365e854e-5ba6-4e25-bfe4-9c0b286280f6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:05:51.999Z", + "completed":"2017-08-01T21:05:51.999Z", + "new_balance":"30575.40", + "value":"-34.43" + } + }, + { + "id":"586ef854-8f54-4e90-9bd2-252e7eaea308", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T23:10:38.310Z", + "completed":"2017-08-01T23:10:38.310Z", + "new_balance":"30470.68", + "value":"-104.72" + } + }, + { + "id":"9c42f176-2679-4baa-a88c-dbe1e8db70d6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T22:23:34.801Z", + "completed":"2017-08-03T22:23:34.801Z", + "new_balance":"30463.96", + "value":"-6.72" + } + }, + { + "id":"5417ad96-3364-4ab9-9ee8-66f44f534a18", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T18:14:15.934Z", + "completed":"2017-08-04T18:14:15.934Z", + "new_balance":"30382.75", + "value":"-81.21" + } + }, + { + "id":"d2910ba7-c9d2-4600-b237-4bfcd4bff9fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T01:23:56.127Z", + "completed":"2017-08-08T01:23:56.127Z", + "new_balance":"30275.94", + "value":"-106.81" + } + }, + { + "id":"12e71e4c-b411-4f3a-981e-bc794ffb54fd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T10:49:22.333Z", + "completed":"2017-08-08T10:49:22.333Z", + "new_balance":"30194.77", + "value":"-81.17" + } + }, + { + "id":"20fbcd31-2147-40d2-b575-c34eb2fd2995", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T15:58:22.719Z", + "completed":"2017-08-08T15:58:22.719Z", + "new_balance":"30179.48", + "value":"-15.29" + } + }, + { + "id":"60abf04d-bfa0-4976-bfe0-a946a6408cb7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T19:21:34.297Z", + "completed":"2017-08-08T19:21:34.297Z", + "new_balance":"30151.45", + "value":"-28.03" + } + }, + { + "id":"e9c6ada3-9b8c-46ab-9579-f789fde26091", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T00:10:43.665Z", + "completed":"2017-08-09T00:10:43.665Z", + "new_balance":"30108.50", + "value":"-42.95" + } + }, + { + "id":"a754981a-c86c-44b6-9820-9b08e7769b37", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T22:32:48.694Z", + "completed":"2017-08-14T22:32:48.694Z", + "new_balance":"30081.77", + "value":"-26.73" + } + }, + { + "id":"0c3b2e38-d5dd-4cba-9c8f-2b4967de5867", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T20:56:30.882Z", + "completed":"2017-08-15T20:56:30.882Z", + "new_balance":"30040.23", + "value":"-41.54" + } + }, + { + "id":"0df50b9a-0072-4b4e-9e47-f6696b0aa1f8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T00:20:02.237Z", + "completed":"2017-08-19T00:20:02.237Z", + "new_balance":"30033.24", + "value":"-6.99" + } + }, + { + "id":"d9d69e3a-f4cc-475f-8d66-84f7e973d12d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T18:09:54.046Z", + "completed":"2017-08-22T18:09:54.046Z", + "new_balance":"29983.30", + "value":"-49.94" + } + }, + { + "id":"0917bdde-6d13-4b63-981e-0e9be8fc2395", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T21:06:27.795Z", + "completed":"2017-08-26T21:06:27.795Z", + "new_balance":"29902.09", + "value":"-81.21" + } + }, + { + "id":"766513a0-dc65-4e53-8013-bfeeb95e5ed7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T08:26:19.496Z", + "completed":"2017-08-28T08:26:19.496Z", + "new_balance":"29584.88", + "value":"-317.21" + } + }, + { + "id":"e47421a7-155a-4c15-bffe-9e99d36f73a7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T04:20:29.193Z", + "completed":"2017-08-29T04:20:29.193Z", + "new_balance":"31935.09", + "value":"2350.21" + } + }, + { + "id":"958bc7d1-ee8e-4a53-8be1-090ab338c449", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T07:28:25.326Z", + "completed":"2017-08-29T07:28:25.326Z", + "new_balance":"31907.11", + "value":"-27.98" + } + }, + { + "id":"1c25ee04-5add-41a2-80f2-dd3e1f32187c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T15:07:20.060Z", + "completed":"2017-08-30T15:07:20.060Z", + "new_balance":"31589.90", + "value":"-317.21" + } + }, + { + "id":"fcb89318-6d5d-406b-b383-afc65d5cea4f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T04:35:58.891Z", + "completed":"2017-09-01T04:35:58.891Z", + "new_balance":"31555.47", + "value":"-34.43" + } + }, + { + "id":"95e9e523-064a-478f-8994-61e912c287b0", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T05:44:32.277Z", + "completed":"2017-09-01T05:44:32.277Z", + "new_balance":"31508.57", + "value":"-46.90" + } + }, + { + "id":"ce550b9e-ea4c-4f6c-bb54-631d3f541bfc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T11:10:53.491Z", + "completed":"2017-09-01T11:10:53.491Z", + "new_balance":"31403.85", + "value":"-104.72" + } + }, + { + "id":"743ac99c-6a03-4429-87dc-b9826845051e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:35:17.222Z", + "completed":"2017-09-01T21:35:17.222Z", + "new_balance":"31369.42", + "value":"-34.43" + } + }, + { + "id":"71ac1ba0-141b-44b6-8ff1-fc88239f5f31", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T20:46:46.811Z", + "completed":"2017-09-09T20:46:46.811Z", + "new_balance":"31305.85", + "value":"-63.57" + } + }, + { + "id":"1a8e8190-51bf-47c9-a893-62423fdc98b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T22:40:22.904Z", + "completed":"2017-09-09T22:40:22.904Z", + "new_balance":"31244.48", + "value":"-61.37" + } + }, + { + "id":"8e9442eb-76db-4eeb-bf65-aa13e0d65132", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T21:15:36.764Z", + "completed":"2017-09-17T21:15:36.764Z", + "new_balance":"31155.99", + "value":"-88.49" + } + }, + { + "id":"aaaa9dca-8d14-47c2-b535-5122e8984e2b", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T03:22:30.958Z", + "completed":"2017-09-18T03:22:30.958Z", + "new_balance":"31116.35", + "value":"-39.64" + } + }, + { + "id":"e132bc3d-67a1-4641-a7d7-79cc315df465", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T07:15:10.585Z", + "completed":"2017-09-18T07:15:10.585Z", + "new_balance":"31109.58", + "value":"-6.77" + } + }, + { + "id":"d71c4430-9124-49e2-8280-083c361f0422", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:10:22.308Z", + "completed":"2017-09-18T10:10:22.308Z", + "new_balance":"31064.11", + "value":"-45.47" + } + }, + { + "id":"9ef920c0-c91d-4e4e-b540-1f1f766105c3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T16:46:39.723Z", + "completed":"2017-09-18T16:46:39.723Z", + "new_balance":"30982.32", + "value":"-81.79" + } + }, + { + "id":"65d1c906-62c9-48fc-a5fa-093c1d61c6e8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T23:26:32.942Z", + "completed":"2017-09-22T23:26:32.942Z", + "new_balance":"30878.13", + "value":"-104.19" + } + }, + { + "id":"65c50c9a-a38c-4fb9-b3a9-bd516bd8d4fb", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T02:42:22.583Z", + "completed":"2017-09-29T02:42:22.583Z", + "new_balance":"33228.34", + "value":"2350.21" + } + }, + { + "id":"d37aae81-798f-446e-b5c8-ca51d873f6e3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T14:15:20.602Z", + "completed":"2017-09-29T14:15:20.602Z", + "new_balance":"33200.36", + "value":"-27.98" + } + }, + { + "id":"812e9de4-6eb0-4c9f-96cc-2453d88e9809", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T05:11:13.147Z", + "completed":"2017-09-30T05:11:13.147Z", + "new_balance":"32883.15", + "value":"-317.21" + } + }, + { + "id":"2a857baf-8786-4764-90df-fbbb8d2f735f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T12:03:02.168Z", + "completed":"2017-10-01T12:03:02.168Z", + "new_balance":"32848.72", + "value":"-34.43" + } + }, + { + "id":"0ac15b37-2f1b-421c-9bed-dbdcc3eddb21", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T13:13:11.524Z", + "completed":"2017-10-01T13:13:11.524Z", + "new_balance":"32744.00", + "value":"-104.72" + } + }, + { + "id":"6e1d25e0-afa5-4928-bc01-7ceba1dbb3de", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T21:01:41.461Z", + "completed":"2017-10-01T21:01:41.461Z", + "new_balance":"32709.57", + "value":"-34.43" + } + }, + { + "id":"37fb71df-91ee-4d2f-99b2-c677689c7877", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T23:42:53.080Z", + "completed":"2017-10-01T23:42:53.080Z", + "new_balance":"32662.67", + "value":"-46.90" + } + }, + { + "id":"e6ade84e-70ea-48f9-9ff5-7b35c633a035", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T13:51:42.637Z", + "completed":"2017-10-02T13:51:42.637Z", + "new_balance":"32568.34", + "value":"-94.33" + } + }, + { + "id":"d67b9ff5-6854-4e4b-af81-059180dd1e00", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T00:45:43.230Z", + "completed":"2017-10-05T00:45:43.230Z", + "new_balance":"32533.91", + "value":"-34.43" + } + }, + { + "id":"251c42e1-73dd-46e6-9b01-47925ae68d77", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T02:08:37.532Z", + "completed":"2017-10-05T02:08:37.532Z", + "new_balance":"32452.70", + "value":"-81.21" + } + }, + { + "id":"17ad08c5-a6cc-404b-b3f3-043531aab7f8", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T03:30:16.413Z", + "completed":"2017-10-05T03:30:16.413Z", + "new_balance":"32411.27", + "value":"-41.43" + } + }, + { + "id":"68dd2490-ed9d-42e3-b80b-d17afe425f71", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T04:52:03.981Z", + "completed":"2017-10-05T04:52:03.981Z", + "new_balance":"32399.34", + "value":"-11.93" + } + }, + { + "id":"3ab040e4-c97b-4a2d-bc36-df7911dbd2ed", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T08:03:04.892Z", + "completed":"2017-10-05T08:03:04.892Z", + "new_balance":"32344.50", + "value":"-54.84" + } + }, + { + "id":"e98138bb-5207-46e9-8a53-8f0111ed5ece", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T15:39:54.872Z", + "completed":"2017-10-05T15:39:54.872Z", + "new_balance":"32337.92", + "value":"-6.58" + } + }, + { + "id":"6408a264-221a-4006-a111-a951d7c0c30a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T19:35:11.314Z", + "completed":"2017-10-05T19:35:11.314Z", + "new_balance":"32333.28", + "value":"-4.64" + } + }, + { + "id":"e5fc1aab-d62c-45e1-b5b6-eaf1559aae59", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T10:11:59.277Z", + "completed":"2017-10-09T10:11:59.277Z", + "new_balance":"32235.36", + "value":"-97.92" + } + }, + { + "id":"f333ea25-9de2-4da1-9e8a-44c0b5972b5c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T23:21:19.123Z", + "completed":"2017-10-11T23:21:19.123Z", + "new_balance":"32179.23", + "value":"-56.13" + } + }, + { + "id":"5aa90db8-b9b9-4c00-9447-30ffd9f31698", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T07:21:49.493Z", + "completed":"2017-10-12T07:21:49.493Z", + "new_balance":"32151.78", + "value":"-27.45" + } + }, + { + "id":"47a23a35-1cb0-4975-8b04-bfe979975e9c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T08:27:20.498Z", + "completed":"2017-10-12T08:27:20.498Z", + "new_balance":"32070.57", + "value":"-81.21" + } + }, + { + "id":"5f8ccb91-bb77-439a-9d0a-5cb97ec895da", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T04:29:51.741Z", + "completed":"2017-10-20T04:29:51.741Z", + "new_balance":"32042.59", + "value":"-27.98" + } + }, + { + "id":"69b4972f-e608-40e4-85f7-aa0fba3ea072", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T06:20:50.946Z", + "completed":"2017-10-29T06:20:50.946Z", + "new_balance":"34392.80", + "value":"2350.21" + } + }, + { + "id":"164362d7-7b99-4e5d-a2a7-92ea4075cae6", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T12:00:15.372Z", + "completed":"2017-10-30T12:00:15.372Z", + "new_balance":"34075.59", + "value":"-317.21" + } + }, + { + "id":"82e131d9-4008-4a69-98ec-514c247d3580", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T07:07:14.211Z", + "completed":"2017-11-02T07:07:14.211Z", + "new_balance":"34041.16", + "value":"-34.43" + } + }, + { + "id":"df3a4aa4-09e2-4f55-94a1-da43c37d610d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T11:36:53.291Z", + "completed":"2017-11-02T11:36:53.291Z", + "new_balance":"33936.44", + "value":"-104.72" + } + }, + { + "id":"7703e03a-94bb-4dd6-8d88-878f22a24666", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T17:04:17.286Z", + "completed":"2017-11-02T17:04:17.286Z", + "new_balance":"33889.54", + "value":"-46.90" + } + }, + { + "id":"bf9ec2cd-da8c-496c-ad71-f07bcb155cbc", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T23:47:06.780Z", + "completed":"2017-11-02T23:47:06.780Z", + "new_balance":"33855.11", + "value":"-34.43" + } + }, + { + "id":"2ae7d60b-a0c5-48f4-bb23-f10f728eaef3", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T12:28:12.755Z", + "completed":"2017-11-04T12:28:12.755Z", + "new_balance":"33848.53", + "value":"-6.58" + } + }, + { + "id":"98aff984-668a-4cfe-817f-38b1764dbe05", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T20:38:42.318Z", + "completed":"2017-11-04T20:38:42.318Z", + "new_balance":"33767.32", + "value":"-81.21" + } + }, + { + "id":"660f60ba-bd0a-4d15-846a-310aa0964c2f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T16:40:19.189Z", + "completed":"2017-11-06T16:40:19.189Z", + "new_balance":"33687.11", + "value":"-80.21" + } + }, + { + "id":"45146d2d-4f0b-41f5-8e84-4d9344a34249", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T12:57:28.250Z", + "completed":"2017-11-07T12:57:28.250Z", + "new_balance":"33592.78", + "value":"-94.33" + } + }, + { + "id":"077232a4-9d80-4293-85f9-c824c13e399f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T16:53:05.703Z", + "completed":"2017-11-07T16:53:05.703Z", + "new_balance":"33558.27", + "value":"-34.51" + } + }, + { + "id":"7195ed1d-7863-4a49-a7ad-ee10221aed22", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T01:02:45.467Z", + "completed":"2017-11-09T01:02:45.467Z", + "new_balance":"33546.34", + "value":"-11.93" + } + }, + { + "id":"af781639-f409-457e-a479-cb74221313e2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T12:40:21.766Z", + "completed":"2017-11-09T12:40:21.766Z", + "new_balance":"33503.39", + "value":"-42.95" + } + }, + { + "id":"5a819fcb-921e-42ed-80bf-a38ef635676e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T07:37:40.571Z", + "completed":"2017-11-13T07:37:40.571Z", + "new_balance":"33496.81", + "value":"-6.58" + } + }, + { + "id":"0e952f90-57ab-46d2-80e1-c27737edb407", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T14:50:47.163Z", + "completed":"2017-11-13T14:50:47.163Z", + "new_balance":"33462.30", + "value":"-34.51" + } + }, + { + "id":"289b46b0-14da-43b4-b622-438a0c970748", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T23:49:09.612Z", + "completed":"2017-11-13T23:49:09.612Z", + "new_balance":"33434.11", + "value":"-28.19" + } + }, + { + "id":"f0b7b75e-d876-41a7-aabd-9ea4af3ba89a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T13:33:34.135Z", + "completed":"2017-11-14T13:33:34.135Z", + "new_balance":"33368.88", + "value":"-65.23" + } + }, + { + "id":"e570f38d-a892-4b66-8903-05e4bf2bfd23", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T20:52:42.833Z", + "completed":"2017-11-14T20:52:42.833Z", + "new_balance":"33287.67", + "value":"-81.21" + } + }, + { + "id":"42d87be4-f4cd-4065-9325-5fd78b9a7c3f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T17:52:50.861Z", + "completed":"2017-11-15T17:52:50.861Z", + "new_balance":"33259.69", + "value":"-27.98" + } + }, + { + "id":"b961fbba-44f2-48cd-a822-07a411ab368f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T12:07:25.467Z", + "completed":"2017-11-30T12:07:25.467Z", + "new_balance":"32942.48", + "value":"-317.21" + } + }, + { + "id":"a4d5d607-1c3f-40b0-87f2-dc2142ea15b2", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T21:20:48.681Z", + "completed":"2017-11-30T21:20:48.681Z", + "new_balance":"35292.69", + "value":"2350.21" + } + }, + { + "id":"5ffece79-817f-4f0d-b560-20866f7dd98e", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T02:14:22.306Z", + "completed":"2017-12-01T02:14:22.306Z", + "new_balance":"35258.26", + "value":"-34.43" + } + }, + { + "id":"13e84fac-bf01-47a3-a99b-d3bfaaa9fd62", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T02:17:57.104Z", + "completed":"2017-12-01T02:17:57.104Z", + "new_balance":"35223.83", + "value":"-34.43" + } + }, + { + "id":"9bfe51a1-1d91-4ace-8152-2908f2b04b5f", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T03:42:22.724Z", + "completed":"2017-12-01T03:42:22.724Z", + "new_balance":"35119.11", + "value":"-104.72" + } + }, + { + "id":"2f4c0cb7-526c-4f70-907a-ef116f0b87ad", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T14:17:18.104Z", + "completed":"2017-12-01T14:17:18.104Z", + "new_balance":"35072.21", + "value":"-46.90" + } + }, + { + "id":"21a05ff9-70fd-41f9-883b-bb4dcf826346", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T00:22:36.794Z", + "completed":"2017-12-04T00:22:36.794Z", + "new_balance":"35010.84", + "value":"-61.37" + } + }, + { + "id":"019a6a2a-2ca2-46fe-8415-ad720fe2444a", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T08:07:02.565Z", + "completed":"2017-12-04T08:07:02.565Z", + "new_balance":"34947.27", + "value":"-63.57" + } + }, + { + "id":"7fe5c842-e72f-41ef-91ee-51c54b9f3492", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T06:37:43.367Z", + "completed":"2017-12-11T06:37:43.367Z", + "new_balance":"34865.48", + "value":"-81.79" + } + }, + { + "id":"df8ed218-c66c-4e82-bd1d-142346fdaa78", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T07:08:50.638Z", + "completed":"2017-12-11T07:08:50.638Z", + "new_balance":"34776.99", + "value":"-88.49" + } + }, + { + "id":"df819cdd-5a71-4a39-9942-82d9b96ac0bd", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T23:55:25.653Z", + "completed":"2017-12-11T23:55:25.653Z", + "new_balance":"34731.52", + "value":"-45.47" + } + }, + { + "id":"da168281-610b-4f3c-aa1f-b96bdc9700f1", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T12:25:50.873Z", + "completed":"2017-12-12T12:25:50.873Z", + "new_balance":"34724.75", + "value":"-6.77" + } + }, + { + "id":"9f91281f-dd11-4634-be18-9e1f714d83b5", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T13:23:46.222Z", + "completed":"2017-12-12T13:23:46.222Z", + "new_balance":"34685.11", + "value":"-39.64" + } + }, + { + "id":"321fa0b5-8550-4595-af00-4c07f5d5ade7", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T15:19:24.665Z", + "completed":"2017-12-16T15:19:24.665Z", + "new_balance":"34580.92", + "value":"-104.19" + } + }, + { + "id":"15260ebf-496f-4330-a448-13c4cf15f027", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T18:38:32.412Z", + "completed":"2017-12-29T18:38:32.412Z", + "new_balance":"34552.94", + "value":"-27.98" + } + }, + { + "id":"a0fd59d1-11a2-4859-aff5-c45baf8c403c", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T16:14:45.474Z", + "completed":"2017-12-30T16:14:45.474Z", + "new_balance":"34235.73", + "value":"-317.21" + } + }, + { + "id":"90873323-9a95-4e04-84be-2ffdabb6b59d", + "this_account":{ + "id":"66b119fb-5f83-4b4c-bcbd-3fe890b230ed", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T20:36:47.790Z", + "completed":"2017-12-30T20:36:47.790Z", + "new_balance":"36585.94", + "value":"2350.21" + } + }, + { + "id":"9393338b-1332-4773-a36b-447490e0ca9e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T07:18:16.117Z", + "completed":"2016-01-01T07:18:16.117Z", + "new_balance":"2982.33", + "value":"140.98" + } + }, + { + "id":"b078ae62-4cd1-4e44-8a3d-a21252db44f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T13:41:56.213Z", + "completed":"2016-01-01T13:41:56.213Z", + "new_balance":"3165.03", + "value":"182.70" + } + }, + { + "id":"546f58ee-36e9-4ced-ac7e-f62f1c5bd379", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T18:06:15.766Z", + "completed":"2016-01-02T18:06:15.766Z", + "new_balance":"3133.31", + "value":"-31.72" + } + }, + { + "id":"d36c5274-b4fa-44f6-a56c-b07d9b04d436", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T01:29:32.204Z", + "completed":"2016-01-03T01:29:32.204Z", + "new_balance":"3132.64", + "value":"-0.67" + } + }, + { + "id":"4453cf64-669d-4979-a4e5-57ebae5c8edb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T09:53:39.152Z", + "completed":"2016-01-03T09:53:39.152Z", + "new_balance":"3127.82", + "value":"-4.82" + } + }, + { + "id":"0698692f-ce60-4b8a-9c5d-34c9c51bfc91", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T19:26:07.181Z", + "completed":"2016-01-03T19:26:07.181Z", + "new_balance":"3126.08", + "value":"-1.74" + } + }, + { + "id":"90191752-193c-4c16-b410-d8fa86c2625e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T09:52:53.176Z", + "completed":"2016-01-04T09:52:53.176Z", + "new_balance":"3124.68", + "value":"-1.40" + } + }, + { + "id":"ac651c16-8607-4ce2-ba78-74953babc11e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T10:56:56.411Z", + "completed":"2016-01-05T10:56:56.411Z", + "new_balance":"3124.16", + "value":"-0.52" + } + }, + { + "id":"f5709095-1c6b-41ff-9abd-f5b038650e14", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T04:25:45.929Z", + "completed":"2016-01-07T04:25:45.929Z", + "new_balance":"3122.56", + "value":"-1.60" + } + }, + { + "id":"7070b3c5-668f-4d3d-bccf-38e882f260e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T23:23:52.987Z", + "completed":"2016-01-07T23:23:52.987Z", + "new_balance":"3119.97", + "value":"-2.59" + } + }, + { + "id":"bae1bc26-903a-4f09-9f4e-347cb05f0d0b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T02:30:01.113Z", + "completed":"2016-01-08T02:30:01.113Z", + "new_balance":"3118.29", + "value":"-1.68" + } + }, + { + "id":"db47cf64-73e7-4074-998b-08bd2cccabb0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T20:42:15.480Z", + "completed":"2016-01-08T20:42:15.480Z", + "new_balance":"3116.42", + "value":"-1.87" + } + }, + { + "id":"6584f2b2-f80d-4889-aadc-0ad1d77dacb5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T04:16:45.023Z", + "completed":"2016-01-09T04:16:45.023Z", + "new_balance":"3110.29", + "value":"-6.13" + } + }, + { + "id":"a5015a68-3f9a-4a41-964f-a9de633eeb0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T18:40:27.269Z", + "completed":"2016-01-09T18:40:27.269Z", + "new_balance":"3107.98", + "value":"-2.31" + } + }, + { + "id":"d26a963d-228b-418b-b3cd-149b8dc4d382", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T01:52:51.432Z", + "completed":"2016-01-10T01:52:51.432Z", + "new_balance":"3100.28", + "value":"-7.70" + } + }, + { + "id":"5c7a276f-e1c8-4fdc-9e06-3a014b3896a1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T08:28:49.995Z", + "completed":"2016-01-10T08:28:49.995Z", + "new_balance":"3095.75", + "value":"-4.53" + } + }, + { + "id":"4da322cf-2915-4a5b-842b-5fd3351f40dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T07:45:13.019Z", + "completed":"2016-01-11T07:45:13.019Z", + "new_balance":"3095.28", + "value":"-0.47" + } + }, + { + "id":"c9a4b352-d688-4836-836e-e4dcb286d747", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T10:26:59.421Z", + "completed":"2016-01-11T10:26:59.421Z", + "new_balance":"3089.80", + "value":"-5.48" + } + }, + { + "id":"55c9330b-819d-4555-9da9-e3ca4899eba0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T11:47:33.887Z", + "completed":"2016-01-11T11:47:33.887Z", + "new_balance":"3098.79", + "value":"8.99" + } + }, + { + "id":"163581b7-b208-449b-97b9-94bd742b428d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T05:57:12.581Z", + "completed":"2016-01-12T05:57:12.581Z", + "new_balance":"3097.98", + "value":"-0.81" + } + }, + { + "id":"af8d67e9-00fb-4be0-b32e-c7faabd266f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T15:30:14.015Z", + "completed":"2016-01-15T15:30:14.015Z", + "new_balance":"3095.55", + "value":"-2.43" + } + }, + { + "id":"60893485-db35-43b4-b768-47b90d3f8d79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T05:28:51.507Z", + "completed":"2016-01-16T05:28:51.507Z", + "new_balance":"3092.25", + "value":"-3.30" + } + }, + { + "id":"b05179c0-2f1e-4a6c-8490-cd0708b8a0fd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T08:36:46.936Z", + "completed":"2016-01-17T08:36:46.936Z", + "new_balance":"3090.68", + "value":"-1.57" + } + }, + { + "id":"9661b9d9-8b6c-4797-9cf6-2b3cf1876acf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T14:23:51.824Z", + "completed":"2016-01-20T14:23:51.824Z", + "new_balance":"3090.16", + "value":"-0.52" + } + }, + { + "id":"c5a432a5-3355-40a4-81ce-8ab16b36a152", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T01:28:03.511Z", + "completed":"2016-01-21T01:28:03.511Z", + "new_balance":"3086.44", + "value":"-3.72" + } + }, + { + "id":"7497dfb1-ac4c-4f08-81c9-45854051c2d0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T22:40:32.593Z", + "completed":"2016-01-23T22:40:32.593Z", + "new_balance":"3064.08", + "value":"-22.36" + } + }, + { + "id":"69f40a52-6245-43f0-a83d-f51ad73600d7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T22:09:30.443Z", + "completed":"2016-02-01T22:09:30.443Z", + "new_balance":"3205.06", + "value":"140.98" + } + }, + { + "id":"633cf383-38c0-4f1b-9e58-39415d1528c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T01:07:23.623Z", + "completed":"2016-02-03T01:07:23.623Z", + "new_balance":"3191.96", + "value":"-13.10" + } + }, + { + "id":"9ad0be54-0c7b-424c-9568-f86e7dd07979", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T06:41:34.090Z", + "completed":"2016-02-03T06:41:34.090Z", + "new_balance":"3160.24", + "value":"-31.72" + } + }, + { + "id":"b59b8a95-0510-4014-8c8a-e7854ca670fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T16:33:07.859Z", + "completed":"2016-02-04T16:33:07.859Z", + "new_balance":"3158.92", + "value":"-1.32" + } + }, + { + "id":"0f3b71e3-8787-4cba-b3f1-4909c7279ddd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T17:42:19.776Z", + "completed":"2016-02-05T17:42:19.776Z", + "new_balance":"3158.25", + "value":"-0.67" + } + }, + { + "id":"4dde2d7b-2f7b-4c00-b8e0-f71c2d88587b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T19:35:06.443Z", + "completed":"2016-02-06T19:35:06.443Z", + "new_balance":"3156.06", + "value":"-2.19" + } + }, + { + "id":"3405fe14-8925-4cda-bb98-919651ef3df8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T08:33:37.610Z", + "completed":"2016-02-07T08:33:37.610Z", + "new_balance":"3148.36", + "value":"-7.70" + } + }, + { + "id":"1cd6c75b-dfdc-4505-bad8-ad34b731e91c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T20:06:56.455Z", + "completed":"2016-02-07T20:06:56.455Z", + "new_balance":"3146.05", + "value":"-2.31" + } + }, + { + "id":"2d52e995-a1fb-4a50-80eb-0cf7f01f588f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T21:01:07.090Z", + "completed":"2016-02-07T21:01:07.090Z", + "new_balance":"3141.48", + "value":"-4.57" + } + }, + { + "id":"cdb308fe-473f-4795-a599-d6544ad276bb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T08:40:50.386Z", + "completed":"2016-02-08T08:40:50.386Z", + "new_balance":"3137.34", + "value":"-4.14" + } + }, + { + "id":"6362a7be-6e99-4d26-bbf5-70bd882e2c30", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T14:55:26.448Z", + "completed":"2016-02-09T14:55:26.448Z", + "new_balance":"3134.94", + "value":"-2.40" + } + }, + { + "id":"6a67c31d-f641-45aa-b08f-b45e8313f488", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T19:49:26.334Z", + "completed":"2016-02-10T19:49:26.334Z", + "new_balance":"3134.42", + "value":"-0.52" + } + }, + { + "id":"9d590e17-09be-446f-aed4-0eeee440dd46", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T21:13:25.910Z", + "completed":"2016-02-12T21:13:25.910Z", + "new_balance":"3131.54", + "value":"-2.88" + } + }, + { + "id":"a26b95f7-d161-49d4-b0fa-caedad259901", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T02:10:49.181Z", + "completed":"2016-02-14T02:10:49.181Z", + "new_balance":"3129.23", + "value":"-2.31" + } + }, + { + "id":"16c56e16-22e5-4011-9378-5797a11807b1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T11:27:15.701Z", + "completed":"2016-02-16T11:27:15.701Z", + "new_balance":"3124.62", + "value":"-4.61" + } + }, + { + "id":"bfe022d5-4836-42f5-8354-b33ccd7126fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T21:18:36.606Z", + "completed":"2016-02-16T21:18:36.606Z", + "new_balance":"3124.15", + "value":"-0.47" + } + }, + { + "id":"ee00e0e5-e6e4-45b4-b5c7-1336ccf8242f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T07:03:40.273Z", + "completed":"2016-02-18T07:03:40.273Z", + "new_balance":"3123.56", + "value":"-0.59" + } + }, + { + "id":"c3b634e0-bcff-4ff6-aa43-7d4d955226b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T12:15:38.597Z", + "completed":"2016-02-21T12:15:38.597Z", + "new_balance":"3119.84", + "value":"-3.72" + } + }, + { + "id":"2fd54a51-1979-4185-8ddc-b7da88532146", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T16:23:30.364Z", + "completed":"2016-02-21T16:23:30.364Z", + "new_balance":"3131.24", + "value":"11.40" + } + }, + { + "id":"da8362d4-ebdd-42cb-b718-9c19b4330bd8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T19:30:54.433Z", + "completed":"2016-02-27T19:30:54.433Z", + "new_balance":"3108.88", + "value":"-22.36" + } + }, + { + "id":"9987c259-7f8d-4add-aeae-1c7cb6182cdf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T20:29:05.441Z", + "completed":"2016-03-01T20:29:05.441Z", + "new_balance":"3249.86", + "value":"140.98" + } + }, + { + "id":"e7067dd4-73e3-4b6d-aa5f-edddd195dfa3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T10:31:35.906Z", + "completed":"2016-03-03T10:31:35.906Z", + "new_balance":"3218.14", + "value":"-31.72" + } + }, + { + "id":"4a22c16e-069c-453a-bf85-bca7461b1bb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T00:52:39.385Z", + "completed":"2016-03-04T00:52:39.385Z", + "new_balance":"3214.68", + "value":"-3.46" + } + }, + { + "id":"db85f7f4-e967-4280-b226-5725b8068576", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T13:58:12.290Z", + "completed":"2016-03-04T13:58:12.290Z", + "new_balance":"3210.07", + "value":"-4.61" + } + }, + { + "id":"6fafd843-e579-420d-ba14-c7e1683a0dfd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T17:52:37.293Z", + "completed":"2016-03-04T17:52:37.293Z", + "new_balance":"3208.02", + "value":"-2.05" + } + }, + { + "id":"e442ac25-0989-4808-a20f-5ee74be65faa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T21:15:05.873Z", + "completed":"2016-03-04T21:15:05.873Z", + "new_balance":"3204.72", + "value":"-3.30" + } + }, + { + "id":"e2fd7a7b-9378-4aed-8c60-0fcb7af106d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T01:36:11.228Z", + "completed":"2016-03-05T01:36:11.228Z", + "new_balance":"3203.42", + "value":"-1.30" + } + }, + { + "id":"009c7c25-5754-4a5e-a35f-84b42e54906e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T07:45:40.996Z", + "completed":"2016-03-05T07:45:40.996Z", + "new_balance":"3196.67", + "value":"-6.75" + } + }, + { + "id":"f5db4ac1-8092-43a2-9e64-73cb39c0881d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T19:36:10.335Z", + "completed":"2016-03-05T19:36:10.335Z", + "new_balance":"3188.97", + "value":"-7.70" + } + }, + { + "id":"51b39b72-0191-41fd-82fb-bddc0b197a79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T23:51:55.788Z", + "completed":"2016-03-05T23:51:55.788Z", + "new_balance":"3188.50", + "value":"-0.47" + } + }, + { + "id":"00664825-7f0f-4e8c-96c1-d62cc3c3eaf6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T06:40:35.626Z", + "completed":"2016-03-06T06:40:35.626Z", + "new_balance":"3181.86", + "value":"-6.64" + } + }, + { + "id":"14bf87f6-b3a0-474e-9131-a381496a28c2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T12:21:30.405Z", + "completed":"2016-03-06T12:21:30.405Z", + "new_balance":"3174.12", + "value":"-7.74" + } + }, + { + "id":"765d66bf-f438-4318-866e-d34d83f28cec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T16:17:05.213Z", + "completed":"2016-03-07T16:17:05.213Z", + "new_balance":"3173.32", + "value":"-0.80" + } + }, + { + "id":"1c12d1b2-b93f-4510-8380-e4b53d949a26", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T22:15:59.619Z", + "completed":"2016-03-07T22:15:59.619Z", + "new_balance":"3172.85", + "value":"-0.47" + } + }, + { + "id":"d1e16ae9-86f7-4c57-b883-1118c879ecc3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T07:19:36.002Z", + "completed":"2016-03-08T07:19:36.002Z", + "new_balance":"3172.08", + "value":"-0.77" + } + }, + { + "id":"6d130a6d-217e-4706-a325-68bf702c7159", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T14:12:03.521Z", + "completed":"2016-03-08T14:12:03.521Z", + "new_balance":"3171.28", + "value":"-0.80" + } + }, + { + "id":"91423df4-712a-4f9e-8782-72c00fcc5710", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T16:10:06.241Z", + "completed":"2016-03-10T16:10:06.241Z", + "new_balance":"3168.57", + "value":"-2.71" + } + }, + { + "id":"bd7275f9-9e1d-486f-9b39-647e38c590ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T00:03:13.119Z", + "completed":"2016-03-11T00:03:13.119Z", + "new_balance":"3166.97", + "value":"-1.60" + } + }, + { + "id":"8b2f55f0-40cc-4e49-ac85-5cff5bf4bdbb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T11:15:57.713Z", + "completed":"2016-03-11T11:15:57.713Z", + "new_balance":"3166.50", + "value":"-0.47" + } + }, + { + "id":"dfb44747-e0df-4457-bc1d-78426d298d70", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T14:18:07.210Z", + "completed":"2016-03-11T14:18:07.210Z", + "new_balance":"3163.78", + "value":"-2.72" + } + }, + { + "id":"22b67dad-a098-49a8-a501-0b5049181855", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T02:48:13.349Z", + "completed":"2016-03-12T02:48:13.349Z", + "new_balance":"3157.62", + "value":"-6.16" + } + }, + { + "id":"e71a2089-a135-4f60-9543-a2af4f216689", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T09:50:57.632Z", + "completed":"2016-03-12T09:50:57.632Z", + "new_balance":"3147.47", + "value":"-10.15" + } + }, + { + "id":"8698945f-7db4-4a75-a604-afe8256ad55a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T12:25:53.899Z", + "completed":"2016-03-12T12:25:53.899Z", + "new_balance":"3147.00", + "value":"-0.47" + } + }, + { + "id":"1913814d-fbed-4dd6-818f-d58704eb6261", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:47:54.557Z", + "completed":"2016-03-12T22:47:54.557Z", + "new_balance":"3144.41", + "value":"-2.59" + } + }, + { + "id":"29e52d4e-b7e0-47f1-a09c-cb4f1b865002", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T09:07:50.419Z", + "completed":"2016-03-13T09:07:50.419Z", + "new_balance":"3141.83", + "value":"-2.58" + } + }, + { + "id":"74dfc48e-f476-41e0-9228-20bcf07e0ce7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T09:39:00.858Z", + "completed":"2016-03-13T09:39:00.858Z", + "new_balance":"3141.36", + "value":"-0.47" + } + }, + { + "id":"1caafd3e-da8f-4560-b4a8-c8734dc4e606", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T03:36:34.655Z", + "completed":"2016-03-15T03:36:34.655Z", + "new_balance":"3136.44", + "value":"-4.92" + } + }, + { + "id":"e730dd9e-6f73-4221-9319-963cd73bc64f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T21:25:52.170Z", + "completed":"2016-03-15T21:25:52.170Z", + "new_balance":"3132.32", + "value":"-4.12" + } + }, + { + "id":"60c9f8df-e7b5-4d07-a83f-8240295b1e5c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T06:28:26.749Z", + "completed":"2016-03-17T06:28:26.749Z", + "new_balance":"3127.93", + "value":"-4.39" + } + }, + { + "id":"39fb4ea9-1137-4522-8b68-2f82ff125b11", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T05:12:59.927Z", + "completed":"2016-03-18T05:12:59.927Z", + "new_balance":"3118.32", + "value":"-9.61" + } + }, + { + "id":"5676c9ab-850a-4bf9-86f7-6cff12e23716", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T20:07:07.423Z", + "completed":"2016-03-20T20:07:07.423Z", + "new_balance":"3105.96", + "value":"-12.36" + } + }, + { + "id":"7b9509f8-989d-49c2-9e30-0f9e46eb1891", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T00:05:47.821Z", + "completed":"2016-03-22T00:05:47.821Z", + "new_balance":"3102.49", + "value":"-3.47" + } + }, + { + "id":"44706eb0-ef0d-4b42-811b-432529a24751", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T02:36:56.034Z", + "completed":"2016-03-25T02:36:56.034Z", + "new_balance":"3101.34", + "value":"-1.15" + } + }, + { + "id":"a843bed1-46b3-411b-b7e4-5d2715a791eb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T11:41:11.853Z", + "completed":"2016-03-25T11:41:11.853Z", + "new_balance":"3100.87", + "value":"-0.47" + } + }, + { + "id":"8ddbb26e-eaea-4f49-9c75-1f2151abf602", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T05:49:46.936Z", + "completed":"2016-03-26T05:49:46.936Z", + "new_balance":"3099.52", + "value":"-1.35" + } + }, + { + "id":"1a096885-a777-44d8-b824-282574c563f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T10:44:54.033Z", + "completed":"2016-03-26T10:44:54.033Z", + "new_balance":"3097.13", + "value":"-2.39" + } + }, + { + "id":"6a901b92-97ec-44fd-89fa-082d5b3f6aca", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T11:36:10.210Z", + "completed":"2016-03-27T11:36:10.210Z", + "new_balance":"3095.93", + "value":"-1.20" + } + }, + { + "id":"d8c50666-ae4b-4c12-b782-0298c51d0818", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T23:26:32.363Z", + "completed":"2016-03-28T23:26:32.363Z", + "new_balance":"3092.21", + "value":"-3.72" + } + }, + { + "id":"2de544f1-6ba0-4464-a756-675e9f9f0d48", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T17:19:34.025Z", + "completed":"2016-03-31T17:19:34.025Z", + "new_balance":"3069.85", + "value":"-22.36" + } + }, + { + "id":"1562780d-b6c2-437e-9b37-0bab336b647a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T09:58:22.043Z", + "completed":"2016-04-01T09:58:22.043Z", + "new_balance":"3210.83", + "value":"140.98" + } + }, + { + "id":"80b5fa80-573b-4b39-8adc-feea48de56fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T16:19:56.347Z", + "completed":"2016-04-01T16:19:56.347Z", + "new_balance":"3393.53", + "value":"182.70" + } + }, + { + "id":"2c652554-858c-4ea3-aa54-307a9df9b73d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T20:12:54.821Z", + "completed":"2016-04-01T20:12:54.821Z", + "new_balance":"3361.81", + "value":"-31.72" + } + }, + { + "id":"5ac79682-c02a-4bad-8ef9-3141b716fb34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T04:56:27.655Z", + "completed":"2016-04-03T04:56:27.655Z", + "new_balance":"3356.99", + "value":"-4.82" + } + }, + { + "id":"5de616af-8454-4ce5-b0b1-4999d3fc66f3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T10:49:26.590Z", + "completed":"2016-04-03T10:49:26.590Z", + "new_balance":"3355.25", + "value":"-1.74" + } + }, + { + "id":"23526399-e351-4205-9399-50341d766dd2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T19:39:00.622Z", + "completed":"2016-04-03T19:39:00.622Z", + "new_balance":"3354.58", + "value":"-0.67" + } + }, + { + "id":"1db646c1-cabd-4973-a7fe-6cff6187879c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T06:50:26.640Z", + "completed":"2016-04-05T06:50:26.640Z", + "new_balance":"3353.18", + "value":"-1.40" + } + }, + { + "id":"17a76b13-d2ee-4372-ac69-36107393dc1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T07:41:46.122Z", + "completed":"2016-04-05T07:41:46.122Z", + "new_balance":"3352.66", + "value":"-0.52" + } + }, + { + "id":"05acfce0-f332-46ce-856f-3d8f549001b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T16:36:57.157Z", + "completed":"2016-04-06T16:36:57.157Z", + "new_balance":"3351.06", + "value":"-1.60" + } + }, + { + "id":"6cc033e6-7d0b-4202-a28e-afc53f496d34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T04:37:14.253Z", + "completed":"2016-04-09T04:37:14.253Z", + "new_balance":"3348.47", + "value":"-2.59" + } + }, + { + "id":"1d9e5c4f-0d07-4619-af0a-5e5dafc174dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T12:28:02.744Z", + "completed":"2016-04-10T12:28:02.744Z", + "new_balance":"3346.79", + "value":"-1.68" + } + }, + { + "id":"8af3f2d1-da06-45a3-9d8a-a156503244dd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T02:54:53.947Z", + "completed":"2016-04-11T02:54:53.947Z", + "new_balance":"3344.92", + "value":"-1.87" + } + }, + { + "id":"c35cb875-a3c3-42ad-a338-9074ebac327d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T13:18:54.348Z", + "completed":"2016-04-11T13:18:54.348Z", + "new_balance":"3342.61", + "value":"-2.31" + } + }, + { + "id":"f95d42e3-abd0-4ba3-9281-c3f997f8fa54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T07:58:18.411Z", + "completed":"2016-04-13T07:58:18.411Z", + "new_balance":"3336.48", + "value":"-6.13" + } + }, + { + "id":"7feed4fc-7f73-41a7-bc96-35491156b72c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T10:42:13.665Z", + "completed":"2016-04-13T10:42:13.665Z", + "new_balance":"3328.78", + "value":"-7.70" + } + }, + { + "id":"1e01ef79-0012-44f3-92a0-886cd2b17839", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T11:42:01.966Z", + "completed":"2016-04-15T11:42:01.966Z", + "new_balance":"3324.25", + "value":"-4.53" + } + }, + { + "id":"7c8ec387-1d59-4e1f-af6d-5670446e7c10", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T03:06:55.176Z", + "completed":"2016-04-16T03:06:55.176Z", + "new_balance":"3323.44", + "value":"-0.81" + } + }, + { + "id":"b8f3134f-f02d-4fe0-9894-184655646bdb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T09:00:40.586Z", + "completed":"2016-04-16T09:00:40.586Z", + "new_balance":"3322.97", + "value":"-0.47" + } + }, + { + "id":"66ee6760-eae6-4265-bf4d-599e9a28af7f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:36:18.623Z", + "completed":"2016-04-18T16:36:18.623Z", + "new_balance":"3317.49", + "value":"-5.48" + } + }, + { + "id":"07a1327c-ec53-46dd-b312-2e74a8639216", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T17:50:44.238Z", + "completed":"2016-04-23T17:50:44.238Z", + "new_balance":"3315.06", + "value":"-2.43" + } + }, + { + "id":"1a3b2253-0c09-4d0c-85ef-120eaee2584c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T07:22:30.985Z", + "completed":"2016-04-24T07:22:30.985Z", + "new_balance":"3313.49", + "value":"-1.57" + } + }, + { + "id":"80f27eb4-b3fb-4d5b-81b9-04898c848f2f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T21:15:22.984Z", + "completed":"2016-04-24T21:15:22.984Z", + "new_balance":"3310.19", + "value":"-3.30" + } + }, + { + "id":"e2a87e6e-6671-4a9c-9a84-adc68b456789", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T10:13:43.684Z", + "completed":"2016-04-26T10:13:43.684Z", + "new_balance":"3309.67", + "value":"-0.52" + } + }, + { + "id":"c12475ed-ce11-42f9-a446-faa999084f46", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T20:56:24.979Z", + "completed":"2016-04-28T20:56:24.979Z", + "new_balance":"3287.31", + "value":"-22.36" + } + }, + { + "id":"1fd4a605-2e02-4523-8a8a-1220411e0122", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T21:41:24.527Z", + "completed":"2016-04-28T21:41:24.527Z", + "new_balance":"3283.59", + "value":"-3.72" + } + }, + { + "id":"18e22a9b-c185-48a8-a1cf-c5d05cf864c6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T02:45:26.926Z", + "completed":"2016-05-02T02:45:26.926Z", + "new_balance":"3282.92", + "value":"-0.67" + } + }, + { + "id":"87d2cd35-0e26-4630-8e78-0ef59b423a52", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T04:10:18.420Z", + "completed":"2016-05-02T04:10:18.420Z", + "new_balance":"3251.20", + "value":"-31.72" + } + }, + { + "id":"4214d394-4889-4ac6-982b-aca71f1a6736", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T12:54:08.700Z", + "completed":"2016-05-02T12:54:08.700Z", + "new_balance":"3238.10", + "value":"-13.10" + } + }, + { + "id":"39bb765e-7644-457b-a8eb-07deb963ed2e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T19:07:06.654Z", + "completed":"2016-05-02T19:07:06.654Z", + "new_balance":"3236.78", + "value":"-1.32" + } + }, + { + "id":"ca1f1ca7-5555-4b4f-9d75-eabdfccf19e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T09:32:08.445Z", + "completed":"2016-05-06T09:32:08.445Z", + "new_balance":"3234.47", + "value":"-2.31" + } + }, + { + "id":"2a7f6470-dc24-4743-af85-810365d17b05", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T21:24:44.210Z", + "completed":"2016-05-06T21:24:44.210Z", + "new_balance":"3232.28", + "value":"-2.19" + } + }, + { + "id":"6b67ab7b-c831-4d8c-b7eb-ec6c53ec5666", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T09:24:01.954Z", + "completed":"2016-05-07T09:24:01.954Z", + "new_balance":"3227.71", + "value":"-4.57" + } + }, + { + "id":"3e5b81c0-7952-42ba-bf8e-30c19a2eae8f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T23:24:05.182Z", + "completed":"2016-05-07T23:24:05.182Z", + "new_balance":"3220.01", + "value":"-7.70" + } + }, + { + "id":"e1d931f6-4dc8-4e64-a8e8-ccf95458a22a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T14:12:02.761Z", + "completed":"2016-05-09T14:12:02.761Z", + "new_balance":"3360.99", + "value":"140.98" + } + }, + { + "id":"f200f1c6-7d80-4431-a6f1-25248806c819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T01:37:21.730Z", + "completed":"2016-05-14T01:37:21.730Z", + "new_balance":"3358.59", + "value":"-2.40" + } + }, + { + "id":"9531f45d-6f1b-4780-b9e7-40294acdd5fe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T14:22:44.040Z", + "completed":"2016-05-14T14:22:44.040Z", + "new_balance":"3354.45", + "value":"-4.14" + } + }, + { + "id":"20972116-f2f7-4e4a-b836-eafc62a267b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T02:15:53.821Z", + "completed":"2016-05-16T02:15:53.821Z", + "new_balance":"3353.93", + "value":"-0.52" + } + }, + { + "id":"a3cebc14-dad5-491b-b4be-6683b67dea74", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T16:47:02.072Z", + "completed":"2016-05-21T16:47:02.072Z", + "new_balance":"3351.05", + "value":"-2.88" + } + }, + { + "id":"dfb0ebba-b2e0-4691-a1d8-dc254835ae62", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T01:11:19.549Z", + "completed":"2016-05-23T01:11:19.549Z", + "new_balance":"3348.74", + "value":"-2.31" + } + }, + { + "id":"8b872ca8-229c-4269-8876-1f54295ac422", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T20:53:20.811Z", + "completed":"2016-05-23T20:53:20.811Z", + "new_balance":"3348.27", + "value":"-0.47" + } + }, + { + "id":"a7931734-d054-494b-8837-b032974787e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T22:21:09.244Z", + "completed":"2016-05-24T22:21:09.244Z", + "new_balance":"3343.66", + "value":"-4.61" + } + }, + { + "id":"301c32c1-43f6-4eab-b26e-918aae45060a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T12:30:36.451Z", + "completed":"2016-05-27T12:30:36.451Z", + "new_balance":"3343.07", + "value":"-0.59" + } + }, + { + "id":"f6d4e689-f321-446f-a752-1b8f6e9c8f8d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T10:23:16.557Z", + "completed":"2016-05-30T10:23:16.557Z", + "new_balance":"3339.35", + "value":"-3.72" + } + }, + { + "id":"3e701913-eeca-4d5f-9d89-1a16817f7d58", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T21:04:58.361Z", + "completed":"2016-05-30T21:04:58.361Z", + "new_balance":"3316.99", + "value":"-22.36" + } + }, + { + "id":"12c8676b-0c6e-406a-a0da-4d1ab66a1fa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T04:52:21.953Z", + "completed":"2016-06-01T04:52:21.953Z", + "new_balance":"3285.27", + "value":"-31.72" + } + }, + { + "id":"7559bd3f-4bce-4fa4-9d38-b6ea83b96129", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T11:05:22.809Z", + "completed":"2016-06-01T11:05:22.809Z", + "new_balance":"3426.25", + "value":"140.98" + } + }, + { + "id":"ad96741c-eb18-4f4d-86df-0228e09ea965", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:38:24.292Z", + "completed":"2016-06-04T04:38:24.292Z", + "new_balance":"3422.79", + "value":"-3.46" + } + }, + { + "id":"77af6cc4-1756-4b34-b9b1-3a08f725d8ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T05:38:57.393Z", + "completed":"2016-06-04T05:38:57.393Z", + "new_balance":"3420.74", + "value":"-2.05" + } + }, + { + "id":"f8731736-d198-4a7a-b912-303a8f610948", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T04:48:02.077Z", + "completed":"2016-06-11T04:48:02.077Z", + "new_balance":"3417.44", + "value":"-3.30" + } + }, + { + "id":"e7fda94c-fddc-41fd-ab80-5ede882bc422", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T18:29:21.567Z", + "completed":"2016-06-11T18:29:21.567Z", + "new_balance":"3412.83", + "value":"-4.61" + } + }, + { + "id":"872ca81c-637d-42bd-86ff-25377e1cf089", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T00:32:38.501Z", + "completed":"2016-06-12T00:32:38.501Z", + "new_balance":"3411.53", + "value":"-1.30" + } + }, + { + "id":"997219d3-5bad-4285-804b-dddbf6458a0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T18:20:20.650Z", + "completed":"2016-06-12T18:20:20.650Z", + "new_balance":"3403.83", + "value":"-7.70" + } + }, + { + "id":"a93fdfc1-01b2-452b-af23-01b13e3ecfa0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T21:54:38.461Z", + "completed":"2016-06-12T21:54:38.461Z", + "new_balance":"3403.36", + "value":"-0.47" + } + }, + { + "id":"532d7457-05a0-4611-a465-d5612c4d0dcb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T10:11:45.060Z", + "completed":"2016-06-13T10:11:45.060Z", + "new_balance":"3396.61", + "value":"-6.75" + } + }, + { + "id":"fdb17273-5ccc-4127-a85e-aa4619579351", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T16:16:25.873Z", + "completed":"2016-06-13T16:16:25.873Z", + "new_balance":"3388.87", + "value":"-7.74" + } + }, + { + "id":"ec53d464-f190-4338-8132-dddeac47762d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:25:50.608Z", + "completed":"2016-06-13T22:25:50.608Z", + "new_balance":"3382.23", + "value":"-6.64" + } + }, + { + "id":"8c395d74-ba8c-451b-ac72-c19d5c0f5a75", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T00:29:28.453Z", + "completed":"2016-06-14T00:29:28.453Z", + "new_balance":"3381.76", + "value":"-0.47" + } + }, + { + "id":"4710f96e-a474-4cd5-b10d-47a241c1b838", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T04:28:29.889Z", + "completed":"2016-06-14T04:28:29.889Z", + "new_balance":"3380.96", + "value":"-0.80" + } + }, + { + "id":"16cde4c3-ff49-4173-9156-12e474eb26c3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T23:38:46.326Z", + "completed":"2016-06-14T23:38:46.326Z", + "new_balance":"3380.16", + "value":"-0.80" + } + }, + { + "id":"8f987044-26de-453d-ad34-58970553be0f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T08:15:19.802Z", + "completed":"2016-06-15T08:15:19.802Z", + "new_balance":"3379.69", + "value":"-0.47" + } + }, + { + "id":"c9465a05-8234-4480-b1b2-9fe0b445e908", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T15:13:05.962Z", + "completed":"2016-06-15T15:13:05.962Z", + "new_balance":"3378.92", + "value":"-0.77" + } + }, + { + "id":"75d05ffb-03c8-44b3-b98c-c1ce25dc1131", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T20:16:04.345Z", + "completed":"2016-06-15T20:16:04.345Z", + "new_balance":"3376.21", + "value":"-2.71" + } + }, + { + "id":"b84e9e4e-08ee-434d-87cf-5b60104462fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T01:06:47.191Z", + "completed":"2016-06-16T01:06:47.191Z", + "new_balance":"3373.49", + "value":"-2.72" + } + }, + { + "id":"e26a4778-ebef-4b67-a73f-4bbd3855965c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T04:23:02.909Z", + "completed":"2016-06-17T04:23:02.909Z", + "new_balance":"3371.89", + "value":"-1.60" + } + }, + { + "id":"a58b8d68-0a87-4958-b43c-02f29a3d64d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T01:13:15.660Z", + "completed":"2016-06-18T01:13:15.660Z", + "new_balance":"3371.42", + "value":"-0.47" + } + }, + { + "id":"e68253bb-3214-4bed-9b92-840d4a7d49aa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T01:35:42.825Z", + "completed":"2016-06-18T01:35:42.825Z", + "new_balance":"3361.27", + "value":"-10.15" + } + }, + { + "id":"73b731b7-72e8-4983-9f25-b5ad5c15fbb8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T13:55:29.597Z", + "completed":"2016-06-18T13:55:29.597Z", + "new_balance":"3360.80", + "value":"-0.47" + } + }, + { + "id":"28c463a4-0da9-408c-b9b4-f35727dfa893", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T14:04:48.390Z", + "completed":"2016-06-18T14:04:48.390Z", + "new_balance":"3354.64", + "value":"-6.16" + } + }, + { + "id":"cb7a2667-51c6-42f2-914d-9207d5dc2c03", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T15:26:18.529Z", + "completed":"2016-06-18T15:26:18.529Z", + "new_balance":"3352.05", + "value":"-2.59" + } + }, + { + "id":"920b46ea-cfb4-42e2-97e9-46c5a1dc4520", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T20:25:58.644Z", + "completed":"2016-06-18T20:25:58.644Z", + "new_balance":"3349.47", + "value":"-2.58" + } + }, + { + "id":"60ac95ad-7e5d-4e0f-a99b-94daedf2c05f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:12:17.796Z", + "completed":"2016-06-19T03:12:17.796Z", + "new_balance":"3345.08", + "value":"-4.39" + } + }, + { + "id":"f199bcb1-752b-4883-ba11-da41a630cf42", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T10:17:20.111Z", + "completed":"2016-06-19T10:17:20.111Z", + "new_balance":"3340.96", + "value":"-4.12" + } + }, + { + "id":"eca5e87a-c5d9-45d2-876a-2bab28f98ca5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T18:04:20.734Z", + "completed":"2016-06-19T18:04:20.734Z", + "new_balance":"3336.04", + "value":"-4.92" + } + }, + { + "id":"0d8ad179-39c6-4e79-8014-07d3e3f2673e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T09:32:21.823Z", + "completed":"2016-06-21T09:32:21.823Z", + "new_balance":"3323.68", + "value":"-12.36" + } + }, + { + "id":"967f7d01-e38b-444a-b550-789b5abc6d5e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T22:06:29.040Z", + "completed":"2016-06-21T22:06:29.040Z", + "new_balance":"3314.07", + "value":"-9.61" + } + }, + { + "id":"00d587b2-6414-419c-a2a9-c09fc38c25af", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T05:03:19.569Z", + "completed":"2016-06-22T05:03:19.569Z", + "new_balance":"3310.60", + "value":"-3.47" + } + }, + { + "id":"fa41240a-24f5-47f7-9a58-acb5e2cd59da", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T09:47:20.712Z", + "completed":"2016-06-22T09:47:20.712Z", + "new_balance":"3310.13", + "value":"-0.47" + } + }, + { + "id":"ba64f874-515b-4d0b-857e-96834d66b88c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T14:51:33.586Z", + "completed":"2016-06-22T14:51:33.586Z", + "new_balance":"3308.98", + "value":"-1.15" + } + }, + { + "id":"af586e12-0db2-4116-9d51-bf75c93168fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T14:55:00.064Z", + "completed":"2016-06-23T14:55:00.064Z", + "new_balance":"3307.63", + "value":"-1.35" + } + }, + { + "id":"5e915ce0-b615-4baf-834e-041cc36c7f02", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T09:05:03.180Z", + "completed":"2016-06-24T09:05:03.180Z", + "new_balance":"3305.24", + "value":"-2.39" + } + }, + { + "id":"f25bcf32-33b3-4a98-998a-d5cdf51e4f52", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T06:38:57.078Z", + "completed":"2016-06-26T06:38:57.078Z", + "new_balance":"3304.04", + "value":"-1.20" + } + }, + { + "id":"bbf6161a-8662-4f64-a09b-982382a9f9d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T04:07:46.904Z", + "completed":"2016-06-30T04:07:46.904Z", + "new_balance":"3300.32", + "value":"-3.72" + } + }, + { + "id":"84234859-b2d3-4aa4-a10d-185d74e58032", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T17:03:29.805Z", + "completed":"2016-06-30T17:03:29.805Z", + "new_balance":"3277.96", + "value":"-22.36" + } + }, + { + "id":"fd1fe79a-a32a-4995-9131-c7ffaa6784ea", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T10:14:55.103Z", + "completed":"2016-07-01T10:14:55.103Z", + "new_balance":"3460.66", + "value":"182.70" + } + }, + { + "id":"5a55b14d-669d-4af1-be76-d82e7723f7ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T18:40:56.537Z", + "completed":"2016-07-01T18:40:56.537Z", + "new_balance":"3601.64", + "value":"140.98" + } + }, + { + "id":"5b9dba2b-8e02-4dcb-b21d-ba9bda2a84d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T23:51:12.722Z", + "completed":"2016-07-03T23:51:12.722Z", + "new_balance":"3569.92", + "value":"-31.72" + } + }, + { + "id":"c26013b5-62ff-44b8-91d7-fe8b57bea9ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T08:44:33.545Z", + "completed":"2016-07-04T08:44:33.545Z", + "new_balance":"3565.10", + "value":"-4.82" + } + }, + { + "id":"d813009a-287c-4186-b3e0-3bf18ca5405b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T17:27:08.006Z", + "completed":"2016-07-04T17:27:08.006Z", + "new_balance":"3564.43", + "value":"-0.67" + } + }, + { + "id":"edbb2747-c48c-483a-b6dd-ec3dd0159ae8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T22:39:39.614Z", + "completed":"2016-07-04T22:39:39.614Z", + "new_balance":"3562.69", + "value":"-1.74" + } + }, + { + "id":"0bd10b26-885d-4c60-9431-db5ad9803526", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T21:55:04.830Z", + "completed":"2016-07-05T21:55:04.830Z", + "new_balance":"3561.29", + "value":"-1.40" + } + }, + { + "id":"34d7aaae-c93e-4e9e-adfc-fb32d950be22", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T14:20:53.903Z", + "completed":"2016-07-07T14:20:53.903Z", + "new_balance":"3560.77", + "value":"-0.52" + } + }, + { + "id":"3923488d-981e-4aa2-83d1-ad227f5b4396", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T00:29:19.097Z", + "completed":"2016-07-11T00:29:19.097Z", + "new_balance":"3558.90", + "value":"-1.87" + } + }, + { + "id":"d1841b8b-e407-4088-9190-cae7f5ed5718", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T01:23:20.580Z", + "completed":"2016-07-11T01:23:20.580Z", + "new_balance":"3556.59", + "value":"-2.31" + } + }, + { + "id":"78442e0d-344c-4aed-a00c-0349807057ad", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T03:44:46.119Z", + "completed":"2016-07-11T03:44:46.119Z", + "new_balance":"3554.99", + "value":"-1.60" + } + }, + { + "id":"7d16cc10-f334-4bb9-a1b8-bfeb879220a5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T17:41:56.968Z", + "completed":"2016-07-11T17:41:56.968Z", + "new_balance":"3553.31", + "value":"-1.68" + } + }, + { + "id":"1ccf1128-4825-4e65-b4bc-3a753d4f7212", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T22:58:06.452Z", + "completed":"2016-07-11T22:58:06.452Z", + "new_balance":"3550.72", + "value":"-2.59" + } + }, + { + "id":"971774ad-a667-4fad-a33f-a0e94ea7bcaa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T14:16:29.747Z", + "completed":"2016-07-13T14:16:29.747Z", + "new_balance":"3544.59", + "value":"-6.13" + } + }, + { + "id":"233318f7-d2ec-45cb-a6d8-8cb006fb796f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T19:41:02.194Z", + "completed":"2016-07-13T19:41:02.194Z", + "new_balance":"3536.89", + "value":"-7.70" + } + }, + { + "id":"598af6b5-e733-4ecd-8ecc-6c44392a711b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T05:35:29.516Z", + "completed":"2016-07-16T05:35:29.516Z", + "new_balance":"3545.88", + "value":"8.99" + } + }, + { + "id":"c22bb594-5c9d-4eba-9354-1b720baf13d5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T12:23:18.242Z", + "completed":"2016-07-16T12:23:18.242Z", + "new_balance":"3541.35", + "value":"-4.53" + } + }, + { + "id":"d834da64-91c7-4384-a2dc-c0f93d02bab1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:22:06.284Z", + "completed":"2016-07-17T03:22:06.284Z", + "new_balance":"3540.88", + "value":"-0.47" + } + }, + { + "id":"f46e8fb2-e924-4f5a-b38b-a435d5c50292", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T20:48:52.760Z", + "completed":"2016-07-17T20:48:52.760Z", + "new_balance":"3540.07", + "value":"-0.81" + } + }, + { + "id":"2c5eed11-88d0-43d5-9f70-6f9c2f1c864b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T05:11:47.670Z", + "completed":"2016-07-19T05:11:47.670Z", + "new_balance":"3534.59", + "value":"-5.48" + } + }, + { + "id":"5352485d-5613-449b-b9ca-9ab90127623b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T07:14:56.052Z", + "completed":"2016-07-21T07:14:56.052Z", + "new_balance":"3532.16", + "value":"-2.43" + } + }, + { + "id":"752b3802-f7f7-4f92-a36b-adf5b34cf2c4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T06:39:43.442Z", + "completed":"2016-07-23T06:39:43.442Z", + "new_balance":"3528.86", + "value":"-3.30" + } + }, + { + "id":"b4d3aa7a-c5de-4126-9cff-0afb0974b67c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T05:18:22.615Z", + "completed":"2016-07-25T05:18:22.615Z", + "new_balance":"3527.29", + "value":"-1.57" + } + }, + { + "id":"addd4981-e017-4eb9-87b4-fc039e80fe86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T18:11:21.944Z", + "completed":"2016-07-27T18:11:21.944Z", + "new_balance":"3526.77", + "value":"-0.52" + } + }, + { + "id":"c87608a9-8c7d-4a90-992a-7ca233b7c2bc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T02:27:08.707Z", + "completed":"2016-07-28T02:27:08.707Z", + "new_balance":"3504.41", + "value":"-22.36" + } + }, + { + "id":"04c36388-97dd-41ce-acf7-e4929098597f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T10:06:03.760Z", + "completed":"2016-07-28T10:06:03.760Z", + "new_balance":"3500.69", + "value":"-3.72" + } + }, + { + "id":"8e335220-2828-4013-b48a-7fdc7b8609f4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T09:04:39.976Z", + "completed":"2016-08-01T09:04:39.976Z", + "new_balance":"3641.67", + "value":"140.98" + } + }, + { + "id":"98a25681-0697-4fca-b336-63be3e677613", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T18:40:07.416Z", + "completed":"2016-08-03T18:40:07.416Z", + "new_balance":"3609.95", + "value":"-31.72" + } + }, + { + "id":"c0d345e0-e4e1-4be3-88f1-3880815418d4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T23:49:46.871Z", + "completed":"2016-08-03T23:49:46.871Z", + "new_balance":"3596.85", + "value":"-13.10" + } + }, + { + "id":"a366cc49-5882-4b89-bdad-e27ca786cea1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T22:54:09.947Z", + "completed":"2016-08-04T22:54:09.947Z", + "new_balance":"3595.53", + "value":"-1.32" + } + }, + { + "id":"6698ba0d-d0b8-4408-809e-4c461d57d819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T00:54:36.846Z", + "completed":"2016-08-07T00:54:36.846Z", + "new_balance":"3594.86", + "value":"-0.67" + } + }, + { + "id":"c709e05a-7310-4903-809d-1e1e7ca27bdf", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T03:53:55.256Z", + "completed":"2016-08-07T03:53:55.256Z", + "new_balance":"3592.55", + "value":"-2.31" + } + }, + { + "id":"0c6a12a2-5424-4a8e-b4d6-397d00497ef8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T10:42:33.397Z", + "completed":"2016-08-07T10:42:33.397Z", + "new_balance":"3590.36", + "value":"-2.19" + } + }, + { + "id":"ba83fd2e-34b7-4433-b3b2-3afdf24d287b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T07:12:28.650Z", + "completed":"2016-08-08T07:12:28.650Z", + "new_balance":"3582.66", + "value":"-7.70" + } + }, + { + "id":"278675d3-c699-4a75-a277-f3be1a36a378", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T17:41:42.621Z", + "completed":"2016-08-08T17:41:42.621Z", + "new_balance":"3578.09", + "value":"-4.57" + } + }, + { + "id":"84afac89-b334-41d5-8cc0-b068d67a4dd4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T20:36:24.637Z", + "completed":"2016-08-08T20:36:24.637Z", + "new_balance":"3573.95", + "value":"-4.14" + } + }, + { + "id":"d3616aab-52d1-468f-8095-502a3d78b0ea", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T16:43:04.072Z", + "completed":"2016-08-09T16:43:04.072Z", + "new_balance":"3571.55", + "value":"-2.40" + } + }, + { + "id":"f247d36a-4886-4b9f-8618-9212528bbe13", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T21:53:58.669Z", + "completed":"2016-08-11T21:53:58.669Z", + "new_balance":"3571.03", + "value":"-0.52" + } + }, + { + "id":"53de6dc8-e469-42bc-afdd-8b4bdabc59c4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T20:27:17.150Z", + "completed":"2016-08-14T20:27:17.150Z", + "new_balance":"3568.15", + "value":"-2.88" + } + }, + { + "id":"05d7c340-3286-45bd-99af-afd79300e61e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T11:46:41.091Z", + "completed":"2016-08-15T11:46:41.091Z", + "new_balance":"3565.84", + "value":"-2.31" + } + }, + { + "id":"e2e3e623-b440-4bb3-8cab-20c509b85721", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T05:09:31.207Z", + "completed":"2016-08-17T05:09:31.207Z", + "new_balance":"3561.23", + "value":"-4.61" + } + }, + { + "id":"ac9b7101-1c86-4f54-990e-21fe2b261bc1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T22:29:21.838Z", + "completed":"2016-08-17T22:29:21.838Z", + "new_balance":"3560.76", + "value":"-0.47" + } + }, + { + "id":"439aa398-5270-4f2b-8fd2-8899fc3aea5a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T13:37:18.928Z", + "completed":"2016-08-19T13:37:18.928Z", + "new_balance":"3560.17", + "value":"-0.59" + } + }, + { + "id":"02b34c2e-5f27-4954-bb43-83b40b7dd842", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T03:54:39.803Z", + "completed":"2016-08-25T03:54:39.803Z", + "new_balance":"3571.57", + "value":"11.40" + } + }, + { + "id":"17e54a67-eb08-410f-a5e1-1880b2e4b30b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T20:34:46.291Z", + "completed":"2016-08-28T20:34:46.291Z", + "new_balance":"3567.85", + "value":"-3.72" + } + }, + { + "id":"b76ba89a-1223-4c05-b036-07588dd4145f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T23:38:29.570Z", + "completed":"2016-08-28T23:38:29.570Z", + "new_balance":"3545.49", + "value":"-22.36" + } + }, + { + "id":"35c410cd-462e-467e-b6eb-96d96c1e9b28", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T08:00:51.704Z", + "completed":"2016-09-01T08:00:51.704Z", + "new_balance":"3686.47", + "value":"140.98" + } + }, + { + "id":"4caed8e9-7271-4d28-b12b-e396bae9b674", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T23:38:37.236Z", + "completed":"2016-09-03T23:38:37.236Z", + "new_balance":"3654.75", + "value":"-31.72" + } + }, + { + "id":"bb710c24-df26-4b05-b19d-11a65c720d7d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T04:35:28.403Z", + "completed":"2016-09-04T04:35:28.403Z", + "new_balance":"3650.14", + "value":"-4.61" + } + }, + { + "id":"c545f28c-fcac-461d-b9db-402bc40d2a85", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T07:39:56.302Z", + "completed":"2016-09-04T07:39:56.302Z", + "new_balance":"3648.09", + "value":"-2.05" + } + }, + { + "id":"905d7da4-b88e-4cba-8268-b4c05bbbec9b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T09:11:52.671Z", + "completed":"2016-09-04T09:11:52.671Z", + "new_balance":"3644.79", + "value":"-3.30" + } + }, + { + "id":"77e43a2a-19e8-427f-906c-fa20c77d9890", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T22:59:25.837Z", + "completed":"2016-09-04T22:59:25.837Z", + "new_balance":"3641.33", + "value":"-3.46" + } + }, + { + "id":"d95b2366-e1ff-4a26-a925-22cedeb23210", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T03:19:33.602Z", + "completed":"2016-09-05T03:19:33.602Z", + "new_balance":"3633.59", + "value":"-7.74" + } + }, + { + "id":"a231147b-5c0e-451d-8ff1-33e31db0c819", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T04:35:34.269Z", + "completed":"2016-09-05T04:35:34.269Z", + "new_balance":"3626.84", + "value":"-6.75" + } + }, + { + "id":"f6b591ee-c2e4-4c6d-aeb2-8a058fed26ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T10:52:40.821Z", + "completed":"2016-09-05T10:52:40.821Z", + "new_balance":"3620.20", + "value":"-6.64" + } + }, + { + "id":"90dee5ee-aa37-42a8-8c7d-34f606e0705f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T11:45:13.118Z", + "completed":"2016-09-05T11:45:13.118Z", + "new_balance":"3612.50", + "value":"-7.70" + } + }, + { + "id":"9c458eb1-50ef-4692-81d0-7da6413bd37f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T14:41:11.524Z", + "completed":"2016-09-05T14:41:11.524Z", + "new_balance":"3612.03", + "value":"-0.47" + } + }, + { + "id":"6f2f43c3-c644-4abf-9b48-d4a734d63aac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T18:06:26.555Z", + "completed":"2016-09-05T18:06:26.555Z", + "new_balance":"3610.73", + "value":"-1.30" + } + }, + { + "id":"8d3339e4-2a4a-434b-b024-43121387ea0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T10:26:58.450Z", + "completed":"2016-09-07T10:26:58.450Z", + "new_balance":"3609.93", + "value":"-0.80" + } + }, + { + "id":"ebed72eb-f679-45f9-b2ff-8d133f7a7ade", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T12:51:53.510Z", + "completed":"2016-09-07T12:51:53.510Z", + "new_balance":"3609.13", + "value":"-0.80" + } + }, + { + "id":"4863eb15-209c-4fef-9b66-34cd7cf260f6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T14:42:57.443Z", + "completed":"2016-09-07T14:42:57.443Z", + "new_balance":"3608.36", + "value":"-0.77" + } + }, + { + "id":"a6d37d6a-7db6-455b-9ef0-fcd68e1e837a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T23:52:06.094Z", + "completed":"2016-09-07T23:52:06.094Z", + "new_balance":"3607.89", + "value":"-0.47" + } + }, + { + "id":"af86c81c-500d-4d70-b760-60015b19635c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T21:44:51.020Z", + "completed":"2016-09-10T21:44:51.020Z", + "new_balance":"3605.18", + "value":"-2.71" + } + }, + { + "id":"31d8fa12-020b-4d4e-b380-147c2c77a8e6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T00:13:52.032Z", + "completed":"2016-09-11T00:13:52.032Z", + "new_balance":"3604.71", + "value":"-0.47" + } + }, + { + "id":"ac9a0ba7-f6cc-417e-9698-2f04c544a5cb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T18:14:29.137Z", + "completed":"2016-09-11T18:14:29.137Z", + "new_balance":"3601.99", + "value":"-2.72" + } + }, + { + "id":"75d758e8-3d17-41dd-a470-8a5e16f3e45b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T21:47:30.510Z", + "completed":"2016-09-11T21:47:30.510Z", + "new_balance":"3600.39", + "value":"-1.60" + } + }, + { + "id":"0e76ba44-7eda-4a49-a37c-855df9cca5e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T01:44:27.071Z", + "completed":"2016-09-12T01:44:27.071Z", + "new_balance":"3597.80", + "value":"-2.59" + } + }, + { + "id":"41398ac1-346d-454e-8772-82035f95405a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T06:41:31.354Z", + "completed":"2016-09-12T06:41:31.354Z", + "new_balance":"3587.65", + "value":"-10.15" + } + }, + { + "id":"73903946-1c4c-4b00-a8ff-264106668c07", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:01:22.530Z", + "completed":"2016-09-12T10:01:22.530Z", + "new_balance":"3581.49", + "value":"-6.16" + } + }, + { + "id":"f2679933-531e-4d5f-8ebd-03a61be5239d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T23:56:32.768Z", + "completed":"2016-09-12T23:56:32.768Z", + "new_balance":"3581.02", + "value":"-0.47" + } + }, + { + "id":"666d43a9-c8ac-419b-a5f2-aa1b374ba54d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T23:22:55.979Z", + "completed":"2016-09-13T23:22:55.979Z", + "new_balance":"3578.44", + "value":"-2.58" + } + }, + { + "id":"d648df06-bccd-47e9-bf28-0db7396737ba", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:28:52.943Z", + "completed":"2016-09-14T00:28:52.943Z", + "new_balance":"3573.52", + "value":"-4.92" + } + }, + { + "id":"82bf44bf-7123-4cea-89bf-5845fbef5466", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T11:56:21.979Z", + "completed":"2016-09-14T11:56:21.979Z", + "new_balance":"3573.05", + "value":"-0.47" + } + }, + { + "id":"cf3ee024-a597-4cc5-89f4-501cb2225178", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T05:05:53.584Z", + "completed":"2016-09-16T05:05:53.584Z", + "new_balance":"3568.93", + "value":"-4.12" + } + }, + { + "id":"f98e0eba-c983-4b79-8961-ee03b9530094", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T19:32:45.461Z", + "completed":"2016-09-18T19:32:45.461Z", + "new_balance":"3564.54", + "value":"-4.39" + } + }, + { + "id":"60d4fce1-3799-4421-ae66-20f6ef6a1eb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T13:10:42.653Z", + "completed":"2016-09-21T13:10:42.653Z", + "new_balance":"3554.93", + "value":"-9.61" + } + }, + { + "id":"86712a19-2f51-4152-8ec5-c4ff2ed509b3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T19:02:08.361Z", + "completed":"2016-09-21T19:02:08.361Z", + "new_balance":"3542.57", + "value":"-12.36" + } + }, + { + "id":"2c5481b4-21e0-4428-9605-9b367d7be310", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T18:52:08.595Z", + "completed":"2016-09-23T18:52:08.595Z", + "new_balance":"3539.10", + "value":"-3.47" + } + }, + { + "id":"4d90dd6a-a62b-428e-aa32-ae2ee94fce2b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T11:29:44.812Z", + "completed":"2016-09-24T11:29:44.812Z", + "new_balance":"3538.63", + "value":"-0.47" + } + }, + { + "id":"95b8fc8a-362c-4536-9c03-febbc379f8b1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T04:54:19.219Z", + "completed":"2016-09-26T04:54:19.219Z", + "new_balance":"3537.28", + "value":"-1.35" + } + }, + { + "id":"650abecc-a6f5-49d7-8fcb-2b074fa72f82", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:06:21.758Z", + "completed":"2016-09-26T11:06:21.758Z", + "new_balance":"3536.13", + "value":"-1.15" + } + }, + { + "id":"2acaf7ee-bd3b-4aa0-b667-57742b55b2fe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T15:41:19.773Z", + "completed":"2016-09-26T15:41:19.773Z", + "new_balance":"3533.74", + "value":"-2.39" + } + }, + { + "id":"81f665b2-9a40-4016-a244-152f99a63e84", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T03:37:31.560Z", + "completed":"2016-09-27T03:37:31.560Z", + "new_balance":"3532.54", + "value":"-1.20" + } + }, + { + "id":"50d21fdd-b611-4ac6-91eb-0f22f6c1fbc8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:56:13.760Z", + "completed":"2016-09-28T06:56:13.760Z", + "new_balance":"3528.82", + "value":"-3.72" + } + }, + { + "id":"a40a6a6e-82d2-41c7-a5b5-4064cdf37029", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T22:32:01.929Z", + "completed":"2016-09-28T22:32:01.929Z", + "new_balance":"3506.46", + "value":"-22.36" + } + }, + { + "id":"38c210ad-42d7-4623-9f50-07a0d33f0c1d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T04:54:33.053Z", + "completed":"2016-10-01T04:54:33.053Z", + "new_balance":"3647.44", + "value":"140.98" + } + }, + { + "id":"93981822-36bb-4ddc-b85c-501b963ad6ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T08:26:05.533Z", + "completed":"2016-10-01T08:26:05.533Z", + "new_balance":"3615.72", + "value":"-31.72" + } + }, + { + "id":"655df67b-bcf5-4a5e-b4db-b287a895522d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T19:10:53.576Z", + "completed":"2016-10-01T19:10:53.576Z", + "new_balance":"3798.42", + "value":"182.70" + } + }, + { + "id":"1527646a-f4e6-44f0-bbfd-dd49ce66f7f8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T00:18:12.449Z", + "completed":"2016-10-03T00:18:12.449Z", + "new_balance":"3793.60", + "value":"-4.82" + } + }, + { + "id":"77e13e0c-adea-4346-851b-308b86164b3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T03:36:39.906Z", + "completed":"2016-10-03T03:36:39.906Z", + "new_balance":"3791.86", + "value":"-1.74" + } + }, + { + "id":"9e1b5830-c3c4-434d-a4b8-10dd70018a0f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T15:19:54.922Z", + "completed":"2016-10-03T15:19:54.922Z", + "new_balance":"3791.19", + "value":"-0.67" + } + }, + { + "id":"a7b03400-7518-4104-a732-01716d543233", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T02:25:58.927Z", + "completed":"2016-10-05T02:25:58.927Z", + "new_balance":"3790.67", + "value":"-0.52" + } + }, + { + "id":"3b74aa18-2066-435b-a8c6-3e8e134bba55", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T12:46:52.268Z", + "completed":"2016-10-05T12:46:52.268Z", + "new_balance":"3789.27", + "value":"-1.40" + } + }, + { + "id":"69fc4e4b-f741-4cd5-9f42-d7b1f0420173", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T19:28:34.172Z", + "completed":"2016-10-06T19:28:34.172Z", + "new_balance":"3787.67", + "value":"-1.60" + } + }, + { + "id":"cca827de-2376-4f9b-9369-7671084d48f2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T15:26:10.752Z", + "completed":"2016-10-09T15:26:10.752Z", + "new_balance":"3785.08", + "value":"-2.59" + } + }, + { + "id":"9941d1ed-a61b-4cec-a9a8-e2dca0c726fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T06:26:47.007Z", + "completed":"2016-10-10T06:26:47.007Z", + "new_balance":"3783.40", + "value":"-1.68" + } + }, + { + "id":"966fe9a3-2bd3-4965-89e9-d444ebad81cd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T03:03:09.061Z", + "completed":"2016-10-11T03:03:09.061Z", + "new_balance":"3781.09", + "value":"-2.31" + } + }, + { + "id":"46801fec-9f6c-4879-879d-aff5609d8d98", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T09:51:06.400Z", + "completed":"2016-10-11T09:51:06.400Z", + "new_balance":"3779.22", + "value":"-1.87" + } + }, + { + "id":"c44b5620-f7fc-4bbb-91c1-4de3f1fb789a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T11:28:29.479Z", + "completed":"2016-10-14T11:28:29.479Z", + "new_balance":"3773.09", + "value":"-6.13" + } + }, + { + "id":"b4a65c97-8b47-4358-a258-d1305bae3e9b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T17:01:07.660Z", + "completed":"2016-10-14T17:01:07.660Z", + "new_balance":"3765.39", + "value":"-7.70" + } + }, + { + "id":"98b59200-a4c3-4483-ba7d-ac7cb5917887", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T10:48:54.195Z", + "completed":"2016-10-17T10:48:54.195Z", + "new_balance":"3760.86", + "value":"-4.53" + } + }, + { + "id":"e1cab16a-bbaf-4fd6-862e-456748522c08", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T01:42:30.951Z", + "completed":"2016-10-18T01:42:30.951Z", + "new_balance":"3755.38", + "value":"-5.48" + } + }, + { + "id":"83f0d2a1-12d9-4051-b6b2-fec0f6ad7f2a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T23:07:36.586Z", + "completed":"2016-10-18T23:07:36.586Z", + "new_balance":"3754.57", + "value":"-0.81" + } + }, + { + "id":"ba9afd41-fc94-4ec4-b545-f52c69f9aa16", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T23:50:48.865Z", + "completed":"2016-10-18T23:50:48.865Z", + "new_balance":"3754.10", + "value":"-0.47" + } + }, + { + "id":"41b7dc84-a232-4aaa-ad6d-fe8725517db0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T08:41:17.437Z", + "completed":"2016-10-23T08:41:17.437Z", + "new_balance":"3751.67", + "value":"-2.43" + } + }, + { + "id":"cd4aadc3-5d58-4901-a8d7-11b68b837cff", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T10:13:52.020Z", + "completed":"2016-10-24T10:13:52.020Z", + "new_balance":"3750.10", + "value":"-1.57" + } + }, + { + "id":"8b08b606-c552-46e0-99d3-e13f35ae0358", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:13:13.839Z", + "completed":"2016-10-24T18:13:13.839Z", + "new_balance":"3746.80", + "value":"-3.30" + } + }, + { + "id":"78185325-4688-4dc1-8ebc-ec9f31cb21d1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T18:24:02.778Z", + "completed":"2016-10-26T18:24:02.778Z", + "new_balance":"3746.28", + "value":"-0.52" + } + }, + { + "id":"74619c2d-1297-4689-b48e-71f43596e987", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T02:02:43.119Z", + "completed":"2016-10-30T02:02:43.119Z", + "new_balance":"3742.56", + "value":"-3.72" + } + }, + { + "id":"51202be7-bc81-4851-a814-5bf2931fc46a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T18:36:27.409Z", + "completed":"2016-10-30T18:36:27.409Z", + "new_balance":"3720.20", + "value":"-22.36" + } + }, + { + "id":"667810f4-844b-4f3b-9fa0-64116d96e734", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T03:08:05.103Z", + "completed":"2016-11-02T03:08:05.103Z", + "new_balance":"3688.48", + "value":"-31.72" + } + }, + { + "id":"4a52ffa9-dede-4d8a-8d53-7c9100486822", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T03:53:14.789Z", + "completed":"2016-11-02T03:53:14.789Z", + "new_balance":"3687.16", + "value":"-1.32" + } + }, + { + "id":"8bc3b26e-bfa4-476c-ae97-38a8045a9f5b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T13:41:32.202Z", + "completed":"2016-11-02T13:41:32.202Z", + "new_balance":"3686.49", + "value":"-0.67" + } + }, + { + "id":"bbc74758-cfb1-4efa-a414-e7bbc38bf97f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T16:57:32.258Z", + "completed":"2016-11-02T16:57:32.258Z", + "new_balance":"3673.39", + "value":"-13.10" + } + }, + { + "id":"b9a81c3b-9766-4272-87d8-eea0a294b491", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T04:06:46.068Z", + "completed":"2016-11-06T04:06:46.068Z", + "new_balance":"3671.08", + "value":"-2.31" + } + }, + { + "id":"5fc893fd-9a3d-4068-9902-621aa57fb022", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T14:36:43.930Z", + "completed":"2016-11-06T14:36:43.930Z", + "new_balance":"3668.89", + "value":"-2.19" + } + }, + { + "id":"3deeb102-5fda-4e9d-832e-6eab4f9e3ba6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T22:01:52.568Z", + "completed":"2016-11-07T22:01:52.568Z", + "new_balance":"3664.32", + "value":"-4.57" + } + }, + { + "id":"abeb4682-c853-4b98-a507-711ab7953a87", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T23:20:53.606Z", + "completed":"2016-11-07T23:20:53.606Z", + "new_balance":"3656.62", + "value":"-7.70" + } + }, + { + "id":"5fb37705-3e08-4b4e-a8c7-c071d5a2ed6b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T03:28:54.535Z", + "completed":"2016-11-09T03:28:54.535Z", + "new_balance":"3797.60", + "value":"140.98" + } + }, + { + "id":"1387e9a2-558b-4bfa-a9fd-77b8cca70ff6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T00:22:40.487Z", + "completed":"2016-11-14T00:22:40.487Z", + "new_balance":"3793.46", + "value":"-4.14" + } + }, + { + "id":"380ee1f5-0772-4ed3-a358-db32fe53157c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T08:01:58.119Z", + "completed":"2016-11-14T08:01:58.119Z", + "new_balance":"3791.06", + "value":"-2.40" + } + }, + { + "id":"33336545-7f5c-4ea0-b0e0-29b8c4b3ad1c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T11:35:00.576Z", + "completed":"2016-11-16T11:35:00.576Z", + "new_balance":"3790.54", + "value":"-0.52" + } + }, + { + "id":"7b8ae46e-b5a2-46f1-a814-cf6bf167cbe1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T19:18:24.346Z", + "completed":"2016-11-20T19:18:24.346Z", + "new_balance":"3787.66", + "value":"-2.88" + } + }, + { + "id":"ed7fc421-e462-4994-b2b7-772bb22461c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T06:56:07.089Z", + "completed":"2016-11-23T06:56:07.089Z", + "new_balance":"3785.35", + "value":"-2.31" + } + }, + { + "id":"7f26fa23-7d46-4020-84a7-6304fcc6ea28", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T11:16:11.850Z", + "completed":"2016-11-23T11:16:11.850Z", + "new_balance":"3784.88", + "value":"-0.47" + } + }, + { + "id":"2af371b8-5c8c-440c-900c-1f2cfcbfbe1a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T22:29:04.785Z", + "completed":"2016-11-23T22:29:04.785Z", + "new_balance":"3780.27", + "value":"-4.61" + } + }, + { + "id":"d019b483-378d-403e-94f9-f7a79d61b623", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:46:57.503Z", + "completed":"2016-11-28T01:46:57.503Z", + "new_balance":"3779.68", + "value":"-0.59" + } + }, + { + "id":"eca9c977-2ed6-42e2-a26f-cf92df6842f4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T00:23:43.096Z", + "completed":"2016-11-30T00:23:43.096Z", + "new_balance":"3757.32", + "value":"-22.36" + } + }, + { + "id":"0509d769-132a-433f-aee3-1acae6877ae0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T01:48:49.145Z", + "completed":"2016-11-30T01:48:49.145Z", + "new_balance":"3753.60", + "value":"-3.72" + } + }, + { + "id":"9c9c2400-77e9-4e48-9eae-20be64f6f98c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T07:50:45.239Z", + "completed":"2016-12-01T07:50:45.239Z", + "new_balance":"3721.88", + "value":"-31.72" + } + }, + { + "id":"a931c3fe-b8b0-4936-a661-1465c9c4e4b4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T16:33:17.388Z", + "completed":"2016-12-01T16:33:17.388Z", + "new_balance":"3862.86", + "value":"140.98" + } + }, + { + "id":"06d06c1e-ae8e-43b4-89e9-b715e1f37287", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:24:53.774Z", + "completed":"2016-12-04T18:24:53.774Z", + "new_balance":"3859.40", + "value":"-3.46" + } + }, + { + "id":"67575ed8-d7fc-4720-9fbf-23540270f377", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T19:44:22.982Z", + "completed":"2016-12-04T19:44:22.982Z", + "new_balance":"3857.35", + "value":"-2.05" + } + }, + { + "id":"3bf140bf-0cda-4bad-ab53-511ee1170a61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T02:21:55.639Z", + "completed":"2016-12-11T02:21:55.639Z", + "new_balance":"3852.74", + "value":"-4.61" + } + }, + { + "id":"834a1c90-10c1-4f10-8521-38faad8bdbfe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T18:24:10.505Z", + "completed":"2016-12-11T18:24:10.505Z", + "new_balance":"3849.44", + "value":"-3.30" + } + }, + { + "id":"717a16d9-6e2f-44f6-8d0d-54968fc94ea9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T00:58:30.826Z", + "completed":"2016-12-14T00:58:30.826Z", + "new_balance":"3848.97", + "value":"-0.47" + } + }, + { + "id":"3453be3b-7ac9-410a-86d5-a279090a79df", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T03:26:51.519Z", + "completed":"2016-12-14T03:26:51.519Z", + "new_balance":"3848.17", + "value":"-0.80" + } + }, + { + "id":"a912b8a0-ee7f-404f-b5b8-acd9e84fedf5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T04:51:53.630Z", + "completed":"2016-12-14T04:51:53.630Z", + "new_balance":"3840.43", + "value":"-7.74" + } + }, + { + "id":"80ef7c10-d23b-4fe9-a22b-791251b21307", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T06:44:33.319Z", + "completed":"2016-12-14T06:44:33.319Z", + "new_balance":"3839.63", + "value":"-0.80" + } + }, + { + "id":"52337140-3564-47cd-bd4d-be84ed8db983", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T13:01:32.203Z", + "completed":"2016-12-14T13:01:32.203Z", + "new_balance":"3832.88", + "value":"-6.75" + } + }, + { + "id":"f68525a2-9ea3-4a94-9ffe-7cf5ff372ef5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T13:11:05.538Z", + "completed":"2016-12-14T13:11:05.538Z", + "new_balance":"3832.41", + "value":"-0.47" + } + }, + { + "id":"c3adfdcf-e4aa-4156-b93c-6ae5bc0272b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T13:35:07.989Z", + "completed":"2016-12-14T13:35:07.989Z", + "new_balance":"3825.77", + "value":"-6.64" + } + }, + { + "id":"b74f1990-7542-4d39-a9f0-0fc980e59031", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T21:23:19.693Z", + "completed":"2016-12-14T21:23:19.693Z", + "new_balance":"3824.47", + "value":"-1.30" + } + }, + { + "id":"3d99b9f7-a1f5-48db-8a11-e11818561453", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T21:50:04.492Z", + "completed":"2016-12-14T21:50:04.492Z", + "new_balance":"3816.77", + "value":"-7.70" + } + }, + { + "id":"a266298f-bda4-4ba4-b1c2-e753b3f2cc59", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T03:55:05.011Z", + "completed":"2016-12-15T03:55:05.011Z", + "new_balance":"3814.06", + "value":"-2.71" + } + }, + { + "id":"04eb6035-f37a-4303-b069-20e44580815f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T12:46:21.150Z", + "completed":"2016-12-15T12:46:21.150Z", + "new_balance":"3813.59", + "value":"-0.47" + } + }, + { + "id":"c42dd25b-dfe2-4365-862e-99bc14d99a1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:39:22.417Z", + "completed":"2016-12-15T18:39:22.417Z", + "new_balance":"3812.82", + "value":"-0.77" + } + }, + { + "id":"656fbec8-de9b-4153-b8c5-2a76a7fdd94e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T00:06:14.030Z", + "completed":"2016-12-18T00:06:14.030Z", + "new_balance":"3812.35", + "value":"-0.47" + } + }, + { + "id":"33fb93a8-ccae-48b9-8f34-0c875862dc61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T05:30:06.363Z", + "completed":"2016-12-18T05:30:06.363Z", + "new_balance":"3802.20", + "value":"-10.15" + } + }, + { + "id":"3381908d-b880-4f2c-943b-7477757c08be", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T06:22:40.909Z", + "completed":"2016-12-18T06:22:40.909Z", + "new_balance":"3799.48", + "value":"-2.72" + } + }, + { + "id":"a7182496-54e2-4bee-9d25-6985e50451ff", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T10:55:13.056Z", + "completed":"2016-12-18T10:55:13.056Z", + "new_balance":"3796.90", + "value":"-2.58" + } + }, + { + "id":"a9562946-8fef-4d1f-8153-bc55ec796bd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T11:54:12.188Z", + "completed":"2016-12-18T11:54:12.188Z", + "new_balance":"3794.31", + "value":"-2.59" + } + }, + { + "id":"1d2d179b-af1c-4fdd-a71a-f1a1a930057b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T16:09:27.784Z", + "completed":"2016-12-18T16:09:27.784Z", + "new_balance":"3793.84", + "value":"-0.47" + } + }, + { + "id":"26ce9bbb-d329-497f-b6dc-a05af6b9ab6a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T18:19:31.560Z", + "completed":"2016-12-18T18:19:31.560Z", + "new_balance":"3787.68", + "value":"-6.16" + } + }, + { + "id":"f487b55a-f4b8-40ca-ad93-e049b04d1bb2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T20:09:48.394Z", + "completed":"2016-12-18T20:09:48.394Z", + "new_balance":"3786.08", + "value":"-1.60" + } + }, + { + "id":"1a40cb01-1206-4477-b90f-f1a8137f3cbe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T02:06:06.695Z", + "completed":"2016-12-19T02:06:06.695Z", + "new_balance":"3781.16", + "value":"-4.92" + } + }, + { + "id":"f76b6269-ce41-4b8b-873a-afa4eeebce3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T08:32:37.351Z", + "completed":"2016-12-19T08:32:37.351Z", + "new_balance":"3776.77", + "value":"-4.39" + } + }, + { + "id":"ca1c1bea-6246-4905-9ad6-da4b49fbfdde", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T18:37:31.261Z", + "completed":"2016-12-19T18:37:31.261Z", + "new_balance":"3772.65", + "value":"-4.12" + } + }, + { + "id":"7a9bd6e4-4def-4831-af60-11714355f0f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T00:33:35.833Z", + "completed":"2016-12-21T00:33:35.833Z", + "new_balance":"3760.29", + "value":"-12.36" + } + }, + { + "id":"b3d5c293-240f-4d4e-9248-6ff27a41b232", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T05:04:12.297Z", + "completed":"2016-12-21T05:04:12.297Z", + "new_balance":"3756.82", + "value":"-3.47" + } + }, + { + "id":"cb41ee71-3826-4d9c-a1ed-f9a9041f6ff9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T11:36:50.120Z", + "completed":"2016-12-21T11:36:50.120Z", + "new_balance":"3747.21", + "value":"-9.61" + } + }, + { + "id":"3f2ba060-2846-4d77-b132-e3c4bfc1acf4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T18:59:49.120Z", + "completed":"2016-12-21T18:59:49.120Z", + "new_balance":"3746.06", + "value":"-1.15" + } + }, + { + "id":"9a50cd61-27ea-4d95-b4c0-091da9fffcb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T21:42:23.256Z", + "completed":"2016-12-21T21:42:23.256Z", + "new_balance":"3745.59", + "value":"-0.47" + } + }, + { + "id":"3ce528e6-22c3-49ad-ab03-84061464bd2d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T16:10:32.236Z", + "completed":"2016-12-24T16:10:32.236Z", + "new_balance":"3744.24", + "value":"-1.35" + } + }, + { + "id":"55d42184-f148-4807-98b9-2284719cab8f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T18:14:40.908Z", + "completed":"2016-12-24T18:14:40.908Z", + "new_balance":"3741.85", + "value":"-2.39" + } + }, + { + "id":"156b72bb-29e3-49e5-8b8e-ee1975f31ac0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T23:34:02.522Z", + "completed":"2016-12-24T23:34:02.522Z", + "new_balance":"3740.65", + "value":"-1.20" + } + }, + { + "id":"96b6e9f5-08d9-4f17-842b-997068d5c823", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T01:38:16.534Z", + "completed":"2016-12-30T01:38:16.534Z", + "new_balance":"3736.93", + "value":"-3.72" + } + }, + { + "id":"9bcf46e2-f7dd-4137-b922-442d16c8a166", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T21:05:36.178Z", + "completed":"2016-12-30T21:05:36.178Z", + "new_balance":"3714.57", + "value":"-22.36" + } + }, + { + "id":"d079e907-48e8-4ab6-9854-0cad8238d072", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T02:23:37.427Z", + "completed":"2017-01-01T02:23:37.427Z", + "new_balance":"3855.55", + "value":"140.98" + } + }, + { + "id":"e057dd76-9567-43d9-889b-8f6cc6eaffbe", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T03:02:43.350Z", + "completed":"2017-01-01T03:02:43.350Z", + "new_balance":"4038.25", + "value":"182.70" + } + }, + { + "id":"c8a5b1c8-b147-4038-af81-6ad8a10921f3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T20:53:34.946Z", + "completed":"2017-01-02T20:53:34.946Z", + "new_balance":"4006.53", + "value":"-31.72" + } + }, + { + "id":"ba190856-5218-4806-b64e-e3f498f6eded", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T00:17:42.016Z", + "completed":"2017-01-03T00:17:42.016Z", + "new_balance":"4001.71", + "value":"-4.82" + } + }, + { + "id":"7edd7772-5dbe-4eae-9eba-60a967facdcd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T09:25:04.459Z", + "completed":"2017-01-03T09:25:04.459Z", + "new_balance":"4001.04", + "value":"-0.67" + } + }, + { + "id":"35d4682c-b5a4-4c93-9f2d-45d78a183774", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T16:08:49.462Z", + "completed":"2017-01-03T16:08:49.462Z", + "new_balance":"3999.30", + "value":"-1.74" + } + }, + { + "id":"3c1abc8b-6891-4ae4-9c15-ff951e54ddb9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T06:54:08.394Z", + "completed":"2017-01-04T06:54:08.394Z", + "new_balance":"3997.90", + "value":"-1.40" + } + }, + { + "id":"93c8d6f4-d2d9-47d2-93ba-c5473713df6f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T19:49:16.634Z", + "completed":"2017-01-05T19:49:16.634Z", + "new_balance":"3997.38", + "value":"-0.52" + } + }, + { + "id":"6c363c81-527d-4d5b-9183-442fd5612dc2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T09:34:11.016Z", + "completed":"2017-01-07T09:34:11.016Z", + "new_balance":"3995.78", + "value":"-1.60" + } + }, + { + "id":"18ef8791-c8a6-4766-9561-ec3e81d33460", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T09:58:32.198Z", + "completed":"2017-01-07T09:58:32.198Z", + "new_balance":"3993.19", + "value":"-2.59" + } + }, + { + "id":"dc7f5c5f-4c72-4e14-a76a-8d645a51327f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T15:21:05.219Z", + "completed":"2017-01-08T15:21:05.219Z", + "new_balance":"3991.51", + "value":"-1.68" + } + }, + { + "id":"f46268d8-de05-4c49-bc71-12f269da9aa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T22:43:44.370Z", + "completed":"2017-01-08T22:43:44.370Z", + "new_balance":"3989.64", + "value":"-1.87" + } + }, + { + "id":"7d2551d9-17d4-4dc1-8496-ba8b65da4ecb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T06:29:32.914Z", + "completed":"2017-01-09T06:29:32.914Z", + "new_balance":"3987.33", + "value":"-2.31" + } + }, + { + "id":"d3a30cac-3da6-4405-9650-bbd495ef7c80", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T06:53:13.690Z", + "completed":"2017-01-09T06:53:13.690Z", + "new_balance":"3981.20", + "value":"-6.13" + } + }, + { + "id":"71a5bedb-383f-4059-ac75-0338095fabb2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T06:48:39.101Z", + "completed":"2017-01-10T06:48:39.101Z", + "new_balance":"3973.50", + "value":"-7.70" + } + }, + { + "id":"437d2bf1-71b6-43ef-a15e-7092504bade6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T14:11:26.723Z", + "completed":"2017-01-10T14:11:26.723Z", + "new_balance":"3968.97", + "value":"-4.53" + } + }, + { + "id":"95fc83e3-83e4-4fb6-acf6-ad119d8de3f9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T05:42:01.450Z", + "completed":"2017-01-11T05:42:01.450Z", + "new_balance":"3968.50", + "value":"-0.47" + } + }, + { + "id":"6e116c8e-0f98-4f8a-b74e-bd512aedc773", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T13:36:12.955Z", + "completed":"2017-01-11T13:36:12.955Z", + "new_balance":"3963.02", + "value":"-5.48" + } + }, + { + "id":"f069b743-304e-4ff9-ac2c-732503243fd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T17:03:24.109Z", + "completed":"2017-01-11T17:03:24.109Z", + "new_balance":"3972.01", + "value":"8.99" + } + }, + { + "id":"59cc1139-91a2-47f0-8d8f-e4335e639fe5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:04:46.697Z", + "completed":"2017-01-12T13:04:46.697Z", + "new_balance":"3971.20", + "value":"-0.81" + } + }, + { + "id":"f246bbd5-c6f7-4fe7-8588-bc08e0b92177", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T14:06:04.068Z", + "completed":"2017-01-15T14:06:04.068Z", + "new_balance":"3968.77", + "value":"-2.43" + } + }, + { + "id":"15c685cd-7d2e-4174-8b50-731e19a88ed4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T09:33:22.105Z", + "completed":"2017-01-16T09:33:22.105Z", + "new_balance":"3965.47", + "value":"-3.30" + } + }, + { + "id":"8cb3b4ef-f55c-40fb-b36a-ee0d240bfd93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T05:34:34.192Z", + "completed":"2017-01-17T05:34:34.192Z", + "new_balance":"3963.90", + "value":"-1.57" + } + }, + { + "id":"a8028bba-a0b5-4fc3-aaa3-1234d6942878", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T20:33:58.216Z", + "completed":"2017-01-20T20:33:58.216Z", + "new_balance":"3963.38", + "value":"-0.52" + } + }, + { + "id":"538da19b-76a6-44c1-a079-df9b4dde38dc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T21:18:38.950Z", + "completed":"2017-01-21T21:18:38.950Z", + "new_balance":"3959.66", + "value":"-3.72" + } + }, + { + "id":"d61141d9-b57b-435b-a666-df667deed826", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T11:46:55.541Z", + "completed":"2017-01-23T11:46:55.541Z", + "new_balance":"3937.30", + "value":"-22.36" + } + }, + { + "id":"63924dd8-f20b-4ffc-bdfd-7a41539b3d7b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T14:47:58.688Z", + "completed":"2017-02-01T14:47:58.688Z", + "new_balance":"4078.28", + "value":"140.98" + } + }, + { + "id":"300f5f30-0972-4828-9ee8-f719a82ea852", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T06:04:26.733Z", + "completed":"2017-02-03T06:04:26.733Z", + "new_balance":"4065.18", + "value":"-13.10" + } + }, + { + "id":"57eeef8d-3cec-43ce-8bfc-7a73ab3912b2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T07:10:58.511Z", + "completed":"2017-02-03T07:10:58.511Z", + "new_balance":"4033.46", + "value":"-31.72" + } + }, + { + "id":"50120774-fd15-436a-bf96-4957c75a9a45", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T10:17:41.699Z", + "completed":"2017-02-04T10:17:41.699Z", + "new_balance":"4032.14", + "value":"-1.32" + } + }, + { + "id":"fae75d6b-c356-4048-b6c1-44acf1861f47", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T17:10:50.473Z", + "completed":"2017-02-05T17:10:50.473Z", + "new_balance":"4031.47", + "value":"-0.67" + } + }, + { + "id":"dcfef24f-d273-4124-8fc1-f4e2bd26ebb0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T16:38:18.093Z", + "completed":"2017-02-06T16:38:18.093Z", + "new_balance":"4029.28", + "value":"-2.19" + } + }, + { + "id":"110c0f2c-f2a4-4167-80be-7c867040897e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T13:33:58.654Z", + "completed":"2017-02-07T13:33:58.654Z", + "new_balance":"4026.97", + "value":"-2.31" + } + }, + { + "id":"75f6935e-06c8-4924-b460-2c13de2c82fb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T16:49:27.080Z", + "completed":"2017-02-07T16:49:27.080Z", + "new_balance":"4019.27", + "value":"-7.70" + } + }, + { + "id":"56194510-6304-422d-8c7a-546a5c604c7e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T18:42:06.185Z", + "completed":"2017-02-07T18:42:06.185Z", + "new_balance":"4014.70", + "value":"-4.57" + } + }, + { + "id":"b3e98de3-7931-41b1-85a8-be2e7ad09522", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T08:56:29.973Z", + "completed":"2017-02-08T08:56:29.973Z", + "new_balance":"4010.56", + "value":"-4.14" + } + }, + { + "id":"3a3207d9-d700-4c86-9360-6bb8e29331f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T21:37:13.423Z", + "completed":"2017-02-09T21:37:13.423Z", + "new_balance":"4008.16", + "value":"-2.40" + } + }, + { + "id":"16dc0db5-171c-4473-9ecc-df76afac3613", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T23:24:24.996Z", + "completed":"2017-02-10T23:24:24.996Z", + "new_balance":"4007.64", + "value":"-0.52" + } + }, + { + "id":"239e50c9-6645-4fc9-955a-1c8c5317d980", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T15:34:11.633Z", + "completed":"2017-02-12T15:34:11.633Z", + "new_balance":"4004.76", + "value":"-2.88" + } + }, + { + "id":"a85511ce-8dd8-4505-8e6b-d51b76b3290e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T12:30:54.335Z", + "completed":"2017-02-14T12:30:54.335Z", + "new_balance":"4002.45", + "value":"-2.31" + } + }, + { + "id":"43d1cd34-129b-4021-ad20-e67754287014", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T15:22:52.301Z", + "completed":"2017-02-16T15:22:52.301Z", + "new_balance":"3997.84", + "value":"-4.61" + } + }, + { + "id":"e3d03b35-0592-4060-bf1e-79ad0592b6e7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T16:39:27.096Z", + "completed":"2017-02-16T16:39:27.096Z", + "new_balance":"3997.37", + "value":"-0.47" + } + }, + { + "id":"9624b97c-8930-458e-967f-ecdf4d5867d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T05:01:27.111Z", + "completed":"2017-02-18T05:01:27.111Z", + "new_balance":"3996.78", + "value":"-0.59" + } + }, + { + "id":"fa074d3a-cfd5-44e9-b8b1-a04a63e21208", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T04:49:23.507Z", + "completed":"2017-02-21T04:49:23.507Z", + "new_balance":"3993.06", + "value":"-3.72" + } + }, + { + "id":"cd1c53f8-d015-4103-904a-23bdd08b1b9e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T19:18:21.482Z", + "completed":"2017-02-21T19:18:21.482Z", + "new_balance":"4004.46", + "value":"11.40" + } + }, + { + "id":"50083879-81a3-452b-a274-864b4b8c9be4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T04:13:54.619Z", + "completed":"2017-02-27T04:13:54.619Z", + "new_balance":"3982.10", + "value":"-22.36" + } + }, + { + "id":"2e398aa8-4b3f-45bd-88a7-bc01505dfc4a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T12:44:26.073Z", + "completed":"2017-03-01T12:44:26.073Z", + "new_balance":"4123.08", + "value":"140.98" + } + }, + { + "id":"3b0e470b-8116-4633-9881-5766fba132f1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T03:22:00.647Z", + "completed":"2017-03-03T03:22:00.647Z", + "new_balance":"4091.36", + "value":"-31.72" + } + }, + { + "id":"fee8c7de-a646-491e-8d3a-3c8273552d4d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T09:11:50.108Z", + "completed":"2017-03-04T09:11:50.108Z", + "new_balance":"4089.31", + "value":"-2.05" + } + }, + { + "id":"5a4729e0-7f50-47a2-8470-197636100d60", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T11:44:40.481Z", + "completed":"2017-03-04T11:44:40.481Z", + "new_balance":"4084.70", + "value":"-4.61" + } + }, + { + "id":"974e7022-589a-4ecb-bfc5-51407023780a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T16:13:00.460Z", + "completed":"2017-03-04T16:13:00.460Z", + "new_balance":"4081.24", + "value":"-3.46" + } + }, + { + "id":"eaefdd71-24d9-4373-925d-00363463d582", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T17:27:12.497Z", + "completed":"2017-03-04T17:27:12.497Z", + "new_balance":"4077.94", + "value":"-3.30" + } + }, + { + "id":"604d4874-7333-4f39-8395-5a956198333e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T02:40:52.294Z", + "completed":"2017-03-05T02:40:52.294Z", + "new_balance":"4077.47", + "value":"-0.47" + } + }, + { + "id":"df97a88d-5447-47f4-8aaf-e4c8eac487b9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T07:00:05.939Z", + "completed":"2017-03-05T07:00:05.939Z", + "new_balance":"4070.72", + "value":"-6.75" + } + }, + { + "id":"be727b3d-c8e4-4761-ad8f-63e68ab15163", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:22:24.760Z", + "completed":"2017-03-05T11:22:24.760Z", + "new_balance":"4069.42", + "value":"-1.30" + } + }, + { + "id":"5e2b4254-85aa-4608-90be-64398bd3bcfc", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T12:10:27.144Z", + "completed":"2017-03-05T12:10:27.144Z", + "new_balance":"4061.72", + "value":"-7.70" + } + }, + { + "id":"7f5dcc6e-9f05-4f6a-9d4e-e9e4fafe4cda", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T03:32:45.359Z", + "completed":"2017-03-06T03:32:45.359Z", + "new_balance":"4055.08", + "value":"-6.64" + } + }, + { + "id":"8cf81ed6-a47f-4473-b5df-989b95647a67", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T17:40:56.133Z", + "completed":"2017-03-06T17:40:56.133Z", + "new_balance":"4047.34", + "value":"-7.74" + } + }, + { + "id":"ef7f19d1-d1d3-4b81-a77b-945d47a65e86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T01:05:17.033Z", + "completed":"2017-03-07T01:05:17.033Z", + "new_balance":"4046.54", + "value":"-0.80" + } + }, + { + "id":"9e94111c-7d0a-49e8-9ea9-4dd74e01c50a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T11:02:03.592Z", + "completed":"2017-03-07T11:02:03.592Z", + "new_balance":"4046.07", + "value":"-0.47" + } + }, + { + "id":"e0a53a1c-acc8-43c8-8d0c-1ed281bbdbf4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T02:23:03.782Z", + "completed":"2017-03-08T02:23:03.782Z", + "new_balance":"4045.30", + "value":"-0.77" + } + }, + { + "id":"46615661-4104-4239-a275-6486a6121f9c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T02:30:46.510Z", + "completed":"2017-03-08T02:30:46.510Z", + "new_balance":"4044.50", + "value":"-0.80" + } + }, + { + "id":"f869188b-7eb9-464a-aad7-054086044766", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T03:04:32.483Z", + "completed":"2017-03-10T03:04:32.483Z", + "new_balance":"4041.79", + "value":"-2.71" + } + }, + { + "id":"f8e5de2e-f149-493d-8294-8119204eec68", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T09:35:20.018Z", + "completed":"2017-03-11T09:35:20.018Z", + "new_balance":"4040.19", + "value":"-1.60" + } + }, + { + "id":"eaa8feda-4cf6-4b9a-b413-1077d4905566", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T12:42:57.751Z", + "completed":"2017-03-11T12:42:57.751Z", + "new_balance":"4039.72", + "value":"-0.47" + } + }, + { + "id":"736a37e9-b93d-407d-bafa-729467ab3cd7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T20:35:58.274Z", + "completed":"2017-03-11T20:35:58.274Z", + "new_balance":"4037.00", + "value":"-2.72" + } + }, + { + "id":"25670cff-2b10-45e2-9003-1aea52e9952b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:14:54.194Z", + "completed":"2017-03-12T12:14:54.194Z", + "new_balance":"4030.84", + "value":"-6.16" + } + }, + { + "id":"68cda6ff-c4f0-4683-b77e-aebb457275ae", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T13:46:13.644Z", + "completed":"2017-03-12T13:46:13.644Z", + "new_balance":"4028.25", + "value":"-2.59" + } + }, + { + "id":"a3fe6654-baeb-4b2b-963d-b5182d5baced", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T17:45:49.051Z", + "completed":"2017-03-12T17:45:49.051Z", + "new_balance":"4027.78", + "value":"-0.47" + } + }, + { + "id":"d862b22f-85f5-4e52-8ac4-ca634e86f902", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T20:58:02.962Z", + "completed":"2017-03-12T20:58:02.962Z", + "new_balance":"4017.63", + "value":"-10.15" + } + }, + { + "id":"bf2816b9-a683-4e16-9c56-9ed1732b9af3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T02:40:31.918Z", + "completed":"2017-03-13T02:40:31.918Z", + "new_balance":"4015.05", + "value":"-2.58" + } + }, + { + "id":"b0d1a8b9-5644-428b-a65e-8841103367de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T10:57:32.359Z", + "completed":"2017-03-13T10:57:32.359Z", + "new_balance":"4014.58", + "value":"-0.47" + } + }, + { + "id":"8615fc8f-6358-450d-b9dc-91d9cb9c5d56", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T00:15:06.258Z", + "completed":"2017-03-15T00:15:06.258Z", + "new_balance":"4010.46", + "value":"-4.12" + } + }, + { + "id":"671d1286-fa6e-46cf-a233-a504d6c877fa", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T20:04:44.620Z", + "completed":"2017-03-15T20:04:44.620Z", + "new_balance":"4005.54", + "value":"-4.92" + } + }, + { + "id":"f5c17f7d-ccda-4e64-ac95-86e0c5d99fe8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T04:04:52.394Z", + "completed":"2017-03-17T04:04:52.394Z", + "new_balance":"4001.15", + "value":"-4.39" + } + }, + { + "id":"2fd2e0e7-397d-46fc-a5db-12f48d1023f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T20:50:00.188Z", + "completed":"2017-03-18T20:50:00.188Z", + "new_balance":"3991.54", + "value":"-9.61" + } + }, + { + "id":"4d06cacb-08f3-42ff-8267-ab7987b99b74", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T17:15:42.311Z", + "completed":"2017-03-20T17:15:42.311Z", + "new_balance":"3979.18", + "value":"-12.36" + } + }, + { + "id":"81404c38-fb8c-46ff-a32f-c007b08f0ce6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T07:25:34.854Z", + "completed":"2017-03-22T07:25:34.854Z", + "new_balance":"3975.71", + "value":"-3.47" + } + }, + { + "id":"dc80920d-cb17-448e-b4fc-44989b74b8f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T04:25:46.630Z", + "completed":"2017-03-25T04:25:46.630Z", + "new_balance":"3975.24", + "value":"-0.47" + } + }, + { + "id":"3e95d26f-ecb0-490d-be7d-0842a718dd93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T09:08:10.531Z", + "completed":"2017-03-25T09:08:10.531Z", + "new_balance":"3974.09", + "value":"-1.15" + } + }, + { + "id":"977e7814-3250-4f56-bdb1-3da3d2c2474f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T06:30:29.414Z", + "completed":"2017-03-26T06:30:29.414Z", + "new_balance":"3972.74", + "value":"-1.35" + } + }, + { + "id":"8defb221-adcf-450e-b9e9-7f0165bc20de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T19:23:11.193Z", + "completed":"2017-03-26T19:23:11.193Z", + "new_balance":"3970.35", + "value":"-2.39" + } + }, + { + "id":"d8f042e6-7a7e-4da7-9175-2ef9b86d5c71", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T03:40:24.375Z", + "completed":"2017-03-27T03:40:24.375Z", + "new_balance":"3969.15", + "value":"-1.20" + } + }, + { + "id":"f3bc44d9-66f4-4a6f-8356-6f62cc98257c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T15:27:56.036Z", + "completed":"2017-03-28T15:27:56.036Z", + "new_balance":"3965.43", + "value":"-3.72" + } + }, + { + "id":"9659a155-292c-4960-b840-a8ff6f4c57c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T14:37:46.178Z", + "completed":"2017-03-31T14:37:46.178Z", + "new_balance":"3943.07", + "value":"-22.36" + } + }, + { + "id":"0a2a9804-671a-4493-a05e-73704b90c650", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T15:13:33.342Z", + "completed":"2017-04-01T15:13:33.342Z", + "new_balance":"4125.77", + "value":"182.70" + } + }, + { + "id":"11252120-2adc-48df-81e7-bc781fb80723", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:50:52.358Z", + "completed":"2017-04-01T21:50:52.358Z", + "new_balance":"4266.75", + "value":"140.98" + } + }, + { + "id":"37a44025-8d3a-448d-af41-11d5b0f06677", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T22:39:00.605Z", + "completed":"2017-04-01T22:39:00.605Z", + "new_balance":"4235.03", + "value":"-31.72" + } + }, + { + "id":"0c2f00f9-9290-47d8-b30f-2467bebd4fa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T00:05:01.765Z", + "completed":"2017-04-03T00:05:01.765Z", + "new_balance":"4234.36", + "value":"-0.67" + } + }, + { + "id":"238f31ad-4107-4e24-aaa0-92c9b8ae9018", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T15:36:54.102Z", + "completed":"2017-04-03T15:36:54.102Z", + "new_balance":"4229.54", + "value":"-4.82" + } + }, + { + "id":"7cac3b97-8102-4be7-aef6-ea5de8e1f90a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T16:26:13.768Z", + "completed":"2017-04-03T16:26:13.768Z", + "new_balance":"4227.80", + "value":"-1.74" + } + }, + { + "id":"e284cdff-0c03-4f97-a132-70e5225326de", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:30:13.222Z", + "completed":"2017-04-05T15:30:13.222Z", + "new_balance":"4226.40", + "value":"-1.40" + } + }, + { + "id":"2887a419-787e-45cf-b0c3-f8c1b976169e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T23:54:30.602Z", + "completed":"2017-04-05T23:54:30.602Z", + "new_balance":"4225.88", + "value":"-0.52" + } + }, + { + "id":"e1eb954f-d9cf-4e0d-b007-d319854efa61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T18:33:55.960Z", + "completed":"2017-04-06T18:33:55.960Z", + "new_balance":"4224.28", + "value":"-1.60" + } + }, + { + "id":"38fb1647-3734-4dff-8b8c-1bb9e238dfa6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T23:31:47.334Z", + "completed":"2017-04-09T23:31:47.334Z", + "new_balance":"4221.69", + "value":"-2.59" + } + }, + { + "id":"70d1034c-a172-46e3-9023-1111d7bcf5df", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T22:15:33.293Z", + "completed":"2017-04-10T22:15:33.293Z", + "new_balance":"4220.01", + "value":"-1.68" + } + }, + { + "id":"64626dea-c911-42b7-a70c-55ad4232dfb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T04:45:31.966Z", + "completed":"2017-04-11T04:45:31.966Z", + "new_balance":"4217.70", + "value":"-2.31" + } + }, + { + "id":"362fec0b-1a38-41c5-ab0f-4a37abec1187", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:53:31.200Z", + "completed":"2017-04-11T23:53:31.200Z", + "new_balance":"4215.83", + "value":"-1.87" + } + }, + { + "id":"2a13cb74-88a6-45c0-a7c8-82dfa7aa5810", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T08:52:25.477Z", + "completed":"2017-04-13T08:52:25.477Z", + "new_balance":"4208.13", + "value":"-7.70" + } + }, + { + "id":"711f837d-1433-46eb-b2c4-8110ad31f776", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T09:12:07.001Z", + "completed":"2017-04-13T09:12:07.001Z", + "new_balance":"4202.00", + "value":"-6.13" + } + }, + { + "id":"e064b092-8a85-4102-873d-b8738fa116cd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T07:38:42.488Z", + "completed":"2017-04-15T07:38:42.488Z", + "new_balance":"4197.47", + "value":"-4.53" + } + }, + { + "id":"b4c8335f-c0de-4802-9e9a-31dfa501b293", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T02:04:59.213Z", + "completed":"2017-04-16T02:04:59.213Z", + "new_balance":"4197.00", + "value":"-0.47" + } + }, + { + "id":"b0c2d01a-5b54-4de7-8deb-1b8acbf76703", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T21:45:11.627Z", + "completed":"2017-04-16T21:45:11.627Z", + "new_balance":"4196.19", + "value":"-0.81" + } + }, + { + "id":"0cd9fefe-6aae-45e3-8fd0-af9959268417", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T03:23:21.122Z", + "completed":"2017-04-18T03:23:21.122Z", + "new_balance":"4190.71", + "value":"-5.48" + } + }, + { + "id":"5b803594-8c37-4ba1-a27d-219ae16177a8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T06:17:18.561Z", + "completed":"2017-04-23T06:17:18.561Z", + "new_balance":"4188.28", + "value":"-2.43" + } + }, + { + "id":"791fd869-e916-4387-9981-ed5af4f8d645", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T05:13:29.389Z", + "completed":"2017-04-24T05:13:29.389Z", + "new_balance":"4186.71", + "value":"-1.57" + } + }, + { + "id":"7b50d72b-5745-4cd1-b65c-07a230e09bd6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T12:44:42.965Z", + "completed":"2017-04-24T12:44:42.965Z", + "new_balance":"4183.41", + "value":"-3.30" + } + }, + { + "id":"c242310c-9317-40cf-a439-11ff28e53cc8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T02:04:38.603Z", + "completed":"2017-04-26T02:04:38.603Z", + "new_balance":"4182.89", + "value":"-0.52" + } + }, + { + "id":"105b764d-a32e-42c1-bd0a-19f93198a1c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T19:45:54.555Z", + "completed":"2017-04-28T19:45:54.555Z", + "new_balance":"4160.53", + "value":"-22.36" + } + }, + { + "id":"9a8d4aea-9c70-446e-bb3c-97861c017e7c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T21:50:40.540Z", + "completed":"2017-04-28T21:50:40.540Z", + "new_balance":"4156.81", + "value":"-3.72" + } + }, + { + "id":"45f702fa-7d84-42d5-9a8f-c16415b502f7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T05:32:26.653Z", + "completed":"2017-05-02T05:32:26.653Z", + "new_balance":"4156.14", + "value":"-0.67" + } + }, + { + "id":"3b92ea2e-83f5-4078-b028-195caa859429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T18:11:03.778Z", + "completed":"2017-05-02T18:11:03.778Z", + "new_balance":"4143.04", + "value":"-13.10" + } + }, + { + "id":"005d913f-12fd-4f92-9835-54842d495d2e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T21:46:17.707Z", + "completed":"2017-05-02T21:46:17.707Z", + "new_balance":"4141.72", + "value":"-1.32" + } + }, + { + "id":"9b21b939-2342-440a-a18c-ada7a8b4e86c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T22:15:01.187Z", + "completed":"2017-05-02T22:15:01.187Z", + "new_balance":"4110.00", + "value":"-31.72" + } + }, + { + "id":"5ffc05bb-c173-4dbb-82b0-3c19e6b4a17f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T05:11:49.597Z", + "completed":"2017-05-06T05:11:49.597Z", + "new_balance":"4107.81", + "value":"-2.19" + } + }, + { + "id":"ed122034-acba-4a74-beaa-20cb8c8cd059", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T12:11:06.806Z", + "completed":"2017-05-06T12:11:06.806Z", + "new_balance":"4105.50", + "value":"-2.31" + } + }, + { + "id":"7065d893-0c80-4668-a61f-853a0216db53", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T03:26:35.771Z", + "completed":"2017-05-07T03:26:35.771Z", + "new_balance":"4097.80", + "value":"-7.70" + } + }, + { + "id":"b1f182ce-3de9-4b69-9c74-b5a3f8e28e4b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T10:55:16.658Z", + "completed":"2017-05-07T10:55:16.658Z", + "new_balance":"4093.23", + "value":"-4.57" + } + }, + { + "id":"bfe23ebf-01a8-480b-8a8a-3ca84e90bfb3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T02:24:40.404Z", + "completed":"2017-05-09T02:24:40.404Z", + "new_balance":"4234.21", + "value":"140.98" + } + }, + { + "id":"00b31390-cc13-46c6-9f4d-af09e7f9e913", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T12:34:24.395Z", + "completed":"2017-05-14T12:34:24.395Z", + "new_balance":"4230.07", + "value":"-4.14" + } + }, + { + "id":"eed8e0e0-6219-4738-afe5-4d95b30dd16c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T22:22:47.560Z", + "completed":"2017-05-14T22:22:47.560Z", + "new_balance":"4227.67", + "value":"-2.40" + } + }, + { + "id":"6c9c5e34-dcfe-46bb-bf4b-378d74798db9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T17:56:51.374Z", + "completed":"2017-05-16T17:56:51.374Z", + "new_balance":"4227.15", + "value":"-0.52" + } + }, + { + "id":"f901573d-f030-49a0-bf80-ccd37b91f2f0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T08:54:39.795Z", + "completed":"2017-05-21T08:54:39.795Z", + "new_balance":"4224.27", + "value":"-2.88" + } + }, + { + "id":"7ce1cbff-3f85-4c71-9576-5676f3d514ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T04:22:21.577Z", + "completed":"2017-05-23T04:22:21.577Z", + "new_balance":"4221.96", + "value":"-2.31" + } + }, + { + "id":"7076e47b-43fd-4c2f-8138-db7f714ecdd3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T16:00:45.406Z", + "completed":"2017-05-23T16:00:45.406Z", + "new_balance":"4221.49", + "value":"-0.47" + } + }, + { + "id":"9634603e-7c7a-445e-8847-23f2fbc01cc6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T07:09:16.846Z", + "completed":"2017-05-24T07:09:16.846Z", + "new_balance":"4216.88", + "value":"-4.61" + } + }, + { + "id":"bf4eb9ca-94c1-4a5c-b5b9-1170984a2c0d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T13:46:29.537Z", + "completed":"2017-05-27T13:46:29.537Z", + "new_balance":"4216.29", + "value":"-0.59" + } + }, + { + "id":"3f836d0b-e1d9-403d-95ab-57a1ae771b4c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T00:55:17.262Z", + "completed":"2017-05-30T00:55:17.262Z", + "new_balance":"4193.93", + "value":"-22.36" + } + }, + { + "id":"70a31fec-e036-4a24-8607-4d6ebcbd06a4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T03:42:51.168Z", + "completed":"2017-05-30T03:42:51.168Z", + "new_balance":"4190.21", + "value":"-3.72" + } + }, + { + "id":"7adca890-e92a-49a5-9947-736b0083b3a1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T06:46:51.280Z", + "completed":"2017-06-01T06:46:51.280Z", + "new_balance":"4158.49", + "value":"-31.72" + } + }, + { + "id":"09972c82-e063-4801-87e0-42c80931f57e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T20:28:34.065Z", + "completed":"2017-06-01T20:28:34.065Z", + "new_balance":"4299.47", + "value":"140.98" + } + }, + { + "id":"60057fe5-6764-426f-8975-b86d7d0e24a8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T01:04:10.952Z", + "completed":"2017-06-04T01:04:10.952Z", + "new_balance":"4297.42", + "value":"-2.05" + } + }, + { + "id":"5aea79d0-06a6-4129-a2f1-cf2430a0647b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:37:53.452Z", + "completed":"2017-06-04T06:37:53.452Z", + "new_balance":"4293.96", + "value":"-3.46" + } + }, + { + "id":"39e549b9-a8c1-4e4d-9388-59ff9bb6a889", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T04:14:11.235Z", + "completed":"2017-06-11T04:14:11.235Z", + "new_balance":"4289.35", + "value":"-4.61" + } + }, + { + "id":"3f6ca275-9235-4288-80fd-b63f5be1360e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T22:12:31.991Z", + "completed":"2017-06-11T22:12:31.991Z", + "new_balance":"4286.05", + "value":"-3.30" + } + }, + { + "id":"860c38f7-7a4a-4a0d-83b5-b78e7b84944b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T03:23:46.892Z", + "completed":"2017-06-12T03:23:46.892Z", + "new_balance":"4284.75", + "value":"-1.30" + } + }, + { + "id":"2f8518e5-a44d-415c-928b-a3935c61840c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T09:48:45.975Z", + "completed":"2017-06-12T09:48:45.975Z", + "new_balance":"4277.05", + "value":"-7.70" + } + }, + { + "id":"20c94032-9c95-4bcb-94c3-cdbfa0885fd6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T15:20:22.984Z", + "completed":"2017-06-12T15:20:22.984Z", + "new_balance":"4276.58", + "value":"-0.47" + } + }, + { + "id":"809b2be4-1561-409f-96a5-301f4bd7e467", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T09:13:18.655Z", + "completed":"2017-06-13T09:13:18.655Z", + "new_balance":"4269.83", + "value":"-6.75" + } + }, + { + "id":"2a56b139-8816-403d-a8c5-edfd3778217e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T10:39:22.643Z", + "completed":"2017-06-13T10:39:22.643Z", + "new_balance":"4262.09", + "value":"-7.74" + } + }, + { + "id":"c76e1776-1b8b-4333-bf0a-21765f67297a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T15:06:03.395Z", + "completed":"2017-06-13T15:06:03.395Z", + "new_balance":"4255.45", + "value":"-6.64" + } + }, + { + "id":"98e76c53-4264-4fac-afb3-345ab2e41606", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T08:28:03.039Z", + "completed":"2017-06-14T08:28:03.039Z", + "new_balance":"4254.65", + "value":"-0.80" + } + }, + { + "id":"8527d616-c826-4f8c-afc5-1ca96e1cf51f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T13:00:01.492Z", + "completed":"2017-06-14T13:00:01.492Z", + "new_balance":"4253.85", + "value":"-0.80" + } + }, + { + "id":"32a7d953-cd9f-4bb7-b1e5-cf24aa5f95b3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T13:20:40.924Z", + "completed":"2017-06-14T13:20:40.924Z", + "new_balance":"4253.38", + "value":"-0.47" + } + }, + { + "id":"a5648738-9b81-452e-b8d4-f4ef2c54edf6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T03:50:55.168Z", + "completed":"2017-06-15T03:50:55.168Z", + "new_balance":"4250.67", + "value":"-2.71" + } + }, + { + "id":"bf75924a-eac3-4a1a-9767-a7dce0c11265", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T11:07:48.080Z", + "completed":"2017-06-15T11:07:48.080Z", + "new_balance":"4250.20", + "value":"-0.47" + } + }, + { + "id":"52432d4e-7f65-44ac-afbb-c66d97174f54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T13:06:42.554Z", + "completed":"2017-06-15T13:06:42.554Z", + "new_balance":"4249.43", + "value":"-0.77" + } + }, + { + "id":"e0811f6f-0a23-4712-b276-bffa525da42b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T08:10:08.876Z", + "completed":"2017-06-16T08:10:08.876Z", + "new_balance":"4246.71", + "value":"-2.72" + } + }, + { + "id":"4dc27e46-8051-4e45-aabc-7681e6c710ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T06:41:23.152Z", + "completed":"2017-06-17T06:41:23.152Z", + "new_balance":"4245.11", + "value":"-1.60" + } + }, + { + "id":"ceb380d0-e14d-48b4-83d3-4fd4d92827d6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T03:37:19.728Z", + "completed":"2017-06-18T03:37:19.728Z", + "new_balance":"4234.96", + "value":"-10.15" + } + }, + { + "id":"c6e9d6e3-654f-4a38-bf0d-0e499b46f413", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T06:14:22.320Z", + "completed":"2017-06-18T06:14:22.320Z", + "new_balance":"4228.80", + "value":"-6.16" + } + }, + { + "id":"740f1e88-9bad-444f-aa4e-36b1464d1afd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:33:18.491Z", + "completed":"2017-06-18T08:33:18.491Z", + "new_balance":"4228.33", + "value":"-0.47" + } + }, + { + "id":"7b6408d0-eef1-46d6-a40f-dfcb0f240ea2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T11:55:44.000Z", + "completed":"2017-06-18T11:55:44.000Z", + "new_balance":"4225.74", + "value":"-2.59" + } + }, + { + "id":"c692cf59-0508-40ba-8805-96c75edf7b5c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T15:08:15.339Z", + "completed":"2017-06-18T15:08:15.339Z", + "new_balance":"4225.27", + "value":"-0.47" + } + }, + { + "id":"0ca7959d-a8ec-47a3-aa31-de0980b9f503", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T16:37:26.083Z", + "completed":"2017-06-18T16:37:26.083Z", + "new_balance":"4222.69", + "value":"-2.58" + } + }, + { + "id":"c45cc472-5a38-4245-b788-91d345044b3a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T00:17:06.226Z", + "completed":"2017-06-19T00:17:06.226Z", + "new_balance":"4218.57", + "value":"-4.12" + } + }, + { + "id":"47cd2ab9-072f-4ca8-9cf6-cfcce26f663d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:58:29.858Z", + "completed":"2017-06-19T00:58:29.858Z", + "new_balance":"4214.18", + "value":"-4.39" + } + }, + { + "id":"5026abe7-a882-4ecd-a589-24e59ad507c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T04:31:04.536Z", + "completed":"2017-06-19T04:31:04.536Z", + "new_balance":"4209.26", + "value":"-4.92" + } + }, + { + "id":"b164a041-e23d-4156-896f-8eec32d8492b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T07:01:09.651Z", + "completed":"2017-06-21T07:01:09.651Z", + "new_balance":"4199.65", + "value":"-9.61" + } + }, + { + "id":"5d88e71a-1b17-491e-99e5-8514fa573a31", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T20:11:01.349Z", + "completed":"2017-06-21T20:11:01.349Z", + "new_balance":"4187.29", + "value":"-12.36" + } + }, + { + "id":"9effd9de-43cd-46b3-98af-c73dbc44106e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T02:52:35.749Z", + "completed":"2017-06-22T02:52:35.749Z", + "new_balance":"4183.82", + "value":"-3.47" + } + }, + { + "id":"2edbde75-63be-4148-974e-9aaff5eb4dc5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T18:02:56.873Z", + "completed":"2017-06-22T18:02:56.873Z", + "new_balance":"4182.67", + "value":"-1.15" + } + }, + { + "id":"fc5ef6ce-67dd-4113-ba78-4f292005c680", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T22:53:53.025Z", + "completed":"2017-06-22T22:53:53.025Z", + "new_balance":"4182.20", + "value":"-0.47" + } + }, + { + "id":"03ec4090-5b38-45e1-8fab-3a0b029fb52d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T13:37:52.672Z", + "completed":"2017-06-23T13:37:52.672Z", + "new_balance":"4180.85", + "value":"-1.35" + } + }, + { + "id":"a8df0f34-8889-4f7b-93c0-8eef35d019b0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T03:35:42.730Z", + "completed":"2017-06-24T03:35:42.730Z", + "new_balance":"4178.46", + "value":"-2.39" + } + }, + { + "id":"253e61f3-7f36-4793-8794-1bb85133b9ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T14:38:52.123Z", + "completed":"2017-06-26T14:38:52.123Z", + "new_balance":"4177.26", + "value":"-1.20" + } + }, + { + "id":"3ae3e239-937f-456e-84fb-23885170077f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T09:11:35.987Z", + "completed":"2017-06-30T09:11:35.987Z", + "new_balance":"4173.54", + "value":"-3.72" + } + }, + { + "id":"7bfddfa4-9fab-4b39-929f-248383bcb6a2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T17:00:21.954Z", + "completed":"2017-06-30T17:00:21.954Z", + "new_balance":"4151.18", + "value":"-22.36" + } + }, + { + "id":"0efe4ffd-b5dd-46da-8003-358b0f958d62", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T05:49:20.403Z", + "completed":"2017-07-01T05:49:20.403Z", + "new_balance":"4292.16", + "value":"140.98" + } + }, + { + "id":"8e3c14a2-5e09-48e0-8d20-9e867cd08592", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T12:29:36.396Z", + "completed":"2017-07-01T12:29:36.396Z", + "new_balance":"4474.86", + "value":"182.70" + } + }, + { + "id":"e4fa21bd-9d60-41ae-9c75-3c299e264ed9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T08:29:43.529Z", + "completed":"2017-07-03T08:29:43.529Z", + "new_balance":"4443.14", + "value":"-31.72" + } + }, + { + "id":"12d41663-f747-4ca5-b07a-c0bb5dfc0fcb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T05:14:25.216Z", + "completed":"2017-07-04T05:14:25.216Z", + "new_balance":"4438.32", + "value":"-4.82" + } + }, + { + "id":"c2ca00e8-daca-4e3c-a773-4d0e4856e616", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T07:49:28.072Z", + "completed":"2017-07-04T07:49:28.072Z", + "new_balance":"4436.58", + "value":"-1.74" + } + }, + { + "id":"f6abe4f7-6d43-48f4-8e13-e5feca6e2bb9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T10:03:18.330Z", + "completed":"2017-07-04T10:03:18.330Z", + "new_balance":"4435.91", + "value":"-0.67" + } + }, + { + "id":"e569ce71-f5f5-45ce-aac6-cafcf3b61f57", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T18:39:20.071Z", + "completed":"2017-07-05T18:39:20.071Z", + "new_balance":"4434.51", + "value":"-1.40" + } + }, + { + "id":"c3c3781a-6f91-470f-9f2c-3b1988658ccb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T01:56:32.081Z", + "completed":"2017-07-07T01:56:32.081Z", + "new_balance":"4433.99", + "value":"-0.52" + } + }, + { + "id":"1d1f2418-ef49-4ec3-8142-138159396d2d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T03:58:10.221Z", + "completed":"2017-07-11T03:58:10.221Z", + "new_balance":"4432.12", + "value":"-1.87" + } + }, + { + "id":"1aeae81e-0c2a-4d03-98fa-4c5061109033", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T12:27:03.742Z", + "completed":"2017-07-11T12:27:03.742Z", + "new_balance":"4429.81", + "value":"-2.31" + } + }, + { + "id":"9f3abbd1-5d46-400b-896d-cc664fbd87ec", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T13:21:54.387Z", + "completed":"2017-07-11T13:21:54.387Z", + "new_balance":"4427.22", + "value":"-2.59" + } + }, + { + "id":"166d1ace-5afe-41ee-91ea-5096f5126b84", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T22:08:57.434Z", + "completed":"2017-07-11T22:08:57.434Z", + "new_balance":"4425.62", + "value":"-1.60" + } + }, + { + "id":"6116e0ef-fc77-4ad5-b536-5de77602375b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T22:11:59.279Z", + "completed":"2017-07-11T22:11:59.279Z", + "new_balance":"4423.94", + "value":"-1.68" + } + }, + { + "id":"64e53bcf-f857-49dc-b20e-252a30db553f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T14:24:49.209Z", + "completed":"2017-07-13T14:24:49.209Z", + "new_balance":"4416.24", + "value":"-7.70" + } + }, + { + "id":"17ede34d-2cce-4f33-8399-1782b064a9fd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T15:53:12.538Z", + "completed":"2017-07-13T15:53:12.538Z", + "new_balance":"4410.11", + "value":"-6.13" + } + }, + { + "id":"38f93367-98dd-4c69-8762-cb141e210a63", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T18:37:43.690Z", + "completed":"2017-07-16T18:37:43.690Z", + "new_balance":"4405.58", + "value":"-4.53" + } + }, + { + "id":"eccbea91-f5f7-44f1-ac4b-fef193362777", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T19:44:23.467Z", + "completed":"2017-07-16T19:44:23.467Z", + "new_balance":"4414.57", + "value":"8.99" + } + }, + { + "id":"b0d09e06-e5e6-46d6-b088-9887b08b04e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T07:44:03.853Z", + "completed":"2017-07-17T07:44:03.853Z", + "new_balance":"4414.10", + "value":"-0.47" + } + }, + { + "id":"362779f1-6537-4f4d-aac4-725edfbb4cb6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T15:38:25.882Z", + "completed":"2017-07-17T15:38:25.882Z", + "new_balance":"4413.29", + "value":"-0.81" + } + }, + { + "id":"e3f666b7-68ad-45c0-b8d0-6984150f728e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T13:03:49.983Z", + "completed":"2017-07-19T13:03:49.983Z", + "new_balance":"4407.81", + "value":"-5.48" + } + }, + { + "id":"ddd815f9-8f15-4020-9b7b-6e23d8e82ed8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T12:41:03.854Z", + "completed":"2017-07-21T12:41:03.854Z", + "new_balance":"4405.38", + "value":"-2.43" + } + }, + { + "id":"57444c81-b6f6-4c00-bd42-4a495de48ad5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T04:43:14.968Z", + "completed":"2017-07-23T04:43:14.968Z", + "new_balance":"4402.08", + "value":"-3.30" + } + }, + { + "id":"9f3816ce-67ec-476e-9548-aa039b1f8361", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T14:29:00.528Z", + "completed":"2017-07-25T14:29:00.528Z", + "new_balance":"4400.51", + "value":"-1.57" + } + }, + { + "id":"80cbdf6e-ac14-41a4-acf5-e39c22e00e21", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T14:47:40.561Z", + "completed":"2017-07-27T14:47:40.561Z", + "new_balance":"4399.99", + "value":"-0.52" + } + }, + { + "id":"e59a6486-685f-4f7f-a2e7-72a4618aba22", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T09:43:23.409Z", + "completed":"2017-07-28T09:43:23.409Z", + "new_balance":"4377.63", + "value":"-22.36" + } + }, + { + "id":"22147528-ee4a-4245-91ce-9c5e646bbb36", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T16:28:44.779Z", + "completed":"2017-07-28T16:28:44.779Z", + "new_balance":"4373.91", + "value":"-3.72" + } + }, + { + "id":"92284f7f-498a-46c7-b9f8-10769e4860e0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T05:42:57.112Z", + "completed":"2017-08-01T05:42:57.112Z", + "new_balance":"4514.89", + "value":"140.98" + } + }, + { + "id":"2b0845b0-d748-490f-bb33-057dbcc3a88e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T04:49:28.806Z", + "completed":"2017-08-03T04:49:28.806Z", + "new_balance":"4501.79", + "value":"-13.10" + } + }, + { + "id":"485f87a3-0d25-4268-9f53-4a65531e5160", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T10:35:18.985Z", + "completed":"2017-08-03T10:35:18.985Z", + "new_balance":"4470.07", + "value":"-31.72" + } + }, + { + "id":"70ee1748-1e51-448c-9237-cb5da480bda2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T05:17:05.751Z", + "completed":"2017-08-04T05:17:05.751Z", + "new_balance":"4468.75", + "value":"-1.32" + } + }, + { + "id":"c3ce9715-4b06-4cb4-aada-30546beb9827", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T07:59:42.462Z", + "completed":"2017-08-07T07:59:42.462Z", + "new_balance":"4466.44", + "value":"-2.31" + } + }, + { + "id":"d48d3695-9068-411f-93ff-8360c1862608", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T11:41:23.362Z", + "completed":"2017-08-07T11:41:23.362Z", + "new_balance":"4465.77", + "value":"-0.67" + } + }, + { + "id":"bb27e226-b0f9-4760-94fe-ce4b285ae51b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T20:38:55.681Z", + "completed":"2017-08-07T20:38:55.681Z", + "new_balance":"4463.58", + "value":"-2.19" + } + }, + { + "id":"4a984bf4-aa77-4545-8355-0cbfbadd0b90", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T03:56:34.357Z", + "completed":"2017-08-08T03:56:34.357Z", + "new_balance":"4459.01", + "value":"-4.57" + } + }, + { + "id":"596ac6ff-6720-41cc-97d5-07ad90fae5f6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T16:38:13.101Z", + "completed":"2017-08-08T16:38:13.101Z", + "new_balance":"4454.87", + "value":"-4.14" + } + }, + { + "id":"ca4698d1-843b-4d68-b9a8-51f3235c39dd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T21:30:29.254Z", + "completed":"2017-08-08T21:30:29.254Z", + "new_balance":"4447.17", + "value":"-7.70" + } + }, + { + "id":"24282eca-35b9-40c2-b32f-7f7449826b34", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T06:01:05.412Z", + "completed":"2017-08-09T06:01:05.412Z", + "new_balance":"4444.77", + "value":"-2.40" + } + }, + { + "id":"3015b606-45a6-4a38-b040-2ac7a9df670a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T17:46:02.885Z", + "completed":"2017-08-11T17:46:02.885Z", + "new_balance":"4444.25", + "value":"-0.52" + } + }, + { + "id":"8d7ea94c-edad-480e-8da1-1bdfc7c896ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T05:08:29.951Z", + "completed":"2017-08-14T05:08:29.951Z", + "new_balance":"4441.37", + "value":"-2.88" + } + }, + { + "id":"b0d3fe4f-268c-4cbf-847c-358326241ed8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T17:41:51.272Z", + "completed":"2017-08-15T17:41:51.272Z", + "new_balance":"4439.06", + "value":"-2.31" + } + }, + { + "id":"9708cffb-864e-4e82-92b0-dfdbba85ae79", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T10:45:26.736Z", + "completed":"2017-08-17T10:45:26.736Z", + "new_balance":"4434.45", + "value":"-4.61" + } + }, + { + "id":"a4edadd2-2e8d-4552-8787-b8f72202be54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T20:10:44.950Z", + "completed":"2017-08-17T20:10:44.950Z", + "new_balance":"4433.98", + "value":"-0.47" + } + }, + { + "id":"b423d07c-ad2c-4e67-a59e-dfff3b692253", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T21:19:07.588Z", + "completed":"2017-08-19T21:19:07.588Z", + "new_balance":"4433.39", + "value":"-0.59" + } + }, + { + "id":"500df5dc-fa37-4373-b505-ba44cd2611e9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T18:55:30.748Z", + "completed":"2017-08-25T18:55:30.748Z", + "new_balance":"4444.79", + "value":"11.40" + } + }, + { + "id":"527eb797-ec5d-4e4c-8b78-b9b8f19ed37c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T06:16:04.898Z", + "completed":"2017-08-28T06:16:04.898Z", + "new_balance":"4441.07", + "value":"-3.72" + } + }, + { + "id":"76ad9c35-9ea9-4aae-b65d-218d159fe591", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T15:35:23.788Z", + "completed":"2017-08-28T15:35:23.788Z", + "new_balance":"4418.71", + "value":"-22.36" + } + }, + { + "id":"93782f72-91e5-4826-95f4-f2a780c8d8f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T15:28:50.277Z", + "completed":"2017-09-01T15:28:50.277Z", + "new_balance":"4559.69", + "value":"140.98" + } + }, + { + "id":"989ac84d-2eec-4826-89de-97ea178787f5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T10:07:50.259Z", + "completed":"2017-09-03T10:07:50.259Z", + "new_balance":"4527.97", + "value":"-31.72" + } + }, + { + "id":"8ba77485-6fcc-4bee-9884-20c6a5cf00ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T10:23:02.881Z", + "completed":"2017-09-04T10:23:02.881Z", + "new_balance":"4524.67", + "value":"-3.30" + } + }, + { + "id":"1db6a19b-f98b-4c42-96fd-f5ec136b4b4c", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T10:59:54.042Z", + "completed":"2017-09-04T10:59:54.042Z", + "new_balance":"4520.06", + "value":"-4.61" + } + }, + { + "id":"a5cc5070-4538-4837-bef8-20f6fe2d782d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T15:35:13.584Z", + "completed":"2017-09-04T15:35:13.584Z", + "new_balance":"4516.60", + "value":"-3.46" + } + }, + { + "id":"8b5fcdd0-3e27-4b50-9f33-67cce055cd86", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T18:33:16.708Z", + "completed":"2017-09-04T18:33:16.708Z", + "new_balance":"4514.55", + "value":"-2.05" + } + }, + { + "id":"6dc9780f-5f8c-4385-9a5c-66f1185c2691", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T01:09:48.932Z", + "completed":"2017-09-05T01:09:48.932Z", + "new_balance":"4506.81", + "value":"-7.74" + } + }, + { + "id":"48ab069c-1a27-4c84-a67b-924f25e1f84e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T09:19:43.453Z", + "completed":"2017-09-05T09:19:43.453Z", + "new_balance":"4500.17", + "value":"-6.64" + } + }, + { + "id":"21f929f1-f29e-4a2d-b6cf-146b9a443394", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T14:43:00.799Z", + "completed":"2017-09-05T14:43:00.799Z", + "new_balance":"4499.70", + "value":"-0.47" + } + }, + { + "id":"fa171609-6028-474f-bbd5-44440ebe289f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T16:56:19.129Z", + "completed":"2017-09-05T16:56:19.129Z", + "new_balance":"4498.40", + "value":"-1.30" + } + }, + { + "id":"10e316dd-721e-43cc-aa5a-11c18290a7ee", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T18:05:35.578Z", + "completed":"2017-09-05T18:05:35.578Z", + "new_balance":"4491.65", + "value":"-6.75" + } + }, + { + "id":"16cee330-ce2b-4657-b893-8163c5a3cae4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T23:26:32.780Z", + "completed":"2017-09-05T23:26:32.780Z", + "new_balance":"4483.95", + "value":"-7.70" + } + }, + { + "id":"486e36ab-0d5d-4b74-9686-d74bd4edb153", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T01:08:18.168Z", + "completed":"2017-09-07T01:08:18.168Z", + "new_balance":"4483.48", + "value":"-0.47" + } + }, + { + "id":"124db640-5c08-4bf6-b681-6a5833f711a6", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T02:15:37.005Z", + "completed":"2017-09-07T02:15:37.005Z", + "new_balance":"4482.68", + "value":"-0.80" + } + }, + { + "id":"7488a363-af1c-48c3-8b42-22afa76d0460", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T08:48:27.557Z", + "completed":"2017-09-07T08:48:27.557Z", + "new_balance":"4481.91", + "value":"-0.77" + } + }, + { + "id":"9f0aa66b-a057-4b25-8344-8f9ce04ad6c9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T16:49:33.672Z", + "completed":"2017-09-07T16:49:33.672Z", + "new_balance":"4481.11", + "value":"-0.80" + } + }, + { + "id":"6efa5a1c-02f3-49a3-8086-1a89af1c9cf0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T20:37:39.088Z", + "completed":"2017-09-10T20:37:39.088Z", + "new_balance":"4478.40", + "value":"-2.71" + } + }, + { + "id":"4c3becca-b5dc-4c07-acec-13af45f5c54f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T04:47:02.596Z", + "completed":"2017-09-11T04:47:02.596Z", + "new_balance":"4477.93", + "value":"-0.47" + } + }, + { + "id":"33432e1f-0241-462c-842d-5c5007588719", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T12:24:53.675Z", + "completed":"2017-09-11T12:24:53.675Z", + "new_balance":"4476.33", + "value":"-1.60" + } + }, + { + "id":"028933a4-f292-4be2-bcb9-a33a55cfc96e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T16:13:38.752Z", + "completed":"2017-09-11T16:13:38.752Z", + "new_balance":"4473.61", + "value":"-2.72" + } + }, + { + "id":"c410514b-242a-4f22-a631-c3002c6fe0f0", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T01:49:00.927Z", + "completed":"2017-09-12T01:49:00.927Z", + "new_balance":"4467.45", + "value":"-6.16" + } + }, + { + "id":"296574c0-2cce-4f82-8bad-f2eea8faf774", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T02:41:36.850Z", + "completed":"2017-09-12T02:41:36.850Z", + "new_balance":"4466.98", + "value":"-0.47" + } + }, + { + "id":"49208448-349a-48fa-86bb-dc37726424ef", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T11:07:03.743Z", + "completed":"2017-09-12T11:07:03.743Z", + "new_balance":"4464.39", + "value":"-2.59" + } + }, + { + "id":"1886a2be-c824-4577-8579-783692bdbf54", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:55:52.983Z", + "completed":"2017-09-12T15:55:52.983Z", + "new_balance":"4454.24", + "value":"-10.15" + } + }, + { + "id":"ca793a4b-8947-46e9-a149-0f61f40a15ac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T06:31:29.936Z", + "completed":"2017-09-13T06:31:29.936Z", + "new_balance":"4451.66", + "value":"-2.58" + } + }, + { + "id":"83420dea-e2d3-4fc4-b297-0dfe27bac695", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T08:17:17.015Z", + "completed":"2017-09-14T08:17:17.015Z", + "new_balance":"4451.19", + "value":"-0.47" + } + }, + { + "id":"1ee89df8-4bdf-4b81-8314-d98d733cd021", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T16:45:24.736Z", + "completed":"2017-09-14T16:45:24.736Z", + "new_balance":"4446.27", + "value":"-4.92" + } + }, + { + "id":"9155acf9-5dd7-4f88-9483-1f54e6717429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T23:34:01.240Z", + "completed":"2017-09-16T23:34:01.240Z", + "new_balance":"4442.15", + "value":"-4.12" + } + }, + { + "id":"2d825905-70ac-4a60-bda9-0e587bf352f9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T01:55:35.746Z", + "completed":"2017-09-18T01:55:35.746Z", + "new_balance":"4437.76", + "value":"-4.39" + } + }, + { + "id":"c73350a4-5bee-4321-a19e-1da633cf486a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T12:46:20.073Z", + "completed":"2017-09-21T12:46:20.073Z", + "new_balance":"4428.15", + "value":"-9.61" + } + }, + { + "id":"33f0ecf7-6792-48b5-8d8f-81d32631fd6d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T15:26:39.063Z", + "completed":"2017-09-21T15:26:39.063Z", + "new_balance":"4415.79", + "value":"-12.36" + } + }, + { + "id":"b219149a-cb80-4331-bfca-c933e70aad82", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T18:57:27.451Z", + "completed":"2017-09-23T18:57:27.451Z", + "new_balance":"4412.32", + "value":"-3.47" + } + }, + { + "id":"a78b8bef-2c14-4d0e-a14a-a73cbb08047a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T16:24:06.429Z", + "completed":"2017-09-24T16:24:06.429Z", + "new_balance":"4411.85", + "value":"-0.47" + } + }, + { + "id":"ae4ebc28-2d09-4885-b1d1-147227a55755", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T07:53:00.126Z", + "completed":"2017-09-26T07:53:00.126Z", + "new_balance":"4410.70", + "value":"-1.15" + } + }, + { + "id":"5e3782b2-dcc6-4c55-b6df-2e7449d47d4f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T17:19:48.217Z", + "completed":"2017-09-26T17:19:48.217Z", + "new_balance":"4408.31", + "value":"-2.39" + } + }, + { + "id":"02fd43ba-d4a9-4acf-91f7-67c8e260e929", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T17:50:02.020Z", + "completed":"2017-09-26T17:50:02.020Z", + "new_balance":"4406.96", + "value":"-1.35" + } + }, + { + "id":"9620f7e1-202d-4973-b528-390743fc3f1f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T20:45:44.147Z", + "completed":"2017-09-27T20:45:44.147Z", + "new_balance":"4405.76", + "value":"-1.20" + } + }, + { + "id":"03919135-a220-4de2-bfcf-a24c382d187b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T01:49:59.138Z", + "completed":"2017-09-28T01:49:59.138Z", + "new_balance":"4383.40", + "value":"-22.36" + } + }, + { + "id":"0cba52d7-0a92-4bec-b8f1-959ef56e0403", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T21:11:55.224Z", + "completed":"2017-09-28T21:11:55.224Z", + "new_balance":"4379.68", + "value":"-3.72" + } + }, + { + "id":"77ad0b71-472d-4bf0-9adb-cc5773475d1b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T02:53:38.444Z", + "completed":"2017-10-01T02:53:38.444Z", + "new_balance":"4562.38", + "value":"182.70" + } + }, + { + "id":"c5be5d1a-6ecd-45ed-96db-497354479d12", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T09:44:40.471Z", + "completed":"2017-10-01T09:44:40.471Z", + "new_balance":"4703.36", + "value":"140.98" + } + }, + { + "id":"f94ddfd1-d8c1-48b2-ae3b-d377eba02429", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T12:34:46.919Z", + "completed":"2017-10-01T12:34:46.919Z", + "new_balance":"4671.64", + "value":"-31.72" + } + }, + { + "id":"a462cb46-0581-4e04-a2b8-7a11258b4e97", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T04:58:20.178Z", + "completed":"2017-10-03T04:58:20.178Z", + "new_balance":"4670.97", + "value":"-0.67" + } + }, + { + "id":"91007e89-8441-45e8-8434-3782798640c1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T12:43:14.412Z", + "completed":"2017-10-03T12:43:14.412Z", + "new_balance":"4666.15", + "value":"-4.82" + } + }, + { + "id":"f2239319-56f7-4a26-87aa-bd7f0dd42bac", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T14:23:24.812Z", + "completed":"2017-10-03T14:23:24.812Z", + "new_balance":"4664.41", + "value":"-1.74" + } + }, + { + "id":"f4fee677-4731-49ce-b917-d256a8eb5d6d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T03:18:36.435Z", + "completed":"2017-10-05T03:18:36.435Z", + "new_balance":"4663.01", + "value":"-1.40" + } + }, + { + "id":"c3617dd2-6227-43b6-8553-b55aaab9b775", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T21:20:12.614Z", + "completed":"2017-10-05T21:20:12.614Z", + "new_balance":"4662.49", + "value":"-0.52" + } + }, + { + "id":"afa719c2-f541-4532-8c7d-dce4876d37d3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:48:47.868Z", + "completed":"2017-10-06T05:48:47.868Z", + "new_balance":"4660.89", + "value":"-1.60" + } + }, + { + "id":"093007ee-b0ac-406f-8f4a-1c302eadf631", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T23:58:33.431Z", + "completed":"2017-10-09T23:58:33.431Z", + "new_balance":"4658.30", + "value":"-2.59" + } + }, + { + "id":"7567460d-5a18-4bdf-ab13-4ccd667af4ab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T06:46:19.051Z", + "completed":"2017-10-10T06:46:19.051Z", + "new_balance":"4656.62", + "value":"-1.68" + } + }, + { + "id":"ff1ef6e4-407f-4d95-8b71-535c25629467", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T05:27:55.940Z", + "completed":"2017-10-11T05:27:55.940Z", + "new_balance":"4654.31", + "value":"-2.31" + } + }, + { + "id":"52837503-3184-4986-99b5-f3975fb4f5e3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T14:11:17.493Z", + "completed":"2017-10-11T14:11:17.493Z", + "new_balance":"4652.44", + "value":"-1.87" + } + }, + { + "id":"1d588d05-1843-4fde-876d-feecf8ff524d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T03:11:33.097Z", + "completed":"2017-10-14T03:11:33.097Z", + "new_balance":"4646.31", + "value":"-6.13" + } + }, + { + "id":"b4efcde5-f650-483c-9f5e-c142e14c0941", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T20:08:57.735Z", + "completed":"2017-10-14T20:08:57.735Z", + "new_balance":"4638.61", + "value":"-7.70" + } + }, + { + "id":"f089c4c7-b979-428a-b20f-d3a6912451a3", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T23:56:59.504Z", + "completed":"2017-10-17T23:56:59.504Z", + "new_balance":"4634.08", + "value":"-4.53" + } + }, + { + "id":"90fff9e6-349a-4a18-ac81-29bd3b01ba61", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T03:33:19.695Z", + "completed":"2017-10-18T03:33:19.695Z", + "new_balance":"4633.27", + "value":"-0.81" + } + }, + { + "id":"df927751-4372-49d1-8610-103b34e7d32d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T06:58:55.336Z", + "completed":"2017-10-18T06:58:55.336Z", + "new_balance":"4627.79", + "value":"-5.48" + } + }, + { + "id":"6826e9fd-732e-4095-9b20-46862d56e434", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T17:49:24.492Z", + "completed":"2017-10-18T17:49:24.492Z", + "new_balance":"4627.32", + "value":"-0.47" + } + }, + { + "id":"74cdd6d8-2c53-44a0-8b9d-f66760cd00b5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T05:38:31.011Z", + "completed":"2017-10-23T05:38:31.011Z", + "new_balance":"4624.89", + "value":"-2.43" + } + }, + { + "id":"ea16cd73-b29c-4ee5-bcb0-39b37333607f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T09:10:52.889Z", + "completed":"2017-10-24T09:10:52.889Z", + "new_balance":"4623.32", + "value":"-1.57" + } + }, + { + "id":"be2369d3-f591-4aef-a7e0-ab937f3e3f17", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T15:17:58.857Z", + "completed":"2017-10-24T15:17:58.857Z", + "new_balance":"4620.02", + "value":"-3.30" + } + }, + { + "id":"34106015-3e10-4d24-829f-e84f0e9033c8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T15:11:23.681Z", + "completed":"2017-10-26T15:11:23.681Z", + "new_balance":"4619.50", + "value":"-0.52" + } + }, + { + "id":"f9827b59-b64a-422c-bee4-58068f4f9663", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T11:02:46.637Z", + "completed":"2017-10-30T11:02:46.637Z", + "new_balance":"4615.78", + "value":"-3.72" + } + }, + { + "id":"2b8e7af0-1c90-43e5-a953-d9f117ddffe5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T11:49:21.805Z", + "completed":"2017-10-30T11:49:21.805Z", + "new_balance":"4593.42", + "value":"-22.36" + } + }, + { + "id":"32830bc2-2ff3-4788-a9a5-38d180b92398", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T01:36:51.288Z", + "completed":"2017-11-02T01:36:51.288Z", + "new_balance":"4561.70", + "value":"-31.72" + } + }, + { + "id":"faf16216-838e-4c1d-8118-c5360c3a2566", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T04:18:11.064Z", + "completed":"2017-11-02T04:18:11.064Z", + "new_balance":"4561.03", + "value":"-0.67" + } + }, + { + "id":"55e4818c-7c83-4e4c-a55e-23699df88f83", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T05:42:59.658Z", + "completed":"2017-11-02T05:42:59.658Z", + "new_balance":"4547.93", + "value":"-13.10" + } + }, + { + "id":"15d97dfc-1682-4dca-8023-59ac3c9ef70a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T18:49:06.300Z", + "completed":"2017-11-02T18:49:06.300Z", + "new_balance":"4546.61", + "value":"-1.32" + } + }, + { + "id":"8afac7f3-6eee-4774-acd3-f6a6f4e5876b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T14:51:48.919Z", + "completed":"2017-11-06T14:51:48.919Z", + "new_balance":"4544.42", + "value":"-2.19" + } + }, + { + "id":"db4eabbd-213f-4702-a278-bae50b358dd1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T21:26:28.958Z", + "completed":"2017-11-06T21:26:28.958Z", + "new_balance":"4542.11", + "value":"-2.31" + } + }, + { + "id":"6a66d5bb-e20d-411e-8bd3-f20296860d42", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T08:12:28.039Z", + "completed":"2017-11-07T08:12:28.039Z", + "new_balance":"4537.54", + "value":"-4.57" + } + }, + { + "id":"cb97ad61-7aaf-44cd-bd1b-14dfcf7a3b3d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T13:37:05.703Z", + "completed":"2017-11-07T13:37:05.703Z", + "new_balance":"4529.84", + "value":"-7.70" + } + }, + { + "id":"db4274ac-b0f9-4e74-9903-f6e18570063a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T15:40:34.151Z", + "completed":"2017-11-09T15:40:34.151Z", + "new_balance":"4670.82", + "value":"140.98" + } + }, + { + "id":"5e6dc232-e729-4d0f-a534-e32657e70802", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T10:15:17.509Z", + "completed":"2017-11-14T10:15:17.509Z", + "new_balance":"4666.68", + "value":"-4.14" + } + }, + { + "id":"81ae2bc5-2ad6-432a-b538-784790b26a4b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T21:29:19.661Z", + "completed":"2017-11-14T21:29:19.661Z", + "new_balance":"4664.28", + "value":"-2.40" + } + }, + { + "id":"c7a65a1c-c64f-46d4-9739-70a935a2c80a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T16:34:13.854Z", + "completed":"2017-11-16T16:34:13.854Z", + "new_balance":"4663.76", + "value":"-0.52" + } + }, + { + "id":"e213238e-9074-4d8a-b340-2c6d97eb8d93", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T13:15:45.805Z", + "completed":"2017-11-20T13:15:45.805Z", + "new_balance":"4660.88", + "value":"-2.88" + } + }, + { + "id":"b572a80a-3ffc-4e56-9784-1e7bc015790b", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T10:37:12.869Z", + "completed":"2017-11-23T10:37:12.869Z", + "new_balance":"4658.57", + "value":"-2.31" + } + }, + { + "id":"29d81c9c-fc32-406b-82bb-ed6862e3030f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T13:59:51.245Z", + "completed":"2017-11-23T13:59:51.245Z", + "new_balance":"4653.96", + "value":"-4.61" + } + }, + { + "id":"16bacf6a-d67c-496b-8088-291c1e867459", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T23:13:09.914Z", + "completed":"2017-11-23T23:13:09.914Z", + "new_balance":"4653.49", + "value":"-0.47" + } + }, + { + "id":"510140f5-12b3-4b48-8f57-1c33e9720780", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T22:57:49.074Z", + "completed":"2017-11-28T22:57:49.074Z", + "new_balance":"4652.90", + "value":"-0.59" + } + }, + { + "id":"376951a7-4d30-4573-89c7-7d302508d58f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T02:35:02.162Z", + "completed":"2017-11-30T02:35:02.162Z", + "new_balance":"4630.54", + "value":"-22.36" + } + }, + { + "id":"c9e3618f-7b22-456b-9db5-abc1ba03465a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T08:54:25.598Z", + "completed":"2017-11-30T08:54:25.598Z", + "new_balance":"4626.82", + "value":"-3.72" + } + }, + { + "id":"454e37cb-f270-46c1-b784-e7b1f44f2828", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T02:19:04.574Z", + "completed":"2017-12-01T02:19:04.574Z", + "new_balance":"4595.10", + "value":"-31.72" + } + }, + { + "id":"2f539d1c-20f0-4510-a7fd-e300816e9eab", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T13:55:20.264Z", + "completed":"2017-12-01T13:55:20.264Z", + "new_balance":"4736.08", + "value":"140.98" + } + }, + { + "id":"7fba6437-96d0-4158-8080-131ed8f143d9", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T00:39:33.274Z", + "completed":"2017-12-04T00:39:33.274Z", + "new_balance":"4734.03", + "value":"-2.05" + } + }, + { + "id":"df1ad172-d933-4fd5-b7b1-8ed90d5ba7cb", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T05:49:24.974Z", + "completed":"2017-12-04T05:49:24.974Z", + "new_balance":"4730.57", + "value":"-3.46" + } + }, + { + "id":"b3544d51-8ff5-4dd7-a7ea-90e3919ff52e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T15:34:49.652Z", + "completed":"2017-12-11T15:34:49.652Z", + "new_balance":"4727.27", + "value":"-3.30" + } + }, + { + "id":"5953d206-0faa-4f9b-a506-9257e34d8abd", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T22:54:17.426Z", + "completed":"2017-12-11T22:54:17.426Z", + "new_balance":"4722.66", + "value":"-4.61" + } + }, + { + "id":"47073568-36bd-4b59-abf3-0054832fb01d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T04:08:08.374Z", + "completed":"2017-12-14T04:08:08.374Z", + "new_balance":"4722.19", + "value":"-0.47" + } + }, + { + "id":"6786d95c-dad0-495e-9551-8adffbacacad", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T04:10:48.951Z", + "completed":"2017-12-14T04:10:48.951Z", + "new_balance":"4721.39", + "value":"-0.80" + } + }, + { + "id":"aa4342b8-5f7b-4aa6-a5a1-875837db1c55", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T05:26:52.995Z", + "completed":"2017-12-14T05:26:52.995Z", + "new_balance":"4720.59", + "value":"-0.80" + } + }, + { + "id":"9870b881-3b74-4352-a41b-8fa7570d319d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T11:08:12.324Z", + "completed":"2017-12-14T11:08:12.324Z", + "new_balance":"4712.89", + "value":"-7.70" + } + }, + { + "id":"0713ee83-b6f8-47fc-bfe3-31bd020ad767", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:36:43.097Z", + "completed":"2017-12-14T12:36:43.097Z", + "new_balance":"4706.25", + "value":"-6.64" + } + }, + { + "id":"062dc898-9c2b-41ce-a211-a3be542647e8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T13:55:17.241Z", + "completed":"2017-12-14T13:55:17.241Z", + "new_balance":"4704.95", + "value":"-1.30" + } + }, + { + "id":"63ba6b42-8642-402e-aaa6-e17b200de294", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T14:20:06.545Z", + "completed":"2017-12-14T14:20:06.545Z", + "new_balance":"4704.48", + "value":"-0.47" + } + }, + { + "id":"b0e986a5-ec0b-4e15-829a-3b952bb718ce", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T15:08:25.826Z", + "completed":"2017-12-14T15:08:25.826Z", + "new_balance":"4696.74", + "value":"-7.74" + } + }, + { + "id":"c65ac2c6-34d0-4b88-ad18-30897fee0835", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T22:07:15.376Z", + "completed":"2017-12-14T22:07:15.376Z", + "new_balance":"4689.99", + "value":"-6.75" + } + }, + { + "id":"da9f5598-044a-4913-b64e-47cab297a6e5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T06:02:17.988Z", + "completed":"2017-12-15T06:02:17.988Z", + "new_balance":"4689.52", + "value":"-0.47" + } + }, + { + "id":"73dc26a2-dd5d-4e01-af4d-80f741793cc1", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T07:06:53.330Z", + "completed":"2017-12-15T07:06:53.330Z", + "new_balance":"4686.81", + "value":"-2.71" + } + }, + { + "id":"549ee854-3a5f-45b5-b0b1-a823835baf0e", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T21:10:02.151Z", + "completed":"2017-12-15T21:10:02.151Z", + "new_balance":"4686.04", + "value":"-0.77" + } + }, + { + "id":"3aa4770c-7adb-424a-a94a-fe4f5093bd59", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T02:07:34.175Z", + "completed":"2017-12-18T02:07:34.175Z", + "new_balance":"4683.32", + "value":"-2.72" + } + }, + { + "id":"d6fc9dbc-0a9d-43bd-8468-51a6ef02bff2", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T10:30:43.787Z", + "completed":"2017-12-18T10:30:43.787Z", + "new_balance":"4680.73", + "value":"-2.59" + } + }, + { + "id":"0b33edf9-0ede-4b91-b8b6-869decffc9c5", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T11:29:49.974Z", + "completed":"2017-12-18T11:29:49.974Z", + "new_balance":"4680.26", + "value":"-0.47" + } + }, + { + "id":"d051ed14-1a6c-4a32-b7a4-d97ee10c9f48", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T13:58:09.939Z", + "completed":"2017-12-18T13:58:09.939Z", + "new_balance":"4677.68", + "value":"-2.58" + } + }, + { + "id":"2f396acf-e034-4d78-801c-5bbd8d6ce558", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T16:52:06.976Z", + "completed":"2017-12-18T16:52:06.976Z", + "new_balance":"4671.52", + "value":"-6.16" + } + }, + { + "id":"2c9d3c92-6ee2-484f-9249-26aa6d2148f8", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T17:59:53.995Z", + "completed":"2017-12-18T17:59:53.995Z", + "new_balance":"4661.37", + "value":"-10.15" + } + }, + { + "id":"17d48b45-3e09-44b9-9a91-97ed0e0d2728", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T21:15:34.511Z", + "completed":"2017-12-18T21:15:34.511Z", + "new_balance":"4659.77", + "value":"-1.60" + } + }, + { + "id":"8660ef6b-15d5-4ab3-b5a7-7ae84636e45f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T22:16:57.185Z", + "completed":"2017-12-18T22:16:57.185Z", + "new_balance":"4659.30", + "value":"-0.47" + } + }, + { + "id":"1dec8920-8b04-499c-9aea-922c9edd13d7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T01:09:00.333Z", + "completed":"2017-12-19T01:09:00.333Z", + "new_balance":"4655.18", + "value":"-4.12" + } + }, + { + "id":"b1e4eae8-94a0-4490-b709-f7a7a1dc7c16", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T10:49:50.794Z", + "completed":"2017-12-19T10:49:50.794Z", + "new_balance":"4650.79", + "value":"-4.39" + } + }, + { + "id":"f2ffb528-d86e-47d1-acec-e9237ab91c65", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:26:39.194Z", + "completed":"2017-12-19T14:26:39.194Z", + "new_balance":"4645.87", + "value":"-4.92" + } + }, + { + "id":"fdaabd92-d347-423d-8d4a-648c9ea3c17a", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T10:49:59.882Z", + "completed":"2017-12-21T10:49:59.882Z", + "new_balance":"4642.40", + "value":"-3.47" + } + }, + { + "id":"ef51458d-8f5c-47e7-a0ed-f9dfb3b3fab4", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T10:55:25.741Z", + "completed":"2017-12-21T10:55:25.741Z", + "new_balance":"4641.93", + "value":"-0.47" + } + }, + { + "id":"8e85a667-324d-4145-ac69-58eb02dd254d", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T10:55:37.980Z", + "completed":"2017-12-21T10:55:37.980Z", + "new_balance":"4632.32", + "value":"-9.61" + } + }, + { + "id":"6120916a-c841-40e0-b731-45144ca2eb50", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T11:35:10.724Z", + "completed":"2017-12-21T11:35:10.724Z", + "new_balance":"4631.17", + "value":"-1.15" + } + }, + { + "id":"6c5f02b8-1033-4d5b-996d-4c14b23707b7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T13:10:19.233Z", + "completed":"2017-12-21T13:10:19.233Z", + "new_balance":"4618.81", + "value":"-12.36" + } + }, + { + "id":"aa0cae16-fa04-4e56-a1e6-a6a7848d6a6f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T07:31:28.298Z", + "completed":"2017-12-24T07:31:28.298Z", + "new_balance":"4616.42", + "value":"-2.39" + } + }, + { + "id":"28e2050d-b2fc-4117-b980-e33e26ab673f", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T11:44:18.019Z", + "completed":"2017-12-24T11:44:18.019Z", + "new_balance":"4615.22", + "value":"-1.20" + } + }, + { + "id":"6a236bf5-dfab-4269-9804-a60f0bdc53e7", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:35:49.209Z", + "completed":"2017-12-24T23:35:49.209Z", + "new_balance":"4613.87", + "value":"-1.35" + } + }, + { + "id":"bd67573d-7948-402d-b518-206418d67152", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T05:55:45.426Z", + "completed":"2017-12-30T05:55:45.426Z", + "new_balance":"4591.51", + "value":"-22.36" + } + }, + { + "id":"b2c055a2-b453-4417-8349-56390882a350", + "this_account":{ + "id":"690a911b-bcba-441e-8188-f07c2c35449f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:49:06.920Z", + "completed":"2017-12-30T14:49:06.920Z", + "new_balance":"4587.79", + "value":"-3.72" + } + }, + { + "id":"ee5716b1-a839-4def-91b9-4dd792289f34", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:39:08.472Z", + "completed":"2016-03-02T07:39:08.472Z", + "new_balance":"88783.08", + "value":"-832.36" + } + }, + { + "id":"ab2ec5db-f72d-43e2-8b3f-ea5cf9b039b8", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T12:18:24.191Z", + "completed":"2016-03-02T12:18:24.191Z", + "new_balance":"88404.75", + "value":"-378.33" + } + }, + { + "id":"8a136dbb-71f4-4ffd-9477-d0b8838a9ea3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T10:48:28.240Z", + "completed":"2016-03-03T10:48:28.240Z", + "new_balance":"83819.59", + "value":"-4585.16" + } + }, + { + "id":"ecf3c389-35f4-4b3e-a7d4-587c4d0d5e36", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T15:20:33.630Z", + "completed":"2016-03-03T15:20:33.630Z", + "new_balance":"83745.66", + "value":"-73.93" + } + }, + { + "id":"af24d608-70b2-4015-9ac0-df2263fb302a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T18:01:33.110Z", + "completed":"2016-03-04T18:01:33.110Z", + "new_balance":"83381.37", + "value":"-364.29" + } + }, + { + "id":"fcfda85d-ee82-4ba3-a122-164e519729ad", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T21:29:49.727Z", + "completed":"2016-03-04T21:29:49.727Z", + "new_balance":"83294.81", + "value":"-86.56" + } + }, + { + "id":"8a751ed1-27ed-46a5-8642-82979a4acaf5", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:15:21.037Z", + "completed":"2016-03-07T01:15:21.037Z", + "new_balance":"83241.63", + "value":"-53.18" + } + }, + { + "id":"1f954619-e5e4-4ec0-b783-acd34fb0ab27", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T00:16:47.879Z", + "completed":"2016-03-09T00:16:47.879Z", + "new_balance":"82409.27", + "value":"-832.36" + } + }, + { + "id":"f086582e-e5f5-4379-896d-66203461992f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T06:20:04.361Z", + "completed":"2016-03-16T06:20:04.361Z", + "new_balance":"81864.11", + "value":"-545.16" + } + }, + { + "id":"eb6acd24-d010-4552-9583-6b8d9b5621a1", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T23:00:15.847Z", + "completed":"2016-03-25T23:00:15.847Z", + "new_balance":"81318.95", + "value":"-545.16" + } + }, + { + "id":"921fe639-5f9b-43f7-a71a-fcf705c7f15a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T04:58:56.755Z", + "completed":"2016-03-30T04:58:56.755Z", + "new_balance":"78687.74", + "value":"-2631.21" + } + }, + { + "id":"4fc091ca-2b94-45c2-83b6-5b79b92a1c4b", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T10:06:36.908Z", + "completed":"2016-06-07T10:06:36.908Z", + "new_balance":"78309.41", + "value":"-378.33" + } + }, + { + "id":"a129b5a7-949b-416e-9910-c46ace43a8cf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:42:47.500Z", + "completed":"2016-06-07T13:42:47.500Z", + "new_balance":"73724.25", + "value":"-4585.16" + } + }, + { + "id":"7635e45b-7529-4da3-af3f-de1a837cb482", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T22:53:26.151Z", + "completed":"2016-06-07T22:53:26.151Z", + "new_balance":"72891.89", + "value":"-832.36" + } + }, + { + "id":"d3787f38-0693-4b76-9da1-848b8b685733", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:59:41.645Z", + "completed":"2016-06-10T12:59:41.645Z", + "new_balance":"72805.33", + "value":"-86.56" + } + }, + { + "id":"919cbf88-a9ba-4728-afaf-6ae843fb6584", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T00:21:38.923Z", + "completed":"2016-06-14T00:21:38.923Z", + "new_balance":"72441.04", + "value":"-364.29" + } + }, + { + "id":"1a88aa35-7ef3-4ec8-a4f3-9b3cad59406d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T16:39:11.297Z", + "completed":"2016-06-19T16:39:11.297Z", + "new_balance":"72387.86", + "value":"-53.18" + } + }, + { + "id":"796c5a88-a94c-42c4-88b5-7dbdac11f1be", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T21:09:58.509Z", + "completed":"2016-06-19T21:09:58.509Z", + "new_balance":"72313.93", + "value":"-73.93" + } + }, + { + "id":"7f91321f-53c4-4977-8afe-c975e28f2053", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T17:59:46.034Z", + "completed":"2016-06-20T17:59:46.034Z", + "new_balance":"71481.57", + "value":"-832.36" + } + }, + { + "id":"1a815827-e1a8-470e-b436-caac61dbf5e2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T00:29:07.756Z", + "completed":"2016-06-28T00:29:07.756Z", + "new_balance":"70936.41", + "value":"-545.16" + } + }, + { + "id":"08c55386-f01a-4f75-b1a0-324428ba6aba", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T07:51:08.209Z", + "completed":"2016-07-01T07:51:08.209Z", + "new_balance":"70391.25", + "value":"-545.16" + } + }, + { + "id":"1848115c-6611-42db-9676-0e8c95965540", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T11:48:16.538Z", + "completed":"2016-07-01T11:48:16.538Z", + "new_balance":"67760.04", + "value":"-2631.21" + } + }, + { + "id":"0cbaa3cf-9b7f-4962-a644-63f1a815bc86", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T12:07:58.259Z", + "completed":"2016-09-02T12:07:58.259Z", + "new_balance":"67381.71", + "value":"-378.33" + } + }, + { + "id":"34e2dc3a-9525-4a5f-8128-0b3ff9752be3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T19:53:23.659Z", + "completed":"2016-09-02T19:53:23.659Z", + "new_balance":"66549.35", + "value":"-832.36" + } + }, + { + "id":"92d5589d-5b6a-4dfa-9507-7d891340912c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T02:09:45.940Z", + "completed":"2016-09-03T02:09:45.940Z", + "new_balance":"66475.42", + "value":"-73.93" + } + }, + { + "id":"1f5de84d-1ff7-43fd-a989-6fe4cacf30d7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T04:11:06.913Z", + "completed":"2016-09-03T04:11:06.913Z", + "new_balance":"61890.26", + "value":"-4585.16" + } + }, + { + "id":"241096d6-e901-4390-a17f-05e3941e4137", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T06:18:01.194Z", + "completed":"2016-09-03T06:18:01.194Z", + "new_balance":"61843.36", + "value":"-46.90" + } + }, + { + "id":"6cd0391a-0bb4-4025-a12a-fc1a7680c4b0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T02:33:29.886Z", + "completed":"2016-09-04T02:33:29.886Z", + "new_balance":"61479.07", + "value":"-364.29" + } + }, + { + "id":"e4d3714d-2ff9-4b48-b2fd-53bf9b11f11a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T21:18:08.420Z", + "completed":"2016-09-07T21:18:08.420Z", + "new_balance":"61425.89", + "value":"-53.18" + } + }, + { + "id":"48d62427-55eb-4f22-aadc-f55f6a439cd7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T21:35:40.485Z", + "completed":"2016-09-09T21:35:40.485Z", + "new_balance":"60593.53", + "value":"-832.36" + } + }, + { + "id":"03c61afc-4ff8-4412-adcf-1223e42941d3", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T18:01:36.871Z", + "completed":"2016-09-16T18:01:36.871Z", + "new_balance":"60048.37", + "value":"-545.16" + } + }, + { + "id":"270f7358-5951-41ec-9da5-e69a8a04b703", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T14:20:00.490Z", + "completed":"2016-09-25T14:20:00.490Z", + "new_balance":"59503.21", + "value":"-545.16" + } + }, + { + "id":"9cc60c88-c643-4a2e-8840-e9ea11e169c2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T06:16:35.451Z", + "completed":"2016-09-30T06:16:35.451Z", + "new_balance":"56872.00", + "value":"-2631.21" + } + }, + { + "id":"3d542d7e-698f-439a-8478-df942591bdb2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T00:42:16.201Z", + "completed":"2016-12-07T00:42:16.201Z", + "new_balance":"56493.67", + "value":"-378.33" + } + }, + { + "id":"14e75a26-9069-498e-a0c8-c2039b225521", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T03:54:26.520Z", + "completed":"2016-12-07T03:54:26.520Z", + "new_balance":"55661.31", + "value":"-832.36" + } + }, + { + "id":"e7377612-dce9-48fc-8bb2-82ee93ea3c1a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T15:10:16.702Z", + "completed":"2016-12-07T15:10:16.702Z", + "new_balance":"51076.15", + "value":"-4585.16" + } + }, + { + "id":"dceb7f4c-b540-4fe3-a281-672384de6caf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T06:49:20.154Z", + "completed":"2016-12-11T06:49:20.154Z", + "new_balance":"51002.22", + "value":"-73.93" + } + }, + { + "id":"318936d8-eeca-4427-80a6-fc469673cca2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T12:37:30.372Z", + "completed":"2016-12-11T12:37:30.372Z", + "new_balance":"50915.66", + "value":"-86.56" + } + }, + { + "id":"4684b973-251e-4874-aa19-e556e98b3fd4", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T08:07:54.699Z", + "completed":"2016-12-14T08:07:54.699Z", + "new_balance":"50551.37", + "value":"-364.29" + } + }, + { + "id":"b1c2da7e-372a-491c-8906-fee920a962bb", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:37:40.954Z", + "completed":"2016-12-20T17:37:40.954Z", + "new_balance":"50498.19", + "value":"-53.18" + } + }, + { + "id":"c159e20a-d054-4438-9207-16402cfe8b6c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T08:21:21.067Z", + "completed":"2016-12-22T08:21:21.067Z", + "new_balance":"49665.83", + "value":"-832.36" + } + }, + { + "id":"fba1dd4f-8ce4-4fbc-9133-73b789697cf2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T23:41:40.034Z", + "completed":"2016-12-28T23:41:40.034Z", + "new_balance":"49120.67", + "value":"-545.16" + } + }, + { + "id":"eb2ce9f7-4829-4609-917a-7b999f589a7c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T15:44:13.653Z", + "completed":"2016-12-31T15:44:13.653Z", + "new_balance":"48575.51", + "value":"-545.16" + } + }, + { + "id":"50bab8a6-80d6-4541-a71d-218ee402f65c", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:15:51.065Z", + "completed":"2016-12-31T16:15:51.065Z", + "new_balance":"45944.30", + "value":"-2631.21" + } + }, + { + "id":"c8f21d2f-5b42-4357-9fc7-3d55d2797442", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T05:48:51.603Z", + "completed":"2017-03-02T05:48:51.603Z", + "new_balance":"45111.94", + "value":"-832.36" + } + }, + { + "id":"b7dd5330-07ab-4bf2-8bfa-0d60e1542675", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T08:47:57.187Z", + "completed":"2017-03-02T08:47:57.187Z", + "new_balance":"44733.61", + "value":"-378.33" + } + }, + { + "id":"f1eb05f2-ee16-4fef-ae7c-b26a9a7791c1", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T19:36:52.648Z", + "completed":"2017-03-03T19:36:52.648Z", + "new_balance":"44659.68", + "value":"-73.93" + } + }, + { + "id":"e94cb142-9d8f-4ffc-a88e-16c9c625f7e7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T20:01:06.277Z", + "completed":"2017-03-03T20:01:06.277Z", + "new_balance":"40074.52", + "value":"-4585.16" + } + }, + { + "id":"3734ef2a-3952-41dc-870d-d264b922da24", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T09:00:19.823Z", + "completed":"2017-03-04T09:00:19.823Z", + "new_balance":"39710.23", + "value":"-364.29" + } + }, + { + "id":"c02281f1-b71f-432b-b73d-e598a02cfb40", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T17:06:06.881Z", + "completed":"2017-03-04T17:06:06.881Z", + "new_balance":"39623.67", + "value":"-86.56" + } + }, + { + "id":"d5ea7a78-06cd-4654-b5cb-c551320d517f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T02:42:32.141Z", + "completed":"2017-03-07T02:42:32.141Z", + "new_balance":"39570.49", + "value":"-53.18" + } + }, + { + "id":"a3046ddb-33b8-4cca-972f-9ba6c67ae648", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T18:30:35.703Z", + "completed":"2017-03-09T18:30:35.703Z", + "new_balance":"38738.13", + "value":"-832.36" + } + }, + { + "id":"8d760df9-c2df-4b27-b7cc-2c721803538d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T15:51:54.734Z", + "completed":"2017-03-16T15:51:54.734Z", + "new_balance":"38192.97", + "value":"-545.16" + } + }, + { + "id":"a769749d-633a-4c1a-8ef8-5dd19d0cb9ac", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T10:20:31.617Z", + "completed":"2017-03-25T10:20:31.617Z", + "new_balance":"37647.81", + "value":"-545.16" + } + }, + { + "id":"9f65d8ab-9a0c-465b-8cc6-32d5fb8f4f7e", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T20:31:41.001Z", + "completed":"2017-03-30T20:31:41.001Z", + "new_balance":"35016.60", + "value":"-2631.21" + } + }, + { + "id":"75e3a2ef-c210-4260-bf8b-66f9f33a3211", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T02:17:07.183Z", + "completed":"2017-06-07T02:17:07.183Z", + "new_balance":"34638.27", + "value":"-378.33" + } + }, + { + "id":"9930ec70-58c5-4181-8bda-c3f1d1599618", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T12:11:58.912Z", + "completed":"2017-06-07T12:11:58.912Z", + "new_balance":"30053.11", + "value":"-4585.16" + } + }, + { + "id":"397845c4-8e75-4135-8317-c93f2e237ecc", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T14:30:38.063Z", + "completed":"2017-06-07T14:30:38.063Z", + "new_balance":"29220.75", + "value":"-832.36" + } + }, + { + "id":"3cc85953-ff44-4319-b8f8-9ac6531a6520", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T23:23:28.488Z", + "completed":"2017-06-10T23:23:28.488Z", + "new_balance":"29134.19", + "value":"-86.56" + } + }, + { + "id":"6f01f303-2ac4-4536-89e0-f343d737a493", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T23:59:41.609Z", + "completed":"2017-06-14T23:59:41.609Z", + "new_balance":"28769.90", + "value":"-364.29" + } + }, + { + "id":"ce628a72-6674-4ad2-a5c4-3e95869c9d1a", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T06:14:16.530Z", + "completed":"2017-06-19T06:14:16.530Z", + "new_balance":"28695.97", + "value":"-73.93" + } + }, + { + "id":"4582b43c-6b28-4d82-bf7e-4eca52aaede0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T06:42:36.107Z", + "completed":"2017-06-19T06:42:36.107Z", + "new_balance":"28642.79", + "value":"-53.18" + } + }, + { + "id":"550c9f4a-4f77-4ab3-a27b-c73ed57efa83", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T20:43:57.706Z", + "completed":"2017-06-20T20:43:57.706Z", + "new_balance":"27810.43", + "value":"-832.36" + } + }, + { + "id":"f7567333-0931-4d51-8c32-9b334b26008e", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T05:16:25.384Z", + "completed":"2017-06-28T05:16:25.384Z", + "new_balance":"27265.27", + "value":"-545.16" + } + }, + { + "id":"41726f26-578e-4be5-af77-860bcccb24c9", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:05:12.571Z", + "completed":"2017-07-01T17:05:12.571Z", + "new_balance":"26720.11", + "value":"-545.16" + } + }, + { + "id":"e836ff22-a4fc-493d-afa6-aef5b90405bb", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T23:03:10.345Z", + "completed":"2017-07-01T23:03:10.345Z", + "new_balance":"24088.90", + "value":"-2631.21" + } + }, + { + "id":"c0f836bf-239e-4408-8a08-41849581b6ce", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:31:34.788Z", + "completed":"2017-09-02T08:31:34.788Z", + "new_balance":"23256.54", + "value":"-832.36" + } + }, + { + "id":"8b88f122-e972-4a9c-ba80-e9f4ef69b096", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T11:36:21.744Z", + "completed":"2017-09-02T11:36:21.744Z", + "new_balance":"22878.21", + "value":"-378.33" + } + }, + { + "id":"7291d7bc-3229-4196-a003-0a338b67c241", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T03:07:51.531Z", + "completed":"2017-09-03T03:07:51.531Z", + "new_balance":"22804.28", + "value":"-73.93" + } + }, + { + "id":"16e76f9b-f567-41d5-9d42-644c81c3e8cf", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T05:31:20.597Z", + "completed":"2017-09-03T05:31:20.597Z", + "new_balance":"22757.38", + "value":"-46.90" + } + }, + { + "id":"7d6bbf18-17e0-4bd5-9a1d-921fa44f865d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T07:17:11.851Z", + "completed":"2017-09-03T07:17:11.851Z", + "new_balance":"18172.22", + "value":"-4585.16" + } + }, + { + "id":"e4b0c6b9-d6e3-4a3e-ab80-4bf260bd078f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T07:10:59.316Z", + "completed":"2017-09-04T07:10:59.316Z", + "new_balance":"17807.93", + "value":"-364.29" + } + }, + { + "id":"852821e1-6236-430f-9778-a1607cf79795", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T08:02:07.818Z", + "completed":"2017-09-07T08:02:07.818Z", + "new_balance":"17754.75", + "value":"-53.18" + } + }, + { + "id":"0d6c5e43-19f6-4f36-abee-7be17f251cb0", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T11:51:49.924Z", + "completed":"2017-09-09T11:51:49.924Z", + "new_balance":"16922.39", + "value":"-832.36" + } + }, + { + "id":"392ea545-84b9-4852-b331-6fd081b5ae00", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T20:56:53.638Z", + "completed":"2017-09-16T20:56:53.638Z", + "new_balance":"16377.23", + "value":"-545.16" + } + }, + { + "id":"fd355bfc-cb26-4eec-ab01-fd503263b07f", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T20:30:25.028Z", + "completed":"2017-09-25T20:30:25.028Z", + "new_balance":"15832.07", + "value":"-545.16" + } + }, + { + "id":"b0bd8128-91fb-4c31-bb5d-caa4599114ea", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T09:45:19.687Z", + "completed":"2017-09-30T09:45:19.687Z", + "new_balance":"13200.86", + "value":"-2631.21" + } + }, + { + "id":"3537bd9f-617c-494b-9dd8-b49fb27565a2", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T11:24:38.346Z", + "completed":"2017-12-07T11:24:38.346Z", + "new_balance":"8615.70", + "value":"-4585.16" + } + }, + { + "id":"98d310fc-b787-42c9-a8cb-0cb254caf193", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T13:49:56.188Z", + "completed":"2017-12-07T13:49:56.188Z", + "new_balance":"8237.37", + "value":"-378.33" + } + }, + { + "id":"fd72657a-a809-4e43-a1cd-ff2d6ae6528d", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T17:36:01.962Z", + "completed":"2017-12-07T17:36:01.962Z", + "new_balance":"7405.01", + "value":"-832.36" + } + }, + { + "id":"c5d8a4ef-a1ec-4c16-b4ee-952845ed2364", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T16:11:17.941Z", + "completed":"2017-12-11T16:11:17.941Z", + "new_balance":"7331.08", + "value":"-73.93" + } + }, + { + "id":"5e54977b-e583-4fad-aebc-b64cc926d360", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T19:27:58.953Z", + "completed":"2017-12-11T19:27:58.953Z", + "new_balance":"7244.52", + "value":"-86.56" + } + }, + { + "id":"5cbae9e6-a9a2-4730-ab9e-7953794d8bef", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T06:07:28.552Z", + "completed":"2017-12-14T06:07:28.552Z", + "new_balance":"6880.23", + "value":"-364.29" + } + }, + { + "id":"767a1de4-86f0-450b-904e-7c3d54684a56", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T18:12:32.901Z", + "completed":"2017-12-20T18:12:32.901Z", + "new_balance":"6827.05", + "value":"-53.18" + } + }, + { + "id":"90f70a3c-e386-43bc-88b1-710e765d6666", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T10:40:31.588Z", + "completed":"2017-12-22T10:40:31.588Z", + "new_balance":"5994.69", + "value":"-832.36" + } + }, + { + "id":"8f6dcc82-9e99-4483-9afb-eba20ab6e2c6", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T10:20:35.922Z", + "completed":"2017-12-28T10:20:35.922Z", + "new_balance":"5449.53", + "value":"-545.16" + } + }, + { + "id":"521fe42e-376e-40f6-b5b1-debed660e370", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T11:24:56.423Z", + "completed":"2017-12-31T11:24:56.423Z", + "new_balance":"2818.32", + "value":"-2631.21" + } + }, + { + "id":"e150b457-e326-4fa4-a295-8edad76a84f7", + "this_account":{ + "id":"69a39c92-ea88-4a2a-a16f-9c71f4301bbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T18:14:54.619Z", + "completed":"2017-12-31T18:14:54.619Z", + "new_balance":"2273.16", + "value":"-545.16" + } + }, + { + "id":"0f271844-07c2-4e42-808c-675d473cca84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T06:13:31.115Z", + "completed":"2016-01-01T06:13:31.115Z", + "new_balance":"19385.00", + "value":"-53.18" + } + }, + { + "id":"a767359a-d1be-4ab6-9865-772af86bf037", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T12:04:30.507Z", + "completed":"2016-01-01T12:04:30.507Z", + "new_balance":"19250.52", + "value":"-134.48" + } + }, + { + "id":"ad5c20b8-82f6-4c38-938e-a194227f4c66", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T12:57:32.885Z", + "completed":"2016-01-01T12:57:32.885Z", + "new_balance":"19216.09", + "value":"-34.43" + } + }, + { + "id":"98bd6460-54c8-467f-a3f5-4ff1d3c066e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T15:40:26.992Z", + "completed":"2016-01-01T15:40:26.992Z", + "new_balance":"19186.21", + "value":"-29.88" + } + }, + { + "id":"41446a6b-4cdc-4f3d-b70e-c19dfd4b1ed0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T17:23:09.491Z", + "completed":"2016-01-01T17:23:09.491Z", + "new_balance":"18675.67", + "value":"-510.54" + } + }, + { + "id":"655fde92-8f6e-4938-9f28-847343d4319b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T18:19:13.761Z", + "completed":"2016-01-01T18:19:13.761Z", + "new_balance":"18641.24", + "value":"-34.43" + } + }, + { + "id":"0b104385-85a3-418b-8867-80d30e3da274", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T13:42:23.891Z", + "completed":"2016-01-02T13:42:23.891Z", + "new_balance":"18554.68", + "value":"-86.56" + } + }, + { + "id":"aa08e1af-f447-40f8-afbe-6d1b8e2e3fab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T19:12:08.544Z", + "completed":"2016-01-02T19:12:08.544Z", + "new_balance":"18482.69", + "value":"-71.99" + } + }, + { + "id":"e9ba6eb2-2116-435d-adce-4ddababbfe3c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T08:21:11.418Z", + "completed":"2016-01-04T08:21:11.418Z", + "new_balance":"18447.91", + "value":"-34.78" + } + }, + { + "id":"f9260170-b18f-4a7f-8c36-3a27e936efdd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T17:29:23.456Z", + "completed":"2016-01-04T17:29:23.456Z", + "new_balance":"18410.72", + "value":"-37.19" + } + }, + { + "id":"248389c6-c459-4629-870f-968a9444afb3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T21:35:03.463Z", + "completed":"2016-01-07T21:35:03.463Z", + "new_balance":"18336.79", + "value":"-73.93" + } + }, + { + "id":"db5d719b-5ad8-43c7-a7c5-b162cf3c8366", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T04:38:09.320Z", + "completed":"2016-01-09T04:38:09.320Z", + "new_balance":"18333.20", + "value":"-3.59" + } + }, + { + "id":"3c24d2cf-c0ef-4052-9055-d7b643fec465", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T13:41:32.240Z", + "completed":"2016-01-10T13:41:32.240Z", + "new_balance":"18305.75", + "value":"-27.45" + } + }, + { + "id":"cd40a589-45c8-47c2-985e-8d36efebb688", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T11:56:09.397Z", + "completed":"2016-01-12T11:56:09.397Z", + "new_balance":"18274.46", + "value":"-31.29" + } + }, + { + "id":"4686c02d-ca9a-44aa-aa6d-2551abfce483", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T15:46:05.054Z", + "completed":"2016-01-15T15:46:05.054Z", + "new_balance":"18267.30", + "value":"-7.16" + } + }, + { + "id":"e0f56fb4-8399-4e9d-92e8-2a387a7f6c71", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T20:24:06.517Z", + "completed":"2016-01-15T20:24:06.517Z", + "new_balance":"18252.48", + "value":"-14.82" + } + }, + { + "id":"c55a0c49-151e-4a98-8566-cd1a87fade19", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T06:44:35.567Z", + "completed":"2016-01-17T06:44:35.567Z", + "new_balance":"18230.23", + "value":"-22.25" + } + }, + { + "id":"72a57b86-548d-443e-8632-2fdaf5e20ea1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T04:56:54.284Z", + "completed":"2016-01-19T04:56:54.284Z", + "new_balance":"18040.96", + "value":"-189.27" + } + }, + { + "id":"92ecf6f4-6e24-4527-a55b-8b02f688cdf4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T06:36:16.502Z", + "completed":"2016-01-20T06:36:16.502Z", + "new_balance":"18034.25", + "value":"-6.71" + } + }, + { + "id":"91bfc01c-2a2a-4e43-bd5e-6fd14e747f19", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T05:45:34.647Z", + "completed":"2016-01-22T05:45:34.647Z", + "new_balance":"18024.55", + "value":"-9.70" + } + }, + { + "id":"425c6fc4-78d6-40a2-8115-0e5a77787139", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T22:53:29.430Z", + "completed":"2016-01-22T22:53:29.430Z", + "new_balance":"17979.31", + "value":"-45.24" + } + }, + { + "id":"f39e796a-558c-4543-b4e0-cbe95d636b46", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T14:35:01.396Z", + "completed":"2016-01-24T14:35:01.396Z", + "new_balance":"17947.03", + "value":"-32.28" + } + }, + { + "id":"1995e3ec-b204-48af-a85c-a0fc38cb300b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T03:57:24.287Z", + "completed":"2016-01-25T03:57:24.287Z", + "new_balance":"17904.51", + "value":"-42.52" + } + }, + { + "id":"9bbe7ca6-5e4d-4793-84a1-7d1e3be2df8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T05:12:33.457Z", + "completed":"2016-01-25T05:12:33.457Z", + "new_balance":"17897.80", + "value":"-6.71" + } + }, + { + "id":"85d0a296-2145-4d2d-82f5-6a565038fabe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T00:41:28.084Z", + "completed":"2016-01-26T00:41:28.084Z", + "new_balance":"17834.23", + "value":"-63.57" + } + }, + { + "id":"f8cf511f-7517-4a7f-9692-28909273da53", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T06:23:24.738Z", + "completed":"2016-02-01T06:23:24.738Z", + "new_balance":"17323.69", + "value":"-510.54" + } + }, + { + "id":"ab81f312-5538-4a64-bace-db5746557607", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T11:04:47.745Z", + "completed":"2016-02-01T11:04:47.745Z", + "new_balance":"17270.51", + "value":"-53.18" + } + }, + { + "id":"5097556c-0f12-43d8-ba00-d3135b575997", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T12:08:17.192Z", + "completed":"2016-02-01T12:08:17.192Z", + "new_balance":"17136.03", + "value":"-134.48" + } + }, + { + "id":"75dbeb36-8d68-4791-9786-63cf63aa9132", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T12:48:37.077Z", + "completed":"2016-02-01T12:48:37.077Z", + "new_balance":"17106.15", + "value":"-29.88" + } + }, + { + "id":"179cba63-1ab7-493f-a7f4-221f37b9b68a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T15:19:19.138Z", + "completed":"2016-02-01T15:19:19.138Z", + "new_balance":"18786.56", + "value":"1680.41" + } + }, + { + "id":"ef472fb2-6a94-4abb-9a5a-abca682ede79", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T20:56:39.705Z", + "completed":"2016-02-01T20:56:39.705Z", + "new_balance":"18752.13", + "value":"-34.43" + } + }, + { + "id":"12ebe7fa-97c3-446e-b0ba-07b5d477d246", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T02:25:18.012Z", + "completed":"2016-02-02T02:25:18.012Z", + "new_balance":"18737.49", + "value":"-14.64" + } + }, + { + "id":"47425b83-cbb2-4f5d-92f6-718ce524b39a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T18:02:16.465Z", + "completed":"2016-02-02T18:02:16.465Z", + "new_balance":"18650.93", + "value":"-86.56" + } + }, + { + "id":"91f9a264-72f6-405e-8fb7-fd5080c772b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T22:47:55.295Z", + "completed":"2016-02-02T22:47:55.295Z", + "new_balance":"18635.00", + "value":"-15.93" + } + }, + { + "id":"c8d8d2f4-1071-4265-b081-54f1537a1339", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T06:34:53.766Z", + "completed":"2016-02-03T06:34:53.766Z", + "new_balance":"18609.20", + "value":"-25.80" + } + }, + { + "id":"131bee7d-1042-45f2-85ee-c4d12225d21b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T19:27:59.816Z", + "completed":"2016-02-03T19:27:59.816Z", + "new_balance":"18581.19", + "value":"-28.01" + } + }, + { + "id":"4bc786fe-a579-4ce5-9d40-8a2c623987c5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T23:46:19.810Z", + "completed":"2016-02-03T23:46:19.810Z", + "new_balance":"18557.82", + "value":"-23.37" + } + }, + { + "id":"9d4e06cc-8a2a-4577-8377-971829086b4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T21:41:34.713Z", + "completed":"2016-02-06T21:41:34.713Z", + "new_balance":"18483.89", + "value":"-73.93" + } + }, + { + "id":"9863cd36-ac3e-4b50-90e5-f5a87d5c9c4d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T07:07:16.991Z", + "completed":"2016-02-08T07:07:16.991Z", + "new_balance":"18479.80", + "value":"-4.09" + } + }, + { + "id":"e2b15c7e-48a3-4351-a529-933153f1f022", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T17:52:59.636Z", + "completed":"2016-02-08T17:52:59.636Z", + "new_balance":"18451.95", + "value":"-27.85" + } + }, + { + "id":"c2d5cdec-7f41-4d5b-8c37-77f67e66760c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T19:07:24.433Z", + "completed":"2016-02-08T19:07:24.433Z", + "new_balance":"18430.85", + "value":"-21.10" + } + }, + { + "id":"57894110-569f-458c-a577-23dfb33df518", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T03:00:09.215Z", + "completed":"2016-02-09T03:00:09.215Z", + "new_balance":"18385.68", + "value":"-45.17" + } + }, + { + "id":"1f87d852-d729-41e3-a50b-84fbc275431f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T14:44:29.182Z", + "completed":"2016-02-09T14:44:29.182Z", + "new_balance":"18336.98", + "value":"-48.70" + } + }, + { + "id":"96aa908d-f86f-4ff4-9a8b-68c124fc24f3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T12:06:34.885Z", + "completed":"2016-02-12T12:06:34.885Z", + "new_balance":"18331.21", + "value":"-5.77" + } + }, + { + "id":"90dc93df-de51-48dc-9e90-0309e67a452f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T06:55:30.114Z", + "completed":"2016-02-13T06:55:30.114Z", + "new_balance":"18322.69", + "value":"-8.52" + } + }, + { + "id":"6b4cab13-2275-49d5-8f0f-ee5d03675cd4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T06:59:40.251Z", + "completed":"2016-02-13T06:59:40.251Z", + "new_balance":"18278.90", + "value":"-43.79" + } + }, + { + "id":"dc4a22af-7a1d-4c7f-ad27-e42c0c669f9d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T10:20:56.881Z", + "completed":"2016-02-13T10:20:56.881Z", + "new_balance":"18317.91", + "value":"39.01" + } + }, + { + "id":"69c49a7c-a941-49d1-a222-9c663b9c99e8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T04:50:18.404Z", + "completed":"2016-02-14T04:50:18.404Z", + "new_balance":"18272.28", + "value":"-45.63" + } + }, + { + "id":"5ad86188-a98a-4b1f-8b30-3cbfcd6c7ba5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T22:03:29.249Z", + "completed":"2016-02-15T22:03:29.249Z", + "new_balance":"18246.72", + "value":"-25.56" + } + }, + { + "id":"25980da3-34e7-4275-a0ef-ecbc0214a3a8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T17:25:52.494Z", + "completed":"2016-02-28T17:25:52.494Z", + "new_balance":"18213.19", + "value":"-33.53" + } + }, + { + "id":"341e20b9-d896-4b3e-9a9d-ba9a9f032083", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T06:46:25.538Z", + "completed":"2016-03-01T06:46:25.538Z", + "new_balance":"18160.01", + "value":"-53.18" + } + }, + { + "id":"68af49c4-3a31-4cb1-8bd3-c908516b3494", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T07:35:56.577Z", + "completed":"2016-03-01T07:35:56.577Z", + "new_balance":"17649.47", + "value":"-510.54" + } + }, + { + "id":"ed003185-1ede-4241-8f90-ff284a47273b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T09:38:25.079Z", + "completed":"2016-03-01T09:38:25.079Z", + "new_balance":"17619.59", + "value":"-29.88" + } + }, + { + "id":"e885f8c0-95cc-48b8-9540-2c97d5462a68", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T10:21:43.355Z", + "completed":"2016-03-01T10:21:43.355Z", + "new_balance":"17485.11", + "value":"-134.48" + } + }, + { + "id":"668deae1-498f-4284-b029-30484ce9d9ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T16:22:34.891Z", + "completed":"2016-03-01T16:22:34.891Z", + "new_balance":"19165.52", + "value":"1680.41" + } + }, + { + "id":"afebaf7e-eb3a-4b42-8ab6-963b25b6225c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T22:59:36.047Z", + "completed":"2016-03-01T22:59:36.047Z", + "new_balance":"19131.09", + "value":"-34.43" + } + }, + { + "id":"f53c5bd6-b92f-4f28-b7ba-39865e4d8e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T04:36:35.839Z", + "completed":"2016-03-02T04:36:35.839Z", + "new_balance":"19044.53", + "value":"-86.56" + } + }, + { + "id":"c791e699-3f4d-42b7-8ef1-5580e2a139e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T07:53:37.919Z", + "completed":"2016-03-04T07:53:37.919Z", + "new_balance":"19013.72", + "value":"-30.81" + } + }, + { + "id":"0b03f7e4-da22-458b-b278-11cef6f2f3ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T17:27:34.389Z", + "completed":"2016-03-04T17:27:34.389Z", + "new_balance":"19007.25", + "value":"-6.47" + } + }, + { + "id":"4c1b3f01-b533-48cc-8ab5-cb19947a7ca2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T17:40:25.587Z", + "completed":"2016-03-04T17:40:25.587Z", + "new_balance":"18926.04", + "value":"-81.21" + } + }, + { + "id":"7bdb0bab-ee30-40af-8a37-168a2ee689fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:09:00.345Z", + "completed":"2016-03-04T21:09:00.345Z", + "new_balance":"18915.51", + "value":"-10.53" + } + }, + { + "id":"b0389d04-edf0-4aaa-92b5-68c7922ae49b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T09:02:46.544Z", + "completed":"2016-03-05T09:02:46.544Z", + "new_balance":"18910.74", + "value":"-4.77" + } + }, + { + "id":"750e3bb7-60a4-4471-b81a-70f7431efacd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T20:15:16.100Z", + "completed":"2016-03-05T20:15:16.100Z", + "new_balance":"18869.51", + "value":"-41.23" + } + }, + { + "id":"e730cf26-6612-461a-8c81-da6a6fd4dd5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T03:43:27.416Z", + "completed":"2016-03-06T03:43:27.416Z", + "new_balance":"18788.30", + "value":"-81.21" + } + }, + { + "id":"31df54b9-ed05-4700-9c05-6aa610da68fc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T20:49:05.111Z", + "completed":"2016-03-06T20:49:05.111Z", + "new_balance":"18704.50", + "value":"-83.80" + } + }, + { + "id":"05e5f0cd-7099-4222-9ec1-9ee40b1d8c4f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T09:43:58.364Z", + "completed":"2016-03-07T09:43:58.364Z", + "new_balance":"18662.16", + "value":"-42.34" + } + }, + { + "id":"13352b01-e04b-4b3d-8c48-f9e9a7e584c2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:29:54.303Z", + "completed":"2016-03-08T05:29:54.303Z", + "new_balance":"18578.36", + "value":"-83.80" + } + }, + { + "id":"e4fe051a-77c6-4a76-9021-d23070d75e47", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T16:50:34.054Z", + "completed":"2016-03-09T16:50:34.054Z", + "new_balance":"18574.78", + "value":"-3.58" + } + }, + { + "id":"6c111db7-bbd6-4b8a-870c-cd069b644f73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T21:17:48.183Z", + "completed":"2016-03-10T21:17:48.183Z", + "new_balance":"18483.31", + "value":"-91.47" + } + }, + { + "id":"8944a2e8-bf68-43e8-9a6c-1fb4f9af82a0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T07:58:09.582Z", + "completed":"2016-03-11T07:58:09.582Z", + "new_balance":"18476.03", + "value":"-7.28" + } + }, + { + "id":"2d44117a-4237-4e78-97a1-8375e558b831", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T13:24:24.104Z", + "completed":"2016-03-12T13:24:24.104Z", + "new_balance":"18448.73", + "value":"-27.30" + } + }, + { + "id":"6c2fe01e-f7b0-42f2-a29b-8df691e579f5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T22:37:28.145Z", + "completed":"2016-03-12T22:37:28.145Z", + "new_balance":"18435.49", + "value":"-13.24" + } + }, + { + "id":"7931d310-8721-4451-a1d9-fdcea8423579", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T05:41:01.762Z", + "completed":"2016-03-13T05:41:01.762Z", + "new_balance":"18389.48", + "value":"-46.01" + } + }, + { + "id":"682dba4c-f57c-4586-91bb-6d62c72737ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T23:57:16.870Z", + "completed":"2016-03-14T23:57:16.870Z", + "new_balance":"18382.49", + "value":"-6.99" + } + }, + { + "id":"626feb46-9477-4166-a919-50f1c6f37bb9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T13:44:59.263Z", + "completed":"2016-03-16T13:44:59.263Z", + "new_balance":"18335.69", + "value":"-46.80" + } + }, + { + "id":"3a8a5f9a-bd04-434c-8acf-710f22c3c467", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:00:38.093Z", + "completed":"2016-03-16T16:00:38.093Z", + "new_balance":"18254.28", + "value":"-81.41" + } + }, + { + "id":"f1cf5081-b2be-40ee-81cf-335ab7cf029e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T19:12:26.772Z", + "completed":"2016-03-18T19:12:26.772Z", + "new_balance":"18247.29", + "value":"-6.99" + } + }, + { + "id":"c13ef0a9-4a55-4f01-8006-a3998cd197a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T14:12:10.732Z", + "completed":"2016-03-19T14:12:10.732Z", + "new_balance":"18210.34", + "value":"-36.95" + } + }, + { + "id":"3dcf3d60-77cc-4454-8d25-eae71e7bd37b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T14:12:21.296Z", + "completed":"2016-03-19T14:12:21.296Z", + "new_balance":"18159.33", + "value":"-51.01" + } + }, + { + "id":"745bf084-f685-4c4e-b47e-10f88ce8f88d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T23:38:28.094Z", + "completed":"2016-03-19T23:38:28.094Z", + "new_balance":"18125.42", + "value":"-33.91" + } + }, + { + "id":"3c2ed282-4328-46bf-af08-de7be2efead0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T08:36:31.310Z", + "completed":"2016-03-20T08:36:31.310Z", + "new_balance":"18051.91", + "value":"-73.51" + } + }, + { + "id":"d65df753-c02c-4874-a7d8-6c8ad6605db6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T14:45:58.451Z", + "completed":"2016-03-20T14:45:58.451Z", + "new_balance":"17993.01", + "value":"-58.90" + } + }, + { + "id":"a30fe249-6913-460b-8c89-faef664ed28b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T09:45:47.504Z", + "completed":"2016-03-21T09:45:47.504Z", + "new_balance":"17986.54", + "value":"-6.47" + } + }, + { + "id":"e2f958eb-a35e-4388-bcb1-21836bf46984", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T15:50:02.788Z", + "completed":"2016-03-21T15:50:02.788Z", + "new_balance":"17980.66", + "value":"-5.88" + } + }, + { + "id":"7ed4055d-5f66-4fb6-8f9f-5f4c70f1980f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T08:03:55.876Z", + "completed":"2016-03-23T08:03:55.876Z", + "new_balance":"17969.43", + "value":"-11.23" + } + }, + { + "id":"68601738-9375-4e28-bda1-bbb5a3db7e8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T21:12:06.664Z", + "completed":"2016-03-23T21:12:06.664Z", + "new_balance":"17923.92", + "value":"-45.51" + } + }, + { + "id":"016a3572-f01e-466e-b3bc-d08371ddf690", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T03:50:40.753Z", + "completed":"2016-03-24T03:50:40.753Z", + "new_balance":"17895.06", + "value":"-28.86" + } + }, + { + "id":"bd1367c6-85a3-4965-ac41-661555e2c73a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T08:47:04.557Z", + "completed":"2016-03-25T08:47:04.557Z", + "new_balance":"17878.98", + "value":"-16.08" + } + }, + { + "id":"e62ac250-d78b-4fc7-b25b-b4177133f107", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T16:18:00.106Z", + "completed":"2016-03-25T16:18:00.106Z", + "new_balance":"17844.95", + "value":"-34.03" + } + }, + { + "id":"7106e277-0786-4137-a3d8-de7e615bdc7f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T22:41:18.842Z", + "completed":"2016-03-27T22:41:18.842Z", + "new_balance":"17655.68", + "value":"-189.27" + } + }, + { + "id":"1ba567a1-7cba-48b8-9ab0-49799dc9e1a3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T08:42:48.352Z", + "completed":"2016-03-28T08:42:48.352Z", + "new_balance":"17628.71", + "value":"-26.97" + } + }, + { + "id":"d38879e7-9201-437d-855e-fefb0b1c8904", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T01:35:05.135Z", + "completed":"2016-04-01T01:35:05.135Z", + "new_balance":"17494.23", + "value":"-134.48" + } + }, + { + "id":"d605f98a-49e6-4713-8c62-6c5ef2f0f44d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T04:38:38.897Z", + "completed":"2016-04-01T04:38:38.897Z", + "new_balance":"17441.05", + "value":"-53.18" + } + }, + { + "id":"02026669-4969-4d1e-858e-b0b47da7f478", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T16:13:11.610Z", + "completed":"2016-04-01T16:13:11.610Z", + "new_balance":"16930.51", + "value":"-510.54" + } + }, + { + "id":"e2c13271-f5b0-4db1-aad3-8baea1ee2d11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T16:54:27.126Z", + "completed":"2016-04-01T16:54:27.126Z", + "new_balance":"16900.63", + "value":"-29.88" + } + }, + { + "id":"b8ff6442-eb52-43de-8c80-9a2ac14f2332", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T06:50:45.460Z", + "completed":"2016-04-02T06:50:45.460Z", + "new_balance":"16814.07", + "value":"-86.56" + } + }, + { + "id":"e41cf1a9-048d-4962-b833-94babc2d3d1e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T09:26:38.367Z", + "completed":"2016-04-02T09:26:38.367Z", + "new_balance":"16742.08", + "value":"-71.99" + } + }, + { + "id":"2b283c05-32b3-4030-9ddf-03ea4805a577", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T05:50:11.422Z", + "completed":"2016-04-03T05:50:11.422Z", + "new_balance":"16707.30", + "value":"-34.78" + } + }, + { + "id":"eadf2f4f-c779-4835-9316-b643356edad7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:35:07.323Z", + "completed":"2016-04-03T08:35:07.323Z", + "new_balance":"16670.11", + "value":"-37.19" + } + }, + { + "id":"9f196187-e0d2-466e-9a9a-ee60a58d1f25", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T11:25:44.100Z", + "completed":"2016-04-03T11:25:44.100Z", + "new_balance":"16632.92", + "value":"-37.19" + } + }, + { + "id":"974ba90c-38f0-40a7-b622-33f07b80cdbf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T17:13:06.969Z", + "completed":"2016-04-03T17:13:06.969Z", + "new_balance":"16705.75", + "value":"72.83" + } + }, + { + "id":"c739083e-2c5d-4d84-aa20-44ea1348c54a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T21:08:42.270Z", + "completed":"2016-04-03T21:08:42.270Z", + "new_balance":"16827.95", + "value":"122.20" + } + }, + { + "id":"5e8dbc91-667a-486c-966a-f9f2dc6debaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T02:54:15.382Z", + "completed":"2016-04-04T02:54:15.382Z", + "new_balance":"16754.02", + "value":"-73.93" + } + }, + { + "id":"92a5882f-93f5-44cb-b0e3-e5c71e22ddbc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T04:32:24.825Z", + "completed":"2016-04-05T04:32:24.825Z", + "new_balance":"16726.57", + "value":"-27.45" + } + }, + { + "id":"760d04d7-90d0-4620-b566-a5c8df079abb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T06:41:20.302Z", + "completed":"2016-04-05T06:41:20.302Z", + "new_balance":"16722.98", + "value":"-3.59" + } + }, + { + "id":"9103252a-7987-4f61-a54c-80a7f79b68d8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T12:25:40.236Z", + "completed":"2016-04-07T12:25:40.236Z", + "new_balance":"16691.69", + "value":"-31.29" + } + }, + { + "id":"1b5fafef-6831-41ed-9a14-7ff5295dd000", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T17:16:35.749Z", + "completed":"2016-04-07T17:16:35.749Z", + "new_balance":"16676.87", + "value":"-14.82" + } + }, + { + "id":"1a703948-38aa-4cb6-9971-128774b90ed6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T17:58:34.654Z", + "completed":"2016-04-08T17:58:34.654Z", + "new_balance":"16669.71", + "value":"-7.16" + } + }, + { + "id":"1b6d1efd-ed3e-408b-82fa-78adc6626d3d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T02:38:15.014Z", + "completed":"2016-04-09T02:38:15.014Z", + "new_balance":"16647.46", + "value":"-22.25" + } + }, + { + "id":"a562d04b-e257-42e3-9e1e-a1279d5f7f6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T04:44:54.603Z", + "completed":"2016-04-09T04:44:54.603Z", + "new_balance":"16640.75", + "value":"-6.71" + } + }, + { + "id":"9653e647-27d7-4291-a154-0a9a3c359ebe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T11:53:00.512Z", + "completed":"2016-04-09T11:53:00.512Z", + "new_balance":"16451.48", + "value":"-189.27" + } + }, + { + "id":"5268a8d4-e605-4b4b-9813-95441a8abf5a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T06:51:50.009Z", + "completed":"2016-04-10T06:51:50.009Z", + "new_balance":"16406.24", + "value":"-45.24" + } + }, + { + "id":"cf507913-6b5f-4fa5-bcd3-c1cc114a60e6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T00:20:02.044Z", + "completed":"2016-04-17T00:20:02.044Z", + "new_balance":"16396.54", + "value":"-9.70" + } + }, + { + "id":"bd1982ca-691d-4a1c-8ea5-b0685cfe210f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T01:03:08.165Z", + "completed":"2016-04-18T01:03:08.165Z", + "new_balance":"16364.26", + "value":"-32.28" + } + }, + { + "id":"49c86140-26df-4189-a4ec-8aa0cc25c82f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T07:30:33.488Z", + "completed":"2016-04-25T07:30:33.488Z", + "new_balance":"16321.74", + "value":"-42.52" + } + }, + { + "id":"13a32b81-f991-4415-898c-d562a14c6891", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T00:07:59.038Z", + "completed":"2016-04-26T00:07:59.038Z", + "new_balance":"16258.17", + "value":"-63.57" + } + }, + { + "id":"bb66c97a-2801-4c73-bec3-3d4b78ce672f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T22:54:12.425Z", + "completed":"2016-04-26T22:54:12.425Z", + "new_balance":"16251.46", + "value":"-6.71" + } + }, + { + "id":"bee37a7b-348f-46e3-a344-f305e941a41c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T05:19:22.574Z", + "completed":"2016-05-02T05:19:22.574Z", + "new_balance":"15740.92", + "value":"-510.54" + } + }, + { + "id":"29de1d22-aee6-442e-9aec-54365579d643", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T09:03:03.364Z", + "completed":"2016-05-02T09:03:03.364Z", + "new_balance":"15606.44", + "value":"-134.48" + } + }, + { + "id":"3ed6efa7-caca-4a8e-b9b9-a360c774f31e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T11:06:30.104Z", + "completed":"2016-05-02T11:06:30.104Z", + "new_balance":"17286.85", + "value":"1680.41" + } + }, + { + "id":"37952b50-d316-4351-b1db-240a6a32a857", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T11:11:13.934Z", + "completed":"2016-05-02T11:11:13.934Z", + "new_balance":"17200.29", + "value":"-86.56" + } + }, + { + "id":"7265df45-26fa-4f08-b18c-5f76797b2146", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T13:40:34.555Z", + "completed":"2016-05-02T13:40:34.555Z", + "new_balance":"17147.11", + "value":"-53.18" + } + }, + { + "id":"3888540b-0905-4c49-99c5-af1223fe3944", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T18:20:47.596Z", + "completed":"2016-05-02T18:20:47.596Z", + "new_balance":"17131.18", + "value":"-15.93" + } + }, + { + "id":"3a4a36c4-ffd8-4e87-a0a8-6a4800c1d628", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T21:42:40.748Z", + "completed":"2016-05-02T21:42:40.748Z", + "new_balance":"17096.75", + "value":"-34.43" + } + }, + { + "id":"105e29b7-d372-4f85-9813-a696e3f27989", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T22:56:28.202Z", + "completed":"2016-05-02T22:56:28.202Z", + "new_balance":"17066.87", + "value":"-29.88" + } + }, + { + "id":"b1fb6a57-a07a-4aef-9ef5-66a10187fdfb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T01:24:26.261Z", + "completed":"2016-05-03T01:24:26.261Z", + "new_balance":"17052.23", + "value":"-14.64" + } + }, + { + "id":"73204f63-8c9c-4a5c-ac58-bde454930458", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T22:05:41.276Z", + "completed":"2016-05-03T22:05:41.276Z", + "new_balance":"17028.86", + "value":"-23.37" + } + }, + { + "id":"e6794a4e-90aa-484b-a8b7-6447e42f25e8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T17:16:57.035Z", + "completed":"2016-05-04T17:16:57.035Z", + "new_balance":"17003.06", + "value":"-25.80" + } + }, + { + "id":"2e21fd54-8c20-48de-a82f-fa715c0e0b70", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T18:39:36.715Z", + "completed":"2016-05-04T18:39:36.715Z", + "new_balance":"16975.05", + "value":"-28.01" + } + }, + { + "id":"df26a817-dda1-4345-a8c4-e7bf60db9904", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T19:04:39.665Z", + "completed":"2016-05-05T19:04:39.665Z", + "new_balance":"16901.12", + "value":"-73.93" + } + }, + { + "id":"0f36ffde-7f50-4971-8bb7-323d9f7c7723", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T05:32:57.627Z", + "completed":"2016-05-07T05:32:57.627Z", + "new_balance":"16873.27", + "value":"-27.85" + } + }, + { + "id":"b4f4db87-e50b-4b2a-a65c-ed9d0c3e74e4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T22:28:29.002Z", + "completed":"2016-05-07T22:28:29.002Z", + "new_balance":"16869.18", + "value":"-4.09" + } + }, + { + "id":"1ec1728b-2e79-4d40-a799-86526cb094cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T17:09:16.530Z", + "completed":"2016-05-12T17:09:16.530Z", + "new_balance":"16848.08", + "value":"-21.10" + } + }, + { + "id":"169e8018-0f82-476e-adb0-a3bab91fabe4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T22:57:52.276Z", + "completed":"2016-05-12T22:57:52.276Z", + "new_balance":"16799.38", + "value":"-48.70" + } + }, + { + "id":"f5571cf2-0357-4139-8ca4-468a4d9a3502", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T20:12:47.235Z", + "completed":"2016-05-14T20:12:47.235Z", + "new_balance":"16754.21", + "value":"-45.17" + } + }, + { + "id":"7e181fe9-3de7-4cac-9d8c-daeb8d6decc0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T23:44:45.538Z", + "completed":"2016-05-16T23:44:45.538Z", + "new_balance":"16748.44", + "value":"-5.77" + } + }, + { + "id":"aed53aa2-0e7d-4140-894f-27792390ad77", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T03:29:57.708Z", + "completed":"2016-05-18T03:29:57.708Z", + "new_balance":"16739.92", + "value":"-8.52" + } + }, + { + "id":"06554a4d-0cf7-4325-8a46-62bcf1f4693a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T00:30:12.487Z", + "completed":"2016-05-20T00:30:12.487Z", + "new_balance":"16778.93", + "value":"39.01" + } + }, + { + "id":"56ab0790-bcd9-45af-ad9d-93517b3582f7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T00:57:54.216Z", + "completed":"2016-05-21T00:57:54.216Z", + "new_balance":"16733.30", + "value":"-45.63" + } + }, + { + "id":"063b9c1a-edd2-41d5-950a-5b47351448ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T22:10:45.241Z", + "completed":"2016-05-21T22:10:45.241Z", + "new_balance":"16689.51", + "value":"-43.79" + } + }, + { + "id":"993d7f65-f092-4a23-b3b8-6f6ce71df947", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:35:06.063Z", + "completed":"2016-05-27T06:35:06.063Z", + "new_balance":"16655.98", + "value":"-33.53" + } + }, + { + "id":"e897122b-0d84-4ead-8152-6bf6dbae94b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:24:45.020Z", + "completed":"2016-05-27T20:24:45.020Z", + "new_balance":"16630.42", + "value":"-25.56" + } + }, + { + "id":"c9aca1dd-aab4-4fb6-8d51-3e903c171619", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T01:03:39.382Z", + "completed":"2016-06-01T01:03:39.382Z", + "new_balance":"16119.88", + "value":"-510.54" + } + }, + { + "id":"cf94bd5e-6962-4a94-baa9-a61da5104c58", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T09:47:29.416Z", + "completed":"2016-06-01T09:47:29.416Z", + "new_balance":"15985.40", + "value":"-134.48" + } + }, + { + "id":"5accafe0-e929-4f70-bace-d5dd84b1896f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T11:12:33.041Z", + "completed":"2016-06-01T11:12:33.041Z", + "new_balance":"15955.52", + "value":"-29.88" + } + }, + { + "id":"2a36641c-fdc3-40e0-b16d-95f1f19f9faf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T15:05:39.123Z", + "completed":"2016-06-01T15:05:39.123Z", + "new_balance":"15902.34", + "value":"-53.18" + } + }, + { + "id":"011feed1-f531-4125-a984-f9205594379d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T18:46:44.894Z", + "completed":"2016-06-01T18:46:44.894Z", + "new_balance":"15867.91", + "value":"-34.43" + } + }, + { + "id":"2a9f0f7b-216e-4d77-b0f6-5eb83a638226", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T22:59:29.733Z", + "completed":"2016-06-01T22:59:29.733Z", + "new_balance":"17548.32", + "value":"1680.41" + } + }, + { + "id":"d7986715-9d00-4719-ab57-dc446dd006af", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:16:34.090Z", + "completed":"2016-06-04T10:16:34.090Z", + "new_balance":"17416.48", + "value":"-131.84" + } + }, + { + "id":"24a72c7c-1ef6-4efc-9fc5-04248341d449", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T23:27:51.511Z", + "completed":"2016-06-04T23:27:51.511Z", + "new_balance":"17329.92", + "value":"-86.56" + } + }, + { + "id":"3df861a0-c941-4077-bb3f-0394a62b08cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:17:40.070Z", + "completed":"2016-06-11T11:17:40.070Z", + "new_balance":"17299.11", + "value":"-30.81" + } + }, + { + "id":"0b6435a2-b7d2-4a35-9f75-6f415e1dff3b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T10:42:27.867Z", + "completed":"2016-06-12T10:42:27.867Z", + "new_balance":"17288.58", + "value":"-10.53" + } + }, + { + "id":"127ba557-b6a6-4857-81e1-35ef649a5ad1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T05:51:05.350Z", + "completed":"2016-06-13T05:51:05.350Z", + "new_balance":"17282.11", + "value":"-6.47" + } + }, + { + "id":"8d822003-79ca-4193-9057-b408f078d1d1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T18:25:15.110Z", + "completed":"2016-06-13T18:25:15.110Z", + "new_balance":"17200.90", + "value":"-81.21" + } + }, + { + "id":"0e115449-2379-469b-892e-5cb8479cb1e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T02:29:57.393Z", + "completed":"2016-06-16T02:29:57.393Z", + "new_balance":"17159.67", + "value":"-41.23" + } + }, + { + "id":"e22d1073-57ba-4d8e-9415-349f3ad5d59e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T07:48:07.103Z", + "completed":"2016-06-17T07:48:07.103Z", + "new_balance":"17078.46", + "value":"-81.21" + } + }, + { + "id":"03c1145d-45e9-4d20-8f98-d1d8331a33c6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T22:57:12.958Z", + "completed":"2016-06-17T22:57:12.958Z", + "new_balance":"17073.69", + "value":"-4.77" + } + }, + { + "id":"56f2ab11-a0b3-4295-bf8e-c1eb6d76e7aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T14:43:40.482Z", + "completed":"2016-06-18T14:43:40.482Z", + "new_balance":"16989.89", + "value":"-83.80" + } + }, + { + "id":"5470ebb5-e7ff-4fef-9fe6-a4944a6054bf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T03:16:04.344Z", + "completed":"2016-06-19T03:16:04.344Z", + "new_balance":"16906.09", + "value":"-83.80" + } + }, + { + "id":"04978b5e-3575-4a60-b303-a25e69a2491c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:45:15.416Z", + "completed":"2016-06-19T17:45:15.416Z", + "new_balance":"16863.75", + "value":"-42.34" + } + }, + { + "id":"c24fa61e-c8b1-4811-a765-bc35f6398a80", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T03:53:58.777Z", + "completed":"2016-06-21T03:53:58.777Z", + "new_balance":"16860.17", + "value":"-3.58" + } + }, + { + "id":"d99a4d55-520d-4348-91f1-ba2c3bcfebea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T21:49:19.393Z", + "completed":"2016-06-21T21:49:19.393Z", + "new_balance":"16768.70", + "value":"-91.47" + } + }, + { + "id":"e81cc0c3-dbc4-4e52-b28e-d429848eca6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T01:26:54.296Z", + "completed":"2016-06-23T01:26:54.296Z", + "new_balance":"16741.40", + "value":"-27.30" + } + }, + { + "id":"84b35659-3a2d-4da4-87bc-9a40dd9fca31", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T03:19:17.073Z", + "completed":"2016-06-23T03:19:17.073Z", + "new_balance":"16734.12", + "value":"-7.28" + } + }, + { + "id":"ceea1f05-b3a8-42cb-a3dd-f329150d7b25", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T01:52:13.332Z", + "completed":"2016-06-24T01:52:13.332Z", + "new_balance":"16720.88", + "value":"-13.24" + } + }, + { + "id":"17a9b1eb-7809-4dc2-8932-90d50bb5d976", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T10:34:21.821Z", + "completed":"2016-06-24T10:34:21.821Z", + "new_balance":"16674.87", + "value":"-46.01" + } + }, + { + "id":"a09e5f69-3f70-4e9c-af78-69a8c2968220", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T02:33:37.042Z", + "completed":"2016-06-28T02:33:37.042Z", + "new_balance":"16667.88", + "value":"-6.99" + } + }, + { + "id":"8aaffa57-5e8c-410c-aaa1-cf8c8d4cedd9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T05:50:53.934Z", + "completed":"2016-06-28T05:50:53.934Z", + "new_balance":"16660.89", + "value":"-6.99" + } + }, + { + "id":"44dd07c3-8ba4-4b2c-ab42-db621c667b86", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T08:07:07.176Z", + "completed":"2016-06-28T08:07:07.176Z", + "new_balance":"16579.48", + "value":"-81.41" + } + }, + { + "id":"4e52d1c0-d893-468c-b9a9-3a1f4cf605d3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T10:55:37.021Z", + "completed":"2016-06-28T10:55:37.021Z", + "new_balance":"16532.68", + "value":"-46.80" + } + }, + { + "id":"4c6ad62a-39e7-461a-aa52-c6f1f9160543", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T00:50:18.377Z", + "completed":"2016-06-29T00:50:18.377Z", + "new_balance":"16481.67", + "value":"-51.01" + } + }, + { + "id":"26efc1f9-9d15-47e7-a7ff-de65c7be64c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T04:41:03.991Z", + "completed":"2016-06-29T04:41:03.991Z", + "new_balance":"16447.76", + "value":"-33.91" + } + }, + { + "id":"85533a64-3917-4ffc-b8fa-8edaff9fba3c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T05:08:09.737Z", + "completed":"2016-06-29T05:08:09.737Z", + "new_balance":"16388.86", + "value":"-58.90" + } + }, + { + "id":"537033d5-308c-4439-a99c-f4263acd3ed1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T07:58:04.608Z", + "completed":"2016-06-29T07:58:04.608Z", + "new_balance":"16315.35", + "value":"-73.51" + } + }, + { + "id":"9934a842-71fd-49fc-a886-123716762b09", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T16:24:22.786Z", + "completed":"2016-06-29T16:24:22.786Z", + "new_balance":"16308.88", + "value":"-6.47" + } + }, + { + "id":"6e32bdf5-0d39-48e8-83ab-69cd6c31ef61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:00:45.319Z", + "completed":"2016-06-29T21:00:45.319Z", + "new_balance":"16271.93", + "value":"-36.95" + } + }, + { + "id":"eb0a3508-623f-492a-bd60-7dafacae84b3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T11:15:55.489Z", + "completed":"2016-06-30T11:15:55.489Z", + "new_balance":"16243.07", + "value":"-28.86" + } + }, + { + "id":"df5e1aa5-7da4-4b39-9fc7-a4b2fa476f2a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T16:15:38.846Z", + "completed":"2016-06-30T16:15:38.846Z", + "new_balance":"16237.19", + "value":"-5.88" + } + }, + { + "id":"a1ae8d70-f31c-4c74-960d-5172472b5902", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T22:35:46.902Z", + "completed":"2016-06-30T22:35:46.902Z", + "new_balance":"16191.68", + "value":"-45.51" + } + }, + { + "id":"5ae3e353-8405-40c0-9613-511447cb6d3f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T22:44:05.369Z", + "completed":"2016-06-30T22:44:05.369Z", + "new_balance":"16180.45", + "value":"-11.23" + } + }, + { + "id":"786d7743-3867-4dc9-9cc1-8ea4b49ca418", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T00:31:42.227Z", + "completed":"2016-07-01T00:31:42.227Z", + "new_balance":"15991.18", + "value":"-189.27" + } + }, + { + "id":"40d80a69-a275-46e1-a5f7-19a375307fa9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T08:50:02.669Z", + "completed":"2016-07-01T08:50:02.669Z", + "new_balance":"15480.64", + "value":"-510.54" + } + }, + { + "id":"105768e7-967d-4c61-9308-e8b5afd431cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:38:22.801Z", + "completed":"2016-07-01T11:38:22.801Z", + "new_balance":"15446.21", + "value":"-34.43" + } + }, + { + "id":"fc91951d-7e7b-444b-8c04-47fc70c801f8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T14:25:17.770Z", + "completed":"2016-07-01T14:25:17.770Z", + "new_balance":"15416.33", + "value":"-29.88" + } + }, + { + "id":"2e2cc988-54ec-4973-9048-20d9da484eaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T14:57:26.597Z", + "completed":"2016-07-01T14:57:26.597Z", + "new_balance":"15389.36", + "value":"-26.97" + } + }, + { + "id":"b44f98da-4f84-47e7-96ea-c968a937e8c1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T16:56:35.798Z", + "completed":"2016-07-01T16:56:35.798Z", + "new_balance":"15254.88", + "value":"-134.48" + } + }, + { + "id":"006e7f7a-f9c2-4e52-a52c-d3b4a2ecad98", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T17:22:06.608Z", + "completed":"2016-07-01T17:22:06.608Z", + "new_balance":"15238.80", + "value":"-16.08" + } + }, + { + "id":"8cab335e-ec86-4981-b7c5-2318021dcf4b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T18:08:31.797Z", + "completed":"2016-07-01T18:08:31.797Z", + "new_balance":"15204.37", + "value":"-34.43" + } + }, + { + "id":"94218ae3-73cc-4941-9e0a-eb3f223e2aca", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T20:05:52.304Z", + "completed":"2016-07-01T20:05:52.304Z", + "new_balance":"15170.34", + "value":"-34.03" + } + }, + { + "id":"8589de97-5631-470d-aa8e-28c0ee41ee49", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T21:50:35.306Z", + "completed":"2016-07-01T21:50:35.306Z", + "new_balance":"15117.16", + "value":"-53.18" + } + }, + { + "id":"0ab20dd1-cfc6-4311-b557-705ea97f837d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T21:57:03.704Z", + "completed":"2016-07-02T21:57:03.704Z", + "new_balance":"15030.60", + "value":"-86.56" + } + }, + { + "id":"71660bd3-0d50-47fb-965c-589fdcd7b875", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T04:14:02.408Z", + "completed":"2016-07-03T04:14:02.408Z", + "new_balance":"14935.17", + "value":"-95.43" + } + }, + { + "id":"488d2df0-b7ad-4ff5-9987-5f06c7a90a3f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T08:05:25.501Z", + "completed":"2016-07-04T08:05:25.501Z", + "new_balance":"14919.39", + "value":"-15.78" + } + }, + { + "id":"85adb160-c84f-486b-85cc-71a8977a1210", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T07:33:12.678Z", + "completed":"2016-07-05T07:33:12.678Z", + "new_balance":"14847.30", + "value":"-72.09" + } + }, + { + "id":"c8cb56a5-d22e-4b6e-8262-06c8b2e04319", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T21:12:40.943Z", + "completed":"2016-07-05T21:12:40.943Z", + "new_balance":"14773.37", + "value":"-73.93" + } + }, + { + "id":"7b27e39e-c15e-44b0-b0c5-a03fef42eda7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T17:03:15.733Z", + "completed":"2016-07-06T17:03:15.733Z", + "new_balance":"14769.78", + "value":"-3.59" + } + }, + { + "id":"c3cd5c7e-0873-44d1-93c5-f5345e5f49fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T18:28:11.069Z", + "completed":"2016-07-11T18:28:11.069Z", + "new_balance":"14742.33", + "value":"-27.45" + } + }, + { + "id":"2c3b9015-55d3-42dc-9534-3947280c8b73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T04:32:21.204Z", + "completed":"2016-07-12T04:32:21.204Z", + "new_balance":"14711.04", + "value":"-31.29" + } + }, + { + "id":"7fe41c52-4218-407a-93f0-b459c57573c2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T17:13:35.712Z", + "completed":"2016-07-14T17:13:35.712Z", + "new_balance":"14696.22", + "value":"-14.82" + } + }, + { + "id":"cf671f3e-495b-48bc-897e-d3c6231f761e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T04:38:48.480Z", + "completed":"2016-07-16T04:38:48.480Z", + "new_balance":"14689.06", + "value":"-7.16" + } + }, + { + "id":"d6b8b270-13dd-40fc-aaee-673a50a4d443", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T18:41:52.022Z", + "completed":"2016-07-18T18:41:52.022Z", + "new_balance":"14666.81", + "value":"-22.25" + } + }, + { + "id":"ef0c1334-27a4-4c37-bae3-e9ea20a04f1d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T06:24:14.897Z", + "completed":"2016-07-20T06:24:14.897Z", + "new_balance":"14660.10", + "value":"-6.71" + } + }, + { + "id":"f1d5276a-b3ff-44dc-9ee0-cd8ab0b5c42a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T22:06:44.614Z", + "completed":"2016-07-20T22:06:44.614Z", + "new_balance":"14470.83", + "value":"-189.27" + } + }, + { + "id":"c854a2a8-504f-4e0b-9d9e-1699e6082177", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T20:00:25.576Z", + "completed":"2016-07-24T20:00:25.576Z", + "new_balance":"14461.13", + "value":"-9.70" + } + }, + { + "id":"fb7597e1-0058-4950-99cc-190f98a13abf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T22:12:23.751Z", + "completed":"2016-07-24T22:12:23.751Z", + "new_balance":"14415.89", + "value":"-45.24" + } + }, + { + "id":"d058aa4f-74ca-4071-9808-f65b50a78602", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T07:08:58.303Z", + "completed":"2016-07-25T07:08:58.303Z", + "new_balance":"14373.37", + "value":"-42.52" + } + }, + { + "id":"ea06cc76-e879-4bb2-bf98-3b51a70a9c0a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T17:04:01.574Z", + "completed":"2016-07-25T17:04:01.574Z", + "new_balance":"14341.09", + "value":"-32.28" + } + }, + { + "id":"8ad3d92d-f936-4104-b7bc-dcbf3eae1754", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T00:29:21.607Z", + "completed":"2016-07-26T00:29:21.607Z", + "new_balance":"14277.52", + "value":"-63.57" + } + }, + { + "id":"a78ca485-9e0e-4212-8d83-2452eaa9bbbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T10:57:18.079Z", + "completed":"2016-07-27T10:57:18.079Z", + "new_balance":"14270.81", + "value":"-6.71" + } + }, + { + "id":"666e2089-6233-4094-acce-e9c658eec3a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T00:40:54.772Z", + "completed":"2016-08-01T00:40:54.772Z", + "new_balance":"15951.22", + "value":"1680.41" + } + }, + { + "id":"81b88e01-71b8-4673-baab-713e8cfb8b84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T00:45:57.631Z", + "completed":"2016-08-01T00:45:57.631Z", + "new_balance":"15440.68", + "value":"-510.54" + } + }, + { + "id":"0d970030-088b-4711-bc57-a1ae17bb7af4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T10:52:28.647Z", + "completed":"2016-08-01T10:52:28.647Z", + "new_balance":"15410.80", + "value":"-29.88" + } + }, + { + "id":"ad5da3a6-fc6d-4dc8-8236-9d2d4d952beb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T13:49:32.847Z", + "completed":"2016-08-01T13:49:32.847Z", + "new_balance":"15357.62", + "value":"-53.18" + } + }, + { + "id":"eda5dc9e-3fc5-4aa6-b798-0561905a39fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T14:45:56.619Z", + "completed":"2016-08-01T14:45:56.619Z", + "new_balance":"15323.19", + "value":"-34.43" + } + }, + { + "id":"21f73bb3-12a1-4fb3-a7e8-4456300acf61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T17:14:18.388Z", + "completed":"2016-08-01T17:14:18.388Z", + "new_balance":"15188.71", + "value":"-134.48" + } + }, + { + "id":"0ee5bfc0-7364-478f-ab19-ad1771b40cdc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T15:56:30.414Z", + "completed":"2016-08-02T15:56:30.414Z", + "new_balance":"15102.15", + "value":"-86.56" + } + }, + { + "id":"5300eca1-3947-46db-b9a5-41b063567ddc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T06:45:57.514Z", + "completed":"2016-08-03T06:45:57.514Z", + "new_balance":"15098.56", + "value":"-3.59" + } + }, + { + "id":"904daaac-4274-4664-8572-5fb4d23f7661", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T02:08:58.044Z", + "completed":"2016-08-04T02:08:58.044Z", + "new_balance":"15064.01", + "value":"-34.55" + } + }, + { + "id":"ad8f96d5-ac96-4464-81cc-14894a3d5b8d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T10:32:22.710Z", + "completed":"2016-08-07T10:32:22.710Z", + "new_balance":"15040.64", + "value":"-23.37" + } + }, + { + "id":"38cd2084-cadd-4dab-ad91-8cb352205ffe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T17:58:06.826Z", + "completed":"2016-08-09T17:58:06.826Z", + "new_balance":"15014.84", + "value":"-25.80" + } + }, + { + "id":"43db1648-09a4-4973-bc82-c563e8b51048", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:26:21.670Z", + "completed":"2016-08-09T23:26:21.670Z", + "new_balance":"14986.83", + "value":"-28.01" + } + }, + { + "id":"19b4bba6-3978-41a3-811e-0071ba2b1191", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T01:23:48.874Z", + "completed":"2016-08-10T01:23:48.874Z", + "new_balance":"14912.90", + "value":"-73.93" + } + }, + { + "id":"b4e0bb03-8769-4f78-9699-8844a8970250", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T19:02:35.752Z", + "completed":"2016-08-14T19:02:35.752Z", + "new_balance":"14908.81", + "value":"-4.09" + } + }, + { + "id":"7aaab62b-5165-47c0-8370-26bf7d7888a9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T04:22:43.001Z", + "completed":"2016-08-15T04:22:43.001Z", + "new_balance":"14880.96", + "value":"-27.85" + } + }, + { + "id":"25b23625-cd8b-4888-98d7-290f972eda0a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T11:46:12.586Z", + "completed":"2016-08-15T11:46:12.586Z", + "new_balance":"14845.03", + "value":"-35.93" + } + }, + { + "id":"877e2c40-6159-445a-9d8d-8975b43ba71d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T10:55:01.944Z", + "completed":"2016-08-16T10:55:01.944Z", + "new_balance":"14796.33", + "value":"-48.70" + } + }, + { + "id":"5d6238db-2deb-4e16-b39f-89c9a033ce14", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T01:40:38.737Z", + "completed":"2016-08-17T01:40:38.737Z", + "new_balance":"14751.16", + "value":"-45.17" + } + }, + { + "id":"e4d84338-3792-400e-833e-7b007864141d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T08:07:19.529Z", + "completed":"2016-08-20T08:07:19.529Z", + "new_balance":"14742.64", + "value":"-8.52" + } + }, + { + "id":"9c0aab1b-07e5-4f36-8122-f43e93996a88", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T09:02:19.246Z", + "completed":"2016-08-20T09:02:19.246Z", + "new_balance":"14736.87", + "value":"-5.77" + } + }, + { + "id":"27b3a660-3c44-41f6-8cf2-74750d2d8617", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T03:57:05.632Z", + "completed":"2016-08-22T03:57:05.632Z", + "new_balance":"14775.88", + "value":"39.01" + } + }, + { + "id":"41377bdf-8ad4-44b2-9b65-455dd1ea6910", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T00:27:52.282Z", + "completed":"2016-08-23T00:27:52.282Z", + "new_balance":"14732.09", + "value":"-43.79" + } + }, + { + "id":"698876f7-70b3-408f-9ab6-b4d00c0bfa89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T16:36:47.147Z", + "completed":"2016-08-23T16:36:47.147Z", + "new_balance":"14686.46", + "value":"-45.63" + } + }, + { + "id":"5a135bdc-dca2-4384-98c3-7d173ee37e45", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T01:08:34.941Z", + "completed":"2016-08-28T01:08:34.941Z", + "new_balance":"14660.90", + "value":"-25.56" + } + }, + { + "id":"e3be7517-e879-4de5-a3de-97ddd24a86de", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T19:18:48.115Z", + "completed":"2016-08-28T19:18:48.115Z", + "new_balance":"14627.37", + "value":"-33.53" + } + }, + { + "id":"f59cf602-62f8-4362-b5cd-ccdb141dfbbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T00:22:10.045Z", + "completed":"2016-09-01T00:22:10.045Z", + "new_balance":"14492.89", + "value":"-134.48" + } + }, + { + "id":"cddb8bcd-aa4c-44f5-9366-4c5e13c566ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T05:11:47.137Z", + "completed":"2016-09-01T05:11:47.137Z", + "new_balance":"14463.01", + "value":"-29.88" + } + }, + { + "id":"fa5a9761-6376-4df9-b94e-daf235afdfde", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T10:40:45.967Z", + "completed":"2016-09-01T10:40:45.967Z", + "new_balance":"16143.42", + "value":"1680.41" + } + }, + { + "id":"c573ec07-1145-4f0c-937e-ec14b70790ce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T11:33:13.614Z", + "completed":"2016-09-01T11:33:13.614Z", + "new_balance":"16108.99", + "value":"-34.43" + } + }, + { + "id":"481b48e3-c726-4ca5-9257-e03e2db48d41", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T12:45:22.236Z", + "completed":"2016-09-01T12:45:22.236Z", + "new_balance":"16055.81", + "value":"-53.18" + } + }, + { + "id":"3ef3af9d-6804-4d9b-af7b-860cf5a99fff", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T15:06:14.224Z", + "completed":"2016-09-01T15:06:14.224Z", + "new_balance":"15545.27", + "value":"-510.54" + } + }, + { + "id":"d65c52b9-0ef5-4836-8d36-7cf5b698bd2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T07:01:40.601Z", + "completed":"2016-09-02T07:01:40.601Z", + "new_balance":"15458.71", + "value":"-86.56" + } + }, + { + "id":"b0f6d329-f359-4941-8d6d-10f61d1e2ab9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T10:10:05.838Z", + "completed":"2016-09-04T10:10:05.838Z", + "new_balance":"15452.24", + "value":"-6.47" + } + }, + { + "id":"11799b1f-34cd-450b-b440-242d0e4b9a60", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T11:07:51.556Z", + "completed":"2016-09-04T11:07:51.556Z", + "new_balance":"15371.03", + "value":"-81.21" + } + }, + { + "id":"a08faca6-d796-4884-b630-a5cf114103f9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T18:55:25.384Z", + "completed":"2016-09-04T18:55:25.384Z", + "new_balance":"15360.50", + "value":"-10.53" + } + }, + { + "id":"afa8c827-970d-4ca8-bf53-7140fda240b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T22:17:04.530Z", + "completed":"2016-09-04T22:17:04.530Z", + "new_balance":"15329.69", + "value":"-30.81" + } + }, + { + "id":"c3336d48-291a-425c-9a48-938f378cfbdc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:31:41.223Z", + "completed":"2016-09-05T06:31:41.223Z", + "new_balance":"15324.92", + "value":"-4.77" + } + }, + { + "id":"62759213-963a-45a8-8028-bd56e1e89061", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T17:49:08.567Z", + "completed":"2016-09-05T17:49:08.567Z", + "new_balance":"15283.69", + "value":"-41.23" + } + }, + { + "id":"c5f19edd-176d-4532-8371-d09053a97f02", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T04:12:28.688Z", + "completed":"2016-09-06T04:12:28.688Z", + "new_balance":"15202.48", + "value":"-81.21" + } + }, + { + "id":"048daab2-1b8b-45b8-9d64-2512852ab960", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:11:44.178Z", + "completed":"2016-09-06T18:11:44.178Z", + "new_balance":"15118.68", + "value":"-83.80" + } + }, + { + "id":"cd052dc9-1f71-482d-b513-621862d4d472", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T06:52:02.336Z", + "completed":"2016-09-08T06:52:02.336Z", + "new_balance":"15076.34", + "value":"-42.34" + } + }, + { + "id":"46953184-a08c-49c1-a855-4dfed80e684f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T14:26:11.776Z", + "completed":"2016-09-08T14:26:11.776Z", + "new_balance":"14992.54", + "value":"-83.80" + } + }, + { + "id":"8d9281d9-6cfc-4c34-9419-abbc25ee96a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T09:48:20.027Z", + "completed":"2016-09-10T09:48:20.027Z", + "new_balance":"14901.07", + "value":"-91.47" + } + }, + { + "id":"1259d856-c722-4f45-b674-b581ff60c243", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T21:01:11.004Z", + "completed":"2016-09-10T21:01:11.004Z", + "new_balance":"14897.49", + "value":"-3.58" + } + }, + { + "id":"3653853f-9192-4810-9914-e91f41e6c10b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T03:44:25.212Z", + "completed":"2016-09-11T03:44:25.212Z", + "new_balance":"14890.21", + "value":"-7.28" + } + }, + { + "id":"bde7643a-8929-4d2b-9d5d-f230c067ab05", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T02:07:41.377Z", + "completed":"2016-09-12T02:07:41.377Z", + "new_balance":"14862.91", + "value":"-27.30" + } + }, + { + "id":"100ae450-2ced-458c-8788-d99cb7bcea9f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T19:54:12.474Z", + "completed":"2016-09-12T19:54:12.474Z", + "new_balance":"14849.67", + "value":"-13.24" + } + }, + { + "id":"04122aa5-d1b9-422e-a9d3-d230c35800f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:11:15.067Z", + "completed":"2016-09-13T09:11:15.067Z", + "new_balance":"14803.66", + "value":"-46.01" + } + }, + { + "id":"1a42a1d3-6b2e-4bb4-b54f-9f916f11866f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T07:12:37.144Z", + "completed":"2016-09-16T07:12:37.144Z", + "new_balance":"14796.67", + "value":"-6.99" + } + }, + { + "id":"26c6a4f2-7c51-495f-8bd7-eb39127fbacb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T09:09:47.763Z", + "completed":"2016-09-17T09:09:47.763Z", + "new_balance":"14715.26", + "value":"-81.41" + } + }, + { + "id":"6b760190-fcaa-494f-8815-a38237cb2e73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T15:00:39.990Z", + "completed":"2016-09-17T15:00:39.990Z", + "new_balance":"14668.46", + "value":"-46.80" + } + }, + { + "id":"c3bc1c53-023c-470e-8ba3-d6bf5375b2cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T01:35:41.281Z", + "completed":"2016-09-18T01:35:41.281Z", + "new_balance":"14661.47", + "value":"-6.99" + } + }, + { + "id":"d0c3f34c-3b6f-4697-b23b-419c78f5e5a1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T00:35:29.967Z", + "completed":"2016-09-19T00:35:29.967Z", + "new_balance":"14624.52", + "value":"-36.95" + } + }, + { + "id":"61115edf-8f64-4a6b-bcb5-75293cd00a15", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T07:46:30.184Z", + "completed":"2016-09-19T07:46:30.184Z", + "new_balance":"14590.61", + "value":"-33.91" + } + }, + { + "id":"316d033a-c3f3-4c7f-bff1-63e925cc5dbc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T18:48:32.076Z", + "completed":"2016-09-19T18:48:32.076Z", + "new_balance":"14539.60", + "value":"-51.01" + } + }, + { + "id":"9c3ad289-beb1-4fc6-85e5-463d10c73fdb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T00:42:19.688Z", + "completed":"2016-09-20T00:42:19.688Z", + "new_balance":"14466.09", + "value":"-73.51" + } + }, + { + "id":"0d732177-cbfe-4be8-bc6c-0999abfe1749", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T10:03:46.303Z", + "completed":"2016-09-20T10:03:46.303Z", + "new_balance":"14407.19", + "value":"-58.90" + } + }, + { + "id":"64fc8f3b-ad5f-4ba3-8679-d62b2fff665d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T04:21:01.379Z", + "completed":"2016-09-21T04:21:01.379Z", + "new_balance":"14400.72", + "value":"-6.47" + } + }, + { + "id":"3de001cb-58d6-4204-9511-9ea7136c642c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T13:02:54.281Z", + "completed":"2016-09-21T13:02:54.281Z", + "new_balance":"14394.84", + "value":"-5.88" + } + }, + { + "id":"76b404d6-d68e-4683-9d3c-2f13481c2b2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T01:36:42.286Z", + "completed":"2016-09-23T01:36:42.286Z", + "new_balance":"14349.33", + "value":"-45.51" + } + }, + { + "id":"45980f1f-53f8-4f59-98cd-5bcc62d8fafd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T20:59:57.331Z", + "completed":"2016-09-23T20:59:57.331Z", + "new_balance":"14338.10", + "value":"-11.23" + } + }, + { + "id":"95ee7b7b-8594-4396-88ed-489126831142", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T22:35:01.448Z", + "completed":"2016-09-24T22:35:01.448Z", + "new_balance":"14309.24", + "value":"-28.86" + } + }, + { + "id":"7e16fe43-77be-459b-b808-78dc633d005d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T02:23:48.459Z", + "completed":"2016-09-25T02:23:48.459Z", + "new_balance":"14275.21", + "value":"-34.03" + } + }, + { + "id":"cfc263ab-e76f-4a45-96a9-dd0b6faee3aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T20:58:26.815Z", + "completed":"2016-09-25T20:58:26.815Z", + "new_balance":"14259.13", + "value":"-16.08" + } + }, + { + "id":"fc207822-262e-4867-86fc-c7eccf78c478", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T01:56:43.863Z", + "completed":"2016-09-27T01:56:43.863Z", + "new_balance":"14069.86", + "value":"-189.27" + } + }, + { + "id":"4d648f37-944a-4f87-ba34-05a7f45ebfc2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T03:55:13.192Z", + "completed":"2016-09-29T03:55:13.192Z", + "new_balance":"14042.89", + "value":"-26.97" + } + }, + { + "id":"a3390e0e-bf9a-4363-967a-6dd767306dca", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T00:35:47.006Z", + "completed":"2016-10-01T00:35:47.006Z", + "new_balance":"13532.35", + "value":"-510.54" + } + }, + { + "id":"bdd45f32-52a8-4ab6-a9a5-ca74ad91df85", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T09:20:10.052Z", + "completed":"2016-10-01T09:20:10.052Z", + "new_balance":"13479.17", + "value":"-53.18" + } + }, + { + "id":"df38fade-06c3-4eca-984d-deba19b17220", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T13:09:52.004Z", + "completed":"2016-10-01T13:09:52.004Z", + "new_balance":"13449.29", + "value":"-29.88" + } + }, + { + "id":"f22f7251-9fee-4eb1-95d7-2aaf97ae91dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T22:19:52.793Z", + "completed":"2016-10-01T22:19:52.793Z", + "new_balance":"13314.81", + "value":"-134.48" + } + }, + { + "id":"f4807df9-f4d7-4e36-80e6-f873c6139ae5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T02:36:29.131Z", + "completed":"2016-10-02T02:36:29.131Z", + "new_balance":"13242.82", + "value":"-71.99" + } + }, + { + "id":"bb25c4a8-c1b6-4980-b8bd-9924dd00f928", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T03:24:42.337Z", + "completed":"2016-10-02T03:24:42.337Z", + "new_balance":"13156.26", + "value":"-86.56" + } + }, + { + "id":"1fe1c2dc-b398-43db-9d84-2728e7e71832", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T12:03:41.597Z", + "completed":"2016-10-03T12:03:41.597Z", + "new_balance":"13119.07", + "value":"-37.19" + } + }, + { + "id":"256b4eaa-993e-48ac-92ac-6fe723baaa62", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T12:07:01.595Z", + "completed":"2016-10-03T12:07:01.595Z", + "new_balance":"13084.29", + "value":"-34.78" + } + }, + { + "id":"a10b7524-81d5-4a7d-aa92-30cb8797afea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T13:30:29.850Z", + "completed":"2016-10-03T13:30:29.850Z", + "new_balance":"12920.81", + "value":"-163.48" + } + }, + { + "id":"0061fd5b-58ba-425c-8b15-055812220db6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T17:01:50.447Z", + "completed":"2016-10-03T17:01:50.447Z", + "new_balance":"12731.54", + "value":"-189.27" + } + }, + { + "id":"fa4df100-980c-4d50-80d1-31c97ff4b027", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T20:11:23.318Z", + "completed":"2016-10-03T20:11:23.318Z", + "new_balance":"11999.69", + "value":"-731.85" + } + }, + { + "id":"da7a8729-686b-4e9e-aad4-3490748eea39", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T10:44:07.080Z", + "completed":"2016-10-04T10:44:07.080Z", + "new_balance":"11925.76", + "value":"-73.93" + } + }, + { + "id":"7193dd0e-3ed6-4f54-bdbf-beb6ec90a950", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T18:23:34.303Z", + "completed":"2016-10-05T18:23:34.303Z", + "new_balance":"11922.17", + "value":"-3.59" + } + }, + { + "id":"1dbc6178-0bd8-4125-b9e7-3fb60ac791e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T23:09:19.623Z", + "completed":"2016-10-05T23:09:19.623Z", + "new_balance":"11894.72", + "value":"-27.45" + } + }, + { + "id":"8ce4c19d-5e1d-4983-a737-cd99fddaf816", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T22:12:34.427Z", + "completed":"2016-10-07T22:12:34.427Z", + "new_balance":"11863.43", + "value":"-31.29" + } + }, + { + "id":"02a8f030-ece8-4d75-8fcd-5b0792bf8f16", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T23:20:17.082Z", + "completed":"2016-10-07T23:20:17.082Z", + "new_balance":"11848.61", + "value":"-14.82" + } + }, + { + "id":"190ef315-092f-4dec-8f88-92508fc8742f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T00:59:21.078Z", + "completed":"2016-10-08T00:59:21.078Z", + "new_balance":"11841.45", + "value":"-7.16" + } + }, + { + "id":"0da1d077-38ae-4d18-b7c7-bfd13f7a640a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T10:29:07.271Z", + "completed":"2016-10-09T10:29:07.271Z", + "new_balance":"11819.20", + "value":"-22.25" + } + }, + { + "id":"367c9057-0850-46b5-8681-421ad16e6592", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T18:49:08.508Z", + "completed":"2016-10-09T18:49:08.508Z", + "new_balance":"11812.49", + "value":"-6.71" + } + }, + { + "id":"9c80c630-630c-4659-9ba1-a6e571ef4244", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T23:03:26.440Z", + "completed":"2016-10-09T23:03:26.440Z", + "new_balance":"11623.22", + "value":"-189.27" + } + }, + { + "id":"8e9462bc-7198-4bd0-b660-de5b4b3df4e9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T09:27:10.987Z", + "completed":"2016-10-10T09:27:10.987Z", + "new_balance":"11577.98", + "value":"-45.24" + } + }, + { + "id":"68f3fc4d-8e32-48ad-87e8-6b468735fa2f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:33:03.728Z", + "completed":"2016-10-17T06:33:03.728Z", + "new_balance":"11568.28", + "value":"-9.70" + } + }, + { + "id":"2f739e56-5a05-407d-8ab4-7400cc3cbb9e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T17:57:11.492Z", + "completed":"2016-10-18T17:57:11.492Z", + "new_balance":"11536.00", + "value":"-32.28" + } + }, + { + "id":"144e3d74-6759-4d37-a114-33f635d39f3a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T08:46:36.850Z", + "completed":"2016-10-25T08:46:36.850Z", + "new_balance":"11493.48", + "value":"-42.52" + } + }, + { + "id":"5e09e80a-d009-4551-a595-eaaba6899db3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T05:29:56.323Z", + "completed":"2016-10-26T05:29:56.323Z", + "new_balance":"11429.91", + "value":"-63.57" + } + }, + { + "id":"9d36759c-fa22-4a37-a8f5-581353690c65", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:51:19.494Z", + "completed":"2016-10-26T09:51:19.494Z", + "new_balance":"11423.20", + "value":"-6.71" + } + }, + { + "id":"63c24506-abe8-4153-978c-6b314b1e23eb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T03:11:08.664Z", + "completed":"2016-11-02T03:11:08.664Z", + "new_balance":"11388.77", + "value":"-34.43" + } + }, + { + "id":"a5ea52b0-2ac2-4542-aef5-1bc0d1e8c656", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T04:22:35.998Z", + "completed":"2016-11-02T04:22:35.998Z", + "new_balance":"11335.59", + "value":"-53.18" + } + }, + { + "id":"1622289f-48b6-46be-adfc-d79088df4020", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T04:35:58.557Z", + "completed":"2016-11-02T04:35:58.557Z", + "new_balance":"11249.03", + "value":"-86.56" + } + }, + { + "id":"02c9615d-e967-4d0d-bd87-7f9e5ac6f72b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T06:28:10.997Z", + "completed":"2016-11-02T06:28:10.997Z", + "new_balance":"11114.55", + "value":"-134.48" + } + }, + { + "id":"d98698d7-abd1-4ae5-9832-555e7cba751a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T11:28:46.190Z", + "completed":"2016-11-02T11:28:46.190Z", + "new_balance":"11084.67", + "value":"-29.88" + } + }, + { + "id":"f70a5d9c-ef8d-4a01-9ced-7bf50ff9a6cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T12:54:10.952Z", + "completed":"2016-11-02T12:54:10.952Z", + "new_balance":"12765.08", + "value":"1680.41" + } + }, + { + "id":"d082cea5-af1e-45b3-b1b1-d17de98fcc12", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T21:47:14.359Z", + "completed":"2016-11-02T21:47:14.359Z", + "new_balance":"12749.15", + "value":"-15.93" + } + }, + { + "id":"8f18b641-ea59-4bab-ba48-b3cfc1f41eb8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T23:05:53.665Z", + "completed":"2016-11-02T23:05:53.665Z", + "new_balance":"12238.61", + "value":"-510.54" + } + }, + { + "id":"b6e3b4b8-6b4b-4be0-ad7e-f1f520ea14f8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T07:09:54.719Z", + "completed":"2016-11-06T07:09:54.719Z", + "new_balance":"12223.97", + "value":"-14.64" + } + }, + { + "id":"c447bf85-09d8-4352-9f82-4be72dc2aaf5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T03:12:05.033Z", + "completed":"2016-11-07T03:12:05.033Z", + "new_balance":"12198.17", + "value":"-25.80" + } + }, + { + "id":"7b26f444-73f4-46c2-ad5b-b2e3a9d5c306", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T16:19:32.224Z", + "completed":"2016-11-07T16:19:32.224Z", + "new_balance":"12170.16", + "value":"-28.01" + } + }, + { + "id":"caf04690-7ba5-46b1-ab05-bb10c6b3d64a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T22:31:34.472Z", + "completed":"2016-11-07T22:31:34.472Z", + "new_balance":"12146.79", + "value":"-23.37" + } + }, + { + "id":"e80f5041-434b-434c-8609-2af8105e5a9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T13:40:22.659Z", + "completed":"2016-11-09T13:40:22.659Z", + "new_balance":"12072.86", + "value":"-73.93" + } + }, + { + "id":"0faf612f-4279-487e-bf67-abf1dd8c7d6e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T18:52:30.768Z", + "completed":"2016-11-09T18:52:30.768Z", + "new_balance":"12068.77", + "value":"-4.09" + } + }, + { + "id":"e31f65ff-adda-4700-bd0e-2fe1fcc11438", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T16:22:07.778Z", + "completed":"2016-11-12T16:22:07.778Z", + "new_balance":"12040.92", + "value":"-27.85" + } + }, + { + "id":"31b59bc7-c25e-4204-a719-7cdcda32ec26", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T16:40:08.106Z", + "completed":"2016-11-12T16:40:08.106Z", + "new_balance":"12019.82", + "value":"-21.10" + } + }, + { + "id":"3c5a1641-da0f-4ced-8980-89947c731816", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T20:50:29.571Z", + "completed":"2016-11-14T20:50:29.571Z", + "new_balance":"11971.12", + "value":"-48.70" + } + }, + { + "id":"a7314877-ccbf-412e-8e76-55ef7d5736d5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T22:23:08.117Z", + "completed":"2016-11-14T22:23:08.117Z", + "new_balance":"11925.95", + "value":"-45.17" + } + }, + { + "id":"c1b10240-dc48-49b4-aa6a-bce2beb51626", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T02:11:27.587Z", + "completed":"2016-11-16T02:11:27.587Z", + "new_balance":"11920.18", + "value":"-5.77" + } + }, + { + "id":"d67cf54d-380e-4047-8e04-100c6d8c99c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T22:59:03.413Z", + "completed":"2016-11-18T22:59:03.413Z", + "new_balance":"11911.66", + "value":"-8.52" + } + }, + { + "id":"636afd32-fe86-45cc-9d60-976eb9d6abc3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T12:18:43.267Z", + "completed":"2016-11-20T12:18:43.267Z", + "new_balance":"11950.67", + "value":"39.01" + } + }, + { + "id":"958f2599-7a39-42d5-99f4-cffbf7f18f81", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T03:53:18.872Z", + "completed":"2016-11-21T03:53:18.872Z", + "new_balance":"11906.88", + "value":"-43.79" + } + }, + { + "id":"4109422f-5cdc-4d4a-b2f5-881a29d83c50", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T21:32:10.782Z", + "completed":"2016-11-21T21:32:10.782Z", + "new_balance":"11861.25", + "value":"-45.63" + } + }, + { + "id":"2c3e06fd-046c-42cc-98bb-49a4dfe58330", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T00:10:32.932Z", + "completed":"2016-11-27T00:10:32.932Z", + "new_balance":"11827.72", + "value":"-33.53" + } + }, + { + "id":"e892ec8a-d261-43f4-ba19-f02398177f1c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T14:04:01.833Z", + "completed":"2016-11-27T14:04:01.833Z", + "new_balance":"11802.16", + "value":"-25.56" + } + }, + { + "id":"faef2ee1-23cd-49a1-a571-dc03675f7baa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T04:11:52.201Z", + "completed":"2016-12-01T04:11:52.201Z", + "new_balance":"13482.57", + "value":"1680.41" + } + }, + { + "id":"055bf015-73ce-4258-83f7-eccd6224ffa6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T05:51:24.789Z", + "completed":"2016-12-01T05:51:24.789Z", + "new_balance":"13348.09", + "value":"-134.48" + } + }, + { + "id":"f927ae76-1874-4525-9bbd-4d5ac69e60ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T08:55:01.662Z", + "completed":"2016-12-01T08:55:01.662Z", + "new_balance":"13294.91", + "value":"-53.18" + } + }, + { + "id":"6e6a45e7-9a79-4cfc-9f19-9ea855a16e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T13:06:56.939Z", + "completed":"2016-12-01T13:06:56.939Z", + "new_balance":"13265.03", + "value":"-29.88" + } + }, + { + "id":"a39ae985-288c-41e3-ab9c-e5cf5459fd86", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T17:17:05.763Z", + "completed":"2016-12-01T17:17:05.763Z", + "new_balance":"13230.60", + "value":"-34.43" + } + }, + { + "id":"0bef77db-0675-47c1-a681-dfa6d19cb36b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T18:09:42.532Z", + "completed":"2016-12-01T18:09:42.532Z", + "new_balance":"12720.06", + "value":"-510.54" + } + }, + { + "id":"b1f03cee-9391-44fc-ac9a-e0dba0b7be2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T06:24:30.778Z", + "completed":"2016-12-04T06:24:30.778Z", + "new_balance":"12633.50", + "value":"-86.56" + } + }, + { + "id":"290e70ab-a830-49db-942c-beb21fd31c4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:38:33.739Z", + "completed":"2016-12-04T18:38:33.739Z", + "new_balance":"12501.66", + "value":"-131.84" + } + }, + { + "id":"ffdd1a34-9bba-4ca1-b946-5bbf7d37ec72", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T12:25:03.768Z", + "completed":"2016-12-12T12:25:03.768Z", + "new_balance":"12470.85", + "value":"-30.81" + } + }, + { + "id":"44f5c46d-da3c-4bc5-bcad-8a3f9e2f485a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T16:43:17.482Z", + "completed":"2016-12-12T16:43:17.482Z", + "new_balance":"12460.32", + "value":"-10.53" + } + }, + { + "id":"5c2996d3-e7b2-44e8-a062-5d88ce70d21d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T11:44:27.475Z", + "completed":"2016-12-13T11:44:27.475Z", + "new_balance":"12453.85", + "value":"-6.47" + } + }, + { + "id":"9cf09307-b06e-4872-9a43-7287f54ccc8a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T22:58:56.201Z", + "completed":"2016-12-13T22:58:56.201Z", + "new_balance":"12372.64", + "value":"-81.21" + } + }, + { + "id":"e66e5bea-9591-4bf4-8def-68dd7a9caca3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T08:00:15.010Z", + "completed":"2016-12-16T08:00:15.010Z", + "new_balance":"12331.41", + "value":"-41.23" + } + }, + { + "id":"04f78327-4ce5-4db7-bb8f-b6c6f5f98abd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T09:08:29.767Z", + "completed":"2016-12-18T09:08:29.767Z", + "new_balance":"12326.64", + "value":"-4.77" + } + }, + { + "id":"4bafde7a-e195-4cd7-999b-15175132f93b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:53:23.670Z", + "completed":"2016-12-19T05:53:23.670Z", + "new_balance":"12245.43", + "value":"-81.21" + } + }, + { + "id":"b141a6c8-a8f5-4fa9-9a06-70198e4ed70b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:06:04.885Z", + "completed":"2016-12-19T06:06:04.885Z", + "new_balance":"12161.63", + "value":"-83.80" + } + }, + { + "id":"2d6a35a5-a4aa-46fd-b347-08b8318b2ad1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T23:38:34.743Z", + "completed":"2016-12-20T23:38:34.743Z", + "new_balance":"12119.29", + "value":"-42.34" + } + }, + { + "id":"bf4e61b3-8656-4eaa-938d-aaa196965c38", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:36:16.956Z", + "completed":"2016-12-21T23:36:16.956Z", + "new_balance":"12035.49", + "value":"-83.80" + } + }, + { + "id":"a0e95cec-c5a8-473e-915a-696e47d70e9a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T00:02:04.308Z", + "completed":"2016-12-24T00:02:04.308Z", + "new_balance":"12022.25", + "value":"-13.24" + } + }, + { + "id":"83b05dfc-8b9d-41ee-80ca-e60cfacd1127", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:15:42.568Z", + "completed":"2016-12-24T09:15:42.568Z", + "new_balance":"12014.97", + "value":"-7.28" + } + }, + { + "id":"85cb9be0-d698-436a-861f-f1b1d80403ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T12:14:11.917Z", + "completed":"2016-12-24T12:14:11.917Z", + "new_balance":"11987.67", + "value":"-27.30" + } + }, + { + "id":"610b7d6a-b75f-40c0-a66f-6bd9f76ffc87", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T18:42:47.904Z", + "completed":"2016-12-24T18:42:47.904Z", + "new_balance":"11984.09", + "value":"-3.58" + } + }, + { + "id":"cf55e437-4054-49d8-bae2-917dde795bce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T23:00:15.115Z", + "completed":"2016-12-24T23:00:15.115Z", + "new_balance":"11892.62", + "value":"-91.47" + } + }, + { + "id":"ad259b24-6f8e-44c7-8afc-f7c409d4d83b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T23:44:27.189Z", + "completed":"2016-12-24T23:44:27.189Z", + "new_balance":"11846.61", + "value":"-46.01" + } + }, + { + "id":"1bb02547-2c9a-4933-8c38-8cf9fd42d95a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T00:57:08.279Z", + "completed":"2016-12-28T00:57:08.279Z", + "new_balance":"11799.81", + "value":"-46.80" + } + }, + { + "id":"71ea0f94-c9e8-4a1d-8df8-e02be4000117", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T06:46:21.100Z", + "completed":"2016-12-28T06:46:21.100Z", + "new_balance":"11792.82", + "value":"-6.99" + } + }, + { + "id":"bfdac0d6-9ad9-4fa5-a8aa-393265dc9663", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T10:11:38.515Z", + "completed":"2016-12-28T10:11:38.515Z", + "new_balance":"11785.83", + "value":"-6.99" + } + }, + { + "id":"32dbd6fa-7415-4612-a6b4-d4280e480a32", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T22:30:57.162Z", + "completed":"2016-12-28T22:30:57.162Z", + "new_balance":"11704.42", + "value":"-81.41" + } + }, + { + "id":"4652b24c-033d-4794-9b30-4ebee42cfc3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T01:14:14.715Z", + "completed":"2016-12-29T01:14:14.715Z", + "new_balance":"11670.51", + "value":"-33.91" + } + }, + { + "id":"013766fe-5a67-452a-86a9-5ecdd14087d9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T02:36:59.245Z", + "completed":"2016-12-29T02:36:59.245Z", + "new_balance":"11633.56", + "value":"-36.95" + } + }, + { + "id":"74b872a0-f6cf-4a1b-b405-15ec110b7616", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T06:58:37.264Z", + "completed":"2016-12-29T06:58:37.264Z", + "new_balance":"11560.05", + "value":"-73.51" + } + }, + { + "id":"3f07c990-e6fb-4d31-9c3b-19329dec7aad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T09:38:35.600Z", + "completed":"2016-12-29T09:38:35.600Z", + "new_balance":"11501.15", + "value":"-58.90" + } + }, + { + "id":"46ad231f-1d88-432d-a2d1-9b532902c072", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T19:04:46.592Z", + "completed":"2016-12-29T19:04:46.592Z", + "new_balance":"11450.14", + "value":"-51.01" + } + }, + { + "id":"bdea41a3-aec1-4c45-ba5a-e773f6f0fc5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T21:38:07.222Z", + "completed":"2016-12-29T21:38:07.222Z", + "new_balance":"11443.67", + "value":"-6.47" + } + }, + { + "id":"501749cc-63d6-4ec9-a33b-0a51d17e3c4e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T03:13:29.915Z", + "completed":"2016-12-30T03:13:29.915Z", + "new_balance":"11398.16", + "value":"-45.51" + } + }, + { + "id":"6f39df25-6906-4b70-a49d-e613312ad17c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T13:04:43.587Z", + "completed":"2016-12-30T13:04:43.587Z", + "new_balance":"11386.93", + "value":"-11.23" + } + }, + { + "id":"55a4f916-dbc6-4481-90bf-4927f9ec24e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T15:32:21.449Z", + "completed":"2016-12-30T15:32:21.449Z", + "new_balance":"11358.07", + "value":"-28.86" + } + }, + { + "id":"c3f5bece-545f-45ff-8da8-d3f78833eeaf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T23:10:10.004Z", + "completed":"2016-12-30T23:10:10.004Z", + "new_balance":"11352.19", + "value":"-5.88" + } + }, + { + "id":"4c656ec5-99ca-4a05-8866-51c5d3377556", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T10:06:54.798Z", + "completed":"2016-12-31T10:06:54.798Z", + "new_balance":"11336.11", + "value":"-16.08" + } + }, + { + "id":"7bd39a45-4559-4fc3-b97a-556518f735cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T12:20:25.613Z", + "completed":"2016-12-31T12:20:25.613Z", + "new_balance":"11309.14", + "value":"-26.97" + } + }, + { + "id":"c0d7af33-73fe-46cf-a755-b8eee5ca336c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T23:28:20.763Z", + "completed":"2016-12-31T23:28:20.763Z", + "new_balance":"11275.11", + "value":"-34.03" + } + }, + { + "id":"87311d11-6c46-4a61-9c49-2368294bb8a4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T23:44:46.769Z", + "completed":"2016-12-31T23:44:46.769Z", + "new_balance":"11085.84", + "value":"-189.27" + } + }, + { + "id":"905ec33e-01c8-4fc0-b9cb-c0ac646d69de", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T01:38:43.206Z", + "completed":"2017-01-01T01:38:43.206Z", + "new_balance":"11051.41", + "value":"-34.43" + } + }, + { + "id":"a1019ec5-47b4-4a7e-be6c-530225f2e84b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T07:34:58.667Z", + "completed":"2017-01-01T07:34:58.667Z", + "new_balance":"10916.93", + "value":"-134.48" + } + }, + { + "id":"af0e0115-a627-4d58-9054-669fb5d4b20a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T12:14:47.144Z", + "completed":"2017-01-01T12:14:47.144Z", + "new_balance":"10887.05", + "value":"-29.88" + } + }, + { + "id":"38268439-8ca8-4901-9a75-4ec09a837e66", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T13:22:22.171Z", + "completed":"2017-01-01T13:22:22.171Z", + "new_balance":"10376.51", + "value":"-510.54" + } + }, + { + "id":"28e27c4a-6ee8-4c37-b9d2-2fbb9aba101a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T13:59:31.798Z", + "completed":"2017-01-01T13:59:31.798Z", + "new_balance":"10323.33", + "value":"-53.18" + } + }, + { + "id":"85d33663-f512-4bd9-86e7-4d2946b0ac84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T19:43:19.615Z", + "completed":"2017-01-01T19:43:19.615Z", + "new_balance":"10288.90", + "value":"-34.43" + } + }, + { + "id":"83c58fc3-9f48-408a-9fdb-0428fd128508", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T10:34:09.321Z", + "completed":"2017-01-02T10:34:09.321Z", + "new_balance":"10202.34", + "value":"-86.56" + } + }, + { + "id":"67277ad3-f7d1-45d8-8595-e7e12a3c1fc7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T22:49:35.762Z", + "completed":"2017-01-02T22:49:35.762Z", + "new_balance":"10130.35", + "value":"-71.99" + } + }, + { + "id":"11102e34-1eb9-418e-b87f-b06502d919a1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T11:33:13.059Z", + "completed":"2017-01-04T11:33:13.059Z", + "new_balance":"10093.16", + "value":"-37.19" + } + }, + { + "id":"91877c85-160b-43e9-99e7-732b2c924e84", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T19:44:05.019Z", + "completed":"2017-01-04T19:44:05.019Z", + "new_balance":"10058.38", + "value":"-34.78" + } + }, + { + "id":"71d7fa19-69c1-4fdd-8ff9-90c05aa73c9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:31:45.602Z", + "completed":"2017-01-07T02:31:45.602Z", + "new_balance":"9984.45", + "value":"-73.93" + } + }, + { + "id":"7b18a127-5544-4b58-947d-6da40553fedc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T08:19:00.023Z", + "completed":"2017-01-09T08:19:00.023Z", + "new_balance":"9980.86", + "value":"-3.59" + } + }, + { + "id":"87e0c3cc-87c7-4313-ab9a-3235ae29afe3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T09:27:05.002Z", + "completed":"2017-01-10T09:27:05.002Z", + "new_balance":"9953.41", + "value":"-27.45" + } + }, + { + "id":"632e3eb7-1593-414a-a878-5399c6136721", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T14:03:21.015Z", + "completed":"2017-01-12T14:03:21.015Z", + "new_balance":"9922.12", + "value":"-31.29" + } + }, + { + "id":"be0a47c8-1183-4fd5-a313-e52addcc8e07", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T03:59:10.156Z", + "completed":"2017-01-15T03:59:10.156Z", + "new_balance":"9907.30", + "value":"-14.82" + } + }, + { + "id":"2306d749-293e-4b05-a6b3-92e70f8173d4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:14:37.637Z", + "completed":"2017-01-15T20:14:37.637Z", + "new_balance":"9900.14", + "value":"-7.16" + } + }, + { + "id":"72a02caa-b988-4740-ae90-e4911fb410bb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T18:21:32.278Z", + "completed":"2017-01-17T18:21:32.278Z", + "new_balance":"9877.89", + "value":"-22.25" + } + }, + { + "id":"5da1e993-b545-463d-92c9-173cdea71cdb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T00:25:15.077Z", + "completed":"2017-01-19T00:25:15.077Z", + "new_balance":"9688.62", + "value":"-189.27" + } + }, + { + "id":"016c8185-90ef-4c39-b2a1-20e13e0b4a7a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T15:45:23.503Z", + "completed":"2017-01-20T15:45:23.503Z", + "new_balance":"9681.91", + "value":"-6.71" + } + }, + { + "id":"11b280ea-b28f-44e8-872e-4ff73d0d269b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T06:52:39.405Z", + "completed":"2017-01-22T06:52:39.405Z", + "new_balance":"9672.21", + "value":"-9.70" + } + }, + { + "id":"2b7d55f3-0c92-48ab-85d5-677988562d96", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T16:56:14.111Z", + "completed":"2017-01-22T16:56:14.111Z", + "new_balance":"9626.97", + "value":"-45.24" + } + }, + { + "id":"c5b02140-6b38-4ea2-a565-5a023d799b8c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T01:19:31.427Z", + "completed":"2017-01-24T01:19:31.427Z", + "new_balance":"9594.69", + "value":"-32.28" + } + }, + { + "id":"ad06f839-8cc6-4c23-a793-efe3f8dd4c06", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T03:30:34.540Z", + "completed":"2017-01-25T03:30:34.540Z", + "new_balance":"9587.98", + "value":"-6.71" + } + }, + { + "id":"4022959e-0659-47cf-af1e-9c7252755ee8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T14:18:07.596Z", + "completed":"2017-01-25T14:18:07.596Z", + "new_balance":"9545.46", + "value":"-42.52" + } + }, + { + "id":"fc77bf53-1ac1-4e17-95fc-35dd51cd0fb0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T14:23:09.517Z", + "completed":"2017-01-26T14:23:09.517Z", + "new_balance":"9481.89", + "value":"-63.57" + } + }, + { + "id":"0d967ffe-146c-4a8c-bddc-78ffeb53f574", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T09:20:59.287Z", + "completed":"2017-02-01T09:20:59.287Z", + "new_balance":"11162.30", + "value":"1680.41" + } + }, + { + "id":"21acc50d-727a-43aa-be0f-85a59f5f2f5a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T10:05:36.400Z", + "completed":"2017-02-01T10:05:36.400Z", + "new_balance":"11132.42", + "value":"-29.88" + } + }, + { + "id":"0f34e9e9-ba82-499d-95a6-9ce2545a3c42", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T13:55:53.545Z", + "completed":"2017-02-01T13:55:53.545Z", + "new_balance":"11079.24", + "value":"-53.18" + } + }, + { + "id":"d0ab5d6c-d600-4660-a30d-1d8cf4941e6c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T15:04:32.696Z", + "completed":"2017-02-01T15:04:32.696Z", + "new_balance":"10568.70", + "value":"-510.54" + } + }, + { + "id":"4bedc532-d5cb-44e7-ba67-6c72c3f9d676", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T20:45:46.368Z", + "completed":"2017-02-01T20:45:46.368Z", + "new_balance":"10534.27", + "value":"-34.43" + } + }, + { + "id":"5d753440-409c-405a-be99-7dc06d9a1ca0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T21:30:32.198Z", + "completed":"2017-02-01T21:30:32.198Z", + "new_balance":"10399.79", + "value":"-134.48" + } + }, + { + "id":"b762a05c-8c86-4f9a-befe-dc16bfd6139f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T04:50:18.878Z", + "completed":"2017-02-02T04:50:18.878Z", + "new_balance":"10383.86", + "value":"-15.93" + } + }, + { + "id":"f7aca205-7d70-41f2-a96d-4765921ea5d2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T14:37:33.844Z", + "completed":"2017-02-02T14:37:33.844Z", + "new_balance":"10297.30", + "value":"-86.56" + } + }, + { + "id":"037eeabd-a5c9-4764-b374-b9a779201d6d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T16:09:28.057Z", + "completed":"2017-02-02T16:09:28.057Z", + "new_balance":"10282.66", + "value":"-14.64" + } + }, + { + "id":"0e549b37-9336-4f80-ab81-771344d4f105", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T05:12:59.791Z", + "completed":"2017-02-03T05:12:59.791Z", + "new_balance":"10256.86", + "value":"-25.80" + } + }, + { + "id":"cc3d662e-c97d-4592-883a-5f611ca2d294", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T14:49:25.466Z", + "completed":"2017-02-03T14:49:25.466Z", + "new_balance":"10228.85", + "value":"-28.01" + } + }, + { + "id":"a150c9d2-7e05-4683-86b4-21c42be755fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T18:20:49.737Z", + "completed":"2017-02-03T18:20:49.737Z", + "new_balance":"10205.48", + "value":"-23.37" + } + }, + { + "id":"abc20903-fa0e-4871-a281-743eabc33253", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T21:34:57.815Z", + "completed":"2017-02-06T21:34:57.815Z", + "new_balance":"10131.55", + "value":"-73.93" + } + }, + { + "id":"99c715be-9a6a-4f1c-8812-e7b0dfc68695", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T14:17:10.598Z", + "completed":"2017-02-08T14:17:10.598Z", + "new_balance":"10103.70", + "value":"-27.85" + } + }, + { + "id":"f0e64347-bb65-406f-9d0d-83b46eb80677", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T14:23:30.348Z", + "completed":"2017-02-08T14:23:30.348Z", + "new_balance":"10082.60", + "value":"-21.10" + } + }, + { + "id":"cc753bc0-c792-41d0-83e1-92c4f59dc236", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T16:52:47.553Z", + "completed":"2017-02-08T16:52:47.553Z", + "new_balance":"10078.51", + "value":"-4.09" + } + }, + { + "id":"350b42c0-396d-4c1b-a82f-318f54cc8e30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T14:27:35.684Z", + "completed":"2017-02-09T14:27:35.684Z", + "new_balance":"10033.34", + "value":"-45.17" + } + }, + { + "id":"711b7c70-7be5-4860-8cae-70ec8dacd732", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T17:47:07.131Z", + "completed":"2017-02-09T17:47:07.131Z", + "new_balance":"9984.64", + "value":"-48.70" + } + }, + { + "id":"4297ab53-aafe-4047-850b-409cec3131bf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T19:43:55.861Z", + "completed":"2017-02-12T19:43:55.861Z", + "new_balance":"9978.87", + "value":"-5.77" + } + }, + { + "id":"e90e6bb7-3f69-4531-b9a8-35f27b7d1145", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T04:45:30.069Z", + "completed":"2017-02-13T04:45:30.069Z", + "new_balance":"10017.88", + "value":"39.01" + } + }, + { + "id":"d63322d9-4149-4087-98a6-1f95a08bdf6b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T06:42:15.762Z", + "completed":"2017-02-13T06:42:15.762Z", + "new_balance":"9974.09", + "value":"-43.79" + } + }, + { + "id":"4b827965-756d-4a29-843c-84bcade5e3c8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T09:10:47.459Z", + "completed":"2017-02-13T09:10:47.459Z", + "new_balance":"9965.57", + "value":"-8.52" + } + }, + { + "id":"44f9d67a-03ce-42ee-806a-2b751364241c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T13:21:09.039Z", + "completed":"2017-02-14T13:21:09.039Z", + "new_balance":"9919.94", + "value":"-45.63" + } + }, + { + "id":"581f0d09-d334-4ebb-a5f9-b9e8087f607f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T21:57:49.615Z", + "completed":"2017-02-15T21:57:49.615Z", + "new_balance":"9894.38", + "value":"-25.56" + } + }, + { + "id":"486ef4a0-f573-40c3-85b7-1e9540c4a6aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T11:17:52.383Z", + "completed":"2017-02-28T11:17:52.383Z", + "new_balance":"9860.85", + "value":"-33.53" + } + }, + { + "id":"32d0f4c4-34a0-41b7-a11f-9c567aa634db", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T04:47:20.154Z", + "completed":"2017-03-01T04:47:20.154Z", + "new_balance":"11541.26", + "value":"1680.41" + } + }, + { + "id":"196c7318-5886-47fc-b075-9c1be6bd23ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T10:27:02.815Z", + "completed":"2017-03-01T10:27:02.815Z", + "new_balance":"11030.72", + "value":"-510.54" + } + }, + { + "id":"6fc1596f-a80a-432d-9c74-7293534ff04d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T12:26:03.817Z", + "completed":"2017-03-01T12:26:03.817Z", + "new_balance":"11000.84", + "value":"-29.88" + } + }, + { + "id":"5c3456e5-81d6-4ebc-997d-2a10f74c86cf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T13:15:43.533Z", + "completed":"2017-03-01T13:15:43.533Z", + "new_balance":"10866.36", + "value":"-134.48" + } + }, + { + "id":"9d8d3393-aa51-4254-b6ba-fcef5662e6ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T19:45:14.389Z", + "completed":"2017-03-01T19:45:14.389Z", + "new_balance":"10831.93", + "value":"-34.43" + } + }, + { + "id":"657f0d62-bcce-47a7-b633-f180c380957d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T20:47:12.438Z", + "completed":"2017-03-01T20:47:12.438Z", + "new_balance":"10778.75", + "value":"-53.18" + } + }, + { + "id":"ec7d65f8-cfa5-454d-8bc9-03d6207a604d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T17:05:08.698Z", + "completed":"2017-03-02T17:05:08.698Z", + "new_balance":"10692.19", + "value":"-86.56" + } + }, + { + "id":"81ab8850-c18b-4a73-a699-feb8d037f68c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T03:46:43.874Z", + "completed":"2017-03-04T03:46:43.874Z", + "new_balance":"10685.72", + "value":"-6.47" + } + }, + { + "id":"e3a70d2b-62e2-491f-8fb9-46ef47282554", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T04:56:46.308Z", + "completed":"2017-03-04T04:56:46.308Z", + "new_balance":"10654.91", + "value":"-30.81" + } + }, + { + "id":"20912f2d-ed88-4bed-953a-25d9ef349b44", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T16:43:35.580Z", + "completed":"2017-03-04T16:43:35.580Z", + "new_balance":"10644.38", + "value":"-10.53" + } + }, + { + "id":"d5d5ba83-7cab-4a06-b592-69ccb40de4b5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T21:03:56.734Z", + "completed":"2017-03-04T21:03:56.734Z", + "new_balance":"10563.17", + "value":"-81.21" + } + }, + { + "id":"f5916d9f-60df-441f-842f-54df95516632", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T04:29:50.010Z", + "completed":"2017-03-05T04:29:50.010Z", + "new_balance":"10558.40", + "value":"-4.77" + } + }, + { + "id":"eb830f5f-f42c-4f4f-8709-cd11f6c3c7db", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T06:48:18.799Z", + "completed":"2017-03-05T06:48:18.799Z", + "new_balance":"10517.17", + "value":"-41.23" + } + }, + { + "id":"7b032455-f1ec-46f4-a4ca-b66e1646749c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T12:21:09.774Z", + "completed":"2017-03-06T12:21:09.774Z", + "new_balance":"10435.96", + "value":"-81.21" + } + }, + { + "id":"e74fe302-9062-444a-a28c-dcfb5b497cbf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T14:32:39.154Z", + "completed":"2017-03-06T14:32:39.154Z", + "new_balance":"10352.16", + "value":"-83.80" + } + }, + { + "id":"5a85a901-8635-4fda-84e6-3e2da8151806", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T18:07:53.594Z", + "completed":"2017-03-07T18:07:53.594Z", + "new_balance":"10309.82", + "value":"-42.34" + } + }, + { + "id":"e9ac62a5-4454-4c50-87dc-e2d1a65623fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T01:09:12.882Z", + "completed":"2017-03-08T01:09:12.882Z", + "new_balance":"10226.02", + "value":"-83.80" + } + }, + { + "id":"aa671d29-0489-4212-bfe9-752ffe8fca32", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T16:08:22.279Z", + "completed":"2017-03-09T16:08:22.279Z", + "new_balance":"10222.44", + "value":"-3.58" + } + }, + { + "id":"dff69a1d-6016-4de4-bf4c-84d258ad1261", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T07:17:18.882Z", + "completed":"2017-03-10T07:17:18.882Z", + "new_balance":"10130.97", + "value":"-91.47" + } + }, + { + "id":"37d84038-724c-435f-828c-2a41c35283fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T02:47:05.343Z", + "completed":"2017-03-11T02:47:05.343Z", + "new_balance":"10123.69", + "value":"-7.28" + } + }, + { + "id":"dd1cb3fb-d19e-4349-951e-e4e64aa33074", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T15:02:16.556Z", + "completed":"2017-03-12T15:02:16.556Z", + "new_balance":"10110.45", + "value":"-13.24" + } + }, + { + "id":"de9ecf70-43ce-49de-b62e-115136819de1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T20:31:57.241Z", + "completed":"2017-03-12T20:31:57.241Z", + "new_balance":"10083.15", + "value":"-27.30" + } + }, + { + "id":"8b362383-b82c-4d84-ad47-b85fdf350c89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T14:46:53.794Z", + "completed":"2017-03-13T14:46:53.794Z", + "new_balance":"10037.14", + "value":"-46.01" + } + }, + { + "id":"c17a68ce-a644-40fa-861e-bd836b8d0aa4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T22:22:26.221Z", + "completed":"2017-03-14T22:22:26.221Z", + "new_balance":"10030.15", + "value":"-6.99" + } + }, + { + "id":"6ba53263-4ab1-411d-8bb2-84c03603967b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T04:01:36.558Z", + "completed":"2017-03-16T04:01:36.558Z", + "new_balance":"9948.74", + "value":"-81.41" + } + }, + { + "id":"be7286d7-052a-4154-ae3c-8fa185739f03", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T06:04:43.256Z", + "completed":"2017-03-16T06:04:43.256Z", + "new_balance":"9901.94", + "value":"-46.80" + } + }, + { + "id":"9d1fdd2b-18ce-48be-be69-05ca0932ad3a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T15:23:04.178Z", + "completed":"2017-03-18T15:23:04.178Z", + "new_balance":"9894.95", + "value":"-6.99" + } + }, + { + "id":"f315d9ba-92c6-4faa-8f2f-0e79b8593280", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T12:31:55.897Z", + "completed":"2017-03-19T12:31:55.897Z", + "new_balance":"9843.94", + "value":"-51.01" + } + }, + { + "id":"1a942d19-ed02-43bf-bee2-f8625d1d570b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T13:39:30.927Z", + "completed":"2017-03-19T13:39:30.927Z", + "new_balance":"9810.03", + "value":"-33.91" + } + }, + { + "id":"33b817cb-692d-4161-a16c-0a3d808f6397", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T18:37:19.527Z", + "completed":"2017-03-19T18:37:19.527Z", + "new_balance":"9773.08", + "value":"-36.95" + } + }, + { + "id":"375f2d39-b3c3-4ca6-95f4-ef0a834d8dd7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T02:15:11.119Z", + "completed":"2017-03-20T02:15:11.119Z", + "new_balance":"9699.57", + "value":"-73.51" + } + }, + { + "id":"f9590873-a132-435e-b845-14bf7aced8a7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T07:25:46.797Z", + "completed":"2017-03-20T07:25:46.797Z", + "new_balance":"9640.67", + "value":"-58.90" + } + }, + { + "id":"9caab162-48ce-4643-9a1f-1342da5e2f50", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:02:54.005Z", + "completed":"2017-03-21T07:02:54.005Z", + "new_balance":"9634.79", + "value":"-5.88" + } + }, + { + "id":"5fab4988-6ad4-40ad-98cd-0826c967b85c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T19:36:08.203Z", + "completed":"2017-03-21T19:36:08.203Z", + "new_balance":"9628.32", + "value":"-6.47" + } + }, + { + "id":"f22de046-103e-44c4-b5be-a487bfcb34e0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:15:45.854Z", + "completed":"2017-03-23T04:15:45.854Z", + "new_balance":"9582.81", + "value":"-45.51" + } + }, + { + "id":"3ac2da10-e786-4134-9df8-76c651012cf6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T22:06:13.273Z", + "completed":"2017-03-23T22:06:13.273Z", + "new_balance":"9571.58", + "value":"-11.23" + } + }, + { + "id":"e7014b05-2100-4b3e-abac-836ecc4129e1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T12:17:34.218Z", + "completed":"2017-03-24T12:17:34.218Z", + "new_balance":"9542.72", + "value":"-28.86" + } + }, + { + "id":"ab60740f-cb58-43df-9969-87ef01846ef2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T02:24:07.368Z", + "completed":"2017-03-25T02:24:07.368Z", + "new_balance":"9508.69", + "value":"-34.03" + } + }, + { + "id":"621ce179-a2ca-49ee-842a-651da7c375f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T07:42:08.474Z", + "completed":"2017-03-25T07:42:08.474Z", + "new_balance":"9492.61", + "value":"-16.08" + } + }, + { + "id":"f5e5cf58-4acd-410c-b030-20663a265b4a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T23:10:56.228Z", + "completed":"2017-03-27T23:10:56.228Z", + "new_balance":"9303.34", + "value":"-189.27" + } + }, + { + "id":"d081072c-73cf-4833-9108-1af38d47252f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T01:04:17.792Z", + "completed":"2017-03-28T01:04:17.792Z", + "new_balance":"9276.37", + "value":"-26.97" + } + }, + { + "id":"73ebb699-b02f-4657-992b-d41f13bef6cf", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T00:09:50.800Z", + "completed":"2017-04-01T00:09:50.800Z", + "new_balance":"8765.83", + "value":"-510.54" + } + }, + { + "id":"fb5dd55c-a327-458c-beed-c6d7be33f5a9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T09:42:30.235Z", + "completed":"2017-04-01T09:42:30.235Z", + "new_balance":"8631.35", + "value":"-134.48" + } + }, + { + "id":"aa0024c1-1eae-4c1d-9961-721bb3b8428a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T13:18:57.395Z", + "completed":"2017-04-01T13:18:57.395Z", + "new_balance":"8578.17", + "value":"-53.18" + } + }, + { + "id":"6443a12f-57a6-413d-b256-e1d1ace6d2be", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T17:31:10.106Z", + "completed":"2017-04-01T17:31:10.106Z", + "new_balance":"8548.29", + "value":"-29.88" + } + }, + { + "id":"324f8c1d-1c13-42be-85a8-5b480c9721ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T07:06:34.173Z", + "completed":"2017-04-02T07:06:34.173Z", + "new_balance":"8461.73", + "value":"-86.56" + } + }, + { + "id":"579c9bcc-a629-4a3e-ba84-07243bf91143", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T11:43:20.601Z", + "completed":"2017-04-02T11:43:20.601Z", + "new_balance":"8389.74", + "value":"-71.99" + } + }, + { + "id":"c487145f-2fb1-42f3-9e02-53b9a9e4dbc0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T01:27:15.666Z", + "completed":"2017-04-03T01:27:15.666Z", + "new_balance":"8352.55", + "value":"-37.19" + } + }, + { + "id":"556adcf0-92f7-4f85-936c-4125e5b2336e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T09:52:35.092Z", + "completed":"2017-04-03T09:52:35.092Z", + "new_balance":"8474.75", + "value":"122.20" + } + }, + { + "id":"82794320-eaca-4a0d-989d-4d56d2276c39", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:12:57.118Z", + "completed":"2017-04-03T16:12:57.118Z", + "new_balance":"8547.58", + "value":"72.83" + } + }, + { + "id":"5c548ebc-e22f-43d8-94dc-017f3a1b18f0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:21:02.375Z", + "completed":"2017-04-03T16:21:02.375Z", + "new_balance":"8510.39", + "value":"-37.19" + } + }, + { + "id":"ee811271-adf8-439c-bf76-8b717df2e994", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T19:57:25.600Z", + "completed":"2017-04-03T19:57:25.600Z", + "new_balance":"8475.61", + "value":"-34.78" + } + }, + { + "id":"9af4668d-81f6-424e-a5f7-33ea875ef1f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T08:26:34.365Z", + "completed":"2017-04-04T08:26:34.365Z", + "new_balance":"8401.68", + "value":"-73.93" + } + }, + { + "id":"0d9d4b33-8f16-46e9-bc80-c3ed5fab1793", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T09:44:16.961Z", + "completed":"2017-04-05T09:44:16.961Z", + "new_balance":"8374.23", + "value":"-27.45" + } + }, + { + "id":"9e348bc6-6058-4e4b-a2f7-a24686ab541d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T18:55:11.509Z", + "completed":"2017-04-05T18:55:11.509Z", + "new_balance":"8370.64", + "value":"-3.59" + } + }, + { + "id":"6b51891b-8a62-42bf-8b28-c5f5455bad7c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T12:01:01.125Z", + "completed":"2017-04-07T12:01:01.125Z", + "new_balance":"8355.82", + "value":"-14.82" + } + }, + { + "id":"40637285-9cb7-44e1-9af4-20faa3e1bb68", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T17:52:58.871Z", + "completed":"2017-04-07T17:52:58.871Z", + "new_balance":"8324.53", + "value":"-31.29" + } + }, + { + "id":"8ad03d9b-189a-49c0-8439-99c6053e1f98", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T13:52:15.780Z", + "completed":"2017-04-08T13:52:15.780Z", + "new_balance":"8317.37", + "value":"-7.16" + } + }, + { + "id":"2edfe466-9abf-41a9-a748-7201d4ff92f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T01:07:27.667Z", + "completed":"2017-04-09T01:07:27.667Z", + "new_balance":"8128.10", + "value":"-189.27" + } + }, + { + "id":"c4eca88d-cfca-4479-9322-317f8c099e5f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T12:40:28.113Z", + "completed":"2017-04-09T12:40:28.113Z", + "new_balance":"8105.85", + "value":"-22.25" + } + }, + { + "id":"9d716988-0304-4faf-8a7b-35f9a88981fc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T19:31:46.745Z", + "completed":"2017-04-09T19:31:46.745Z", + "new_balance":"8099.14", + "value":"-6.71" + } + }, + { + "id":"cc5fab90-86fc-4f67-a6d5-936bba63bae6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T09:54:11.431Z", + "completed":"2017-04-10T09:54:11.431Z", + "new_balance":"8053.90", + "value":"-45.24" + } + }, + { + "id":"2cd2b2d1-ab71-4e24-abbc-16f4804550aa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T23:21:01.903Z", + "completed":"2017-04-17T23:21:01.903Z", + "new_balance":"8044.20", + "value":"-9.70" + } + }, + { + "id":"bfa2041d-8126-4191-a5bd-a03fbb259efe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T21:39:31.123Z", + "completed":"2017-04-18T21:39:31.123Z", + "new_balance":"8011.92", + "value":"-32.28" + } + }, + { + "id":"b0ad76ce-f7c7-4689-81e8-6783aa0df313", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T12:12:22.492Z", + "completed":"2017-04-25T12:12:22.492Z", + "new_balance":"7969.40", + "value":"-42.52" + } + }, + { + "id":"83a9b0d1-6207-4f54-a757-bf340f5e93b2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T08:34:51.377Z", + "completed":"2017-04-26T08:34:51.377Z", + "new_balance":"7962.69", + "value":"-6.71" + } + }, + { + "id":"6a63e602-671e-4fd4-807e-0338ac125d76", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T20:15:34.245Z", + "completed":"2017-04-26T20:15:34.245Z", + "new_balance":"7899.12", + "value":"-63.57" + } + }, + { + "id":"3adf3dc7-dae7-40a7-8918-0d8915dbce9d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T04:42:02.805Z", + "completed":"2017-05-02T04:42:02.805Z", + "new_balance":"7869.24", + "value":"-29.88" + } + }, + { + "id":"7ddbb8c5-059d-4ed0-ab1e-d933917106c5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T06:33:21.277Z", + "completed":"2017-05-02T06:33:21.277Z", + "new_balance":"7834.81", + "value":"-34.43" + } + }, + { + "id":"95d4c47e-4459-49ae-a0ad-a8415784f477", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T07:20:52.638Z", + "completed":"2017-05-02T07:20:52.638Z", + "new_balance":"7700.33", + "value":"-134.48" + } + }, + { + "id":"8ef422b8-b0ba-487c-b54a-f4608b638ad7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T09:45:10.364Z", + "completed":"2017-05-02T09:45:10.364Z", + "new_balance":"7647.15", + "value":"-53.18" + } + }, + { + "id":"bd2c13b1-8194-422f-802a-2b4bd76e6559", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T12:19:31.366Z", + "completed":"2017-05-02T12:19:31.366Z", + "new_balance":"7631.22", + "value":"-15.93" + } + }, + { + "id":"6f99af02-c6f5-472d-8cfb-533f54e8d6e1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T12:20:47.074Z", + "completed":"2017-05-02T12:20:47.074Z", + "new_balance":"7544.66", + "value":"-86.56" + } + }, + { + "id":"d07c3cd1-64c2-43a7-bab2-ee9ce0f4b0ee", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T17:52:01.193Z", + "completed":"2017-05-02T17:52:01.193Z", + "new_balance":"9225.07", + "value":"1680.41" + } + }, + { + "id":"dec6030c-e584-4f6e-991d-55138dcfda62", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T18:04:21.580Z", + "completed":"2017-05-02T18:04:21.580Z", + "new_balance":"8714.53", + "value":"-510.54" + } + }, + { + "id":"6b91c208-741f-4efd-8b10-1ad15d2a5961", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:52:35.677Z", + "completed":"2017-05-03T05:52:35.677Z", + "new_balance":"8691.16", + "value":"-23.37" + } + }, + { + "id":"f156f6d8-df0a-41b5-8c74-e48b89fa6451", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T06:40:10.351Z", + "completed":"2017-05-03T06:40:10.351Z", + "new_balance":"8676.52", + "value":"-14.64" + } + }, + { + "id":"50cbe35b-a148-4736-a082-4dd6707393c0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T11:26:03.307Z", + "completed":"2017-05-04T11:26:03.307Z", + "new_balance":"8650.72", + "value":"-25.80" + } + }, + { + "id":"f095f0c0-dfec-4fd9-ad56-42d1fa96fd0c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T23:57:23.352Z", + "completed":"2017-05-04T23:57:23.352Z", + "new_balance":"8622.71", + "value":"-28.01" + } + }, + { + "id":"d54adf5c-7a50-40f1-88da-7080df4999bb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T12:52:35.236Z", + "completed":"2017-05-05T12:52:35.236Z", + "new_balance":"8548.78", + "value":"-73.93" + } + }, + { + "id":"fe9baba8-f525-4607-b088-0c02a52392c3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T09:46:42.247Z", + "completed":"2017-05-07T09:46:42.247Z", + "new_balance":"8544.69", + "value":"-4.09" + } + }, + { + "id":"656b0272-c657-4047-babc-12feaaa8b246", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T18:01:37.061Z", + "completed":"2017-05-07T18:01:37.061Z", + "new_balance":"8516.84", + "value":"-27.85" + } + }, + { + "id":"b66de544-5eaa-49c2-9ca9-217012f6c1fb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T19:21:59.052Z", + "completed":"2017-05-12T19:21:59.052Z", + "new_balance":"8495.74", + "value":"-21.10" + } + }, + { + "id":"e9a8d653-fd19-41f2-b185-5b0827a3faef", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:47:24.704Z", + "completed":"2017-05-12T21:47:24.704Z", + "new_balance":"8447.04", + "value":"-48.70" + } + }, + { + "id":"a3ac7d82-9b7b-4dac-ab1f-7dc6faa2dd8d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T02:32:20.505Z", + "completed":"2017-05-14T02:32:20.505Z", + "new_balance":"8401.87", + "value":"-45.17" + } + }, + { + "id":"2810c0fe-d20f-4912-a7e0-426285a2dd2e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T02:20:33.198Z", + "completed":"2017-05-16T02:20:33.198Z", + "new_balance":"8396.10", + "value":"-5.77" + } + }, + { + "id":"48a649bc-c270-4adb-ad0e-b515eb0bb054", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T03:31:09.261Z", + "completed":"2017-05-18T03:31:09.261Z", + "new_balance":"8387.58", + "value":"-8.52" + } + }, + { + "id":"e9edbd0e-7d2e-4f9c-9648-e9a2d54c14dc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:12:07.489Z", + "completed":"2017-05-20T06:12:07.489Z", + "new_balance":"8426.59", + "value":"39.01" + } + }, + { + "id":"0955f102-ed0d-48e5-b6f3-6b8aff6b7d70", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T09:26:09.990Z", + "completed":"2017-05-21T09:26:09.990Z", + "new_balance":"8382.80", + "value":"-43.79" + } + }, + { + "id":"630acd7b-37e1-4bf4-9a1c-3156ad082f3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T16:33:09.436Z", + "completed":"2017-05-21T16:33:09.436Z", + "new_balance":"8337.17", + "value":"-45.63" + } + }, + { + "id":"3ad7c058-e94e-4551-a35b-dca0f6d98746", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T02:52:22.722Z", + "completed":"2017-05-27T02:52:22.722Z", + "new_balance":"8311.61", + "value":"-25.56" + } + }, + { + "id":"fa2ba94d-4d92-4c28-8d9b-8d17ede5155a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T10:35:47.255Z", + "completed":"2017-05-27T10:35:47.255Z", + "new_balance":"8278.08", + "value":"-33.53" + } + }, + { + "id":"4345d08b-6aad-436d-b867-2ebd10ac6698", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T00:31:38.308Z", + "completed":"2017-06-01T00:31:38.308Z", + "new_balance":"8248.20", + "value":"-29.88" + } + }, + { + "id":"2e128d48-1fbd-4eaf-a6d9-ce0978ac27fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T06:41:12.048Z", + "completed":"2017-06-01T06:41:12.048Z", + "new_balance":"9928.61", + "value":"1680.41" + } + }, + { + "id":"7ffd1919-40df-4e2a-94da-01d1b4dc6439", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T14:59:36.404Z", + "completed":"2017-06-01T14:59:36.404Z", + "new_balance":"9794.13", + "value":"-134.48" + } + }, + { + "id":"31ac6f78-29bd-4b7b-a1d4-c5283a65a7a0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T16:23:54.542Z", + "completed":"2017-06-01T16:23:54.542Z", + "new_balance":"9283.59", + "value":"-510.54" + } + }, + { + "id":"84c58132-8a9e-445f-a754-1bda7b60da91", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T17:37:09.872Z", + "completed":"2017-06-01T17:37:09.872Z", + "new_balance":"9230.41", + "value":"-53.18" + } + }, + { + "id":"fe876a82-19e8-4b8d-bdce-ed23e66e5446", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T21:52:55.885Z", + "completed":"2017-06-01T21:52:55.885Z", + "new_balance":"9195.98", + "value":"-34.43" + } + }, + { + "id":"bbe5bc7b-ad76-48b3-bd51-aa5ad10c0d00", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T08:38:51.435Z", + "completed":"2017-06-04T08:38:51.435Z", + "new_balance":"9064.14", + "value":"-131.84" + } + }, + { + "id":"281649d8-a1ea-4db6-baf6-0e107d02a39a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T09:25:54.713Z", + "completed":"2017-06-04T09:25:54.713Z", + "new_balance":"8977.58", + "value":"-86.56" + } + }, + { + "id":"a87db47a-8ea6-4685-ba13-4dd446d1e212", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T19:10:55.387Z", + "completed":"2017-06-11T19:10:55.387Z", + "new_balance":"8946.77", + "value":"-30.81" + } + }, + { + "id":"b6f304c5-20bb-4b74-9c5c-d91511b7d66f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T13:52:22.820Z", + "completed":"2017-06-12T13:52:22.820Z", + "new_balance":"8936.24", + "value":"-10.53" + } + }, + { + "id":"82129634-a607-493b-a446-85d66138bd28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T04:03:51.930Z", + "completed":"2017-06-13T04:03:51.930Z", + "new_balance":"8855.03", + "value":"-81.21" + } + }, + { + "id":"39745b7b-b746-4b1f-8218-30e56fee9409", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T19:51:27.872Z", + "completed":"2017-06-13T19:51:27.872Z", + "new_balance":"8848.56", + "value":"-6.47" + } + }, + { + "id":"0ab3b314-f24d-4efd-a904-c79b87e490b3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T03:48:53.812Z", + "completed":"2017-06-16T03:48:53.812Z", + "new_balance":"8807.33", + "value":"-41.23" + } + }, + { + "id":"5e9d83cd-739b-467f-8273-2783df5ca64e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T17:46:11.492Z", + "completed":"2017-06-17T17:46:11.492Z", + "new_balance":"8726.12", + "value":"-81.21" + } + }, + { + "id":"a4b3c35b-b593-4dd7-b4ca-6587f5554089", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T21:09:06.113Z", + "completed":"2017-06-17T21:09:06.113Z", + "new_balance":"8721.35", + "value":"-4.77" + } + }, + { + "id":"1cf69195-7444-4da0-8020-083b1a76f24c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T10:30:07.087Z", + "completed":"2017-06-18T10:30:07.087Z", + "new_balance":"8637.55", + "value":"-83.80" + } + }, + { + "id":"1bf46aab-9a26-451a-8d58-4c1c99281232", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T09:45:53.263Z", + "completed":"2017-06-19T09:45:53.263Z", + "new_balance":"8553.75", + "value":"-83.80" + } + }, + { + "id":"b42a0c16-9c54-409c-a985-7d3a420e84a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:22:48.692Z", + "completed":"2017-06-19T12:22:48.692Z", + "new_balance":"8511.41", + "value":"-42.34" + } + }, + { + "id":"cde871fd-867d-412d-8fa2-a91124f81013", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T06:39:32.248Z", + "completed":"2017-06-21T06:39:32.248Z", + "new_balance":"8419.94", + "value":"-91.47" + } + }, + { + "id":"43d65128-578f-4888-a72c-abdd34f5719d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T08:27:23.135Z", + "completed":"2017-06-21T08:27:23.135Z", + "new_balance":"8416.36", + "value":"-3.58" + } + }, + { + "id":"9f9ac56d-623a-4285-aed2-be31ef4f233e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T20:40:30.552Z", + "completed":"2017-06-23T20:40:30.552Z", + "new_balance":"8389.06", + "value":"-27.30" + } + }, + { + "id":"98f38a5e-b01d-49e1-be43-acde3fe31ca1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T21:51:02.192Z", + "completed":"2017-06-23T21:51:02.192Z", + "new_balance":"8381.78", + "value":"-7.28" + } + }, + { + "id":"c9e00be2-090e-4060-9d39-2d483025924d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T04:38:09.189Z", + "completed":"2017-06-24T04:38:09.189Z", + "new_balance":"8368.54", + "value":"-13.24" + } + }, + { + "id":"d0702986-28ea-4c99-98fe-8164480a992b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T16:42:09.766Z", + "completed":"2017-06-24T16:42:09.766Z", + "new_balance":"8322.53", + "value":"-46.01" + } + }, + { + "id":"27ad4e0e-a533-44fa-817d-0c70300ec8c8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T03:01:17.729Z", + "completed":"2017-06-28T03:01:17.729Z", + "new_balance":"8241.12", + "value":"-81.41" + } + }, + { + "id":"fa2f4fea-5a5e-4594-80f8-84fb0fa49840", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T13:50:26.890Z", + "completed":"2017-06-28T13:50:26.890Z", + "new_balance":"8234.13", + "value":"-6.99" + } + }, + { + "id":"d99d9cc0-01ad-4757-bb23-9dc65e082975", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T20:38:48.256Z", + "completed":"2017-06-28T20:38:48.256Z", + "new_balance":"8227.14", + "value":"-6.99" + } + }, + { + "id":"1dc2a4bf-658c-439f-aec2-5fc470bc2132", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T23:39:44.657Z", + "completed":"2017-06-28T23:39:44.657Z", + "new_balance":"8180.34", + "value":"-46.80" + } + }, + { + "id":"dd2469ec-732b-443f-8725-d8be10a6d4ba", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T01:08:27.245Z", + "completed":"2017-06-29T01:08:27.245Z", + "new_balance":"8121.44", + "value":"-58.90" + } + }, + { + "id":"4bb632fb-aa26-416c-8ce8-8331623d79b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T02:55:57.938Z", + "completed":"2017-06-29T02:55:57.938Z", + "new_balance":"8047.93", + "value":"-73.51" + } + }, + { + "id":"4d26ead8-3ca5-409f-9789-d0ebfdd52111", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T06:25:46.301Z", + "completed":"2017-06-29T06:25:46.301Z", + "new_balance":"8041.46", + "value":"-6.47" + } + }, + { + "id":"957ce7f5-9fae-4f1b-888d-9f4d61e04529", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T10:57:38.837Z", + "completed":"2017-06-29T10:57:38.837Z", + "new_balance":"7990.45", + "value":"-51.01" + } + }, + { + "id":"1157d046-286c-4f5b-89f5-dfc9a7af4efb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T19:18:53.460Z", + "completed":"2017-06-29T19:18:53.460Z", + "new_balance":"7953.50", + "value":"-36.95" + } + }, + { + "id":"58f1ea67-1c27-4318-8fe4-f432108ee498", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T23:38:33.965Z", + "completed":"2017-06-29T23:38:33.965Z", + "new_balance":"7919.59", + "value":"-33.91" + } + }, + { + "id":"418d7352-333b-4ee7-b7ae-0697017af1b8", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T06:22:35.096Z", + "completed":"2017-06-30T06:22:35.096Z", + "new_balance":"7874.08", + "value":"-45.51" + } + }, + { + "id":"d2c9cbfb-4df2-4c3a-9698-a4746c1d7ce7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T15:56:48.756Z", + "completed":"2017-06-30T15:56:48.756Z", + "new_balance":"7845.22", + "value":"-28.86" + } + }, + { + "id":"00d3d8c9-ea49-44bb-9d19-789d31cbc817", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T18:06:47.866Z", + "completed":"2017-06-30T18:06:47.866Z", + "new_balance":"7833.99", + "value":"-11.23" + } + }, + { + "id":"c906040c-0b0d-4609-83ff-55c999205950", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T22:49:46.626Z", + "completed":"2017-06-30T22:49:46.626Z", + "new_balance":"7828.11", + "value":"-5.88" + } + }, + { + "id":"3d12fad8-35dc-4533-9043-74a5e145860d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T00:32:32.904Z", + "completed":"2017-07-01T00:32:32.904Z", + "new_balance":"7693.63", + "value":"-134.48" + } + }, + { + "id":"97ceab90-ec58-449b-ae47-68a1acb1a10a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T02:04:27.131Z", + "completed":"2017-07-01T02:04:27.131Z", + "new_balance":"7504.36", + "value":"-189.27" + } + }, + { + "id":"1e221b03-acbf-4173-b484-f5e49c904d73", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T05:22:39.590Z", + "completed":"2017-07-01T05:22:39.590Z", + "new_balance":"6993.82", + "value":"-510.54" + } + }, + { + "id":"a24f0c53-dd06-45fb-86de-132e35ce6337", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T10:25:17.271Z", + "completed":"2017-07-01T10:25:17.271Z", + "new_balance":"6959.79", + "value":"-34.03" + } + }, + { + "id":"7652a61e-ecc3-4810-aa06-2cf57d9cb1ad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:31:21.529Z", + "completed":"2017-07-01T15:31:21.529Z", + "new_balance":"6925.36", + "value":"-34.43" + } + }, + { + "id":"f52fab65-f8ce-4bc9-aca3-124ebe785022", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:36:48.624Z", + "completed":"2017-07-01T17:36:48.624Z", + "new_balance":"6898.39", + "value":"-26.97" + } + }, + { + "id":"4b2c8868-98ea-4726-a69b-023a6bbbac6a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T18:51:34.898Z", + "completed":"2017-07-01T18:51:34.898Z", + "new_balance":"6882.31", + "value":"-16.08" + } + }, + { + "id":"16a5a035-8b39-4b50-a269-9e26334187d5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T21:25:34.303Z", + "completed":"2017-07-01T21:25:34.303Z", + "new_balance":"6829.13", + "value":"-53.18" + } + }, + { + "id":"3eb4b0dd-fbaf-496d-95f5-24407f3e9326", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T21:25:41.524Z", + "completed":"2017-07-01T21:25:41.524Z", + "new_balance":"6794.70", + "value":"-34.43" + } + }, + { + "id":"e0f26bf1-eb23-442d-8b71-0eef39e92bcd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T22:08:38.809Z", + "completed":"2017-07-01T22:08:38.809Z", + "new_balance":"6764.82", + "value":"-29.88" + } + }, + { + "id":"cea54bd9-88ea-4288-9100-9b8f5f0cd46f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T04:04:46.356Z", + "completed":"2017-07-02T04:04:46.356Z", + "new_balance":"6678.26", + "value":"-86.56" + } + }, + { + "id":"7976e1bf-95cb-4928-a5a0-1ac1786d6973", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T03:24:44.432Z", + "completed":"2017-07-03T03:24:44.432Z", + "new_balance":"6582.83", + "value":"-95.43" + } + }, + { + "id":"cbaee7b7-5540-4a1b-8cce-fb23844cbc03", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T23:09:25.559Z", + "completed":"2017-07-04T23:09:25.559Z", + "new_balance":"6567.05", + "value":"-15.78" + } + }, + { + "id":"a43abbc5-2976-4969-b0ce-a714b5b21f8b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T06:26:21.943Z", + "completed":"2017-07-05T06:26:21.943Z", + "new_balance":"6494.96", + "value":"-72.09" + } + }, + { + "id":"056fb48e-c36c-4fdb-a63a-a87a67b6015e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T13:05:02.618Z", + "completed":"2017-07-05T13:05:02.618Z", + "new_balance":"6421.03", + "value":"-73.93" + } + }, + { + "id":"2c090975-ad62-42c2-8e1d-acf971c9891e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T15:07:50.024Z", + "completed":"2017-07-06T15:07:50.024Z", + "new_balance":"6417.44", + "value":"-3.59" + } + }, + { + "id":"be343328-3c2b-4a9d-8814-5cfa7c205089", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T03:20:33.765Z", + "completed":"2017-07-11T03:20:33.765Z", + "new_balance":"6389.99", + "value":"-27.45" + } + }, + { + "id":"7ac60374-0644-4e46-b3c0-a4dcbc3f12f3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:27:58.130Z", + "completed":"2017-07-12T10:27:58.130Z", + "new_balance":"6358.70", + "value":"-31.29" + } + }, + { + "id":"d24d1bd5-455b-4193-af3b-2d0d038668cd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T23:57:41.927Z", + "completed":"2017-07-14T23:57:41.927Z", + "new_balance":"6343.88", + "value":"-14.82" + } + }, + { + "id":"942ac1e0-48d7-47b8-ab6a-ff0f12192fbb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T16:52:25.010Z", + "completed":"2017-07-16T16:52:25.010Z", + "new_balance":"6336.72", + "value":"-7.16" + } + }, + { + "id":"5ef8626a-c8b8-44dc-89ef-3e82fff6b782", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T01:33:21.315Z", + "completed":"2017-07-18T01:33:21.315Z", + "new_balance":"6314.47", + "value":"-22.25" + } + }, + { + "id":"a6cb80f7-59b6-440b-baa4-0e548293dd1a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T04:56:45.008Z", + "completed":"2017-07-20T04:56:45.008Z", + "new_balance":"6307.76", + "value":"-6.71" + } + }, + { + "id":"502f6a12-0866-490d-b766-f58f55da3477", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T08:36:45.784Z", + "completed":"2017-07-20T08:36:45.784Z", + "new_balance":"6118.49", + "value":"-189.27" + } + }, + { + "id":"16d6eeed-9767-4b43-9155-844f618b2769", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T07:26:21.139Z", + "completed":"2017-07-24T07:26:21.139Z", + "new_balance":"6108.79", + "value":"-9.70" + } + }, + { + "id":"d3ee3a4f-fa67-4937-b918-66b33e011292", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T14:45:14.990Z", + "completed":"2017-07-24T14:45:14.990Z", + "new_balance":"6063.55", + "value":"-45.24" + } + }, + { + "id":"406b0038-f874-4114-8fdc-1006a14af8b7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T21:04:42.728Z", + "completed":"2017-07-25T21:04:42.728Z", + "new_balance":"6021.03", + "value":"-42.52" + } + }, + { + "id":"0562f247-9b4a-4f07-a070-cb315a568370", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T23:51:15.542Z", + "completed":"2017-07-25T23:51:15.542Z", + "new_balance":"5988.75", + "value":"-32.28" + } + }, + { + "id":"fc303b4c-81de-4f9d-8fc5-aa1f6621156c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T12:58:25.985Z", + "completed":"2017-07-26T12:58:25.985Z", + "new_balance":"5925.18", + "value":"-63.57" + } + }, + { + "id":"ce67b540-f583-4141-8ce3-fd090c379fad", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T09:53:42.406Z", + "completed":"2017-07-27T09:53:42.406Z", + "new_balance":"5918.47", + "value":"-6.71" + } + }, + { + "id":"3b3f2907-e84b-4b28-82b9-708e906080be", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T01:19:10.220Z", + "completed":"2017-08-01T01:19:10.220Z", + "new_balance":"5884.04", + "value":"-34.43" + } + }, + { + "id":"33058204-992b-463c-88df-9d4a876880fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T06:10:19.610Z", + "completed":"2017-08-01T06:10:19.610Z", + "new_balance":"5373.50", + "value":"-510.54" + } + }, + { + "id":"b21cdf29-c89d-4c57-82bf-559f0ec6b19a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T06:39:58.932Z", + "completed":"2017-08-01T06:39:58.932Z", + "new_balance":"7053.91", + "value":"1680.41" + } + }, + { + "id":"a27b516c-269f-4822-b739-0664aea1135b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T13:56:46.488Z", + "completed":"2017-08-01T13:56:46.488Z", + "new_balance":"7024.03", + "value":"-29.88" + } + }, + { + "id":"a46c5c51-1dda-4488-b68f-ec67d5526063", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T14:29:02.773Z", + "completed":"2017-08-01T14:29:02.773Z", + "new_balance":"6970.85", + "value":"-53.18" + } + }, + { + "id":"1d073e4b-885b-4a44-a2a6-7a9bc3b06e2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T17:11:26.144Z", + "completed":"2017-08-01T17:11:26.144Z", + "new_balance":"6836.37", + "value":"-134.48" + } + }, + { + "id":"a5d27b7b-9618-468a-aca3-578fe59c0792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T12:16:47.071Z", + "completed":"2017-08-02T12:16:47.071Z", + "new_balance":"6749.81", + "value":"-86.56" + } + }, + { + "id":"1df40c4e-22b6-418b-b19f-b216a6c92658", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T01:52:00.414Z", + "completed":"2017-08-03T01:52:00.414Z", + "new_balance":"6746.22", + "value":"-3.59" + } + }, + { + "id":"1a68d9bd-b8f3-42fd-bd22-66833e216cbe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T21:28:15.054Z", + "completed":"2017-08-04T21:28:15.054Z", + "new_balance":"6711.67", + "value":"-34.55" + } + }, + { + "id":"30baa440-0a10-4809-a8ac-a98466144e8b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T02:15:51.645Z", + "completed":"2017-08-07T02:15:51.645Z", + "new_balance":"6688.30", + "value":"-23.37" + } + }, + { + "id":"4fee73b7-2361-4e1b-aefb-35794a98e1d0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T02:03:47.709Z", + "completed":"2017-08-09T02:03:47.709Z", + "new_balance":"6660.29", + "value":"-28.01" + } + }, + { + "id":"5609d87a-4778-4b84-8dd9-06a6a7b5c47e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T10:54:56.997Z", + "completed":"2017-08-09T10:54:56.997Z", + "new_balance":"6634.49", + "value":"-25.80" + } + }, + { + "id":"f2840063-da98-4e25-82fa-fbe6046e2943", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T11:33:34.659Z", + "completed":"2017-08-10T11:33:34.659Z", + "new_balance":"6560.56", + "value":"-73.93" + } + }, + { + "id":"374d16c5-5d00-49ba-a3a5-2a0e26a737f6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T01:20:48.955Z", + "completed":"2017-08-14T01:20:48.955Z", + "new_balance":"6556.47", + "value":"-4.09" + } + }, + { + "id":"db4d1f36-4d36-492f-946e-26f0b237ae07", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T10:21:24.461Z", + "completed":"2017-08-15T10:21:24.461Z", + "new_balance":"6520.54", + "value":"-35.93" + } + }, + { + "id":"744e8840-adf0-4a16-bfdb-e00ffc3c3459", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T17:48:37.640Z", + "completed":"2017-08-15T17:48:37.640Z", + "new_balance":"6492.69", + "value":"-27.85" + } + }, + { + "id":"7ac833e1-7149-4d3e-8702-521ed6d0a83a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T23:16:20.542Z", + "completed":"2017-08-16T23:16:20.542Z", + "new_balance":"6443.99", + "value":"-48.70" + } + }, + { + "id":"23177fa8-773a-4573-95f3-f4096520a9bc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T10:19:47.599Z", + "completed":"2017-08-17T10:19:47.599Z", + "new_balance":"6398.82", + "value":"-45.17" + } + }, + { + "id":"86303588-71fe-4f45-bd25-518609bfe1e3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T12:41:48.275Z", + "completed":"2017-08-20T12:41:48.275Z", + "new_balance":"6393.05", + "value":"-5.77" + } + }, + { + "id":"76f198c9-0305-4cf2-9871-ddf1f4afb9fe", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T23:52:37.997Z", + "completed":"2017-08-20T23:52:37.997Z", + "new_balance":"6384.53", + "value":"-8.52" + } + }, + { + "id":"f5f53b6e-00b0-409a-9163-6c3eed9a9f28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T18:25:16.340Z", + "completed":"2017-08-22T18:25:16.340Z", + "new_balance":"6423.54", + "value":"39.01" + } + }, + { + "id":"74327752-925e-4ebf-a61a-ce142729f244", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T00:00:39.912Z", + "completed":"2017-08-23T00:00:39.912Z", + "new_balance":"6379.75", + "value":"-43.79" + } + }, + { + "id":"b1deb462-eb4d-4cb6-929b-8151f3e73efc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T01:50:18.879Z", + "completed":"2017-08-23T01:50:18.879Z", + "new_balance":"6334.12", + "value":"-45.63" + } + }, + { + "id":"35d98fbb-c260-4014-bf07-b3632b02da30", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T11:05:21.125Z", + "completed":"2017-08-28T11:05:21.125Z", + "new_balance":"6308.56", + "value":"-25.56" + } + }, + { + "id":"f2857f83-d681-485c-b755-c2e0c8a80a99", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T12:23:51.991Z", + "completed":"2017-08-28T12:23:51.991Z", + "new_balance":"6275.03", + "value":"-33.53" + } + }, + { + "id":"52969575-c1aa-4007-894e-d4591b93711d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T02:32:58.002Z", + "completed":"2017-09-01T02:32:58.002Z", + "new_balance":"6221.85", + "value":"-53.18" + } + }, + { + "id":"babfd1fb-e60e-4ba8-b771-a9540d97827e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T02:57:05.411Z", + "completed":"2017-09-01T02:57:05.411Z", + "new_balance":"6191.97", + "value":"-29.88" + } + }, + { + "id":"3724bdd1-1eff-408b-8fba-2f3d496af54a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T06:11:43.815Z", + "completed":"2017-09-01T06:11:43.815Z", + "new_balance":"6057.49", + "value":"-134.48" + } + }, + { + "id":"ca27ba7c-bbd5-4523-8401-d71b530c813f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T07:04:09.442Z", + "completed":"2017-09-01T07:04:09.442Z", + "new_balance":"7737.90", + "value":"1680.41" + } + }, + { + "id":"6ef131dd-2dd4-4943-9926-194efb42fae5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T13:13:20.851Z", + "completed":"2017-09-01T13:13:20.851Z", + "new_balance":"7703.47", + "value":"-34.43" + } + }, + { + "id":"8b986f8f-2e7e-4406-b028-370f3326ae9e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T23:44:15.624Z", + "completed":"2017-09-01T23:44:15.624Z", + "new_balance":"7192.93", + "value":"-510.54" + } + }, + { + "id":"6c46bf2a-5e9b-4232-b3a9-f984953b3e89", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T13:21:15.165Z", + "completed":"2017-09-02T13:21:15.165Z", + "new_balance":"7106.37", + "value":"-86.56" + } + }, + { + "id":"bb22f849-3bf4-496d-9ea2-7c0e1565e6b9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T03:13:50.850Z", + "completed":"2017-09-04T03:13:50.850Z", + "new_balance":"7025.16", + "value":"-81.21" + } + }, + { + "id":"eef92550-0c7f-45dd-ac17-185ecba3dbce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T04:37:14.893Z", + "completed":"2017-09-04T04:37:14.893Z", + "new_balance":"7018.69", + "value":"-6.47" + } + }, + { + "id":"f5f1b8df-2a7c-4ea6-bf67-d5af2ce0e73a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T07:02:53.514Z", + "completed":"2017-09-04T07:02:53.514Z", + "new_balance":"7008.16", + "value":"-10.53" + } + }, + { + "id":"7564bea7-a228-4dbd-92e1-477d675ca792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T18:54:18.632Z", + "completed":"2017-09-04T18:54:18.632Z", + "new_balance":"6977.35", + "value":"-30.81" + } + }, + { + "id":"e3f97ab4-7b65-4096-8c35-0951713eb217", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T12:45:39.861Z", + "completed":"2017-09-05T12:45:39.861Z", + "new_balance":"6972.58", + "value":"-4.77" + } + }, + { + "id":"c0c7f3e2-0910-42a6-83d4-946255ddfd78", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T12:50:46.794Z", + "completed":"2017-09-05T12:50:46.794Z", + "new_balance":"6931.35", + "value":"-41.23" + } + }, + { + "id":"f4b92bf3-d12d-4cd0-a084-eb8b938d40dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T17:33:04.515Z", + "completed":"2017-09-06T17:33:04.515Z", + "new_balance":"6847.55", + "value":"-83.80" + } + }, + { + "id":"f8ffd157-eb13-4388-a47f-21565745245b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T22:25:51.786Z", + "completed":"2017-09-06T22:25:51.786Z", + "new_balance":"6766.34", + "value":"-81.21" + } + }, + { + "id":"2cd91e11-da37-493b-abb3-2e1290e47f0b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T01:13:49.034Z", + "completed":"2017-09-08T01:13:49.034Z", + "new_balance":"6724.00", + "value":"-42.34" + } + }, + { + "id":"8c286202-367f-4cbd-9e7f-d1fdabd8d1fa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T14:08:42.436Z", + "completed":"2017-09-08T14:08:42.436Z", + "new_balance":"6640.20", + "value":"-83.80" + } + }, + { + "id":"83e7ce8d-c634-41e7-9598-9c293c350a0c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T08:59:29.672Z", + "completed":"2017-09-10T08:59:29.672Z", + "new_balance":"6548.73", + "value":"-91.47" + } + }, + { + "id":"d8d939a8-9f2e-45c7-bfdd-de40e76e2e38", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T19:39:45.936Z", + "completed":"2017-09-10T19:39:45.936Z", + "new_balance":"6545.15", + "value":"-3.58" + } + }, + { + "id":"57a6c83f-6023-43ca-98bc-e56fe8dda323", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:19:33.409Z", + "completed":"2017-09-11T00:19:33.409Z", + "new_balance":"6537.87", + "value":"-7.28" + } + }, + { + "id":"0b15efb5-1a5b-43eb-a859-6a3c9399bd9b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:32:20.850Z", + "completed":"2017-09-12T01:32:20.850Z", + "new_balance":"6510.57", + "value":"-27.30" + } + }, + { + "id":"3a414cfd-b761-48f7-923d-5e890e049f48", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T15:18:13.611Z", + "completed":"2017-09-12T15:18:13.611Z", + "new_balance":"6497.33", + "value":"-13.24" + } + }, + { + "id":"782af4a3-c29d-4122-b3ca-587e11920bff", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T19:59:38.350Z", + "completed":"2017-09-13T19:59:38.350Z", + "new_balance":"6451.32", + "value":"-46.01" + } + }, + { + "id":"ae71c3b5-d1ac-4469-9c57-f0a364ba1e64", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T07:31:55.768Z", + "completed":"2017-09-16T07:31:55.768Z", + "new_balance":"6444.33", + "value":"-6.99" + } + }, + { + "id":"341da681-6f6c-43b0-8017-d541300d191f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T03:59:32.742Z", + "completed":"2017-09-17T03:59:32.742Z", + "new_balance":"6397.53", + "value":"-46.80" + } + }, + { + "id":"f4bf116f-3588-4056-8eb6-4636482a7773", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T05:18:48.594Z", + "completed":"2017-09-17T05:18:48.594Z", + "new_balance":"6316.12", + "value":"-81.41" + } + }, + { + "id":"6613e21b-0815-4c9a-9130-fc4085a66ae2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T18:42:08.933Z", + "completed":"2017-09-18T18:42:08.933Z", + "new_balance":"6309.13", + "value":"-6.99" + } + }, + { + "id":"e6ffdc50-1da8-451c-b572-0af6c594611a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T08:41:23.411Z", + "completed":"2017-09-19T08:41:23.411Z", + "new_balance":"6275.22", + "value":"-33.91" + } + }, + { + "id":"d27aef4c-48e9-4d97-b991-53a845817ec0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T16:45:57.032Z", + "completed":"2017-09-19T16:45:57.032Z", + "new_balance":"6238.27", + "value":"-36.95" + } + }, + { + "id":"cac0f548-ce9e-484e-b439-4162ad4b1326", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T21:50:35.023Z", + "completed":"2017-09-19T21:50:35.023Z", + "new_balance":"6187.26", + "value":"-51.01" + } + }, + { + "id":"320a8714-26f2-4e27-b266-18460b3e7774", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T12:33:26.244Z", + "completed":"2017-09-20T12:33:26.244Z", + "new_balance":"6128.36", + "value":"-58.90" + } + }, + { + "id":"4e484799-bc15-479a-84f3-fdccc0bdf941", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T18:35:05.765Z", + "completed":"2017-09-20T18:35:05.765Z", + "new_balance":"6054.85", + "value":"-73.51" + } + }, + { + "id":"552bddb6-6c8b-4a9a-890d-c4788ef40555", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T00:16:41.850Z", + "completed":"2017-09-21T00:16:41.850Z", + "new_balance":"6048.97", + "value":"-5.88" + } + }, + { + "id":"4bdb3101-c18d-4d04-9fa6-c07cffaa519e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T22:54:55.653Z", + "completed":"2017-09-21T22:54:55.653Z", + "new_balance":"6042.50", + "value":"-6.47" + } + }, + { + "id":"8c453786-3009-4383-8888-e6952a15d351", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T20:02:32.496Z", + "completed":"2017-09-23T20:02:32.496Z", + "new_balance":"5996.99", + "value":"-45.51" + } + }, + { + "id":"a30dc6a8-85ab-47d4-894c-d62ef73088ce", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T20:17:34.436Z", + "completed":"2017-09-23T20:17:34.436Z", + "new_balance":"5985.76", + "value":"-11.23" + } + }, + { + "id":"f611b729-6a51-4d68-8e66-a3b83d529a4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T18:10:35.258Z", + "completed":"2017-09-24T18:10:35.258Z", + "new_balance":"5956.90", + "value":"-28.86" + } + }, + { + "id":"bfb55756-c40a-4895-b74a-48730db52d5b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T11:05:52.075Z", + "completed":"2017-09-25T11:05:52.075Z", + "new_balance":"5940.82", + "value":"-16.08" + } + }, + { + "id":"0b39b0b6-3838-48b7-8be8-56560ac90f20", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T15:34:30.800Z", + "completed":"2017-09-25T15:34:30.800Z", + "new_balance":"5906.79", + "value":"-34.03" + } + }, + { + "id":"2ebdb17d-0ee0-407b-a133-2d8d711284e9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T09:07:48.163Z", + "completed":"2017-09-27T09:07:48.163Z", + "new_balance":"5717.52", + "value":"-189.27" + } + }, + { + "id":"8ace5d94-3e28-4acd-9938-dc00ac318e2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T00:01:06.962Z", + "completed":"2017-09-29T00:01:06.962Z", + "new_balance":"5690.55", + "value":"-26.97" + } + }, + { + "id":"20c9f8c6-5b10-4719-8b9c-3b9632d29e11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T16:05:49.630Z", + "completed":"2017-10-01T16:05:49.630Z", + "new_balance":"5660.67", + "value":"-29.88" + } + }, + { + "id":"56f6d09c-0eaa-450c-8866-1f7871af52f4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T16:18:41.338Z", + "completed":"2017-10-01T16:18:41.338Z", + "new_balance":"5526.19", + "value":"-134.48" + } + }, + { + "id":"23247d3b-fcc6-42e8-86b5-38c0b9498518", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T18:46:46.856Z", + "completed":"2017-10-01T18:46:46.856Z", + "new_balance":"5015.65", + "value":"-510.54" + } + }, + { + "id":"a02f012d-fe43-4676-ace6-096709694069", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T18:52:45.396Z", + "completed":"2017-10-01T18:52:45.396Z", + "new_balance":"4962.47", + "value":"-53.18" + } + }, + { + "id":"a93856c8-f4fd-4bda-9358-076667c8c966", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T00:57:16.027Z", + "completed":"2017-10-02T00:57:16.027Z", + "new_balance":"4890.48", + "value":"-71.99" + } + }, + { + "id":"e8b85e7c-2d7e-4e45-b3ae-535813d1d139", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T17:30:59.395Z", + "completed":"2017-10-02T17:30:59.395Z", + "new_balance":"4803.92", + "value":"-86.56" + } + }, + { + "id":"fd6f7453-0dbc-44be-a39a-fc0599c4ae28", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:34:04.464Z", + "completed":"2017-10-03T05:34:04.464Z", + "new_balance":"4614.65", + "value":"-189.27" + } + }, + { + "id":"2e25b5ee-fc7d-45a2-ab6b-c1503894abb6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T06:19:27.047Z", + "completed":"2017-10-03T06:19:27.047Z", + "new_balance":"3882.80", + "value":"-731.85" + } + }, + { + "id":"4d6777ae-c143-4555-ac06-e12a76c11bdd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:19:47.659Z", + "completed":"2017-10-03T08:19:47.659Z", + "new_balance":"3719.32", + "value":"-163.48" + } + }, + { + "id":"5ab916f5-02d6-48e3-aef9-ef805ee972e5", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T13:23:48.888Z", + "completed":"2017-10-03T13:23:48.888Z", + "new_balance":"3682.13", + "value":"-37.19" + } + }, + { + "id":"e5e31517-8c21-4a00-87ea-26015de4823c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T16:50:46.961Z", + "completed":"2017-10-03T16:50:46.961Z", + "new_balance":"3647.35", + "value":"-34.78" + } + }, + { + "id":"6e2b729b-a5c5-438b-b37a-1b639a43a152", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T11:25:34.537Z", + "completed":"2017-10-04T11:25:34.537Z", + "new_balance":"3573.42", + "value":"-73.93" + } + }, + { + "id":"6f9d942a-f5d7-474a-b7a6-42edaf0f0b05", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T01:40:29.188Z", + "completed":"2017-10-05T01:40:29.188Z", + "new_balance":"3569.83", + "value":"-3.59" + } + }, + { + "id":"86aadda8-0ad2-4e2e-b97a-7a0bf842d8ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T15:43:34.079Z", + "completed":"2017-10-05T15:43:34.079Z", + "new_balance":"3542.38", + "value":"-27.45" + } + }, + { + "id":"a6c44da6-bf99-4d43-aca6-e195c992839d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T00:10:35.717Z", + "completed":"2017-10-07T00:10:35.717Z", + "new_balance":"3511.09", + "value":"-31.29" + } + }, + { + "id":"1c872a39-d70a-449c-a9e3-8e938ec81792", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T06:47:59.879Z", + "completed":"2017-10-07T06:47:59.879Z", + "new_balance":"3496.27", + "value":"-14.82" + } + }, + { + "id":"7d052ec3-1b0c-4621-8e23-8d1e18f55f57", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T21:33:32.280Z", + "completed":"2017-10-08T21:33:32.280Z", + "new_balance":"3489.11", + "value":"-7.16" + } + }, + { + "id":"50ba76ed-87b0-4585-a123-48793af9dc0f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T05:51:54.802Z", + "completed":"2017-10-09T05:51:54.802Z", + "new_balance":"3482.40", + "value":"-6.71" + } + }, + { + "id":"c1f99dff-b6de-403a-b618-99596c4fc154", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T21:25:54.739Z", + "completed":"2017-10-09T21:25:54.739Z", + "new_balance":"3460.15", + "value":"-22.25" + } + }, + { + "id":"44a27ff1-20ad-4c18-a1f2-91a6ecf4e1f7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T23:00:32.921Z", + "completed":"2017-10-09T23:00:32.921Z", + "new_balance":"3270.88", + "value":"-189.27" + } + }, + { + "id":"e188c925-e1af-4087-9413-2cb09fe18470", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:12:51.695Z", + "completed":"2017-10-10T19:12:51.695Z", + "new_balance":"3225.64", + "value":"-45.24" + } + }, + { + "id":"781e36fb-ca3e-4e90-9adf-0e04c6b64135", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T07:59:35.096Z", + "completed":"2017-10-17T07:59:35.096Z", + "new_balance":"3215.94", + "value":"-9.70" + } + }, + { + "id":"c1c61357-0a66-4cce-a3bd-c8ed19b4372f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T01:35:49.840Z", + "completed":"2017-10-18T01:35:49.840Z", + "new_balance":"3183.66", + "value":"-32.28" + } + }, + { + "id":"eb3dacab-3a9d-428b-b802-b45a4f3f1617", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T07:22:01.477Z", + "completed":"2017-10-25T07:22:01.477Z", + "new_balance":"3141.14", + "value":"-42.52" + } + }, + { + "id":"4bc4c6f3-c447-433f-a02a-62613603f600", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T02:45:28.798Z", + "completed":"2017-10-26T02:45:28.798Z", + "new_balance":"3077.57", + "value":"-63.57" + } + }, + { + "id":"9b352066-8223-4b03-b115-caa1f29757a2", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T04:41:36.331Z", + "completed":"2017-10-26T04:41:36.331Z", + "new_balance":"3070.86", + "value":"-6.71" + } + }, + { + "id":"7ee74207-9159-4d36-997b-0f604ff0b8f1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T01:46:42.376Z", + "completed":"2017-11-02T01:46:42.376Z", + "new_balance":"2984.30", + "value":"-86.56" + } + }, + { + "id":"450e2a84-33cf-4613-b8b3-83f48a54c711", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T04:25:11.661Z", + "completed":"2017-11-02T04:25:11.661Z", + "new_balance":"2968.37", + "value":"-15.93" + } + }, + { + "id":"596adf58-035a-4833-be77-4a14f3f986dd", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T09:04:33.748Z", + "completed":"2017-11-02T09:04:33.748Z", + "new_balance":"2915.19", + "value":"-53.18" + } + }, + { + "id":"7d927372-dc53-4b70-bf34-b74a28e28802", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T10:26:07.369Z", + "completed":"2017-11-02T10:26:07.369Z", + "new_balance":"2404.65", + "value":"-510.54" + } + }, + { + "id":"826495c3-f742-4fd1-923b-07215fff0d5c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T12:25:24.967Z", + "completed":"2017-11-02T12:25:24.967Z", + "new_balance":"4085.06", + "value":"1680.41" + } + }, + { + "id":"8d1ef8cb-d26c-426d-b180-d49c9040fd6c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T13:41:56.351Z", + "completed":"2017-11-02T13:41:56.351Z", + "new_balance":"3950.58", + "value":"-134.48" + } + }, + { + "id":"18bc8c6d-40df-48fd-800b-6ab55b89fdb3", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T17:53:09.367Z", + "completed":"2017-11-02T17:53:09.367Z", + "new_balance":"3920.70", + "value":"-29.88" + } + }, + { + "id":"bad5a59a-c65e-485a-a8dc-a43f31767760", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T20:55:59.534Z", + "completed":"2017-11-02T20:55:59.534Z", + "new_balance":"3886.27", + "value":"-34.43" + } + }, + { + "id":"702216a4-71f5-4c1d-85ad-42188384fe5e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T23:11:28.792Z", + "completed":"2017-11-06T23:11:28.792Z", + "new_balance":"3871.63", + "value":"-14.64" + } + }, + { + "id":"91300f69-c089-4e5d-9f83-30bd54a832a6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T01:36:56.268Z", + "completed":"2017-11-07T01:36:56.268Z", + "new_balance":"3845.83", + "value":"-25.80" + } + }, + { + "id":"843868a2-1b23-4275-bf6a-8018b5088d11", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T15:02:45.730Z", + "completed":"2017-11-07T15:02:45.730Z", + "new_balance":"3822.46", + "value":"-23.37" + } + }, + { + "id":"d49569fc-976c-412f-a3ce-dcbc6e5c7e4c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T22:27:50.440Z", + "completed":"2017-11-07T22:27:50.440Z", + "new_balance":"3794.45", + "value":"-28.01" + } + }, + { + "id":"13c2ecad-bdc1-4f55-9c31-8bf4f417ae61", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T14:59:07.803Z", + "completed":"2017-11-09T14:59:07.803Z", + "new_balance":"3790.36", + "value":"-4.09" + } + }, + { + "id":"ad0ac427-4321-4ce8-b785-8fc6ce0d4c2b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T22:34:17.327Z", + "completed":"2017-11-09T22:34:17.327Z", + "new_balance":"3716.43", + "value":"-73.93" + } + }, + { + "id":"e877d50c-b398-46bd-bc21-0c3e9a755802", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T15:58:57.079Z", + "completed":"2017-11-12T15:58:57.079Z", + "new_balance":"3688.58", + "value":"-27.85" + } + }, + { + "id":"c24f6ad5-868c-45ed-a7ae-bf9d3e51a0d0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T21:52:10.680Z", + "completed":"2017-11-12T21:52:10.680Z", + "new_balance":"3667.48", + "value":"-21.10" + } + }, + { + "id":"06cb7d3f-d6ab-4d40-b8d2-76bf863454ac", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T05:24:26.285Z", + "completed":"2017-11-14T05:24:26.285Z", + "new_balance":"3622.31", + "value":"-45.17" + } + }, + { + "id":"d9ec03ea-d22c-4192-b3d6-176e0385451e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T08:49:20.505Z", + "completed":"2017-11-14T08:49:20.505Z", + "new_balance":"3573.61", + "value":"-48.70" + } + }, + { + "id":"a950c30d-c874-4a7f-b5bc-2fddeb43e497", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T00:47:46.926Z", + "completed":"2017-11-16T00:47:46.926Z", + "new_balance":"3567.84", + "value":"-5.77" + } + }, + { + "id":"ab33b88e-4f61-42e6-8c6a-16d87cbc5a1a", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T03:02:20.145Z", + "completed":"2017-11-18T03:02:20.145Z", + "new_balance":"3559.32", + "value":"-8.52" + } + }, + { + "id":"0d38530e-d291-44b0-a9e3-7ba47493fded", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T05:19:38.047Z", + "completed":"2017-11-20T05:19:38.047Z", + "new_balance":"3598.33", + "value":"39.01" + } + }, + { + "id":"d85a7c73-559d-40df-9cf4-06f20325f5ec", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T01:23:18.661Z", + "completed":"2017-11-21T01:23:18.661Z", + "new_balance":"3554.54", + "value":"-43.79" + } + }, + { + "id":"ce06a5ae-3ff0-4709-b4f6-ac444b891542", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T05:30:35.741Z", + "completed":"2017-11-21T05:30:35.741Z", + "new_balance":"3508.91", + "value":"-45.63" + } + }, + { + "id":"6a40846e-86da-4088-9653-4eccf06ff883", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T05:55:09.336Z", + "completed":"2017-11-27T05:55:09.336Z", + "new_balance":"3483.35", + "value":"-25.56" + } + }, + { + "id":"6e794025-de81-44fe-b524-c1e25f9103e6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T19:22:33.393Z", + "completed":"2017-11-27T19:22:33.393Z", + "new_balance":"3449.82", + "value":"-33.53" + } + }, + { + "id":"c69b7027-0685-414a-9ca2-b2e1ab12bc69", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T02:01:45.112Z", + "completed":"2017-12-01T02:01:45.112Z", + "new_balance":"3415.39", + "value":"-34.43" + } + }, + { + "id":"60c8eeb9-1a03-40c4-989f-b41569fc22cc", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T09:25:40.753Z", + "completed":"2017-12-01T09:25:40.753Z", + "new_balance":"5095.80", + "value":"1680.41" + } + }, + { + "id":"94484d86-b21d-442e-8eb2-96d0fc495c48", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T11:18:18.017Z", + "completed":"2017-12-01T11:18:18.017Z", + "new_balance":"5042.62", + "value":"-53.18" + } + }, + { + "id":"b2aa6313-db00-467b-a1a6-0d6d31b1987d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T12:34:16.705Z", + "completed":"2017-12-01T12:34:16.705Z", + "new_balance":"4908.14", + "value":"-134.48" + } + }, + { + "id":"4b416265-bd2a-436a-af00-8c7b44ad686e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T14:35:04.781Z", + "completed":"2017-12-01T14:35:04.781Z", + "new_balance":"4878.26", + "value":"-29.88" + } + }, + { + "id":"3870f97b-d213-45fb-ae7f-25b256cd4aa6", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T20:06:17.980Z", + "completed":"2017-12-01T20:06:17.980Z", + "new_balance":"4367.72", + "value":"-510.54" + } + }, + { + "id":"ada5a450-aca5-46dd-bece-a365c9f7c441", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T00:34:20.823Z", + "completed":"2017-12-04T00:34:20.823Z", + "new_balance":"4281.16", + "value":"-86.56" + } + }, + { + "id":"262ddb28-4a71-4b54-8c0e-7905430dec72", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T04:48:23.488Z", + "completed":"2017-12-04T04:48:23.488Z", + "new_balance":"4149.32", + "value":"-131.84" + } + }, + { + "id":"568263d2-6a02-49d5-afe2-0536ea2c6fe1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T00:46:52.633Z", + "completed":"2017-12-12T00:46:52.633Z", + "new_balance":"4118.51", + "value":"-30.81" + } + }, + { + "id":"6b4e8fcf-4381-4679-8bfb-08489260cefb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T22:18:46.082Z", + "completed":"2017-12-12T22:18:46.082Z", + "new_balance":"4107.98", + "value":"-10.53" + } + }, + { + "id":"06a02edb-7900-4b14-882d-2f633bd77d79", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T13:09:35.345Z", + "completed":"2017-12-13T13:09:35.345Z", + "new_balance":"4026.77", + "value":"-81.21" + } + }, + { + "id":"511aebe5-1df5-453a-987f-3b021e62f23d", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T13:58:31.772Z", + "completed":"2017-12-13T13:58:31.772Z", + "new_balance":"4020.30", + "value":"-6.47" + } + }, + { + "id":"61ccb852-f1fb-40d8-bd2c-74d7f2ad10e7", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T11:34:27.043Z", + "completed":"2017-12-16T11:34:27.043Z", + "new_balance":"3979.07", + "value":"-41.23" + } + }, + { + "id":"27cadf79-29e0-4777-900f-8d8ceb73af49", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T01:29:20.927Z", + "completed":"2017-12-18T01:29:20.927Z", + "new_balance":"3974.30", + "value":"-4.77" + } + }, + { + "id":"25d508a8-67c8-4cff-9375-2bdd2eab4088", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T12:14:22.397Z", + "completed":"2017-12-19T12:14:22.397Z", + "new_balance":"3890.50", + "value":"-83.80" + } + }, + { + "id":"f96fd2f6-da14-4b30-9e15-f65d339d885c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T22:37:54.744Z", + "completed":"2017-12-19T22:37:54.744Z", + "new_balance":"3809.29", + "value":"-81.21" + } + }, + { + "id":"b121b061-66c7-450e-809f-c6e411b9eb2c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T14:54:47.340Z", + "completed":"2017-12-20T14:54:47.340Z", + "new_balance":"3766.95", + "value":"-42.34" + } + }, + { + "id":"8f6b5a89-e2b9-4fd7-9749-c1d27c227f3e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T02:08:07.248Z", + "completed":"2017-12-21T02:08:07.248Z", + "new_balance":"3683.15", + "value":"-83.80" + } + }, + { + "id":"0bfddde7-1bc4-4c01-90ac-fb25be3e64ab", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T07:27:26.737Z", + "completed":"2017-12-24T07:27:26.737Z", + "new_balance":"3679.57", + "value":"-3.58" + } + }, + { + "id":"8d3774a0-0bf2-4d23-9aa7-d8a566916866", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T11:18:24.992Z", + "completed":"2017-12-24T11:18:24.992Z", + "new_balance":"3633.56", + "value":"-46.01" + } + }, + { + "id":"082b1b11-5082-42fb-a101-f738be0ef295", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:32:15.003Z", + "completed":"2017-12-24T11:32:15.003Z", + "new_balance":"3606.26", + "value":"-27.30" + } + }, + { + "id":"7058b969-1674-4b95-ab8b-b690241b784b", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T15:00:26.635Z", + "completed":"2017-12-24T15:00:26.635Z", + "new_balance":"3514.79", + "value":"-91.47" + } + }, + { + "id":"de17cbac-3087-448f-b18f-6636fd8aecaa", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T16:26:06.115Z", + "completed":"2017-12-24T16:26:06.115Z", + "new_balance":"3507.51", + "value":"-7.28" + } + }, + { + "id":"e353db75-34e2-49aa-9f83-7e4773d49575", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T19:51:53.128Z", + "completed":"2017-12-24T19:51:53.128Z", + "new_balance":"3494.27", + "value":"-13.24" + } + }, + { + "id":"79b5b644-9613-4314-bd4a-58222917e31c", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T08:53:49.080Z", + "completed":"2017-12-28T08:53:49.080Z", + "new_balance":"3412.86", + "value":"-81.41" + } + }, + { + "id":"f90e0fcf-4885-4215-a088-10469ba1f312", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T15:30:02.626Z", + "completed":"2017-12-28T15:30:02.626Z", + "new_balance":"3405.87", + "value":"-6.99" + } + }, + { + "id":"a2fdcc4b-9c96-4964-a82c-d733610fff2e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:51:15.528Z", + "completed":"2017-12-28T16:51:15.528Z", + "new_balance":"3398.88", + "value":"-6.99" + } + }, + { + "id":"5c364cd4-d427-4279-bf9c-8d5ae61cebea", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T19:22:43.711Z", + "completed":"2017-12-28T19:22:43.711Z", + "new_balance":"3352.08", + "value":"-46.80" + } + }, + { + "id":"be5443d1-31a3-4b7c-a0f8-be06eb8b17b1", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T08:45:30.687Z", + "completed":"2017-12-29T08:45:30.687Z", + "new_balance":"3293.18", + "value":"-58.90" + } + }, + { + "id":"ce8d5cd8-82a5-4d70-b855-dcf1bf87deae", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T16:07:26.831Z", + "completed":"2017-12-29T16:07:26.831Z", + "new_balance":"3286.71", + "value":"-6.47" + } + }, + { + "id":"17e8a2a6-0473-40ea-98f1-99a3c85d1025", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T17:13:00.844Z", + "completed":"2017-12-29T17:13:00.844Z", + "new_balance":"3249.76", + "value":"-36.95" + } + }, + { + "id":"52833d31-c52b-42ff-a889-0101d4d6d8c9", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T17:38:04.906Z", + "completed":"2017-12-29T17:38:04.906Z", + "new_balance":"3198.75", + "value":"-51.01" + } + }, + { + "id":"29f8f053-6c3c-4b29-a3bf-fb741c955ab4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T20:23:17.331Z", + "completed":"2017-12-29T20:23:17.331Z", + "new_balance":"3164.84", + "value":"-33.91" + } + }, + { + "id":"b922c1c6-d9ad-413b-8892-eab2594eb5a4", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T22:28:13.290Z", + "completed":"2017-12-29T22:28:13.290Z", + "new_balance":"3091.33", + "value":"-73.51" + } + }, + { + "id":"96adbc8e-0f5f-474d-9452-9dcff0c96aa0", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T06:56:46.182Z", + "completed":"2017-12-30T06:56:46.182Z", + "new_balance":"3085.45", + "value":"-5.88" + } + }, + { + "id":"b699706b-e176-4197-bc7e-7b5ecb88588e", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T16:02:47.798Z", + "completed":"2017-12-30T16:02:47.798Z", + "new_balance":"3039.94", + "value":"-45.51" + } + }, + { + "id":"5530480c-3628-40ba-a5cd-3b09407a3437", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T17:14:26.499Z", + "completed":"2017-12-30T17:14:26.499Z", + "new_balance":"3011.08", + "value":"-28.86" + } + }, + { + "id":"60d7a6e8-96eb-48f2-890e-8934ca0cf593", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T19:26:47.451Z", + "completed":"2017-12-30T19:26:47.451Z", + "new_balance":"2999.85", + "value":"-11.23" + } + }, + { + "id":"d7835e50-27d4-4233-abf8-5f4f14fe7889", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T01:23:26.315Z", + "completed":"2017-12-31T01:23:26.315Z", + "new_balance":"2810.58", + "value":"-189.27" + } + }, + { + "id":"cf411cb0-2399-46b9-8c20-4384df10538f", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T04:45:28.786Z", + "completed":"2017-12-31T04:45:28.786Z", + "new_balance":"2776.55", + "value":"-34.03" + } + }, + { + "id":"afe44df5-e773-4e95-a53b-5fac4f275563", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T12:02:13.750Z", + "completed":"2017-12-31T12:02:13.750Z", + "new_balance":"2749.58", + "value":"-26.97" + } + }, + { + "id":"a5d7b81e-fcf4-4e29-9fca-5600777f86cb", + "this_account":{ + "id":"6d7c7f47-02e3-40c5-b89e-097c8e3890ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T12:40:40.076Z", + "completed":"2017-12-31T12:40:40.076Z", + "new_balance":"2733.50", + "value":"-16.08" + } + }, + { + "id":"9116d8ed-dc36-4b9e-bdb5-3bd1219cbf18", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T01:50:37.437Z", + "completed":"2016-01-01T01:50:37.437Z", + "new_balance":"4627.10", + "value":"-3.44" + } + }, + { + "id":"9f3f2543-fb58-4256-8535-67a935993052", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:52:51.601Z", + "completed":"2016-01-01T01:52:51.601Z", + "new_balance":"4611.85", + "value":"-15.25" + } + }, + { + "id":"82ae9653-b60b-47a1-a7fb-6e01ee22ab0c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T04:15:11.111Z", + "completed":"2016-01-01T04:15:11.111Z", + "new_balance":"4553.62", + "value":"-58.23" + } + }, + { + "id":"453217fd-fd18-4ad2-94a9-5fd997e5070a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T10:01:05.908Z", + "completed":"2016-01-01T10:01:05.908Z", + "new_balance":"4550.18", + "value":"-3.44" + } + }, + { + "id":"65c611a2-38dc-426a-b990-394b03c3a1a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T17:24:38.406Z", + "completed":"2016-01-01T17:24:38.406Z", + "new_balance":"4545.03", + "value":"-5.15" + } + }, + { + "id":"7c54c5b1-3811-4503-943a-deb180d66f50", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T22:34:22.434Z", + "completed":"2016-01-01T22:34:22.434Z", + "new_balance":"4542.71", + "value":"-2.32" + } + }, + { + "id":"3350ca5b-4ecd-477c-8401-cf0bb4c68d09", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T02:26:38.041Z", + "completed":"2016-01-02T02:26:38.041Z", + "new_balance":"4535.61", + "value":"-7.10" + } + }, + { + "id":"2a6ab2f0-0eb4-4175-a7c1-38449ef9c92f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T13:51:50.076Z", + "completed":"2016-01-02T13:51:50.076Z", + "new_balance":"4525.92", + "value":"-9.69" + } + }, + { + "id":"81883f82-a7ea-4246-986f-b152f97f3584", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T10:28:34.978Z", + "completed":"2016-01-04T10:28:34.978Z", + "new_balance":"4523.01", + "value":"-2.91" + } + }, + { + "id":"c12b0ae5-226c-4711-ad0e-ff313c98eabe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T11:14:28.935Z", + "completed":"2016-01-04T11:14:28.935Z", + "new_balance":"4519.23", + "value":"-3.78" + } + }, + { + "id":"53f767c0-a8d7-4b38-b5de-4737fe96c0eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T23:51:56.764Z", + "completed":"2016-01-07T23:51:56.764Z", + "new_balance":"4512.04", + "value":"-7.19" + } + }, + { + "id":"2a0e80ce-46f2-4bc1-9ef4-7c3934c42f07", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T14:04:01.397Z", + "completed":"2016-01-09T14:04:01.397Z", + "new_balance":"4511.58", + "value":"-0.46" + } + }, + { + "id":"1986e1d9-4673-4b27-ae57-a9bfd1445763", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T19:39:41.805Z", + "completed":"2016-01-10T19:39:41.805Z", + "new_balance":"4508.90", + "value":"-2.68" + } + }, + { + "id":"844a0176-3086-42f2-adcd-f29c450640ec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T16:26:27.094Z", + "completed":"2016-01-12T16:26:27.094Z", + "new_balance":"4505.68", + "value":"-3.22" + } + }, + { + "id":"9b2e110e-6367-4c00-b13d-f0d51511c685", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T15:37:57.415Z", + "completed":"2016-01-15T15:37:57.415Z", + "new_balance":"4504.15", + "value":"-1.53" + } + }, + { + "id":"aff4c767-0305-4d0e-88be-ffa1c69fde43", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T18:42:41.733Z", + "completed":"2016-01-15T18:42:41.733Z", + "new_balance":"4503.25", + "value":"-0.90" + } + }, + { + "id":"14463e38-c1ad-4151-8476-2f5ed1ddc534", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T10:42:10.445Z", + "completed":"2016-01-17T10:42:10.445Z", + "new_balance":"4501.14", + "value":"-2.11" + } + }, + { + "id":"b36d7c46-12aa-45e6-a6cd-b59d558b7f75", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T20:50:17.695Z", + "completed":"2016-01-19T20:50:17.695Z", + "new_balance":"4473.64", + "value":"-27.50" + } + }, + { + "id":"faf67b68-b3c6-44fa-a49d-f8370098fb08", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T12:59:55.589Z", + "completed":"2016-01-20T12:59:55.589Z", + "new_balance":"4473.20", + "value":"-0.44" + } + }, + { + "id":"7e0c2ad1-6482-4ab9-9831-4501a89bc14c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T10:12:09.888Z", + "completed":"2016-01-22T10:12:09.888Z", + "new_balance":"4468.72", + "value":"-4.48" + } + }, + { + "id":"4b4c45e2-acca-450b-be4a-3ec4eb491fa5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T19:00:08.715Z", + "completed":"2016-01-22T19:00:08.715Z", + "new_balance":"4467.61", + "value":"-1.11" + } + }, + { + "id":"ba1ab881-1cb5-4cb9-97c1-5addc0eeca95", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T10:44:50.710Z", + "completed":"2016-01-24T10:44:50.710Z", + "new_balance":"4464.80", + "value":"-2.81" + } + }, + { + "id":"725d3890-436a-4c88-bb31-7d5e9453e3be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T19:45:50.610Z", + "completed":"2016-01-25T19:45:50.610Z", + "new_balance":"4464.36", + "value":"-0.44" + } + }, + { + "id":"664a37c8-59b7-4314-b9d0-58bfbd1fc464", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T23:15:37.592Z", + "completed":"2016-01-25T23:15:37.592Z", + "new_balance":"4458.96", + "value":"-5.40" + } + }, + { + "id":"3b9525f3-6d0f-4c27-a2fa-e9c48254cb65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T13:33:32.282Z", + "completed":"2016-01-26T13:33:32.282Z", + "new_balance":"4453.14", + "value":"-5.82" + } + }, + { + "id":"90ff1d5e-b667-4a3f-b5e6-afee964483f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T02:15:21.327Z", + "completed":"2016-02-01T02:15:21.327Z", + "new_balance":"4449.70", + "value":"-3.44" + } + }, + { + "id":"3be3df38-5ffb-4225-895b-a1ee2fc40d5f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T02:38:16.904Z", + "completed":"2016-02-01T02:38:16.904Z", + "new_balance":"4632.40", + "value":"182.70" + } + }, + { + "id":"96e42e7a-43a4-45e7-84ca-8e540c07e349", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T12:27:32.582Z", + "completed":"2016-02-01T12:27:32.582Z", + "new_balance":"4617.15", + "value":"-15.25" + } + }, + { + "id":"92d80524-2aec-4a29-9b77-d8d61bd875d1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T16:12:13.392Z", + "completed":"2016-02-01T16:12:13.392Z", + "new_balance":"4558.92", + "value":"-58.23" + } + }, + { + "id":"44a90632-ce99-4436-8bdf-63549b102e1e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T17:32:18.896Z", + "completed":"2016-02-01T17:32:18.896Z", + "new_balance":"4553.77", + "value":"-5.15" + } + }, + { + "id":"02ecb43c-b975-4a0a-863c-2a11602a5b29", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T21:34:39.095Z", + "completed":"2016-02-01T21:34:39.095Z", + "new_balance":"4551.45", + "value":"-2.32" + } + }, + { + "id":"3027e545-a2ff-4003-9ed5-86be801405b7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T03:36:27.823Z", + "completed":"2016-02-02T03:36:27.823Z", + "new_balance":"4550.30", + "value":"-1.15" + } + }, + { + "id":"606f98a0-db26-4308-a330-b9d02ea0a601", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T08:40:07.655Z", + "completed":"2016-02-02T08:40:07.655Z", + "new_balance":"4543.20", + "value":"-7.10" + } + }, + { + "id":"37495f4d-b984-4ba9-a750-d585e5686eac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T17:57:32.455Z", + "completed":"2016-02-02T17:57:32.455Z", + "new_balance":"4541.10", + "value":"-2.10" + } + }, + { + "id":"759dda9f-c9d4-405b-bc0c-6469d4a6a4b5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T01:42:33.589Z", + "completed":"2016-02-03T01:42:33.589Z", + "new_balance":"4538.70", + "value":"-2.40" + } + }, + { + "id":"ff2e17d5-e7f4-4570-946a-8c60de5a9c91", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T11:18:58.241Z", + "completed":"2016-02-03T11:18:58.241Z", + "new_balance":"4536.20", + "value":"-2.50" + } + }, + { + "id":"ad183774-d842-4b75-8754-9c15ef79e0ab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T15:22:39.110Z", + "completed":"2016-02-03T15:22:39.110Z", + "new_balance":"4532.87", + "value":"-3.33" + } + }, + { + "id":"a959af4e-4a88-4262-b3af-697f7c6cfd6c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T14:16:41.137Z", + "completed":"2016-02-06T14:16:41.137Z", + "new_balance":"4525.68", + "value":"-7.19" + } + }, + { + "id":"22a656b0-4bf9-4563-8d2d-9e4aab7d2c64", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T09:01:30.344Z", + "completed":"2016-02-08T09:01:30.344Z", + "new_balance":"4522.65", + "value":"-3.03" + } + }, + { + "id":"9dbfd696-5523-479d-a128-a883c416be3a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T11:01:28.858Z", + "completed":"2016-02-08T11:01:28.858Z", + "new_balance":"4520.20", + "value":"-2.45" + } + }, + { + "id":"7bd879ad-e06d-420d-89d2-49806c112e3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T19:06:27.415Z", + "completed":"2016-02-08T19:06:27.415Z", + "new_balance":"4519.72", + "value":"-0.48" + } + }, + { + "id":"da06653b-c957-4c90-a6fc-d58fe82b1eec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T05:27:42.215Z", + "completed":"2016-02-09T05:27:42.215Z", + "new_balance":"4516.58", + "value":"-3.14" + } + }, + { + "id":"59259827-27a5-4868-b51b-3172a3770b96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T08:59:42.484Z", + "completed":"2016-02-09T08:59:42.484Z", + "new_balance":"4513.10", + "value":"-3.48" + } + }, + { + "id":"75c0b37f-266a-421e-9f52-4ed4d9856895", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T06:57:22.467Z", + "completed":"2016-02-12T06:57:22.467Z", + "new_balance":"4512.63", + "value":"-0.47" + } + }, + { + "id":"b0c693cb-2d5d-442b-ad1a-6ed59c65fb02", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T00:34:42.445Z", + "completed":"2016-02-13T00:34:42.445Z", + "new_balance":"4511.86", + "value":"-0.77" + } + }, + { + "id":"d995a575-b058-48e0-9ce2-cb1fe630596c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T16:11:08.424Z", + "completed":"2016-02-13T16:11:08.424Z", + "new_balance":"4505.43", + "value":"-6.43" + } + }, + { + "id":"743fb11e-29d1-48fa-b9ac-28507fc68364", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T17:39:51.871Z", + "completed":"2016-02-13T17:39:51.871Z", + "new_balance":"4509.51", + "value":"4.08" + } + }, + { + "id":"5db4c8df-1761-45f1-a8f0-d282a072b2a0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T22:21:09.201Z", + "completed":"2016-02-14T22:21:09.201Z", + "new_balance":"4505.39", + "value":"-4.12" + } + }, + { + "id":"6cd2aec1-dd36-45e7-a4f6-3cb7766fddf5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T09:46:42.364Z", + "completed":"2016-02-15T09:46:42.364Z", + "new_balance":"4502.84", + "value":"-2.55" + } + }, + { + "id":"f19397d6-f12a-486b-9eba-1d598c06f56d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T20:12:23.151Z", + "completed":"2016-02-28T20:12:23.151Z", + "new_balance":"4499.90", + "value":"-2.94" + } + }, + { + "id":"6decd66d-a84d-4657-ae6e-dbc9f488c955", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T14:22:08.537Z", + "completed":"2016-03-01T14:22:08.537Z", + "new_balance":"4496.46", + "value":"-3.44" + } + }, + { + "id":"8e9a8c41-2288-461d-ad26-134863362f6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T14:38:10.275Z", + "completed":"2016-03-01T14:38:10.275Z", + "new_balance":"4491.31", + "value":"-5.15" + } + }, + { + "id":"24fd6163-a6ba-4f40-a90e-b22e745e3fff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T15:20:36.566Z", + "completed":"2016-03-01T15:20:36.566Z", + "new_balance":"4488.99", + "value":"-2.32" + } + }, + { + "id":"3ba08b48-78b6-400b-adcb-7d7d58e7aa9c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T15:46:31.353Z", + "completed":"2016-03-01T15:46:31.353Z", + "new_balance":"4473.74", + "value":"-15.25" + } + }, + { + "id":"0e2aac31-46d5-40e7-a6fa-acb6f1a22df3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T17:47:21.614Z", + "completed":"2016-03-01T17:47:21.614Z", + "new_balance":"4656.44", + "value":"182.70" + } + }, + { + "id":"8a21ac75-347e-4423-b3e4-88ddebe92153", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T21:57:31.248Z", + "completed":"2016-03-01T21:57:31.248Z", + "new_balance":"4598.21", + "value":"-58.23" + } + }, + { + "id":"90391a2d-25b0-4e84-98dc-b1a1d9eba7d2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T11:25:30.455Z", + "completed":"2016-03-02T11:25:30.455Z", + "new_balance":"4591.11", + "value":"-7.10" + } + }, + { + "id":"48340e2c-7133-40eb-83b5-8cdd572410e4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T10:06:10.297Z", + "completed":"2016-03-04T10:06:10.297Z", + "new_balance":"4589.86", + "value":"-1.25" + } + }, + { + "id":"5893aea4-3f0d-4262-8f08-869fd40b29bb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T11:24:19.633Z", + "completed":"2016-03-04T11:24:19.633Z", + "new_balance":"4589.10", + "value":"-0.76" + } + }, + { + "id":"9d3577af-0b39-4999-a195-1427213426d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T21:16:12.781Z", + "completed":"2016-03-04T21:16:12.781Z", + "new_balance":"4585.80", + "value":"-3.30" + } + }, + { + "id":"2d8f196d-bb96-44c2-8a11-4a2b7d934025", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T23:13:25.366Z", + "completed":"2016-03-04T23:13:25.366Z", + "new_balance":"4578.50", + "value":"-7.30" + } + }, + { + "id":"3b8a743d-0b6a-46df-99d0-1f5e136b15b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T13:14:53.593Z", + "completed":"2016-03-05T13:14:53.593Z", + "new_balance":"4578.10", + "value":"-0.40" + } + }, + { + "id":"7112d6dc-fb49-4ff6-bccb-402973d2a039", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T16:31:10.666Z", + "completed":"2016-03-05T16:31:10.666Z", + "new_balance":"4574.06", + "value":"-4.04" + } + }, + { + "id":"37fcf5a7-281d-484e-b183-06879e77ed50", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T01:24:23.871Z", + "completed":"2016-03-06T01:24:23.871Z", + "new_balance":"4566.76", + "value":"-7.30" + } + }, + { + "id":"201d38c3-c002-464c-9d9c-c3b9f100800d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T12:17:06.876Z", + "completed":"2016-03-06T12:17:06.876Z", + "new_balance":"4561.49", + "value":"-5.27" + } + }, + { + "id":"907bc9c6-6aa8-4a81-a95d-be57b5cc6eac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T08:07:03.407Z", + "completed":"2016-03-07T08:07:03.407Z", + "new_balance":"4557.22", + "value":"-4.27" + } + }, + { + "id":"993f1bf4-756c-42ae-8bdd-263093939c22", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T22:46:13.859Z", + "completed":"2016-03-08T22:46:13.859Z", + "new_balance":"4551.95", + "value":"-5.27" + } + }, + { + "id":"fa489773-4c7f-4c0d-a484-b1b8173d536b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T01:52:22.395Z", + "completed":"2016-03-09T01:52:22.395Z", + "new_balance":"4551.41", + "value":"-0.54" + } + }, + { + "id":"d23a756c-be2a-4e15-ae89-b6a551d80872", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T11:36:33.940Z", + "completed":"2016-03-10T11:36:33.940Z", + "new_balance":"4545.09", + "value":"-6.32" + } + }, + { + "id":"d323e8a3-91b3-43db-9b8f-d03dec137d47", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T03:53:20.567Z", + "completed":"2016-03-11T03:53:20.567Z", + "new_balance":"4544.32", + "value":"-0.77" + } + }, + { + "id":"5314636d-9229-480b-b035-fdf0c9a68099", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T00:57:11.756Z", + "completed":"2016-03-12T00:57:11.756Z", + "new_balance":"4542.07", + "value":"-2.25" + } + }, + { + "id":"935f23e4-11f8-4084-8291-321047a25179", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T10:19:50.901Z", + "completed":"2016-03-12T10:19:50.901Z", + "new_balance":"4541.02", + "value":"-1.05" + } + }, + { + "id":"f79b9132-06ac-46ee-bd52-14d80a7c3baf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T08:57:12.829Z", + "completed":"2016-03-13T08:57:12.829Z", + "new_balance":"4536.76", + "value":"-4.26" + } + }, + { + "id":"7d0c89b1-239d-4a9f-9d34-3422947da8c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T06:53:16.753Z", + "completed":"2016-03-14T06:53:16.753Z", + "new_balance":"4536.24", + "value":"-0.52" + } + }, + { + "id":"5a96312e-ccbc-444d-981e-7d2a8be66e8e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T00:02:06.971Z", + "completed":"2016-03-16T00:02:06.971Z", + "new_balance":"4531.42", + "value":"-4.82" + } + }, + { + "id":"dd988fa1-c733-4ec3-9da4-c72897fb1fab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:43:44.130Z", + "completed":"2016-03-16T16:43:44.130Z", + "new_balance":"4521.63", + "value":"-9.79" + } + }, + { + "id":"66c2d325-301f-42b1-9623-653709afedf6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T02:40:07.727Z", + "completed":"2016-03-18T02:40:07.727Z", + "new_balance":"4521.11", + "value":"-0.52" + } + }, + { + "id":"d368e77b-b173-46b2-a947-7f893558901a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T13:48:14.181Z", + "completed":"2016-03-19T13:48:14.181Z", + "new_balance":"4516.96", + "value":"-4.15" + } + }, + { + "id":"2e88f19a-2101-437f-980a-4855577c99c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T15:09:23.132Z", + "completed":"2016-03-19T15:09:23.132Z", + "new_balance":"4510.64", + "value":"-6.32" + } + }, + { + "id":"801eff06-8758-43dc-9c57-fcf51851cf9d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T21:07:49.704Z", + "completed":"2016-03-19T21:07:49.704Z", + "new_balance":"4506.35", + "value":"-4.29" + } + }, + { + "id":"b0dcf818-7a1a-4902-b42a-aadc162b7830", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T07:44:24.205Z", + "completed":"2016-03-20T07:44:24.205Z", + "new_balance":"4499.39", + "value":"-6.96" + } + }, + { + "id":"333132b0-184b-4083-9b7a-75bbca5d21a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T23:30:35.593Z", + "completed":"2016-03-20T23:30:35.593Z", + "new_balance":"4494.23", + "value":"-5.16" + } + }, + { + "id":"07fcdcd5-03ee-487d-833e-f31afcf8506f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T17:56:39.208Z", + "completed":"2016-03-21T17:56:39.208Z", + "new_balance":"4493.47", + "value":"-0.76" + } + }, + { + "id":"ef36320a-c23d-4100-b3d7-eb1770a58dba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T22:37:22.948Z", + "completed":"2016-03-21T22:37:22.948Z", + "new_balance":"4492.88", + "value":"-0.59" + } + }, + { + "id":"8cb1543e-7113-4cc2-a563-0c71dcd973a3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T10:17:36.435Z", + "completed":"2016-03-23T10:17:36.435Z", + "new_balance":"4491.97", + "value":"-0.91" + } + }, + { + "id":"0b97af42-1b6a-417e-82eb-466aed6dafe6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T11:32:42.382Z", + "completed":"2016-03-23T11:32:42.382Z", + "new_balance":"4487.36", + "value":"-4.61" + } + }, + { + "id":"c33fa2d2-8a60-47df-a3c0-24ce67e3b2ad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T14:02:18.263Z", + "completed":"2016-03-24T14:02:18.263Z", + "new_balance":"4483.81", + "value":"-3.55" + } + }, + { + "id":"c4f2f283-664b-4c9f-adf9-c2dec559891d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T15:19:11.354Z", + "completed":"2016-03-25T15:19:11.354Z", + "new_balance":"4480.75", + "value":"-3.06" + } + }, + { + "id":"235fbb2d-6ca4-42d5-bfe9-676f49f25d45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:08:01.190Z", + "completed":"2016-03-25T23:08:01.190Z", + "new_balance":"4479.44", + "value":"-1.31" + } + }, + { + "id":"72ffc9fd-6014-41d9-860f-9564d78136ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T10:20:29.398Z", + "completed":"2016-03-27T10:20:29.398Z", + "new_balance":"4451.94", + "value":"-27.50" + } + }, + { + "id":"5df8fa26-de11-463b-92f0-ed3940db34c9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T18:32:57.566Z", + "completed":"2016-03-28T18:32:57.566Z", + "new_balance":"4449.20", + "value":"-2.74" + } + }, + { + "id":"7568205c-f069-4c98-8f5d-18b5dfd0c970", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T05:23:11.838Z", + "completed":"2016-04-01T05:23:11.838Z", + "new_balance":"4390.97", + "value":"-58.23" + } + }, + { + "id":"1973f17a-12f1-42f2-b044-efe25fe7e751", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T07:08:13.133Z", + "completed":"2016-04-01T07:08:13.133Z", + "new_balance":"4375.72", + "value":"-15.25" + } + }, + { + "id":"4397e513-80c6-429d-9e41-ac47a7001aca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T08:13:18.420Z", + "completed":"2016-04-01T08:13:18.420Z", + "new_balance":"4373.40", + "value":"-2.32" + } + }, + { + "id":"9f31b46b-1241-42dd-94bd-33e9ec9f4e6e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T19:52:37.782Z", + "completed":"2016-04-01T19:52:37.782Z", + "new_balance":"4368.25", + "value":"-5.15" + } + }, + { + "id":"7efb3abc-c493-424c-bf80-ae93fa89444e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T03:07:34.234Z", + "completed":"2016-04-02T03:07:34.234Z", + "new_balance":"4361.15", + "value":"-7.10" + } + }, + { + "id":"9d6e9064-3382-47a0-8a57-43aa62e74ed5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T19:09:58.834Z", + "completed":"2016-04-02T19:09:58.834Z", + "new_balance":"4351.46", + "value":"-9.69" + } + }, + { + "id":"6f9656c5-1278-41ee-9c57-ebba2fa5b264", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:30:37.308Z", + "completed":"2016-04-03T01:30:37.308Z", + "new_balance":"4359.40", + "value":"7.94" + } + }, + { + "id":"f1dcc775-0e21-49ca-a374-2a1cb5e83190", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T13:49:48.723Z", + "completed":"2016-04-03T13:49:48.723Z", + "new_balance":"4355.62", + "value":"-3.78" + } + }, + { + "id":"1af56314-318e-41ae-8064-5e64d973236f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T15:24:07.726Z", + "completed":"2016-04-03T15:24:07.726Z", + "new_balance":"4352.71", + "value":"-2.91" + } + }, + { + "id":"6f0066ed-c6d6-42e1-a093-4e76d8486127", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:17:48.846Z", + "completed":"2016-04-03T19:17:48.846Z", + "new_balance":"4365.05", + "value":"12.34" + } + }, + { + "id":"66205a53-a189-4d9d-ab10-b62335f6893b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:37:25.384Z", + "completed":"2016-04-03T19:37:25.384Z", + "new_balance":"4361.27", + "value":"-3.78" + } + }, + { + "id":"a7e8e5dc-dee4-4a39-bbf0-eaa937cbd236", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T12:36:32.724Z", + "completed":"2016-04-04T12:36:32.724Z", + "new_balance":"4354.08", + "value":"-7.19" + } + }, + { + "id":"76537bf1-6dac-4fe2-a24d-14b073c22e55", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T19:27:26.421Z", + "completed":"2016-04-05T19:27:26.421Z", + "new_balance":"4351.40", + "value":"-2.68" + } + }, + { + "id":"f1fa731f-8fe7-49c2-8bea-6d5f10cbd188", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T23:24:13.333Z", + "completed":"2016-04-05T23:24:13.333Z", + "new_balance":"4350.94", + "value":"-0.46" + } + }, + { + "id":"b62a0580-23a3-4732-9589-e9eaea916840", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T06:17:38.360Z", + "completed":"2016-04-07T06:17:38.360Z", + "new_balance":"4347.72", + "value":"-3.22" + } + }, + { + "id":"9922607e-31f0-45fb-9287-3fd1fa455c09", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T08:46:11.840Z", + "completed":"2016-04-07T08:46:11.840Z", + "new_balance":"4346.19", + "value":"-1.53" + } + }, + { + "id":"dd1b8d32-79ef-4274-aed8-c102fd44e56c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T07:23:45.547Z", + "completed":"2016-04-08T07:23:45.547Z", + "new_balance":"4345.29", + "value":"-0.90" + } + }, + { + "id":"356940e6-e8a1-4652-ac18-dd6c5e33eb5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T12:05:50.434Z", + "completed":"2016-04-09T12:05:50.434Z", + "new_balance":"4317.79", + "value":"-27.50" + } + }, + { + "id":"3df5e3bc-1975-4b1e-b987-f126c06fa324", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T13:56:54.653Z", + "completed":"2016-04-09T13:56:54.653Z", + "new_balance":"4317.35", + "value":"-0.44" + } + }, + { + "id":"af907227-3812-4394-8bae-6ff4b538a804", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T22:50:20.601Z", + "completed":"2016-04-09T22:50:20.601Z", + "new_balance":"4315.24", + "value":"-2.11" + } + }, + { + "id":"eeaa4ce4-ba35-4cf4-8ccb-dd8b66f26e6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T01:29:58.552Z", + "completed":"2016-04-10T01:29:58.552Z", + "new_balance":"4310.76", + "value":"-4.48" + } + }, + { + "id":"8f967935-14da-4ecd-824a-15ac86c60ba4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T06:47:13.026Z", + "completed":"2016-04-17T06:47:13.026Z", + "new_balance":"4309.65", + "value":"-1.11" + } + }, + { + "id":"408f34f3-8dac-4b8b-979d-2f8eadffed28", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T13:10:55.029Z", + "completed":"2016-04-18T13:10:55.029Z", + "new_balance":"4306.84", + "value":"-2.81" + } + }, + { + "id":"8965e0f9-eca2-48fb-8d8c-40270039ee2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T03:48:33.758Z", + "completed":"2016-04-25T03:48:33.758Z", + "new_balance":"4301.44", + "value":"-5.40" + } + }, + { + "id":"2a511d44-651c-44eb-a802-4102f33f0af9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T18:49:20.821Z", + "completed":"2016-04-26T18:49:20.821Z", + "new_balance":"4295.62", + "value":"-5.82" + } + }, + { + "id":"a7c65ca5-374b-4301-9af2-ac281374df8b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T19:05:12.804Z", + "completed":"2016-04-26T19:05:12.804Z", + "new_balance":"4295.18", + "value":"-0.44" + } + }, + { + "id":"332de2d6-1ddb-445e-8fdb-63ded0508d0c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T02:37:57.352Z", + "completed":"2016-05-02T02:37:57.352Z", + "new_balance":"4279.93", + "value":"-15.25" + } + }, + { + "id":"cbffc213-27ac-4f56-a1ed-25c2724a18f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:49:29.180Z", + "completed":"2016-05-02T03:49:29.180Z", + "new_balance":"4274.78", + "value":"-5.15" + } + }, + { + "id":"d8607443-265d-4e14-ab7d-9e93834e37ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T06:13:11.938Z", + "completed":"2016-05-02T06:13:11.938Z", + "new_balance":"4267.68", + "value":"-7.10" + } + }, + { + "id":"86737c57-1cec-464f-a143-b9b7f6564208", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T08:04:10.127Z", + "completed":"2016-05-02T08:04:10.127Z", + "new_balance":"4209.45", + "value":"-58.23" + } + }, + { + "id":"e9204b06-9196-4798-81f4-e026c370b8e8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T12:22:23.267Z", + "completed":"2016-05-02T12:22:23.267Z", + "new_balance":"4207.13", + "value":"-2.32" + } + }, + { + "id":"bb82d279-9920-427b-8ba0-07c75493aeb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T19:42:41.082Z", + "completed":"2016-05-02T19:42:41.082Z", + "new_balance":"4389.83", + "value":"182.70" + } + }, + { + "id":"70ae183a-dc43-48a3-ae63-51754d2be5ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T20:33:25.956Z", + "completed":"2016-05-02T20:33:25.956Z", + "new_balance":"4388.68", + "value":"-1.15" + } + }, + { + "id":"962e7f4f-e0c9-4647-804d-e6d2d8c98adf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T21:51:21.011Z", + "completed":"2016-05-02T21:51:21.011Z", + "new_balance":"4385.24", + "value":"-3.44" + } + }, + { + "id":"253c1edc-390d-4c5b-a108-ca732874c497", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T09:27:52.892Z", + "completed":"2016-05-03T09:27:52.892Z", + "new_balance":"4383.14", + "value":"-2.10" + } + }, + { + "id":"66099454-6b66-4a96-9245-b3d14aa75bf7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T13:39:03.598Z", + "completed":"2016-05-03T13:39:03.598Z", + "new_balance":"4380.64", + "value":"-2.50" + } + }, + { + "id":"1208332b-b58d-4405-bedd-0087ab98a398", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T05:32:41.449Z", + "completed":"2016-05-04T05:32:41.449Z", + "new_balance":"4378.24", + "value":"-2.40" + } + }, + { + "id":"3e2ae700-0d7b-4fdd-aa60-7d5b6b36194a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T11:54:21.117Z", + "completed":"2016-05-04T11:54:21.117Z", + "new_balance":"4374.91", + "value":"-3.33" + } + }, + { + "id":"c05a98fe-fc25-4b08-902d-41b214e9c5f6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T15:10:53.774Z", + "completed":"2016-05-05T15:10:53.774Z", + "new_balance":"4367.72", + "value":"-7.19" + } + }, + { + "id":"d95cf508-e7d9-4837-a24e-23221e80e54b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T06:05:17.505Z", + "completed":"2016-05-07T06:05:17.505Z", + "new_balance":"4364.69", + "value":"-3.03" + } + }, + { + "id":"04dc038b-d593-43e7-a36d-56cfb5014460", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T18:56:16.655Z", + "completed":"2016-05-07T18:56:16.655Z", + "new_balance":"4364.21", + "value":"-0.48" + } + }, + { + "id":"a8559b15-5f37-42a2-a113-c1c348c20035", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T09:05:02.904Z", + "completed":"2016-05-12T09:05:02.904Z", + "new_balance":"4361.76", + "value":"-2.45" + } + }, + { + "id":"472782c0-f848-4656-87c3-a4e945d22eb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T15:46:07.604Z", + "completed":"2016-05-12T15:46:07.604Z", + "new_balance":"4358.62", + "value":"-3.14" + } + }, + { + "id":"5eefc3fa-bbce-40de-a8e3-3327eb91573e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T00:52:45.471Z", + "completed":"2016-05-14T00:52:45.471Z", + "new_balance":"4355.14", + "value":"-3.48" + } + }, + { + "id":"d81cf60b-af33-4918-bde4-d2678afb6300", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T12:45:49.979Z", + "completed":"2016-05-16T12:45:49.979Z", + "new_balance":"4354.67", + "value":"-0.47" + } + }, + { + "id":"d3dc2c8a-52dd-470d-993d-159b36c5abba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T04:07:33.905Z", + "completed":"2016-05-18T04:07:33.905Z", + "new_balance":"4353.90", + "value":"-0.77" + } + }, + { + "id":"8a5c852e-3172-4d53-a273-42e29b760f45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T22:28:31.654Z", + "completed":"2016-05-20T22:28:31.654Z", + "new_balance":"4357.98", + "value":"4.08" + } + }, + { + "id":"838baacc-6b8e-4b8c-a063-79435a795f5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T10:20:27.581Z", + "completed":"2016-05-21T10:20:27.581Z", + "new_balance":"4351.55", + "value":"-6.43" + } + }, + { + "id":"568780ea-f50d-4224-800e-877d43c029c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T13:11:17.171Z", + "completed":"2016-05-21T13:11:17.171Z", + "new_balance":"4347.43", + "value":"-4.12" + } + }, + { + "id":"adfccccb-edee-4f5c-916f-d0292ee48a2c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T05:28:55.906Z", + "completed":"2016-05-27T05:28:55.906Z", + "new_balance":"4344.49", + "value":"-2.94" + } + }, + { + "id":"fbde5d17-64b0-485e-b312-82460f24f48e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:30:58.390Z", + "completed":"2016-05-27T15:30:58.390Z", + "new_balance":"4341.94", + "value":"-2.55" + } + }, + { + "id":"b117d8e9-b4a2-4349-b605-2cda7ce43028", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T05:17:38.023Z", + "completed":"2016-06-01T05:17:38.023Z", + "new_balance":"4338.50", + "value":"-3.44" + } + }, + { + "id":"d43287a1-480a-487c-b4b8-bad5d9a80975", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T08:56:45.435Z", + "completed":"2016-06-01T08:56:45.435Z", + "new_balance":"4280.27", + "value":"-58.23" + } + }, + { + "id":"98ee1c87-d637-4651-b32f-88c392c17620", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T09:29:18.892Z", + "completed":"2016-06-01T09:29:18.892Z", + "new_balance":"4275.12", + "value":"-5.15" + } + }, + { + "id":"7e998af1-bc51-49fb-81c2-60456dacca90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T16:02:58.333Z", + "completed":"2016-06-01T16:02:58.333Z", + "new_balance":"4457.82", + "value":"182.70" + } + }, + { + "id":"fd7fa2d4-5561-4c95-814e-3976a3b5edad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T18:39:03.772Z", + "completed":"2016-06-01T18:39:03.772Z", + "new_balance":"4442.57", + "value":"-15.25" + } + }, + { + "id":"c1aed9eb-860b-4a4f-9885-74aefcd2b4b1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T22:22:54.714Z", + "completed":"2016-06-01T22:22:54.714Z", + "new_balance":"4440.25", + "value":"-2.32" + } + }, + { + "id":"9e0564c9-1b6d-4462-a972-06ac3f047ffa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T06:45:41.971Z", + "completed":"2016-06-04T06:45:41.971Z", + "new_balance":"4433.15", + "value":"-7.10" + } + }, + { + "id":"d8aef822-26ff-415c-b26a-f26ba496b152", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T20:19:05.426Z", + "completed":"2016-06-04T20:19:05.426Z", + "new_balance":"4421.19", + "value":"-11.96" + } + }, + { + "id":"a210918c-cba9-40f3-b188-e92d060f00f0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T10:29:51.119Z", + "completed":"2016-06-11T10:29:51.119Z", + "new_balance":"4417.89", + "value":"-3.30" + } + }, + { + "id":"0f2ded31-76b3-4f5d-a33c-7dc9120f57aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T11:01:00.931Z", + "completed":"2016-06-12T11:01:00.931Z", + "new_balance":"4416.64", + "value":"-1.25" + } + }, + { + "id":"8a002e90-88f9-49ff-9767-ce338fc352de", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T06:09:25.244Z", + "completed":"2016-06-13T06:09:25.244Z", + "new_balance":"4409.34", + "value":"-7.30" + } + }, + { + "id":"b0513005-eb20-4449-b8c6-c8e8d1d6871f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T13:04:59.550Z", + "completed":"2016-06-13T13:04:59.550Z", + "new_balance":"4408.58", + "value":"-0.76" + } + }, + { + "id":"7c770673-8816-4f69-ab11-d122a0b7ffdb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T22:48:20.691Z", + "completed":"2016-06-16T22:48:20.691Z", + "new_balance":"4404.54", + "value":"-4.04" + } + }, + { + "id":"2e477ed1-490f-4a6c-898f-bcc28b956072", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T04:18:48.321Z", + "completed":"2016-06-17T04:18:48.321Z", + "new_balance":"4404.14", + "value":"-0.40" + } + }, + { + "id":"5f8eb652-d4e3-4533-9736-06547a51e994", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T15:38:46.730Z", + "completed":"2016-06-17T15:38:46.730Z", + "new_balance":"4396.84", + "value":"-7.30" + } + }, + { + "id":"a6256b2f-f6b3-4e9b-9b7c-bbe193c32d60", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T05:10:45.371Z", + "completed":"2016-06-18T05:10:45.371Z", + "new_balance":"4391.57", + "value":"-5.27" + } + }, + { + "id":"f7e6ab26-e95e-4792-ba34-ac8a84663c0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T01:19:39.548Z", + "completed":"2016-06-19T01:19:39.548Z", + "new_balance":"4386.30", + "value":"-5.27" + } + }, + { + "id":"6447971c-ce9c-4d1d-999a-6cfbac3b618b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T06:27:04.120Z", + "completed":"2016-06-19T06:27:04.120Z", + "new_balance":"4382.03", + "value":"-4.27" + } + }, + { + "id":"719eeec8-799d-418b-83f8-0a0bc84261ca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T11:50:57.320Z", + "completed":"2016-06-21T11:50:57.320Z", + "new_balance":"4375.71", + "value":"-6.32" + } + }, + { + "id":"563f4187-18fc-4e57-b356-83a9afc424fd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T18:03:23.101Z", + "completed":"2016-06-21T18:03:23.101Z", + "new_balance":"4375.17", + "value":"-0.54" + } + }, + { + "id":"da137011-1f12-4ab3-bd27-65aa090d576e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T17:59:32.741Z", + "completed":"2016-06-23T17:59:32.741Z", + "new_balance":"4374.40", + "value":"-0.77" + } + }, + { + "id":"b24004e3-2dc2-45bd-8aaa-c4eb9db81fa0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T20:12:42.368Z", + "completed":"2016-06-23T20:12:42.368Z", + "new_balance":"4372.15", + "value":"-2.25" + } + }, + { + "id":"d03f75ca-7fd9-4f2b-995f-997898505dc6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T19:46:40.897Z", + "completed":"2016-06-24T19:46:40.897Z", + "new_balance":"4367.89", + "value":"-4.26" + } + }, + { + "id":"46aa3d24-5b4d-40ec-9d0e-1285437cbcae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T20:54:09.750Z", + "completed":"2016-06-24T20:54:09.750Z", + "new_balance":"4366.84", + "value":"-1.05" + } + }, + { + "id":"1d3e8e8e-c442-4c50-bced-a0e9cdc380f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T01:48:16.565Z", + "completed":"2016-06-28T01:48:16.565Z", + "new_balance":"4366.32", + "value":"-0.52" + } + }, + { + "id":"76b68c1d-1545-4cec-a909-4a5f02ce2719", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T02:03:27.078Z", + "completed":"2016-06-28T02:03:27.078Z", + "new_balance":"4356.53", + "value":"-9.79" + } + }, + { + "id":"79338c8d-1166-4fb3-8038-13978590fdc2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T03:00:20.903Z", + "completed":"2016-06-28T03:00:20.903Z", + "new_balance":"4356.01", + "value":"-0.52" + } + }, + { + "id":"3886c706-a37e-4d21-9ec5-24c19c463dc0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T05:33:39.791Z", + "completed":"2016-06-28T05:33:39.791Z", + "new_balance":"4351.19", + "value":"-4.82" + } + }, + { + "id":"3a1c478d-e809-43fa-b1b4-f680781606fb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T04:09:25.562Z", + "completed":"2016-06-29T04:09:25.562Z", + "new_balance":"4346.03", + "value":"-5.16" + } + }, + { + "id":"8d01c690-626b-439c-94b7-f33eedd1f769", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T07:15:11.763Z", + "completed":"2016-06-29T07:15:11.763Z", + "new_balance":"4339.71", + "value":"-6.32" + } + }, + { + "id":"4bc9e84f-a78a-44c2-a638-92200d8b8ca1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T08:10:01.140Z", + "completed":"2016-06-29T08:10:01.140Z", + "new_balance":"4335.56", + "value":"-4.15" + } + }, + { + "id":"490d583f-5a4a-4b6b-916a-658fb4f2f8b2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T13:57:02.651Z", + "completed":"2016-06-29T13:57:02.651Z", + "new_balance":"4334.80", + "value":"-0.76" + } + }, + { + "id":"0f474c92-0f80-4688-a0cf-200c3f1c9ff1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T16:55:06.631Z", + "completed":"2016-06-29T16:55:06.631Z", + "new_balance":"4327.84", + "value":"-6.96" + } + }, + { + "id":"9c7cfd70-5dbd-44e3-9438-bc9b9dce89a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:11:11.321Z", + "completed":"2016-06-29T21:11:11.321Z", + "new_balance":"4323.55", + "value":"-4.29" + } + }, + { + "id":"efcd3d67-27b0-455d-ab51-040c946ef8d8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T06:57:37.284Z", + "completed":"2016-06-30T06:57:37.284Z", + "new_balance":"4320.00", + "value":"-3.55" + } + }, + { + "id":"7d090898-6156-409d-8fa9-df5c6f2b0443", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T11:05:01.543Z", + "completed":"2016-06-30T11:05:01.543Z", + "new_balance":"4319.09", + "value":"-0.91" + } + }, + { + "id":"87eb3f6a-68fb-4456-ad2b-4bd59da46cb8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T19:04:32.148Z", + "completed":"2016-06-30T19:04:32.148Z", + "new_balance":"4314.48", + "value":"-4.61" + } + }, + { + "id":"56be4f2f-e6ff-4b8f-8721-16a459c4e7c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T22:32:53.589Z", + "completed":"2016-06-30T22:32:53.589Z", + "new_balance":"4313.89", + "value":"-0.59" + } + }, + { + "id":"20222ae5-de98-4e39-9d3e-009e13346c41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T01:46:33.472Z", + "completed":"2016-07-01T01:46:33.472Z", + "new_balance":"4310.45", + "value":"-3.44" + } + }, + { + "id":"cf2429c5-9d8f-40ac-a6be-a12a8ac1b81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:50:30.154Z", + "completed":"2016-07-01T02:50:30.154Z", + "new_balance":"4282.95", + "value":"-27.50" + } + }, + { + "id":"45cae516-3a15-49a7-90de-ea7d94ffc2d8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T05:38:55.583Z", + "completed":"2016-07-01T05:38:55.583Z", + "new_balance":"4279.51", + "value":"-3.44" + } + }, + { + "id":"41e4132c-7ca6-4d91-9284-d04038e3d95c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T06:55:35.442Z", + "completed":"2016-07-01T06:55:35.442Z", + "new_balance":"4264.26", + "value":"-15.25" + } + }, + { + "id":"d62d7bbc-43ef-47bc-8e27-3facf63763e5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T07:30:40.058Z", + "completed":"2016-07-01T07:30:40.058Z", + "new_balance":"4206.03", + "value":"-58.23" + } + }, + { + "id":"174abdda-9475-4b6c-af85-27b1396208fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T09:30:30.110Z", + "completed":"2016-07-01T09:30:30.110Z", + "new_balance":"4204.72", + "value":"-1.31" + } + }, + { + "id":"5b8abdce-cf49-4034-bc0a-7310e4cdf2ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T11:41:22.391Z", + "completed":"2016-07-01T11:41:22.391Z", + "new_balance":"4201.66", + "value":"-3.06" + } + }, + { + "id":"c52c5127-b865-4327-b6dd-d12b511e480a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T15:20:07.037Z", + "completed":"2016-07-01T15:20:07.037Z", + "new_balance":"4196.51", + "value":"-5.15" + } + }, + { + "id":"7315bce3-1780-4f1c-811e-491697162a5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T16:52:47.278Z", + "completed":"2016-07-01T16:52:47.278Z", + "new_balance":"4193.77", + "value":"-2.74" + } + }, + { + "id":"0fb5e5bf-1aad-4084-b345-ea10bc84cac8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T23:18:17.030Z", + "completed":"2016-07-01T23:18:17.030Z", + "new_balance":"4191.45", + "value":"-2.32" + } + }, + { + "id":"9f22269f-34a7-4bfb-8334-85d64f4521e4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T00:28:26.133Z", + "completed":"2016-07-02T00:28:26.133Z", + "new_balance":"4184.35", + "value":"-7.10" + } + }, + { + "id":"481e6f07-351c-40f6-865f-2eec3ed2e667", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T09:10:38.125Z", + "completed":"2016-07-03T09:10:38.125Z", + "new_balance":"4173.88", + "value":"-10.47" + } + }, + { + "id":"c0d77c8b-d849-4c4e-96f6-3e1aef44c951", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T06:54:52.143Z", + "completed":"2016-07-04T06:54:52.143Z", + "new_balance":"4172.10", + "value":"-1.78" + } + }, + { + "id":"d23a041f-3ed5-458b-94cf-2b909f98ce83", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T13:47:51.844Z", + "completed":"2016-07-05T13:47:51.844Z", + "new_balance":"4164.91", + "value":"-7.19" + } + }, + { + "id":"11f04da2-a72d-4d06-beb0-dc467c9c3518", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T17:05:25.153Z", + "completed":"2016-07-05T17:05:25.153Z", + "new_balance":"4155.27", + "value":"-9.64" + } + }, + { + "id":"1bf310d8-549f-4c32-bd98-ed7d9f1148da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T22:44:15.834Z", + "completed":"2016-07-06T22:44:15.834Z", + "new_balance":"4154.81", + "value":"-0.46" + } + }, + { + "id":"c5526360-56e6-4d3c-9ee3-08352763f6b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T22:20:45.316Z", + "completed":"2016-07-11T22:20:45.316Z", + "new_balance":"4152.13", + "value":"-2.68" + } + }, + { + "id":"edff73fa-2873-4d54-b587-3c623cf9139a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T18:39:21.839Z", + "completed":"2016-07-12T18:39:21.839Z", + "new_balance":"4148.91", + "value":"-3.22" + } + }, + { + "id":"bec6a1ae-931f-448e-9793-a3be9bca0423", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T23:26:22.230Z", + "completed":"2016-07-14T23:26:22.230Z", + "new_balance":"4147.38", + "value":"-1.53" + } + }, + { + "id":"520a227a-d0b9-4e11-9b02-6095b5afd393", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T05:32:04.393Z", + "completed":"2016-07-16T05:32:04.393Z", + "new_balance":"4146.48", + "value":"-0.90" + } + }, + { + "id":"f6d3e3f2-99b2-4fd4-b115-393da97fa57b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T05:29:06.045Z", + "completed":"2016-07-18T05:29:06.045Z", + "new_balance":"4144.37", + "value":"-2.11" + } + }, + { + "id":"9c18f235-ceca-41f1-b36d-fb545f2a8a3d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T00:38:51.450Z", + "completed":"2016-07-20T00:38:51.450Z", + "new_balance":"4143.93", + "value":"-0.44" + } + }, + { + "id":"81c7c65d-dbf0-4643-9122-5f6cf5dcabd6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T19:43:13.985Z", + "completed":"2016-07-20T19:43:13.985Z", + "new_balance":"4116.43", + "value":"-27.50" + } + }, + { + "id":"a4fed92d-b47b-42f7-90ee-1ae46b6fbdb5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T18:10:49.531Z", + "completed":"2016-07-24T18:10:49.531Z", + "new_balance":"4115.32", + "value":"-1.11" + } + }, + { + "id":"b33f92f4-3438-4de0-9336-2667a137a81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T19:42:04.061Z", + "completed":"2016-07-24T19:42:04.061Z", + "new_balance":"4110.84", + "value":"-4.48" + } + }, + { + "id":"c9781c9f-bf10-4ca4-aec0-a7c84091bb53", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T23:36:39.712Z", + "completed":"2016-07-25T23:36:39.712Z", + "new_balance":"4108.03", + "value":"-2.81" + } + }, + { + "id":"c63d7e03-8de0-447b-b414-7d86d45eb92e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T23:45:46.684Z", + "completed":"2016-07-25T23:45:46.684Z", + "new_balance":"4102.63", + "value":"-5.40" + } + }, + { + "id":"0a9ffdae-fa9b-4f0f-a1d9-3e42c134a186", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T17:13:20.537Z", + "completed":"2016-07-26T17:13:20.537Z", + "new_balance":"4096.81", + "value":"-5.82" + } + }, + { + "id":"7c0b76b3-e428-42b8-810a-24910b974a97", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T05:23:54.961Z", + "completed":"2016-07-27T05:23:54.961Z", + "new_balance":"4096.37", + "value":"-0.44" + } + }, + { + "id":"00417909-a507-4562-a049-d64f555d0593", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T00:16:34.045Z", + "completed":"2016-08-01T00:16:34.045Z", + "new_balance":"4279.07", + "value":"182.70" + } + }, + { + "id":"fe98126d-26e4-4b09-a9e2-279699588a25", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T02:28:06.661Z", + "completed":"2016-08-01T02:28:06.661Z", + "new_balance":"4276.75", + "value":"-2.32" + } + }, + { + "id":"3458c90e-07bf-4f2d-af6d-3654672b6a6c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T15:28:49.699Z", + "completed":"2016-08-01T15:28:49.699Z", + "new_balance":"4271.60", + "value":"-5.15" + } + }, + { + "id":"8822de60-e807-434f-98cb-27b18f323ce5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T18:56:55.611Z", + "completed":"2016-08-01T18:56:55.611Z", + "new_balance":"4256.35", + "value":"-15.25" + } + }, + { + "id":"27458caf-5ffb-43f5-bce2-d5524fb0559c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T21:34:00.319Z", + "completed":"2016-08-01T21:34:00.319Z", + "new_balance":"4198.12", + "value":"-58.23" + } + }, + { + "id":"c9020247-ee93-4c19-bfc1-52cba0d070b3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T22:51:55.453Z", + "completed":"2016-08-01T22:51:55.453Z", + "new_balance":"4194.68", + "value":"-3.44" + } + }, + { + "id":"0957a2c4-ad53-4e11-959a-b864cfe9ce36", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T06:13:48.540Z", + "completed":"2016-08-02T06:13:48.540Z", + "new_balance":"4187.58", + "value":"-7.10" + } + }, + { + "id":"da51d4c2-e6e9-43a8-ae66-5159056d1630", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T20:19:25.847Z", + "completed":"2016-08-03T20:19:25.847Z", + "new_balance":"4187.12", + "value":"-0.46" + } + }, + { + "id":"79fb5b88-5c6e-4fc3-be85-8329bf453df9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T02:48:56.088Z", + "completed":"2016-08-04T02:48:56.088Z", + "new_balance":"4184.20", + "value":"-2.92" + } + }, + { + "id":"f11d4f84-5b8f-47fa-b40d-cfe5e518feef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T16:10:35.600Z", + "completed":"2016-08-07T16:10:35.600Z", + "new_balance":"4181.70", + "value":"-2.50" + } + }, + { + "id":"38515908-cce4-4fc8-8ef5-e5b34e34e8fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T14:38:14.502Z", + "completed":"2016-08-09T14:38:14.502Z", + "new_balance":"4178.37", + "value":"-3.33" + } + }, + { + "id":"dc281291-5db8-4d64-a1a3-357a9515cc96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T16:54:31.679Z", + "completed":"2016-08-09T16:54:31.679Z", + "new_balance":"4175.97", + "value":"-2.40" + } + }, + { + "id":"b062628a-b437-4a70-8c5c-7f9e749f6c5b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T17:10:35.211Z", + "completed":"2016-08-10T17:10:35.211Z", + "new_balance":"4168.78", + "value":"-7.19" + } + }, + { + "id":"cd578960-89fb-4bb8-9cb7-fb3a4f28cd55", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T23:32:06.219Z", + "completed":"2016-08-14T23:32:06.219Z", + "new_balance":"4168.30", + "value":"-0.48" + } + }, + { + "id":"ffdf762c-2809-40b5-afad-72fd358363f8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T02:22:11.222Z", + "completed":"2016-08-15T02:22:11.222Z", + "new_balance":"4165.08", + "value":"-3.22" + } + }, + { + "id":"44c644d8-6a4a-411a-92e9-f572344a01eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T12:45:47.932Z", + "completed":"2016-08-15T12:45:47.932Z", + "new_balance":"4162.05", + "value":"-3.03" + } + }, + { + "id":"d4821220-76b0-480c-b48a-fc73430176b9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T23:53:47.783Z", + "completed":"2016-08-16T23:53:47.783Z", + "new_balance":"4158.91", + "value":"-3.14" + } + }, + { + "id":"882a5f4b-d4fd-4a59-8fbc-4608fa932ab9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T22:11:28.058Z", + "completed":"2016-08-17T22:11:28.058Z", + "new_balance":"4155.43", + "value":"-3.48" + } + }, + { + "id":"6111bfe4-2a14-4486-b1cc-35c1b67d5521", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T19:43:44.127Z", + "completed":"2016-08-20T19:43:44.127Z", + "new_balance":"4154.66", + "value":"-0.77" + } + }, + { + "id":"3988d988-0148-4902-835a-40948056d12f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T19:53:17.121Z", + "completed":"2016-08-20T19:53:17.121Z", + "new_balance":"4154.19", + "value":"-0.47" + } + }, + { + "id":"c520594a-7019-4b3a-aaf6-8c8accb025b6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T13:52:28.812Z", + "completed":"2016-08-22T13:52:28.812Z", + "new_balance":"4158.27", + "value":"4.08" + } + }, + { + "id":"1cb77d6e-4823-4846-95a8-abe5225f1cc3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T03:37:23.902Z", + "completed":"2016-08-23T03:37:23.902Z", + "new_balance":"4151.84", + "value":"-6.43" + } + }, + { + "id":"8fc0b286-c7cc-4704-90f5-433e5e589690", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T07:18:46.497Z", + "completed":"2016-08-23T07:18:46.497Z", + "new_balance":"4147.72", + "value":"-4.12" + } + }, + { + "id":"39e07b73-930b-4da1-9210-ff18b357f8d5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T12:16:27.804Z", + "completed":"2016-08-28T12:16:27.804Z", + "new_balance":"4144.78", + "value":"-2.94" + } + }, + { + "id":"f6dd2504-2815-46df-b472-a86c59016b27", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T14:52:38.654Z", + "completed":"2016-08-28T14:52:38.654Z", + "new_balance":"4142.23", + "value":"-2.55" + } + }, + { + "id":"ea17e71e-e5cb-4745-abe8-ea3e030b8715", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T02:33:36.140Z", + "completed":"2016-09-01T02:33:36.140Z", + "new_balance":"4126.98", + "value":"-15.25" + } + }, + { + "id":"64b3b604-2268-4f19-b893-64f6f44cf4d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T04:21:21.197Z", + "completed":"2016-09-01T04:21:21.197Z", + "new_balance":"4068.75", + "value":"-58.23" + } + }, + { + "id":"d35d7655-bb09-43f3-ac08-b68fc534ce4d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:28:23.071Z", + "completed":"2016-09-01T04:28:23.071Z", + "new_balance":"4251.45", + "value":"182.70" + } + }, + { + "id":"f7a65141-4403-4f9a-87cc-0522ff4cb464", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T07:23:23.598Z", + "completed":"2016-09-01T07:23:23.598Z", + "new_balance":"4248.01", + "value":"-3.44" + } + }, + { + "id":"ac36de63-c27b-4284-b961-8a14a3907bbb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T11:11:45.734Z", + "completed":"2016-09-01T11:11:45.734Z", + "new_balance":"4242.86", + "value":"-5.15" + } + }, + { + "id":"9dcd3c5f-634d-4652-9817-f795abc37fe2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T15:57:14.741Z", + "completed":"2016-09-01T15:57:14.741Z", + "new_balance":"4240.54", + "value":"-2.32" + } + }, + { + "id":"ef6e0cce-baf6-4075-a6ec-ca5b319e3b59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T14:15:31.484Z", + "completed":"2016-09-02T14:15:31.484Z", + "new_balance":"4233.44", + "value":"-7.10" + } + }, + { + "id":"38814690-4f99-4709-8cea-c52fc878f521", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T08:53:10.117Z", + "completed":"2016-09-04T08:53:10.117Z", + "new_balance":"4226.14", + "value":"-7.30" + } + }, + { + "id":"a1185cdd-f7d9-4afd-8589-a3bd5b1ba6c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T09:32:20.567Z", + "completed":"2016-09-04T09:32:20.567Z", + "new_balance":"4224.89", + "value":"-1.25" + } + }, + { + "id":"be81777e-af4b-4138-ba57-c78b6dc2f157", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T10:16:12.423Z", + "completed":"2016-09-04T10:16:12.423Z", + "new_balance":"4221.59", + "value":"-3.30" + } + }, + { + "id":"5b9247f6-060e-4229-90bb-296e8a8936c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T14:01:50.788Z", + "completed":"2016-09-04T14:01:50.788Z", + "new_balance":"4220.83", + "value":"-0.76" + } + }, + { + "id":"9d5a30f5-20e8-4dfd-8aba-12e3364f227b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T06:31:41.602Z", + "completed":"2016-09-05T06:31:41.602Z", + "new_balance":"4220.43", + "value":"-0.40" + } + }, + { + "id":"08c17992-4b16-488e-bea4-bc2ae541d0f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T14:06:57.075Z", + "completed":"2016-09-05T14:06:57.075Z", + "new_balance":"4216.39", + "value":"-4.04" + } + }, + { + "id":"7b6047e1-01b1-4304-b1a5-ce3368531958", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T02:39:19.300Z", + "completed":"2016-09-06T02:39:19.300Z", + "new_balance":"4211.12", + "value":"-5.27" + } + }, + { + "id":"d6dbf2c6-a6d3-402d-b6a7-11b7e6679f7e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T15:41:47.858Z", + "completed":"2016-09-06T15:41:47.858Z", + "new_balance":"4203.82", + "value":"-7.30" + } + }, + { + "id":"875b1b8a-4518-465c-b694-fe0017f064ec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T05:07:06.371Z", + "completed":"2016-09-08T05:07:06.371Z", + "new_balance":"4199.55", + "value":"-4.27" + } + }, + { + "id":"f553811a-71d4-4d93-b35f-fadb6a35ef9e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T10:37:10.106Z", + "completed":"2016-09-08T10:37:10.106Z", + "new_balance":"4194.28", + "value":"-5.27" + } + }, + { + "id":"61104573-3007-44fc-9ada-e4e3a5765dfc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T06:46:31.225Z", + "completed":"2016-09-10T06:46:31.225Z", + "new_balance":"4193.74", + "value":"-0.54" + } + }, + { + "id":"ae7a6074-30e5-48f3-ae63-b5154124a413", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T22:38:21.641Z", + "completed":"2016-09-10T22:38:21.641Z", + "new_balance":"4187.42", + "value":"-6.32" + } + }, + { + "id":"f1a316af-aa88-4b1e-807e-a95b7f7d835d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T06:36:24.951Z", + "completed":"2016-09-11T06:36:24.951Z", + "new_balance":"4186.65", + "value":"-0.77" + } + }, + { + "id":"a8534f6f-a9ba-416f-b5d3-cd841c69f4fe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T10:16:50.364Z", + "completed":"2016-09-12T10:16:50.364Z", + "new_balance":"4184.40", + "value":"-2.25" + } + }, + { + "id":"2ad289a0-4fcf-4fa9-a8fd-277fcaaa7a61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T22:04:19.262Z", + "completed":"2016-09-12T22:04:19.262Z", + "new_balance":"4183.35", + "value":"-1.05" + } + }, + { + "id":"00036a71-4365-471d-a0dc-f54bc7837d92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T07:38:13.963Z", + "completed":"2016-09-13T07:38:13.963Z", + "new_balance":"4179.09", + "value":"-4.26" + } + }, + { + "id":"4e9d5afc-2100-4472-aacc-732f474a984b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T01:04:52.976Z", + "completed":"2016-09-16T01:04:52.976Z", + "new_balance":"4178.57", + "value":"-0.52" + } + }, + { + "id":"21aa0be0-e3a3-4c96-b4f7-689b2c70c89d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T13:37:29.894Z", + "completed":"2016-09-17T13:37:29.894Z", + "new_balance":"4168.78", + "value":"-9.79" + } + }, + { + "id":"b1b52c45-b26f-4305-815b-ca4093f499ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T19:52:34.749Z", + "completed":"2016-09-17T19:52:34.749Z", + "new_balance":"4163.96", + "value":"-4.82" + } + }, + { + "id":"c4765dc8-ac70-431c-ad70-ba3cc07c8de3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T17:31:39.237Z", + "completed":"2016-09-18T17:31:39.237Z", + "new_balance":"4163.44", + "value":"-0.52" + } + }, + { + "id":"6d12c92d-c753-4b73-8a28-7461de0b88df", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T13:10:45.686Z", + "completed":"2016-09-19T13:10:45.686Z", + "new_balance":"4159.15", + "value":"-4.29" + } + }, + { + "id":"0faeb45d-8e8b-42ac-8ef5-defdf5bbc387", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T18:36:17.944Z", + "completed":"2016-09-19T18:36:17.944Z", + "new_balance":"4155.00", + "value":"-4.15" + } + }, + { + "id":"f806b0e1-982a-47ef-9538-bad22885b402", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T21:50:00.483Z", + "completed":"2016-09-19T21:50:00.483Z", + "new_balance":"4148.68", + "value":"-6.32" + } + }, + { + "id":"eb323758-f664-4256-9fcc-865615ff1aee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T01:37:57.845Z", + "completed":"2016-09-20T01:37:57.845Z", + "new_balance":"4141.72", + "value":"-6.96" + } + }, + { + "id":"94ef2a40-9e7b-447c-956b-6bea268f2a88", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T07:44:18.377Z", + "completed":"2016-09-20T07:44:18.377Z", + "new_balance":"4136.56", + "value":"-5.16" + } + }, + { + "id":"7e0eedc3-b1e7-4df5-9425-a9b9811e5e79", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T08:26:35.448Z", + "completed":"2016-09-21T08:26:35.448Z", + "new_balance":"4135.97", + "value":"-0.59" + } + }, + { + "id":"ad551813-3bba-498c-bf8a-1b21ce73eca7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T20:21:08.873Z", + "completed":"2016-09-21T20:21:08.873Z", + "new_balance":"4135.21", + "value":"-0.76" + } + }, + { + "id":"6517ffa7-db28-42a6-872b-dbc8771e1dbe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T17:23:58.461Z", + "completed":"2016-09-23T17:23:58.461Z", + "new_balance":"4134.30", + "value":"-0.91" + } + }, + { + "id":"758848f5-56b1-48f3-96dd-11f0e15752aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T19:53:56.787Z", + "completed":"2016-09-23T19:53:56.787Z", + "new_balance":"4129.69", + "value":"-4.61" + } + }, + { + "id":"08b59a6f-314c-4117-a405-aba3c9df5fdf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T23:07:02.525Z", + "completed":"2016-09-24T23:07:02.525Z", + "new_balance":"4126.14", + "value":"-3.55" + } + }, + { + "id":"ac32c320-55af-42b3-84d5-b5eb568ac599", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T01:15:21.142Z", + "completed":"2016-09-25T01:15:21.142Z", + "new_balance":"4124.83", + "value":"-1.31" + } + }, + { + "id":"83e27070-13b5-4c90-aeb8-90dc813b460a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T13:21:13.816Z", + "completed":"2016-09-25T13:21:13.816Z", + "new_balance":"4121.77", + "value":"-3.06" + } + }, + { + "id":"40b536b8-00ae-41ed-bb71-c541bc66c621", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T17:35:21.790Z", + "completed":"2016-09-27T17:35:21.790Z", + "new_balance":"4094.27", + "value":"-27.50" + } + }, + { + "id":"59d695a9-ef23-4f2b-b82b-68af7cf0b19b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T15:56:26.683Z", + "completed":"2016-09-29T15:56:26.683Z", + "new_balance":"4091.53", + "value":"-2.74" + } + }, + { + "id":"955d336c-93b6-4146-b4e3-94fd4943fed9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T02:11:54.461Z", + "completed":"2016-10-01T02:11:54.461Z", + "new_balance":"4086.38", + "value":"-5.15" + } + }, + { + "id":"7f3ebb31-c67e-40e7-a5a1-f16707ad65c2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T05:38:58.878Z", + "completed":"2016-10-01T05:38:58.878Z", + "new_balance":"4028.15", + "value":"-58.23" + } + }, + { + "id":"94881e10-9639-48d5-922d-3c00600c81de", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T18:12:35.423Z", + "completed":"2016-10-01T18:12:35.423Z", + "new_balance":"4025.83", + "value":"-2.32" + } + }, + { + "id":"f09b661f-e632-4558-976c-21c6abb46ead", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T23:53:37.526Z", + "completed":"2016-10-01T23:53:37.526Z", + "new_balance":"4010.58", + "value":"-15.25" + } + }, + { + "id":"8abf9df5-a8d8-466d-95e2-a0d1c72f54f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T05:40:00.169Z", + "completed":"2016-10-02T05:40:00.169Z", + "new_balance":"4000.89", + "value":"-9.69" + } + }, + { + "id":"1f20e6dd-cb6a-4a5d-9f56-fa8c1c3d2b28", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T13:37:55.855Z", + "completed":"2016-10-02T13:37:55.855Z", + "new_balance":"3993.79", + "value":"-7.10" + } + }, + { + "id":"b2608774-79d4-4f63-a96a-c796745b1331", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T00:09:45.629Z", + "completed":"2016-10-03T00:09:45.629Z", + "new_balance":"3966.29", + "value":"-27.50" + } + }, + { + "id":"51b3ac38-0933-414a-b125-cec53243b37f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T06:06:48.589Z", + "completed":"2016-10-03T06:06:48.589Z", + "new_balance":"3909.48", + "value":"-56.81" + } + }, + { + "id":"1d330484-8560-442e-ac02-4e040904e9b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:52:50.973Z", + "completed":"2016-10-03T08:52:50.973Z", + "new_balance":"3905.70", + "value":"-3.78" + } + }, + { + "id":"f649df20-bf3d-4072-a69c-8464099eefec", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T17:00:25.385Z", + "completed":"2016-10-03T17:00:25.385Z", + "new_balance":"3892.60", + "value":"-13.10" + } + }, + { + "id":"2e7d0fb4-d5c9-4405-9ce7-cd2345ae8021", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T21:13:30.453Z", + "completed":"2016-10-03T21:13:30.453Z", + "new_balance":"3889.69", + "value":"-2.91" + } + }, + { + "id":"2c5c03c4-e42f-4c88-a9e8-8ce78bd1a1fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T18:04:22.841Z", + "completed":"2016-10-04T18:04:22.841Z", + "new_balance":"3882.50", + "value":"-7.19" + } + }, + { + "id":"216ed46d-d3c3-4d1d-9b0c-92e333243253", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T03:47:06.535Z", + "completed":"2016-10-05T03:47:06.535Z", + "new_balance":"3879.82", + "value":"-2.68" + } + }, + { + "id":"c2fd23f9-ee6a-48b0-b597-3c97143e9210", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T21:56:15.153Z", + "completed":"2016-10-05T21:56:15.153Z", + "new_balance":"3879.36", + "value":"-0.46" + } + }, + { + "id":"8c2e9bb3-08d2-4738-b9da-bc8d2130bd8c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T05:23:04.228Z", + "completed":"2016-10-07T05:23:04.228Z", + "new_balance":"3877.83", + "value":"-1.53" + } + }, + { + "id":"20db1b99-d5c6-4b79-a9b5-98487314b24e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T09:16:44.831Z", + "completed":"2016-10-07T09:16:44.831Z", + "new_balance":"3874.61", + "value":"-3.22" + } + }, + { + "id":"cfe92550-11ae-449a-9aa5-d6eeb949b9ca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T17:37:50.292Z", + "completed":"2016-10-08T17:37:50.292Z", + "new_balance":"3873.71", + "value":"-0.90" + } + }, + { + "id":"b0fc0205-50a0-4b16-bb9c-41db57fb35be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T17:52:26.321Z", + "completed":"2016-10-09T17:52:26.321Z", + "new_balance":"3871.60", + "value":"-2.11" + } + }, + { + "id":"b588c642-ff5e-4853-9309-72b66163e48c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T18:41:59.520Z", + "completed":"2016-10-09T18:41:59.520Z", + "new_balance":"3844.10", + "value":"-27.50" + } + }, + { + "id":"1ad95331-cf7f-41c1-9cf2-6bbd4e6e6127", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T19:21:25.981Z", + "completed":"2016-10-09T19:21:25.981Z", + "new_balance":"3843.66", + "value":"-0.44" + } + }, + { + "id":"613327ae-a53f-4b02-8173-3eb654be19d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T19:09:29.357Z", + "completed":"2016-10-10T19:09:29.357Z", + "new_balance":"3839.18", + "value":"-4.48" + } + }, + { + "id":"5aebf025-e1bb-4e1d-b115-4fb8f921f549", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T01:05:54.730Z", + "completed":"2016-10-17T01:05:54.730Z", + "new_balance":"3838.07", + "value":"-1.11" + } + }, + { + "id":"3106e33e-869f-4467-86e8-4dbdfe72b92b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T03:16:12.648Z", + "completed":"2016-10-18T03:16:12.648Z", + "new_balance":"3835.26", + "value":"-2.81" + } + }, + { + "id":"a8b9da2a-23e7-4ee8-8bc1-7406bac61de4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T09:51:07.603Z", + "completed":"2016-10-25T09:51:07.603Z", + "new_balance":"3829.86", + "value":"-5.40" + } + }, + { + "id":"07f34749-6f74-4000-b116-9ab38bf744da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T01:00:33.283Z", + "completed":"2016-10-26T01:00:33.283Z", + "new_balance":"3824.04", + "value":"-5.82" + } + }, + { + "id":"5b9da2bd-f4a8-4f0f-9857-34cff1abab70", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T08:25:36.204Z", + "completed":"2016-10-26T08:25:36.204Z", + "new_balance":"3823.60", + "value":"-0.44" + } + }, + { + "id":"8aba8a42-1c43-47f6-bd7f-127b5f04cf17", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T01:06:31.055Z", + "completed":"2016-11-02T01:06:31.055Z", + "new_balance":"4006.30", + "value":"182.70" + } + }, + { + "id":"b7b36914-245d-4ab8-8a11-c3296f940833", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T04:52:44.530Z", + "completed":"2016-11-02T04:52:44.530Z", + "new_balance":"3948.07", + "value":"-58.23" + } + }, + { + "id":"029209a0-51d8-4200-b0d4-c220b34a2841", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T08:09:03.697Z", + "completed":"2016-11-02T08:09:03.697Z", + "new_balance":"3940.97", + "value":"-7.10" + } + }, + { + "id":"1ff200c7-0037-427a-a79d-34f8748ba666", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T09:57:16.028Z", + "completed":"2016-11-02T09:57:16.028Z", + "new_balance":"3938.65", + "value":"-2.32" + } + }, + { + "id":"214c06fb-145a-482a-aded-062ef9968d2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T11:50:25.903Z", + "completed":"2016-11-02T11:50:25.903Z", + "new_balance":"3935.21", + "value":"-3.44" + } + }, + { + "id":"90fb55e5-1806-471e-9bf6-7d87527d2d59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T11:52:42.170Z", + "completed":"2016-11-02T11:52:42.170Z", + "new_balance":"3934.06", + "value":"-1.15" + } + }, + { + "id":"19f38dde-2782-4627-b40b-12e7d1e074bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T19:07:51.914Z", + "completed":"2016-11-02T19:07:51.914Z", + "new_balance":"3928.91", + "value":"-5.15" + } + }, + { + "id":"a37a8899-8b4d-44b4-8926-b70a00d79b8f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T20:48:23.007Z", + "completed":"2016-11-02T20:48:23.007Z", + "new_balance":"3913.66", + "value":"-15.25" + } + }, + { + "id":"c3e7050d-c089-4935-81c7-9d0f583bfd5e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T21:12:42.369Z", + "completed":"2016-11-06T21:12:42.369Z", + "new_balance":"3911.56", + "value":"-2.10" + } + }, + { + "id":"92e68a5e-d8df-44d3-a473-a92b1318907c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T00:17:38.721Z", + "completed":"2016-11-07T00:17:38.721Z", + "new_balance":"3909.06", + "value":"-2.50" + } + }, + { + "id":"70438f20-5fcf-44fc-a079-969aa46db855", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T01:41:51.468Z", + "completed":"2016-11-07T01:41:51.468Z", + "new_balance":"3906.66", + "value":"-2.40" + } + }, + { + "id":"6c2f3fbf-0d39-447b-8fff-e840fef740ad", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T21:31:41.247Z", + "completed":"2016-11-07T21:31:41.247Z", + "new_balance":"3903.33", + "value":"-3.33" + } + }, + { + "id":"e67a2a43-ccdb-4383-aa39-3139a9bb660e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T04:43:06.950Z", + "completed":"2016-11-09T04:43:06.950Z", + "new_balance":"3896.14", + "value":"-7.19" + } + }, + { + "id":"118ab8bc-9204-4993-9fcf-46ad0ec62640", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T07:29:08.865Z", + "completed":"2016-11-09T07:29:08.865Z", + "new_balance":"3895.66", + "value":"-0.48" + } + }, + { + "id":"0a008a67-821a-4b7c-a4c5-a073cc92af00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T03:16:05.924Z", + "completed":"2016-11-12T03:16:05.924Z", + "new_balance":"3892.63", + "value":"-3.03" + } + }, + { + "id":"c6b88a11-09ce-4379-a05f-2b52f35f8b5c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T14:20:21.118Z", + "completed":"2016-11-12T14:20:21.118Z", + "new_balance":"3890.18", + "value":"-2.45" + } + }, + { + "id":"34318b37-8534-4eb0-befd-78a1c6557900", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T12:37:20.022Z", + "completed":"2016-11-14T12:37:20.022Z", + "new_balance":"3887.04", + "value":"-3.14" + } + }, + { + "id":"e584f3ca-5066-4d6b-810b-15af8c13cf98", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T14:30:42.152Z", + "completed":"2016-11-14T14:30:42.152Z", + "new_balance":"3883.56", + "value":"-3.48" + } + }, + { + "id":"f1a659f7-7322-4280-abc0-bc73c15183fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T13:08:43.562Z", + "completed":"2016-11-16T13:08:43.562Z", + "new_balance":"3883.09", + "value":"-0.47" + } + }, + { + "id":"5e4cea6c-aa96-435b-af7f-cb43a18843d6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T13:23:17.976Z", + "completed":"2016-11-18T13:23:17.976Z", + "new_balance":"3882.32", + "value":"-0.77" + } + }, + { + "id":"c4e70f3a-0d8a-4d55-be82-e1c904fc2540", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T10:40:11.364Z", + "completed":"2016-11-20T10:40:11.364Z", + "new_balance":"3886.40", + "value":"4.08" + } + }, + { + "id":"3aebc664-1c3f-405d-b355-804e8debe888", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T01:59:38.397Z", + "completed":"2016-11-21T01:59:38.397Z", + "new_balance":"3882.28", + "value":"-4.12" + } + }, + { + "id":"db43bfdd-9278-4cad-83d8-44a6c3e479d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T06:48:58.550Z", + "completed":"2016-11-21T06:48:58.550Z", + "new_balance":"3875.85", + "value":"-6.43" + } + }, + { + "id":"abc09c52-d94b-49c8-888a-49d164e0ec9f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T12:57:19.196Z", + "completed":"2016-11-27T12:57:19.196Z", + "new_balance":"3873.30", + "value":"-2.55" + } + }, + { + "id":"33314968-1ccb-4030-a453-3f58eb4ced73", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T17:56:05.185Z", + "completed":"2016-11-27T17:56:05.185Z", + "new_balance":"3870.36", + "value":"-2.94" + } + }, + { + "id":"26b7972b-16bc-48a4-82eb-44b8b8d0f662", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:16:33.550Z", + "completed":"2016-12-01T01:16:33.550Z", + "new_balance":"3866.92", + "value":"-3.44" + } + }, + { + "id":"903b4afa-15a6-45ec-9324-b7476b944303", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T07:56:54.490Z", + "completed":"2016-12-01T07:56:54.490Z", + "new_balance":"3864.60", + "value":"-2.32" + } + }, + { + "id":"51d1c932-c492-41c9-b653-3f85be625c45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T10:20:41.866Z", + "completed":"2016-12-01T10:20:41.866Z", + "new_balance":"3806.37", + "value":"-58.23" + } + }, + { + "id":"1f75804b-deb6-487a-8523-a84be339769e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T11:56:20.670Z", + "completed":"2016-12-01T11:56:20.670Z", + "new_balance":"3791.12", + "value":"-15.25" + } + }, + { + "id":"9b49b390-9340-44ef-8a11-d4ba4355bfc5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T14:55:00.419Z", + "completed":"2016-12-01T14:55:00.419Z", + "new_balance":"3785.97", + "value":"-5.15" + } + }, + { + "id":"364e1cef-bd90-4475-88f1-7a0ee7f8fe07", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T20:03:20.068Z", + "completed":"2016-12-01T20:03:20.068Z", + "new_balance":"3968.67", + "value":"182.70" + } + }, + { + "id":"396ec0b8-b7e3-478c-a016-7f127bd853eb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T09:48:17.521Z", + "completed":"2016-12-04T09:48:17.521Z", + "new_balance":"3956.71", + "value":"-11.96" + } + }, + { + "id":"21c41596-8a8b-4999-a106-225adf22f599", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T23:30:38.723Z", + "completed":"2016-12-04T23:30:38.723Z", + "new_balance":"3949.61", + "value":"-7.10" + } + }, + { + "id":"02104443-7ecb-4f52-9bfc-536b6af125ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T05:43:34.748Z", + "completed":"2016-12-12T05:43:34.748Z", + "new_balance":"3948.36", + "value":"-1.25" + } + }, + { + "id":"4578046c-d241-4278-9664-57b9eb7202f1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T21:19:00.594Z", + "completed":"2016-12-12T21:19:00.594Z", + "new_balance":"3945.06", + "value":"-3.30" + } + }, + { + "id":"35b83819-c6f5-49a7-a340-f23c10f07baf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T18:35:16.467Z", + "completed":"2016-12-13T18:35:16.467Z", + "new_balance":"3937.76", + "value":"-7.30" + } + }, + { + "id":"6aa6fe47-afc0-470c-9505-f3b75a9bfd42", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T21:49:34.842Z", + "completed":"2016-12-13T21:49:34.842Z", + "new_balance":"3937.00", + "value":"-0.76" + } + }, + { + "id":"0c770f42-6afd-44bd-a606-d8b6c3da7495", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T13:14:01.070Z", + "completed":"2016-12-16T13:14:01.070Z", + "new_balance":"3932.96", + "value":"-4.04" + } + }, + { + "id":"623cb33f-dde7-40fa-8a0d-554ceeb0ba7a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T08:42:02.666Z", + "completed":"2016-12-18T08:42:02.666Z", + "new_balance":"3932.56", + "value":"-0.40" + } + }, + { + "id":"bbc9d60a-9f73-4310-b4e3-d1f4eb5f69ac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T05:10:29.276Z", + "completed":"2016-12-19T05:10:29.276Z", + "new_balance":"3927.29", + "value":"-5.27" + } + }, + { + "id":"51d71a27-d1fb-44c7-890c-bd694715257b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:54:20.765Z", + "completed":"2016-12-19T15:54:20.765Z", + "new_balance":"3919.99", + "value":"-7.30" + } + }, + { + "id":"aaf735b2-2dd3-4d53-af90-56f7438effc4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T02:18:48.321Z", + "completed":"2016-12-20T02:18:48.321Z", + "new_balance":"3915.72", + "value":"-4.27" + } + }, + { + "id":"a59fec4c-a107-4ddb-a058-a77cebb221d1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:23:25.916Z", + "completed":"2016-12-21T23:23:25.916Z", + "new_balance":"3910.45", + "value":"-5.27" + } + }, + { + "id":"5bad1c89-2609-4eb2-b197-c941bca20247", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T00:58:32.329Z", + "completed":"2016-12-24T00:58:32.329Z", + "new_balance":"3909.91", + "value":"-0.54" + } + }, + { + "id":"5b61393f-d3ef-493e-9c74-c6120345d22d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T01:03:35.644Z", + "completed":"2016-12-24T01:03:35.644Z", + "new_balance":"3908.86", + "value":"-1.05" + } + }, + { + "id":"566e1d5d-a54b-4874-a6d4-f8fa549500f4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T12:05:55.957Z", + "completed":"2016-12-24T12:05:55.957Z", + "new_balance":"3906.61", + "value":"-2.25" + } + }, + { + "id":"06cc15a3-5af7-4551-8b20-4e129ed729fb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T13:25:49.913Z", + "completed":"2016-12-24T13:25:49.913Z", + "new_balance":"3905.84", + "value":"-0.77" + } + }, + { + "id":"3376345e-e474-45a7-84c1-a25cbbaa2561", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T16:02:00.981Z", + "completed":"2016-12-24T16:02:00.981Z", + "new_balance":"3901.58", + "value":"-4.26" + } + }, + { + "id":"5f829460-3a99-481d-af6a-f48ca640010c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T18:27:14.268Z", + "completed":"2016-12-24T18:27:14.268Z", + "new_balance":"3895.26", + "value":"-6.32" + } + }, + { + "id":"2142f7ca-63b7-4d71-a721-aeedb2a1aed8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T09:03:00.198Z", + "completed":"2016-12-28T09:03:00.198Z", + "new_balance":"3890.44", + "value":"-4.82" + } + }, + { + "id":"0a8ab7bf-e040-4c99-abce-469a2548207d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T11:26:41.512Z", + "completed":"2016-12-28T11:26:41.512Z", + "new_balance":"3880.65", + "value":"-9.79" + } + }, + { + "id":"ee844ab7-2cc1-4d9e-a08e-ca6001d90744", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T12:59:46.345Z", + "completed":"2016-12-28T12:59:46.345Z", + "new_balance":"3880.13", + "value":"-0.52" + } + }, + { + "id":"d6d72694-d241-4370-a7ef-3976daabac8f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T16:21:06.138Z", + "completed":"2016-12-28T16:21:06.138Z", + "new_balance":"3879.61", + "value":"-0.52" + } + }, + { + "id":"12248496-999b-44c4-af9b-4038434d21c5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T06:21:51.765Z", + "completed":"2016-12-29T06:21:51.765Z", + "new_balance":"3873.29", + "value":"-6.32" + } + }, + { + "id":"836360d1-f6b0-4030-919c-3d0398b65533", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T07:27:16.882Z", + "completed":"2016-12-29T07:27:16.882Z", + "new_balance":"3869.14", + "value":"-4.15" + } + }, + { + "id":"1ed86882-05de-450f-9073-9a6d7a3b55d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T08:28:26.602Z", + "completed":"2016-12-29T08:28:26.602Z", + "new_balance":"3864.85", + "value":"-4.29" + } + }, + { + "id":"7da2c054-d214-4124-ac96-edd90f879ae2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T09:21:29.265Z", + "completed":"2016-12-29T09:21:29.265Z", + "new_balance":"3857.89", + "value":"-6.96" + } + }, + { + "id":"fdae64aa-124b-4174-b80b-9056b80f5158", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T19:08:15.236Z", + "completed":"2016-12-29T19:08:15.236Z", + "new_balance":"3857.13", + "value":"-0.76" + } + }, + { + "id":"93ee4541-670b-4f23-874b-49dc1c322d30", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T21:22:45.343Z", + "completed":"2016-12-29T21:22:45.343Z", + "new_balance":"3851.97", + "value":"-5.16" + } + }, + { + "id":"8da70651-dbd4-46c5-9bfd-d3ff12c5585c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T04:40:08.052Z", + "completed":"2016-12-30T04:40:08.052Z", + "new_balance":"3851.38", + "value":"-0.59" + } + }, + { + "id":"0b3e3e3c-fd86-4015-b582-4b25f03a7ff0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T14:12:54.351Z", + "completed":"2016-12-30T14:12:54.351Z", + "new_balance":"3850.47", + "value":"-0.91" + } + }, + { + "id":"151f7a31-4f7a-49ff-b89e-ef8b356e8d61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T18:23:34.093Z", + "completed":"2016-12-30T18:23:34.093Z", + "new_balance":"3846.92", + "value":"-3.55" + } + }, + { + "id":"c81a3671-6454-4687-bcc2-6e7af274399b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T21:31:02.238Z", + "completed":"2016-12-30T21:31:02.238Z", + "new_balance":"3842.31", + "value":"-4.61" + } + }, + { + "id":"c70f4ffb-752c-4f94-9288-ba93cd259b38", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T13:05:38.715Z", + "completed":"2016-12-31T13:05:38.715Z", + "new_balance":"3841.00", + "value":"-1.31" + } + }, + { + "id":"ae9486ae-9a39-4c0b-b8c2-1dbdc3fcd286", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T13:24:30.910Z", + "completed":"2016-12-31T13:24:30.910Z", + "new_balance":"3837.94", + "value":"-3.06" + } + }, + { + "id":"804ebb58-79b9-4222-9b12-c0d5a077f013", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T22:11:44.349Z", + "completed":"2016-12-31T22:11:44.349Z", + "new_balance":"3835.20", + "value":"-2.74" + } + }, + { + "id":"3b0eac30-512c-4bc0-b174-3d4e2474f594", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T23:16:04.943Z", + "completed":"2016-12-31T23:16:04.943Z", + "new_balance":"3807.70", + "value":"-27.50" + } + }, + { + "id":"5184663c-3b21-475c-bfa3-4ad21f82a970", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T02:24:05.585Z", + "completed":"2017-01-01T02:24:05.585Z", + "new_balance":"3804.26", + "value":"-3.44" + } + }, + { + "id":"1612a379-0c5e-4579-9e52-5b14bd3ca628", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T03:54:17.255Z", + "completed":"2017-01-01T03:54:17.255Z", + "new_balance":"3746.03", + "value":"-58.23" + } + }, + { + "id":"b7ea4436-0b99-44de-995b-fcc3202226c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T05:24:08.127Z", + "completed":"2017-01-01T05:24:08.127Z", + "new_balance":"3740.88", + "value":"-5.15" + } + }, + { + "id":"768d06d2-9afa-4273-be3c-058bb4d0b65d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T13:06:59.648Z", + "completed":"2017-01-01T13:06:59.648Z", + "new_balance":"3738.56", + "value":"-2.32" + } + }, + { + "id":"72975c15-f3db-413d-8870-8705c162ecd1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:51:50.865Z", + "completed":"2017-01-01T13:51:50.865Z", + "new_balance":"3723.31", + "value":"-15.25" + } + }, + { + "id":"6d05d94e-2382-4c41-bb14-80a40456f717", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T22:31:43.452Z", + "completed":"2017-01-01T22:31:43.452Z", + "new_balance":"3719.87", + "value":"-3.44" + } + }, + { + "id":"41eb88ce-d3f4-4cb6-881c-f8870baee50c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T19:33:24.015Z", + "completed":"2017-01-02T19:33:24.015Z", + "new_balance":"3710.18", + "value":"-9.69" + } + }, + { + "id":"099a7302-b923-4df4-9f00-8b28dcc88e7c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T22:07:05.781Z", + "completed":"2017-01-02T22:07:05.781Z", + "new_balance":"3703.08", + "value":"-7.10" + } + }, + { + "id":"f555cb3a-b579-4fd6-a335-5cb858a4c561", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T18:57:45.817Z", + "completed":"2017-01-04T18:57:45.817Z", + "new_balance":"3699.30", + "value":"-3.78" + } + }, + { + "id":"75e9278d-e388-4795-a63b-abf74049f9bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T22:26:43.086Z", + "completed":"2017-01-04T22:26:43.086Z", + "new_balance":"3696.39", + "value":"-2.91" + } + }, + { + "id":"fa6c63aa-2f74-43d2-86f7-fd47f569fa08", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T05:33:02.250Z", + "completed":"2017-01-07T05:33:02.250Z", + "new_balance":"3689.20", + "value":"-7.19" + } + }, + { + "id":"21a9b1a9-ae0a-49dd-973a-25bfeae77124", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T17:24:08.451Z", + "completed":"2017-01-09T17:24:08.451Z", + "new_balance":"3688.74", + "value":"-0.46" + } + }, + { + "id":"72c86fcf-729a-40fc-b6e3-f5495c73aa2c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T03:44:21.709Z", + "completed":"2017-01-10T03:44:21.709Z", + "new_balance":"3686.06", + "value":"-2.68" + } + }, + { + "id":"b2c322df-bf01-4a0c-8c4b-3db15e97c440", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T15:12:40.042Z", + "completed":"2017-01-12T15:12:40.042Z", + "new_balance":"3682.84", + "value":"-3.22" + } + }, + { + "id":"75ddd0e8-be3f-4cbf-a2a2-f1153a58deb9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T06:29:37.655Z", + "completed":"2017-01-15T06:29:37.655Z", + "new_balance":"3681.31", + "value":"-1.53" + } + }, + { + "id":"a4bd602e-fdd9-41c3-abe0-a72110d343a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:22:51.386Z", + "completed":"2017-01-15T20:22:51.386Z", + "new_balance":"3680.41", + "value":"-0.90" + } + }, + { + "id":"2fc6edeb-b4f7-4b3f-b415-9115964254ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T16:27:34.385Z", + "completed":"2017-01-17T16:27:34.385Z", + "new_balance":"3678.30", + "value":"-2.11" + } + }, + { + "id":"39ca07dd-4934-4d40-a1c3-2f27dcde6fb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T19:56:09.274Z", + "completed":"2017-01-19T19:56:09.274Z", + "new_balance":"3650.80", + "value":"-27.50" + } + }, + { + "id":"8f975694-9356-4292-b6d9-a26e90769550", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T06:38:43.534Z", + "completed":"2017-01-20T06:38:43.534Z", + "new_balance":"3650.36", + "value":"-0.44" + } + }, + { + "id":"194447fc-0d23-4802-809b-f5c9a2f82b37", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T05:21:44.925Z", + "completed":"2017-01-22T05:21:44.925Z", + "new_balance":"3649.25", + "value":"-1.11" + } + }, + { + "id":"371f7a62-36f2-4955-8735-87a6586752a1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T07:20:01.793Z", + "completed":"2017-01-22T07:20:01.793Z", + "new_balance":"3644.77", + "value":"-4.48" + } + }, + { + "id":"2dedfaf9-af48-4f96-af38-4a6d6c647ed4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T21:41:41.023Z", + "completed":"2017-01-24T21:41:41.023Z", + "new_balance":"3641.96", + "value":"-2.81" + } + }, + { + "id":"dddf86f6-20d5-4765-8a7c-e07bf56034d3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T01:06:50.527Z", + "completed":"2017-01-25T01:06:50.527Z", + "new_balance":"3636.56", + "value":"-5.40" + } + }, + { + "id":"b0741667-27f1-4b4b-82d2-8ac2ef3b7c4a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T14:20:19.245Z", + "completed":"2017-01-25T14:20:19.245Z", + "new_balance":"3636.12", + "value":"-0.44" + } + }, + { + "id":"77f17113-7e6a-43a4-9df7-e2b8a61c7524", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T12:05:26.019Z", + "completed":"2017-01-26T12:05:26.019Z", + "new_balance":"3630.30", + "value":"-5.82" + } + }, + { + "id":"d693bda3-4066-4a94-8524-05217d8d2315", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T04:16:16.322Z", + "completed":"2017-02-01T04:16:16.322Z", + "new_balance":"3813.00", + "value":"182.70" + } + }, + { + "id":"fa9a8612-e1d3-4491-9e74-e0dcccca1f92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T11:58:17.245Z", + "completed":"2017-02-01T11:58:17.245Z", + "new_balance":"3754.77", + "value":"-58.23" + } + }, + { + "id":"e67cf76f-6b1f-4349-8ef6-d8c401a973c8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T13:06:54.289Z", + "completed":"2017-02-01T13:06:54.289Z", + "new_balance":"3751.33", + "value":"-3.44" + } + }, + { + "id":"a9913154-ee94-4884-a47c-a6c877537c02", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T15:39:12.475Z", + "completed":"2017-02-01T15:39:12.475Z", + "new_balance":"3746.18", + "value":"-5.15" + } + }, + { + "id":"aa27dbf2-cb99-41e8-86f6-3a36ff61cef8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:41:32.303Z", + "completed":"2017-02-01T15:41:32.303Z", + "new_balance":"3743.86", + "value":"-2.32" + } + }, + { + "id":"f70db5d8-eafc-49c7-ab53-c8ae0630f60d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T18:03:19.090Z", + "completed":"2017-02-01T18:03:19.090Z", + "new_balance":"3728.61", + "value":"-15.25" + } + }, + { + "id":"8b77dd4e-393d-4614-a017-c030b9c5249a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T08:36:07.801Z", + "completed":"2017-02-02T08:36:07.801Z", + "new_balance":"3726.51", + "value":"-2.10" + } + }, + { + "id":"ca9b0d6b-8289-442d-ab42-63677c5f3a88", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T16:07:23.986Z", + "completed":"2017-02-02T16:07:23.986Z", + "new_balance":"3719.41", + "value":"-7.10" + } + }, + { + "id":"f8d0bf73-8ea6-4b9f-977f-7d776302abb7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T17:59:00.212Z", + "completed":"2017-02-02T17:59:00.212Z", + "new_balance":"3718.26", + "value":"-1.15" + } + }, + { + "id":"b4884d73-690f-4f64-9d26-373e010d8726", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T08:26:01.712Z", + "completed":"2017-02-03T08:26:01.712Z", + "new_balance":"3715.76", + "value":"-2.50" + } + }, + { + "id":"d5372879-f16a-4c20-b46b-2380230872ac", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T10:11:18.265Z", + "completed":"2017-02-03T10:11:18.265Z", + "new_balance":"3712.43", + "value":"-3.33" + } + }, + { + "id":"47f9cbc1-5511-4700-86d2-6f0140649491", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T11:43:15.947Z", + "completed":"2017-02-03T11:43:15.947Z", + "new_balance":"3710.03", + "value":"-2.40" + } + }, + { + "id":"0019d08b-a95c-4fea-a9f1-f842311a7eb2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T04:03:20.725Z", + "completed":"2017-02-06T04:03:20.725Z", + "new_balance":"3702.84", + "value":"-7.19" + } + }, + { + "id":"5783de2d-88d9-4404-a2ad-684ba5dedbee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T03:27:13.076Z", + "completed":"2017-02-08T03:27:13.076Z", + "new_balance":"3699.81", + "value":"-3.03" + } + }, + { + "id":"95b4b818-3c17-4e1c-ae1e-bdffd342d74a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T04:18:50.318Z", + "completed":"2017-02-08T04:18:50.318Z", + "new_balance":"3699.33", + "value":"-0.48" + } + }, + { + "id":"bb84db15-03a9-40b7-af38-f7bdb290d1d6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T06:03:43.013Z", + "completed":"2017-02-08T06:03:43.013Z", + "new_balance":"3696.88", + "value":"-2.45" + } + }, + { + "id":"b35bec30-c9d8-4e84-9f1b-bab92319c534", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T05:14:12.489Z", + "completed":"2017-02-09T05:14:12.489Z", + "new_balance":"3693.74", + "value":"-3.14" + } + }, + { + "id":"c00faa69-633e-4f1b-a7d7-2e1b890e30ab", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T21:55:47.428Z", + "completed":"2017-02-09T21:55:47.428Z", + "new_balance":"3690.26", + "value":"-3.48" + } + }, + { + "id":"a3c840e2-8497-45a0-812c-38c6c39dee03", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T16:22:42.724Z", + "completed":"2017-02-12T16:22:42.724Z", + "new_balance":"3689.79", + "value":"-0.47" + } + }, + { + "id":"62b1d7ab-488e-4ab1-a8dd-dfd0d2d80e90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T06:34:03.951Z", + "completed":"2017-02-13T06:34:03.951Z", + "new_balance":"3683.36", + "value":"-6.43" + } + }, + { + "id":"403b8a21-4edc-438c-a32a-b548877e86ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T09:26:11.373Z", + "completed":"2017-02-13T09:26:11.373Z", + "new_balance":"3682.59", + "value":"-0.77" + } + }, + { + "id":"e2eeed5a-33ba-48d2-ac87-961bc693f24d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T11:25:17.946Z", + "completed":"2017-02-13T11:25:17.946Z", + "new_balance":"3686.67", + "value":"4.08" + } + }, + { + "id":"46a42a29-e1fc-436f-98d1-a8d7cb7ea216", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T08:18:30.730Z", + "completed":"2017-02-14T08:18:30.730Z", + "new_balance":"3682.55", + "value":"-4.12" + } + }, + { + "id":"699bf9a1-3a60-443a-8fd3-8442b83e2c65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T12:03:42.837Z", + "completed":"2017-02-15T12:03:42.837Z", + "new_balance":"3680.00", + "value":"-2.55" + } + }, + { + "id":"764e1baa-8f7f-4313-839b-e8265882cdca", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T02:51:50.861Z", + "completed":"2017-02-28T02:51:50.861Z", + "new_balance":"3677.06", + "value":"-2.94" + } + }, + { + "id":"69087ff2-0136-46d9-8d89-8031bca68017", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T02:04:26.871Z", + "completed":"2017-03-01T02:04:26.871Z", + "new_balance":"3859.76", + "value":"182.70" + } + }, + { + "id":"6ca52d64-d132-4ca4-aaaf-d7ada85d44a4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T08:51:10.911Z", + "completed":"2017-03-01T08:51:10.911Z", + "new_balance":"3856.32", + "value":"-3.44" + } + }, + { + "id":"c7dcab89-fbdb-4b0e-b91e-15efeb3ea229", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T09:40:13.983Z", + "completed":"2017-03-01T09:40:13.983Z", + "new_balance":"3851.17", + "value":"-5.15" + } + }, + { + "id":"ca53666f-8b49-40af-8d3e-13ef9eb263fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T11:17:01.465Z", + "completed":"2017-03-01T11:17:01.465Z", + "new_balance":"3835.92", + "value":"-15.25" + } + }, + { + "id":"ba0c96b3-6454-460d-b93b-0de326706742", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T13:12:45.049Z", + "completed":"2017-03-01T13:12:45.049Z", + "new_balance":"3777.69", + "value":"-58.23" + } + }, + { + "id":"71c74e34-9e57-46c3-bc8a-c1b9ffc53acf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T23:37:44.397Z", + "completed":"2017-03-01T23:37:44.397Z", + "new_balance":"3775.37", + "value":"-2.32" + } + }, + { + "id":"9d4441b1-7a38-44d8-b6b7-98a4ff4f8f3c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T21:01:34.406Z", + "completed":"2017-03-02T21:01:34.406Z", + "new_balance":"3768.27", + "value":"-7.10" + } + }, + { + "id":"18b15875-78aa-4a67-8191-7ac355c00d86", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T01:19:44.495Z", + "completed":"2017-03-04T01:19:44.495Z", + "new_balance":"3767.02", + "value":"-1.25" + } + }, + { + "id":"f34fab4e-edc6-4af6-8d90-194f96f9b049", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T07:32:16.992Z", + "completed":"2017-03-04T07:32:16.992Z", + "new_balance":"3763.72", + "value":"-3.30" + } + }, + { + "id":"c1467e18-2fbe-4a9b-ae07-e536d1345bcf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T09:22:10.795Z", + "completed":"2017-03-04T09:22:10.795Z", + "new_balance":"3756.42", + "value":"-7.30" + } + }, + { + "id":"df169e70-6ec6-4833-9c03-142c9794ec7c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T22:38:29.074Z", + "completed":"2017-03-04T22:38:29.074Z", + "new_balance":"3755.66", + "value":"-0.76" + } + }, + { + "id":"3685691a-783e-4e58-92e9-c98cd5d5fdf0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T08:42:22.138Z", + "completed":"2017-03-05T08:42:22.138Z", + "new_balance":"3755.26", + "value":"-0.40" + } + }, + { + "id":"f64f246e-f89c-4823-9220-aff4abc123bd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T22:19:40.903Z", + "completed":"2017-03-05T22:19:40.903Z", + "new_balance":"3751.22", + "value":"-4.04" + } + }, + { + "id":"c77dc60a-21f8-4a80-8f74-1338213cb0df", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T01:33:05.720Z", + "completed":"2017-03-06T01:33:05.720Z", + "new_balance":"3743.92", + "value":"-7.30" + } + }, + { + "id":"f638478d-89ae-4e2d-9602-f11d37557ba6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T19:05:02.916Z", + "completed":"2017-03-06T19:05:02.916Z", + "new_balance":"3738.65", + "value":"-5.27" + } + }, + { + "id":"fb9118ad-94dc-48b9-9e31-f27f49c537c3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T21:40:03.491Z", + "completed":"2017-03-07T21:40:03.491Z", + "new_balance":"3734.38", + "value":"-4.27" + } + }, + { + "id":"b44b8d72-a302-4b43-abf5-717233fbe062", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T13:05:49.154Z", + "completed":"2017-03-08T13:05:49.154Z", + "new_balance":"3729.11", + "value":"-5.27" + } + }, + { + "id":"568595a7-53cf-4dfa-bb8a-5f8bc4a23ad3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T11:53:48.240Z", + "completed":"2017-03-09T11:53:48.240Z", + "new_balance":"3728.57", + "value":"-0.54" + } + }, + { + "id":"6d306570-68f0-4d06-bc51-8c9ce5f3c2cf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T05:15:43.689Z", + "completed":"2017-03-10T05:15:43.689Z", + "new_balance":"3722.25", + "value":"-6.32" + } + }, + { + "id":"fb6e8bc3-ca88-41ba-aeb6-ebac7c3c7115", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T09:15:03.205Z", + "completed":"2017-03-11T09:15:03.205Z", + "new_balance":"3721.48", + "value":"-0.77" + } + }, + { + "id":"4a89c733-0a03-4ff9-a226-1bc47b491bb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T14:18:53.510Z", + "completed":"2017-03-12T14:18:53.510Z", + "new_balance":"3719.23", + "value":"-2.25" + } + }, + { + "id":"d2bb68c2-34a5-4d7d-b985-badfd6065f03", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T18:03:45.779Z", + "completed":"2017-03-12T18:03:45.779Z", + "new_balance":"3718.18", + "value":"-1.05" + } + }, + { + "id":"abef7be0-dec1-404d-9673-ee800d37eb3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T07:37:32.776Z", + "completed":"2017-03-13T07:37:32.776Z", + "new_balance":"3713.92", + "value":"-4.26" + } + }, + { + "id":"35ad9096-b45c-4e36-9fa9-8add661e6253", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T01:26:21.420Z", + "completed":"2017-03-14T01:26:21.420Z", + "new_balance":"3713.40", + "value":"-0.52" + } + }, + { + "id":"2156055d-401c-42b1-8605-e52a03befebc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T02:56:40.373Z", + "completed":"2017-03-16T02:56:40.373Z", + "new_balance":"3708.58", + "value":"-4.82" + } + }, + { + "id":"65628c71-6e72-4a46-b4ef-2b8760e2ecfb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T11:16:00.665Z", + "completed":"2017-03-16T11:16:00.665Z", + "new_balance":"3698.79", + "value":"-9.79" + } + }, + { + "id":"c24eae5c-3476-4a84-b6d9-d0c3e2004db5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T12:03:08.531Z", + "completed":"2017-03-18T12:03:08.531Z", + "new_balance":"3698.27", + "value":"-0.52" + } + }, + { + "id":"3e328bc3-495e-4c25-ab42-1b026a246b00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:06:16.481Z", + "completed":"2017-03-19T05:06:16.481Z", + "new_balance":"3691.95", + "value":"-6.32" + } + }, + { + "id":"f8e80346-dfb4-4ddf-ad27-59046931cd71", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T06:31:36.593Z", + "completed":"2017-03-19T06:31:36.593Z", + "new_balance":"3687.80", + "value":"-4.15" + } + }, + { + "id":"2f42326f-87f1-40d7-b7c8-28dbcbfc1245", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T09:44:03.811Z", + "completed":"2017-03-19T09:44:03.811Z", + "new_balance":"3683.51", + "value":"-4.29" + } + }, + { + "id":"51569a32-ee49-4f77-a1c0-8f6a0674cb90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T05:52:58.588Z", + "completed":"2017-03-20T05:52:58.588Z", + "new_balance":"3678.35", + "value":"-5.16" + } + }, + { + "id":"56232a51-8f39-482a-b7a9-448d2136aa53", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T11:42:37.809Z", + "completed":"2017-03-20T11:42:37.809Z", + "new_balance":"3671.39", + "value":"-6.96" + } + }, + { + "id":"a92662d1-0f0a-4772-a353-2b236ff372c9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T09:13:54.714Z", + "completed":"2017-03-21T09:13:54.714Z", + "new_balance":"3670.80", + "value":"-0.59" + } + }, + { + "id":"4d999fc8-b151-48b4-801a-5248f16c340a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T12:55:49.749Z", + "completed":"2017-03-21T12:55:49.749Z", + "new_balance":"3670.04", + "value":"-0.76" + } + }, + { + "id":"1cee24a2-f271-49b6-9dfb-97efaf7321ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T04:42:06.796Z", + "completed":"2017-03-23T04:42:06.796Z", + "new_balance":"3669.13", + "value":"-0.91" + } + }, + { + "id":"30813700-b727-4c33-a2c3-41a30f6cf9a6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T08:15:41.410Z", + "completed":"2017-03-23T08:15:41.410Z", + "new_balance":"3664.52", + "value":"-4.61" + } + }, + { + "id":"671e22fa-dfba-456f-a59f-cfbc0da37730", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T01:15:14.916Z", + "completed":"2017-03-24T01:15:14.916Z", + "new_balance":"3660.97", + "value":"-3.55" + } + }, + { + "id":"1d6f9854-f744-420b-8d9c-3ed617533d6e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T11:52:06.562Z", + "completed":"2017-03-25T11:52:06.562Z", + "new_balance":"3657.91", + "value":"-3.06" + } + }, + { + "id":"54be45fe-7efd-4ea6-95b0-9f6d916dd6ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T15:21:52.674Z", + "completed":"2017-03-25T15:21:52.674Z", + "new_balance":"3656.60", + "value":"-1.31" + } + }, + { + "id":"cb738956-b288-416b-88ae-e40f286bc5a5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T06:54:09.258Z", + "completed":"2017-03-27T06:54:09.258Z", + "new_balance":"3629.10", + "value":"-27.50" + } + }, + { + "id":"49f86ed7-db43-4d95-8004-41ed87d61f43", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T09:48:12.185Z", + "completed":"2017-03-28T09:48:12.185Z", + "new_balance":"3626.36", + "value":"-2.74" + } + }, + { + "id":"307971df-bb5b-43e2-b04c-6daaa582be31", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T00:21:40.730Z", + "completed":"2017-04-01T00:21:40.730Z", + "new_balance":"3611.11", + "value":"-15.25" + } + }, + { + "id":"688d401e-a69e-4683-aed7-e32a84092850", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T09:47:45.831Z", + "completed":"2017-04-01T09:47:45.831Z", + "new_balance":"3605.96", + "value":"-5.15" + } + }, + { + "id":"2d9e9a09-25c7-4bb3-aae6-0782fb68222b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:25:44.206Z", + "completed":"2017-04-01T10:25:44.206Z", + "new_balance":"3603.64", + "value":"-2.32" + } + }, + { + "id":"2165c331-4b2d-4e6f-ab39-cdbc54fcf5cd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T19:56:29.494Z", + "completed":"2017-04-01T19:56:29.494Z", + "new_balance":"3545.41", + "value":"-58.23" + } + }, + { + "id":"4ac37b6c-7af9-46cf-b4ac-f5a47ee5a037", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T10:10:43.633Z", + "completed":"2017-04-02T10:10:43.633Z", + "new_balance":"3535.72", + "value":"-9.69" + } + }, + { + "id":"b203f133-f4ef-49a3-9e3c-f6aa8127dd3c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T10:33:24.864Z", + "completed":"2017-04-02T10:33:24.864Z", + "new_balance":"3528.62", + "value":"-7.10" + } + }, + { + "id":"f7589d5e-ccc2-4c64-84bc-fe836d45f81f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T06:41:01.152Z", + "completed":"2017-04-03T06:41:01.152Z", + "new_balance":"3525.71", + "value":"-2.91" + } + }, + { + "id":"e3fafc72-57f3-4c18-9dab-891049d89afb", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T07:13:30.301Z", + "completed":"2017-04-03T07:13:30.301Z", + "new_balance":"3533.65", + "value":"7.94" + } + }, + { + "id":"d0e8c636-d620-4912-818f-91306278a677", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:21:23.530Z", + "completed":"2017-04-03T20:21:23.530Z", + "new_balance":"3529.87", + "value":"-3.78" + } + }, + { + "id":"164d57f4-f2c4-4852-a1c0-67a92aaf396d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:34:19.626Z", + "completed":"2017-04-03T20:34:19.626Z", + "new_balance":"3526.09", + "value":"-3.78" + } + }, + { + "id":"25d19354-d3bc-45f2-a34e-983f9da6064f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:10:38.556Z", + "completed":"2017-04-03T21:10:38.556Z", + "new_balance":"3538.43", + "value":"12.34" + } + }, + { + "id":"7ac54923-6591-4eed-ad7a-322e1b5183fd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T23:35:48.618Z", + "completed":"2017-04-04T23:35:48.618Z", + "new_balance":"3531.24", + "value":"-7.19" + } + }, + { + "id":"95e0c005-e431-4132-851e-346b0501a711", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T10:07:39.209Z", + "completed":"2017-04-05T10:07:39.209Z", + "new_balance":"3528.56", + "value":"-2.68" + } + }, + { + "id":"5b7902df-04e8-49d4-af2a-a61539b6ea1a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T15:30:56.184Z", + "completed":"2017-04-05T15:30:56.184Z", + "new_balance":"3528.10", + "value":"-0.46" + } + }, + { + "id":"ccaa7d54-251b-4653-a027-3fc9d61ceabd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T14:08:50.022Z", + "completed":"2017-04-07T14:08:50.022Z", + "new_balance":"3524.88", + "value":"-3.22" + } + }, + { + "id":"c2def9e1-5629-45ca-8ca2-c1b7fc5fc011", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T14:53:18.726Z", + "completed":"2017-04-07T14:53:18.726Z", + "new_balance":"3523.35", + "value":"-1.53" + } + }, + { + "id":"41029c39-dc33-4b9c-9a5e-008f8e792ff6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T21:03:27.582Z", + "completed":"2017-04-08T21:03:27.582Z", + "new_balance":"3522.45", + "value":"-0.90" + } + }, + { + "id":"cfab31e2-6d1a-422c-aab1-475844cb1eff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T12:09:00.517Z", + "completed":"2017-04-09T12:09:00.517Z", + "new_balance":"3494.95", + "value":"-27.50" + } + }, + { + "id":"53e29d92-2ee6-4811-aed1-076e8f0f3577", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T17:03:14.053Z", + "completed":"2017-04-09T17:03:14.053Z", + "new_balance":"3492.84", + "value":"-2.11" + } + }, + { + "id":"2ae638a6-ac29-47ed-afba-bf28677abab8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T20:09:06.514Z", + "completed":"2017-04-09T20:09:06.514Z", + "new_balance":"3492.40", + "value":"-0.44" + } + }, + { + "id":"557c20fe-a394-4471-b363-2c5925099b71", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:02:35.753Z", + "completed":"2017-04-10T00:02:35.753Z", + "new_balance":"3487.92", + "value":"-4.48" + } + }, + { + "id":"aa603ac8-e276-4a47-a174-48c7898832cc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T17:09:53.876Z", + "completed":"2017-04-17T17:09:53.876Z", + "new_balance":"3486.81", + "value":"-1.11" + } + }, + { + "id":"0e9a07fe-5a13-4e5b-92cf-30fe2b7c0467", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T19:01:53.612Z", + "completed":"2017-04-18T19:01:53.612Z", + "new_balance":"3484.00", + "value":"-2.81" + } + }, + { + "id":"df1a0cc6-7d6d-4f5d-985c-ba26ea9a38e1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T09:54:58.198Z", + "completed":"2017-04-25T09:54:58.198Z", + "new_balance":"3478.60", + "value":"-5.40" + } + }, + { + "id":"a226c450-82db-4906-9029-1025fe26ffb3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T00:28:49.356Z", + "completed":"2017-04-26T00:28:49.356Z", + "new_balance":"3472.78", + "value":"-5.82" + } + }, + { + "id":"41b7dc14-a662-4f6c-ab6f-8d73fda024c6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T12:58:39.570Z", + "completed":"2017-04-26T12:58:39.570Z", + "new_balance":"3472.34", + "value":"-0.44" + } + }, + { + "id":"5ed6f217-b564-4b4f-aa03-3830e494c1c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T02:18:39.972Z", + "completed":"2017-05-02T02:18:39.972Z", + "new_balance":"3465.24", + "value":"-7.10" + } + }, + { + "id":"44e8d235-f14a-47e3-9f8c-8d9327ea61f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T10:13:52.455Z", + "completed":"2017-05-02T10:13:52.455Z", + "new_balance":"3460.09", + "value":"-5.15" + } + }, + { + "id":"839f5470-c2a6-41de-abe6-5d8c66328d70", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T13:20:57.075Z", + "completed":"2017-05-02T13:20:57.075Z", + "new_balance":"3456.65", + "value":"-3.44" + } + }, + { + "id":"7fb0e94a-5cd3-4a54-9b5d-c77d06bfa50c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T15:46:50.634Z", + "completed":"2017-05-02T15:46:50.634Z", + "new_balance":"3441.40", + "value":"-15.25" + } + }, + { + "id":"3d02474a-c6c6-4fef-932e-8e14adcc18f8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T16:07:57.198Z", + "completed":"2017-05-02T16:07:57.198Z", + "new_balance":"3440.25", + "value":"-1.15" + } + }, + { + "id":"0e846165-d0d5-4842-a39e-7193ef399704", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T16:14:58.136Z", + "completed":"2017-05-02T16:14:58.136Z", + "new_balance":"3622.95", + "value":"182.70" + } + }, + { + "id":"62ed4c04-29a9-41c4-ac36-96514cee1c2b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T18:34:34.705Z", + "completed":"2017-05-02T18:34:34.705Z", + "new_balance":"3620.63", + "value":"-2.32" + } + }, + { + "id":"ea732fa6-fee4-41ae-9e18-d9213b80d6e2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T18:44:41.954Z", + "completed":"2017-05-02T18:44:41.954Z", + "new_balance":"3562.40", + "value":"-58.23" + } + }, + { + "id":"3f58338d-b9aa-4543-b1db-be32393448c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T00:42:15.615Z", + "completed":"2017-05-03T00:42:15.615Z", + "new_balance":"3559.90", + "value":"-2.50" + } + }, + { + "id":"8f5e8df9-d5a0-49e3-88a8-4b16ff94e664", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T14:53:38.134Z", + "completed":"2017-05-03T14:53:38.134Z", + "new_balance":"3557.80", + "value":"-2.10" + } + }, + { + "id":"01f09ec6-8317-42f4-9266-0275f7ab7218", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T11:05:13.520Z", + "completed":"2017-05-04T11:05:13.520Z", + "new_balance":"3554.47", + "value":"-3.33" + } + }, + { + "id":"4c5eb99d-f74c-456e-beba-4dbb4adb599c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T12:37:41.446Z", + "completed":"2017-05-04T12:37:41.446Z", + "new_balance":"3552.07", + "value":"-2.40" + } + }, + { + "id":"cb5b8025-370d-4179-b3e6-0ef81c339e32", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T16:03:31.991Z", + "completed":"2017-05-05T16:03:31.991Z", + "new_balance":"3544.88", + "value":"-7.19" + } + }, + { + "id":"9196e546-9f4b-4387-be3f-43c4932ea9f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T03:14:58.606Z", + "completed":"2017-05-07T03:14:58.606Z", + "new_balance":"3544.40", + "value":"-0.48" + } + }, + { + "id":"9303a8bf-4af8-4263-b244-e3b513eceb9f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T05:38:27.791Z", + "completed":"2017-05-07T05:38:27.791Z", + "new_balance":"3541.37", + "value":"-3.03" + } + }, + { + "id":"51a025db-38b5-4292-a49c-8f82528ca14b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T03:29:55.650Z", + "completed":"2017-05-12T03:29:55.650Z", + "new_balance":"3538.23", + "value":"-3.14" + } + }, + { + "id":"2c9246e2-510d-4ffd-92a4-1aaf0d5d0ee9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T16:19:25.660Z", + "completed":"2017-05-12T16:19:25.660Z", + "new_balance":"3535.78", + "value":"-2.45" + } + }, + { + "id":"5b7a2c71-b9dc-4743-aac7-e5f827dfe427", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T16:35:30.536Z", + "completed":"2017-05-14T16:35:30.536Z", + "new_balance":"3532.30", + "value":"-3.48" + } + }, + { + "id":"bae03b73-ea0c-4055-99bb-c276aba09b20", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T08:56:15.087Z", + "completed":"2017-05-16T08:56:15.087Z", + "new_balance":"3531.83", + "value":"-0.47" + } + }, + { + "id":"14e9f112-3965-4b8c-8477-949c159767ae", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T06:55:02.346Z", + "completed":"2017-05-18T06:55:02.346Z", + "new_balance":"3531.06", + "value":"-0.77" + } + }, + { + "id":"8d01f049-a666-4ae3-a411-cc34a4056cc1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T12:39:08.562Z", + "completed":"2017-05-20T12:39:08.562Z", + "new_balance":"3535.14", + "value":"4.08" + } + }, + { + "id":"d78f3c6f-b004-4fa8-8476-4366402c4365", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T10:36:17.156Z", + "completed":"2017-05-21T10:36:17.156Z", + "new_balance":"3531.02", + "value":"-4.12" + } + }, + { + "id":"ea64e1d6-3635-4bda-a018-012473c74100", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T12:04:58.037Z", + "completed":"2017-05-21T12:04:58.037Z", + "new_balance":"3524.59", + "value":"-6.43" + } + }, + { + "id":"2398775e-28ca-4dd1-b325-70ce283aa4d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T01:15:23.957Z", + "completed":"2017-05-27T01:15:23.957Z", + "new_balance":"3521.65", + "value":"-2.94" + } + }, + { + "id":"58bb8e8b-3c6c-4df8-a9c4-d0e9df86caf2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T11:10:05.858Z", + "completed":"2017-05-27T11:10:05.858Z", + "new_balance":"3519.10", + "value":"-2.55" + } + }, + { + "id":"e145ec8f-2882-4623-a3b3-d2e66f5bdfde", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T02:32:38.603Z", + "completed":"2017-06-01T02:32:38.603Z", + "new_balance":"3503.85", + "value":"-15.25" + } + }, + { + "id":"f4a6ded7-3573-41dd-87c5-0eb8f4d826f5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T02:40:50.794Z", + "completed":"2017-06-01T02:40:50.794Z", + "new_balance":"3501.53", + "value":"-2.32" + } + }, + { + "id":"6bbcd9bb-c278-4976-ae5b-5614b20198f7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T13:23:52.085Z", + "completed":"2017-06-01T13:23:52.085Z", + "new_balance":"3684.23", + "value":"182.70" + } + }, + { + "id":"fdd4362c-ff51-4e6c-9635-c4601cbd2c59", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T13:24:47.049Z", + "completed":"2017-06-01T13:24:47.049Z", + "new_balance":"3626.00", + "value":"-58.23" + } + }, + { + "id":"d268ba39-6207-4d25-a096-2cb486a4d7e2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T14:35:17.750Z", + "completed":"2017-06-01T14:35:17.750Z", + "new_balance":"3620.85", + "value":"-5.15" + } + }, + { + "id":"d5f7195c-bec1-4eb9-b756-ec0e11a60f92", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T19:44:07.277Z", + "completed":"2017-06-01T19:44:07.277Z", + "new_balance":"3617.41", + "value":"-3.44" + } + }, + { + "id":"a1786040-5ab3-4b19-bee2-7e588515e844", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T15:10:51.846Z", + "completed":"2017-06-04T15:10:51.846Z", + "new_balance":"3610.31", + "value":"-7.10" + } + }, + { + "id":"f715dcaf-4e9e-4b54-8ef1-7dde7ed83360", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T16:33:12.962Z", + "completed":"2017-06-04T16:33:12.962Z", + "new_balance":"3598.35", + "value":"-11.96" + } + }, + { + "id":"e2491e8c-23f7-44e7-a08a-d1ffc1680043", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T10:29:46.718Z", + "completed":"2017-06-11T10:29:46.718Z", + "new_balance":"3595.05", + "value":"-3.30" + } + }, + { + "id":"832ce387-7b2a-4660-b332-7c6007f6438f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T07:57:13.064Z", + "completed":"2017-06-12T07:57:13.064Z", + "new_balance":"3593.80", + "value":"-1.25" + } + }, + { + "id":"83dfaed8-c30c-4929-b836-6ce5f3f83a15", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T01:42:29.079Z", + "completed":"2017-06-13T01:42:29.079Z", + "new_balance":"3593.04", + "value":"-0.76" + } + }, + { + "id":"a63ef5c8-e5a4-491a-959a-8f0c66f8c01f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T09:12:50.136Z", + "completed":"2017-06-13T09:12:50.136Z", + "new_balance":"3585.74", + "value":"-7.30" + } + }, + { + "id":"16f2b31a-3cdf-4658-82e0-d0a4a1fad785", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T06:25:22.363Z", + "completed":"2017-06-16T06:25:22.363Z", + "new_balance":"3581.70", + "value":"-4.04" + } + }, + { + "id":"673196d9-0621-4229-aea3-6b87ecde7ff2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T12:09:02.570Z", + "completed":"2017-06-17T12:09:02.570Z", + "new_balance":"3581.30", + "value":"-0.40" + } + }, + { + "id":"a4b42250-c6d9-4a2c-91e8-7dfb7449ee1c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T21:57:32.661Z", + "completed":"2017-06-17T21:57:32.661Z", + "new_balance":"3574.00", + "value":"-7.30" + } + }, + { + "id":"6fe28bf7-7752-4fcf-ba14-98dab5b5cb2f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:08:47.045Z", + "completed":"2017-06-18T05:08:47.045Z", + "new_balance":"3568.73", + "value":"-5.27" + } + }, + { + "id":"29e844a9-7f04-4a0b-a246-8dac386da014", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T17:19:12.104Z", + "completed":"2017-06-19T17:19:12.104Z", + "new_balance":"3563.46", + "value":"-5.27" + } + }, + { + "id":"87a9afd7-c3e8-4339-9f76-7b537f8ab09e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T21:25:49.868Z", + "completed":"2017-06-19T21:25:49.868Z", + "new_balance":"3559.19", + "value":"-4.27" + } + }, + { + "id":"a2b18238-b639-478d-9839-4044fd8babfc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T12:44:07.427Z", + "completed":"2017-06-21T12:44:07.427Z", + "new_balance":"3552.87", + "value":"-6.32" + } + }, + { + "id":"a0926dd2-d27a-4e95-a219-a7c5cad3c986", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T21:13:49.023Z", + "completed":"2017-06-21T21:13:49.023Z", + "new_balance":"3552.33", + "value":"-0.54" + } + }, + { + "id":"17e79b83-6536-4c60-9f68-dcb49c02767f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T03:32:18.505Z", + "completed":"2017-06-23T03:32:18.505Z", + "new_balance":"3551.56", + "value":"-0.77" + } + }, + { + "id":"8202ed91-2315-4871-bc37-199363bef0db", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T23:29:59.443Z", + "completed":"2017-06-23T23:29:59.443Z", + "new_balance":"3549.31", + "value":"-2.25" + } + }, + { + "id":"2762e3cf-3469-43f0-ae36-49dcddf0dcb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T03:56:13.207Z", + "completed":"2017-06-24T03:56:13.207Z", + "new_balance":"3545.05", + "value":"-4.26" + } + }, + { + "id":"541eefb9-3ea1-4828-923a-f2f55b2c61da", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T07:51:49.115Z", + "completed":"2017-06-24T07:51:49.115Z", + "new_balance":"3544.00", + "value":"-1.05" + } + }, + { + "id":"dc50b8c5-aeb6-4515-bfc8-383211887756", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T00:07:15.665Z", + "completed":"2017-06-28T00:07:15.665Z", + "new_balance":"3543.48", + "value":"-0.52" + } + }, + { + "id":"16e3b0a7-871d-4d0f-aea4-c9c7396716e1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T10:55:25.123Z", + "completed":"2017-06-28T10:55:25.123Z", + "new_balance":"3538.66", + "value":"-4.82" + } + }, + { + "id":"ff9dbf00-6805-49f1-9449-0960a77cc7a8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T12:24:25.761Z", + "completed":"2017-06-28T12:24:25.761Z", + "new_balance":"3538.14", + "value":"-0.52" + } + }, + { + "id":"016a4019-a663-4a39-af15-658baaee2be9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T15:14:14.888Z", + "completed":"2017-06-28T15:14:14.888Z", + "new_balance":"3528.35", + "value":"-9.79" + } + }, + { + "id":"6611b404-85c0-4bd1-a87e-cb56d5327ba2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T02:56:20.947Z", + "completed":"2017-06-29T02:56:20.947Z", + "new_balance":"3523.19", + "value":"-5.16" + } + }, + { + "id":"e62adb7d-dc1e-45a2-87df-10afebeddabc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T10:54:22.683Z", + "completed":"2017-06-29T10:54:22.683Z", + "new_balance":"3516.23", + "value":"-6.96" + } + }, + { + "id":"0d1f8a0f-712f-457d-a9fd-cfc95c2f4c49", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T13:30:02.851Z", + "completed":"2017-06-29T13:30:02.851Z", + "new_balance":"3509.91", + "value":"-6.32" + } + }, + { + "id":"37b97557-19ef-4972-9167-b13a2a1d5040", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T13:30:29.791Z", + "completed":"2017-06-29T13:30:29.791Z", + "new_balance":"3509.15", + "value":"-0.76" + } + }, + { + "id":"dd92c816-853e-41a9-bf38-fc39e9765a6f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T15:28:29.466Z", + "completed":"2017-06-29T15:28:29.466Z", + "new_balance":"3504.86", + "value":"-4.29" + } + }, + { + "id":"2815f163-b589-4b36-92d5-01911eb32ca2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T18:11:20.028Z", + "completed":"2017-06-29T18:11:20.028Z", + "new_balance":"3500.71", + "value":"-4.15" + } + }, + { + "id":"d3483fc8-2e19-41d7-b059-3331c17cefb4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T06:45:16.274Z", + "completed":"2017-06-30T06:45:16.274Z", + "new_balance":"3499.80", + "value":"-0.91" + } + }, + { + "id":"1534dc12-a166-4210-887c-67c077c36cf9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T10:49:21.075Z", + "completed":"2017-06-30T10:49:21.075Z", + "new_balance":"3499.21", + "value":"-0.59" + } + }, + { + "id":"99e0c39f-5150-4dc8-a40a-aa10f40ded13", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T15:25:21.037Z", + "completed":"2017-06-30T15:25:21.037Z", + "new_balance":"3494.60", + "value":"-4.61" + } + }, + { + "id":"dd5d6e4c-ef83-405c-96bb-017dbe5ff2a6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T19:19:44.596Z", + "completed":"2017-06-30T19:19:44.596Z", + "new_balance":"3491.05", + "value":"-3.55" + } + }, + { + "id":"baf16daf-a189-40c5-ba87-17af0f8703fe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T04:01:34.551Z", + "completed":"2017-07-01T04:01:34.551Z", + "new_balance":"3432.82", + "value":"-58.23" + } + }, + { + "id":"251122c9-472d-47ce-8424-b67cb1cae2d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T07:00:18.672Z", + "completed":"2017-07-01T07:00:18.672Z", + "new_balance":"3405.32", + "value":"-27.50" + } + }, + { + "id":"f43443e8-724c-45e5-84c6-ed98f781145e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T10:14:22.096Z", + "completed":"2017-07-01T10:14:22.096Z", + "new_balance":"3402.26", + "value":"-3.06" + } + }, + { + "id":"a7e961b7-1d7a-44a6-a13a-a1a4b77b4b41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T15:40:33.745Z", + "completed":"2017-07-01T15:40:33.745Z", + "new_balance":"3398.82", + "value":"-3.44" + } + }, + { + "id":"4e692440-fbb9-4ad5-87bb-2ed900af3a65", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T16:33:21.171Z", + "completed":"2017-07-01T16:33:21.171Z", + "new_balance":"3393.67", + "value":"-5.15" + } + }, + { + "id":"3cebf3b8-22aa-4e31-9a49-52ddcbc35d77", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T19:17:06.007Z", + "completed":"2017-07-01T19:17:06.007Z", + "new_balance":"3390.23", + "value":"-3.44" + } + }, + { + "id":"4e91df4d-2ab5-4539-a1d0-2932ea5137d9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T19:19:53.019Z", + "completed":"2017-07-01T19:19:53.019Z", + "new_balance":"3374.98", + "value":"-15.25" + } + }, + { + "id":"6d9f54c1-94b8-4e98-8179-1ba30ca02e3a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T19:32:48.903Z", + "completed":"2017-07-01T19:32:48.903Z", + "new_balance":"3372.24", + "value":"-2.74" + } + }, + { + "id":"e46ee306-70dd-46a4-a071-13a4b14c431c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T19:46:36.013Z", + "completed":"2017-07-01T19:46:36.013Z", + "new_balance":"3369.92", + "value":"-2.32" + } + }, + { + "id":"abc26bbb-c556-48b9-b067-0abb82773e19", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T20:53:11.381Z", + "completed":"2017-07-01T20:53:11.381Z", + "new_balance":"3368.61", + "value":"-1.31" + } + }, + { + "id":"50e009ac-a66d-47a8-9b94-45feaeae450e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T19:50:43.218Z", + "completed":"2017-07-02T19:50:43.218Z", + "new_balance":"3361.51", + "value":"-7.10" + } + }, + { + "id":"86b6944a-0c49-4464-b0f9-fbec0a0d1091", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T12:13:57.280Z", + "completed":"2017-07-03T12:13:57.280Z", + "new_balance":"3351.04", + "value":"-10.47" + } + }, + { + "id":"d77a1c88-e4c3-42f7-9141-4ebf76e6261e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:30:44.997Z", + "completed":"2017-07-04T08:30:44.997Z", + "new_balance":"3349.26", + "value":"-1.78" + } + }, + { + "id":"c7b6be66-cd29-4ab8-be0e-e3fe70e71caa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T21:05:05.171Z", + "completed":"2017-07-05T21:05:05.171Z", + "new_balance":"3339.62", + "value":"-9.64" + } + }, + { + "id":"971159f7-692c-4b75-b7eb-c0c2718e1743", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T23:46:19.981Z", + "completed":"2017-07-05T23:46:19.981Z", + "new_balance":"3332.43", + "value":"-7.19" + } + }, + { + "id":"4e1e312c-48b0-450c-8d33-d889a3b28bce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T18:12:32.373Z", + "completed":"2017-07-06T18:12:32.373Z", + "new_balance":"3331.97", + "value":"-0.46" + } + }, + { + "id":"3475b34f-51a1-43bc-aea0-c6236a69d3b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T06:11:20.836Z", + "completed":"2017-07-11T06:11:20.836Z", + "new_balance":"3329.29", + "value":"-2.68" + } + }, + { + "id":"8278a87a-fdc2-4f8e-9933-f13f9ed5e36d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T12:48:24.023Z", + "completed":"2017-07-12T12:48:24.023Z", + "new_balance":"3326.07", + "value":"-3.22" + } + }, + { + "id":"e88688b4-e563-4813-b11a-d81cbe02b170", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T05:39:35.644Z", + "completed":"2017-07-14T05:39:35.644Z", + "new_balance":"3324.54", + "value":"-1.53" + } + }, + { + "id":"e2a2b76b-e4ab-4311-9cb6-bf9e12fbc983", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T20:38:09.178Z", + "completed":"2017-07-16T20:38:09.178Z", + "new_balance":"3323.64", + "value":"-0.90" + } + }, + { + "id":"f48bb4e4-e74f-4c85-ac16-e3ba87bef5c0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T13:28:37.947Z", + "completed":"2017-07-18T13:28:37.947Z", + "new_balance":"3321.53", + "value":"-2.11" + } + }, + { + "id":"c7e2f959-3970-4602-953f-1de2cc35263e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T00:42:08.054Z", + "completed":"2017-07-20T00:42:08.054Z", + "new_balance":"3294.03", + "value":"-27.50" + } + }, + { + "id":"091e7873-c872-4db7-94ec-d40dde05386e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T04:05:42.729Z", + "completed":"2017-07-20T04:05:42.729Z", + "new_balance":"3293.59", + "value":"-0.44" + } + }, + { + "id":"26aa02d6-7364-447e-8b80-28ecf6bdca1e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T10:20:59.642Z", + "completed":"2017-07-24T10:20:59.642Z", + "new_balance":"3289.11", + "value":"-4.48" + } + }, + { + "id":"674b179f-3129-4003-9b1d-aece1a35cfe6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T18:56:14.183Z", + "completed":"2017-07-24T18:56:14.183Z", + "new_balance":"3288.00", + "value":"-1.11" + } + }, + { + "id":"6d4d80c2-224a-4704-9461-d2e6a1dfc242", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T09:49:44.999Z", + "completed":"2017-07-25T09:49:44.999Z", + "new_balance":"3285.19", + "value":"-2.81" + } + }, + { + "id":"1e8cf555-c6b9-45e5-b21a-2d4b8101664a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T19:31:10.690Z", + "completed":"2017-07-25T19:31:10.690Z", + "new_balance":"3279.79", + "value":"-5.40" + } + }, + { + "id":"f8284f7c-1257-4f50-853e-321b3d0e1fb6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T23:58:53.893Z", + "completed":"2017-07-26T23:58:53.893Z", + "new_balance":"3273.97", + "value":"-5.82" + } + }, + { + "id":"43838b61-bee0-44e5-8987-0ba998440493", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T01:50:45.689Z", + "completed":"2017-07-27T01:50:45.689Z", + "new_balance":"3273.53", + "value":"-0.44" + } + }, + { + "id":"776a588a-ca2b-425c-94d2-db2eda3b8bfe", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T01:23:49.610Z", + "completed":"2017-08-01T01:23:49.610Z", + "new_balance":"3270.09", + "value":"-3.44" + } + }, + { + "id":"0e7b3491-619d-4f84-8695-477af1b5f02f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T13:52:55.729Z", + "completed":"2017-08-01T13:52:55.729Z", + "new_balance":"3267.77", + "value":"-2.32" + } + }, + { + "id":"58e1aca6-6bf2-4126-be31-3e02b4fa6de9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T14:02:28.502Z", + "completed":"2017-08-01T14:02:28.502Z", + "new_balance":"3262.62", + "value":"-5.15" + } + }, + { + "id":"11873886-936d-4a03-922e-1a5595590ded", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T14:19:41.669Z", + "completed":"2017-08-01T14:19:41.669Z", + "new_balance":"3247.37", + "value":"-15.25" + } + }, + { + "id":"be0be728-2fb7-4995-ba16-de30575ab4c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T15:44:23.692Z", + "completed":"2017-08-01T15:44:23.692Z", + "new_balance":"3189.14", + "value":"-58.23" + } + }, + { + "id":"60bda243-d205-4f6a-add6-619854ed0cf7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T17:47:04.833Z", + "completed":"2017-08-01T17:47:04.833Z", + "new_balance":"3371.84", + "value":"182.70" + } + }, + { + "id":"70efc8c0-fbeb-4d2e-80e9-0d1feedab6f9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T18:33:17.514Z", + "completed":"2017-08-02T18:33:17.514Z", + "new_balance":"3364.74", + "value":"-7.10" + } + }, + { + "id":"313060ae-7027-491e-8542-0225e528e724", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T17:30:46.577Z", + "completed":"2017-08-03T17:30:46.577Z", + "new_balance":"3364.28", + "value":"-0.46" + } + }, + { + "id":"6251d01c-4d43-42c1-b5c4-2eff4081d1dd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T14:50:38.966Z", + "completed":"2017-08-04T14:50:38.966Z", + "new_balance":"3361.36", + "value":"-2.92" + } + }, + { + "id":"bf703940-dd45-4ed2-9458-b9ec133c4a0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T17:47:36.666Z", + "completed":"2017-08-07T17:47:36.666Z", + "new_balance":"3358.86", + "value":"-2.50" + } + }, + { + "id":"6f279699-0863-4b05-b86c-ba87c71bd29f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T05:18:14.881Z", + "completed":"2017-08-09T05:18:14.881Z", + "new_balance":"3356.46", + "value":"-2.40" + } + }, + { + "id":"2d635288-860f-4bdd-b385-659297ed57b3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T18:26:43.784Z", + "completed":"2017-08-09T18:26:43.784Z", + "new_balance":"3353.13", + "value":"-3.33" + } + }, + { + "id":"1099849e-0349-440e-b2d0-7bb80b11bfe5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T06:17:43.560Z", + "completed":"2017-08-10T06:17:43.560Z", + "new_balance":"3345.94", + "value":"-7.19" + } + }, + { + "id":"1bbd7c62-5c7c-4d04-b6e5-5f738e623cf0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T21:10:53.271Z", + "completed":"2017-08-14T21:10:53.271Z", + "new_balance":"3345.46", + "value":"-0.48" + } + }, + { + "id":"ea6d36cb-3e02-438b-b4a9-eb962eb6c3b1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T09:22:06.120Z", + "completed":"2017-08-15T09:22:06.120Z", + "new_balance":"3342.43", + "value":"-3.03" + } + }, + { + "id":"0b3c114f-6d8e-4628-b760-9b4d70085443", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T22:55:25.522Z", + "completed":"2017-08-15T22:55:25.522Z", + "new_balance":"3339.21", + "value":"-3.22" + } + }, + { + "id":"1ec6c94c-bdd2-41cc-9114-38cfff302486", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T06:34:01.007Z", + "completed":"2017-08-16T06:34:01.007Z", + "new_balance":"3336.07", + "value":"-3.14" + } + }, + { + "id":"baec0703-4a37-4761-8c65-7347b3c9323b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:23:09.960Z", + "completed":"2017-08-17T15:23:09.960Z", + "new_balance":"3332.59", + "value":"-3.48" + } + }, + { + "id":"167fa9af-e05f-4049-854f-76cafbea7396", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T18:32:38.564Z", + "completed":"2017-08-20T18:32:38.564Z", + "new_balance":"3331.82", + "value":"-0.77" + } + }, + { + "id":"c3683296-d1ab-4265-b9f4-7ab349d9691c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T19:22:38.074Z", + "completed":"2017-08-20T19:22:38.074Z", + "new_balance":"3331.35", + "value":"-0.47" + } + }, + { + "id":"cb5d9929-0f20-4467-82fc-cb5e657f165c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T07:50:18.344Z", + "completed":"2017-08-22T07:50:18.344Z", + "new_balance":"3335.43", + "value":"4.08" + } + }, + { + "id":"6b23d7d1-024b-4d8b-abc1-a5c31f413c0e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T17:01:39.692Z", + "completed":"2017-08-23T17:01:39.692Z", + "new_balance":"3329.00", + "value":"-6.43" + } + }, + { + "id":"da7fb102-37db-403a-9220-b331a2642054", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T22:15:47.972Z", + "completed":"2017-08-23T22:15:47.972Z", + "new_balance":"3324.88", + "value":"-4.12" + } + }, + { + "id":"740ab50a-e618-4ad6-943a-ce39d9d13b87", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T12:50:52.103Z", + "completed":"2017-08-28T12:50:52.103Z", + "new_balance":"3322.33", + "value":"-2.55" + } + }, + { + "id":"bf16c908-9a20-4647-8d42-8fafa2357461", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T19:16:16.496Z", + "completed":"2017-08-28T19:16:16.496Z", + "new_balance":"3319.39", + "value":"-2.94" + } + }, + { + "id":"488b19f2-0bea-4669-9dae-9ca537630ca4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T09:33:55.636Z", + "completed":"2017-09-01T09:33:55.636Z", + "new_balance":"3315.95", + "value":"-3.44" + } + }, + { + "id":"d7b3ddc2-fda6-4579-8f81-4cfe203f87d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T14:19:18.510Z", + "completed":"2017-09-01T14:19:18.510Z", + "new_balance":"3310.80", + "value":"-5.15" + } + }, + { + "id":"944e25b1-4644-4cf2-9818-a94e4ef37f74", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:51:50.064Z", + "completed":"2017-09-01T14:51:50.064Z", + "new_balance":"3252.57", + "value":"-58.23" + } + }, + { + "id":"eb3f11aa-af49-4016-b1d4-8da1b10c4c8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T15:18:22.372Z", + "completed":"2017-09-01T15:18:22.372Z", + "new_balance":"3250.25", + "value":"-2.32" + } + }, + { + "id":"9dca89e2-c6cb-4bc3-96e4-4b6bef095283", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:30:24.628Z", + "completed":"2017-09-01T17:30:24.628Z", + "new_balance":"3432.95", + "value":"182.70" + } + }, + { + "id":"e28bc9b4-c392-434e-be0b-e0d269c0af63", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T20:57:56.905Z", + "completed":"2017-09-01T20:57:56.905Z", + "new_balance":"3417.70", + "value":"-15.25" + } + }, + { + "id":"e218e1fb-6c35-4920-8d32-f95d04f6b54b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T17:41:01.414Z", + "completed":"2017-09-02T17:41:01.414Z", + "new_balance":"3410.60", + "value":"-7.10" + } + }, + { + "id":"c6167c9e-aaf0-4da1-a19b-cf993cebb9e9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T03:22:46.538Z", + "completed":"2017-09-04T03:22:46.538Z", + "new_balance":"3409.35", + "value":"-1.25" + } + }, + { + "id":"8fc3f345-d4b0-47a6-9294-7feeb9624002", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T09:01:47.613Z", + "completed":"2017-09-04T09:01:47.613Z", + "new_balance":"3408.59", + "value":"-0.76" + } + }, + { + "id":"1ec2e946-177f-4abe-a6a2-36a6c4e1c9b8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T17:41:40.083Z", + "completed":"2017-09-04T17:41:40.083Z", + "new_balance":"3405.29", + "value":"-3.30" + } + }, + { + "id":"a1f5ee80-c241-4e9b-a84a-59f3677337fa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T20:32:30.231Z", + "completed":"2017-09-04T20:32:30.231Z", + "new_balance":"3397.99", + "value":"-7.30" + } + }, + { + "id":"ae39960e-ab5d-4b5a-bab7-ed1bc17845ff", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T02:43:15.588Z", + "completed":"2017-09-05T02:43:15.588Z", + "new_balance":"3393.95", + "value":"-4.04" + } + }, + { + "id":"9058547a-5dc6-49b4-813e-5ca762e5eec9", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T23:35:47.596Z", + "completed":"2017-09-05T23:35:47.596Z", + "new_balance":"3393.55", + "value":"-0.40" + } + }, + { + "id":"6924a1c2-d4c1-4dc7-85af-190e86afebd3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T05:41:14.390Z", + "completed":"2017-09-06T05:41:14.390Z", + "new_balance":"3386.25", + "value":"-7.30" + } + }, + { + "id":"c9f4ceea-3df1-4ea9-ba3d-0605de17799c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T20:43:52.060Z", + "completed":"2017-09-06T20:43:52.060Z", + "new_balance":"3380.98", + "value":"-5.27" + } + }, + { + "id":"4edfebdd-00e8-482a-b244-adf744c7eee3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T05:46:46.412Z", + "completed":"2017-09-08T05:46:46.412Z", + "new_balance":"3375.71", + "value":"-5.27" + } + }, + { + "id":"d3e3e2f8-c164-440d-8dbb-46f6b5fc7fd6", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T13:10:02.392Z", + "completed":"2017-09-08T13:10:02.392Z", + "new_balance":"3371.44", + "value":"-4.27" + } + }, + { + "id":"9e592068-327a-4d36-9123-648c6d5221d7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T10:04:48.965Z", + "completed":"2017-09-10T10:04:48.965Z", + "new_balance":"3365.12", + "value":"-6.32" + } + }, + { + "id":"d3925db7-a9e1-4659-bf6e-9a10644321a2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T16:55:51.643Z", + "completed":"2017-09-10T16:55:51.643Z", + "new_balance":"3364.58", + "value":"-0.54" + } + }, + { + "id":"1a52f76d-1866-4ef4-9259-9c520ca6861d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T18:46:17.004Z", + "completed":"2017-09-11T18:46:17.004Z", + "new_balance":"3363.81", + "value":"-0.77" + } + }, + { + "id":"3e799817-a665-4517-9032-0a3cbe2f48ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T19:19:23.409Z", + "completed":"2017-09-12T19:19:23.409Z", + "new_balance":"3362.76", + "value":"-1.05" + } + }, + { + "id":"93d57cca-d741-4c4f-93bf-120661beeed1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T20:23:35.939Z", + "completed":"2017-09-12T20:23:35.939Z", + "new_balance":"3360.51", + "value":"-2.25" + } + }, + { + "id":"a2c9e655-cb6d-4247-b63c-577b0492c09c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T16:06:42.160Z", + "completed":"2017-09-13T16:06:42.160Z", + "new_balance":"3356.25", + "value":"-4.26" + } + }, + { + "id":"e4861850-3dcf-4022-9862-7354af9eadb8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T11:33:50.372Z", + "completed":"2017-09-16T11:33:50.372Z", + "new_balance":"3355.73", + "value":"-0.52" + } + }, + { + "id":"ad7ef2e3-fd05-4c44-9af4-d163ece093c7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T07:27:01.613Z", + "completed":"2017-09-17T07:27:01.613Z", + "new_balance":"3350.91", + "value":"-4.82" + } + }, + { + "id":"a3881701-3498-4672-a26f-409539ec7a72", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T14:40:47.979Z", + "completed":"2017-09-17T14:40:47.979Z", + "new_balance":"3341.12", + "value":"-9.79" + } + }, + { + "id":"95c1c3f2-39e2-4989-bd4b-56224e549117", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T23:45:31.167Z", + "completed":"2017-09-18T23:45:31.167Z", + "new_balance":"3340.60", + "value":"-0.52" + } + }, + { + "id":"b9edf9b4-4fc7-45b0-bff6-cfaa834003ef", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T06:09:57.959Z", + "completed":"2017-09-19T06:09:57.959Z", + "new_balance":"3336.31", + "value":"-4.29" + } + }, + { + "id":"e53b5242-38d4-455d-909a-41f9de0cd1ea", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T09:08:07.844Z", + "completed":"2017-09-19T09:08:07.844Z", + "new_balance":"3329.99", + "value":"-6.32" + } + }, + { + "id":"de3a5034-7118-4c93-8616-fb00cbb85fcc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T14:34:58.347Z", + "completed":"2017-09-19T14:34:58.347Z", + "new_balance":"3325.84", + "value":"-4.15" + } + }, + { + "id":"f4e7aaa4-da9f-4030-82ca-bfbc5a537a41", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T13:33:38.456Z", + "completed":"2017-09-20T13:33:38.456Z", + "new_balance":"3318.88", + "value":"-6.96" + } + }, + { + "id":"c54719c4-c7d2-4c03-8cf2-d2b45f2aa795", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T20:47:25.228Z", + "completed":"2017-09-20T20:47:25.228Z", + "new_balance":"3313.72", + "value":"-5.16" + } + }, + { + "id":"2d832d95-ec54-4f73-bfc3-4d5b05831483", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T09:54:24.838Z", + "completed":"2017-09-21T09:54:24.838Z", + "new_balance":"3313.13", + "value":"-0.59" + } + }, + { + "id":"83df9e79-b37f-4546-9ac3-1b0a6b7d014e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T13:05:34.507Z", + "completed":"2017-09-21T13:05:34.507Z", + "new_balance":"3312.37", + "value":"-0.76" + } + }, + { + "id":"daa565a1-de53-49bc-9170-aa15538d761e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T02:57:21.197Z", + "completed":"2017-09-23T02:57:21.197Z", + "new_balance":"3307.76", + "value":"-4.61" + } + }, + { + "id":"868d528c-537a-4b9d-8b66-0c5673063453", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T07:06:11.294Z", + "completed":"2017-09-23T07:06:11.294Z", + "new_balance":"3306.85", + "value":"-0.91" + } + }, + { + "id":"8021c7a2-6ad4-4139-a746-daa7210dd893", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T04:19:36.955Z", + "completed":"2017-09-24T04:19:36.955Z", + "new_balance":"3303.30", + "value":"-3.55" + } + }, + { + "id":"fa0fcd64-d467-4e04-be32-0eba40b0a336", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T01:45:50.690Z", + "completed":"2017-09-25T01:45:50.690Z", + "new_balance":"3301.99", + "value":"-1.31" + } + }, + { + "id":"2a598d9e-1ee8-49bb-a11b-c53ed4f2770d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T09:27:17.555Z", + "completed":"2017-09-25T09:27:17.555Z", + "new_balance":"3298.93", + "value":"-3.06" + } + }, + { + "id":"6bd6d671-2ce6-4841-b497-51719e8d4bba", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T04:48:49.792Z", + "completed":"2017-09-27T04:48:49.792Z", + "new_balance":"3271.43", + "value":"-27.50" + } + }, + { + "id":"cf6fcfc5-69b7-4275-aee7-3c435f6cf18c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T19:26:49.929Z", + "completed":"2017-09-29T19:26:49.929Z", + "new_balance":"3268.69", + "value":"-2.74" + } + }, + { + "id":"9bb840e3-05b4-4f60-9d94-244be04233ea", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T09:18:40.721Z", + "completed":"2017-10-01T09:18:40.721Z", + "new_balance":"3253.44", + "value":"-15.25" + } + }, + { + "id":"b9eb7eac-dbb3-430a-ad86-3973d0c19a8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T18:40:57.359Z", + "completed":"2017-10-01T18:40:57.359Z", + "new_balance":"3195.21", + "value":"-58.23" + } + }, + { + "id":"b34458d4-3cc6-4fa2-b202-e27a5d3f5996", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T21:19:36.536Z", + "completed":"2017-10-01T21:19:36.536Z", + "new_balance":"3192.89", + "value":"-2.32" + } + }, + { + "id":"7e7223fd-6a02-4a30-b580-5500e8c0e822", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T22:06:22.803Z", + "completed":"2017-10-01T22:06:22.803Z", + "new_balance":"3187.74", + "value":"-5.15" + } + }, + { + "id":"043260e2-5b8b-4224-a1d7-a4e3146db41d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T02:36:15.293Z", + "completed":"2017-10-02T02:36:15.293Z", + "new_balance":"3180.64", + "value":"-7.10" + } + }, + { + "id":"baf3fa16-9785-4e9f-a8c4-a9fff4162411", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T09:56:59.437Z", + "completed":"2017-10-02T09:56:59.437Z", + "new_balance":"3170.95", + "value":"-9.69" + } + }, + { + "id":"144438db-f54e-4f2e-ad5d-89cdf402d3f3", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T09:07:08.389Z", + "completed":"2017-10-03T09:07:08.389Z", + "new_balance":"3143.45", + "value":"-27.50" + } + }, + { + "id":"00efcb7f-3b61-48c5-a79c-7db6fe156616", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T13:18:07.840Z", + "completed":"2017-10-03T13:18:07.840Z", + "new_balance":"3086.64", + "value":"-56.81" + } + }, + { + "id":"73c492da-72e9-42b0-adb4-523f58c8fdb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T17:49:01.068Z", + "completed":"2017-10-03T17:49:01.068Z", + "new_balance":"3073.54", + "value":"-13.10" + } + }, + { + "id":"de950c94-5fa4-4b01-90f6-6ed3028b1082", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T22:45:11.964Z", + "completed":"2017-10-03T22:45:11.964Z", + "new_balance":"3069.76", + "value":"-3.78" + } + }, + { + "id":"cb3b840b-6219-46a6-9070-5681f3b27b9d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T23:46:38.214Z", + "completed":"2017-10-03T23:46:38.214Z", + "new_balance":"3066.85", + "value":"-2.91" + } + }, + { + "id":"647bb0d9-3360-43dc-8674-a04cd5976cee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T18:44:57.616Z", + "completed":"2017-10-04T18:44:57.616Z", + "new_balance":"3059.66", + "value":"-7.19" + } + }, + { + "id":"021395f9-471c-40d9-9e91-2f3443ba937c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T19:55:07.004Z", + "completed":"2017-10-05T19:55:07.004Z", + "new_balance":"3059.20", + "value":"-0.46" + } + }, + { + "id":"e17817db-d0df-4fd1-aeda-40323e40c595", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T21:38:25.842Z", + "completed":"2017-10-05T21:38:25.842Z", + "new_balance":"3056.52", + "value":"-2.68" + } + }, + { + "id":"546c8f1a-59e5-4d7a-8c8e-978a2e09fdb1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T14:14:47.932Z", + "completed":"2017-10-07T14:14:47.932Z", + "new_balance":"3053.30", + "value":"-3.22" + } + }, + { + "id":"bd4c79ad-4d6d-4949-963e-0294c484959f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T15:43:36.389Z", + "completed":"2017-10-07T15:43:36.389Z", + "new_balance":"3051.77", + "value":"-1.53" + } + }, + { + "id":"93aede2a-b808-4bc7-9b09-d40597b0ccd2", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T11:07:51.558Z", + "completed":"2017-10-08T11:07:51.558Z", + "new_balance":"3050.87", + "value":"-0.90" + } + }, + { + "id":"e297f2ba-9486-4873-bac2-226cbff77000", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T04:11:51.441Z", + "completed":"2017-10-09T04:11:51.441Z", + "new_balance":"3048.76", + "value":"-2.11" + } + }, + { + "id":"fd7bf363-4511-4377-a381-845da7d44075", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T04:25:27.471Z", + "completed":"2017-10-09T04:25:27.471Z", + "new_balance":"3021.26", + "value":"-27.50" + } + }, + { + "id":"278f3419-6a9a-46b1-a825-2d1f5c773b99", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T22:51:37.027Z", + "completed":"2017-10-09T22:51:37.027Z", + "new_balance":"3020.82", + "value":"-0.44" + } + }, + { + "id":"f6b39282-cf63-4488-9c00-0f078ed46e90", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T23:29:37.970Z", + "completed":"2017-10-10T23:29:37.970Z", + "new_balance":"3016.34", + "value":"-4.48" + } + }, + { + "id":"8d782e27-f862-4357-b5e5-e5a47190bde5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T02:03:43.022Z", + "completed":"2017-10-17T02:03:43.022Z", + "new_balance":"3015.23", + "value":"-1.11" + } + }, + { + "id":"6c34ad2f-a829-43da-a237-496c51869ec7", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T16:51:32.415Z", + "completed":"2017-10-18T16:51:32.415Z", + "new_balance":"3012.42", + "value":"-2.81" + } + }, + { + "id":"fdc9687d-c800-4c7a-9d47-dcc219d3840d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T07:12:24.150Z", + "completed":"2017-10-25T07:12:24.150Z", + "new_balance":"3007.02", + "value":"-5.40" + } + }, + { + "id":"10c7e2b1-993e-4961-9e85-3df5072c584e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T03:40:50.459Z", + "completed":"2017-10-26T03:40:50.459Z", + "new_balance":"3006.58", + "value":"-0.44" + } + }, + { + "id":"de4468fd-5ee8-4827-9f22-e3eebc0bf983", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T04:01:44.282Z", + "completed":"2017-10-26T04:01:44.282Z", + "new_balance":"3000.76", + "value":"-5.82" + } + }, + { + "id":"017d2f37-d465-4eec-8d0c-42757b23978d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T01:16:34.468Z", + "completed":"2017-11-02T01:16:34.468Z", + "new_balance":"2993.66", + "value":"-7.10" + } + }, + { + "id":"c66640f8-3c97-4800-af7d-d6ce8d4e8257", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T02:59:15.026Z", + "completed":"2017-11-02T02:59:15.026Z", + "new_balance":"2990.22", + "value":"-3.44" + } + }, + { + "id":"16268bb3-96e6-41ff-9bd2-3702ab1a1415", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T03:24:26.830Z", + "completed":"2017-11-02T03:24:26.830Z", + "new_balance":"2989.07", + "value":"-1.15" + } + }, + { + "id":"5abf97c9-280b-4132-8e37-a0b0437719f4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T06:47:48.074Z", + "completed":"2017-11-02T06:47:48.074Z", + "new_balance":"2986.75", + "value":"-2.32" + } + }, + { + "id":"f92b08c8-0982-4aa4-9421-ad340acfbf75", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T15:44:50.661Z", + "completed":"2017-11-02T15:44:50.661Z", + "new_balance":"2971.50", + "value":"-15.25" + } + }, + { + "id":"da8781c7-3e93-47d9-bf1f-9af1c7ab0dfa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T15:55:00.252Z", + "completed":"2017-11-02T15:55:00.252Z", + "new_balance":"2966.35", + "value":"-5.15" + } + }, + { + "id":"cbe01303-5f85-40a4-99c1-ca6c99341ffd", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T17:36:58.499Z", + "completed":"2017-11-02T17:36:58.499Z", + "new_balance":"2908.12", + "value":"-58.23" + } + }, + { + "id":"8bc333b4-2d18-412e-9b49-5c3f4d5346ce", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T18:35:42.745Z", + "completed":"2017-11-02T18:35:42.745Z", + "new_balance":"3090.82", + "value":"182.70" + } + }, + { + "id":"5e1d07d0-5ce3-46cf-b629-3cd814353d6b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T18:45:16.022Z", + "completed":"2017-11-06T18:45:16.022Z", + "new_balance":"3088.72", + "value":"-2.10" + } + }, + { + "id":"ebbcc9fe-056b-4e57-a1ed-e0092323c3ee", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T05:17:55.882Z", + "completed":"2017-11-07T05:17:55.882Z", + "new_balance":"3086.22", + "value":"-2.50" + } + }, + { + "id":"be078fea-b0d0-4e1e-9f7f-ed58b5fbff45", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T05:55:40.028Z", + "completed":"2017-11-07T05:55:40.028Z", + "new_balance":"3083.82", + "value":"-2.40" + } + }, + { + "id":"059ac5a3-5e05-40e9-9c68-febcbc06d29c", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T07:47:04.985Z", + "completed":"2017-11-07T07:47:04.985Z", + "new_balance":"3080.49", + "value":"-3.33" + } + }, + { + "id":"e2f537d1-1932-43fb-9320-c915369e4338", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T07:01:52.860Z", + "completed":"2017-11-09T07:01:52.860Z", + "new_balance":"3073.30", + "value":"-7.19" + } + }, + { + "id":"eea4f167-5004-4773-9e1c-f54ae1f5b37f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T10:55:05.446Z", + "completed":"2017-11-09T10:55:05.446Z", + "new_balance":"3072.82", + "value":"-0.48" + } + }, + { + "id":"35cca304-353e-4489-b0b0-f6dc9b580867", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T09:48:45.237Z", + "completed":"2017-11-12T09:48:45.237Z", + "new_balance":"3070.37", + "value":"-2.45" + } + }, + { + "id":"d0ce6a3f-5630-4137-abff-e91b3998a228", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T17:57:29.500Z", + "completed":"2017-11-12T17:57:29.500Z", + "new_balance":"3067.34", + "value":"-3.03" + } + }, + { + "id":"ef6a34d1-e7f9-4fe5-9034-6d4b3233eefa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T04:51:05.171Z", + "completed":"2017-11-14T04:51:05.171Z", + "new_balance":"3063.86", + "value":"-3.48" + } + }, + { + "id":"734369dc-ee19-4212-a39f-46f1102f260a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T19:19:41.260Z", + "completed":"2017-11-14T19:19:41.260Z", + "new_balance":"3060.72", + "value":"-3.14" + } + }, + { + "id":"14f0cd8c-088d-46fc-848e-c53826ab0b00", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T19:25:10.288Z", + "completed":"2017-11-16T19:25:10.288Z", + "new_balance":"3060.25", + "value":"-0.47" + } + }, + { + "id":"cb206c0e-8885-4cd5-9331-fb3e184493b4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T17:42:23.204Z", + "completed":"2017-11-18T17:42:23.204Z", + "new_balance":"3059.48", + "value":"-0.77" + } + }, + { + "id":"ed3a4bac-7bf7-4e5a-b3a9-c03318242be1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T04:44:03.553Z", + "completed":"2017-11-20T04:44:03.553Z", + "new_balance":"3063.56", + "value":"4.08" + } + }, + { + "id":"74953f22-6173-418e-a6fe-b509c6cd1656", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T13:31:34.600Z", + "completed":"2017-11-21T13:31:34.600Z", + "new_balance":"3059.44", + "value":"-4.12" + } + }, + { + "id":"c5b23872-3cbd-4f61-b470-01d69c343e2b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T16:50:03.703Z", + "completed":"2017-11-21T16:50:03.703Z", + "new_balance":"3053.01", + "value":"-6.43" + } + }, + { + "id":"94243799-37b7-4cb3-98b1-44a8b43411af", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T05:36:48.651Z", + "completed":"2017-11-27T05:36:48.651Z", + "new_balance":"3050.46", + "value":"-2.55" + } + }, + { + "id":"9eb41258-2533-4c81-b0b7-d27e1947ac61", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T08:07:13.673Z", + "completed":"2017-11-27T08:07:13.673Z", + "new_balance":"3047.52", + "value":"-2.94" + } + }, + { + "id":"4c6b024a-2b7c-43f2-a462-479ac97c7952", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:07:57.658Z", + "completed":"2017-12-01T01:07:57.658Z", + "new_balance":"2989.29", + "value":"-58.23" + } + }, + { + "id":"d46cbaac-5720-40ab-a836-d7196813b644", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T07:14:05.104Z", + "completed":"2017-12-01T07:14:05.104Z", + "new_balance":"2985.85", + "value":"-3.44" + } + }, + { + "id":"eaa8bbb1-0d89-4750-9e59-06b5f236502e", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T12:59:13.656Z", + "completed":"2017-12-01T12:59:13.656Z", + "new_balance":"3168.55", + "value":"182.70" + } + }, + { + "id":"a55a49ee-0bda-418c-94d0-05c83857e945", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T14:09:50.477Z", + "completed":"2017-12-01T14:09:50.477Z", + "new_balance":"3153.30", + "value":"-15.25" + } + }, + { + "id":"1c6fc079-cd71-4790-a555-a2ed0bbedb72", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T16:29:50.716Z", + "completed":"2017-12-01T16:29:50.716Z", + "new_balance":"3150.98", + "value":"-2.32" + } + }, + { + "id":"f7805372-51a8-4ae8-9da2-496268a6796a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T20:58:55.977Z", + "completed":"2017-12-01T20:58:55.977Z", + "new_balance":"3145.83", + "value":"-5.15" + } + }, + { + "id":"cbd0a1e2-77d3-46ff-ba38-b1a014c0ac81", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T02:45:10.799Z", + "completed":"2017-12-04T02:45:10.799Z", + "new_balance":"3133.87", + "value":"-11.96" + } + }, + { + "id":"d31686bd-811f-44bf-9fa5-ee87dd8f39d4", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T15:50:51.218Z", + "completed":"2017-12-04T15:50:51.218Z", + "new_balance":"3126.77", + "value":"-7.10" + } + }, + { + "id":"dd27fda6-e044-43f7-b35e-8bf6803a59fc", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T03:09:20.433Z", + "completed":"2017-12-12T03:09:20.433Z", + "new_balance":"3123.47", + "value":"-3.30" + } + }, + { + "id":"a64ace7c-bb2f-4b0b-b487-131a8f1b71f1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T21:58:57.955Z", + "completed":"2017-12-12T21:58:57.955Z", + "new_balance":"3122.22", + "value":"-1.25" + } + }, + { + "id":"776baa01-c35d-4a64-a1d1-59e3dd07f68a", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T06:40:17.973Z", + "completed":"2017-12-13T06:40:17.973Z", + "new_balance":"3121.46", + "value":"-0.76" + } + }, + { + "id":"e6449740-e999-4a2d-a2bb-e4008cfc98d0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T11:52:42.001Z", + "completed":"2017-12-13T11:52:42.001Z", + "new_balance":"3114.16", + "value":"-7.30" + } + }, + { + "id":"8cde22ee-5345-4df3-bf6e-b6b2b3e2cfdf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T09:31:22.220Z", + "completed":"2017-12-16T09:31:22.220Z", + "new_balance":"3110.12", + "value":"-4.04" + } + }, + { + "id":"e4f7aa6e-bdc8-4c5b-8fb3-7476756902f0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T14:12:40.941Z", + "completed":"2017-12-18T14:12:40.941Z", + "new_balance":"3109.72", + "value":"-0.40" + } + }, + { + "id":"bf8c3ffb-41d5-44ee-9611-79a55d621c68", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T19:31:55.327Z", + "completed":"2017-12-19T19:31:55.327Z", + "new_balance":"3104.45", + "value":"-5.27" + } + }, + { + "id":"2844685d-2d4b-4f0b-9d84-271cb37a3369", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T22:04:31.460Z", + "completed":"2017-12-19T22:04:31.460Z", + "new_balance":"3097.15", + "value":"-7.30" + } + }, + { + "id":"c2bd2ee9-9461-47ac-bd6e-36cf6f8122bf", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T10:33:25.845Z", + "completed":"2017-12-20T10:33:25.845Z", + "new_balance":"3092.88", + "value":"-4.27" + } + }, + { + "id":"4dc5f0b8-7a9d-4475-8e2c-7a3fe50b5b15", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T21:51:09.449Z", + "completed":"2017-12-21T21:51:09.449Z", + "new_balance":"3087.61", + "value":"-5.27" + } + }, + { + "id":"e7870b39-776d-4930-a4dc-bf212795cb8d", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:11:55.350Z", + "completed":"2017-12-24T05:11:55.350Z", + "new_balance":"3085.36", + "value":"-2.25" + } + }, + { + "id":"65ab4921-7996-49dc-a07a-3fac6f66dfb0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T09:48:20.862Z", + "completed":"2017-12-24T09:48:20.862Z", + "new_balance":"3084.82", + "value":"-0.54" + } + }, + { + "id":"fb83128b-b177-45ba-aa75-e6bd06726206", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T13:17:11.981Z", + "completed":"2017-12-24T13:17:11.981Z", + "new_balance":"3080.56", + "value":"-4.26" + } + }, + { + "id":"1cfc8b45-6089-438e-8acd-1d5454d7431b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T13:39:45.084Z", + "completed":"2017-12-24T13:39:45.084Z", + "new_balance":"3079.51", + "value":"-1.05" + } + }, + { + "id":"87170433-f902-450b-a4f9-c60de9f05b3f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T14:25:07.381Z", + "completed":"2017-12-24T14:25:07.381Z", + "new_balance":"3073.19", + "value":"-6.32" + } + }, + { + "id":"b4d460b0-cebc-43e1-94f1-df855b15ee12", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T23:41:28.591Z", + "completed":"2017-12-24T23:41:28.591Z", + "new_balance":"3072.42", + "value":"-0.77" + } + }, + { + "id":"bedf48f7-3dc1-45c2-a90e-90f1834357aa", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T17:02:11.191Z", + "completed":"2017-12-28T17:02:11.191Z", + "new_balance":"3071.90", + "value":"-0.52" + } + }, + { + "id":"f5a904e1-a733-4250-a7e7-ae0eed6e64a1", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T19:21:40.024Z", + "completed":"2017-12-28T19:21:40.024Z", + "new_balance":"3067.08", + "value":"-4.82" + } + }, + { + "id":"d975f63b-6a72-4fb2-a240-c80922f01863", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T21:38:24.245Z", + "completed":"2017-12-28T21:38:24.245Z", + "new_balance":"3066.56", + "value":"-0.52" + } + }, + { + "id":"9098d00e-1203-4f89-8667-b16e44c4a310", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T22:35:40.201Z", + "completed":"2017-12-28T22:35:40.201Z", + "new_balance":"3056.77", + "value":"-9.79" + } + }, + { + "id":"ca657d8e-3f90-439d-a66e-dc65105145a8", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T03:23:33.134Z", + "completed":"2017-12-29T03:23:33.134Z", + "new_balance":"3051.61", + "value":"-5.16" + } + }, + { + "id":"7de662c0-4a75-45db-bc0b-784240080071", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T05:14:58.936Z", + "completed":"2017-12-29T05:14:58.936Z", + "new_balance":"3047.46", + "value":"-4.15" + } + }, + { + "id":"a356e752-ccbf-4fb3-9728-96f768a27aa0", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T05:35:47.322Z", + "completed":"2017-12-29T05:35:47.322Z", + "new_balance":"3041.14", + "value":"-6.32" + } + }, + { + "id":"715c6c42-b926-4934-b46a-a4c91f8adc31", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T05:47:37.704Z", + "completed":"2017-12-29T05:47:37.704Z", + "new_balance":"3034.18", + "value":"-6.96" + } + }, + { + "id":"9e443a63-e4bc-40e9-8dfb-5145ff4139c5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T07:39:41.817Z", + "completed":"2017-12-29T07:39:41.817Z", + "new_balance":"3033.42", + "value":"-0.76" + } + }, + { + "id":"a2f42c10-ce7b-4b03-bc98-a197c8514819", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T16:57:51.150Z", + "completed":"2017-12-29T16:57:51.150Z", + "new_balance":"3029.13", + "value":"-4.29" + } + }, + { + "id":"13f310a1-8587-47b1-89fa-ab2d412a126f", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T01:11:57.835Z", + "completed":"2017-12-30T01:11:57.835Z", + "new_balance":"3025.58", + "value":"-3.55" + } + }, + { + "id":"5997f606-6673-4f32-9eb8-d491b5538c57", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T04:55:03.718Z", + "completed":"2017-12-30T04:55:03.718Z", + "new_balance":"3024.99", + "value":"-0.59" + } + }, + { + "id":"2c08dba1-d032-4053-80eb-32ddd329b5be", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T16:41:04.257Z", + "completed":"2017-12-30T16:41:04.257Z", + "new_balance":"3024.08", + "value":"-0.91" + } + }, + { + "id":"e8e90171-4e11-48ef-a9a0-a9db63ae4fe5", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T23:38:25.626Z", + "completed":"2017-12-30T23:38:25.626Z", + "new_balance":"3019.47", + "value":"-4.61" + } + }, + { + "id":"098841bb-7bf6-46e5-930c-e849c7f5fd3b", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T04:39:20.590Z", + "completed":"2017-12-31T04:39:20.590Z", + "new_balance":"3016.73", + "value":"-2.74" + } + }, + { + "id":"faf05df9-4abe-47ea-be55-335c697d7b91", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T13:21:16.203Z", + "completed":"2017-12-31T13:21:16.203Z", + "new_balance":"2989.23", + "value":"-27.50" + } + }, + { + "id":"a86530da-777f-4a5f-bf1a-cf30c152d821", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T16:00:59.047Z", + "completed":"2017-12-31T16:00:59.047Z", + "new_balance":"2987.92", + "value":"-1.31" + } + }, + { + "id":"c221c24a-48b1-4aa4-9be4-5f81e36daf96", + "this_account":{ + "id":"708b706f-3fcf-415e-b4a1-a7b47004a8ad", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T21:10:52.014Z", + "completed":"2017-12-31T21:10:52.014Z", + "new_balance":"2984.86", + "value":"-3.06" + } + }, + { + "id":"f589786e-e709-4c7f-8f08-226d716ec253", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T14:13:09.579Z", + "completed":"2016-03-02T14:13:09.579Z", + "new_balance":"91408.15", + "value":"-832.36" + } + }, + { + "id":"311ab82c-80b7-41d9-899c-054cb509d7b9", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T18:26:19.442Z", + "completed":"2016-03-02T18:26:19.442Z", + "new_balance":"91029.82", + "value":"-378.33" + } + }, + { + "id":"7ae7af75-1d00-4e8b-95a3-981372987c6c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T18:59:16.600Z", + "completed":"2016-03-03T18:59:16.600Z", + "new_balance":"90955.89", + "value":"-73.93" + } + }, + { + "id":"cbeaaad4-a024-4115-b4b3-6331ab0f6de0", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T20:10:40.753Z", + "completed":"2016-03-03T20:10:40.753Z", + "new_balance":"86370.73", + "value":"-4585.16" + } + }, + { + "id":"7c5e6c2b-224d-412c-8a9a-7dc6774a5c61", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T02:49:53.567Z", + "completed":"2016-03-04T02:49:53.567Z", + "new_balance":"86006.44", + "value":"-364.29" + } + }, + { + "id":"dee93caa-e7aa-4f59-889d-7f30a26df1cd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T11:59:52.313Z", + "completed":"2016-03-04T11:59:52.313Z", + "new_balance":"85919.88", + "value":"-86.56" + } + }, + { + "id":"4c46b710-a20e-4b45-be12-4f4c157b075c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T08:47:00.060Z", + "completed":"2016-03-07T08:47:00.060Z", + "new_balance":"85866.70", + "value":"-53.18" + } + }, + { + "id":"6d18fba6-e30e-4979-9a25-6d9d586dee98", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T08:42:56.993Z", + "completed":"2016-03-09T08:42:56.993Z", + "new_balance":"85034.34", + "value":"-832.36" + } + }, + { + "id":"d7c476c4-80c8-44be-b9a5-2a3cab37488f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T02:02:09.735Z", + "completed":"2016-03-16T02:02:09.735Z", + "new_balance":"84489.18", + "value":"-545.16" + } + }, + { + "id":"895b87ca-a5c3-4d78-b917-69d5728f460e", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T01:27:38.504Z", + "completed":"2016-03-25T01:27:38.504Z", + "new_balance":"83944.02", + "value":"-545.16" + } + }, + { + "id":"57477568-61e9-4fc2-892e-0e811360b5bb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T09:48:14.637Z", + "completed":"2016-03-30T09:48:14.637Z", + "new_balance":"81312.81", + "value":"-2631.21" + } + }, + { + "id":"14d23309-cd51-4b03-80a5-a9f7e5038f15", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:17:25.985Z", + "completed":"2016-06-07T00:17:25.985Z", + "new_balance":"80934.48", + "value":"-378.33" + } + }, + { + "id":"3e8f6fa0-9c93-49fd-a6ca-ef1428621a58", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T07:48:49.348Z", + "completed":"2016-06-07T07:48:49.348Z", + "new_balance":"80102.12", + "value":"-832.36" + } + }, + { + "id":"8f8f37c0-34cc-45d0-9526-6ed02f6df682", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:09:33.672Z", + "completed":"2016-06-07T13:09:33.672Z", + "new_balance":"75516.96", + "value":"-4585.16" + } + }, + { + "id":"70a3b5d7-44a4-420e-9e2c-5bb550e2581f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T12:38:21.535Z", + "completed":"2016-06-10T12:38:21.535Z", + "new_balance":"75430.40", + "value":"-86.56" + } + }, + { + "id":"55736b5c-816b-48e0-b0e2-0d89a17bcc55", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T04:26:41.760Z", + "completed":"2016-06-14T04:26:41.760Z", + "new_balance":"75066.11", + "value":"-364.29" + } + }, + { + "id":"02e80c96-fa16-4c13-a8be-ceefa17dd608", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T10:20:03.262Z", + "completed":"2016-06-19T10:20:03.262Z", + "new_balance":"74992.18", + "value":"-73.93" + } + }, + { + "id":"15d2688c-49b5-431c-a9dd-1ba7a7c99961", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T10:55:54.517Z", + "completed":"2016-06-19T10:55:54.517Z", + "new_balance":"74939.00", + "value":"-53.18" + } + }, + { + "id":"f94ae094-95c7-4e5e-95ec-437e375aad27", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T23:45:08.918Z", + "completed":"2016-06-20T23:45:08.918Z", + "new_balance":"74106.64", + "value":"-832.36" + } + }, + { + "id":"d64394dc-9196-47f7-87db-0df2440e6ddb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T23:55:05.975Z", + "completed":"2016-06-28T23:55:05.975Z", + "new_balance":"73561.48", + "value":"-545.16" + } + }, + { + "id":"5a5edc9d-db68-4b1c-bece-4a3130a69111", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T09:24:39.109Z", + "completed":"2016-07-01T09:24:39.109Z", + "new_balance":"70930.27", + "value":"-2631.21" + } + }, + { + "id":"d0d919bf-5086-45df-ac5e-a2923d2e1ca3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T13:34:18.392Z", + "completed":"2016-07-01T13:34:18.392Z", + "new_balance":"70385.11", + "value":"-545.16" + } + }, + { + "id":"abaaa32a-3bba-40e7-bb18-10c15a30ce5a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T02:44:28.221Z", + "completed":"2016-09-02T02:44:28.221Z", + "new_balance":"69552.75", + "value":"-832.36" + } + }, + { + "id":"9f33ba0a-80ee-49a0-a16c-ad1e4a0d402a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T02:51:12.544Z", + "completed":"2016-09-02T02:51:12.544Z", + "new_balance":"69174.42", + "value":"-378.33" + } + }, + { + "id":"87dcb8d6-d4f8-4be8-88ce-331c045eec66", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T09:30:16.788Z", + "completed":"2016-09-03T09:30:16.788Z", + "new_balance":"69127.52", + "value":"-46.90" + } + }, + { + "id":"19658638-9304-41ba-8d25-f9a22952b3dd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T19:13:08.204Z", + "completed":"2016-09-03T19:13:08.204Z", + "new_balance":"64542.36", + "value":"-4585.16" + } + }, + { + "id":"bc250af2-2e3c-406a-8aea-ad1c01e3f3f3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T23:26:36.483Z", + "completed":"2016-09-03T23:26:36.483Z", + "new_balance":"64468.43", + "value":"-73.93" + } + }, + { + "id":"a1484eba-1c13-4567-8f41-d5268e483991", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T06:08:08.238Z", + "completed":"2016-09-04T06:08:08.238Z", + "new_balance":"64104.14", + "value":"-364.29" + } + }, + { + "id":"d1da453a-a397-4185-87ce-15c34b556d7f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T20:06:48.937Z", + "completed":"2016-09-07T20:06:48.937Z", + "new_balance":"64050.96", + "value":"-53.18" + } + }, + { + "id":"a0e637b1-c9e3-4167-972a-19c89c94cfcd", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T05:35:24.178Z", + "completed":"2016-09-09T05:35:24.178Z", + "new_balance":"63218.60", + "value":"-832.36" + } + }, + { + "id":"691f93bf-8455-4b01-83c5-7d5c38ca3d34", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T07:36:30.317Z", + "completed":"2016-09-16T07:36:30.317Z", + "new_balance":"62673.44", + "value":"-545.16" + } + }, + { + "id":"f4593bdb-fa30-45ea-bdfc-4cadda3899e6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T18:11:29.796Z", + "completed":"2016-09-25T18:11:29.796Z", + "new_balance":"62128.28", + "value":"-545.16" + } + }, + { + "id":"7d07826a-a454-44da-b0b7-c758067430d4", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T20:30:34.894Z", + "completed":"2016-09-30T20:30:34.894Z", + "new_balance":"59497.07", + "value":"-2631.21" + } + }, + { + "id":"0020656e-989d-4274-bc27-ffc35513cfb5", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T06:04:00.157Z", + "completed":"2016-12-07T06:04:00.157Z", + "new_balance":"59118.74", + "value":"-378.33" + } + }, + { + "id":"b72210ae-5b17-40f9-afe6-d06ec464724d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T07:56:30.709Z", + "completed":"2016-12-07T07:56:30.709Z", + "new_balance":"54533.58", + "value":"-4585.16" + } + }, + { + "id":"6868cf88-47c9-4af5-889a-29daa9afc177", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T23:37:38.036Z", + "completed":"2016-12-07T23:37:38.036Z", + "new_balance":"53701.22", + "value":"-832.36" + } + }, + { + "id":"5eccf439-ccd1-4b81-ad2d-2cf1130698ea", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T21:57:01.854Z", + "completed":"2016-12-11T21:57:01.854Z", + "new_balance":"53614.66", + "value":"-86.56" + } + }, + { + "id":"0c9e9226-3987-4edd-92b5-dcc016e38778", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T22:37:26.106Z", + "completed":"2016-12-11T22:37:26.106Z", + "new_balance":"53540.73", + "value":"-73.93" + } + }, + { + "id":"9d99d0d3-7d27-4b28-919c-d9a2895adf98", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T14:15:23.371Z", + "completed":"2016-12-14T14:15:23.371Z", + "new_balance":"53176.44", + "value":"-364.29" + } + }, + { + "id":"0da26c1b-3ad9-4005-923f-24181648cff6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T19:50:27.818Z", + "completed":"2016-12-20T19:50:27.818Z", + "new_balance":"53123.26", + "value":"-53.18" + } + }, + { + "id":"e7ffb66a-b541-46d8-ba51-34fa3c90b220", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T19:09:16.291Z", + "completed":"2016-12-22T19:09:16.291Z", + "new_balance":"52290.90", + "value":"-832.36" + } + }, + { + "id":"d0885fd5-cfd1-4fdf-8a9d-9c174e1ef447", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T09:18:13.918Z", + "completed":"2016-12-28T09:18:13.918Z", + "new_balance":"51745.74", + "value":"-545.16" + } + }, + { + "id":"7c3c8f5b-b7f4-4f74-803c-af5b8d6d07f6", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T13:52:30.625Z", + "completed":"2016-12-31T13:52:30.625Z", + "new_balance":"49114.53", + "value":"-2631.21" + } + }, + { + "id":"0aca64cc-a9fb-4a8c-a1ff-9f79c2ce1bef", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T17:58:22.726Z", + "completed":"2016-12-31T17:58:22.726Z", + "new_balance":"48569.37", + "value":"-545.16" + } + }, + { + "id":"3e54b81a-6d36-4c8b-85e7-01673ad46bab", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T00:14:34.807Z", + "completed":"2017-03-02T00:14:34.807Z", + "new_balance":"48191.04", + "value":"-378.33" + } + }, + { + "id":"304514b0-aac2-48f3-8d1e-de3733165a0c", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T19:14:29.826Z", + "completed":"2017-03-02T19:14:29.826Z", + "new_balance":"47358.68", + "value":"-832.36" + } + }, + { + "id":"e69cd9b4-6ff2-4f00-a770-088b33f5064d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T09:10:07.337Z", + "completed":"2017-03-03T09:10:07.337Z", + "new_balance":"42773.52", + "value":"-4585.16" + } + }, + { + "id":"5b58647d-4498-4e1f-a8be-a9ccad3346b8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T23:32:15.915Z", + "completed":"2017-03-03T23:32:15.915Z", + "new_balance":"42699.59", + "value":"-73.93" + } + }, + { + "id":"ff384f60-5bb4-4887-b4b5-fd9a1d9406de", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T18:02:29.866Z", + "completed":"2017-03-04T18:02:29.866Z", + "new_balance":"42335.30", + "value":"-364.29" + } + }, + { + "id":"a49d1768-eadb-4ff3-b4ee-9b67df8d4fad", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T20:38:58.711Z", + "completed":"2017-03-04T20:38:58.711Z", + "new_balance":"42248.74", + "value":"-86.56" + } + }, + { + "id":"a3a28280-ec20-44bd-9e8a-c10ec1d9ce46", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T08:11:28.166Z", + "completed":"2017-03-07T08:11:28.166Z", + "new_balance":"42195.56", + "value":"-53.18" + } + }, + { + "id":"58726ce3-0560-441e-84a2-f99755d71726", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T16:52:44.300Z", + "completed":"2017-03-09T16:52:44.300Z", + "new_balance":"41363.20", + "value":"-832.36" + } + }, + { + "id":"124b5f48-a8bd-42ae-8ed6-f5f7efb1cae3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T16:10:44.598Z", + "completed":"2017-03-16T16:10:44.598Z", + "new_balance":"40818.04", + "value":"-545.16" + } + }, + { + "id":"5c7b68f2-e672-4e5a-992a-cc10da59aba2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T01:58:51.818Z", + "completed":"2017-03-25T01:58:51.818Z", + "new_balance":"40272.88", + "value":"-545.16" + } + }, + { + "id":"c4721310-65ac-4631-97d2-00485454144d", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T12:07:02.248Z", + "completed":"2017-03-30T12:07:02.248Z", + "new_balance":"37641.67", + "value":"-2631.21" + } + }, + { + "id":"1824f4f1-a89c-4dc6-8644-207eb63da864", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:35:17.918Z", + "completed":"2017-06-07T06:35:17.918Z", + "new_balance":"37263.34", + "value":"-378.33" + } + }, + { + "id":"82dabd83-fb1b-4620-8f9d-af9802856810", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T06:48:28.658Z", + "completed":"2017-06-07T06:48:28.658Z", + "new_balance":"36430.98", + "value":"-832.36" + } + }, + { + "id":"c177becc-9aaa-40f3-b7d2-4e3b4e2b3f97", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T20:24:14.317Z", + "completed":"2017-06-07T20:24:14.317Z", + "new_balance":"31845.82", + "value":"-4585.16" + } + }, + { + "id":"0ab16334-8dc9-4f0e-8c31-3fa5aca6a04e", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T19:19:48.386Z", + "completed":"2017-06-10T19:19:48.386Z", + "new_balance":"31759.26", + "value":"-86.56" + } + }, + { + "id":"9d81fa73-178f-4529-a811-14f5cb595a9f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T19:27:02.856Z", + "completed":"2017-06-14T19:27:02.856Z", + "new_balance":"31394.97", + "value":"-364.29" + } + }, + { + "id":"d4e7e620-2929-4f19-88a7-3f4fc0eec26a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T00:27:35.204Z", + "completed":"2017-06-19T00:27:35.204Z", + "new_balance":"31341.79", + "value":"-53.18" + } + }, + { + "id":"4622b37a-f48a-4b0f-9560-7e67a6a90ddb", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T04:59:23.163Z", + "completed":"2017-06-19T04:59:23.163Z", + "new_balance":"31267.86", + "value":"-73.93" + } + }, + { + "id":"52a44bd2-5999-457c-9cd7-6317185fa702", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T16:05:44.218Z", + "completed":"2017-06-20T16:05:44.218Z", + "new_balance":"30435.50", + "value":"-832.36" + } + }, + { + "id":"cfe4c92d-78ce-46a0-bc5d-1a1f5e93daf2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T12:38:43.783Z", + "completed":"2017-06-28T12:38:43.783Z", + "new_balance":"29890.34", + "value":"-545.16" + } + }, + { + "id":"ab762df1-829c-491f-b9c5-4081e3394e27", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T04:13:24.594Z", + "completed":"2017-07-01T04:13:24.594Z", + "new_balance":"27259.13", + "value":"-2631.21" + } + }, + { + "id":"ace1344b-8296-4808-86ea-0eb573991f88", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T10:34:57.189Z", + "completed":"2017-07-01T10:34:57.189Z", + "new_balance":"26713.97", + "value":"-545.16" + } + }, + { + "id":"f7925668-d377-4a98-9c12-ca69f629b499", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T11:28:24.642Z", + "completed":"2017-09-02T11:28:24.642Z", + "new_balance":"25881.61", + "value":"-832.36" + } + }, + { + "id":"30bbf08c-7811-4f01-aa4a-4a891b9e9ba1", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T19:12:49.387Z", + "completed":"2017-09-02T19:12:49.387Z", + "new_balance":"25503.28", + "value":"-378.33" + } + }, + { + "id":"0957f391-d0d0-4c86-a4dc-dea76a960e51", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T08:32:07.984Z", + "completed":"2017-09-03T08:32:07.984Z", + "new_balance":"25456.38", + "value":"-46.90" + } + }, + { + "id":"e0c694e4-bd71-490f-822c-ce807890ee49", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T13:39:30.338Z", + "completed":"2017-09-03T13:39:30.338Z", + "new_balance":"25382.45", + "value":"-73.93" + } + }, + { + "id":"184c807d-ada2-446c-948a-7e31849c24f3", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T23:14:44.834Z", + "completed":"2017-09-03T23:14:44.834Z", + "new_balance":"20797.29", + "value":"-4585.16" + } + }, + { + "id":"ce9819b8-cb4a-45ca-99f0-b23171f540c9", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T19:43:16.269Z", + "completed":"2017-09-04T19:43:16.269Z", + "new_balance":"20433.00", + "value":"-364.29" + } + }, + { + "id":"1ad447cc-169c-49b0-bf07-36bd0bfd797a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T17:54:59.794Z", + "completed":"2017-09-07T17:54:59.794Z", + "new_balance":"20379.82", + "value":"-53.18" + } + }, + { + "id":"c3458550-fb0e-48b2-9695-1a5799d04785", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T06:57:19.752Z", + "completed":"2017-09-09T06:57:19.752Z", + "new_balance":"19547.46", + "value":"-832.36" + } + }, + { + "id":"09538cf5-ad96-4183-a08b-836094528258", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T16:41:32.396Z", + "completed":"2017-09-16T16:41:32.396Z", + "new_balance":"19002.30", + "value":"-545.16" + } + }, + { + "id":"3090d7b9-97c0-4edc-906d-3be3d50b28b8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T00:38:28.680Z", + "completed":"2017-09-25T00:38:28.680Z", + "new_balance":"18457.14", + "value":"-545.16" + } + }, + { + "id":"51e3595a-7923-44f9-be2d-3610f4da142b", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T04:48:36.201Z", + "completed":"2017-09-30T04:48:36.201Z", + "new_balance":"15825.93", + "value":"-2631.21" + } + }, + { + "id":"110c57ac-f984-4ab2-a40d-c47ac330342f", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Folk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T17:01:52.048Z", + "completed":"2017-12-07T17:01:52.048Z", + "new_balance":"15447.60", + "value":"-378.33" + } + }, + { + "id":"373470db-4cca-4267-b78f-d95d93e26baf", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T22:53:52.099Z", + "completed":"2017-12-07T22:53:52.099Z", + "new_balance":"10862.44", + "value":"-4585.16" + } + }, + { + "id":"7b8bd7a7-37bb-4398-bcc8-0f9a24ae7f8a", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T23:21:19.214Z", + "completed":"2017-12-07T23:21:19.214Z", + "new_balance":"10030.08", + "value":"-832.36" + } + }, + { + "id":"06626407-2360-432a-9f81-466cffda87c2", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Vodafone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T04:07:28.124Z", + "completed":"2017-12-11T04:07:28.124Z", + "new_balance":"9956.15", + "value":"-73.93" + } + }, + { + "id":"3f1a7c86-4814-414f-b885-5e45788a7dbf", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T16:21:59.077Z", + "completed":"2017-12-11T16:21:59.077Z", + "new_balance":"9869.59", + "value":"-86.56" + } + }, + { + "id":"bca620e2-474e-42d8-8959-3cf3234acc28", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Green" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T17:43:09.833Z", + "completed":"2017-12-14T17:43:09.833Z", + "new_balance":"9505.30", + "value":"-364.29" + } + }, + { + "id":"703a1c89-4aee-4ffd-a792-34c7f72540d8", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T04:34:29.598Z", + "completed":"2017-12-20T04:34:29.598Z", + "new_balance":"9452.12", + "value":"-53.18" + } + }, + { + "id":"f4e19b14-6ec1-4988-99bd-82ae064c7f62", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T06:57:04.510Z", + "completed":"2017-12-22T06:57:04.510Z", + "new_balance":"8619.76", + "value":"-832.36" + } + }, + { + "id":"2d5b8c9f-513c-4129-af9b-9242a74fa655", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Khan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:45:01.162Z", + "completed":"2017-12-28T01:45:01.162Z", + "new_balance":"8074.60", + "value":"-545.16" + } + }, + { + "id":"46eece0f-52ee-4c93-a697-4bc960eb7938", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T05:22:36.810Z", + "completed":"2017-12-31T05:22:36.810Z", + "new_balance":"5443.39", + "value":"-2631.21" + } + }, + { + "id":"81277678-787d-4a12-b53c-d40ffa360f99", + "this_account":{ + "id":"72582490-b474-4abf-9220-3ab435c0b9ac", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Dean" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T20:46:20.919Z", + "completed":"2017-12-31T20:46:20.919Z", + "new_balance":"4898.23", + "value":"-545.16" + } + }, + { + "id":"3f91106e-5534-4482-bd43-0f3888d1dc05", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T09:10:44.724Z", + "completed":"2016-01-01T09:10:44.724Z", + "new_balance":"8007.59", + "value":"-61.87" + } + }, + { + "id":"3d3caa2b-69f1-41a6-a745-a23499e91e71", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T14:38:10.767Z", + "completed":"2016-01-01T14:38:10.767Z", + "new_balance":"7945.72", + "value":"-61.87" + } + }, + { + "id":"a78b61a3-1dc8-46b2-875a-bffe69695b0e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T02:25:30.560Z", + "completed":"2016-01-03T02:25:30.560Z", + "new_balance":"7911.29", + "value":"-34.43" + } + }, + { + "id":"36db5427-ef12-4ddf-a92d-9caa759dd666", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T20:55:33.791Z", + "completed":"2016-01-03T20:55:33.791Z", + "new_balance":"7400.75", + "value":"-510.54" + } + }, + { + "id":"0672b54e-b1db-4ab0-a440-b6cd07ceef95", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T20:57:13.275Z", + "completed":"2016-01-03T20:57:13.275Z", + "new_balance":"7376.19", + "value":"-24.56" + } + }, + { + "id":"9a437a33-28e6-41ad-9cca-56cd62575cd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T21:46:27.314Z", + "completed":"2016-01-03T21:46:27.314Z", + "new_balance":"7302.26", + "value":"-73.93" + } + }, + { + "id":"0b91d76d-9e80-4199-bef8-a9e3a5b1ae15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T05:15:40.480Z", + "completed":"2016-01-05T05:15:40.480Z", + "new_balance":"7249.08", + "value":"-53.18" + } + }, + { + "id":"be9048dd-80be-495e-a882-be12d4eba75a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T15:11:54.935Z", + "completed":"2016-01-05T15:11:54.935Z", + "new_balance":"7205.10", + "value":"-43.98" + } + }, + { + "id":"20cfb978-1c5d-4840-a4ae-71d1b879c99b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T20:55:18.211Z", + "completed":"2016-01-05T20:55:18.211Z", + "new_balance":"7192.09", + "value":"-13.01" + } + }, + { + "id":"45f79e6b-3179-4b8e-8dc0-3d08cc435818", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T03:12:11.626Z", + "completed":"2016-01-06T03:12:11.626Z", + "new_balance":"7162.21", + "value":"-29.88" + } + }, + { + "id":"fa2bd3d3-d5f7-4681-b51a-0d91691ad317", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T10:18:50.276Z", + "completed":"2016-01-06T10:18:50.276Z", + "new_balance":"7139.52", + "value":"-22.69" + } + }, + { + "id":"8cf8aca3-6338-4dec-a6eb-f862aee1360a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T15:25:17.520Z", + "completed":"2016-01-07T15:25:17.520Z", + "new_balance":"7100.35", + "value":"-39.17" + } + }, + { + "id":"61338925-22dc-441f-a3e6-1cb0052e88e9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T04:41:26.000Z", + "completed":"2016-01-10T04:41:26.000Z", + "new_balance":"7047.17", + "value":"-53.18" + } + }, + { + "id":"738dd944-bf30-4e76-a37d-9e0e8532fffd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T23:03:57.341Z", + "completed":"2016-01-10T23:03:57.341Z", + "new_balance":"7022.30", + "value":"-24.87" + } + }, + { + "id":"2ba5f964-2efb-4e82-99f4-b2c24c161e38", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T00:20:01.001Z", + "completed":"2016-01-12T00:20:01.001Z", + "new_balance":"6983.13", + "value":"-39.17" + } + }, + { + "id":"b94dd7b2-49f9-4e74-b03e-50f8c4ed9536", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T03:41:51.830Z", + "completed":"2016-01-12T03:41:51.830Z", + "new_balance":"6958.57", + "value":"-24.56" + } + }, + { + "id":"0c841ca9-cdbc-4493-bb3d-7382737f76bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T10:55:26.228Z", + "completed":"2016-01-12T10:55:26.228Z", + "new_balance":"6938.50", + "value":"-20.07" + } + }, + { + "id":"7a1fb243-6fb6-49b1-9057-faf87c7d00cc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T18:43:55.412Z", + "completed":"2016-01-15T18:43:55.412Z", + "new_balance":"6922.10", + "value":"-16.40" + } + }, + { + "id":"7035d68e-a1d3-4d9b-8889-eefce1f805ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T12:03:00.086Z", + "completed":"2016-01-16T12:03:00.086Z", + "new_balance":"6915.95", + "value":"-6.15" + } + }, + { + "id":"cb52d37a-bc91-45d2-ac80-dedf1d462266", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T17:32:02.592Z", + "completed":"2016-01-16T17:32:02.592Z", + "new_balance":"6862.77", + "value":"-53.18" + } + }, + { + "id":"e1fc473a-48b4-4e43-8df7-b9f12af878a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T10:05:59.358Z", + "completed":"2016-01-17T10:05:59.358Z", + "new_balance":"6801.59", + "value":"-61.18" + } + }, + { + "id":"511db47e-7251-4695-91d5-c9ec695f9547", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T20:46:33.873Z", + "completed":"2016-01-17T20:46:33.873Z", + "new_balance":"6770.27", + "value":"-31.32" + } + }, + { + "id":"fb2b9c86-e548-4a55-8526-66d58213e027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T12:22:00.032Z", + "completed":"2016-01-19T12:22:00.032Z", + "new_balance":"6739.87", + "value":"-30.40" + } + }, + { + "id":"2058926d-597e-49ae-b6d9-235674f9f11e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T01:30:09.703Z", + "completed":"2016-01-20T01:30:09.703Z", + "new_balance":"6686.69", + "value":"-53.18" + } + }, + { + "id":"03e0e7b2-8b1d-4fe2-b43e-74c965d0f528", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T22:05:42.798Z", + "completed":"2016-01-23T22:05:42.798Z", + "new_balance":"6670.86", + "value":"-15.83" + } + }, + { + "id":"faeacb43-a483-4df1-8ced-c2b04ab5c788", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T06:56:03.573Z", + "completed":"2016-01-26T06:56:03.573Z", + "new_balance":"6612.38", + "value":"-58.48" + } + }, + { + "id":"55721a0e-f547-45bc-9d2b-6f7c70bc34ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T02:00:30.490Z", + "completed":"2016-01-27T02:00:30.490Z", + "new_balance":"7800.89", + "value":"1188.51" + } + }, + { + "id":"0e326f82-b9c8-48ce-a684-3f4248407af6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T12:22:41.885Z", + "completed":"2016-01-28T12:22:41.885Z", + "new_balance":"7766.46", + "value":"-34.43" + } + }, + { + "id":"7cc7b13d-0f0f-4213-9ea3-ff206f17c228", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T00:56:03.181Z", + "completed":"2016-01-30T00:56:03.181Z", + "new_balance":"7724.12", + "value":"-42.34" + } + }, + { + "id":"332876d7-7b65-4d61-abd7-4b799c3b5cc3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T00:40:31.529Z", + "completed":"2016-02-03T00:40:31.529Z", + "new_balance":"7699.56", + "value":"-24.56" + } + }, + { + "id":"23f1a4ba-e801-485f-a33b-0bcae654aa2c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T01:20:02.691Z", + "completed":"2016-02-03T01:20:02.691Z", + "new_balance":"7665.13", + "value":"-34.43" + } + }, + { + "id":"bda43c97-6965-4d64-9d92-8f7c23f35661", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T02:46:01.309Z", + "completed":"2016-02-03T02:46:01.309Z", + "new_balance":"7591.20", + "value":"-73.93" + } + }, + { + "id":"fc73e0d8-c47c-4b97-8df8-772eb26371f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T05:06:51.032Z", + "completed":"2016-02-03T05:06:51.032Z", + "new_balance":"7080.66", + "value":"-510.54" + } + }, + { + "id":"20b2b6e9-3315-4830-9b1d-df952297a2b7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T09:35:47.631Z", + "completed":"2016-02-08T09:35:47.631Z", + "new_balance":"7027.48", + "value":"-53.18" + } + }, + { + "id":"37297211-aeb1-4bad-9004-e25a10882a39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T13:01:54.278Z", + "completed":"2016-02-08T13:01:54.278Z", + "new_balance":"6983.50", + "value":"-43.98" + } + }, + { + "id":"026edaa6-e85c-4b0b-b98c-729bf24798b8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T22:03:25.367Z", + "completed":"2016-02-11T22:03:25.367Z", + "new_balance":"6994.39", + "value":"10.89" + } + }, + { + "id":"68f77689-0ebd-4815-bd37-4f6b85de3e58", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T09:58:49.835Z", + "completed":"2016-02-13T09:58:49.835Z", + "new_balance":"6964.51", + "value":"-29.88" + } + }, + { + "id":"fe9d2e9d-33ba-461b-bc3c-5086be213517", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T13:31:17.690Z", + "completed":"2016-02-14T13:31:17.690Z", + "new_balance":"6936.66", + "value":"-27.85" + } + }, + { + "id":"eefae232-8d84-44a9-91e8-676d7448fc7d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T15:52:51.177Z", + "completed":"2016-02-17T15:52:51.177Z", + "new_balance":"6925.75", + "value":"-10.91" + } + }, + { + "id":"c8eefcc4-a1d8-4597-8b94-d8772c179a65", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T04:39:26.024Z", + "completed":"2016-02-21T04:39:26.024Z", + "new_balance":"6884.62", + "value":"-41.13" + } + }, + { + "id":"eb497371-5bd1-4d45-85fe-bf4631b935c4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:58:54.537Z", + "completed":"2016-02-23T13:58:54.537Z", + "new_balance":"6843.70", + "value":"-40.92" + } + }, + { + "id":"34c39cc0-c71c-4865-90f5-2222c0930cb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T22:38:40.396Z", + "completed":"2016-02-23T22:38:40.396Z", + "new_balance":"6790.52", + "value":"-53.18" + } + }, + { + "id":"ae89d278-51d9-48f5-a25a-7dac3a740da8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T20:10:40.708Z", + "completed":"2016-02-24T20:10:40.708Z", + "new_balance":"6779.61", + "value":"-10.91" + } + }, + { + "id":"716796c1-8985-4e96-ab74-2657a9d19751", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T04:17:53.892Z", + "completed":"2016-02-27T04:17:53.892Z", + "new_balance":"6762.87", + "value":"-16.74" + } + }, + { + "id":"328bdd88-0864-47d5-aabc-09181d1a70d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T07:32:43.661Z", + "completed":"2016-02-27T07:32:43.661Z", + "new_balance":"7951.38", + "value":"1188.51" + } + }, + { + "id":"c632c22e-0347-4a1f-8e3a-c4ac0b5767dd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T22:53:47.142Z", + "completed":"2016-02-27T22:53:47.142Z", + "new_balance":"7892.90", + "value":"-58.48" + } + }, + { + "id":"1dafc8c8-9586-4492-b4ef-3a7f3bc56f93", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T07:14:49.097Z", + "completed":"2016-02-28T07:14:49.097Z", + "new_balance":"7850.56", + "value":"-42.34" + } + }, + { + "id":"c1b4de2d-5be8-4542-bfd2-0a9e3fbcd926", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T18:58:38.073Z", + "completed":"2016-02-28T18:58:38.073Z", + "new_balance":"7816.13", + "value":"-34.43" + } + }, + { + "id":"5acdb565-9571-4dd4-86ba-468319227660", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:20:05.001Z", + "completed":"2016-03-01T16:20:05.001Z", + "new_balance":"7754.26", + "value":"-61.87" + } + }, + { + "id":"b922bb28-52a4-43ac-9a37-33163d3f5a06", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T05:07:06.565Z", + "completed":"2016-03-03T05:07:06.565Z", + "new_balance":"7719.83", + "value":"-34.43" + } + }, + { + "id":"4d73522e-682e-4e2e-823a-322d6a54dcf8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T06:01:49.352Z", + "completed":"2016-03-03T06:01:49.352Z", + "new_balance":"7695.27", + "value":"-24.56" + } + }, + { + "id":"6a5f2e30-1d5a-404c-85e6-503cc2cebf40", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T06:14:41.006Z", + "completed":"2016-03-03T06:14:41.006Z", + "new_balance":"7621.34", + "value":"-73.93" + } + }, + { + "id":"71ec7445-d811-4811-911c-8fd02acd3345", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T21:02:14.822Z", + "completed":"2016-03-03T21:02:14.822Z", + "new_balance":"7110.80", + "value":"-510.54" + } + }, + { + "id":"c2bb341e-441b-4d02-ab00-585d19b55f63", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T12:37:50.713Z", + "completed":"2016-03-05T12:37:50.713Z", + "new_balance":"7062.14", + "value":"-48.66" + } + }, + { + "id":"de03dd5f-416b-481e-9dc8-65d3d0b131fa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T21:02:53.334Z", + "completed":"2016-03-05T21:02:53.334Z", + "new_balance":"7008.96", + "value":"-53.18" + } + }, + { + "id":"4d2d2ff3-2ebb-4d79-bb5d-d3d2a6bcd934", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T20:31:13.194Z", + "completed":"2016-03-07T20:31:13.194Z", + "new_balance":"6995.29", + "value":"-13.67" + } + }, + { + "id":"d98cc4d4-5627-423a-98af-52e24cd14970", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T15:30:23.084Z", + "completed":"2016-03-09T15:30:23.084Z", + "new_balance":"6942.11", + "value":"-53.18" + } + }, + { + "id":"e8e6326d-1040-4fd1-986c-e64eb0e4dbe2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:53:29.380Z", + "completed":"2016-03-11T08:53:29.380Z", + "new_balance":"6931.11", + "value":"-11.00" + } + }, + { + "id":"7977559c-8c93-4743-b771-17f731266f3c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T22:47:20.682Z", + "completed":"2016-03-13T22:47:20.682Z", + "new_balance":"6873.43", + "value":"-57.68" + } + }, + { + "id":"1f1f3548-c1f1-428b-9ab2-4ce0498f3bcd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T16:03:55.191Z", + "completed":"2016-03-14T16:03:55.191Z", + "new_balance":"6936.79", + "value":"63.36" + } + }, + { + "id":"94f1cc59-0625-4f17-a992-58c8c133d313", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T16:37:46.109Z", + "completed":"2016-03-14T16:37:46.109Z", + "new_balance":"6924.86", + "value":"-11.93" + } + }, + { + "id":"9960d988-9ff6-4a05-b264-5ea4d5429279", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T20:19:45.086Z", + "completed":"2016-03-15T20:19:45.086Z", + "new_balance":"6882.52", + "value":"-42.34" + } + }, + { + "id":"98471718-23ae-44be-b867-714b5cc31739", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T11:42:09.111Z", + "completed":"2016-03-26T11:42:09.111Z", + "new_balance":"6855.68", + "value":"-26.84" + } + }, + { + "id":"5479a588-f6c2-4da9-82a4-62774624d5dc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T12:43:49.343Z", + "completed":"2016-03-26T12:43:49.343Z", + "new_balance":"6830.31", + "value":"-25.37" + } + }, + { + "id":"9f668a60-d8ec-49c6-9ca0-92624986257d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T18:21:25.183Z", + "completed":"2016-03-26T18:21:25.183Z", + "new_balance":"6783.38", + "value":"-46.93" + } + }, + { + "id":"c4dddc63-7e25-4e6e-aa9c-6a84757b7eef", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T07:39:55.785Z", + "completed":"2016-03-27T07:39:55.785Z", + "new_balance":"6730.20", + "value":"-53.18" + } + }, + { + "id":"4acf9cb1-f2de-4694-9626-521d342b983c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T09:43:15.452Z", + "completed":"2016-03-27T09:43:15.452Z", + "new_balance":"7918.71", + "value":"1188.51" + } + }, + { + "id":"8963b062-96a0-4849-acc9-9ca8e219e73f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T23:10:12.018Z", + "completed":"2016-03-27T23:10:12.018Z", + "new_balance":"7852.13", + "value":"-66.58" + } + }, + { + "id":"0d661805-367c-4ac6-8c31-7d828bac4eab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T15:11:02.320Z", + "completed":"2016-03-28T15:11:02.320Z", + "new_balance":"7817.70", + "value":"-34.43" + } + }, + { + "id":"1b5189ba-7d1a-44f3-a296-bb03bf69fa99", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T10:42:29.194Z", + "completed":"2016-03-30T10:42:29.194Z", + "new_balance":"7775.36", + "value":"-42.34" + } + }, + { + "id":"6174de9e-87b5-4a24-ae30-be6e6344fb81", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T01:11:17.766Z", + "completed":"2016-04-01T01:11:17.766Z", + "new_balance":"7750.80", + "value":"-24.56" + } + }, + { + "id":"f4904168-786b-4b6b-9afb-da5f38237473", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T06:05:19.980Z", + "completed":"2016-04-01T06:05:19.980Z", + "new_balance":"7676.87", + "value":"-73.93" + } + }, + { + "id":"8cb3bd57-db12-4016-bfa3-ef2cd3ee788a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:17:42.059Z", + "completed":"2016-04-01T11:17:42.059Z", + "new_balance":"7615.00", + "value":"-61.87" + } + }, + { + "id":"2f2dc6a3-67ee-46c6-b16b-51e0596d178f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T12:52:17.645Z", + "completed":"2016-04-01T12:52:17.645Z", + "new_balance":"7580.57", + "value":"-34.43" + } + }, + { + "id":"d5b2359e-e1d7-47b5-b6de-29c852c382ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T15:48:26.201Z", + "completed":"2016-04-01T15:48:26.201Z", + "new_balance":"7070.03", + "value":"-510.54" + } + }, + { + "id":"c6db1e1b-1e58-43cd-998c-1889fc2b6f1d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T07:05:41.538Z", + "completed":"2016-04-05T07:05:41.538Z", + "new_balance":"7057.02", + "value":"-13.01" + } + }, + { + "id":"96d418e3-b312-4d81-a968-62e315a460df", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T11:43:53.786Z", + "completed":"2016-04-05T11:43:53.786Z", + "new_balance":"7034.33", + "value":"-22.69" + } + }, + { + "id":"83041c64-2217-4394-93e2-61e082d4bcaa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T16:08:28.532Z", + "completed":"2016-04-05T16:08:28.532Z", + "new_balance":"6990.35", + "value":"-43.98" + } + }, + { + "id":"c57dad81-d86f-4cfe-9428-39999254adc2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T20:52:45.854Z", + "completed":"2016-04-05T20:52:45.854Z", + "new_balance":"6937.17", + "value":"-53.18" + } + }, + { + "id":"e962de86-acbb-40c9-8e52-461585d13ee2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T01:30:34.107Z", + "completed":"2016-04-07T01:30:34.107Z", + "new_balance":"6907.29", + "value":"-29.88" + } + }, + { + "id":"fb340ce6-7ca9-4f87-86ca-c4b91e912e68", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T01:46:19.053Z", + "completed":"2016-04-09T01:46:19.053Z", + "new_balance":"6854.11", + "value":"-53.18" + } + }, + { + "id":"ef5f1af6-4c14-4ec2-aa74-e102ce43f853", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T05:54:46.247Z", + "completed":"2016-04-09T05:54:46.247Z", + "new_balance":"6829.24", + "value":"-24.87" + } + }, + { + "id":"1d6c8554-92cc-470f-8b04-b5f2d4d45ddb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T03:08:22.527Z", + "completed":"2016-04-10T03:08:22.527Z", + "new_balance":"6812.84", + "value":"-16.40" + } + }, + { + "id":"40a1e3de-09e8-4b1d-854b-b3cc94d9be53", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T04:14:23.068Z", + "completed":"2016-04-10T04:14:23.068Z", + "new_balance":"6773.67", + "value":"-39.17" + } + }, + { + "id":"465df78b-d414-4976-aee3-948eeb778133", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T05:25:11.649Z", + "completed":"2016-04-10T05:25:11.649Z", + "new_balance":"6753.60", + "value":"-20.07" + } + }, + { + "id":"74e47040-4060-4abf-a75f-63e1c2b1dcc5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T21:29:42.893Z", + "completed":"2016-04-10T21:29:42.893Z", + "new_balance":"6729.04", + "value":"-24.56" + } + }, + { + "id":"2f46a2a1-1e55-49f0-b16f-fdbbe76464a8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T02:27:03.194Z", + "completed":"2016-04-11T02:27:03.194Z", + "new_balance":"6698.64", + "value":"-30.40" + } + }, + { + "id":"77764b11-3f2b-4d53-b862-3005c37d98d3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T05:23:47.121Z", + "completed":"2016-04-11T05:23:47.121Z", + "new_balance":"6645.46", + "value":"-53.18" + } + }, + { + "id":"b35356c3-f22e-46f3-9639-0c24e18214e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T06:47:47.213Z", + "completed":"2016-04-11T06:47:47.213Z", + "new_balance":"6584.28", + "value":"-61.18" + } + }, + { + "id":"6703b316-46b1-4e02-ad2e-760e52d016c7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T10:28:39.680Z", + "completed":"2016-04-11T10:28:39.680Z", + "new_balance":"6552.96", + "value":"-31.32" + } + }, + { + "id":"4295fb0f-a476-4772-9b92-108e385ab648", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T21:13:02.399Z", + "completed":"2016-04-11T21:13:02.399Z", + "new_balance":"6546.81", + "value":"-6.15" + } + }, + { + "id":"adbcd006-1113-4dcb-aa6e-da6ec926b50f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T08:13:59.451Z", + "completed":"2016-04-21T08:13:59.451Z", + "new_balance":"6493.63", + "value":"-53.18" + } + }, + { + "id":"4603241c-2519-440d-a039-64b5a297555b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T05:44:00.347Z", + "completed":"2016-04-23T05:44:00.347Z", + "new_balance":"6477.80", + "value":"-15.83" + } + }, + { + "id":"aa3bb5e2-1ef1-471d-9822-097067b5df1d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T02:12:28.551Z", + "completed":"2016-04-29T02:12:28.551Z", + "new_balance":"7666.31", + "value":"1188.51" + } + }, + { + "id":"ab15287f-c6dc-4798-ab6e-1f84c8b91895", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T17:17:53.056Z", + "completed":"2016-04-29T17:17:53.056Z", + "new_balance":"7607.83", + "value":"-58.48" + } + }, + { + "id":"34884b1f-ce17-4944-a78c-1424cbe40dc3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T22:38:13.701Z", + "completed":"2016-04-29T22:38:13.701Z", + "new_balance":"7573.40", + "value":"-34.43" + } + }, + { + "id":"1b6ebdfe-66d5-4e38-8d5f-6abf8013fc74", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T12:50:06.087Z", + "completed":"2016-04-30T12:50:06.087Z", + "new_balance":"7531.06", + "value":"-42.34" + } + }, + { + "id":"9a72b0de-3e6f-48f5-909d-488cc6ce197b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:37:56.521Z", + "completed":"2016-05-02T03:37:56.521Z", + "new_balance":"7457.13", + "value":"-73.93" + } + }, + { + "id":"2109da7b-b4ae-4035-9c32-fc4c24138c15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T09:25:56.247Z", + "completed":"2016-05-02T09:25:56.247Z", + "new_balance":"7432.57", + "value":"-24.56" + } + }, + { + "id":"70559a9a-27c4-4a26-8a09-db8dc6e21b25", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T16:16:31.575Z", + "completed":"2016-05-02T16:16:31.575Z", + "new_balance":"7370.70", + "value":"-61.87" + } + }, + { + "id":"077b35a3-19c5-4be8-aaaf-4cbcdbf00471", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T16:46:12.913Z", + "completed":"2016-05-02T16:46:12.913Z", + "new_balance":"6860.16", + "value":"-510.54" + } + }, + { + "id":"c968328d-f9c5-48e3-a5f9-5a2946e6b55c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T19:05:53.774Z", + "completed":"2016-05-06T19:05:53.774Z", + "new_balance":"6816.18", + "value":"-43.98" + } + }, + { + "id":"d0b0567d-c247-4ffb-a4d5-55fb32b13276", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T08:29:34.544Z", + "completed":"2016-05-07T08:29:34.544Z", + "new_balance":"6786.30", + "value":"-29.88" + } + }, + { + "id":"04ad492c-e37d-4e41-811b-4caca0e7ada8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T12:24:22.334Z", + "completed":"2016-05-07T12:24:22.334Z", + "new_balance":"6775.39", + "value":"-10.91" + } + }, + { + "id":"fb02b583-f19e-468f-9d10-67e8d9f22e5e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T14:27:40.532Z", + "completed":"2016-05-07T14:27:40.532Z", + "new_balance":"6734.26", + "value":"-41.13" + } + }, + { + "id":"e65e50d7-e749-4d0a-901f-c06572d0f7ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T16:52:44.643Z", + "completed":"2016-05-07T16:52:44.643Z", + "new_balance":"6706.41", + "value":"-27.85" + } + }, + { + "id":"06c9240a-8a7d-4ed3-9ef4-997ff95c370c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T11:38:40.710Z", + "completed":"2016-05-08T11:38:40.710Z", + "new_balance":"6665.49", + "value":"-40.92" + } + }, + { + "id":"611a65ca-a23b-4a35-904a-f757a2f05594", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T02:59:53.598Z", + "completed":"2016-05-09T02:59:53.598Z", + "new_balance":"6631.06", + "value":"-34.43" + } + }, + { + "id":"bd4b35a2-3080-4ddf-8605-d413d1573fb0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:37:45.441Z", + "completed":"2016-05-13T19:37:45.441Z", + "new_balance":"6577.88", + "value":"-53.18" + } + }, + { + "id":"16857b83-494f-433d-9ce8-0c594ea99c27", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T10:27:53.828Z", + "completed":"2016-05-26T10:27:53.828Z", + "new_balance":"6566.97", + "value":"-10.91" + } + }, + { + "id":"9fb34e24-e27a-4859-9b48-86a6f236cba3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T15:22:27.123Z", + "completed":"2016-05-26T15:22:27.123Z", + "new_balance":"6513.79", + "value":"-53.18" + } + }, + { + "id":"16936c8a-bd28-425a-923c-93cf10e39f20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T17:00:18.701Z", + "completed":"2016-05-27T17:00:18.701Z", + "new_balance":"6497.05", + "value":"-16.74" + } + }, + { + "id":"c0dcbce3-80fb-4b4f-89a1-89169ea40fd1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T17:22:02.222Z", + "completed":"2016-05-27T17:22:02.222Z", + "new_balance":"6438.57", + "value":"-58.48" + } + }, + { + "id":"f8335a6d-e883-433d-b183-9d683df188ec", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T01:30:37.677Z", + "completed":"2016-05-30T01:30:37.677Z", + "new_balance":"6404.14", + "value":"-34.43" + } + }, + { + "id":"966adde9-7a14-4786-826c-e20636a8c843", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T10:38:37.307Z", + "completed":"2016-05-30T10:38:37.307Z", + "new_balance":"6361.80", + "value":"-42.34" + } + }, + { + "id":"a98568d9-02ec-490a-8832-0560eeca1ed9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T11:37:19.344Z", + "completed":"2016-05-30T11:37:19.344Z", + "new_balance":"7550.31", + "value":"1188.51" + } + }, + { + "id":"b35ce8a5-3cb9-42fe-93c9-eac341b4b525", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:03:10.097Z", + "completed":"2016-06-01T00:03:10.097Z", + "new_balance":"7488.44", + "value":"-61.87" + } + }, + { + "id":"f1879afb-56d8-4fad-89d3-01a7a2b3e906", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T06:44:44.191Z", + "completed":"2016-06-01T06:44:44.191Z", + "new_balance":"7435.26", + "value":"-53.18" + } + }, + { + "id":"483889e5-e950-4edc-92ef-ca68366c3d81", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T06:50:08.514Z", + "completed":"2016-06-01T06:50:08.514Z", + "new_balance":"7410.70", + "value":"-24.56" + } + }, + { + "id":"4e889356-35f3-4fc0-b33a-e1cb8810bb07", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T09:31:43.122Z", + "completed":"2016-06-01T09:31:43.122Z", + "new_balance":"7357.52", + "value":"-53.18" + } + }, + { + "id":"72066c68-ef94-4380-b4bc-9f16f4708bdf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T09:51:35.659Z", + "completed":"2016-06-01T09:51:35.659Z", + "new_balance":"7308.86", + "value":"-48.66" + } + }, + { + "id":"2a38a4e1-558b-4e63-8164-5391abab9ded", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T14:07:44.881Z", + "completed":"2016-06-01T14:07:44.881Z", + "new_balance":"7274.43", + "value":"-34.43" + } + }, + { + "id":"d7a8bea7-44e4-48ee-934c-d0e040520015", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:10:54.865Z", + "completed":"2016-06-01T16:10:54.865Z", + "new_balance":"7200.50", + "value":"-73.93" + } + }, + { + "id":"0b00a18d-7ce1-4310-86a9-5a7dd5159475", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T17:31:03.449Z", + "completed":"2016-06-01T17:31:03.449Z", + "new_balance":"7186.83", + "value":"-13.67" + } + }, + { + "id":"c221f4d0-7641-4402-bced-74a012644c66", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T22:40:19.183Z", + "completed":"2016-06-01T22:40:19.183Z", + "new_balance":"6676.29", + "value":"-510.54" + } + }, + { + "id":"f0309cab-abd5-458b-802a-b915fc789da6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T00:28:56.036Z", + "completed":"2016-06-02T00:28:56.036Z", + "new_balance":"6664.36", + "value":"-11.93" + } + }, + { + "id":"ac0979f8-656f-4dc0-bae4-05f50d7e224a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T07:41:07.580Z", + "completed":"2016-06-02T07:41:07.580Z", + "new_balance":"6653.36", + "value":"-11.00" + } + }, + { + "id":"6888e81e-b2a9-4f85-9d84-a63d5fd37ce2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T15:18:49.331Z", + "completed":"2016-06-02T15:18:49.331Z", + "new_balance":"6595.68", + "value":"-57.68" + } + }, + { + "id":"86916e31-ea15-4fe9-9ebb-38641eebade5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:37:27.726Z", + "completed":"2016-06-04T10:37:27.726Z", + "new_balance":"6570.31", + "value":"-25.37" + } + }, + { + "id":"638d6061-d127-4f0a-a389-45e995c6b713", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T12:48:18.617Z", + "completed":"2016-06-04T12:48:18.617Z", + "new_balance":"6527.97", + "value":"-42.34" + } + }, + { + "id":"a8897a35-9607-4e3d-9f19-09841ef833f8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T14:14:31.161Z", + "completed":"2016-06-04T14:14:31.161Z", + "new_balance":"6481.04", + "value":"-46.93" + } + }, + { + "id":"83dd65aa-a0b2-4aff-8ea0-287f2a7a1f88", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:12:29.340Z", + "completed":"2016-06-05T10:12:29.340Z", + "new_balance":"6454.20", + "value":"-26.84" + } + }, + { + "id":"481bd972-9cac-415d-9400-8850f599d35a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T21:19:04.222Z", + "completed":"2016-06-05T21:19:04.222Z", + "new_balance":"6387.62", + "value":"-66.58" + } + }, + { + "id":"35473b62-ff8d-4bc2-a60e-1d166c53a21a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T08:58:12.614Z", + "completed":"2016-06-18T08:58:12.614Z", + "new_balance":"6334.44", + "value":"-53.18" + } + }, + { + "id":"1a34e934-5b24-4c35-ae38-c8db75c2396a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T01:09:02.415Z", + "completed":"2016-06-30T01:09:02.415Z", + "new_balance":"6292.10", + "value":"-42.34" + } + }, + { + "id":"c8ac09a5-e21d-4631-b936-c8571b22680f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T08:27:58.540Z", + "completed":"2016-06-30T08:27:58.540Z", + "new_balance":"6257.67", + "value":"-34.43" + } + }, + { + "id":"f09ccbd6-81a9-4dcd-9d4e-8af233a40fd0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T11:41:36.677Z", + "completed":"2016-06-30T11:41:36.677Z", + "new_balance":"7446.18", + "value":"1188.51" + } + }, + { + "id":"4268c4dc-41c8-49df-941e-fd1b861aa825", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T19:52:10.475Z", + "completed":"2016-06-30T19:52:10.475Z", + "new_balance":"7404.65", + "value":"-41.53" + } + }, + { + "id":"a8773ddc-9028-4783-aea2-e1235f3cd5ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T10:58:26.222Z", + "completed":"2016-07-01T10:58:26.222Z", + "new_balance":"7342.78", + "value":"-61.87" + } + }, + { + "id":"a3ea64b9-f3ac-4bd2-9e7a-7447684a011e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T00:53:31.990Z", + "completed":"2016-07-03T00:53:31.990Z", + "new_balance":"7308.35", + "value":"-34.43" + } + }, + { + "id":"8aea3f24-c3d3-477e-b46f-e960a995b077", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T08:42:47.288Z", + "completed":"2016-07-03T08:42:47.288Z", + "new_balance":"7283.79", + "value":"-24.56" + } + }, + { + "id":"adaf1270-2e3b-401b-91e5-e800b25fea28", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T11:42:13.515Z", + "completed":"2016-07-03T11:42:13.515Z", + "new_balance":"7209.86", + "value":"-73.93" + } + }, + { + "id":"23f5d716-3bf7-4820-bc39-f826512ec735", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T16:24:52.493Z", + "completed":"2016-07-03T16:24:52.493Z", + "new_balance":"6699.32", + "value":"-510.54" + } + }, + { + "id":"679e0737-0f8e-4929-b8aa-c569dba282cd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T02:01:12.595Z", + "completed":"2016-07-05T02:01:12.595Z", + "new_balance":"6646.14", + "value":"-53.18" + } + }, + { + "id":"1a1bee68-f8de-42dc-8d48-6fdb808eed1a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T06:12:41.724Z", + "completed":"2016-07-05T06:12:41.724Z", + "new_balance":"6633.13", + "value":"-13.01" + } + }, + { + "id":"5c02be9b-e966-441c-b5a5-2631d3756d39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T08:34:35.962Z", + "completed":"2016-07-05T08:34:35.962Z", + "new_balance":"6589.15", + "value":"-43.98" + } + }, + { + "id":"95df0a89-2f05-4d51-b077-643fabd345c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T08:35:15.124Z", + "completed":"2016-07-06T08:35:15.124Z", + "new_balance":"6559.27", + "value":"-29.88" + } + }, + { + "id":"e8527dd4-c506-4120-8656-279fa85e84f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T18:32:39.349Z", + "completed":"2016-07-06T18:32:39.349Z", + "new_balance":"6536.58", + "value":"-22.69" + } + }, + { + "id":"265b8ea4-fe46-4226-92d3-a4f38b54a03f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T11:44:33.083Z", + "completed":"2016-07-07T11:44:33.083Z", + "new_balance":"6497.41", + "value":"-39.17" + } + }, + { + "id":"456deeda-e36b-4f01-89af-7649d8c98cbf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T09:43:55.512Z", + "completed":"2016-07-10T09:43:55.512Z", + "new_balance":"6472.54", + "value":"-24.87" + } + }, + { + "id":"159b9517-6346-4de8-b3a2-99997e29dd76", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T15:15:32.581Z", + "completed":"2016-07-10T15:15:32.581Z", + "new_balance":"6419.36", + "value":"-53.18" + } + }, + { + "id":"17395bf3-0abe-4d7c-8841-f35e7bc33f02", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T05:49:38.695Z", + "completed":"2016-07-12T05:49:38.695Z", + "new_balance":"6380.19", + "value":"-39.17" + } + }, + { + "id":"5a03739f-bb6f-4dec-82a0-a2cf426f87ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T13:33:51.725Z", + "completed":"2016-07-12T13:33:51.725Z", + "new_balance":"6355.63", + "value":"-24.56" + } + }, + { + "id":"40522e9f-8151-4540-8b0e-280302c6c173", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T20:56:40.308Z", + "completed":"2016-07-12T20:56:40.308Z", + "new_balance":"6335.56", + "value":"-20.07" + } + }, + { + "id":"c2695faf-180d-47f6-9b89-15c6bf1eaeb8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T00:00:55.204Z", + "completed":"2016-07-15T00:00:55.204Z", + "new_balance":"6319.16", + "value":"-16.40" + } + }, + { + "id":"a01c3b51-8305-4963-8357-c7623ab9b64b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T16:25:15.263Z", + "completed":"2016-07-16T16:25:15.263Z", + "new_balance":"6265.98", + "value":"-53.18" + } + }, + { + "id":"a7c46331-5330-4f14-9a6f-ae9cb0c48f5c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T22:24:32.722Z", + "completed":"2016-07-16T22:24:32.722Z", + "new_balance":"6259.83", + "value":"-6.15" + } + }, + { + "id":"ec78cc1f-318e-4d37-831d-665271f9dcd8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T14:02:50.254Z", + "completed":"2016-07-17T14:02:50.254Z", + "new_balance":"6198.65", + "value":"-61.18" + } + }, + { + "id":"b0997ff8-9234-4a13-ae16-b8c3a4ae2f39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T21:30:46.331Z", + "completed":"2016-07-17T21:30:46.331Z", + "new_balance":"6167.33", + "value":"-31.32" + } + }, + { + "id":"457d7e7f-52bf-4457-b916-4e80b94862fd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T07:49:49.289Z", + "completed":"2016-07-19T07:49:49.289Z", + "new_balance":"6136.93", + "value":"-30.40" + } + }, + { + "id":"79c7048e-25bf-4fd2-83b9-e84ed7fc1120", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T15:13:30.808Z", + "completed":"2016-07-20T15:13:30.808Z", + "new_balance":"6083.75", + "value":"-53.18" + } + }, + { + "id":"225ea687-f620-4720-ac9a-f4fca0c8a6ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T12:58:42.416Z", + "completed":"2016-07-23T12:58:42.416Z", + "new_balance":"6067.92", + "value":"-15.83" + } + }, + { + "id":"daeb0930-2861-4d6f-8ae0-688e2988c715", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T07:56:09.899Z", + "completed":"2016-07-26T07:56:09.899Z", + "new_balance":"6009.44", + "value":"-58.48" + } + }, + { + "id":"a0b0936a-067d-4e15-b0d0-22c013a7fef0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T22:44:24.659Z", + "completed":"2016-07-27T22:44:24.659Z", + "new_balance":"7197.95", + "value":"1188.51" + } + }, + { + "id":"2ae98065-bf0b-442f-b6fe-7e06c7dbcea7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T02:17:07.704Z", + "completed":"2016-07-28T02:17:07.704Z", + "new_balance":"7163.52", + "value":"-34.43" + } + }, + { + "id":"5ceee464-9c45-4ca9-a5fe-bbde82b10e01", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T15:05:20.124Z", + "completed":"2016-07-30T15:05:20.124Z", + "new_balance":"7121.18", + "value":"-42.34" + } + }, + { + "id":"eeeac420-ae4e-4cf4-abe0-79c9ca29d55f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T00:29:06.130Z", + "completed":"2016-08-01T00:29:06.130Z", + "new_balance":"7059.31", + "value":"-61.87" + } + }, + { + "id":"3f3c4777-f774-4ef9-9c88-cb9f773b41f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T03:09:37.769Z", + "completed":"2016-08-03T03:09:37.769Z", + "new_balance":"7034.75", + "value":"-24.56" + } + }, + { + "id":"1ec6c25c-1158-4bee-ae3b-428f3bf24a16", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T03:28:52.184Z", + "completed":"2016-08-03T03:28:52.184Z", + "new_balance":"6524.21", + "value":"-510.54" + } + }, + { + "id":"a23dad6f-a1df-4ac1-bfc2-dc9c98dd3d13", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T08:39:26.099Z", + "completed":"2016-08-03T08:39:26.099Z", + "new_balance":"6489.78", + "value":"-34.43" + } + }, + { + "id":"c0d28549-5b8a-404d-9ade-7b720fa5c543", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T09:56:24.420Z", + "completed":"2016-08-03T09:56:24.420Z", + "new_balance":"6415.85", + "value":"-73.93" + } + }, + { + "id":"494c925d-95ae-4527-841c-eb96988686ca", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T07:56:49.044Z", + "completed":"2016-08-08T07:56:49.044Z", + "new_balance":"6371.87", + "value":"-43.98" + } + }, + { + "id":"6b828ce1-bb87-4c75-928b-14d35b311b4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T23:06:42.556Z", + "completed":"2016-08-08T23:06:42.556Z", + "new_balance":"6318.69", + "value":"-53.18" + } + }, + { + "id":"493866f9-213e-4563-a72e-e5271e623ab8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T00:16:22.717Z", + "completed":"2016-08-11T00:16:22.717Z", + "new_balance":"6329.58", + "value":"10.89" + } + }, + { + "id":"72340fc8-2e5e-463d-83ee-101e6d7c8267", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T09:33:17.149Z", + "completed":"2016-08-13T09:33:17.149Z", + "new_balance":"6299.70", + "value":"-29.88" + } + }, + { + "id":"3871452b-e270-4a5e-83b5-41d3d3ab613e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T07:18:39.136Z", + "completed":"2016-08-14T07:18:39.136Z", + "new_balance":"6271.85", + "value":"-27.85" + } + }, + { + "id":"6dea2a52-e7c5-4510-ae67-a56833269c7d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T02:21:19.557Z", + "completed":"2016-08-17T02:21:19.557Z", + "new_balance":"6260.94", + "value":"-10.91" + } + }, + { + "id":"be53e40f-95e7-4d00-a1eb-ccfd38b1e9ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T00:53:42.825Z", + "completed":"2016-08-21T00:53:42.825Z", + "new_balance":"6219.81", + "value":"-41.13" + } + }, + { + "id":"4dec0e75-c20a-401c-9fb7-9f00ceb2b07a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T11:54:12.600Z", + "completed":"2016-08-23T11:54:12.600Z", + "new_balance":"6178.89", + "value":"-40.92" + } + }, + { + "id":"d34ad76a-40f3-4a90-8aaa-2b8e2e1493f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:26:52.804Z", + "completed":"2016-08-23T23:26:52.804Z", + "new_balance":"6125.71", + "value":"-53.18" + } + }, + { + "id":"74e9a0c7-e752-4c2f-9af5-fd18e1f11f75", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T08:59:59.645Z", + "completed":"2016-08-24T08:59:59.645Z", + "new_balance":"6114.80", + "value":"-10.91" + } + }, + { + "id":"824df34d-a30c-41f4-ac55-1010db262347", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T05:32:36.805Z", + "completed":"2016-08-27T05:32:36.805Z", + "new_balance":"6056.32", + "value":"-58.48" + } + }, + { + "id":"23443c1f-41ea-4487-b343-7a9c25287170", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T15:46:12.328Z", + "completed":"2016-08-27T15:46:12.328Z", + "new_balance":"6039.58", + "value":"-16.74" + } + }, + { + "id":"71da3702-039c-4c9e-aa6d-3de60914f03c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T21:58:50.487Z", + "completed":"2016-08-27T21:58:50.487Z", + "new_balance":"7228.09", + "value":"1188.51" + } + }, + { + "id":"cd04f543-4611-446b-a6a0-8a94cce85a82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T01:21:33.541Z", + "completed":"2016-08-28T01:21:33.541Z", + "new_balance":"7193.66", + "value":"-34.43" + } + }, + { + "id":"880404dc-731f-4bf9-9816-7103218694b0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T18:04:07.477Z", + "completed":"2016-08-30T18:04:07.477Z", + "new_balance":"7151.32", + "value":"-42.34" + } + }, + { + "id":"2eb0bac5-35b1-405b-be33-e3e9ac5f7a71", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T16:45:08.146Z", + "completed":"2016-09-01T16:45:08.146Z", + "new_balance":"7089.45", + "value":"-61.87" + } + }, + { + "id":"f3ccab3e-48ac-48a8-9cca-207608f8680e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T04:00:26.712Z", + "completed":"2016-09-03T04:00:26.712Z", + "new_balance":"7015.52", + "value":"-73.93" + } + }, + { + "id":"422e8c57-1915-4fe2-bc83-c22e6e29828e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T06:35:02.209Z", + "completed":"2016-09-03T06:35:02.209Z", + "new_balance":"6990.96", + "value":"-24.56" + } + }, + { + "id":"99c8ae27-7a4a-4193-a59a-307dd9d31a0b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T14:54:49.547Z", + "completed":"2016-09-03T14:54:49.547Z", + "new_balance":"6956.53", + "value":"-34.43" + } + }, + { + "id":"0b91c877-e19f-4744-a7be-3ccbe2e348df", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T20:13:13.796Z", + "completed":"2016-09-03T20:13:13.796Z", + "new_balance":"6445.99", + "value":"-510.54" + } + }, + { + "id":"b2e465db-c84d-4e17-ad5e-8bad13243824", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T10:59:19.947Z", + "completed":"2016-09-05T10:59:19.947Z", + "new_balance":"6397.33", + "value":"-48.66" + } + }, + { + "id":"e60df747-4083-4bea-9484-6d7c285512c1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T20:12:39.360Z", + "completed":"2016-09-05T20:12:39.360Z", + "new_balance":"6344.15", + "value":"-53.18" + } + }, + { + "id":"ab446016-a012-4ae9-90bf-9c89dbb60099", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T22:53:52.988Z", + "completed":"2016-09-07T22:53:52.988Z", + "new_balance":"6330.48", + "value":"-13.67" + } + }, + { + "id":"1c22c680-1bf0-44a2-8190-2bcd2a0f192f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T17:35:50.217Z", + "completed":"2016-09-09T17:35:50.217Z", + "new_balance":"6277.30", + "value":"-53.18" + } + }, + { + "id":"21573c81-662c-4ec9-a320-3974370629db", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T05:09:03.826Z", + "completed":"2016-09-11T05:09:03.826Z", + "new_balance":"6266.30", + "value":"-11.00" + } + }, + { + "id":"37a676a9-d4f4-4adb-b07a-2cb3a8490a2f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T09:41:00.673Z", + "completed":"2016-09-13T09:41:00.673Z", + "new_balance":"6208.62", + "value":"-57.68" + } + }, + { + "id":"6801958d-4e16-48af-90fb-251aa6bf04d3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T04:20:35.428Z", + "completed":"2016-09-14T04:20:35.428Z", + "new_balance":"6196.69", + "value":"-11.93" + } + }, + { + "id":"4a0bf65f-9840-4065-b5e4-102c744d2bed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T12:30:44.801Z", + "completed":"2016-09-14T12:30:44.801Z", + "new_balance":"6260.05", + "value":"63.36" + } + }, + { + "id":"54b69625-1483-401f-9177-fe571b0c3abf", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T05:41:11.466Z", + "completed":"2016-09-15T05:41:11.466Z", + "new_balance":"6217.71", + "value":"-42.34" + } + }, + { + "id":"72282c12-b8f3-4c6e-bb2f-dea5538b929d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T11:34:31.465Z", + "completed":"2016-09-26T11:34:31.465Z", + "new_balance":"6192.34", + "value":"-25.37" + } + }, + { + "id":"5d7a2827-11c1-4e28-9460-2a02bdfb9e4b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T17:51:20.279Z", + "completed":"2016-09-26T17:51:20.279Z", + "new_balance":"6165.50", + "value":"-26.84" + } + }, + { + "id":"f110d9c5-886e-4054-bb40-1891a7e9e0cb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T22:17:55.680Z", + "completed":"2016-09-26T22:17:55.680Z", + "new_balance":"6118.57", + "value":"-46.93" + } + }, + { + "id":"b5258913-4060-4ba5-b728-b3894b9828be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T11:00:41.014Z", + "completed":"2016-09-27T11:00:41.014Z", + "new_balance":"6051.99", + "value":"-66.58" + } + }, + { + "id":"ef516d66-7774-4026-881b-7366aa002925", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T19:17:29.780Z", + "completed":"2016-09-27T19:17:29.780Z", + "new_balance":"5998.81", + "value":"-53.18" + } + }, + { + "id":"82c9a4aa-8e00-4933-b87a-e41fccd673e7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T22:34:35.248Z", + "completed":"2016-09-27T22:34:35.248Z", + "new_balance":"7187.32", + "value":"1188.51" + } + }, + { + "id":"56b17aba-47f4-4a27-a7a9-a4a7bffc3e19", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T09:54:59.127Z", + "completed":"2016-09-28T09:54:59.127Z", + "new_balance":"7152.89", + "value":"-34.43" + } + }, + { + "id":"dabe3152-db57-4ceb-bdd6-7580490254d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T00:14:06.414Z", + "completed":"2016-09-30T00:14:06.414Z", + "new_balance":"7110.55", + "value":"-42.34" + } + }, + { + "id":"fd7279a7-41ba-42e9-9e76-9b17cfaa7061", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T07:14:51.554Z", + "completed":"2016-10-01T07:14:51.554Z", + "new_balance":"6600.01", + "value":"-510.54" + } + }, + { + "id":"ec8a3a85-b79f-4325-8527-76ed40284321", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T15:54:32.988Z", + "completed":"2016-10-01T15:54:32.988Z", + "new_balance":"6526.08", + "value":"-73.93" + } + }, + { + "id":"d9ab4f26-8638-407a-a5c8-be8ab67fca98", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T16:17:52.739Z", + "completed":"2016-10-01T16:17:52.739Z", + "new_balance":"6491.65", + "value":"-34.43" + } + }, + { + "id":"45c4f4ec-1625-4bf4-bd49-4970ce926662", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T22:16:46.907Z", + "completed":"2016-10-01T22:16:46.907Z", + "new_balance":"6429.78", + "value":"-61.87" + } + }, + { + "id":"6ed94caf-d72d-49b8-8a86-f21065da4c20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T23:48:48.545Z", + "completed":"2016-10-01T23:48:48.545Z", + "new_balance":"6405.22", + "value":"-24.56" + } + }, + { + "id":"25b9a049-c775-477d-9718-ffb38abd9a8d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T05:23:30.432Z", + "completed":"2016-10-05T05:23:30.432Z", + "new_balance":"6361.24", + "value":"-43.98" + } + }, + { + "id":"f2805184-c153-43fd-b8b1-64c398e7cd98", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T06:00:37.859Z", + "completed":"2016-10-05T06:00:37.859Z", + "new_balance":"6308.06", + "value":"-53.18" + } + }, + { + "id":"d08227dc-f671-4688-85fb-f3c1d9d42dd1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T06:50:46.305Z", + "completed":"2016-10-05T06:50:46.305Z", + "new_balance":"6285.37", + "value":"-22.69" + } + }, + { + "id":"b3e0d5df-3ebd-4449-b726-6176cbdcaa43", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T23:39:38.369Z", + "completed":"2016-10-05T23:39:38.369Z", + "new_balance":"6272.36", + "value":"-13.01" + } + }, + { + "id":"39ef1790-f9d5-49dd-a9c9-366b2c167e8d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T18:19:38.929Z", + "completed":"2016-10-07T18:19:38.929Z", + "new_balance":"6242.48", + "value":"-29.88" + } + }, + { + "id":"62c625b3-f49f-4e57-a262-0d3a3d55ac68", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T19:04:17.489Z", + "completed":"2016-10-09T19:04:17.489Z", + "new_balance":"6217.61", + "value":"-24.87" + } + }, + { + "id":"70606eaa-eead-4b2a-9ee3-4f6be3dcd3ee", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T21:02:43.494Z", + "completed":"2016-10-09T21:02:43.494Z", + "new_balance":"6164.43", + "value":"-53.18" + } + }, + { + "id":"310a6f70-bf08-481d-ba4f-c90c2731c027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T07:40:34.599Z", + "completed":"2016-10-10T07:40:34.599Z", + "new_balance":"6125.26", + "value":"-39.17" + } + }, + { + "id":"9f326019-5464-4f7a-bc7c-1740d267037f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T10:16:34.057Z", + "completed":"2016-10-10T10:16:34.057Z", + "new_balance":"6108.86", + "value":"-16.40" + } + }, + { + "id":"c4dcfae5-8925-42ea-b050-ae5439bd855a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T16:06:06.601Z", + "completed":"2016-10-10T16:06:06.601Z", + "new_balance":"6084.30", + "value":"-24.56" + } + }, + { + "id":"cd4d0175-eb69-4f09-ad88-bf9de3cbfe44", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T17:28:52.104Z", + "completed":"2016-10-10T17:28:52.104Z", + "new_balance":"6064.23", + "value":"-20.07" + } + }, + { + "id":"3fbdad57-1f76-4430-8cf6-2c83f3075985", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T00:41:10.852Z", + "completed":"2016-10-11T00:41:10.852Z", + "new_balance":"6003.05", + "value":"-61.18" + } + }, + { + "id":"b3c2f5d1-130e-44b3-92ba-f96795583b0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T02:55:02.592Z", + "completed":"2016-10-11T02:55:02.592Z", + "new_balance":"5971.73", + "value":"-31.32" + } + }, + { + "id":"3797e102-dedd-48c6-afac-54af505dd505", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T11:05:18.217Z", + "completed":"2016-10-11T11:05:18.217Z", + "new_balance":"5918.55", + "value":"-53.18" + } + }, + { + "id":"1bb3dae2-14b7-4c9f-be87-fdb2312e63ec", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T17:20:36.227Z", + "completed":"2016-10-11T17:20:36.227Z", + "new_balance":"5912.40", + "value":"-6.15" + } + }, + { + "id":"f3340b0f-355d-43a4-b5e4-01d0552cd874", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T23:59:59.896Z", + "completed":"2016-10-11T23:59:59.896Z", + "new_balance":"5882.00", + "value":"-30.40" + } + }, + { + "id":"1b0fbb78-8f10-48b7-a496-2165a6ec7dd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T22:23:48.565Z", + "completed":"2016-10-21T22:23:48.565Z", + "new_balance":"5828.82", + "value":"-53.18" + } + }, + { + "id":"a3f1d072-2233-40a6-af2d-0db9f9e0efe3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T14:24:04.376Z", + "completed":"2016-10-23T14:24:04.376Z", + "new_balance":"5812.99", + "value":"-15.83" + } + }, + { + "id":"e39fc1e0-9cb4-4874-b718-15cd12419718", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T03:48:54.635Z", + "completed":"2016-10-29T03:48:54.635Z", + "new_balance":"5754.51", + "value":"-58.48" + } + }, + { + "id":"95bd67c3-d32c-487c-bef1-c6245ddc91a4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T04:55:31.487Z", + "completed":"2016-10-29T04:55:31.487Z", + "new_balance":"5720.08", + "value":"-34.43" + } + }, + { + "id":"40c90ecd-4756-4d6e-8221-0f109d6da691", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T21:50:19.872Z", + "completed":"2016-10-29T21:50:19.872Z", + "new_balance":"6908.59", + "value":"1188.51" + } + }, + { + "id":"7bff6033-758c-4688-9da9-a5dc95e3a4d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T22:44:44.269Z", + "completed":"2016-10-30T22:44:44.269Z", + "new_balance":"6866.25", + "value":"-42.34" + } + }, + { + "id":"d4ea0db1-cb7d-429d-bcea-26edb8ff8a12", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T01:10:07.804Z", + "completed":"2016-11-02T01:10:07.804Z", + "new_balance":"6804.38", + "value":"-61.87" + } + }, + { + "id":"3eba416d-7740-4596-8e7e-33d8861dc050", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T02:11:07.475Z", + "completed":"2016-11-02T02:11:07.475Z", + "new_balance":"6730.45", + "value":"-73.93" + } + }, + { + "id":"d3bf1b47-e963-4683-aca2-a42c6a6b3be6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T02:27:40.150Z", + "completed":"2016-11-02T02:27:40.150Z", + "new_balance":"6705.89", + "value":"-24.56" + } + }, + { + "id":"fbce5ded-38c2-4262-b10e-88ed25324f6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:49:15.076Z", + "completed":"2016-11-02T19:49:15.076Z", + "new_balance":"6195.35", + "value":"-510.54" + } + }, + { + "id":"dedd5ef7-031c-4e8f-b40a-3d167879e58a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T05:06:03.776Z", + "completed":"2016-11-06T05:06:03.776Z", + "new_balance":"6151.37", + "value":"-43.98" + } + }, + { + "id":"d1bca9ad-6aea-4235-9542-fdaf4d0c4a21", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T07:06:10.094Z", + "completed":"2016-11-07T07:06:10.094Z", + "new_balance":"6140.46", + "value":"-10.91" + } + }, + { + "id":"63f83cb6-e9f1-4cf7-a47c-bddba4e01b73", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T13:06:19.125Z", + "completed":"2016-11-07T13:06:19.125Z", + "new_balance":"6099.33", + "value":"-41.13" + } + }, + { + "id":"c736c9ec-f9c2-4903-9d9d-364bbed88803", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T13:09:09.339Z", + "completed":"2016-11-07T13:09:09.339Z", + "new_balance":"6071.48", + "value":"-27.85" + } + }, + { + "id":"ba5545ec-acaf-4727-95fd-884b9e9274a0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:42:07.787Z", + "completed":"2016-11-07T17:42:07.787Z", + "new_balance":"6041.60", + "value":"-29.88" + } + }, + { + "id":"2bd8b4ec-da44-435c-bf50-037736f352d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T07:22:53.153Z", + "completed":"2016-11-08T07:22:53.153Z", + "new_balance":"6000.68", + "value":"-40.92" + } + }, + { + "id":"e1d484bb-1322-48eb-9fbc-148e6c9b3847", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T19:46:31.277Z", + "completed":"2016-11-09T19:46:31.277Z", + "new_balance":"5966.25", + "value":"-34.43" + } + }, + { + "id":"48acf29c-3451-40ad-9363-207390c99dd4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T12:22:05.806Z", + "completed":"2016-11-13T12:22:05.806Z", + "new_balance":"5913.07", + "value":"-53.18" + } + }, + { + "id":"4b8748ee-dd47-437e-b138-8c3873db3fac", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:54:09.744Z", + "completed":"2016-11-26T01:54:09.744Z", + "new_balance":"5859.89", + "value":"-53.18" + } + }, + { + "id":"cd60541d-8c68-47e9-8f2b-15c574f61ff2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T18:19:24.508Z", + "completed":"2016-11-26T18:19:24.508Z", + "new_balance":"5848.98", + "value":"-10.91" + } + }, + { + "id":"69e061b1-67da-4183-82ec-558492bef2bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T09:26:57.831Z", + "completed":"2016-11-27T09:26:57.831Z", + "new_balance":"5832.24", + "value":"-16.74" + } + }, + { + "id":"e4a5698b-e4c5-4e4c-a2cf-fcc84aa217bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T15:01:24.521Z", + "completed":"2016-11-27T15:01:24.521Z", + "new_balance":"5773.76", + "value":"-58.48" + } + }, + { + "id":"b9b845d4-4c51-4508-9581-56eb763ebbdb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T18:01:02.428Z", + "completed":"2016-11-30T18:01:02.428Z", + "new_balance":"5731.42", + "value":"-42.34" + } + }, + { + "id":"e2cce611-0192-44a7-a63e-2f082a5f230c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T23:16:27.874Z", + "completed":"2016-11-30T23:16:27.874Z", + "new_balance":"6919.93", + "value":"1188.51" + } + }, + { + "id":"68431030-8f81-482d-b7e3-78a496168bf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T23:17:12.950Z", + "completed":"2016-11-30T23:17:12.950Z", + "new_balance":"6885.50", + "value":"-34.43" + } + }, + { + "id":"36feb738-e47e-459a-ba4e-e3ce2d9712a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T00:24:44.920Z", + "completed":"2016-12-01T00:24:44.920Z", + "new_balance":"6836.84", + "value":"-48.66" + } + }, + { + "id":"17aea6c8-07b2-4f6e-8a1b-0e79448535cb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T01:50:54.658Z", + "completed":"2016-12-01T01:50:54.658Z", + "new_balance":"6812.28", + "value":"-24.56" + } + }, + { + "id":"0591b473-c65f-4ef3-905a-548863bc4733", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T03:40:28.861Z", + "completed":"2016-12-01T03:40:28.861Z", + "new_balance":"6777.85", + "value":"-34.43" + } + }, + { + "id":"cc152936-8a77-47e5-8700-9b96e8912f34", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T03:44:32.413Z", + "completed":"2016-12-01T03:44:32.413Z", + "new_balance":"6715.98", + "value":"-61.87" + } + }, + { + "id":"8d96fcaf-c1bc-4902-acb3-a0a28e22064f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T06:29:25.153Z", + "completed":"2016-12-01T06:29:25.153Z", + "new_balance":"6662.80", + "value":"-53.18" + } + }, + { + "id":"64c59bbe-f4a7-4210-ae82-91ccc9300f1b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T07:46:24.481Z", + "completed":"2016-12-01T07:46:24.481Z", + "new_balance":"6609.62", + "value":"-53.18" + } + }, + { + "id":"f05c1bc8-d31a-492c-8241-24660938dd3c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T07:50:55.021Z", + "completed":"2016-12-01T07:50:55.021Z", + "new_balance":"6099.08", + "value":"-510.54" + } + }, + { + "id":"755b8612-df1f-460b-9270-5766352ad253", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T11:56:33.811Z", + "completed":"2016-12-01T11:56:33.811Z", + "new_balance":"6025.15", + "value":"-73.93" + } + }, + { + "id":"d8a5fac6-98ec-4ad1-9e9c-f719f444f137", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:37:45.130Z", + "completed":"2016-12-01T13:37:45.130Z", + "new_balance":"6011.48", + "value":"-13.67" + } + }, + { + "id":"30519192-5806-4cc9-a935-944a9692cbe7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T10:51:48.644Z", + "completed":"2016-12-02T10:51:48.644Z", + "new_balance":"6000.48", + "value":"-11.00" + } + }, + { + "id":"534db921-61c3-4e64-8248-08d5639f7005", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T11:56:46.493Z", + "completed":"2016-12-02T11:56:46.493Z", + "new_balance":"5988.55", + "value":"-11.93" + } + }, + { + "id":"756ef5a1-0dd2-491a-8478-7a8cea40bbfc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:23:24.288Z", + "completed":"2016-12-02T20:23:24.288Z", + "new_balance":"5930.87", + "value":"-57.68" + } + }, + { + "id":"a4ae5f6d-33d7-484a-b452-995924d32df4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T06:07:49.570Z", + "completed":"2016-12-04T06:07:49.570Z", + "new_balance":"5883.94", + "value":"-46.93" + } + }, + { + "id":"866b374d-3ac3-4bbe-9038-043afbec1d56", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T13:10:27.512Z", + "completed":"2016-12-04T13:10:27.512Z", + "new_balance":"5841.60", + "value":"-42.34" + } + }, + { + "id":"5c2470fd-d4d1-4d4e-884f-70ac5e8e1209", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T15:02:50.644Z", + "completed":"2016-12-04T15:02:50.644Z", + "new_balance":"5816.23", + "value":"-25.37" + } + }, + { + "id":"d2c95d02-47e2-479a-9da5-855504b056eb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T16:31:52.129Z", + "completed":"2016-12-05T16:31:52.129Z", + "new_balance":"5749.65", + "value":"-66.58" + } + }, + { + "id":"36612fdc-1af4-4b43-a87b-c63ed9e3a8c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T20:38:10.700Z", + "completed":"2016-12-05T20:38:10.700Z", + "new_balance":"5722.81", + "value":"-26.84" + } + }, + { + "id":"ab6f022f-7e2d-4bef-a573-3fe49090ed26", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T12:28:56.691Z", + "completed":"2016-12-18T12:28:56.691Z", + "new_balance":"5669.63", + "value":"-53.18" + } + }, + { + "id":"bf5f2db8-7d35-44cc-b74f-4652be622a55", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T02:04:28.276Z", + "completed":"2016-12-30T02:04:28.276Z", + "new_balance":"5628.10", + "value":"-41.53" + } + }, + { + "id":"b56ba5d3-f3e0-4676-b406-72a84935582e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T13:12:15.421Z", + "completed":"2016-12-30T13:12:15.421Z", + "new_balance":"6816.61", + "value":"1188.51" + } + }, + { + "id":"85242edc-53f7-4f3c-b5d9-7892f0e6911d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T16:24:37.917Z", + "completed":"2016-12-30T16:24:37.917Z", + "new_balance":"6774.27", + "value":"-42.34" + } + }, + { + "id":"d1718d0a-fc09-4f91-8d1b-087a6fb6ffe8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T23:26:41.744Z", + "completed":"2016-12-30T23:26:41.744Z", + "new_balance":"6739.84", + "value":"-34.43" + } + }, + { + "id":"7145e6c4-9f1e-485c-ad3a-8a35234760d4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T05:21:43.073Z", + "completed":"2017-01-01T05:21:43.073Z", + "new_balance":"6677.97", + "value":"-61.87" + } + }, + { + "id":"443a5026-dc60-4901-8497-b647e3f2458c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T06:02:23.647Z", + "completed":"2017-01-01T06:02:23.647Z", + "new_balance":"6616.10", + "value":"-61.87" + } + }, + { + "id":"4594eade-4b4a-45e7-a3c2-d5feadd4ad96", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T01:14:21.661Z", + "completed":"2017-01-03T01:14:21.661Z", + "new_balance":"6591.54", + "value":"-24.56" + } + }, + { + "id":"9c975186-51bb-4e9e-8c9b-58886faff508", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T09:26:50.268Z", + "completed":"2017-01-03T09:26:50.268Z", + "new_balance":"6557.11", + "value":"-34.43" + } + }, + { + "id":"a5c136f7-31cb-4a4b-b728-b8347651b671", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T16:26:52.192Z", + "completed":"2017-01-03T16:26:52.192Z", + "new_balance":"6483.18", + "value":"-73.93" + } + }, + { + "id":"cd863fbe-63e9-4455-97e1-4aea9ed19faa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T17:30:01.755Z", + "completed":"2017-01-03T17:30:01.755Z", + "new_balance":"5972.64", + "value":"-510.54" + } + }, + { + "id":"02a0a931-8e42-40ef-bc25-d69618b6ced9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T00:21:28.442Z", + "completed":"2017-01-05T00:21:28.442Z", + "new_balance":"5959.63", + "value":"-13.01" + } + }, + { + "id":"220e807a-6060-4272-ab9b-92628df1b5d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T06:14:48.663Z", + "completed":"2017-01-05T06:14:48.663Z", + "new_balance":"5915.65", + "value":"-43.98" + } + }, + { + "id":"51b41833-d3c9-4821-ab53-69669eb0f4fc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T16:56:01.502Z", + "completed":"2017-01-05T16:56:01.502Z", + "new_balance":"5862.47", + "value":"-53.18" + } + }, + { + "id":"0e730a69-e22c-42f5-9d3f-6963dc462ff8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T06:43:39.022Z", + "completed":"2017-01-06T06:43:39.022Z", + "new_balance":"5839.78", + "value":"-22.69" + } + }, + { + "id":"04903195-ddab-4209-8a50-a656e108ea54", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T19:03:40.245Z", + "completed":"2017-01-06T19:03:40.245Z", + "new_balance":"5809.90", + "value":"-29.88" + } + }, + { + "id":"d129e41c-e970-4514-abda-f898965c8732", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T07:47:44.344Z", + "completed":"2017-01-07T07:47:44.344Z", + "new_balance":"5770.73", + "value":"-39.17" + } + }, + { + "id":"74c1a026-fc79-4c22-96e2-c7815cb793bd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T11:35:13.988Z", + "completed":"2017-01-10T11:35:13.988Z", + "new_balance":"5717.55", + "value":"-53.18" + } + }, + { + "id":"09e4165c-bf5f-44e7-b096-d30094b51965", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T23:31:48.501Z", + "completed":"2017-01-10T23:31:48.501Z", + "new_balance":"5692.68", + "value":"-24.87" + } + }, + { + "id":"3494eb3a-89b1-4dba-9514-3dd5d66d8677", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T02:12:59.919Z", + "completed":"2017-01-12T02:12:59.919Z", + "new_balance":"5672.61", + "value":"-20.07" + } + }, + { + "id":"24e61dab-1330-4f52-a455-99c112687d6d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T03:12:10.219Z", + "completed":"2017-01-12T03:12:10.219Z", + "new_balance":"5648.05", + "value":"-24.56" + } + }, + { + "id":"6d07ad49-4c97-4081-9650-1b3368a86b6a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:16:56.724Z", + "completed":"2017-01-12T13:16:56.724Z", + "new_balance":"5608.88", + "value":"-39.17" + } + }, + { + "id":"ecbb53cb-d168-411c-a66e-c32defa17a91", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T07:49:25.150Z", + "completed":"2017-01-15T07:49:25.150Z", + "new_balance":"5592.48", + "value":"-16.40" + } + }, + { + "id":"e487040b-d8b3-4019-b1b8-daf683d6d503", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T01:36:13.130Z", + "completed":"2017-01-16T01:36:13.130Z", + "new_balance":"5586.33", + "value":"-6.15" + } + }, + { + "id":"d0281577-ac40-41a3-bbee-715eae0fb594", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T04:58:03.912Z", + "completed":"2017-01-16T04:58:03.912Z", + "new_balance":"5533.15", + "value":"-53.18" + } + }, + { + "id":"90ff59af-d966-40b2-8b26-d166fd46e485", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T18:58:01.281Z", + "completed":"2017-01-17T18:58:01.281Z", + "new_balance":"5471.97", + "value":"-61.18" + } + }, + { + "id":"8911426f-26c1-4803-b8f0-f98a8d301b5a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T20:08:55.885Z", + "completed":"2017-01-17T20:08:55.885Z", + "new_balance":"5440.65", + "value":"-31.32" + } + }, + { + "id":"84030aba-b9c1-4f3e-9357-ecf18e6f07ab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T02:47:21.468Z", + "completed":"2017-01-19T02:47:21.468Z", + "new_balance":"5410.25", + "value":"-30.40" + } + }, + { + "id":"43c91572-0636-4cb5-8705-1a0a73883f6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:09:10.046Z", + "completed":"2017-01-20T19:09:10.046Z", + "new_balance":"5357.07", + "value":"-53.18" + } + }, + { + "id":"2699ce6b-f726-4004-bbab-e8a784003c2d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T02:33:22.885Z", + "completed":"2017-01-23T02:33:22.885Z", + "new_balance":"5341.24", + "value":"-15.83" + } + }, + { + "id":"97afb4b7-6ebe-4527-ad6c-4701ad98eb17", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T00:41:10.819Z", + "completed":"2017-01-26T00:41:10.819Z", + "new_balance":"5282.76", + "value":"-58.48" + } + }, + { + "id":"5850acc5-7368-4b09-ba7c-fd6c2b3680da", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T22:01:58.690Z", + "completed":"2017-01-27T22:01:58.690Z", + "new_balance":"6471.27", + "value":"1188.51" + } + }, + { + "id":"df62583e-1839-4d21-9c02-135ea30548c0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T00:06:39.474Z", + "completed":"2017-01-28T00:06:39.474Z", + "new_balance":"6436.84", + "value":"-34.43" + } + }, + { + "id":"bf222f83-4f2d-4aaf-8ec9-13022c210502", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T18:55:56.646Z", + "completed":"2017-01-30T18:55:56.646Z", + "new_balance":"6394.50", + "value":"-42.34" + } + }, + { + "id":"f87150ce-7161-49e7-8632-b5fcb3f0706b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T00:17:37.538Z", + "completed":"2017-02-03T00:17:37.538Z", + "new_balance":"6369.94", + "value":"-24.56" + } + }, + { + "id":"aecb7e42-ab49-46bc-afde-2ad370824dac", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T10:30:45.830Z", + "completed":"2017-02-03T10:30:45.830Z", + "new_balance":"6335.51", + "value":"-34.43" + } + }, + { + "id":"ff7ad9f8-5f5c-4f86-8a66-b9e72c315eff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T14:55:55.579Z", + "completed":"2017-02-03T14:55:55.579Z", + "new_balance":"6261.58", + "value":"-73.93" + } + }, + { + "id":"4d4e2c8c-2e2c-406d-ae78-c78c423be4a1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T19:54:05.089Z", + "completed":"2017-02-03T19:54:05.089Z", + "new_balance":"5751.04", + "value":"-510.54" + } + }, + { + "id":"441dd42f-cd1d-46b3-a787-1fec3729d958", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T03:08:19.839Z", + "completed":"2017-02-08T03:08:19.839Z", + "new_balance":"5707.06", + "value":"-43.98" + } + }, + { + "id":"cd71a3d8-0195-49b8-bfc5-0e5c0f81e0a3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T16:54:22.350Z", + "completed":"2017-02-08T16:54:22.350Z", + "new_balance":"5653.88", + "value":"-53.18" + } + }, + { + "id":"bd09b82d-3d76-49f9-8c2b-6ca0b3eb5579", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T21:49:17.471Z", + "completed":"2017-02-11T21:49:17.471Z", + "new_balance":"5664.77", + "value":"10.89" + } + }, + { + "id":"57300aaa-e8c3-48ec-9b6f-fe10182048ca", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T05:13:09.482Z", + "completed":"2017-02-13T05:13:09.482Z", + "new_balance":"5634.89", + "value":"-29.88" + } + }, + { + "id":"ec08ab50-84bc-449e-a6d2-aed3123f4a39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T08:20:44.971Z", + "completed":"2017-02-14T08:20:44.971Z", + "new_balance":"5607.04", + "value":"-27.85" + } + }, + { + "id":"493b2a05-88f1-4d46-b0b5-9fed2f146247", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T07:40:03.476Z", + "completed":"2017-02-17T07:40:03.476Z", + "new_balance":"5596.13", + "value":"-10.91" + } + }, + { + "id":"b52bdd4a-d0e1-4b15-a2e7-37bc5e3c00fa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T11:58:12.410Z", + "completed":"2017-02-21T11:58:12.410Z", + "new_balance":"5555.00", + "value":"-41.13" + } + }, + { + "id":"c4f83fac-e981-480a-ae19-2d41cada1caa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T06:20:39.499Z", + "completed":"2017-02-23T06:20:39.499Z", + "new_balance":"5501.82", + "value":"-53.18" + } + }, + { + "id":"d68db910-3ae2-4c75-8d81-7c93b384abf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T18:11:45.694Z", + "completed":"2017-02-23T18:11:45.694Z", + "new_balance":"5460.90", + "value":"-40.92" + } + }, + { + "id":"5b4e5340-bf1e-41aa-9bd9-df094d0efe96", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T13:55:23.714Z", + "completed":"2017-02-24T13:55:23.714Z", + "new_balance":"5449.99", + "value":"-10.91" + } + }, + { + "id":"0baa9b34-8904-476d-b38d-692d8dcf2bab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T11:44:31.946Z", + "completed":"2017-02-27T11:44:31.946Z", + "new_balance":"5433.25", + "value":"-16.74" + } + }, + { + "id":"2d77145a-7140-4bbe-a8c1-d3b433a31807", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T12:18:32.613Z", + "completed":"2017-02-27T12:18:32.613Z", + "new_balance":"6621.76", + "value":"1188.51" + } + }, + { + "id":"7c1fd779-7715-4839-84d4-bf952db01bb6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T22:48:32.046Z", + "completed":"2017-02-27T22:48:32.046Z", + "new_balance":"6563.28", + "value":"-58.48" + } + }, + { + "id":"a7e7ba37-8712-4e23-86b4-c3a829fc415d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T00:03:11.802Z", + "completed":"2017-02-28T00:03:11.802Z", + "new_balance":"6520.94", + "value":"-42.34" + } + }, + { + "id":"5d3c3010-f735-46b8-b071-187ecbcba25e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T13:55:05.536Z", + "completed":"2017-02-28T13:55:05.536Z", + "new_balance":"6486.51", + "value":"-34.43" + } + }, + { + "id":"1b146143-185d-403b-a471-58a71d5b06a1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T15:42:52.681Z", + "completed":"2017-03-01T15:42:52.681Z", + "new_balance":"6424.64", + "value":"-61.87" + } + }, + { + "id":"6663e9d8-0ea6-4942-970f-e6dce6e19201", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T03:12:26.117Z", + "completed":"2017-03-03T03:12:26.117Z", + "new_balance":"6400.08", + "value":"-24.56" + } + }, + { + "id":"7bd0c1ac-4324-47b0-9770-d9b0485ee39a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T04:42:57.923Z", + "completed":"2017-03-03T04:42:57.923Z", + "new_balance":"6365.65", + "value":"-34.43" + } + }, + { + "id":"50c27fdc-12df-463a-a4c6-17607725fc22", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T08:46:27.111Z", + "completed":"2017-03-03T08:46:27.111Z", + "new_balance":"5855.11", + "value":"-510.54" + } + }, + { + "id":"a2fa10a0-7749-4810-90b3-e5b88183e952", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T17:43:48.122Z", + "completed":"2017-03-03T17:43:48.122Z", + "new_balance":"5781.18", + "value":"-73.93" + } + }, + { + "id":"69f1c5c3-816b-47e3-b61f-bc534289e544", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T09:15:01.740Z", + "completed":"2017-03-05T09:15:01.740Z", + "new_balance":"5732.52", + "value":"-48.66" + } + }, + { + "id":"e21c4a5e-898e-4c3e-94a9-7a48f951bd52", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T18:50:46.167Z", + "completed":"2017-03-05T18:50:46.167Z", + "new_balance":"5679.34", + "value":"-53.18" + } + }, + { + "id":"7a073fc8-4f3d-4016-ab65-6185b6f7d00e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T11:03:03.303Z", + "completed":"2017-03-07T11:03:03.303Z", + "new_balance":"5665.67", + "value":"-13.67" + } + }, + { + "id":"98bdeeb1-a4e0-46d8-a9c5-0a0e2c82c3be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T04:15:24.798Z", + "completed":"2017-03-09T04:15:24.798Z", + "new_balance":"5612.49", + "value":"-53.18" + } + }, + { + "id":"ef9d6438-1933-4b87-9913-9c8c26e5b2f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T16:33:22.908Z", + "completed":"2017-03-11T16:33:22.908Z", + "new_balance":"5601.49", + "value":"-11.00" + } + }, + { + "id":"edd84d09-4b75-45b0-8e9f-88ee3ce1a543", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T16:36:36.009Z", + "completed":"2017-03-13T16:36:36.009Z", + "new_balance":"5543.81", + "value":"-57.68" + } + }, + { + "id":"aae94866-b6ec-40e9-93b6-f65e17b4e80f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T03:09:28.581Z", + "completed":"2017-03-14T03:09:28.581Z", + "new_balance":"5607.17", + "value":"63.36" + } + }, + { + "id":"b3a1ebba-f7dc-413c-9ae7-378f9c2c3c66", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T08:26:39.019Z", + "completed":"2017-03-14T08:26:39.019Z", + "new_balance":"5595.24", + "value":"-11.93" + } + }, + { + "id":"0e0be849-87ac-4c0e-bc13-0251a9c6a2f4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T10:09:58.298Z", + "completed":"2017-03-15T10:09:58.298Z", + "new_balance":"5552.90", + "value":"-42.34" + } + }, + { + "id":"9054b8f4-9d3a-4b31-bc29-e44e88818602", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T03:55:33.676Z", + "completed":"2017-03-26T03:55:33.676Z", + "new_balance":"5527.53", + "value":"-25.37" + } + }, + { + "id":"b911491a-1dff-4723-adc4-4184a69d2554", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T20:04:32.144Z", + "completed":"2017-03-26T20:04:32.144Z", + "new_balance":"5500.69", + "value":"-26.84" + } + }, + { + "id":"fd3f9c21-231d-4a3e-8351-dae0870d871c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T22:56:42.505Z", + "completed":"2017-03-26T22:56:42.505Z", + "new_balance":"5453.76", + "value":"-46.93" + } + }, + { + "id":"4febe9ee-ab9c-40c2-9288-00ab5252fc23", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T18:13:57.007Z", + "completed":"2017-03-27T18:13:57.007Z", + "new_balance":"6642.27", + "value":"1188.51" + } + }, + { + "id":"11b7ab0c-f467-4592-98cf-fc0ef2da1d15", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T20:00:29.676Z", + "completed":"2017-03-27T20:00:29.676Z", + "new_balance":"6589.09", + "value":"-53.18" + } + }, + { + "id":"00a07d37-232e-40a6-8b9a-61b5d7f8245d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T21:41:36.121Z", + "completed":"2017-03-27T21:41:36.121Z", + "new_balance":"6522.51", + "value":"-66.58" + } + }, + { + "id":"f6170efe-c6f7-4ba9-9146-a438b5b456a0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T10:55:05.413Z", + "completed":"2017-03-28T10:55:05.413Z", + "new_balance":"6488.08", + "value":"-34.43" + } + }, + { + "id":"194feee8-c104-4e24-b40b-8e7a01224fe9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T23:30:23.073Z", + "completed":"2017-03-30T23:30:23.073Z", + "new_balance":"6445.74", + "value":"-42.34" + } + }, + { + "id":"37fd6ab4-e338-41f0-926b-901440464a92", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T04:45:09.877Z", + "completed":"2017-04-01T04:45:09.877Z", + "new_balance":"6383.87", + "value":"-61.87" + } + }, + { + "id":"1d579ccf-8c1c-46a1-9bd2-9096bc285f01", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T07:49:58.664Z", + "completed":"2017-04-01T07:49:58.664Z", + "new_balance":"6359.31", + "value":"-24.56" + } + }, + { + "id":"32188c16-b8f4-4d58-966b-dafa9bc56560", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T10:01:10.490Z", + "completed":"2017-04-01T10:01:10.490Z", + "new_balance":"5848.77", + "value":"-510.54" + } + }, + { + "id":"3e5b3bae-d359-4b41-8d23-50cc2e2da28d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T10:59:40.799Z", + "completed":"2017-04-01T10:59:40.799Z", + "new_balance":"5774.84", + "value":"-73.93" + } + }, + { + "id":"a603af4c-2abe-49aa-842b-9053e69da97a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T19:53:24.588Z", + "completed":"2017-04-01T19:53:24.588Z", + "new_balance":"5740.41", + "value":"-34.43" + } + }, + { + "id":"73ecbc41-f18e-4b69-aaa1-f15bd84f974d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T06:54:20.595Z", + "completed":"2017-04-05T06:54:20.595Z", + "new_balance":"5727.40", + "value":"-13.01" + } + }, + { + "id":"a34f457a-c604-48c7-bcba-64b43b914837", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T10:46:57.882Z", + "completed":"2017-04-05T10:46:57.882Z", + "new_balance":"5683.42", + "value":"-43.98" + } + }, + { + "id":"a2beee30-78d8-4831-8137-a313c3fdf98d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T15:33:21.293Z", + "completed":"2017-04-05T15:33:21.293Z", + "new_balance":"5630.24", + "value":"-53.18" + } + }, + { + "id":"8c4f9280-7bb9-486e-81b0-3ab3890ed27a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T23:34:24.435Z", + "completed":"2017-04-05T23:34:24.435Z", + "new_balance":"5607.55", + "value":"-22.69" + } + }, + { + "id":"0cc14c06-2ce1-4f17-b6df-651b92576bf0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T14:51:58.720Z", + "completed":"2017-04-07T14:51:58.720Z", + "new_balance":"5577.67", + "value":"-29.88" + } + }, + { + "id":"0c0523fc-ccab-4afd-9584-69951c01c79a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T18:02:27.574Z", + "completed":"2017-04-09T18:02:27.574Z", + "new_balance":"5524.49", + "value":"-53.18" + } + }, + { + "id":"cdb73660-a90a-4717-9a56-8bda324e012c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T23:18:59.512Z", + "completed":"2017-04-09T23:18:59.512Z", + "new_balance":"5499.62", + "value":"-24.87" + } + }, + { + "id":"f671e9aa-5ab1-416c-be56-d3a94c8cbcd4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T07:57:53.446Z", + "completed":"2017-04-10T07:57:53.446Z", + "new_balance":"5475.06", + "value":"-24.56" + } + }, + { + "id":"31147b01-5c47-42d3-a12c-33c8162729ad", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T08:25:08.581Z", + "completed":"2017-04-10T08:25:08.581Z", + "new_balance":"5435.89", + "value":"-39.17" + } + }, + { + "id":"d0e51904-bbb5-42a5-8261-054ba8853d6c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T12:21:00.455Z", + "completed":"2017-04-10T12:21:00.455Z", + "new_balance":"5419.49", + "value":"-16.40" + } + }, + { + "id":"339c1f1c-5e9c-4a35-9a95-d7ca4d0029f2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T19:21:41.875Z", + "completed":"2017-04-10T19:21:41.875Z", + "new_balance":"5399.42", + "value":"-20.07" + } + }, + { + "id":"1e40a9ed-b680-425e-b17a-9d6a6aaca03f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T01:27:30.110Z", + "completed":"2017-04-11T01:27:30.110Z", + "new_balance":"5346.24", + "value":"-53.18" + } + }, + { + "id":"3d86c6e0-6807-47eb-a470-ab5626e19578", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:28:44.934Z", + "completed":"2017-04-11T04:28:44.934Z", + "new_balance":"5340.09", + "value":"-6.15" + } + }, + { + "id":"6ba6138a-630d-4f28-974e-678c57b8059a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T12:07:13.433Z", + "completed":"2017-04-11T12:07:13.433Z", + "new_balance":"5308.77", + "value":"-31.32" + } + }, + { + "id":"f3540cbd-019e-4b2d-a419-2ef12b656f8c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T19:25:51.499Z", + "completed":"2017-04-11T19:25:51.499Z", + "new_balance":"5247.59", + "value":"-61.18" + } + }, + { + "id":"34677dbb-5ee4-40a6-affe-9c4232d9dbb0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T20:05:28.474Z", + "completed":"2017-04-11T20:05:28.474Z", + "new_balance":"5217.19", + "value":"-30.40" + } + }, + { + "id":"d8c80b77-6998-4f2a-beb5-c52ab1592086", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T23:06:45.682Z", + "completed":"2017-04-21T23:06:45.682Z", + "new_balance":"5164.01", + "value":"-53.18" + } + }, + { + "id":"b57e0095-5ac2-4be0-af7b-14f077bcbc44", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T19:05:13.267Z", + "completed":"2017-04-23T19:05:13.267Z", + "new_balance":"5148.18", + "value":"-15.83" + } + }, + { + "id":"03f75950-02c0-467b-9d03-91d268bd68e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T05:27:21.812Z", + "completed":"2017-04-29T05:27:21.812Z", + "new_balance":"6336.69", + "value":"1188.51" + } + }, + { + "id":"9639991c-8841-4023-a05f-a2210d3ee6a5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T14:50:02.184Z", + "completed":"2017-04-29T14:50:02.184Z", + "new_balance":"6302.26", + "value":"-34.43" + } + }, + { + "id":"7bc7eaee-c503-49ff-aac4-f4b3454c4955", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T19:19:57.920Z", + "completed":"2017-04-29T19:19:57.920Z", + "new_balance":"6243.78", + "value":"-58.48" + } + }, + { + "id":"603a149f-4d65-4794-bdc1-d540672e7ed3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T00:10:01.046Z", + "completed":"2017-04-30T00:10:01.046Z", + "new_balance":"6201.44", + "value":"-42.34" + } + }, + { + "id":"5a13d82d-f84a-4680-a8f3-15d2f602cc82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T09:49:38.004Z", + "completed":"2017-05-02T09:49:38.004Z", + "new_balance":"5690.90", + "value":"-510.54" + } + }, + { + "id":"2b1ea1d3-bf82-49a8-b893-9ebb83af4330", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T17:55:22.122Z", + "completed":"2017-05-02T17:55:22.122Z", + "new_balance":"5666.34", + "value":"-24.56" + } + }, + { + "id":"5652331a-7505-49b3-9f85-fac564965c7f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T20:36:07.641Z", + "completed":"2017-05-02T20:36:07.641Z", + "new_balance":"5604.47", + "value":"-61.87" + } + }, + { + "id":"651cc95a-6483-4728-8b51-aba36600e2e8", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T21:58:13.373Z", + "completed":"2017-05-02T21:58:13.373Z", + "new_balance":"5530.54", + "value":"-73.93" + } + }, + { + "id":"b6ef0834-86a7-46fd-a862-dbf436d07e20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T10:27:18.270Z", + "completed":"2017-05-06T10:27:18.270Z", + "new_balance":"5486.56", + "value":"-43.98" + } + }, + { + "id":"95828001-2897-4e26-9e7a-74351f66845e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T02:25:18.690Z", + "completed":"2017-05-07T02:25:18.690Z", + "new_balance":"5445.43", + "value":"-41.13" + } + }, + { + "id":"8a7ba397-b378-44eb-b51f-d64c9a2f4c20", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T10:14:55.830Z", + "completed":"2017-05-07T10:14:55.830Z", + "new_balance":"5417.58", + "value":"-27.85" + } + }, + { + "id":"768d741c-ca24-48c0-9baa-ed369dc75603", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T11:37:32.132Z", + "completed":"2017-05-07T11:37:32.132Z", + "new_balance":"5387.70", + "value":"-29.88" + } + }, + { + "id":"0b8c5aa1-f0dd-4e8b-86b9-a91c1491fca5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T12:08:31.029Z", + "completed":"2017-05-07T12:08:31.029Z", + "new_balance":"5376.79", + "value":"-10.91" + } + }, + { + "id":"0d600fcf-45a9-471e-8266-0602f6b0e72f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T07:53:16.537Z", + "completed":"2017-05-08T07:53:16.537Z", + "new_balance":"5335.87", + "value":"-40.92" + } + }, + { + "id":"0851df81-5a64-4138-9c1b-8bb6e5dff340", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T18:33:53.819Z", + "completed":"2017-05-09T18:33:53.819Z", + "new_balance":"5301.44", + "value":"-34.43" + } + }, + { + "id":"444e1c84-ac65-4a49-aa0e-4e9cf105cb0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T20:14:13.326Z", + "completed":"2017-05-13T20:14:13.326Z", + "new_balance":"5248.26", + "value":"-53.18" + } + }, + { + "id":"2fdd42c5-3b11-4894-9e7a-8be6405cd458", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T06:40:47.120Z", + "completed":"2017-05-26T06:40:47.120Z", + "new_balance":"5237.35", + "value":"-10.91" + } + }, + { + "id":"788c75b7-b4c8-42d0-8e11-46b52c105d70", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T09:03:30.100Z", + "completed":"2017-05-26T09:03:30.100Z", + "new_balance":"5184.17", + "value":"-53.18" + } + }, + { + "id":"2fd3101d-65b8-47ba-9c74-d33bf7230d45", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T00:05:47.851Z", + "completed":"2017-05-27T00:05:47.851Z", + "new_balance":"5167.43", + "value":"-16.74" + } + }, + { + "id":"a71c1064-b416-4c4f-a09d-2e34445d3273", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T15:33:27.732Z", + "completed":"2017-05-27T15:33:27.732Z", + "new_balance":"5108.95", + "value":"-58.48" + } + }, + { + "id":"933f404c-80cd-4340-9d89-1f7b11a3429a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T13:44:48.422Z", + "completed":"2017-05-30T13:44:48.422Z", + "new_balance":"6297.46", + "value":"1188.51" + } + }, + { + "id":"b988cb43-c94e-4bfe-9ece-4c3fe41c8a69", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T17:42:14.696Z", + "completed":"2017-05-30T17:42:14.696Z", + "new_balance":"6255.12", + "value":"-42.34" + } + }, + { + "id":"d33b0ae4-4768-44f1-9fd3-f5a048c76768", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T18:39:23.977Z", + "completed":"2017-05-30T18:39:23.977Z", + "new_balance":"6220.69", + "value":"-34.43" + } + }, + { + "id":"7e32c477-d0d2-4988-b751-d7d02e12a50b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T02:58:04.746Z", + "completed":"2017-06-01T02:58:04.746Z", + "new_balance":"6172.03", + "value":"-48.66" + } + }, + { + "id":"2d49c681-2959-40e1-91e1-bcd96c3d9947", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T03:53:52.133Z", + "completed":"2017-06-01T03:53:52.133Z", + "new_balance":"6118.85", + "value":"-53.18" + } + }, + { + "id":"f1558600-52fe-4c9a-aa96-4cef2ea148ee", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T10:33:44.113Z", + "completed":"2017-06-01T10:33:44.113Z", + "new_balance":"6094.29", + "value":"-24.56" + } + }, + { + "id":"8373d3ba-eff1-4d93-82f6-9fb0163097de", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T11:09:56.425Z", + "completed":"2017-06-01T11:09:56.425Z", + "new_balance":"6041.11", + "value":"-53.18" + } + }, + { + "id":"b3ecd745-5fb7-4b67-91a0-23c7e76da6e5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:14:50.060Z", + "completed":"2017-06-01T13:14:50.060Z", + "new_balance":"6027.44", + "value":"-13.67" + } + }, + { + "id":"f14f5d55-cf95-417c-a3f5-2e8fc62065d5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:34:36.358Z", + "completed":"2017-06-01T13:34:36.358Z", + "new_balance":"5516.90", + "value":"-510.54" + } + }, + { + "id":"cd81b5b5-b2ef-4b34-8832-2f9d68611ea6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T19:00:04.961Z", + "completed":"2017-06-01T19:00:04.961Z", + "new_balance":"5482.47", + "value":"-34.43" + } + }, + { + "id":"61f78a25-623d-4105-a741-cb0f3bf18f24", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T23:22:59.836Z", + "completed":"2017-06-01T23:22:59.836Z", + "new_balance":"5408.54", + "value":"-73.93" + } + }, + { + "id":"142a34e4-beb0-497e-8c92-1262787723e6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T23:58:41.956Z", + "completed":"2017-06-01T23:58:41.956Z", + "new_balance":"5346.67", + "value":"-61.87" + } + }, + { + "id":"2f64e97c-7b64-455b-9683-da8005f500c1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T09:45:06.957Z", + "completed":"2017-06-02T09:45:06.957Z", + "new_balance":"5335.67", + "value":"-11.00" + } + }, + { + "id":"62e84b67-a244-4507-8a2d-580fe87f662d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T15:28:04.005Z", + "completed":"2017-06-02T15:28:04.005Z", + "new_balance":"5323.74", + "value":"-11.93" + } + }, + { + "id":"dd1d4203-d558-43e3-88e4-1c99f170bde7", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T23:28:14.357Z", + "completed":"2017-06-02T23:28:14.357Z", + "new_balance":"5266.06", + "value":"-57.68" + } + }, + { + "id":"c5dcaf4f-3f3c-483e-b813-44f186251f5b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:17:36.831Z", + "completed":"2017-06-04T17:17:36.831Z", + "new_balance":"5240.69", + "value":"-25.37" + } + }, + { + "id":"6a11aa44-3764-4093-b0af-1110d7274016", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T17:37:39.405Z", + "completed":"2017-06-04T17:37:39.405Z", + "new_balance":"5193.76", + "value":"-46.93" + } + }, + { + "id":"4538e297-ceec-416a-b4cd-483d75a12d9f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T22:47:15.721Z", + "completed":"2017-06-04T22:47:15.721Z", + "new_balance":"5151.42", + "value":"-42.34" + } + }, + { + "id":"d23ff19a-7d96-4fbc-ac64-f3eaf0ec7015", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T02:29:59.813Z", + "completed":"2017-06-05T02:29:59.813Z", + "new_balance":"5124.58", + "value":"-26.84" + } + }, + { + "id":"265bae06-70ec-4593-9c41-bc5aa204cb6a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T15:04:31.432Z", + "completed":"2017-06-05T15:04:31.432Z", + "new_balance":"5058.00", + "value":"-66.58" + } + }, + { + "id":"20aab494-9816-497b-b247-11f36bc1e2e3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T10:50:59.599Z", + "completed":"2017-06-18T10:50:59.599Z", + "new_balance":"5004.82", + "value":"-53.18" + } + }, + { + "id":"fe5b9447-0f8a-4166-be89-c30af53f418e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T08:19:40.188Z", + "completed":"2017-06-30T08:19:40.188Z", + "new_balance":"4963.29", + "value":"-41.53" + } + }, + { + "id":"c5fc207e-90b8-4a15-80ea-c56812b64cab", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T22:34:17.582Z", + "completed":"2017-06-30T22:34:17.582Z", + "new_balance":"6151.80", + "value":"1188.51" + } + }, + { + "id":"1301028f-189b-4d88-a15f-0b523a10ac82", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T22:37:47.018Z", + "completed":"2017-06-30T22:37:47.018Z", + "new_balance":"6117.37", + "value":"-34.43" + } + }, + { + "id":"17b546cf-a302-4f6d-91d9-89219da1b72f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T22:47:50.463Z", + "completed":"2017-06-30T22:47:50.463Z", + "new_balance":"6075.03", + "value":"-42.34" + } + }, + { + "id":"24051f5b-f2a2-4e2a-97eb-210c246ccc52", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T03:50:08.798Z", + "completed":"2017-07-01T03:50:08.798Z", + "new_balance":"6013.16", + "value":"-61.87" + } + }, + { + "id":"40c1117c-ac44-4468-b7ff-89914758d90b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T08:32:22.823Z", + "completed":"2017-07-03T08:32:22.823Z", + "new_balance":"5978.73", + "value":"-34.43" + } + }, + { + "id":"808c54fa-f32a-499e-b47c-f456c0418b0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T08:41:49.316Z", + "completed":"2017-07-03T08:41:49.316Z", + "new_balance":"5954.17", + "value":"-24.56" + } + }, + { + "id":"adc4a8f2-abe3-48c3-8d0c-a55688747756", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T11:43:42.951Z", + "completed":"2017-07-03T11:43:42.951Z", + "new_balance":"5443.63", + "value":"-510.54" + } + }, + { + "id":"1fa0d05a-c813-4a36-b976-3a17cad03e13", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T13:23:20.804Z", + "completed":"2017-07-03T13:23:20.804Z", + "new_balance":"5369.70", + "value":"-73.93" + } + }, + { + "id":"e9bf2a77-6f75-4838-8af1-906928dc3cf3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T03:53:37.586Z", + "completed":"2017-07-05T03:53:37.586Z", + "new_balance":"5325.72", + "value":"-43.98" + } + }, + { + "id":"c63fe241-b708-4ee7-a9f0-38f21344f483", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T10:39:07.830Z", + "completed":"2017-07-05T10:39:07.830Z", + "new_balance":"5272.54", + "value":"-53.18" + } + }, + { + "id":"d672b49a-670c-4a91-989c-82ece6cbfb3f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T18:13:43.121Z", + "completed":"2017-07-05T18:13:43.121Z", + "new_balance":"5259.53", + "value":"-13.01" + } + }, + { + "id":"4d31e42d-ccbd-44a0-a206-32bf3b291bfa", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T06:47:46.648Z", + "completed":"2017-07-06T06:47:46.648Z", + "new_balance":"5229.65", + "value":"-29.88" + } + }, + { + "id":"9e3b6de4-fdeb-481a-a177-363bc3994027", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T22:24:54.745Z", + "completed":"2017-07-06T22:24:54.745Z", + "new_balance":"5206.96", + "value":"-22.69" + } + }, + { + "id":"e8d09c3f-09b2-4b50-bd53-cd8110da3727", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T10:56:48.152Z", + "completed":"2017-07-07T10:56:48.152Z", + "new_balance":"5167.79", + "value":"-39.17" + } + }, + { + "id":"e7de9099-4005-4ff2-add3-3befeb80486f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T02:16:12.309Z", + "completed":"2017-07-10T02:16:12.309Z", + "new_balance":"5142.92", + "value":"-24.87" + } + }, + { + "id":"93b0db3a-56f6-465c-86ef-25c0301699d9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T18:35:33.863Z", + "completed":"2017-07-10T18:35:33.863Z", + "new_balance":"5089.74", + "value":"-53.18" + } + }, + { + "id":"a7c7a6fb-5132-425a-877c-dd8a9fe0b1ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T02:47:10.030Z", + "completed":"2017-07-12T02:47:10.030Z", + "new_balance":"5050.57", + "value":"-39.17" + } + }, + { + "id":"60126bce-584a-411c-aed6-cc4eb4abe895", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T03:27:30.164Z", + "completed":"2017-07-12T03:27:30.164Z", + "new_balance":"5026.01", + "value":"-24.56" + } + }, + { + "id":"4b9c77d9-f40a-4872-9c40-c25037ebea9e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:21:36.078Z", + "completed":"2017-07-12T19:21:36.078Z", + "new_balance":"5005.94", + "value":"-20.07" + } + }, + { + "id":"792de15b-9380-452d-80ed-a44b7967df50", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T21:53:55.950Z", + "completed":"2017-07-15T21:53:55.950Z", + "new_balance":"4989.54", + "value":"-16.40" + } + }, + { + "id":"e2401965-5f37-49f6-aa22-707a28d0d989", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T06:35:30.447Z", + "completed":"2017-07-16T06:35:30.447Z", + "new_balance":"4936.36", + "value":"-53.18" + } + }, + { + "id":"8bf0eafe-4118-42da-a1d4-8555fc14e1f6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T16:45:55.575Z", + "completed":"2017-07-16T16:45:55.575Z", + "new_balance":"4930.21", + "value":"-6.15" + } + }, + { + "id":"957e29e1-ad2d-4064-a9b2-eaa63d74170a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T12:57:48.433Z", + "completed":"2017-07-17T12:57:48.433Z", + "new_balance":"4869.03", + "value":"-61.18" + } + }, + { + "id":"733aa0da-ac4a-4af3-be13-835809f26c5d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T18:30:30.309Z", + "completed":"2017-07-17T18:30:30.309Z", + "new_balance":"4837.71", + "value":"-31.32" + } + }, + { + "id":"0597a8a5-4c21-4d53-ab67-980c73db4800", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T04:06:48.306Z", + "completed":"2017-07-19T04:06:48.306Z", + "new_balance":"4807.31", + "value":"-30.40" + } + }, + { + "id":"5e538f78-c77b-4f04-b5a0-26988e9b5b26", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T07:58:57.036Z", + "completed":"2017-07-20T07:58:57.036Z", + "new_balance":"4754.13", + "value":"-53.18" + } + }, + { + "id":"e510432d-a0b1-42e0-8923-b0475436b172", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T20:52:02.451Z", + "completed":"2017-07-23T20:52:02.451Z", + "new_balance":"4738.30", + "value":"-15.83" + } + }, + { + "id":"c16bc8d5-9fee-4c3a-bbc7-0196d3f880ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T15:50:47.645Z", + "completed":"2017-07-26T15:50:47.645Z", + "new_balance":"4679.82", + "value":"-58.48" + } + }, + { + "id":"a3796d8c-89c5-4a37-a964-ff3f9da64d90", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T17:11:40.496Z", + "completed":"2017-07-27T17:11:40.496Z", + "new_balance":"5868.33", + "value":"1188.51" + } + }, + { + "id":"fe6097a8-cb62-49c7-9789-37645bd5265f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:53:55.632Z", + "completed":"2017-07-28T02:53:55.632Z", + "new_balance":"5833.90", + "value":"-34.43" + } + }, + { + "id":"dd028bec-67b5-4b78-bc89-2589216750ff", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T22:43:22.993Z", + "completed":"2017-07-30T22:43:22.993Z", + "new_balance":"5791.56", + "value":"-42.34" + } + }, + { + "id":"84b9cf76-03d0-40e0-af26-e1cfc0f96dbc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T08:44:51.731Z", + "completed":"2017-08-01T08:44:51.731Z", + "new_balance":"5729.69", + "value":"-61.87" + } + }, + { + "id":"8d430ab4-0c5a-491e-a731-f20dc959c58f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T08:45:19.121Z", + "completed":"2017-08-03T08:45:19.121Z", + "new_balance":"5695.26", + "value":"-34.43" + } + }, + { + "id":"709917a8-243a-40ef-afaf-0bc8a1e0b8ed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T11:32:34.566Z", + "completed":"2017-08-03T11:32:34.566Z", + "new_balance":"5621.33", + "value":"-73.93" + } + }, + { + "id":"6b68be95-9369-40d0-a3e0-6dcd68e561c0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T18:25:54.817Z", + "completed":"2017-08-03T18:25:54.817Z", + "new_balance":"5110.79", + "value":"-510.54" + } + }, + { + "id":"00dc6fb4-1bd4-45c3-a2a3-5dd25e20cb53", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T19:32:36.101Z", + "completed":"2017-08-03T19:32:36.101Z", + "new_balance":"5086.23", + "value":"-24.56" + } + }, + { + "id":"cc85feda-1e6a-4720-b4a4-c80feecf5a61", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T06:01:47.752Z", + "completed":"2017-08-08T06:01:47.752Z", + "new_balance":"5033.05", + "value":"-53.18" + } + }, + { + "id":"0c24bd90-a095-4cfc-bcb7-0a6c03b0a404", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T11:20:04.195Z", + "completed":"2017-08-08T11:20:04.195Z", + "new_balance":"4989.07", + "value":"-43.98" + } + }, + { + "id":"a81c878d-4fcd-4359-bc84-fb518297f484", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T23:34:42.005Z", + "completed":"2017-08-11T23:34:42.005Z", + "new_balance":"4999.96", + "value":"10.89" + } + }, + { + "id":"fb2f885f-b0e6-4429-b231-e640bb22349e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T02:12:35.163Z", + "completed":"2017-08-13T02:12:35.163Z", + "new_balance":"4970.08", + "value":"-29.88" + } + }, + { + "id":"842b3ae4-ae00-4ae2-bff0-68d197156bc2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T04:18:39.957Z", + "completed":"2017-08-14T04:18:39.957Z", + "new_balance":"4942.23", + "value":"-27.85" + } + }, + { + "id":"798b5c1c-0ec8-4aed-91cb-e20437d8e153", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T15:16:18.730Z", + "completed":"2017-08-17T15:16:18.730Z", + "new_balance":"4931.32", + "value":"-10.91" + } + }, + { + "id":"c9c8f099-56b4-4a3b-85d0-c692b82eee25", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T05:12:11.734Z", + "completed":"2017-08-21T05:12:11.734Z", + "new_balance":"4890.19", + "value":"-41.13" + } + }, + { + "id":"b296fdc7-52db-4c84-a5eb-28e8ae676fce", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T15:21:59.259Z", + "completed":"2017-08-23T15:21:59.259Z", + "new_balance":"4849.27", + "value":"-40.92" + } + }, + { + "id":"f2101395-998b-46ce-a525-8a6cd03fff7e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T19:47:07.494Z", + "completed":"2017-08-23T19:47:07.494Z", + "new_balance":"4796.09", + "value":"-53.18" + } + }, + { + "id":"7c49a295-d8d6-435d-be38-e423966cd754", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T09:02:05.849Z", + "completed":"2017-08-24T09:02:05.849Z", + "new_balance":"4785.18", + "value":"-10.91" + } + }, + { + "id":"607e63e5-4dfc-41a9-8589-5becb50341ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T04:43:47.349Z", + "completed":"2017-08-27T04:43:47.349Z", + "new_balance":"5973.69", + "value":"1188.51" + } + }, + { + "id":"3a02cd22-d83b-4dc0-858d-3135c53f2ba6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T07:28:54.143Z", + "completed":"2017-08-27T07:28:54.143Z", + "new_balance":"5956.95", + "value":"-16.74" + } + }, + { + "id":"9933bf5f-04ed-4cf6-b618-0d8db270bff0", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T12:04:50.483Z", + "completed":"2017-08-27T12:04:50.483Z", + "new_balance":"5898.47", + "value":"-58.48" + } + }, + { + "id":"6331b265-ed86-4d11-9ce5-3b407c91c501", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T04:56:25.422Z", + "completed":"2017-08-28T04:56:25.422Z", + "new_balance":"5864.04", + "value":"-34.43" + } + }, + { + "id":"7ea82058-c95c-4eda-a84d-d8937a5ac881", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T00:53:59.476Z", + "completed":"2017-08-30T00:53:59.476Z", + "new_balance":"5821.70", + "value":"-42.34" + } + }, + { + "id":"60b176ff-85a4-45e4-9e93-569986db3ef3", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T15:13:08.313Z", + "completed":"2017-09-01T15:13:08.313Z", + "new_balance":"5759.83", + "value":"-61.87" + } + }, + { + "id":"b86b1afd-6e70-4226-ba5d-2ee6d78715b5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T02:58:53.188Z", + "completed":"2017-09-03T02:58:53.188Z", + "new_balance":"5685.90", + "value":"-73.93" + } + }, + { + "id":"07539d79-d3dd-48b6-a547-fcd7b3d72a56", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T05:10:36.310Z", + "completed":"2017-09-03T05:10:36.310Z", + "new_balance":"5661.34", + "value":"-24.56" + } + }, + { + "id":"e1b82ab8-8009-4e0f-bd41-372321054e3d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T11:06:30.549Z", + "completed":"2017-09-03T11:06:30.549Z", + "new_balance":"5626.91", + "value":"-34.43" + } + }, + { + "id":"9eb31e3f-b78d-41ae-b520-012dc4ae5256", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T20:23:34.289Z", + "completed":"2017-09-03T20:23:34.289Z", + "new_balance":"5116.37", + "value":"-510.54" + } + }, + { + "id":"a7e9c044-f471-43b4-a220-cb10a22d975e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T12:12:53.106Z", + "completed":"2017-09-05T12:12:53.106Z", + "new_balance":"5063.19", + "value":"-53.18" + } + }, + { + "id":"93872bcb-bfce-419f-9c6a-b4dc8fb8de4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T21:47:23.140Z", + "completed":"2017-09-05T21:47:23.140Z", + "new_balance":"5014.53", + "value":"-48.66" + } + }, + { + "id":"74013b52-525e-456d-9953-fec92c09eeed", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T19:21:47.353Z", + "completed":"2017-09-07T19:21:47.353Z", + "new_balance":"5000.86", + "value":"-13.67" + } + }, + { + "id":"7f08946b-42df-41a9-99d2-2de9cfa5f674", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T21:37:19.519Z", + "completed":"2017-09-09T21:37:19.519Z", + "new_balance":"4947.68", + "value":"-53.18" + } + }, + { + "id":"288fe84f-6745-4fea-9417-61171001c53b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T23:01:06.866Z", + "completed":"2017-09-11T23:01:06.866Z", + "new_balance":"4936.68", + "value":"-11.00" + } + }, + { + "id":"afacbdac-2957-4b13-8f04-a6f403e26985", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T07:47:49.080Z", + "completed":"2017-09-13T07:47:49.080Z", + "new_balance":"4879.00", + "value":"-57.68" + } + }, + { + "id":"f3d31a08-ed25-4979-9fda-d3c654d14698", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T06:35:48.407Z", + "completed":"2017-09-14T06:35:48.407Z", + "new_balance":"4867.07", + "value":"-11.93" + } + }, + { + "id":"d25c5dce-3984-4f16-8e46-c257e848df75", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T12:38:07.950Z", + "completed":"2017-09-14T12:38:07.950Z", + "new_balance":"4930.43", + "value":"63.36" + } + }, + { + "id":"e9cdb803-1b89-43d0-95a6-e7d56bac1d4c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T03:18:08.120Z", + "completed":"2017-09-15T03:18:08.120Z", + "new_balance":"4888.09", + "value":"-42.34" + } + }, + { + "id":"65bc1a31-5751-4888-bb2b-a381eaa72338", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T07:26:05.828Z", + "completed":"2017-09-26T07:26:05.828Z", + "new_balance":"4841.16", + "value":"-46.93" + } + }, + { + "id":"237ccf48-3100-4fb0-9009-f301afadfcb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:54:12.926Z", + "completed":"2017-09-26T08:54:12.926Z", + "new_balance":"4815.79", + "value":"-25.37" + } + }, + { + "id":"a99ac998-b350-4407-bfe2-7795c85918b9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T20:08:56.206Z", + "completed":"2017-09-26T20:08:56.206Z", + "new_balance":"4788.95", + "value":"-26.84" + } + }, + { + "id":"5879f8b9-3031-44a7-89a2-78e62226ddf6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T02:09:01.474Z", + "completed":"2017-09-27T02:09:01.474Z", + "new_balance":"4735.77", + "value":"-53.18" + } + }, + { + "id":"f32a9298-aa7c-4db1-aa5b-e66d60dee59b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T02:44:36.215Z", + "completed":"2017-09-27T02:44:36.215Z", + "new_balance":"4669.19", + "value":"-66.58" + } + }, + { + "id":"74c84c34-6606-4037-814d-790f84a10791", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T23:15:58.593Z", + "completed":"2017-09-27T23:15:58.593Z", + "new_balance":"5857.70", + "value":"1188.51" + } + }, + { + "id":"348aaf3c-fddc-440e-b89b-7bf208f61136", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T03:36:05.242Z", + "completed":"2017-09-28T03:36:05.242Z", + "new_balance":"5823.27", + "value":"-34.43" + } + }, + { + "id":"a6c6593e-a662-4919-b5f8-e122d30c160b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T12:33:29.456Z", + "completed":"2017-09-30T12:33:29.456Z", + "new_balance":"5780.93", + "value":"-42.34" + } + }, + { + "id":"fd41b099-7c51-4ee2-9d8f-b3610dc937eb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T03:18:24.213Z", + "completed":"2017-10-01T03:18:24.213Z", + "new_balance":"5746.50", + "value":"-34.43" + } + }, + { + "id":"bbcc2563-ed4d-4391-9efd-3bc4661e9f39", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T07:16:39.007Z", + "completed":"2017-10-01T07:16:39.007Z", + "new_balance":"5684.63", + "value":"-61.87" + } + }, + { + "id":"4485305f-2897-439d-8091-93de076a2244", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T09:53:22.226Z", + "completed":"2017-10-01T09:53:22.226Z", + "new_balance":"5660.07", + "value":"-24.56" + } + }, + { + "id":"cf17291b-0aaa-4587-b274-a3ba56dec6b2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T20:14:32.646Z", + "completed":"2017-10-01T20:14:32.646Z", + "new_balance":"5586.14", + "value":"-73.93" + } + }, + { + "id":"9d568fae-fe5b-43cd-87ae-f35723f4e66b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T20:37:13.052Z", + "completed":"2017-10-01T20:37:13.052Z", + "new_balance":"5075.60", + "value":"-510.54" + } + }, + { + "id":"eddc97b8-1384-44a7-975e-c58cbba8a5e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T00:26:43.616Z", + "completed":"2017-10-05T00:26:43.616Z", + "new_balance":"5022.42", + "value":"-53.18" + } + }, + { + "id":"236d2e6a-a0a4-4164-894a-37cc9584006e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T01:38:32.550Z", + "completed":"2017-10-05T01:38:32.550Z", + "new_balance":"4999.73", + "value":"-22.69" + } + }, + { + "id":"0928725c-9178-4ee4-abd2-74b087424c8a", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T03:56:29.427Z", + "completed":"2017-10-05T03:56:29.427Z", + "new_balance":"4955.75", + "value":"-43.98" + } + }, + { + "id":"0d1a45ff-b947-4859-b265-2bd0d12f0ca2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T14:53:54.940Z", + "completed":"2017-10-05T14:53:54.940Z", + "new_balance":"4942.74", + "value":"-13.01" + } + }, + { + "id":"e9d53ea0-96de-4b8c-80f2-1a304e9f9868", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T05:36:35.379Z", + "completed":"2017-10-07T05:36:35.379Z", + "new_balance":"4912.86", + "value":"-29.88" + } + }, + { + "id":"76c211ab-ccae-45bd-b920-ce3e3a8f4fb4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T05:26:30.472Z", + "completed":"2017-10-09T05:26:30.472Z", + "new_balance":"4887.99", + "value":"-24.87" + } + }, + { + "id":"e0c02e0c-27f5-4d19-8277-ab1cf2a427ba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T13:19:38.659Z", + "completed":"2017-10-09T13:19:38.659Z", + "new_balance":"4834.81", + "value":"-53.18" + } + }, + { + "id":"5dd5e540-3cff-4d46-aa09-5221567f6882", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T06:35:05.446Z", + "completed":"2017-10-10T06:35:05.446Z", + "new_balance":"4810.25", + "value":"-24.56" + } + }, + { + "id":"e6a00095-cc7d-4645-8a6b-8cd5b358f265", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T22:31:42.400Z", + "completed":"2017-10-10T22:31:42.400Z", + "new_balance":"4790.18", + "value":"-20.07" + } + }, + { + "id":"aa0f5325-c05a-4625-ba19-b740e098d7e2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T23:17:46.178Z", + "completed":"2017-10-10T23:17:46.178Z", + "new_balance":"4773.78", + "value":"-16.40" + } + }, + { + "id":"c869f814-f708-49ce-8e62-c983406034d9", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T23:33:18.325Z", + "completed":"2017-10-10T23:33:18.325Z", + "new_balance":"4734.61", + "value":"-39.17" + } + }, + { + "id":"af1be62e-746f-4e5e-9f8d-bbd7ad397600", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T01:08:41.095Z", + "completed":"2017-10-11T01:08:41.095Z", + "new_balance":"4673.43", + "value":"-61.18" + } + }, + { + "id":"6340d4e4-9bb4-4ced-a27b-6123fb9c71e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T03:30:52.131Z", + "completed":"2017-10-11T03:30:52.131Z", + "new_balance":"4620.25", + "value":"-53.18" + } + }, + { + "id":"5f3b725f-21ea-4eb9-9f5b-619add5e1653", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T04:49:16.749Z", + "completed":"2017-10-11T04:49:16.749Z", + "new_balance":"4614.10", + "value":"-6.15" + } + }, + { + "id":"6c50fa02-b234-4b6d-8bf6-42c18a1be51d", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T14:23:09.976Z", + "completed":"2017-10-11T14:23:09.976Z", + "new_balance":"4582.78", + "value":"-31.32" + } + }, + { + "id":"8ae53b04-85bc-4ee6-a39f-88a4f4738dde", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T22:04:30.357Z", + "completed":"2017-10-11T22:04:30.357Z", + "new_balance":"4552.38", + "value":"-30.40" + } + }, + { + "id":"86d46355-01d7-427b-9502-1d30580d1d88", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T08:39:45.448Z", + "completed":"2017-10-21T08:39:45.448Z", + "new_balance":"4499.20", + "value":"-53.18" + } + }, + { + "id":"3f5ce2e1-b7bd-40cf-9f2a-42e31de0baa2", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T22:39:09.934Z", + "completed":"2017-10-23T22:39:09.934Z", + "new_balance":"4483.37", + "value":"-15.83" + } + }, + { + "id":"350a2f7b-e32b-4e2d-a2c7-f69397ef3a37", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T12:27:38.704Z", + "completed":"2017-10-29T12:27:38.704Z", + "new_balance":"5671.88", + "value":"1188.51" + } + }, + { + "id":"7a116cd0-4330-4d08-a959-46a662a155fc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T14:26:11.365Z", + "completed":"2017-10-29T14:26:11.365Z", + "new_balance":"5637.45", + "value":"-34.43" + } + }, + { + "id":"2c4f73f9-6d60-49ac-a08b-dcf8b92f8c21", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T18:29:07.909Z", + "completed":"2017-10-29T18:29:07.909Z", + "new_balance":"5578.97", + "value":"-58.48" + } + }, + { + "id":"0af6b730-f8f0-4c89-9cc4-1d321715cc0f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T23:26:58.051Z", + "completed":"2017-10-30T23:26:58.051Z", + "new_balance":"5536.63", + "value":"-42.34" + } + }, + { + "id":"e185578b-add2-46fe-a572-ac00595a1677", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T01:54:29.467Z", + "completed":"2017-11-02T01:54:29.467Z", + "new_balance":"5026.09", + "value":"-510.54" + } + }, + { + "id":"34ddbb9c-33fb-4ae2-a671-1fd3a15af0e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T13:05:19.328Z", + "completed":"2017-11-02T13:05:19.328Z", + "new_balance":"4952.16", + "value":"-73.93" + } + }, + { + "id":"4b20e69b-133b-4d77-b737-aafe7ceb4d4f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T13:51:54.025Z", + "completed":"2017-11-02T13:51:54.025Z", + "new_balance":"4927.60", + "value":"-24.56" + } + }, + { + "id":"0e3697b2-31b7-4e4b-bf46-f0130744fa64", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T22:26:29.102Z", + "completed":"2017-11-02T22:26:29.102Z", + "new_balance":"4865.73", + "value":"-61.87" + } + }, + { + "id":"bdd64356-92aa-418e-ac9a-9606c1cc0005", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T02:08:41.725Z", + "completed":"2017-11-06T02:08:41.725Z", + "new_balance":"4821.75", + "value":"-43.98" + } + }, + { + "id":"349ac697-0f02-419c-a52e-277da61c115c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T04:13:52.414Z", + "completed":"2017-11-07T04:13:52.414Z", + "new_balance":"4810.84", + "value":"-10.91" + } + }, + { + "id":"c23427e3-c6ba-4217-a498-71d45052fbfd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T12:42:46.620Z", + "completed":"2017-11-07T12:42:46.620Z", + "new_balance":"4780.96", + "value":"-29.88" + } + }, + { + "id":"fcb3df72-af17-4491-a96a-b68067496364", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T15:03:34.668Z", + "completed":"2017-11-07T15:03:34.668Z", + "new_balance":"4739.83", + "value":"-41.13" + } + }, + { + "id":"c3c04d92-f0e3-4287-91c3-db60b47fafcc", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T22:33:12.777Z", + "completed":"2017-11-07T22:33:12.777Z", + "new_balance":"4711.98", + "value":"-27.85" + } + }, + { + "id":"277ad933-5640-449e-b531-e25f96e431a5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T22:06:07.405Z", + "completed":"2017-11-08T22:06:07.405Z", + "new_balance":"4671.06", + "value":"-40.92" + } + }, + { + "id":"ebb4b933-e583-4b09-9948-df9dfc7f1277", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T05:47:24.510Z", + "completed":"2017-11-09T05:47:24.510Z", + "new_balance":"4636.63", + "value":"-34.43" + } + }, + { + "id":"385a5166-824e-4c24-aefa-3de4cd432674", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T17:25:32.836Z", + "completed":"2017-11-13T17:25:32.836Z", + "new_balance":"4583.45", + "value":"-53.18" + } + }, + { + "id":"320b9ae3-d256-4810-a5d0-f161150bc293", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T10:12:29.947Z", + "completed":"2017-11-26T10:12:29.947Z", + "new_balance":"4530.27", + "value":"-53.18" + } + }, + { + "id":"c7f75584-88e7-4ba5-b4fa-61f8c724c504", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T18:32:48.217Z", + "completed":"2017-11-26T18:32:48.217Z", + "new_balance":"4519.36", + "value":"-10.91" + } + }, + { + "id":"a21273dd-4e91-49fb-b175-c93129000566", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T10:04:50.515Z", + "completed":"2017-11-27T10:04:50.515Z", + "new_balance":"4460.88", + "value":"-58.48" + } + }, + { + "id":"915b5cc7-1ad6-4de9-b0e9-eff7ede46384", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T23:10:02.631Z", + "completed":"2017-11-27T23:10:02.631Z", + "new_balance":"4444.14", + "value":"-16.74" + } + }, + { + "id":"381386ac-b159-452c-99ac-fde44c7ef44f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T08:50:20.251Z", + "completed":"2017-11-30T08:50:20.251Z", + "new_balance":"5632.65", + "value":"1188.51" + } + }, + { + "id":"1fc73b38-a390-47fa-99c3-9bd535a7126b", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T10:04:14.163Z", + "completed":"2017-11-30T10:04:14.163Z", + "new_balance":"5590.31", + "value":"-42.34" + } + }, + { + "id":"593c1e9f-dac0-4217-8ab4-a86149cd6aba", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T10:43:07.981Z", + "completed":"2017-11-30T10:43:07.981Z", + "new_balance":"5555.88", + "value":"-34.43" + } + }, + { + "id":"5c570513-c189-43f6-9370-d55d6a222831", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:16:43.741Z", + "completed":"2017-12-01T00:16:43.741Z", + "new_balance":"5494.01", + "value":"-61.87" + } + }, + { + "id":"0ba46a7d-4f6d-4d56-8921-437aced9a94e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T00:45:45.766Z", + "completed":"2017-12-01T00:45:45.766Z", + "new_balance":"5445.35", + "value":"-48.66" + } + }, + { + "id":"0d98ffdb-738c-4e94-8684-674c1de34c7e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T00:46:22.945Z", + "completed":"2017-12-01T00:46:22.945Z", + "new_balance":"5392.17", + "value":"-53.18" + } + }, + { + "id":"7c32caaa-995b-43fc-a711-bdce1b793beb", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T05:01:18.324Z", + "completed":"2017-12-01T05:01:18.324Z", + "new_balance":"5367.61", + "value":"-24.56" + } + }, + { + "id":"73d2894e-0fd6-4cff-8efc-5c8a1299636e", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T05:35:46.938Z", + "completed":"2017-12-01T05:35:46.938Z", + "new_balance":"5333.18", + "value":"-34.43" + } + }, + { + "id":"f1105a2b-75b6-4f04-beb0-fb0644450aa5", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T10:24:34.784Z", + "completed":"2017-12-01T10:24:34.784Z", + "new_balance":"4822.64", + "value":"-510.54" + } + }, + { + "id":"a5d03c6d-ad12-4608-b032-72c357b8956f", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T13:53:37.112Z", + "completed":"2017-12-01T13:53:37.112Z", + "new_balance":"4748.71", + "value":"-73.93" + } + }, + { + "id":"7d54d2a1-b86a-4bea-9dc8-d14a5fc81640", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T18:33:14.577Z", + "completed":"2017-12-01T18:33:14.577Z", + "new_balance":"4695.53", + "value":"-53.18" + } + }, + { + "id":"0711961a-ec86-417c-9c98-2987d316dd63", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T23:28:53.085Z", + "completed":"2017-12-01T23:28:53.085Z", + "new_balance":"4681.86", + "value":"-13.67" + } + }, + { + "id":"2d1adf7d-4ddd-4d18-9cc9-a2de317817e1", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T08:44:39.974Z", + "completed":"2017-12-02T08:44:39.974Z", + "new_balance":"4669.93", + "value":"-11.93" + } + }, + { + "id":"c14f2a15-84c8-451f-93e4-dfa28f26ddd6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T11:59:41.330Z", + "completed":"2017-12-02T11:59:41.330Z", + "new_balance":"4658.93", + "value":"-11.00" + } + }, + { + "id":"3031edc0-b34f-49a9-8717-a02de46a52e4", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T16:38:02.041Z", + "completed":"2017-12-02T16:38:02.041Z", + "new_balance":"4601.25", + "value":"-57.68" + } + }, + { + "id":"2786289b-f540-4254-8b7f-15f9bd6fef7c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T01:22:04.217Z", + "completed":"2017-12-04T01:22:04.217Z", + "new_balance":"4558.91", + "value":"-42.34" + } + }, + { + "id":"9f41e4d9-3ecf-4934-a863-7949fbcec77c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T07:27:27.380Z", + "completed":"2017-12-04T07:27:27.380Z", + "new_balance":"4511.98", + "value":"-46.93" + } + }, + { + "id":"1aed7cc0-0a8f-4527-b407-f2977293e9be", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T13:10:19.266Z", + "completed":"2017-12-04T13:10:19.266Z", + "new_balance":"4486.61", + "value":"-25.37" + } + }, + { + "id":"a55f6c83-7824-463b-a0f6-61546e42e637", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T16:31:18.392Z", + "completed":"2017-12-05T16:31:18.392Z", + "new_balance":"4459.77", + "value":"-26.84" + } + }, + { + "id":"b6e1fbbe-41ca-43df-a9e0-a456e996b3c6", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T20:15:39.071Z", + "completed":"2017-12-05T20:15:39.071Z", + "new_balance":"4393.19", + "value":"-66.58" + } + }, + { + "id":"48b00907-79a6-4557-bc68-028123c97531", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T17:55:54.743Z", + "completed":"2017-12-18T17:55:54.743Z", + "new_balance":"4340.01", + "value":"-53.18" + } + }, + { + "id":"6770ff73-2aea-4f13-9df7-8ce926ed5cfd", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T01:01:12.375Z", + "completed":"2017-12-30T01:01:12.375Z", + "new_balance":"4297.67", + "value":"-42.34" + } + }, + { + "id":"28fe8ca1-398f-4d5f-83ec-9ce5b700fe07", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T11:36:44.217Z", + "completed":"2017-12-30T11:36:44.217Z", + "new_balance":"4263.24", + "value":"-34.43" + } + }, + { + "id":"4c28a84e-cc4a-4b92-8d03-e44166fa8981", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T13:33:52.460Z", + "completed":"2017-12-30T13:33:52.460Z", + "new_balance":"4221.71", + "value":"-41.53" + } + }, + { + "id":"2b746c25-9b9e-4a19-8b52-2a894910543c", + "this_account":{ + "id":"7496ee38-25db-4dde-88e0-cb15cde25af3", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T21:32:14.904Z", + "completed":"2017-12-30T21:32:14.904Z", + "new_balance":"5410.22", + "value":"1188.51" + } + }, + { + "id":"79b5acf5-b572-45eb-ab92-aa46ae3720cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:07:40.978Z", + "completed":"2016-01-01T02:07:40.978Z", + "new_balance":"3725.49", + "value":"-3.44" + } + }, + { + "id":"03d34bb8-eae6-4df6-8992-b66ec3a89e31", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T04:59:06.885Z", + "completed":"2016-01-01T04:59:06.885Z", + "new_balance":"3723.17", + "value":"-2.32" + } + }, + { + "id":"4b555f9a-915c-4df7-bf22-e18b9e7e4f1b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T07:25:25.167Z", + "completed":"2016-01-01T07:25:25.167Z", + "new_balance":"3707.92", + "value":"-15.25" + } + }, + { + "id":"8c74aaf4-0d71-424b-8e47-6d90a0534d09", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T16:02:52.264Z", + "completed":"2016-01-01T16:02:52.264Z", + "new_balance":"3704.48", + "value":"-3.44" + } + }, + { + "id":"f103cad8-b267-4b50-8728-93b2212473d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T17:36:25.092Z", + "completed":"2016-01-01T17:36:25.092Z", + "new_balance":"3699.33", + "value":"-5.15" + } + }, + { + "id":"1c62b867-e2c8-40f8-82de-b09b074b436f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T18:07:49.224Z", + "completed":"2016-01-01T18:07:49.224Z", + "new_balance":"3641.10", + "value":"-58.23" + } + }, + { + "id":"782c0d50-ac84-499d-a553-ff7086ff5593", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T00:50:00.164Z", + "completed":"2016-01-02T00:50:00.164Z", + "new_balance":"3631.41", + "value":"-9.69" + } + }, + { + "id":"89204899-eb4b-43a7-8160-5c6973d7c7e7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T13:13:31.967Z", + "completed":"2016-01-02T13:13:31.967Z", + "new_balance":"3624.31", + "value":"-7.10" + } + }, + { + "id":"86ca4079-25ba-4e4a-89f2-8c8712a11baa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T04:52:40.284Z", + "completed":"2016-01-04T04:52:40.284Z", + "new_balance":"3620.53", + "value":"-3.78" + } + }, + { + "id":"631561ea-6f4a-4550-8bcc-efc5309ea7bc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T12:49:42.304Z", + "completed":"2016-01-04T12:49:42.304Z", + "new_balance":"3617.62", + "value":"-2.91" + } + }, + { + "id":"8e00bd1e-f4b2-49de-a911-35ea1583034f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T16:56:35.169Z", + "completed":"2016-01-07T16:56:35.169Z", + "new_balance":"3610.43", + "value":"-7.19" + } + }, + { + "id":"f5a91b79-3e2d-4333-a1c8-f4e22765334b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T14:55:22.292Z", + "completed":"2016-01-09T14:55:22.292Z", + "new_balance":"3609.97", + "value":"-0.46" + } + }, + { + "id":"22e4bede-6d75-4087-b108-c8c8cb8dc972", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T00:07:16.013Z", + "completed":"2016-01-10T00:07:16.013Z", + "new_balance":"3607.29", + "value":"-2.68" + } + }, + { + "id":"8327a8be-f7e5-46a5-8fdc-2c2126fa6ced", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T02:11:45.528Z", + "completed":"2016-01-12T02:11:45.528Z", + "new_balance":"3604.07", + "value":"-3.22" + } + }, + { + "id":"e265bf52-8981-4439-b1f6-7a3b73e8cc88", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T03:50:34.724Z", + "completed":"2016-01-15T03:50:34.724Z", + "new_balance":"3602.54", + "value":"-1.53" + } + }, + { + "id":"510576f2-bf28-483b-87f2-f697956bee8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T12:35:16.095Z", + "completed":"2016-01-15T12:35:16.095Z", + "new_balance":"3601.64", + "value":"-0.90" + } + }, + { + "id":"c506f820-59de-44c9-a230-399e18613d98", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T14:59:31.963Z", + "completed":"2016-01-17T14:59:31.963Z", + "new_balance":"3599.53", + "value":"-2.11" + } + }, + { + "id":"1934089f-073d-4229-bcf4-e69d5b88f98d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T13:23:06.472Z", + "completed":"2016-01-19T13:23:06.472Z", + "new_balance":"3572.03", + "value":"-27.50" + } + }, + { + "id":"fbd135ae-d88c-4fe4-8c56-539b8cb74d4d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T08:55:41.303Z", + "completed":"2016-01-20T08:55:41.303Z", + "new_balance":"3571.59", + "value":"-0.44" + } + }, + { + "id":"c84717cd-50ce-405c-84d2-151c5f42e33c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T01:25:33.928Z", + "completed":"2016-01-22T01:25:33.928Z", + "new_balance":"3567.11", + "value":"-4.48" + } + }, + { + "id":"2f698f9e-cc86-480f-bb28-4b41e4a3a1ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T21:13:17.693Z", + "completed":"2016-01-22T21:13:17.693Z", + "new_balance":"3566.00", + "value":"-1.11" + } + }, + { + "id":"49526f68-9a51-4043-9876-94e06e01833e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T09:32:38.689Z", + "completed":"2016-01-24T09:32:38.689Z", + "new_balance":"3563.19", + "value":"-2.81" + } + }, + { + "id":"aa712e7e-ca8b-4d40-b3c6-70843afb895c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T06:24:30.551Z", + "completed":"2016-01-25T06:24:30.551Z", + "new_balance":"3562.75", + "value":"-0.44" + } + }, + { + "id":"ea5959e6-8538-4e26-b59e-3e47d2c6cb4e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T19:59:26.397Z", + "completed":"2016-01-25T19:59:26.397Z", + "new_balance":"3557.35", + "value":"-5.40" + } + }, + { + "id":"2e22c595-e3a5-4d02-bd89-b73c2dbaf0b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T09:51:23.698Z", + "completed":"2016-01-26T09:51:23.698Z", + "new_balance":"3551.53", + "value":"-5.82" + } + }, + { + "id":"deeeb8fd-0615-466b-9352-1d31e01cd45e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T02:42:40.545Z", + "completed":"2016-02-01T02:42:40.545Z", + "new_balance":"3548.09", + "value":"-3.44" + } + }, + { + "id":"7b1aa5f8-be68-4495-9bb8-98f1d84e3d93", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T09:18:12.360Z", + "completed":"2016-02-01T09:18:12.360Z", + "new_balance":"3489.86", + "value":"-58.23" + } + }, + { + "id":"098ea0b0-0059-4b88-9695-41b06701e26b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:14:41.565Z", + "completed":"2016-02-01T10:14:41.565Z", + "new_balance":"3672.56", + "value":"182.70" + } + }, + { + "id":"26f50135-5e96-4eca-b4c6-5bc80fab24ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T13:43:05.435Z", + "completed":"2016-02-01T13:43:05.435Z", + "new_balance":"3670.24", + "value":"-2.32" + } + }, + { + "id":"402d1c63-c702-4a21-b07b-be6cf1855943", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T21:10:54.406Z", + "completed":"2016-02-01T21:10:54.406Z", + "new_balance":"3654.99", + "value":"-15.25" + } + }, + { + "id":"7aec6c1b-d3b2-43d3-8193-ce4e3a783bab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T22:21:25.323Z", + "completed":"2016-02-01T22:21:25.323Z", + "new_balance":"3649.84", + "value":"-5.15" + } + }, + { + "id":"e461cafd-0750-4acc-a48d-6d7c16a5bd34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T01:20:54.152Z", + "completed":"2016-02-02T01:20:54.152Z", + "new_balance":"3648.69", + "value":"-1.15" + } + }, + { + "id":"728d7354-af0f-463b-8b77-55a79dfec120", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T11:01:57.929Z", + "completed":"2016-02-02T11:01:57.929Z", + "new_balance":"3646.59", + "value":"-2.10" + } + }, + { + "id":"35045d98-a0cd-4fa6-95dc-1959f5284d49", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T18:46:10.517Z", + "completed":"2016-02-02T18:46:10.517Z", + "new_balance":"3639.49", + "value":"-7.10" + } + }, + { + "id":"9a384dc7-1a63-4403-92ea-c380c41ba139", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T03:16:02.638Z", + "completed":"2016-02-03T03:16:02.638Z", + "new_balance":"3637.09", + "value":"-2.40" + } + }, + { + "id":"75b88d88-46e6-46e0-90c6-d681cfd2f39e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T13:54:28.596Z", + "completed":"2016-02-03T13:54:28.596Z", + "new_balance":"3634.59", + "value":"-2.50" + } + }, + { + "id":"d5e31811-dfdc-450d-8186-2e0e70525b40", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T21:40:02.796Z", + "completed":"2016-02-03T21:40:02.796Z", + "new_balance":"3631.26", + "value":"-3.33" + } + }, + { + "id":"3b28a5c2-b02c-4d8c-864a-3a8e47a1a94f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T05:27:58.891Z", + "completed":"2016-02-06T05:27:58.891Z", + "new_balance":"3624.07", + "value":"-7.19" + } + }, + { + "id":"7efcbb93-a9b7-410f-9923-2572646d83d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T01:21:29.018Z", + "completed":"2016-02-08T01:21:29.018Z", + "new_balance":"3621.04", + "value":"-3.03" + } + }, + { + "id":"2bec40f9-2f02-4c54-ac2e-f8a339505cc5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T03:22:13.683Z", + "completed":"2016-02-08T03:22:13.683Z", + "new_balance":"3618.59", + "value":"-2.45" + } + }, + { + "id":"07e5b9a0-a701-47e7-9460-b4ef5deca723", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T18:34:08.877Z", + "completed":"2016-02-08T18:34:08.877Z", + "new_balance":"3618.11", + "value":"-0.48" + } + }, + { + "id":"5ca352af-22be-4505-9f13-983174d51643", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T00:07:01.862Z", + "completed":"2016-02-09T00:07:01.862Z", + "new_balance":"3614.97", + "value":"-3.14" + } + }, + { + "id":"868382e7-04f8-437c-a764-3555ef0b891e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T22:04:57.440Z", + "completed":"2016-02-09T22:04:57.440Z", + "new_balance":"3611.49", + "value":"-3.48" + } + }, + { + "id":"f6f40af6-0064-4ba7-ba72-1c1d6dd08bab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T01:12:50.497Z", + "completed":"2016-02-12T01:12:50.497Z", + "new_balance":"3611.02", + "value":"-0.47" + } + }, + { + "id":"00d04f90-0b80-4f03-ae93-08c21fe9f7eb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T03:47:50.554Z", + "completed":"2016-02-13T03:47:50.554Z", + "new_balance":"3610.25", + "value":"-0.77" + } + }, + { + "id":"82e17551-9578-4e07-8883-5180f72ca7a5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T18:12:17.007Z", + "completed":"2016-02-13T18:12:17.007Z", + "new_balance":"3603.82", + "value":"-6.43" + } + }, + { + "id":"34a89c35-c1dc-420b-bac3-6412360f7596", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T23:51:16.049Z", + "completed":"2016-02-13T23:51:16.049Z", + "new_balance":"3607.90", + "value":"4.08" + } + }, + { + "id":"370f7b39-d015-4574-9ae0-bba469619a8c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T18:22:27.308Z", + "completed":"2016-02-14T18:22:27.308Z", + "new_balance":"3603.78", + "value":"-4.12" + } + }, + { + "id":"252a6ae5-97e2-4cf9-9efb-8351f918bfb5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T00:52:40.831Z", + "completed":"2016-02-15T00:52:40.831Z", + "new_balance":"3601.23", + "value":"-2.55" + } + }, + { + "id":"d1df3db3-8369-4bd4-be43-f8d243d1c43f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T14:26:26.231Z", + "completed":"2016-02-28T14:26:26.231Z", + "new_balance":"3598.29", + "value":"-2.94" + } + }, + { + "id":"81d3128f-8f33-4e76-b57b-275197e1d6ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T08:26:07.041Z", + "completed":"2016-03-01T08:26:07.041Z", + "new_balance":"3780.99", + "value":"182.70" + } + }, + { + "id":"33da4438-106d-4cd4-987a-5734cf09c596", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T11:00:24.413Z", + "completed":"2016-03-01T11:00:24.413Z", + "new_balance":"3777.55", + "value":"-3.44" + } + }, + { + "id":"8375c97b-8e80-40c3-b4cc-60883897a97f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T16:29:43.402Z", + "completed":"2016-03-01T16:29:43.402Z", + "new_balance":"3762.30", + "value":"-15.25" + } + }, + { + "id":"f9eadf10-4a6e-4994-be00-7999b6113dac", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T19:12:40.209Z", + "completed":"2016-03-01T19:12:40.209Z", + "new_balance":"3757.15", + "value":"-5.15" + } + }, + { + "id":"f2166da8-d16f-4ce7-b1da-5103054fedfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T21:26:23.578Z", + "completed":"2016-03-01T21:26:23.578Z", + "new_balance":"3698.92", + "value":"-58.23" + } + }, + { + "id":"47fe9bcf-846d-4fa6-b7cf-3dc853d78d78", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T21:45:07.229Z", + "completed":"2016-03-01T21:45:07.229Z", + "new_balance":"3696.60", + "value":"-2.32" + } + }, + { + "id":"521aa4dc-f4cc-4df1-882c-380cff4fbdb3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T00:21:38.970Z", + "completed":"2016-03-02T00:21:38.970Z", + "new_balance":"3689.50", + "value":"-7.10" + } + }, + { + "id":"0c5a094a-8b93-4d5f-bf26-df72f815a1f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T01:44:35.151Z", + "completed":"2016-03-04T01:44:35.151Z", + "new_balance":"3682.20", + "value":"-7.30" + } + }, + { + "id":"f1602e8b-b617-43d4-a8f1-d29e8f28acd4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T06:36:03.433Z", + "completed":"2016-03-04T06:36:03.433Z", + "new_balance":"3680.95", + "value":"-1.25" + } + }, + { + "id":"ee3161d2-e690-4f04-ae7f-2911ec7af44f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T17:37:32.832Z", + "completed":"2016-03-04T17:37:32.832Z", + "new_balance":"3677.65", + "value":"-3.30" + } + }, + { + "id":"bf5a7a9c-1f92-4b80-ac56-633b6bd3d931", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T20:24:24.671Z", + "completed":"2016-03-04T20:24:24.671Z", + "new_balance":"3676.89", + "value":"-0.76" + } + }, + { + "id":"b53dc8b5-01fc-44ca-9743-9a3b3d560dfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T12:12:29.704Z", + "completed":"2016-03-05T12:12:29.704Z", + "new_balance":"3672.85", + "value":"-4.04" + } + }, + { + "id":"4c309f52-4109-4591-a00a-50105b0482c5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T12:59:58.725Z", + "completed":"2016-03-05T12:59:58.725Z", + "new_balance":"3672.45", + "value":"-0.40" + } + }, + { + "id":"78061b82-861e-4f13-badc-b08e1ec35a01", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T00:30:26.877Z", + "completed":"2016-03-06T00:30:26.877Z", + "new_balance":"3667.18", + "value":"-5.27" + } + }, + { + "id":"0b9d75a9-442b-4b59-acc4-9659abcd5c03", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T21:46:44.109Z", + "completed":"2016-03-06T21:46:44.109Z", + "new_balance":"3659.88", + "value":"-7.30" + } + }, + { + "id":"20c5c021-0cad-4db7-9ae8-33b787a442cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T18:46:54.782Z", + "completed":"2016-03-07T18:46:54.782Z", + "new_balance":"3655.61", + "value":"-4.27" + } + }, + { + "id":"13398312-0eb7-43d1-bec0-8de12dae03aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T09:55:19.711Z", + "completed":"2016-03-08T09:55:19.711Z", + "new_balance":"3650.34", + "value":"-5.27" + } + }, + { + "id":"b620e6e7-2838-4426-a752-229682d95394", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T15:01:26.068Z", + "completed":"2016-03-09T15:01:26.068Z", + "new_balance":"3649.80", + "value":"-0.54" + } + }, + { + "id":"c2173e23-ffb1-4732-9982-2cb781bfd3b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T11:15:00.970Z", + "completed":"2016-03-10T11:15:00.970Z", + "new_balance":"3643.48", + "value":"-6.32" + } + }, + { + "id":"88c9a660-c965-4da9-805b-c3e89d82ddc6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T17:57:17.637Z", + "completed":"2016-03-11T17:57:17.637Z", + "new_balance":"3642.71", + "value":"-0.77" + } + }, + { + "id":"3cb97106-47f5-4761-9682-36fca80b7a43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T14:49:30.880Z", + "completed":"2016-03-12T14:49:30.880Z", + "new_balance":"3640.46", + "value":"-2.25" + } + }, + { + "id":"bc9b4631-1777-4236-a3ff-664332e00236", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T20:15:13.820Z", + "completed":"2016-03-12T20:15:13.820Z", + "new_balance":"3639.41", + "value":"-1.05" + } + }, + { + "id":"9f9394a7-1b7b-4cec-819b-1c60180fc6bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T04:26:10.158Z", + "completed":"2016-03-13T04:26:10.158Z", + "new_balance":"3635.15", + "value":"-4.26" + } + }, + { + "id":"efea7dd3-3d10-4ead-a951-a7874c7b185b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T19:36:28.614Z", + "completed":"2016-03-14T19:36:28.614Z", + "new_balance":"3634.63", + "value":"-0.52" + } + }, + { + "id":"c6e45a01-bf3e-4b02-a6ee-9b5f2859bac2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T03:47:34.356Z", + "completed":"2016-03-16T03:47:34.356Z", + "new_balance":"3629.81", + "value":"-4.82" + } + }, + { + "id":"607d80c8-e469-4beb-b051-21b8585e28d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T07:55:18.075Z", + "completed":"2016-03-16T07:55:18.075Z", + "new_balance":"3620.02", + "value":"-9.79" + } + }, + { + "id":"a033b199-777c-4f1d-bb0c-fbbdfe463569", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T17:45:09.612Z", + "completed":"2016-03-18T17:45:09.612Z", + "new_balance":"3619.50", + "value":"-0.52" + } + }, + { + "id":"e1d379f0-cfe4-46d2-9959-af7948f3db48", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T13:29:46.046Z", + "completed":"2016-03-19T13:29:46.046Z", + "new_balance":"3613.18", + "value":"-6.32" + } + }, + { + "id":"208d0112-5e6c-4b1e-b6fc-1f7332c35411", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T17:22:38.437Z", + "completed":"2016-03-19T17:22:38.437Z", + "new_balance":"3609.03", + "value":"-4.15" + } + }, + { + "id":"ffff9ccf-a4aa-476c-8e8a-df24574ac445", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T22:36:23.034Z", + "completed":"2016-03-19T22:36:23.034Z", + "new_balance":"3604.74", + "value":"-4.29" + } + }, + { + "id":"b3021c66-d3ab-491a-8613-11d7ddc54bfa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T08:22:40.647Z", + "completed":"2016-03-20T08:22:40.647Z", + "new_balance":"3599.58", + "value":"-5.16" + } + }, + { + "id":"41688029-b6d1-4b79-a755-5cee8985215d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T16:58:48.621Z", + "completed":"2016-03-20T16:58:48.621Z", + "new_balance":"3592.62", + "value":"-6.96" + } + }, + { + "id":"c0b4a8a6-a802-463e-97f3-ec940763a4b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T02:35:57.737Z", + "completed":"2016-03-21T02:35:57.737Z", + "new_balance":"3592.03", + "value":"-0.59" + } + }, + { + "id":"5d989ad2-c01d-4773-84ff-9f307b1f5586", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T08:26:47.506Z", + "completed":"2016-03-21T08:26:47.506Z", + "new_balance":"3591.27", + "value":"-0.76" + } + }, + { + "id":"16d404a3-7516-4773-9819-f7f5688ed98d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T07:28:52.812Z", + "completed":"2016-03-23T07:28:52.812Z", + "new_balance":"3590.36", + "value":"-0.91" + } + }, + { + "id":"ceff3a5d-179a-4944-a9e6-d51861f702ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T14:50:05.123Z", + "completed":"2016-03-23T14:50:05.123Z", + "new_balance":"3585.75", + "value":"-4.61" + } + }, + { + "id":"48d7f038-789a-4bdf-b45e-4178ffe898c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T11:50:50.997Z", + "completed":"2016-03-24T11:50:50.997Z", + "new_balance":"3582.20", + "value":"-3.55" + } + }, + { + "id":"03f88e18-58f1-4227-a9a3-ae17e7b9e86c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T14:29:35.534Z", + "completed":"2016-03-25T14:29:35.534Z", + "new_balance":"3579.14", + "value":"-3.06" + } + }, + { + "id":"5b2ef43d-7fba-45e4-9fd7-c33e22bb42e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T15:51:17.871Z", + "completed":"2016-03-25T15:51:17.871Z", + "new_balance":"3577.83", + "value":"-1.31" + } + }, + { + "id":"77255bf5-f2e7-4461-a0a9-ea77873635c3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T11:54:11.858Z", + "completed":"2016-03-27T11:54:11.858Z", + "new_balance":"3550.33", + "value":"-27.50" + } + }, + { + "id":"160d6656-ec91-45a3-b694-621f7182eb1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T09:05:52.892Z", + "completed":"2016-03-28T09:05:52.892Z", + "new_balance":"3547.59", + "value":"-2.74" + } + }, + { + "id":"111f866f-9980-42ed-9e33-be33bf94f7da", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T13:50:36.202Z", + "completed":"2016-04-01T13:50:36.202Z", + "new_balance":"3489.36", + "value":"-58.23" + } + }, + { + "id":"1640e11a-eb9c-4f7d-acac-cfd6783ea790", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T14:45:50.077Z", + "completed":"2016-04-01T14:45:50.077Z", + "new_balance":"3474.11", + "value":"-15.25" + } + }, + { + "id":"e6e6ef85-c59f-4a8a-a029-fa6d930f9257", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T16:33:51.362Z", + "completed":"2016-04-01T16:33:51.362Z", + "new_balance":"3468.96", + "value":"-5.15" + } + }, + { + "id":"4fb4409b-f819-468d-8637-d6b8677be96b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T23:50:28.995Z", + "completed":"2016-04-01T23:50:28.995Z", + "new_balance":"3466.64", + "value":"-2.32" + } + }, + { + "id":"9fbc2315-2d5a-489d-be1a-e98bda5b3cc7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T01:21:46.274Z", + "completed":"2016-04-02T01:21:46.274Z", + "new_balance":"3459.54", + "value":"-7.10" + } + }, + { + "id":"4c572d79-8bfc-45c7-aff3-5d218f128842", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:48:03.477Z", + "completed":"2016-04-02T14:48:03.477Z", + "new_balance":"3449.85", + "value":"-9.69" + } + }, + { + "id":"1d1966aa-9da6-474a-a8ff-d62688ed246c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T01:15:46.066Z", + "completed":"2016-04-03T01:15:46.066Z", + "new_balance":"3446.94", + "value":"-2.91" + } + }, + { + "id":"02c396b6-57c1-4a0e-b579-a7bc733507c0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:53:52.437Z", + "completed":"2016-04-03T01:53:52.437Z", + "new_balance":"3454.88", + "value":"7.94" + } + }, + { + "id":"5ada5df3-d885-4213-9ccc-c76a28d84bbd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:19:00.729Z", + "completed":"2016-04-03T12:19:00.729Z", + "new_balance":"3451.10", + "value":"-3.78" + } + }, + { + "id":"388c231d-0eab-4b5f-874c-9b67080c4873", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T19:03:22.855Z", + "completed":"2016-04-03T19:03:22.855Z", + "new_balance":"3447.32", + "value":"-3.78" + } + }, + { + "id":"ccdabe9f-b1d7-4ede-9b2c-9a34637d9bf6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T22:26:48.242Z", + "completed":"2016-04-03T22:26:48.242Z", + "new_balance":"3459.66", + "value":"12.34" + } + }, + { + "id":"cd01136e-c4ce-4760-a1d0-f789b042b672", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T12:31:00.482Z", + "completed":"2016-04-04T12:31:00.482Z", + "new_balance":"3452.47", + "value":"-7.19" + } + }, + { + "id":"b4514836-0545-420a-83a7-27cb375af211", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T09:44:03.842Z", + "completed":"2016-04-05T09:44:03.842Z", + "new_balance":"3452.01", + "value":"-0.46" + } + }, + { + "id":"9cbc03d0-eaa6-4aa0-9612-b9a5f92e7df9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T11:53:23.407Z", + "completed":"2016-04-05T11:53:23.407Z", + "new_balance":"3449.33", + "value":"-2.68" + } + }, + { + "id":"cf29e8d6-e05f-48b9-94b8-28f5680cbef9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T18:21:39.787Z", + "completed":"2016-04-07T18:21:39.787Z", + "new_balance":"3447.80", + "value":"-1.53" + } + }, + { + "id":"de3c770e-1f4f-426e-957e-9f11ef8e7c81", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T19:05:44.899Z", + "completed":"2016-04-07T19:05:44.899Z", + "new_balance":"3444.58", + "value":"-3.22" + } + }, + { + "id":"678048c2-b682-4f6a-9218-e70585bdcadd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T16:50:25.841Z", + "completed":"2016-04-08T16:50:25.841Z", + "new_balance":"3443.68", + "value":"-0.90" + } + }, + { + "id":"8600ee95-68a3-4839-b8d1-62345296ca1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T01:39:33.424Z", + "completed":"2016-04-09T01:39:33.424Z", + "new_balance":"3416.18", + "value":"-27.50" + } + }, + { + "id":"a62e71d3-f9fb-44e6-b993-a5ac030b0b8c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T05:26:47.204Z", + "completed":"2016-04-09T05:26:47.204Z", + "new_balance":"3415.74", + "value":"-0.44" + } + }, + { + "id":"b2cb4039-2e08-4a32-a971-4e00e9e8ed79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T22:59:19.238Z", + "completed":"2016-04-09T22:59:19.238Z", + "new_balance":"3413.63", + "value":"-2.11" + } + }, + { + "id":"387e22b7-7b84-4c0d-a1ae-96db330d69c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T23:04:12.890Z", + "completed":"2016-04-10T23:04:12.890Z", + "new_balance":"3409.15", + "value":"-4.48" + } + }, + { + "id":"92ad7b9e-e3f7-447e-9b94-b1dc635f5771", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T20:17:11.965Z", + "completed":"2016-04-17T20:17:11.965Z", + "new_balance":"3408.04", + "value":"-1.11" + } + }, + { + "id":"4dd768ae-edcb-4e04-a47e-c0efb469d26e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T20:31:33.731Z", + "completed":"2016-04-18T20:31:33.731Z", + "new_balance":"3405.23", + "value":"-2.81" + } + }, + { + "id":"4bdc8c44-7375-4eef-8ce0-04c2df02f1c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T15:06:54.692Z", + "completed":"2016-04-25T15:06:54.692Z", + "new_balance":"3399.83", + "value":"-5.40" + } + }, + { + "id":"a2a2d403-7b5d-4263-bbdb-4cad88beea9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T18:26:20.065Z", + "completed":"2016-04-26T18:26:20.065Z", + "new_balance":"3399.39", + "value":"-0.44" + } + }, + { + "id":"bdc4e9c9-0b50-43af-b32a-824041733713", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T18:51:50.971Z", + "completed":"2016-04-26T18:51:50.971Z", + "new_balance":"3393.57", + "value":"-5.82" + } + }, + { + "id":"74db9a72-8292-41ec-abff-452acab4432c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T00:22:11.957Z", + "completed":"2016-05-02T00:22:11.957Z", + "new_balance":"3335.34", + "value":"-58.23" + } + }, + { + "id":"d44ed5e6-229b-40a8-b644-c43db7f103cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T03:38:39.434Z", + "completed":"2016-05-02T03:38:39.434Z", + "new_balance":"3320.09", + "value":"-15.25" + } + }, + { + "id":"e63cbc38-dac6-4bff-b6a2-c2774c22addf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T03:55:58.079Z", + "completed":"2016-05-02T03:55:58.079Z", + "new_balance":"3314.94", + "value":"-5.15" + } + }, + { + "id":"520d933f-4807-470f-9f3b-c854246390e9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T08:14:43.187Z", + "completed":"2016-05-02T08:14:43.187Z", + "new_balance":"3313.79", + "value":"-1.15" + } + }, + { + "id":"fb577757-1e9f-4e5d-a375-3381d5b55790", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T08:24:33.036Z", + "completed":"2016-05-02T08:24:33.036Z", + "new_balance":"3311.47", + "value":"-2.32" + } + }, + { + "id":"c3d4d1e8-abe7-4149-85a8-86cea43eaa09", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T14:25:02.193Z", + "completed":"2016-05-02T14:25:02.193Z", + "new_balance":"3304.37", + "value":"-7.10" + } + }, + { + "id":"b109485e-e757-4dc3-b42f-3a252f7fbf7e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T16:36:30.219Z", + "completed":"2016-05-02T16:36:30.219Z", + "new_balance":"3487.07", + "value":"182.70" + } + }, + { + "id":"ebbaf03a-b06c-40d1-85bf-616a322a2d8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T23:59:22.489Z", + "completed":"2016-05-02T23:59:22.489Z", + "new_balance":"3483.63", + "value":"-3.44" + } + }, + { + "id":"07919aba-7e75-4c76-9eba-4fade1eb7c69", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T12:34:04.882Z", + "completed":"2016-05-03T12:34:04.882Z", + "new_balance":"3481.53", + "value":"-2.10" + } + }, + { + "id":"07e62876-527c-4a62-a4b7-141e19714c53", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T21:44:09.209Z", + "completed":"2016-05-03T21:44:09.209Z", + "new_balance":"3479.03", + "value":"-2.50" + } + }, + { + "id":"f8b83101-8bf1-428a-8a5e-f54c9933ff4a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T03:24:18.413Z", + "completed":"2016-05-04T03:24:18.413Z", + "new_balance":"3475.70", + "value":"-3.33" + } + }, + { + "id":"91db9743-333b-4ed3-9c13-5a1d972c842d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T09:48:49.317Z", + "completed":"2016-05-04T09:48:49.317Z", + "new_balance":"3473.30", + "value":"-2.40" + } + }, + { + "id":"39b439ec-88cc-4459-a578-0996574d06d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T21:07:39.961Z", + "completed":"2016-05-05T21:07:39.961Z", + "new_balance":"3466.11", + "value":"-7.19" + } + }, + { + "id":"8bc9f711-4885-4357-91f8-b44018dbdab6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T20:49:40.695Z", + "completed":"2016-05-07T20:49:40.695Z", + "new_balance":"3463.08", + "value":"-3.03" + } + }, + { + "id":"1d03d64f-695b-4984-b7a1-225c14627917", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T21:29:49.669Z", + "completed":"2016-05-07T21:29:49.669Z", + "new_balance":"3462.60", + "value":"-0.48" + } + }, + { + "id":"c2e16d15-e9bf-4510-aeb6-e33c7b3efacc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T11:41:36.978Z", + "completed":"2016-05-12T11:41:36.978Z", + "new_balance":"3459.46", + "value":"-3.14" + } + }, + { + "id":"775f6ecf-9d47-4eba-8667-701d8f30fa8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T13:24:45.358Z", + "completed":"2016-05-12T13:24:45.358Z", + "new_balance":"3457.01", + "value":"-2.45" + } + }, + { + "id":"50315d99-03c0-4483-b93c-b959032ef383", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T18:41:28.625Z", + "completed":"2016-05-14T18:41:28.625Z", + "new_balance":"3453.53", + "value":"-3.48" + } + }, + { + "id":"afe5aa6f-c597-4f87-9fb3-427589cc381b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T00:06:33.401Z", + "completed":"2016-05-16T00:06:33.401Z", + "new_balance":"3453.06", + "value":"-0.47" + } + }, + { + "id":"221ebd63-3443-45b7-9faa-15dde0fcd605", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T07:37:20.582Z", + "completed":"2016-05-18T07:37:20.582Z", + "new_balance":"3452.29", + "value":"-0.77" + } + }, + { + "id":"12b77014-a1e3-4719-8c07-41ccf2441ba5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T20:40:24.029Z", + "completed":"2016-05-20T20:40:24.029Z", + "new_balance":"3456.37", + "value":"4.08" + } + }, + { + "id":"93cab9ca-28f0-4a18-a441-9758dddd080d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T05:50:10.150Z", + "completed":"2016-05-21T05:50:10.150Z", + "new_balance":"3452.25", + "value":"-4.12" + } + }, + { + "id":"a8592f9c-94a6-43ab-bf2d-9b6f19e2442e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T12:56:59.848Z", + "completed":"2016-05-21T12:56:59.848Z", + "new_balance":"3445.82", + "value":"-6.43" + } + }, + { + "id":"dd58c151-b5dc-4289-a2b4-0b30aea1bef5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T15:15:45.040Z", + "completed":"2016-05-27T15:15:45.040Z", + "new_balance":"3442.88", + "value":"-2.94" + } + }, + { + "id":"a5cb76b0-f052-4447-b586-be05a9400a0d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:30:59.841Z", + "completed":"2016-05-27T20:30:59.841Z", + "new_balance":"3440.33", + "value":"-2.55" + } + }, + { + "id":"a086f386-14d4-49a0-a6e6-de76d07f7d9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T03:11:57.305Z", + "completed":"2016-06-01T03:11:57.305Z", + "new_balance":"3438.01", + "value":"-2.32" + } + }, + { + "id":"c75cc41e-8cc4-428e-ad46-0aaba63b193c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T08:01:32.040Z", + "completed":"2016-06-01T08:01:32.040Z", + "new_balance":"3432.86", + "value":"-5.15" + } + }, + { + "id":"81c05a61-16d5-4465-a8df-e6c9684293ca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T08:38:45.571Z", + "completed":"2016-06-01T08:38:45.571Z", + "new_balance":"3429.42", + "value":"-3.44" + } + }, + { + "id":"82ee6b16-0029-40ff-a4b2-7e26dcb6f8dc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T11:42:52.213Z", + "completed":"2016-06-01T11:42:52.213Z", + "new_balance":"3612.12", + "value":"182.70" + } + }, + { + "id":"84535e66-b5ab-40aa-9693-eabea9f7c8a0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T15:10:36.485Z", + "completed":"2016-06-01T15:10:36.485Z", + "new_balance":"3553.89", + "value":"-58.23" + } + }, + { + "id":"8d867d9f-99be-4475-8908-b1d24c722cbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T19:38:56.839Z", + "completed":"2016-06-01T19:38:56.839Z", + "new_balance":"3538.64", + "value":"-15.25" + } + }, + { + "id":"6f711861-0e16-4c4b-b164-824650eb55e3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:32:39.749Z", + "completed":"2016-06-04T10:32:39.749Z", + "new_balance":"3526.68", + "value":"-11.96" + } + }, + { + "id":"6c31db3b-c53b-4ca0-9439-3ffcff4cb7fc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T15:22:42.751Z", + "completed":"2016-06-04T15:22:42.751Z", + "new_balance":"3519.58", + "value":"-7.10" + } + }, + { + "id":"518208eb-37e1-42e6-8338-56d904f82763", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T14:43:44.562Z", + "completed":"2016-06-11T14:43:44.562Z", + "new_balance":"3516.28", + "value":"-3.30" + } + }, + { + "id":"f39429c9-2dbd-4dcf-9230-3969a43cf91a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T11:56:00.770Z", + "completed":"2016-06-12T11:56:00.770Z", + "new_balance":"3515.03", + "value":"-1.25" + } + }, + { + "id":"b8cce11c-22f0-4947-baf4-ed4579e63fdd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T14:12:59.269Z", + "completed":"2016-06-13T14:12:59.269Z", + "new_balance":"3514.27", + "value":"-0.76" + } + }, + { + "id":"d98b66c6-7240-4f6f-aebe-a1414b2ba573", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T20:30:29.131Z", + "completed":"2016-06-13T20:30:29.131Z", + "new_balance":"3506.97", + "value":"-7.30" + } + }, + { + "id":"9f2561f4-883c-4a02-aad2-e0f414b9483e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T08:49:44.179Z", + "completed":"2016-06-16T08:49:44.179Z", + "new_balance":"3502.93", + "value":"-4.04" + } + }, + { + "id":"b218e7c8-240f-4041-be47-442c5d6d8a2b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T00:42:58.417Z", + "completed":"2016-06-17T00:42:58.417Z", + "new_balance":"3502.53", + "value":"-0.40" + } + }, + { + "id":"b687f664-0d75-474e-b989-a398231fcf5b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T18:47:22.035Z", + "completed":"2016-06-17T18:47:22.035Z", + "new_balance":"3495.23", + "value":"-7.30" + } + }, + { + "id":"93555957-2a23-47f5-a403-6d98fddc3459", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T19:00:47.354Z", + "completed":"2016-06-18T19:00:47.354Z", + "new_balance":"3489.96", + "value":"-5.27" + } + }, + { + "id":"3e54ddcb-590f-4bef-b6eb-b591c6bf7959", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T15:41:45.272Z", + "completed":"2016-06-19T15:41:45.272Z", + "new_balance":"3484.69", + "value":"-5.27" + } + }, + { + "id":"7372303c-5eab-4155-a794-ca23d5359241", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T23:48:55.694Z", + "completed":"2016-06-19T23:48:55.694Z", + "new_balance":"3480.42", + "value":"-4.27" + } + }, + { + "id":"15784782-7380-4430-8336-c3a90db4a2e9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T12:07:48.583Z", + "completed":"2016-06-21T12:07:48.583Z", + "new_balance":"3479.88", + "value":"-0.54" + } + }, + { + "id":"a804e8b5-6840-4389-9817-aa12a5de110a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T13:47:29.624Z", + "completed":"2016-06-21T13:47:29.624Z", + "new_balance":"3473.56", + "value":"-6.32" + } + }, + { + "id":"d9a8ebae-296e-46f9-b6de-7307e0396e98", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T10:46:51.377Z", + "completed":"2016-06-23T10:46:51.377Z", + "new_balance":"3471.31", + "value":"-2.25" + } + }, + { + "id":"94be3529-532d-40b3-8c82-3fa2f3bf7d58", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T19:24:51.866Z", + "completed":"2016-06-23T19:24:51.866Z", + "new_balance":"3470.54", + "value":"-0.77" + } + }, + { + "id":"be6668c8-7ebf-4928-aa13-c1a267aa8cb0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T16:45:04.057Z", + "completed":"2016-06-24T16:45:04.057Z", + "new_balance":"3466.28", + "value":"-4.26" + } + }, + { + "id":"31849767-6b75-40d7-8094-665b8c005615", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T18:41:01.719Z", + "completed":"2016-06-24T18:41:01.719Z", + "new_balance":"3465.23", + "value":"-1.05" + } + }, + { + "id":"44acc17e-b9bc-4983-8397-dce39f094f2a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T06:11:46.006Z", + "completed":"2016-06-28T06:11:46.006Z", + "new_balance":"3464.71", + "value":"-0.52" + } + }, + { + "id":"79f12600-072d-4dcf-bc20-7a97f10d41fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T07:15:38.108Z", + "completed":"2016-06-28T07:15:38.108Z", + "new_balance":"3464.19", + "value":"-0.52" + } + }, + { + "id":"a3a27a50-acf3-4f02-883c-d5928a2696df", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T10:53:27.769Z", + "completed":"2016-06-28T10:53:27.769Z", + "new_balance":"3454.40", + "value":"-9.79" + } + }, + { + "id":"ec5012af-fb36-4821-bc6b-e599a551a0ac", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T13:55:35.386Z", + "completed":"2016-06-28T13:55:35.386Z", + "new_balance":"3449.58", + "value":"-4.82" + } + }, + { + "id":"d83cfc2c-445b-4067-8994-68024f37235e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T10:04:14.651Z", + "completed":"2016-06-29T10:04:14.651Z", + "new_balance":"3443.26", + "value":"-6.32" + } + }, + { + "id":"9d0e3c56-a7b2-4ce1-af7a-6cee156a8381", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T11:44:18.344Z", + "completed":"2016-06-29T11:44:18.344Z", + "new_balance":"3438.10", + "value":"-5.16" + } + }, + { + "id":"b89ee495-1896-4dea-a7c6-bc45bd42cce3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T14:13:47.783Z", + "completed":"2016-06-29T14:13:47.783Z", + "new_balance":"3431.14", + "value":"-6.96" + } + }, + { + "id":"8b029861-e73e-4919-a1c6-774f5d0ce679", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T19:00:51.075Z", + "completed":"2016-06-29T19:00:51.075Z", + "new_balance":"3426.85", + "value":"-4.29" + } + }, + { + "id":"fc8cfcc1-1815-4595-9c4c-8f64ef7a1101", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T23:42:54.393Z", + "completed":"2016-06-29T23:42:54.393Z", + "new_balance":"3422.70", + "value":"-4.15" + } + }, + { + "id":"294b0041-51da-4f20-8d4a-9386f5709ec3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T23:48:34.709Z", + "completed":"2016-06-29T23:48:34.709Z", + "new_balance":"3421.94", + "value":"-0.76" + } + }, + { + "id":"f1311f2e-3114-46cb-adaf-d7636f9798cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T00:43:35.287Z", + "completed":"2016-06-30T00:43:35.287Z", + "new_balance":"3417.33", + "value":"-4.61" + } + }, + { + "id":"fc1013e8-61c6-4254-a3be-70c1a416fa84", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T06:21:43.034Z", + "completed":"2016-06-30T06:21:43.034Z", + "new_balance":"3416.74", + "value":"-0.59" + } + }, + { + "id":"1e0b960d-5473-482f-b3f3-bdf279b724e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T10:25:51.648Z", + "completed":"2016-06-30T10:25:51.648Z", + "new_balance":"3415.83", + "value":"-0.91" + } + }, + { + "id":"24837d85-fc0e-44e7-b11f-625b397f3dd2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T15:33:38.031Z", + "completed":"2016-06-30T15:33:38.031Z", + "new_balance":"3412.28", + "value":"-3.55" + } + }, + { + "id":"7bb8c462-e028-4077-9024-724effa5f713", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T00:13:09.998Z", + "completed":"2016-07-01T00:13:09.998Z", + "new_balance":"3408.84", + "value":"-3.44" + } + }, + { + "id":"2c9b8e89-3a55-4668-b7c0-6621724a151e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T00:29:19.383Z", + "completed":"2016-07-01T00:29:19.383Z", + "new_balance":"3406.10", + "value":"-2.74" + } + }, + { + "id":"3ef677cb-3407-4557-95f8-5a139f18b43d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T02:24:48.689Z", + "completed":"2016-07-01T02:24:48.689Z", + "new_balance":"3378.60", + "value":"-27.50" + } + }, + { + "id":"f403c705-5391-4d08-9766-01d786e0bbab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T04:13:03.340Z", + "completed":"2016-07-01T04:13:03.340Z", + "new_balance":"3375.54", + "value":"-3.06" + } + }, + { + "id":"8a7de13c-6cad-463c-a13c-74a0e04cc782", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:39:04.042Z", + "completed":"2016-07-01T05:39:04.042Z", + "new_balance":"3360.29", + "value":"-15.25" + } + }, + { + "id":"af663b26-00ed-490e-9343-3c8bb274f723", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T06:05:55.524Z", + "completed":"2016-07-01T06:05:55.524Z", + "new_balance":"3357.97", + "value":"-2.32" + } + }, + { + "id":"ddb66f4a-40a7-44a4-ae5a-781baf5d4af7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T09:50:10.141Z", + "completed":"2016-07-01T09:50:10.141Z", + "new_balance":"3354.53", + "value":"-3.44" + } + }, + { + "id":"fcccf6d3-f704-4688-baf4-1c9317aa8ed9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T12:31:16.766Z", + "completed":"2016-07-01T12:31:16.766Z", + "new_balance":"3296.30", + "value":"-58.23" + } + }, + { + "id":"cb02c0e7-9391-43df-9d0b-eac578840663", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T21:45:36.436Z", + "completed":"2016-07-01T21:45:36.436Z", + "new_balance":"3294.99", + "value":"-1.31" + } + }, + { + "id":"a298e4e8-de82-49ec-8232-7bb33395476a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T23:55:12.165Z", + "completed":"2016-07-01T23:55:12.165Z", + "new_balance":"3289.84", + "value":"-5.15" + } + }, + { + "id":"70f47cd2-1767-4c0f-a0bb-481f11a57cea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T14:13:30.189Z", + "completed":"2016-07-02T14:13:30.189Z", + "new_balance":"3282.74", + "value":"-7.10" + } + }, + { + "id":"ed02c5e0-8484-4b7e-b8f2-85f73f60e3de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T03:15:22.291Z", + "completed":"2016-07-03T03:15:22.291Z", + "new_balance":"3272.27", + "value":"-10.47" + } + }, + { + "id":"9ab56bcd-9d86-457f-8c8f-50cff99acf4b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T03:30:58.795Z", + "completed":"2016-07-04T03:30:58.795Z", + "new_balance":"3270.49", + "value":"-1.78" + } + }, + { + "id":"765d05fd-7bf4-4287-9f03-ef4b508ad1e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:04:56.755Z", + "completed":"2016-07-05T13:04:56.755Z", + "new_balance":"3260.85", + "value":"-9.64" + } + }, + { + "id":"cabf2489-213f-4d42-940a-fa7bb94f23b4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T14:22:36.216Z", + "completed":"2016-07-05T14:22:36.216Z", + "new_balance":"3253.66", + "value":"-7.19" + } + }, + { + "id":"72f0a3fd-5097-44e1-89d6-5cc08c6f381d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T17:57:50.237Z", + "completed":"2016-07-06T17:57:50.237Z", + "new_balance":"3253.20", + "value":"-0.46" + } + }, + { + "id":"fb78289c-c831-47de-aec2-e65341a9e608", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T19:58:30.013Z", + "completed":"2016-07-11T19:58:30.013Z", + "new_balance":"3250.52", + "value":"-2.68" + } + }, + { + "id":"45f8b5b5-2d75-4010-bb98-fd62728e602a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T09:02:39.215Z", + "completed":"2016-07-12T09:02:39.215Z", + "new_balance":"3247.30", + "value":"-3.22" + } + }, + { + "id":"44cc9283-e88f-4a2a-b948-2acc107cf2a3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T19:43:30.329Z", + "completed":"2016-07-14T19:43:30.329Z", + "new_balance":"3245.77", + "value":"-1.53" + } + }, + { + "id":"eadfa4bd-0b98-4c10-86ff-3d0ac356d065", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T06:28:58.898Z", + "completed":"2016-07-16T06:28:58.898Z", + "new_balance":"3244.87", + "value":"-0.90" + } + }, + { + "id":"60f7803b-374c-448d-9249-ce825d9253ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T16:39:44.404Z", + "completed":"2016-07-18T16:39:44.404Z", + "new_balance":"3242.76", + "value":"-2.11" + } + }, + { + "id":"441616d8-c1d7-4061-bbff-16145536f90f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T02:00:34.378Z", + "completed":"2016-07-20T02:00:34.378Z", + "new_balance":"3215.26", + "value":"-27.50" + } + }, + { + "id":"744ba566-74a6-44a9-8835-6d107e6ac0bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T18:18:06.611Z", + "completed":"2016-07-20T18:18:06.611Z", + "new_balance":"3214.82", + "value":"-0.44" + } + }, + { + "id":"c8dc8535-72d5-428d-89f5-a119a5adcb38", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T14:36:03.902Z", + "completed":"2016-07-24T14:36:03.902Z", + "new_balance":"3213.71", + "value":"-1.11" + } + }, + { + "id":"0b0f738e-7eec-453b-bbf1-284ee87b241c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T21:12:30.836Z", + "completed":"2016-07-24T21:12:30.836Z", + "new_balance":"3209.23", + "value":"-4.48" + } + }, + { + "id":"6cb3707a-7d38-4245-b1bf-495438f16671", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T23:35:14.339Z", + "completed":"2016-07-25T23:35:14.339Z", + "new_balance":"3203.83", + "value":"-5.40" + } + }, + { + "id":"2d2aa082-e226-43a9-b274-fc77c18d8123", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T23:50:14.218Z", + "completed":"2016-07-25T23:50:14.218Z", + "new_balance":"3201.02", + "value":"-2.81" + } + }, + { + "id":"ae068cab-4201-469c-b3e2-c1f73d264260", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T07:51:07.412Z", + "completed":"2016-07-26T07:51:07.412Z", + "new_balance":"3195.20", + "value":"-5.82" + } + }, + { + "id":"06b7cdad-0c3c-476b-84c0-7b223a6ca4fb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T12:49:15.757Z", + "completed":"2016-07-27T12:49:15.757Z", + "new_balance":"3194.76", + "value":"-0.44" + } + }, + { + "id":"c8c37460-3806-42f0-83ae-5e1c031a4a41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T02:20:27.814Z", + "completed":"2016-08-01T02:20:27.814Z", + "new_balance":"3191.32", + "value":"-3.44" + } + }, + { + "id":"bac7ac9c-d403-4d11-bb6a-8d4ba53ec5a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T03:15:20.015Z", + "completed":"2016-08-01T03:15:20.015Z", + "new_balance":"3186.17", + "value":"-5.15" + } + }, + { + "id":"3cbac25a-b443-4c7a-88a4-ac12453d6514", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T10:37:27.703Z", + "completed":"2016-08-01T10:37:27.703Z", + "new_balance":"3170.92", + "value":"-15.25" + } + }, + { + "id":"11e2abff-3c85-4b14-b3e6-0e4a315033b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T12:04:39.702Z", + "completed":"2016-08-01T12:04:39.702Z", + "new_balance":"3112.69", + "value":"-58.23" + } + }, + { + "id":"2252766b-4b1e-40f2-9875-039d2c26a815", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T22:53:47.115Z", + "completed":"2016-08-01T22:53:47.115Z", + "new_balance":"3295.39", + "value":"182.70" + } + }, + { + "id":"a0fc264e-94f3-4fbb-8df3-88dfb6fd89a6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T23:50:08.790Z", + "completed":"2016-08-01T23:50:08.790Z", + "new_balance":"3293.07", + "value":"-2.32" + } + }, + { + "id":"2cf528c2-339f-4a4b-b441-9d99964fc76f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T05:09:44.654Z", + "completed":"2016-08-02T05:09:44.654Z", + "new_balance":"3285.97", + "value":"-7.10" + } + }, + { + "id":"c498a528-bbdf-4084-8569-79c12ad1abe9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T15:41:22.425Z", + "completed":"2016-08-03T15:41:22.425Z", + "new_balance":"3285.51", + "value":"-0.46" + } + }, + { + "id":"377755d5-ed4e-4b82-9563-811563fe26be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T00:50:34.492Z", + "completed":"2016-08-04T00:50:34.492Z", + "new_balance":"3282.59", + "value":"-2.92" + } + }, + { + "id":"a284019c-de69-423d-97e3-4b1f8957c2ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T23:31:22.418Z", + "completed":"2016-08-07T23:31:22.418Z", + "new_balance":"3280.09", + "value":"-2.50" + } + }, + { + "id":"0db1c271-211e-4f68-9eed-be30b4c69136", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T09:52:12.341Z", + "completed":"2016-08-09T09:52:12.341Z", + "new_balance":"3277.69", + "value":"-2.40" + } + }, + { + "id":"bd827045-16b4-44cf-945f-c2711c5a6087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T23:06:56.458Z", + "completed":"2016-08-09T23:06:56.458Z", + "new_balance":"3274.36", + "value":"-3.33" + } + }, + { + "id":"aa3daa80-0e52-4801-89db-5c07c59be8b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T18:30:46.049Z", + "completed":"2016-08-10T18:30:46.049Z", + "new_balance":"3267.17", + "value":"-7.19" + } + }, + { + "id":"f9b58784-e60b-4bd1-8a80-4c2e3a066fc8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T13:20:56.062Z", + "completed":"2016-08-14T13:20:56.062Z", + "new_balance":"3266.69", + "value":"-0.48" + } + }, + { + "id":"de085ee6-1ccd-41b7-8560-4dc56c574750", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T02:00:27.658Z", + "completed":"2016-08-15T02:00:27.658Z", + "new_balance":"3263.47", + "value":"-3.22" + } + }, + { + "id":"c3151c21-96df-4f4c-a543-cd5a9f4b7556", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T13:35:27.642Z", + "completed":"2016-08-15T13:35:27.642Z", + "new_balance":"3260.44", + "value":"-3.03" + } + }, + { + "id":"88af83a1-7a9e-4280-8b81-094c41ae5121", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T21:37:56.114Z", + "completed":"2016-08-16T21:37:56.114Z", + "new_balance":"3257.30", + "value":"-3.14" + } + }, + { + "id":"44b9b120-765a-4ef2-a02a-7ab6d15995b2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T16:17:39.985Z", + "completed":"2016-08-17T16:17:39.985Z", + "new_balance":"3253.82", + "value":"-3.48" + } + }, + { + "id":"e7b3996e-e4ee-4993-9c89-0791a62f55e3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T13:25:43.832Z", + "completed":"2016-08-20T13:25:43.832Z", + "new_balance":"3253.05", + "value":"-0.77" + } + }, + { + "id":"e0c6cc65-650b-4eed-bb05-337a71ae01ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T17:06:51.284Z", + "completed":"2016-08-20T17:06:51.284Z", + "new_balance":"3252.58", + "value":"-0.47" + } + }, + { + "id":"9b7c061e-fb66-415e-a5cd-762fb80ee2d9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T04:50:51.681Z", + "completed":"2016-08-22T04:50:51.681Z", + "new_balance":"3256.66", + "value":"4.08" + } + }, + { + "id":"6fb25361-d1ad-4231-a185-c7d7299a95bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T00:37:18.047Z", + "completed":"2016-08-23T00:37:18.047Z", + "new_balance":"3250.23", + "value":"-6.43" + } + }, + { + "id":"43548932-513b-4332-bcd1-e32271b41da9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T19:23:31.745Z", + "completed":"2016-08-23T19:23:31.745Z", + "new_balance":"3246.11", + "value":"-4.12" + } + }, + { + "id":"cccbe9d8-122b-457f-8057-7f30191c474a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T16:29:25.343Z", + "completed":"2016-08-28T16:29:25.343Z", + "new_balance":"3243.17", + "value":"-2.94" + } + }, + { + "id":"90cfc0be-158b-4dd2-9d90-531070a12cb2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T20:03:30.609Z", + "completed":"2016-08-28T20:03:30.609Z", + "new_balance":"3240.62", + "value":"-2.55" + } + }, + { + "id":"1dee2c72-569a-430f-9b68-a7a074eb731b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T04:13:25.925Z", + "completed":"2016-09-01T04:13:25.925Z", + "new_balance":"3238.30", + "value":"-2.32" + } + }, + { + "id":"c8b16397-8a4d-4487-a6f3-a6eed9653599", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T07:40:03.171Z", + "completed":"2016-09-01T07:40:03.171Z", + "new_balance":"3223.05", + "value":"-15.25" + } + }, + { + "id":"1b703e83-8e49-4b30-8a6f-43901d710c00", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T07:41:26.771Z", + "completed":"2016-09-01T07:41:26.771Z", + "new_balance":"3164.82", + "value":"-58.23" + } + }, + { + "id":"95f41c1d-72c1-4d94-a14c-253db90bd869", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T15:11:15.158Z", + "completed":"2016-09-01T15:11:15.158Z", + "new_balance":"3161.38", + "value":"-3.44" + } + }, + { + "id":"9a2149c8-f76b-4252-bab6-1db026edd4de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T20:16:36.530Z", + "completed":"2016-09-01T20:16:36.530Z", + "new_balance":"3344.08", + "value":"182.70" + } + }, + { + "id":"be1d10e4-1fbb-4c9c-8044-37ed95d0ff69", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T20:38:18.732Z", + "completed":"2016-09-01T20:38:18.732Z", + "new_balance":"3338.93", + "value":"-5.15" + } + }, + { + "id":"90ff4788-221a-40e9-92a7-f7ff4bbe9793", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T09:55:31.845Z", + "completed":"2016-09-02T09:55:31.845Z", + "new_balance":"3331.83", + "value":"-7.10" + } + }, + { + "id":"1f2cfcff-dc49-428c-a424-15c701939aa3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T03:36:12.858Z", + "completed":"2016-09-04T03:36:12.858Z", + "new_balance":"3330.58", + "value":"-1.25" + } + }, + { + "id":"4dfe0892-9763-43f1-a557-117452a1815d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T07:50:15.961Z", + "completed":"2016-09-04T07:50:15.961Z", + "new_balance":"3329.82", + "value":"-0.76" + } + }, + { + "id":"af9b597e-a0c5-4c94-a8e0-71a38401abd0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T10:54:51.069Z", + "completed":"2016-09-04T10:54:51.069Z", + "new_balance":"3322.52", + "value":"-7.30" + } + }, + { + "id":"4d99f1cb-00d4-4388-859a-c73d0cffc34c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T18:56:24.740Z", + "completed":"2016-09-04T18:56:24.740Z", + "new_balance":"3319.22", + "value":"-3.30" + } + }, + { + "id":"f6c80808-0c44-41dc-b941-2611afc2bc6a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T08:14:33.382Z", + "completed":"2016-09-05T08:14:33.382Z", + "new_balance":"3315.18", + "value":"-4.04" + } + }, + { + "id":"568e27e4-7deb-463a-9863-f65785fe31fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T10:54:03.630Z", + "completed":"2016-09-05T10:54:03.630Z", + "new_balance":"3314.78", + "value":"-0.40" + } + }, + { + "id":"e39689da-ef9a-407b-b0ed-68b2e8dbe425", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T16:26:13.087Z", + "completed":"2016-09-06T16:26:13.087Z", + "new_balance":"3309.51", + "value":"-5.27" + } + }, + { + "id":"982f3815-373f-4e00-8045-24413e7b96b5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T18:47:18.407Z", + "completed":"2016-09-06T18:47:18.407Z", + "new_balance":"3302.21", + "value":"-7.30" + } + }, + { + "id":"6dceac77-6f44-4d18-be04-ee7497a6c5ad", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T05:38:53.106Z", + "completed":"2016-09-08T05:38:53.106Z", + "new_balance":"3297.94", + "value":"-4.27" + } + }, + { + "id":"529dec9e-ed28-40ad-823d-d542ac303fc5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T19:58:48.118Z", + "completed":"2016-09-08T19:58:48.118Z", + "new_balance":"3292.67", + "value":"-5.27" + } + }, + { + "id":"c7e2afb4-e72f-4773-b1b7-00453d421b57", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T01:40:10.391Z", + "completed":"2016-09-10T01:40:10.391Z", + "new_balance":"3286.35", + "value":"-6.32" + } + }, + { + "id":"e0ebd63e-39c9-40d2-8c04-4152eeab6faf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T04:58:12.300Z", + "completed":"2016-09-10T04:58:12.300Z", + "new_balance":"3285.81", + "value":"-0.54" + } + }, + { + "id":"7296eabe-ac41-4afe-b795-2d43e2763665", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T08:52:36.090Z", + "completed":"2016-09-11T08:52:36.090Z", + "new_balance":"3285.04", + "value":"-0.77" + } + }, + { + "id":"99dfd24b-9dc0-4040-812d-c0289dc811a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T00:29:12.602Z", + "completed":"2016-09-12T00:29:12.602Z", + "new_balance":"3282.79", + "value":"-2.25" + } + }, + { + "id":"d946eb92-f433-46d1-b0b2-b1dbfbb52708", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T18:43:25.396Z", + "completed":"2016-09-12T18:43:25.396Z", + "new_balance":"3281.74", + "value":"-1.05" + } + }, + { + "id":"0bd6fe83-56de-4763-a7f1-990d5c68d866", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T02:14:57.767Z", + "completed":"2016-09-13T02:14:57.767Z", + "new_balance":"3277.48", + "value":"-4.26" + } + }, + { + "id":"18d844e4-e716-412f-a0f8-bc4cb5ab31e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T12:10:29.726Z", + "completed":"2016-09-16T12:10:29.726Z", + "new_balance":"3276.96", + "value":"-0.52" + } + }, + { + "id":"cdcc1dd4-0870-4ede-b224-283f270e53e8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T03:45:50.160Z", + "completed":"2016-09-17T03:45:50.160Z", + "new_balance":"3272.14", + "value":"-4.82" + } + }, + { + "id":"a089dcf0-3ab4-4945-9594-ff9bfd81d85e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T23:39:47.236Z", + "completed":"2016-09-17T23:39:47.236Z", + "new_balance":"3262.35", + "value":"-9.79" + } + }, + { + "id":"c7187519-c17b-4710-a08b-a7a1fb773e48", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T13:14:39.149Z", + "completed":"2016-09-18T13:14:39.149Z", + "new_balance":"3261.83", + "value":"-0.52" + } + }, + { + "id":"859be3b9-0b0a-4f2c-a4c3-a3cdb717cd7c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T01:01:32.494Z", + "completed":"2016-09-19T01:01:32.494Z", + "new_balance":"3255.51", + "value":"-6.32" + } + }, + { + "id":"fe697d44-2e8f-48ed-85f6-8ba9e060e638", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T04:27:33.010Z", + "completed":"2016-09-19T04:27:33.010Z", + "new_balance":"3251.36", + "value":"-4.15" + } + }, + { + "id":"0d24cc08-f396-4875-ac6b-da8d1d22364c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T14:18:37.415Z", + "completed":"2016-09-19T14:18:37.415Z", + "new_balance":"3247.07", + "value":"-4.29" + } + }, + { + "id":"92db3fa3-d2d6-4241-a846-e9ef124f388f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T15:55:11.157Z", + "completed":"2016-09-20T15:55:11.157Z", + "new_balance":"3240.11", + "value":"-6.96" + } + }, + { + "id":"c029d89a-f645-440b-8ba4-4048f379650b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T22:20:05.920Z", + "completed":"2016-09-20T22:20:05.920Z", + "new_balance":"3234.95", + "value":"-5.16" + } + }, + { + "id":"ae5a4858-fe26-49d7-91e0-582fb118aa24", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T10:42:28.004Z", + "completed":"2016-09-21T10:42:28.004Z", + "new_balance":"3234.19", + "value":"-0.76" + } + }, + { + "id":"d8dcbd2b-560a-4f8d-858e-ccd38c0b8089", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T11:50:20.446Z", + "completed":"2016-09-21T11:50:20.446Z", + "new_balance":"3233.60", + "value":"-0.59" + } + }, + { + "id":"5a7a4427-2404-461f-a686-48b054e89f10", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T06:16:19.438Z", + "completed":"2016-09-23T06:16:19.438Z", + "new_balance":"3232.69", + "value":"-0.91" + } + }, + { + "id":"3e0320b2-9f75-4227-b50b-57e7d1d62530", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T07:27:34.159Z", + "completed":"2016-09-23T07:27:34.159Z", + "new_balance":"3228.08", + "value":"-4.61" + } + }, + { + "id":"23845702-5f78-417c-b0c2-d6774195e70e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T15:45:03.731Z", + "completed":"2016-09-24T15:45:03.731Z", + "new_balance":"3224.53", + "value":"-3.55" + } + }, + { + "id":"12a2f12a-4b9e-4776-a1ed-3467bf7aeec3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T13:33:27.859Z", + "completed":"2016-09-25T13:33:27.859Z", + "new_balance":"3223.22", + "value":"-1.31" + } + }, + { + "id":"887902ba-cfd9-4a65-aa6a-b2c994f4d9e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T21:03:59.908Z", + "completed":"2016-09-25T21:03:59.908Z", + "new_balance":"3220.16", + "value":"-3.06" + } + }, + { + "id":"de9b487e-aeac-47ac-aff9-7228c33acb0f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T01:12:30.833Z", + "completed":"2016-09-27T01:12:30.833Z", + "new_balance":"3192.66", + "value":"-27.50" + } + }, + { + "id":"a433a9d5-e2d2-440a-9a0b-150f4cf0130e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T06:06:49.353Z", + "completed":"2016-09-29T06:06:49.353Z", + "new_balance":"3189.92", + "value":"-2.74" + } + }, + { + "id":"380c2c6b-d3df-4833-9265-384558145b1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T00:16:33.310Z", + "completed":"2016-10-01T00:16:33.310Z", + "new_balance":"3174.67", + "value":"-15.25" + } + }, + { + "id":"9b2063d9-8b56-49de-a719-d21c591502ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T05:30:20.776Z", + "completed":"2016-10-01T05:30:20.776Z", + "new_balance":"3172.35", + "value":"-2.32" + } + }, + { + "id":"d3ae5b8e-638d-456f-b257-9c987e01c0c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T21:09:23.858Z", + "completed":"2016-10-01T21:09:23.858Z", + "new_balance":"3114.12", + "value":"-58.23" + } + }, + { + "id":"ec95c88b-d142-47f6-8121-bc39be0a98bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T22:30:11.166Z", + "completed":"2016-10-01T22:30:11.166Z", + "new_balance":"3108.97", + "value":"-5.15" + } + }, + { + "id":"4297878b-8f87-45b0-b501-57145df76c8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T18:19:58.105Z", + "completed":"2016-10-02T18:19:58.105Z", + "new_balance":"3099.28", + "value":"-9.69" + } + }, + { + "id":"e60c527e-c963-4017-a841-aebbd8a85ab2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T20:50:37.524Z", + "completed":"2016-10-02T20:50:37.524Z", + "new_balance":"3092.18", + "value":"-7.10" + } + }, + { + "id":"345a61ff-028e-4564-9c9b-184a7c1aa6bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T03:17:01.035Z", + "completed":"2016-10-03T03:17:01.035Z", + "new_balance":"3035.37", + "value":"-56.81" + } + }, + { + "id":"f0b63274-980d-4d1a-b346-bd5eb2104810", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T08:24:31.899Z", + "completed":"2016-10-03T08:24:31.899Z", + "new_balance":"3022.27", + "value":"-13.10" + } + }, + { + "id":"498f13ed-ff91-489f-9a70-9cc03e6a31a9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T15:03:03.261Z", + "completed":"2016-10-03T15:03:03.261Z", + "new_balance":"2994.77", + "value":"-27.50" + } + }, + { + "id":"bc085f73-b261-432b-bee9-3cb4009879f9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T19:23:21.597Z", + "completed":"2016-10-03T19:23:21.597Z", + "new_balance":"2991.86", + "value":"-2.91" + } + }, + { + "id":"33c44cd2-6751-487d-a633-77562a395c93", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T19:59:16.912Z", + "completed":"2016-10-03T19:59:16.912Z", + "new_balance":"2988.08", + "value":"-3.78" + } + }, + { + "id":"b3c57d86-4011-4f3e-a646-eef279b38bd1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T18:48:04.339Z", + "completed":"2016-10-04T18:48:04.339Z", + "new_balance":"2980.89", + "value":"-7.19" + } + }, + { + "id":"2096b552-bce2-4768-9058-108762032693", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T05:15:49.135Z", + "completed":"2016-10-05T05:15:49.135Z", + "new_balance":"2980.43", + "value":"-0.46" + } + }, + { + "id":"2e90f2fc-d5d1-4b3f-8e36-2265ce020576", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T12:29:21.083Z", + "completed":"2016-10-05T12:29:21.083Z", + "new_balance":"2977.75", + "value":"-2.68" + } + }, + { + "id":"40019154-5cb3-439f-b8c4-d6a53629c169", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T18:04:07.602Z", + "completed":"2016-10-07T18:04:07.602Z", + "new_balance":"2976.22", + "value":"-1.53" + } + }, + { + "id":"33f92e8f-c32b-4077-84cc-03a72897d041", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T20:48:26.043Z", + "completed":"2016-10-07T20:48:26.043Z", + "new_balance":"2973.00", + "value":"-3.22" + } + }, + { + "id":"419f486e-f3dd-4723-aebf-33a06ca5d4ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T02:19:46.040Z", + "completed":"2016-10-08T02:19:46.040Z", + "new_balance":"2972.10", + "value":"-0.90" + } + }, + { + "id":"31d26433-b05f-41f4-a382-3dde53e4b4ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T00:27:03.199Z", + "completed":"2016-10-09T00:27:03.199Z", + "new_balance":"2944.60", + "value":"-27.50" + } + }, + { + "id":"cc236755-d90d-486b-bcf9-31ed7df4554b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T02:41:40.589Z", + "completed":"2016-10-09T02:41:40.589Z", + "new_balance":"2942.49", + "value":"-2.11" + } + }, + { + "id":"6c20c021-218e-48a8-913c-fa1a913730e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T04:37:36.160Z", + "completed":"2016-10-09T04:37:36.160Z", + "new_balance":"2942.05", + "value":"-0.44" + } + }, + { + "id":"d500045a-0030-428b-a168-9bf37dc9d043", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T23:23:57.761Z", + "completed":"2016-10-10T23:23:57.761Z", + "new_balance":"2937.57", + "value":"-4.48" + } + }, + { + "id":"eafe3310-67f5-447d-9a81-10ed13bcab1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T06:29:02.575Z", + "completed":"2016-10-17T06:29:02.575Z", + "new_balance":"2936.46", + "value":"-1.11" + } + }, + { + "id":"f845d557-7a21-43e2-8d58-937a0f8e5dc9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T05:20:00.103Z", + "completed":"2016-10-18T05:20:00.103Z", + "new_balance":"2933.65", + "value":"-2.81" + } + }, + { + "id":"2758eab3-8f6c-4675-92fc-63b46c4e56d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T14:07:31.932Z", + "completed":"2016-10-25T14:07:31.932Z", + "new_balance":"2928.25", + "value":"-5.40" + } + }, + { + "id":"e4176c61-9d13-4985-add8-cf474e117cca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T02:41:43.500Z", + "completed":"2016-10-26T02:41:43.500Z", + "new_balance":"2922.43", + "value":"-5.82" + } + }, + { + "id":"a46a738c-72c4-46a6-bac4-8dbc90a44d16", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T03:58:40.364Z", + "completed":"2016-10-26T03:58:40.364Z", + "new_balance":"2921.99", + "value":"-0.44" + } + }, + { + "id":"423ab3b5-9f35-4201-a394-01f12024ea18", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T01:11:48.979Z", + "completed":"2016-11-02T01:11:48.979Z", + "new_balance":"2914.89", + "value":"-7.10" + } + }, + { + "id":"119e3cb9-67e7-47df-85ff-8e7ca2b709b9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T08:55:46.066Z", + "completed":"2016-11-02T08:55:46.066Z", + "new_balance":"2899.64", + "value":"-15.25" + } + }, + { + "id":"f3b7efe3-61fe-4d7a-b734-b46a4726068a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T08:59:49.837Z", + "completed":"2016-11-02T08:59:49.837Z", + "new_balance":"2898.49", + "value":"-1.15" + } + }, + { + "id":"f1452c5f-e964-422b-9836-afc0edb12c6c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T11:06:22.512Z", + "completed":"2016-11-02T11:06:22.512Z", + "new_balance":"2896.17", + "value":"-2.32" + } + }, + { + "id":"d48a2fc5-ca78-42ee-b2b2-1ff3cadda852", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T12:49:29.869Z", + "completed":"2016-11-02T12:49:29.869Z", + "new_balance":"3078.87", + "value":"182.70" + } + }, + { + "id":"d75526c0-1ae3-4f77-bddc-c7c1a822a8cc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:01:24.986Z", + "completed":"2016-11-02T14:01:24.986Z", + "new_balance":"3073.72", + "value":"-5.15" + } + }, + { + "id":"f0b804e9-2a8c-4e35-bbc8-bcf5efcd19ee", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T21:00:57.689Z", + "completed":"2016-11-02T21:00:57.689Z", + "new_balance":"3070.28", + "value":"-3.44" + } + }, + { + "id":"7a5b81ba-cb16-4594-ba38-8907f087dd8e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T21:15:30.456Z", + "completed":"2016-11-02T21:15:30.456Z", + "new_balance":"3012.05", + "value":"-58.23" + } + }, + { + "id":"1b4bd90e-ed3d-4598-a262-b80af77e0591", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T13:11:12.031Z", + "completed":"2016-11-06T13:11:12.031Z", + "new_balance":"3009.95", + "value":"-2.10" + } + }, + { + "id":"e8508807-107f-412e-93d9-11a8f1951898", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T03:04:36.984Z", + "completed":"2016-11-07T03:04:36.984Z", + "new_balance":"3007.55", + "value":"-2.40" + } + }, + { + "id":"02baeb1d-b386-497d-a4ab-ab6c47f119cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T11:09:16.064Z", + "completed":"2016-11-07T11:09:16.064Z", + "new_balance":"3005.05", + "value":"-2.50" + } + }, + { + "id":"7ca5e2a9-8b1c-4684-923d-33ef96a281d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T23:58:46.171Z", + "completed":"2016-11-07T23:58:46.171Z", + "new_balance":"3001.72", + "value":"-3.33" + } + }, + { + "id":"05b5bc1e-d57e-4a04-9619-53f86880d4aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T06:49:15.054Z", + "completed":"2016-11-09T06:49:15.054Z", + "new_balance":"2994.53", + "value":"-7.19" + } + }, + { + "id":"a072c6fd-9af0-412f-9b37-71765e813ad4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T18:24:33.176Z", + "completed":"2016-11-09T18:24:33.176Z", + "new_balance":"2994.05", + "value":"-0.48" + } + }, + { + "id":"0c945b97-7995-49f1-a360-925bdce5f74f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T01:36:20.118Z", + "completed":"2016-11-12T01:36:20.118Z", + "new_balance":"2991.60", + "value":"-2.45" + } + }, + { + "id":"9985f454-3be9-4508-b776-3d2c62840326", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T17:30:23.820Z", + "completed":"2016-11-12T17:30:23.820Z", + "new_balance":"2988.57", + "value":"-3.03" + } + }, + { + "id":"f91dc6a6-160a-45be-a196-2af6529d6ae9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T09:24:46.120Z", + "completed":"2016-11-14T09:24:46.120Z", + "new_balance":"2985.09", + "value":"-3.48" + } + }, + { + "id":"e582b532-da57-4ecd-b865-ae21579cbdfb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T12:14:45.368Z", + "completed":"2016-11-14T12:14:45.368Z", + "new_balance":"2981.95", + "value":"-3.14" + } + }, + { + "id":"2b25b605-f94f-492b-abd3-79bede196617", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T15:08:17.719Z", + "completed":"2016-11-16T15:08:17.719Z", + "new_balance":"2981.48", + "value":"-0.47" + } + }, + { + "id":"fb12bfe2-9cf7-405a-b8e0-c56b767f0888", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T17:54:47.661Z", + "completed":"2016-11-18T17:54:47.661Z", + "new_balance":"2980.71", + "value":"-0.77" + } + }, + { + "id":"aad4f8cf-1e12-4fcb-a424-a3f24e69bf6c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T14:13:40.365Z", + "completed":"2016-11-20T14:13:40.365Z", + "new_balance":"2984.79", + "value":"4.08" + } + }, + { + "id":"55e4b225-df30-45db-80c7-a79b81843abb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T09:53:54.817Z", + "completed":"2016-11-21T09:53:54.817Z", + "new_balance":"2980.67", + "value":"-4.12" + } + }, + { + "id":"4bae5ab2-d5d7-4f55-8c8f-6b88dd50a031", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T17:32:04.803Z", + "completed":"2016-11-21T17:32:04.803Z", + "new_balance":"2974.24", + "value":"-6.43" + } + }, + { + "id":"4e7a49b1-b58d-4090-a475-a520d293a492", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T07:35:10.477Z", + "completed":"2016-11-27T07:35:10.477Z", + "new_balance":"2971.69", + "value":"-2.55" + } + }, + { + "id":"98ce017c-693d-491e-8f9f-6913fbfde8cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T20:59:02.256Z", + "completed":"2016-11-27T20:59:02.256Z", + "new_balance":"2968.75", + "value":"-2.94" + } + }, + { + "id":"83fe14d3-dde8-4403-a73c-5b33e723ba7e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T00:28:49.841Z", + "completed":"2016-12-01T00:28:49.841Z", + "new_balance":"2910.52", + "value":"-58.23" + } + }, + { + "id":"9d274ce4-1c56-41a8-9e45-7fad13c87c92", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T05:26:30.222Z", + "completed":"2016-12-01T05:26:30.222Z", + "new_balance":"2907.08", + "value":"-3.44" + } + }, + { + "id":"499b495c-fe51-4110-bf8d-5cc3e15ae497", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:32:10.924Z", + "completed":"2016-12-01T10:32:10.924Z", + "new_balance":"3089.78", + "value":"182.70" + } + }, + { + "id":"4d6ff2b0-be8b-4b64-99e9-9ba4300ec839", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T17:29:23.646Z", + "completed":"2016-12-01T17:29:23.646Z", + "new_balance":"3087.46", + "value":"-2.32" + } + }, + { + "id":"b7bc99af-72fc-496e-b33d-c65e989fe94e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:35:05.373Z", + "completed":"2016-12-01T22:35:05.373Z", + "new_balance":"3072.21", + "value":"-15.25" + } + }, + { + "id":"08bb63b5-b1e7-40df-9fa4-049e75f46166", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T23:21:29.419Z", + "completed":"2016-12-01T23:21:29.419Z", + "new_balance":"3067.06", + "value":"-5.15" + } + }, + { + "id":"b873f819-7a81-4263-b12f-a3ef3ea51f12", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T08:28:30.854Z", + "completed":"2016-12-04T08:28:30.854Z", + "new_balance":"3055.10", + "value":"-11.96" + } + }, + { + "id":"6a92ddbf-4a9d-4de0-a1ea-ab3ee615edde", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T10:09:50.182Z", + "completed":"2016-12-04T10:09:50.182Z", + "new_balance":"3048.00", + "value":"-7.10" + } + }, + { + "id":"2bf4171c-7604-4276-9e78-f004c2d278fa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T02:26:55.974Z", + "completed":"2016-12-12T02:26:55.974Z", + "new_balance":"3046.75", + "value":"-1.25" + } + }, + { + "id":"ed38a79f-9855-4175-bb8b-4b9eb87f7750", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T05:02:26.533Z", + "completed":"2016-12-12T05:02:26.533Z", + "new_balance":"3043.45", + "value":"-3.30" + } + }, + { + "id":"37d57993-50f1-41c8-867d-f08e22c45985", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T03:02:39.365Z", + "completed":"2016-12-13T03:02:39.365Z", + "new_balance":"3042.69", + "value":"-0.76" + } + }, + { + "id":"07d276c8-b3e2-4961-8d99-751e7485aa2e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T10:45:00.727Z", + "completed":"2016-12-13T10:45:00.727Z", + "new_balance":"3035.39", + "value":"-7.30" + } + }, + { + "id":"30cf9bc2-9a69-4684-ada8-7a89ba38317d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T00:49:08.151Z", + "completed":"2016-12-16T00:49:08.151Z", + "new_balance":"3031.35", + "value":"-4.04" + } + }, + { + "id":"2d8efbce-e4fb-40b9-8c4f-4b36c6ac6240", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T17:12:14.328Z", + "completed":"2016-12-18T17:12:14.328Z", + "new_balance":"3030.95", + "value":"-0.40" + } + }, + { + "id":"a13dec49-107d-4e71-8d09-261ae4106582", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:28:22.194Z", + "completed":"2016-12-19T12:28:22.194Z", + "new_balance":"3025.68", + "value":"-5.27" + } + }, + { + "id":"1e60e623-fda8-40c0-8fa1-020baaaf46ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T22:58:19.384Z", + "completed":"2016-12-19T22:58:19.384Z", + "new_balance":"3018.38", + "value":"-7.30" + } + }, + { + "id":"08915b92-dfd0-4711-8ef2-4dfb916313a6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T01:12:29.287Z", + "completed":"2016-12-20T01:12:29.287Z", + "new_balance":"3014.11", + "value":"-4.27" + } + }, + { + "id":"2e390c4e-df6d-4d7e-9615-7cd881029694", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T00:00:39.746Z", + "completed":"2016-12-21T00:00:39.746Z", + "new_balance":"3008.84", + "value":"-5.27" + } + }, + { + "id":"a599e3ac-4da4-40ba-878c-4e23bc4af69b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T02:30:25.586Z", + "completed":"2016-12-24T02:30:25.586Z", + "new_balance":"3006.59", + "value":"-2.25" + } + }, + { + "id":"b70eff48-a246-4b0e-8976-114cd04a42e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T03:30:09.951Z", + "completed":"2016-12-24T03:30:09.951Z", + "new_balance":"3005.82", + "value":"-0.77" + } + }, + { + "id":"a43e849a-b972-40b8-bec8-56de4245dfea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:15:46.336Z", + "completed":"2016-12-24T09:15:46.336Z", + "new_balance":"3004.77", + "value":"-1.05" + } + }, + { + "id":"12e62e94-2e3d-428a-b750-67f71bd562ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T10:14:49.325Z", + "completed":"2016-12-24T10:14:49.325Z", + "new_balance":"3004.23", + "value":"-0.54" + } + }, + { + "id":"c005a13d-e91d-4a42-8434-66ef8e9a563e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T14:39:01.369Z", + "completed":"2016-12-24T14:39:01.369Z", + "new_balance":"2999.97", + "value":"-4.26" + } + }, + { + "id":"e248d378-d236-4638-9cbe-a3b10820849b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T20:52:39.367Z", + "completed":"2016-12-24T20:52:39.367Z", + "new_balance":"2993.65", + "value":"-6.32" + } + }, + { + "id":"52984613-9659-4ff0-87b8-45032020b3ba", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T06:19:37.000Z", + "completed":"2016-12-28T06:19:37.000Z", + "new_balance":"2993.13", + "value":"-0.52" + } + }, + { + "id":"0ccdf95b-4451-47bb-aef6-56df3a720fe3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T07:48:18.772Z", + "completed":"2016-12-28T07:48:18.772Z", + "new_balance":"2988.31", + "value":"-4.82" + } + }, + { + "id":"850b12e2-7103-4596-be64-919b5709c679", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T10:25:33.845Z", + "completed":"2016-12-28T10:25:33.845Z", + "new_balance":"2987.79", + "value":"-0.52" + } + }, + { + "id":"abe4365f-849e-491d-b4d1-6da56b3e67de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T22:19:58.279Z", + "completed":"2016-12-28T22:19:58.279Z", + "new_balance":"2978.00", + "value":"-9.79" + } + }, + { + "id":"3be4a20d-db94-401e-8f82-4b07551234be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T03:09:37.240Z", + "completed":"2016-12-29T03:09:37.240Z", + "new_balance":"2973.85", + "value":"-4.15" + } + }, + { + "id":"6935050f-8f25-4dfb-abb0-7df7f5bd822b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T03:44:57.434Z", + "completed":"2016-12-29T03:44:57.434Z", + "new_balance":"2973.09", + "value":"-0.76" + } + }, + { + "id":"35d008b8-10ee-4e84-9552-bf4839828bca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T04:59:13.181Z", + "completed":"2016-12-29T04:59:13.181Z", + "new_balance":"2967.93", + "value":"-5.16" + } + }, + { + "id":"7071d706-5d06-49fe-8a78-b64e3cbf77d0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T09:40:07.958Z", + "completed":"2016-12-29T09:40:07.958Z", + "new_balance":"2961.61", + "value":"-6.32" + } + }, + { + "id":"6e93f381-8ae1-4caf-abd8-4d096da1f0a9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T10:20:06.985Z", + "completed":"2016-12-29T10:20:06.985Z", + "new_balance":"2957.32", + "value":"-4.29" + } + }, + { + "id":"980e4e44-9f23-421a-be36-6a82ba097068", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T12:59:36.174Z", + "completed":"2016-12-29T12:59:36.174Z", + "new_balance":"2950.36", + "value":"-6.96" + } + }, + { + "id":"11338c19-7aea-43ce-ac9c-3acb3397b5f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T00:01:25.502Z", + "completed":"2016-12-30T00:01:25.502Z", + "new_balance":"2946.81", + "value":"-3.55" + } + }, + { + "id":"eb81e993-25c2-4793-a2bd-c1b0689559ff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T05:16:56.114Z", + "completed":"2016-12-30T05:16:56.114Z", + "new_balance":"2945.90", + "value":"-0.91" + } + }, + { + "id":"9169f2d4-6ba6-4be7-996c-42080b92987b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T07:53:52.437Z", + "completed":"2016-12-30T07:53:52.437Z", + "new_balance":"2941.29", + "value":"-4.61" + } + }, + { + "id":"711a0e65-83eb-4661-a3a2-508bd20218f6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T13:29:46.494Z", + "completed":"2016-12-30T13:29:46.494Z", + "new_balance":"2940.70", + "value":"-0.59" + } + }, + { + "id":"f5a6acfc-5570-48ad-8cb0-bea30d036087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T04:21:52.181Z", + "completed":"2016-12-31T04:21:52.181Z", + "new_balance":"2937.96", + "value":"-2.74" + } + }, + { + "id":"8bfcec5a-1ecb-42ee-85d4-c96e2e58ed2e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T11:34:22.359Z", + "completed":"2016-12-31T11:34:22.359Z", + "new_balance":"2910.46", + "value":"-27.50" + } + }, + { + "id":"17eb3bef-dca3-4c7a-a1a2-cca20f177761", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T19:11:07.417Z", + "completed":"2016-12-31T19:11:07.417Z", + "new_balance":"2909.15", + "value":"-1.31" + } + }, + { + "id":"1b74fd6b-7ce4-4e69-8b5b-cf88ac08b20e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T21:12:19.558Z", + "completed":"2016-12-31T21:12:19.558Z", + "new_balance":"2906.09", + "value":"-3.06" + } + }, + { + "id":"52db0a26-c8d0-434b-8dd3-c6af2c68a5cf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T06:24:34.433Z", + "completed":"2017-01-01T06:24:34.433Z", + "new_balance":"2903.77", + "value":"-2.32" + } + }, + { + "id":"c4a35761-263e-4c5e-bff5-a5a07d48bca7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T06:26:00.002Z", + "completed":"2017-01-01T06:26:00.002Z", + "new_balance":"2900.33", + "value":"-3.44" + } + }, + { + "id":"2437e1f2-fbab-48e1-8f14-fa277fa20ddd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T12:05:50.795Z", + "completed":"2017-01-01T12:05:50.795Z", + "new_balance":"2885.08", + "value":"-15.25" + } + }, + { + "id":"cacab1f2-0550-4bd5-94aa-bf6d438de6e6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T15:23:53.586Z", + "completed":"2017-01-01T15:23:53.586Z", + "new_balance":"2879.93", + "value":"-5.15" + } + }, + { + "id":"cf4aeffe-d65a-4051-9507-08f2e201eed3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:00:47.322Z", + "completed":"2017-01-01T21:00:47.322Z", + "new_balance":"2876.49", + "value":"-3.44" + } + }, + { + "id":"f39ded9f-380a-459b-9099-d9cc6311d6df", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T21:31:39.401Z", + "completed":"2017-01-01T21:31:39.401Z", + "new_balance":"2818.26", + "value":"-58.23" + } + }, + { + "id":"842bb36d-d554-43f4-afb4-e28b9d91f159", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T00:48:16.490Z", + "completed":"2017-01-02T00:48:16.490Z", + "new_balance":"2811.16", + "value":"-7.10" + } + }, + { + "id":"9b33422c-24b4-4567-8e67-b8fb5ac7914c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T10:17:25.655Z", + "completed":"2017-01-02T10:17:25.655Z", + "new_balance":"2801.47", + "value":"-9.69" + } + }, + { + "id":"f947fd26-2d5b-4a66-9c4e-a36c45897428", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T00:17:49.090Z", + "completed":"2017-01-04T00:17:49.090Z", + "new_balance":"2798.56", + "value":"-2.91" + } + }, + { + "id":"88dc777e-ed71-43be-b75c-2ff916bb991b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T08:18:56.427Z", + "completed":"2017-01-04T08:18:56.427Z", + "new_balance":"2794.78", + "value":"-3.78" + } + }, + { + "id":"0a0a3cbc-8a4a-4334-9c55-c964de080e6a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:53:31.217Z", + "completed":"2017-01-07T02:53:31.217Z", + "new_balance":"2787.59", + "value":"-7.19" + } + }, + { + "id":"2d981c03-3a8a-4aea-9b1c-4fada21ff964", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T01:44:21.387Z", + "completed":"2017-01-09T01:44:21.387Z", + "new_balance":"2787.13", + "value":"-0.46" + } + }, + { + "id":"ccf2a7d1-e47d-4273-838f-5850101570de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T06:16:59.867Z", + "completed":"2017-01-10T06:16:59.867Z", + "new_balance":"2784.45", + "value":"-2.68" + } + }, + { + "id":"783af2ab-acaf-4c46-8505-98665083c4b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T21:15:24.458Z", + "completed":"2017-01-12T21:15:24.458Z", + "new_balance":"2781.23", + "value":"-3.22" + } + }, + { + "id":"b89d560c-917d-4d90-8250-22072fa93a2f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T01:31:07.750Z", + "completed":"2017-01-15T01:31:07.750Z", + "new_balance":"2779.70", + "value":"-1.53" + } + }, + { + "id":"95e66a10-682e-476f-bda9-a4b180eb5b5f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T20:43:49.200Z", + "completed":"2017-01-15T20:43:49.200Z", + "new_balance":"2778.80", + "value":"-0.90" + } + }, + { + "id":"6e9ed2a6-987a-4cb7-9347-1f9422e409b6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T23:47:09.893Z", + "completed":"2017-01-17T23:47:09.893Z", + "new_balance":"2776.69", + "value":"-2.11" + } + }, + { + "id":"d14dd53a-f3b1-4083-83a1-db7f16cfd527", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T02:31:15.976Z", + "completed":"2017-01-19T02:31:15.976Z", + "new_balance":"2749.19", + "value":"-27.50" + } + }, + { + "id":"bc5d6157-6148-4f1c-89a9-afff62944ba3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T22:43:51.039Z", + "completed":"2017-01-20T22:43:51.039Z", + "new_balance":"2748.75", + "value":"-0.44" + } + }, + { + "id":"c298be6f-e330-473d-94f6-8ed5c025257a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T00:55:46.956Z", + "completed":"2017-01-22T00:55:46.956Z", + "new_balance":"2744.27", + "value":"-4.48" + } + }, + { + "id":"b390877f-77a0-42c4-8a5c-3fda7c594c30", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T10:28:24.096Z", + "completed":"2017-01-22T10:28:24.096Z", + "new_balance":"2743.16", + "value":"-1.11" + } + }, + { + "id":"69d796d7-8e83-4e83-ac99-135d8e0716e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T01:52:00.319Z", + "completed":"2017-01-24T01:52:00.319Z", + "new_balance":"2740.35", + "value":"-2.81" + } + }, + { + "id":"f56929f5-04b5-4268-89b7-107b6bf7143a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T05:02:38.177Z", + "completed":"2017-01-25T05:02:38.177Z", + "new_balance":"2734.95", + "value":"-5.40" + } + }, + { + "id":"3e4d2d9e-98f5-40ac-8f99-7243c14ee60c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T09:29:13.601Z", + "completed":"2017-01-25T09:29:13.601Z", + "new_balance":"2734.51", + "value":"-0.44" + } + }, + { + "id":"fbcf6bbf-3022-475d-87f6-6dbb6cad3798", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T02:10:30.851Z", + "completed":"2017-01-26T02:10:30.851Z", + "new_balance":"2728.69", + "value":"-5.82" + } + }, + { + "id":"61172586-f67a-45be-8883-aa98562ae586", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T01:07:19.557Z", + "completed":"2017-02-01T01:07:19.557Z", + "new_balance":"2911.39", + "value":"182.70" + } + }, + { + "id":"831b819d-4907-4ec7-a9c6-01bab2adade7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T06:05:42.602Z", + "completed":"2017-02-01T06:05:42.602Z", + "new_balance":"2853.16", + "value":"-58.23" + } + }, + { + "id":"e97dbe22-c61e-4a39-9e7d-ae1773224f41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T10:19:05.805Z", + "completed":"2017-02-01T10:19:05.805Z", + "new_balance":"2837.91", + "value":"-15.25" + } + }, + { + "id":"7be4d353-84d3-46e2-ae13-a45120379b26", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T15:01:35.144Z", + "completed":"2017-02-01T15:01:35.144Z", + "new_balance":"2832.76", + "value":"-5.15" + } + }, + { + "id":"79fab52c-851b-4268-a01c-8ee6e24b2c67", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T16:38:23.029Z", + "completed":"2017-02-01T16:38:23.029Z", + "new_balance":"2830.44", + "value":"-2.32" + } + }, + { + "id":"8dbab37e-e4d3-45e3-bdea-c147ae017c8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T22:48:22.070Z", + "completed":"2017-02-01T22:48:22.070Z", + "new_balance":"2827.00", + "value":"-3.44" + } + }, + { + "id":"f7368276-90f0-4540-91fd-c40c2de87727", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T03:57:07.797Z", + "completed":"2017-02-02T03:57:07.797Z", + "new_balance":"2825.85", + "value":"-1.15" + } + }, + { + "id":"1f1e500d-d6ca-4bb0-bb8a-c6976ab79391", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T11:23:09.111Z", + "completed":"2017-02-02T11:23:09.111Z", + "new_balance":"2818.75", + "value":"-7.10" + } + }, + { + "id":"09216a8d-df3f-41f8-821d-b13e7d34854d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T23:32:15.171Z", + "completed":"2017-02-02T23:32:15.171Z", + "new_balance":"2816.65", + "value":"-2.10" + } + }, + { + "id":"9649b412-fdf4-47bd-9887-fbf924855573", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T10:46:25.691Z", + "completed":"2017-02-03T10:46:25.691Z", + "new_balance":"2813.32", + "value":"-3.33" + } + }, + { + "id":"8f673c86-ae6e-45b8-a482-127602bc08d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T12:14:47.528Z", + "completed":"2017-02-03T12:14:47.528Z", + "new_balance":"2810.92", + "value":"-2.40" + } + }, + { + "id":"45d4fe07-1c51-4010-b11a-581cd3cf7244", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T14:49:07.747Z", + "completed":"2017-02-03T14:49:07.747Z", + "new_balance":"2808.42", + "value":"-2.50" + } + }, + { + "id":"d2fd832b-5be4-461b-9157-8612cec93f37", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T23:19:09.539Z", + "completed":"2017-02-06T23:19:09.539Z", + "new_balance":"2801.23", + "value":"-7.19" + } + }, + { + "id":"9a1dfedc-7348-4d37-88bf-dca9ea4aef55", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T13:45:28.641Z", + "completed":"2017-02-08T13:45:28.641Z", + "new_balance":"2798.20", + "value":"-3.03" + } + }, + { + "id":"90c35147-2f7c-49ba-bc8d-e91477ba6507", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T15:56:06.926Z", + "completed":"2017-02-08T15:56:06.926Z", + "new_balance":"2795.75", + "value":"-2.45" + } + }, + { + "id":"dbceae4b-3199-4ed7-850e-e31e3ffbc946", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T21:11:40.260Z", + "completed":"2017-02-08T21:11:40.260Z", + "new_balance":"2795.27", + "value":"-0.48" + } + }, + { + "id":"8e79412f-03ad-4dfe-8644-f6fcecc8e20e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T12:47:00.930Z", + "completed":"2017-02-09T12:47:00.930Z", + "new_balance":"2791.79", + "value":"-3.48" + } + }, + { + "id":"bddd6735-484d-4118-9bd9-fb1db6af690c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T20:20:59.004Z", + "completed":"2017-02-09T20:20:59.004Z", + "new_balance":"2788.65", + "value":"-3.14" + } + }, + { + "id":"76223b90-b94c-4d11-a565-c57101a21971", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T23:53:20.406Z", + "completed":"2017-02-12T23:53:20.406Z", + "new_balance":"2788.18", + "value":"-0.47" + } + }, + { + "id":"dc9ec497-f215-4331-8316-235dea63fd8f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T04:42:25.359Z", + "completed":"2017-02-13T04:42:25.359Z", + "new_balance":"2792.26", + "value":"4.08" + } + }, + { + "id":"a0ffab96-9d7e-41dd-a0c7-0ec0fa217c6f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T07:47:13.776Z", + "completed":"2017-02-13T07:47:13.776Z", + "new_balance":"2785.83", + "value":"-6.43" + } + }, + { + "id":"0c421d40-3aad-4592-a493-6ca131ddaa6b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T10:42:22.863Z", + "completed":"2017-02-13T10:42:22.863Z", + "new_balance":"2785.06", + "value":"-0.77" + } + }, + { + "id":"87f0c984-1ea7-43d9-a573-e1de1e16f5d3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T05:54:30.416Z", + "completed":"2017-02-14T05:54:30.416Z", + "new_balance":"2780.94", + "value":"-4.12" + } + }, + { + "id":"b69a3d20-ba9c-4a75-86ba-b1cc9983636d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T09:44:04.555Z", + "completed":"2017-02-15T09:44:04.555Z", + "new_balance":"2778.39", + "value":"-2.55" + } + }, + { + "id":"c863c3f3-eb16-4aac-9760-1f157e392af8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T05:59:22.709Z", + "completed":"2017-02-28T05:59:22.709Z", + "new_balance":"2775.45", + "value":"-2.94" + } + }, + { + "id":"61827a7b-5afc-4ac5-a6e7-743f02f1b3c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T02:11:30.002Z", + "completed":"2017-03-01T02:11:30.002Z", + "new_balance":"2760.20", + "value":"-15.25" + } + }, + { + "id":"ca19242a-8720-4c7c-974c-cb6232700903", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T02:46:42.854Z", + "completed":"2017-03-01T02:46:42.854Z", + "new_balance":"2755.05", + "value":"-5.15" + } + }, + { + "id":"43487012-c780-4394-bb0a-42e292b6adc8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T06:13:13.692Z", + "completed":"2017-03-01T06:13:13.692Z", + "new_balance":"2696.82", + "value":"-58.23" + } + }, + { + "id":"0fc8c19b-232b-4783-b68c-2d95b7ec7def", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T11:20:16.932Z", + "completed":"2017-03-01T11:20:16.932Z", + "new_balance":"2693.38", + "value":"-3.44" + } + }, + { + "id":"d27ee8a0-767c-4c57-9bdb-7fc75f575f0a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T15:22:04.058Z", + "completed":"2017-03-01T15:22:04.058Z", + "new_balance":"2691.06", + "value":"-2.32" + } + }, + { + "id":"a9c8a36c-376e-4937-8475-1719fc6bc504", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T23:00:43.016Z", + "completed":"2017-03-01T23:00:43.016Z", + "new_balance":"2873.76", + "value":"182.70" + } + }, + { + "id":"e44bef48-c710-43b2-831d-0e426e4862c3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T13:02:54.983Z", + "completed":"2017-03-02T13:02:54.983Z", + "new_balance":"2866.66", + "value":"-7.10" + } + }, + { + "id":"a537ad4e-4ff0-418a-b725-3f0a79a5e57f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T09:28:03.498Z", + "completed":"2017-03-04T09:28:03.498Z", + "new_balance":"2865.90", + "value":"-0.76" + } + }, + { + "id":"a4bd82e9-628a-4c04-ac18-d830d3c52b3d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T11:24:40.623Z", + "completed":"2017-03-04T11:24:40.623Z", + "new_balance":"2864.65", + "value":"-1.25" + } + }, + { + "id":"c1a7b9ca-6268-411c-9bb5-a9c485191c84", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T16:54:00.930Z", + "completed":"2017-03-04T16:54:00.930Z", + "new_balance":"2857.35", + "value":"-7.30" + } + }, + { + "id":"3245a298-ce26-4e4c-972c-9eb30f0e7e9f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T20:45:47.401Z", + "completed":"2017-03-04T20:45:47.401Z", + "new_balance":"2854.05", + "value":"-3.30" + } + }, + { + "id":"982b2c63-e65f-4ded-8962-b304e384e831", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T09:30:07.951Z", + "completed":"2017-03-05T09:30:07.951Z", + "new_balance":"2850.01", + "value":"-4.04" + } + }, + { + "id":"6709e6c4-187e-4b3c-8e76-75c7722455eb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T14:18:58.648Z", + "completed":"2017-03-05T14:18:58.648Z", + "new_balance":"2849.61", + "value":"-0.40" + } + }, + { + "id":"a21b0ca6-aeb3-4ad6-bc61-9dcaf379f926", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T02:42:04.849Z", + "completed":"2017-03-06T02:42:04.849Z", + "new_balance":"2842.31", + "value":"-7.30" + } + }, + { + "id":"d4ccbb5e-c15a-49e8-b10c-4d3dd65ec0e1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T03:39:44.560Z", + "completed":"2017-03-06T03:39:44.560Z", + "new_balance":"2837.04", + "value":"-5.27" + } + }, + { + "id":"abf3a29c-72b3-454f-a152-6a789aa88d41", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T08:31:02.120Z", + "completed":"2017-03-07T08:31:02.120Z", + "new_balance":"2832.77", + "value":"-4.27" + } + }, + { + "id":"9a29a55c-9fd6-4bd8-9f7c-c8479e7015a0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T04:43:53.556Z", + "completed":"2017-03-08T04:43:53.556Z", + "new_balance":"2827.50", + "value":"-5.27" + } + }, + { + "id":"200e183c-204d-4e9e-bb98-18ab65077ecf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T10:10:23.270Z", + "completed":"2017-03-09T10:10:23.270Z", + "new_balance":"2826.96", + "value":"-0.54" + } + }, + { + "id":"95ec570b-b306-459f-9de4-e59bb36fb02e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T23:22:01.394Z", + "completed":"2017-03-10T23:22:01.394Z", + "new_balance":"2820.64", + "value":"-6.32" + } + }, + { + "id":"32a01af5-e1f3-4017-88c4-e44bd78b54bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:39:20.168Z", + "completed":"2017-03-11T19:39:20.168Z", + "new_balance":"2819.87", + "value":"-0.77" + } + }, + { + "id":"c6cbd7b4-e280-433a-b44b-bfbac5466eef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T03:55:57.506Z", + "completed":"2017-03-12T03:55:57.506Z", + "new_balance":"2817.62", + "value":"-2.25" + } + }, + { + "id":"e0d15ef9-a31c-4d07-94c7-1303f7c8d20d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T16:37:21.825Z", + "completed":"2017-03-12T16:37:21.825Z", + "new_balance":"2816.57", + "value":"-1.05" + } + }, + { + "id":"d351b5b6-2bf1-409e-beef-ca1bf6291fe7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T06:37:03.206Z", + "completed":"2017-03-13T06:37:03.206Z", + "new_balance":"2812.31", + "value":"-4.26" + } + }, + { + "id":"cf1ec5f2-200a-4d2c-a604-2bab5615d685", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T14:31:32.033Z", + "completed":"2017-03-14T14:31:32.033Z", + "new_balance":"2811.79", + "value":"-0.52" + } + }, + { + "id":"53cc7cc6-a2c7-47ea-afdb-38be1b520aaf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T15:14:46.015Z", + "completed":"2017-03-16T15:14:46.015Z", + "new_balance":"2806.97", + "value":"-4.82" + } + }, + { + "id":"6521ebb2-a442-465d-b134-81953080a484", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T17:04:49.620Z", + "completed":"2017-03-16T17:04:49.620Z", + "new_balance":"2797.18", + "value":"-9.79" + } + }, + { + "id":"d74fa1a4-9551-4fe7-ab17-5b5388a1d1be", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T01:48:39.693Z", + "completed":"2017-03-18T01:48:39.693Z", + "new_balance":"2796.66", + "value":"-0.52" + } + }, + { + "id":"d0c2fd91-8ed5-494e-8d4f-ad967cc3f468", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T04:54:58.555Z", + "completed":"2017-03-19T04:54:58.555Z", + "new_balance":"2792.51", + "value":"-4.15" + } + }, + { + "id":"af8af00a-05bc-4b1d-b6c8-48c0cab98f52", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T10:09:39.628Z", + "completed":"2017-03-19T10:09:39.628Z", + "new_balance":"2788.22", + "value":"-4.29" + } + }, + { + "id":"99ff941d-01c5-4e51-88d2-08d08aee23f6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:01:32.052Z", + "completed":"2017-03-19T14:01:32.052Z", + "new_balance":"2781.90", + "value":"-6.32" + } + }, + { + "id":"f010b90b-2857-49d0-a573-6f271e360320", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T07:33:58.443Z", + "completed":"2017-03-20T07:33:58.443Z", + "new_balance":"2774.94", + "value":"-6.96" + } + }, + { + "id":"4ca01cb3-654c-4674-9a03-95ea641068b1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T21:05:28.313Z", + "completed":"2017-03-20T21:05:28.313Z", + "new_balance":"2769.78", + "value":"-5.16" + } + }, + { + "id":"ee8a9e04-3865-4e2e-9b5c-de9af5f1b016", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T00:49:04.897Z", + "completed":"2017-03-21T00:49:04.897Z", + "new_balance":"2769.19", + "value":"-0.59" + } + }, + { + "id":"21a2997b-3b12-4973-8012-4cfaff95649c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T06:13:11.425Z", + "completed":"2017-03-21T06:13:11.425Z", + "new_balance":"2768.43", + "value":"-0.76" + } + }, + { + "id":"77f4e648-48eb-45c0-9e1b-eb70ee2a9727", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T09:46:18.564Z", + "completed":"2017-03-23T09:46:18.564Z", + "new_balance":"2767.52", + "value":"-0.91" + } + }, + { + "id":"112cc6be-0367-48ce-8331-295bca103a60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T22:16:14.621Z", + "completed":"2017-03-23T22:16:14.621Z", + "new_balance":"2762.91", + "value":"-4.61" + } + }, + { + "id":"d59bd0f9-d386-49ee-8eb9-aa8baac96a26", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T02:30:32.920Z", + "completed":"2017-03-24T02:30:32.920Z", + "new_balance":"2759.36", + "value":"-3.55" + } + }, + { + "id":"7b8897d7-d198-4ec9-8283-6cb6b4278dbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T08:57:03.343Z", + "completed":"2017-03-25T08:57:03.343Z", + "new_balance":"2758.05", + "value":"-1.31" + } + }, + { + "id":"5a4ea685-f6b5-4b4d-8254-ab9bfebaa0c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T19:06:53.958Z", + "completed":"2017-03-25T19:06:53.958Z", + "new_balance":"2754.99", + "value":"-3.06" + } + }, + { + "id":"aa5bdf63-6562-4d0b-a84c-c115f6a00393", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T05:47:53.799Z", + "completed":"2017-03-27T05:47:53.799Z", + "new_balance":"2727.49", + "value":"-27.50" + } + }, + { + "id":"4c89517a-f97b-4d42-8343-c73f1c900f0e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T14:00:23.786Z", + "completed":"2017-03-28T14:00:23.786Z", + "new_balance":"2724.75", + "value":"-2.74" + } + }, + { + "id":"1d34125e-41c9-47d8-8648-5c09df8855c9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T14:11:07.844Z", + "completed":"2017-04-01T14:11:07.844Z", + "new_balance":"2666.52", + "value":"-58.23" + } + }, + { + "id":"2f350e29-6508-4d58-beeb-39d0d931ecd0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T14:52:26.890Z", + "completed":"2017-04-01T14:52:26.890Z", + "new_balance":"2661.37", + "value":"-5.15" + } + }, + { + "id":"379931bd-749e-4834-8a60-65d251d06e79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T15:22:57.676Z", + "completed":"2017-04-01T15:22:57.676Z", + "new_balance":"2659.05", + "value":"-2.32" + } + }, + { + "id":"9c33b92f-132b-46b9-94c1-7dce4294d448", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T16:02:00.356Z", + "completed":"2017-04-01T16:02:00.356Z", + "new_balance":"2643.80", + "value":"-15.25" + } + }, + { + "id":"28eaa930-ad48-482c-9c8a-26bd9900fa60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T04:11:59.446Z", + "completed":"2017-04-02T04:11:59.446Z", + "new_balance":"2634.11", + "value":"-9.69" + } + }, + { + "id":"991e58cf-f774-421e-b3df-9e57e819203d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T23:43:18.978Z", + "completed":"2017-04-02T23:43:18.978Z", + "new_balance":"2627.01", + "value":"-7.10" + } + }, + { + "id":"ec238c39-6a8e-49a8-ac66-f3e68f4adc0b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T04:04:14.293Z", + "completed":"2017-04-03T04:04:14.293Z", + "new_balance":"2623.23", + "value":"-3.78" + } + }, + { + "id":"751e7d6f-bfdc-419b-974a-1ead81c4bba4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T06:24:15.887Z", + "completed":"2017-04-03T06:24:15.887Z", + "new_balance":"2631.17", + "value":"7.94" + } + }, + { + "id":"33a99c87-06ae-4c82-938c-3a1a446df3e0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:31:22.595Z", + "completed":"2017-04-03T08:31:22.595Z", + "new_balance":"2643.51", + "value":"12.34" + } + }, + { + "id":"1b657a04-f1e6-41cc-8544-772622f05c79", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T13:38:55.296Z", + "completed":"2017-04-03T13:38:55.296Z", + "new_balance":"2640.60", + "value":"-2.91" + } + }, + { + "id":"11b6091e-5d82-4957-921e-15f1affd7d51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:48:27.381Z", + "completed":"2017-04-03T20:48:27.381Z", + "new_balance":"2636.82", + "value":"-3.78" + } + }, + { + "id":"ff551070-31ae-4352-a171-00139bb38aec", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T10:02:22.180Z", + "completed":"2017-04-04T10:02:22.180Z", + "new_balance":"2629.63", + "value":"-7.19" + } + }, + { + "id":"98950639-4202-4a47-9d20-e9b0dca260cd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T01:07:54.913Z", + "completed":"2017-04-05T01:07:54.913Z", + "new_balance":"2629.17", + "value":"-0.46" + } + }, + { + "id":"4288c7ba-de8e-4dbe-bacf-83c323311534", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T10:26:26.940Z", + "completed":"2017-04-05T10:26:26.940Z", + "new_balance":"2626.49", + "value":"-2.68" + } + }, + { + "id":"c0169e3d-efa2-44c5-aadf-4083e56cee81", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T06:39:22.602Z", + "completed":"2017-04-07T06:39:22.602Z", + "new_balance":"2623.27", + "value":"-3.22" + } + }, + { + "id":"bf54d88f-62ae-4cc8-9042-f317f1f38c90", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T13:32:40.106Z", + "completed":"2017-04-07T13:32:40.106Z", + "new_balance":"2621.74", + "value":"-1.53" + } + }, + { + "id":"cc5a3333-d8a5-47b2-abf3-f82d09d7b382", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T12:14:19.419Z", + "completed":"2017-04-08T12:14:19.419Z", + "new_balance":"2620.84", + "value":"-0.90" + } + }, + { + "id":"85c0be2a-7d1d-48f6-8b4e-368b751615f9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T03:55:36.220Z", + "completed":"2017-04-09T03:55:36.220Z", + "new_balance":"2593.34", + "value":"-27.50" + } + }, + { + "id":"5a7b02ea-5f87-476e-abd9-6f228bf4befc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T07:35:14.958Z", + "completed":"2017-04-09T07:35:14.958Z", + "new_balance":"2592.90", + "value":"-0.44" + } + }, + { + "id":"0f0a6520-e1f4-4e9d-a737-53aa91686bc2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T19:23:34.604Z", + "completed":"2017-04-09T19:23:34.604Z", + "new_balance":"2590.79", + "value":"-2.11" + } + }, + { + "id":"99b73deb-f03a-4e42-bc4a-7808d10a1b19", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T08:47:20.751Z", + "completed":"2017-04-10T08:47:20.751Z", + "new_balance":"2586.31", + "value":"-4.48" + } + }, + { + "id":"12400e4d-a122-4167-8a51-1bff4bf73bc0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T23:38:14.742Z", + "completed":"2017-04-17T23:38:14.742Z", + "new_balance":"2585.20", + "value":"-1.11" + } + }, + { + "id":"04f95287-2fc5-4bf9-b0a5-7cb7338e35e5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T17:35:03.487Z", + "completed":"2017-04-18T17:35:03.487Z", + "new_balance":"2582.39", + "value":"-2.81" + } + }, + { + "id":"bde88eae-8d5b-4bed-a582-68077ddf9eae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T18:34:13.892Z", + "completed":"2017-04-25T18:34:13.892Z", + "new_balance":"2576.99", + "value":"-5.40" + } + }, + { + "id":"116efbc0-5ee0-4f98-8b2c-3845823fc5c1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T02:43:31.267Z", + "completed":"2017-04-26T02:43:31.267Z", + "new_balance":"2576.55", + "value":"-0.44" + } + }, + { + "id":"2644b222-fbe7-487f-95a4-0dc9ae90c9ae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T04:27:11.157Z", + "completed":"2017-04-26T04:27:11.157Z", + "new_balance":"2570.73", + "value":"-5.82" + } + }, + { + "id":"f3866bff-83df-4b48-b969-316a490253d2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T01:10:04.329Z", + "completed":"2017-05-02T01:10:04.329Z", + "new_balance":"2565.58", + "value":"-5.15" + } + }, + { + "id":"76955e89-b100-4981-a0ba-2f27103d16ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T09:33:24.830Z", + "completed":"2017-05-02T09:33:24.830Z", + "new_balance":"2564.43", + "value":"-1.15" + } + }, + { + "id":"5c16a0a0-5436-4686-954a-3a4141b71f52", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:20:09.983Z", + "completed":"2017-05-02T10:20:09.983Z", + "new_balance":"2549.18", + "value":"-15.25" + } + }, + { + "id":"5c39191a-5ff2-44ca-8574-03bc5da8db82", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T11:41:35.888Z", + "completed":"2017-05-02T11:41:35.888Z", + "new_balance":"2546.86", + "value":"-2.32" + } + }, + { + "id":"36d1594b-011a-49e4-8358-0abbc1a17dfd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:40:08.424Z", + "completed":"2017-05-02T14:40:08.424Z", + "new_balance":"2488.63", + "value":"-58.23" + } + }, + { + "id":"c3aa85c5-5830-4f10-95a1-a7676ac2b8c2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T16:24:00.155Z", + "completed":"2017-05-02T16:24:00.155Z", + "new_balance":"2481.53", + "value":"-7.10" + } + }, + { + "id":"800ec03f-4d3a-4aa1-851b-a9611939ce90", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T21:06:55.990Z", + "completed":"2017-05-02T21:06:55.990Z", + "new_balance":"2478.09", + "value":"-3.44" + } + }, + { + "id":"5877a20e-bb00-45e1-bd3c-93d1d9ae45de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T21:46:31.098Z", + "completed":"2017-05-02T21:46:31.098Z", + "new_balance":"2660.79", + "value":"182.70" + } + }, + { + "id":"6f5f3ea1-8a7d-4b07-bb50-eb6386751e43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T05:02:54.033Z", + "completed":"2017-05-03T05:02:54.033Z", + "new_balance":"2658.29", + "value":"-2.50" + } + }, + { + "id":"bd07677b-f621-4907-b6a8-bfad9e36e76b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T05:47:04.679Z", + "completed":"2017-05-03T05:47:04.679Z", + "new_balance":"2656.19", + "value":"-2.10" + } + }, + { + "id":"de3ad16d-5328-4b1c-ac0f-96f9778478ea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T05:19:28.000Z", + "completed":"2017-05-04T05:19:28.000Z", + "new_balance":"2652.86", + "value":"-3.33" + } + }, + { + "id":"53a96872-9c3c-4a78-ad5e-7f5f6df23d51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T22:50:19.755Z", + "completed":"2017-05-04T22:50:19.755Z", + "new_balance":"2650.46", + "value":"-2.40" + } + }, + { + "id":"8b45fe76-0ee3-46fa-816c-31cb3e7c5dd6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T00:16:50.899Z", + "completed":"2017-05-05T00:16:50.899Z", + "new_balance":"2643.27", + "value":"-7.19" + } + }, + { + "id":"38fa1bd0-6bdb-487e-b401-d37aeec40823", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T11:01:48.687Z", + "completed":"2017-05-07T11:01:48.687Z", + "new_balance":"2642.79", + "value":"-0.48" + } + }, + { + "id":"4971eac1-f916-48a8-819f-88e128519d1f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T14:58:34.768Z", + "completed":"2017-05-07T14:58:34.768Z", + "new_balance":"2639.76", + "value":"-3.03" + } + }, + { + "id":"63f337ed-e7ab-43ce-be10-f88fbcd682c0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T08:03:14.365Z", + "completed":"2017-05-12T08:03:14.365Z", + "new_balance":"2637.31", + "value":"-2.45" + } + }, + { + "id":"48856915-03d5-4bc0-87c9-23c0db1fecfb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T21:22:30.011Z", + "completed":"2017-05-12T21:22:30.011Z", + "new_balance":"2634.17", + "value":"-3.14" + } + }, + { + "id":"523b21ec-136e-4630-8790-fa1c0afd77d8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T00:25:24.387Z", + "completed":"2017-05-14T00:25:24.387Z", + "new_balance":"2630.69", + "value":"-3.48" + } + }, + { + "id":"c33fcb43-f23f-4eb6-88e0-dfdaa4c837c4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T19:18:20.713Z", + "completed":"2017-05-16T19:18:20.713Z", + "new_balance":"2630.22", + "value":"-0.47" + } + }, + { + "id":"e3ff5df1-512e-4736-ab4a-99063ecdc0e4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T21:37:46.620Z", + "completed":"2017-05-18T21:37:46.620Z", + "new_balance":"2629.45", + "value":"-0.77" + } + }, + { + "id":"2fdadd61-2071-43ad-82ec-acf633881941", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T06:20:02.419Z", + "completed":"2017-05-20T06:20:02.419Z", + "new_balance":"2633.53", + "value":"4.08" + } + }, + { + "id":"563cfbbf-b23c-4532-a943-b050a8d15f45", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T01:19:23.117Z", + "completed":"2017-05-21T01:19:23.117Z", + "new_balance":"2627.10", + "value":"-6.43" + } + }, + { + "id":"dae670c7-f3f6-41c1-8f60-5f2ab77b9d7b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T08:49:24.295Z", + "completed":"2017-05-21T08:49:24.295Z", + "new_balance":"2622.98", + "value":"-4.12" + } + }, + { + "id":"b07fa395-df38-4184-b11a-a283ad4c5ff7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T06:20:24.208Z", + "completed":"2017-05-27T06:20:24.208Z", + "new_balance":"2620.43", + "value":"-2.55" + } + }, + { + "id":"2f82aa18-0cd5-4312-b5c5-3e8096885b35", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T09:03:53.562Z", + "completed":"2017-05-27T09:03:53.562Z", + "new_balance":"2617.49", + "value":"-2.94" + } + }, + { + "id":"64a736ee-628c-4e1d-8907-04ee62f5c7af", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T00:04:37.348Z", + "completed":"2017-06-01T00:04:37.348Z", + "new_balance":"2614.05", + "value":"-3.44" + } + }, + { + "id":"fbdf4aad-eff8-46e7-b393-200d6d9c058c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T05:37:53.153Z", + "completed":"2017-06-01T05:37:53.153Z", + "new_balance":"2796.75", + "value":"182.70" + } + }, + { + "id":"619cebce-36db-41f4-90a1-f34ede6e9aaa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T07:14:28.450Z", + "completed":"2017-06-01T07:14:28.450Z", + "new_balance":"2738.52", + "value":"-58.23" + } + }, + { + "id":"3bed01fa-a6c7-4080-82a7-65f5f0a3fd96", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T09:33:02.284Z", + "completed":"2017-06-01T09:33:02.284Z", + "new_balance":"2733.37", + "value":"-5.15" + } + }, + { + "id":"2fc95ad5-c2d4-4372-965a-1fa060c03720", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T13:05:45.123Z", + "completed":"2017-06-01T13:05:45.123Z", + "new_balance":"2731.05", + "value":"-2.32" + } + }, + { + "id":"fdafb779-7253-4d66-9718-ae56243a4fea", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T21:51:51.061Z", + "completed":"2017-06-01T21:51:51.061Z", + "new_balance":"2715.80", + "value":"-15.25" + } + }, + { + "id":"ad108ba8-5771-4078-ba5b-fdd8d671e21f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T03:34:19.756Z", + "completed":"2017-06-04T03:34:19.756Z", + "new_balance":"2708.70", + "value":"-7.10" + } + }, + { + "id":"1f8c90df-8f78-4e8e-887a-9d2217d1082a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T05:12:23.381Z", + "completed":"2017-06-04T05:12:23.381Z", + "new_balance":"2696.74", + "value":"-11.96" + } + }, + { + "id":"3befd0a9-d2a7-4bf0-9878-d95d461b10c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T11:41:19.591Z", + "completed":"2017-06-11T11:41:19.591Z", + "new_balance":"2693.44", + "value":"-3.30" + } + }, + { + "id":"0b1e195f-dfc3-4a40-8fa7-262de35fd794", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T19:02:51.889Z", + "completed":"2017-06-12T19:02:51.889Z", + "new_balance":"2692.19", + "value":"-1.25" + } + }, + { + "id":"6a05119f-ce0a-4051-9755-600b07ab8772", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T00:34:00.197Z", + "completed":"2017-06-13T00:34:00.197Z", + "new_balance":"2684.89", + "value":"-7.30" + } + }, + { + "id":"e8dfbc14-9b64-43be-84e0-cf11d86ffc51", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T02:50:02.161Z", + "completed":"2017-06-13T02:50:02.161Z", + "new_balance":"2684.13", + "value":"-0.76" + } + }, + { + "id":"1e1080a8-2f97-4c40-9af4-56c168270335", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T14:39:30.089Z", + "completed":"2017-06-16T14:39:30.089Z", + "new_balance":"2680.09", + "value":"-4.04" + } + }, + { + "id":"ee736880-fee5-42cc-bbbc-bac58a14afff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T11:32:17.599Z", + "completed":"2017-06-17T11:32:17.599Z", + "new_balance":"2679.69", + "value":"-0.40" + } + }, + { + "id":"993ecacc-e463-41e5-bd31-fb9495d0b03f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T17:06:55.820Z", + "completed":"2017-06-17T17:06:55.820Z", + "new_balance":"2672.39", + "value":"-7.30" + } + }, + { + "id":"c3c46c46-cec7-4f84-8892-1e679a4d986a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:16:19.919Z", + "completed":"2017-06-18T05:16:19.919Z", + "new_balance":"2667.12", + "value":"-5.27" + } + }, + { + "id":"fa084c4e-315f-4025-9e56-f6fdd60b5af4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:07:07.924Z", + "completed":"2017-06-19T02:07:07.924Z", + "new_balance":"2662.85", + "value":"-4.27" + } + }, + { + "id":"c6d48e63-315b-45e8-960f-6ab76f5875d0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T12:46:31.394Z", + "completed":"2017-06-19T12:46:31.394Z", + "new_balance":"2657.58", + "value":"-5.27" + } + }, + { + "id":"0e167ee9-a090-4c16-bee2-32e01f30523b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T07:44:46.804Z", + "completed":"2017-06-21T07:44:46.804Z", + "new_balance":"2657.04", + "value":"-0.54" + } + }, + { + "id":"34f6b020-65a4-44fc-b588-894b4a07a047", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T22:12:56.047Z", + "completed":"2017-06-21T22:12:56.047Z", + "new_balance":"2650.72", + "value":"-6.32" + } + }, + { + "id":"d67f3834-acfd-45c0-8940-d2ca545dd575", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T03:10:01.254Z", + "completed":"2017-06-23T03:10:01.254Z", + "new_balance":"2649.95", + "value":"-0.77" + } + }, + { + "id":"4d500de2-d418-4dbd-9360-18d1e58b6fbf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T13:52:34.560Z", + "completed":"2017-06-23T13:52:34.560Z", + "new_balance":"2647.70", + "value":"-2.25" + } + }, + { + "id":"a93eea55-dbbb-4a45-a5d5-c42a2cbf2973", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T05:13:21.281Z", + "completed":"2017-06-24T05:13:21.281Z", + "new_balance":"2646.65", + "value":"-1.05" + } + }, + { + "id":"9105821e-927e-4243-a6ce-68548caa2b60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T10:23:44.002Z", + "completed":"2017-06-24T10:23:44.002Z", + "new_balance":"2642.39", + "value":"-4.26" + } + }, + { + "id":"2db72581-6b2d-46dd-a541-b6411fff2ab2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T04:22:43.576Z", + "completed":"2017-06-28T04:22:43.576Z", + "new_balance":"2637.57", + "value":"-4.82" + } + }, + { + "id":"8fbfa23b-bc4d-4753-a6dc-cac6bd5c3aae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T08:57:30.387Z", + "completed":"2017-06-28T08:57:30.387Z", + "new_balance":"2637.05", + "value":"-0.52" + } + }, + { + "id":"aae7ad63-7085-4e69-8526-c73a03326920", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T19:08:45.324Z", + "completed":"2017-06-28T19:08:45.324Z", + "new_balance":"2627.26", + "value":"-9.79" + } + }, + { + "id":"a74368fa-98a5-4916-a962-d6530a18707e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T19:10:42.461Z", + "completed":"2017-06-28T19:10:42.461Z", + "new_balance":"2626.74", + "value":"-0.52" + } + }, + { + "id":"c6803244-d5ab-411e-b70a-b4df3e03563d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T06:02:20.877Z", + "completed":"2017-06-29T06:02:20.877Z", + "new_balance":"2622.45", + "value":"-4.29" + } + }, + { + "id":"a2014045-382e-4435-bd56-4c8e7229aad8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T12:31:38.650Z", + "completed":"2017-06-29T12:31:38.650Z", + "new_balance":"2615.49", + "value":"-6.96" + } + }, + { + "id":"d5dfadf8-79c4-4319-8206-3faa5a6830a8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T19:07:40.077Z", + "completed":"2017-06-29T19:07:40.077Z", + "new_balance":"2614.73", + "value":"-0.76" + } + }, + { + "id":"271c7b42-2076-4e5a-a127-f717136d4643", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T20:35:10.833Z", + "completed":"2017-06-29T20:35:10.833Z", + "new_balance":"2609.57", + "value":"-5.16" + } + }, + { + "id":"c3d8106e-048f-457c-acec-098fabb8d644", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:16:56.095Z", + "completed":"2017-06-29T21:16:56.095Z", + "new_balance":"2605.42", + "value":"-4.15" + } + }, + { + "id":"770b39f2-f11e-4ce0-863a-a74e7412bfc7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T22:01:08.103Z", + "completed":"2017-06-29T22:01:08.103Z", + "new_balance":"2599.10", + "value":"-6.32" + } + }, + { + "id":"97127a95-3be9-4b70-a716-0589dcb33408", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T04:27:22.562Z", + "completed":"2017-06-30T04:27:22.562Z", + "new_balance":"2598.19", + "value":"-0.91" + } + }, + { + "id":"8e5254f7-e8ba-4e7e-88af-30c63bcc68bb", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T05:25:49.204Z", + "completed":"2017-06-30T05:25:49.204Z", + "new_balance":"2594.64", + "value":"-3.55" + } + }, + { + "id":"974b7289-2344-45ce-8bb9-fc91be655c43", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T12:27:40.576Z", + "completed":"2017-06-30T12:27:40.576Z", + "new_balance":"2590.03", + "value":"-4.61" + } + }, + { + "id":"9f18c239-f200-44f0-a7d3-6880b724c0ee", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T22:04:59.932Z", + "completed":"2017-06-30T22:04:59.932Z", + "new_balance":"2589.44", + "value":"-0.59" + } + }, + { + "id":"ee9a3569-63d9-49b2-b50d-99ef211a968d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T00:48:21.622Z", + "completed":"2017-07-01T00:48:21.622Z", + "new_balance":"2586.00", + "value":"-3.44" + } + }, + { + "id":"2a601a6c-3e10-4f7f-99f3-d1e68624db0a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T01:57:27.202Z", + "completed":"2017-07-01T01:57:27.202Z", + "new_balance":"2558.50", + "value":"-27.50" + } + }, + { + "id":"3d693080-5bac-401d-854d-e5496a74d8e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T02:02:31.325Z", + "completed":"2017-07-01T02:02:31.325Z", + "new_balance":"2555.44", + "value":"-3.06" + } + }, + { + "id":"36f12714-3d31-45ce-8a36-7595b9d76a7c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T02:25:35.302Z", + "completed":"2017-07-01T02:25:35.302Z", + "new_balance":"2540.19", + "value":"-15.25" + } + }, + { + "id":"ac3bbe78-4e7a-4bc1-83ff-7c4a03e18a3e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T03:49:01.809Z", + "completed":"2017-07-01T03:49:01.809Z", + "new_balance":"2537.87", + "value":"-2.32" + } + }, + { + "id":"afc3a993-0da0-4af5-9991-eaea84c49edc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T13:24:34.336Z", + "completed":"2017-07-01T13:24:34.336Z", + "new_balance":"2532.72", + "value":"-5.15" + } + }, + { + "id":"1772f967-25b1-4948-9530-4018cbd71d9c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T14:03:18.523Z", + "completed":"2017-07-01T14:03:18.523Z", + "new_balance":"2474.49", + "value":"-58.23" + } + }, + { + "id":"63353b13-2f0f-4ff2-991c-21d47bf93657", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T15:52:09.585Z", + "completed":"2017-07-01T15:52:09.585Z", + "new_balance":"2471.75", + "value":"-2.74" + } + }, + { + "id":"56c295ad-42af-473d-9995-ae9865c2fd11", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T17:49:33.390Z", + "completed":"2017-07-01T17:49:33.390Z", + "new_balance":"2468.31", + "value":"-3.44" + } + }, + { + "id":"b803d68c-3796-4721-bfb4-77b446c73661", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T20:01:16.243Z", + "completed":"2017-07-01T20:01:16.243Z", + "new_balance":"2467.00", + "value":"-1.31" + } + }, + { + "id":"7d30ad93-7b5b-4c80-ba88-7dca9174adae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T04:46:31.242Z", + "completed":"2017-07-02T04:46:31.242Z", + "new_balance":"2459.90", + "value":"-7.10" + } + }, + { + "id":"49350e0f-3a83-49c2-938f-81ac68b0898d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T12:13:04.984Z", + "completed":"2017-07-03T12:13:04.984Z", + "new_balance":"2449.43", + "value":"-10.47" + } + }, + { + "id":"76097eb7-6576-49ca-9333-7c01a0dcfaa2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T01:13:17.908Z", + "completed":"2017-07-04T01:13:17.908Z", + "new_balance":"2447.65", + "value":"-1.78" + } + }, + { + "id":"8078d92a-d552-436c-805d-4ac301d6d0aa", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T14:28:57.993Z", + "completed":"2017-07-05T14:28:57.993Z", + "new_balance":"2440.46", + "value":"-7.19" + } + }, + { + "id":"2c1bf943-1e64-405d-882a-eb7d6cbb2524", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T16:00:24.481Z", + "completed":"2017-07-05T16:00:24.481Z", + "new_balance":"2430.82", + "value":"-9.64" + } + }, + { + "id":"052073ad-ea12-4d57-a224-0a91ce912a9b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T19:43:26.364Z", + "completed":"2017-07-06T19:43:26.364Z", + "new_balance":"2430.36", + "value":"-0.46" + } + }, + { + "id":"8ef8e296-0a44-4903-879f-25580b145fb3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T09:36:33.605Z", + "completed":"2017-07-11T09:36:33.605Z", + "new_balance":"2427.68", + "value":"-2.68" + } + }, + { + "id":"d42efa16-c7d2-48da-bb48-682371c0b6bf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T05:12:28.364Z", + "completed":"2017-07-12T05:12:28.364Z", + "new_balance":"2424.46", + "value":"-3.22" + } + }, + { + "id":"ddc30ff1-74e7-4303-847c-adb0a6cef56c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T07:38:56.759Z", + "completed":"2017-07-14T07:38:56.759Z", + "new_balance":"2422.93", + "value":"-1.53" + } + }, + { + "id":"2af1afb4-b860-48a1-84d1-38ee44b9c556", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T22:33:23.394Z", + "completed":"2017-07-16T22:33:23.394Z", + "new_balance":"2422.03", + "value":"-0.90" + } + }, + { + "id":"5c38c285-ae14-4ffa-8c7c-583d76d2cb50", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T20:05:41.020Z", + "completed":"2017-07-18T20:05:41.020Z", + "new_balance":"2419.92", + "value":"-2.11" + } + }, + { + "id":"01866891-a5aa-4a97-9614-85f97682b8d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T01:15:38.659Z", + "completed":"2017-07-20T01:15:38.659Z", + "new_balance":"2392.42", + "value":"-27.50" + } + }, + { + "id":"15f6942c-5e4c-4c00-89cd-4fb23e3c573a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T19:06:57.973Z", + "completed":"2017-07-20T19:06:57.973Z", + "new_balance":"2391.98", + "value":"-0.44" + } + }, + { + "id":"525f9d86-0947-4da0-9faf-d2d9572d164a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T01:07:37.197Z", + "completed":"2017-07-24T01:07:37.197Z", + "new_balance":"2390.87", + "value":"-1.11" + } + }, + { + "id":"55cac181-bd72-409b-ac00-a63de52ffdbc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T04:42:44.737Z", + "completed":"2017-07-24T04:42:44.737Z", + "new_balance":"2386.39", + "value":"-4.48" + } + }, + { + "id":"261cee96-bcea-4ced-9e4f-559a9537250b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T05:15:51.355Z", + "completed":"2017-07-25T05:15:51.355Z", + "new_balance":"2380.99", + "value":"-5.40" + } + }, + { + "id":"c86d26f9-f18b-43c5-8cd6-711c526092c1", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T07:32:31.468Z", + "completed":"2017-07-25T07:32:31.468Z", + "new_balance":"2378.18", + "value":"-2.81" + } + }, + { + "id":"1e38e64b-37bf-4cdf-987b-2f7d557fa574", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T07:55:52.838Z", + "completed":"2017-07-26T07:55:52.838Z", + "new_balance":"2372.36", + "value":"-5.82" + } + }, + { + "id":"84279a02-177c-4b5e-8c8c-91bcc8f193de", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T17:24:58.423Z", + "completed":"2017-07-27T17:24:58.423Z", + "new_balance":"2371.92", + "value":"-0.44" + } + }, + { + "id":"d7d47062-64ec-4ce7-8589-49f08eb6b63d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T00:13:49.337Z", + "completed":"2017-08-01T00:13:49.337Z", + "new_balance":"2356.67", + "value":"-15.25" + } + }, + { + "id":"48cf51c2-6e93-48f5-b721-5d66d872c14c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:56:56.590Z", + "completed":"2017-08-01T03:56:56.590Z", + "new_balance":"2539.37", + "value":"182.70" + } + }, + { + "id":"cfc9c962-4e3f-4a60-af9d-650484ebf0fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T04:06:23.612Z", + "completed":"2017-08-01T04:06:23.612Z", + "new_balance":"2534.22", + "value":"-5.15" + } + }, + { + "id":"0558d359-141a-4bc8-b1e9-ebf086e0e655", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T08:06:06.710Z", + "completed":"2017-08-01T08:06:06.710Z", + "new_balance":"2531.90", + "value":"-2.32" + } + }, + { + "id":"0a2170c5-8a8d-4321-83ec-a169d0ee9c34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T22:10:31.021Z", + "completed":"2017-08-01T22:10:31.021Z", + "new_balance":"2528.46", + "value":"-3.44" + } + }, + { + "id":"00f91247-e994-4c37-9741-0312a485d695", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T22:21:34.567Z", + "completed":"2017-08-01T22:21:34.567Z", + "new_balance":"2470.23", + "value":"-58.23" + } + }, + { + "id":"b9156751-2ad3-454d-9f94-d6b3833bcefc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T17:25:49.021Z", + "completed":"2017-08-02T17:25:49.021Z", + "new_balance":"2463.13", + "value":"-7.10" + } + }, + { + "id":"66585c7f-7117-491b-af61-aeb4b85feda5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T09:27:16.978Z", + "completed":"2017-08-03T09:27:16.978Z", + "new_balance":"2462.67", + "value":"-0.46" + } + }, + { + "id":"4cc658ae-35c4-498e-af4e-123492b77672", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T23:31:53.806Z", + "completed":"2017-08-04T23:31:53.806Z", + "new_balance":"2459.75", + "value":"-2.92" + } + }, + { + "id":"a99356c0-68c7-4cc2-94f3-24e99b87dcff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T11:16:19.889Z", + "completed":"2017-08-07T11:16:19.889Z", + "new_balance":"2457.25", + "value":"-2.50" + } + }, + { + "id":"5c43b4b9-cae7-4a2e-9afa-cb386706cb34", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T02:08:50.191Z", + "completed":"2017-08-09T02:08:50.191Z", + "new_balance":"2453.92", + "value":"-3.33" + } + }, + { + "id":"dbc61095-ea7e-4c93-b2d0-1ba88daeb8e5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T17:51:35.757Z", + "completed":"2017-08-09T17:51:35.757Z", + "new_balance":"2451.52", + "value":"-2.40" + } + }, + { + "id":"22db3113-1860-4413-bca6-b513cb894e6b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T05:25:32.596Z", + "completed":"2017-08-10T05:25:32.596Z", + "new_balance":"2444.33", + "value":"-7.19" + } + }, + { + "id":"f0be5825-9a29-417d-bb79-b9b5f7febcd5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T13:38:43.891Z", + "completed":"2017-08-14T13:38:43.891Z", + "new_balance":"2443.85", + "value":"-0.48" + } + }, + { + "id":"1d2e6965-6da1-4328-b069-d80108172a62", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T10:24:38.908Z", + "completed":"2017-08-15T10:24:38.908Z", + "new_balance":"2440.63", + "value":"-3.22" + } + }, + { + "id":"597c3133-4455-479a-a37a-cc4066bf88b7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T22:38:44.253Z", + "completed":"2017-08-15T22:38:44.253Z", + "new_balance":"2437.60", + "value":"-3.03" + } + }, + { + "id":"1fc37995-0078-4406-9ec3-58577a470619", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T16:49:48.872Z", + "completed":"2017-08-16T16:49:48.872Z", + "new_balance":"2434.46", + "value":"-3.14" + } + }, + { + "id":"57b09a9d-6836-4d1b-b158-13bd8367abf5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T20:35:59.109Z", + "completed":"2017-08-17T20:35:59.109Z", + "new_balance":"2430.98", + "value":"-3.48" + } + }, + { + "id":"64061e60-be18-44c3-8949-48f5a2506b96", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T05:39:17.408Z", + "completed":"2017-08-20T05:39:17.408Z", + "new_balance":"2430.51", + "value":"-0.47" + } + }, + { + "id":"1b86ce3c-5188-4183-9906-fb0f724fb374", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T20:41:32.045Z", + "completed":"2017-08-20T20:41:32.045Z", + "new_balance":"2429.74", + "value":"-0.77" + } + }, + { + "id":"8d51b33f-e66c-4d3e-bc76-82695435d9a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T05:49:41.126Z", + "completed":"2017-08-22T05:49:41.126Z", + "new_balance":"2433.82", + "value":"4.08" + } + }, + { + "id":"9944fbac-d8bc-47f8-86b2-322a8ba645c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T03:49:50.541Z", + "completed":"2017-08-23T03:49:50.541Z", + "new_balance":"2427.39", + "value":"-6.43" + } + }, + { + "id":"882e047d-f2c8-4aed-9312-c1ce790ab40a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T13:03:56.192Z", + "completed":"2017-08-23T13:03:56.192Z", + "new_balance":"2423.27", + "value":"-4.12" + } + }, + { + "id":"a7d22dbf-5496-4ab0-849b-c5e1d90d2358", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T05:46:32.782Z", + "completed":"2017-08-28T05:46:32.782Z", + "new_balance":"2420.33", + "value":"-2.94" + } + }, + { + "id":"c1859ada-4be8-44a1-b08a-f23158bb7148", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T15:34:51.088Z", + "completed":"2017-08-28T15:34:51.088Z", + "new_balance":"2417.78", + "value":"-2.55" + } + }, + { + "id":"ccc07dc2-2ce3-42c9-b0e2-25877e32704e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T01:43:12.331Z", + "completed":"2017-09-01T01:43:12.331Z", + "new_balance":"2412.63", + "value":"-5.15" + } + }, + { + "id":"195c10c7-8a37-49e7-8815-df233b152bfc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T05:31:42.001Z", + "completed":"2017-09-01T05:31:42.001Z", + "new_balance":"2595.33", + "value":"182.70" + } + }, + { + "id":"cf49ffe6-e12b-4580-aa83-ebadd5573422", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T08:14:37.842Z", + "completed":"2017-09-01T08:14:37.842Z", + "new_balance":"2591.89", + "value":"-3.44" + } + }, + { + "id":"1c10f9b0-41dd-4a88-9bcd-6cb4bb23bd89", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:56:32.273Z", + "completed":"2017-09-01T14:56:32.273Z", + "new_balance":"2533.66", + "value":"-58.23" + } + }, + { + "id":"b80e691d-6069-452a-982c-c8f1eab5af03", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T18:32:07.072Z", + "completed":"2017-09-01T18:32:07.072Z", + "new_balance":"2531.34", + "value":"-2.32" + } + }, + { + "id":"dad247fe-bbc9-45b7-859d-ce72c7c439f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:43:05.777Z", + "completed":"2017-09-01T21:43:05.777Z", + "new_balance":"2516.09", + "value":"-15.25" + } + }, + { + "id":"9854661b-4a37-4246-86a3-2c624a82905d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T06:52:51.614Z", + "completed":"2017-09-02T06:52:51.614Z", + "new_balance":"2508.99", + "value":"-7.10" + } + }, + { + "id":"733256f7-4dd6-419e-bdc4-b882bb55a909", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:29:22.354Z", + "completed":"2017-09-04T02:29:22.354Z", + "new_balance":"2508.23", + "value":"-0.76" + } + }, + { + "id":"e0790f67-beb7-469b-b5bf-1f4f6866ef2b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T17:25:39.822Z", + "completed":"2017-09-04T17:25:39.822Z", + "new_balance":"2500.93", + "value":"-7.30" + } + }, + { + "id":"b1d161aa-e407-4a80-a568-b53addcec583", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T21:59:10.543Z", + "completed":"2017-09-04T21:59:10.543Z", + "new_balance":"2497.63", + "value":"-3.30" + } + }, + { + "id":"5df91e0b-e5ce-4ff7-b625-cce4bebf80d5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T22:35:14.810Z", + "completed":"2017-09-04T22:35:14.810Z", + "new_balance":"2496.38", + "value":"-1.25" + } + }, + { + "id":"d268fb40-012d-4808-a586-616400c38db4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T01:32:08.543Z", + "completed":"2017-09-05T01:32:08.543Z", + "new_balance":"2495.98", + "value":"-0.40" + } + }, + { + "id":"c215a3ce-3136-4f01-a517-1087b8ffb8ab", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T11:32:22.254Z", + "completed":"2017-09-05T11:32:22.254Z", + "new_balance":"2491.94", + "value":"-4.04" + } + }, + { + "id":"91df807f-2dc9-4c37-89d9-f621c09c9501", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T08:31:47.450Z", + "completed":"2017-09-06T08:31:47.450Z", + "new_balance":"2486.67", + "value":"-5.27" + } + }, + { + "id":"d5fdf64e-d0cf-45d7-9553-98cb61332512", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T16:47:18.697Z", + "completed":"2017-09-06T16:47:18.697Z", + "new_balance":"2479.37", + "value":"-7.30" + } + }, + { + "id":"6b5d0d62-0573-40b8-944b-1b44f593eed2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T08:46:06.482Z", + "completed":"2017-09-08T08:46:06.482Z", + "new_balance":"2474.10", + "value":"-5.27" + } + }, + { + "id":"5a4c7371-e588-4252-8f76-a47ce600f70a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T17:39:52.909Z", + "completed":"2017-09-08T17:39:52.909Z", + "new_balance":"2469.83", + "value":"-4.27" + } + }, + { + "id":"49d7c69f-32a1-4660-a3b0-f5813fb179e2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T18:18:22.847Z", + "completed":"2017-09-10T18:18:22.847Z", + "new_balance":"2463.51", + "value":"-6.32" + } + }, + { + "id":"e89730ad-192e-4e66-abe2-fd8a1e7d1f60", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T19:22:35.829Z", + "completed":"2017-09-10T19:22:35.829Z", + "new_balance":"2462.97", + "value":"-0.54" + } + }, + { + "id":"089fcc2f-da74-4d2b-bb42-3b56513304bf", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T11:55:34.441Z", + "completed":"2017-09-11T11:55:34.441Z", + "new_balance":"2462.20", + "value":"-0.77" + } + }, + { + "id":"48aeff24-07ea-41e2-8f2e-eeabad9c16ef", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:43:13.720Z", + "completed":"2017-09-12T01:43:13.720Z", + "new_balance":"2459.95", + "value":"-2.25" + } + }, + { + "id":"e2cefa89-9a03-4a67-9f95-d21e121614ce", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T21:11:16.113Z", + "completed":"2017-09-12T21:11:16.113Z", + "new_balance":"2458.90", + "value":"-1.05" + } + }, + { + "id":"f24b52c6-9456-4f77-ac78-f4b8a7979e83", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T14:46:20.506Z", + "completed":"2017-09-13T14:46:20.506Z", + "new_balance":"2454.64", + "value":"-4.26" + } + }, + { + "id":"cf63b413-d272-4a01-a5f8-581aaf284a57", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T00:40:49.686Z", + "completed":"2017-09-16T00:40:49.686Z", + "new_balance":"2454.12", + "value":"-0.52" + } + }, + { + "id":"9b9ab12a-afba-49e2-83ca-665acd819cdc", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T03:40:54.409Z", + "completed":"2017-09-17T03:40:54.409Z", + "new_balance":"2444.33", + "value":"-9.79" + } + }, + { + "id":"2af4907e-e1a3-471e-8d98-4475f1ef3210", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T21:02:20.255Z", + "completed":"2017-09-17T21:02:20.255Z", + "new_balance":"2439.51", + "value":"-4.82" + } + }, + { + "id":"dfa0172e-ebcb-492c-bed6-e5be692f2e53", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T19:58:45.241Z", + "completed":"2017-09-18T19:58:45.241Z", + "new_balance":"2438.99", + "value":"-0.52" + } + }, + { + "id":"c57ea705-6d4e-42ad-9ef4-b513b5fe94d6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T00:25:53.244Z", + "completed":"2017-09-19T00:25:53.244Z", + "new_balance":"2434.84", + "value":"-4.15" + } + }, + { + "id":"87159428-3db2-47f3-8e1c-bb05a4b19308", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T22:44:45.429Z", + "completed":"2017-09-19T22:44:45.429Z", + "new_balance":"2428.52", + "value":"-6.32" + } + }, + { + "id":"25a0bfce-14fa-424e-a930-4ad522feb54d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T22:59:35.933Z", + "completed":"2017-09-19T22:59:35.933Z", + "new_balance":"2424.23", + "value":"-4.29" + } + }, + { + "id":"f456a6de-b008-471f-8988-aa58f9257150", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T07:48:42.108Z", + "completed":"2017-09-20T07:48:42.108Z", + "new_balance":"2417.27", + "value":"-6.96" + } + }, + { + "id":"fa57c400-0bce-47bd-b3e0-e952cb80863c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T11:07:49.034Z", + "completed":"2017-09-20T11:07:49.034Z", + "new_balance":"2412.11", + "value":"-5.16" + } + }, + { + "id":"bd69843c-dbd1-464e-954d-7fe247eb0fa2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T00:42:07.267Z", + "completed":"2017-09-21T00:42:07.267Z", + "new_balance":"2411.35", + "value":"-0.76" + } + }, + { + "id":"0fe8a6f9-230c-480d-bb40-092b602efe4b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T08:00:48.409Z", + "completed":"2017-09-21T08:00:48.409Z", + "new_balance":"2410.76", + "value":"-0.59" + } + }, + { + "id":"76d59278-073c-4218-9e9f-dc965b441d0c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T14:44:21.637Z", + "completed":"2017-09-23T14:44:21.637Z", + "new_balance":"2409.85", + "value":"-0.91" + } + }, + { + "id":"792c9714-234e-478b-9532-7113951fbb1c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T18:12:10.851Z", + "completed":"2017-09-23T18:12:10.851Z", + "new_balance":"2405.24", + "value":"-4.61" + } + }, + { + "id":"5b5bda44-b98a-4a34-a13b-b77d1c2a1095", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T00:23:07.029Z", + "completed":"2017-09-24T00:23:07.029Z", + "new_balance":"2401.69", + "value":"-3.55" + } + }, + { + "id":"6bad6ca3-f342-46bf-9890-f8fb9530576e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T15:55:21.688Z", + "completed":"2017-09-25T15:55:21.688Z", + "new_balance":"2398.63", + "value":"-3.06" + } + }, + { + "id":"2f53b431-7395-4116-bb99-9277d00b2fd5", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T17:43:15.032Z", + "completed":"2017-09-25T17:43:15.032Z", + "new_balance":"2397.32", + "value":"-1.31" + } + }, + { + "id":"e423cab4-bfb0-4689-8696-6bf28b966b1d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T22:24:12.492Z", + "completed":"2017-09-27T22:24:12.492Z", + "new_balance":"2369.82", + "value":"-27.50" + } + }, + { + "id":"8a232d6b-f8b8-460e-a798-318130713797", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T15:50:14.193Z", + "completed":"2017-09-29T15:50:14.193Z", + "new_balance":"2367.08", + "value":"-2.74" + } + }, + { + "id":"0bc1c939-9897-4492-9fb1-b72411c2705e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T10:56:19.841Z", + "completed":"2017-10-01T10:56:19.841Z", + "new_balance":"2308.85", + "value":"-58.23" + } + }, + { + "id":"9c2629f9-669d-4eed-8c6d-65262e5a0776", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T11:05:16.968Z", + "completed":"2017-10-01T11:05:16.968Z", + "new_balance":"2303.70", + "value":"-5.15" + } + }, + { + "id":"32c45b50-55a6-4b54-a1b4-f22667ff21bd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T18:20:28.853Z", + "completed":"2017-10-01T18:20:28.853Z", + "new_balance":"2301.38", + "value":"-2.32" + } + }, + { + "id":"ae3cc294-3a2e-49f1-a41b-6c52b730f67a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T20:48:55.616Z", + "completed":"2017-10-01T20:48:55.616Z", + "new_balance":"2286.13", + "value":"-15.25" + } + }, + { + "id":"d9e064bc-7fab-4f84-a88d-c33e4eb59bae", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T20:41:01.214Z", + "completed":"2017-10-02T20:41:01.214Z", + "new_balance":"2279.03", + "value":"-7.10" + } + }, + { + "id":"7970e8cf-da9e-43f6-b085-61e160c11900", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T22:09:51.372Z", + "completed":"2017-10-02T22:09:51.372Z", + "new_balance":"2269.34", + "value":"-9.69" + } + }, + { + "id":"c3d389fe-c833-4144-a12b-2062739ed353", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T01:00:27.086Z", + "completed":"2017-10-03T01:00:27.086Z", + "new_balance":"2241.84", + "value":"-27.50" + } + }, + { + "id":"b0881bc0-ec21-4df8-b1a2-e74fe7578531", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T02:31:02.333Z", + "completed":"2017-10-03T02:31:02.333Z", + "new_balance":"2238.93", + "value":"-2.91" + } + }, + { + "id":"07a96489-086f-4474-9b5d-6ef9208dc5dd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T04:29:26.726Z", + "completed":"2017-10-03T04:29:26.726Z", + "new_balance":"2182.12", + "value":"-56.81" + } + }, + { + "id":"5b2d88a5-1b7a-4a4b-87ea-ff234e7f71ff", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:21:06.388Z", + "completed":"2017-10-03T05:21:06.388Z", + "new_balance":"2178.34", + "value":"-3.78" + } + }, + { + "id":"3cbcb1aa-0be2-4e36-b414-352ad7c63058", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T09:09:01.800Z", + "completed":"2017-10-03T09:09:01.800Z", + "new_balance":"2165.24", + "value":"-13.10" + } + }, + { + "id":"cb5628d5-e730-49fa-998f-7628245e610f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T22:29:21.275Z", + "completed":"2017-10-04T22:29:21.275Z", + "new_balance":"2158.05", + "value":"-7.19" + } + }, + { + "id":"03f5c201-5796-46b0-9679-46300903e705", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T04:44:07.684Z", + "completed":"2017-10-05T04:44:07.684Z", + "new_balance":"2155.37", + "value":"-2.68" + } + }, + { + "id":"f6823ecd-70d7-4abd-ba10-66a44eb8f412", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T07:35:48.213Z", + "completed":"2017-10-05T07:35:48.213Z", + "new_balance":"2154.91", + "value":"-0.46" + } + }, + { + "id":"bc86dbe0-7989-4418-8d4c-1cd172fdcc61", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T12:15:55.419Z", + "completed":"2017-10-07T12:15:55.419Z", + "new_balance":"2151.69", + "value":"-3.22" + } + }, + { + "id":"224d92dd-1a7e-4db8-9992-c8585073be9a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T21:29:02.428Z", + "completed":"2017-10-07T21:29:02.428Z", + "new_balance":"2150.16", + "value":"-1.53" + } + }, + { + "id":"4e1a9cff-bbe6-4ed7-8ec6-86df8aee23ca", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T10:49:44.841Z", + "completed":"2017-10-08T10:49:44.841Z", + "new_balance":"2149.26", + "value":"-0.90" + } + }, + { + "id":"a835e275-5515-4314-8044-9ae58e91cc67", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T16:58:59.446Z", + "completed":"2017-10-09T16:58:59.446Z", + "new_balance":"2121.76", + "value":"-27.50" + } + }, + { + "id":"e35e5027-2ced-4b7e-8cbc-8e73ee812cf9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T19:47:47.412Z", + "completed":"2017-10-09T19:47:47.412Z", + "new_balance":"2119.65", + "value":"-2.11" + } + }, + { + "id":"f0f94f6a-94d0-4292-9267-fa405ae837f0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T21:46:53.846Z", + "completed":"2017-10-09T21:46:53.846Z", + "new_balance":"2119.21", + "value":"-0.44" + } + }, + { + "id":"60d03653-ce93-46eb-92af-64e466ef9afd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:22:56.666Z", + "completed":"2017-10-10T19:22:56.666Z", + "new_balance":"2114.73", + "value":"-4.48" + } + }, + { + "id":"88cb4b19-cec4-496c-b499-ccf57522f811", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T21:36:34.232Z", + "completed":"2017-10-17T21:36:34.232Z", + "new_balance":"2113.62", + "value":"-1.11" + } + }, + { + "id":"338aed5b-7042-42c7-aa0d-cb10b3f54546", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T08:45:08.972Z", + "completed":"2017-10-18T08:45:08.972Z", + "new_balance":"2110.81", + "value":"-2.81" + } + }, + { + "id":"73610147-9202-46b9-9f4f-33c131212bd2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T12:17:31.836Z", + "completed":"2017-10-25T12:17:31.836Z", + "new_balance":"2105.41", + "value":"-5.40" + } + }, + { + "id":"209b6541-f82a-4374-b0e3-57036cb30dc3", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T00:48:48.985Z", + "completed":"2017-10-26T00:48:48.985Z", + "new_balance":"2099.59", + "value":"-5.82" + } + }, + { + "id":"33932179-3ff8-484e-b429-fb06c128aa89", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T07:34:28.995Z", + "completed":"2017-10-26T07:34:28.995Z", + "new_balance":"2099.15", + "value":"-0.44" + } + }, + { + "id":"45e49e8c-fc6d-493e-8900-d6d5c890a0fe", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T01:16:40.335Z", + "completed":"2017-11-02T01:16:40.335Z", + "new_balance":"2040.92", + "value":"-58.23" + } + }, + { + "id":"e3132506-0e60-4504-b7d2-aa0a7fa45b85", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T05:53:11.447Z", + "completed":"2017-11-02T05:53:11.447Z", + "new_balance":"2223.62", + "value":"182.70" + } + }, + { + "id":"3de00372-caa7-4226-9a02-87df8d3bc1f0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T15:48:02.025Z", + "completed":"2017-11-02T15:48:02.025Z", + "new_balance":"2220.18", + "value":"-3.44" + } + }, + { + "id":"3478a5c3-5986-4a71-a19c-bd0ad3d49c27", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T18:16:33.246Z", + "completed":"2017-11-02T18:16:33.246Z", + "new_balance":"2217.86", + "value":"-2.32" + } + }, + { + "id":"ccb034d8-b344-4e7d-ad21-678bd11be89f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T19:09:36.169Z", + "completed":"2017-11-02T19:09:36.169Z", + "new_balance":"2216.71", + "value":"-1.15" + } + }, + { + "id":"5ce040f0-00a6-4837-8156-d41c6b91ae76", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T19:50:38.376Z", + "completed":"2017-11-02T19:50:38.376Z", + "new_balance":"2209.61", + "value":"-7.10" + } + }, + { + "id":"9a96a2a0-3190-439f-8146-2d30dd0222a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T20:00:37.758Z", + "completed":"2017-11-02T20:00:37.758Z", + "new_balance":"2204.46", + "value":"-5.15" + } + }, + { + "id":"e316a49c-6a6c-450a-80c4-250f87ef869f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T23:23:24.379Z", + "completed":"2017-11-02T23:23:24.379Z", + "new_balance":"2189.21", + "value":"-15.25" + } + }, + { + "id":"576c7579-705a-4153-a8d5-a4fac8cd1a08", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T04:51:45.672Z", + "completed":"2017-11-06T04:51:45.672Z", + "new_balance":"2187.11", + "value":"-2.10" + } + }, + { + "id":"256c5710-b42e-45d3-8110-772c981b9ad8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T21:37:13.589Z", + "completed":"2017-11-07T21:37:13.589Z", + "new_balance":"2184.61", + "value":"-2.50" + } + }, + { + "id":"3120a734-a6b8-4390-a485-520ffe28b844", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T22:48:01.016Z", + "completed":"2017-11-07T22:48:01.016Z", + "new_balance":"2181.28", + "value":"-3.33" + } + }, + { + "id":"aca2cdf4-5258-41e5-ab6e-f8298b961b04", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T23:26:56.531Z", + "completed":"2017-11-07T23:26:56.531Z", + "new_balance":"2178.88", + "value":"-2.40" + } + }, + { + "id":"49d43f22-17d7-4f6e-a94b-3d2d134df73d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T08:16:24.062Z", + "completed":"2017-11-09T08:16:24.062Z", + "new_balance":"2178.40", + "value":"-0.48" + } + }, + { + "id":"c098da63-4990-4a01-a2fb-c408216cb67d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T19:42:35.703Z", + "completed":"2017-11-09T19:42:35.703Z", + "new_balance":"2171.21", + "value":"-7.19" + } + }, + { + "id":"85fc5cb0-5995-4cc5-9259-e0f3d22a1649", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T04:05:47.935Z", + "completed":"2017-11-12T04:05:47.935Z", + "new_balance":"2168.18", + "value":"-3.03" + } + }, + { + "id":"fdd52b99-13ee-4313-bfdc-1e43100e010d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T20:41:49.429Z", + "completed":"2017-11-12T20:41:49.429Z", + "new_balance":"2165.73", + "value":"-2.45" + } + }, + { + "id":"acdc6cc3-666a-4f20-8b4b-8e29c1365494", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T09:23:36.469Z", + "completed":"2017-11-14T09:23:36.469Z", + "new_balance":"2162.25", + "value":"-3.48" + } + }, + { + "id":"b574f10d-12c2-4408-aefc-a06580627300", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T14:55:35.857Z", + "completed":"2017-11-14T14:55:35.857Z", + "new_balance":"2159.11", + "value":"-3.14" + } + }, + { + "id":"bfc9a86b-7bf1-4c29-b457-bbd195c3335d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T17:38:33.292Z", + "completed":"2017-11-16T17:38:33.292Z", + "new_balance":"2158.64", + "value":"-0.47" + } + }, + { + "id":"c996f556-ce4d-421d-9e3e-be7c86777170", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T02:32:56.503Z", + "completed":"2017-11-18T02:32:56.503Z", + "new_balance":"2157.87", + "value":"-0.77" + } + }, + { + "id":"738f3c3d-a8bf-45a6-ad68-efaf48bf0183", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T17:07:14.968Z", + "completed":"2017-11-20T17:07:14.968Z", + "new_balance":"2161.95", + "value":"4.08" + } + }, + { + "id":"4ed030e8-31e1-46d8-baf7-1d62f02e657d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T03:07:42.413Z", + "completed":"2017-11-21T03:07:42.413Z", + "new_balance":"2155.52", + "value":"-6.43" + } + }, + { + "id":"95a8eae3-1c8e-40b6-9978-b783261b300b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T04:11:01.552Z", + "completed":"2017-11-21T04:11:01.552Z", + "new_balance":"2151.40", + "value":"-4.12" + } + }, + { + "id":"aca29b3d-752a-4156-9522-497cdb671d3c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T09:16:25.769Z", + "completed":"2017-11-27T09:16:25.769Z", + "new_balance":"2148.46", + "value":"-2.94" + } + }, + { + "id":"990276c5-fdfc-4240-8339-0338254da9c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T20:39:58.694Z", + "completed":"2017-11-27T20:39:58.694Z", + "new_balance":"2145.91", + "value":"-2.55" + } + }, + { + "id":"9cb01b39-8365-49df-b527-9ccc2c1e63d7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T02:10:39.680Z", + "completed":"2017-12-01T02:10:39.680Z", + "new_balance":"2087.68", + "value":"-58.23" + } + }, + { + "id":"c39e9e29-9023-49ed-9fda-50d0430c4571", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T05:42:55.946Z", + "completed":"2017-12-01T05:42:55.946Z", + "new_balance":"2072.43", + "value":"-15.25" + } + }, + { + "id":"0e2f3843-0338-491d-b15b-6f3e1fbc0ff8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T10:50:41.913Z", + "completed":"2017-12-01T10:50:41.913Z", + "new_balance":"2255.13", + "value":"182.70" + } + }, + { + "id":"2e7b2d91-fe78-4195-a858-ece2c272e94b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T20:21:24.397Z", + "completed":"2017-12-01T20:21:24.397Z", + "new_balance":"2252.81", + "value":"-2.32" + } + }, + { + "id":"0d1bb8ff-810a-4c40-8372-3b9b3bdcba9d", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:07:34.104Z", + "completed":"2017-12-01T22:07:34.104Z", + "new_balance":"2247.66", + "value":"-5.15" + } + }, + { + "id":"7ad78a0d-15d9-4864-84f6-d536b05b28a2", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T22:18:22.501Z", + "completed":"2017-12-01T22:18:22.501Z", + "new_balance":"2244.22", + "value":"-3.44" + } + }, + { + "id":"33d4e03d-0d43-4d95-8a28-ac770eda778c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T18:50:11.666Z", + "completed":"2017-12-04T18:50:11.666Z", + "new_balance":"2232.26", + "value":"-11.96" + } + }, + { + "id":"76ccdae7-9a0b-49da-a6f5-b1a119fbc4c8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T22:51:21.206Z", + "completed":"2017-12-04T22:51:21.206Z", + "new_balance":"2225.16", + "value":"-7.10" + } + }, + { + "id":"db96162f-cdd2-4447-ad14-392a94052398", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T02:38:18.260Z", + "completed":"2017-12-12T02:38:18.260Z", + "new_balance":"2221.86", + "value":"-3.30" + } + }, + { + "id":"9419a258-5deb-49bc-afbe-c84f235c50f8", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T17:23:43.128Z", + "completed":"2017-12-12T17:23:43.128Z", + "new_balance":"2220.61", + "value":"-1.25" + } + }, + { + "id":"2c935994-3b4b-4658-a418-57e2d0094d92", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T00:01:52.751Z", + "completed":"2017-12-13T00:01:52.751Z", + "new_balance":"2213.31", + "value":"-7.30" + } + }, + { + "id":"46472d9b-4ca6-468b-849f-26f65315d07e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T20:27:11.918Z", + "completed":"2017-12-13T20:27:11.918Z", + "new_balance":"2212.55", + "value":"-0.76" + } + }, + { + "id":"8608292f-20e7-454e-b522-e6ea29b49ed9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T13:09:06.024Z", + "completed":"2017-12-16T13:09:06.024Z", + "new_balance":"2208.51", + "value":"-4.04" + } + }, + { + "id":"c4b24bf3-efbf-4895-abe9-25ff73736851", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T04:35:36.491Z", + "completed":"2017-12-18T04:35:36.491Z", + "new_balance":"2208.11", + "value":"-0.40" + } + }, + { + "id":"ca60e5e8-6273-4eb6-a887-aced46db4585", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T16:00:29.926Z", + "completed":"2017-12-19T16:00:29.926Z", + "new_balance":"2200.81", + "value":"-7.30" + } + }, + { + "id":"2147aa50-51cf-47cd-9324-bd35cbf38acd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T18:02:46.957Z", + "completed":"2017-12-19T18:02:46.957Z", + "new_balance":"2195.54", + "value":"-5.27" + } + }, + { + "id":"09c978d5-9952-4948-8cae-eb16e6f3d239", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T15:14:35.148Z", + "completed":"2017-12-20T15:14:35.148Z", + "new_balance":"2191.27", + "value":"-4.27" + } + }, + { + "id":"3f948e07-f31e-43fa-ad06-78f372a36087", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T22:46:09.951Z", + "completed":"2017-12-21T22:46:09.951Z", + "new_balance":"2186.00", + "value":"-5.27" + } + }, + { + "id":"d2d662b4-a8ec-47a0-8cf1-fb3969972d71", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T00:13:40.899Z", + "completed":"2017-12-24T00:13:40.899Z", + "new_balance":"2181.74", + "value":"-4.26" + } + }, + { + "id":"71b0f3b9-90e6-482e-8add-150bc943e6b0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T03:17:01.814Z", + "completed":"2017-12-24T03:17:01.814Z", + "new_balance":"2180.97", + "value":"-0.77" + } + }, + { + "id":"0aba77e6-b7b0-4a6d-9afa-0e8b3a3b8c80", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T15:04:58.798Z", + "completed":"2017-12-24T15:04:58.798Z", + "new_balance":"2174.65", + "value":"-6.32" + } + }, + { + "id":"617ee6de-8c54-4dc8-b227-f5a0bcda7fc0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T18:27:56.213Z", + "completed":"2017-12-24T18:27:56.213Z", + "new_balance":"2173.60", + "value":"-1.05" + } + }, + { + "id":"e31e547e-d0b7-42e1-ad52-ac59538a0be0", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T20:08:59.824Z", + "completed":"2017-12-24T20:08:59.824Z", + "new_balance":"2171.35", + "value":"-2.25" + } + }, + { + "id":"d44f502c-e001-4122-b309-6456b5f12b9a", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T21:53:56.516Z", + "completed":"2017-12-24T21:53:56.516Z", + "new_balance":"2170.81", + "value":"-0.54" + } + }, + { + "id":"b58d46db-e8df-4a33-ae76-181dc1028567", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T01:32:42.483Z", + "completed":"2017-12-28T01:32:42.483Z", + "new_balance":"2170.29", + "value":"-0.52" + } + }, + { + "id":"18890b83-fa5e-4def-9655-ba0235f184b6", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T05:29:48.088Z", + "completed":"2017-12-28T05:29:48.088Z", + "new_balance":"2165.47", + "value":"-4.82" + } + }, + { + "id":"b79de7b8-7462-4437-846b-d4b3a3942e8b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T16:58:13.450Z", + "completed":"2017-12-28T16:58:13.450Z", + "new_balance":"2164.95", + "value":"-0.52" + } + }, + { + "id":"99fc9b24-614b-40cd-ba7c-a839ff14a6c7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T23:58:04.841Z", + "completed":"2017-12-28T23:58:04.841Z", + "new_balance":"2155.16", + "value":"-9.79" + } + }, + { + "id":"e9f9eb6d-b019-48c7-9205-c901b1345c9f", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T04:54:38.261Z", + "completed":"2017-12-29T04:54:38.261Z", + "new_balance":"2150.00", + "value":"-5.16" + } + }, + { + "id":"bf26bd5b-bb3f-4511-aa71-611d895462d4", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T09:00:12.583Z", + "completed":"2017-12-29T09:00:12.583Z", + "new_balance":"2145.85", + "value":"-4.15" + } + }, + { + "id":"6e811855-8df0-4f43-ba82-61d3dbb43b40", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T11:26:05.168Z", + "completed":"2017-12-29T11:26:05.168Z", + "new_balance":"2138.89", + "value":"-6.96" + } + }, + { + "id":"662f54cb-1dde-45c7-b4d1-9b85e9cf5492", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T12:23:18.943Z", + "completed":"2017-12-29T12:23:18.943Z", + "new_balance":"2138.13", + "value":"-0.76" + } + }, + { + "id":"68832c11-d475-44c1-87d2-a8404dfab44c", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T17:37:49.496Z", + "completed":"2017-12-29T17:37:49.496Z", + "new_balance":"2133.84", + "value":"-4.29" + } + }, + { + "id":"8b226ac4-6aa5-4b1f-99d4-22000bdd8e91", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T23:54:54.254Z", + "completed":"2017-12-29T23:54:54.254Z", + "new_balance":"2127.52", + "value":"-6.32" + } + }, + { + "id":"352f06a8-35f9-46ab-9815-91177c7de9fd", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T01:15:03.038Z", + "completed":"2017-12-30T01:15:03.038Z", + "new_balance":"2126.93", + "value":"-0.59" + } + }, + { + "id":"2e1e5294-c83b-439c-9745-69ca7b3307a7", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T02:42:18.123Z", + "completed":"2017-12-30T02:42:18.123Z", + "new_balance":"2122.32", + "value":"-4.61" + } + }, + { + "id":"dcbb2e81-d7bf-4af5-975e-41cc7186e690", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T07:22:39.976Z", + "completed":"2017-12-30T07:22:39.976Z", + "new_balance":"2118.77", + "value":"-3.55" + } + }, + { + "id":"cc97fc0f-7c7c-4823-99a4-f3422726769b", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T15:29:37.817Z", + "completed":"2017-12-30T15:29:37.817Z", + "new_balance":"2117.86", + "value":"-0.91" + } + }, + { + "id":"bbb75421-6331-4acf-bd34-46e9056a068e", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T11:06:18.321Z", + "completed":"2017-12-31T11:06:18.321Z", + "new_balance":"2115.12", + "value":"-2.74" + } + }, + { + "id":"e913e5c7-7338-4601-ada9-5149a262bdd9", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T15:47:44.507Z", + "completed":"2017-12-31T15:47:44.507Z", + "new_balance":"2112.06", + "value":"-3.06" + } + }, + { + "id":"b427f56e-dca4-4230-a77a-bc0349236321", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T19:15:05.291Z", + "completed":"2017-12-31T19:15:05.291Z", + "new_balance":"2084.56", + "value":"-27.50" + } + }, + { + "id":"07c791b8-3d4e-4660-9442-701bd4dfa565", + "this_account":{ + "id":"7977dd7c-08c5-4b5b-ab13-2ea67c7c1d7f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T20:46:27.234Z", + "completed":"2017-12-31T20:46:27.234Z", + "new_balance":"2083.25", + "value":"-1.31" + } + }, + { + "id":"162c8cba-d7c5-4551-949c-f2c929a0eec7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T03:02:38.058Z", + "completed":"2016-03-01T03:02:38.058Z", + "new_balance":"9706.69", + "value":"-45.51" + } + }, + { + "id":"c900c843-ba8e-42ef-b9bb-5b850692293f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T12:40:01.802Z", + "completed":"2016-03-02T12:40:01.802Z", + "new_balance":"9632.76", + "value":"-73.93" + } + }, + { + "id":"46e296d6-242d-477b-9213-365ca7f97c5a", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T16:24:34.660Z", + "completed":"2016-03-06T16:24:34.660Z", + "new_balance":"9581.66", + "value":"-51.10" + } + }, + { + "id":"033885c5-550e-4be1-8257-f57d56790be9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T05:20:13.248Z", + "completed":"2016-03-11T05:20:13.248Z", + "new_balance":"9574.97", + "value":"-6.69" + } + }, + { + "id":"7dada1be-2372-442c-833e-ef9629bffbc6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T06:40:45.142Z", + "completed":"2016-03-13T06:40:45.142Z", + "new_balance":"9571.27", + "value":"-3.70" + } + }, + { + "id":"6c10f94a-b6c0-49c0-85c9-d73ac6c6b38b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T18:51:02.693Z", + "completed":"2016-03-16T18:51:02.693Z", + "new_balance":"9254.06", + "value":"-317.21" + } + }, + { + "id":"7d807802-4d2b-4010-87d7-02fe76b13698", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T08:46:34.702Z", + "completed":"2016-03-17T08:46:34.702Z", + "new_balance":"9090.58", + "value":"-163.48" + } + }, + { + "id":"7210cad5-ec09-4ace-b36d-36c777afc234", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T10:28:13.325Z", + "completed":"2016-03-17T10:28:13.325Z", + "new_balance":"9048.24", + "value":"-42.34" + } + }, + { + "id":"3692b657-b81a-4929-b522-779615ba05e7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T09:11:12.400Z", + "completed":"2016-03-19T09:11:12.400Z", + "new_balance":"9044.54", + "value":"-3.70" + } + }, + { + "id":"7418ec28-3485-4bf6-9274-136645385e82", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T11:15:17.100Z", + "completed":"2016-03-21T11:15:17.100Z", + "new_balance":"9024.96", + "value":"-19.58" + } + }, + { + "id":"788eedbb-fbb8-496a-8051-b93312b5b47f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T03:15:41.434Z", + "completed":"2016-03-23T03:15:41.434Z", + "new_balance":"8979.45", + "value":"-45.51" + } + }, + { + "id":"bd0b5e32-1ed6-479b-866e-b04b69848917", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T02:58:21.754Z", + "completed":"2016-03-24T02:58:21.754Z", + "new_balance":"8972.76", + "value":"-6.69" + } + }, + { + "id":"f28c8bc1-21fc-4284-a742-b1959f425d33", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T07:40:39.357Z", + "completed":"2016-03-26T07:40:39.357Z", + "new_balance":"8959.75", + "value":"-13.01" + } + }, + { + "id":"e717e8d1-a825-44d8-a9f9-429b8119a483", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T05:34:37.384Z", + "completed":"2016-04-01T05:34:37.384Z", + "new_balance":"8946.74", + "value":"-13.01" + } + }, + { + "id":"0bbd54a8-3a3c-46d3-9208-72838429f433", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T13:19:28.601Z", + "completed":"2016-06-01T13:19:28.601Z", + "new_balance":"8901.23", + "value":"-45.51" + } + }, + { + "id":"e14aa531-3d4a-4b35-a972-b24572cc34c0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T00:35:00.076Z", + "completed":"2016-06-04T00:35:00.076Z", + "new_balance":"8827.30", + "value":"-73.93" + } + }, + { + "id":"3a0bc1be-84a5-4e30-8bcd-eac3d651f3a2", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T05:31:26.406Z", + "completed":"2016-06-19T05:31:26.406Z", + "new_balance":"8776.20", + "value":"-51.10" + } + }, + { + "id":"59501ab6-52c2-4806-bc77-e581642365fa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T20:48:05.839Z", + "completed":"2016-06-21T20:48:05.839Z", + "new_balance":"8769.51", + "value":"-6.69" + } + }, + { + "id":"6c5d322b-d615-48e3-b4e0-6a56d7fecec7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T07:14:35.819Z", + "completed":"2016-06-24T07:14:35.819Z", + "new_balance":"8765.81", + "value":"-3.70" + } + }, + { + "id":"de241d10-258e-4a92-a1db-9280755e72e6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T13:50:23.074Z", + "completed":"2016-06-28T13:50:23.074Z", + "new_balance":"8723.47", + "value":"-42.34" + } + }, + { + "id":"a063d58f-bddd-41b3-954c-4a8df2b75418", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T14:31:25.309Z", + "completed":"2016-06-28T14:31:25.309Z", + "new_balance":"8559.99", + "value":"-163.48" + } + }, + { + "id":"8a5a9a7c-2d8d-4e66-9bbb-164961b4f387", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T18:55:54.460Z", + "completed":"2016-06-28T18:55:54.460Z", + "new_balance":"8242.78", + "value":"-317.21" + } + }, + { + "id":"dc2f0f6a-53ff-443f-9223-80c476b4c66d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T01:32:37.273Z", + "completed":"2016-06-29T01:32:37.273Z", + "new_balance":"8239.08", + "value":"-3.70" + } + }, + { + "id":"57f136e4-d8db-46b2-b1bb-c6f2df6dfb82", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T10:25:31.157Z", + "completed":"2016-06-30T10:25:31.157Z", + "new_balance":"8219.50", + "value":"-19.58" + } + }, + { + "id":"955e2873-24df-4b9b-8efd-fd91d565f4e7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T11:35:19.688Z", + "completed":"2016-06-30T11:35:19.688Z", + "new_balance":"8173.99", + "value":"-45.51" + } + }, + { + "id":"5a1c032d-6cde-4fb4-abd4-ebfdd4d153c8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T18:48:45.516Z", + "completed":"2016-06-30T18:48:45.516Z", + "new_balance":"8167.30", + "value":"-6.69" + } + }, + { + "id":"54dc348d-9a36-415f-acd7-22c68a45c513", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T10:05:37.802Z", + "completed":"2016-09-01T10:05:37.802Z", + "new_balance":"8143.44", + "value":"-23.86" + } + }, + { + "id":"25e762e6-eb83-4b15-8e3a-4d3421ec6aaf", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T10:50:49.948Z", + "completed":"2016-09-02T10:50:49.948Z", + "new_balance":"8069.51", + "value":"-73.93" + } + }, + { + "id":"d10820d2-df17-42d4-85c0-e3bdcc20e5f3", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T12:42:59.030Z", + "completed":"2016-09-07T12:42:59.030Z", + "new_balance":"8018.41", + "value":"-51.10" + } + }, + { + "id":"8d5952ec-fdcd-4a7f-83ca-6de8b3d3a591", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T08:57:12.828Z", + "completed":"2016-09-11T08:57:12.828Z", + "new_balance":"8011.72", + "value":"-6.69" + } + }, + { + "id":"4dab886d-0d38-4415-bd7e-151a2781ade8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T04:08:46.078Z", + "completed":"2016-09-15T04:08:46.078Z", + "new_balance":"8000.81", + "value":"-10.91" + } + }, + { + "id":"cdd8616f-325f-4154-955e-b9fec896b828", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T17:49:08.598Z", + "completed":"2016-09-17T17:49:08.598Z", + "new_balance":"7958.47", + "value":"-42.34" + } + }, + { + "id":"cf156501-5bf0-42ce-b9c8-75139cf91b95", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T18:40:46.162Z", + "completed":"2016-09-17T18:40:46.162Z", + "new_balance":"7641.26", + "value":"-317.21" + } + }, + { + "id":"debc77ac-6151-4ee8-80a9-349219dfbcc9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T20:38:14.125Z", + "completed":"2016-09-17T20:38:14.125Z", + "new_balance":"7477.78", + "value":"-163.48" + } + }, + { + "id":"eb342c1e-10d1-44e7-9aa7-3a1bb69bb27a", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T09:25:42.941Z", + "completed":"2016-09-19T09:25:42.941Z", + "new_balance":"7474.08", + "value":"-3.70" + } + }, + { + "id":"03248398-b7c5-49c6-9cf8-b1528bb907aa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T15:58:13.307Z", + "completed":"2016-09-21T15:58:13.307Z", + "new_balance":"7454.50", + "value":"-19.58" + } + }, + { + "id":"b5a8f138-1f5f-4471-a288-43854d80560b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T18:19:43.706Z", + "completed":"2016-09-23T18:19:43.706Z", + "new_balance":"7408.99", + "value":"-45.51" + } + }, + { + "id":"f125e14c-a3c9-4d30-96a5-b0c1d577f5f8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T21:03:54.523Z", + "completed":"2016-09-24T21:03:54.523Z", + "new_balance":"7402.30", + "value":"-6.69" + } + }, + { + "id":"4c4c4f9c-753e-496b-a39b-d74bd267151d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T12:34:12.149Z", + "completed":"2016-09-27T12:34:12.149Z", + "new_balance":"7389.29", + "value":"-13.01" + } + }, + { + "id":"d0b941a0-dfa4-4b95-bbb0-b74936f337af", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T16:03:08.882Z", + "completed":"2016-10-01T16:03:08.882Z", + "new_balance":"7376.28", + "value":"-13.01" + } + }, + { + "id":"c4a5187b-70f2-4e44-9d11-6a8a9e5a9ff0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T05:33:17.778Z", + "completed":"2016-12-01T05:33:17.778Z", + "new_balance":"7330.77", + "value":"-45.51" + } + }, + { + "id":"fee5df7e-fe78-41c9-a321-9d9199598316", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T22:39:47.339Z", + "completed":"2016-12-04T22:39:47.339Z", + "new_balance":"7256.84", + "value":"-73.93" + } + }, + { + "id":"2b6a423f-5dac-4513-871f-c866f8593ad0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T18:34:53.252Z", + "completed":"2016-12-19T18:34:53.252Z", + "new_balance":"7205.74", + "value":"-51.10" + } + }, + { + "id":"8b3c87a4-1710-44a3-b2d6-85b632f0c64c", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T03:47:18.259Z", + "completed":"2016-12-24T03:47:18.259Z", + "new_balance":"7199.05", + "value":"-6.69" + } + }, + { + "id":"c1d27431-6ec1-44dd-8862-3271e478db83", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T11:01:27.216Z", + "completed":"2016-12-24T11:01:27.216Z", + "new_balance":"7195.35", + "value":"-3.70" + } + }, + { + "id":"e70f11ce-e3e6-4c06-a4f3-d7e63ad6284e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T11:17:54.907Z", + "completed":"2016-12-28T11:17:54.907Z", + "new_balance":"6878.14", + "value":"-317.21" + } + }, + { + "id":"f3fd2c0c-1fba-4b7d-9bbc-7a060d1e9a22", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T20:43:34.615Z", + "completed":"2016-12-28T20:43:34.615Z", + "new_balance":"6835.80", + "value":"-42.34" + } + }, + { + "id":"4b3cf477-b70d-44c4-8a0c-563de7e8c335", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T22:51:33.680Z", + "completed":"2016-12-28T22:51:33.680Z", + "new_balance":"6672.32", + "value":"-163.48" + } + }, + { + "id":"4d9ba57f-27a2-4a25-9700-87ada36d7d7b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T12:22:49.576Z", + "completed":"2016-12-29T12:22:49.576Z", + "new_balance":"6668.62", + "value":"-3.70" + } + }, + { + "id":"6bcb5082-0fbc-4072-94af-8c57f9c8a12c", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T02:03:22.859Z", + "completed":"2016-12-30T02:03:22.859Z", + "new_balance":"6649.04", + "value":"-19.58" + } + }, + { + "id":"2de62778-0f5a-4a38-9608-5ad852208638", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T06:40:59.960Z", + "completed":"2016-12-30T06:40:59.960Z", + "new_balance":"6603.53", + "value":"-45.51" + } + }, + { + "id":"9651a978-1d1a-435e-ab3b-ed0833270b86", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T12:19:59.251Z", + "completed":"2016-12-30T12:19:59.251Z", + "new_balance":"6596.84", + "value":"-6.69" + } + }, + { + "id":"4348f04f-6a12-4db4-86ff-111daba9937d", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T20:58:08.613Z", + "completed":"2017-03-01T20:58:08.613Z", + "new_balance":"6551.33", + "value":"-45.51" + } + }, + { + "id":"6d82f484-9968-43e8-b2d8-1dd557130f8e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T07:29:16.810Z", + "completed":"2017-03-02T07:29:16.810Z", + "new_balance":"6477.40", + "value":"-73.93" + } + }, + { + "id":"1edd79dc-f2bc-4344-be0a-54425857b93b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T07:35:23.616Z", + "completed":"2017-03-06T07:35:23.616Z", + "new_balance":"6426.30", + "value":"-51.10" + } + }, + { + "id":"a31e189f-f4c1-49b0-ab4b-d04dfde6b781", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T03:22:15.628Z", + "completed":"2017-03-11T03:22:15.628Z", + "new_balance":"6419.61", + "value":"-6.69" + } + }, + { + "id":"741b2b5c-52ba-4012-9d7a-717d348490df", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T02:03:44.765Z", + "completed":"2017-03-13T02:03:44.765Z", + "new_balance":"6415.91", + "value":"-3.70" + } + }, + { + "id":"a385bc87-95e6-4618-96c8-45c1ed522ac0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T18:07:14.688Z", + "completed":"2017-03-16T18:07:14.688Z", + "new_balance":"6098.70", + "value":"-317.21" + } + }, + { + "id":"224c5f53-849a-423b-a76e-b24e082536b0", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T06:15:03.460Z", + "completed":"2017-03-17T06:15:03.460Z", + "new_balance":"6056.36", + "value":"-42.34" + } + }, + { + "id":"e7d28047-8976-408b-9d7a-95dfde63e60b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T22:26:55.245Z", + "completed":"2017-03-17T22:26:55.245Z", + "new_balance":"5892.88", + "value":"-163.48" + } + }, + { + "id":"514a8681-c606-48bc-9af2-2b20fad83c4b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T18:35:11.795Z", + "completed":"2017-03-19T18:35:11.795Z", + "new_balance":"5889.18", + "value":"-3.70" + } + }, + { + "id":"e696728f-5af0-496b-871c-b70ee5fbd441", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T16:25:37.195Z", + "completed":"2017-03-21T16:25:37.195Z", + "new_balance":"5869.60", + "value":"-19.58" + } + }, + { + "id":"47f15db3-9d1d-4ade-ab66-a8210c275467", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T17:44:17.328Z", + "completed":"2017-03-23T17:44:17.328Z", + "new_balance":"5824.09", + "value":"-45.51" + } + }, + { + "id":"111c19a9-34a9-4d9e-9b3e-f23a06cfdfae", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T09:05:50.090Z", + "completed":"2017-03-24T09:05:50.090Z", + "new_balance":"5817.40", + "value":"-6.69" + } + }, + { + "id":"241e08cb-cdc3-4d1d-9568-697f733ae5bb", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T01:55:54.093Z", + "completed":"2017-03-26T01:55:54.093Z", + "new_balance":"5804.39", + "value":"-13.01" + } + }, + { + "id":"7a9a86de-35c4-4e38-9356-db3d3d63fbed", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T19:10:17.784Z", + "completed":"2017-04-01T19:10:17.784Z", + "new_balance":"5791.38", + "value":"-13.01" + } + }, + { + "id":"44b550c1-f508-427f-8a4a-99325b0758ab", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T00:58:56.114Z", + "completed":"2017-06-01T00:58:56.114Z", + "new_balance":"5745.87", + "value":"-45.51" + } + }, + { + "id":"5d7ac36d-61d9-4471-823f-93a66e075586", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T02:56:03.081Z", + "completed":"2017-06-04T02:56:03.081Z", + "new_balance":"5671.94", + "value":"-73.93" + } + }, + { + "id":"a00816b3-c5a4-445b-9570-e0b8b6e75397", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T05:35:35.675Z", + "completed":"2017-06-19T05:35:35.675Z", + "new_balance":"5620.84", + "value":"-51.10" + } + }, + { + "id":"9731c4e2-15ed-484f-bfd8-bbec0fa776f8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T19:43:31.490Z", + "completed":"2017-06-21T19:43:31.490Z", + "new_balance":"5614.15", + "value":"-6.69" + } + }, + { + "id":"88a42044-1654-4eae-8995-e41898d40ede", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T09:02:57.552Z", + "completed":"2017-06-24T09:02:57.552Z", + "new_balance":"5610.45", + "value":"-3.70" + } + }, + { + "id":"f32d0e73-85f2-4e4d-9f4b-d1f41ab62dd3", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T04:38:51.765Z", + "completed":"2017-06-28T04:38:51.765Z", + "new_balance":"5568.11", + "value":"-42.34" + } + }, + { + "id":"6f39cfa8-a46d-4f99-a370-3ef0c43e70d7", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T19:09:58.009Z", + "completed":"2017-06-28T19:09:58.009Z", + "new_balance":"5404.63", + "value":"-163.48" + } + }, + { + "id":"61859797-bf20-4f6f-a998-311c7bb83c4b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T22:07:29.644Z", + "completed":"2017-06-28T22:07:29.644Z", + "new_balance":"5087.42", + "value":"-317.21" + } + }, + { + "id":"1730d4c8-65ce-453f-afee-67f2372afb9e", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T18:03:19.433Z", + "completed":"2017-06-29T18:03:19.433Z", + "new_balance":"5083.72", + "value":"-3.70" + } + }, + { + "id":"c072669b-7ac5-4834-986a-2d1c0dee1eed", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T03:42:34.773Z", + "completed":"2017-06-30T03:42:34.773Z", + "new_balance":"5038.21", + "value":"-45.51" + } + }, + { + "id":"668b36dd-f8d8-4f94-b793-94d309e123e6", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T10:25:40.559Z", + "completed":"2017-06-30T10:25:40.559Z", + "new_balance":"5031.52", + "value":"-6.69" + } + }, + { + "id":"1eb39b25-f915-4bc6-a781-a0b280f65d63", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T13:10:38.406Z", + "completed":"2017-06-30T13:10:38.406Z", + "new_balance":"5011.94", + "value":"-19.58" + } + }, + { + "id":"ee55eb96-7e65-4551-b4a2-f3194d1ab661", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T10:50:22.912Z", + "completed":"2017-09-01T10:50:22.912Z", + "new_balance":"4988.08", + "value":"-23.86" + } + }, + { + "id":"e69e389e-1a74-4c5d-9d66-e0c6596e67b9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T05:49:57.831Z", + "completed":"2017-09-02T05:49:57.831Z", + "new_balance":"4914.15", + "value":"-73.93" + } + }, + { + "id":"67e12258-ea1a-4a92-9e8c-44ade94e8eb4", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T19:06:07.587Z", + "completed":"2017-09-07T19:06:07.587Z", + "new_balance":"4863.05", + "value":"-51.10" + } + }, + { + "id":"d435d613-7620-4ec4-b5e3-c01698a5dbd2", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T01:33:50.955Z", + "completed":"2017-09-11T01:33:50.955Z", + "new_balance":"4856.36", + "value":"-6.69" + } + }, + { + "id":"0e1f94f2-72c7-4111-9974-c344fe093ef4", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T19:23:14.627Z", + "completed":"2017-09-15T19:23:14.627Z", + "new_balance":"4845.45", + "value":"-10.91" + } + }, + { + "id":"4b823847-7dd6-4cc6-818a-28ea75401ac1", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T07:13:21.737Z", + "completed":"2017-09-17T07:13:21.737Z", + "new_balance":"4803.11", + "value":"-42.34" + } + }, + { + "id":"0a960e05-918a-413c-a825-73b030a17183", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T08:29:56.951Z", + "completed":"2017-09-17T08:29:56.951Z", + "new_balance":"4639.63", + "value":"-163.48" + } + }, + { + "id":"bc6f953b-8527-4d1c-90d0-e35345cee8c9", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T09:20:08.378Z", + "completed":"2017-09-17T09:20:08.378Z", + "new_balance":"4322.42", + "value":"-317.21" + } + }, + { + "id":"a2f67214-74e2-477d-8c41-9df521269ccd", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T12:12:28.478Z", + "completed":"2017-09-19T12:12:28.478Z", + "new_balance":"4318.72", + "value":"-3.70" + } + }, + { + "id":"b9433b90-8aa4-4e38-859b-cccf63047937", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T13:10:50.094Z", + "completed":"2017-09-21T13:10:50.094Z", + "new_balance":"4299.14", + "value":"-19.58" + } + }, + { + "id":"964ac23e-a159-4eb0-b71c-2688649e19a5", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T13:31:29.737Z", + "completed":"2017-09-23T13:31:29.737Z", + "new_balance":"4253.63", + "value":"-45.51" + } + }, + { + "id":"497ae60d-f242-48ea-b821-7c0bc9e498d8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T17:26:24.719Z", + "completed":"2017-09-24T17:26:24.719Z", + "new_balance":"4246.94", + "value":"-6.69" + } + }, + { + "id":"fd5c4692-ba16-40c7-be53-e29b6d76d791", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T06:42:43.439Z", + "completed":"2017-09-27T06:42:43.439Z", + "new_balance":"4233.93", + "value":"-13.01" + } + }, + { + "id":"f64721ac-96c2-448d-a0a7-65b01ddb37af", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T05:58:20.538Z", + "completed":"2017-10-01T05:58:20.538Z", + "new_balance":"4220.92", + "value":"-13.01" + } + }, + { + "id":"fa67a4a8-bda1-43ab-985d-0d55cf0490fa", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T16:38:55.135Z", + "completed":"2017-12-01T16:38:55.135Z", + "new_balance":"4175.41", + "value":"-45.51" + } + }, + { + "id":"14804c41-3bc8-4c5e-b0eb-aa1d92e2b578", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T19:42:45.411Z", + "completed":"2017-12-04T19:42:45.411Z", + "new_balance":"4101.48", + "value":"-73.93" + } + }, + { + "id":"60d432e5-6f98-45d9-b1d8-c219d8141c42", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T03:04:30.565Z", + "completed":"2017-12-19T03:04:30.565Z", + "new_balance":"4050.38", + "value":"-51.10" + } + }, + { + "id":"58095878-eaa0-48e3-b192-278ded3d7c7f", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T11:47:33.624Z", + "completed":"2017-12-24T11:47:33.624Z", + "new_balance":"4046.68", + "value":"-3.70" + } + }, + { + "id":"fed2fb74-2e52-4e7d-93c7-79748e7b6098", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T22:42:24.553Z", + "completed":"2017-12-24T22:42:24.553Z", + "new_balance":"4039.99", + "value":"-6.69" + } + }, + { + "id":"d74f398a-ecbd-48e0-9fea-24526e98e095", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T08:38:42.895Z", + "completed":"2017-12-28T08:38:42.895Z", + "new_balance":"3722.78", + "value":"-317.21" + } + }, + { + "id":"4efa412d-502c-412f-951e-7e51de87aaca", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T19:05:42.469Z", + "completed":"2017-12-28T19:05:42.469Z", + "new_balance":"3680.44", + "value":"-42.34" + } + }, + { + "id":"3dcc4985-5be2-4b51-bdfa-5edb6601b54b", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T19:51:09.860Z", + "completed":"2017-12-28T19:51:09.860Z", + "new_balance":"3516.96", + "value":"-163.48" + } + }, + { + "id":"5c041bc5-e402-456b-bb91-f823329938a1", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T21:05:58.269Z", + "completed":"2017-12-29T21:05:58.269Z", + "new_balance":"3513.26", + "value":"-3.70" + } + }, + { + "id":"050679a4-47f8-4806-ad55-b8a8ad2eada8", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T01:34:47.918Z", + "completed":"2017-12-30T01:34:47.918Z", + "new_balance":"3467.75", + "value":"-45.51" + } + }, + { + "id":"e3358968-fc60-4670-9fe0-d4e40bec0794", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T05:07:05.801Z", + "completed":"2017-12-30T05:07:05.801Z", + "new_balance":"3461.06", + "value":"-6.69" + } + }, + { + "id":"7ffc8779-96d1-4675-843e-7332c90a3839", + "this_account":{ + "id":"7eda9388-b2d2-41ab-a531-7ba6d2c2b5c0", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T16:41:20.796Z", + "completed":"2017-12-30T16:41:20.796Z", + "new_balance":"3441.48", + "value":"-19.58" + } + }, + { + "id":"b770d97b-b464-4040-943e-a8b85cab25ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T00:37:04.094Z", + "completed":"2016-01-01T00:37:04.094Z", + "new_balance":"20457.16", + "value":"-29.88" + } + }, + { + "id":"dcccdbf1-d7b5-4436-aa29-eb3fb0648541", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T02:41:52.706Z", + "completed":"2016-01-01T02:41:52.706Z", + "new_balance":"20422.73", + "value":"-34.43" + } + }, + { + "id":"0967abae-97cd-476d-a59f-6c74177244de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T03:04:09.833Z", + "completed":"2016-01-01T03:04:09.833Z", + "new_balance":"20288.25", + "value":"-134.48" + } + }, + { + "id":"29f5574a-3ce0-43f8-9905-4baec546692a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T14:17:46.663Z", + "completed":"2016-01-01T14:17:46.663Z", + "new_balance":"20235.07", + "value":"-53.18" + } + }, + { + "id":"8573051f-0f0e-408b-89dc-39035957c754", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T19:26:19.671Z", + "completed":"2016-01-01T19:26:19.671Z", + "new_balance":"19724.53", + "value":"-510.54" + } + }, + { + "id":"39e21a10-02ed-4521-81f4-d7ca37273896", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T21:06:19.245Z", + "completed":"2016-01-01T21:06:19.245Z", + "new_balance":"19690.10", + "value":"-34.43" + } + }, + { + "id":"ecb73eaf-196d-4993-9815-acff8221b80a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T03:24:16.875Z", + "completed":"2016-01-02T03:24:16.875Z", + "new_balance":"19618.11", + "value":"-71.99" + } + }, + { + "id":"16e2beb2-27a3-4024-9ba9-761067d285e8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T08:09:56.635Z", + "completed":"2016-01-02T08:09:56.635Z", + "new_balance":"19531.55", + "value":"-86.56" + } + }, + { + "id":"4a66fbdf-cf7b-4e21-8e2b-5bf531c17902", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T15:18:37.613Z", + "completed":"2016-01-04T15:18:37.613Z", + "new_balance":"19496.77", + "value":"-34.78" + } + }, + { + "id":"37ae8149-9f29-44d1-9393-7bdb53d7e7ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T21:35:59.725Z", + "completed":"2016-01-04T21:35:59.725Z", + "new_balance":"19459.58", + "value":"-37.19" + } + }, + { + "id":"ae9baf92-a249-46c4-b0cd-903b488fd0b5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T04:44:30.852Z", + "completed":"2016-01-07T04:44:30.852Z", + "new_balance":"19385.65", + "value":"-73.93" + } + }, + { + "id":"01a619f4-ad7f-4076-8b9a-1bbe9f7203d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T05:35:08.146Z", + "completed":"2016-01-09T05:35:08.146Z", + "new_balance":"19382.06", + "value":"-3.59" + } + }, + { + "id":"7976c963-3a16-4135-9c18-36c2b974cb8d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T10:56:26.303Z", + "completed":"2016-01-10T10:56:26.303Z", + "new_balance":"19354.61", + "value":"-27.45" + } + }, + { + "id":"4bc553f9-3500-4ef7-94fb-bf32b79297ed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T21:51:17.000Z", + "completed":"2016-01-12T21:51:17.000Z", + "new_balance":"19323.32", + "value":"-31.29" + } + }, + { + "id":"cc9b189d-4435-4919-a9af-6bf142257b42", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T00:41:24.645Z", + "completed":"2016-01-15T00:41:24.645Z", + "new_balance":"19308.50", + "value":"-14.82" + } + }, + { + "id":"f35ffe9c-1756-432d-ad64-0f4fadbff38c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T20:08:51.287Z", + "completed":"2016-01-15T20:08:51.287Z", + "new_balance":"19301.34", + "value":"-7.16" + } + }, + { + "id":"21454a12-5818-49fe-a3b5-dfb89b9d859b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T17:32:00.390Z", + "completed":"2016-01-17T17:32:00.390Z", + "new_balance":"19279.09", + "value":"-22.25" + } + }, + { + "id":"d2d3e21f-f7cd-41fa-8c0d-469486961359", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T05:29:07.394Z", + "completed":"2016-01-19T05:29:07.394Z", + "new_balance":"19089.82", + "value":"-189.27" + } + }, + { + "id":"20fd1e49-114f-452f-9f68-dfedfef38378", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T11:23:46.317Z", + "completed":"2016-01-20T11:23:46.317Z", + "new_balance":"19083.11", + "value":"-6.71" + } + }, + { + "id":"c3f94fa3-2606-4f8b-a35a-d91046264e54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T00:20:24.506Z", + "completed":"2016-01-22T00:20:24.506Z", + "new_balance":"19073.41", + "value":"-9.70" + } + }, + { + "id":"03c8b975-0515-4d1d-ab63-2b8a65e34728", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T05:20:48.540Z", + "completed":"2016-01-22T05:20:48.540Z", + "new_balance":"19028.17", + "value":"-45.24" + } + }, + { + "id":"ec4c3b46-624a-4fa7-ac3a-1245573b2b51", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T13:23:19.389Z", + "completed":"2016-01-24T13:23:19.389Z", + "new_balance":"18995.89", + "value":"-32.28" + } + }, + { + "id":"70aa206d-420d-49c3-b2e7-4e794e768d73", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T04:19:52.568Z", + "completed":"2016-01-25T04:19:52.568Z", + "new_balance":"18953.37", + "value":"-42.52" + } + }, + { + "id":"19cc9acc-d421-4551-be8c-09cb558ec1e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T23:34:21.347Z", + "completed":"2016-01-25T23:34:21.347Z", + "new_balance":"18946.66", + "value":"-6.71" + } + }, + { + "id":"113a0ced-9047-47d3-b128-faac57a3ba76", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T05:43:37.968Z", + "completed":"2016-01-26T05:43:37.968Z", + "new_balance":"18883.09", + "value":"-63.57" + } + }, + { + "id":"de0365c0-6d2b-4ea0-b6ab-0d0ef4cda42a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T03:09:32.961Z", + "completed":"2016-02-01T03:09:32.961Z", + "new_balance":"18748.61", + "value":"-134.48" + } + }, + { + "id":"6cc70691-1e53-4948-86ef-0ce4dc376f57", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T03:12:44.172Z", + "completed":"2016-02-01T03:12:44.172Z", + "new_balance":"18718.73", + "value":"-29.88" + } + }, + { + "id":"b6519108-4a09-43c1-af05-270f337b4f69", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T04:24:59.930Z", + "completed":"2016-02-01T04:24:59.930Z", + "new_balance":"20399.14", + "value":"1680.41" + } + }, + { + "id":"68aaab34-67c4-44dc-b10c-929c825fe1a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T08:07:11.567Z", + "completed":"2016-02-01T08:07:11.567Z", + "new_balance":"20364.71", + "value":"-34.43" + } + }, + { + "id":"d9edecb2-fb08-46f1-878f-20a102955fb1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T13:55:09.258Z", + "completed":"2016-02-01T13:55:09.258Z", + "new_balance":"19854.17", + "value":"-510.54" + } + }, + { + "id":"81cd65ac-690a-436a-a098-235d470e7ecd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T19:31:13.463Z", + "completed":"2016-02-01T19:31:13.463Z", + "new_balance":"19800.99", + "value":"-53.18" + } + }, + { + "id":"a58723f3-5feb-4fda-998c-0acd06824c13", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T04:00:49.145Z", + "completed":"2016-02-02T04:00:49.145Z", + "new_balance":"19714.43", + "value":"-86.56" + } + }, + { + "id":"10d1156e-0312-45eb-ad50-55f082b28ac3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T09:55:35.022Z", + "completed":"2016-02-02T09:55:35.022Z", + "new_balance":"19699.79", + "value":"-14.64" + } + }, + { + "id":"7ec5ab97-35f8-4206-9c1b-0969866fba2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T20:16:45.629Z", + "completed":"2016-02-02T20:16:45.629Z", + "new_balance":"19683.86", + "value":"-15.93" + } + }, + { + "id":"928b1ad2-a781-4fc6-a9e8-55cdb76de779", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:10:10.780Z", + "completed":"2016-02-03T02:10:10.780Z", + "new_balance":"19658.06", + "value":"-25.80" + } + }, + { + "id":"2722bdfd-b8c2-46f2-a9a3-25b5a546c4e6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T02:19:58.649Z", + "completed":"2016-02-03T02:19:58.649Z", + "new_balance":"19634.69", + "value":"-23.37" + } + }, + { + "id":"0b42ec03-e309-4fab-afea-a46bf7c61290", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T20:43:53.698Z", + "completed":"2016-02-03T20:43:53.698Z", + "new_balance":"19606.68", + "value":"-28.01" + } + }, + { + "id":"577c0a90-072f-4c4f-b48b-c22c0f5a9bb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T22:02:55.988Z", + "completed":"2016-02-06T22:02:55.988Z", + "new_balance":"19532.75", + "value":"-73.93" + } + }, + { + "id":"ed7a3ce8-12bd-44a0-9fd8-7aeb7d26457f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T04:42:27.149Z", + "completed":"2016-02-08T04:42:27.149Z", + "new_balance":"19528.66", + "value":"-4.09" + } + }, + { + "id":"6fb52b63-a32d-497e-a7a0-779b9dfb5103", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T10:54:02.282Z", + "completed":"2016-02-08T10:54:02.282Z", + "new_balance":"19500.81", + "value":"-27.85" + } + }, + { + "id":"f7b91878-46d3-4561-841d-4551ecdbf7b9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T21:59:09.541Z", + "completed":"2016-02-08T21:59:09.541Z", + "new_balance":"19479.71", + "value":"-21.10" + } + }, + { + "id":"e76b17c8-eeaa-4715-b0ca-3225505ae88c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T03:38:54.542Z", + "completed":"2016-02-09T03:38:54.542Z", + "new_balance":"19431.01", + "value":"-48.70" + } + }, + { + "id":"bd24f7c7-9181-44e7-bf69-ae4a3ff2b846", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T12:54:58.521Z", + "completed":"2016-02-09T12:54:58.521Z", + "new_balance":"19385.84", + "value":"-45.17" + } + }, + { + "id":"d20ac2e9-b068-4e85-871c-73185ee156dc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T17:59:23.182Z", + "completed":"2016-02-12T17:59:23.182Z", + "new_balance":"19380.07", + "value":"-5.77" + } + }, + { + "id":"8a5c298e-a1c7-40b6-90ad-bbae9de420ce", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T03:53:55.356Z", + "completed":"2016-02-13T03:53:55.356Z", + "new_balance":"19419.08", + "value":"39.01" + } + }, + { + "id":"103cb598-e53b-4ff1-8edb-4aba3007d071", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T04:53:18.269Z", + "completed":"2016-02-13T04:53:18.269Z", + "new_balance":"19410.56", + "value":"-8.52" + } + }, + { + "id":"9b2fcbc5-66a1-4ef3-ad53-7c94d7373b3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T13:29:29.944Z", + "completed":"2016-02-13T13:29:29.944Z", + "new_balance":"19366.77", + "value":"-43.79" + } + }, + { + "id":"82c153b3-e3a0-47f3-a281-28527e0f5ac2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T01:57:32.692Z", + "completed":"2016-02-14T01:57:32.692Z", + "new_balance":"19321.14", + "value":"-45.63" + } + }, + { + "id":"bd9df7f6-da7f-479f-aa95-6f2a53fc64d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T01:22:07.046Z", + "completed":"2016-02-15T01:22:07.046Z", + "new_balance":"19295.58", + "value":"-25.56" + } + }, + { + "id":"5a35e38e-0832-4c33-a02b-13de9e752d11", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T02:00:25.647Z", + "completed":"2016-02-28T02:00:25.647Z", + "new_balance":"19262.05", + "value":"-33.53" + } + }, + { + "id":"c2dc860b-5fee-4209-b1d0-36600e9a5115", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T05:23:14.410Z", + "completed":"2016-03-01T05:23:14.410Z", + "new_balance":"18751.51", + "value":"-510.54" + } + }, + { + "id":"35c6685e-d4c5-4f3c-a9f2-03decbcb1504", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T06:59:38.603Z", + "completed":"2016-03-01T06:59:38.603Z", + "new_balance":"18617.03", + "value":"-134.48" + } + }, + { + "id":"9b97736c-9e80-4be9-868d-b8eeff104fd0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T11:24:06.748Z", + "completed":"2016-03-01T11:24:06.748Z", + "new_balance":"20297.44", + "value":"1680.41" + } + }, + { + "id":"2e425d4f-6487-4d7e-aea0-45940583f49a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T13:18:45.466Z", + "completed":"2016-03-01T13:18:45.466Z", + "new_balance":"20244.26", + "value":"-53.18" + } + }, + { + "id":"f7cdc096-40c1-440e-a25c-c7ff1ed59176", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T14:34:51.470Z", + "completed":"2016-03-01T14:34:51.470Z", + "new_balance":"20214.38", + "value":"-29.88" + } + }, + { + "id":"4661e196-31e4-48cc-97b9-427826858aa1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T23:51:32.083Z", + "completed":"2016-03-01T23:51:32.083Z", + "new_balance":"20179.95", + "value":"-34.43" + } + }, + { + "id":"07d315f4-8e65-4ea8-8b40-f92ef7b4a49a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T08:23:36.209Z", + "completed":"2016-03-02T08:23:36.209Z", + "new_balance":"20093.39", + "value":"-86.56" + } + }, + { + "id":"f52f9c12-b6e2-4fe5-b9d0-27f8408e638e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T03:47:01.500Z", + "completed":"2016-03-04T03:47:01.500Z", + "new_balance":"20012.18", + "value":"-81.21" + } + }, + { + "id":"faaa43d9-5daa-4cf3-a6ba-6f7708f207bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T04:49:55.603Z", + "completed":"2016-03-04T04:49:55.603Z", + "new_balance":"20005.71", + "value":"-6.47" + } + }, + { + "id":"413b37b5-0e76-4a74-9ab5-8899faad267e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T04:51:28.450Z", + "completed":"2016-03-04T04:51:28.450Z", + "new_balance":"19974.90", + "value":"-30.81" + } + }, + { + "id":"726ed830-49a2-4848-baee-7f6711a3e671", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:25:16.878Z", + "completed":"2016-03-04T21:25:16.878Z", + "new_balance":"19964.37", + "value":"-10.53" + } + }, + { + "id":"2e69606d-d191-4b8f-b30d-97a173203150", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T19:35:56.554Z", + "completed":"2016-03-05T19:35:56.554Z", + "new_balance":"19959.60", + "value":"-4.77" + } + }, + { + "id":"eeb65f6f-411e-4b9f-9d8d-a5a21951263e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T22:41:58.044Z", + "completed":"2016-03-05T22:41:58.044Z", + "new_balance":"19918.37", + "value":"-41.23" + } + }, + { + "id":"1bf3036a-4bb4-4aba-8b06-1c24e3d2ffbb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T07:50:49.993Z", + "completed":"2016-03-06T07:50:49.993Z", + "new_balance":"19837.16", + "value":"-81.21" + } + }, + { + "id":"84193192-30d6-49bd-af98-86c3e2f39993", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T14:15:17.886Z", + "completed":"2016-03-06T14:15:17.886Z", + "new_balance":"19753.36", + "value":"-83.80" + } + }, + { + "id":"7f1053ef-2f88-4625-b435-52f8c8115e20", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T06:04:33.103Z", + "completed":"2016-03-07T06:04:33.103Z", + "new_balance":"19711.02", + "value":"-42.34" + } + }, + { + "id":"e3d19068-a41b-40c3-9731-4d39cda8fbbf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T05:02:47.850Z", + "completed":"2016-03-08T05:02:47.850Z", + "new_balance":"19627.22", + "value":"-83.80" + } + }, + { + "id":"311d6fb0-fea0-4474-83cf-ecf50016145c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T00:54:57.948Z", + "completed":"2016-03-09T00:54:57.948Z", + "new_balance":"19623.64", + "value":"-3.58" + } + }, + { + "id":"933531bc-cbbc-41e2-9e0a-ef3c09f5d8a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T20:37:02.661Z", + "completed":"2016-03-10T20:37:02.661Z", + "new_balance":"19532.17", + "value":"-91.47" + } + }, + { + "id":"90f1b3c9-c23a-4c99-9f48-981a8d843b59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T19:25:59.058Z", + "completed":"2016-03-11T19:25:59.058Z", + "new_balance":"19524.89", + "value":"-7.28" + } + }, + { + "id":"6a9ea4b4-210e-470c-84a6-9c518cf10c96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T05:59:23.628Z", + "completed":"2016-03-12T05:59:23.628Z", + "new_balance":"19497.59", + "value":"-27.30" + } + }, + { + "id":"223e3282-2bd7-4c9f-ae83-c6c1d78de6ec", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T23:48:27.508Z", + "completed":"2016-03-12T23:48:27.508Z", + "new_balance":"19484.35", + "value":"-13.24" + } + }, + { + "id":"7c370e8e-3ba8-471f-a4d5-c10a964cb34d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T23:26:21.798Z", + "completed":"2016-03-13T23:26:21.798Z", + "new_balance":"19438.34", + "value":"-46.01" + } + }, + { + "id":"3b8a735b-6bc0-4861-b885-d6b33c22fdf0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T16:02:44.340Z", + "completed":"2016-03-14T16:02:44.340Z", + "new_balance":"19431.35", + "value":"-6.99" + } + }, + { + "id":"1f75fa90-c8a5-486f-8047-3e2e062dcd31", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T14:20:00.896Z", + "completed":"2016-03-16T14:20:00.896Z", + "new_balance":"19384.55", + "value":"-46.80" + } + }, + { + "id":"c755f55a-4ac9-4ae3-a66d-b7caa974887c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T16:13:00.808Z", + "completed":"2016-03-16T16:13:00.808Z", + "new_balance":"19303.14", + "value":"-81.41" + } + }, + { + "id":"d5b9409c-a777-4eed-b1cc-582c89d07d5e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T06:48:15.235Z", + "completed":"2016-03-18T06:48:15.235Z", + "new_balance":"19296.15", + "value":"-6.99" + } + }, + { + "id":"391a2e20-6ea7-4f2f-994a-7690980a45ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T10:31:40.284Z", + "completed":"2016-03-19T10:31:40.284Z", + "new_balance":"19262.24", + "value":"-33.91" + } + }, + { + "id":"7c1607fd-bbf2-4f0e-bf25-f1eb82626c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T11:10:55.089Z", + "completed":"2016-03-19T11:10:55.089Z", + "new_balance":"19211.23", + "value":"-51.01" + } + }, + { + "id":"8db4b5c5-4c3e-4bf1-9921-cbc821c84e89", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T22:00:53.497Z", + "completed":"2016-03-19T22:00:53.497Z", + "new_balance":"19174.28", + "value":"-36.95" + } + }, + { + "id":"b6b129c0-b317-4bd5-a54c-6bfd10744354", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T00:24:29.964Z", + "completed":"2016-03-20T00:24:29.964Z", + "new_balance":"19115.38", + "value":"-58.90" + } + }, + { + "id":"f0392def-3a2a-4874-9e3d-923dd86c99d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T10:29:55.726Z", + "completed":"2016-03-20T10:29:55.726Z", + "new_balance":"19041.87", + "value":"-73.51" + } + }, + { + "id":"71c72ccc-b4e4-4a16-8ddf-8ff2ce9f3f99", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T01:43:27.102Z", + "completed":"2016-03-21T01:43:27.102Z", + "new_balance":"19035.99", + "value":"-5.88" + } + }, + { + "id":"1569af13-efbf-4c6b-97f6-dd69874999de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T20:00:42.031Z", + "completed":"2016-03-21T20:00:42.031Z", + "new_balance":"19029.52", + "value":"-6.47" + } + }, + { + "id":"585b3d8a-73fd-42c6-b3a8-f6784d5dcf62", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T01:23:18.466Z", + "completed":"2016-03-23T01:23:18.466Z", + "new_balance":"19018.29", + "value":"-11.23" + } + }, + { + "id":"2ed9588f-acd5-4fca-b19b-f8018b65643e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T10:30:54.141Z", + "completed":"2016-03-23T10:30:54.141Z", + "new_balance":"18972.78", + "value":"-45.51" + } + }, + { + "id":"adaa14c4-0502-4cb4-b297-dd90207d64cd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T23:05:03.225Z", + "completed":"2016-03-24T23:05:03.225Z", + "new_balance":"18943.92", + "value":"-28.86" + } + }, + { + "id":"d70f12aa-0e90-4276-9b48-2c648801a6e6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T01:29:12.972Z", + "completed":"2016-03-25T01:29:12.972Z", + "new_balance":"18927.84", + "value":"-16.08" + } + }, + { + "id":"33e2effa-606f-42c1-98ca-9d2fa8550345", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T20:19:06.723Z", + "completed":"2016-03-25T20:19:06.723Z", + "new_balance":"18893.81", + "value":"-34.03" + } + }, + { + "id":"55db6eb8-e111-4c1e-8f40-4f972abeb220", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T00:11:07.661Z", + "completed":"2016-03-27T00:11:07.661Z", + "new_balance":"18704.54", + "value":"-189.27" + } + }, + { + "id":"b6b82f18-0e77-4ba9-ae95-ecf694f3d6de", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T11:35:24.481Z", + "completed":"2016-03-28T11:35:24.481Z", + "new_balance":"18677.57", + "value":"-26.97" + } + }, + { + "id":"6cb30c14-c085-4ef0-9e29-a77dd2484ebb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T02:16:41.399Z", + "completed":"2016-04-01T02:16:41.399Z", + "new_balance":"18647.69", + "value":"-29.88" + } + }, + { + "id":"42bb1195-064b-41af-a2f9-96053a080d56", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T10:25:46.941Z", + "completed":"2016-04-01T10:25:46.941Z", + "new_balance":"18137.15", + "value":"-510.54" + } + }, + { + "id":"f1f79c26-0606-4a0c-bceb-20fc06293a6f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T11:52:07.568Z", + "completed":"2016-04-01T11:52:07.568Z", + "new_balance":"18002.67", + "value":"-134.48" + } + }, + { + "id":"f721796a-4bc9-478a-8cf7-e9d907312609", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T20:21:19.268Z", + "completed":"2016-04-01T20:21:19.268Z", + "new_balance":"17949.49", + "value":"-53.18" + } + }, + { + "id":"5b7a7a53-b9f9-48b9-b019-7da3c20675c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T08:59:06.467Z", + "completed":"2016-04-02T08:59:06.467Z", + "new_balance":"17862.93", + "value":"-86.56" + } + }, + { + "id":"53e55b04-70f7-4032-a343-f8ed46a415e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T14:40:08.622Z", + "completed":"2016-04-02T14:40:08.622Z", + "new_balance":"17790.94", + "value":"-71.99" + } + }, + { + "id":"e70dd6d9-ecc9-4418-bdfd-d85dfa2d8694", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T01:41:16.561Z", + "completed":"2016-04-03T01:41:16.561Z", + "new_balance":"17913.14", + "value":"122.20" + } + }, + { + "id":"fdcaaf8a-e70b-458a-b45a-02ffbbe19a91", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:55:19.374Z", + "completed":"2016-04-03T12:55:19.374Z", + "new_balance":"17985.97", + "value":"72.83" + } + }, + { + "id":"8c373392-6809-4abe-83f4-a4ca6ba59894", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T19:13:12.394Z", + "completed":"2016-04-03T19:13:12.394Z", + "new_balance":"17951.19", + "value":"-34.78" + } + }, + { + "id":"0b28b2ac-9f6c-4db4-ac8f-96131b20527a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T20:41:03.944Z", + "completed":"2016-04-03T20:41:03.944Z", + "new_balance":"17914.00", + "value":"-37.19" + } + }, + { + "id":"d0b1f2dc-a66c-4ee2-a6b0-2b2bd1e897f7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T21:50:34.142Z", + "completed":"2016-04-03T21:50:34.142Z", + "new_balance":"17876.81", + "value":"-37.19" + } + }, + { + "id":"83f078e7-7d91-429e-95cc-9a61657fe927", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T21:44:20.932Z", + "completed":"2016-04-04T21:44:20.932Z", + "new_balance":"17802.88", + "value":"-73.93" + } + }, + { + "id":"fd0b5b54-7e50-4f73-b069-6de0b399fb55", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T06:45:00.735Z", + "completed":"2016-04-05T06:45:00.735Z", + "new_balance":"17799.29", + "value":"-3.59" + } + }, + { + "id":"a1a28705-ed18-497b-874d-2e8f74123e1e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T10:21:07.558Z", + "completed":"2016-04-05T10:21:07.558Z", + "new_balance":"17771.84", + "value":"-27.45" + } + }, + { + "id":"e2ec6355-3ec0-488d-80e2-a831330c5d48", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T02:59:29.056Z", + "completed":"2016-04-07T02:59:29.056Z", + "new_balance":"17757.02", + "value":"-14.82" + } + }, + { + "id":"1918118a-57b7-48fb-9f0f-3b81ac587217", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T08:47:30.481Z", + "completed":"2016-04-07T08:47:30.481Z", + "new_balance":"17725.73", + "value":"-31.29" + } + }, + { + "id":"e57171df-d660-411a-81c1-8b5c12025cd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T06:53:36.243Z", + "completed":"2016-04-08T06:53:36.243Z", + "new_balance":"17718.57", + "value":"-7.16" + } + }, + { + "id":"e103170a-e7da-484f-8db8-9b8a350fa534", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T08:59:17.348Z", + "completed":"2016-04-09T08:59:17.348Z", + "new_balance":"17711.86", + "value":"-6.71" + } + }, + { + "id":"e5bf723b-9799-467e-8e4e-38baf5278e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T19:57:40.924Z", + "completed":"2016-04-09T19:57:40.924Z", + "new_balance":"17689.61", + "value":"-22.25" + } + }, + { + "id":"b8943d8c-bf12-4261-9c47-fdcd556bb137", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T20:29:05.071Z", + "completed":"2016-04-09T20:29:05.071Z", + "new_balance":"17500.34", + "value":"-189.27" + } + }, + { + "id":"cedeec19-d162-44f0-8162-4493bc51e891", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T20:30:31.358Z", + "completed":"2016-04-10T20:30:31.358Z", + "new_balance":"17455.10", + "value":"-45.24" + } + }, + { + "id":"f4de25ef-b9aa-4f6b-bc5f-de0cfb05bf4c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T14:26:24.134Z", + "completed":"2016-04-17T14:26:24.134Z", + "new_balance":"17445.40", + "value":"-9.70" + } + }, + { + "id":"f2173160-7fbb-42cb-89f6-2d6fce5ef4b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T08:41:33.161Z", + "completed":"2016-04-18T08:41:33.161Z", + "new_balance":"17413.12", + "value":"-32.28" + } + }, + { + "id":"bfcb9d84-273b-4c82-8e90-9be5180601ed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T08:45:46.049Z", + "completed":"2016-04-25T08:45:46.049Z", + "new_balance":"17370.60", + "value":"-42.52" + } + }, + { + "id":"47c14d35-5923-4ff2-947e-2b24a7978e34", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T11:18:51.165Z", + "completed":"2016-04-26T11:18:51.165Z", + "new_balance":"17307.03", + "value":"-63.57" + } + }, + { + "id":"391ae2ba-b103-433c-9f5f-b07f89453a68", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T20:34:09.493Z", + "completed":"2016-04-26T20:34:09.493Z", + "new_balance":"17300.32", + "value":"-6.71" + } + }, + { + "id":"aec5519a-8cc1-4df8-abd4-cedc8f64b902", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T01:15:21.555Z", + "completed":"2016-05-02T01:15:21.555Z", + "new_balance":"17265.89", + "value":"-34.43" + } + }, + { + "id":"e5c1d3aa-24fb-4126-a908-97b5001fd1a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T03:20:46.371Z", + "completed":"2016-05-02T03:20:46.371Z", + "new_balance":"18946.30", + "value":"1680.41" + } + }, + { + "id":"c66696a2-2255-4328-ab42-a1c7804c0ada", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T08:44:57.124Z", + "completed":"2016-05-02T08:44:57.124Z", + "new_balance":"18930.37", + "value":"-15.93" + } + }, + { + "id":"724151f2-37bd-4d78-ada3-af5c5b3b0314", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T18:26:28.761Z", + "completed":"2016-05-02T18:26:28.761Z", + "new_balance":"18843.81", + "value":"-86.56" + } + }, + { + "id":"80f20b8b-0434-4175-95fc-416c0fb54adc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T20:13:26.928Z", + "completed":"2016-05-02T20:13:26.928Z", + "new_balance":"18790.63", + "value":"-53.18" + } + }, + { + "id":"703ee1c7-02d7-4c81-a789-7b05c83b6380", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T21:29:35.867Z", + "completed":"2016-05-02T21:29:35.867Z", + "new_balance":"18760.75", + "value":"-29.88" + } + }, + { + "id":"035b619a-a1fa-496d-a0ea-3127a8ba978d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T21:39:55.148Z", + "completed":"2016-05-02T21:39:55.148Z", + "new_balance":"18626.27", + "value":"-134.48" + } + }, + { + "id":"34383863-4fdd-48c6-ac4d-ef8a9cb2e1b3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T22:25:50.478Z", + "completed":"2016-05-02T22:25:50.478Z", + "new_balance":"18115.73", + "value":"-510.54" + } + }, + { + "id":"d6beeaeb-8f29-437e-9d9a-91a48d21520f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T11:05:56.094Z", + "completed":"2016-05-03T11:05:56.094Z", + "new_balance":"18092.36", + "value":"-23.37" + } + }, + { + "id":"5c885492-d049-43fd-9c83-4c2d44c69030", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T13:19:09.797Z", + "completed":"2016-05-03T13:19:09.797Z", + "new_balance":"18077.72", + "value":"-14.64" + } + }, + { + "id":"b85c94e7-7ef2-4216-8a0a-cc7b33d9c8a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T04:38:43.951Z", + "completed":"2016-05-04T04:38:43.951Z", + "new_balance":"18049.71", + "value":"-28.01" + } + }, + { + "id":"b273c14c-0e54-492b-836a-3a1d6add84a7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T20:09:56.749Z", + "completed":"2016-05-04T20:09:56.749Z", + "new_balance":"18023.91", + "value":"-25.80" + } + }, + { + "id":"b9350680-19c1-4b0f-a5fc-6bd42c7752d5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T22:04:05.130Z", + "completed":"2016-05-05T22:04:05.130Z", + "new_balance":"17949.98", + "value":"-73.93" + } + }, + { + "id":"53614f6e-1242-499c-a8e5-e8ac8f81c88a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T15:02:48.965Z", + "completed":"2016-05-07T15:02:48.965Z", + "new_balance":"17922.13", + "value":"-27.85" + } + }, + { + "id":"c3ed38c0-9fa7-42ce-8b04-1f3c948c3e5f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T16:55:08.037Z", + "completed":"2016-05-07T16:55:08.037Z", + "new_balance":"17918.04", + "value":"-4.09" + } + }, + { + "id":"3ad46618-80e3-4e84-98ae-3426ce868e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T00:58:03.730Z", + "completed":"2016-05-12T00:58:03.730Z", + "new_balance":"17896.94", + "value":"-21.10" + } + }, + { + "id":"d47de34d-8c19-4e73-81b9-1185365ca570", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T01:45:57.981Z", + "completed":"2016-05-12T01:45:57.981Z", + "new_balance":"17848.24", + "value":"-48.70" + } + }, + { + "id":"e1dd0853-9c80-459c-a9ae-6b9ac9ede346", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:49:38.266Z", + "completed":"2016-05-14T21:49:38.266Z", + "new_balance":"17803.07", + "value":"-45.17" + } + }, + { + "id":"76d173d8-d998-4806-9cf6-0c23417897a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T07:02:01.540Z", + "completed":"2016-05-16T07:02:01.540Z", + "new_balance":"17797.30", + "value":"-5.77" + } + }, + { + "id":"ca84de8c-e846-4cff-93df-be42b5fe6b7e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T13:14:52.037Z", + "completed":"2016-05-18T13:14:52.037Z", + "new_balance":"17788.78", + "value":"-8.52" + } + }, + { + "id":"689279af-ad57-40d3-9eac-7b6ef7a778f0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T03:16:13.073Z", + "completed":"2016-05-20T03:16:13.073Z", + "new_balance":"17827.79", + "value":"39.01" + } + }, + { + "id":"5391b8f0-ee4d-4667-ab84-ee83d5423d62", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T03:33:24.899Z", + "completed":"2016-05-21T03:33:24.899Z", + "new_balance":"17782.16", + "value":"-45.63" + } + }, + { + "id":"47b89606-d350-464c-ae60-d85b2f7d632c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T05:34:49.478Z", + "completed":"2016-05-21T05:34:49.478Z", + "new_balance":"17738.37", + "value":"-43.79" + } + }, + { + "id":"56bcde4d-1a56-4ffe-9191-93fea8d6baf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:35.049Z", + "completed":"2016-05-27T06:27:35.049Z", + "new_balance":"17704.84", + "value":"-33.53" + } + }, + { + "id":"8252d3e7-0424-4bfe-bf3d-12e8ad0a05d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T06:27:50.795Z", + "completed":"2016-05-27T06:27:50.795Z", + "new_balance":"17679.28", + "value":"-25.56" + } + }, + { + "id":"9ed60d1d-4141-48ca-88e9-ed055a5e4726", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T02:50:26.099Z", + "completed":"2016-06-01T02:50:26.099Z", + "new_balance":"17649.40", + "value":"-29.88" + } + }, + { + "id":"4b1577a7-199e-406c-988d-e6a517265859", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T03:46:04.871Z", + "completed":"2016-06-01T03:46:04.871Z", + "new_balance":"19329.81", + "value":"1680.41" + } + }, + { + "id":"384be4d1-6317-4120-967f-8d0b4cf6a3e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T14:22:16.975Z", + "completed":"2016-06-01T14:22:16.975Z", + "new_balance":"19276.63", + "value":"-53.18" + } + }, + { + "id":"3a7b7bd2-9273-45a2-b87f-ef1c3a101ffb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T14:40:47.636Z", + "completed":"2016-06-01T14:40:47.636Z", + "new_balance":"19242.20", + "value":"-34.43" + } + }, + { + "id":"b47d17c2-557d-439d-b8fe-909dd111260e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T21:11:15.595Z", + "completed":"2016-06-01T21:11:15.595Z", + "new_balance":"18731.66", + "value":"-510.54" + } + }, + { + "id":"f658bea7-4c90-41a3-b86f-944142ece90a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T21:34:37.447Z", + "completed":"2016-06-01T21:34:37.447Z", + "new_balance":"18597.18", + "value":"-134.48" + } + }, + { + "id":"d867bf99-2f58-4e2c-9ba8-3a690b45c880", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T09:12:43.179Z", + "completed":"2016-06-04T09:12:43.179Z", + "new_balance":"18510.62", + "value":"-86.56" + } + }, + { + "id":"1cd73bc3-9ff5-4ff1-b083-8e4236544b06", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T18:32:51.253Z", + "completed":"2016-06-04T18:32:51.253Z", + "new_balance":"18378.78", + "value":"-131.84" + } + }, + { + "id":"a93f0458-6a3f-40ca-b298-4355e972e53e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T18:52:25.823Z", + "completed":"2016-06-11T18:52:25.823Z", + "new_balance":"18347.97", + "value":"-30.81" + } + }, + { + "id":"f4f698d9-99df-4aa6-831c-e8cab8e5ed73", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T23:18:20.664Z", + "completed":"2016-06-12T23:18:20.664Z", + "new_balance":"18337.44", + "value":"-10.53" + } + }, + { + "id":"f94a91e6-d5bc-4a00-9222-da6d22f663c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T05:24:00.238Z", + "completed":"2016-06-13T05:24:00.238Z", + "new_balance":"18330.97", + "value":"-6.47" + } + }, + { + "id":"dd4b1077-471d-4127-ba08-d826423b4c14", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T21:22:13.403Z", + "completed":"2016-06-13T21:22:13.403Z", + "new_balance":"18249.76", + "value":"-81.21" + } + }, + { + "id":"92711f02-5432-4b47-86f9-f9fc4fbf2a48", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T03:11:52.452Z", + "completed":"2016-06-16T03:11:52.452Z", + "new_balance":"18208.53", + "value":"-41.23" + } + }, + { + "id":"8b6b5e4b-88fd-461c-bde0-51ef842a38f4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T01:32:53.925Z", + "completed":"2016-06-17T01:32:53.925Z", + "new_balance":"18127.32", + "value":"-81.21" + } + }, + { + "id":"6658e202-646b-4ccd-953e-7c5d38e41277", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T14:39:49.580Z", + "completed":"2016-06-17T14:39:49.580Z", + "new_balance":"18122.55", + "value":"-4.77" + } + }, + { + "id":"c9842102-2f01-423a-b6e8-96b47ea46aea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T00:56:33.849Z", + "completed":"2016-06-18T00:56:33.849Z", + "new_balance":"18038.75", + "value":"-83.80" + } + }, + { + "id":"e3c648cd-487a-421f-93af-06ef04af7294", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T01:09:11.765Z", + "completed":"2016-06-19T01:09:11.765Z", + "new_balance":"17954.95", + "value":"-83.80" + } + }, + { + "id":"37745297-0052-452b-9c20-9a4ffb0415ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T10:41:00.864Z", + "completed":"2016-06-19T10:41:00.864Z", + "new_balance":"17912.61", + "value":"-42.34" + } + }, + { + "id":"b01f976a-cfc3-44b8-8195-64247b3552bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T12:39:57.421Z", + "completed":"2016-06-21T12:39:57.421Z", + "new_balance":"17909.03", + "value":"-3.58" + } + }, + { + "id":"597c10ea-1482-4818-986a-f8ac7e531e88", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T12:52:03.226Z", + "completed":"2016-06-21T12:52:03.226Z", + "new_balance":"17817.56", + "value":"-91.47" + } + }, + { + "id":"3174b31e-74ce-4a0e-a50d-0e8c0edd28d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T14:30:07.770Z", + "completed":"2016-06-23T14:30:07.770Z", + "new_balance":"17810.28", + "value":"-7.28" + } + }, + { + "id":"79d155ec-0d10-4a38-9ad1-8dbac1f6f7a0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T16:35:59.431Z", + "completed":"2016-06-23T16:35:59.431Z", + "new_balance":"17782.98", + "value":"-27.30" + } + }, + { + "id":"cf21e9fa-8e80-429c-a058-bcfb09be6ff3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T07:25:08.913Z", + "completed":"2016-06-24T07:25:08.913Z", + "new_balance":"17769.74", + "value":"-13.24" + } + }, + { + "id":"f179b8a5-de25-4814-b587-15dad5949a05", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T14:23:19.919Z", + "completed":"2016-06-24T14:23:19.919Z", + "new_balance":"17723.73", + "value":"-46.01" + } + }, + { + "id":"07241f88-fa2e-4bb7-b25b-c652be698be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T02:08:05.559Z", + "completed":"2016-06-28T02:08:05.559Z", + "new_balance":"17716.74", + "value":"-6.99" + } + }, + { + "id":"6f0f529d-299e-4b73-9edb-23b66ad6d417", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T14:29:15.564Z", + "completed":"2016-06-28T14:29:15.564Z", + "new_balance":"17669.94", + "value":"-46.80" + } + }, + { + "id":"840f150e-7f82-4770-82e2-c18146f515b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T18:23:02.709Z", + "completed":"2016-06-28T18:23:02.709Z", + "new_balance":"17662.95", + "value":"-6.99" + } + }, + { + "id":"b7ff5ea0-66df-4bac-9fea-f6bef707718b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T21:44:09.636Z", + "completed":"2016-06-28T21:44:09.636Z", + "new_balance":"17581.54", + "value":"-81.41" + } + }, + { + "id":"32fa441d-d204-47e5-b041-d066a24521fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T03:20:59.480Z", + "completed":"2016-06-29T03:20:59.480Z", + "new_balance":"17530.53", + "value":"-51.01" + } + }, + { + "id":"68687ae0-49b4-43e9-bc6b-170519b6f9af", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T15:05:35.346Z", + "completed":"2016-06-29T15:05:35.346Z", + "new_balance":"17496.62", + "value":"-33.91" + } + }, + { + "id":"f6080e71-e222-4e96-b38f-07c05b251014", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:52:37.821Z", + "completed":"2016-06-29T21:52:37.821Z", + "new_balance":"17437.72", + "value":"-58.90" + } + }, + { + "id":"7b8674d5-8255-4dca-af10-a87adc8953b8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T22:44:54.306Z", + "completed":"2016-06-29T22:44:54.306Z", + "new_balance":"17431.25", + "value":"-6.47" + } + }, + { + "id":"1ffe5a38-e8aa-466e-8244-6f78cce83bbc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T22:58:23.688Z", + "completed":"2016-06-29T22:58:23.688Z", + "new_balance":"17394.30", + "value":"-36.95" + } + }, + { + "id":"86c1a7a0-883c-42f1-b8b7-acedd08e93a2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T23:41:11.517Z", + "completed":"2016-06-29T23:41:11.517Z", + "new_balance":"17320.79", + "value":"-73.51" + } + }, + { + "id":"b2e52cdd-632d-4fb3-b1fc-7bc9a09ea1c8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T01:20:26.963Z", + "completed":"2016-06-30T01:20:26.963Z", + "new_balance":"17291.93", + "value":"-28.86" + } + }, + { + "id":"32f9f0b3-151a-4a5f-9def-da233948c900", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T11:42:37.583Z", + "completed":"2016-06-30T11:42:37.583Z", + "new_balance":"17286.05", + "value":"-5.88" + } + }, + { + "id":"38d22f85-8509-4c82-8c48-b1e90a167f63", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T16:27:01.746Z", + "completed":"2016-06-30T16:27:01.746Z", + "new_balance":"17240.54", + "value":"-45.51" + } + }, + { + "id":"44afb45b-b245-43c0-afba-c33715989ddf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T16:58:19.563Z", + "completed":"2016-06-30T16:58:19.563Z", + "new_balance":"17229.31", + "value":"-11.23" + } + }, + { + "id":"8a224c36-ddd3-4b7e-843c-056a824a7b27", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T01:39:10.552Z", + "completed":"2016-07-01T01:39:10.552Z", + "new_balance":"17199.43", + "value":"-29.88" + } + }, + { + "id":"0677c2d0-0f7d-4788-a946-d3f8eaa8d429", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T04:22:10.341Z", + "completed":"2016-07-01T04:22:10.341Z", + "new_balance":"17172.46", + "value":"-26.97" + } + }, + { + "id":"2a31a86e-11fc-4b74-9a18-7ebdfa6f2de3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T04:24:45.870Z", + "completed":"2016-07-01T04:24:45.870Z", + "new_balance":"17156.38", + "value":"-16.08" + } + }, + { + "id":"c651dd9f-ccda-4404-86d7-f17c6594b0a0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T04:55:22.156Z", + "completed":"2016-07-01T04:55:22.156Z", + "new_balance":"17021.90", + "value":"-134.48" + } + }, + { + "id":"733b84c6-0980-41a6-b5af-769fcec852b8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T08:48:15.297Z", + "completed":"2016-07-01T08:48:15.297Z", + "new_balance":"16987.87", + "value":"-34.03" + } + }, + { + "id":"94fbc650-d3d3-4456-a88f-68e47db38be4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T12:30:22.135Z", + "completed":"2016-07-01T12:30:22.135Z", + "new_balance":"16477.33", + "value":"-510.54" + } + }, + { + "id":"39e0c799-815c-4808-95a0-01839d962fd7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:07:11.432Z", + "completed":"2016-07-01T21:07:11.432Z", + "new_balance":"16442.90", + "value":"-34.43" + } + }, + { + "id":"bcaa26df-c2d7-4cf3-9ada-b2b0ceb98d50", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T21:11:48.877Z", + "completed":"2016-07-01T21:11:48.877Z", + "new_balance":"16408.47", + "value":"-34.43" + } + }, + { + "id":"401474aa-d306-4d6d-9dc4-b35e49a147a3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T22:37:35.823Z", + "completed":"2016-07-01T22:37:35.823Z", + "new_balance":"16355.29", + "value":"-53.18" + } + }, + { + "id":"837bbc70-aebb-4bc4-ae54-3012bbf4e1bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T23:07:10.023Z", + "completed":"2016-07-01T23:07:10.023Z", + "new_balance":"16166.02", + "value":"-189.27" + } + }, + { + "id":"71525081-c9ae-4d59-9318-7dd6d87449bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T03:27:40.329Z", + "completed":"2016-07-02T03:27:40.329Z", + "new_balance":"16079.46", + "value":"-86.56" + } + }, + { + "id":"4840a31c-5039-4f9a-b2d0-9fa9923ad5c2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T02:52:19.096Z", + "completed":"2016-07-03T02:52:19.096Z", + "new_balance":"15984.03", + "value":"-95.43" + } + }, + { + "id":"3b7498c0-a4f8-4ee9-aa59-699905605ed2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T18:38:11.916Z", + "completed":"2016-07-04T18:38:11.916Z", + "new_balance":"15968.25", + "value":"-15.78" + } + }, + { + "id":"5226cb5e-e1e1-4b5e-9db2-37cc376459fd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T06:02:08.532Z", + "completed":"2016-07-05T06:02:08.532Z", + "new_balance":"15894.32", + "value":"-73.93" + } + }, + { + "id":"5e12a938-7e95-4888-b3dd-fed13c6b6b54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T10:36:19.926Z", + "completed":"2016-07-05T10:36:19.926Z", + "new_balance":"15822.23", + "value":"-72.09" + } + }, + { + "id":"263d0887-b0bc-41bb-bf1f-da810e0d76d0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T07:05:13.976Z", + "completed":"2016-07-06T07:05:13.976Z", + "new_balance":"15818.64", + "value":"-3.59" + } + }, + { + "id":"aab67192-7e68-44a2-b87d-ba280670b98d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T00:57:43.472Z", + "completed":"2016-07-11T00:57:43.472Z", + "new_balance":"15791.19", + "value":"-27.45" + } + }, + { + "id":"dff4902c-cb55-4e59-8bf9-51d0d32cacf3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T06:21:47.846Z", + "completed":"2016-07-12T06:21:47.846Z", + "new_balance":"15759.90", + "value":"-31.29" + } + }, + { + "id":"a55e1d5b-71c3-4aa3-aa42-995a7d9ea360", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T08:51:40.372Z", + "completed":"2016-07-14T08:51:40.372Z", + "new_balance":"15745.08", + "value":"-14.82" + } + }, + { + "id":"39cfd237-34a4-49f6-995c-fbf626120411", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T11:35:18.676Z", + "completed":"2016-07-16T11:35:18.676Z", + "new_balance":"15737.92", + "value":"-7.16" + } + }, + { + "id":"55d401b4-6bdd-4a2b-9cdd-59d8a9a86671", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T19:28:05.961Z", + "completed":"2016-07-18T19:28:05.961Z", + "new_balance":"15715.67", + "value":"-22.25" + } + }, + { + "id":"50d76209-0613-4035-8abe-535eb08f5ef8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T06:00:25.961Z", + "completed":"2016-07-20T06:00:25.961Z", + "new_balance":"15526.40", + "value":"-189.27" + } + }, + { + "id":"d0504939-a551-4b4d-8773-29ed6931e77b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T17:04:28.323Z", + "completed":"2016-07-20T17:04:28.323Z", + "new_balance":"15519.69", + "value":"-6.71" + } + }, + { + "id":"faca9a03-b6cc-4b70-8aec-7ee4c55ba18d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T15:20:16.042Z", + "completed":"2016-07-24T15:20:16.042Z", + "new_balance":"15474.45", + "value":"-45.24" + } + }, + { + "id":"39f537a0-7494-473c-bf96-198b66196348", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T15:38:36.274Z", + "completed":"2016-07-24T15:38:36.274Z", + "new_balance":"15464.75", + "value":"-9.70" + } + }, + { + "id":"564fa10d-0a88-4049-a651-1ab4bead7ee5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T04:30:39.174Z", + "completed":"2016-07-25T04:30:39.174Z", + "new_balance":"15422.23", + "value":"-42.52" + } + }, + { + "id":"12aaf2e4-4922-4d98-9f68-8872461bf44c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T05:44:25.496Z", + "completed":"2016-07-25T05:44:25.496Z", + "new_balance":"15389.95", + "value":"-32.28" + } + }, + { + "id":"0c31fe65-38d9-45a2-b797-9ceadb8c38c0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T01:48:40.342Z", + "completed":"2016-07-26T01:48:40.342Z", + "new_balance":"15326.38", + "value":"-63.57" + } + }, + { + "id":"b638d614-c0b7-41fe-859d-9458e23df9da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T20:24:48.721Z", + "completed":"2016-07-27T20:24:48.721Z", + "new_balance":"15319.67", + "value":"-6.71" + } + }, + { + "id":"013483ba-0693-43e9-98ea-0e45c5b93cb4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T01:11:13.069Z", + "completed":"2016-08-01T01:11:13.069Z", + "new_balance":"17000.08", + "value":"1680.41" + } + }, + { + "id":"4965e364-babc-4c14-a892-93334e55fdfc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T05:30:00.883Z", + "completed":"2016-08-01T05:30:00.883Z", + "new_balance":"16865.60", + "value":"-134.48" + } + }, + { + "id":"4cb4f2f8-f5a8-4c59-8ffe-b42fb1557b97", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T06:13:25.687Z", + "completed":"2016-08-01T06:13:25.687Z", + "new_balance":"16812.42", + "value":"-53.18" + } + }, + { + "id":"660e8dd3-8898-4389-b3a6-7cf0545152bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T08:10:11.309Z", + "completed":"2016-08-01T08:10:11.309Z", + "new_balance":"16782.54", + "value":"-29.88" + } + }, + { + "id":"abb8aeaa-c21b-4541-90b5-8c0c91cd2e24", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T08:10:39.312Z", + "completed":"2016-08-01T08:10:39.312Z", + "new_balance":"16272.00", + "value":"-510.54" + } + }, + { + "id":"0dc0cec7-906b-4059-aafa-5731997858f7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T17:57:07.412Z", + "completed":"2016-08-01T17:57:07.412Z", + "new_balance":"16237.57", + "value":"-34.43" + } + }, + { + "id":"69372664-8112-469c-a9d7-8469ec416326", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T09:26:43.609Z", + "completed":"2016-08-02T09:26:43.609Z", + "new_balance":"16151.01", + "value":"-86.56" + } + }, + { + "id":"fe36eee5-59b7-4dd0-a87d-a4c37eeab64f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T01:05:03.416Z", + "completed":"2016-08-03T01:05:03.416Z", + "new_balance":"16147.42", + "value":"-3.59" + } + }, + { + "id":"483cd9b7-a1db-4c61-b716-c63c86027c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T14:23:01.780Z", + "completed":"2016-08-04T14:23:01.780Z", + "new_balance":"16112.87", + "value":"-34.55" + } + }, + { + "id":"e051b7fc-a617-4ade-9700-a03840a9f747", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T11:01:01.836Z", + "completed":"2016-08-07T11:01:01.836Z", + "new_balance":"16089.50", + "value":"-23.37" + } + }, + { + "id":"e40ec565-8409-4cf3-87d5-771fc9c23c59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T17:32:25.320Z", + "completed":"2016-08-09T17:32:25.320Z", + "new_balance":"16061.49", + "value":"-28.01" + } + }, + { + "id":"efc72cf5-1590-460a-9ec8-5d29f1192528", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T19:08:41.095Z", + "completed":"2016-08-09T19:08:41.095Z", + "new_balance":"16035.69", + "value":"-25.80" + } + }, + { + "id":"c1ab7b77-ef77-4c61-8ea8-9981eb36a171", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T22:41:28.263Z", + "completed":"2016-08-10T22:41:28.263Z", + "new_balance":"15961.76", + "value":"-73.93" + } + }, + { + "id":"477bdc43-ed61-4e38-abd6-2f4fb56d5689", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T15:57:25.564Z", + "completed":"2016-08-14T15:57:25.564Z", + "new_balance":"15957.67", + "value":"-4.09" + } + }, + { + "id":"f0067577-2d4b-4347-a081-84be9a148626", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T13:46:47.699Z", + "completed":"2016-08-15T13:46:47.699Z", + "new_balance":"15921.74", + "value":"-35.93" + } + }, + { + "id":"f8c28546-cc20-43c4-b555-a2965252e18f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T17:14:12.548Z", + "completed":"2016-08-15T17:14:12.548Z", + "new_balance":"15893.89", + "value":"-27.85" + } + }, + { + "id":"d9d6ef21-e0f8-4b58-9a0d-ac72c7d51df5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T06:44:55.652Z", + "completed":"2016-08-16T06:44:55.652Z", + "new_balance":"15845.19", + "value":"-48.70" + } + }, + { + "id":"3e9e4809-8484-4347-a3e8-d16e6728b6c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T08:30:41.970Z", + "completed":"2016-08-17T08:30:41.970Z", + "new_balance":"15800.02", + "value":"-45.17" + } + }, + { + "id":"080c4baf-5cba-42b9-88ac-cad1462bcee8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T05:14:59.231Z", + "completed":"2016-08-20T05:14:59.231Z", + "new_balance":"15791.50", + "value":"-8.52" + } + }, + { + "id":"86f95ec3-9bd3-41bf-ae38-a6f010ba1f1d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T13:04:43.006Z", + "completed":"2016-08-20T13:04:43.006Z", + "new_balance":"15785.73", + "value":"-5.77" + } + }, + { + "id":"f8304ff2-5f1a-49d1-b3b2-7d0ddbc6052a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T01:47:12.446Z", + "completed":"2016-08-22T01:47:12.446Z", + "new_balance":"15824.74", + "value":"39.01" + } + }, + { + "id":"7b06d93b-10de-4b1a-8423-262b23e4f7d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T09:11:36.348Z", + "completed":"2016-08-23T09:11:36.348Z", + "new_balance":"15779.11", + "value":"-45.63" + } + }, + { + "id":"358cea47-d950-46a5-9f17-181d6fe35234", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T21:05:21.697Z", + "completed":"2016-08-23T21:05:21.697Z", + "new_balance":"15735.32", + "value":"-43.79" + } + }, + { + "id":"510e325f-8c44-4a7f-9daa-4c5323126908", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T05:31:54.933Z", + "completed":"2016-08-28T05:31:54.933Z", + "new_balance":"15709.76", + "value":"-25.56" + } + }, + { + "id":"6ca6e0d5-61be-4dcd-829b-6e26b306874e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T17:14:10.802Z", + "completed":"2016-08-28T17:14:10.802Z", + "new_balance":"15676.23", + "value":"-33.53" + } + }, + { + "id":"e6e96208-a3bb-46bc-b394-513ed03547ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T14:01:32.086Z", + "completed":"2016-09-01T14:01:32.086Z", + "new_balance":"15646.35", + "value":"-29.88" + } + }, + { + "id":"e852f8a1-6f21-429d-877a-42152b5ceed7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T15:03:44.167Z", + "completed":"2016-09-01T15:03:44.167Z", + "new_balance":"15135.81", + "value":"-510.54" + } + }, + { + "id":"d9820003-2eef-4190-8341-d0f41905337f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T15:25:10.827Z", + "completed":"2016-09-01T15:25:10.827Z", + "new_balance":"16816.22", + "value":"1680.41" + } + }, + { + "id":"7ea476b5-deba-4ebc-816d-47cada7698e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T16:12:45.897Z", + "completed":"2016-09-01T16:12:45.897Z", + "new_balance":"16763.04", + "value":"-53.18" + } + }, + { + "id":"8b7153a7-54e5-4cf4-a5c5-f612768b251f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T20:29:49.226Z", + "completed":"2016-09-01T20:29:49.226Z", + "new_balance":"16628.56", + "value":"-134.48" + } + }, + { + "id":"a1b0abf4-6442-4848-a650-41b08ba25554", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T23:13:12.017Z", + "completed":"2016-09-01T23:13:12.017Z", + "new_balance":"16594.13", + "value":"-34.43" + } + }, + { + "id":"6f678f2c-4526-4818-8ed1-1f3975a6bf11", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T10:53:29.636Z", + "completed":"2016-09-02T10:53:29.636Z", + "new_balance":"16507.57", + "value":"-86.56" + } + }, + { + "id":"05dac8d1-fd02-4c36-806e-a119ca3d5f63", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T09:51:25.257Z", + "completed":"2016-09-04T09:51:25.257Z", + "new_balance":"16501.10", + "value":"-6.47" + } + }, + { + "id":"c17a91bb-5bf5-4174-ac7e-3368f9c373d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T15:57:39.607Z", + "completed":"2016-09-04T15:57:39.607Z", + "new_balance":"16419.89", + "value":"-81.21" + } + }, + { + "id":"69a138c5-19fc-4239-9376-0de41869f789", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T21:14:33.988Z", + "completed":"2016-09-04T21:14:33.988Z", + "new_balance":"16409.36", + "value":"-10.53" + } + }, + { + "id":"911caf71-f272-4a3f-94d3-493722c7dff3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T22:07:22.718Z", + "completed":"2016-09-04T22:07:22.718Z", + "new_balance":"16378.55", + "value":"-30.81" + } + }, + { + "id":"dc9f2e0f-a1e7-474e-84d4-5f88b397806a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T01:26:03.504Z", + "completed":"2016-09-05T01:26:03.504Z", + "new_balance":"16373.78", + "value":"-4.77" + } + }, + { + "id":"65d5dbe5-6cce-474c-b7fe-6a674dd60efd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T01:38:48.820Z", + "completed":"2016-09-05T01:38:48.820Z", + "new_balance":"16332.55", + "value":"-41.23" + } + }, + { + "id":"cbbc1a2d-b2cb-4056-bf38-ef2ecdff08b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T00:09:36.789Z", + "completed":"2016-09-06T00:09:36.789Z", + "new_balance":"16251.34", + "value":"-81.21" + } + }, + { + "id":"adac961d-4a4a-47b4-a696-1295c00d6f9f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T15:50:21.911Z", + "completed":"2016-09-06T15:50:21.911Z", + "new_balance":"16167.54", + "value":"-83.80" + } + }, + { + "id":"6c1ee969-e30a-4db8-8d20-e2d65bb32157", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T01:09:49.552Z", + "completed":"2016-09-08T01:09:49.552Z", + "new_balance":"16125.20", + "value":"-42.34" + } + }, + { + "id":"51351137-f215-405c-8914-83299f09fd06", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T07:16:09.061Z", + "completed":"2016-09-08T07:16:09.061Z", + "new_balance":"16041.40", + "value":"-83.80" + } + }, + { + "id":"cfb913b6-716e-49ba-be0b-12d1703f2b44", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T03:11:05.816Z", + "completed":"2016-09-10T03:11:05.816Z", + "new_balance":"15949.93", + "value":"-91.47" + } + }, + { + "id":"1f26df41-46c2-4a38-ad8b-f5a18350fd76", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T11:35:18.192Z", + "completed":"2016-09-10T11:35:18.192Z", + "new_balance":"15946.35", + "value":"-3.58" + } + }, + { + "id":"7aca13ac-7e64-4ca4-972e-372cec90e2aa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T22:22:03.659Z", + "completed":"2016-09-11T22:22:03.659Z", + "new_balance":"15939.07", + "value":"-7.28" + } + }, + { + "id":"5c315a88-0084-4d90-b025-fa4b304646c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T04:03:06.352Z", + "completed":"2016-09-12T04:03:06.352Z", + "new_balance":"15911.77", + "value":"-27.30" + } + }, + { + "id":"61f58d2b-846a-4265-9a01-2bf0fab42201", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T21:00:07.334Z", + "completed":"2016-09-12T21:00:07.334Z", + "new_balance":"15898.53", + "value":"-13.24" + } + }, + { + "id":"973849d6-1749-424b-813f-0343e1323ae1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T18:08:29.052Z", + "completed":"2016-09-13T18:08:29.052Z", + "new_balance":"15852.52", + "value":"-46.01" + } + }, + { + "id":"348a617c-5e66-4f99-96cd-e133fe19c0a6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T10:01:53.714Z", + "completed":"2016-09-16T10:01:53.714Z", + "new_balance":"15845.53", + "value":"-6.99" + } + }, + { + "id":"a5457cc5-ef67-4ecb-8b78-7ce1ae033077", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T01:25:11.042Z", + "completed":"2016-09-17T01:25:11.042Z", + "new_balance":"15764.12", + "value":"-81.41" + } + }, + { + "id":"42dcebf5-6664-47d9-bf36-8836f994d1d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T08:04:33.606Z", + "completed":"2016-09-17T08:04:33.606Z", + "new_balance":"15717.32", + "value":"-46.80" + } + }, + { + "id":"a926b1c3-b544-4d5f-8b26-395b0a5c45b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T14:09:22.710Z", + "completed":"2016-09-18T14:09:22.710Z", + "new_balance":"15710.33", + "value":"-6.99" + } + }, + { + "id":"4432efb3-b8d6-4164-b2b5-89a24a6ea2e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T09:18:38.235Z", + "completed":"2016-09-19T09:18:38.235Z", + "new_balance":"15673.38", + "value":"-36.95" + } + }, + { + "id":"a005653d-6fb1-4c1c-99ca-56bfc34bcf5b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T23:07:15.493Z", + "completed":"2016-09-19T23:07:15.493Z", + "new_balance":"15622.37", + "value":"-51.01" + } + }, + { + "id":"987d76db-11e0-4b57-a059-a33bddb8f8d4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T23:50:14.202Z", + "completed":"2016-09-19T23:50:14.202Z", + "new_balance":"15588.46", + "value":"-33.91" + } + }, + { + "id":"39d84c2d-5d3c-4c9c-a686-b6a7c438bef1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T06:45:01.995Z", + "completed":"2016-09-20T06:45:01.995Z", + "new_balance":"15529.56", + "value":"-58.90" + } + }, + { + "id":"ec2a4939-df97-42a5-8608-cb48e9c2b0b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T23:28:53.976Z", + "completed":"2016-09-20T23:28:53.976Z", + "new_balance":"15456.05", + "value":"-73.51" + } + }, + { + "id":"be99d48e-f13b-460b-ab34-38c3a28e1830", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T07:21:53.224Z", + "completed":"2016-09-21T07:21:53.224Z", + "new_balance":"15450.17", + "value":"-5.88" + } + }, + { + "id":"41713eb5-745e-49d8-bca1-201a897aab2f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T11:59:19.187Z", + "completed":"2016-09-21T11:59:19.187Z", + "new_balance":"15443.70", + "value":"-6.47" + } + }, + { + "id":"8847f91a-e20c-4dc3-9bc5-d9c6f28c4b65", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T03:32:51.199Z", + "completed":"2016-09-23T03:32:51.199Z", + "new_balance":"15398.19", + "value":"-45.51" + } + }, + { + "id":"9cb666f3-a5e9-4912-b502-44c1195832ef", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T19:17:16.754Z", + "completed":"2016-09-23T19:17:16.754Z", + "new_balance":"15386.96", + "value":"-11.23" + } + }, + { + "id":"5cf89b15-0b06-4d30-9250-d3d4150e620e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T12:00:56.918Z", + "completed":"2016-09-24T12:00:56.918Z", + "new_balance":"15358.10", + "value":"-28.86" + } + }, + { + "id":"4232fd3c-beed-4b25-950a-fc0855033894", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T00:30:50.843Z", + "completed":"2016-09-25T00:30:50.843Z", + "new_balance":"15324.07", + "value":"-34.03" + } + }, + { + "id":"3a4f7775-3169-4114-ba08-a5c9514bebbf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T22:10:34.580Z", + "completed":"2016-09-25T22:10:34.580Z", + "new_balance":"15307.99", + "value":"-16.08" + } + }, + { + "id":"a1c32ba7-bd0f-41b5-93ee-dbcc5fc7e771", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T15:50:29.236Z", + "completed":"2016-09-27T15:50:29.236Z", + "new_balance":"15118.72", + "value":"-189.27" + } + }, + { + "id":"13f98410-a72b-4c05-832d-a48921c6eba9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T09:47:50.575Z", + "completed":"2016-09-29T09:47:50.575Z", + "new_balance":"15091.75", + "value":"-26.97" + } + }, + { + "id":"9cf8012d-3043-4418-804d-7134d5b11f52", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:30:48.725Z", + "completed":"2016-10-01T05:30:48.725Z", + "new_balance":"14957.27", + "value":"-134.48" + } + }, + { + "id":"31dea651-e387-4177-af7d-a3875d03b78a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T09:12:38.206Z", + "completed":"2016-10-01T09:12:38.206Z", + "new_balance":"14446.73", + "value":"-510.54" + } + }, + { + "id":"54e9485f-5420-4cb4-9214-38682344d057", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T09:48:43.554Z", + "completed":"2016-10-01T09:48:43.554Z", + "new_balance":"14416.85", + "value":"-29.88" + } + }, + { + "id":"7efbd0a3-e9c7-4460-9fc5-85a928db1352", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T23:17:56.180Z", + "completed":"2016-10-01T23:17:56.180Z", + "new_balance":"14363.67", + "value":"-53.18" + } + }, + { + "id":"7a741812-61b9-4a84-a7b3-841df382b2dc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T19:55:22.552Z", + "completed":"2016-10-02T19:55:22.552Z", + "new_balance":"14291.68", + "value":"-71.99" + } + }, + { + "id":"b2b0a514-49b4-4668-a5ce-07964847c44d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T20:21:49.962Z", + "completed":"2016-10-02T20:21:49.962Z", + "new_balance":"14205.12", + "value":"-86.56" + } + }, + { + "id":"cd5a2922-a437-4a84-aecc-019862e5275d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T06:52:40.158Z", + "completed":"2016-10-03T06:52:40.158Z", + "new_balance":"14170.34", + "value":"-34.78" + } + }, + { + "id":"011f2f59-d8c2-466c-a5aa-7f07fda27118", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T07:51:04.703Z", + "completed":"2016-10-03T07:51:04.703Z", + "new_balance":"13981.07", + "value":"-189.27" + } + }, + { + "id":"22f206ea-4aad-4978-a896-5521861eaf0c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T12:20:21.929Z", + "completed":"2016-10-03T12:20:21.929Z", + "new_balance":"13943.88", + "value":"-37.19" + } + }, + { + "id":"157692cf-dbfc-4b24-bacb-c2b7d4841c5e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T22:05:24.116Z", + "completed":"2016-10-03T22:05:24.116Z", + "new_balance":"13212.03", + "value":"-731.85" + } + }, + { + "id":"8c24852c-a0fd-4bd4-826d-43724cfe026d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T23:37:00.415Z", + "completed":"2016-10-03T23:37:00.415Z", + "new_balance":"13048.55", + "value":"-163.48" + } + }, + { + "id":"14cfe760-df96-4d08-81b2-bc8a60d0144b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T13:36:39.270Z", + "completed":"2016-10-04T13:36:39.270Z", + "new_balance":"12974.62", + "value":"-73.93" + } + }, + { + "id":"102e5154-cab2-4d15-8e6f-1c83d57cbfa8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T07:03:45.335Z", + "completed":"2016-10-05T07:03:45.335Z", + "new_balance":"12947.17", + "value":"-27.45" + } + }, + { + "id":"1bfecf00-bc60-4b00-b09f-d1722115f444", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T08:00:46.029Z", + "completed":"2016-10-05T08:00:46.029Z", + "new_balance":"12943.58", + "value":"-3.59" + } + }, + { + "id":"4e2f4afb-0ad9-4175-bbfe-5ec162a6eaf6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T07:04:56.282Z", + "completed":"2016-10-07T07:04:56.282Z", + "new_balance":"12912.29", + "value":"-31.29" + } + }, + { + "id":"f82be953-7088-4316-8c39-08255bd9b04b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T09:38:18.208Z", + "completed":"2016-10-07T09:38:18.208Z", + "new_balance":"12897.47", + "value":"-14.82" + } + }, + { + "id":"cb5d3d30-7bbf-4c93-a511-dc26ecc93ecb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T02:00:48.160Z", + "completed":"2016-10-08T02:00:48.160Z", + "new_balance":"12890.31", + "value":"-7.16" + } + }, + { + "id":"fb80083a-0b86-4ff9-a26a-ebb9ad68a974", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T00:11:59.898Z", + "completed":"2016-10-09T00:11:59.898Z", + "new_balance":"12868.06", + "value":"-22.25" + } + }, + { + "id":"6f331ed4-8fde-4776-aa69-c1efb43b6055", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T08:42:30.437Z", + "completed":"2016-10-09T08:42:30.437Z", + "new_balance":"12678.79", + "value":"-189.27" + } + }, + { + "id":"386d438d-7859-4fd7-a3a7-5491879e86a5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T18:57:49.801Z", + "completed":"2016-10-09T18:57:49.801Z", + "new_balance":"12672.08", + "value":"-6.71" + } + }, + { + "id":"719f47fa-7cf9-440c-91a5-db591c7219a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T00:51:30.924Z", + "completed":"2016-10-10T00:51:30.924Z", + "new_balance":"12626.84", + "value":"-45.24" + } + }, + { + "id":"fbbf3285-4079-480b-bd28-019100a4b979", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T05:28:45.097Z", + "completed":"2016-10-17T05:28:45.097Z", + "new_balance":"12617.14", + "value":"-9.70" + } + }, + { + "id":"4db2129b-04d5-4061-8eca-1cdcecbf93d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T11:35:34.895Z", + "completed":"2016-10-18T11:35:34.895Z", + "new_balance":"12584.86", + "value":"-32.28" + } + }, + { + "id":"15e422c2-98c1-4c6a-ba64-e309265c97ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T16:51:42.872Z", + "completed":"2016-10-25T16:51:42.872Z", + "new_balance":"12542.34", + "value":"-42.52" + } + }, + { + "id":"bfe1c746-5361-4527-b313-da62ed065046", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T09:10:45.122Z", + "completed":"2016-10-26T09:10:45.122Z", + "new_balance":"12535.63", + "value":"-6.71" + } + }, + { + "id":"4d2972b0-ccb4-4c8c-a985-1dfb1174d194", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T12:02:26.925Z", + "completed":"2016-10-26T12:02:26.925Z", + "new_balance":"12472.06", + "value":"-63.57" + } + }, + { + "id":"9e3afe94-62e7-4fbb-a08e-7eca64fbcdd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T04:07:30.514Z", + "completed":"2016-11-02T04:07:30.514Z", + "new_balance":"12337.58", + "value":"-134.48" + } + }, + { + "id":"55e6808c-8f56-4232-84c3-6387365147ef", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T05:22:20.493Z", + "completed":"2016-11-02T05:22:20.493Z", + "new_balance":"12321.65", + "value":"-15.93" + } + }, + { + "id":"48039e88-2b08-4872-9a3f-d145b7f2e82b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T05:34:31.341Z", + "completed":"2016-11-02T05:34:31.341Z", + "new_balance":"11811.11", + "value":"-510.54" + } + }, + { + "id":"476a1816-fd80-4b1b-9a2a-22a3c0487920", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:07:32.990Z", + "completed":"2016-11-02T12:07:32.990Z", + "new_balance":"11757.93", + "value":"-53.18" + } + }, + { + "id":"49873f90-5a5b-4185-9478-f673a3ee7eca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T14:54:29.527Z", + "completed":"2016-11-02T14:54:29.527Z", + "new_balance":"11728.05", + "value":"-29.88" + } + }, + { + "id":"ac8d2f18-43ac-4aaf-a21c-e5ac5476b6c3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T16:46:22.842Z", + "completed":"2016-11-02T16:46:22.842Z", + "new_balance":"11641.49", + "value":"-86.56" + } + }, + { + "id":"146b343f-2611-4939-b687-1ac91036c47a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T17:57:18.465Z", + "completed":"2016-11-02T17:57:18.465Z", + "new_balance":"13321.90", + "value":"1680.41" + } + }, + { + "id":"8d896674-de2e-43fb-9f85-95ea222ca913", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T23:49:24.976Z", + "completed":"2016-11-02T23:49:24.976Z", + "new_balance":"13287.47", + "value":"-34.43" + } + }, + { + "id":"4143deaf-3001-488e-b6a6-3eb4c9120a87", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T08:03:19.678Z", + "completed":"2016-11-06T08:03:19.678Z", + "new_balance":"13272.83", + "value":"-14.64" + } + }, + { + "id":"efac94cf-3cda-40bb-abee-2f2bd686f7e2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T04:32:50.905Z", + "completed":"2016-11-07T04:32:50.905Z", + "new_balance":"13249.46", + "value":"-23.37" + } + }, + { + "id":"6367c782-de62-4d9f-bf67-5edadcc485db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T06:48:11.823Z", + "completed":"2016-11-07T06:48:11.823Z", + "new_balance":"13221.45", + "value":"-28.01" + } + }, + { + "id":"eb5f0bce-fd98-4d51-90cb-d1d1d5081079", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T10:31:24.692Z", + "completed":"2016-11-07T10:31:24.692Z", + "new_balance":"13195.65", + "value":"-25.80" + } + }, + { + "id":"582a8fa1-d8ee-4df2-94eb-0146612be589", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T09:40:46.821Z", + "completed":"2016-11-09T09:40:46.821Z", + "new_balance":"13121.72", + "value":"-73.93" + } + }, + { + "id":"bd2cbcf0-2827-4db2-9f8c-2e980d1385fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T11:02:12.373Z", + "completed":"2016-11-09T11:02:12.373Z", + "new_balance":"13117.63", + "value":"-4.09" + } + }, + { + "id":"0a4bb2b0-4bec-4eb6-84db-2522d42ff368", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T07:54:19.536Z", + "completed":"2016-11-12T07:54:19.536Z", + "new_balance":"13089.78", + "value":"-27.85" + } + }, + { + "id":"4a4570ba-2e98-4fba-96ff-c394d4e1446d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T23:47:59.652Z", + "completed":"2016-11-12T23:47:59.652Z", + "new_balance":"13068.68", + "value":"-21.10" + } + }, + { + "id":"f2122f0d-a37a-4d34-8434-0825319ff6e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T02:40:34.324Z", + "completed":"2016-11-14T02:40:34.324Z", + "new_balance":"13019.98", + "value":"-48.70" + } + }, + { + "id":"43257bea-bb4f-488e-9f9b-e51e5f5d5840", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T06:21:42.528Z", + "completed":"2016-11-14T06:21:42.528Z", + "new_balance":"12974.81", + "value":"-45.17" + } + }, + { + "id":"d726c00e-075c-4028-aeb7-b2fe686dd664", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T20:59:59.295Z", + "completed":"2016-11-16T20:59:59.295Z", + "new_balance":"12969.04", + "value":"-5.77" + } + }, + { + "id":"93f29459-584a-4ef6-8ba0-e24ff04a9c0f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T19:19:11.552Z", + "completed":"2016-11-18T19:19:11.552Z", + "new_balance":"12960.52", + "value":"-8.52" + } + }, + { + "id":"816e1c7d-48df-4742-8927-2a076beb0711", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T00:55:35.960Z", + "completed":"2016-11-20T00:55:35.960Z", + "new_balance":"12999.53", + "value":"39.01" + } + }, + { + "id":"2e765361-d648-4e17-9a0a-33278e6c2413", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T03:58:56.638Z", + "completed":"2016-11-21T03:58:56.638Z", + "new_balance":"12955.74", + "value":"-43.79" + } + }, + { + "id":"7936a624-4518-440d-a423-adfb5c7db31f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T04:27:50.436Z", + "completed":"2016-11-21T04:27:50.436Z", + "new_balance":"12910.11", + "value":"-45.63" + } + }, + { + "id":"fb243e37-5e7b-404e-8629-0e82ea92a0b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T05:01:38.009Z", + "completed":"2016-11-27T05:01:38.009Z", + "new_balance":"12876.58", + "value":"-33.53" + } + }, + { + "id":"24334e08-40c5-4d34-80d2-80ea7288656d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T18:28:18.473Z", + "completed":"2016-11-27T18:28:18.473Z", + "new_balance":"12851.02", + "value":"-25.56" + } + }, + { + "id":"194876c9-84c2-4f9a-a01d-40e6e756cdca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T00:08:33.001Z", + "completed":"2016-12-01T00:08:33.001Z", + "new_balance":"12816.59", + "value":"-34.43" + } + }, + { + "id":"584602bc-b77c-4f12-9e57-bf8899d18229", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T03:59:44.037Z", + "completed":"2016-12-01T03:59:44.037Z", + "new_balance":"12763.41", + "value":"-53.18" + } + }, + { + "id":"54e81da9-ae82-4d0f-813b-2123127b29ac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T04:57:31.032Z", + "completed":"2016-12-01T04:57:31.032Z", + "new_balance":"12252.87", + "value":"-510.54" + } + }, + { + "id":"d4ea80a9-5152-4686-a409-fbb26cb3b54f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T15:34:00.642Z", + "completed":"2016-12-01T15:34:00.642Z", + "new_balance":"13933.28", + "value":"1680.41" + } + }, + { + "id":"41b486aa-5e7b-422f-955d-d2ee27edcdf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T18:05:45.480Z", + "completed":"2016-12-01T18:05:45.480Z", + "new_balance":"13903.40", + "value":"-29.88" + } + }, + { + "id":"93291bc4-74c1-450a-a02e-5cfa52fe62d1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T22:32:51.713Z", + "completed":"2016-12-01T22:32:51.713Z", + "new_balance":"13768.92", + "value":"-134.48" + } + }, + { + "id":"a077e7a4-9440-434c-a270-668a54d5cbba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T02:13:57.846Z", + "completed":"2016-12-04T02:13:57.846Z", + "new_balance":"13682.36", + "value":"-86.56" + } + }, + { + "id":"78f8bca0-c725-480b-8a4d-5fee04d248da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T10:30:18.803Z", + "completed":"2016-12-04T10:30:18.803Z", + "new_balance":"13550.52", + "value":"-131.84" + } + }, + { + "id":"79fdb778-b399-4d6d-879b-8ab1b5b7fd07", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T01:59:24.374Z", + "completed":"2016-12-12T01:59:24.374Z", + "new_balance":"13519.71", + "value":"-30.81" + } + }, + { + "id":"979b3a62-278a-471d-83d5-5e295dd81cdf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T13:03:57.847Z", + "completed":"2016-12-12T13:03:57.847Z", + "new_balance":"13509.18", + "value":"-10.53" + } + }, + { + "id":"b9aebc75-b75e-47b4-a73a-c06a32e6f5bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T00:04:11.081Z", + "completed":"2016-12-13T00:04:11.081Z", + "new_balance":"13502.71", + "value":"-6.47" + } + }, + { + "id":"3be1514b-c24f-439e-b2e9-546fe86f0983", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T13:43:45.813Z", + "completed":"2016-12-13T13:43:45.813Z", + "new_balance":"13421.50", + "value":"-81.21" + } + }, + { + "id":"0157ea2a-c041-4159-866d-1a216f61db03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T09:27:49.425Z", + "completed":"2016-12-16T09:27:49.425Z", + "new_balance":"13380.27", + "value":"-41.23" + } + }, + { + "id":"db4fd7f6-225a-4531-a026-a20fd58ee208", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T01:43:04.870Z", + "completed":"2016-12-18T01:43:04.870Z", + "new_balance":"13375.50", + "value":"-4.77" + } + }, + { + "id":"74cc51d2-09d3-4211-90d4-8b4f3bb03213", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T11:33:52.441Z", + "completed":"2016-12-19T11:33:52.441Z", + "new_balance":"13294.29", + "value":"-81.21" + } + }, + { + "id":"7aa0f784-8344-4ba0-9bd5-b6f251e9ddbd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T15:50:08.058Z", + "completed":"2016-12-19T15:50:08.058Z", + "new_balance":"13210.49", + "value":"-83.80" + } + }, + { + "id":"42e87f54-ce14-45f0-8ce7-5ac52f66502b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T15:07:54.964Z", + "completed":"2016-12-20T15:07:54.964Z", + "new_balance":"13168.15", + "value":"-42.34" + } + }, + { + "id":"9dea220c-178a-42b8-a1a6-570d7a3799e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T19:03:34.864Z", + "completed":"2016-12-21T19:03:34.864Z", + "new_balance":"13084.35", + "value":"-83.80" + } + }, + { + "id":"272bbcbf-a6ef-405e-9e6c-ba9c18b8ccfd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T01:38:50.065Z", + "completed":"2016-12-24T01:38:50.065Z", + "new_balance":"13057.05", + "value":"-27.30" + } + }, + { + "id":"b1ab4588-4922-4bd0-ba07-cd9fb9304f27", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T03:36:14.792Z", + "completed":"2016-12-24T03:36:14.792Z", + "new_balance":"13011.04", + "value":"-46.01" + } + }, + { + "id":"9400479a-59f2-4407-9566-35f5554da3cf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T05:10:00.968Z", + "completed":"2016-12-24T05:10:00.968Z", + "new_balance":"13007.46", + "value":"-3.58" + } + }, + { + "id":"e1324536-43a1-4bf7-8281-a167311e6e07", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T06:47:03.462Z", + "completed":"2016-12-24T06:47:03.462Z", + "new_balance":"12915.99", + "value":"-91.47" + } + }, + { + "id":"2d41d72e-4eb2-4abf-87c5-135ac4c74586", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T09:54:39.502Z", + "completed":"2016-12-24T09:54:39.502Z", + "new_balance":"12908.71", + "value":"-7.28" + } + }, + { + "id":"b7a96838-151a-4983-bfa6-ec8815a92c43", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T10:09:14.178Z", + "completed":"2016-12-24T10:09:14.178Z", + "new_balance":"12895.47", + "value":"-13.24" + } + }, + { + "id":"29e026ca-cb1f-4127-90ff-d1b6391107e3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T06:14:26.476Z", + "completed":"2016-12-28T06:14:26.476Z", + "new_balance":"12814.06", + "value":"-81.41" + } + }, + { + "id":"7b60fd72-2867-4a08-8fc7-eeb09f29646a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T15:33:39.846Z", + "completed":"2016-12-28T15:33:39.846Z", + "new_balance":"12807.07", + "value":"-6.99" + } + }, + { + "id":"b9bbe4fa-5ec1-4ca0-9fe0-e2d1f2339da3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T20:03:56.659Z", + "completed":"2016-12-28T20:03:56.659Z", + "new_balance":"12800.08", + "value":"-6.99" + } + }, + { + "id":"af54ac8f-5e54-48ab-9e82-313b42704f36", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T20:36:16.822Z", + "completed":"2016-12-28T20:36:16.822Z", + "new_balance":"12753.28", + "value":"-46.80" + } + }, + { + "id":"1221294d-d29b-4629-9973-2e9086163efd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T03:14:04.291Z", + "completed":"2016-12-29T03:14:04.291Z", + "new_balance":"12716.33", + "value":"-36.95" + } + }, + { + "id":"8a873f5c-0188-4966-86c4-df60ee6c0a4f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T05:26:05.900Z", + "completed":"2016-12-29T05:26:05.900Z", + "new_balance":"12657.43", + "value":"-58.90" + } + }, + { + "id":"d75fc297-f966-4ad4-8189-e7432ab9e113", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T11:01:23.911Z", + "completed":"2016-12-29T11:01:23.911Z", + "new_balance":"12650.96", + "value":"-6.47" + } + }, + { + "id":"c5a16263-a0a1-4e3a-bd31-599ae553c566", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T11:51:01.915Z", + "completed":"2016-12-29T11:51:01.915Z", + "new_balance":"12599.95", + "value":"-51.01" + } + }, + { + "id":"4ba19ec5-d228-4367-8324-13c3b88eb708", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T15:07:12.744Z", + "completed":"2016-12-29T15:07:12.744Z", + "new_balance":"12566.04", + "value":"-33.91" + } + }, + { + "id":"d6691a3f-5f85-44b7-898f-01bad98a5b7a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T22:37:44.145Z", + "completed":"2016-12-29T22:37:44.145Z", + "new_balance":"12492.53", + "value":"-73.51" + } + }, + { + "id":"ef42a493-4157-4954-9642-811b144c5cbe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T12:49:28.484Z", + "completed":"2016-12-30T12:49:28.484Z", + "new_balance":"12463.67", + "value":"-28.86" + } + }, + { + "id":"4ab88603-b0de-43a4-8524-956ea648af8f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T13:23:03.557Z", + "completed":"2016-12-30T13:23:03.557Z", + "new_balance":"12452.44", + "value":"-11.23" + } + }, + { + "id":"6f3e1b61-381e-499c-843a-f900d4d4f3fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T19:52:48.818Z", + "completed":"2016-12-30T19:52:48.818Z", + "new_balance":"12406.93", + "value":"-45.51" + } + }, + { + "id":"c919ecc3-5f26-46c2-bd6e-ea8cf669b035", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T23:50:27.704Z", + "completed":"2016-12-30T23:50:27.704Z", + "new_balance":"12401.05", + "value":"-5.88" + } + }, + { + "id":"5c10f768-9a46-42fd-b4b8-e74660c068bb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T02:04:56.472Z", + "completed":"2016-12-31T02:04:56.472Z", + "new_balance":"12367.02", + "value":"-34.03" + } + }, + { + "id":"2046f515-d63d-4add-abad-4e5844c16881", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T04:53:57.293Z", + "completed":"2016-12-31T04:53:57.293Z", + "new_balance":"12340.05", + "value":"-26.97" + } + }, + { + "id":"ab65b8f0-5569-48f0-b2d6-b21b0b73a58b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T10:00:54.109Z", + "completed":"2016-12-31T10:00:54.109Z", + "new_balance":"12323.97", + "value":"-16.08" + } + }, + { + "id":"6ba39894-29f4-4526-a2ab-9fbfc484712f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T10:55:15.670Z", + "completed":"2016-12-31T10:55:15.670Z", + "new_balance":"12134.70", + "value":"-189.27" + } + }, + { + "id":"8ea1abb7-1c00-4e02-aa0f-561c4b8d0e24", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T00:02:09.402Z", + "completed":"2017-01-01T00:02:09.402Z", + "new_balance":"12100.27", + "value":"-34.43" + } + }, + { + "id":"e93769e3-8e8b-4f85-9f67-291d1f0a1559", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T02:02:57.921Z", + "completed":"2017-01-01T02:02:57.921Z", + "new_balance":"12070.39", + "value":"-29.88" + } + }, + { + "id":"29cfc5ba-2a8a-4ba7-8a29-ebacc91a61fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T03:20:38.268Z", + "completed":"2017-01-01T03:20:38.268Z", + "new_balance":"12035.96", + "value":"-34.43" + } + }, + { + "id":"ce3c1400-dcd8-42a3-a32a-6746ae6a3146", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T04:29:36.795Z", + "completed":"2017-01-01T04:29:36.795Z", + "new_balance":"11525.42", + "value":"-510.54" + } + }, + { + "id":"82d19cda-e2a4-4c33-9dcf-a77b318a9109", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T14:18:48.755Z", + "completed":"2017-01-01T14:18:48.755Z", + "new_balance":"11390.94", + "value":"-134.48" + } + }, + { + "id":"4365b59c-8f99-41cc-a46e-b12666e4890d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T18:26:03.713Z", + "completed":"2017-01-01T18:26:03.713Z", + "new_balance":"11337.76", + "value":"-53.18" + } + }, + { + "id":"a8cd8521-ac52-4e8d-9741-ad6acdebe874", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T00:29:13.732Z", + "completed":"2017-01-02T00:29:13.732Z", + "new_balance":"11251.20", + "value":"-86.56" + } + }, + { + "id":"b549e002-bd91-49fb-b2c1-47cddd39b25c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T05:28:56.775Z", + "completed":"2017-01-02T05:28:56.775Z", + "new_balance":"11179.21", + "value":"-71.99" + } + }, + { + "id":"6f8b4e15-6d65-4a50-9bae-7808804c6a38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T13:33:04.221Z", + "completed":"2017-01-04T13:33:04.221Z", + "new_balance":"11142.02", + "value":"-37.19" + } + }, + { + "id":"cb3d607f-cb83-4935-8ca7-d8e2b7b84d50", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T18:34:37.602Z", + "completed":"2017-01-04T18:34:37.602Z", + "new_balance":"11107.24", + "value":"-34.78" + } + }, + { + "id":"2084220a-9e1f-4552-bdee-cb00194b23f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T02:01:30.744Z", + "completed":"2017-01-07T02:01:30.744Z", + "new_balance":"11033.31", + "value":"-73.93" + } + }, + { + "id":"edf78a58-df18-4d20-be2d-8a10c27bcb47", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T17:48:45.876Z", + "completed":"2017-01-09T17:48:45.876Z", + "new_balance":"11029.72", + "value":"-3.59" + } + }, + { + "id":"62858a9b-bad7-46a4-8bdf-5df05f846df2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T18:58:47.461Z", + "completed":"2017-01-10T18:58:47.461Z", + "new_balance":"11002.27", + "value":"-27.45" + } + }, + { + "id":"2ed5deb4-0bf3-410f-a1f9-ed7087353994", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T20:28:25.175Z", + "completed":"2017-01-12T20:28:25.175Z", + "new_balance":"10970.98", + "value":"-31.29" + } + }, + { + "id":"636efcdc-505a-4754-823b-39306cdda401", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T01:11:11.785Z", + "completed":"2017-01-15T01:11:11.785Z", + "new_balance":"10956.16", + "value":"-14.82" + } + }, + { + "id":"e238123c-e2b2-4537-96f8-c8bc38e73f3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T21:06:07.970Z", + "completed":"2017-01-15T21:06:07.970Z", + "new_balance":"10949.00", + "value":"-7.16" + } + }, + { + "id":"badd337a-2cd2-4a91-80f3-67cfa7b239b6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T01:52:57.933Z", + "completed":"2017-01-17T01:52:57.933Z", + "new_balance":"10926.75", + "value":"-22.25" + } + }, + { + "id":"d0c7e8e5-2911-4818-94ca-8cb8c3519965", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T14:33:30.619Z", + "completed":"2017-01-19T14:33:30.619Z", + "new_balance":"10737.48", + "value":"-189.27" + } + }, + { + "id":"87d8f3aa-b495-4f74-adaa-b545fa0efe14", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T04:57:53.464Z", + "completed":"2017-01-20T04:57:53.464Z", + "new_balance":"10730.77", + "value":"-6.71" + } + }, + { + "id":"9b6ef48a-fc38-449b-a3da-5d6ebda6ddb8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T07:34:26.461Z", + "completed":"2017-01-22T07:34:26.461Z", + "new_balance":"10721.07", + "value":"-9.70" + } + }, + { + "id":"18ada6df-44fc-40c0-bc57-47d50ac1fecb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T19:16:44.849Z", + "completed":"2017-01-22T19:16:44.849Z", + "new_balance":"10675.83", + "value":"-45.24" + } + }, + { + "id":"e9c56a78-ddba-4944-8228-de4d1f3acd03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T13:27:14.920Z", + "completed":"2017-01-24T13:27:14.920Z", + "new_balance":"10643.55", + "value":"-32.28" + } + }, + { + "id":"4dbb395f-6c19-4e45-96da-aa11b31d9cf2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T03:18:46.372Z", + "completed":"2017-01-25T03:18:46.372Z", + "new_balance":"10601.03", + "value":"-42.52" + } + }, + { + "id":"59bc2867-afa7-42bd-8cad-6fb42c562b05", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T11:02:57.907Z", + "completed":"2017-01-25T11:02:57.907Z", + "new_balance":"10594.32", + "value":"-6.71" + } + }, + { + "id":"e812eab4-c191-47d8-be30-ab2aa5eea3a8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T08:24:07.421Z", + "completed":"2017-01-26T08:24:07.421Z", + "new_balance":"10530.75", + "value":"-63.57" + } + }, + { + "id":"213944ee-99ea-4ca5-9cb6-fe1e57a72188", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T00:20:04.560Z", + "completed":"2017-02-01T00:20:04.560Z", + "new_balance":"10020.21", + "value":"-510.54" + } + }, + { + "id":"b7ef273e-a1ba-42d1-8c66-554abc094e77", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T01:13:54.151Z", + "completed":"2017-02-01T01:13:54.151Z", + "new_balance":"9967.03", + "value":"-53.18" + } + }, + { + "id":"e124d1ec-a594-4a2c-884e-ccd47f4e6be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T03:34:55.383Z", + "completed":"2017-02-01T03:34:55.383Z", + "new_balance":"9932.60", + "value":"-34.43" + } + }, + { + "id":"f8440e8c-8d82-408c-bbd5-48536a6017c2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T15:13:13.507Z", + "completed":"2017-02-01T15:13:13.507Z", + "new_balance":"9902.72", + "value":"-29.88" + } + }, + { + "id":"ecfa2b8a-9326-4dec-91e2-3ecfaa2dcfb5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T17:50:07.537Z", + "completed":"2017-02-01T17:50:07.537Z", + "new_balance":"9768.24", + "value":"-134.48" + } + }, + { + "id":"52c6a7a2-fa0c-416c-b183-7c06a669f0d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T20:51:10.347Z", + "completed":"2017-02-01T20:51:10.347Z", + "new_balance":"11448.65", + "value":"1680.41" + } + }, + { + "id":"60a6f59d-c808-4a8f-91d1-57672be51047", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T12:49:38.203Z", + "completed":"2017-02-02T12:49:38.203Z", + "new_balance":"11434.01", + "value":"-14.64" + } + }, + { + "id":"550b0bee-c179-4233-ae33-cd87394ce9a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T23:07:37.083Z", + "completed":"2017-02-02T23:07:37.083Z", + "new_balance":"11347.45", + "value":"-86.56" + } + }, + { + "id":"6e5cb5ba-9875-4211-97a4-2dfe66ebd444", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T23:28:56.785Z", + "completed":"2017-02-02T23:28:56.785Z", + "new_balance":"11331.52", + "value":"-15.93" + } + }, + { + "id":"160b5048-b460-471b-9d4e-5fd661d72ad7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T07:08:00.943Z", + "completed":"2017-02-03T07:08:00.943Z", + "new_balance":"11303.51", + "value":"-28.01" + } + }, + { + "id":"00d58af1-623e-4edc-b342-f6bfd7ff6140", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T09:18:25.477Z", + "completed":"2017-02-03T09:18:25.477Z", + "new_balance":"11277.71", + "value":"-25.80" + } + }, + { + "id":"77bb37d4-a4f2-446b-9e19-50bb87b37315", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T10:15:07.523Z", + "completed":"2017-02-03T10:15:07.523Z", + "new_balance":"11254.34", + "value":"-23.37" + } + }, + { + "id":"da3066c3-de65-4f40-a91c-b5bf1d598ca4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T15:05:53.761Z", + "completed":"2017-02-06T15:05:53.761Z", + "new_balance":"11180.41", + "value":"-73.93" + } + }, + { + "id":"01cb4dea-f7a7-4c39-8e62-78389e9c7cc5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T05:28:18.951Z", + "completed":"2017-02-08T05:28:18.951Z", + "new_balance":"11176.32", + "value":"-4.09" + } + }, + { + "id":"e1697c2c-4041-4689-b059-afc3e6b1cd22", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T08:25:42.450Z", + "completed":"2017-02-08T08:25:42.450Z", + "new_balance":"11155.22", + "value":"-21.10" + } + }, + { + "id":"c2837f4f-f6a5-4742-ab47-184a0094db34", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T23:48:47.220Z", + "completed":"2017-02-08T23:48:47.220Z", + "new_balance":"11127.37", + "value":"-27.85" + } + }, + { + "id":"2ff58c38-f123-4555-ae59-915a7ce0a37e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T08:47:35.197Z", + "completed":"2017-02-09T08:47:35.197Z", + "new_balance":"11078.67", + "value":"-48.70" + } + }, + { + "id":"2e180541-3000-44e8-919a-9ef03f7d0095", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T18:09:36.175Z", + "completed":"2017-02-09T18:09:36.175Z", + "new_balance":"11033.50", + "value":"-45.17" + } + }, + { + "id":"3390d9d3-09b4-4729-980f-cb453428139d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T21:30:33.675Z", + "completed":"2017-02-12T21:30:33.675Z", + "new_balance":"11027.73", + "value":"-5.77" + } + }, + { + "id":"f9f642c4-b394-490e-8120-95d27268a247", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T01:40:13.469Z", + "completed":"2017-02-13T01:40:13.469Z", + "new_balance":"11066.74", + "value":"39.01" + } + }, + { + "id":"1c1f45c7-4244-42d6-ab4c-831de929e81f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T07:40:27.015Z", + "completed":"2017-02-13T07:40:27.015Z", + "new_balance":"11058.22", + "value":"-8.52" + } + }, + { + "id":"83d26f30-d686-4f83-8e67-fa8795ae051a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T22:35:32.609Z", + "completed":"2017-02-13T22:35:32.609Z", + "new_balance":"11014.43", + "value":"-43.79" + } + }, + { + "id":"a4380f2f-3330-41c6-bb59-e1d7c8db01d5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T00:28:04.954Z", + "completed":"2017-02-14T00:28:04.954Z", + "new_balance":"10968.80", + "value":"-45.63" + } + }, + { + "id":"6c7f5060-4f3b-42f0-b2c7-bc73d6466aba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T09:45:08.863Z", + "completed":"2017-02-15T09:45:08.863Z", + "new_balance":"10943.24", + "value":"-25.56" + } + }, + { + "id":"3a3db262-2821-4eb0-a043-bc922fbe990f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T00:54:45.582Z", + "completed":"2017-02-28T00:54:45.582Z", + "new_balance":"10909.71", + "value":"-33.53" + } + }, + { + "id":"8fa19896-0e0f-4a08-9967-0a9188530ddd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T00:01:30.504Z", + "completed":"2017-03-01T00:01:30.504Z", + "new_balance":"10879.83", + "value":"-29.88" + } + }, + { + "id":"5aa250a5-72f9-4a2d-b11e-3a0cd5ddce21", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T04:36:56.581Z", + "completed":"2017-03-01T04:36:56.581Z", + "new_balance":"10845.40", + "value":"-34.43" + } + }, + { + "id":"06a15b19-c2ab-4b8a-8b85-07cffead6cac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T13:35:00.510Z", + "completed":"2017-03-01T13:35:00.510Z", + "new_balance":"12525.81", + "value":"1680.41" + } + }, + { + "id":"92220ce6-e6c3-4d6a-be45-84bb94c8655b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T15:26:51.847Z", + "completed":"2017-03-01T15:26:51.847Z", + "new_balance":"12472.63", + "value":"-53.18" + } + }, + { + "id":"f84c8355-8b5d-4def-8fe4-84203a9450f0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T18:18:59.770Z", + "completed":"2017-03-01T18:18:59.770Z", + "new_balance":"11962.09", + "value":"-510.54" + } + }, + { + "id":"3db0393a-0b5d-4744-9e93-ae0a4898a3ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T18:35:00.513Z", + "completed":"2017-03-01T18:35:00.513Z", + "new_balance":"11827.61", + "value":"-134.48" + } + }, + { + "id":"892b3c01-20c0-4678-bd2b-d861b986d321", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T07:41:25.352Z", + "completed":"2017-03-02T07:41:25.352Z", + "new_balance":"11741.05", + "value":"-86.56" + } + }, + { + "id":"0d5c3339-583e-456a-9d99-967f81d35f03", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T09:20:44.962Z", + "completed":"2017-03-04T09:20:44.962Z", + "new_balance":"11730.52", + "value":"-10.53" + } + }, + { + "id":"e0c0ea03-a54a-4258-a49e-eba29eab7a97", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T10:28:29.183Z", + "completed":"2017-03-04T10:28:29.183Z", + "new_balance":"11724.05", + "value":"-6.47" + } + }, + { + "id":"de29e0dc-4891-42d5-82fa-f1a8853b3404", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T21:06:18.961Z", + "completed":"2017-03-04T21:06:18.961Z", + "new_balance":"11693.24", + "value":"-30.81" + } + }, + { + "id":"4d715f21-2530-4f26-b533-423d2b418fe1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:39:53.834Z", + "completed":"2017-03-04T23:39:53.834Z", + "new_balance":"11612.03", + "value":"-81.21" + } + }, + { + "id":"4cc9089c-5a55-4b7b-a9cc-c94cee9991b1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T12:23:26.248Z", + "completed":"2017-03-05T12:23:26.248Z", + "new_balance":"11570.80", + "value":"-41.23" + } + }, + { + "id":"41d6385a-abfa-4767-880a-faf58474549a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T16:14:41.759Z", + "completed":"2017-03-05T16:14:41.759Z", + "new_balance":"11566.03", + "value":"-4.77" + } + }, + { + "id":"992e4a60-17a9-4621-926d-e0f7997536a6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T06:12:44.209Z", + "completed":"2017-03-06T06:12:44.209Z", + "new_balance":"11482.23", + "value":"-83.80" + } + }, + { + "id":"aa1c815e-e65f-4714-ada9-a1cb7dc397e9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T13:43:12.373Z", + "completed":"2017-03-06T13:43:12.373Z", + "new_balance":"11401.02", + "value":"-81.21" + } + }, + { + "id":"c245bb1b-46eb-4105-896f-5673c5dcc637", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T13:56:49.345Z", + "completed":"2017-03-07T13:56:49.345Z", + "new_balance":"11358.68", + "value":"-42.34" + } + }, + { + "id":"05422bb9-2177-43eb-ad68-7cfd4135f96f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T20:41:03.188Z", + "completed":"2017-03-08T20:41:03.188Z", + "new_balance":"11274.88", + "value":"-83.80" + } + }, + { + "id":"5f90e781-913e-4b64-b827-48c11f0cf7f9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T03:42:17.208Z", + "completed":"2017-03-09T03:42:17.208Z", + "new_balance":"11271.30", + "value":"-3.58" + } + }, + { + "id":"d7191cd1-f79b-473c-be30-d8ed9fb1c60d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T11:27:46.894Z", + "completed":"2017-03-10T11:27:46.894Z", + "new_balance":"11179.83", + "value":"-91.47" + } + }, + { + "id":"c0889fa9-63e8-4fe7-bcc8-98bb1c2a3bd5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T01:50:26.820Z", + "completed":"2017-03-11T01:50:26.820Z", + "new_balance":"11172.55", + "value":"-7.28" + } + }, + { + "id":"82b020e6-c918-4dc3-8f43-2ec95c39e592", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T12:32:28.575Z", + "completed":"2017-03-12T12:32:28.575Z", + "new_balance":"11159.31", + "value":"-13.24" + } + }, + { + "id":"1c01866b-43f1-43b9-a7b8-7f61c0a8116a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T18:44:48.923Z", + "completed":"2017-03-12T18:44:48.923Z", + "new_balance":"11132.01", + "value":"-27.30" + } + }, + { + "id":"6a30306d-ad68-4d71-8f2d-f69e29484b23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T03:46:21.972Z", + "completed":"2017-03-13T03:46:21.972Z", + "new_balance":"11086.00", + "value":"-46.01" + } + }, + { + "id":"5c435866-70f1-42e0-8ced-09e1ae92bf2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T12:36:16.049Z", + "completed":"2017-03-14T12:36:16.049Z", + "new_balance":"11079.01", + "value":"-6.99" + } + }, + { + "id":"9eb08b3f-17d4-472d-a126-b703e5b4d2d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T10:03:34.275Z", + "completed":"2017-03-16T10:03:34.275Z", + "new_balance":"10997.60", + "value":"-81.41" + } + }, + { + "id":"2eca9fe1-24fa-4fae-8b70-f8eb162bbf84", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T21:15:37.224Z", + "completed":"2017-03-16T21:15:37.224Z", + "new_balance":"10950.80", + "value":"-46.80" + } + }, + { + "id":"ae5ba1a4-38ed-4208-9d27-b92bb1658568", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T14:22:51.408Z", + "completed":"2017-03-18T14:22:51.408Z", + "new_balance":"10943.81", + "value":"-6.99" + } + }, + { + "id":"913ed50d-7df3-4e8f-a726-0cf569c24236", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:36:37.175Z", + "completed":"2017-03-19T05:36:37.175Z", + "new_balance":"10892.80", + "value":"-51.01" + } + }, + { + "id":"a6afdc4c-e871-43b2-88d4-f3bb790d542c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T14:05:39.628Z", + "completed":"2017-03-19T14:05:39.628Z", + "new_balance":"10858.89", + "value":"-33.91" + } + }, + { + "id":"61a3a11a-c64e-4ddf-9340-2595e96467b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T16:49:22.825Z", + "completed":"2017-03-19T16:49:22.825Z", + "new_balance":"10821.94", + "value":"-36.95" + } + }, + { + "id":"b748434a-a147-44fb-b136-efee7c008333", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T01:43:40.159Z", + "completed":"2017-03-20T01:43:40.159Z", + "new_balance":"10763.04", + "value":"-58.90" + } + }, + { + "id":"af03af75-16d9-4ba5-9211-bc1b36d0c03a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T13:35:22.498Z", + "completed":"2017-03-20T13:35:22.498Z", + "new_balance":"10689.53", + "value":"-73.51" + } + }, + { + "id":"a3106088-5af5-4ee6-b7ee-9dc7529bed42", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T04:41:16.520Z", + "completed":"2017-03-21T04:41:16.520Z", + "new_balance":"10683.06", + "value":"-6.47" + } + }, + { + "id":"f5a69b19-4eec-4416-bc8e-903c59177291", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T07:28:10.501Z", + "completed":"2017-03-21T07:28:10.501Z", + "new_balance":"10677.18", + "value":"-5.88" + } + }, + { + "id":"d62f291b-8700-49a3-ab14-2b734d5a6b39", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T04:07:36.882Z", + "completed":"2017-03-23T04:07:36.882Z", + "new_balance":"10631.67", + "value":"-45.51" + } + }, + { + "id":"01d88602-92ea-465e-b580-6a3fa2a142ac", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T13:48:38.007Z", + "completed":"2017-03-23T13:48:38.007Z", + "new_balance":"10620.44", + "value":"-11.23" + } + }, + { + "id":"2f093a46-301f-461d-9799-ad88ca5ef950", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T20:04:34.683Z", + "completed":"2017-03-24T20:04:34.683Z", + "new_balance":"10591.58", + "value":"-28.86" + } + }, + { + "id":"cd3ec7f0-5f79-4695-a67f-5797c05412ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T06:12:03.618Z", + "completed":"2017-03-25T06:12:03.618Z", + "new_balance":"10575.50", + "value":"-16.08" + } + }, + { + "id":"9ec0bc5d-27d1-4e6a-8a1c-42a95faf0795", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T06:52:21.561Z", + "completed":"2017-03-25T06:52:21.561Z", + "new_balance":"10541.47", + "value":"-34.03" + } + }, + { + "id":"e809f0a1-d9aa-4250-b0da-d5f000e220d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T14:57:43.813Z", + "completed":"2017-03-27T14:57:43.813Z", + "new_balance":"10352.20", + "value":"-189.27" + } + }, + { + "id":"3037d5e3-4ef5-4c37-8044-c76c777b8069", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T07:18:31.650Z", + "completed":"2017-03-28T07:18:31.650Z", + "new_balance":"10325.23", + "value":"-26.97" + } + }, + { + "id":"80504491-3aad-405b-87a3-3f8d5f8caf2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T10:04:21.970Z", + "completed":"2017-04-01T10:04:21.970Z", + "new_balance":"10295.35", + "value":"-29.88" + } + }, + { + "id":"d0c5d4e5-7d81-4413-abee-ee0445d35e4c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T14:04:36.632Z", + "completed":"2017-04-01T14:04:36.632Z", + "new_balance":"9784.81", + "value":"-510.54" + } + }, + { + "id":"8578cca2-42d9-47cc-868b-82067cdc7a9b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T22:38:25.161Z", + "completed":"2017-04-01T22:38:25.161Z", + "new_balance":"9650.33", + "value":"-134.48" + } + }, + { + "id":"027da7e9-ff55-4da1-9478-8796cfa7d4bf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T22:46:02.151Z", + "completed":"2017-04-01T22:46:02.151Z", + "new_balance":"9597.15", + "value":"-53.18" + } + }, + { + "id":"30e9a7a2-8244-46fc-b5d3-74fec5c462d9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T01:20:08.888Z", + "completed":"2017-04-02T01:20:08.888Z", + "new_balance":"9510.59", + "value":"-86.56" + } + }, + { + "id":"ebc13c73-08ae-431e-be97-8575b97052f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T09:54:18.078Z", + "completed":"2017-04-02T09:54:18.078Z", + "new_balance":"9438.60", + "value":"-71.99" + } + }, + { + "id":"cc12c120-8202-4542-b7aa-1316a24784f1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T03:06:00.879Z", + "completed":"2017-04-03T03:06:00.879Z", + "new_balance":"9511.43", + "value":"72.83" + } + }, + { + "id":"cb6cac45-ee30-4c05-a4c2-9d9d7fa65449", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T14:05:04.289Z", + "completed":"2017-04-03T14:05:04.289Z", + "new_balance":"9474.24", + "value":"-37.19" + } + }, + { + "id":"187074f8-bfdd-4c12-acb2-1868fff9c720", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T20:52:47.685Z", + "completed":"2017-04-03T20:52:47.685Z", + "new_balance":"9437.05", + "value":"-37.19" + } + }, + { + "id":"41208f4e-4426-49e4-8eeb-3d656da334e1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T21:37:57.596Z", + "completed":"2017-04-03T21:37:57.596Z", + "new_balance":"9402.27", + "value":"-34.78" + } + }, + { + "id":"f6f2f2eb-4ecf-46e5-83b4-9b8ec69bcaff", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T22:35:56.080Z", + "completed":"2017-04-03T22:35:56.080Z", + "new_balance":"9524.47", + "value":"122.20" + } + }, + { + "id":"d9b1d3a4-0ac3-4517-821e-677426c3213c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T04:07:19.045Z", + "completed":"2017-04-04T04:07:19.045Z", + "new_balance":"9450.54", + "value":"-73.93" + } + }, + { + "id":"b268047d-8235-4104-bbec-42df410e5ec8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T00:31:20.748Z", + "completed":"2017-04-05T00:31:20.748Z", + "new_balance":"9423.09", + "value":"-27.45" + } + }, + { + "id":"de50c087-1408-41ad-9e56-7cc33dca6999", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T10:31:00.467Z", + "completed":"2017-04-05T10:31:00.467Z", + "new_balance":"9419.50", + "value":"-3.59" + } + }, + { + "id":"64617b75-764f-4391-a9c7-cbe0474bfe4e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T06:34:48.931Z", + "completed":"2017-04-07T06:34:48.931Z", + "new_balance":"9388.21", + "value":"-31.29" + } + }, + { + "id":"fb37225c-458d-4986-acce-4a51acbbb97d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T21:57:56.847Z", + "completed":"2017-04-07T21:57:56.847Z", + "new_balance":"9373.39", + "value":"-14.82" + } + }, + { + "id":"d4944eb7-ecf1-4de6-b754-8d115b5e7bf2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T11:36:59.533Z", + "completed":"2017-04-08T11:36:59.533Z", + "new_balance":"9366.23", + "value":"-7.16" + } + }, + { + "id":"435c42ef-aac6-4d06-a97e-4647a3ffc6ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T06:21:22.246Z", + "completed":"2017-04-09T06:21:22.246Z", + "new_balance":"9343.98", + "value":"-22.25" + } + }, + { + "id":"6c3ebef2-b514-463c-9bf5-28bb0c2976f2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T14:16:10.747Z", + "completed":"2017-04-09T14:16:10.747Z", + "new_balance":"9337.27", + "value":"-6.71" + } + }, + { + "id":"d8c90600-c698-4349-8c8f-961cb2a1b1b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T17:46:48.055Z", + "completed":"2017-04-09T17:46:48.055Z", + "new_balance":"9148.00", + "value":"-189.27" + } + }, + { + "id":"dd24f245-733f-4f83-bb90-18b95a6940fa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T03:14:00.765Z", + "completed":"2017-04-10T03:14:00.765Z", + "new_balance":"9102.76", + "value":"-45.24" + } + }, + { + "id":"ef230745-03f1-4061-be4f-6a58560f062c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T03:02:10.223Z", + "completed":"2017-04-17T03:02:10.223Z", + "new_balance":"9093.06", + "value":"-9.70" + } + }, + { + "id":"e54ed927-c491-4f1e-b24d-a82c7b3700ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T23:24:38.555Z", + "completed":"2017-04-18T23:24:38.555Z", + "new_balance":"9060.78", + "value":"-32.28" + } + }, + { + "id":"e4295bca-c7e3-4259-a168-178db31a01fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T23:30:02.976Z", + "completed":"2017-04-25T23:30:02.976Z", + "new_balance":"9018.26", + "value":"-42.52" + } + }, + { + "id":"123fd165-7fee-4165-8202-d918eb0a07ab", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T03:23:24.087Z", + "completed":"2017-04-26T03:23:24.087Z", + "new_balance":"8954.69", + "value":"-63.57" + } + }, + { + "id":"69ae9b3c-781e-4bb6-a1af-8d9d00ac915e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T15:28:39.413Z", + "completed":"2017-04-26T15:28:39.413Z", + "new_balance":"8947.98", + "value":"-6.71" + } + }, + { + "id":"7b7818c6-b012-42d0-a88c-79e79fbaa63f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T00:54:23.202Z", + "completed":"2017-05-02T00:54:23.202Z", + "new_balance":"8894.80", + "value":"-53.18" + } + }, + { + "id":"72296dc1-237d-4a0f-a10d-2d9b26afa924", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T08:49:40.598Z", + "completed":"2017-05-02T08:49:40.598Z", + "new_balance":"8808.24", + "value":"-86.56" + } + }, + { + "id":"5fd9fa9f-258e-46f3-9291-00fdd4962f6f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T09:49:29.094Z", + "completed":"2017-05-02T09:49:29.094Z", + "new_balance":"8778.36", + "value":"-29.88" + } + }, + { + "id":"88b8447a-a29f-4278-b099-7fd482d4c86f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T09:57:28.866Z", + "completed":"2017-05-02T09:57:28.866Z", + "new_balance":"8743.93", + "value":"-34.43" + } + }, + { + "id":"2315c58d-b457-4eaf-b598-1ce4be9f08a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T14:15:00.779Z", + "completed":"2017-05-02T14:15:00.779Z", + "new_balance":"10424.34", + "value":"1680.41" + } + }, + { + "id":"a9ae0a21-0004-4274-83de-da20dc9091e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T15:22:29.850Z", + "completed":"2017-05-02T15:22:29.850Z", + "new_balance":"10408.41", + "value":"-15.93" + } + }, + { + "id":"a9bc9185-ca69-4fd0-a12a-e82975818575", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T18:58:51.278Z", + "completed":"2017-05-02T18:58:51.278Z", + "new_balance":"10273.93", + "value":"-134.48" + } + }, + { + "id":"138b2f30-4961-4db8-826d-d36a4047da3b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T19:05:17.484Z", + "completed":"2017-05-02T19:05:17.484Z", + "new_balance":"9763.39", + "value":"-510.54" + } + }, + { + "id":"fe24b276-2b9d-49c9-beeb-a996959ca203", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T01:17:28.599Z", + "completed":"2017-05-03T01:17:28.599Z", + "new_balance":"9748.75", + "value":"-14.64" + } + }, + { + "id":"ce83ede3-034a-447a-907a-932787ba477e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T16:29:20.937Z", + "completed":"2017-05-03T16:29:20.937Z", + "new_balance":"9725.38", + "value":"-23.37" + } + }, + { + "id":"8b3baf38-1def-4ad2-8c54-1a53d4093edf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T18:48:18.497Z", + "completed":"2017-05-04T18:48:18.497Z", + "new_balance":"9699.58", + "value":"-25.80" + } + }, + { + "id":"da1489dd-76e2-425a-8f0b-0a368dad6e95", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T21:40:29.853Z", + "completed":"2017-05-04T21:40:29.853Z", + "new_balance":"9671.57", + "value":"-28.01" + } + }, + { + "id":"4da59a7a-3699-4514-a882-1e9f5c7fa4b3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T04:30:20.342Z", + "completed":"2017-05-05T04:30:20.342Z", + "new_balance":"9597.64", + "value":"-73.93" + } + }, + { + "id":"eb120517-966f-40f0-b621-b19b22894c3a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T09:31:37.965Z", + "completed":"2017-05-07T09:31:37.965Z", + "new_balance":"9569.79", + "value":"-27.85" + } + }, + { + "id":"09f79cbd-c95d-401a-8d1c-f3c100ea733c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T16:05:57.346Z", + "completed":"2017-05-07T16:05:57.346Z", + "new_balance":"9565.70", + "value":"-4.09" + } + }, + { + "id":"c1c95b5b-18b3-4bcd-8b6f-4c77c6177646", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T02:22:00.620Z", + "completed":"2017-05-12T02:22:00.620Z", + "new_balance":"9544.60", + "value":"-21.10" + } + }, + { + "id":"370d6745-0648-4e01-b5f2-31712279cbd1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T04:12:16.421Z", + "completed":"2017-05-12T04:12:16.421Z", + "new_balance":"9495.90", + "value":"-48.70" + } + }, + { + "id":"0c4c770e-db91-4bc9-aefb-fa52e515e4c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T19:44:26.975Z", + "completed":"2017-05-14T19:44:26.975Z", + "new_balance":"9450.73", + "value":"-45.17" + } + }, + { + "id":"a0f5402f-b769-4ef2-93f6-c7fd63f91594", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T18:29:11.688Z", + "completed":"2017-05-16T18:29:11.688Z", + "new_balance":"9444.96", + "value":"-5.77" + } + }, + { + "id":"c6f5b96c-fb1b-4df1-ae62-b4d494b8dbda", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:02:33.463Z", + "completed":"2017-05-18T18:02:33.463Z", + "new_balance":"9436.44", + "value":"-8.52" + } + }, + { + "id":"9faa81ec-0b12-4939-94ca-0bf741ae7b6b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T10:09:11.930Z", + "completed":"2017-05-20T10:09:11.930Z", + "new_balance":"9475.45", + "value":"39.01" + } + }, + { + "id":"3bed62eb-75ab-47fc-81d2-b3536c17d4e7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T02:49:16.631Z", + "completed":"2017-05-21T02:49:16.631Z", + "new_balance":"9429.82", + "value":"-45.63" + } + }, + { + "id":"10e3caac-d9d9-4941-8c69-b1d66bc66b2d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T20:58:42.875Z", + "completed":"2017-05-21T20:58:42.875Z", + "new_balance":"9386.03", + "value":"-43.79" + } + }, + { + "id":"30d37922-04cd-4775-9da7-93aaef9c3ad3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T06:24:26.739Z", + "completed":"2017-05-27T06:24:26.739Z", + "new_balance":"9360.47", + "value":"-25.56" + } + }, + { + "id":"de9b55f3-154e-443a-8f87-3b16fb000ef7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T20:03:09.039Z", + "completed":"2017-05-27T20:03:09.039Z", + "new_balance":"9326.94", + "value":"-33.53" + } + }, + { + "id":"090a40b4-fe24-4c31-a6e9-7b6ec11f125a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T02:14:08.879Z", + "completed":"2017-06-01T02:14:08.879Z", + "new_balance":"8816.40", + "value":"-510.54" + } + }, + { + "id":"c10db7f0-271f-4e2d-8974-22ab8a993e15", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:45:12.533Z", + "completed":"2017-06-01T04:45:12.533Z", + "new_balance":"8763.22", + "value":"-53.18" + } + }, + { + "id":"987d3244-3d5a-4d76-b24a-a204dfe5a9ce", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:54:48.425Z", + "completed":"2017-06-01T13:54:48.425Z", + "new_balance":"8628.74", + "value":"-134.48" + } + }, + { + "id":"1a25f14e-f163-4357-ad4c-c7746129730d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T14:35:55.928Z", + "completed":"2017-06-01T14:35:55.928Z", + "new_balance":"10309.15", + "value":"1680.41" + } + }, + { + "id":"ca91dbe3-715d-49b0-8bca-3933df251887", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T20:50:34.274Z", + "completed":"2017-06-01T20:50:34.274Z", + "new_balance":"10279.27", + "value":"-29.88" + } + }, + { + "id":"c2d07b59-998f-427b-901b-bd2dc76397b7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T21:55:39.511Z", + "completed":"2017-06-01T21:55:39.511Z", + "new_balance":"10244.84", + "value":"-34.43" + } + }, + { + "id":"098f6cfc-87b7-4206-bfb3-e6bf1141bfb9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T04:42:33.078Z", + "completed":"2017-06-04T04:42:33.078Z", + "new_balance":"10158.28", + "value":"-86.56" + } + }, + { + "id":"1e601699-4586-43dc-b118-d31f35fdab3e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:58:46.878Z", + "completed":"2017-06-04T11:58:46.878Z", + "new_balance":"10026.44", + "value":"-131.84" + } + }, + { + "id":"86f73333-2a1d-4931-ba71-c46eebeb1f96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T05:06:25.278Z", + "completed":"2017-06-11T05:06:25.278Z", + "new_balance":"9995.63", + "value":"-30.81" + } + }, + { + "id":"e13707d0-fdda-4ca2-a0cd-3892d21d6276", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T03:26:28.995Z", + "completed":"2017-06-12T03:26:28.995Z", + "new_balance":"9985.10", + "value":"-10.53" + } + }, + { + "id":"50b4e9ab-f897-4f36-98bc-e8e798b92bf1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T08:00:57.488Z", + "completed":"2017-06-13T08:00:57.488Z", + "new_balance":"9978.63", + "value":"-6.47" + } + }, + { + "id":"06a29960-fc4a-42d7-8a34-8ba3354da126", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:06:54.482Z", + "completed":"2017-06-13T17:06:54.482Z", + "new_balance":"9897.42", + "value":"-81.21" + } + }, + { + "id":"eee30b43-1909-48a8-b0d3-59fc9459572e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T17:46:11.096Z", + "completed":"2017-06-16T17:46:11.096Z", + "new_balance":"9856.19", + "value":"-41.23" + } + }, + { + "id":"8f965acb-6eb3-4b30-aef0-62a594dbdc8c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T00:36:32.902Z", + "completed":"2017-06-17T00:36:32.902Z", + "new_balance":"9774.98", + "value":"-81.21" + } + }, + { + "id":"1842791c-b601-48b2-9e5a-1750d322002c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T18:12:05.704Z", + "completed":"2017-06-17T18:12:05.704Z", + "new_balance":"9770.21", + "value":"-4.77" + } + }, + { + "id":"2f1c3b54-6420-4f24-826d-b2482bced825", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T22:02:54.055Z", + "completed":"2017-06-18T22:02:54.055Z", + "new_balance":"9686.41", + "value":"-83.80" + } + }, + { + "id":"947dcf11-9b35-460d-88b9-9b6410c90556", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:54:05.432Z", + "completed":"2017-06-19T02:54:05.432Z", + "new_balance":"9644.07", + "value":"-42.34" + } + }, + { + "id":"51f0388e-81ac-4024-b97d-49859521b3f8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T08:34:13.251Z", + "completed":"2017-06-19T08:34:13.251Z", + "new_balance":"9560.27", + "value":"-83.80" + } + }, + { + "id":"429fbda7-3470-4a99-b1dd-5919b087f835", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T15:41:13.220Z", + "completed":"2017-06-21T15:41:13.220Z", + "new_balance":"9556.69", + "value":"-3.58" + } + }, + { + "id":"e7586fd8-c19a-481f-ae39-317768b2b8c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T16:54:19.638Z", + "completed":"2017-06-21T16:54:19.638Z", + "new_balance":"9465.22", + "value":"-91.47" + } + }, + { + "id":"b9ccdd0f-34ba-41c3-aefd-28a94d26f806", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T00:45:26.950Z", + "completed":"2017-06-23T00:45:26.950Z", + "new_balance":"9457.94", + "value":"-7.28" + } + }, + { + "id":"6516758c-7b75-47fd-b411-8814bfbb10ad", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T07:02:30.399Z", + "completed":"2017-06-23T07:02:30.399Z", + "new_balance":"9430.64", + "value":"-27.30" + } + }, + { + "id":"6548f5de-cf56-4c53-9293-ba4ad2839d49", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T14:24:32.395Z", + "completed":"2017-06-24T14:24:32.395Z", + "new_balance":"9384.63", + "value":"-46.01" + } + }, + { + "id":"21065ece-c08b-4dce-ad98-088615d2754a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T20:33:15.807Z", + "completed":"2017-06-24T20:33:15.807Z", + "new_balance":"9371.39", + "value":"-13.24" + } + }, + { + "id":"0da1e8cf-e4ac-4d58-a49f-fb0c924988b4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T01:00:35.524Z", + "completed":"2017-06-28T01:00:35.524Z", + "new_balance":"9324.59", + "value":"-46.80" + } + }, + { + "id":"84c7da72-8876-40c5-b92c-7ca2af45f18e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T06:23:57.015Z", + "completed":"2017-06-28T06:23:57.015Z", + "new_balance":"9317.60", + "value":"-6.99" + } + }, + { + "id":"2907c10c-be04-495d-b103-ecce9a236d6e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T14:18:23.485Z", + "completed":"2017-06-28T14:18:23.485Z", + "new_balance":"9310.61", + "value":"-6.99" + } + }, + { + "id":"417cbdde-ea63-4cbb-955f-4ef1b06abb69", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T22:54:40.799Z", + "completed":"2017-06-28T22:54:40.799Z", + "new_balance":"9229.20", + "value":"-81.41" + } + }, + { + "id":"7f722b65-5605-485f-af35-c5c3afbe49da", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T13:40:13.496Z", + "completed":"2017-06-29T13:40:13.496Z", + "new_balance":"9222.73", + "value":"-6.47" + } + }, + { + "id":"1f474274-85a4-4e61-9cd3-e500344709b9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T18:03:41.809Z", + "completed":"2017-06-29T18:03:41.809Z", + "new_balance":"9163.83", + "value":"-58.90" + } + }, + { + "id":"a6775cd6-dde5-4515-990a-dc844d366275", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T20:41:02.194Z", + "completed":"2017-06-29T20:41:02.194Z", + "new_balance":"9129.92", + "value":"-33.91" + } + }, + { + "id":"f15a9a97-4fdf-444b-9ea2-62b58bec38ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T21:32:14.494Z", + "completed":"2017-06-29T21:32:14.494Z", + "new_balance":"9078.91", + "value":"-51.01" + } + }, + { + "id":"72d4c2bb-82d0-4e92-9426-b90a9a6e5f86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:58:51.235Z", + "completed":"2017-06-29T21:58:51.235Z", + "new_balance":"9041.96", + "value":"-36.95" + } + }, + { + "id":"b77f5971-8593-49b1-b9c6-fc8cba35b323", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T22:00:40.614Z", + "completed":"2017-06-29T22:00:40.614Z", + "new_balance":"8968.45", + "value":"-73.51" + } + }, + { + "id":"124ef4f5-d6c1-46db-a5aa-7bbf7d61f3aa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T04:12:58.866Z", + "completed":"2017-06-30T04:12:58.866Z", + "new_balance":"8922.94", + "value":"-45.51" + } + }, + { + "id":"19463358-9dc3-4556-b98e-0af7d30d9c23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T06:57:48.737Z", + "completed":"2017-06-30T06:57:48.737Z", + "new_balance":"8911.71", + "value":"-11.23" + } + }, + { + "id":"59df1280-2762-4cea-a968-0c1da665d562", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T10:38:39.117Z", + "completed":"2017-06-30T10:38:39.117Z", + "new_balance":"8882.85", + "value":"-28.86" + } + }, + { + "id":"2124a050-7fd5-4008-9e14-c92dbc83f8bd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T23:39:05.251Z", + "completed":"2017-06-30T23:39:05.251Z", + "new_balance":"8876.97", + "value":"-5.88" + } + }, + { + "id":"942bfb6d-c06c-40a9-b854-2f2ba2d1ef23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T01:49:16.570Z", + "completed":"2017-07-01T01:49:16.570Z", + "new_balance":"8842.94", + "value":"-34.03" + } + }, + { + "id":"fd17d586-4e35-418c-896d-948e1705fbb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T02:27:47.519Z", + "completed":"2017-07-01T02:27:47.519Z", + "new_balance":"8813.06", + "value":"-29.88" + } + }, + { + "id":"892ed89f-89b2-4f4e-84ee-5bd07eef084f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T03:04:47.072Z", + "completed":"2017-07-01T03:04:47.072Z", + "new_balance":"8778.63", + "value":"-34.43" + } + }, + { + "id":"48cecb1b-2777-4ae0-9572-c7ea9b9d85cc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T08:23:00.884Z", + "completed":"2017-07-01T08:23:00.884Z", + "new_balance":"8268.09", + "value":"-510.54" + } + }, + { + "id":"e463fdbf-d6f5-4351-b023-8bcafb4bc4c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T11:08:51.172Z", + "completed":"2017-07-01T11:08:51.172Z", + "new_balance":"8214.91", + "value":"-53.18" + } + }, + { + "id":"e6bdca54-8632-454e-8016-a807adf7dbed", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T12:10:34.032Z", + "completed":"2017-07-01T12:10:34.032Z", + "new_balance":"8198.83", + "value":"-16.08" + } + }, + { + "id":"66155237-ec72-4e27-8d4c-6eb6331a07d6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T16:53:23.673Z", + "completed":"2017-07-01T16:53:23.673Z", + "new_balance":"8164.40", + "value":"-34.43" + } + }, + { + "id":"d4127148-7089-46b0-9b87-2e3fe9f46780", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T17:04:03.328Z", + "completed":"2017-07-01T17:04:03.328Z", + "new_balance":"8137.43", + "value":"-26.97" + } + }, + { + "id":"e38af6de-700e-4390-9763-6d9cfc22b629", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T17:15:02.537Z", + "completed":"2017-07-01T17:15:02.537Z", + "new_balance":"8002.95", + "value":"-134.48" + } + }, + { + "id":"5e74333c-2e1d-4241-86ff-910afd4b21d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T21:17:24.103Z", + "completed":"2017-07-01T21:17:24.103Z", + "new_balance":"7813.68", + "value":"-189.27" + } + }, + { + "id":"71bcdd3a-32ae-4531-8a7b-466df9a60b2b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T17:43:26.053Z", + "completed":"2017-07-02T17:43:26.053Z", + "new_balance":"7727.12", + "value":"-86.56" + } + }, + { + "id":"2dc412e9-e578-4bf9-b4bf-7e5b4db317c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T07:40:51.658Z", + "completed":"2017-07-03T07:40:51.658Z", + "new_balance":"7631.69", + "value":"-95.43" + } + }, + { + "id":"cb7f39c6-bf39-4653-8281-279ecd188179", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T08:53:58.272Z", + "completed":"2017-07-04T08:53:58.272Z", + "new_balance":"7615.91", + "value":"-15.78" + } + }, + { + "id":"6329ada0-c3f5-4e9a-84dd-417b55df1e20", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T10:11:36.183Z", + "completed":"2017-07-05T10:11:36.183Z", + "new_balance":"7543.82", + "value":"-72.09" + } + }, + { + "id":"6937c45d-7810-4060-b73c-2836d9f9d07b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T10:39:57.403Z", + "completed":"2017-07-05T10:39:57.403Z", + "new_balance":"7469.89", + "value":"-73.93" + } + }, + { + "id":"88a01fba-9402-4548-b057-bd17600201fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T23:36:23.276Z", + "completed":"2017-07-06T23:36:23.276Z", + "new_balance":"7466.30", + "value":"-3.59" + } + }, + { + "id":"8cd16cef-a81c-4949-9670-5d292c2291a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T18:27:51.800Z", + "completed":"2017-07-11T18:27:51.800Z", + "new_balance":"7438.85", + "value":"-27.45" + } + }, + { + "id":"a4657b88-9a27-4365-b983-d8a7c0648053", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T13:03:49.252Z", + "completed":"2017-07-12T13:03:49.252Z", + "new_balance":"7407.56", + "value":"-31.29" + } + }, + { + "id":"f077f038-efe7-4044-a6e8-5542c56aa696", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T06:23:13.950Z", + "completed":"2017-07-14T06:23:13.950Z", + "new_balance":"7392.74", + "value":"-14.82" + } + }, + { + "id":"1c4a298b-e96d-4723-836d-36ccff4a463c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T02:05:43.798Z", + "completed":"2017-07-16T02:05:43.798Z", + "new_balance":"7385.58", + "value":"-7.16" + } + }, + { + "id":"62de3ee5-d279-4e08-b1bf-6d1dd29b6051", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T09:44:18.767Z", + "completed":"2017-07-18T09:44:18.767Z", + "new_balance":"7363.33", + "value":"-22.25" + } + }, + { + "id":"084920c5-8fbd-462c-97f1-cb287d3495e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T06:17:43.619Z", + "completed":"2017-07-20T06:17:43.619Z", + "new_balance":"7356.62", + "value":"-6.71" + } + }, + { + "id":"640c8c67-3ab2-437d-9995-4339c3e67716", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T16:31:55.071Z", + "completed":"2017-07-20T16:31:55.071Z", + "new_balance":"7167.35", + "value":"-189.27" + } + }, + { + "id":"7b20a5c1-bfc1-4c0c-8fd1-10cd05a24c60", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T05:21:26.818Z", + "completed":"2017-07-24T05:21:26.818Z", + "new_balance":"7122.11", + "value":"-45.24" + } + }, + { + "id":"b142a517-4b8c-4166-9821-a1cd2f5ee23b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T11:01:43.462Z", + "completed":"2017-07-24T11:01:43.462Z", + "new_balance":"7112.41", + "value":"-9.70" + } + }, + { + "id":"2311433a-9842-4773-82cf-0fb5fc96198a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T02:06:32.722Z", + "completed":"2017-07-25T02:06:32.722Z", + "new_balance":"7080.13", + "value":"-32.28" + } + }, + { + "id":"1d54b4ca-6aaf-4f49-b443-0c505f8f2f0f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T20:26:01.795Z", + "completed":"2017-07-25T20:26:01.795Z", + "new_balance":"7037.61", + "value":"-42.52" + } + }, + { + "id":"f5592de9-609d-44e8-a266-314c938b889c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T10:43:39.489Z", + "completed":"2017-07-26T10:43:39.489Z", + "new_balance":"6974.04", + "value":"-63.57" + } + }, + { + "id":"c43ab558-b62e-4943-9ec4-ea608dba0de0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T00:28:05.213Z", + "completed":"2017-07-27T00:28:05.213Z", + "new_balance":"6967.33", + "value":"-6.71" + } + }, + { + "id":"fa0565ae-5269-4ef6-886b-be34c588608b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T07:38:53.257Z", + "completed":"2017-08-01T07:38:53.257Z", + "new_balance":"8647.74", + "value":"1680.41" + } + }, + { + "id":"e16fe068-1933-40c4-b77d-29cd67db35db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T08:36:39.943Z", + "completed":"2017-08-01T08:36:39.943Z", + "new_balance":"8594.56", + "value":"-53.18" + } + }, + { + "id":"849b7ea7-a4c6-4026-96e5-d0d8f628ddf4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T09:00:48.226Z", + "completed":"2017-08-01T09:00:48.226Z", + "new_balance":"8564.68", + "value":"-29.88" + } + }, + { + "id":"1481e21a-3b49-4ae4-a930-be2ec193301e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T11:35:49.294Z", + "completed":"2017-08-01T11:35:49.294Z", + "new_balance":"8530.25", + "value":"-34.43" + } + }, + { + "id":"58f731b4-2e0a-4e1d-b171-3865d5a6a846", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T13:30:24.685Z", + "completed":"2017-08-01T13:30:24.685Z", + "new_balance":"8019.71", + "value":"-510.54" + } + }, + { + "id":"c581c292-7cba-4ed4-aa7b-f57853c901e5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T21:13:48.785Z", + "completed":"2017-08-01T21:13:48.785Z", + "new_balance":"7885.23", + "value":"-134.48" + } + }, + { + "id":"f2a22707-5db3-4dcf-8828-3ea8682a732b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T02:23:44.859Z", + "completed":"2017-08-02T02:23:44.859Z", + "new_balance":"7798.67", + "value":"-86.56" + } + }, + { + "id":"6f7ff58e-6466-416d-a7e7-8f6faa9e77df", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T10:47:55.853Z", + "completed":"2017-08-03T10:47:55.853Z", + "new_balance":"7795.08", + "value":"-3.59" + } + }, + { + "id":"1af74bbc-af53-431f-ac28-7c8f8f53060d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T02:41:00.905Z", + "completed":"2017-08-04T02:41:00.905Z", + "new_balance":"7760.53", + "value":"-34.55" + } + }, + { + "id":"40a7d6af-29a2-4c5e-a9ab-4fb20c70a08b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T11:52:40.545Z", + "completed":"2017-08-07T11:52:40.545Z", + "new_balance":"7737.16", + "value":"-23.37" + } + }, + { + "id":"8a5fe6d1-937f-4f33-a187-9a84f7f61bf5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T01:23:16.058Z", + "completed":"2017-08-09T01:23:16.058Z", + "new_balance":"7709.15", + "value":"-28.01" + } + }, + { + "id":"c8e84a2c-2d57-4d73-b8cb-65a4bc309e86", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T01:49:28.301Z", + "completed":"2017-08-09T01:49:28.301Z", + "new_balance":"7683.35", + "value":"-25.80" + } + }, + { + "id":"f3f2b028-f922-454c-9f57-40d0845263cb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T06:00:31.836Z", + "completed":"2017-08-10T06:00:31.836Z", + "new_balance":"7609.42", + "value":"-73.93" + } + }, + { + "id":"a3ceb8bd-6896-4a81-a607-b434cda09ccb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T18:50:09.117Z", + "completed":"2017-08-14T18:50:09.117Z", + "new_balance":"7605.33", + "value":"-4.09" + } + }, + { + "id":"2197cff9-de00-4c8c-b4c0-1bc17ac3bfb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T00:28:35.595Z", + "completed":"2017-08-15T00:28:35.595Z", + "new_balance":"7577.48", + "value":"-27.85" + } + }, + { + "id":"abe3c864-3725-4a73-8e29-ce4101d0b676", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T11:42:11.970Z", + "completed":"2017-08-15T11:42:11.970Z", + "new_balance":"7541.55", + "value":"-35.93" + } + }, + { + "id":"4efadb3c-1e01-4ae9-9996-329a5b268600", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T22:45:45.725Z", + "completed":"2017-08-16T22:45:45.725Z", + "new_balance":"7492.85", + "value":"-48.70" + } + }, + { + "id":"cff43a6a-8eb0-46ba-a930-61c7c2b09189", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T22:39:48.877Z", + "completed":"2017-08-17T22:39:48.877Z", + "new_balance":"7447.68", + "value":"-45.17" + } + }, + { + "id":"c38a538e-2296-4c92-ad44-e952256508c5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T01:23:41.115Z", + "completed":"2017-08-20T01:23:41.115Z", + "new_balance":"7439.16", + "value":"-8.52" + } + }, + { + "id":"9aabda10-9fb3-4329-b576-6296c35f1a8b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T03:23:38.487Z", + "completed":"2017-08-20T03:23:38.487Z", + "new_balance":"7433.39", + "value":"-5.77" + } + }, + { + "id":"e60e3deb-2e28-46e8-88c0-856f64f9ff5c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T12:05:51.149Z", + "completed":"2017-08-22T12:05:51.149Z", + "new_balance":"7472.40", + "value":"39.01" + } + }, + { + "id":"fc244688-69c0-4835-8973-e18d09bab4a1", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T06:40:14.253Z", + "completed":"2017-08-23T06:40:14.253Z", + "new_balance":"7428.61", + "value":"-43.79" + } + }, + { + "id":"139df2ad-5900-434b-baac-45dab45f99f9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T19:12:08.970Z", + "completed":"2017-08-23T19:12:08.970Z", + "new_balance":"7382.98", + "value":"-45.63" + } + }, + { + "id":"f63ca303-c140-4618-be82-c8bbb1ba43d8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T00:50:28.671Z", + "completed":"2017-08-28T00:50:28.671Z", + "new_balance":"7357.42", + "value":"-25.56" + } + }, + { + "id":"65b58b2b-3889-4bf8-a76e-2ee4301e4186", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T23:35:35.501Z", + "completed":"2017-08-28T23:35:35.501Z", + "new_balance":"7323.89", + "value":"-33.53" + } + }, + { + "id":"6ddebfd3-e7e4-4396-9765-9c950be1e99e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T05:57:39.260Z", + "completed":"2017-09-01T05:57:39.260Z", + "new_balance":"7270.71", + "value":"-53.18" + } + }, + { + "id":"150b46a3-d979-4494-b004-3d552b44a449", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T07:24:11.297Z", + "completed":"2017-09-01T07:24:11.297Z", + "new_balance":"7136.23", + "value":"-134.48" + } + }, + { + "id":"15fa2622-75a5-41ee-912f-8c710929e980", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T09:22:20.513Z", + "completed":"2017-09-01T09:22:20.513Z", + "new_balance":"8816.64", + "value":"1680.41" + } + }, + { + "id":"b8a575ab-47f0-4232-8e2a-01cd0da31b1d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T09:55:06.124Z", + "completed":"2017-09-01T09:55:06.124Z", + "new_balance":"8782.21", + "value":"-34.43" + } + }, + { + "id":"5652fc31-6734-42fb-865e-99dcf905f520", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T15:07:48.910Z", + "completed":"2017-09-01T15:07:48.910Z", + "new_balance":"8271.67", + "value":"-510.54" + } + }, + { + "id":"4a831f70-33cd-4232-b050-2b5e5aa807a3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T16:38:10.418Z", + "completed":"2017-09-01T16:38:10.418Z", + "new_balance":"8241.79", + "value":"-29.88" + } + }, + { + "id":"314800a3-3fe6-45c5-9090-f42ac71c5e38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T15:35:18.307Z", + "completed":"2017-09-02T15:35:18.307Z", + "new_balance":"8155.23", + "value":"-86.56" + } + }, + { + "id":"ef7129df-13a3-4deb-acbb-bd5675111d7d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T02:54:00.217Z", + "completed":"2017-09-04T02:54:00.217Z", + "new_balance":"8148.76", + "value":"-6.47" + } + }, + { + "id":"17080dd6-9695-4cca-b505-7fdf5bab5d35", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T04:31:23.110Z", + "completed":"2017-09-04T04:31:23.110Z", + "new_balance":"8138.23", + "value":"-10.53" + } + }, + { + "id":"5e5ff077-d6d4-476f-bb43-144d8440f0c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T15:49:16.523Z", + "completed":"2017-09-04T15:49:16.523Z", + "new_balance":"8107.42", + "value":"-30.81" + } + }, + { + "id":"b1597b1a-6c38-4a3e-8cfd-469dc7285ddf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T16:11:28.208Z", + "completed":"2017-09-04T16:11:28.208Z", + "new_balance":"8026.21", + "value":"-81.21" + } + }, + { + "id":"ae362886-e985-49cf-85ba-0437ea4fe0c0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T00:19:16.000Z", + "completed":"2017-09-05T00:19:16.000Z", + "new_balance":"7984.98", + "value":"-41.23" + } + }, + { + "id":"f771eb87-901b-40ae-b152-d6733fba96c4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T21:43:30.922Z", + "completed":"2017-09-05T21:43:30.922Z", + "new_balance":"7980.21", + "value":"-4.77" + } + }, + { + "id":"6074137c-aa79-485a-9db9-7522c7828d6c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T17:26:42.441Z", + "completed":"2017-09-06T17:26:42.441Z", + "new_balance":"7896.41", + "value":"-83.80" + } + }, + { + "id":"a052e3de-0281-4158-892c-45594692b418", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T18:07:41.801Z", + "completed":"2017-09-06T18:07:41.801Z", + "new_balance":"7815.20", + "value":"-81.21" + } + }, + { + "id":"80e68192-2af6-4564-b206-b05e8b4de917", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T15:25:27.150Z", + "completed":"2017-09-08T15:25:27.150Z", + "new_balance":"7772.86", + "value":"-42.34" + } + }, + { + "id":"7fcda1d0-4919-478b-8c37-20a5b330b9cd", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:33:42.513Z", + "completed":"2017-09-08T22:33:42.513Z", + "new_balance":"7689.06", + "value":"-83.80" + } + }, + { + "id":"ce29bb9d-5ad8-47d2-aef9-29f075b7c34f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T00:58:53.943Z", + "completed":"2017-09-10T00:58:53.943Z", + "new_balance":"7685.48", + "value":"-3.58" + } + }, + { + "id":"57fb74a0-8f48-4c85-b2c1-5f4ecd133c8a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T13:52:37.362Z", + "completed":"2017-09-10T13:52:37.362Z", + "new_balance":"7594.01", + "value":"-91.47" + } + }, + { + "id":"2b3d506d-f88b-4012-a734-d9c5cd5bf250", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T04:56:10.775Z", + "completed":"2017-09-11T04:56:10.775Z", + "new_balance":"7586.73", + "value":"-7.28" + } + }, + { + "id":"d24e4222-f970-47a2-9286-d0ed49dd280d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T01:20:14.015Z", + "completed":"2017-09-12T01:20:14.015Z", + "new_balance":"7559.43", + "value":"-27.30" + } + }, + { + "id":"9f0ea41c-77e9-4a37-bad6-f22a1579ca3c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T07:01:01.586Z", + "completed":"2017-09-12T07:01:01.586Z", + "new_balance":"7546.19", + "value":"-13.24" + } + }, + { + "id":"5e25e44d-bb77-4f27-b551-dc33282f2fc2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T10:57:22.312Z", + "completed":"2017-09-13T10:57:22.312Z", + "new_balance":"7500.18", + "value":"-46.01" + } + }, + { + "id":"282f71af-3103-4bd7-a2e6-4a75d29e678f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T01:06:53.613Z", + "completed":"2017-09-16T01:06:53.613Z", + "new_balance":"7493.19", + "value":"-6.99" + } + }, + { + "id":"5a99b467-5404-499b-ba9f-8ce985b58f01", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T21:13:14.786Z", + "completed":"2017-09-17T21:13:14.786Z", + "new_balance":"7446.39", + "value":"-46.80" + } + }, + { + "id":"04767787-e86c-4e71-b2f0-26c8348a25d0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T22:31:37.500Z", + "completed":"2017-09-17T22:31:37.500Z", + "new_balance":"7364.98", + "value":"-81.41" + } + }, + { + "id":"0468b440-dad0-4df1-bd6f-9fdf39258f61", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T19:29:33.364Z", + "completed":"2017-09-18T19:29:33.364Z", + "new_balance":"7357.99", + "value":"-6.99" + } + }, + { + "id":"2a32df04-2d04-4b5c-9850-d8fc3cf20fd9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T16:58:47.995Z", + "completed":"2017-09-19T16:58:47.995Z", + "new_balance":"7306.98", + "value":"-51.01" + } + }, + { + "id":"c50f71f2-9fa0-45b1-8a2b-02e2eb1428ba", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T19:38:40.009Z", + "completed":"2017-09-19T19:38:40.009Z", + "new_balance":"7270.03", + "value":"-36.95" + } + }, + { + "id":"6e56e061-9b2c-4124-ab3d-5e825a06b0fe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T20:05:31.081Z", + "completed":"2017-09-19T20:05:31.081Z", + "new_balance":"7236.12", + "value":"-33.91" + } + }, + { + "id":"2240a1b4-59db-47ce-85f5-ef0b8f9df871", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T02:59:59.184Z", + "completed":"2017-09-20T02:59:59.184Z", + "new_balance":"7162.61", + "value":"-73.51" + } + }, + { + "id":"b122a455-9d93-42a4-af2f-2dc9e0001aa5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T14:18:53.967Z", + "completed":"2017-09-20T14:18:53.967Z", + "new_balance":"7103.71", + "value":"-58.90" + } + }, + { + "id":"7e14f858-2708-4193-8706-7e79df3dc9f8", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T03:24:56.664Z", + "completed":"2017-09-21T03:24:56.664Z", + "new_balance":"7097.24", + "value":"-6.47" + } + }, + { + "id":"c98d3a16-d532-4eca-ad20-5d275eebb2a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T03:30:07.969Z", + "completed":"2017-09-21T03:30:07.969Z", + "new_balance":"7091.36", + "value":"-5.88" + } + }, + { + "id":"f0048f72-3b3d-478d-8dbf-235528e1a290", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T01:48:55.940Z", + "completed":"2017-09-23T01:48:55.940Z", + "new_balance":"7045.85", + "value":"-45.51" + } + }, + { + "id":"c4e94697-b584-40da-9d70-735a565d7a80", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T12:35:39.431Z", + "completed":"2017-09-23T12:35:39.431Z", + "new_balance":"7034.62", + "value":"-11.23" + } + }, + { + "id":"ee12b9e5-aee8-41c3-9b52-16be7e57dca6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T09:29:55.158Z", + "completed":"2017-09-24T09:29:55.158Z", + "new_balance":"7005.76", + "value":"-28.86" + } + }, + { + "id":"5c2bc9c2-5bf4-4008-b4d7-d08cd2be2009", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T09:14:43.327Z", + "completed":"2017-09-25T09:14:43.327Z", + "new_balance":"6971.73", + "value":"-34.03" + } + }, + { + "id":"aef7fb76-21cb-41d0-9f7d-2d54cdbd7c95", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T16:26:06.653Z", + "completed":"2017-09-25T16:26:06.653Z", + "new_balance":"6955.65", + "value":"-16.08" + } + }, + { + "id":"317f6573-f521-401b-9476-50341d2e0aa3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T22:20:44.717Z", + "completed":"2017-09-27T22:20:44.717Z", + "new_balance":"6766.38", + "value":"-189.27" + } + }, + { + "id":"77acfd04-7c06-4f4e-98ef-ea7e914105d2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T15:44:07.914Z", + "completed":"2017-09-29T15:44:07.914Z", + "new_balance":"6739.41", + "value":"-26.97" + } + }, + { + "id":"26d29733-96ee-478b-bc07-84b3abbf9049", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T04:09:18.167Z", + "completed":"2017-10-01T04:09:18.167Z", + "new_balance":"6686.23", + "value":"-53.18" + } + }, + { + "id":"793af520-741d-4ca7-a917-acca210370ee", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T07:21:40.206Z", + "completed":"2017-10-01T07:21:40.206Z", + "new_balance":"6551.75", + "value":"-134.48" + } + }, + { + "id":"22950b79-7285-46a1-bf5d-bdaef293fcb7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T14:15:57.791Z", + "completed":"2017-10-01T14:15:57.791Z", + "new_balance":"6041.21", + "value":"-510.54" + } + }, + { + "id":"a54a69ad-dd0f-4a7e-86e4-fd2573f3fcb2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T19:12:19.656Z", + "completed":"2017-10-01T19:12:19.656Z", + "new_balance":"6011.33", + "value":"-29.88" + } + }, + { + "id":"30b9afcc-ccd9-48e7-970e-1a7dee6ae392", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T17:09:56.169Z", + "completed":"2017-10-02T17:09:56.169Z", + "new_balance":"5924.77", + "value":"-86.56" + } + }, + { + "id":"e8ad8fb1-4d99-499e-a51b-05f7cef3d14e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T19:03:15.416Z", + "completed":"2017-10-02T19:03:15.416Z", + "new_balance":"5852.78", + "value":"-71.99" + } + }, + { + "id":"70d106e7-8691-4172-a23d-c1174b06fb41", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T00:09:36.346Z", + "completed":"2017-10-03T00:09:36.346Z", + "new_balance":"5815.59", + "value":"-37.19" + } + }, + { + "id":"c24c644c-1bcb-4b55-82ac-4f052e982243", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T02:29:52.638Z", + "completed":"2017-10-03T02:29:52.638Z", + "new_balance":"5780.81", + "value":"-34.78" + } + }, + { + "id":"1b36726b-e6e2-48d3-bae7-fe4ca3c30d29", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T18:27:34.216Z", + "completed":"2017-10-03T18:27:34.216Z", + "new_balance":"5591.54", + "value":"-189.27" + } + }, + { + "id":"5095c76d-65c2-421c-a1ea-3d6b4155fef5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T19:49:41.151Z", + "completed":"2017-10-03T19:49:41.151Z", + "new_balance":"4859.69", + "value":"-731.85" + } + }, + { + "id":"4e9c73f6-41c4-4aff-8716-6a0a85b1c38c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T22:34:54.725Z", + "completed":"2017-10-03T22:34:54.725Z", + "new_balance":"4696.21", + "value":"-163.48" + } + }, + { + "id":"6ef5e746-f2ac-4812-8a74-b3d9ed0d47db", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T11:08:35.030Z", + "completed":"2017-10-04T11:08:35.030Z", + "new_balance":"4622.28", + "value":"-73.93" + } + }, + { + "id":"adffd148-bb04-458f-8b3e-8e00ed59deaa", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T12:25:31.043Z", + "completed":"2017-10-05T12:25:31.043Z", + "new_balance":"4618.69", + "value":"-3.59" + } + }, + { + "id":"3ac0b0aa-5862-4d41-bd8e-aec3cbf9671c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T13:04:51.425Z", + "completed":"2017-10-05T13:04:51.425Z", + "new_balance":"4591.24", + "value":"-27.45" + } + }, + { + "id":"0c15b0ef-fdbd-454e-93ea-514d40c55d2e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T08:32:39.444Z", + "completed":"2017-10-07T08:32:39.444Z", + "new_balance":"4559.95", + "value":"-31.29" + } + }, + { + "id":"8a67eb28-91dc-4390-9e8f-d20a95414b8e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T08:41:21.199Z", + "completed":"2017-10-07T08:41:21.199Z", + "new_balance":"4545.13", + "value":"-14.82" + } + }, + { + "id":"63192dd7-1fea-401b-9f3e-45a3fa868485", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T17:11:57.176Z", + "completed":"2017-10-08T17:11:57.176Z", + "new_balance":"4537.97", + "value":"-7.16" + } + }, + { + "id":"f9934421-0a45-467e-a931-17fd9641db68", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T03:32:26.075Z", + "completed":"2017-10-09T03:32:26.075Z", + "new_balance":"4348.70", + "value":"-189.27" + } + }, + { + "id":"69b35fab-a01b-420d-b9b4-a80daf286d19", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T18:02:12.125Z", + "completed":"2017-10-09T18:02:12.125Z", + "new_balance":"4341.99", + "value":"-6.71" + } + }, + { + "id":"fdbd8328-d8a0-4442-9995-1bbae3c78772", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T20:51:11.370Z", + "completed":"2017-10-09T20:51:11.370Z", + "new_balance":"4319.74", + "value":"-22.25" + } + }, + { + "id":"77cfe48e-2092-483c-a7a0-a592dacf8f87", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T18:10:16.281Z", + "completed":"2017-10-10T18:10:16.281Z", + "new_balance":"4274.50", + "value":"-45.24" + } + }, + { + "id":"e1f390f0-9d72-4023-b07a-ee920900adfe", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T10:26:45.978Z", + "completed":"2017-10-17T10:26:45.978Z", + "new_balance":"4264.80", + "value":"-9.70" + } + }, + { + "id":"63455242-081d-4dd6-bfce-865645de7a19", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T12:42:54.588Z", + "completed":"2017-10-18T12:42:54.588Z", + "new_balance":"4232.52", + "value":"-32.28" + } + }, + { + "id":"a0a58057-1523-47a9-8291-b168e306369a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T09:33:00.534Z", + "completed":"2017-10-25T09:33:00.534Z", + "new_balance":"4190.00", + "value":"-42.52" + } + }, + { + "id":"6e7d18c7-cb98-4f24-a746-f27cba89345b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T00:22:36.124Z", + "completed":"2017-10-26T00:22:36.124Z", + "new_balance":"4126.43", + "value":"-63.57" + } + }, + { + "id":"3ddf9139-135e-4b00-9317-774426a62563", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T14:19:23.914Z", + "completed":"2017-10-26T14:19:23.914Z", + "new_balance":"4119.72", + "value":"-6.71" + } + }, + { + "id":"35b59a71-f59c-48dc-832d-9ae4ea32981b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T00:56:48.182Z", + "completed":"2017-11-02T00:56:48.182Z", + "new_balance":"4089.84", + "value":"-29.88" + } + }, + { + "id":"37924d65-1a5d-4bce-8b79-db45bf21de23", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T02:47:40.646Z", + "completed":"2017-11-02T02:47:40.646Z", + "new_balance":"4003.28", + "value":"-86.56" + } + }, + { + "id":"b4e1a003-b57a-4e09-9244-3a331a66e4d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T09:03:22.990Z", + "completed":"2017-11-02T09:03:22.990Z", + "new_balance":"3950.10", + "value":"-53.18" + } + }, + { + "id":"5d1a8a24-ebae-4955-a019-5e7ae12c2139", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T11:05:57.188Z", + "completed":"2017-11-02T11:05:57.188Z", + "new_balance":"3915.67", + "value":"-34.43" + } + }, + { + "id":"139f4c38-7d64-4970-95d8-fdc1c65d0416", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T11:55:27.741Z", + "completed":"2017-11-02T11:55:27.741Z", + "new_balance":"3899.74", + "value":"-15.93" + } + }, + { + "id":"8e88f731-55f0-4820-8b6c-531b834b7e59", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T14:51:10.799Z", + "completed":"2017-11-02T14:51:10.799Z", + "new_balance":"5580.15", + "value":"1680.41" + } + }, + { + "id":"51f42858-c5e4-4ed6-ab49-523b4a2e73bc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T20:11:22.027Z", + "completed":"2017-11-02T20:11:22.027Z", + "new_balance":"5445.67", + "value":"-134.48" + } + }, + { + "id":"52aa4231-fdb2-4859-b879-55282ca70f71", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T23:03:34.339Z", + "completed":"2017-11-02T23:03:34.339Z", + "new_balance":"4935.13", + "value":"-510.54" + } + }, + { + "id":"7ea7f2ad-cd6f-470b-98ae-55ae81846f96", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T11:00:15.777Z", + "completed":"2017-11-06T11:00:15.777Z", + "new_balance":"4920.49", + "value":"-14.64" + } + }, + { + "id":"8f7aa2d7-ea98-4d37-bbd3-1865956ff1c6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T00:35:35.713Z", + "completed":"2017-11-07T00:35:35.713Z", + "new_balance":"4892.48", + "value":"-28.01" + } + }, + { + "id":"9fd01c72-071c-448e-a8a5-e313da32f57a", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T01:06:41.033Z", + "completed":"2017-11-07T01:06:41.033Z", + "new_balance":"4869.11", + "value":"-23.37" + } + }, + { + "id":"e44aea2d-4159-4712-ae54-91ac005f4c54", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T23:54:52.581Z", + "completed":"2017-11-07T23:54:52.581Z", + "new_balance":"4843.31", + "value":"-25.80" + } + }, + { + "id":"f0738a57-60ca-4e98-9ab1-8f96f94d7ea2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T09:31:23.269Z", + "completed":"2017-11-09T09:31:23.269Z", + "new_balance":"4769.38", + "value":"-73.93" + } + }, + { + "id":"d6702c0d-a003-478f-b8f9-5a915d586f1b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T19:03:51.520Z", + "completed":"2017-11-09T19:03:51.520Z", + "new_balance":"4765.29", + "value":"-4.09" + } + }, + { + "id":"2f84792f-4fc6-43f4-8dbc-7a741da7cbdb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T07:05:49.459Z", + "completed":"2017-11-12T07:05:49.459Z", + "new_balance":"4737.44", + "value":"-27.85" + } + }, + { + "id":"c657fe78-e35f-4450-8fb0-b0b12ca5a7e0", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T07:06:26.060Z", + "completed":"2017-11-12T07:06:26.060Z", + "new_balance":"4716.34", + "value":"-21.10" + } + }, + { + "id":"19e29a8d-0a35-4fe1-96bd-3d5b0ea569a5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T02:18:56.807Z", + "completed":"2017-11-14T02:18:56.807Z", + "new_balance":"4671.17", + "value":"-45.17" + } + }, + { + "id":"4a32e529-eb1f-4d88-906f-cedf5e41305d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T11:52:44.592Z", + "completed":"2017-11-14T11:52:44.592Z", + "new_balance":"4622.47", + "value":"-48.70" + } + }, + { + "id":"1abf288f-ba64-424d-9a9c-6b0376a049c9", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T23:55:11.030Z", + "completed":"2017-11-16T23:55:11.030Z", + "new_balance":"4616.70", + "value":"-5.77" + } + }, + { + "id":"991028cc-b0be-41ab-9ac0-9da0eb0fa946", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T20:23:21.228Z", + "completed":"2017-11-18T20:23:21.228Z", + "new_balance":"4608.18", + "value":"-8.52" + } + }, + { + "id":"d297a9c2-a8ff-4e8d-8364-aa1dc9992460", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T00:20:50.836Z", + "completed":"2017-11-20T00:20:50.836Z", + "new_balance":"4647.19", + "value":"39.01" + } + }, + { + "id":"01fdc09a-3a9e-4923-85d0-f0ce1c59c5fb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T05:07:00.913Z", + "completed":"2017-11-21T05:07:00.913Z", + "new_balance":"4603.40", + "value":"-43.79" + } + }, + { + "id":"93f47695-b383-4ffc-85d5-6945483e0e67", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T13:21:58.895Z", + "completed":"2017-11-21T13:21:58.895Z", + "new_balance":"4557.77", + "value":"-45.63" + } + }, + { + "id":"bd3e1e2c-7ff7-4595-a7ec-5efba1d27321", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:36:20.431Z", + "completed":"2017-11-27T00:36:20.431Z", + "new_balance":"4524.24", + "value":"-33.53" + } + }, + { + "id":"e30d2889-6f2d-4f6e-ae0f-25f31ab9d998", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T07:22:42.618Z", + "completed":"2017-11-27T07:22:42.618Z", + "new_balance":"4498.68", + "value":"-25.56" + } + }, + { + "id":"07df9a90-5ebe-4803-88fa-3c4cc1cab5ea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"ING Mortgage" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T01:46:15.800Z", + "completed":"2017-12-01T01:46:15.800Z", + "new_balance":"3988.14", + "value":"-510.54" + } + }, + { + "id":"47d7eb36-a4a1-495c-9638-47de26e604e4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T06:44:38.392Z", + "completed":"2017-12-01T06:44:38.392Z", + "new_balance":"3853.66", + "value":"-134.48" + } + }, + { + "id":"a1b9ac3c-697e-4584-9e4f-692bdbf1e354", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T09:44:32.143Z", + "completed":"2017-12-01T09:44:32.143Z", + "new_balance":"5534.07", + "value":"1680.41" + } + }, + { + "id":"30c5492d-64c6-48bb-b4f4-ab62ff37d673", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T11:54:18.336Z", + "completed":"2017-12-01T11:54:18.336Z", + "new_balance":"5499.64", + "value":"-34.43" + } + }, + { + "id":"bf33daa8-e419-4d3b-9eb1-7ce3ba9c72d7", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T14:42:46.367Z", + "completed":"2017-12-01T14:42:46.367Z", + "new_balance":"5469.76", + "value":"-29.88" + } + }, + { + "id":"edb65f24-5126-401d-9d05-a435569cecaf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T22:04:58.589Z", + "completed":"2017-12-01T22:04:58.589Z", + "new_balance":"5416.58", + "value":"-53.18" + } + }, + { + "id":"550b2e5d-e70f-461c-8574-2a3c4d667b4e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sky" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T04:17:21.570Z", + "completed":"2017-12-04T04:17:21.570Z", + "new_balance":"5330.02", + "value":"-86.56" + } + }, + { + "id":"24715296-7c31-448e-b404-a5cedd2d9c55", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:04:19.356Z", + "completed":"2017-12-04T07:04:19.356Z", + "new_balance":"5198.18", + "value":"-131.84" + } + }, + { + "id":"244aceaf-1d27-4180-8ec3-e2ebbefbbc18", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T19:46:09.922Z", + "completed":"2017-12-12T19:46:09.922Z", + "new_balance":"5187.65", + "value":"-10.53" + } + }, + { + "id":"ea7289d4-882c-4006-ad23-67ed94443aea", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T23:41:31.594Z", + "completed":"2017-12-12T23:41:31.594Z", + "new_balance":"5156.84", + "value":"-30.81" + } + }, + { + "id":"8e9b4e04-3984-44e5-9056-023316e19fd5", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T17:12:12.565Z", + "completed":"2017-12-13T17:12:12.565Z", + "new_balance":"5150.37", + "value":"-6.47" + } + }, + { + "id":"251ed303-399a-4d85-a74b-fda14eac8426", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T20:14:25.596Z", + "completed":"2017-12-13T20:14:25.596Z", + "new_balance":"5069.16", + "value":"-81.21" + } + }, + { + "id":"51ed9edc-5ef3-42c2-9d3b-433c5dcfdf6e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T21:03:06.385Z", + "completed":"2017-12-16T21:03:06.385Z", + "new_balance":"5027.93", + "value":"-41.23" + } + }, + { + "id":"cf0248e8-67f4-49de-8fc4-a1fb80f577a4", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T03:43:00.051Z", + "completed":"2017-12-18T03:43:00.051Z", + "new_balance":"5023.16", + "value":"-4.77" + } + }, + { + "id":"bc1f36a7-80ce-4d03-b8d9-59048fc35071", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T11:01:47.261Z", + "completed":"2017-12-19T11:01:47.261Z", + "new_balance":"4939.36", + "value":"-83.80" + } + }, + { + "id":"387e293a-6e40-42a1-8bb0-6be682225329", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T14:21:27.683Z", + "completed":"2017-12-19T14:21:27.683Z", + "new_balance":"4858.15", + "value":"-81.21" + } + }, + { + "id":"3c493df3-74fd-438a-a24a-0cbf71b68778", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T09:52:32.542Z", + "completed":"2017-12-20T09:52:32.542Z", + "new_balance":"4815.81", + "value":"-42.34" + } + }, + { + "id":"150b9efa-35f8-4c65-b570-2b8c6e5bada6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T23:43:43.116Z", + "completed":"2017-12-21T23:43:43.116Z", + "new_balance":"4732.01", + "value":"-83.80" + } + }, + { + "id":"ee7f48c7-9465-46c0-869c-4b3166986259", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T09:33:24.914Z", + "completed":"2017-12-24T09:33:24.914Z", + "new_balance":"4686.00", + "value":"-46.01" + } + }, + { + "id":"18c2666d-4eef-487b-867f-cdca9d0a6be3", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T11:33:34.807Z", + "completed":"2017-12-24T11:33:34.807Z", + "new_balance":"4672.76", + "value":"-13.24" + } + }, + { + "id":"11b32237-37b5-461d-9181-c2ca633060ca", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T18:33:24.188Z", + "completed":"2017-12-24T18:33:24.188Z", + "new_balance":"4665.48", + "value":"-7.28" + } + }, + { + "id":"d314328a-5b0d-4237-b9c5-5f8c6e889e7e", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T20:30:35.444Z", + "completed":"2017-12-24T20:30:35.444Z", + "new_balance":"4574.01", + "value":"-91.47" + } + }, + { + "id":"cc16bca0-fb9d-4411-9dfc-a1c52f41babb", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T22:58:16.442Z", + "completed":"2017-12-24T22:58:16.442Z", + "new_balance":"4570.43", + "value":"-3.58" + } + }, + { + "id":"b61ada05-aebb-4300-8d90-c5d1fa0f75b2", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T23:30:17.208Z", + "completed":"2017-12-24T23:30:17.208Z", + "new_balance":"4543.13", + "value":"-27.30" + } + }, + { + "id":"a985417c-22b0-435c-b1a4-c2e17a4dc8fc", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T03:13:25.108Z", + "completed":"2017-12-28T03:13:25.108Z", + "new_balance":"4536.14", + "value":"-6.99" + } + }, + { + "id":"977cf2d5-b804-434e-a91f-acd65ce2a1d6", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T05:03:07.870Z", + "completed":"2017-12-28T05:03:07.870Z", + "new_balance":"4489.34", + "value":"-46.80" + } + }, + { + "id":"5d73f4d0-8eb2-4ad7-a9dd-91d7c2793932", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T07:38:41.420Z", + "completed":"2017-12-28T07:38:41.420Z", + "new_balance":"4407.93", + "value":"-81.41" + } + }, + { + "id":"955d8edb-1139-4f48-bbdb-a1d3c59cfd53", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T14:10:41.659Z", + "completed":"2017-12-28T14:10:41.659Z", + "new_balance":"4400.94", + "value":"-6.99" + } + }, + { + "id":"018a5627-e54b-44f8-8eba-3eb225d864cf", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T01:07:39.424Z", + "completed":"2017-12-29T01:07:39.424Z", + "new_balance":"4394.47", + "value":"-6.47" + } + }, + { + "id":"9d9de7e2-57bf-43d9-93bc-b8bc585c715b", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T10:32:42.146Z", + "completed":"2017-12-29T10:32:42.146Z", + "new_balance":"4360.56", + "value":"-33.91" + } + }, + { + "id":"446fd455-fa40-4baa-95ff-6ff21f466d0c", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T16:40:33.165Z", + "completed":"2017-12-29T16:40:33.165Z", + "new_balance":"4287.05", + "value":"-73.51" + } + }, + { + "id":"090c40cc-2fb0-47d0-8f2a-512a8f5a6d1f", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Thames Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T21:43:01.426Z", + "completed":"2017-12-29T21:43:01.426Z", + "new_balance":"4236.04", + "value":"-51.01" + } + }, + { + "id":"280aa767-2475-4f2e-a055-3218a9bc504d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:11:35.459Z", + "completed":"2017-12-29T22:11:35.459Z", + "new_balance":"4177.14", + "value":"-58.90" + } + }, + { + "id":"07ca1edc-99b7-4bbe-901a-5d09b2b6ad00", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Chimichanga" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T22:20:31.326Z", + "completed":"2017-12-29T22:20:31.326Z", + "new_balance":"4140.19", + "value":"-36.95" + } + }, + { + "id":"d0563107-e4a4-40eb-9f15-cf7d85ebfd38", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Llyolds Pharmacy" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T07:22:35.783Z", + "completed":"2017-12-30T07:22:35.783Z", + "new_balance":"4128.96", + "value":"-11.23" + } + }, + { + "id":"1b183e56-1086-4677-ab12-26f2e6342236", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T15:50:41.764Z", + "completed":"2017-12-30T15:50:41.764Z", + "new_balance":"4100.10", + "value":"-28.86" + } + }, + { + "id":"9522f99a-527b-4227-8a5d-b5ae0fe85b99", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T19:02:57.843Z", + "completed":"2017-12-30T19:02:57.843Z", + "new_balance":"4094.22", + "value":"-5.88" + } + }, + { + "id":"9401a55c-c07b-46f0-8509-71bef8b8761d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"City Dental" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T19:59:39.638Z", + "completed":"2017-12-30T19:59:39.638Z", + "new_balance":"4048.71", + "value":"-45.51" + } + }, + { + "id":"a106de03-d44b-4b72-819f-834ee149c724", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T03:40:13.725Z", + "completed":"2017-12-31T03:40:13.725Z", + "new_balance":"4014.68", + "value":"-34.03" + } + }, + { + "id":"e8e5071a-a261-40b3-8cc1-1edb9282d904", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mr D Moda" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T05:23:33.112Z", + "completed":"2017-12-31T05:23:33.112Z", + "new_balance":"3825.41", + "value":"-189.27" + } + }, + { + "id":"49e0508c-7bbd-4085-8f08-a0f22b7c2f0d", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T11:12:54.492Z", + "completed":"2017-12-31T11:12:54.492Z", + "new_balance":"3809.33", + "value":"-16.08" + } + }, + { + "id":"24834f9f-e9eb-412b-b941-f6d37cbf09df", + "this_account":{ + "id":"8144ebf7-9aed-4699-a14c-70f164bdeb34", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T22:18:11.919Z", + "completed":"2017-12-31T22:18:11.919Z", + "new_balance":"3782.36", + "value":"-26.97" + } + }, + { + "id":"e1c7a3a7-6a79-4561-8ee5-c27a6c5590d1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T13:39:10.604Z", + "completed":"2016-01-01T13:39:10.604Z", + "new_balance":"5058.46", + "value":"-61.87" + } + }, + { + "id":"91a7e248-da42-4c42-9295-af4b1096ff8b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T16:44:17.933Z", + "completed":"2016-01-01T16:44:17.933Z", + "new_balance":"4996.59", + "value":"-61.87" + } + }, + { + "id":"08f7ccf5-9c69-45c1-9750-5ad83f8f219d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T16:24:45.345Z", + "completed":"2016-01-03T16:24:45.345Z", + "new_balance":"4962.16", + "value":"-34.43" + } + }, + { + "id":"ec18bc20-269b-4df3-83ea-d191b7d2836e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T17:36:34.663Z", + "completed":"2016-01-03T17:36:34.663Z", + "new_balance":"4937.60", + "value":"-24.56" + } + }, + { + "id":"1f969012-1a7c-412b-96d6-c94cc9717918", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T22:24:12.297Z", + "completed":"2016-01-03T22:24:12.297Z", + "new_balance":"4863.67", + "value":"-73.93" + } + }, + { + "id":"c58fa878-73ef-42d0-a597-af99cf007241", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T23:02:29.021Z", + "completed":"2016-01-03T23:02:29.021Z", + "new_balance":"4353.13", + "value":"-510.54" + } + }, + { + "id":"145e0ed9-277a-4b02-8147-8dec8f6a6ebd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T15:11:28.208Z", + "completed":"2016-01-05T15:11:28.208Z", + "new_balance":"4299.95", + "value":"-53.18" + } + }, + { + "id":"07a7c79f-9212-4918-9724-8ed8306340c2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T16:56:51.889Z", + "completed":"2016-01-05T16:56:51.889Z", + "new_balance":"4255.97", + "value":"-43.98" + } + }, + { + "id":"30ab69c7-4d46-45a0-bc53-db90e990501d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T21:07:28.333Z", + "completed":"2016-01-05T21:07:28.333Z", + "new_balance":"4242.96", + "value":"-13.01" + } + }, + { + "id":"42a68156-01e5-44b2-9154-189605e9ef74", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T05:31:38.385Z", + "completed":"2016-01-06T05:31:38.385Z", + "new_balance":"4213.08", + "value":"-29.88" + } + }, + { + "id":"c8b06a34-b958-49dc-9a50-8a695c5cc8af", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T15:00:08.821Z", + "completed":"2016-01-06T15:00:08.821Z", + "new_balance":"4190.39", + "value":"-22.69" + } + }, + { + "id":"7bfd76b7-e48e-4435-b477-80c90ad1c932", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T21:45:14.163Z", + "completed":"2016-01-07T21:45:14.163Z", + "new_balance":"4151.22", + "value":"-39.17" + } + }, + { + "id":"949e7f58-dd76-4706-8e19-57bfb3657f37", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T02:49:45.774Z", + "completed":"2016-01-10T02:49:45.774Z", + "new_balance":"4126.35", + "value":"-24.87" + } + }, + { + "id":"fae66f39-62e7-4fe6-9cb0-5492cf870c1e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T13:03:10.035Z", + "completed":"2016-01-10T13:03:10.035Z", + "new_balance":"4073.17", + "value":"-53.18" + } + }, + { + "id":"87716124-f1f0-482c-b953-27f7a04bedf2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T01:39:49.436Z", + "completed":"2016-01-12T01:39:49.436Z", + "new_balance":"4053.10", + "value":"-20.07" + } + }, + { + "id":"892a6b35-0c24-4cdd-bcc1-11dbfa95046b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T14:23:22.146Z", + "completed":"2016-01-12T14:23:22.146Z", + "new_balance":"4013.93", + "value":"-39.17" + } + }, + { + "id":"0df30882-bc34-4e0c-b4ca-9f18595be62f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:03:14.756Z", + "completed":"2016-01-12T18:03:14.756Z", + "new_balance":"3989.37", + "value":"-24.56" + } + }, + { + "id":"b1186f67-51c8-403a-a03e-c86c92d71e83", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T08:39:08.473Z", + "completed":"2016-01-15T08:39:08.473Z", + "new_balance":"3972.97", + "value":"-16.40" + } + }, + { + "id":"eb1038c8-ca72-4904-ba3e-7bf760aa6407", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T06:48:17.509Z", + "completed":"2016-01-16T06:48:17.509Z", + "new_balance":"3919.79", + "value":"-53.18" + } + }, + { + "id":"60c7ed1a-4d37-45c8-8800-73e2a2919293", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T10:30:12.167Z", + "completed":"2016-01-16T10:30:12.167Z", + "new_balance":"3913.64", + "value":"-6.15" + } + }, + { + "id":"8edfc008-b9d7-494f-b224-a942c507da4e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T04:01:12.051Z", + "completed":"2016-01-17T04:01:12.051Z", + "new_balance":"3882.32", + "value":"-31.32" + } + }, + { + "id":"bb1ebc33-bbec-4345-8afa-9281da4ddb2b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T12:04:00.245Z", + "completed":"2016-01-17T12:04:00.245Z", + "new_balance":"3821.14", + "value":"-61.18" + } + }, + { + "id":"19450283-2376-4721-b95a-55f100c98ec5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T04:49:01.578Z", + "completed":"2016-01-19T04:49:01.578Z", + "new_balance":"3790.74", + "value":"-30.40" + } + }, + { + "id":"15094b41-d8cb-45f3-a858-a686a15808d6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T09:27:44.357Z", + "completed":"2016-01-20T09:27:44.357Z", + "new_balance":"3737.56", + "value":"-53.18" + } + }, + { + "id":"02a89855-55b4-4047-8423-13c09ddecea1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T05:27:20.636Z", + "completed":"2016-01-23T05:27:20.636Z", + "new_balance":"3721.73", + "value":"-15.83" + } + }, + { + "id":"2ca55baf-2e74-4745-b275-de0ee0e68f1b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T14:15:44.894Z", + "completed":"2016-01-26T14:15:44.894Z", + "new_balance":"3663.25", + "value":"-58.48" + } + }, + { + "id":"4ebf9a4c-218f-4710-aabd-080853102e3f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T07:57:57.771Z", + "completed":"2016-01-27T07:57:57.771Z", + "new_balance":"4851.76", + "value":"1188.51" + } + }, + { + "id":"b671e1e6-d1a5-4774-93a2-995166b977ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T01:07:23.089Z", + "completed":"2016-01-28T01:07:23.089Z", + "new_balance":"4817.33", + "value":"-34.43" + } + }, + { + "id":"9c754d5f-ed30-454c-b904-c7b9819e0106", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T12:34:40.005Z", + "completed":"2016-01-30T12:34:40.005Z", + "new_balance":"4774.99", + "value":"-42.34" + } + }, + { + "id":"bcadcd23-570d-40cd-aaa5-a71aa1cbcf90", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T09:58:28.878Z", + "completed":"2016-02-03T09:58:28.878Z", + "new_balance":"4740.56", + "value":"-34.43" + } + }, + { + "id":"cbd7a3dc-3d0c-4105-a5a8-bb5970e34c78", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T13:04:56.849Z", + "completed":"2016-02-03T13:04:56.849Z", + "new_balance":"4666.63", + "value":"-73.93" + } + }, + { + "id":"edf1ce30-aa28-4a93-8605-2132a7fc8187", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T14:02:13.232Z", + "completed":"2016-02-03T14:02:13.232Z", + "new_balance":"4156.09", + "value":"-510.54" + } + }, + { + "id":"e096d6d2-6c9a-4052-81f8-443e8efd51ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T21:03:26.180Z", + "completed":"2016-02-03T21:03:26.180Z", + "new_balance":"4131.53", + "value":"-24.56" + } + }, + { + "id":"f971dd47-94b9-4aeb-ac3a-674854a71a81", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T15:17:25.122Z", + "completed":"2016-02-08T15:17:25.122Z", + "new_balance":"4087.55", + "value":"-43.98" + } + }, + { + "id":"71b8530b-7977-4d49-b794-70a532accc4d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T16:40:59.485Z", + "completed":"2016-02-08T16:40:59.485Z", + "new_balance":"4034.37", + "value":"-53.18" + } + }, + { + "id":"cf9e0ad1-4aaf-4763-8e48-76b33130aafe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T03:40:51.397Z", + "completed":"2016-02-11T03:40:51.397Z", + "new_balance":"4045.26", + "value":"10.89" + } + }, + { + "id":"15e40b60-f276-4eb1-8a5b-f2ce0d032f30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T02:59:08.626Z", + "completed":"2016-02-13T02:59:08.626Z", + "new_balance":"4015.38", + "value":"-29.88" + } + }, + { + "id":"e35d64e2-be67-4721-ad94-2ea7752bf66b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T16:16:33.136Z", + "completed":"2016-02-14T16:16:33.136Z", + "new_balance":"3987.53", + "value":"-27.85" + } + }, + { + "id":"4c016af2-ec73-42f2-a829-1d23367dcf6f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T20:25:07.967Z", + "completed":"2016-02-17T20:25:07.967Z", + "new_balance":"3976.62", + "value":"-10.91" + } + }, + { + "id":"2d42cb53-0e52-40c2-8259-68ca0d64235a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T19:56:56.332Z", + "completed":"2016-02-21T19:56:56.332Z", + "new_balance":"3935.49", + "value":"-41.13" + } + }, + { + "id":"6f8dc519-2603-4f49-9fe9-ea5802752ed7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T13:23:44.025Z", + "completed":"2016-02-23T13:23:44.025Z", + "new_balance":"3894.57", + "value":"-40.92" + } + }, + { + "id":"c457eed0-3d40-417c-b731-11d349f51c1d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T14:21:22.643Z", + "completed":"2016-02-23T14:21:22.643Z", + "new_balance":"3841.39", + "value":"-53.18" + } + }, + { + "id":"83f5eb6e-0a17-4b98-ada2-56fc30735341", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T08:45:15.686Z", + "completed":"2016-02-24T08:45:15.686Z", + "new_balance":"3830.48", + "value":"-10.91" + } + }, + { + "id":"291f5d3a-fbef-4c26-99f4-609012abee47", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T09:53:45.440Z", + "completed":"2016-02-27T09:53:45.440Z", + "new_balance":"5018.99", + "value":"1188.51" + } + }, + { + "id":"1c9fe517-b72e-47ab-9760-dfd5a282d0ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T11:09:54.363Z", + "completed":"2016-02-27T11:09:54.363Z", + "new_balance":"5002.25", + "value":"-16.74" + } + }, + { + "id":"cc73796b-bfad-48ce-85da-bdc9f10d2456", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T15:46:23.427Z", + "completed":"2016-02-27T15:46:23.427Z", + "new_balance":"4943.77", + "value":"-58.48" + } + }, + { + "id":"82c179cd-e1ff-4c13-bea3-4b0bfb83a768", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T11:09:11.209Z", + "completed":"2016-02-28T11:09:11.209Z", + "new_balance":"4901.43", + "value":"-42.34" + } + }, + { + "id":"a78a9c2d-57ed-4c0a-bcb8-1f69fd311d15", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T17:33:21.172Z", + "completed":"2016-02-28T17:33:21.172Z", + "new_balance":"4867.00", + "value":"-34.43" + } + }, + { + "id":"72d44f0d-0d84-4da2-a488-73602b5672c1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T10:13:51.464Z", + "completed":"2016-03-01T10:13:51.464Z", + "new_balance":"4805.13", + "value":"-61.87" + } + }, + { + "id":"6926ce0a-2373-47e7-8025-f95762376191", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T00:55:41.196Z", + "completed":"2016-03-03T00:55:41.196Z", + "new_balance":"4770.70", + "value":"-34.43" + } + }, + { + "id":"35ae6f4f-ef07-4755-81d4-2d8553611980", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T02:10:05.862Z", + "completed":"2016-03-03T02:10:05.862Z", + "new_balance":"4260.16", + "value":"-510.54" + } + }, + { + "id":"bba65514-5459-423a-aa30-3b7fe71e95c5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T18:18:07.072Z", + "completed":"2016-03-03T18:18:07.072Z", + "new_balance":"4186.23", + "value":"-73.93" + } + }, + { + "id":"d4695715-1fd0-4c6b-a197-58fae1a73b35", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T19:52:50.197Z", + "completed":"2016-03-03T19:52:50.197Z", + "new_balance":"4161.67", + "value":"-24.56" + } + }, + { + "id":"d595853e-da7e-4651-858c-0f004eb1fc91", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T01:47:13.939Z", + "completed":"2016-03-05T01:47:13.939Z", + "new_balance":"4108.49", + "value":"-53.18" + } + }, + { + "id":"2cfbb8ef-3537-49e9-8bd1-a0406281e1bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T14:48:47.668Z", + "completed":"2016-03-05T14:48:47.668Z", + "new_balance":"4059.83", + "value":"-48.66" + } + }, + { + "id":"f7fd24e8-4819-4ab5-bc9a-cbd2b2fd3b7b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T00:36:55.628Z", + "completed":"2016-03-07T00:36:55.628Z", + "new_balance":"4046.16", + "value":"-13.67" + } + }, + { + "id":"60879d45-09df-4b9e-b2f1-ecf449ae69e3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T17:10:37.166Z", + "completed":"2016-03-09T17:10:37.166Z", + "new_balance":"3992.98", + "value":"-53.18" + } + }, + { + "id":"4913e4d5-d86b-43c4-acb2-80fa98336af6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T18:06:04.686Z", + "completed":"2016-03-11T18:06:04.686Z", + "new_balance":"3981.98", + "value":"-11.00" + } + }, + { + "id":"56774d26-2e23-4d7c-b09a-83bfe48d5345", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T12:00:51.865Z", + "completed":"2016-03-13T12:00:51.865Z", + "new_balance":"3924.30", + "value":"-57.68" + } + }, + { + "id":"7d51c7f5-8c6c-4b42-b94c-d832ab2166d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T00:30:10.670Z", + "completed":"2016-03-14T00:30:10.670Z", + "new_balance":"3987.66", + "value":"63.36" + } + }, + { + "id":"208357f8-c0f5-4826-9fc2-fb14ac8c26c6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T13:45:31.870Z", + "completed":"2016-03-14T13:45:31.870Z", + "new_balance":"3975.73", + "value":"-11.93" + } + }, + { + "id":"78b13a40-5ab8-4d7d-8ff7-b56e2b618c80", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T10:36:05.869Z", + "completed":"2016-03-15T10:36:05.869Z", + "new_balance":"3933.39", + "value":"-42.34" + } + }, + { + "id":"0aee8933-ad1f-4ab4-8865-ad8a898e1020", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T10:00:01.455Z", + "completed":"2016-03-26T10:00:01.455Z", + "new_balance":"3906.55", + "value":"-26.84" + } + }, + { + "id":"f5729125-ea0a-4862-b7b7-a88154164014", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T13:47:15.093Z", + "completed":"2016-03-26T13:47:15.093Z", + "new_balance":"3881.18", + "value":"-25.37" + } + }, + { + "id":"e153f2a0-ccc6-4116-bafc-9bb35f04e11b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T16:09:22.110Z", + "completed":"2016-03-26T16:09:22.110Z", + "new_balance":"3834.25", + "value":"-46.93" + } + }, + { + "id":"bda6f2ca-cdf8-4f13-8304-efb75c6cb749", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T00:45:31.276Z", + "completed":"2016-03-27T00:45:31.276Z", + "new_balance":"3781.07", + "value":"-53.18" + } + }, + { + "id":"da3362e1-2b33-4d4e-988a-fc0b871bcae0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T04:07:15.379Z", + "completed":"2016-03-27T04:07:15.379Z", + "new_balance":"4969.58", + "value":"1188.51" + } + }, + { + "id":"35e9ac1a-230d-4f7e-b6e9-c987c9c99eb3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T13:22:33.535Z", + "completed":"2016-03-27T13:22:33.535Z", + "new_balance":"4903.00", + "value":"-66.58" + } + }, + { + "id":"77c2a67a-931a-4598-a2c8-9ba759c388ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T06:01:27.954Z", + "completed":"2016-03-28T06:01:27.954Z", + "new_balance":"4868.57", + "value":"-34.43" + } + }, + { + "id":"455de52d-696e-4e64-a88d-55343aa2e47a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T05:55:44.413Z", + "completed":"2016-03-30T05:55:44.413Z", + "new_balance":"4826.23", + "value":"-42.34" + } + }, + { + "id":"95c10b64-67cc-414f-ac52-2e1f7fa521d4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:15:28.707Z", + "completed":"2016-04-01T09:15:28.707Z", + "new_balance":"4752.30", + "value":"-73.93" + } + }, + { + "id":"63623866-d8bb-43f7-9d40-5aaf3e1e76a0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T13:33:38.249Z", + "completed":"2016-04-01T13:33:38.249Z", + "new_balance":"4727.74", + "value":"-24.56" + } + }, + { + "id":"940744b9-c4e1-464f-b17b-b5f531c32aa9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T14:11:46.369Z", + "completed":"2016-04-01T14:11:46.369Z", + "new_balance":"4217.20", + "value":"-510.54" + } + }, + { + "id":"5fd222bb-a4dc-4543-be7c-df3ece2931e0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T14:19:17.497Z", + "completed":"2016-04-01T14:19:17.497Z", + "new_balance":"4182.77", + "value":"-34.43" + } + }, + { + "id":"8fc7a056-d20c-4fc4-9297-d4cad11d4294", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T21:42:04.595Z", + "completed":"2016-04-01T21:42:04.595Z", + "new_balance":"4120.90", + "value":"-61.87" + } + }, + { + "id":"3d69e16b-6798-48d0-b742-9940e12e7d1d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T03:08:36.596Z", + "completed":"2016-04-05T03:08:36.596Z", + "new_balance":"4098.21", + "value":"-22.69" + } + }, + { + "id":"913f2725-05d0-4ae4-9ba7-f9bff1629645", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T11:58:34.948Z", + "completed":"2016-04-05T11:58:34.948Z", + "new_balance":"4085.20", + "value":"-13.01" + } + }, + { + "id":"e5ccdc69-a1ba-408a-8548-b2594054cf9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:01:53.101Z", + "completed":"2016-04-05T15:01:53.101Z", + "new_balance":"4041.22", + "value":"-43.98" + } + }, + { + "id":"bb9f3682-147a-4974-b85b-833c79f5862e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T22:12:18.809Z", + "completed":"2016-04-05T22:12:18.809Z", + "new_balance":"3988.04", + "value":"-53.18" + } + }, + { + "id":"84c9a374-0e59-446f-8a80-2a5230c9586c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T05:50:22.941Z", + "completed":"2016-04-07T05:50:22.941Z", + "new_balance":"3958.16", + "value":"-29.88" + } + }, + { + "id":"3fba4d83-765b-44ca-9802-afc82f846221", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T04:25:24.177Z", + "completed":"2016-04-09T04:25:24.177Z", + "new_balance":"3904.98", + "value":"-53.18" + } + }, + { + "id":"d332e81c-2aa9-4a90-9042-8a5ea28ca104", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T19:48:33.968Z", + "completed":"2016-04-09T19:48:33.968Z", + "new_balance":"3880.11", + "value":"-24.87" + } + }, + { + "id":"6209a7cb-d618-4f29-8ef8-414ec3dfe5cf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T13:30:29.779Z", + "completed":"2016-04-10T13:30:29.779Z", + "new_balance":"3855.55", + "value":"-24.56" + } + }, + { + "id":"61d66d0b-dc76-4720-b36b-32e739b011f8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T13:44:28.176Z", + "completed":"2016-04-10T13:44:28.176Z", + "new_balance":"3835.48", + "value":"-20.07" + } + }, + { + "id":"c1856a80-b2be-4a8c-8411-ebd93d223d79", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T21:15:05.474Z", + "completed":"2016-04-10T21:15:05.474Z", + "new_balance":"3796.31", + "value":"-39.17" + } + }, + { + "id":"5dfa990d-839b-4d79-9169-c400853ae969", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T22:32:45.700Z", + "completed":"2016-04-10T22:32:45.700Z", + "new_balance":"3779.91", + "value":"-16.40" + } + }, + { + "id":"07c5690d-c762-4365-9701-bf1c6acc64b3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T03:48:35.669Z", + "completed":"2016-04-11T03:48:35.669Z", + "new_balance":"3773.76", + "value":"-6.15" + } + }, + { + "id":"4a0d2ce2-702f-45b6-a28f-412afc69b957", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T13:42:03.137Z", + "completed":"2016-04-11T13:42:03.137Z", + "new_balance":"3743.36", + "value":"-30.40" + } + }, + { + "id":"39686c08-ad96-4051-94bc-4ab9a692f493", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T14:11:06.760Z", + "completed":"2016-04-11T14:11:06.760Z", + "new_balance":"3712.04", + "value":"-31.32" + } + }, + { + "id":"f73d3bdb-fa7c-4f86-8a5b-7a13684b9fa6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T19:24:15.985Z", + "completed":"2016-04-11T19:24:15.985Z", + "new_balance":"3650.86", + "value":"-61.18" + } + }, + { + "id":"f518a1bd-ba88-4a22-886a-87d6e5055185", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T19:52:17.871Z", + "completed":"2016-04-11T19:52:17.871Z", + "new_balance":"3597.68", + "value":"-53.18" + } + }, + { + "id":"c2c06a40-089b-4fc8-9eb9-d332e6fb0e69", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T01:10:52.340Z", + "completed":"2016-04-21T01:10:52.340Z", + "new_balance":"3544.50", + "value":"-53.18" + } + }, + { + "id":"81f09471-bd7a-4075-9026-7fb372819354", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T22:45:39.446Z", + "completed":"2016-04-23T22:45:39.446Z", + "new_balance":"3528.67", + "value":"-15.83" + } + }, + { + "id":"0e852554-f61a-4715-b1cf-aa4d97782574", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T06:23:31.164Z", + "completed":"2016-04-29T06:23:31.164Z", + "new_balance":"4717.18", + "value":"1188.51" + } + }, + { + "id":"1b774c7b-624c-4743-890c-3fe0d2fd15fb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T12:09:10.558Z", + "completed":"2016-04-29T12:09:10.558Z", + "new_balance":"4682.75", + "value":"-34.43" + } + }, + { + "id":"8c313c9e-4254-425b-a7f4-46dd096c4cfe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T23:04:27.781Z", + "completed":"2016-04-29T23:04:27.781Z", + "new_balance":"4624.27", + "value":"-58.48" + } + }, + { + "id":"19ce724d-dddf-4026-893c-7db3443fa9dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T13:04:49.480Z", + "completed":"2016-04-30T13:04:49.480Z", + "new_balance":"4581.93", + "value":"-42.34" + } + }, + { + "id":"51b34af5-5537-473e-bb0c-a5be62100a31", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T02:13:03.916Z", + "completed":"2016-05-02T02:13:03.916Z", + "new_balance":"4508.00", + "value":"-73.93" + } + }, + { + "id":"ebe4e30f-7190-49ec-b50a-1e65b9c0cc5c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T06:50:58.932Z", + "completed":"2016-05-02T06:50:58.932Z", + "new_balance":"3997.46", + "value":"-510.54" + } + }, + { + "id":"64c73f3f-41a8-4cf6-a811-3c73a6ef446f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T12:03:59.856Z", + "completed":"2016-05-02T12:03:59.856Z", + "new_balance":"3935.59", + "value":"-61.87" + } + }, + { + "id":"50f7dbe1-280d-4c4b-ad2a-c0ec30b57c8f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T20:25:55.322Z", + "completed":"2016-05-02T20:25:55.322Z", + "new_balance":"3911.03", + "value":"-24.56" + } + }, + { + "id":"10450570-914a-4114-adc6-d295742cc80a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T05:57:48.680Z", + "completed":"2016-05-06T05:57:48.680Z", + "new_balance":"3867.05", + "value":"-43.98" + } + }, + { + "id":"a73f1f13-581e-481d-9d33-dfefc30685d0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T10:11:07.521Z", + "completed":"2016-05-07T10:11:07.521Z", + "new_balance":"3839.20", + "value":"-27.85" + } + }, + { + "id":"d5ff80a5-8943-4b31-9df7-5305e06446a1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T10:39:04.486Z", + "completed":"2016-05-07T10:39:04.486Z", + "new_balance":"3809.32", + "value":"-29.88" + } + }, + { + "id":"cd8dba43-94b6-4625-b961-4e3c108fb979", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T17:23:38.304Z", + "completed":"2016-05-07T17:23:38.304Z", + "new_balance":"3798.41", + "value":"-10.91" + } + }, + { + "id":"fc8fbeae-cd4f-4159-807f-76db861f5bae", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T18:33:44.389Z", + "completed":"2016-05-07T18:33:44.389Z", + "new_balance":"3757.28", + "value":"-41.13" + } + }, + { + "id":"dbd61dc0-35b5-4f6f-89a2-4618e0958ca3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T19:20:39.688Z", + "completed":"2016-05-08T19:20:39.688Z", + "new_balance":"3716.36", + "value":"-40.92" + } + }, + { + "id":"d1cfa7ff-c279-481b-ab2c-f801e69778d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T06:22:08.525Z", + "completed":"2016-05-09T06:22:08.525Z", + "new_balance":"3681.93", + "value":"-34.43" + } + }, + { + "id":"ba7fe130-8675-4f10-8536-8c77c70873f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T15:41:22.954Z", + "completed":"2016-05-13T15:41:22.954Z", + "new_balance":"3628.75", + "value":"-53.18" + } + }, + { + "id":"933e44d9-5174-431d-b21a-14f0e89a9294", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T08:26:27.460Z", + "completed":"2016-05-26T08:26:27.460Z", + "new_balance":"3575.57", + "value":"-53.18" + } + }, + { + "id":"7a99caaa-d85a-469f-b7aa-74b2e76713a6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:11:14.805Z", + "completed":"2016-05-26T21:11:14.805Z", + "new_balance":"3564.66", + "value":"-10.91" + } + }, + { + "id":"a71f8142-8a89-44da-bf74-c0ba6501a5e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T13:25:35.817Z", + "completed":"2016-05-27T13:25:35.817Z", + "new_balance":"3547.92", + "value":"-16.74" + } + }, + { + "id":"cac32a34-edff-4e85-a967-179a0be3a3a3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T21:41:55.842Z", + "completed":"2016-05-27T21:41:55.842Z", + "new_balance":"3489.44", + "value":"-58.48" + } + }, + { + "id":"2cb65be3-71c3-496b-93bb-9cd5b1e0c431", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T04:06:04.820Z", + "completed":"2016-05-30T04:06:04.820Z", + "new_balance":"4677.95", + "value":"1188.51" + } + }, + { + "id":"92dd9c59-ec03-440d-bba0-78b4e948c1c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T15:56:33.117Z", + "completed":"2016-05-30T15:56:33.117Z", + "new_balance":"4635.61", + "value":"-42.34" + } + }, + { + "id":"202c0726-77b9-49a7-b484-82684cb86abe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T22:57:08.902Z", + "completed":"2016-05-30T22:57:08.902Z", + "new_balance":"4601.18", + "value":"-34.43" + } + }, + { + "id":"e13465e5-70f7-4a23-8e15-1c8d3f5ab02c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T02:05:20.030Z", + "completed":"2016-06-01T02:05:20.030Z", + "new_balance":"4548.00", + "value":"-53.18" + } + }, + { + "id":"1c0a3c5c-db91-439d-99f9-bf51119f30a0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T05:34:47.182Z", + "completed":"2016-06-01T05:34:47.182Z", + "new_balance":"4534.33", + "value":"-13.67" + } + }, + { + "id":"5f4bb6bc-b811-445b-8ef3-3e87543b7cb0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T07:01:25.837Z", + "completed":"2016-06-01T07:01:25.837Z", + "new_balance":"4509.77", + "value":"-24.56" + } + }, + { + "id":"1489765b-7a1f-4b2c-9040-0a07ef62f8fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T10:31:45.505Z", + "completed":"2016-06-01T10:31:45.505Z", + "new_balance":"4456.59", + "value":"-53.18" + } + }, + { + "id":"1f0eef89-d365-48d1-acbc-f9830363626b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T15:31:10.534Z", + "completed":"2016-06-01T15:31:10.534Z", + "new_balance":"4422.16", + "value":"-34.43" + } + }, + { + "id":"368553a3-e5db-44e6-832c-8ab4447a21d0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:57:01.618Z", + "completed":"2016-06-01T15:57:01.618Z", + "new_balance":"4360.29", + "value":"-61.87" + } + }, + { + "id":"b842be38-fea1-4bed-bf90-cff698814b9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T16:38:46.848Z", + "completed":"2016-06-01T16:38:46.848Z", + "new_balance":"4286.36", + "value":"-73.93" + } + }, + { + "id":"8457ed3b-df57-4f6f-ad19-99a6f2f4c821", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T20:12:50.349Z", + "completed":"2016-06-01T20:12:50.349Z", + "new_balance":"3775.82", + "value":"-510.54" + } + }, + { + "id":"bead0a08-951c-4bc1-9919-365cffd6eeab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T23:19:53.516Z", + "completed":"2016-06-01T23:19:53.516Z", + "new_balance":"3727.16", + "value":"-48.66" + } + }, + { + "id":"eedf549d-b67e-45f0-917a-f2c286616f7f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T01:15:53.939Z", + "completed":"2016-06-02T01:15:53.939Z", + "new_balance":"3715.23", + "value":"-11.93" + } + }, + { + "id":"1db67eff-a50b-4adb-a272-bce4a7ed52fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T02:48:28.969Z", + "completed":"2016-06-02T02:48:28.969Z", + "new_balance":"3704.23", + "value":"-11.00" + } + }, + { + "id":"5bddf0fa-b325-4eaa-bea9-2736ac2c1442", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T18:38:58.675Z", + "completed":"2016-06-02T18:38:58.675Z", + "new_balance":"3646.55", + "value":"-57.68" + } + }, + { + "id":"abba748c-009a-40d5-8e7f-494a2561a3a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T06:34:39.273Z", + "completed":"2016-06-04T06:34:39.273Z", + "new_balance":"3599.62", + "value":"-46.93" + } + }, + { + "id":"d3f75cf5-cdaf-4195-ad29-720206ddf5b7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T06:51:59.873Z", + "completed":"2016-06-04T06:51:59.873Z", + "new_balance":"3557.28", + "value":"-42.34" + } + }, + { + "id":"3f32fe6f-2c74-473b-8ac4-e55f7be66042", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T22:59:25.759Z", + "completed":"2016-06-04T22:59:25.759Z", + "new_balance":"3531.91", + "value":"-25.37" + } + }, + { + "id":"8ff8c921-b40f-4718-8b7f-1302c4e14a07", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T15:00:48.835Z", + "completed":"2016-06-05T15:00:48.835Z", + "new_balance":"3505.07", + "value":"-26.84" + } + }, + { + "id":"add20f64-88b8-45f7-969d-e99aae5c587c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T19:23:41.949Z", + "completed":"2016-06-05T19:23:41.949Z", + "new_balance":"3438.49", + "value":"-66.58" + } + }, + { + "id":"e10c0f47-2d36-43fe-a94f-eb059ac354c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T02:29:04.767Z", + "completed":"2016-06-18T02:29:04.767Z", + "new_balance":"3385.31", + "value":"-53.18" + } + }, + { + "id":"cc36601b-c723-44f1-83a6-705082e15422", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T04:33:21.885Z", + "completed":"2016-06-30T04:33:21.885Z", + "new_balance":"3343.78", + "value":"-41.53" + } + }, + { + "id":"184bf0e1-7725-4039-bdbb-1b7b47928d40", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T04:51:39.610Z", + "completed":"2016-06-30T04:51:39.610Z", + "new_balance":"3301.44", + "value":"-42.34" + } + }, + { + "id":"7078d96b-5d2d-465c-980f-9ac176eddf20", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T10:34:25.612Z", + "completed":"2016-06-30T10:34:25.612Z", + "new_balance":"4489.95", + "value":"1188.51" + } + }, + { + "id":"dc9e5820-a6c0-47bb-8120-eac294aa8124", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T16:18:28.074Z", + "completed":"2016-06-30T16:18:28.074Z", + "new_balance":"4455.52", + "value":"-34.43" + } + }, + { + "id":"ec8b3437-b3d5-41cf-a80c-a5e3520c7984", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T14:37:25.245Z", + "completed":"2016-07-01T14:37:25.245Z", + "new_balance":"4393.65", + "value":"-61.87" + } + }, + { + "id":"50aa773e-e0b2-4862-899d-a76d0044154b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T09:27:32.537Z", + "completed":"2016-07-03T09:27:32.537Z", + "new_balance":"3883.11", + "value":"-510.54" + } + }, + { + "id":"6c7a6387-48d3-4205-8a55-8c92de5f1116", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T12:39:59.302Z", + "completed":"2016-07-03T12:39:59.302Z", + "new_balance":"3848.68", + "value":"-34.43" + } + }, + { + "id":"7bef67f5-2629-4fa4-8490-3420b7075ae8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T16:18:22.805Z", + "completed":"2016-07-03T16:18:22.805Z", + "new_balance":"3824.12", + "value":"-24.56" + } + }, + { + "id":"a5c8a847-ea6a-4fdf-a6c7-6294c5b3f487", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T18:21:03.371Z", + "completed":"2016-07-03T18:21:03.371Z", + "new_balance":"3750.19", + "value":"-73.93" + } + }, + { + "id":"f1d647fb-fc3d-4acf-a24e-372ded34e35b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T03:34:49.152Z", + "completed":"2016-07-05T03:34:49.152Z", + "new_balance":"3737.18", + "value":"-13.01" + } + }, + { + "id":"25b10212-ec66-4d84-bb18-ecf2d0e8ac8c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T03:46:40.480Z", + "completed":"2016-07-05T03:46:40.480Z", + "new_balance":"3684.00", + "value":"-53.18" + } + }, + { + "id":"db51c115-b5ab-4ac1-83eb-57cda4425198", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:42:04.005Z", + "completed":"2016-07-05T13:42:04.005Z", + "new_balance":"3640.02", + "value":"-43.98" + } + }, + { + "id":"a4207563-1f24-4863-8586-ca23634c0a95", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T04:01:27.964Z", + "completed":"2016-07-06T04:01:27.964Z", + "new_balance":"3617.33", + "value":"-22.69" + } + }, + { + "id":"02e09bcc-5241-4d01-993d-60ed6f6d51e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T08:20:43.174Z", + "completed":"2016-07-06T08:20:43.174Z", + "new_balance":"3587.45", + "value":"-29.88" + } + }, + { + "id":"1b98277a-1020-4c37-9c9f-acae3f5f59ab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T06:24:27.174Z", + "completed":"2016-07-07T06:24:27.174Z", + "new_balance":"3548.28", + "value":"-39.17" + } + }, + { + "id":"46f654e2-0245-4312-ad31-e86508cf6933", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T04:55:44.891Z", + "completed":"2016-07-10T04:55:44.891Z", + "new_balance":"3495.10", + "value":"-53.18" + } + }, + { + "id":"2ccc6180-fc03-4c58-9e32-57cac9ed4b09", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T17:25:15.178Z", + "completed":"2016-07-10T17:25:15.178Z", + "new_balance":"3470.23", + "value":"-24.87" + } + }, + { + "id":"0fa0d3aa-9261-4a72-8b85-d52b6341da9c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T03:35:58.497Z", + "completed":"2016-07-12T03:35:58.497Z", + "new_balance":"3431.06", + "value":"-39.17" + } + }, + { + "id":"272da0b5-17fc-4dd4-aa1a-d2a09601e3ec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T14:10:24.867Z", + "completed":"2016-07-12T14:10:24.867Z", + "new_balance":"3406.50", + "value":"-24.56" + } + }, + { + "id":"d104bae2-3c92-406a-8ef7-166a11f254c9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:05:06.733Z", + "completed":"2016-07-12T19:05:06.733Z", + "new_balance":"3386.43", + "value":"-20.07" + } + }, + { + "id":"144fa232-fa21-42ac-9e8f-9c996be8c441", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T12:49:41.929Z", + "completed":"2016-07-15T12:49:41.929Z", + "new_balance":"3370.03", + "value":"-16.40" + } + }, + { + "id":"90b0e619-557a-40b2-a2c4-dde7e7b8722e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T15:22:46.447Z", + "completed":"2016-07-16T15:22:46.447Z", + "new_balance":"3363.88", + "value":"-6.15" + } + }, + { + "id":"dc56b8d7-137c-477d-b759-455378d52ec5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T19:01:23.937Z", + "completed":"2016-07-16T19:01:23.937Z", + "new_balance":"3310.70", + "value":"-53.18" + } + }, + { + "id":"383bca58-e153-445a-a154-ce13f0c694b7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T01:32:06.192Z", + "completed":"2016-07-17T01:32:06.192Z", + "new_balance":"3249.52", + "value":"-61.18" + } + }, + { + "id":"6d73db0b-05b0-440d-9430-d9cc9bb00a22", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T15:44:12.216Z", + "completed":"2016-07-17T15:44:12.216Z", + "new_balance":"3218.20", + "value":"-31.32" + } + }, + { + "id":"dbb35f43-7a6d-45ca-9d1b-7c54a466fdea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T06:36:21.242Z", + "completed":"2016-07-19T06:36:21.242Z", + "new_balance":"3187.80", + "value":"-30.40" + } + }, + { + "id":"518ad48c-a275-4f7a-b820-63d100c77b3f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T06:12:00.540Z", + "completed":"2016-07-20T06:12:00.540Z", + "new_balance":"3134.62", + "value":"-53.18" + } + }, + { + "id":"0b607c0e-c811-4a88-99bb-57c1054e0c5f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T23:18:10.323Z", + "completed":"2016-07-23T23:18:10.323Z", + "new_balance":"3118.79", + "value":"-15.83" + } + }, + { + "id":"2e9fed08-d1d3-4bcf-9967-1b12a82884ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T12:01:28.616Z", + "completed":"2016-07-26T12:01:28.616Z", + "new_balance":"3060.31", + "value":"-58.48" + } + }, + { + "id":"8f91a04b-ecc0-448d-9b4d-68726296f61a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T21:06:35.119Z", + "completed":"2016-07-27T21:06:35.119Z", + "new_balance":"4248.82", + "value":"1188.51" + } + }, + { + "id":"20648978-2341-43d1-956d-f486a9939091", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T06:02:22.058Z", + "completed":"2016-07-28T06:02:22.058Z", + "new_balance":"4214.39", + "value":"-34.43" + } + }, + { + "id":"581c0e57-1d26-4ad9-9599-6ffd07fad0aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T13:56:52.970Z", + "completed":"2016-07-30T13:56:52.970Z", + "new_balance":"4172.05", + "value":"-42.34" + } + }, + { + "id":"2ebb84c6-7946-42d2-97b4-a35f85517ca5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T13:48:21.129Z", + "completed":"2016-08-01T13:48:21.129Z", + "new_balance":"4110.18", + "value":"-61.87" + } + }, + { + "id":"8edb6b4f-3d9e-4137-aff1-2d4e45c1eecc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T00:01:55.871Z", + "completed":"2016-08-03T00:01:55.871Z", + "new_balance":"4075.75", + "value":"-34.43" + } + }, + { + "id":"b64039e3-6038-4a0a-9b27-cb3cbb90d4ee", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T02:37:16.789Z", + "completed":"2016-08-03T02:37:16.789Z", + "new_balance":"4051.19", + "value":"-24.56" + } + }, + { + "id":"7f2b62de-9b1e-42c9-8e84-c9c9471ff6ac", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T08:14:50.643Z", + "completed":"2016-08-03T08:14:50.643Z", + "new_balance":"3540.65", + "value":"-510.54" + } + }, + { + "id":"f63b5de6-50cb-4f9d-a58b-d8c61248aa10", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:07:47.497Z", + "completed":"2016-08-03T12:07:47.497Z", + "new_balance":"3466.72", + "value":"-73.93" + } + }, + { + "id":"86c6f7bb-5ea8-47bd-a9b1-e7fc966d9ab6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T19:56:10.794Z", + "completed":"2016-08-08T19:56:10.794Z", + "new_balance":"3413.54", + "value":"-53.18" + } + }, + { + "id":"eadc3672-2ef3-48a6-9a8c-c5c6bbeba630", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T19:56:18.206Z", + "completed":"2016-08-08T19:56:18.206Z", + "new_balance":"3369.56", + "value":"-43.98" + } + }, + { + "id":"ee495ee8-1b02-4204-8ee2-1df6082a929b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T20:30:21.654Z", + "completed":"2016-08-11T20:30:21.654Z", + "new_balance":"3380.45", + "value":"10.89" + } + }, + { + "id":"ee64d0af-71d3-4e09-ae3d-8b3246aceed4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T15:23:45.856Z", + "completed":"2016-08-13T15:23:45.856Z", + "new_balance":"3350.57", + "value":"-29.88" + } + }, + { + "id":"81e00f08-a8f6-4e43-bdfe-b61e303a72f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T14:13:55.825Z", + "completed":"2016-08-14T14:13:55.825Z", + "new_balance":"3322.72", + "value":"-27.85" + } + }, + { + "id":"5644f6dd-adfb-4e83-87fa-3565696ac1be", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T08:31:11.189Z", + "completed":"2016-08-17T08:31:11.189Z", + "new_balance":"3311.81", + "value":"-10.91" + } + }, + { + "id":"99effa6e-544b-4f89-9c73-72b3861988ce", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T01:57:45.823Z", + "completed":"2016-08-21T01:57:45.823Z", + "new_balance":"3270.68", + "value":"-41.13" + } + }, + { + "id":"086bb588-2818-4967-800f-99ff92aab02d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T04:41:09.410Z", + "completed":"2016-08-23T04:41:09.410Z", + "new_balance":"3217.50", + "value":"-53.18" + } + }, + { + "id":"8d584f67-4635-4611-a302-cfa61cf73f52", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T15:04:01.815Z", + "completed":"2016-08-23T15:04:01.815Z", + "new_balance":"3176.58", + "value":"-40.92" + } + }, + { + "id":"8da78945-bb07-453c-8877-c0e2c585e8f9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T22:38:51.959Z", + "completed":"2016-08-24T22:38:51.959Z", + "new_balance":"3165.67", + "value":"-10.91" + } + }, + { + "id":"70830537-dd1d-407c-b470-a7b5bb06e560", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T07:52:41.056Z", + "completed":"2016-08-27T07:52:41.056Z", + "new_balance":"4354.18", + "value":"1188.51" + } + }, + { + "id":"363d1059-e716-4feb-b5c9-5083ffb13736", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T09:42:09.466Z", + "completed":"2016-08-27T09:42:09.466Z", + "new_balance":"4295.70", + "value":"-58.48" + } + }, + { + "id":"9bbe9f32-6625-4202-9ec8-010e085ce45f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T13:04:06.119Z", + "completed":"2016-08-27T13:04:06.119Z", + "new_balance":"4278.96", + "value":"-16.74" + } + }, + { + "id":"00d51ac4-fce5-4427-8df2-b175e51177c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T22:46:15.506Z", + "completed":"2016-08-28T22:46:15.506Z", + "new_balance":"4244.53", + "value":"-34.43" + } + }, + { + "id":"610bd9ca-293e-4ae4-8a21-511bcb9a5348", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T15:06:47.103Z", + "completed":"2016-08-30T15:06:47.103Z", + "new_balance":"4202.19", + "value":"-42.34" + } + }, + { + "id":"53d9faa5-4f39-4e9f-b345-aa6d4cf4942e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T04:22:39.392Z", + "completed":"2016-09-01T04:22:39.392Z", + "new_balance":"4140.32", + "value":"-61.87" + } + }, + { + "id":"eb195522-b1d7-451f-a0ad-2d23d5095f3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T01:17:24.675Z", + "completed":"2016-09-03T01:17:24.675Z", + "new_balance":"4105.89", + "value":"-34.43" + } + }, + { + "id":"c7b496ac-872f-4d8a-983a-cf7fd8e8acdc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T05:55:08.026Z", + "completed":"2016-09-03T05:55:08.026Z", + "new_balance":"3595.35", + "value":"-510.54" + } + }, + { + "id":"99e93acb-0676-490f-8a82-27029c9750cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T11:38:03.429Z", + "completed":"2016-09-03T11:38:03.429Z", + "new_balance":"3570.79", + "value":"-24.56" + } + }, + { + "id":"7d27c0fb-7762-4bf3-8434-c1e853d864b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T13:59:10.550Z", + "completed":"2016-09-03T13:59:10.550Z", + "new_balance":"3496.86", + "value":"-73.93" + } + }, + { + "id":"1194531c-0a7f-4ec0-a55f-b5492e9437ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T03:39:08.402Z", + "completed":"2016-09-05T03:39:08.402Z", + "new_balance":"3443.68", + "value":"-53.18" + } + }, + { + "id":"ef0f74eb-ca64-41ad-bf6b-7ef7a54abe43", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T09:00:24.794Z", + "completed":"2016-09-05T09:00:24.794Z", + "new_balance":"3395.02", + "value":"-48.66" + } + }, + { + "id":"9b68a79b-eaa5-493f-88c6-3cbda444d6ca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T20:51:41.216Z", + "completed":"2016-09-07T20:51:41.216Z", + "new_balance":"3381.35", + "value":"-13.67" + } + }, + { + "id":"f5639893-8d65-4772-9786-b58ac2a92770", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T12:14:26.416Z", + "completed":"2016-09-09T12:14:26.416Z", + "new_balance":"3328.17", + "value":"-53.18" + } + }, + { + "id":"93cf50c4-c9e2-4420-9434-fd77d1e0900e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T02:17:01.585Z", + "completed":"2016-09-11T02:17:01.585Z", + "new_balance":"3317.17", + "value":"-11.00" + } + }, + { + "id":"daa310ac-0292-4e56-8b04-3ee0f03b190f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T06:01:28.701Z", + "completed":"2016-09-13T06:01:28.701Z", + "new_balance":"3259.49", + "value":"-57.68" + } + }, + { + "id":"5724fd3e-faef-4b7a-adc4-11db18ddafde", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T07:01:33.784Z", + "completed":"2016-09-14T07:01:33.784Z", + "new_balance":"3247.56", + "value":"-11.93" + } + }, + { + "id":"77793949-97aa-4b73-aa76-8b6685f5c9ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:21:00.925Z", + "completed":"2016-09-14T18:21:00.925Z", + "new_balance":"3310.92", + "value":"63.36" + } + }, + { + "id":"85cb8ac7-4abb-48f7-84ba-020de57cd30d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T16:29:48.500Z", + "completed":"2016-09-15T16:29:48.500Z", + "new_balance":"3268.58", + "value":"-42.34" + } + }, + { + "id":"0afc1997-011d-44d1-b7e2-c2d75581c547", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T00:52:34.767Z", + "completed":"2016-09-26T00:52:34.767Z", + "new_balance":"3243.21", + "value":"-25.37" + } + }, + { + "id":"cb58b366-8c63-4a77-8f79-8792bd4a9c0c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T18:05:32.152Z", + "completed":"2016-09-26T18:05:32.152Z", + "new_balance":"3196.28", + "value":"-46.93" + } + }, + { + "id":"5de74456-1bca-4c8e-bdaf-f30159c3a134", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T20:11:45.692Z", + "completed":"2016-09-26T20:11:45.692Z", + "new_balance":"3169.44", + "value":"-26.84" + } + }, + { + "id":"5f5914d7-3c97-47c5-bbea-6add07adae2c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T11:25:48.925Z", + "completed":"2016-09-27T11:25:48.925Z", + "new_balance":"4357.95", + "value":"1188.51" + } + }, + { + "id":"18680fc4-e22a-4579-a608-934a5c2ab880", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T15:09:19.792Z", + "completed":"2016-09-27T15:09:19.792Z", + "new_balance":"4304.77", + "value":"-53.18" + } + }, + { + "id":"f3585d86-9a0c-4047-8c56-7b8b92e86921", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T23:44:59.872Z", + "completed":"2016-09-27T23:44:59.872Z", + "new_balance":"4238.19", + "value":"-66.58" + } + }, + { + "id":"ddb8f6de-49a8-4fdc-91c3-1ff2db98e0a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T00:03:25.449Z", + "completed":"2016-09-28T00:03:25.449Z", + "new_balance":"4203.76", + "value":"-34.43" + } + }, + { + "id":"d43c4f9f-b558-4dd9-9bbd-227e134dbc09", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T22:17:31.123Z", + "completed":"2016-09-30T22:17:31.123Z", + "new_balance":"4161.42", + "value":"-42.34" + } + }, + { + "id":"c9a6e1e5-633d-494e-a32c-aef28f47800f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T05:30:32.316Z", + "completed":"2016-10-01T05:30:32.316Z", + "new_balance":"4136.86", + "value":"-24.56" + } + }, + { + "id":"6b92f67f-8abb-4684-a6b0-7623f0398be2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T10:38:27.590Z", + "completed":"2016-10-01T10:38:27.590Z", + "new_balance":"4074.99", + "value":"-61.87" + } + }, + { + "id":"f44a80c7-0518-4ce5-b426-bb9e47588741", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T12:33:50.642Z", + "completed":"2016-10-01T12:33:50.642Z", + "new_balance":"3564.45", + "value":"-510.54" + } + }, + { + "id":"b5d64d26-4253-4725-9cdc-3beda02e897f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T13:06:37.304Z", + "completed":"2016-10-01T13:06:37.304Z", + "new_balance":"3530.02", + "value":"-34.43" + } + }, + { + "id":"58efbf68-e65a-495f-a3db-babc6535f943", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T16:39:45.323Z", + "completed":"2016-10-01T16:39:45.323Z", + "new_balance":"3456.09", + "value":"-73.93" + } + }, + { + "id":"c3d89007-57b1-403d-ac63-c44b93ab08e2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T01:27:35.770Z", + "completed":"2016-10-05T01:27:35.770Z", + "new_balance":"3402.91", + "value":"-53.18" + } + }, + { + "id":"21ed59c7-1c9d-454e-ab9a-dce3039a7a98", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T04:18:14.450Z", + "completed":"2016-10-05T04:18:14.450Z", + "new_balance":"3380.22", + "value":"-22.69" + } + }, + { + "id":"d58e07e5-2ab3-4e99-a398-56854263e643", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:07:33.307Z", + "completed":"2016-10-05T12:07:33.307Z", + "new_balance":"3336.24", + "value":"-43.98" + } + }, + { + "id":"94aa6ca4-2561-4446-8785-70f3dd35d85f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T19:00:18.823Z", + "completed":"2016-10-05T19:00:18.823Z", + "new_balance":"3323.23", + "value":"-13.01" + } + }, + { + "id":"17e757bd-5617-46c7-8c95-de17106a5ba2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T23:42:47.772Z", + "completed":"2016-10-07T23:42:47.772Z", + "new_balance":"3293.35", + "value":"-29.88" + } + }, + { + "id":"db2d177e-dcf7-4deb-bcca-2dac0db59d44", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T18:02:39.606Z", + "completed":"2016-10-09T18:02:39.606Z", + "new_balance":"3240.17", + "value":"-53.18" + } + }, + { + "id":"fd699331-4c97-4030-b12e-bd53dadf1061", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T23:49:06.999Z", + "completed":"2016-10-09T23:49:06.999Z", + "new_balance":"3215.30", + "value":"-24.87" + } + }, + { + "id":"268d4c5e-1d68-415f-a82b-3c3507fede34", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T05:28:16.833Z", + "completed":"2016-10-10T05:28:16.833Z", + "new_balance":"3195.23", + "value":"-20.07" + } + }, + { + "id":"59604021-4c8b-4f03-bde2-5d6d24ee108d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T12:32:26.530Z", + "completed":"2016-10-10T12:32:26.530Z", + "new_balance":"3170.67", + "value":"-24.56" + } + }, + { + "id":"7463c4bf-68f9-44bb-b3a5-4834cf05ed98", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T18:27:29.251Z", + "completed":"2016-10-10T18:27:29.251Z", + "new_balance":"3154.27", + "value":"-16.40" + } + }, + { + "id":"dd3d28e6-217a-4f45-b1e0-40cb3abcb3ff", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T20:47:36.296Z", + "completed":"2016-10-10T20:47:36.296Z", + "new_balance":"3115.10", + "value":"-39.17" + } + }, + { + "id":"977938a7-fac7-48c2-af62-c6d91597b3fa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T04:21:16.831Z", + "completed":"2016-10-11T04:21:16.831Z", + "new_balance":"3061.92", + "value":"-53.18" + } + }, + { + "id":"3cdab0d8-73f2-456f-9179-95fb4659cc5b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T10:46:43.318Z", + "completed":"2016-10-11T10:46:43.318Z", + "new_balance":"3031.52", + "value":"-30.40" + } + }, + { + "id":"e236def1-b7ae-4703-b9e1-b4e08345ea0a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T14:08:31.447Z", + "completed":"2016-10-11T14:08:31.447Z", + "new_balance":"2970.34", + "value":"-61.18" + } + }, + { + "id":"dbbf8583-68a6-49b0-863d-da57f0e8f190", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T16:03:02.088Z", + "completed":"2016-10-11T16:03:02.088Z", + "new_balance":"2939.02", + "value":"-31.32" + } + }, + { + "id":"a6478caa-f283-4b4b-bb2c-23b76786dd2e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T19:43:22.360Z", + "completed":"2016-10-11T19:43:22.360Z", + "new_balance":"2932.87", + "value":"-6.15" + } + }, + { + "id":"5258ae89-b6f8-46a9-ba7d-dde7bd2362f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T18:08:41.620Z", + "completed":"2016-10-21T18:08:41.620Z", + "new_balance":"2879.69", + "value":"-53.18" + } + }, + { + "id":"f46e5b91-9da2-443b-be58-808ee2c6ab44", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T09:21:17.133Z", + "completed":"2016-10-23T09:21:17.133Z", + "new_balance":"2863.86", + "value":"-15.83" + } + }, + { + "id":"d57b9762-125a-48c4-a3f6-ff60895c05e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T06:11:30.981Z", + "completed":"2016-10-29T06:11:30.981Z", + "new_balance":"4052.37", + "value":"1188.51" + } + }, + { + "id":"5eab6c0a-00b0-43b8-b118-9eccb38dc9ca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T06:47:39.171Z", + "completed":"2016-10-29T06:47:39.171Z", + "new_balance":"3993.89", + "value":"-58.48" + } + }, + { + "id":"6dc3f570-11bf-4561-b963-962499bb02cb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T19:26:31.346Z", + "completed":"2016-10-29T19:26:31.346Z", + "new_balance":"3959.46", + "value":"-34.43" + } + }, + { + "id":"9a83d787-c895-47c0-8fc8-828c01a6e1b1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T19:57:38.377Z", + "completed":"2016-10-30T19:57:38.377Z", + "new_balance":"3917.12", + "value":"-42.34" + } + }, + { + "id":"a896cec7-160f-4b37-a46d-d05076449835", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T00:17:29.320Z", + "completed":"2016-11-02T00:17:29.320Z", + "new_balance":"3892.56", + "value":"-24.56" + } + }, + { + "id":"c25a10d3-af6f-4286-96f2-32cf276f2075", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T12:30:44.115Z", + "completed":"2016-11-02T12:30:44.115Z", + "new_balance":"3818.63", + "value":"-73.93" + } + }, + { + "id":"4bbd082a-b9fb-4d25-8f3c-f0f10e885417", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T14:19:11.211Z", + "completed":"2016-11-02T14:19:11.211Z", + "new_balance":"3756.76", + "value":"-61.87" + } + }, + { + "id":"5a85509a-d3e6-4c6e-8652-114708df8da7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T19:47:39.176Z", + "completed":"2016-11-02T19:47:39.176Z", + "new_balance":"3246.22", + "value":"-510.54" + } + }, + { + "id":"bec254e0-4c3c-4023-a264-cdf20140de47", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T16:40:08.847Z", + "completed":"2016-11-06T16:40:08.847Z", + "new_balance":"3202.24", + "value":"-43.98" + } + }, + { + "id":"c5d1c176-49ee-4b48-bacf-e377e091bdab", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T05:34:10.648Z", + "completed":"2016-11-07T05:34:10.648Z", + "new_balance":"3161.11", + "value":"-41.13" + } + }, + { + "id":"a7e040c2-03af-4683-ae16-8b108a2774ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T12:39:40.295Z", + "completed":"2016-11-07T12:39:40.295Z", + "new_balance":"3150.20", + "value":"-10.91" + } + }, + { + "id":"42e9dc25-7cdb-42f1-849e-d3dad8c8244a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T15:36:05.702Z", + "completed":"2016-11-07T15:36:05.702Z", + "new_balance":"3122.35", + "value":"-27.85" + } + }, + { + "id":"e1013cf4-8da8-42b0-b9e0-69824bd45c68", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T17:34:39.001Z", + "completed":"2016-11-07T17:34:39.001Z", + "new_balance":"3092.47", + "value":"-29.88" + } + }, + { + "id":"d15c81ef-0ffe-4849-9c01-2d7dd662a401", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T09:47:18.803Z", + "completed":"2016-11-08T09:47:18.803Z", + "new_balance":"3051.55", + "value":"-40.92" + } + }, + { + "id":"e5058994-5181-4a11-bf6a-ec1de2e62ee4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T14:53:36.163Z", + "completed":"2016-11-09T14:53:36.163Z", + "new_balance":"3017.12", + "value":"-34.43" + } + }, + { + "id":"c63eb40e-54f0-4c41-b213-ddace9629c9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T07:25:58.174Z", + "completed":"2016-11-13T07:25:58.174Z", + "new_balance":"2963.94", + "value":"-53.18" + } + }, + { + "id":"7096b3e3-878c-46e7-8e16-971a7774cd1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T01:53:28.617Z", + "completed":"2016-11-26T01:53:28.617Z", + "new_balance":"2910.76", + "value":"-53.18" + } + }, + { + "id":"f6b5d2a8-e043-4eb4-aae4-2fd675fcf1b8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T07:37:29.580Z", + "completed":"2016-11-26T07:37:29.580Z", + "new_balance":"2899.85", + "value":"-10.91" + } + }, + { + "id":"e9236b68-dc7a-46b4-b1af-13771f48b085", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T13:09:19.592Z", + "completed":"2016-11-27T13:09:19.592Z", + "new_balance":"2841.37", + "value":"-58.48" + } + }, + { + "id":"c5a27c18-e30b-420f-8484-7143e943d092", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T15:17:53.163Z", + "completed":"2016-11-27T15:17:53.163Z", + "new_balance":"2824.63", + "value":"-16.74" + } + }, + { + "id":"dde36db0-004f-4035-b02a-0d5c7e3952e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T02:36:12.993Z", + "completed":"2016-11-30T02:36:12.993Z", + "new_balance":"4013.14", + "value":"1188.51" + } + }, + { + "id":"82284946-7e99-471a-b4c3-fd8be4af5eb5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T12:01:42.608Z", + "completed":"2016-11-30T12:01:42.608Z", + "new_balance":"3970.80", + "value":"-42.34" + } + }, + { + "id":"53bfa4e4-a0e3-40de-8ddb-301bc2398f9e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T13:41:29.316Z", + "completed":"2016-11-30T13:41:29.316Z", + "new_balance":"3936.37", + "value":"-34.43" + } + }, + { + "id":"2c0bc0c9-6aa2-43ce-8af8-b59a33eb620e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T02:42:25.091Z", + "completed":"2016-12-01T02:42:25.091Z", + "new_balance":"3911.81", + "value":"-24.56" + } + }, + { + "id":"681fc900-7f81-4fdf-a49e-3572ae016a32", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T03:16:26.330Z", + "completed":"2016-12-01T03:16:26.330Z", + "new_balance":"3858.63", + "value":"-53.18" + } + }, + { + "id":"5bd62d1d-d3d7-4664-bad6-86c3682ef466", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T06:19:08.950Z", + "completed":"2016-12-01T06:19:08.950Z", + "new_balance":"3824.20", + "value":"-34.43" + } + }, + { + "id":"0e91ae3b-685a-4d79-bde5-a45ccc1ffd6f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T13:45:08.650Z", + "completed":"2016-12-01T13:45:08.650Z", + "new_balance":"3771.02", + "value":"-53.18" + } + }, + { + "id":"76dc77df-3f51-4e56-a997-f182d2e4f9fa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T16:27:02.944Z", + "completed":"2016-12-01T16:27:02.944Z", + "new_balance":"3260.48", + "value":"-510.54" + } + }, + { + "id":"36cdb861-7a3c-4d86-87ae-3d88761c78d8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:57:29.431Z", + "completed":"2016-12-01T17:57:29.431Z", + "new_balance":"3246.81", + "value":"-13.67" + } + }, + { + "id":"9f8aa0af-1552-4483-b3c7-da97688957d5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T19:45:42.976Z", + "completed":"2016-12-01T19:45:42.976Z", + "new_balance":"3172.88", + "value":"-73.93" + } + }, + { + "id":"31353602-6b69-48dc-84bf-5ec8b722d718", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T21:04:42.746Z", + "completed":"2016-12-01T21:04:42.746Z", + "new_balance":"3124.22", + "value":"-48.66" + } + }, + { + "id":"656d1b8b-3f73-49ca-88cf-cc1c15ff8a9e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T23:10:17.826Z", + "completed":"2016-12-01T23:10:17.826Z", + "new_balance":"3062.35", + "value":"-61.87" + } + }, + { + "id":"02b79676-165a-4c61-b150-7f03e02830ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T06:37:23.297Z", + "completed":"2016-12-02T06:37:23.297Z", + "new_balance":"3051.35", + "value":"-11.00" + } + }, + { + "id":"c8242da0-bf4a-4c7f-97ec-eae589159800", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T13:52:18.675Z", + "completed":"2016-12-02T13:52:18.675Z", + "new_balance":"3039.42", + "value":"-11.93" + } + }, + { + "id":"32be3f94-97db-41c0-ac7c-c870ea1ca313", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T23:16:38.059Z", + "completed":"2016-12-02T23:16:38.059Z", + "new_balance":"2981.74", + "value":"-57.68" + } + }, + { + "id":"43692cca-fc2b-4fc4-bc8d-045def830740", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T00:45:35.752Z", + "completed":"2016-12-04T00:45:35.752Z", + "new_balance":"2934.81", + "value":"-46.93" + } + }, + { + "id":"0777a7ac-d7ed-4737-8da7-793e1d5ce5da", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:25:10.650Z", + "completed":"2016-12-04T01:25:10.650Z", + "new_balance":"2909.44", + "value":"-25.37" + } + }, + { + "id":"9cc85af2-9f73-4944-b42d-c2cf23012a4a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T20:33:24.956Z", + "completed":"2016-12-04T20:33:24.956Z", + "new_balance":"2867.10", + "value":"-42.34" + } + }, + { + "id":"d6a974d1-dac8-4da1-89e2-7ed57f207e0c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:42:21.558Z", + "completed":"2016-12-05T06:42:21.558Z", + "new_balance":"2800.52", + "value":"-66.58" + } + }, + { + "id":"7667a6c8-b768-4e39-a9b9-4743dbe25278", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T06:45:57.899Z", + "completed":"2016-12-05T06:45:57.899Z", + "new_balance":"2773.68", + "value":"-26.84" + } + }, + { + "id":"10e5f85a-870a-4618-8e6c-6b9086c965b8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T17:26:15.971Z", + "completed":"2016-12-18T17:26:15.971Z", + "new_balance":"2720.50", + "value":"-53.18" + } + }, + { + "id":"10171d2f-91f6-4578-bc2d-e7fc407e2368", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T00:23:15.298Z", + "completed":"2016-12-30T00:23:15.298Z", + "new_balance":"2678.16", + "value":"-42.34" + } + }, + { + "id":"5c8629ba-6363-41a2-a34f-6b4484984de0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T15:32:33.708Z", + "completed":"2016-12-30T15:32:33.708Z", + "new_balance":"3866.67", + "value":"1188.51" + } + }, + { + "id":"75faaf3b-9195-4cee-b260-25d165257655", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T16:14:47.499Z", + "completed":"2016-12-30T16:14:47.499Z", + "new_balance":"3832.24", + "value":"-34.43" + } + }, + { + "id":"73b1d313-45de-49bc-8897-241364854037", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T18:26:14.435Z", + "completed":"2016-12-30T18:26:14.435Z", + "new_balance":"3790.71", + "value":"-41.53" + } + }, + { + "id":"aca0efcc-587c-4902-9705-e52614141edf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T16:42:02.283Z", + "completed":"2017-01-01T16:42:02.283Z", + "new_balance":"3728.84", + "value":"-61.87" + } + }, + { + "id":"d547d615-22a0-40d6-a9d2-0c1ee236b176", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T23:38:24.782Z", + "completed":"2017-01-01T23:38:24.782Z", + "new_balance":"3666.97", + "value":"-61.87" + } + }, + { + "id":"ff092e43-816a-451c-9dec-7890ef31ab0f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T00:45:46.097Z", + "completed":"2017-01-03T00:45:46.097Z", + "new_balance":"3593.04", + "value":"-73.93" + } + }, + { + "id":"cddf9bba-47eb-4e27-b48f-5b80426d48f0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T09:16:09.364Z", + "completed":"2017-01-03T09:16:09.364Z", + "new_balance":"3558.61", + "value":"-34.43" + } + }, + { + "id":"a6967463-7823-4240-a457-4cc5b3646276", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T14:34:01.840Z", + "completed":"2017-01-03T14:34:01.840Z", + "new_balance":"3048.07", + "value":"-510.54" + } + }, + { + "id":"427b5482-486e-4185-9b96-f068b9b829c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T16:21:42.393Z", + "completed":"2017-01-03T16:21:42.393Z", + "new_balance":"3023.51", + "value":"-24.56" + } + }, + { + "id":"850a3471-1fc7-46b5-b72b-b720cef600a2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T09:06:41.819Z", + "completed":"2017-01-05T09:06:41.819Z", + "new_balance":"3010.50", + "value":"-13.01" + } + }, + { + "id":"854a2b83-5f6c-462c-9624-87ca61f67bdf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T18:35:40.789Z", + "completed":"2017-01-05T18:35:40.789Z", + "new_balance":"2966.52", + "value":"-43.98" + } + }, + { + "id":"2b946faa-92f9-41eb-b2ee-4ffab42afe12", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T20:28:16.635Z", + "completed":"2017-01-05T20:28:16.635Z", + "new_balance":"2913.34", + "value":"-53.18" + } + }, + { + "id":"3226637b-bbe0-4fb3-9871-f2b96a92554c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T14:12:27.931Z", + "completed":"2017-01-06T14:12:27.931Z", + "new_balance":"2890.65", + "value":"-22.69" + } + }, + { + "id":"cf85c1fa-6ec3-43c6-a97e-8ae1c1fcf07f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T16:06:51.532Z", + "completed":"2017-01-06T16:06:51.532Z", + "new_balance":"2860.77", + "value":"-29.88" + } + }, + { + "id":"6be83727-b322-4feb-9ddb-34cd646fda0b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T10:55:52.601Z", + "completed":"2017-01-07T10:55:52.601Z", + "new_balance":"2821.60", + "value":"-39.17" + } + }, + { + "id":"b54f99e0-ff18-46f5-97f4-dfba44a859c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T19:22:35.508Z", + "completed":"2017-01-10T19:22:35.508Z", + "new_balance":"2796.73", + "value":"-24.87" + } + }, + { + "id":"fce5700e-6d50-482c-8bd3-da8ef01b452c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T19:27:54.103Z", + "completed":"2017-01-10T19:27:54.103Z", + "new_balance":"2743.55", + "value":"-53.18" + } + }, + { + "id":"48f692ef-902d-4f77-9777-f6cd198f8a30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T06:57:43.371Z", + "completed":"2017-01-12T06:57:43.371Z", + "new_balance":"2723.48", + "value":"-20.07" + } + }, + { + "id":"36e82da4-54c6-4cba-a514-a2574eb249bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T10:17:52.521Z", + "completed":"2017-01-12T10:17:52.521Z", + "new_balance":"2698.92", + "value":"-24.56" + } + }, + { + "id":"e6226982-66ed-456a-b29c-338453c27e1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T18:23:31.356Z", + "completed":"2017-01-12T18:23:31.356Z", + "new_balance":"2659.75", + "value":"-39.17" + } + }, + { + "id":"63c63b91-d052-4ab4-9a0e-88c1b0b73a3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T00:43:22.941Z", + "completed":"2017-01-15T00:43:22.941Z", + "new_balance":"2643.35", + "value":"-16.40" + } + }, + { + "id":"15a3b899-13a1-4858-b433-3d9a8f12bd3e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T04:30:03.515Z", + "completed":"2017-01-16T04:30:03.515Z", + "new_balance":"2637.20", + "value":"-6.15" + } + }, + { + "id":"0fde81cc-5376-4381-b5e9-0218b47cc769", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T19:54:53.052Z", + "completed":"2017-01-16T19:54:53.052Z", + "new_balance":"2584.02", + "value":"-53.18" + } + }, + { + "id":"62dc93d5-ba97-4c81-8243-6ddeb1f48777", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T05:05:25.743Z", + "completed":"2017-01-17T05:05:25.743Z", + "new_balance":"2552.70", + "value":"-31.32" + } + }, + { + "id":"20e8cb1a-d62c-4d50-9e9b-6b17f36f5b55", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T21:00:34.205Z", + "completed":"2017-01-17T21:00:34.205Z", + "new_balance":"2491.52", + "value":"-61.18" + } + }, + { + "id":"a9191c93-b531-4294-95b0-58cdfb1ce337", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T19:26:08.169Z", + "completed":"2017-01-19T19:26:08.169Z", + "new_balance":"2461.12", + "value":"-30.40" + } + }, + { + "id":"b1fa848a-671c-4682-96d1-0755cfba53d8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T19:49:07.105Z", + "completed":"2017-01-20T19:49:07.105Z", + "new_balance":"2407.94", + "value":"-53.18" + } + }, + { + "id":"8c56cbd7-a5e8-428e-a65c-a6df1a883683", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T21:09:06.190Z", + "completed":"2017-01-23T21:09:06.190Z", + "new_balance":"2392.11", + "value":"-15.83" + } + }, + { + "id":"15397e8b-0f22-44c3-82a5-b9c0d68ff4a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T06:37:33.982Z", + "completed":"2017-01-26T06:37:33.982Z", + "new_balance":"2333.63", + "value":"-58.48" + } + }, + { + "id":"996dc695-445f-4f78-b2ca-025d4660454f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T12:00:22.943Z", + "completed":"2017-01-27T12:00:22.943Z", + "new_balance":"3522.14", + "value":"1188.51" + } + }, + { + "id":"099dc0d0-7a02-4397-8dae-405e7744a618", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T09:59:36.293Z", + "completed":"2017-01-28T09:59:36.293Z", + "new_balance":"3487.71", + "value":"-34.43" + } + }, + { + "id":"5eb298be-cdab-46cb-ad61-3a62637be3ea", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T14:32:20.975Z", + "completed":"2017-01-30T14:32:20.975Z", + "new_balance":"3445.37", + "value":"-42.34" + } + }, + { + "id":"49a570e1-5f68-495c-b2ae-579690d5f2f4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T01:31:17.779Z", + "completed":"2017-02-03T01:31:17.779Z", + "new_balance":"3410.94", + "value":"-34.43" + } + }, + { + "id":"2cad1334-9438-4594-9efb-24bcb8d6fb85", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T14:32:00.069Z", + "completed":"2017-02-03T14:32:00.069Z", + "new_balance":"3337.01", + "value":"-73.93" + } + }, + { + "id":"99e1a5f7-f834-4da8-a84a-3dd374ebb200", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T16:09:30.256Z", + "completed":"2017-02-03T16:09:30.256Z", + "new_balance":"3312.45", + "value":"-24.56" + } + }, + { + "id":"1b21bbf4-6b0f-4059-9b48-777e1feeabcd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T18:50:42.909Z", + "completed":"2017-02-03T18:50:42.909Z", + "new_balance":"2801.91", + "value":"-510.54" + } + }, + { + "id":"ae2c61d5-49cd-4a98-b31b-e4916862ddb1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T03:29:23.419Z", + "completed":"2017-02-08T03:29:23.419Z", + "new_balance":"2748.73", + "value":"-53.18" + } + }, + { + "id":"13986a64-8899-42b6-aacb-f08e547e3a71", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T07:50:58.061Z", + "completed":"2017-02-08T07:50:58.061Z", + "new_balance":"2704.75", + "value":"-43.98" + } + }, + { + "id":"52aaca82-74da-4ca5-b2ba-9937161a9ec6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T00:07:05.807Z", + "completed":"2017-02-11T00:07:05.807Z", + "new_balance":"2715.64", + "value":"10.89" + } + }, + { + "id":"1cb9f52f-e9ae-41db-8f57-91118541bdd6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T22:11:00.388Z", + "completed":"2017-02-13T22:11:00.388Z", + "new_balance":"2685.76", + "value":"-29.88" + } + }, + { + "id":"7f4278f9-7dc3-4fba-a7cf-8d2537b58927", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T21:50:40.503Z", + "completed":"2017-02-14T21:50:40.503Z", + "new_balance":"2657.91", + "value":"-27.85" + } + }, + { + "id":"64b7f7b0-f85a-4f56-9046-b5b22ed80d1a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T11:35:38.172Z", + "completed":"2017-02-17T11:35:38.172Z", + "new_balance":"2647.00", + "value":"-10.91" + } + }, + { + "id":"add850bb-876a-44c5-b332-8f6933aad4e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T06:44:34.838Z", + "completed":"2017-02-21T06:44:34.838Z", + "new_balance":"2605.87", + "value":"-41.13" + } + }, + { + "id":"f6e47bcc-d70b-4c09-a848-5da68d4915f7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T03:45:58.278Z", + "completed":"2017-02-23T03:45:58.278Z", + "new_balance":"2552.69", + "value":"-53.18" + } + }, + { + "id":"7a7c1877-42af-40d7-9012-b853eeff6205", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T09:40:58.039Z", + "completed":"2017-02-23T09:40:58.039Z", + "new_balance":"2511.77", + "value":"-40.92" + } + }, + { + "id":"657c7a8b-5344-4124-aba0-5353d7b13adc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T08:31:49.036Z", + "completed":"2017-02-24T08:31:49.036Z", + "new_balance":"2500.86", + "value":"-10.91" + } + }, + { + "id":"1b767ba6-d95b-44e6-8f76-6e9f887a0bc1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T19:52:40.567Z", + "completed":"2017-02-27T19:52:40.567Z", + "new_balance":"3689.37", + "value":"1188.51" + } + }, + { + "id":"adad5051-0f79-411a-a1f0-546f7eaa6f73", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T20:07:25.263Z", + "completed":"2017-02-27T20:07:25.263Z", + "new_balance":"3630.89", + "value":"-58.48" + } + }, + { + "id":"9bb0fa5b-a2f4-44dc-a442-39340e9aa9a7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T22:51:09.812Z", + "completed":"2017-02-27T22:51:09.812Z", + "new_balance":"3614.15", + "value":"-16.74" + } + }, + { + "id":"57a1a5f3-e333-487b-9b5f-7fb93938dd30", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T04:20:31.846Z", + "completed":"2017-02-28T04:20:31.846Z", + "new_balance":"3579.72", + "value":"-34.43" + } + }, + { + "id":"b7286ff5-150a-47cd-be3b-f0ba6c3f59fc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T07:27:29.498Z", + "completed":"2017-02-28T07:27:29.498Z", + "new_balance":"3537.38", + "value":"-42.34" + } + }, + { + "id":"5a27a60d-c9f7-40a7-a5d0-2e1328345b41", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T16:28:04.746Z", + "completed":"2017-03-01T16:28:04.746Z", + "new_balance":"3475.51", + "value":"-61.87" + } + }, + { + "id":"11a54bf8-4539-4283-b622-d30215132b63", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T07:46:34.198Z", + "completed":"2017-03-03T07:46:34.198Z", + "new_balance":"3441.08", + "value":"-34.43" + } + }, + { + "id":"29394bce-a247-456f-b776-42ab9281d0f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T08:36:06.572Z", + "completed":"2017-03-03T08:36:06.572Z", + "new_balance":"3416.52", + "value":"-24.56" + } + }, + { + "id":"afb4ed98-1aa6-48e9-b9f1-572d87fc3092", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T16:58:22.328Z", + "completed":"2017-03-03T16:58:22.328Z", + "new_balance":"3342.59", + "value":"-73.93" + } + }, + { + "id":"13b7cbf6-fccf-457a-8f8e-dfd014ba46f1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T21:03:24.957Z", + "completed":"2017-03-03T21:03:24.957Z", + "new_balance":"2832.05", + "value":"-510.54" + } + }, + { + "id":"d37d2bef-9a31-4bc3-9a46-e51362ab4570", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T11:02:31.785Z", + "completed":"2017-03-05T11:02:31.785Z", + "new_balance":"2783.39", + "value":"-48.66" + } + }, + { + "id":"dda3799f-4d2c-4229-8ace-57928d360253", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T21:06:25.799Z", + "completed":"2017-03-05T21:06:25.799Z", + "new_balance":"2730.21", + "value":"-53.18" + } + }, + { + "id":"0cf31249-248b-42f0-a423-665a91f4efc6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T23:19:30.215Z", + "completed":"2017-03-07T23:19:30.215Z", + "new_balance":"2716.54", + "value":"-13.67" + } + }, + { + "id":"cebf0784-fe21-4315-8860-d1a74a690073", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:24:37.106Z", + "completed":"2017-03-09T10:24:37.106Z", + "new_balance":"2663.36", + "value":"-53.18" + } + }, + { + "id":"53762428-586e-49a7-9cca-ca0203f6fff3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T15:01:53.310Z", + "completed":"2017-03-11T15:01:53.310Z", + "new_balance":"2652.36", + "value":"-11.00" + } + }, + { + "id":"a3620eb0-4764-415a-8826-69be4ede1502", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T11:52:35.228Z", + "completed":"2017-03-13T11:52:35.228Z", + "new_balance":"2594.68", + "value":"-57.68" + } + }, + { + "id":"e2004bc1-2bda-4fce-b44b-0f9e9ff54803", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T05:40:22.399Z", + "completed":"2017-03-14T05:40:22.399Z", + "new_balance":"2658.04", + "value":"63.36" + } + }, + { + "id":"f67c48bd-0347-40c2-a120-ee6be6fbc446", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T11:29:59.105Z", + "completed":"2017-03-14T11:29:59.105Z", + "new_balance":"2646.11", + "value":"-11.93" + } + }, + { + "id":"fa9ffa28-5e2f-4fa0-b4bf-e41e24f0786e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T18:58:57.705Z", + "completed":"2017-03-15T18:58:57.705Z", + "new_balance":"2603.77", + "value":"-42.34" + } + }, + { + "id":"5a1f49a6-f89d-447a-9c66-bc4939e02222", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T13:48:33.071Z", + "completed":"2017-03-26T13:48:33.071Z", + "new_balance":"2576.93", + "value":"-26.84" + } + }, + { + "id":"70e213fa-a43c-48f6-bea3-afcb16b48535", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T14:26:53.363Z", + "completed":"2017-03-26T14:26:53.363Z", + "new_balance":"2530.00", + "value":"-46.93" + } + }, + { + "id":"bb558c0d-46d1-4bf7-87b5-d32bf45f4512", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T00:11:01.390Z", + "completed":"2017-03-27T00:11:01.390Z", + "new_balance":"2504.63", + "value":"-25.37" + } + }, + { + "id":"eead4dfd-f594-47fc-8d95-b3331cf2582b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T00:29:09.065Z", + "completed":"2017-03-27T00:29:09.065Z", + "new_balance":"3693.14", + "value":"1188.51" + } + }, + { + "id":"fdbef515-e893-4b39-90c1-4065029553c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T01:14:24.741Z", + "completed":"2017-03-27T01:14:24.741Z", + "new_balance":"3639.96", + "value":"-53.18" + } + }, + { + "id":"bee043b6-9fcd-4469-bf54-ad2cb2f5fedb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T20:55:01.803Z", + "completed":"2017-03-27T20:55:01.803Z", + "new_balance":"3573.38", + "value":"-66.58" + } + }, + { + "id":"167a60b0-166f-4ae2-bb13-b3038f1dd0d6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T15:32:15.120Z", + "completed":"2017-03-28T15:32:15.120Z", + "new_balance":"3538.95", + "value":"-34.43" + } + }, + { + "id":"0efb189e-1fd0-469f-b569-d447569a062d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T11:37:30.035Z", + "completed":"2017-03-30T11:37:30.035Z", + "new_balance":"3496.61", + "value":"-42.34" + } + }, + { + "id":"0973b1bd-e79a-48c7-89ca-b88dff38ac07", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T09:01:24.732Z", + "completed":"2017-04-01T09:01:24.732Z", + "new_balance":"2986.07", + "value":"-510.54" + } + }, + { + "id":"91b51226-48e7-4285-8d03-b34df6f62946", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T09:35:16.925Z", + "completed":"2017-04-01T09:35:16.925Z", + "new_balance":"2961.51", + "value":"-24.56" + } + }, + { + "id":"426f3072-c02b-4546-92d6-6c90dd1d22fc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T13:12:48.955Z", + "completed":"2017-04-01T13:12:48.955Z", + "new_balance":"2899.64", + "value":"-61.87" + } + }, + { + "id":"8adb0e1b-4647-42ee-9bb9-5a6e125a037d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T18:43:50.281Z", + "completed":"2017-04-01T18:43:50.281Z", + "new_balance":"2865.21", + "value":"-34.43" + } + }, + { + "id":"b22e5a57-a751-4285-9cff-38205fb363b5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T22:40:09.265Z", + "completed":"2017-04-01T22:40:09.265Z", + "new_balance":"2791.28", + "value":"-73.93" + } + }, + { + "id":"b897ed97-89f5-4e5e-ba32-764854ecd187", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T03:54:05.733Z", + "completed":"2017-04-05T03:54:05.733Z", + "new_balance":"2738.10", + "value":"-53.18" + } + }, + { + "id":"68af4c34-f2e6-4260-b287-f10dae28b7da", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T05:55:56.293Z", + "completed":"2017-04-05T05:55:56.293Z", + "new_balance":"2725.09", + "value":"-13.01" + } + }, + { + "id":"6ab5ccdf-1e56-433d-bd2d-8320c5847560", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T09:13:28.415Z", + "completed":"2017-04-05T09:13:28.415Z", + "new_balance":"2702.40", + "value":"-22.69" + } + }, + { + "id":"87c07e05-6f2f-46ce-96c7-c2704d8d7a87", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T13:21:00.724Z", + "completed":"2017-04-05T13:21:00.724Z", + "new_balance":"2658.42", + "value":"-43.98" + } + }, + { + "id":"87a33a80-08e0-45c5-aba4-faf973af9a1f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T09:03:11.229Z", + "completed":"2017-04-07T09:03:11.229Z", + "new_balance":"2628.54", + "value":"-29.88" + } + }, + { + "id":"d3bc6801-0c1f-4690-8ac2-0e751db3e24e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T04:07:13.452Z", + "completed":"2017-04-09T04:07:13.452Z", + "new_balance":"2603.67", + "value":"-24.87" + } + }, + { + "id":"ccd5df94-6d1b-417f-9d77-37c739cfd205", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T07:39:10.561Z", + "completed":"2017-04-09T07:39:10.561Z", + "new_balance":"2550.49", + "value":"-53.18" + } + }, + { + "id":"129b121e-91c1-4f0c-a966-838fadce7ade", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T04:17:41.793Z", + "completed":"2017-04-10T04:17:41.793Z", + "new_balance":"2511.32", + "value":"-39.17" + } + }, + { + "id":"d5ae6368-9d9a-4fcf-8d17-3486ce9c6bca", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T05:54:33.997Z", + "completed":"2017-04-10T05:54:33.997Z", + "new_balance":"2494.92", + "value":"-16.40" + } + }, + { + "id":"d43b838d-d3a9-4b7d-ab88-01d12eb141cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T20:48:32.035Z", + "completed":"2017-04-10T20:48:32.035Z", + "new_balance":"2474.85", + "value":"-20.07" + } + }, + { + "id":"72701832-c015-4e6b-bb5f-37d4bdbc75ba", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T21:44:11.127Z", + "completed":"2017-04-10T21:44:11.127Z", + "new_balance":"2450.29", + "value":"-24.56" + } + }, + { + "id":"1caa9353-c158-462d-9d84-ffa8d3527337", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T04:33:05.262Z", + "completed":"2017-04-11T04:33:05.262Z", + "new_balance":"2389.11", + "value":"-61.18" + } + }, + { + "id":"2f073dde-d9ae-4b63-af88-9eacead13de0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T04:34:00.601Z", + "completed":"2017-04-11T04:34:00.601Z", + "new_balance":"2335.93", + "value":"-53.18" + } + }, + { + "id":"ea556803-bf2d-4d09-887e-ef26c58d68d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T04:45:18.116Z", + "completed":"2017-04-11T04:45:18.116Z", + "new_balance":"2304.61", + "value":"-31.32" + } + }, + { + "id":"68bba214-9581-4862-997f-201c501fe05a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T10:09:27.902Z", + "completed":"2017-04-11T10:09:27.902Z", + "new_balance":"2274.21", + "value":"-30.40" + } + }, + { + "id":"d0166e2d-e68a-4000-9f50-67bd7c1ad139", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T11:13:05.056Z", + "completed":"2017-04-11T11:13:05.056Z", + "new_balance":"2268.06", + "value":"-6.15" + } + }, + { + "id":"aaf8ac68-cd4b-4ea1-9c0a-756dbdfadaec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T08:23:21.598Z", + "completed":"2017-04-21T08:23:21.598Z", + "new_balance":"2214.88", + "value":"-53.18" + } + }, + { + "id":"f4eb0f88-3b86-424f-bc8c-39c258284ca0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T23:49:55.863Z", + "completed":"2017-04-23T23:49:55.863Z", + "new_balance":"2199.05", + "value":"-15.83" + } + }, + { + "id":"c899638b-371e-48a6-bc37-65ff95fbf744", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T09:39:33.737Z", + "completed":"2017-04-29T09:39:33.737Z", + "new_balance":"3387.56", + "value":"1188.51" + } + }, + { + "id":"bb24030c-54f3-43e5-a7b8-0cef647c8f64", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T23:14:56.997Z", + "completed":"2017-04-29T23:14:56.997Z", + "new_balance":"3353.13", + "value":"-34.43" + } + }, + { + "id":"ff6a4360-5fff-4801-b436-01df5d0230b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T23:54:25.818Z", + "completed":"2017-04-29T23:54:25.818Z", + "new_balance":"3294.65", + "value":"-58.48" + } + }, + { + "id":"6352e13f-eb28-462a-9a58-72c59a9ef239", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T06:57:31.370Z", + "completed":"2017-04-30T06:57:31.370Z", + "new_balance":"3252.31", + "value":"-42.34" + } + }, + { + "id":"1e1d5e15-63ed-4868-8a6f-fc34ee510f56", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T03:47:23.414Z", + "completed":"2017-05-02T03:47:23.414Z", + "new_balance":"3227.75", + "value":"-24.56" + } + }, + { + "id":"9742d466-65b7-4ea1-b96a-68b14ef16bbc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T09:02:40.594Z", + "completed":"2017-05-02T09:02:40.594Z", + "new_balance":"2717.21", + "value":"-510.54" + } + }, + { + "id":"01f5bfee-90c7-47e4-a98b-8331ce5faf02", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T10:46:32.440Z", + "completed":"2017-05-02T10:46:32.440Z", + "new_balance":"2643.28", + "value":"-73.93" + } + }, + { + "id":"9f64c4e2-e56e-403d-bf81-8ddf046c3d5b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T10:47:30.735Z", + "completed":"2017-05-02T10:47:30.735Z", + "new_balance":"2581.41", + "value":"-61.87" + } + }, + { + "id":"68a99a26-0094-4343-9a18-ed2bcc2c1d9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T21:05:58.311Z", + "completed":"2017-05-06T21:05:58.311Z", + "new_balance":"2537.43", + "value":"-43.98" + } + }, + { + "id":"fa333450-c784-4886-b1e4-611e9c3bd590", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T06:35:44.418Z", + "completed":"2017-05-07T06:35:44.418Z", + "new_balance":"2496.30", + "value":"-41.13" + } + }, + { + "id":"6cf723df-751c-475f-9ad9-3e3d7f38865f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T06:37:53.329Z", + "completed":"2017-05-07T06:37:53.329Z", + "new_balance":"2466.42", + "value":"-29.88" + } + }, + { + "id":"c7479319-3e1f-46f1-a98c-e3fb140efd4b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T12:35:40.989Z", + "completed":"2017-05-07T12:35:40.989Z", + "new_balance":"2438.57", + "value":"-27.85" + } + }, + { + "id":"4338f10e-b9ea-439a-b787-f978ba38c5f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T17:00:46.587Z", + "completed":"2017-05-07T17:00:46.587Z", + "new_balance":"2427.66", + "value":"-10.91" + } + }, + { + "id":"2711c40a-aa7c-426e-a0c7-e9094f6c66af", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T15:06:28.708Z", + "completed":"2017-05-08T15:06:28.708Z", + "new_balance":"2386.74", + "value":"-40.92" + } + }, + { + "id":"a6fa1182-929c-45d4-83d6-964f9a787dc0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T06:30:47.977Z", + "completed":"2017-05-09T06:30:47.977Z", + "new_balance":"2352.31", + "value":"-34.43" + } + }, + { + "id":"5bc7f18a-bf91-43cf-8329-265927400c1a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T05:03:47.742Z", + "completed":"2017-05-13T05:03:47.742Z", + "new_balance":"2299.13", + "value":"-53.18" + } + }, + { + "id":"944be09b-1511-4aec-bf18-8f3a7c0428c8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T03:28:00.123Z", + "completed":"2017-05-26T03:28:00.123Z", + "new_balance":"2245.95", + "value":"-53.18" + } + }, + { + "id":"cba08456-ad51-49e1-90ab-7ab7a1587e6a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T19:36:43.518Z", + "completed":"2017-05-26T19:36:43.518Z", + "new_balance":"2235.04", + "value":"-10.91" + } + }, + { + "id":"c0dd9823-c7a9-43c3-9ed5-7765d8cdb1db", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T09:33:07.074Z", + "completed":"2017-05-27T09:33:07.074Z", + "new_balance":"2176.56", + "value":"-58.48" + } + }, + { + "id":"9b61b35d-5462-4465-984c-4afdac1972d4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T17:06:19.669Z", + "completed":"2017-05-27T17:06:19.669Z", + "new_balance":"2159.82", + "value":"-16.74" + } + }, + { + "id":"4f98685a-0a40-49bf-af08-ec87c9344c99", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T02:42:23.062Z", + "completed":"2017-05-30T02:42:23.062Z", + "new_balance":"3348.33", + "value":"1188.51" + } + }, + { + "id":"8655ddb5-30db-40ea-959c-2048e9602b00", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T11:48:18.914Z", + "completed":"2017-05-30T11:48:18.914Z", + "new_balance":"3313.90", + "value":"-34.43" + } + }, + { + "id":"db53e518-bc46-4f5e-abd7-f227ae834767", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T20:40:11.937Z", + "completed":"2017-05-30T20:40:11.937Z", + "new_balance":"3271.56", + "value":"-42.34" + } + }, + { + "id":"388f7df7-8acd-4bdc-8b59-3842a36ca021", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T02:09:46.869Z", + "completed":"2017-06-01T02:09:46.869Z", + "new_balance":"3247.00", + "value":"-24.56" + } + }, + { + "id":"2feb99af-b726-4381-b02d-f0865fd4ab6b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T03:26:05.322Z", + "completed":"2017-06-01T03:26:05.322Z", + "new_balance":"3212.57", + "value":"-34.43" + } + }, + { + "id":"4dccf6bf-44e3-470b-948c-ab95e6a7da5d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T04:34:48.894Z", + "completed":"2017-06-01T04:34:48.894Z", + "new_balance":"2702.03", + "value":"-510.54" + } + }, + { + "id":"f67124b2-6a2c-473b-8b9a-c0ae38b70764", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T07:01:11.387Z", + "completed":"2017-06-01T07:01:11.387Z", + "new_balance":"2648.85", + "value":"-53.18" + } + }, + { + "id":"af288466-d769-45f0-8996-0aaddc82c709", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T08:41:15.270Z", + "completed":"2017-06-01T08:41:15.270Z", + "new_balance":"2600.19", + "value":"-48.66" + } + }, + { + "id":"ea64a59c-7b95-4395-b660-f5640ec7c342", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:39:46.073Z", + "completed":"2017-06-01T13:39:46.073Z", + "new_balance":"2538.32", + "value":"-61.87" + } + }, + { + "id":"cde211e5-20ae-43b3-b185-b296c247ddb6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T15:13:34.181Z", + "completed":"2017-06-01T15:13:34.181Z", + "new_balance":"2524.65", + "value":"-13.67" + } + }, + { + "id":"2dbbe3c7-069b-4bf3-933d-813df2eba3e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:45:41.944Z", + "completed":"2017-06-01T15:45:41.944Z", + "new_balance":"2471.47", + "value":"-53.18" + } + }, + { + "id":"647343a9-0202-46ad-8e14-6830ecadbff8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T23:14:20.114Z", + "completed":"2017-06-01T23:14:20.114Z", + "new_balance":"2397.54", + "value":"-73.93" + } + }, + { + "id":"0063e53f-c639-4d8e-9c2c-3ad06815c3d7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T05:36:26.758Z", + "completed":"2017-06-02T05:36:26.758Z", + "new_balance":"2385.61", + "value":"-11.93" + } + }, + { + "id":"f6841ddc-d0d5-4e98-adde-dc9729a50480", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T07:15:53.684Z", + "completed":"2017-06-02T07:15:53.684Z", + "new_balance":"2327.93", + "value":"-57.68" + } + }, + { + "id":"411b721a-da90-47b6-a01c-f6df88378f1c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T09:57:59.883Z", + "completed":"2017-06-02T09:57:59.883Z", + "new_balance":"2316.93", + "value":"-11.00" + } + }, + { + "id":"98f1395c-c1db-4f39-acbf-aa9998c8d56e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T10:02:21.729Z", + "completed":"2017-06-04T10:02:21.729Z", + "new_balance":"2270.00", + "value":"-46.93" + } + }, + { + "id":"6f44d5af-fdaf-44dc-9756-0d751c5540c9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:23:14.028Z", + "completed":"2017-06-04T17:23:14.028Z", + "new_balance":"2244.63", + "value":"-25.37" + } + }, + { + "id":"c5fee67a-68a7-4e85-9c27-df330c0ded3c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T21:26:26.031Z", + "completed":"2017-06-04T21:26:26.031Z", + "new_balance":"2202.29", + "value":"-42.34" + } + }, + { + "id":"9821fec6-3a29-43ad-884a-2fb279cc92e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:16:50.280Z", + "completed":"2017-06-05T06:16:50.280Z", + "new_balance":"2135.71", + "value":"-66.58" + } + }, + { + "id":"8c4235b0-68a2-4cb7-834c-9e1e1f396307", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T12:05:53.225Z", + "completed":"2017-06-05T12:05:53.225Z", + "new_balance":"2108.87", + "value":"-26.84" + } + }, + { + "id":"86186b6d-236d-4248-b698-aaafaea4d33f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T15:41:04.196Z", + "completed":"2017-06-18T15:41:04.196Z", + "new_balance":"2055.69", + "value":"-53.18" + } + }, + { + "id":"acbd4da0-d79a-482d-aaf9-0ffa9487b05c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T03:53:15.472Z", + "completed":"2017-06-30T03:53:15.472Z", + "new_balance":"3244.20", + "value":"1188.51" + } + }, + { + "id":"7b80b52b-56c0-45d6-8508-6f626e6eb869", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T07:05:53.462Z", + "completed":"2017-06-30T07:05:53.462Z", + "new_balance":"3201.86", + "value":"-42.34" + } + }, + { + "id":"02c75f60-b03a-4044-9fa5-fd03d746ea65", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T21:12:10.936Z", + "completed":"2017-06-30T21:12:10.936Z", + "new_balance":"3160.33", + "value":"-41.53" + } + }, + { + "id":"6a382d32-04ce-4185-8d6b-e38df8d2c2a8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T23:38:05.767Z", + "completed":"2017-06-30T23:38:05.767Z", + "new_balance":"3125.90", + "value":"-34.43" + } + }, + { + "id":"3ec96946-05e9-4eae-892e-1ebec05fb953", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T05:34:43.164Z", + "completed":"2017-07-01T05:34:43.164Z", + "new_balance":"3064.03", + "value":"-61.87" + } + }, + { + "id":"79d89d77-9061-4a6e-a3be-94e74df0204e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T01:54:41.429Z", + "completed":"2017-07-03T01:54:41.429Z", + "new_balance":"2553.49", + "value":"-510.54" + } + }, + { + "id":"d30ae6ad-9ff7-4f0e-8d98-d245166c98e1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T14:34:13.654Z", + "completed":"2017-07-03T14:34:13.654Z", + "new_balance":"2479.56", + "value":"-73.93" + } + }, + { + "id":"fed3ba04-a01a-4911-9996-c6429ab72214", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T16:14:36.464Z", + "completed":"2017-07-03T16:14:36.464Z", + "new_balance":"2455.00", + "value":"-24.56" + } + }, + { + "id":"32941b57-dd8e-460e-8ff2-e3703aec0fa6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T18:56:00.034Z", + "completed":"2017-07-03T18:56:00.034Z", + "new_balance":"2420.57", + "value":"-34.43" + } + }, + { + "id":"e915a040-6358-4b09-a30c-7c11fe8b5fa0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T05:12:00.195Z", + "completed":"2017-07-05T05:12:00.195Z", + "new_balance":"2407.56", + "value":"-13.01" + } + }, + { + "id":"e7e0ea41-4143-49b0-8521-ccb6ba5824ae", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T15:49:50.791Z", + "completed":"2017-07-05T15:49:50.791Z", + "new_balance":"2354.38", + "value":"-53.18" + } + }, + { + "id":"05f12063-c940-4fbf-9f2a-98546b8705f2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T17:00:26.751Z", + "completed":"2017-07-05T17:00:26.751Z", + "new_balance":"2310.40", + "value":"-43.98" + } + }, + { + "id":"82a87e04-2c9f-4bec-9077-ebebbeef3a05", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T13:09:16.056Z", + "completed":"2017-07-06T13:09:16.056Z", + "new_balance":"2287.71", + "value":"-22.69" + } + }, + { + "id":"bc3f7e61-8131-4b72-8628-80fb3f1793dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T13:37:10.397Z", + "completed":"2017-07-06T13:37:10.397Z", + "new_balance":"2257.83", + "value":"-29.88" + } + }, + { + "id":"e884bd4a-5e21-4e17-923a-102f292414a3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T11:18:07.985Z", + "completed":"2017-07-07T11:18:07.985Z", + "new_balance":"2218.66", + "value":"-39.17" + } + }, + { + "id":"4594a123-5c8c-4cac-af9d-7b276944cf28", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T20:59:54.431Z", + "completed":"2017-07-10T20:59:54.431Z", + "new_balance":"2193.79", + "value":"-24.87" + } + }, + { + "id":"eaae3934-be5b-415c-b0aa-b8cae58fe820", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T22:55:56.636Z", + "completed":"2017-07-10T22:55:56.636Z", + "new_balance":"2140.61", + "value":"-53.18" + } + }, + { + "id":"70f5f3c0-4057-4bfe-b3b3-e24cde965c59", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T08:10:43.492Z", + "completed":"2017-07-12T08:10:43.492Z", + "new_balance":"2120.54", + "value":"-20.07" + } + }, + { + "id":"69c5971f-3f9d-431c-8826-f3ced6a3c13b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T09:21:17.104Z", + "completed":"2017-07-12T09:21:17.104Z", + "new_balance":"2081.37", + "value":"-39.17" + } + }, + { + "id":"0fc3ed0b-8d2b-4406-ac92-1e96f235082e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T19:43:29.296Z", + "completed":"2017-07-12T19:43:29.296Z", + "new_balance":"2056.81", + "value":"-24.56" + } + }, + { + "id":"842b9f2a-da54-481b-9770-09a845821a51", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T06:23:59.023Z", + "completed":"2017-07-15T06:23:59.023Z", + "new_balance":"2040.41", + "value":"-16.40" + } + }, + { + "id":"5f798f0b-6850-4c67-bd33-42e203b24fd3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T06:56:09.910Z", + "completed":"2017-07-16T06:56:09.910Z", + "new_balance":"1987.23", + "value":"-53.18" + } + }, + { + "id":"7b31b624-7e14-45ee-8fe3-6f34d7ebca74", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T21:08:36.414Z", + "completed":"2017-07-16T21:08:36.414Z", + "new_balance":"1981.08", + "value":"-6.15" + } + }, + { + "id":"a8704c5a-202a-482a-bcac-772a5ddfb3d3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T10:56:22.996Z", + "completed":"2017-07-17T10:56:22.996Z", + "new_balance":"1949.76", + "value":"-31.32" + } + }, + { + "id":"05dea66f-bd1d-4274-8f1f-02feb1c071f6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T23:29:13.133Z", + "completed":"2017-07-17T23:29:13.133Z", + "new_balance":"1888.58", + "value":"-61.18" + } + }, + { + "id":"391d9786-f766-4b4d-ac61-b421c2296afa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T17:11:36.512Z", + "completed":"2017-07-19T17:11:36.512Z", + "new_balance":"1858.18", + "value":"-30.40" + } + }, + { + "id":"28ff5724-6d5a-437f-a64e-31926ec5b8e9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T01:35:45.145Z", + "completed":"2017-07-20T01:35:45.145Z", + "new_balance":"1805.00", + "value":"-53.18" + } + }, + { + "id":"4ed01aea-2169-4390-921e-fc11eee8b217", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T05:02:41.217Z", + "completed":"2017-07-23T05:02:41.217Z", + "new_balance":"1789.17", + "value":"-15.83" + } + }, + { + "id":"4ab18156-d12d-4c93-83ba-ff8a5a60a701", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T18:27:26.408Z", + "completed":"2017-07-26T18:27:26.408Z", + "new_balance":"1730.69", + "value":"-58.48" + } + }, + { + "id":"b2b55084-b612-4c67-8ea8-ec504cc76d62", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T10:41:52.663Z", + "completed":"2017-07-27T10:41:52.663Z", + "new_balance":"2919.20", + "value":"1188.51" + } + }, + { + "id":"6487ffd6-9d90-41e4-a277-11f2b01b8648", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T10:25:30.452Z", + "completed":"2017-07-28T10:25:30.452Z", + "new_balance":"2884.77", + "value":"-34.43" + } + }, + { + "id":"63a27963-4005-43ab-aa48-c7e5306ce4c0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T20:48:36.834Z", + "completed":"2017-07-30T20:48:36.834Z", + "new_balance":"2842.43", + "value":"-42.34" + } + }, + { + "id":"02ddeeeb-b085-40c7-aa31-77e4c3c19db0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T23:57:03.351Z", + "completed":"2017-08-01T23:57:03.351Z", + "new_balance":"2780.56", + "value":"-61.87" + } + }, + { + "id":"01af25ab-5020-4424-84ad-90e3389c1249", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T03:57:56.706Z", + "completed":"2017-08-03T03:57:56.706Z", + "new_balance":"2270.02", + "value":"-510.54" + } + }, + { + "id":"f022329d-07a1-4b9c-9c2b-28cf628cf89b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T13:02:02.069Z", + "completed":"2017-08-03T13:02:02.069Z", + "new_balance":"2235.59", + "value":"-34.43" + } + }, + { + "id":"2f3e75d9-0e07-46d3-95dd-f6025d372fe6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T13:44:55.587Z", + "completed":"2017-08-03T13:44:55.587Z", + "new_balance":"2211.03", + "value":"-24.56" + } + }, + { + "id":"100d9ada-5cab-462a-bae7-4cc7ac64bf52", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T18:56:56.714Z", + "completed":"2017-08-03T18:56:56.714Z", + "new_balance":"2137.10", + "value":"-73.93" + } + }, + { + "id":"a9180fe9-06b8-46a8-a8de-02e1612ce622", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T03:18:20.428Z", + "completed":"2017-08-08T03:18:20.428Z", + "new_balance":"2093.12", + "value":"-43.98" + } + }, + { + "id":"993b2f1d-24e3-4f37-9c54-d82f415c4287", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T14:50:57.378Z", + "completed":"2017-08-08T14:50:57.378Z", + "new_balance":"2039.94", + "value":"-53.18" + } + }, + { + "id":"f32f1a3a-5625-4a3a-94a0-67fa25e18a9f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T20:26:16.211Z", + "completed":"2017-08-11T20:26:16.211Z", + "new_balance":"2050.83", + "value":"10.89" + } + }, + { + "id":"283da079-da71-4c61-8ed8-556b6e2502cd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T02:42:10.743Z", + "completed":"2017-08-13T02:42:10.743Z", + "new_balance":"2020.95", + "value":"-29.88" + } + }, + { + "id":"aa353139-7c3a-4813-a2a6-f76a8b1478f7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T17:56:36.497Z", + "completed":"2017-08-14T17:56:36.497Z", + "new_balance":"1993.10", + "value":"-27.85" + } + }, + { + "id":"210e73fe-f2c9-4081-9db7-d4db2ba1e645", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T14:09:00.905Z", + "completed":"2017-08-17T14:09:00.905Z", + "new_balance":"1982.19", + "value":"-10.91" + } + }, + { + "id":"1dc6d193-fc1c-4474-931b-48b526b2ebc0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T14:26:14.731Z", + "completed":"2017-08-21T14:26:14.731Z", + "new_balance":"1941.06", + "value":"-41.13" + } + }, + { + "id":"544d8001-f564-403e-91ed-ac4b0a7de323", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T18:09:58.508Z", + "completed":"2017-08-23T18:09:58.508Z", + "new_balance":"1887.88", + "value":"-53.18" + } + }, + { + "id":"a4f41501-c3c9-4019-be9a-af145e5ce06b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T21:39:46.618Z", + "completed":"2017-08-23T21:39:46.618Z", + "new_balance":"1846.96", + "value":"-40.92" + } + }, + { + "id":"1ae302aa-5a54-47da-9b6e-ccc268ca0665", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T04:50:11.792Z", + "completed":"2017-08-24T04:50:11.792Z", + "new_balance":"1836.05", + "value":"-10.91" + } + }, + { + "id":"f34a3abe-f295-405d-9888-ae89abbf53e0", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T09:27:54.495Z", + "completed":"2017-08-27T09:27:54.495Z", + "new_balance":"3024.56", + "value":"1188.51" + } + }, + { + "id":"a6a7f65c-874f-4580-b73c-991a4b73750d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T14:35:09.937Z", + "completed":"2017-08-27T14:35:09.937Z", + "new_balance":"3007.82", + "value":"-16.74" + } + }, + { + "id":"ad8c445b-b20d-4aff-81f1-0c41fd06587c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T16:25:21.720Z", + "completed":"2017-08-27T16:25:21.720Z", + "new_balance":"2949.34", + "value":"-58.48" + } + }, + { + "id":"172a83ab-e56a-4eef-ba10-d422994b2db3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T17:21:38.013Z", + "completed":"2017-08-28T17:21:38.013Z", + "new_balance":"2914.91", + "value":"-34.43" + } + }, + { + "id":"0e48c703-7f68-40f1-b5b2-f5baaab10a5c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T04:05:13.855Z", + "completed":"2017-08-30T04:05:13.855Z", + "new_balance":"2872.57", + "value":"-42.34" + } + }, + { + "id":"b9df52ce-bb40-4280-9069-45ee395afe31", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T04:20:20.759Z", + "completed":"2017-09-01T04:20:20.759Z", + "new_balance":"2810.70", + "value":"-61.87" + } + }, + { + "id":"19eb9144-d15e-423b-b99c-e166a3e61c9b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T07:36:25.738Z", + "completed":"2017-09-03T07:36:25.738Z", + "new_balance":"2300.16", + "value":"-510.54" + } + }, + { + "id":"6a905b31-5a5c-463c-9b1f-4d0fd6dea63e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T07:54:58.372Z", + "completed":"2017-09-03T07:54:58.372Z", + "new_balance":"2275.60", + "value":"-24.56" + } + }, + { + "id":"eed07306-02a9-4491-9d10-3782abdac54d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T22:01:05.837Z", + "completed":"2017-09-03T22:01:05.837Z", + "new_balance":"2241.17", + "value":"-34.43" + } + }, + { + "id":"c0412eb4-9d68-4e01-958e-c3ac39846a62", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T22:16:14.095Z", + "completed":"2017-09-03T22:16:14.095Z", + "new_balance":"2167.24", + "value":"-73.93" + } + }, + { + "id":"03dbed9b-e834-4e29-88ad-bafdf2bcc588", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T02:06:41.308Z", + "completed":"2017-09-05T02:06:41.308Z", + "new_balance":"2118.58", + "value":"-48.66" + } + }, + { + "id":"979defbd-3665-4d84-bff7-7456954a97fb", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T07:23:27.055Z", + "completed":"2017-09-05T07:23:27.055Z", + "new_balance":"2065.40", + "value":"-53.18" + } + }, + { + "id":"da4f1ff4-36f9-40c7-9770-bd3f9f2a3031", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T22:12:55.120Z", + "completed":"2017-09-07T22:12:55.120Z", + "new_balance":"2051.73", + "value":"-13.67" + } + }, + { + "id":"a2faae62-ed0b-46e4-90b6-1ab7500df98b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T08:29:29.254Z", + "completed":"2017-09-09T08:29:29.254Z", + "new_balance":"1998.55", + "value":"-53.18" + } + }, + { + "id":"1283fa9c-9705-4aae-949c-7eea8ed23883", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T14:58:18.682Z", + "completed":"2017-09-11T14:58:18.682Z", + "new_balance":"1987.55", + "value":"-11.00" + } + }, + { + "id":"5eb63baf-ca15-49ac-b1a4-cf2f7a62e39f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T23:58:03.930Z", + "completed":"2017-09-13T23:58:03.930Z", + "new_balance":"1929.87", + "value":"-57.68" + } + }, + { + "id":"f5cca7b4-1fd3-4c50-ad7d-c409955c19e6", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T12:44:47.417Z", + "completed":"2017-09-14T12:44:47.417Z", + "new_balance":"1917.94", + "value":"-11.93" + } + }, + { + "id":"d1b62193-bab7-4f2a-9ee8-9ff67aed520c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T19:46:58.884Z", + "completed":"2017-09-14T19:46:58.884Z", + "new_balance":"1981.30", + "value":"63.36" + } + }, + { + "id":"ef1e8a81-d163-49b5-b7b4-73d3c089e2d9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T00:27:28.775Z", + "completed":"2017-09-15T00:27:28.775Z", + "new_balance":"1938.96", + "value":"-42.34" + } + }, + { + "id":"97c6f92a-3f57-4909-94ca-1a56fcdc0aa8", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T11:06:38.925Z", + "completed":"2017-09-26T11:06:38.925Z", + "new_balance":"1912.12", + "value":"-26.84" + } + }, + { + "id":"8f7732da-7f9b-418f-9076-8c54cb86959b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T15:48:46.239Z", + "completed":"2017-09-26T15:48:46.239Z", + "new_balance":"1865.19", + "value":"-46.93" + } + }, + { + "id":"c9c6209e-975a-4ef1-9efd-be48cec54ba7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T20:32:40.073Z", + "completed":"2017-09-26T20:32:40.073Z", + "new_balance":"1839.82", + "value":"-25.37" + } + }, + { + "id":"ea3da5b6-a525-4a2d-9bac-cf7dbd8a0db9", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T14:33:47.095Z", + "completed":"2017-09-27T14:33:47.095Z", + "new_balance":"3028.33", + "value":"1188.51" + } + }, + { + "id":"745ca07b-2325-4b48-831c-2b8b8243777d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T22:24:55.232Z", + "completed":"2017-09-27T22:24:55.232Z", + "new_balance":"2961.75", + "value":"-66.58" + } + }, + { + "id":"0d7d06fa-7c7f-487c-bd6c-b3858072bc8a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T23:18:39.766Z", + "completed":"2017-09-27T23:18:39.766Z", + "new_balance":"2908.57", + "value":"-53.18" + } + }, + { + "id":"e230c73e-8b4f-4571-a268-8a88bc75c248", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T14:39:45.495Z", + "completed":"2017-09-28T14:39:45.495Z", + "new_balance":"2874.14", + "value":"-34.43" + } + }, + { + "id":"e574ae46-e844-41e3-8e17-73fa066e739c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T00:24:12.601Z", + "completed":"2017-09-30T00:24:12.601Z", + "new_balance":"2831.80", + "value":"-42.34" + } + }, + { + "id":"77655abd-190a-43ce-8d83-b2b6d5756f73", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T00:43:46.061Z", + "completed":"2017-10-01T00:43:46.061Z", + "new_balance":"2769.93", + "value":"-61.87" + } + }, + { + "id":"4ce2a0c5-618f-4e3d-89dd-db2423f81296", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T01:45:13.406Z", + "completed":"2017-10-01T01:45:13.406Z", + "new_balance":"2696.00", + "value":"-73.93" + } + }, + { + "id":"25ffab8f-4b69-49fb-b079-ce553a6341f3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T16:52:42.364Z", + "completed":"2017-10-01T16:52:42.364Z", + "new_balance":"2671.44", + "value":"-24.56" + } + }, + { + "id":"8d2dca1f-3e44-47e8-b3d8-2da7bd7359c4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T19:37:50.233Z", + "completed":"2017-10-01T19:37:50.233Z", + "new_balance":"2160.90", + "value":"-510.54" + } + }, + { + "id":"2928d33e-037b-476d-87f7-0ba843e2e8f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T20:34:54.672Z", + "completed":"2017-10-01T20:34:54.672Z", + "new_balance":"2126.47", + "value":"-34.43" + } + }, + { + "id":"0109e345-baf5-4f38-af15-cf4335c03936", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T00:04:56.420Z", + "completed":"2017-10-05T00:04:56.420Z", + "new_balance":"2073.29", + "value":"-53.18" + } + }, + { + "id":"34505812-15f1-4fc5-8485-eceb2234ca7d", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T20:28:46.967Z", + "completed":"2017-10-05T20:28:46.967Z", + "new_balance":"2060.28", + "value":"-13.01" + } + }, + { + "id":"1a6adc41-80af-4cd1-bfab-500a6ed4954e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T21:34:02.188Z", + "completed":"2017-10-05T21:34:02.188Z", + "new_balance":"2037.59", + "value":"-22.69" + } + }, + { + "id":"46de46ae-2100-4e0a-a0fe-9ea717382ea1", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T22:10:53.459Z", + "completed":"2017-10-05T22:10:53.459Z", + "new_balance":"1993.61", + "value":"-43.98" + } + }, + { + "id":"bfdd28e0-8bfa-456a-a4de-ad94430bb556", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T18:13:29.169Z", + "completed":"2017-10-07T18:13:29.169Z", + "new_balance":"1963.73", + "value":"-29.88" + } + }, + { + "id":"85e133f6-a6c8-4bf4-9af1-de94a4a7c877", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T09:29:16.356Z", + "completed":"2017-10-09T09:29:16.356Z", + "new_balance":"1938.86", + "value":"-24.87" + } + }, + { + "id":"597e8b13-7fc4-4eb3-a5eb-ce1376cc28fe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T14:08:00.984Z", + "completed":"2017-10-09T14:08:00.984Z", + "new_balance":"1885.68", + "value":"-53.18" + } + }, + { + "id":"327ade43-ea1d-4520-9df0-ee0db6b7e2bc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T00:33:52.447Z", + "completed":"2017-10-10T00:33:52.447Z", + "new_balance":"1869.28", + "value":"-16.40" + } + }, + { + "id":"ab601f12-6c76-4869-92ac-d8b98bfea1f5", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T02:22:52.541Z", + "completed":"2017-10-10T02:22:52.541Z", + "new_balance":"1830.11", + "value":"-39.17" + } + }, + { + "id":"29f83692-5410-4b04-8f81-c75493572b61", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:48:53.146Z", + "completed":"2017-10-10T18:48:53.146Z", + "new_balance":"1810.04", + "value":"-20.07" + } + }, + { + "id":"62f0977e-da01-46d1-b434-7c5a61078387", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:49:31.847Z", + "completed":"2017-10-10T18:49:31.847Z", + "new_balance":"1785.48", + "value":"-24.56" + } + }, + { + "id":"2e429acd-542e-42d9-86bb-36d9556caebe", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T01:19:15.079Z", + "completed":"2017-10-11T01:19:15.079Z", + "new_balance":"1779.33", + "value":"-6.15" + } + }, + { + "id":"aefc7949-18f5-4a8c-9870-be8ba81f3f6e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T07:04:58.964Z", + "completed":"2017-10-11T07:04:58.964Z", + "new_balance":"1726.15", + "value":"-53.18" + } + }, + { + "id":"534c30a7-6add-4319-a89f-421dbcdaaf50", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T17:02:31.842Z", + "completed":"2017-10-11T17:02:31.842Z", + "new_balance":"1664.97", + "value":"-61.18" + } + }, + { + "id":"97d2567d-ce94-43b7-b803-bb7f5f3f9439", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T20:41:55.287Z", + "completed":"2017-10-11T20:41:55.287Z", + "new_balance":"1633.65", + "value":"-31.32" + } + }, + { + "id":"bd53d247-9983-4a50-8d7b-a6608964e183", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T21:59:41.225Z", + "completed":"2017-10-11T21:59:41.225Z", + "new_balance":"1603.25", + "value":"-30.40" + } + }, + { + "id":"1e49fd88-52d3-4c91-9af5-a93d0920219f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T08:35:48.418Z", + "completed":"2017-10-21T08:35:48.418Z", + "new_balance":"1550.07", + "value":"-53.18" + } + }, + { + "id":"0d50fc90-bc0a-4950-bbdb-3275b2786444", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:09:01.164Z", + "completed":"2017-10-23T05:09:01.164Z", + "new_balance":"1534.24", + "value":"-15.83" + } + }, + { + "id":"cd6b73e9-4f76-404b-b6bc-91ce43e8c283", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T12:04:50.078Z", + "completed":"2017-10-29T12:04:50.078Z", + "new_balance":"1499.81", + "value":"-34.43" + } + }, + { + "id":"66818d5f-0f12-4dbf-ae14-d4f5c9f4b859", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T13:07:00.424Z", + "completed":"2017-10-29T13:07:00.424Z", + "new_balance":"2688.32", + "value":"1188.51" + } + }, + { + "id":"772fa8b4-8d44-4ce8-82d6-0e6eb47552ed", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T22:04:04.114Z", + "completed":"2017-10-29T22:04:04.114Z", + "new_balance":"2629.84", + "value":"-58.48" + } + }, + { + "id":"0c199c09-b986-4241-a3a5-d4072460e3c3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T08:08:18.240Z", + "completed":"2017-10-30T08:08:18.240Z", + "new_balance":"2587.50", + "value":"-42.34" + } + }, + { + "id":"41dd3b8c-e450-476c-a71b-444df729a91a", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T02:14:57.248Z", + "completed":"2017-11-02T02:14:57.248Z", + "new_balance":"2076.96", + "value":"-510.54" + } + }, + { + "id":"4816f091-2d7a-4bad-a847-8983d8efa291", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T06:12:03.809Z", + "completed":"2017-11-02T06:12:03.809Z", + "new_balance":"2052.40", + "value":"-24.56" + } + }, + { + "id":"42d927e0-b8ea-4bad-95ad-13891a877e25", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T10:32:50.987Z", + "completed":"2017-11-02T10:32:50.987Z", + "new_balance":"1990.53", + "value":"-61.87" + } + }, + { + "id":"386d9a78-0034-4b34-91e1-f4e88b449a4e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T16:56:13.784Z", + "completed":"2017-11-02T16:56:13.784Z", + "new_balance":"1916.60", + "value":"-73.93" + } + }, + { + "id":"c744e3de-9427-4c01-81b1-cb1a42073bac", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T04:38:04.496Z", + "completed":"2017-11-06T04:38:04.496Z", + "new_balance":"1872.62", + "value":"-43.98" + } + }, + { + "id":"f4b087d0-c2c6-49fc-9574-4081d4da1305", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T09:39:48.276Z", + "completed":"2017-11-07T09:39:48.276Z", + "new_balance":"1842.74", + "value":"-29.88" + } + }, + { + "id":"b0114ab7-8a9c-424d-8d06-8437e2f521e3", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T11:28:24.790Z", + "completed":"2017-11-07T11:28:24.790Z", + "new_balance":"1814.89", + "value":"-27.85" + } + }, + { + "id":"db5a79d3-a862-40a9-a010-5410a123a4cc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T13:39:20.229Z", + "completed":"2017-11-07T13:39:20.229Z", + "new_balance":"1803.98", + "value":"-10.91" + } + }, + { + "id":"785beaae-c873-461e-9d8a-e5a009c75bc2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T20:35:07.187Z", + "completed":"2017-11-07T20:35:07.187Z", + "new_balance":"1762.85", + "value":"-41.13" + } + }, + { + "id":"cf78df09-1a32-4f44-a86e-97e60303a455", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T19:11:21.149Z", + "completed":"2017-11-08T19:11:21.149Z", + "new_balance":"1721.93", + "value":"-40.92" + } + }, + { + "id":"cd752111-490c-4b89-bba1-97fc815049dc", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T09:56:20.175Z", + "completed":"2017-11-09T09:56:20.175Z", + "new_balance":"1687.50", + "value":"-34.43" + } + }, + { + "id":"5deeb3ae-7221-4b81-9749-a199f938450c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T22:26:47.216Z", + "completed":"2017-11-13T22:26:47.216Z", + "new_balance":"1634.32", + "value":"-53.18" + } + }, + { + "id":"f81fff10-8193-4539-8d34-1e72ec86a0e2", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T18:12:04.169Z", + "completed":"2017-11-26T18:12:04.169Z", + "new_balance":"1623.41", + "value":"-10.91" + } + }, + { + "id":"67e32b61-1e66-4e0a-9aa1-9ad3a43d390b", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T19:20:33.494Z", + "completed":"2017-11-26T19:20:33.494Z", + "new_balance":"1570.23", + "value":"-53.18" + } + }, + { + "id":"42ebea61-b28d-4655-9803-7f5cceb085ec", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T12:10:17.776Z", + "completed":"2017-11-27T12:10:17.776Z", + "new_balance":"1553.49", + "value":"-16.74" + } + }, + { + "id":"d11343f0-e82e-4041-ad14-21633859221c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T18:57:44.841Z", + "completed":"2017-11-27T18:57:44.841Z", + "new_balance":"1495.01", + "value":"-58.48" + } + }, + { + "id":"a4784fc7-9bdd-4421-995e-df66ac41cc2f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T01:47:42.537Z", + "completed":"2017-11-30T01:47:42.537Z", + "new_balance":"2683.52", + "value":"1188.51" + } + }, + { + "id":"6330d320-0a68-4c9d-87d4-b91f55fb2cd7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T09:46:05.504Z", + "completed":"2017-11-30T09:46:05.504Z", + "new_balance":"2641.18", + "value":"-42.34" + } + }, + { + "id":"3d0db0a5-7a64-4102-a87f-a37710a119b4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T18:27:56.347Z", + "completed":"2017-11-30T18:27:56.347Z", + "new_balance":"2606.75", + "value":"-34.43" + } + }, + { + "id":"939d7c24-3ba9-4e05-9a09-3858a2e5d7bd", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T03:23:14.356Z", + "completed":"2017-12-01T03:23:14.356Z", + "new_balance":"2593.08", + "value":"-13.67" + } + }, + { + "id":"d27ce365-3e00-4f66-9605-aa727d231b8c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T07:27:38.833Z", + "completed":"2017-12-01T07:27:38.833Z", + "new_balance":"2539.90", + "value":"-53.18" + } + }, + { + "id":"f5c40e9d-2cf8-4458-83cd-1be74aec2072", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T08:41:19.374Z", + "completed":"2017-12-01T08:41:19.374Z", + "new_balance":"2491.24", + "value":"-48.66" + } + }, + { + "id":"790eac82-a137-4aa4-b495-5f672ff99415", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T18:06:24.020Z", + "completed":"2017-12-01T18:06:24.020Z", + "new_balance":"1980.70", + "value":"-510.54" + } + }, + { + "id":"739b28b6-1cde-4a1a-ae68-9d01f3e9cf01", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T19:05:13.389Z", + "completed":"2017-12-01T19:05:13.389Z", + "new_balance":"1906.77", + "value":"-73.93" + } + }, + { + "id":"4094a21b-5c3c-48d1-8efa-bab35c56afde", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T19:23:44.153Z", + "completed":"2017-12-01T19:23:44.153Z", + "new_balance":"1844.90", + "value":"-61.87" + } + }, + { + "id":"63ce745a-adc6-4c7e-82e3-6a3cf1d55e7f", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T19:44:49.893Z", + "completed":"2017-12-01T19:44:49.893Z", + "new_balance":"1820.34", + "value":"-24.56" + } + }, + { + "id":"53db9bca-fc44-45a9-8816-a5f921705622", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T21:00:05.560Z", + "completed":"2017-12-01T21:00:05.560Z", + "new_balance":"1785.91", + "value":"-34.43" + } + }, + { + "id":"ad6f6389-aa92-40ca-bbe4-ec2151b5e335", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T21:13:04.524Z", + "completed":"2017-12-01T21:13:04.524Z", + "new_balance":"1732.73", + "value":"-53.18" + } + }, + { + "id":"b8609bf3-6550-4c27-905a-b9e952c774d7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T10:57:58.816Z", + "completed":"2017-12-02T10:57:58.816Z", + "new_balance":"1721.73", + "value":"-11.00" + } + }, + { + "id":"8548a791-ead5-4ee0-9cb0-99d1810c70aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T16:49:36.402Z", + "completed":"2017-12-02T16:49:36.402Z", + "new_balance":"1709.80", + "value":"-11.93" + } + }, + { + "id":"0b081ca4-02cd-443b-b079-f690131067a4", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:53:17.542Z", + "completed":"2017-12-02T17:53:17.542Z", + "new_balance":"1652.12", + "value":"-57.68" + } + }, + { + "id":"561d3117-ce2b-422e-ad40-cd1bcdb2743e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T09:54:28.598Z", + "completed":"2017-12-04T09:54:28.598Z", + "new_balance":"1605.19", + "value":"-46.93" + } + }, + { + "id":"6356c921-f0fb-434a-843c-96c9cdfec19c", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T10:34:01.035Z", + "completed":"2017-12-04T10:34:01.035Z", + "new_balance":"1562.85", + "value":"-42.34" + } + }, + { + "id":"14c715ab-9c61-4bf3-a754-d39364ec506e", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T23:59:20.524Z", + "completed":"2017-12-04T23:59:20.524Z", + "new_balance":"1537.48", + "value":"-25.37" + } + }, + { + "id":"978d5d2c-67e6-4d8d-8c9c-daf8e5951fdf", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T09:36:39.914Z", + "completed":"2017-12-05T09:36:39.914Z", + "new_balance":"1470.90", + "value":"-66.58" + } + }, + { + "id":"ec7e4a20-160d-4b48-bbf7-b7a99f03a566", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T17:53:25.486Z", + "completed":"2017-12-05T17:53:25.486Z", + "new_balance":"1444.06", + "value":"-26.84" + } + }, + { + "id":"f28341af-7a96-4068-906f-cb0e361f0d55", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T01:41:05.712Z", + "completed":"2017-12-18T01:41:05.712Z", + "new_balance":"1390.88", + "value":"-53.18" + } + }, + { + "id":"d4b0101b-f271-4084-9d2c-abb3113d83c7", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T03:25:59.134Z", + "completed":"2017-12-30T03:25:59.134Z", + "new_balance":"2579.39", + "value":"1188.51" + } + }, + { + "id":"261f5b83-7ad8-43bc-9886-ba172bb36114", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T06:48:41.544Z", + "completed":"2017-12-30T06:48:41.544Z", + "new_balance":"2544.96", + "value":"-34.43" + } + }, + { + "id":"cb4aae47-8279-4912-b7f5-b5b47248d793", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T06:54:45.442Z", + "completed":"2017-12-30T06:54:45.442Z", + "new_balance":"2502.62", + "value":"-42.34" + } + }, + { + "id":"27f3573c-0e46-4228-b57f-0e9af52852aa", + "this_account":{ + "id":"929a33ee-0364-4759-a538-24c3befc713c", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T15:59:36.851Z", + "completed":"2017-12-30T15:59:36.851Z", + "new_balance":"2461.09", + "value":"-41.53" + } + }, + { + "id":"6830a845-5f14-49ad-9ff2-5b22d679ea34", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T22:49:46.141Z", + "completed":"2016-03-01T22:49:46.141Z", + "new_balance":"8485.58", + "value":"-45.51" + } + }, + { + "id":"96cca96a-07e6-4e40-a3e5-64766c1e5972", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T07:04:02.486Z", + "completed":"2016-03-02T07:04:02.486Z", + "new_balance":"8411.65", + "value":"-73.93" + } + }, + { + "id":"b7b29775-812e-4f1b-a874-83400e367cc3", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T01:03:02.194Z", + "completed":"2016-03-06T01:03:02.194Z", + "new_balance":"8360.55", + "value":"-51.10" + } + }, + { + "id":"ea923735-e5c7-4f5d-baa2-326a281a27a2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T21:52:34.334Z", + "completed":"2016-03-11T21:52:34.334Z", + "new_balance":"8353.86", + "value":"-6.69" + } + }, + { + "id":"4c97a32e-d808-451e-8779-4adf399099d7", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T06:21:49.220Z", + "completed":"2016-03-13T06:21:49.220Z", + "new_balance":"8350.16", + "value":"-3.70" + } + }, + { + "id":"d88d24e4-7bf1-4386-b95a-1062e1e11b29", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T18:09:19.164Z", + "completed":"2016-03-16T18:09:19.164Z", + "new_balance":"8032.95", + "value":"-317.21" + } + }, + { + "id":"b0cca77c-aed0-4d01-884f-0db2829a0a5a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T03:56:55.769Z", + "completed":"2016-03-17T03:56:55.769Z", + "new_balance":"7869.47", + "value":"-163.48" + } + }, + { + "id":"4ae62ff0-2716-448b-9e04-68336b1e54b1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T12:27:41.018Z", + "completed":"2016-03-17T12:27:41.018Z", + "new_balance":"7827.13", + "value":"-42.34" + } + }, + { + "id":"1c2844bf-8bd0-4c22-9d4a-3ff8be9bd6e5", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T16:59:34.120Z", + "completed":"2016-03-19T16:59:34.120Z", + "new_balance":"7823.43", + "value":"-3.70" + } + }, + { + "id":"758f1ee4-ccb0-49b3-8c94-71aa73424832", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T20:38:24.567Z", + "completed":"2016-03-21T20:38:24.567Z", + "new_balance":"7803.85", + "value":"-19.58" + } + }, + { + "id":"5da8b1df-c108-46e0-904d-47e99db17a46", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T23:47:36.323Z", + "completed":"2016-03-23T23:47:36.323Z", + "new_balance":"7758.34", + "value":"-45.51" + } + }, + { + "id":"f287f10c-a342-4d05-ad37-1e51725d61f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T02:12:34.672Z", + "completed":"2016-03-24T02:12:34.672Z", + "new_balance":"7751.65", + "value":"-6.69" + } + }, + { + "id":"78a49b7c-2e6a-47cc-98f7-99494705cfc2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T16:34:58.905Z", + "completed":"2016-03-26T16:34:58.905Z", + "new_balance":"7738.64", + "value":"-13.01" + } + }, + { + "id":"4f437a5e-13ee-4974-a9e3-894c02e014d2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T19:23:04.028Z", + "completed":"2016-04-01T19:23:04.028Z", + "new_balance":"7725.63", + "value":"-13.01" + } + }, + { + "id":"2cb1fd4b-acbc-453d-b34a-0d35ea7d4886", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T07:04:16.085Z", + "completed":"2016-06-01T07:04:16.085Z", + "new_balance":"7680.12", + "value":"-45.51" + } + }, + { + "id":"e0ef1265-de92-42eb-a774-cb0e7e268a54", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T11:12:52.544Z", + "completed":"2016-06-04T11:12:52.544Z", + "new_balance":"7606.19", + "value":"-73.93" + } + }, + { + "id":"72f152d2-700a-4bd6-b6b9-bbc8eccb7f6e", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T10:55:47.467Z", + "completed":"2016-06-19T10:55:47.467Z", + "new_balance":"7555.09", + "value":"-51.10" + } + }, + { + "id":"6a4e5294-d1df-4b4e-ac1b-a08a5dae6398", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T14:33:45.291Z", + "completed":"2016-06-21T14:33:45.291Z", + "new_balance":"7548.40", + "value":"-6.69" + } + }, + { + "id":"e5125341-f228-4cf2-8ba7-f4d1495655f8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T08:49:34.475Z", + "completed":"2016-06-24T08:49:34.475Z", + "new_balance":"7544.70", + "value":"-3.70" + } + }, + { + "id":"141ebae4-2823-42c3-b666-e1eaa657be28", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T01:52:14.240Z", + "completed":"2016-06-28T01:52:14.240Z", + "new_balance":"7227.49", + "value":"-317.21" + } + }, + { + "id":"bb7b258f-4ad5-4618-84e8-a7cac5d63a0e", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T01:55:47.623Z", + "completed":"2016-06-28T01:55:47.623Z", + "new_balance":"7185.15", + "value":"-42.34" + } + }, + { + "id":"61fadf5e-05ce-49e3-80dd-c2cda62972c4", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T18:34:30.767Z", + "completed":"2016-06-28T18:34:30.767Z", + "new_balance":"7021.67", + "value":"-163.48" + } + }, + { + "id":"3ed467b5-8855-4236-95e2-ba5d275ad602", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T16:01:27.619Z", + "completed":"2016-06-29T16:01:27.619Z", + "new_balance":"7017.97", + "value":"-3.70" + } + }, + { + "id":"af52ea42-d28a-4f3c-b761-700256220008", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T09:38:14.370Z", + "completed":"2016-06-30T09:38:14.370Z", + "new_balance":"7011.28", + "value":"-6.69" + } + }, + { + "id":"c4faab2a-efd7-4508-8355-b1c83f6c8179", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T12:03:13.767Z", + "completed":"2016-06-30T12:03:13.767Z", + "new_balance":"6991.70", + "value":"-19.58" + } + }, + { + "id":"41bfb0bc-976c-445f-9c48-6e4bb72aad4f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T16:24:29.470Z", + "completed":"2016-06-30T16:24:29.470Z", + "new_balance":"6946.19", + "value":"-45.51" + } + }, + { + "id":"681c1a40-40aa-4fde-868d-8a014a80dc29", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T22:14:05.822Z", + "completed":"2016-09-01T22:14:05.822Z", + "new_balance":"6922.33", + "value":"-23.86" + } + }, + { + "id":"3f945e3e-a258-49e8-8b64-c6a8459fc2be", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T17:21:41.764Z", + "completed":"2016-09-02T17:21:41.764Z", + "new_balance":"6848.40", + "value":"-73.93" + } + }, + { + "id":"b61dd4d9-e5b1-47cc-b16f-4e2a8d9549c8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T22:27:28.860Z", + "completed":"2016-09-07T22:27:28.860Z", + "new_balance":"6797.30", + "value":"-51.10" + } + }, + { + "id":"43ba7330-83e2-405a-baee-65e85ec406d3", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T15:12:55.162Z", + "completed":"2016-09-11T15:12:55.162Z", + "new_balance":"6790.61", + "value":"-6.69" + } + }, + { + "id":"1c9f049d-7305-4fd8-ad61-5a2487d15095", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T15:41:41.062Z", + "completed":"2016-09-15T15:41:41.062Z", + "new_balance":"6779.70", + "value":"-10.91" + } + }, + { + "id":"d63a4d2c-d414-4796-9e23-b51c4906d9e5", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T00:53:35.569Z", + "completed":"2016-09-17T00:53:35.569Z", + "new_balance":"6462.49", + "value":"-317.21" + } + }, + { + "id":"cd90b861-716b-42c4-af9d-c61ca7c600f8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T10:40:58.261Z", + "completed":"2016-09-17T10:40:58.261Z", + "new_balance":"6299.01", + "value":"-163.48" + } + }, + { + "id":"cfb822b5-b348-4efc-952f-d5d9c90b0c2f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T21:05:33.203Z", + "completed":"2016-09-17T21:05:33.203Z", + "new_balance":"6256.67", + "value":"-42.34" + } + }, + { + "id":"c278a1c4-b7db-445f-8917-f85f3f6834f9", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T19:57:52.449Z", + "completed":"2016-09-19T19:57:52.449Z", + "new_balance":"6252.97", + "value":"-3.70" + } + }, + { + "id":"dbe2b996-33f2-4992-801d-964945459983", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T20:39:40.823Z", + "completed":"2016-09-21T20:39:40.823Z", + "new_balance":"6233.39", + "value":"-19.58" + } + }, + { + "id":"664a6c34-0aac-4518-83bd-a72d19807600", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T21:08:10.348Z", + "completed":"2016-09-23T21:08:10.348Z", + "new_balance":"6187.88", + "value":"-45.51" + } + }, + { + "id":"41149eaa-ed21-456b-80a3-0555fbb5f48d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T15:29:35.456Z", + "completed":"2016-09-24T15:29:35.456Z", + "new_balance":"6181.19", + "value":"-6.69" + } + }, + { + "id":"f3c745b9-f435-4889-9d60-2e9b55fe90f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T04:03:13.921Z", + "completed":"2016-09-27T04:03:13.921Z", + "new_balance":"6168.18", + "value":"-13.01" + } + }, + { + "id":"579256d6-4dbe-4344-b3b2-c4236a225747", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T03:17:38.750Z", + "completed":"2016-10-01T03:17:38.750Z", + "new_balance":"6155.17", + "value":"-13.01" + } + }, + { + "id":"d5f8d626-83d1-4dcd-8f3e-7f4394ae0c7a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T09:53:55.726Z", + "completed":"2016-12-01T09:53:55.726Z", + "new_balance":"6109.66", + "value":"-45.51" + } + }, + { + "id":"7cf08511-a882-47e8-8ed2-16f6e5b89835", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T05:41:37.484Z", + "completed":"2016-12-04T05:41:37.484Z", + "new_balance":"6035.73", + "value":"-73.93" + } + }, + { + "id":"05d74177-9942-4772-a680-94d1bb90bcbb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T12:50:23.831Z", + "completed":"2016-12-19T12:50:23.831Z", + "new_balance":"5984.63", + "value":"-51.10" + } + }, + { + "id":"0f20dbf8-74b3-4cb6-9a41-1c8bd1f922b0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T04:46:47.523Z", + "completed":"2016-12-24T04:46:47.523Z", + "new_balance":"5980.93", + "value":"-3.70" + } + }, + { + "id":"1bd1b0e5-7d0b-4ad1-aca2-f238d36bf6d2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T07:25:14.167Z", + "completed":"2016-12-24T07:25:14.167Z", + "new_balance":"5974.24", + "value":"-6.69" + } + }, + { + "id":"c89eafe7-ebc2-4da4-a1b8-e7593398d78f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T05:58:33.488Z", + "completed":"2016-12-28T05:58:33.488Z", + "new_balance":"5657.03", + "value":"-317.21" + } + }, + { + "id":"1011f8a0-b2a6-4b97-91b6-39b6f425a265", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T08:41:36.690Z", + "completed":"2016-12-28T08:41:36.690Z", + "new_balance":"5493.55", + "value":"-163.48" + } + }, + { + "id":"1f7ec20d-1a63-48f5-8486-09f2eeff18ef", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T16:33:21.444Z", + "completed":"2016-12-28T16:33:21.444Z", + "new_balance":"5451.21", + "value":"-42.34" + } + }, + { + "id":"c1eab08e-fdee-473e-979e-bea3ab69a70d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T16:01:55.239Z", + "completed":"2016-12-29T16:01:55.239Z", + "new_balance":"5447.51", + "value":"-3.70" + } + }, + { + "id":"fd96d5f1-b8dd-40e4-9759-e61300ae63ce", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T05:53:22.652Z", + "completed":"2016-12-30T05:53:22.652Z", + "new_balance":"5427.93", + "value":"-19.58" + } + }, + { + "id":"fa50d045-0c59-40bf-bbe8-c01c31d4edbb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T14:11:44.300Z", + "completed":"2016-12-30T14:11:44.300Z", + "new_balance":"5421.24", + "value":"-6.69" + } + }, + { + "id":"f17c4310-31a6-49fe-8ee7-831b6454ffa1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T14:41:35.579Z", + "completed":"2016-12-30T14:41:35.579Z", + "new_balance":"5375.73", + "value":"-45.51" + } + }, + { + "id":"5043bcb7-a696-46c7-811b-9fe79c8ba543", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T17:04:35.788Z", + "completed":"2017-03-01T17:04:35.788Z", + "new_balance":"5330.22", + "value":"-45.51" + } + }, + { + "id":"01fdee93-dfa3-4e5c-b388-70e9cf9d96e9", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T22:56:19.368Z", + "completed":"2017-03-02T22:56:19.368Z", + "new_balance":"5256.29", + "value":"-73.93" + } + }, + { + "id":"66d27592-1233-4d23-9c20-2625b5531799", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T04:12:32.908Z", + "completed":"2017-03-06T04:12:32.908Z", + "new_balance":"5205.19", + "value":"-51.10" + } + }, + { + "id":"d40346a5-5f04-4a1c-a06c-c222410d55f0", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T05:53:35.813Z", + "completed":"2017-03-11T05:53:35.813Z", + "new_balance":"5198.50", + "value":"-6.69" + } + }, + { + "id":"c8913675-14b8-40ac-b13d-104c92a049e2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T09:50:02.854Z", + "completed":"2017-03-13T09:50:02.854Z", + "new_balance":"5194.80", + "value":"-3.70" + } + }, + { + "id":"018406c5-8708-4338-9d7a-e4f921cbc22d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T10:01:42.481Z", + "completed":"2017-03-16T10:01:42.481Z", + "new_balance":"4877.59", + "value":"-317.21" + } + }, + { + "id":"9dba0d69-3299-4849-836e-818510eaa44f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T03:28:41.200Z", + "completed":"2017-03-17T03:28:41.200Z", + "new_balance":"4835.25", + "value":"-42.34" + } + }, + { + "id":"9c7b27b2-7b2a-435e-a17a-ef98f319b274", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T09:16:51.890Z", + "completed":"2017-03-17T09:16:51.890Z", + "new_balance":"4671.77", + "value":"-163.48" + } + }, + { + "id":"00bb5159-e41c-4a7f-aca9-545b41dd4655", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T08:27:39.056Z", + "completed":"2017-03-19T08:27:39.056Z", + "new_balance":"4668.07", + "value":"-3.70" + } + }, + { + "id":"9a1725c1-10b4-4302-8f6a-9f05f91a641c", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T15:31:25.637Z", + "completed":"2017-03-21T15:31:25.637Z", + "new_balance":"4648.49", + "value":"-19.58" + } + }, + { + "id":"2d24828a-fcfe-4fb6-bfd0-86e0a4ff7b39", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T06:57:23.894Z", + "completed":"2017-03-23T06:57:23.894Z", + "new_balance":"4602.98", + "value":"-45.51" + } + }, + { + "id":"70040218-0198-49fc-9d4f-2bc10275e8ea", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T19:21:23.930Z", + "completed":"2017-03-24T19:21:23.930Z", + "new_balance":"4596.29", + "value":"-6.69" + } + }, + { + "id":"190c1820-e196-4355-bece-f628bdb5b45a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T01:53:42.615Z", + "completed":"2017-03-26T01:53:42.615Z", + "new_balance":"4583.28", + "value":"-13.01" + } + }, + { + "id":"8764df32-ff94-44ef-970b-031e85300f59", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T06:26:03.043Z", + "completed":"2017-04-01T06:26:03.043Z", + "new_balance":"4570.27", + "value":"-13.01" + } + }, + { + "id":"bc064bb1-775f-4f9f-9e4b-eada562ef65a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T18:56:24.985Z", + "completed":"2017-06-01T18:56:24.985Z", + "new_balance":"4524.76", + "value":"-45.51" + } + }, + { + "id":"bd8a4e54-d702-4a33-8afb-72466f0a4005", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T09:18:09.725Z", + "completed":"2017-06-04T09:18:09.725Z", + "new_balance":"4450.83", + "value":"-73.93" + } + }, + { + "id":"0082f1d2-fc64-422d-81dd-f77407b13d76", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T12:24:43.621Z", + "completed":"2017-06-19T12:24:43.621Z", + "new_balance":"4399.73", + "value":"-51.10" + } + }, + { + "id":"0113643d-f061-4b27-903e-8ccaaa0132bb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T15:16:01.082Z", + "completed":"2017-06-21T15:16:01.082Z", + "new_balance":"4393.04", + "value":"-6.69" + } + }, + { + "id":"1f45252b-c449-48fc-93e3-c7fcfed87081", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T07:23:38.864Z", + "completed":"2017-06-24T07:23:38.864Z", + "new_balance":"4389.34", + "value":"-3.70" + } + }, + { + "id":"43db99f8-28cc-42ea-b19b-678bb0a793e4", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T02:51:48.383Z", + "completed":"2017-06-28T02:51:48.383Z", + "new_balance":"4347.00", + "value":"-42.34" + } + }, + { + "id":"0359604e-5593-454f-8edc-ca71deb42d39", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T06:00:35.887Z", + "completed":"2017-06-28T06:00:35.887Z", + "new_balance":"4029.79", + "value":"-317.21" + } + }, + { + "id":"eccaa2a1-8221-4bc0-97b1-aa31b0ddf684", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T14:00:05.642Z", + "completed":"2017-06-28T14:00:05.642Z", + "new_balance":"3866.31", + "value":"-163.48" + } + }, + { + "id":"58b55bc9-f81c-4dfd-b771-85cb9d47616d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T08:47:43.368Z", + "completed":"2017-06-29T08:47:43.368Z", + "new_balance":"3862.61", + "value":"-3.70" + } + }, + { + "id":"a222b7b1-43d1-4fc9-ac2a-e4acbd44a4bc", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T08:02:44.974Z", + "completed":"2017-06-30T08:02:44.974Z", + "new_balance":"3843.03", + "value":"-19.58" + } + }, + { + "id":"b7ebc730-5e66-4514-a09a-e62a46fe522d", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T18:54:49.356Z", + "completed":"2017-06-30T18:54:49.356Z", + "new_balance":"3836.34", + "value":"-6.69" + } + }, + { + "id":"b18c55f2-f6ed-47ea-8a86-f3d4ce285eee", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T22:29:45.097Z", + "completed":"2017-06-30T22:29:45.097Z", + "new_balance":"3790.83", + "value":"-45.51" + } + }, + { + "id":"f03b87fa-af7d-4b07-bcda-96cfbfe0bff2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T05:22:41.003Z", + "completed":"2017-09-01T05:22:41.003Z", + "new_balance":"3766.97", + "value":"-23.86" + } + }, + { + "id":"26488fba-1ade-49d1-83ba-371cafec0908", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T21:40:20.764Z", + "completed":"2017-09-02T21:40:20.764Z", + "new_balance":"3693.04", + "value":"-73.93" + } + }, + { + "id":"4a131526-6d04-4c52-bb75-cba0a129cca8", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T00:27:00.008Z", + "completed":"2017-09-07T00:27:00.008Z", + "new_balance":"3641.94", + "value":"-51.10" + } + }, + { + "id":"eba9f41d-83a0-4311-881e-1a4053dcc72a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T16:57:46.820Z", + "completed":"2017-09-11T16:57:46.820Z", + "new_balance":"3635.25", + "value":"-6.69" + } + }, + { + "id":"a9c2a0bc-5951-42d4-858f-ed81632074ae", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T08:04:55.242Z", + "completed":"2017-09-15T08:04:55.242Z", + "new_balance":"3624.34", + "value":"-10.91" + } + }, + { + "id":"abb8da83-b384-4842-a8da-ac8e53eac4d7", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T00:46:58.869Z", + "completed":"2017-09-17T00:46:58.869Z", + "new_balance":"3582.00", + "value":"-42.34" + } + }, + { + "id":"ae6ad642-4894-43a2-92d9-6a3225d240ff", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T09:33:13.865Z", + "completed":"2017-09-17T09:33:13.865Z", + "new_balance":"3418.52", + "value":"-163.48" + } + }, + { + "id":"b7b4e0cc-7456-4278-b83c-e2059cb31f68", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T11:23:30.670Z", + "completed":"2017-09-17T11:23:30.670Z", + "new_balance":"3101.31", + "value":"-317.21" + } + }, + { + "id":"3dfde0d4-b3e7-4124-a61b-3d257d7c1578", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T18:00:30.708Z", + "completed":"2017-09-19T18:00:30.708Z", + "new_balance":"3097.61", + "value":"-3.70" + } + }, + { + "id":"2d10b2b3-4e3e-46fa-b9dc-d3ba29597177", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T00:17:38.449Z", + "completed":"2017-09-21T00:17:38.449Z", + "new_balance":"3078.03", + "value":"-19.58" + } + }, + { + "id":"67e9ff07-47e8-40f0-b198-48ae2e4ca42a", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T02:09:28.502Z", + "completed":"2017-09-23T02:09:28.502Z", + "new_balance":"3032.52", + "value":"-45.51" + } + }, + { + "id":"be7dec8b-ca22-4472-ad3e-2b8daaff54c1", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T14:34:42.795Z", + "completed":"2017-09-24T14:34:42.795Z", + "new_balance":"3025.83", + "value":"-6.69" + } + }, + { + "id":"85fb9f29-df70-4392-b68f-b9954e97ba74", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T23:45:25.474Z", + "completed":"2017-09-27T23:45:25.474Z", + "new_balance":"3012.82", + "value":"-13.01" + } + }, + { + "id":"72682eb3-858f-45c5-8730-6e833e7f6511", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T11:24:42.458Z", + "completed":"2017-10-01T11:24:42.458Z", + "new_balance":"2999.81", + "value":"-13.01" + } + }, + { + "id":"fbdea3eb-b488-4f54-805e-65bd2eaae1df", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T05:49:04.430Z", + "completed":"2017-12-01T05:49:04.430Z", + "new_balance":"2954.30", + "value":"-45.51" + } + }, + { + "id":"a7328416-37bc-4318-9fd1-055f3058fcb2", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T06:03:22.630Z", + "completed":"2017-12-04T06:03:22.630Z", + "new_balance":"2880.37", + "value":"-73.93" + } + }, + { + "id":"f5137ff3-36bc-4639-8fec-d081828a7987", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T15:46:08.932Z", + "completed":"2017-12-19T15:46:08.932Z", + "new_balance":"2829.27", + "value":"-51.10" + } + }, + { + "id":"40dc33b5-aade-402f-802b-ee165f8d7f4f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T00:11:51.855Z", + "completed":"2017-12-24T00:11:51.855Z", + "new_balance":"2825.57", + "value":"-3.70" + } + }, + { + "id":"1e524f7f-2955-481f-9b3b-10cf42b95094", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T06:52:54.410Z", + "completed":"2017-12-24T06:52:54.410Z", + "new_balance":"2818.88", + "value":"-6.69" + } + }, + { + "id":"91184b0e-d45c-4de0-aa4f-ea6db7c7a9ba", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Goldsmith" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T01:10:10.597Z", + "completed":"2017-12-28T01:10:10.597Z", + "new_balance":"2501.67", + "value":"-317.21" + } + }, + { + "id":"faf5b9eb-073e-4f4c-9ca8-62a8dc3a52fb", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T19:43:26.504Z", + "completed":"2017-12-28T19:43:26.504Z", + "new_balance":"2459.33", + "value":"-42.34" + } + }, + { + "id":"e983e37a-7974-4be1-9b31-f17371d89d5f", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T22:07:24.234Z", + "completed":"2017-12-28T22:07:24.234Z", + "new_balance":"2295.85", + "value":"-163.48" + } + }, + { + "id":"6dae1747-d469-4574-b046-2aef83fe9a51", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T21:28:42.979Z", + "completed":"2017-12-29T21:28:42.979Z", + "new_balance":"2292.15", + "value":"-3.70" + } + }, + { + "id":"395a9392-18ce-4cdc-bebb-b7912afe1970", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T05:54:59.303Z", + "completed":"2017-12-30T05:54:59.303Z", + "new_balance":"2272.57", + "value":"-19.58" + } + }, + { + "id":"1a25d599-c282-4dee-919b-1b32228973cd", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T10:52:34.652Z", + "completed":"2017-12-30T10:52:34.652Z", + "new_balance":"2227.06", + "value":"-45.51" + } + }, + { + "id":"d6cedf87-c360-4a6a-bd7b-a56b6d47e133", + "this_account":{ + "id":"9ae6ca0c-6d53-4e8e-8937-999357f6ffbe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T11:54:50.264Z", + "completed":"2017-12-30T11:54:50.264Z", + "new_balance":"2220.37", + "value":"-6.69" + } + }, + { + "id":"a8ad0b93-4113-432f-a8f3-fdd9e189098c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T10:30:15.950Z", + "completed":"2016-03-01T10:30:15.950Z", + "new_balance":"8482.69", + "value":"-317.21" + } + }, + { + "id":"a2b8598f-24a2-4f56-8aa0-ab4d76a5ba27", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T11:30:00.744Z", + "completed":"2016-03-01T11:30:00.744Z", + "new_balance":"7750.84", + "value":"-731.85" + } + }, + { + "id":"46a989cf-3632-4e2c-b625-e654ef2911ad", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T11:33:12.726Z", + "completed":"2016-03-01T11:33:12.726Z", + "new_balance":"4057.07", + "value":"-3693.77" + } + }, + { + "id":"6580597d-a796-4e8e-96ef-b799e56f7575", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T12:34:07.882Z", + "completed":"2016-03-01T12:34:07.882Z", + "new_balance":"1425.86", + "value":"-2631.21" + } + }, + { + "id":"393e8d54-ee62-46ea-ad44-09288e126217", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T12:52:33.379Z", + "completed":"2016-03-01T12:52:33.379Z", + "new_balance":"1262.38", + "value":"-163.48" + } + }, + { + "id":"ade9268c-ff40-45ca-9a6e-a0a413a46ffc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T13:57:02.899Z", + "completed":"2016-03-01T13:57:02.899Z", + "new_balance":"1064.47", + "value":"-197.91" + } + }, + { + "id":"9fec042d-fc96-4438-b169-70a56dd80c19", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T09:18:28.990Z", + "completed":"2016-03-12T09:18:28.990Z", + "new_balance":"1011.29", + "value":"-53.18" + } + }, + { + "id":"e3162720-b9b2-432b-b783-f13e8174c6de", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:21:24.140Z", + "completed":"2016-03-12T16:21:24.140Z", + "new_balance":"279.44", + "value":"-731.85" + } + }, + { + "id":"2d793af3-441a-4d8f-b245-ba69f7585d00", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T16:57:28.798Z", + "completed":"2016-03-12T16:57:28.798Z", + "new_balance":"-37.77", + "value":"-317.21" + } + }, + { + "id":"745b439c-56e6-40d2-8ecd-7d95e2df1d7c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:04:43.629Z", + "completed":"2016-03-12T20:04:43.629Z", + "new_balance":"-84.67", + "value":"-46.90" + } + }, + { + "id":"7251b916-eb7c-48ef-9fff-53e3ff19317e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T06:58:48.452Z", + "completed":"2016-03-14T06:58:48.452Z", + "new_balance":"1806.65", + "value":"1891.32" + } + }, + { + "id":"a1812a5a-003b-4d80-ab37-69d72dfe4cbc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T08:14:51.287Z", + "completed":"2016-03-15T08:14:51.287Z", + "new_balance":"2034.04", + "value":"227.39" + } + }, + { + "id":"cc2cf047-6e2f-4204-9117-e3e559d87cab", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T16:02:55.795Z", + "completed":"2016-03-16T16:02:55.795Z", + "new_balance":"2935.02", + "value":"900.98" + } + }, + { + "id":"b9d898f5-a4ca-44c0-a2b6-d853925b4630", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T14:03:38.467Z", + "completed":"2016-03-17T14:03:38.467Z", + "new_balance":"2855.94", + "value":"-79.08" + } + }, + { + "id":"47d6474a-7c15-420a-9c4f-01d8880bded8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T17:36:26.471Z", + "completed":"2016-03-17T17:36:26.471Z", + "new_balance":"2804.84", + "value":"-51.10" + } + }, + { + "id":"9e0dfe9b-793c-4301-a05e-5edb1d3e3acd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T09:44:01.922Z", + "completed":"2016-03-19T09:44:01.922Z", + "new_balance":"3254.84", + "value":"450.00" + } + }, + { + "id":"3e01577f-f36c-40ed-a4f4-968d69112cc0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T00:18:24.020Z", + "completed":"2016-03-21T00:18:24.020Z", + "new_balance":"3180.91", + "value":"-73.93" + } + }, + { + "id":"7cbe72d1-8f19-4836-885e-c9a50a437abe", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T21:18:41.183Z", + "completed":"2016-03-21T21:18:41.183Z", + "new_balance":"3242.16", + "value":"61.25" + } + }, + { + "id":"f8a8459e-9824-41a1-ae43-3be074e54f84", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T05:16:32.292Z", + "completed":"2016-03-24T05:16:32.292Z", + "new_balance":"2715.60", + "value":"-526.56" + } + }, + { + "id":"b5d081c5-99ed-4a74-bdc1-b59a70a7c5bd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T06:39:10.339Z", + "completed":"2016-03-24T06:39:10.339Z", + "new_balance":"2942.99", + "value":"227.39" + } + }, + { + "id":"39ab0726-aadf-4ca7-aec7-0684a99ec35e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T03:42:55.179Z", + "completed":"2016-03-25T03:42:55.179Z", + "new_balance":"3396.64", + "value":"453.65" + } + }, + { + "id":"492be768-6923-44e7-9821-db8276b1a316", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:52:13.202Z", + "completed":"2016-03-25T05:52:13.202Z", + "new_balance":"2729.49", + "value":"-667.15" + } + }, + { + "id":"e7b38e53-ba88-4006-88a4-1fc79e0a4646", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T10:56:45.386Z", + "completed":"2016-03-28T10:56:45.386Z", + "new_balance":"5812.36", + "value":"3082.87" + } + }, + { + "id":"0318ee9f-f394-4b97-97a4-9ee8f0ac9924", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T11:56:53.150Z", + "completed":"2016-03-28T11:56:53.150Z", + "new_balance":"7703.68", + "value":"1891.32" + } + }, + { + "id":"76321ffd-8d10-453f-84cd-982f6657459f", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T22:00:10.385Z", + "completed":"2016-03-30T22:00:10.385Z", + "new_balance":"7931.07", + "value":"227.39" + } + }, + { + "id":"5c706920-aa9b-40b8-997f-24b987b3eacd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T23:41:26.406Z", + "completed":"2016-03-30T23:41:26.406Z", + "new_balance":"8158.69", + "value":"227.62" + } + }, + { + "id":"02b5455e-fbc3-4061-886e-2d665f362139", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T00:38:39.727Z", + "completed":"2016-06-01T00:38:39.727Z", + "new_balance":"7426.84", + "value":"-731.85" + } + }, + { + "id":"82e98c02-7aca-4e51-983f-f218a7e01ef8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T02:14:55.105Z", + "completed":"2016-06-01T02:14:55.105Z", + "new_balance":"3733.07", + "value":"-3693.77" + } + }, + { + "id":"c0ee7e8d-e534-4aca-9d4d-307110f208a0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T03:43:42.439Z", + "completed":"2016-06-01T03:43:42.439Z", + "new_balance":"3415.86", + "value":"-317.21" + } + }, + { + "id":"be930a8a-65ba-4de9-8fc0-a8605db16b28", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T07:10:26.931Z", + "completed":"2016-06-01T07:10:26.931Z", + "new_balance":"3217.95", + "value":"-197.91" + } + }, + { + "id":"00ef5eda-4154-4f6f-95ed-4902abedbdc7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T09:20:20.806Z", + "completed":"2016-06-01T09:20:20.806Z", + "new_balance":"3054.47", + "value":"-163.48" + } + }, + { + "id":"42959088-9baa-4b75-9979-d43aeb4b6ba0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T15:57:35.536Z", + "completed":"2016-06-01T15:57:35.536Z", + "new_balance":"423.26", + "value":"-2631.21" + } + }, + { + "id":"32fc8d9c-22ba-44d2-9f2e-7df4d565675e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:25:55.229Z", + "completed":"2016-06-04T15:25:55.229Z", + "new_balance":"376.36", + "value":"-46.90" + } + }, + { + "id":"9d9c883d-ef12-4f22-9930-8151c7a29e8c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T20:17:28.824Z", + "completed":"2016-06-04T20:17:28.824Z", + "new_balance":"323.18", + "value":"-53.18" + } + }, + { + "id":"08d4c391-362f-4c9c-ae62-f7bf208fc871", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T10:11:54.879Z", + "completed":"2016-06-05T10:11:54.879Z", + "new_balance":"-408.67", + "value":"-731.85" + } + }, + { + "id":"b7f5cc40-b582-4721-a468-b89e7783f737", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T20:32:35.792Z", + "completed":"2016-06-05T20:32:35.792Z", + "new_balance":"-725.88", + "value":"-317.21" + } + }, + { + "id":"aca912a5-be14-4814-a1b9-23012fd096ba", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:47:47.640Z", + "completed":"2016-06-07T00:47:47.640Z", + "new_balance":"1165.44", + "value":"1891.32" + } + }, + { + "id":"c337f2d0-9cdb-48b3-be3c-bcc5ec4f7d92", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T06:26:47.143Z", + "completed":"2016-06-07T06:26:47.143Z", + "new_balance":"1114.34", + "value":"-51.10" + } + }, + { + "id":"b1505923-1e29-4fbb-85c6-e626db528b93", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:53:02.592Z", + "completed":"2016-06-07T11:53:02.592Z", + "new_balance":"2015.32", + "value":"900.98" + } + }, + { + "id":"1fdaed84-9ff9-425a-95f3-766f9bf62dc9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T23:45:38.505Z", + "completed":"2016-06-07T23:45:38.505Z", + "new_balance":"2242.71", + "value":"227.39" + } + }, + { + "id":"12a4b48e-a5d7-400f-9834-dd638fcad91c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T15:11:49.838Z", + "completed":"2016-06-11T15:11:49.838Z", + "new_balance":"2163.63", + "value":"-79.08" + } + }, + { + "id":"55e0718b-fe7b-4c61-a259-af0e7b7ec9e4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T15:59:20.103Z", + "completed":"2016-06-14T15:59:20.103Z", + "new_balance":"2224.88", + "value":"61.25" + } + }, + { + "id":"cbccb2fd-916a-4ae0-aa2a-e7b33107c06c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:07:32.690Z", + "completed":"2016-06-14T17:07:32.690Z", + "new_balance":"2150.95", + "value":"-73.93" + } + }, + { + "id":"68abf690-bd3e-4e7a-b337-b5b99c136fc5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:55:07.040Z", + "completed":"2016-06-14T17:55:07.040Z", + "new_balance":"2600.95", + "value":"450.00" + } + }, + { + "id":"cd2cff3a-32c7-4c3d-b775-9cb536c10b26", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T11:36:36.167Z", + "completed":"2016-06-16T11:36:36.167Z", + "new_balance":"2828.34", + "value":"227.39" + } + }, + { + "id":"27443459-a1c0-42ec-aae3-60239a7a5498", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T12:03:08.334Z", + "completed":"2016-06-16T12:03:08.334Z", + "new_balance":"2301.78", + "value":"-526.56" + } + }, + { + "id":"dce3ade5-e456-4a36-9da7-c79cfd652377", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T00:07:34.924Z", + "completed":"2016-06-21T00:07:34.924Z", + "new_balance":"2755.43", + "value":"453.65" + } + }, + { + "id":"d2a19140-c10f-46ac-91a6-0e7f5a3717bd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T09:40:21.221Z", + "completed":"2016-06-21T09:40:21.221Z", + "new_balance":"4646.75", + "value":"1891.32" + } + }, + { + "id":"1133a554-2963-4175-a8d2-c4c139f9e8f5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T15:28:11.641Z", + "completed":"2016-06-21T15:28:11.641Z", + "new_balance":"3979.60", + "value":"-667.15" + } + }, + { + "id":"82716558-9a8d-4ad3-a9e6-110766d53fcd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:12:25.267Z", + "completed":"2016-06-21T23:12:25.267Z", + "new_balance":"7062.47", + "value":"3082.87" + } + }, + { + "id":"3c043176-ea2e-4f76-beec-86b27c32dc8a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T00:47:17.653Z", + "completed":"2016-06-30T00:47:17.653Z", + "new_balance":"7289.86", + "value":"227.39" + } + }, + { + "id":"2924bd0d-f870-4a47-92ea-9fb2ba0d1a2b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T20:37:10.488Z", + "completed":"2016-06-30T20:37:10.488Z", + "new_balance":"7517.48", + "value":"227.62" + } + }, + { + "id":"952b8bb9-39ac-4127-97c9-1e708951da42", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T02:25:29.512Z", + "completed":"2016-09-01T02:25:29.512Z", + "new_balance":"4886.27", + "value":"-2631.21" + } + }, + { + "id":"2f304f10-6eea-42b8-a0cd-f9ac74ce554f", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T03:19:29.987Z", + "completed":"2016-09-01T03:19:29.987Z", + "new_balance":"4569.06", + "value":"-317.21" + } + }, + { + "id":"88c4d71f-d355-4a3e-bdef-b8c3aa5d4c1d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T09:37:08.644Z", + "completed":"2016-09-01T09:37:08.644Z", + "new_balance":"4371.15", + "value":"-197.91" + } + }, + { + "id":"978b337f-18dc-493e-87c4-bc1e99cf6cbc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T16:18:06.632Z", + "completed":"2016-09-01T16:18:06.632Z", + "new_balance":"4207.67", + "value":"-163.48" + } + }, + { + "id":"1753a1d1-3299-429c-ac57-7d38fc116ad1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T20:10:34.051Z", + "completed":"2016-09-01T20:10:34.051Z", + "new_balance":"3475.82", + "value":"-731.85" + } + }, + { + "id":"cc816ddf-fee9-47a9-b092-2b7aec658d71", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T21:18:27.031Z", + "completed":"2016-09-01T21:18:27.031Z", + "new_balance":"-217.95", + "value":"-3693.77" + } + }, + { + "id":"cad09138-0ed8-434f-ae66-a406b8565eaa", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T00:04:25.121Z", + "completed":"2016-09-12T00:04:25.121Z", + "new_balance":"-535.16", + "value":"-317.21" + } + }, + { + "id":"a197d524-4ba8-4efa-b43e-29a54e7ae211", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T16:07:34.462Z", + "completed":"2016-09-12T16:07:34.462Z", + "new_balance":"-588.34", + "value":"-53.18" + } + }, + { + "id":"2131fc03-8ad3-4a1c-9463-bbbe3cb6cd11", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T17:15:12.340Z", + "completed":"2016-09-12T17:15:12.340Z", + "new_balance":"-1320.19", + "value":"-731.85" + } + }, + { + "id":"fd67a4c4-3270-4569-9f0b-7b6554a345eb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T18:58:56.592Z", + "completed":"2016-09-12T18:58:56.592Z", + "new_balance":"-1367.09", + "value":"-46.90" + } + }, + { + "id":"3666fd90-13ec-4872-be0d-2b7a549bdfd9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:56:31.694Z", + "completed":"2016-09-15T01:56:31.694Z", + "new_balance":"524.23", + "value":"1891.32" + } + }, + { + "id":"80e093c2-53d0-4c82-b423-8e6c741b0e03", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:21:41.337Z", + "completed":"2016-09-15T02:21:41.337Z", + "new_balance":"751.62", + "value":"227.39" + } + }, + { + "id":"95348171-61db-41f3-a77f-439535bae449", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:16:39.763Z", + "completed":"2016-09-17T19:16:39.763Z", + "new_balance":"1652.60", + "value":"900.98" + } + }, + { + "id":"02bcd13b-3046-4046-b370-d8cf7fa34f41", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:51:22.089Z", + "completed":"2016-09-17T20:51:22.089Z", + "new_balance":"1573.52", + "value":"-79.08" + } + }, + { + "id":"5e0bcba2-ceb9-4034-8993-f25591eeb888", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:55:09.261Z", + "completed":"2016-09-17T20:55:09.261Z", + "new_balance":"1522.42", + "value":"-51.10" + } + }, + { + "id":"6c9ba67e-3613-45d0-9307-fcae102e4a6b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T09:35:34.612Z", + "completed":"2016-09-19T09:35:34.612Z", + "new_balance":"1972.42", + "value":"450.00" + } + }, + { + "id":"b159bfcc-d2f1-447b-8745-471e52906f1e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T12:02:37.482Z", + "completed":"2016-09-21T12:02:37.482Z", + "new_balance":"1898.49", + "value":"-73.93" + } + }, + { + "id":"da6b7ff8-e0bd-4d2b-82e3-08e0c3fc576b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T18:04:42.659Z", + "completed":"2016-09-21T18:04:42.659Z", + "new_balance":"1959.74", + "value":"61.25" + } + }, + { + "id":"2f337cad-9927-42ef-9b48-1196c97085b7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T17:23:01.009Z", + "completed":"2016-09-24T17:23:01.009Z", + "new_balance":"1433.18", + "value":"-526.56" + } + }, + { + "id":"46e83e18-e474-4ec2-83f8-58d8db480e56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T22:28:49.926Z", + "completed":"2016-09-24T22:28:49.926Z", + "new_balance":"1660.57", + "value":"227.39" + } + }, + { + "id":"6a521a35-4c55-4fb5-a534-207a6face3d0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T09:20:35.177Z", + "completed":"2016-09-25T09:20:35.177Z", + "new_balance":"2114.22", + "value":"453.65" + } + }, + { + "id":"e06d4bca-785b-4e6a-b839-193b7ab05e89", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T18:39:01.976Z", + "completed":"2016-09-25T18:39:01.976Z", + "new_balance":"1447.07", + "value":"-667.15" + } + }, + { + "id":"b240c95a-02ca-478e-bd66-899f7b704f96", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T12:43:57.433Z", + "completed":"2016-09-28T12:43:57.433Z", + "new_balance":"4529.94", + "value":"3082.87" + } + }, + { + "id":"38fd7f27-6d0d-4972-921b-eb375c68e1c9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T16:31:52.490Z", + "completed":"2016-09-28T16:31:52.490Z", + "new_balance":"6421.26", + "value":"1891.32" + } + }, + { + "id":"0a71798c-c5f5-46b3-8444-b4920696b690", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T05:29:35.583Z", + "completed":"2016-09-30T05:29:35.583Z", + "new_balance":"6648.65", + "value":"227.39" + } + }, + { + "id":"de0d53fb-a320-4229-b1d7-5bfbaf6267f1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T19:18:44.241Z", + "completed":"2016-09-30T19:18:44.241Z", + "new_balance":"6876.27", + "value":"227.62" + } + }, + { + "id":"2f45d992-6e54-4979-a449-0ce4d8b43c53", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T01:57:15.796Z", + "completed":"2016-12-01T01:57:15.796Z", + "new_balance":"6712.79", + "value":"-163.48" + } + }, + { + "id":"e87dfca1-1b92-483b-a4dc-61b3d2c0d55a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T04:45:11.674Z", + "completed":"2016-12-01T04:45:11.674Z", + "new_balance":"6514.88", + "value":"-197.91" + } + }, + { + "id":"c4bea690-19bd-4fe1-9a25-9f539e881019", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T06:31:47.462Z", + "completed":"2016-12-01T06:31:47.462Z", + "new_balance":"3883.67", + "value":"-2631.21" + } + }, + { + "id":"02f15824-af41-4d9c-a1b8-8cdf600f9154", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T12:05:34.282Z", + "completed":"2016-12-01T12:05:34.282Z", + "new_balance":"189.90", + "value":"-3693.77" + } + }, + { + "id":"0357ba8a-2ccf-4cc8-8cbc-9ec3de77f0af", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T14:31:58.174Z", + "completed":"2016-12-01T14:31:58.174Z", + "new_balance":"-541.95", + "value":"-731.85" + } + }, + { + "id":"03189b85-d6a8-431e-92a5-6a2749cda969", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T20:52:45.674Z", + "completed":"2016-12-01T20:52:45.674Z", + "new_balance":"-859.16", + "value":"-317.21" + } + }, + { + "id":"007baa86-c79a-47ef-9522-fb952d705efb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:04:48.707Z", + "completed":"2016-12-04T07:04:48.707Z", + "new_balance":"-906.06", + "value":"-46.90" + } + }, + { + "id":"882f06df-2d8d-474d-98cf-1e0171da7c5e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T11:47:47.436Z", + "completed":"2016-12-04T11:47:47.436Z", + "new_balance":"-959.24", + "value":"-53.18" + } + }, + { + "id":"290573df-dcf9-4da8-bf9e-e312a5690198", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T05:19:36.219Z", + "completed":"2016-12-05T05:19:36.219Z", + "new_balance":"-1276.45", + "value":"-317.21" + } + }, + { + "id":"b2272a4d-48e3-452a-bf1c-bfc84dd48eec", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T08:02:36.752Z", + "completed":"2016-12-05T08:02:36.752Z", + "new_balance":"-2008.30", + "value":"-731.85" + } + }, + { + "id":"ac961d02-995a-43d4-af6f-e0192fb79999", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T02:27:30.308Z", + "completed":"2016-12-07T02:27:30.308Z", + "new_balance":"-2059.40", + "value":"-51.10" + } + }, + { + "id":"9da7a060-9d92-49b9-ac1c-36a959b74e61", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T15:50:07.273Z", + "completed":"2016-12-07T15:50:07.273Z", + "new_balance":"-1158.42", + "value":"900.98" + } + }, + { + "id":"74dff5ee-6e4c-4af9-8697-15f625abe87c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T19:52:23.928Z", + "completed":"2016-12-07T19:52:23.928Z", + "new_balance":"732.90", + "value":"1891.32" + } + }, + { + "id":"f52a4b55-63fd-440c-a2ef-8c3ed58eb751", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T23:52:43.346Z", + "completed":"2016-12-07T23:52:43.346Z", + "new_balance":"960.29", + "value":"227.39" + } + }, + { + "id":"4d39edf1-c6e2-491a-826c-f634177b6fe0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T21:59:01.821Z", + "completed":"2016-12-11T21:59:01.821Z", + "new_balance":"881.21", + "value":"-79.08" + } + }, + { + "id":"05e67fde-2620-482b-8353-4ec994152732", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:59:25.677Z", + "completed":"2016-12-14T01:59:25.677Z", + "new_balance":"942.46", + "value":"61.25" + } + }, + { + "id":"54e132eb-d1ca-4ca3-96f2-53c377eb1c96", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T07:32:52.744Z", + "completed":"2016-12-14T07:32:52.744Z", + "new_balance":"1392.46", + "value":"450.00" + } + }, + { + "id":"2ca80565-1448-4833-bb1d-0ac660df4d81", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T20:42:46.236Z", + "completed":"2016-12-14T20:42:46.236Z", + "new_balance":"1318.53", + "value":"-73.93" + } + }, + { + "id":"d9af8aa0-57b2-45bf-997e-f2ec5da526cc", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:35:46.385Z", + "completed":"2016-12-16T06:35:46.385Z", + "new_balance":"791.97", + "value":"-526.56" + } + }, + { + "id":"add2dd1b-45f6-497a-8942-1aafdb7ee2f4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T10:18:45.684Z", + "completed":"2016-12-16T10:18:45.684Z", + "new_balance":"1019.36", + "value":"227.39" + } + }, + { + "id":"1e5212dd-a284-47d3-a73e-018fb6cac82c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T05:40:34.773Z", + "completed":"2016-12-21T05:40:34.773Z", + "new_balance":"2910.68", + "value":"1891.32" + } + }, + { + "id":"cc556ebb-4100-4309-9fc6-8e5d0b41234d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:02:59.403Z", + "completed":"2016-12-21T08:02:59.403Z", + "new_balance":"3364.33", + "value":"453.65" + } + }, + { + "id":"0d4f8b5c-7e9c-47f8-82a6-7ad3412dae0c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T20:40:46.024Z", + "completed":"2016-12-21T20:40:46.024Z", + "new_balance":"6447.20", + "value":"3082.87" + } + }, + { + "id":"2625e215-0f45-40f2-8a0e-c0d890d69cbb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T23:15:44.622Z", + "completed":"2016-12-21T23:15:44.622Z", + "new_balance":"5780.05", + "value":"-667.15" + } + }, + { + "id":"8c56858d-ac8f-490c-b0a0-f645e19c7439", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T05:54:15.215Z", + "completed":"2016-12-30T05:54:15.215Z", + "new_balance":"6007.67", + "value":"227.62" + } + }, + { + "id":"3b74c34d-31d4-4bb5-8cf1-9c81eb1b6921", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T08:10:17.171Z", + "completed":"2016-12-30T08:10:17.171Z", + "new_balance":"6235.06", + "value":"227.39" + } + }, + { + "id":"1932a184-15b1-4ae8-8ea8-978360b4aa57", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T00:28:49.477Z", + "completed":"2017-03-01T00:28:49.477Z", + "new_balance":"2541.29", + "value":"-3693.77" + } + }, + { + "id":"323aea57-bbb2-4df1-a88d-99265d02b47b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T00:50:49.852Z", + "completed":"2017-03-01T00:50:49.852Z", + "new_balance":"2224.08", + "value":"-317.21" + } + }, + { + "id":"1b909c7d-bde9-43a1-be31-9e4aed0666a0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T03:09:39.707Z", + "completed":"2017-03-01T03:09:39.707Z", + "new_balance":"1492.23", + "value":"-731.85" + } + }, + { + "id":"da8af14b-a67c-4063-8bb8-a1bb41cf6c56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T04:21:57.801Z", + "completed":"2017-03-01T04:21:57.801Z", + "new_balance":"-1138.98", + "value":"-2631.21" + } + }, + { + "id":"d20d9fa5-21ba-43e4-a54c-e0367c9a5a18", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T08:56:09.105Z", + "completed":"2017-03-01T08:56:09.105Z", + "new_balance":"-1336.89", + "value":"-197.91" + } + }, + { + "id":"bbb5b438-ee0f-4e2e-b6c0-4ee76b855474", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T14:52:22.478Z", + "completed":"2017-03-01T14:52:22.478Z", + "new_balance":"-1500.37", + "value":"-163.48" + } + }, + { + "id":"e53fdeb5-1e48-4d36-8e99-f45e8635e353", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T00:55:28.451Z", + "completed":"2017-03-12T00:55:28.451Z", + "new_balance":"-1817.58", + "value":"-317.21" + } + }, + { + "id":"90f7676e-f4ad-4e94-97fc-ce4224862091", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T11:31:01.429Z", + "completed":"2017-03-12T11:31:01.429Z", + "new_balance":"-2549.43", + "value":"-731.85" + } + }, + { + "id":"f5a2ac03-4b41-47d9-b995-f03d7ce1054b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T19:05:37.897Z", + "completed":"2017-03-12T19:05:37.897Z", + "new_balance":"-2596.33", + "value":"-46.90" + } + }, + { + "id":"78c1f4a4-2710-42ea-8be3-f60f8b2f0674", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T23:14:25.395Z", + "completed":"2017-03-12T23:14:25.395Z", + "new_balance":"-2649.51", + "value":"-53.18" + } + }, + { + "id":"38185ed2-122e-4201-aae8-8caa718959ad", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T10:48:35.209Z", + "completed":"2017-03-14T10:48:35.209Z", + "new_balance":"-758.19", + "value":"1891.32" + } + }, + { + "id":"0afac1df-7cd5-499c-beb9-0fbddf4030fb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T11:39:14.089Z", + "completed":"2017-03-15T11:39:14.089Z", + "new_balance":"-530.80", + "value":"227.39" + } + }, + { + "id":"c87e597f-9f41-4883-932b-43af9b28eb2b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T18:57:27.739Z", + "completed":"2017-03-16T18:57:27.739Z", + "new_balance":"370.18", + "value":"900.98" + } + }, + { + "id":"3acb89e6-7a1e-4a2b-9f0e-3d73bdc439ca", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:03:38.092Z", + "completed":"2017-03-17T12:03:38.092Z", + "new_balance":"291.10", + "value":"-79.08" + } + }, + { + "id":"31767e55-6794-4cdd-81fe-41470350afb2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:11:52.176Z", + "completed":"2017-03-17T12:11:52.176Z", + "new_balance":"240.00", + "value":"-51.10" + } + }, + { + "id":"812896e4-5ff4-485f-9b96-3d1256179db5", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:54:07.364Z", + "completed":"2017-03-19T15:54:07.364Z", + "new_balance":"690.00", + "value":"450.00" + } + }, + { + "id":"bfa60fca-d67e-4de9-a249-f6b51a5165f2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T08:10:44.871Z", + "completed":"2017-03-21T08:10:44.871Z", + "new_balance":"751.25", + "value":"61.25" + } + }, + { + "id":"81e11f29-0460-4032-8bd9-2b1c88b2bcc0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T11:17:53.856Z", + "completed":"2017-03-21T11:17:53.856Z", + "new_balance":"677.32", + "value":"-73.93" + } + }, + { + "id":"562bce31-6399-4c5b-b4a9-9466b1c07ad7", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T14:40:27.412Z", + "completed":"2017-03-24T14:40:27.412Z", + "new_balance":"904.71", + "value":"227.39" + } + }, + { + "id":"e3e7bf5b-3e77-48a6-95f1-c0ac8a29c766", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T23:07:32.890Z", + "completed":"2017-03-24T23:07:32.890Z", + "new_balance":"378.15", + "value":"-526.56" + } + }, + { + "id":"971d53fc-1cb8-4fcf-9f42-8175d680d794", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T16:20:25.692Z", + "completed":"2017-03-25T16:20:25.692Z", + "new_balance":"831.80", + "value":"453.65" + } + }, + { + "id":"51953de0-9c4f-42de-bfb6-72644962c56e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T20:49:01.478Z", + "completed":"2017-03-25T20:49:01.478Z", + "new_balance":"164.65", + "value":"-667.15" + } + }, + { + "id":"062057c8-5a2c-485f-bc2a-4f93b8080e98", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T15:34:38.044Z", + "completed":"2017-03-28T15:34:38.044Z", + "new_balance":"3247.52", + "value":"3082.87" + } + }, + { + "id":"0785ee34-7080-4f75-91a5-8fb4d0382b1c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:55:33.260Z", + "completed":"2017-03-28T16:55:33.260Z", + "new_balance":"5138.84", + "value":"1891.32" + } + }, + { + "id":"f20312b5-a412-47a6-9069-413eb2e8e835", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T00:19:10.506Z", + "completed":"2017-03-30T00:19:10.506Z", + "new_balance":"5366.46", + "value":"227.62" + } + }, + { + "id":"f92c6c6c-b04d-40b4-8f48-a4ca355195dd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T13:56:00.240Z", + "completed":"2017-03-30T13:56:00.240Z", + "new_balance":"5593.85", + "value":"227.39" + } + }, + { + "id":"13f06920-c9b1-4ab1-9db9-8125750a09cd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T00:07:10.389Z", + "completed":"2017-06-01T00:07:10.389Z", + "new_balance":"5395.94", + "value":"-197.91" + } + }, + { + "id":"4c40fd59-bf3e-4800-aa93-67ca40324de8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:04:42.548Z", + "completed":"2017-06-01T13:04:42.548Z", + "new_balance":"4664.09", + "value":"-731.85" + } + }, + { + "id":"9c2d59c6-1df0-4802-b4c6-146bf00715c1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T13:10:17.101Z", + "completed":"2017-06-01T13:10:17.101Z", + "new_balance":"4500.61", + "value":"-163.48" + } + }, + { + "id":"11eaa12e-9045-4801-8760-77de7b70a8c0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T13:53:03.090Z", + "completed":"2017-06-01T13:53:03.090Z", + "new_balance":"4183.40", + "value":"-317.21" + } + }, + { + "id":"68ec01b6-de2d-4d55-9616-bfad5f3c9aca", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T19:36:33.335Z", + "completed":"2017-06-01T19:36:33.335Z", + "new_balance":"489.63", + "value":"-3693.77" + } + }, + { + "id":"17cd4106-ab10-4216-99a1-50c229985e7d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T21:46:26.038Z", + "completed":"2017-06-01T21:46:26.038Z", + "new_balance":"-2141.58", + "value":"-2631.21" + } + }, + { + "id":"9773ccf9-c874-4071-9d42-d979e17363b4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T13:33:02.276Z", + "completed":"2017-06-04T13:33:02.276Z", + "new_balance":"-2188.48", + "value":"-46.90" + } + }, + { + "id":"1d81f521-6449-46e0-b532-1129575d406b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:37:54.528Z", + "completed":"2017-06-04T20:37:54.528Z", + "new_balance":"-2241.66", + "value":"-53.18" + } + }, + { + "id":"45cbbf5d-2b2d-4272-8972-ba8b187204a9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T20:57:44.087Z", + "completed":"2017-06-05T20:57:44.087Z", + "new_balance":"-2973.51", + "value":"-731.85" + } + }, + { + "id":"de9c3a3c-f378-4ef2-bb46-522698985de4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T23:05:35.016Z", + "completed":"2017-06-05T23:05:35.016Z", + "new_balance":"-3290.72", + "value":"-317.21" + } + }, + { + "id":"2a3b2a99-933a-4fad-bc61-13dae52e6aed", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T04:09:47.838Z", + "completed":"2017-06-07T04:09:47.838Z", + "new_balance":"-3341.82", + "value":"-51.10" + } + }, + { + "id":"0f42b811-76a4-4004-9bdf-add3036db029", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T17:09:54.811Z", + "completed":"2017-06-07T17:09:54.811Z", + "new_balance":"-3114.43", + "value":"227.39" + } + }, + { + "id":"75df2d97-00ee-457e-b3a2-ac491dc000f2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T19:38:48.780Z", + "completed":"2017-06-07T19:38:48.780Z", + "new_balance":"-2213.45", + "value":"900.98" + } + }, + { + "id":"eb5379fe-b899-422e-bff1-64bd6ca2f086", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T20:16:07.776Z", + "completed":"2017-06-07T20:16:07.776Z", + "new_balance":"-322.13", + "value":"1891.32" + } + }, + { + "id":"454601ac-d74b-425f-9f43-84f90191874c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T08:50:15.827Z", + "completed":"2017-06-11T08:50:15.827Z", + "new_balance":"-401.21", + "value":"-79.08" + } + }, + { + "id":"2ab79644-fb1d-4b08-a974-68d3f57dfcb0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T04:38:19.616Z", + "completed":"2017-06-14T04:38:19.616Z", + "new_balance":"48.79", + "value":"450.00" + } + }, + { + "id":"c1af8027-c9f1-428f-b51b-9edf1bbd2948", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T08:33:53.665Z", + "completed":"2017-06-14T08:33:53.665Z", + "new_balance":"110.04", + "value":"61.25" + } + }, + { + "id":"9d73b4d2-f84d-4cfd-a718-31fefc523b56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T09:56:59.503Z", + "completed":"2017-06-14T09:56:59.503Z", + "new_balance":"36.11", + "value":"-73.93" + } + }, + { + "id":"74795411-98c1-4681-bdd2-b98dffe9b2cb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T11:21:27.814Z", + "completed":"2017-06-16T11:21:27.814Z", + "new_balance":"-490.45", + "value":"-526.56" + } + }, + { + "id":"5db7da15-e081-4290-8347-06a7737ae235", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T15:00:59.095Z", + "completed":"2017-06-16T15:00:59.095Z", + "new_balance":"-263.06", + "value":"227.39" + } + }, + { + "id":"7608b2ce-c960-4969-be24-bd097aa7873b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T00:28:23.452Z", + "completed":"2017-06-21T00:28:23.452Z", + "new_balance":"190.59", + "value":"453.65" + } + }, + { + "id":"3074ec43-ffe6-47e5-ab93-04df5dab3cd2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:27:09.269Z", + "completed":"2017-06-21T14:27:09.269Z", + "new_balance":"3273.46", + "value":"3082.87" + } + }, + { + "id":"777f49ea-9086-4717-846c-1ad831a51a85", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T21:51:50.476Z", + "completed":"2017-06-21T21:51:50.476Z", + "new_balance":"5164.78", + "value":"1891.32" + } + }, + { + "id":"52772be1-9d06-4714-a615-382425a3ce69", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T22:14:24.861Z", + "completed":"2017-06-21T22:14:24.861Z", + "new_balance":"4497.63", + "value":"-667.15" + } + }, + { + "id":"1c467d30-aaab-4248-8e2f-9d86f877748e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T06:53:23.570Z", + "completed":"2017-06-30T06:53:23.570Z", + "new_balance":"4725.02", + "value":"227.39" + } + }, + { + "id":"b08fa46c-3986-4e1b-b4f9-4a22ac38d973", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T07:26:44.290Z", + "completed":"2017-06-30T07:26:44.290Z", + "new_balance":"4952.64", + "value":"227.62" + } + }, + { + "id":"d604d653-d2e5-45df-b12c-4ea0f1a32128", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:30:04.434Z", + "completed":"2017-09-01T06:30:04.434Z", + "new_balance":"2321.43", + "value":"-2631.21" + } + }, + { + "id":"5eedae02-68eb-4b3c-b46b-440c33fa9b6b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T14:36:26.653Z", + "completed":"2017-09-01T14:36:26.653Z", + "new_balance":"2123.52", + "value":"-197.91" + } + }, + { + "id":"419618a8-5bfd-4cec-9cb8-277bc6646916", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:37:12.335Z", + "completed":"2017-09-01T15:37:12.335Z", + "new_balance":"1806.31", + "value":"-317.21" + } + }, + { + "id":"f7dc60d7-f8c8-4164-9919-29fd53c1e498", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T16:33:11.089Z", + "completed":"2017-09-01T16:33:11.089Z", + "new_balance":"-1887.46", + "value":"-3693.77" + } + }, + { + "id":"0a113bcc-4a50-4ea7-941a-0923ecbeac56", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T17:22:47.233Z", + "completed":"2017-09-01T17:22:47.233Z", + "new_balance":"-2050.94", + "value":"-163.48" + } + }, + { + "id":"95bccd65-5b5e-46d8-a794-2e396f7f5fff", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T19:27:10.412Z", + "completed":"2017-09-01T19:27:10.412Z", + "new_balance":"-2782.79", + "value":"-731.85" + } + }, + { + "id":"b7f8a370-e2ef-4b99-9d99-5edb01a2ed4e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T02:13:05.476Z", + "completed":"2017-09-12T02:13:05.476Z", + "new_balance":"-2829.69", + "value":"-46.90" + } + }, + { + "id":"642a726e-a9c9-4be4-b71a-ddae764a9c59", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T06:25:58.452Z", + "completed":"2017-09-12T06:25:58.452Z", + "new_balance":"-3561.54", + "value":"-731.85" + } + }, + { + "id":"e3db8db2-96ed-4c88-a636-bb107db2aa65", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T18:47:44.758Z", + "completed":"2017-09-12T18:47:44.758Z", + "new_balance":"-3614.72", + "value":"-53.18" + } + }, + { + "id":"f3dcaa28-e4d5-4eba-a8fb-d6099963176b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T20:10:53.876Z", + "completed":"2017-09-12T20:10:53.876Z", + "new_balance":"-3931.93", + "value":"-317.21" + } + }, + { + "id":"2da33cf0-34e4-4da6-997f-ca056ee1193e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T01:49:10.203Z", + "completed":"2017-09-15T01:49:10.203Z", + "new_balance":"-2040.61", + "value":"1891.32" + } + }, + { + "id":"834b434c-e395-4d36-b589-4ee06feb338b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T03:33:01.194Z", + "completed":"2017-09-15T03:33:01.194Z", + "new_balance":"-1813.22", + "value":"227.39" + } + }, + { + "id":"40cd849e-4c3d-48d9-a441-495ee137b9a8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T04:53:24.389Z", + "completed":"2017-09-17T04:53:24.389Z", + "new_balance":"-912.24", + "value":"900.98" + } + }, + { + "id":"6a757652-e0f4-4ccf-9f67-6d3f74ee36ed", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T09:52:29.775Z", + "completed":"2017-09-17T09:52:29.775Z", + "new_balance":"-991.32", + "value":"-79.08" + } + }, + { + "id":"047b8120-3c4a-4538-ae50-6c568cdbb8b0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:17:32.558Z", + "completed":"2017-09-17T18:17:32.558Z", + "new_balance":"-1042.42", + "value":"-51.10" + } + }, + { + "id":"3c30ba69-9aae-486b-991c-d41ea9c94465", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T00:57:24.262Z", + "completed":"2017-09-19T00:57:24.262Z", + "new_balance":"-592.42", + "value":"450.00" + } + }, + { + "id":"917be347-5bfe-4857-9f71-ee27f2e00f1c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:58:19.779Z", + "completed":"2017-09-21T05:58:19.779Z", + "new_balance":"-531.17", + "value":"61.25" + } + }, + { + "id":"804cefd2-288b-49c3-a1ad-c0e74d213de4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T17:43:16.942Z", + "completed":"2017-09-21T17:43:16.942Z", + "new_balance":"-605.10", + "value":"-73.93" + } + }, + { + "id":"57ee6131-01dc-44bc-83a0-0dab643a80eb", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T03:44:08.345Z", + "completed":"2017-09-24T03:44:08.345Z", + "new_balance":"-377.71", + "value":"227.39" + } + }, + { + "id":"91b5d0e3-5e0e-452f-bc40-e91c5b9420d0", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T16:24:42.886Z", + "completed":"2017-09-24T16:24:42.886Z", + "new_balance":"-904.27", + "value":"-526.56" + } + }, + { + "id":"80b9b9e5-3305-4497-b628-fd159414f878", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T21:56:53.341Z", + "completed":"2017-09-25T21:56:53.341Z", + "new_balance":"-1571.42", + "value":"-667.15" + } + }, + { + "id":"6fdb18fe-c7bb-4a1f-b811-7b10ccbc5b13", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T23:47:55.385Z", + "completed":"2017-09-25T23:47:55.385Z", + "new_balance":"-1117.77", + "value":"453.65" + } + }, + { + "id":"9c6190d8-8851-44c3-9f83-2d030cf7631b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T13:38:13.864Z", + "completed":"2017-09-28T13:38:13.864Z", + "new_balance":"1965.10", + "value":"3082.87" + } + }, + { + "id":"f06f55d8-b984-4332-b394-d30febb3e558", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T18:47:02.974Z", + "completed":"2017-09-28T18:47:02.974Z", + "new_balance":"3856.42", + "value":"1891.32" + } + }, + { + "id":"cbf5919f-a572-40bb-ad52-5e69c3781013", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T17:18:45.896Z", + "completed":"2017-09-30T17:18:45.896Z", + "new_balance":"4084.04", + "value":"227.62" + } + }, + { + "id":"cad1ee07-605f-492f-9b61-d2621f858bf1", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T19:56:03.342Z", + "completed":"2017-09-30T19:56:03.342Z", + "new_balance":"4311.43", + "value":"227.39" + } + }, + { + "id":"0c872059-6b6e-418f-971a-f67c1ab6f007", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T02:13:28.544Z", + "completed":"2017-12-01T02:13:28.544Z", + "new_balance":"617.66", + "value":"-3693.77" + } + }, + { + "id":"051eed57-df21-42db-b723-9bdcb9f2821a", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T02:18:48.520Z", + "completed":"2017-12-01T02:18:48.520Z", + "new_balance":"454.18", + "value":"-163.48" + } + }, + { + "id":"e79227f9-07f6-4765-afc6-c62594d236bf", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T02:24:18.102Z", + "completed":"2017-12-01T02:24:18.102Z", + "new_balance":"256.27", + "value":"-197.91" + } + }, + { + "id":"7bdd2a0f-04fb-4742-b902-bf54bb137669", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T10:17:14.485Z", + "completed":"2017-12-01T10:17:14.485Z", + "new_balance":"-60.94", + "value":"-317.21" + } + }, + { + "id":"0ec595b3-4b00-4554-8556-598ad9db0ea8", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T11:47:05.735Z", + "completed":"2017-12-01T11:47:05.735Z", + "new_balance":"-792.79", + "value":"-731.85" + } + }, + { + "id":"66f6e298-af20-4b5f-a3d8-1fa2c238ef3e", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T19:26:14.025Z", + "completed":"2017-12-01T19:26:14.025Z", + "new_balance":"-3424.00", + "value":"-2631.21" + } + }, + { + "id":"3358149d-2f25-4686-a5b2-907cf96aa5cf", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T09:23:33.994Z", + "completed":"2017-12-04T09:23:33.994Z", + "new_balance":"-3470.90", + "value":"-46.90" + } + }, + { + "id":"7b901c38-43d9-4b2a-931d-a5fd12f7e44b", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:19:27.409Z", + "completed":"2017-12-04T17:19:27.409Z", + "new_balance":"-3524.08", + "value":"-53.18" + } + }, + { + "id":"8c72467f-62cb-4103-9cd6-49d48d1af75c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T11:13:47.214Z", + "completed":"2017-12-05T11:13:47.214Z", + "new_balance":"-3841.29", + "value":"-317.21" + } + }, + { + "id":"65ce969d-979e-405b-acb7-37e4bc095e25", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T20:12:32.674Z", + "completed":"2017-12-05T20:12:32.674Z", + "new_balance":"-4573.14", + "value":"-731.85" + } + }, + { + "id":"6c5f14b9-46fb-4b0e-b7db-ad50de93b597", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T02:22:04.640Z", + "completed":"2017-12-07T02:22:04.640Z", + "new_balance":"-4624.24", + "value":"-51.10" + } + }, + { + "id":"61066f52-084d-4e03-a22e-82d0a27ec7d3", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T08:08:33.782Z", + "completed":"2017-12-07T08:08:33.782Z", + "new_balance":"-4396.85", + "value":"227.39" + } + }, + { + "id":"e3697919-cb98-449b-9136-e4745df5e4fd", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T13:35:11.565Z", + "completed":"2017-12-07T13:35:11.565Z", + "new_balance":"-2505.53", + "value":"1891.32" + } + }, + { + "id":"5ba4e4bd-2acb-4c51-99f7-1dfe8419ee3c", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T14:41:10.867Z", + "completed":"2017-12-07T14:41:10.867Z", + "new_balance":"-1604.55", + "value":"900.98" + } + }, + { + "id":"69b033d5-ac0d-410f-9181-2276c7034c78", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T21:59:19.616Z", + "completed":"2017-12-11T21:59:19.616Z", + "new_balance":"-1683.63", + "value":"-79.08" + } + }, + { + "id":"3180995a-6ed2-4edc-b7c8-9dab1c32dbe4", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T02:30:57.946Z", + "completed":"2017-12-14T02:30:57.946Z", + "new_balance":"-1622.38", + "value":"61.25" + } + }, + { + "id":"c2e13c35-c394-4588-b18b-08f9086cd18d", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:53:54.946Z", + "completed":"2017-12-14T15:53:54.946Z", + "new_balance":"-1172.38", + "value":"450.00" + } + }, + { + "id":"8743bd14-9644-44e2-bc41-f6c4f2bb9176", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T23:20:21.146Z", + "completed":"2017-12-14T23:20:21.146Z", + "new_balance":"-1246.31", + "value":"-73.93" + } + }, + { + "id":"a519132a-5467-4619-8093-aaea33f58385", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T07:09:28.098Z", + "completed":"2017-12-16T07:09:28.098Z", + "new_balance":"-1018.92", + "value":"227.39" + } + }, + { + "id":"c03cc387-f38f-47ad-b366-cd0be9acacde", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T16:02:01.833Z", + "completed":"2017-12-16T16:02:01.833Z", + "new_balance":"-1545.48", + "value":"-526.56" + } + }, + { + "id":"2513a362-1da7-4a61-bae1-fac31c2b90a2", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T14:28:14.449Z", + "completed":"2017-12-21T14:28:14.449Z", + "new_balance":"-2212.63", + "value":"-667.15" + } + }, + { + "id":"28f065f0-ff02-409e-bcb3-db372b0578f9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T17:45:44.696Z", + "completed":"2017-12-21T17:45:44.696Z", + "new_balance":"-321.31", + "value":"1891.32" + } + }, + { + "id":"117ff2ac-1698-44aa-a3d9-61ef8792e3e9", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:50:21.173Z", + "completed":"2017-12-21T18:50:21.173Z", + "new_balance":"132.34", + "value":"453.65" + } + }, + { + "id":"1ee198db-05a9-48ca-a2ae-5421ceb50759", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T19:33:42.241Z", + "completed":"2017-12-21T19:33:42.241Z", + "new_balance":"3215.21", + "value":"3082.87" + } + }, + { + "id":"897bee6a-93e4-4a68-8dc4-abd46a65f170", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T14:36:10.520Z", + "completed":"2017-12-30T14:36:10.520Z", + "new_balance":"3442.83", + "value":"227.62" + } + }, + { + "id":"e2004a5b-a1ba-4e86-b274-781529e9e055", + "this_account":{ + "id":"9e69dc41-e515-4065-98ed-745c7fcc44ca", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T18:12:37.467Z", + "completed":"2017-12-30T18:12:37.467Z", + "new_balance":"3670.22", + "value":"227.39" + } + }, + { + "id":"95170b2d-3c5a-440d-b6a2-af33b63330ec", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T08:45:53.950Z", + "completed":"2016-03-01T08:45:53.950Z", + "new_balance":"3245.39", + "value":"-23.24" + } + }, + { + "id":"f49743db-ac8a-45c0-98a2-0abf7d61c7f8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T08:47:21.567Z", + "completed":"2016-03-01T08:47:21.567Z", + "new_balance":"3188.58", + "value":"-56.81" + } + }, + { + "id":"d29df1e6-dc06-460d-8414-0240c2b4a036", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T09:45:21.179Z", + "completed":"2016-03-01T09:45:21.179Z", + "new_balance":"3175.48", + "value":"-13.10" + } + }, + { + "id":"6db5f684-aa44-4047-83f1-ca7557591cb5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T13:11:50.262Z", + "completed":"2016-03-01T13:11:50.262Z", + "new_balance":"3153.12", + "value":"-22.36" + } + }, + { + "id":"d9947b33-27bd-4bf7-a169-67fef1097a8f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T22:17:23.216Z", + "completed":"2016-03-01T22:17:23.216Z", + "new_balance":"2875.64", + "value":"-277.48" + } + }, + { + "id":"1eaaaa5e-2e7b-42be-ad43-205b091df961", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T23:56:00.284Z", + "completed":"2016-03-01T23:56:00.284Z", + "new_balance":"2579.04", + "value":"-296.60" + } + }, + { + "id":"1b1c9b38-d0c4-404e-bd64-b611dea6046a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T02:27:38.451Z", + "completed":"2016-03-12T02:27:38.451Z", + "new_balance":"2555.80", + "value":"-23.24" + } + }, + { + "id":"76f9b086-34ae-4730-bffb-1abb00e51503", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T10:53:54.002Z", + "completed":"2016-03-12T10:53:54.002Z", + "new_balance":"2550.65", + "value":"-5.15" + } + }, + { + "id":"fa7a018c-32e8-4bef-b387-227c3d34ff3b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:28:02.359Z", + "completed":"2016-03-12T20:28:02.359Z", + "new_balance":"2546.47", + "value":"-4.18" + } + }, + { + "id":"eb6b8b4f-53b1-4c77-8db0-bdb28c98df75", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T22:23:13.818Z", + "completed":"2016-03-12T22:23:13.818Z", + "new_balance":"2489.66", + "value":"-56.81" + } + }, + { + "id":"43cecfb6-6cb1-42ac-a37f-35b1e3add507", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T10:58:14.123Z", + "completed":"2016-03-14T10:58:14.123Z", + "new_balance":"2650.47", + "value":"160.81" + } + }, + { + "id":"64fe62a5-a032-4cee-9000-a88ccf34ac96", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T07:19:28.742Z", + "completed":"2016-03-15T07:19:28.742Z", + "new_balance":"2680.74", + "value":"30.27" + } + }, + { + "id":"759e9dd5-054a-4ab8-8ec7-3eff0a46acad", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T03:33:44.219Z", + "completed":"2016-03-16T03:33:44.219Z", + "new_balance":"2771.70", + "value":"90.96" + } + }, + { + "id":"c7d35a2c-dc58-421a-88a9-7e03d2a9f2f8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:49:24.940Z", + "completed":"2016-03-17T12:49:24.940Z", + "new_balance":"2765.17", + "value":"-6.53" + } + }, + { + "id":"c700390a-3cc9-4ffb-a886-02b1297bcee5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T20:19:09.900Z", + "completed":"2016-03-17T20:19:09.900Z", + "new_balance":"2759.69", + "value":"-5.48" + } + }, + { + "id":"c6bcc1e6-4302-48ce-8556-dfa039564c32", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T01:29:25.862Z", + "completed":"2016-03-19T01:29:25.862Z", + "new_balance":"2807.56", + "value":"47.87" + } + }, + { + "id":"39400083-88bf-40ac-9e06-b03987704849", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T08:25:04.768Z", + "completed":"2016-03-21T08:25:04.768Z", + "new_balance":"2800.37", + "value":"-7.19" + } + }, + { + "id":"4d77e611-0198-46e6-b4bf-545f1a46570c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T10:29:15.103Z", + "completed":"2016-03-21T10:29:15.103Z", + "new_balance":"2807.21", + "value":"6.84" + } + }, + { + "id":"b134703f-5504-460e-bd0a-3548f31076d3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:08:18.098Z", + "completed":"2016-03-24T01:08:18.098Z", + "new_balance":"2837.48", + "value":"30.27" + } + }, + { + "id":"0883a3e6-3aeb-47d6-8531-23cfe5361e11", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T18:22:51.614Z", + "completed":"2016-03-24T18:22:51.614Z", + "new_balance":"2787.26", + "value":"-50.22" + } + }, + { + "id":"db341aea-57dd-44ef-9801-7f5ddb0d15a3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:29:33.464Z", + "completed":"2016-03-25T05:29:33.464Z", + "new_balance":"2718.18", + "value":"-69.08" + } + }, + { + "id":"73ef50d6-07d5-4ffa-badd-2a52e79d4016", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T21:30:32.367Z", + "completed":"2016-03-25T21:30:32.367Z", + "new_balance":"2768.26", + "value":"50.08" + } + }, + { + "id":"5b5aef1c-2ac3-45fa-9fe1-d3928348c306", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T07:00:11.383Z", + "completed":"2016-03-28T07:00:11.383Z", + "new_balance":"3177.08", + "value":"408.82" + } + }, + { + "id":"c9c428d1-10fe-4a89-a845-c6649e842a5a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:48:00.712Z", + "completed":"2016-03-28T18:48:00.712Z", + "new_balance":"3337.89", + "value":"160.81" + } + }, + { + "id":"293ea320-d4bd-4076-9f2d-ecab3fb584d1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T13:44:13.285Z", + "completed":"2016-03-30T13:44:13.285Z", + "new_balance":"3368.16", + "value":"30.27" + } + }, + { + "id":"04e13b5b-36ed-45ec-9b01-814efea74e7f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T20:22:08.770Z", + "completed":"2016-03-30T20:22:08.770Z", + "new_balance":"3389.05", + "value":"20.89" + } + }, + { + "id":"f082f0f3-4f16-41dd-b4d8-1a9ba6228879", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T03:06:02.491Z", + "completed":"2016-06-01T03:06:02.491Z", + "new_balance":"3111.57", + "value":"-277.48" + } + }, + { + "id":"18b3c291-dae6-4e60-820e-c950ce02c7fe", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T10:56:51.534Z", + "completed":"2016-06-01T10:56:51.534Z", + "new_balance":"3098.47", + "value":"-13.10" + } + }, + { + "id":"d7d04890-173a-4125-8012-839171bcd923", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T12:04:29.522Z", + "completed":"2016-06-01T12:04:29.522Z", + "new_balance":"3076.11", + "value":"-22.36" + } + }, + { + "id":"a0ec2298-1a0b-4736-84b9-27f9a4cf6cce", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T13:51:41.526Z", + "completed":"2016-06-01T13:51:41.526Z", + "new_balance":"2779.51", + "value":"-296.60" + } + }, + { + "id":"cd1b9ac9-ca91-490e-81d6-c6d29e25cf4e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T23:24:21.106Z", + "completed":"2016-06-01T23:24:21.106Z", + "new_balance":"2756.27", + "value":"-23.24" + } + }, + { + "id":"1654983e-2262-4567-8e12-4fd23063c9af", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T23:31:39.743Z", + "completed":"2016-06-01T23:31:39.743Z", + "new_balance":"2699.46", + "value":"-56.81" + } + }, + { + "id":"1b163d84-4f0f-4508-9510-d0e3c3a4d4ae", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T02:07:42.279Z", + "completed":"2016-06-04T02:07:42.279Z", + "new_balance":"2694.31", + "value":"-5.15" + } + }, + { + "id":"0648915b-740c-4875-889f-4296a82f1936", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T15:32:14.265Z", + "completed":"2016-06-04T15:32:14.265Z", + "new_balance":"2690.13", + "value":"-4.18" + } + }, + { + "id":"23d8370b-fdc7-4b65-bde4-1dc8cb2563bc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T18:17:00.188Z", + "completed":"2016-06-05T18:17:00.188Z", + "new_balance":"2666.89", + "value":"-23.24" + } + }, + { + "id":"12abc764-b065-4928-bc0f-50ac2ebf6a99", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T23:53:23.419Z", + "completed":"2016-06-05T23:53:23.419Z", + "new_balance":"2610.08", + "value":"-56.81" + } + }, + { + "id":"19c556a7-92d8-4f0f-bf4d-f03551990c28", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T04:19:31.821Z", + "completed":"2016-06-07T04:19:31.821Z", + "new_balance":"2640.35", + "value":"30.27" + } + }, + { + "id":"21e8697a-0bb1-4790-bea7-d98099e0ea5d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T08:03:34.696Z", + "completed":"2016-06-07T08:03:34.696Z", + "new_balance":"2633.82", + "value":"-6.53" + } + }, + { + "id":"7ead703a-22cf-43fb-854b-a73d804b21f3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:54:54.125Z", + "completed":"2016-06-07T11:54:54.125Z", + "new_balance":"2724.78", + "value":"90.96" + } + }, + { + "id":"836d017f-78dd-409e-b3cc-ff00660a52ff", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T20:31:17.539Z", + "completed":"2016-06-07T20:31:17.539Z", + "new_balance":"2885.59", + "value":"160.81" + } + }, + { + "id":"83074c10-d2a9-41ad-a1a0-f1103b775b22", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T00:28:04.582Z", + "completed":"2016-06-11T00:28:04.582Z", + "new_balance":"2880.11", + "value":"-5.48" + } + }, + { + "id":"1739edd9-e6bb-4863-a3b0-f1edd86e0227", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T20:34:52.867Z", + "completed":"2016-06-14T20:34:52.867Z", + "new_balance":"2872.92", + "value":"-7.19" + } + }, + { + "id":"73f36e34-99a6-43ff-aabf-e3f9e53ed153", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T20:57:10.012Z", + "completed":"2016-06-14T20:57:10.012Z", + "new_balance":"2920.79", + "value":"47.87" + } + }, + { + "id":"533f37c4-b1cc-459e-97f5-8ebf749be754", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T22:28:04.529Z", + "completed":"2016-06-14T22:28:04.529Z", + "new_balance":"2927.63", + "value":"6.84" + } + }, + { + "id":"ae88fad7-3082-4ee9-9862-2813c94a56d9", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T02:08:57.651Z", + "completed":"2016-06-16T02:08:57.651Z", + "new_balance":"2877.41", + "value":"-50.22" + } + }, + { + "id":"0c0bd699-9158-4a3a-9863-e81839c9aeec", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T07:28:24.326Z", + "completed":"2016-06-16T07:28:24.326Z", + "new_balance":"2907.68", + "value":"30.27" + } + }, + { + "id":"bb0c4f0f-579b-4c23-ba16-3dd02fe66ee0", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T03:43:58.503Z", + "completed":"2016-06-21T03:43:58.503Z", + "new_balance":"3316.50", + "value":"408.82" + } + }, + { + "id":"78689c7d-7bb9-4d85-9977-819b2f8c2317", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T13:38:35.727Z", + "completed":"2016-06-21T13:38:35.727Z", + "new_balance":"3366.58", + "value":"50.08" + } + }, + { + "id":"c99a5f3c-50d9-4767-a029-8564aad48ebe", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T16:11:51.692Z", + "completed":"2016-06-21T16:11:51.692Z", + "new_balance":"3527.39", + "value":"160.81" + } + }, + { + "id":"84502dac-a1df-4632-bba7-aa4a76ccefbf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T23:48:51.299Z", + "completed":"2016-06-21T23:48:51.299Z", + "new_balance":"3458.31", + "value":"-69.08" + } + }, + { + "id":"75e8ce60-c15f-4cb2-b2a0-59fc6eba979a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T05:33:35.976Z", + "completed":"2016-06-30T05:33:35.976Z", + "new_balance":"3488.58", + "value":"30.27" + } + }, + { + "id":"089164b3-4f48-4aa5-87a4-6f9544ab2c73", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T08:34:28.127Z", + "completed":"2016-06-30T08:34:28.127Z", + "new_balance":"3509.47", + "value":"20.89" + } + }, + { + "id":"00b0e309-e645-47ef-99e8-a2fce6ee606f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T07:58:41.259Z", + "completed":"2016-09-01T07:58:41.259Z", + "new_balance":"3487.11", + "value":"-22.36" + } + }, + { + "id":"0e1c974a-9644-4f77-9f02-583074f14d25", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T11:33:39.370Z", + "completed":"2016-09-01T11:33:39.370Z", + "new_balance":"3430.30", + "value":"-56.81" + } + }, + { + "id":"a899eb54-fa04-4f52-bfba-0d7cd7c6ab74", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T11:43:13.198Z", + "completed":"2016-09-01T11:43:13.198Z", + "new_balance":"3152.82", + "value":"-277.48" + } + }, + { + "id":"223061e4-9ce3-479e-80e8-d7fee3aedcc1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T18:59:09.051Z", + "completed":"2016-09-01T18:59:09.051Z", + "new_balance":"2856.22", + "value":"-296.60" + } + }, + { + "id":"7ad4a3d3-49d4-4b5e-9875-aacc1a64d595", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T21:01:02.935Z", + "completed":"2016-09-01T21:01:02.935Z", + "new_balance":"2832.98", + "value":"-23.24" + } + }, + { + "id":"749dfd5a-1114-45f5-9203-111359aad291", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T21:23:10.225Z", + "completed":"2016-09-01T21:23:10.225Z", + "new_balance":"2819.88", + "value":"-13.10" + } + }, + { + "id":"899a3e02-0192-4c90-8a47-4c262c459263", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T02:54:03.925Z", + "completed":"2016-09-12T02:54:03.925Z", + "new_balance":"2814.73", + "value":"-5.15" + } + }, + { + "id":"9e6438e1-7a86-4229-9909-22cc34874007", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T10:11:07.841Z", + "completed":"2016-09-12T10:11:07.841Z", + "new_balance":"2757.92", + "value":"-56.81" + } + }, + { + "id":"8b606209-fdad-4fec-826a-9ddd31a24474", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T15:55:16.997Z", + "completed":"2016-09-12T15:55:16.997Z", + "new_balance":"2753.74", + "value":"-4.18" + } + }, + { + "id":"634f7a17-da39-470e-a49c-b739d5b70b78", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T21:19:00.287Z", + "completed":"2016-09-12T21:19:00.287Z", + "new_balance":"2730.50", + "value":"-23.24" + } + }, + { + "id":"3af1fd51-56ce-4802-ae55-2d7d719fb690", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:52:21.156Z", + "completed":"2016-09-15T01:52:21.156Z", + "new_balance":"2891.31", + "value":"160.81" + } + }, + { + "id":"6ff2db45-75db-4b3d-af23-b03db1c73255", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T15:29:21.468Z", + "completed":"2016-09-15T15:29:21.468Z", + "new_balance":"2921.58", + "value":"30.27" + } + }, + { + "id":"669a2c7d-e24c-48bf-b7c0-48cfdafa9bdc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T06:21:04.270Z", + "completed":"2016-09-17T06:21:04.270Z", + "new_balance":"2915.05", + "value":"-6.53" + } + }, + { + "id":"0d180579-92f2-41b3-a4a4-0033f1a6f5c5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:31:18.405Z", + "completed":"2016-09-17T19:31:18.405Z", + "new_balance":"3006.01", + "value":"90.96" + } + }, + { + "id":"dc5a1682-3243-4ed5-8088-d113b4fcc4fa", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T20:58:31.109Z", + "completed":"2016-09-17T20:58:31.109Z", + "new_balance":"3000.53", + "value":"-5.48" + } + }, + { + "id":"505cfa5e-be7b-427b-9377-9864c47b4a74", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T02:45:12.848Z", + "completed":"2016-09-19T02:45:12.848Z", + "new_balance":"3048.40", + "value":"47.87" + } + }, + { + "id":"6996b57a-1dea-4cfd-9dc6-d9701e1a56c8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T06:36:21.292Z", + "completed":"2016-09-21T06:36:21.292Z", + "new_balance":"3041.21", + "value":"-7.19" + } + }, + { + "id":"767c8a4c-b41c-4024-b329-a9b3614bd6aa", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T13:41:58.083Z", + "completed":"2016-09-21T13:41:58.083Z", + "new_balance":"3048.05", + "value":"6.84" + } + }, + { + "id":"23cafd79-008f-4e05-be9b-41c61680f2bc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T07:55:48.264Z", + "completed":"2016-09-24T07:55:48.264Z", + "new_balance":"3078.32", + "value":"30.27" + } + }, + { + "id":"78d57fc0-8cb1-4a10-be8b-d98ed6581c3f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T22:05:20.947Z", + "completed":"2016-09-24T22:05:20.947Z", + "new_balance":"3028.10", + "value":"-50.22" + } + }, + { + "id":"bfb807d0-6697-4d45-8124-ec5789aa422b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:08:24.166Z", + "completed":"2016-09-25T03:08:24.166Z", + "new_balance":"2959.02", + "value":"-69.08" + } + }, + { + "id":"45fb4f5b-4785-46a9-b9a3-817afd1df4d4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T19:55:21.185Z", + "completed":"2016-09-25T19:55:21.185Z", + "new_balance":"3009.10", + "value":"50.08" + } + }, + { + "id":"afeddac8-369f-4f91-8f40-3778332792d4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T02:09:09.009Z", + "completed":"2016-09-28T02:09:09.009Z", + "new_balance":"3417.92", + "value":"408.82" + } + }, + { + "id":"ffa2a39c-f877-452e-b87b-f33463550929", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T02:31:53.143Z", + "completed":"2016-09-28T02:31:53.143Z", + "new_balance":"3578.73", + "value":"160.81" + } + }, + { + "id":"384d2552-45b3-46fe-8cd7-6397ce8eb9e2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T03:44:13.252Z", + "completed":"2016-09-30T03:44:13.252Z", + "new_balance":"3599.62", + "value":"20.89" + } + }, + { + "id":"4a2f770b-9c1e-4c41-9e66-53862ba3d66c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T20:47:44.874Z", + "completed":"2016-09-30T20:47:44.874Z", + "new_balance":"3629.89", + "value":"30.27" + } + }, + { + "id":"15cf3495-94fa-4bc9-8ad1-aef1167dfa2c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T10:22:03.821Z", + "completed":"2016-12-01T10:22:03.821Z", + "new_balance":"3333.29", + "value":"-296.60" + } + }, + { + "id":"95beab5e-cc92-465d-9adf-1b0bf2d304d8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T10:33:22.289Z", + "completed":"2016-12-01T10:33:22.289Z", + "new_balance":"3310.05", + "value":"-23.24" + } + }, + { + "id":"575bcf1a-d13e-4fb1-b24d-42f3c71d65e4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T11:21:31.468Z", + "completed":"2016-12-01T11:21:31.468Z", + "new_balance":"3032.57", + "value":"-277.48" + } + }, + { + "id":"96c7fb7c-f2a7-48c0-9482-3c65ac75250f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T16:14:48.323Z", + "completed":"2016-12-01T16:14:48.323Z", + "new_balance":"3019.47", + "value":"-13.10" + } + }, + { + "id":"5f669d70-f33c-4fb8-bb6b-86db82735eab", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T19:42:11.601Z", + "completed":"2016-12-01T19:42:11.601Z", + "new_balance":"2997.11", + "value":"-22.36" + } + }, + { + "id":"16caaa94-a633-4fef-9cd0-5f770c136e0b", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T21:23:13.806Z", + "completed":"2016-12-01T21:23:13.806Z", + "new_balance":"2940.30", + "value":"-56.81" + } + }, + { + "id":"a4545340-b795-4510-91a7-53eb3930403d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:39:18.968Z", + "completed":"2016-12-04T01:39:18.968Z", + "new_balance":"2935.15", + "value":"-5.15" + } + }, + { + "id":"7efdea9e-99ef-4dfd-a253-f6da4f293d8e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:28:28.641Z", + "completed":"2016-12-04T12:28:28.641Z", + "new_balance":"2930.97", + "value":"-4.18" + } + }, + { + "id":"5cb65541-6c75-4e84-9ace-ce10ec7c0ad1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T12:11:13.253Z", + "completed":"2016-12-05T12:11:13.253Z", + "new_balance":"2907.73", + "value":"-23.24" + } + }, + { + "id":"d12f7016-2aa7-4432-a1d2-a8a971033533", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T14:00:37.027Z", + "completed":"2016-12-05T14:00:37.027Z", + "new_balance":"2850.92", + "value":"-56.81" + } + }, + { + "id":"1233fbf1-5138-4f0d-93de-1561a2d5f338", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T00:39:32.805Z", + "completed":"2016-12-07T00:39:32.805Z", + "new_balance":"2844.39", + "value":"-6.53" + } + }, + { + "id":"de87cc97-5493-4871-a54e-3b57f9d3981e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T02:58:12.838Z", + "completed":"2016-12-07T02:58:12.838Z", + "new_balance":"2874.66", + "value":"30.27" + } + }, + { + "id":"d3e50fb6-60aa-401c-b493-1dc438b876b6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:57:38.016Z", + "completed":"2016-12-07T03:57:38.016Z", + "new_balance":"3035.47", + "value":"160.81" + } + }, + { + "id":"7c256082-f983-48d0-bd5f-d136c1d4e0cc", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T14:11:45.696Z", + "completed":"2016-12-07T14:11:45.696Z", + "new_balance":"3126.43", + "value":"90.96" + } + }, + { + "id":"e9d43324-a308-4a7b-acd4-129ada3ac54d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T23:34:22.344Z", + "completed":"2016-12-11T23:34:22.344Z", + "new_balance":"3120.95", + "value":"-5.48" + } + }, + { + "id":"244ba483-2d6e-4fab-bda8-e077769ceeab", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:54:48.874Z", + "completed":"2016-12-14T01:54:48.874Z", + "new_balance":"3127.79", + "value":"6.84" + } + }, + { + "id":"84f62aff-eff5-4d34-a261-2b73a762c070", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T05:19:08.210Z", + "completed":"2016-12-14T05:19:08.210Z", + "new_balance":"3120.60", + "value":"-7.19" + } + }, + { + "id":"50c9a373-9c26-4a62-9956-3338df535f05", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T19:28:38.367Z", + "completed":"2016-12-14T19:28:38.367Z", + "new_balance":"3168.47", + "value":"47.87" + } + }, + { + "id":"b5b63256-af7c-4a43-8fe1-738be9057b10", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:16:35.816Z", + "completed":"2016-12-16T06:16:35.816Z", + "new_balance":"3118.25", + "value":"-50.22" + } + }, + { + "id":"637eb33c-dece-480d-ac92-c9b1ca827c1a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T17:05:30.953Z", + "completed":"2016-12-16T17:05:30.953Z", + "new_balance":"3148.52", + "value":"30.27" + } + }, + { + "id":"e35f8d43-73aa-4712-9752-2823030999b2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T04:12:19.114Z", + "completed":"2016-12-21T04:12:19.114Z", + "new_balance":"3079.44", + "value":"-69.08" + } + }, + { + "id":"a2593265-5c6f-46e7-a77b-9d4ecac11c00", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T14:24:03.430Z", + "completed":"2016-12-21T14:24:03.430Z", + "new_balance":"3488.26", + "value":"408.82" + } + }, + { + "id":"8e7f59c2-5420-4d6e-833c-0dbe66540414", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T17:59:46.963Z", + "completed":"2016-12-21T17:59:46.963Z", + "new_balance":"3538.34", + "value":"50.08" + } + }, + { + "id":"0ef78eaf-fe58-4d3e-b7fb-7ef898a8a2cb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T22:56:45.172Z", + "completed":"2016-12-21T22:56:45.172Z", + "new_balance":"3699.15", + "value":"160.81" + } + }, + { + "id":"a30824b0-11ff-4432-bf96-0bbde7c24d83", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T06:11:47.741Z", + "completed":"2016-12-30T06:11:47.741Z", + "new_balance":"3729.42", + "value":"30.27" + } + }, + { + "id":"a56231ea-582d-4769-a0a2-b2a23a2d68cb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T22:22:41.242Z", + "completed":"2016-12-30T22:22:41.242Z", + "new_balance":"3750.31", + "value":"20.89" + } + }, + { + "id":"36c828fb-b423-4b94-af9a-391595a73f40", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T02:47:03.188Z", + "completed":"2017-03-01T02:47:03.188Z", + "new_balance":"3472.83", + "value":"-277.48" + } + }, + { + "id":"fe1fa8f1-322f-4b7f-9e51-b336b865224a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T04:05:55.003Z", + "completed":"2017-03-01T04:05:55.003Z", + "new_balance":"3450.47", + "value":"-22.36" + } + }, + { + "id":"9f2c6a09-4dce-418d-894e-d2c02013c346", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T06:44:22.653Z", + "completed":"2017-03-01T06:44:22.653Z", + "new_balance":"3153.87", + "value":"-296.60" + } + }, + { + "id":"5e46187f-6cac-4066-a1ae-f79f38444f6e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T08:58:17.908Z", + "completed":"2017-03-01T08:58:17.908Z", + "new_balance":"3130.63", + "value":"-23.24" + } + }, + { + "id":"6d35998e-5f12-4e8a-91a6-a9a861b1b970", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T09:45:37.957Z", + "completed":"2017-03-01T09:45:37.957Z", + "new_balance":"3117.53", + "value":"-13.10" + } + }, + { + "id":"bf1f568f-ab83-4aa3-924d-1615207f4e2e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T12:35:42.146Z", + "completed":"2017-03-01T12:35:42.146Z", + "new_balance":"3060.72", + "value":"-56.81" + } + }, + { + "id":"fad94f28-e3fd-4e89-a58b-1760eebbd5be", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T03:55:27.781Z", + "completed":"2017-03-12T03:55:27.781Z", + "new_balance":"3055.57", + "value":"-5.15" + } + }, + { + "id":"c18f3941-0c15-4dcf-8cf5-9e649c8f5506", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T06:09:40.250Z", + "completed":"2017-03-12T06:09:40.250Z", + "new_balance":"2998.76", + "value":"-56.81" + } + }, + { + "id":"8a9ff9c4-41fc-4b1e-80fd-4e20ce177bde", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:26:59.842Z", + "completed":"2017-03-12T12:26:59.842Z", + "new_balance":"2994.58", + "value":"-4.18" + } + }, + { + "id":"902ce83a-f0c2-4cfd-a616-6c34b0f99ea1", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T17:28:51.117Z", + "completed":"2017-03-12T17:28:51.117Z", + "new_balance":"2971.34", + "value":"-23.24" + } + }, + { + "id":"b7cb5762-2ed1-45ad-a141-afc1e95fa848", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T14:29:46.075Z", + "completed":"2017-03-14T14:29:46.075Z", + "new_balance":"3132.15", + "value":"160.81" + } + }, + { + "id":"770690c8-cd7e-4550-8116-60bbf2c2405c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T01:57:36.666Z", + "completed":"2017-03-15T01:57:36.666Z", + "new_balance":"3162.42", + "value":"30.27" + } + }, + { + "id":"ae29d659-0547-4500-8100-1eab5cd6892f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T21:28:45.551Z", + "completed":"2017-03-16T21:28:45.551Z", + "new_balance":"3253.38", + "value":"90.96" + } + }, + { + "id":"0d171512-692e-4da1-ae51-afcfbdc9a57c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T09:33:50.639Z", + "completed":"2017-03-17T09:33:50.639Z", + "new_balance":"3246.85", + "value":"-6.53" + } + }, + { + "id":"461a6ab7-98c0-4ab1-b8ab-191b6ed68c4d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T16:07:21.092Z", + "completed":"2017-03-17T16:07:21.092Z", + "new_balance":"3241.37", + "value":"-5.48" + } + }, + { + "id":"118d63b8-6ee7-46e9-9088-7144c62c4d57", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T17:13:23.407Z", + "completed":"2017-03-19T17:13:23.407Z", + "new_balance":"3289.24", + "value":"47.87" + } + }, + { + "id":"65d5a7d5-c217-4d98-8f19-33bc7547c7a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T00:21:00.334Z", + "completed":"2017-03-21T00:21:00.334Z", + "new_balance":"3296.08", + "value":"6.84" + } + }, + { + "id":"35f17c3d-5344-49fd-99e0-fcab5019fdc4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T00:53:05.824Z", + "completed":"2017-03-21T00:53:05.824Z", + "new_balance":"3288.89", + "value":"-7.19" + } + }, + { + "id":"16dbb1a2-9347-48b2-9cf9-e6c086c04d4f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T08:25:48.724Z", + "completed":"2017-03-24T08:25:48.724Z", + "new_balance":"3319.16", + "value":"30.27" + } + }, + { + "id":"d1d1893f-d4b7-43c2-bcef-96d06973d54f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T14:58:14.966Z", + "completed":"2017-03-24T14:58:14.966Z", + "new_balance":"3268.94", + "value":"-50.22" + } + }, + { + "id":"d6d25251-aca2-4802-95df-050cb9076e66", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T08:40:02.050Z", + "completed":"2017-03-25T08:40:02.050Z", + "new_balance":"3319.02", + "value":"50.08" + } + }, + { + "id":"3bfe0332-4f1c-4235-b8a3-7bc5a8c6d131", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T17:23:14.958Z", + "completed":"2017-03-25T17:23:14.958Z", + "new_balance":"3249.94", + "value":"-69.08" + } + }, + { + "id":"420d052f-78f1-46c4-af5e-d482e63bf77e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T11:32:01.526Z", + "completed":"2017-03-28T11:32:01.526Z", + "new_balance":"3410.75", + "value":"160.81" + } + }, + { + "id":"066d5f8a-b429-474f-8c05-0efdcdae4343", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T23:17:15.963Z", + "completed":"2017-03-28T23:17:15.963Z", + "new_balance":"3819.57", + "value":"408.82" + } + }, + { + "id":"5bd4e019-5d4d-4815-8f3f-e5d583c0ba4c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T16:47:02.553Z", + "completed":"2017-03-30T16:47:02.553Z", + "new_balance":"3849.84", + "value":"30.27" + } + }, + { + "id":"404202aa-331b-42f3-bedc-ace8df74daa8", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T23:29:29.338Z", + "completed":"2017-03-30T23:29:29.338Z", + "new_balance":"3870.73", + "value":"20.89" + } + }, + { + "id":"ec1ac199-3b5e-4a03-8cf9-67861e572696", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T10:20:52.190Z", + "completed":"2017-06-01T10:20:52.190Z", + "new_balance":"3848.37", + "value":"-22.36" + } + }, + { + "id":"402ca6e0-2e92-42d4-9f38-17b716150832", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:42:12.858Z", + "completed":"2017-06-01T11:42:12.858Z", + "new_balance":"3825.13", + "value":"-23.24" + } + }, + { + "id":"302c14af-8ea5-4028-8ede-dcd987817c01", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T12:06:50.641Z", + "completed":"2017-06-01T12:06:50.641Z", + "new_balance":"3547.65", + "value":"-277.48" + } + }, + { + "id":"e2d5f94b-0856-490e-a6f6-aa6324c83be5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T16:59:36.860Z", + "completed":"2017-06-01T16:59:36.860Z", + "new_balance":"3490.84", + "value":"-56.81" + } + }, + { + "id":"8eeda325-c8d8-4c14-9153-4435372850eb", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T18:03:13.259Z", + "completed":"2017-06-01T18:03:13.259Z", + "new_balance":"3194.24", + "value":"-296.60" + } + }, + { + "id":"038d6d81-c769-4b95-9d0e-58d055673e28", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T22:52:22.368Z", + "completed":"2017-06-01T22:52:22.368Z", + "new_balance":"3181.14", + "value":"-13.10" + } + }, + { + "id":"994f76b5-d5b5-4290-8733-7b312c926aef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T17:23:04.501Z", + "completed":"2017-06-04T17:23:04.501Z", + "new_balance":"3175.99", + "value":"-5.15" + } + }, + { + "id":"ee60ef84-893a-444b-9291-d6414f425365", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:58:01.338Z", + "completed":"2017-06-04T20:58:01.338Z", + "new_balance":"3171.81", + "value":"-4.18" + } + }, + { + "id":"52dda882-1f91-49ad-8e2f-a24ea43dd1ef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T10:48:49.266Z", + "completed":"2017-06-05T10:48:49.266Z", + "new_balance":"3115.00", + "value":"-56.81" + } + }, + { + "id":"38379b7c-be74-4642-bdce-8218d5de7aea", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T19:18:24.663Z", + "completed":"2017-06-05T19:18:24.663Z", + "new_balance":"3091.76", + "value":"-23.24" + } + }, + { + "id":"e836930b-9349-43ee-9139-6d0b417fdd78", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T04:53:20.132Z", + "completed":"2017-06-07T04:53:20.132Z", + "new_balance":"3182.72", + "value":"90.96" + } + }, + { + "id":"ea6249ec-268b-4af6-863b-0f15d333964d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:03:05.545Z", + "completed":"2017-06-07T08:03:05.545Z", + "new_balance":"3343.53", + "value":"160.81" + } + }, + { + "id":"c5503ffe-a7ea-4d37-afbf-57d5cd70c876", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T12:00:08.154Z", + "completed":"2017-06-07T12:00:08.154Z", + "new_balance":"3373.80", + "value":"30.27" + } + }, + { + "id":"a89edb75-3f53-417d-be87-db4f6c4ddbc6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T19:56:55.666Z", + "completed":"2017-06-07T19:56:55.666Z", + "new_balance":"3367.27", + "value":"-6.53" + } + }, + { + "id":"969bcb17-7edb-4545-8905-f8e3e21f4fef", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T22:29:30.496Z", + "completed":"2017-06-11T22:29:30.496Z", + "new_balance":"3361.79", + "value":"-5.48" + } + }, + { + "id":"cf88a03a-3a32-4c53-9ceb-57025e738e71", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T03:02:16.171Z", + "completed":"2017-06-14T03:02:16.171Z", + "new_balance":"3409.66", + "value":"47.87" + } + }, + { + "id":"48c754bb-1609-4f0c-81ac-7fb7af721532", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:24:59.793Z", + "completed":"2017-06-14T13:24:59.793Z", + "new_balance":"3402.47", + "value":"-7.19" + } + }, + { + "id":"43793027-93f4-492f-97da-14274e361c62", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T21:31:27.700Z", + "completed":"2017-06-14T21:31:27.700Z", + "new_balance":"3409.31", + "value":"6.84" + } + }, + { + "id":"46d88c75-51f6-4215-8b03-d2d608079d66", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T07:31:36.174Z", + "completed":"2017-06-16T07:31:36.174Z", + "new_balance":"3439.58", + "value":"30.27" + } + }, + { + "id":"4234bd8b-5156-4250-aca3-a0609b54cb46", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T12:08:41.412Z", + "completed":"2017-06-16T12:08:41.412Z", + "new_balance":"3389.36", + "value":"-50.22" + } + }, + { + "id":"1930c889-0463-4f07-84c9-610faccc875c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T02:52:00.633Z", + "completed":"2017-06-21T02:52:00.633Z", + "new_balance":"3798.18", + "value":"408.82" + } + }, + { + "id":"7fb216e5-8eef-4c51-bef7-8ca4774e2a62", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T14:54:24.086Z", + "completed":"2017-06-21T14:54:24.086Z", + "new_balance":"3729.10", + "value":"-69.08" + } + }, + { + "id":"1a7147dc-42c7-4bbd-bae2-e0f7dd4c1d0a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T17:13:06.867Z", + "completed":"2017-06-21T17:13:06.867Z", + "new_balance":"3889.91", + "value":"160.81" + } + }, + { + "id":"728441e6-2cae-4837-9b84-0df2bc1f581f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:45:16.928Z", + "completed":"2017-06-21T20:45:16.928Z", + "new_balance":"3939.99", + "value":"50.08" + } + }, + { + "id":"bba71910-0b79-4485-bbf0-f8dcec106d6d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T15:42:07.555Z", + "completed":"2017-06-30T15:42:07.555Z", + "new_balance":"3960.88", + "value":"20.89" + } + }, + { + "id":"0458d92b-94db-4f98-83e7-33f8de61d156", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T18:36:14.510Z", + "completed":"2017-06-30T18:36:14.510Z", + "new_balance":"3991.15", + "value":"30.27" + } + }, + { + "id":"1007ca6b-0959-4602-b6b1-29e07d2808a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T00:35:59.926Z", + "completed":"2017-09-01T00:35:59.926Z", + "new_balance":"3978.05", + "value":"-13.10" + } + }, + { + "id":"8f3eb2b1-4641-418b-8848-8a2b1a1b90cf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T03:13:25.294Z", + "completed":"2017-09-01T03:13:25.294Z", + "new_balance":"3700.57", + "value":"-277.48" + } + }, + { + "id":"f888a655-3263-4dea-bd00-abbc8ceb26b5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T10:38:05.545Z", + "completed":"2017-09-01T10:38:05.545Z", + "new_balance":"3643.76", + "value":"-56.81" + } + }, + { + "id":"a404ca79-5380-49be-9d2f-91540e7a2a45", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T15:36:57.497Z", + "completed":"2017-09-01T15:36:57.497Z", + "new_balance":"3347.16", + "value":"-296.60" + } + }, + { + "id":"7b7f70c6-9d9c-4230-9fb6-d9483a131914", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T18:27:51.232Z", + "completed":"2017-09-01T18:27:51.232Z", + "new_balance":"3324.80", + "value":"-22.36" + } + }, + { + "id":"c50d25cc-75df-4024-aa9c-f7152fe3e61e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T22:26:25.498Z", + "completed":"2017-09-01T22:26:25.498Z", + "new_balance":"3301.56", + "value":"-23.24" + } + }, + { + "id":"54e3cc43-f806-40ea-a4d2-d60dadd5373f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T07:40:15.687Z", + "completed":"2017-09-12T07:40:15.687Z", + "new_balance":"3297.38", + "value":"-4.18" + } + }, + { + "id":"162f19fd-bea7-48ca-aa92-cea7a9711a16", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T16:45:23.557Z", + "completed":"2017-09-12T16:45:23.557Z", + "new_balance":"3274.14", + "value":"-23.24" + } + }, + { + "id":"65d7efdc-8ecd-4e95-8da0-2ca76333661d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:51:31.262Z", + "completed":"2017-09-12T16:51:31.262Z", + "new_balance":"3217.33", + "value":"-56.81" + } + }, + { + "id":"7fc970c8-44e6-4da6-b447-bd16c65a2173", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T19:23:47.228Z", + "completed":"2017-09-12T19:23:47.228Z", + "new_balance":"3212.18", + "value":"-5.15" + } + }, + { + "id":"de6944d5-bc44-454b-8bd2-b108d56759b3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T02:19:26.863Z", + "completed":"2017-09-15T02:19:26.863Z", + "new_balance":"3372.99", + "value":"160.81" + } + }, + { + "id":"892d8e8d-2cd1-4eb9-acb5-1000c5051a0e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T03:46:14.964Z", + "completed":"2017-09-15T03:46:14.964Z", + "new_balance":"3403.26", + "value":"30.27" + } + }, + { + "id":"2543f9bd-de24-47f0-b1c1-c9ff9cc3571a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T14:35:29.207Z", + "completed":"2017-09-17T14:35:29.207Z", + "new_balance":"3494.22", + "value":"90.96" + } + }, + { + "id":"452fc22b-6ca8-417d-9e52-dc90a5b2241a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:46:23.387Z", + "completed":"2017-09-17T18:46:23.387Z", + "new_balance":"3487.69", + "value":"-6.53" + } + }, + { + "id":"93ecface-876c-4ebb-b5c1-71a71a477a82", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T21:54:08.309Z", + "completed":"2017-09-17T21:54:08.309Z", + "new_balance":"3482.21", + "value":"-5.48" + } + }, + { + "id":"b9e46cd6-cfca-4054-8b8d-f9f5e96eb6de", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T19:20:20.193Z", + "completed":"2017-09-19T19:20:20.193Z", + "new_balance":"3530.08", + "value":"47.87" + } + }, + { + "id":"76530af0-c84a-43b8-9f5c-d1df30c02158", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:57:38.308Z", + "completed":"2017-09-21T20:57:38.308Z", + "new_balance":"3522.89", + "value":"-7.19" + } + }, + { + "id":"feb26011-610c-4534-978f-839693f84fa2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T22:47:02.477Z", + "completed":"2017-09-21T22:47:02.477Z", + "new_balance":"3529.73", + "value":"6.84" + } + }, + { + "id":"3bafa3bb-984e-4cc0-a9a4-6167f7d04f2f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T10:19:29.552Z", + "completed":"2017-09-24T10:19:29.552Z", + "new_balance":"3560.00", + "value":"30.27" + } + }, + { + "id":"925b1697-226f-4715-a259-93fbdfbaea41", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T16:31:27.220Z", + "completed":"2017-09-24T16:31:27.220Z", + "new_balance":"3509.78", + "value":"-50.22" + } + }, + { + "id":"00a69c23-1608-40af-a91e-cbcd8c63c823", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T00:06:19.491Z", + "completed":"2017-09-25T00:06:19.491Z", + "new_balance":"3559.86", + "value":"50.08" + } + }, + { + "id":"722c5038-87db-4279-abc3-e3bf9c9694ea", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T12:01:19.473Z", + "completed":"2017-09-25T12:01:19.473Z", + "new_balance":"3490.78", + "value":"-69.08" + } + }, + { + "id":"3a168038-ed56-40b1-8e7c-8b61e637a8c2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T10:09:27.444Z", + "completed":"2017-09-28T10:09:27.444Z", + "new_balance":"3899.60", + "value":"408.82" + } + }, + { + "id":"c49f2ed5-018c-484c-be62-5089d346d759", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T19:30:41.367Z", + "completed":"2017-09-28T19:30:41.367Z", + "new_balance":"4060.41", + "value":"160.81" + } + }, + { + "id":"a7ad2ba6-e47c-4c98-b5e6-69f694e96986", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T04:44:53.576Z", + "completed":"2017-09-30T04:44:53.576Z", + "new_balance":"4081.30", + "value":"20.89" + } + }, + { + "id":"6d8a3e9d-b39d-4c5b-89c7-5db41fab7238", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T14:08:02.088Z", + "completed":"2017-09-30T14:08:02.088Z", + "new_balance":"4111.57", + "value":"30.27" + } + }, + { + "id":"b8e2a6dc-2f93-4865-8fb6-545512bc1a30", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T01:05:26.635Z", + "completed":"2017-12-01T01:05:26.635Z", + "new_balance":"4098.47", + "value":"-13.10" + } + }, + { + "id":"34aaaa16-aad1-4667-9ec8-66de066b6a98", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T07:30:23.047Z", + "completed":"2017-12-01T07:30:23.047Z", + "new_balance":"4075.23", + "value":"-23.24" + } + }, + { + "id":"9ab72c5e-0a7e-4103-adc8-e0caebee910f", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T16:07:26.169Z", + "completed":"2017-12-01T16:07:26.169Z", + "new_balance":"3797.75", + "value":"-277.48" + } + }, + { + "id":"66cb93b8-2ffc-4cd7-a69c-a0ddfbed5837", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T20:07:39.149Z", + "completed":"2017-12-01T20:07:39.149Z", + "new_balance":"3740.94", + "value":"-56.81" + } + }, + { + "id":"2f565479-5766-434d-8177-85690724555a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T20:46:08.609Z", + "completed":"2017-12-01T20:46:08.609Z", + "new_balance":"3718.58", + "value":"-22.36" + } + }, + { + "id":"87a2a25b-85cb-427b-9c50-5a008fce76b2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T21:58:29.868Z", + "completed":"2017-12-01T21:58:29.868Z", + "new_balance":"3421.98", + "value":"-296.60" + } + }, + { + "id":"654c66d0-60d0-4833-8658-142dc2b6197d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T07:30:12.385Z", + "completed":"2017-12-04T07:30:12.385Z", + "new_balance":"3416.83", + "value":"-5.15" + } + }, + { + "id":"e9567f02-2ee1-45a3-8ab3-89afbb519e8e", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:20:50.918Z", + "completed":"2017-12-04T16:20:50.918Z", + "new_balance":"3412.65", + "value":"-4.18" + } + }, + { + "id":"0fcafb63-cf08-40b5-8433-7d0abc7628a6", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T00:42:16.061Z", + "completed":"2017-12-05T00:42:16.061Z", + "new_balance":"3355.84", + "value":"-56.81" + } + }, + { + "id":"4fa52d90-999b-4712-80fd-a6d4d9b9ebf5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T12:29:16.183Z", + "completed":"2017-12-05T12:29:16.183Z", + "new_balance":"3332.60", + "value":"-23.24" + } + }, + { + "id":"ae2400ae-563a-4dab-b6c3-3adb607ba115", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:58:20.906Z", + "completed":"2017-12-07T10:58:20.906Z", + "new_balance":"3362.87", + "value":"30.27" + } + }, + { + "id":"c7de3c1a-3d19-4c8f-98b0-e2b619d43ed4", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T13:02:22.166Z", + "completed":"2017-12-07T13:02:22.166Z", + "new_balance":"3523.68", + "value":"160.81" + } + }, + { + "id":"7fb3f65a-990c-448a-b5c5-446164080fa2", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T16:22:23.180Z", + "completed":"2017-12-07T16:22:23.180Z", + "new_balance":"3517.15", + "value":"-6.53" + } + }, + { + "id":"bdbb26a0-c2cd-43af-bb55-443ce15ad595", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T16:49:34.070Z", + "completed":"2017-12-07T16:49:34.070Z", + "new_balance":"3608.11", + "value":"90.96" + } + }, + { + "id":"edef5846-d098-410c-a605-4263a1ad0ca7", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T00:58:53.300Z", + "completed":"2017-12-11T00:58:53.300Z", + "new_balance":"3602.63", + "value":"-5.48" + } + }, + { + "id":"d197a71d-90ea-440d-a013-836baf39e81c", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:23:37.358Z", + "completed":"2017-12-14T06:23:37.358Z", + "new_balance":"3650.50", + "value":"47.87" + } + }, + { + "id":"4a449ccc-fd04-42fe-90a7-aa420091c06d", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:37:04.398Z", + "completed":"2017-12-14T06:37:04.398Z", + "new_balance":"3643.31", + "value":"-7.19" + } + }, + { + "id":"3495600e-19a6-42f9-b6f3-e219654962c5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:26:47.392Z", + "completed":"2017-12-14T15:26:47.392Z", + "new_balance":"3650.15", + "value":"6.84" + } + }, + { + "id":"fe4992e6-af74-477a-ad55-f037ea77d4a3", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T00:12:25.120Z", + "completed":"2017-12-16T00:12:25.120Z", + "new_balance":"3599.93", + "value":"-50.22" + } + }, + { + "id":"aac10dea-5782-47d7-9938-7f2999d09d5a", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T15:50:13.111Z", + "completed":"2017-12-16T15:50:13.111Z", + "new_balance":"3630.20", + "value":"30.27" + } + }, + { + "id":"4ae69bf6-499b-4e04-8236-cd0bcba1cd80", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T00:10:47.679Z", + "completed":"2017-12-21T00:10:47.679Z", + "new_balance":"3561.12", + "value":"-69.08" + } + }, + { + "id":"59bb2d02-1152-480c-854c-97e711ac36f5", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T13:52:02.677Z", + "completed":"2017-12-21T13:52:02.677Z", + "new_balance":"3721.93", + "value":"160.81" + } + }, + { + "id":"b0ab007a-d28b-40fb-901f-aaa9951fef41", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T17:57:20.978Z", + "completed":"2017-12-21T17:57:20.978Z", + "new_balance":"4130.75", + "value":"408.82" + } + }, + { + "id":"ca267d2f-7261-4d57-bddb-466d2bb1abcf", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T19:22:57.919Z", + "completed":"2017-12-21T19:22:57.919Z", + "new_balance":"4180.83", + "value":"50.08" + } + }, + { + "id":"ad913926-758c-490b-8a12-2390a0a8f2af", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T09:41:02.324Z", + "completed":"2017-12-30T09:41:02.324Z", + "new_balance":"4201.72", + "value":"20.89" + } + }, + { + "id":"e6b11bad-cd4b-478d-b1e2-87b9eeb485b9", + "this_account":{ + "id":"a19aa69c-3a68-4a03-8bd3-97bd459896ee", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T19:11:44.607Z", + "completed":"2017-12-30T19:11:44.607Z", + "new_balance":"4231.99", + "value":"30.27" + } + }, + { + "id":"5148d2ce-93ee-48b2-aaad-f552e055236a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T00:03:23.083Z", + "completed":"2016-01-01T00:03:23.083Z", + "new_balance":"4815.85", + "value":"-34.43" + } + }, + { + "id":"8ae7d2fd-bdb5-4ad4-8763-4cff356d8aef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T02:36:36.252Z", + "completed":"2016-01-01T02:36:36.252Z", + "new_balance":"4781.42", + "value":"-34.43" + } + }, + { + "id":"6ba54a79-06f8-43f9-bf43-eb266ea68c5d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T09:54:31.972Z", + "completed":"2016-01-01T09:54:31.972Z", + "new_balance":"4734.52", + "value":"-46.90" + } + }, + { + "id":"88fdf05f-ec43-41c0-9ab3-e0de1d1c6e53", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T16:04:31.172Z", + "completed":"2016-01-01T16:04:31.172Z", + "new_balance":"4629.80", + "value":"-104.72" + } + }, + { + "id":"105e79a2-18f7-462e-9e58-de7592397e54", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T17:22:25.596Z", + "completed":"2016-01-05T17:22:25.596Z", + "new_balance":"4548.59", + "value":"-81.21" + } + }, + { + "id":"90076d15-3246-46e7-ae3e-5bfad2b88f4f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T20:33:53.794Z", + "completed":"2016-01-05T20:33:53.794Z", + "new_balance":"4481.14", + "value":"-67.45" + } + }, + { + "id":"65d53d36-fa3f-4f7b-abf0-8157281366aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T20:55:27.339Z", + "completed":"2016-01-08T20:55:27.339Z", + "new_balance":"4470.23", + "value":"-10.91" + } + }, + { + "id":"778c0b01-2ecf-4fec-9259-32988f8cb0bb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T12:03:18.070Z", + "completed":"2016-01-10T12:03:18.070Z", + "new_balance":"4423.77", + "value":"-46.46" + } + }, + { + "id":"8a5c6732-e654-4713-b4d7-c6f7f7d63cc5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T03:42:12.643Z", + "completed":"2016-01-11T03:42:12.643Z", + "new_balance":"4367.13", + "value":"-56.64" + } + }, + { + "id":"f255a8c9-e04e-4750-9292-e565da771e6c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T16:50:12.410Z", + "completed":"2016-01-12T16:50:12.410Z", + "new_balance":"4332.70", + "value":"-34.43" + } + }, + { + "id":"4fd187b8-e0d6-415a-be5d-f94253ee5ce9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T11:52:04.501Z", + "completed":"2016-01-13T11:52:04.501Z", + "new_balance":"4327.05", + "value":"-5.65" + } + }, + { + "id":"0552831e-d2da-4338-afc0-d18d747970cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T21:29:14.689Z", + "completed":"2016-01-13T21:29:14.689Z", + "new_balance":"4323.46", + "value":"-3.59" + } + }, + { + "id":"f5a69715-de67-4b2d-92ea-a147d12818d6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T01:27:01.591Z", + "completed":"2016-01-16T01:27:01.591Z", + "new_balance":"4240.37", + "value":"-83.09" + } + }, + { + "id":"c9fec6c6-2ddf-4a3d-9fe3-b0b3b820bf9e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T15:26:10.372Z", + "completed":"2016-01-19T15:26:10.372Z", + "new_balance":"4159.16", + "value":"-81.21" + } + }, + { + "id":"afb776ae-0535-4c8e-b7a0-bf4247954232", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T21:48:23.311Z", + "completed":"2016-01-19T21:48:23.311Z", + "new_balance":"4077.72", + "value":"-81.44" + } + }, + { + "id":"c5a1bba4-1605-451e-b581-68a10219ee7c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T03:32:25.154Z", + "completed":"2016-01-24T03:32:25.154Z", + "new_balance":"4050.27", + "value":"-27.45" + } + }, + { + "id":"cf0a89d2-33d1-4b41-93e6-a3a55b2de44a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T01:36:06.299Z", + "completed":"2016-01-27T01:36:06.299Z", + "new_balance":"4022.29", + "value":"-27.98" + } + }, + { + "id":"e7860770-b6d9-405b-8506-ba957c575039", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T15:16:31.788Z", + "completed":"2016-01-27T15:16:31.788Z", + "new_balance":"6372.50", + "value":"2350.21" + } + }, + { + "id":"1729d197-de2b-4210-bdea-32dba94eb6b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T12:57:54.960Z", + "completed":"2016-01-31T12:57:54.960Z", + "new_balance":"6055.29", + "value":"-317.21" + } + }, + { + "id":"788468e8-c9b4-4a9a-b5c2-8d0031b83e0d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:59:21.895Z", + "completed":"2016-02-01T02:59:21.895Z", + "new_balance":"6008.39", + "value":"-46.90" + } + }, + { + "id":"60f78fec-9697-418e-839b-d6211c6bda46", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T03:50:06.975Z", + "completed":"2016-02-01T03:50:06.975Z", + "new_balance":"5903.67", + "value":"-104.72" + } + }, + { + "id":"bc6805af-5c28-4d06-b018-c5a0901ffb5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T13:37:08.279Z", + "completed":"2016-02-01T13:37:08.279Z", + "new_balance":"5869.24", + "value":"-34.43" + } + }, + { + "id":"fae2ff0c-6c00-40b3-9f04-7f1389ccc37c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T21:28:09.182Z", + "completed":"2016-02-01T21:28:09.182Z", + "new_balance":"5834.81", + "value":"-34.43" + } + }, + { + "id":"c818b66b-b022-418c-8cbc-ada0921e74f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T14:35:57.132Z", + "completed":"2016-02-03T14:35:57.132Z", + "new_balance":"5828.09", + "value":"-6.72" + } + }, + { + "id":"8dd9dc2a-3ac0-4314-98c3-6c60d3f142f5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T22:24:20.586Z", + "completed":"2016-02-04T22:24:20.586Z", + "new_balance":"5746.88", + "value":"-81.21" + } + }, + { + "id":"5c15955b-a10f-4993-bfa7-c8221d3df3ab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T11:13:51.522Z", + "completed":"2016-02-06T11:13:51.522Z", + "new_balance":"5640.07", + "value":"-106.81" + } + }, + { + "id":"15e6a46d-4ed8-4e86-b7c4-07e0e4d295b8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T16:15:13.703Z", + "completed":"2016-02-06T16:15:13.703Z", + "new_balance":"5558.90", + "value":"-81.17" + } + }, + { + "id":"af4aebaf-bbb6-4b23-bfbc-f5f82a2ec09a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T05:43:34.395Z", + "completed":"2016-02-07T05:43:34.395Z", + "new_balance":"5530.87", + "value":"-28.03" + } + }, + { + "id":"f7030269-f6ff-48b9-9c32-8810e263c4b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T22:08:26.226Z", + "completed":"2016-02-08T22:08:26.226Z", + "new_balance":"5515.58", + "value":"-15.29" + } + }, + { + "id":"6808018f-3ac5-45a6-b581-b8f04802d441", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T11:13:31.933Z", + "completed":"2016-02-09T11:13:31.933Z", + "new_balance":"5472.63", + "value":"-42.95" + } + }, + { + "id":"ad44ffde-9a89-46ce-ae8a-11ddadffad55", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T10:26:34.805Z", + "completed":"2016-02-11T10:26:34.805Z", + "new_balance":"5445.90", + "value":"-26.73" + } + }, + { + "id":"a2fca76e-8d03-4d2c-bab9-8f834acd9f12", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T07:52:43.516Z", + "completed":"2016-02-13T07:52:43.516Z", + "new_balance":"5404.36", + "value":"-41.54" + } + }, + { + "id":"4e7c0341-42f6-4c70-864f-7ff0dc3436fa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T09:02:31.434Z", + "completed":"2016-02-17T09:02:31.434Z", + "new_balance":"5397.37", + "value":"-6.99" + } + }, + { + "id":"84a15d8e-8815-4fce-991c-f29cdfd0221e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T06:57:18.909Z", + "completed":"2016-02-19T06:57:18.909Z", + "new_balance":"5347.43", + "value":"-49.94" + } + }, + { + "id":"f9a46858-4660-421b-8fa0-c1bcfff9c44c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T04:11:16.825Z", + "completed":"2016-02-21T04:11:16.825Z", + "new_balance":"5266.22", + "value":"-81.21" + } + }, + { + "id":"8c382d86-5d4e-4eb0-a21a-4916999d0866", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T13:28:39.659Z", + "completed":"2016-02-24T13:28:39.659Z", + "new_balance":"5238.24", + "value":"-27.98" + } + }, + { + "id":"06306d81-44e6-4fbe-a44d-68dd15eaf098", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T09:46:59.263Z", + "completed":"2016-02-26T09:46:59.263Z", + "new_balance":"7588.45", + "value":"2350.21" + } + }, + { + "id":"8d0f52d0-bd41-4646-8107-ea34e35d0337", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T01:31:06.522Z", + "completed":"2016-03-01T01:31:06.522Z", + "new_balance":"7541.55", + "value":"-46.90" + } + }, + { + "id":"beebfe70-cbc5-4ae6-8650-587a135d585e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T04:12:16.613Z", + "completed":"2016-03-01T04:12:16.613Z", + "new_balance":"7507.12", + "value":"-34.43" + } + }, + { + "id":"c805bb3a-329c-4e05-88ec-f6f6a1bd6bd5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T13:46:59.328Z", + "completed":"2016-03-01T13:46:59.328Z", + "new_balance":"7402.40", + "value":"-104.72" + } + }, + { + "id":"6cb2e7ce-a4ef-4011-b2f9-136baaa8751a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T23:47:05.824Z", + "completed":"2016-03-01T23:47:05.824Z", + "new_balance":"7367.97", + "value":"-34.43" + } + }, + { + "id":"a06e6b65-a873-4fa7-ab50-912599c2c390", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T10:54:12.745Z", + "completed":"2016-03-09T10:54:12.745Z", + "new_balance":"7304.40", + "value":"-63.57" + } + }, + { + "id":"3f8c6f22-d5b8-4cfc-b7ed-abe3924b9f6a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T16:22:17.309Z", + "completed":"2016-03-09T16:22:17.309Z", + "new_balance":"7243.03", + "value":"-61.37" + } + }, + { + "id":"3c3fa631-ef8f-4b11-bbe8-dabf11d3e32a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T01:16:59.427Z", + "completed":"2016-03-17T01:16:59.427Z", + "new_balance":"7154.54", + "value":"-88.49" + } + }, + { + "id":"23045264-55db-442a-9800-a408175c380f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:17:20.769Z", + "completed":"2016-03-18T02:17:20.769Z", + "new_balance":"7109.07", + "value":"-45.47" + } + }, + { + "id":"df5fa8c4-35f3-4a91-a4f5-ae5cccf88a3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T09:11:30.469Z", + "completed":"2016-03-18T09:11:30.469Z", + "new_balance":"7027.28", + "value":"-81.79" + } + }, + { + "id":"509ee3da-4eab-4339-9f55-9229df5c0b4d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T17:25:27.880Z", + "completed":"2016-03-18T17:25:27.880Z", + "new_balance":"7020.51", + "value":"-6.77" + } + }, + { + "id":"02e8734c-4e15-4046-9054-9b4b2c0df352", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T17:36:51.545Z", + "completed":"2016-03-18T17:36:51.545Z", + "new_balance":"6980.87", + "value":"-39.64" + } + }, + { + "id":"bd8135a6-78cb-4131-a096-57ceb37ba59d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T01:28:59.859Z", + "completed":"2016-03-22T01:28:59.859Z", + "new_balance":"6876.68", + "value":"-104.19" + } + }, + { + "id":"85dc3d82-a3f3-4fa1-ba05-9668a986fa6e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T11:13:18.405Z", + "completed":"2016-03-29T11:13:18.405Z", + "new_balance":"6848.70", + "value":"-27.98" + } + }, + { + "id":"5c11b310-faad-49dd-886d-444d3d1aac03", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T18:57:07.365Z", + "completed":"2016-03-29T18:57:07.365Z", + "new_balance":"9198.91", + "value":"2350.21" + } + }, + { + "id":"faf8a0f3-d335-4a41-8b00-f8d29b958c68", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T10:38:01.671Z", + "completed":"2016-03-31T10:38:01.671Z", + "new_balance":"8881.70", + "value":"-317.21" + } + }, + { + "id":"77e2943f-2f3a-4c7a-b91d-54e505c81557", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T02:36:09.604Z", + "completed":"2016-04-01T02:36:09.604Z", + "new_balance":"8834.80", + "value":"-46.90" + } + }, + { + "id":"321bb41c-2541-4548-902c-e98568ba4e71", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T13:13:26.421Z", + "completed":"2016-04-01T13:13:26.421Z", + "new_balance":"8730.08", + "value":"-104.72" + } + }, + { + "id":"14e9dd51-186e-40ab-9142-afd1e95275fc", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T15:09:28.669Z", + "completed":"2016-04-01T15:09:28.669Z", + "new_balance":"8695.65", + "value":"-34.43" + } + }, + { + "id":"c2937634-e63e-4f33-870b-210f96617211", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T18:13:34.905Z", + "completed":"2016-04-01T18:13:34.905Z", + "new_balance":"8661.22", + "value":"-34.43" + } + }, + { + "id":"95644f21-af62-4296-a3b6-7b4ed40323b8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T07:03:27.449Z", + "completed":"2016-04-02T07:03:27.449Z", + "new_balance":"8566.89", + "value":"-94.33" + } + }, + { + "id":"04decd37-0649-4dd2-9001-8d6578d18ded", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T01:04:35.459Z", + "completed":"2016-04-05T01:04:35.459Z", + "new_balance":"8554.96", + "value":"-11.93" + } + }, + { + "id":"5f1d399e-b9d3-4349-ac84-237c1bb4ff9e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T07:05:01.822Z", + "completed":"2016-04-05T07:05:01.822Z", + "new_balance":"8520.53", + "value":"-34.43" + } + }, + { + "id":"84850eea-d6bc-41ed-aa7b-049fbc2f9192", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T09:43:22.537Z", + "completed":"2016-04-05T09:43:22.537Z", + "new_balance":"8513.95", + "value":"-6.58" + } + }, + { + "id":"03f31504-c834-4fb0-a0c0-f99c62d40d40", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T15:56:11.654Z", + "completed":"2016-04-05T15:56:11.654Z", + "new_balance":"8509.31", + "value":"-4.64" + } + }, + { + "id":"4555e2b4-4207-4f53-b082-4ecbb16302cd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T16:18:59.612Z", + "completed":"2016-04-05T16:18:59.612Z", + "new_balance":"8428.10", + "value":"-81.21" + } + }, + { + "id":"df47d9eb-9a81-43bd-be8e-e10b3ac3598f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T19:48:29.183Z", + "completed":"2016-04-05T19:48:29.183Z", + "new_balance":"8386.67", + "value":"-41.43" + } + }, + { + "id":"78553326-5d50-4aed-b6cd-8314a04a0c74", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T21:46:54.036Z", + "completed":"2016-04-05T21:46:54.036Z", + "new_balance":"8331.83", + "value":"-54.84" + } + }, + { + "id":"106478c8-cb02-4351-a54e-8b8ac7f314fa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T01:49:21.249Z", + "completed":"2016-04-08T01:49:21.249Z", + "new_balance":"8233.91", + "value":"-97.92" + } + }, + { + "id":"3da2f77e-e925-44e9-bdd6-0402d78c7c24", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T13:30:00.724Z", + "completed":"2016-04-10T13:30:00.724Z", + "new_balance":"8177.78", + "value":"-56.13" + } + }, + { + "id":"0e6e13f7-82e7-429d-814b-5db14825a67b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T07:10:30.101Z", + "completed":"2016-04-11T07:10:30.101Z", + "new_balance":"8150.33", + "value":"-27.45" + } + }, + { + "id":"1226acc2-3d89-4f6b-9db8-9051355004e8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T10:36:27.921Z", + "completed":"2016-04-11T10:36:27.921Z", + "new_balance":"8069.12", + "value":"-81.21" + } + }, + { + "id":"22c3e49b-038b-4583-b403-386b2b8d63e3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T00:13:58.049Z", + "completed":"2016-04-13T00:13:58.049Z", + "new_balance":"8041.14", + "value":"-27.98" + } + }, + { + "id":"7e45c090-af24-4436-9319-d2434a2a968b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T16:51:43.769Z", + "completed":"2016-04-18T16:51:43.769Z", + "new_balance":"10391.35", + "value":"2350.21" + } + }, + { + "id":"6ccdfd3b-b33b-496e-9d6e-349a2e0c96d0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T23:20:22.661Z", + "completed":"2016-04-25T23:20:22.661Z", + "new_balance":"10074.14", + "value":"-317.21" + } + }, + { + "id":"be6f2c5d-965b-4bb7-a26e-8c1c60d4f617", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T00:36:00.080Z", + "completed":"2016-05-02T00:36:00.080Z", + "new_balance":"9969.42", + "value":"-104.72" + } + }, + { + "id":"62d514e2-b0bb-4404-a560-eae2edee45a6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T08:07:48.069Z", + "completed":"2016-05-02T08:07:48.069Z", + "new_balance":"9934.99", + "value":"-34.43" + } + }, + { + "id":"c1c05ee4-12e2-44db-b412-082eaec4de52", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T10:32:32.658Z", + "completed":"2016-05-02T10:32:32.658Z", + "new_balance":"9900.56", + "value":"-34.43" + } + }, + { + "id":"fbb63757-2361-4269-af56-63a7536c49d8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T20:47:04.133Z", + "completed":"2016-05-02T20:47:04.133Z", + "new_balance":"9853.66", + "value":"-46.90" + } + }, + { + "id":"915703f5-bbaa-4662-9fa7-723dc3b63ac4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T00:15:32.807Z", + "completed":"2016-05-04T00:15:32.807Z", + "new_balance":"9847.08", + "value":"-6.58" + } + }, + { + "id":"5dd94ec7-fae0-4813-8171-e1778f988129", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T22:54:55.394Z", + "completed":"2016-05-04T22:54:55.394Z", + "new_balance":"9765.87", + "value":"-81.21" + } + }, + { + "id":"3fc3df5c-32b8-467d-b775-f4ef44f154d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T16:29:50.736Z", + "completed":"2016-05-06T16:29:50.736Z", + "new_balance":"9685.66", + "value":"-80.21" + } + }, + { + "id":"4d2f2d02-996a-4f14-b148-0cfb8c89396e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T04:59:53.027Z", + "completed":"2016-05-07T04:59:53.027Z", + "new_balance":"9651.15", + "value":"-34.51" + } + }, + { + "id":"c317be8f-0641-486a-af13-4e140b8cbd3b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T08:48:30.897Z", + "completed":"2016-05-07T08:48:30.897Z", + "new_balance":"9556.82", + "value":"-94.33" + } + }, + { + "id":"362973f9-c5d6-41c4-bc71-ca4aa497b4b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T00:17:24.925Z", + "completed":"2016-05-09T00:17:24.925Z", + "new_balance":"9544.89", + "value":"-11.93" + } + }, + { + "id":"a4beace7-f4a1-421f-a336-aad2d553cf92", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T21:59:08.472Z", + "completed":"2016-05-09T21:59:08.472Z", + "new_balance":"9501.94", + "value":"-42.95" + } + }, + { + "id":"90a4ede4-3d87-4b05-a286-6e9f477b6d35", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T00:42:22.139Z", + "completed":"2016-05-13T00:42:22.139Z", + "new_balance":"9467.43", + "value":"-34.51" + } + }, + { + "id":"6386531c-de9f-4244-920f-c1dcb6d0dea1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T18:53:21.162Z", + "completed":"2016-05-13T18:53:21.162Z", + "new_balance":"9439.24", + "value":"-28.19" + } + }, + { + "id":"8c015a7f-db59-450b-9581-3318d4889635", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T21:00:16.669Z", + "completed":"2016-05-13T21:00:16.669Z", + "new_balance":"9432.66", + "value":"-6.58" + } + }, + { + "id":"ceb01dab-b20c-4504-b376-dd696524a33b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T01:48:59.071Z", + "completed":"2016-05-14T01:48:59.071Z", + "new_balance":"9351.45", + "value":"-81.21" + } + }, + { + "id":"a3c88a6a-3570-49ec-9b48-47789562fb2c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T19:02:37.802Z", + "completed":"2016-05-14T19:02:37.802Z", + "new_balance":"9286.22", + "value":"-65.23" + } + }, + { + "id":"d89672ba-9394-4402-bb1a-cd02e422fe49", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T13:13:12.916Z", + "completed":"2016-05-15T13:13:12.916Z", + "new_balance":"9258.24", + "value":"-27.98" + } + }, + { + "id":"6a062e8f-b147-408d-a35c-88ac9979a83a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T05:22:25.627Z", + "completed":"2016-05-30T05:22:25.627Z", + "new_balance":"8941.03", + "value":"-317.21" + } + }, + { + "id":"146cf522-b7a5-4bc3-b86b-63c5eaa9ac6c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T07:48:18.313Z", + "completed":"2016-05-30T07:48:18.313Z", + "new_balance":"11291.24", + "value":"2350.21" + } + }, + { + "id":"c65e6288-b3a1-402e-a75c-cd9a472ecd52", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T00:14:57.490Z", + "completed":"2016-06-01T00:14:57.490Z", + "new_balance":"11256.81", + "value":"-34.43" + } + }, + { + "id":"6393a83a-440c-4524-8474-fb97fbb76e43", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T06:46:31.517Z", + "completed":"2016-06-01T06:46:31.517Z", + "new_balance":"11152.09", + "value":"-104.72" + } + }, + { + "id":"c98f2e8d-38e9-40fa-89c8-34cf15724f1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T14:08:43.735Z", + "completed":"2016-06-01T14:08:43.735Z", + "new_balance":"11105.19", + "value":"-46.90" + } + }, + { + "id":"2c833ceb-8485-4fad-a0ad-ff8d4a41e89c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T15:46:02.741Z", + "completed":"2016-06-01T15:46:02.741Z", + "new_balance":"11070.76", + "value":"-34.43" + } + }, + { + "id":"6840673e-77b2-4a34-93f2-328fbc5fcf70", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T08:55:32.839Z", + "completed":"2016-06-04T08:55:32.839Z", + "new_balance":"11007.19", + "value":"-63.57" + } + }, + { + "id":"130c1174-58f4-4536-8a55-c4d956bcc84f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T14:07:46.856Z", + "completed":"2016-06-04T14:07:46.856Z", + "new_balance":"10945.82", + "value":"-61.37" + } + }, + { + "id":"ed62b2ff-4c18-4615-af40-bf517abb9978", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T04:28:43.326Z", + "completed":"2016-06-11T04:28:43.326Z", + "new_balance":"10900.35", + "value":"-45.47" + } + }, + { + "id":"2171986c-04fb-4868-87aa-4edd3b059a02", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T08:34:10.327Z", + "completed":"2016-06-11T08:34:10.327Z", + "new_balance":"10811.86", + "value":"-88.49" + } + }, + { + "id":"fb062452-8462-49dc-a99e-227c2e404318", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T14:30:47.489Z", + "completed":"2016-06-11T14:30:47.489Z", + "new_balance":"10730.07", + "value":"-81.79" + } + }, + { + "id":"5a7b9602-0886-41a1-b529-49784b24ece8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T02:45:23.299Z", + "completed":"2016-06-12T02:45:23.299Z", + "new_balance":"10690.43", + "value":"-39.64" + } + }, + { + "id":"150d7059-6eaa-4ce3-b777-c1b770c9ead1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T23:26:09.363Z", + "completed":"2016-06-12T23:26:09.363Z", + "new_balance":"10683.66", + "value":"-6.77" + } + }, + { + "id":"309734fb-ee43-4110-a912-471a9b543f79", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T00:28:54.468Z", + "completed":"2016-06-16T00:28:54.468Z", + "new_balance":"10579.47", + "value":"-104.19" + } + }, + { + "id":"69d847bd-9ac9-479e-aa41-8b3b6d317c08", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T08:21:51.263Z", + "completed":"2016-06-29T08:21:51.263Z", + "new_balance":"10551.49", + "value":"-27.98" + } + }, + { + "id":"764dbb4c-0c78-4f58-98af-57afbee97e1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T13:37:44.962Z", + "completed":"2016-06-30T13:37:44.962Z", + "new_balance":"10234.28", + "value":"-317.21" + } + }, + { + "id":"7d45a894-acf2-4645-9802-026240d4af4c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T18:59:37.763Z", + "completed":"2016-06-30T18:59:37.763Z", + "new_balance":"12584.49", + "value":"2350.21" + } + }, + { + "id":"1a98e3c1-bb83-4a06-b9e4-e1ae64766178", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T09:26:39.901Z", + "completed":"2016-07-01T09:26:39.901Z", + "new_balance":"12550.06", + "value":"-34.43" + } + }, + { + "id":"e3dcdb1e-bffe-494c-ad79-3cf503e084c2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T12:25:24.576Z", + "completed":"2016-07-01T12:25:24.576Z", + "new_balance":"12515.63", + "value":"-34.43" + } + }, + { + "id":"379c2294-c64e-44aa-9e57-b92369d3f75d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T22:39:59.840Z", + "completed":"2016-07-01T22:39:59.840Z", + "new_balance":"12410.91", + "value":"-104.72" + } + }, + { + "id":"b87576b5-4684-4336-8a42-270ff5119211", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T23:34:04.792Z", + "completed":"2016-07-01T23:34:04.792Z", + "new_balance":"12364.01", + "value":"-46.90" + } + }, + { + "id":"e35c50e3-4857-471b-b41e-227ee897d444", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T04:24:01.555Z", + "completed":"2016-07-05T04:24:01.555Z", + "new_balance":"12296.56", + "value":"-67.45" + } + }, + { + "id":"79f22738-2e00-47e7-af3c-2b2601a53349", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T05:22:09.202Z", + "completed":"2016-07-05T05:22:09.202Z", + "new_balance":"12215.35", + "value":"-81.21" + } + }, + { + "id":"c5220f16-427d-4b5f-9208-6a96ce0358b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T07:01:37.438Z", + "completed":"2016-07-08T07:01:37.438Z", + "new_balance":"12204.44", + "value":"-10.91" + } + }, + { + "id":"15efe10d-1ed4-4998-8ef6-a3ec85f4c19d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T22:30:39.893Z", + "completed":"2016-07-10T22:30:39.893Z", + "new_balance":"12157.98", + "value":"-46.46" + } + }, + { + "id":"86f5767c-3ec4-489f-83d8-1fe97300668d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T16:07:29.372Z", + "completed":"2016-07-12T16:07:29.372Z", + "new_balance":"12123.55", + "value":"-34.43" + } + }, + { + "id":"bdb2e444-bbf2-475a-adca-39152dad0763", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T22:08:52.379Z", + "completed":"2016-07-12T22:08:52.379Z", + "new_balance":"12066.91", + "value":"-56.64" + } + }, + { + "id":"4036d058-53e8-4d48-98c4-916d4e6289cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T10:19:56.038Z", + "completed":"2016-07-13T10:19:56.038Z", + "new_balance":"12063.32", + "value":"-3.59" + } + }, + { + "id":"abd35988-d1e9-4e6a-9ca3-ee79aba7b5cd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T12:08:35.552Z", + "completed":"2016-07-13T12:08:35.552Z", + "new_balance":"12057.67", + "value":"-5.65" + } + }, + { + "id":"05b2e819-d0d9-46ba-8572-dbfef4f1d674", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T11:01:52.818Z", + "completed":"2016-07-18T11:01:52.818Z", + "new_balance":"11974.58", + "value":"-83.09" + } + }, + { + "id":"bbf76b8e-ae37-48c6-9fe5-22ae40eeaebe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T20:03:56.008Z", + "completed":"2016-07-20T20:03:56.008Z", + "new_balance":"11893.14", + "value":"-81.44" + } + }, + { + "id":"79f10345-9c22-47a1-afd8-4b569b51c8c1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T20:23:12.212Z", + "completed":"2016-07-20T20:23:12.212Z", + "new_balance":"11811.93", + "value":"-81.21" + } + }, + { + "id":"78dd3985-c02d-4604-8c5b-109c94e13a25", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T15:43:52.251Z", + "completed":"2016-07-24T15:43:52.251Z", + "new_balance":"11784.48", + "value":"-27.45" + } + }, + { + "id":"3df40fcf-7b5b-47f7-b838-13ef4ae2ab89", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T12:22:20.386Z", + "completed":"2016-07-29T12:22:20.386Z", + "new_balance":"11756.50", + "value":"-27.98" + } + }, + { + "id":"4202c759-a5f7-42a8-b13f-37fdcc990c1d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T14:13:21.155Z", + "completed":"2016-07-29T14:13:21.155Z", + "new_balance":"14106.71", + "value":"2350.21" + } + }, + { + "id":"fc7c8cbc-71d2-400e-a9c9-80c6d33c7705", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T20:39:01.697Z", + "completed":"2016-07-30T20:39:01.697Z", + "new_balance":"13789.50", + "value":"-317.21" + } + }, + { + "id":"fc9e2c0d-5b2b-4c8c-bf86-6609e64869d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T04:56:39.800Z", + "completed":"2016-08-01T04:56:39.800Z", + "new_balance":"13742.60", + "value":"-46.90" + } + }, + { + "id":"f42c5705-da5e-444e-b1e2-5bb5bdb1e9a8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T18:26:32.800Z", + "completed":"2016-08-01T18:26:32.800Z", + "new_balance":"13637.88", + "value":"-104.72" + } + }, + { + "id":"4232553e-3a9c-462b-a606-5727faaa5ab6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T20:58:22.105Z", + "completed":"2016-08-01T20:58:22.105Z", + "new_balance":"13603.45", + "value":"-34.43" + } + }, + { + "id":"c13ab98a-d68b-4085-8ab4-f08851d4d26b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T23:35:58.961Z", + "completed":"2016-08-01T23:35:58.961Z", + "new_balance":"13569.02", + "value":"-34.43" + } + }, + { + "id":"76d9ccfc-f971-45f7-a578-ca6f413bf5ba", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T11:11:47.829Z", + "completed":"2016-08-03T11:11:47.829Z", + "new_balance":"13562.30", + "value":"-6.72" + } + }, + { + "id":"1ea73d5e-887e-45a5-a7ff-46ea3c9d45b0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T19:36:30.710Z", + "completed":"2016-08-04T19:36:30.710Z", + "new_balance":"13481.09", + "value":"-81.21" + } + }, + { + "id":"2bfb0594-7d0f-43b9-8e2d-2a9e0a405145", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T03:16:34.905Z", + "completed":"2016-08-08T03:16:34.905Z", + "new_balance":"13465.80", + "value":"-15.29" + } + }, + { + "id":"51bf3fc1-b954-4fa3-9238-caccea41fda2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T13:39:55.121Z", + "completed":"2016-08-08T13:39:55.121Z", + "new_balance":"13437.77", + "value":"-28.03" + } + }, + { + "id":"d85075fb-1c33-4932-bcba-6665378819cc", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T15:48:24.029Z", + "completed":"2016-08-08T15:48:24.029Z", + "new_balance":"13356.60", + "value":"-81.17" + } + }, + { + "id":"0b935e5c-f548-4776-a01e-4b11a2e8f8d4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T16:22:34.528Z", + "completed":"2016-08-08T16:22:34.528Z", + "new_balance":"13249.79", + "value":"-106.81" + } + }, + { + "id":"f5c67897-87f6-4374-adbf-af8cf35bc888", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T14:06:04.709Z", + "completed":"2016-08-09T14:06:04.709Z", + "new_balance":"13206.84", + "value":"-42.95" + } + }, + { + "id":"6337e55a-bcb4-47b3-bebb-f55b1c58230a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T15:45:10.892Z", + "completed":"2016-08-14T15:45:10.892Z", + "new_balance":"13180.11", + "value":"-26.73" + } + }, + { + "id":"a56fa3c8-1d6f-4a2a-ba76-d1b2c921414e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T17:03:35.872Z", + "completed":"2016-08-15T17:03:35.872Z", + "new_balance":"13138.57", + "value":"-41.54" + } + }, + { + "id":"416731c9-26e1-4906-8be2-934c60b105a1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T23:28:45.582Z", + "completed":"2016-08-19T23:28:45.582Z", + "new_balance":"13131.58", + "value":"-6.99" + } + }, + { + "id":"bd306b4d-4cdb-44ba-9cd6-05b4db6f7f2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T05:00:05.516Z", + "completed":"2016-08-22T05:00:05.516Z", + "new_balance":"13081.64", + "value":"-49.94" + } + }, + { + "id":"6e5ea8b3-a258-4f8f-8372-5d05ca6f8957", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T23:01:25.306Z", + "completed":"2016-08-26T23:01:25.306Z", + "new_balance":"13000.43", + "value":"-81.21" + } + }, + { + "id":"77cd09e7-29ef-4150-b9c5-60103a7dae58", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T07:20:53.640Z", + "completed":"2016-08-28T07:20:53.640Z", + "new_balance":"12683.22", + "value":"-317.21" + } + }, + { + "id":"f73c5034-0c48-41e6-bd5f-81111e7d974d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T04:04:06.937Z", + "completed":"2016-08-29T04:04:06.937Z", + "new_balance":"15033.43", + "value":"2350.21" + } + }, + { + "id":"9d49d7f0-a524-42b4-a7be-d1cb26dafff8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T12:31:23.744Z", + "completed":"2016-08-29T12:31:23.744Z", + "new_balance":"15005.45", + "value":"-27.98" + } + }, + { + "id":"5e586710-5f38-4387-82dc-df966c939728", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T21:53:36.394Z", + "completed":"2016-08-30T21:53:36.394Z", + "new_balance":"14688.24", + "value":"-317.21" + } + }, + { + "id":"c9a1b1fc-ba42-4c07-8076-f854bfc3f44a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T01:43:43.425Z", + "completed":"2016-09-01T01:43:43.425Z", + "new_balance":"14583.52", + "value":"-104.72" + } + }, + { + "id":"d32001bc-2b0e-4e3f-803e-3d374e9f13e7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:36:06.102Z", + "completed":"2016-09-01T06:36:06.102Z", + "new_balance":"14549.09", + "value":"-34.43" + } + }, + { + "id":"745d4f16-7e29-4843-a956-9e7ad50d650a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T10:03:57.581Z", + "completed":"2016-09-01T10:03:57.581Z", + "new_balance":"14502.19", + "value":"-46.90" + } + }, + { + "id":"f2d2d91c-5aa8-4483-afbb-a6b223d60c4d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T23:00:33.251Z", + "completed":"2016-09-01T23:00:33.251Z", + "new_balance":"14467.76", + "value":"-34.43" + } + }, + { + "id":"e9bf9504-e722-473a-b6c2-85ce4255bb93", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T17:54:30.013Z", + "completed":"2016-09-09T17:54:30.013Z", + "new_balance":"14404.19", + "value":"-63.57" + } + }, + { + "id":"3f6c6cb1-a49a-4065-a81e-7d2713637820", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T18:44:39.360Z", + "completed":"2016-09-09T18:44:39.360Z", + "new_balance":"14342.82", + "value":"-61.37" + } + }, + { + "id":"436d74bb-b779-4fda-84aa-068c17cc06aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T04:12:19.054Z", + "completed":"2016-09-17T04:12:19.054Z", + "new_balance":"14254.33", + "value":"-88.49" + } + }, + { + "id":"a6b15a41-ac23-42e4-a85b-1dcfa287281e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T01:46:29.562Z", + "completed":"2016-09-18T01:46:29.562Z", + "new_balance":"14214.69", + "value":"-39.64" + } + }, + { + "id":"87c719de-6c76-484d-89cc-752c421eda01", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T03:15:48.016Z", + "completed":"2016-09-18T03:15:48.016Z", + "new_balance":"14132.90", + "value":"-81.79" + } + }, + { + "id":"918c3e2a-057a-4ed7-8250-a611d40db583", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T07:54:11.420Z", + "completed":"2016-09-18T07:54:11.420Z", + "new_balance":"14126.13", + "value":"-6.77" + } + }, + { + "id":"b3a1dbe9-65ab-499d-ada2-6302e6523f8f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T17:11:14.752Z", + "completed":"2016-09-18T17:11:14.752Z", + "new_balance":"14080.66", + "value":"-45.47" + } + }, + { + "id":"6a16277c-b3e7-444c-8932-b741e72ecafb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T22:19:36.101Z", + "completed":"2016-09-22T22:19:36.101Z", + "new_balance":"13976.47", + "value":"-104.19" + } + }, + { + "id":"17033a26-613d-4d27-a797-65c87c966fc5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T07:16:47.914Z", + "completed":"2016-09-29T07:16:47.914Z", + "new_balance":"16326.68", + "value":"2350.21" + } + }, + { + "id":"fefced95-ae7d-4a85-badb-ee35fc1898cf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T11:30:58.731Z", + "completed":"2016-09-29T11:30:58.731Z", + "new_balance":"16298.70", + "value":"-27.98" + } + }, + { + "id":"8323e1e0-da9a-4b4a-b4a7-d818aea03fe3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T07:30:22.086Z", + "completed":"2016-09-30T07:30:22.086Z", + "new_balance":"15981.49", + "value":"-317.21" + } + }, + { + "id":"74306cfd-a729-4262-9209-c411a12a88c8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T06:59:30.093Z", + "completed":"2016-10-01T06:59:30.093Z", + "new_balance":"15947.06", + "value":"-34.43" + } + }, + { + "id":"63597b46-35d9-440e-975a-57c5deffef60", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T07:01:50.943Z", + "completed":"2016-10-01T07:01:50.943Z", + "new_balance":"15842.34", + "value":"-104.72" + } + }, + { + "id":"1411503e-7b0f-470f-a7de-c57a504cf922", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T11:46:38.126Z", + "completed":"2016-10-01T11:46:38.126Z", + "new_balance":"15795.44", + "value":"-46.90" + } + }, + { + "id":"7072d2aa-53d5-4f42-9ae7-cec5e83cc30b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T19:57:39.929Z", + "completed":"2016-10-01T19:57:39.929Z", + "new_balance":"15761.01", + "value":"-34.43" + } + }, + { + "id":"8430de07-0ddd-4d2b-9772-c486273fa2a8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T01:24:02.196Z", + "completed":"2016-10-02T01:24:02.196Z", + "new_balance":"15666.68", + "value":"-94.33" + } + }, + { + "id":"7b85a535-8cda-4018-86e7-a58884c963b7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T00:30:07.111Z", + "completed":"2016-10-05T00:30:07.111Z", + "new_balance":"15660.10", + "value":"-6.58" + } + }, + { + "id":"473b6385-97dd-4323-b628-3d65c9679c3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T09:28:15.140Z", + "completed":"2016-10-05T09:28:15.140Z", + "new_balance":"15605.26", + "value":"-54.84" + } + }, + { + "id":"03da29c1-fb19-4805-b068-7f3212f0945a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T11:26:02.237Z", + "completed":"2016-10-05T11:26:02.237Z", + "new_balance":"15563.83", + "value":"-41.43" + } + }, + { + "id":"584aafd1-6b38-4558-8b7b-66f30bcd4f48", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T12:39:23.381Z", + "completed":"2016-10-05T12:39:23.381Z", + "new_balance":"15551.90", + "value":"-11.93" + } + }, + { + "id":"ecb3919e-0207-45b0-a461-b42c155181b4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T12:59:41.281Z", + "completed":"2016-10-05T12:59:41.281Z", + "new_balance":"15470.69", + "value":"-81.21" + } + }, + { + "id":"4a0134b6-6829-403a-b8e0-2f4e91c39693", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T15:23:54.295Z", + "completed":"2016-10-05T15:23:54.295Z", + "new_balance":"15436.26", + "value":"-34.43" + } + }, + { + "id":"1c2b6133-0848-4af5-9117-9f4a7e2b905f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T17:59:53.292Z", + "completed":"2016-10-05T17:59:53.292Z", + "new_balance":"15431.62", + "value":"-4.64" + } + }, + { + "id":"576f837a-448d-4eaa-82ec-8ddebd8bda31", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T02:01:43.613Z", + "completed":"2016-10-09T02:01:43.613Z", + "new_balance":"15333.70", + "value":"-97.92" + } + }, + { + "id":"948cfee2-6980-4cf8-b6c3-2379b3c0b094", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T13:00:10.847Z", + "completed":"2016-10-11T13:00:10.847Z", + "new_balance":"15277.57", + "value":"-56.13" + } + }, + { + "id":"4c36fd98-3a7c-4f7b-b26a-50dca6eec0da", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T06:06:34.660Z", + "completed":"2016-10-12T06:06:34.660Z", + "new_balance":"15250.12", + "value":"-27.45" + } + }, + { + "id":"fa7349d2-7ab8-4fbc-85e0-f63d39356e1c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T14:54:42.673Z", + "completed":"2016-10-12T14:54:42.673Z", + "new_balance":"15168.91", + "value":"-81.21" + } + }, + { + "id":"714d60f3-23e3-4aca-974d-a2685f63c336", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T03:56:55.056Z", + "completed":"2016-10-20T03:56:55.056Z", + "new_balance":"15140.93", + "value":"-27.98" + } + }, + { + "id":"75909b50-cabf-401c-b13f-124b2b422317", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T13:55:04.925Z", + "completed":"2016-10-29T13:55:04.925Z", + "new_balance":"17491.14", + "value":"2350.21" + } + }, + { + "id":"d356872c-b058-4c06-8d63-23ac43d7fad5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T05:44:27.160Z", + "completed":"2016-10-30T05:44:27.160Z", + "new_balance":"17173.93", + "value":"-317.21" + } + }, + { + "id":"c059fc99-0a4b-4c6d-a865-3c544048fbb8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T08:21:30.728Z", + "completed":"2016-11-02T08:21:30.728Z", + "new_balance":"17139.50", + "value":"-34.43" + } + }, + { + "id":"a8baba6e-e336-4f44-9f47-9106c60a5560", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T11:11:24.792Z", + "completed":"2016-11-02T11:11:24.792Z", + "new_balance":"17105.07", + "value":"-34.43" + } + }, + { + "id":"0ab47113-4934-499d-b745-cb4fb799332c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T13:38:45.384Z", + "completed":"2016-11-02T13:38:45.384Z", + "new_balance":"17000.35", + "value":"-104.72" + } + }, + { + "id":"bb539c4c-5d62-400a-a133-f8a4ef9c6cb7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T20:55:27.814Z", + "completed":"2016-11-02T20:55:27.814Z", + "new_balance":"16953.45", + "value":"-46.90" + } + }, + { + "id":"3a1e8f9e-da76-477d-ab0d-38af9df91b04", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T19:05:23.288Z", + "completed":"2016-11-04T19:05:23.288Z", + "new_balance":"16946.87", + "value":"-6.58" + } + }, + { + "id":"76708b86-b778-4a1e-bf60-e9df2dd011ca", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T23:50:15.521Z", + "completed":"2016-11-04T23:50:15.521Z", + "new_balance":"16865.66", + "value":"-81.21" + } + }, + { + "id":"e89abc81-7b3b-41e4-8dc0-c18702624ddb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T13:25:47.049Z", + "completed":"2016-11-06T13:25:47.049Z", + "new_balance":"16785.45", + "value":"-80.21" + } + }, + { + "id":"9b606102-488c-43b7-81d2-897bdda61cb9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T04:29:52.742Z", + "completed":"2016-11-07T04:29:52.742Z", + "new_balance":"16750.94", + "value":"-34.51" + } + }, + { + "id":"81cdc6cc-db15-4116-91fa-94e03dee2761", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T09:24:42.137Z", + "completed":"2016-11-07T09:24:42.137Z", + "new_balance":"16656.61", + "value":"-94.33" + } + }, + { + "id":"b1d193c1-aeae-413a-a7cd-bb1b04f29cec", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T05:21:01.671Z", + "completed":"2016-11-09T05:21:01.671Z", + "new_balance":"16613.66", + "value":"-42.95" + } + }, + { + "id":"b6deb1ee-c018-4f9a-b8e9-ef20b3c60451", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T06:59:30.846Z", + "completed":"2016-11-09T06:59:30.846Z", + "new_balance":"16601.73", + "value":"-11.93" + } + }, + { + "id":"f3c2f21e-84c2-40bf-b0ec-34f69ea01217", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T06:47:22.531Z", + "completed":"2016-11-13T06:47:22.531Z", + "new_balance":"16573.54", + "value":"-28.19" + } + }, + { + "id":"e4929297-640b-4c37-a9d5-83ed1dca783a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T12:00:22.469Z", + "completed":"2016-11-13T12:00:22.469Z", + "new_balance":"16566.96", + "value":"-6.58" + } + }, + { + "id":"92f2d412-a8f6-4cce-94b3-e3ebe794b006", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T12:23:57.595Z", + "completed":"2016-11-13T12:23:57.595Z", + "new_balance":"16532.45", + "value":"-34.51" + } + }, + { + "id":"9ff87497-2966-4190-91c8-135141a9b6c9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T04:39:11.300Z", + "completed":"2016-11-14T04:39:11.300Z", + "new_balance":"16451.24", + "value":"-81.21" + } + }, + { + "id":"5c9b2012-fa6e-4817-aba0-826877299558", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T10:47:38.686Z", + "completed":"2016-11-14T10:47:38.686Z", + "new_balance":"16386.01", + "value":"-65.23" + } + }, + { + "id":"babe3de5-f8a0-427a-beab-ad4fe2aca9ea", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T23:38:31.591Z", + "completed":"2016-11-15T23:38:31.591Z", + "new_balance":"16358.03", + "value":"-27.98" + } + }, + { + "id":"ea767c83-45cd-4448-b119-c1c181526b67", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T00:39:15.055Z", + "completed":"2016-11-30T00:39:15.055Z", + "new_balance":"16040.82", + "value":"-317.21" + } + }, + { + "id":"3ff68542-6878-4060-b349-37d29cf6b6ee", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T07:46:25.432Z", + "completed":"2016-11-30T07:46:25.432Z", + "new_balance":"18391.03", + "value":"2350.21" + } + }, + { + "id":"21150264-e1e1-4add-8699-8fd1e72b19a7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T00:01:45.033Z", + "completed":"2016-12-01T00:01:45.033Z", + "new_balance":"18286.31", + "value":"-104.72" + } + }, + { + "id":"989f30a9-cd7e-4ddf-805f-5c302062da41", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T16:52:52.287Z", + "completed":"2016-12-01T16:52:52.287Z", + "new_balance":"18251.88", + "value":"-34.43" + } + }, + { + "id":"73742715-1506-4246-aefe-9716fd9d5cef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T19:27:02.406Z", + "completed":"2016-12-01T19:27:02.406Z", + "new_balance":"18204.98", + "value":"-46.90" + } + }, + { + "id":"76c779c5-7128-43f8-9e54-a14615bacc01", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T20:54:38.553Z", + "completed":"2016-12-01T20:54:38.553Z", + "new_balance":"18170.55", + "value":"-34.43" + } + }, + { + "id":"d385f3d5-4656-478b-803a-aa29197ad27d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T14:34:40.861Z", + "completed":"2016-12-04T14:34:40.861Z", + "new_balance":"18106.98", + "value":"-63.57" + } + }, + { + "id":"6dd4d50c-8a81-4a1e-ba69-9d0131ff4952", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T19:37:56.263Z", + "completed":"2016-12-04T19:37:56.263Z", + "new_balance":"18045.61", + "value":"-61.37" + } + }, + { + "id":"dc5f0037-68d4-4753-be2f-e590988a1af9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T08:34:17.809Z", + "completed":"2016-12-11T08:34:17.809Z", + "new_balance":"17957.12", + "value":"-88.49" + } + }, + { + "id":"a60b192e-acf2-402a-bed9-2aeb4d00c045", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T19:32:08.207Z", + "completed":"2016-12-11T19:32:08.207Z", + "new_balance":"17911.65", + "value":"-45.47" + } + }, + { + "id":"079609f0-cbdc-405f-9416-1645521f68cb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T20:06:29.802Z", + "completed":"2016-12-11T20:06:29.802Z", + "new_balance":"17829.86", + "value":"-81.79" + } + }, + { + "id":"b66faa64-7e4b-44a1-b62e-ddb092e8c1b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T04:59:03.856Z", + "completed":"2016-12-12T04:59:03.856Z", + "new_balance":"17790.22", + "value":"-39.64" + } + }, + { + "id":"7f9e4966-a23f-420b-b895-7a148ab7c6c8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T05:01:24.517Z", + "completed":"2016-12-12T05:01:24.517Z", + "new_balance":"17783.45", + "value":"-6.77" + } + }, + { + "id":"58f589b1-4a72-471d-96ba-d19f2f6b5e67", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T10:55:34.458Z", + "completed":"2016-12-16T10:55:34.458Z", + "new_balance":"17679.26", + "value":"-104.19" + } + }, + { + "id":"e0238cad-322c-43d3-a9e4-846f4b1729c0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T17:22:15.536Z", + "completed":"2016-12-29T17:22:15.536Z", + "new_balance":"17651.28", + "value":"-27.98" + } + }, + { + "id":"54eff42e-8d26-428d-8dd3-c78b8e0d444d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T02:57:57.726Z", + "completed":"2016-12-30T02:57:57.726Z", + "new_balance":"17334.07", + "value":"-317.21" + } + }, + { + "id":"ae00f7a5-f5d0-4f45-806f-ee09dce97881", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T15:13:03.227Z", + "completed":"2016-12-30T15:13:03.227Z", + "new_balance":"19684.28", + "value":"2350.21" + } + }, + { + "id":"408c4e1f-a27d-4723-885c-1d833a9bc14a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T02:37:12.825Z", + "completed":"2017-01-01T02:37:12.825Z", + "new_balance":"19637.38", + "value":"-46.90" + } + }, + { + "id":"a4d3f518-6b4d-47aa-b7a9-61d193421980", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T15:56:16.822Z", + "completed":"2017-01-01T15:56:16.822Z", + "new_balance":"19602.95", + "value":"-34.43" + } + }, + { + "id":"e51fccd2-837f-401d-b090-ae970dafd54e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T20:01:01.271Z", + "completed":"2017-01-01T20:01:01.271Z", + "new_balance":"19568.52", + "value":"-34.43" + } + }, + { + "id":"8a84eb23-61d5-4fac-97dd-bab1090016bd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T21:21:22.976Z", + "completed":"2017-01-01T21:21:22.976Z", + "new_balance":"19463.80", + "value":"-104.72" + } + }, + { + "id":"cae6b392-1027-484c-8344-123366d2dce7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T10:40:08.030Z", + "completed":"2017-01-05T10:40:08.030Z", + "new_balance":"19396.35", + "value":"-67.45" + } + }, + { + "id":"18d37373-3f9e-4c77-8b90-2242c25d2357", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T12:16:57.934Z", + "completed":"2017-01-05T12:16:57.934Z", + "new_balance":"19315.14", + "value":"-81.21" + } + }, + { + "id":"1958f69d-aa67-42dc-bb7d-8bea979d20db", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T07:05:36.425Z", + "completed":"2017-01-08T07:05:36.425Z", + "new_balance":"19304.23", + "value":"-10.91" + } + }, + { + "id":"51d7a3f7-a7f7-475d-979e-e656d1eec46c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T13:38:47.670Z", + "completed":"2017-01-10T13:38:47.670Z", + "new_balance":"19257.77", + "value":"-46.46" + } + }, + { + "id":"a86ebc00-1fcc-4636-ab65-50af4542b523", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T01:54:03.276Z", + "completed":"2017-01-11T01:54:03.276Z", + "new_balance":"19201.13", + "value":"-56.64" + } + }, + { + "id":"ca9bf559-4a3c-4d39-8cb8-867282b37328", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T12:31:35.244Z", + "completed":"2017-01-12T12:31:35.244Z", + "new_balance":"19166.70", + "value":"-34.43" + } + }, + { + "id":"3b41fa20-5f44-422d-8fc9-bef5bc6ac5ac", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T05:27:24.485Z", + "completed":"2017-01-13T05:27:24.485Z", + "new_balance":"19163.11", + "value":"-3.59" + } + }, + { + "id":"8ff271dd-d275-43cf-a781-5668518c7122", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T16:18:18.083Z", + "completed":"2017-01-13T16:18:18.083Z", + "new_balance":"19157.46", + "value":"-5.65" + } + }, + { + "id":"b9856bc2-43b8-423e-91be-14174a16aec7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T18:54:42.795Z", + "completed":"2017-01-16T18:54:42.795Z", + "new_balance":"19074.37", + "value":"-83.09" + } + }, + { + "id":"173c6b64-a8be-4d83-82b5-ad34a42323dd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T03:14:49.931Z", + "completed":"2017-01-19T03:14:49.931Z", + "new_balance":"18992.93", + "value":"-81.44" + } + }, + { + "id":"e6f50376-ef5c-439e-8fbb-85043f51897e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T21:03:13.133Z", + "completed":"2017-01-19T21:03:13.133Z", + "new_balance":"18911.72", + "value":"-81.21" + } + }, + { + "id":"6becf616-7561-4da8-a290-737b449b2671", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T16:27:34.142Z", + "completed":"2017-01-24T16:27:34.142Z", + "new_balance":"18884.27", + "value":"-27.45" + } + }, + { + "id":"b9ec879e-69cc-4daa-8a58-a559279e2215", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T07:09:48.608Z", + "completed":"2017-01-27T07:09:48.608Z", + "new_balance":"21234.48", + "value":"2350.21" + } + }, + { + "id":"2b440e53-fd03-45e5-a35d-ced777b50774", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T11:54:22.125Z", + "completed":"2017-01-27T11:54:22.125Z", + "new_balance":"21206.50", + "value":"-27.98" + } + }, + { + "id":"5ebfa0c8-46d8-4866-b237-fc11c5e225dd", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T14:49:51.484Z", + "completed":"2017-01-31T14:49:51.484Z", + "new_balance":"20889.29", + "value":"-317.21" + } + }, + { + "id":"f46efc04-f105-4474-b508-32c470bda849", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T03:52:23.991Z", + "completed":"2017-02-01T03:52:23.991Z", + "new_balance":"20854.86", + "value":"-34.43" + } + }, + { + "id":"961023c4-154b-46bf-aa9a-73c0768e8922", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T12:05:30.704Z", + "completed":"2017-02-01T12:05:30.704Z", + "new_balance":"20820.43", + "value":"-34.43" + } + }, + { + "id":"f93df5fc-8786-4ca2-9d4c-26e892ec8a68", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T16:01:42.614Z", + "completed":"2017-02-01T16:01:42.614Z", + "new_balance":"20715.71", + "value":"-104.72" + } + }, + { + "id":"694b7955-fba5-4e5f-bf3a-a1adf0673bb1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T20:28:02.707Z", + "completed":"2017-02-01T20:28:02.707Z", + "new_balance":"20668.81", + "value":"-46.90" + } + }, + { + "id":"068b3a5b-3c3d-435f-86f1-ddacea233ffa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T05:23:00.473Z", + "completed":"2017-02-03T05:23:00.473Z", + "new_balance":"20662.09", + "value":"-6.72" + } + }, + { + "id":"55195218-32cf-4aa6-92c3-61e2ef935825", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T11:52:33.617Z", + "completed":"2017-02-04T11:52:33.617Z", + "new_balance":"20580.88", + "value":"-81.21" + } + }, + { + "id":"b96015e6-5540-422b-990c-2b26b84d646d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T02:32:11.214Z", + "completed":"2017-02-06T02:32:11.214Z", + "new_balance":"20474.07", + "value":"-106.81" + } + }, + { + "id":"c3cd29a0-ed59-4a9c-9520-7b325279c389", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T23:53:36.047Z", + "completed":"2017-02-06T23:53:36.047Z", + "new_balance":"20392.90", + "value":"-81.17" + } + }, + { + "id":"d59b3d54-e0b3-4404-b387-0ce13d53d1e3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T02:33:24.188Z", + "completed":"2017-02-07T02:33:24.188Z", + "new_balance":"20364.87", + "value":"-28.03" + } + }, + { + "id":"280514ea-17aa-4399-a9ad-66f44eee10c3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T08:14:23.910Z", + "completed":"2017-02-08T08:14:23.910Z", + "new_balance":"20349.58", + "value":"-15.29" + } + }, + { + "id":"9166730d-1d24-4b62-9196-9db9a1c4cbc6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T02:17:22.230Z", + "completed":"2017-02-09T02:17:22.230Z", + "new_balance":"20306.63", + "value":"-42.95" + } + }, + { + "id":"f7437719-bfa5-4c1f-87f9-0b58274329f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T05:10:20.740Z", + "completed":"2017-02-11T05:10:20.740Z", + "new_balance":"20279.90", + "value":"-26.73" + } + }, + { + "id":"e604362e-4fa1-46ae-a9bb-558f8adad677", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T06:02:41.705Z", + "completed":"2017-02-13T06:02:41.705Z", + "new_balance":"20238.36", + "value":"-41.54" + } + }, + { + "id":"e45ad3ce-6169-4fb1-bdd1-2d615dd21c6d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T19:46:01.152Z", + "completed":"2017-02-17T19:46:01.152Z", + "new_balance":"20231.37", + "value":"-6.99" + } + }, + { + "id":"8596d400-328a-4724-a561-7c405c78a58e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T21:46:40.350Z", + "completed":"2017-02-19T21:46:40.350Z", + "new_balance":"20181.43", + "value":"-49.94" + } + }, + { + "id":"d7b280ea-37b8-4c81-97ce-44789bb30b83", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T06:12:50.530Z", + "completed":"2017-02-21T06:12:50.530Z", + "new_balance":"20100.22", + "value":"-81.21" + } + }, + { + "id":"dfec7e1a-19f8-40a4-b0d9-058e8cc6e581", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T18:42:55.072Z", + "completed":"2017-02-24T18:42:55.072Z", + "new_balance":"20072.24", + "value":"-27.98" + } + }, + { + "id":"8696f4b9-7d70-4776-913d-0a5c63befb21", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T19:22:09.298Z", + "completed":"2017-02-26T19:22:09.298Z", + "new_balance":"22422.45", + "value":"2350.21" + } + }, + { + "id":"e2baabc7-8c8e-4dfd-ab22-60c7e97a3ee8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T13:13:25.601Z", + "completed":"2017-03-01T13:13:25.601Z", + "new_balance":"22388.02", + "value":"-34.43" + } + }, + { + "id":"53376a2a-194c-46ca-9c95-7eb8999834a3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T13:22:28.176Z", + "completed":"2017-03-01T13:22:28.176Z", + "new_balance":"22353.59", + "value":"-34.43" + } + }, + { + "id":"1165e9fd-b0d8-48e8-b75b-49588ba6df10", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T15:12:18.803Z", + "completed":"2017-03-01T15:12:18.803Z", + "new_balance":"22306.69", + "value":"-46.90" + } + }, + { + "id":"a1f29a59-c054-4f9d-919a-d0e6a98abce9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T22:48:28.985Z", + "completed":"2017-03-01T22:48:28.985Z", + "new_balance":"22201.97", + "value":"-104.72" + } + }, + { + "id":"c498a4d6-ce0d-4f42-9379-8ab020871604", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T17:48:02.672Z", + "completed":"2017-03-09T17:48:02.672Z", + "new_balance":"22140.60", + "value":"-61.37" + } + }, + { + "id":"5ab2f984-4316-4dcd-bce1-e0233d44d28c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T19:25:57.169Z", + "completed":"2017-03-09T19:25:57.169Z", + "new_balance":"22077.03", + "value":"-63.57" + } + }, + { + "id":"f896b82f-2241-461c-a170-202af3d2325c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T23:13:33.620Z", + "completed":"2017-03-17T23:13:33.620Z", + "new_balance":"21988.54", + "value":"-88.49" + } + }, + { + "id":"3a929864-0e79-4d18-a23a-98485caffd54", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T04:44:53.675Z", + "completed":"2017-03-18T04:44:53.675Z", + "new_balance":"21906.75", + "value":"-81.79" + } + }, + { + "id":"1735218b-6aee-4ab6-b225-714ae42686b7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T05:31:08.079Z", + "completed":"2017-03-18T05:31:08.079Z", + "new_balance":"21899.98", + "value":"-6.77" + } + }, + { + "id":"f4763771-91e3-4268-bc6e-653d2f0a9556", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T10:22:57.727Z", + "completed":"2017-03-18T10:22:57.727Z", + "new_balance":"21854.51", + "value":"-45.47" + } + }, + { + "id":"aeed0d0e-737d-47de-838d-93a66ed48fb3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T12:09:40.005Z", + "completed":"2017-03-18T12:09:40.005Z", + "new_balance":"21814.87", + "value":"-39.64" + } + }, + { + "id":"8aada931-861e-468a-8645-fc6ff07b7cbb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T05:44:39.072Z", + "completed":"2017-03-22T05:44:39.072Z", + "new_balance":"21710.68", + "value":"-104.19" + } + }, + { + "id":"b9a87516-36ad-4d15-9923-8ea2862fc168", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T00:47:29.481Z", + "completed":"2017-03-29T00:47:29.481Z", + "new_balance":"24060.89", + "value":"2350.21" + } + }, + { + "id":"d6b28f77-1f0c-4d39-a708-d0189b27e69c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T09:14:39.405Z", + "completed":"2017-03-29T09:14:39.405Z", + "new_balance":"24032.91", + "value":"-27.98" + } + }, + { + "id":"5a91b57c-b164-4142-af97-31f2d093e98d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T19:03:52.152Z", + "completed":"2017-03-31T19:03:52.152Z", + "new_balance":"23715.70", + "value":"-317.21" + } + }, + { + "id":"ee43e5cc-9402-4f91-a8d3-2abeacad4009", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T05:32:28.230Z", + "completed":"2017-04-01T05:32:28.230Z", + "new_balance":"23610.98", + "value":"-104.72" + } + }, + { + "id":"52f0c71f-b572-40bb-9202-93ec544dff1c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T17:40:34.433Z", + "completed":"2017-04-01T17:40:34.433Z", + "new_balance":"23576.55", + "value":"-34.43" + } + }, + { + "id":"7111a28e-4158-4a0f-9fbe-5ae345d44e8f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T17:59:00.323Z", + "completed":"2017-04-01T17:59:00.323Z", + "new_balance":"23542.12", + "value":"-34.43" + } + }, + { + "id":"a207a40f-d096-4304-b652-dcf1f4f90fa5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T20:24:37.942Z", + "completed":"2017-04-01T20:24:37.942Z", + "new_balance":"23495.22", + "value":"-46.90" + } + }, + { + "id":"6aa1989e-64b4-491e-bb58-016174f21504", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T01:03:24.836Z", + "completed":"2017-04-02T01:03:24.836Z", + "new_balance":"23400.89", + "value":"-94.33" + } + }, + { + "id":"382b5997-fca9-4fb5-9acf-7291e4060013", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T05:59:14.168Z", + "completed":"2017-04-05T05:59:14.168Z", + "new_balance":"23346.05", + "value":"-54.84" + } + }, + { + "id":"e2f20f2a-4694-4208-99b3-da7a69003163", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T11:05:41.811Z", + "completed":"2017-04-05T11:05:41.811Z", + "new_balance":"23334.12", + "value":"-11.93" + } + }, + { + "id":"e0ecaa9c-da25-4cb2-8cc6-305d8d3596fe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T15:21:56.181Z", + "completed":"2017-04-05T15:21:56.181Z", + "new_balance":"23292.69", + "value":"-41.43" + } + }, + { + "id":"ebddc1b1-9fb5-41f5-94ad-2566ad233f86", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T15:29:00.412Z", + "completed":"2017-04-05T15:29:00.412Z", + "new_balance":"23286.11", + "value":"-6.58" + } + }, + { + "id":"e5f69266-92eb-46db-bcb1-15ec5e27fe98", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T16:02:24.968Z", + "completed":"2017-04-05T16:02:24.968Z", + "new_balance":"23251.68", + "value":"-34.43" + } + }, + { + "id":"e03058d0-72ef-423f-b78d-5660288d43f9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T22:32:42.147Z", + "completed":"2017-04-05T22:32:42.147Z", + "new_balance":"23170.47", + "value":"-81.21" + } + }, + { + "id":"5eb6c61f-e8a1-4343-a50e-1a5de99a924f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T23:13:20.743Z", + "completed":"2017-04-05T23:13:20.743Z", + "new_balance":"23165.83", + "value":"-4.64" + } + }, + { + "id":"b22e06c2-e705-455a-8efd-979805e2f792", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T21:28:08.402Z", + "completed":"2017-04-08T21:28:08.402Z", + "new_balance":"23067.91", + "value":"-97.92" + } + }, + { + "id":"1f06435c-6c6b-453d-ab37-69c2945dd42f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T10:10:23.094Z", + "completed":"2017-04-10T10:10:23.094Z", + "new_balance":"23011.78", + "value":"-56.13" + } + }, + { + "id":"62402d09-02c0-4806-8568-d6a8e6b494f1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T07:12:40.230Z", + "completed":"2017-04-11T07:12:40.230Z", + "new_balance":"22930.57", + "value":"-81.21" + } + }, + { + "id":"b4a46250-ebe0-48e1-9e04-8771206ee12b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T08:49:34.572Z", + "completed":"2017-04-11T08:49:34.572Z", + "new_balance":"22903.12", + "value":"-27.45" + } + }, + { + "id":"0286d856-a3a9-47b6-8cc3-6ac624884beb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T15:39:11.563Z", + "completed":"2017-04-13T15:39:11.563Z", + "new_balance":"22875.14", + "value":"-27.98" + } + }, + { + "id":"06536ab0-fafc-4728-8204-b83129722605", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T15:15:00.195Z", + "completed":"2017-04-18T15:15:00.195Z", + "new_balance":"25225.35", + "value":"2350.21" + } + }, + { + "id":"ff4d18ba-43d5-44f0-ba67-a4180064650a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T09:55:11.538Z", + "completed":"2017-04-25T09:55:11.538Z", + "new_balance":"24908.14", + "value":"-317.21" + } + }, + { + "id":"2790ab6b-096a-46c4-be98-83edc6d771f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T11:08:31.595Z", + "completed":"2017-05-02T11:08:31.595Z", + "new_balance":"24803.42", + "value":"-104.72" + } + }, + { + "id":"a00d79d8-8804-49fb-bb23-4261f8e2324c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T15:53:57.974Z", + "completed":"2017-05-02T15:53:57.974Z", + "new_balance":"24756.52", + "value":"-46.90" + } + }, + { + "id":"3e0f8ece-6cbb-4773-90cd-ee057fca2053", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T18:17:50.510Z", + "completed":"2017-05-02T18:17:50.510Z", + "new_balance":"24722.09", + "value":"-34.43" + } + }, + { + "id":"ed10fdb6-f308-48da-8edc-6299b2144c5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T20:43:52.091Z", + "completed":"2017-05-02T20:43:52.091Z", + "new_balance":"24687.66", + "value":"-34.43" + } + }, + { + "id":"12756b22-b530-47a4-9b24-8259398f2ffa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T03:10:59.579Z", + "completed":"2017-05-04T03:10:59.579Z", + "new_balance":"24606.45", + "value":"-81.21" + } + }, + { + "id":"4f36cfba-38c8-4f0f-9e28-be7f3a6da2ac", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T17:28:28.125Z", + "completed":"2017-05-04T17:28:28.125Z", + "new_balance":"24599.87", + "value":"-6.58" + } + }, + { + "id":"63875aba-fa51-494f-aecd-c0a49f59ad2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T23:58:31.830Z", + "completed":"2017-05-06T23:58:31.830Z", + "new_balance":"24519.66", + "value":"-80.21" + } + }, + { + "id":"31665dbd-1af1-4c97-9732-82ba8d1091f2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T03:34:27.537Z", + "completed":"2017-05-07T03:34:27.537Z", + "new_balance":"24485.15", + "value":"-34.51" + } + }, + { + "id":"80e34861-f9d0-44fc-b826-d0347237255d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T04:01:41.971Z", + "completed":"2017-05-07T04:01:41.971Z", + "new_balance":"24390.82", + "value":"-94.33" + } + }, + { + "id":"8c7978aa-6bcd-42d1-9740-6e110efb9e72", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T03:49:47.597Z", + "completed":"2017-05-09T03:49:47.597Z", + "new_balance":"24347.87", + "value":"-42.95" + } + }, + { + "id":"623f73d9-0798-4ca4-89de-a57e43733439", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T22:04:56.632Z", + "completed":"2017-05-09T22:04:56.632Z", + "new_balance":"24335.94", + "value":"-11.93" + } + }, + { + "id":"ddffbeb3-3383-42a8-a54c-aae5a5df3d19", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T00:25:08.449Z", + "completed":"2017-05-13T00:25:08.449Z", + "new_balance":"24301.43", + "value":"-34.51" + } + }, + { + "id":"d3355404-330d-4ea3-a661-3802e1af9e04", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T04:28:10.215Z", + "completed":"2017-05-13T04:28:10.215Z", + "new_balance":"24294.85", + "value":"-6.58" + } + }, + { + "id":"befa7dbb-990c-496d-912e-ed8d7cc4d909", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T13:40:13.863Z", + "completed":"2017-05-13T13:40:13.863Z", + "new_balance":"24266.66", + "value":"-28.19" + } + }, + { + "id":"7d6d639d-0537-4489-bdaa-fecfb04d86c4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T06:47:36.297Z", + "completed":"2017-05-14T06:47:36.297Z", + "new_balance":"24185.45", + "value":"-81.21" + } + }, + { + "id":"6bed5285-ccf5-4b4a-be46-2d68683ad053", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T20:04:51.365Z", + "completed":"2017-05-14T20:04:51.365Z", + "new_balance":"24120.22", + "value":"-65.23" + } + }, + { + "id":"5d7edb2a-bfc0-4677-b453-1d1d01a8c079", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T16:13:28.935Z", + "completed":"2017-05-15T16:13:28.935Z", + "new_balance":"24092.24", + "value":"-27.98" + } + }, + { + "id":"09916d46-3731-4890-ab1c-7b9d15262afa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T01:50:04.064Z", + "completed":"2017-05-30T01:50:04.064Z", + "new_balance":"26442.45", + "value":"2350.21" + } + }, + { + "id":"38de9f2c-f225-4b0f-8389-22692fb2c5b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T14:50:11.348Z", + "completed":"2017-05-30T14:50:11.348Z", + "new_balance":"26125.24", + "value":"-317.21" + } + }, + { + "id":"053e48bb-ba15-4353-a5ab-0e1fab5e6f2e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T05:14:19.973Z", + "completed":"2017-06-01T05:14:19.973Z", + "new_balance":"26090.81", + "value":"-34.43" + } + }, + { + "id":"62039396-9730-4844-a4a0-3a66067ed27b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T14:56:24.948Z", + "completed":"2017-06-01T14:56:24.948Z", + "new_balance":"25986.09", + "value":"-104.72" + } + }, + { + "id":"7f37cefa-b22e-404f-8819-29f7209bc5d7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T15:24:23.323Z", + "completed":"2017-06-01T15:24:23.323Z", + "new_balance":"25939.19", + "value":"-46.90" + } + }, + { + "id":"87cc6bcb-a3ce-49d0-8fa7-7c68cf89f156", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T22:21:30.524Z", + "completed":"2017-06-01T22:21:30.524Z", + "new_balance":"25904.76", + "value":"-34.43" + } + }, + { + "id":"6dd21396-1f1a-4a85-82f6-0fe34eb1f8a9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T00:31:06.293Z", + "completed":"2017-06-04T00:31:06.293Z", + "new_balance":"25841.19", + "value":"-63.57" + } + }, + { + "id":"40233f66-e718-4482-8532-60089b181097", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T11:32:01.702Z", + "completed":"2017-06-04T11:32:01.702Z", + "new_balance":"25779.82", + "value":"-61.37" + } + }, + { + "id":"b271c828-3985-4f89-bec9-54ad15fee8aa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T00:37:43.320Z", + "completed":"2017-06-11T00:37:43.320Z", + "new_balance":"25698.03", + "value":"-81.79" + } + }, + { + "id":"43580e3a-d1e0-4f21-926b-bbed9abc7c5a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T01:22:10.410Z", + "completed":"2017-06-11T01:22:10.410Z", + "new_balance":"25652.56", + "value":"-45.47" + } + }, + { + "id":"8768041b-4ae4-46b4-9dca-cfa367bc8c4a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T17:20:23.685Z", + "completed":"2017-06-11T17:20:23.685Z", + "new_balance":"25564.07", + "value":"-88.49" + } + }, + { + "id":"e7c8c4d6-9f74-403a-809c-ab67ec86c393", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T01:24:10.896Z", + "completed":"2017-06-12T01:24:10.896Z", + "new_balance":"25557.30", + "value":"-6.77" + } + }, + { + "id":"759868a0-ddc8-41d4-aaff-fd7a4662968b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T23:55:13.081Z", + "completed":"2017-06-12T23:55:13.081Z", + "new_balance":"25517.66", + "value":"-39.64" + } + }, + { + "id":"9ec8a6f8-7d89-4d59-b1f2-5e2f630dd39d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T00:41:45.034Z", + "completed":"2017-06-16T00:41:45.034Z", + "new_balance":"25413.47", + "value":"-104.19" + } + }, + { + "id":"61e47db3-3c2a-4f87-bfe1-e9ba561a113e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T04:28:55.956Z", + "completed":"2017-06-29T04:28:55.956Z", + "new_balance":"25385.49", + "value":"-27.98" + } + }, + { + "id":"df5231fc-f292-4b97-aa99-89bcaa5a8f49", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T04:36:10.951Z", + "completed":"2017-06-30T04:36:10.951Z", + "new_balance":"27735.70", + "value":"2350.21" + } + }, + { + "id":"37febc55-3feb-4c57-a693-5f97a959e00b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T05:12:23.467Z", + "completed":"2017-06-30T05:12:23.467Z", + "new_balance":"27418.49", + "value":"-317.21" + } + }, + { + "id":"858c5f31-4963-4d16-b2a1-accc02c654b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T03:37:37.631Z", + "completed":"2017-07-01T03:37:37.631Z", + "new_balance":"27313.77", + "value":"-104.72" + } + }, + { + "id":"fd03f41e-bf09-47bb-bf7d-730ac05419ef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T05:18:47.399Z", + "completed":"2017-07-01T05:18:47.399Z", + "new_balance":"27279.34", + "value":"-34.43" + } + }, + { + "id":"8df0f182-22ad-4d44-bbd5-1685b3ee2e0e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T10:01:11.448Z", + "completed":"2017-07-01T10:01:11.448Z", + "new_balance":"27232.44", + "value":"-46.90" + } + }, + { + "id":"f44fdbde-1006-4bf0-86da-cecbe9da66e6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T17:53:45.990Z", + "completed":"2017-07-01T17:53:45.990Z", + "new_balance":"27198.01", + "value":"-34.43" + } + }, + { + "id":"b37a3460-e448-4465-b97e-962b0c3cb4c3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T04:34:04.253Z", + "completed":"2017-07-05T04:34:04.253Z", + "new_balance":"27116.80", + "value":"-81.21" + } + }, + { + "id":"e4cd5d08-1224-4720-abc2-346ec8f6d0f0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T12:27:44.833Z", + "completed":"2017-07-05T12:27:44.833Z", + "new_balance":"27049.35", + "value":"-67.45" + } + }, + { + "id":"b5f743d4-c12b-423b-9707-f286bf7ce403", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T05:22:54.378Z", + "completed":"2017-07-08T05:22:54.378Z", + "new_balance":"27038.44", + "value":"-10.91" + } + }, + { + "id":"8fdde6d3-040c-4600-af06-1e983e63cc92", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T16:48:21.512Z", + "completed":"2017-07-10T16:48:21.512Z", + "new_balance":"26991.98", + "value":"-46.46" + } + }, + { + "id":"62a40be1-9589-4061-ae46-8c2e1f0a50a1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T00:40:59.698Z", + "completed":"2017-07-12T00:40:59.698Z", + "new_balance":"26935.34", + "value":"-56.64" + } + }, + { + "id":"c64623ab-a0f5-420f-9be5-a193a4891978", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T04:42:17.174Z", + "completed":"2017-07-12T04:42:17.174Z", + "new_balance":"26900.91", + "value":"-34.43" + } + }, + { + "id":"a7ec0d6f-de66-4ca0-9d5a-9151bac888a5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T13:57:48.141Z", + "completed":"2017-07-13T13:57:48.141Z", + "new_balance":"26897.32", + "value":"-3.59" + } + }, + { + "id":"a655ee37-7bb0-43cf-ad80-71fc1943810b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T15:29:05.477Z", + "completed":"2017-07-13T15:29:05.477Z", + "new_balance":"26891.67", + "value":"-5.65" + } + }, + { + "id":"20319693-c3d8-496e-be84-41cd223e880a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T22:16:34.183Z", + "completed":"2017-07-18T22:16:34.183Z", + "new_balance":"26808.58", + "value":"-83.09" + } + }, + { + "id":"61e550e9-ad66-4299-8c63-e1d332b89316", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T10:18:20.574Z", + "completed":"2017-07-20T10:18:20.574Z", + "new_balance":"26727.37", + "value":"-81.21" + } + }, + { + "id":"577b53a0-b70c-4b10-a470-b88a70a50ef4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T16:38:51.184Z", + "completed":"2017-07-20T16:38:51.184Z", + "new_balance":"26645.93", + "value":"-81.44" + } + }, + { + "id":"6cb0c5e6-ad3d-4ab3-b18a-292e53502a78", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T07:33:49.815Z", + "completed":"2017-07-24T07:33:49.815Z", + "new_balance":"26618.48", + "value":"-27.45" + } + }, + { + "id":"f2806a16-8628-428a-bb94-fe0affc19679", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T05:31:10.893Z", + "completed":"2017-07-29T05:31:10.893Z", + "new_balance":"26590.50", + "value":"-27.98" + } + }, + { + "id":"6819035e-3e11-4f16-9ce1-d288140bb53c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T17:51:16.206Z", + "completed":"2017-07-29T17:51:16.206Z", + "new_balance":"28940.71", + "value":"2350.21" + } + }, + { + "id":"b5ee2921-4dd6-44b9-b5b0-5048ecca6172", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T09:37:54.398Z", + "completed":"2017-07-30T09:37:54.398Z", + "new_balance":"28623.50", + "value":"-317.21" + } + }, + { + "id":"7e9e94f8-a148-4725-bbbc-60f1b363fa5f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T00:20:31.785Z", + "completed":"2017-08-01T00:20:31.785Z", + "new_balance":"28589.07", + "value":"-34.43" + } + }, + { + "id":"f725b2fc-5efb-4864-8a48-27c14da7bdaa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T09:02:45.338Z", + "completed":"2017-08-01T09:02:45.338Z", + "new_balance":"28542.17", + "value":"-46.90" + } + }, + { + "id":"d0e7af40-aea2-43b3-816c-82e51408a3fe", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T16:56:01.423Z", + "completed":"2017-08-01T16:56:01.423Z", + "new_balance":"28437.45", + "value":"-104.72" + } + }, + { + "id":"05cb53c7-a33f-421e-949c-1d5c3fd05ca2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T19:10:21.313Z", + "completed":"2017-08-01T19:10:21.313Z", + "new_balance":"28403.02", + "value":"-34.43" + } + }, + { + "id":"eb8ca4e7-cf0c-41c3-9d50-9eb0ce96dd3d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T03:40:23.712Z", + "completed":"2017-08-03T03:40:23.712Z", + "new_balance":"28396.30", + "value":"-6.72" + } + }, + { + "id":"f832d0ff-f610-49c3-82fb-2db627aa96c0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T15:39:25.388Z", + "completed":"2017-08-04T15:39:25.388Z", + "new_balance":"28315.09", + "value":"-81.21" + } + }, + { + "id":"f0a533d3-34ef-4dd4-a147-4ff54772a3bf", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T06:26:07.991Z", + "completed":"2017-08-08T06:26:07.991Z", + "new_balance":"28287.06", + "value":"-28.03" + } + }, + { + "id":"ffb95900-167e-4e6a-9a45-a940be7216ef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T15:08:22.873Z", + "completed":"2017-08-08T15:08:22.873Z", + "new_balance":"28271.77", + "value":"-15.29" + } + }, + { + "id":"38ce97e8-c1c9-46cf-ab25-ad3ebc3c426c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T19:18:33.535Z", + "completed":"2017-08-08T19:18:33.535Z", + "new_balance":"28164.96", + "value":"-106.81" + } + }, + { + "id":"171e2d28-e412-4cac-aea9-b2da38f16318", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T22:46:02.076Z", + "completed":"2017-08-08T22:46:02.076Z", + "new_balance":"28083.79", + "value":"-81.17" + } + }, + { + "id":"e6144979-f41e-4bd4-87c8-a248a5be8c2b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T12:21:52.176Z", + "completed":"2017-08-09T12:21:52.176Z", + "new_balance":"28040.84", + "value":"-42.95" + } + }, + { + "id":"e081dcda-5dcc-4e62-9fc1-b2ebcb0d5f7a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T09:28:23.562Z", + "completed":"2017-08-14T09:28:23.562Z", + "new_balance":"28014.11", + "value":"-26.73" + } + }, + { + "id":"29dc6445-d19f-49d3-8e99-57d86d529f74", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T03:51:38.636Z", + "completed":"2017-08-15T03:51:38.636Z", + "new_balance":"27972.57", + "value":"-41.54" + } + }, + { + "id":"1cc9a235-ca74-46b0-bc55-cff6dcd874b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T16:02:10.982Z", + "completed":"2017-08-19T16:02:10.982Z", + "new_balance":"27965.58", + "value":"-6.99" + } + }, + { + "id":"a4918d73-3c2b-47f6-82ae-416e9c7a4b03", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T20:18:55.631Z", + "completed":"2017-08-22T20:18:55.631Z", + "new_balance":"27915.64", + "value":"-49.94" + } + }, + { + "id":"c3a116ef-bda4-444b-9d74-59c0f2484cde", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T13:02:08.739Z", + "completed":"2017-08-26T13:02:08.739Z", + "new_balance":"27834.43", + "value":"-81.21" + } + }, + { + "id":"e13a16ca-e7e2-4427-8e67-ceb3e9366f66", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T18:09:38.366Z", + "completed":"2017-08-28T18:09:38.366Z", + "new_balance":"27517.22", + "value":"-317.21" + } + }, + { + "id":"687a7431-4048-4c9c-9d65-75bfab842b5b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T03:23:57.047Z", + "completed":"2017-08-29T03:23:57.047Z", + "new_balance":"27489.24", + "value":"-27.98" + } + }, + { + "id":"7a890c19-ef2d-4224-b3ef-216b4f0b24b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T17:32:46.773Z", + "completed":"2017-08-29T17:32:46.773Z", + "new_balance":"29839.45", + "value":"2350.21" + } + }, + { + "id":"cc13a815-6354-4fc4-9fe2-7f82ece1b464", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T00:23:13.012Z", + "completed":"2017-08-30T00:23:13.012Z", + "new_balance":"29522.24", + "value":"-317.21" + } + }, + { + "id":"938275f1-69bf-4273-8d50-0b72e05dadd7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T02:29:44.835Z", + "completed":"2017-09-01T02:29:44.835Z", + "new_balance":"29487.81", + "value":"-34.43" + } + }, + { + "id":"e111e827-4b57-4e02-a050-914cc1452cb5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T03:46:50.289Z", + "completed":"2017-09-01T03:46:50.289Z", + "new_balance":"29440.91", + "value":"-46.90" + } + }, + { + "id":"13ce59fc-276f-4061-96a3-fbaf014d6352", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T05:07:33.262Z", + "completed":"2017-09-01T05:07:33.262Z", + "new_balance":"29336.19", + "value":"-104.72" + } + }, + { + "id":"d0138296-ee4b-4835-aaad-4f2d5b01ccd2", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T14:26:05.700Z", + "completed":"2017-09-01T14:26:05.700Z", + "new_balance":"29301.76", + "value":"-34.43" + } + }, + { + "id":"b4a26859-c599-4510-945e-a49119d475d5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T06:05:07.790Z", + "completed":"2017-09-09T06:05:07.790Z", + "new_balance":"29240.39", + "value":"-61.37" + } + }, + { + "id":"652f1815-a6bf-48f5-805a-05d5ceb944cb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T21:10:45.989Z", + "completed":"2017-09-09T21:10:45.989Z", + "new_balance":"29176.82", + "value":"-63.57" + } + }, + { + "id":"deb2192e-0bcf-4a5a-9020-d42014d30d3e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T11:02:17.891Z", + "completed":"2017-09-17T11:02:17.891Z", + "new_balance":"29088.33", + "value":"-88.49" + } + }, + { + "id":"e8c6f695-9ad7-4630-94a9-aefe2c7336b1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T04:32:12.291Z", + "completed":"2017-09-18T04:32:12.291Z", + "new_balance":"29048.69", + "value":"-39.64" + } + }, + { + "id":"22fb6afc-091f-4b95-a614-7b17ecc026d5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T07:46:21.490Z", + "completed":"2017-09-18T07:46:21.490Z", + "new_balance":"28966.90", + "value":"-81.79" + } + }, + { + "id":"59370e0c-3c9a-4d6f-b842-8f87a3f185b6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T12:07:21.635Z", + "completed":"2017-09-18T12:07:21.635Z", + "new_balance":"28960.13", + "value":"-6.77" + } + }, + { + "id":"8b47a853-2b63-460c-83e6-d5f0b92b1e8b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T15:26:41.623Z", + "completed":"2017-09-18T15:26:41.623Z", + "new_balance":"28914.66", + "value":"-45.47" + } + }, + { + "id":"3c7f7590-49db-40d0-926a-3ec885215eab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T00:07:56.030Z", + "completed":"2017-09-22T00:07:56.030Z", + "new_balance":"28810.47", + "value":"-104.19" + } + }, + { + "id":"ab4be548-fe23-43f9-a1f3-f612781b591b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T01:06:31.762Z", + "completed":"2017-09-29T01:06:31.762Z", + "new_balance":"28782.49", + "value":"-27.98" + } + }, + { + "id":"a11030be-7751-46e3-b9b6-cfadf4e57673", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:59:31.621Z", + "completed":"2017-09-29T06:59:31.621Z", + "new_balance":"31132.70", + "value":"2350.21" + } + }, + { + "id":"4912642b-bade-4a04-8f62-4cbee69f8717", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T01:21:25.560Z", + "completed":"2017-09-30T01:21:25.560Z", + "new_balance":"30815.49", + "value":"-317.21" + } + }, + { + "id":"f77d7801-b057-4c30-89d7-ad07fefc77b4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T01:05:59.125Z", + "completed":"2017-10-01T01:05:59.125Z", + "new_balance":"30781.06", + "value":"-34.43" + } + }, + { + "id":"ec110d73-cfb2-4127-ab12-241a72fe4fc0", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T10:17:12.908Z", + "completed":"2017-10-01T10:17:12.908Z", + "new_balance":"30676.34", + "value":"-104.72" + } + }, + { + "id":"88e0dd75-4ebe-4592-9b4a-9290becd0f7b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T15:35:52.338Z", + "completed":"2017-10-01T15:35:52.338Z", + "new_balance":"30629.44", + "value":"-46.90" + } + }, + { + "id":"6a915865-a3eb-467b-b2c5-10bbb2afe7b9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T17:31:00.243Z", + "completed":"2017-10-01T17:31:00.243Z", + "new_balance":"30595.01", + "value":"-34.43" + } + }, + { + "id":"ae84ffb9-9025-434d-bc4c-77c3e091013d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T12:02:24.357Z", + "completed":"2017-10-02T12:02:24.357Z", + "new_balance":"30500.68", + "value":"-94.33" + } + }, + { + "id":"70abb27e-dd78-490d-931c-1db9d9c0518d", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T04:00:43.128Z", + "completed":"2017-10-05T04:00:43.128Z", + "new_balance":"30466.25", + "value":"-34.43" + } + }, + { + "id":"e6fd9c64-f487-47a3-9bad-65a430a450a4", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T08:25:45.034Z", + "completed":"2017-10-05T08:25:45.034Z", + "new_balance":"30461.61", + "value":"-4.64" + } + }, + { + "id":"e3054aa1-7dda-4a08-9f60-32fd4fa022a7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T10:12:54.657Z", + "completed":"2017-10-05T10:12:54.657Z", + "new_balance":"30380.40", + "value":"-81.21" + } + }, + { + "id":"bf1f470a-3209-4437-9358-edc681233873", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T11:05:39.725Z", + "completed":"2017-10-05T11:05:39.725Z", + "new_balance":"30373.82", + "value":"-6.58" + } + }, + { + "id":"8a4692ba-54c5-4ff4-a3da-1152f4d7c435", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T13:08:53.586Z", + "completed":"2017-10-05T13:08:53.586Z", + "new_balance":"30361.89", + "value":"-11.93" + } + }, + { + "id":"db2a3d2f-4350-4d1a-8a39-00a06c6945f7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T20:30:36.818Z", + "completed":"2017-10-05T20:30:36.818Z", + "new_balance":"30320.46", + "value":"-41.43" + } + }, + { + "id":"deaa3601-ed87-4875-97d6-f69f6a10d5b3", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T21:44:32.583Z", + "completed":"2017-10-05T21:44:32.583Z", + "new_balance":"30265.62", + "value":"-54.84" + } + }, + { + "id":"ed5b53bf-0914-4846-b332-e25367d486a6", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T19:02:35.213Z", + "completed":"2017-10-09T19:02:35.213Z", + "new_balance":"30167.70", + "value":"-97.92" + } + }, + { + "id":"e022098d-3464-40b2-90ca-268b75c2cd58", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T04:29:57.247Z", + "completed":"2017-10-11T04:29:57.247Z", + "new_balance":"30111.57", + "value":"-56.13" + } + }, + { + "id":"7666fb04-d378-4fde-b624-ba043ef06d32", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T06:27:10.602Z", + "completed":"2017-10-12T06:27:10.602Z", + "new_balance":"30030.36", + "value":"-81.21" + } + }, + { + "id":"e03ca3dd-0a59-4776-8c41-d3d34264ab4e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T11:37:10.488Z", + "completed":"2017-10-12T11:37:10.488Z", + "new_balance":"30002.91", + "value":"-27.45" + } + }, + { + "id":"2d472d5b-0853-4e72-b6bd-65b5f057cff7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T15:31:40.584Z", + "completed":"2017-10-20T15:31:40.584Z", + "new_balance":"29974.93", + "value":"-27.98" + } + }, + { + "id":"cb273fa7-d69b-423a-abb6-753886a197a5", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T13:30:39.856Z", + "completed":"2017-10-29T13:30:39.856Z", + "new_balance":"32325.14", + "value":"2350.21" + } + }, + { + "id":"58fe30f3-8d16-4101-8897-81227cc89ec1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T07:10:33.093Z", + "completed":"2017-10-30T07:10:33.093Z", + "new_balance":"32007.93", + "value":"-317.21" + } + }, + { + "id":"ed66c537-8bfa-432a-b643-43d09504a969", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T01:19:39.826Z", + "completed":"2017-11-02T01:19:39.826Z", + "new_balance":"31973.50", + "value":"-34.43" + } + }, + { + "id":"22085e63-4ec0-427c-8510-a46a4e2baa3a", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T02:00:33.721Z", + "completed":"2017-11-02T02:00:33.721Z", + "new_balance":"31868.78", + "value":"-104.72" + } + }, + { + "id":"24341f44-b8d3-4571-b580-2c46db1e5c9f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T09:14:35.554Z", + "completed":"2017-11-02T09:14:35.554Z", + "new_balance":"31834.35", + "value":"-34.43" + } + }, + { + "id":"766adaf9-3296-4946-acd3-7e1850dd3850", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T10:24:20.459Z", + "completed":"2017-11-02T10:24:20.459Z", + "new_balance":"31787.45", + "value":"-46.90" + } + }, + { + "id":"ab4e078a-b34c-46ec-910d-3342ab3d8678", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T02:39:23.670Z", + "completed":"2017-11-04T02:39:23.670Z", + "new_balance":"31706.24", + "value":"-81.21" + } + }, + { + "id":"d4e899e8-cd60-4652-957c-8e52e6697c21", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T12:38:01.045Z", + "completed":"2017-11-04T12:38:01.045Z", + "new_balance":"31699.66", + "value":"-6.58" + } + }, + { + "id":"a1834bc0-26f3-4d38-a4db-aea2bf54dc0c", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T19:56:08.692Z", + "completed":"2017-11-06T19:56:08.692Z", + "new_balance":"31619.45", + "value":"-80.21" + } + }, + { + "id":"f122ec83-cea8-4ed1-9a75-3c18ebf77bab", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T00:29:33.417Z", + "completed":"2017-11-07T00:29:33.417Z", + "new_balance":"31584.94", + "value":"-34.51" + } + }, + { + "id":"32613e42-a9fd-415a-acd2-b8baa88140d9", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T16:18:59.611Z", + "completed":"2017-11-07T16:18:59.611Z", + "new_balance":"31490.61", + "value":"-94.33" + } + }, + { + "id":"14f4b9b3-0e2d-4ea5-a600-3e2ac241b4fb", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T13:26:29.686Z", + "completed":"2017-11-09T13:26:29.686Z", + "new_balance":"31478.68", + "value":"-11.93" + } + }, + { + "id":"0e69685e-40f5-4c6c-a0a5-0faab0adace1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T23:52:09.815Z", + "completed":"2017-11-09T23:52:09.815Z", + "new_balance":"31435.73", + "value":"-42.95" + } + }, + { + "id":"61fa2854-f965-4b16-bdf0-256304d5f243", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T08:16:59.710Z", + "completed":"2017-11-13T08:16:59.710Z", + "new_balance":"31401.22", + "value":"-34.51" + } + }, + { + "id":"23cdad3d-84f5-4bda-ae1e-310d5c56d950", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T12:55:09.661Z", + "completed":"2017-11-13T12:55:09.661Z", + "new_balance":"31373.03", + "value":"-28.19" + } + }, + { + "id":"7cab77b0-e79e-4297-93b4-f3193fa43fef", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T20:54:48.792Z", + "completed":"2017-11-13T20:54:48.792Z", + "new_balance":"31366.45", + "value":"-6.58" + } + }, + { + "id":"9863ad5a-ca59-442b-84e2-895a5f6c7694", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T11:59:01.766Z", + "completed":"2017-11-14T11:59:01.766Z", + "new_balance":"31301.22", + "value":"-65.23" + } + }, + { + "id":"edd89c41-02b9-40be-a9c6-ea02709b02be", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T17:54:20.545Z", + "completed":"2017-11-14T17:54:20.545Z", + "new_balance":"31220.01", + "value":"-81.21" + } + }, + { + "id":"9c580e5e-9803-44b9-b4f5-2bdad8c38b1b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T02:06:18.846Z", + "completed":"2017-11-15T02:06:18.846Z", + "new_balance":"31192.03", + "value":"-27.98" + } + }, + { + "id":"0b962307-9d28-42f8-909b-9e001f511585", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T00:42:45.394Z", + "completed":"2017-11-30T00:42:45.394Z", + "new_balance":"30874.82", + "value":"-317.21" + } + }, + { + "id":"ef4071d7-40a4-405e-9b93-0476d142e145", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T02:13:20.279Z", + "completed":"2017-11-30T02:13:20.279Z", + "new_balance":"33225.03", + "value":"2350.21" + } + }, + { + "id":"c2fba5d9-4a39-4fcb-972b-5099bc56072f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T17:51:20.282Z", + "completed":"2017-12-01T17:51:20.282Z", + "new_balance":"33190.60", + "value":"-34.43" + } + }, + { + "id":"6b3e6303-0953-423e-b46b-5156e695fbb7", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T19:20:35.062Z", + "completed":"2017-12-01T19:20:35.062Z", + "new_balance":"33156.17", + "value":"-34.43" + } + }, + { + "id":"40ab4c1b-205a-4ec1-adf7-3078083067d8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T22:29:50.312Z", + "completed":"2017-12-01T22:29:50.312Z", + "new_balance":"33109.27", + "value":"-46.90" + } + }, + { + "id":"a3f7a384-7a83-46c3-8069-dff6cbc89db8", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T22:41:58.809Z", + "completed":"2017-12-01T22:41:58.809Z", + "new_balance":"33004.55", + "value":"-104.72" + } + }, + { + "id":"99dd53eb-d334-4698-8740-52aeb0ed0909", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T02:33:02.795Z", + "completed":"2017-12-04T02:33:02.795Z", + "new_balance":"32943.18", + "value":"-61.37" + } + }, + { + "id":"b997b6aa-122d-44dd-9f2a-258b2bad0874", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T21:42:24.885Z", + "completed":"2017-12-04T21:42:24.885Z", + "new_balance":"32879.61", + "value":"-63.57" + } + }, + { + "id":"5d7fa5f8-5fef-4de8-92a2-63724dee55f1", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T03:41:28.666Z", + "completed":"2017-12-11T03:41:28.666Z", + "new_balance":"32797.82", + "value":"-81.79" + } + }, + { + "id":"d2f7fc8b-e80f-48f9-a223-3e457e1ee685", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T09:20:11.163Z", + "completed":"2017-12-11T09:20:11.163Z", + "new_balance":"32709.33", + "value":"-88.49" + } + }, + { + "id":"c8d76066-999a-4a2a-9620-fd3613eef693", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T20:10:13.590Z", + "completed":"2017-12-11T20:10:13.590Z", + "new_balance":"32663.86", + "value":"-45.47" + } + }, + { + "id":"250fc28b-cf1c-4648-a661-c234bb16ea7e", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T16:13:55.939Z", + "completed":"2017-12-12T16:13:55.939Z", + "new_balance":"32624.22", + "value":"-39.64" + } + }, + { + "id":"70451f5a-bd60-4ff6-b111-9b9b6e6c1904", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T23:30:38.440Z", + "completed":"2017-12-12T23:30:38.440Z", + "new_balance":"32617.45", + "value":"-6.77" + } + }, + { + "id":"f1c5542d-003a-4452-83f1-f8df69fcdc02", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T15:48:02.347Z", + "completed":"2017-12-16T15:48:02.347Z", + "new_balance":"32513.26", + "value":"-104.19" + } + }, + { + "id":"da018547-ec2d-4dd5-8ccf-b879d8729b0b", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T18:56:15.604Z", + "completed":"2017-12-29T18:56:15.604Z", + "new_balance":"32485.28", + "value":"-27.98" + } + }, + { + "id":"723381d3-8bcb-4507-a696-fe32d9c8dafa", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T06:41:14.491Z", + "completed":"2017-12-30T06:41:14.491Z", + "new_balance":"32168.07", + "value":"-317.21" + } + }, + { + "id":"15f9d502-80a0-4116-b302-86f482b2933f", + "this_account":{ + "id":"bb97486b-1db7-4047-ba1e-50897fa92970", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T20:09:02.673Z", + "completed":"2017-12-30T20:09:02.673Z", + "new_balance":"34518.28", + "value":"2350.21" + } + }, + { + "id":"6e7ddbf3-3cf1-499a-8a1d-83ca3869b2cd", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T05:36:56.753Z", + "completed":"2016-03-01T05:36:56.753Z", + "new_balance":"4829.73", + "value":"-4.61" + } + }, + { + "id":"0b230435-3fc8-4007-94cc-aea86722d075", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T21:18:49.122Z", + "completed":"2016-03-02T21:18:49.122Z", + "new_balance":"4822.54", + "value":"-7.19" + } + }, + { + "id":"93bf8783-71cc-4aa6-9b7f-ce53d8263587", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T22:04:21.437Z", + "completed":"2016-03-06T22:04:21.437Z", + "new_balance":"4816.01", + "value":"-6.53" + } + }, + { + "id":"e01ae37f-83a6-489a-8b69-ad9bfde6743b", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T14:44:31.113Z", + "completed":"2016-03-11T14:44:31.113Z", + "new_balance":"4815.36", + "value":"-0.65" + } + }, + { + "id":"020343f6-a868-4590-83df-4ee378117814", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T10:58:00.451Z", + "completed":"2016-03-13T10:58:00.451Z", + "new_balance":"4815.02", + "value":"-0.34" + } + }, + { + "id":"14d03119-12cf-47e0-a4f6-4dfbd32bf2a1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T22:51:21.603Z", + "completed":"2016-03-16T22:51:21.603Z", + "new_balance":"4791.78", + "value":"-23.24" + } + }, + { + "id":"4fe827d6-caa5-4e29-9a16-84002f297604", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T10:37:06.425Z", + "completed":"2016-03-17T10:37:06.425Z", + "new_balance":"4778.68", + "value":"-13.10" + } + }, + { + "id":"311a5eb0-0808-4390-a43c-7d719cb9ac3a", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T19:17:27.368Z", + "completed":"2016-03-17T19:17:27.368Z", + "new_balance":"4774.41", + "value":"-4.27" + } + }, + { + "id":"6cc96bc4-e83c-42d6-a5db-c2e8658afde6", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T07:55:03.972Z", + "completed":"2016-03-19T07:55:03.972Z", + "new_balance":"4774.07", + "value":"-0.34" + } + }, + { + "id":"b754814c-c2ca-4175-b9a8-8b47f1a526e4", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T10:13:03.417Z", + "completed":"2016-03-21T10:13:03.417Z", + "new_balance":"4771.75", + "value":"-2.32" + } + }, + { + "id":"d0fb633f-3259-42ed-9a3f-f4ac780c4c6d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T13:44:31.944Z", + "completed":"2016-03-23T13:44:31.944Z", + "new_balance":"4767.14", + "value":"-4.61" + } + }, + { + "id":"e5b58b27-2d8d-417d-a61e-e17b540be8f7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T17:26:05.752Z", + "completed":"2016-03-24T17:26:05.752Z", + "new_balance":"4766.49", + "value":"-0.65" + } + }, + { + "id":"a7412b2e-e215-447d-b455-820154de452a", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T06:58:05.050Z", + "completed":"2016-03-26T06:58:05.050Z", + "new_balance":"4765.34", + "value":"-1.15" + } + }, + { + "id":"968cec16-168d-40e5-9b98-f45fff2e789e", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T02:45:12.526Z", + "completed":"2016-04-01T02:45:12.526Z", + "new_balance":"4764.19", + "value":"-1.15" + } + }, + { + "id":"adc8368c-7eb2-4a68-8cbf-3a58135cd6c2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T07:31:13.109Z", + "completed":"2016-06-01T07:31:13.109Z", + "new_balance":"4759.58", + "value":"-4.61" + } + }, + { + "id":"1acc5c7a-0935-4d3b-aa90-2182d5a35f21", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T12:17:21.785Z", + "completed":"2016-06-04T12:17:21.785Z", + "new_balance":"4752.39", + "value":"-7.19" + } + }, + { + "id":"cefc4417-12b3-45ca-975e-fe8485e4c1e1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T22:54:55.244Z", + "completed":"2016-06-19T22:54:55.244Z", + "new_balance":"4745.86", + "value":"-6.53" + } + }, + { + "id":"8ed54ddc-75ea-4359-97e2-f9420ba38e06", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T00:53:56.118Z", + "completed":"2016-06-21T00:53:56.118Z", + "new_balance":"4745.21", + "value":"-0.65" + } + }, + { + "id":"dbe8c881-6014-4267-8dfa-bce943825f30", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T04:30:11.808Z", + "completed":"2016-06-24T04:30:11.808Z", + "new_balance":"4744.87", + "value":"-0.34" + } + }, + { + "id":"7daf65d8-5a39-4b83-8baf-b47d393b0705", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T03:20:37.593Z", + "completed":"2016-06-28T03:20:37.593Z", + "new_balance":"4731.77", + "value":"-13.10" + } + }, + { + "id":"8605920f-dbde-4aec-b258-d69c8cbe7ab1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T07:34:37.292Z", + "completed":"2016-06-28T07:34:37.292Z", + "new_balance":"4727.50", + "value":"-4.27" + } + }, + { + "id":"e739a26e-351c-4aca-8c87-aa9442d04133", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T07:49:42.068Z", + "completed":"2016-06-28T07:49:42.068Z", + "new_balance":"4704.26", + "value":"-23.24" + } + }, + { + "id":"490ccc10-b0ca-40e2-b4c6-c57388db7549", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T11:54:45.513Z", + "completed":"2016-06-29T11:54:45.513Z", + "new_balance":"4703.92", + "value":"-0.34" + } + }, + { + "id":"e4c103c7-da81-4be9-b146-79096017e622", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T14:15:52.598Z", + "completed":"2016-06-30T14:15:52.598Z", + "new_balance":"4699.31", + "value":"-4.61" + } + }, + { + "id":"46135d6d-81ac-44f4-ae66-f9ee80539eaf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T15:04:56.324Z", + "completed":"2016-06-30T15:04:56.324Z", + "new_balance":"4698.66", + "value":"-0.65" + } + }, + { + "id":"0f54c32f-e38f-4347-902f-007ad9e35da0", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T20:26:47.596Z", + "completed":"2016-06-30T20:26:47.596Z", + "new_balance":"4696.34", + "value":"-2.32" + } + }, + { + "id":"577791ce-1d6a-4b1b-9038-54814de277fb", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T18:00:50.013Z", + "completed":"2016-09-01T18:00:50.013Z", + "new_balance":"4694.49", + "value":"-1.85" + } + }, + { + "id":"53f8896e-a9c6-41bd-a295-a06ec61545ec", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T16:40:44.682Z", + "completed":"2016-09-02T16:40:44.682Z", + "new_balance":"4687.30", + "value":"-7.19" + } + }, + { + "id":"91aec9da-a7bc-4d84-811e-99df8b23e558", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T06:14:40.635Z", + "completed":"2016-09-07T06:14:40.635Z", + "new_balance":"4680.77", + "value":"-6.53" + } + }, + { + "id":"bfca9e85-cc67-4047-8fb2-7bb00b8868d4", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T23:39:33.379Z", + "completed":"2016-09-11T23:39:33.379Z", + "new_balance":"4680.12", + "value":"-0.65" + } + }, + { + "id":"d77a73d0-5ad7-4989-ae3e-c009cfc533d8", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T20:02:13.438Z", + "completed":"2016-09-15T20:02:13.438Z", + "new_balance":"4678.72", + "value":"-1.40" + } + }, + { + "id":"e6fb4bb5-0b51-45b8-85b0-ac696df6591d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T03:18:24.431Z", + "completed":"2016-09-17T03:18:24.431Z", + "new_balance":"4665.62", + "value":"-13.10" + } + }, + { + "id":"f5add2e4-46e8-468a-9c0b-42fda00da576", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T05:53:54.392Z", + "completed":"2016-09-17T05:53:54.392Z", + "new_balance":"4642.38", + "value":"-23.24" + } + }, + { + "id":"1e552922-6f96-4522-a9ee-2c0badc2faab", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T13:22:04.829Z", + "completed":"2016-09-17T13:22:04.829Z", + "new_balance":"4638.11", + "value":"-4.27" + } + }, + { + "id":"6252f84c-aab5-4070-8ddf-3e565ada071c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T00:11:27.235Z", + "completed":"2016-09-19T00:11:27.235Z", + "new_balance":"4637.77", + "value":"-0.34" + } + }, + { + "id":"ea8b1625-c6dd-414b-8276-4b57285287de", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T23:59:38.557Z", + "completed":"2016-09-21T23:59:38.557Z", + "new_balance":"4635.45", + "value":"-2.32" + } + }, + { + "id":"f3a0a15a-aa9d-4b3e-8b78-a355e2af5661", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T18:20:45.701Z", + "completed":"2016-09-23T18:20:45.701Z", + "new_balance":"4630.84", + "value":"-4.61" + } + }, + { + "id":"229e4ba5-28b6-4556-aeb9-584bb43a6c46", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T21:55:20.259Z", + "completed":"2016-09-24T21:55:20.259Z", + "new_balance":"4630.19", + "value":"-0.65" + } + }, + { + "id":"1b3c110e-43e0-4f7d-899c-c54e8623b74d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T13:05:42.408Z", + "completed":"2016-09-27T13:05:42.408Z", + "new_balance":"4629.04", + "value":"-1.15" + } + }, + { + "id":"274fab24-9c54-47d2-b12c-9753e055e153", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T10:39:06.003Z", + "completed":"2016-10-01T10:39:06.003Z", + "new_balance":"4627.89", + "value":"-1.15" + } + }, + { + "id":"76b692f1-1a98-436a-9da8-6cfc47b3cedc", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T20:06:56.456Z", + "completed":"2016-12-01T20:06:56.456Z", + "new_balance":"4623.28", + "value":"-4.61" + } + }, + { + "id":"269a19ed-a842-42c0-aabc-66c76480cea7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T11:11:21.774Z", + "completed":"2016-12-04T11:11:21.774Z", + "new_balance":"4616.09", + "value":"-7.19" + } + }, + { + "id":"1ebea308-afe6-45d5-b9f7-b309403c2d3c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T05:17:59.178Z", + "completed":"2016-12-19T05:17:59.178Z", + "new_balance":"4609.56", + "value":"-6.53" + } + }, + { + "id":"7b69a4b6-5ff0-4bb8-aafe-8571dd512b60", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T19:27:35.327Z", + "completed":"2016-12-24T19:27:35.327Z", + "new_balance":"4608.91", + "value":"-0.65" + } + }, + { + "id":"bfd55714-f9e6-43fd-9052-4d570b7243e5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T20:17:35.217Z", + "completed":"2016-12-24T20:17:35.217Z", + "new_balance":"4608.57", + "value":"-0.34" + } + }, + { + "id":"58efb1a2-6b05-4fff-8f26-f68e6fb3c1ae", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T11:26:32.937Z", + "completed":"2016-12-28T11:26:32.937Z", + "new_balance":"4604.30", + "value":"-4.27" + } + }, + { + "id":"b271d433-1681-48c4-808f-69fe00d1188c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T19:57:47.501Z", + "completed":"2016-12-28T19:57:47.501Z", + "new_balance":"4591.20", + "value":"-13.10" + } + }, + { + "id":"01112af0-03c5-4cba-afe6-600786abbb0d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T22:14:55.626Z", + "completed":"2016-12-28T22:14:55.626Z", + "new_balance":"4567.96", + "value":"-23.24" + } + }, + { + "id":"5295a899-3855-4e83-8e74-68cc2eb53d99", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T10:44:17.232Z", + "completed":"2016-12-29T10:44:17.232Z", + "new_balance":"4567.62", + "value":"-0.34" + } + }, + { + "id":"82a6ca52-803a-400e-b679-0215017c83ba", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T00:11:22.604Z", + "completed":"2016-12-30T00:11:22.604Z", + "new_balance":"4563.01", + "value":"-4.61" + } + }, + { + "id":"da46f039-d275-49ca-8bef-f1d3cb929862", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T05:00:01.607Z", + "completed":"2016-12-30T05:00:01.607Z", + "new_balance":"4562.36", + "value":"-0.65" + } + }, + { + "id":"05f5dd80-5abf-4e07-a725-b5eb0b9f609f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T07:57:29.737Z", + "completed":"2016-12-30T07:57:29.737Z", + "new_balance":"4560.04", + "value":"-2.32" + } + }, + { + "id":"2e7f5f33-f5d9-45ed-b56f-ed547608afce", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T08:01:30.503Z", + "completed":"2017-03-01T08:01:30.503Z", + "new_balance":"4555.43", + "value":"-4.61" + } + }, + { + "id":"c4ac7fe8-1fce-46ed-b076-f450cf1138d1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T23:07:25.477Z", + "completed":"2017-03-02T23:07:25.477Z", + "new_balance":"4548.24", + "value":"-7.19" + } + }, + { + "id":"84eb2077-3e89-43fe-b348-8ca25a9fa6c3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T02:28:07.056Z", + "completed":"2017-03-06T02:28:07.056Z", + "new_balance":"4541.71", + "value":"-6.53" + } + }, + { + "id":"f3a26ec7-72ff-4ba9-b257-a3bdcd23b7df", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T01:54:06.566Z", + "completed":"2017-03-11T01:54:06.566Z", + "new_balance":"4541.06", + "value":"-0.65" + } + }, + { + "id":"41b90ad3-1fea-4b54-8cf4-80fa1fcca653", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T04:56:57.789Z", + "completed":"2017-03-13T04:56:57.789Z", + "new_balance":"4540.72", + "value":"-0.34" + } + }, + { + "id":"e8ad3a19-67ed-444f-be0c-3939abd558f3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T14:43:32.051Z", + "completed":"2017-03-16T14:43:32.051Z", + "new_balance":"4517.48", + "value":"-23.24" + } + }, + { + "id":"17ba6161-3f1e-414d-a572-ac11ba2a5033", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T13:56:00.519Z", + "completed":"2017-03-17T13:56:00.519Z", + "new_balance":"4513.21", + "value":"-4.27" + } + }, + { + "id":"e00cf6f8-2905-4e13-965b-a818036ef1bb", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T13:56:28.314Z", + "completed":"2017-03-17T13:56:28.314Z", + "new_balance":"4500.11", + "value":"-13.10" + } + }, + { + "id":"a19feabf-c43b-4244-aebf-13d8c8bc74b3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T16:46:08.317Z", + "completed":"2017-03-19T16:46:08.317Z", + "new_balance":"4499.77", + "value":"-0.34" + } + }, + { + "id":"d0933e6e-fa25-44ae-8c3e-c664371e24bf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T10:07:17.802Z", + "completed":"2017-03-21T10:07:17.802Z", + "new_balance":"4497.45", + "value":"-2.32" + } + }, + { + "id":"d2d80354-a549-4d50-835e-314326d62769", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T16:25:05.540Z", + "completed":"2017-03-23T16:25:05.540Z", + "new_balance":"4492.84", + "value":"-4.61" + } + }, + { + "id":"92d3c39e-6b5a-48aa-be7b-48216d8342f2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T06:20:53.452Z", + "completed":"2017-03-24T06:20:53.452Z", + "new_balance":"4492.19", + "value":"-0.65" + } + }, + { + "id":"e683ad85-7d25-411a-8ef8-0f222175e802", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T08:11:42.714Z", + "completed":"2017-03-26T08:11:42.714Z", + "new_balance":"4491.04", + "value":"-1.15" + } + }, + { + "id":"a0434cc9-36f9-452e-8b6a-c1227bad33f9", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T04:02:37.901Z", + "completed":"2017-04-01T04:02:37.901Z", + "new_balance":"4489.89", + "value":"-1.15" + } + }, + { + "id":"9256b955-d80e-46e2-853d-965204d93be5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T10:28:33.459Z", + "completed":"2017-06-01T10:28:33.459Z", + "new_balance":"4485.28", + "value":"-4.61" + } + }, + { + "id":"8e9715cf-8bed-419b-8ade-702f287a36f3", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T07:48:45.796Z", + "completed":"2017-06-04T07:48:45.796Z", + "new_balance":"4478.09", + "value":"-7.19" + } + }, + { + "id":"8bfaa032-5e2a-4c1b-a2f2-a6dcfee667c5", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T09:40:43.176Z", + "completed":"2017-06-19T09:40:43.176Z", + "new_balance":"4471.56", + "value":"-6.53" + } + }, + { + "id":"2312db9e-2ebb-46ee-837d-246c12f67a07", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T08:15:06.236Z", + "completed":"2017-06-21T08:15:06.236Z", + "new_balance":"4470.91", + "value":"-0.65" + } + }, + { + "id":"b532f268-851c-402e-b98a-f97bd64f3c60", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T05:14:46.751Z", + "completed":"2017-06-24T05:14:46.751Z", + "new_balance":"4470.57", + "value":"-0.34" + } + }, + { + "id":"d21a7b65-bbde-46d1-8f84-4e218a96ca9d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T05:48:09.117Z", + "completed":"2017-06-28T05:48:09.117Z", + "new_balance":"4447.33", + "value":"-23.24" + } + }, + { + "id":"70b3bb62-66c8-4e32-97a8-ed81b223c9ac", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T05:55:27.763Z", + "completed":"2017-06-28T05:55:27.763Z", + "new_balance":"4434.23", + "value":"-13.10" + } + }, + { + "id":"6883dc42-b12a-4d35-96d5-0c0d58cea2e7", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T06:22:45.983Z", + "completed":"2017-06-28T06:22:45.983Z", + "new_balance":"4429.96", + "value":"-4.27" + } + }, + { + "id":"02ab4c3d-5005-461b-935b-6d2431586141", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T22:17:38.359Z", + "completed":"2017-06-29T22:17:38.359Z", + "new_balance":"4429.62", + "value":"-0.34" + } + }, + { + "id":"d52a0e66-b72d-4a0e-9366-b3ae1cbbc08f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T07:31:03.554Z", + "completed":"2017-06-30T07:31:03.554Z", + "new_balance":"4428.97", + "value":"-0.65" + } + }, + { + "id":"422c9cfe-cf29-494b-9e39-a366e08a4687", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T18:52:49.288Z", + "completed":"2017-06-30T18:52:49.288Z", + "new_balance":"4424.36", + "value":"-4.61" + } + }, + { + "id":"751d9afa-3857-4b53-8320-b590845de718", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T20:59:40.188Z", + "completed":"2017-06-30T20:59:40.188Z", + "new_balance":"4422.04", + "value":"-2.32" + } + }, + { + "id":"b1e96d31-28cb-4e91-817d-a6950e1bd879", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T16:16:58.725Z", + "completed":"2017-09-01T16:16:58.725Z", + "new_balance":"4420.19", + "value":"-1.85" + } + }, + { + "id":"a376d653-abc3-440c-b60a-d7a5599afd7d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T06:47:26.203Z", + "completed":"2017-09-02T06:47:26.203Z", + "new_balance":"4413.00", + "value":"-7.19" + } + }, + { + "id":"9020418c-89b8-4c7a-b46b-90e7918fc49f", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T16:10:56.043Z", + "completed":"2017-09-07T16:10:56.043Z", + "new_balance":"4406.47", + "value":"-6.53" + } + }, + { + "id":"02193e68-a4fa-489a-9038-4b4b70965f43", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T09:57:40.463Z", + "completed":"2017-09-11T09:57:40.463Z", + "new_balance":"4405.82", + "value":"-0.65" + } + }, + { + "id":"67ea0c66-6298-4141-997a-bb34c2be54a2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T09:57:05.250Z", + "completed":"2017-09-15T09:57:05.250Z", + "new_balance":"4404.42", + "value":"-1.40" + } + }, + { + "id":"333abc56-92bc-4c91-96cf-fc419ac104e2", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T00:37:13.878Z", + "completed":"2017-09-17T00:37:13.878Z", + "new_balance":"4391.32", + "value":"-13.10" + } + }, + { + "id":"2f59d0a7-720b-4310-afc7-c206d5f5928d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T00:57:16.683Z", + "completed":"2017-09-17T00:57:16.683Z", + "new_balance":"4387.05", + "value":"-4.27" + } + }, + { + "id":"70bbe985-5b85-40ce-a1b5-f7635dfc56dd", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T16:57:12.914Z", + "completed":"2017-09-17T16:57:12.914Z", + "new_balance":"4363.81", + "value":"-23.24" + } + }, + { + "id":"d2654b9f-2216-4e52-8ed1-2eb78788b3ec", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T07:55:32.709Z", + "completed":"2017-09-19T07:55:32.709Z", + "new_balance":"4363.47", + "value":"-0.34" + } + }, + { + "id":"6999c3af-02f0-4e39-8620-a65ad268897c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T08:26:36.285Z", + "completed":"2017-09-21T08:26:36.285Z", + "new_balance":"4361.15", + "value":"-2.32" + } + }, + { + "id":"30e4c8d3-dc5e-467d-99b3-b8ba7820ac55", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T14:10:40.644Z", + "completed":"2017-09-23T14:10:40.644Z", + "new_balance":"4356.54", + "value":"-4.61" + } + }, + { + "id":"e2eb3fa0-d551-412f-a173-9b035d881621", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T13:38:51.787Z", + "completed":"2017-09-24T13:38:51.787Z", + "new_balance":"4355.89", + "value":"-0.65" + } + }, + { + "id":"e2b88fe6-29c9-4c50-85aa-0826d556f66d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T22:50:41.696Z", + "completed":"2017-09-27T22:50:41.696Z", + "new_balance":"4354.74", + "value":"-1.15" + } + }, + { + "id":"35a5aa69-3ebc-48c2-b0c8-29f15debee47", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T00:11:41.276Z", + "completed":"2017-10-01T00:11:41.276Z", + "new_balance":"4353.59", + "value":"-1.15" + } + }, + { + "id":"ad2a04de-a803-4762-a804-d6d30a0b3d3c", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T03:57:21.043Z", + "completed":"2017-12-01T03:57:21.043Z", + "new_balance":"4348.98", + "value":"-4.61" + } + }, + { + "id":"b26a58da-a452-4d14-b3be-1a0679bd6871", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T15:27:39.716Z", + "completed":"2017-12-04T15:27:39.716Z", + "new_balance":"4341.79", + "value":"-7.19" + } + }, + { + "id":"07ec365b-7f02-4d07-a445-c10b63c521a1", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:04:53.646Z", + "completed":"2017-12-19T10:04:53.646Z", + "new_balance":"4335.26", + "value":"-6.53" + } + }, + { + "id":"5959e20a-1dba-46da-ae36-aa52858a4945", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T03:21:55.546Z", + "completed":"2017-12-24T03:21:55.546Z", + "new_balance":"4334.92", + "value":"-0.34" + } + }, + { + "id":"8040baa4-150b-401d-af7f-0a5c600df897", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T04:14:35.851Z", + "completed":"2017-12-24T04:14:35.851Z", + "new_balance":"4334.27", + "value":"-0.65" + } + }, + { + "id":"78164414-f724-478d-83e1-7c38b2760ab8", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T04:20:00.374Z", + "completed":"2017-12-28T04:20:00.374Z", + "new_balance":"4321.17", + "value":"-13.10" + } + }, + { + "id":"325730b1-081f-4b08-befd-0c4814de2f39", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T10:29:28.345Z", + "completed":"2017-12-28T10:29:28.345Z", + "new_balance":"4297.93", + "value":"-23.24" + } + }, + { + "id":"3cb739e8-1994-4efa-8492-ed16ca92314d", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T22:23:45.135Z", + "completed":"2017-12-28T22:23:45.135Z", + "new_balance":"4293.66", + "value":"-4.27" + } + }, + { + "id":"940f8dd7-b464-4f6d-9835-d7b05adadadf", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T14:57:34.846Z", + "completed":"2017-12-29T14:57:34.846Z", + "new_balance":"4293.32", + "value":"-0.34" + } + }, + { + "id":"be8ec587-0302-44b8-8be5-35b2064fcb8e", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T13:58:22.296Z", + "completed":"2017-12-30T13:58:22.296Z", + "new_balance":"4292.67", + "value":"-0.65" + } + }, + { + "id":"32ebf757-157a-4ff5-a990-52499c047294", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T19:41:52.524Z", + "completed":"2017-12-30T19:41:52.524Z", + "new_balance":"4288.06", + "value":"-4.61" + } + }, + { + "id":"3f5e87e5-3af3-4742-8e17-a8b8b53a4d59", + "this_account":{ + "id":"bd0018de-76b6-45d7-ae11-75d377d0829d", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T21:09:27.700Z", + "completed":"2017-12-30T21:09:27.700Z", + "new_balance":"4285.74", + "value":"-2.32" + } + }, + { + "id":"806d507b-1d30-4383-9798-f28afc679445", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T08:09:35.910Z", + "completed":"2016-01-01T08:09:35.910Z", + "new_balance":"2638.04", + "value":"140.98" + } + }, + { + "id":"687cb485-4e83-47c5-9d15-c57dfbb8181f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T21:06:44.982Z", + "completed":"2016-01-01T21:06:44.982Z", + "new_balance":"2820.74", + "value":"182.70" + } + }, + { + "id":"62ad21a9-14fe-448c-b442-cc5b185d2ccc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T09:40:21.070Z", + "completed":"2016-01-02T09:40:21.070Z", + "new_balance":"2789.02", + "value":"-31.72" + } + }, + { + "id":"d6ff570b-f2bf-4a38-a1a6-90ae3bc55c39", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T03:48:58.822Z", + "completed":"2016-01-03T03:48:58.822Z", + "new_balance":"2784.20", + "value":"-4.82" + } + }, + { + "id":"91abe846-09d7-4819-ae52-8c383219397f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T06:50:38.530Z", + "completed":"2016-01-03T06:50:38.530Z", + "new_balance":"2782.46", + "value":"-1.74" + } + }, + { + "id":"8ea5577b-3be7-4fc9-9a47-099719a70ab4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T16:52:53.980Z", + "completed":"2016-01-03T16:52:53.980Z", + "new_balance":"2781.79", + "value":"-0.67" + } + }, + { + "id":"d3f1b5c6-7693-44fc-a059-c626c7382d64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T18:51:49.633Z", + "completed":"2016-01-04T18:51:49.633Z", + "new_balance":"2780.39", + "value":"-1.40" + } + }, + { + "id":"1ebd2102-31cb-47f6-817d-f6c3ad0faf42", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T19:17:36.761Z", + "completed":"2016-01-05T19:17:36.761Z", + "new_balance":"2779.87", + "value":"-0.52" + } + }, + { + "id":"4ef3b992-b3f4-4562-9375-ec7da2764c70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T10:59:59.855Z", + "completed":"2016-01-07T10:59:59.855Z", + "new_balance":"2777.28", + "value":"-2.59" + } + }, + { + "id":"83c168e7-8c4d-4053-b8a4-fcaf2baccf83", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T13:26:14.898Z", + "completed":"2016-01-07T13:26:14.898Z", + "new_balance":"2775.68", + "value":"-1.60" + } + }, + { + "id":"d8fc80a1-1457-4c28-86c7-e6b939d985d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T01:11:41.225Z", + "completed":"2016-01-08T01:11:41.225Z", + "new_balance":"2773.81", + "value":"-1.87" + } + }, + { + "id":"25fb1320-dcb0-4a00-92c9-1f80194a8edb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T17:06:11.217Z", + "completed":"2016-01-08T17:06:11.217Z", + "new_balance":"2772.13", + "value":"-1.68" + } + }, + { + "id":"437cbe5f-9910-425b-928e-7dda177392dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T12:14:44.747Z", + "completed":"2016-01-09T12:14:44.747Z", + "new_balance":"2766.00", + "value":"-6.13" + } + }, + { + "id":"0aab0069-309e-4c11-bbc2-b1dbfa2a177e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T15:02:33.262Z", + "completed":"2016-01-09T15:02:33.262Z", + "new_balance":"2763.69", + "value":"-2.31" + } + }, + { + "id":"73a1b394-06c2-4457-9e78-9d0654527788", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T00:24:38.033Z", + "completed":"2016-01-10T00:24:38.033Z", + "new_balance":"2755.99", + "value":"-7.70" + } + }, + { + "id":"f2a87795-5a17-45d9-b9a0-ca0368d73c02", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T18:55:10.722Z", + "completed":"2016-01-10T18:55:10.722Z", + "new_balance":"2751.46", + "value":"-4.53" + } + }, + { + "id":"796ebd7e-0f7e-4fc7-b090-d30a87d11ff5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T05:50:43.731Z", + "completed":"2016-01-11T05:50:43.731Z", + "new_balance":"2750.99", + "value":"-0.47" + } + }, + { + "id":"8b6cddae-9b32-4126-972b-067e1d538d90", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T10:44:37.626Z", + "completed":"2016-01-11T10:44:37.626Z", + "new_balance":"2759.98", + "value":"8.99" + } + }, + { + "id":"dde9e1ac-2e17-4c15-9e82-b0f96cc2ea7e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T19:58:33.795Z", + "completed":"2016-01-11T19:58:33.795Z", + "new_balance":"2754.50", + "value":"-5.48" + } + }, + { + "id":"53b4de51-4661-46ab-9b1f-c6a2b5795897", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:32:03.864Z", + "completed":"2016-01-12T09:32:03.864Z", + "new_balance":"2753.69", + "value":"-0.81" + } + }, + { + "id":"68c311bf-e2ee-41b1-b100-10f5fd7477d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T19:05:40.673Z", + "completed":"2016-01-15T19:05:40.673Z", + "new_balance":"2751.26", + "value":"-2.43" + } + }, + { + "id":"075cad1b-a6ea-45cd-90e0-93f3b17cc735", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T14:07:02.424Z", + "completed":"2016-01-16T14:07:02.424Z", + "new_balance":"2747.96", + "value":"-3.30" + } + }, + { + "id":"84e583b5-f817-4318-bbde-185d941c12ac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T05:48:13.548Z", + "completed":"2016-01-17T05:48:13.548Z", + "new_balance":"2746.39", + "value":"-1.57" + } + }, + { + "id":"a276780f-f1ee-4563-b988-acfd22d26e9f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T13:58:17.284Z", + "completed":"2016-01-20T13:58:17.284Z", + "new_balance":"2745.87", + "value":"-0.52" + } + }, + { + "id":"2adfa78e-df29-4c66-8029-437effc66872", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T04:39:23.380Z", + "completed":"2016-01-21T04:39:23.380Z", + "new_balance":"2742.15", + "value":"-3.72" + } + }, + { + "id":"09a0ebbf-d2ab-43e8-aad8-761ca3d64fa1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T16:46:52.104Z", + "completed":"2016-01-23T16:46:52.104Z", + "new_balance":"2719.79", + "value":"-22.36" + } + }, + { + "id":"1b3f597e-da2a-40a2-93fb-051a325a840d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T21:57:41.898Z", + "completed":"2016-02-01T21:57:41.898Z", + "new_balance":"2860.77", + "value":"140.98" + } + }, + { + "id":"ad189f7e-b072-46fe-9d2b-11520f4f95f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T12:57:11.315Z", + "completed":"2016-02-03T12:57:11.315Z", + "new_balance":"2829.05", + "value":"-31.72" + } + }, + { + "id":"246d2ebe-25d0-4d24-9bf4-7b67660b28c0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T16:12:32.962Z", + "completed":"2016-02-03T16:12:32.962Z", + "new_balance":"2815.95", + "value":"-13.10" + } + }, + { + "id":"e6040b8f-5660-4600-9848-9d064d0023aa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T10:05:00.010Z", + "completed":"2016-02-04T10:05:00.010Z", + "new_balance":"2814.63", + "value":"-1.32" + } + }, + { + "id":"5c252a72-fed8-4693-9da5-85aa5b224fff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T22:38:01.603Z", + "completed":"2016-02-05T22:38:01.603Z", + "new_balance":"2813.96", + "value":"-0.67" + } + }, + { + "id":"1c530618-70c1-43cf-9b7e-1172e9a60cd6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T20:37:08.554Z", + "completed":"2016-02-06T20:37:08.554Z", + "new_balance":"2811.77", + "value":"-2.19" + } + }, + { + "id":"39b04d38-43d0-4576-84ee-d7f3f705ea45", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T04:21:22.202Z", + "completed":"2016-02-07T04:21:22.202Z", + "new_balance":"2809.46", + "value":"-2.31" + } + }, + { + "id":"87d086de-0b09-4140-bb21-d4674d58e92f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T07:27:02.453Z", + "completed":"2016-02-07T07:27:02.453Z", + "new_balance":"2804.89", + "value":"-4.57" + } + }, + { + "id":"02eb562b-f943-4703-ac9b-a8b03a1f22da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T08:01:06.205Z", + "completed":"2016-02-07T08:01:06.205Z", + "new_balance":"2797.19", + "value":"-7.70" + } + }, + { + "id":"57cdc620-6f0c-4be8-b058-498bda622ce9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T18:34:40.199Z", + "completed":"2016-02-08T18:34:40.199Z", + "new_balance":"2793.05", + "value":"-4.14" + } + }, + { + "id":"3101b537-61a9-4ecc-93b1-956710832c4b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T07:19:56.406Z", + "completed":"2016-02-09T07:19:56.406Z", + "new_balance":"2790.65", + "value":"-2.40" + } + }, + { + "id":"8dd9849b-a5da-40a9-8cbc-d475607a0232", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T18:11:15.049Z", + "completed":"2016-02-10T18:11:15.049Z", + "new_balance":"2790.13", + "value":"-0.52" + } + }, + { + "id":"5b5a0fcb-1688-4f1e-80d6-579779761a25", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T21:37:32.441Z", + "completed":"2016-02-12T21:37:32.441Z", + "new_balance":"2787.25", + "value":"-2.88" + } + }, + { + "id":"5396016c-ec48-45f4-885c-8fd7025ac5a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T22:27:34.211Z", + "completed":"2016-02-14T22:27:34.211Z", + "new_balance":"2784.94", + "value":"-2.31" + } + }, + { + "id":"ce8e48c8-fe59-48f8-8004-3664f211291b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T00:48:00.632Z", + "completed":"2016-02-16T00:48:00.632Z", + "new_balance":"2780.33", + "value":"-4.61" + } + }, + { + "id":"2a0a369e-7233-47e8-850a-bf970b95c305", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T08:17:34.958Z", + "completed":"2016-02-16T08:17:34.958Z", + "new_balance":"2779.86", + "value":"-0.47" + } + }, + { + "id":"d55a588e-d6fa-4407-80e1-1bf4917083aa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T01:37:36.320Z", + "completed":"2016-02-18T01:37:36.320Z", + "new_balance":"2779.27", + "value":"-0.59" + } + }, + { + "id":"97fc8419-07fb-4e66-8637-aa1321447f3c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T14:39:01.306Z", + "completed":"2016-02-21T14:39:01.306Z", + "new_balance":"2775.55", + "value":"-3.72" + } + }, + { + "id":"eb384920-8700-4c9b-8064-9e2efffca05f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T15:54:13.822Z", + "completed":"2016-02-21T15:54:13.822Z", + "new_balance":"2786.95", + "value":"11.40" + } + }, + { + "id":"9971b40a-7740-439d-9786-b6c2a670f892", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T10:22:46.267Z", + "completed":"2016-02-27T10:22:46.267Z", + "new_balance":"2764.59", + "value":"-22.36" + } + }, + { + "id":"6b19d3d2-a2ed-4e2d-bb16-9ca5a5cb70c3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T09:16:05.445Z", + "completed":"2016-03-01T09:16:05.445Z", + "new_balance":"2905.57", + "value":"140.98" + } + }, + { + "id":"8cfa6646-71d8-40fb-9e92-5b3c3b86c598", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T16:55:14.101Z", + "completed":"2016-03-03T16:55:14.101Z", + "new_balance":"2873.85", + "value":"-31.72" + } + }, + { + "id":"97131667-ef34-482c-b247-50f488460d67", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T06:04:26.297Z", + "completed":"2016-03-04T06:04:26.297Z", + "new_balance":"2869.24", + "value":"-4.61" + } + }, + { + "id":"59c7e4f7-3ea8-423d-99ab-7306e796b468", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T13:51:27.852Z", + "completed":"2016-03-04T13:51:27.852Z", + "new_balance":"2865.94", + "value":"-3.30" + } + }, + { + "id":"86999348-c2a3-42c1-a071-0e36ea504ed0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T15:23:11.105Z", + "completed":"2016-03-04T15:23:11.105Z", + "new_balance":"2862.48", + "value":"-3.46" + } + }, + { + "id":"2e676edc-6c7e-4684-8624-53bd7ccc60a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T21:05:40.945Z", + "completed":"2016-03-04T21:05:40.945Z", + "new_balance":"2860.43", + "value":"-2.05" + } + }, + { + "id":"67f539a6-5de5-42de-9891-e76040c16095", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T04:19:02.491Z", + "completed":"2016-03-05T04:19:02.491Z", + "new_balance":"2853.68", + "value":"-6.75" + } + }, + { + "id":"65f6082e-ad61-473d-b46f-053a061859ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T09:25:05.755Z", + "completed":"2016-03-05T09:25:05.755Z", + "new_balance":"2852.38", + "value":"-1.30" + } + }, + { + "id":"b6a35dce-7a91-4c04-a0d0-3f550eac2019", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T11:16:06.322Z", + "completed":"2016-03-05T11:16:06.322Z", + "new_balance":"2851.91", + "value":"-0.47" + } + }, + { + "id":"3ac99137-1830-489f-a709-031e3e5fa4c9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T19:31:39.373Z", + "completed":"2016-03-05T19:31:39.373Z", + "new_balance":"2844.21", + "value":"-7.70" + } + }, + { + "id":"da32eb1c-f06d-442a-9f0c-60c8a563ebbd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T02:30:36.132Z", + "completed":"2016-03-06T02:30:36.132Z", + "new_balance":"2836.47", + "value":"-7.74" + } + }, + { + "id":"729658be-608b-48b9-acea-0324a78dbe46", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T18:23:34.497Z", + "completed":"2016-03-06T18:23:34.497Z", + "new_balance":"2829.83", + "value":"-6.64" + } + }, + { + "id":"445f55a0-ba0e-43c2-828d-cca20101d681", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T00:37:43.259Z", + "completed":"2016-03-07T00:37:43.259Z", + "new_balance":"2829.03", + "value":"-0.80" + } + }, + { + "id":"d2a7d7f4-b241-4594-b77e-5844ec01de61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T21:09:51.220Z", + "completed":"2016-03-07T21:09:51.220Z", + "new_balance":"2828.56", + "value":"-0.47" + } + }, + { + "id":"b0e8017e-c334-4e6f-9883-9501b25b957a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T05:05:09.662Z", + "completed":"2016-03-08T05:05:09.662Z", + "new_balance":"2827.76", + "value":"-0.80" + } + }, + { + "id":"370ca107-6671-49fa-8557-566c477aca79", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T08:12:46.471Z", + "completed":"2016-03-08T08:12:46.471Z", + "new_balance":"2826.99", + "value":"-0.77" + } + }, + { + "id":"5724f671-3398-4ab1-ae0f-7b64e85489ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T12:11:55.545Z", + "completed":"2016-03-10T12:11:55.545Z", + "new_balance":"2824.28", + "value":"-2.71" + } + }, + { + "id":"fe1d91c2-729e-4466-afb3-e18bd313962a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T05:58:39.360Z", + "completed":"2016-03-11T05:58:39.360Z", + "new_balance":"2822.68", + "value":"-1.60" + } + }, + { + "id":"0257a4db-da91-45ab-8e3c-51d023ace581", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T08:22:40.693Z", + "completed":"2016-03-11T08:22:40.693Z", + "new_balance":"2819.96", + "value":"-2.72" + } + }, + { + "id":"fe4672df-c7ac-4ffb-ac13-c85f93c82109", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T14:22:00.057Z", + "completed":"2016-03-11T14:22:00.057Z", + "new_balance":"2819.49", + "value":"-0.47" + } + }, + { + "id":"7f310f6c-ca21-4068-9be8-6fa065082f64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T09:57:23.801Z", + "completed":"2016-03-12T09:57:23.801Z", + "new_balance":"2816.90", + "value":"-2.59" + } + }, + { + "id":"b9cb924b-f1db-4a3b-9d30-d62191046509", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T16:30:47.564Z", + "completed":"2016-03-12T16:30:47.564Z", + "new_balance":"2816.43", + "value":"-0.47" + } + }, + { + "id":"6930ce7c-1831-4a98-a8c8-333ef69aadab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:14:00.160Z", + "completed":"2016-03-12T20:14:00.160Z", + "new_balance":"2810.27", + "value":"-6.16" + } + }, + { + "id":"4b91f110-29b1-4cbb-a6a8-240291a54852", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T20:18:10.542Z", + "completed":"2016-03-12T20:18:10.542Z", + "new_balance":"2800.12", + "value":"-10.15" + } + }, + { + "id":"5cf11efc-f8c0-4822-bd68-9649fe9b23df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T06:11:49.731Z", + "completed":"2016-03-13T06:11:49.731Z", + "new_balance":"2797.54", + "value":"-2.58" + } + }, + { + "id":"53cb3c91-86b9-4ddc-902c-73357e4d800b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T21:56:53.409Z", + "completed":"2016-03-13T21:56:53.409Z", + "new_balance":"2797.07", + "value":"-0.47" + } + }, + { + "id":"3496c4cd-a7b8-4aa2-81d9-f6208f93ddef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T11:02:19.516Z", + "completed":"2016-03-15T11:02:19.516Z", + "new_balance":"2792.95", + "value":"-4.12" + } + }, + { + "id":"1740fb31-1b6a-4e62-8eb3-278c96c9b480", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T16:34:49.648Z", + "completed":"2016-03-15T16:34:49.648Z", + "new_balance":"2788.03", + "value":"-4.92" + } + }, + { + "id":"a1f75dfb-0138-434b-9a84-842e47fe412a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T15:24:48.541Z", + "completed":"2016-03-17T15:24:48.541Z", + "new_balance":"2783.64", + "value":"-4.39" + } + }, + { + "id":"30f773ad-20a1-4e68-b34e-dc83be4edcdf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T03:16:48.352Z", + "completed":"2016-03-18T03:16:48.352Z", + "new_balance":"2774.03", + "value":"-9.61" + } + }, + { + "id":"ac97b1ca-996f-4c58-a303-634b93860343", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T09:49:31.381Z", + "completed":"2016-03-20T09:49:31.381Z", + "new_balance":"2761.67", + "value":"-12.36" + } + }, + { + "id":"2793f701-8e5d-4d7f-98a4-59bf81176a3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T05:52:32.690Z", + "completed":"2016-03-22T05:52:32.690Z", + "new_balance":"2758.20", + "value":"-3.47" + } + }, + { + "id":"bf30fb6e-9acd-4036-bc6b-fd84e02a5c1c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T10:45:11.535Z", + "completed":"2016-03-25T10:45:11.535Z", + "new_balance":"2757.73", + "value":"-0.47" + } + }, + { + "id":"76091344-bc36-43b1-b7ea-8992f5242f23", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T14:14:30.188Z", + "completed":"2016-03-25T14:14:30.188Z", + "new_balance":"2756.58", + "value":"-1.15" + } + }, + { + "id":"23097220-e852-48a4-b4b8-550bd9fc6e49", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T21:47:12.318Z", + "completed":"2016-03-26T21:47:12.318Z", + "new_balance":"2754.19", + "value":"-2.39" + } + }, + { + "id":"6d0f6aa1-d49c-401c-8b52-e05bd0bc94ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T22:22:43.516Z", + "completed":"2016-03-26T22:22:43.516Z", + "new_balance":"2752.84", + "value":"-1.35" + } + }, + { + "id":"8e94f206-5dc7-4e3d-be09-64e17df0e4d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T16:40:12.683Z", + "completed":"2016-03-27T16:40:12.683Z", + "new_balance":"2751.64", + "value":"-1.20" + } + }, + { + "id":"ed1c317b-440a-4a3f-9efa-6d74d10a4296", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T07:15:58.593Z", + "completed":"2016-03-28T07:15:58.593Z", + "new_balance":"2747.92", + "value":"-3.72" + } + }, + { + "id":"4020e9cb-a301-4666-89de-68a6f4f50ed0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T23:14:44.433Z", + "completed":"2016-03-31T23:14:44.433Z", + "new_balance":"2725.56", + "value":"-22.36" + } + }, + { + "id":"5417abb2-31d9-45d7-acdb-8cbc450d0ba8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T15:45:12.591Z", + "completed":"2016-04-01T15:45:12.591Z", + "new_balance":"2693.84", + "value":"-31.72" + } + }, + { + "id":"f4ea57fc-d727-467c-8ec3-adc38bf813db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T17:59:06.015Z", + "completed":"2016-04-01T17:59:06.015Z", + "new_balance":"2834.82", + "value":"140.98" + } + }, + { + "id":"334b514e-ef2d-404d-93a6-cd28877818e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T21:39:13.174Z", + "completed":"2016-04-01T21:39:13.174Z", + "new_balance":"3017.52", + "value":"182.70" + } + }, + { + "id":"29c2598b-8842-4dc3-9477-3326a46cee23", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T08:18:30.999Z", + "completed":"2016-04-03T08:18:30.999Z", + "new_balance":"3012.70", + "value":"-4.82" + } + }, + { + "id":"bcd2fe4a-a231-47cd-b096-98c01051b895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T15:52:35.297Z", + "completed":"2016-04-03T15:52:35.297Z", + "new_balance":"3012.03", + "value":"-0.67" + } + }, + { + "id":"318ab95f-543f-471b-9fc1-b34481f2939e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T21:38:08.955Z", + "completed":"2016-04-03T21:38:08.955Z", + "new_balance":"3010.29", + "value":"-1.74" + } + }, + { + "id":"58bc26d4-61f4-41ce-90f7-94112359f215", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T06:20:05.317Z", + "completed":"2016-04-05T06:20:05.317Z", + "new_balance":"3009.77", + "value":"-0.52" + } + }, + { + "id":"8175e02f-937b-4a3d-9278-34e0868bc5fb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T18:44:11.064Z", + "completed":"2016-04-05T18:44:11.064Z", + "new_balance":"3008.37", + "value":"-1.40" + } + }, + { + "id":"6341934f-c745-41a0-8b4d-b4a86655a1ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T06:54:18.248Z", + "completed":"2016-04-06T06:54:18.248Z", + "new_balance":"3006.77", + "value":"-1.60" + } + }, + { + "id":"9eb90478-29ea-4adf-9085-309219a8c03b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T12:18:48.263Z", + "completed":"2016-04-09T12:18:48.263Z", + "new_balance":"3004.18", + "value":"-2.59" + } + }, + { + "id":"0d7f9457-25c8-4177-b91f-c39dde6f951a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T14:05:16.732Z", + "completed":"2016-04-10T14:05:16.732Z", + "new_balance":"3002.50", + "value":"-1.68" + } + }, + { + "id":"46e9b54d-5c5b-46e1-8713-2f9941aa2408", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T05:27:39.296Z", + "completed":"2016-04-11T05:27:39.296Z", + "new_balance":"3000.19", + "value":"-2.31" + } + }, + { + "id":"85c974b8-2747-4085-8a4d-8c8de547e57e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T14:24:05.896Z", + "completed":"2016-04-11T14:24:05.896Z", + "new_balance":"2998.32", + "value":"-1.87" + } + }, + { + "id":"423e79a6-edf9-46bd-aec8-7630509e7244", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T05:12:45.721Z", + "completed":"2016-04-13T05:12:45.721Z", + "new_balance":"2992.19", + "value":"-6.13" + } + }, + { + "id":"30d6deae-0337-40fd-a746-429a6f341e5f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T13:47:11.336Z", + "completed":"2016-04-13T13:47:11.336Z", + "new_balance":"2984.49", + "value":"-7.70" + } + }, + { + "id":"7809ddbc-7068-4d12-982b-fbab266083ab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T08:12:15.166Z", + "completed":"2016-04-15T08:12:15.166Z", + "new_balance":"2979.96", + "value":"-4.53" + } + }, + { + "id":"6c607593-e659-4dd9-b4cb-9764b6e71e6c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T00:56:01.251Z", + "completed":"2016-04-16T00:56:01.251Z", + "new_balance":"2979.49", + "value":"-0.47" + } + }, + { + "id":"89278d1f-c2de-40a8-9cfb-6a76ae2309e6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T06:12:43.926Z", + "completed":"2016-04-16T06:12:43.926Z", + "new_balance":"2978.68", + "value":"-0.81" + } + }, + { + "id":"18c461f9-a72d-48b1-b1f2-b179db22e1c7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T04:59:21.711Z", + "completed":"2016-04-18T04:59:21.711Z", + "new_balance":"2973.20", + "value":"-5.48" + } + }, + { + "id":"8658d3cc-d547-4251-b66e-2af055328c5b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T19:30:26.132Z", + "completed":"2016-04-23T19:30:26.132Z", + "new_balance":"2970.77", + "value":"-2.43" + } + }, + { + "id":"7a5bd3ae-2ecc-462e-b048-a4bfb266e5c8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T04:07:22.378Z", + "completed":"2016-04-24T04:07:22.378Z", + "new_balance":"2969.20", + "value":"-1.57" + } + }, + { + "id":"11893bb0-35b9-47b4-8172-8fb3c86fbec3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T11:08:00.466Z", + "completed":"2016-04-24T11:08:00.466Z", + "new_balance":"2965.90", + "value":"-3.30" + } + }, + { + "id":"58447d8a-5b1d-43dc-a211-a5331465b81d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T18:14:30.051Z", + "completed":"2016-04-26T18:14:30.051Z", + "new_balance":"2965.38", + "value":"-0.52" + } + }, + { + "id":"a95912f2-4e3b-4572-963e-507da1a10e95", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T10:53:52.646Z", + "completed":"2016-04-28T10:53:52.646Z", + "new_balance":"2961.66", + "value":"-3.72" + } + }, + { + "id":"4ed726fe-7dc7-411e-a405-f3c84df2ee3c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T22:34:45.412Z", + "completed":"2016-04-28T22:34:45.412Z", + "new_balance":"2939.30", + "value":"-22.36" + } + }, + { + "id":"6489558a-5fd8-4a1b-a26c-450b06160654", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T04:39:20.605Z", + "completed":"2016-05-02T04:39:20.605Z", + "new_balance":"2938.63", + "value":"-0.67" + } + }, + { + "id":"1661df28-b433-460b-a35d-bc663a138666", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T04:43:26.374Z", + "completed":"2016-05-02T04:43:26.374Z", + "new_balance":"2937.31", + "value":"-1.32" + } + }, + { + "id":"a4880a05-65c6-4a68-8677-62d4776df6e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T11:57:55.906Z", + "completed":"2016-05-02T11:57:55.906Z", + "new_balance":"2924.21", + "value":"-13.10" + } + }, + { + "id":"7e4b0783-90e3-4a76-b742-f755a3d0abb0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T12:27:38.241Z", + "completed":"2016-05-02T12:27:38.241Z", + "new_balance":"2892.49", + "value":"-31.72" + } + }, + { + "id":"f0ca8ddb-8d17-4f92-8f35-45ced4afee29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T00:36:08.255Z", + "completed":"2016-05-06T00:36:08.255Z", + "new_balance":"2890.18", + "value":"-2.31" + } + }, + { + "id":"dbd7ef72-e269-4ee6-a93b-fe97a3043585", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T21:11:15.831Z", + "completed":"2016-05-06T21:11:15.831Z", + "new_balance":"2887.99", + "value":"-2.19" + } + }, + { + "id":"42084cf1-f4d7-47e8-9528-ea15d8a41b25", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T01:33:24.059Z", + "completed":"2016-05-07T01:33:24.059Z", + "new_balance":"2883.42", + "value":"-4.57" + } + }, + { + "id":"c18c1353-67bd-4ffb-9b12-54e3ab5a5895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T07:03:15.572Z", + "completed":"2016-05-07T07:03:15.572Z", + "new_balance":"2875.72", + "value":"-7.70" + } + }, + { + "id":"0411b321-8df6-47eb-a716-6aadb867e6c7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T13:57:30.812Z", + "completed":"2016-05-09T13:57:30.812Z", + "new_balance":"3016.70", + "value":"140.98" + } + }, + { + "id":"c84a687d-5833-4855-9e09-f10575cb0424", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T09:47:33.471Z", + "completed":"2016-05-14T09:47:33.471Z", + "new_balance":"3014.30", + "value":"-2.40" + } + }, + { + "id":"80f49147-611c-4412-8540-107c0e526412", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:32:01.235Z", + "completed":"2016-05-14T21:32:01.235Z", + "new_balance":"3010.16", + "value":"-4.14" + } + }, + { + "id":"dbb05d51-f2bf-49ae-be6c-3cf8435a02d2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T03:12:47.736Z", + "completed":"2016-05-16T03:12:47.736Z", + "new_balance":"3009.64", + "value":"-0.52" + } + }, + { + "id":"142418a0-4ad6-45d9-b1f3-bd7d66aa8f53", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T04:08:00.533Z", + "completed":"2016-05-21T04:08:00.533Z", + "new_balance":"3006.76", + "value":"-2.88" + } + }, + { + "id":"33e35dbc-06d9-4c41-a0df-ce2fe3f01778", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T05:42:37.803Z", + "completed":"2016-05-23T05:42:37.803Z", + "new_balance":"3004.45", + "value":"-2.31" + } + }, + { + "id":"fbf24539-59bf-4d1f-8f9a-2de7a6fbbf61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T10:55:44.238Z", + "completed":"2016-05-23T10:55:44.238Z", + "new_balance":"3003.98", + "value":"-0.47" + } + }, + { + "id":"b912a737-5670-4826-847a-24b65cb42a95", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T22:42:05.650Z", + "completed":"2016-05-24T22:42:05.650Z", + "new_balance":"2999.37", + "value":"-4.61" + } + }, + { + "id":"90503fbc-d097-4f93-bea7-48e676ed6ff1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T07:18:10.855Z", + "completed":"2016-05-27T07:18:10.855Z", + "new_balance":"2998.78", + "value":"-0.59" + } + }, + { + "id":"bf6e083a-edd4-4de2-8eb7-1ed4b35cd08e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T14:36:19.021Z", + "completed":"2016-05-30T14:36:19.021Z", + "new_balance":"2976.42", + "value":"-22.36" + } + }, + { + "id":"5398c450-9c93-4694-aabc-3f596f890f3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T14:47:27.543Z", + "completed":"2016-05-30T14:47:27.543Z", + "new_balance":"2972.70", + "value":"-3.72" + } + }, + { + "id":"4c1abde2-541b-4e18-a537-9b155435636b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T10:08:37.270Z", + "completed":"2016-06-01T10:08:37.270Z", + "new_balance":"3113.68", + "value":"140.98" + } + }, + { + "id":"2788d6a5-a652-48e1-9b28-1e90d3bb138a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T17:00:10.384Z", + "completed":"2016-06-01T17:00:10.384Z", + "new_balance":"3081.96", + "value":"-31.72" + } + }, + { + "id":"938a88d7-0e00-45c5-b486-2743a2819931", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:18:15.608Z", + "completed":"2016-06-04T01:18:15.608Z", + "new_balance":"3078.50", + "value":"-3.46" + } + }, + { + "id":"548b56a0-d133-49d3-ad16-eacdf9abf3f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T07:33:49.609Z", + "completed":"2016-06-04T07:33:49.609Z", + "new_balance":"3076.45", + "value":"-2.05" + } + }, + { + "id":"9986689b-0a0b-4df8-b756-829f79c06ece", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T04:26:46.799Z", + "completed":"2016-06-11T04:26:46.799Z", + "new_balance":"3071.84", + "value":"-4.61" + } + }, + { + "id":"c2a236a3-c21e-4751-826f-7e4d975d0212", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T12:15:50.808Z", + "completed":"2016-06-11T12:15:50.808Z", + "new_balance":"3068.54", + "value":"-3.30" + } + }, + { + "id":"72155862-1d99-491a-8047-ad17275e6d7e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T05:12:44.069Z", + "completed":"2016-06-12T05:12:44.069Z", + "new_balance":"3067.24", + "value":"-1.30" + } + }, + { + "id":"a8016f63-dd0b-44d3-9134-ca919876477c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T09:14:49.088Z", + "completed":"2016-06-12T09:14:49.088Z", + "new_balance":"3066.77", + "value":"-0.47" + } + }, + { + "id":"7e9e2486-0b5b-4229-b208-e7332df9addc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T23:07:55.384Z", + "completed":"2016-06-12T23:07:55.384Z", + "new_balance":"3059.07", + "value":"-7.70" + } + }, + { + "id":"d4b24551-3ad1-4c21-b891-5c18f92d607e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T00:59:26.906Z", + "completed":"2016-06-13T00:59:26.906Z", + "new_balance":"3051.33", + "value":"-7.74" + } + }, + { + "id":"23cf5153-29ea-417a-9936-c48f432985d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T15:32:17.558Z", + "completed":"2016-06-13T15:32:17.558Z", + "new_balance":"3044.58", + "value":"-6.75" + } + }, + { + "id":"ff6b31f5-87ee-47cc-bfd8-341d4066a943", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T19:40:58.863Z", + "completed":"2016-06-13T19:40:58.863Z", + "new_balance":"3037.94", + "value":"-6.64" + } + }, + { + "id":"305e9877-3a9f-4376-8ab3-8e99194be1de", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T17:06:05.323Z", + "completed":"2016-06-14T17:06:05.323Z", + "new_balance":"3037.14", + "value":"-0.80" + } + }, + { + "id":"2d85a5d9-8ac1-4bdd-b347-a40099ccff58", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T17:36:30.022Z", + "completed":"2016-06-14T17:36:30.022Z", + "new_balance":"3036.34", + "value":"-0.80" + } + }, + { + "id":"8fb16bb6-487b-43e5-8656-4b6315c7ae64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T19:43:54.375Z", + "completed":"2016-06-14T19:43:54.375Z", + "new_balance":"3035.87", + "value":"-0.47" + } + }, + { + "id":"b812de28-39f7-4e80-88f3-322afea24e52", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T02:05:04.667Z", + "completed":"2016-06-15T02:05:04.667Z", + "new_balance":"3033.16", + "value":"-2.71" + } + }, + { + "id":"130f6c02-623b-4a6b-a616-430808967b74", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T05:44:16.215Z", + "completed":"2016-06-15T05:44:16.215Z", + "new_balance":"3032.39", + "value":"-0.77" + } + }, + { + "id":"e2cb04fd-9642-4f44-9570-1afc96daa122", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T21:39:52.732Z", + "completed":"2016-06-15T21:39:52.732Z", + "new_balance":"3031.92", + "value":"-0.47" + } + }, + { + "id":"073002b6-2d7c-4e31-a9fe-f7f843f5ace6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T00:49:47.014Z", + "completed":"2016-06-16T00:49:47.014Z", + "new_balance":"3029.20", + "value":"-2.72" + } + }, + { + "id":"546752c7-fa13-45fe-8e9a-cd991af48ee0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T21:29:18.209Z", + "completed":"2016-06-17T21:29:18.209Z", + "new_balance":"3027.60", + "value":"-1.60" + } + }, + { + "id":"c786c99b-3a71-444a-a83c-8a674ea22e13", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T05:33:42.325Z", + "completed":"2016-06-18T05:33:42.325Z", + "new_balance":"3021.44", + "value":"-6.16" + } + }, + { + "id":"725f1ebe-0719-4182-94e4-a783a3d43e80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T12:35:46.397Z", + "completed":"2016-06-18T12:35:46.397Z", + "new_balance":"3020.97", + "value":"-0.47" + } + }, + { + "id":"e82e0ebb-243a-412c-b8bd-88a3010aedcd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T14:00:32.445Z", + "completed":"2016-06-18T14:00:32.445Z", + "new_balance":"3018.38", + "value":"-2.59" + } + }, + { + "id":"512201bf-7411-4505-8079-ed2f7adc0b6b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T16:18:11.129Z", + "completed":"2016-06-18T16:18:11.129Z", + "new_balance":"3017.91", + "value":"-0.47" + } + }, + { + "id":"37f3ecaa-9c3f-4f65-a993-d52dc363e57a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T16:42:26.860Z", + "completed":"2016-06-18T16:42:26.860Z", + "new_balance":"3015.33", + "value":"-2.58" + } + }, + { + "id":"29f6a4e6-dfd7-4bd0-996a-de1cd90353cc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T23:27:32.902Z", + "completed":"2016-06-18T23:27:32.902Z", + "new_balance":"3005.18", + "value":"-10.15" + } + }, + { + "id":"f2e009c6-c866-4a53-a953-6a5bbf832501", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T07:32:43.365Z", + "completed":"2016-06-19T07:32:43.365Z", + "new_balance":"3000.79", + "value":"-4.39" + } + }, + { + "id":"177b54ee-08f4-4482-9b34-403cfa55f288", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T07:41:05.463Z", + "completed":"2016-06-19T07:41:05.463Z", + "new_balance":"2996.67", + "value":"-4.12" + } + }, + { + "id":"86c960fc-f887-43b7-9e85-dbccba9ac74c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T14:32:45.776Z", + "completed":"2016-06-19T14:32:45.776Z", + "new_balance":"2991.75", + "value":"-4.92" + } + }, + { + "id":"2c8d8ad6-8cc9-485b-9c70-f7b913cf3ac8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T13:54:42.189Z", + "completed":"2016-06-21T13:54:42.189Z", + "new_balance":"2982.14", + "value":"-9.61" + } + }, + { + "id":"989a216f-e479-4641-b44d-31c68af66ea2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T18:22:06.265Z", + "completed":"2016-06-21T18:22:06.265Z", + "new_balance":"2969.78", + "value":"-12.36" + } + }, + { + "id":"151780cc-b76b-4e88-afef-5dc3192db90e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T01:44:41.857Z", + "completed":"2016-06-22T01:44:41.857Z", + "new_balance":"2968.63", + "value":"-1.15" + } + }, + { + "id":"fe70444a-71a9-46a9-983d-e922b2a97b64", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T12:41:22.451Z", + "completed":"2016-06-22T12:41:22.451Z", + "new_balance":"2965.16", + "value":"-3.47" + } + }, + { + "id":"3ae4826b-61b6-437c-8a15-bf4e78b3d9fc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T22:36:12.950Z", + "completed":"2016-06-22T22:36:12.950Z", + "new_balance":"2964.69", + "value":"-0.47" + } + }, + { + "id":"1a62134d-8b5a-45f9-8e38-d6ba32522deb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T01:33:02.162Z", + "completed":"2016-06-23T01:33:02.162Z", + "new_balance":"2963.34", + "value":"-1.35" + } + }, + { + "id":"821451d6-9707-428d-8e25-2f99e292a7f6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T09:42:53.232Z", + "completed":"2016-06-24T09:42:53.232Z", + "new_balance":"2960.95", + "value":"-2.39" + } + }, + { + "id":"702889ca-f644-46d4-adb7-9ccc801362d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T13:26:18.283Z", + "completed":"2016-06-26T13:26:18.283Z", + "new_balance":"2959.75", + "value":"-1.20" + } + }, + { + "id":"9a00635d-64ce-4087-afac-4809be173dca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T09:01:50.217Z", + "completed":"2016-06-30T09:01:50.217Z", + "new_balance":"2937.39", + "value":"-22.36" + } + }, + { + "id":"fec03399-7b08-4f87-8b76-c3a7b4e054c1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T17:14:16.686Z", + "completed":"2016-06-30T17:14:16.686Z", + "new_balance":"2933.67", + "value":"-3.72" + } + }, + { + "id":"6d0b733f-0b26-431e-8301-1b02f250af62", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T02:05:26.126Z", + "completed":"2016-07-01T02:05:26.126Z", + "new_balance":"3116.37", + "value":"182.70" + } + }, + { + "id":"9b5de293-6876-4216-b983-bdb82d1db110", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T14:47:20.243Z", + "completed":"2016-07-01T14:47:20.243Z", + "new_balance":"3257.35", + "value":"140.98" + } + }, + { + "id":"ffb532fe-49bf-44a1-9e0d-cc59d60ba0b9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T23:43:11.724Z", + "completed":"2016-07-03T23:43:11.724Z", + "new_balance":"3225.63", + "value":"-31.72" + } + }, + { + "id":"abccd192-4fb5-4b0f-9938-0dc61bf07dbc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T01:48:05.997Z", + "completed":"2016-07-04T01:48:05.997Z", + "new_balance":"3220.81", + "value":"-4.82" + } + }, + { + "id":"e1247f94-130e-42e9-a278-7dffbb18560f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T03:11:07.130Z", + "completed":"2016-07-04T03:11:07.130Z", + "new_balance":"3219.07", + "value":"-1.74" + } + }, + { + "id":"7251ca96-46c1-4a14-8ca8-b4cc8c4e3ec9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T15:34:32.068Z", + "completed":"2016-07-04T15:34:32.068Z", + "new_balance":"3218.40", + "value":"-0.67" + } + }, + { + "id":"8e6a69c7-52b0-42d7-a98c-0b0c6d34f53f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T13:14:32.887Z", + "completed":"2016-07-05T13:14:32.887Z", + "new_balance":"3217.00", + "value":"-1.40" + } + }, + { + "id":"7afdb79a-b2e4-44f7-97d3-c08b039aaf04", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T04:53:18.520Z", + "completed":"2016-07-07T04:53:18.520Z", + "new_balance":"3216.48", + "value":"-0.52" + } + }, + { + "id":"6d7ac20c-8c30-48a6-be56-84fb72efbd27", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T02:36:14.098Z", + "completed":"2016-07-11T02:36:14.098Z", + "new_balance":"3214.17", + "value":"-2.31" + } + }, + { + "id":"b05bfae2-c166-434c-a5d6-ee4612ea835a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:09:31.209Z", + "completed":"2016-07-11T16:09:31.209Z", + "new_balance":"3212.30", + "value":"-1.87" + } + }, + { + "id":"81a67cf1-4e43-4167-9c7c-35ccd3160fae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T16:48:52.696Z", + "completed":"2016-07-11T16:48:52.696Z", + "new_balance":"3210.70", + "value":"-1.60" + } + }, + { + "id":"0f0ad2c5-aaed-47af-b69c-2a9fffa470b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T18:16:27.497Z", + "completed":"2016-07-11T18:16:27.497Z", + "new_balance":"3208.11", + "value":"-2.59" + } + }, + { + "id":"152d9e43-341a-428b-ad72-0e932144c844", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T21:47:29.381Z", + "completed":"2016-07-11T21:47:29.381Z", + "new_balance":"3206.43", + "value":"-1.68" + } + }, + { + "id":"b233df7c-b22c-4aa9-bfb9-086550cbfa0e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T05:54:03.621Z", + "completed":"2016-07-13T05:54:03.621Z", + "new_balance":"3200.30", + "value":"-6.13" + } + }, + { + "id":"6bf911cd-63f2-4b82-9044-ac5e043dedee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T13:58:02.900Z", + "completed":"2016-07-13T13:58:02.900Z", + "new_balance":"3192.60", + "value":"-7.70" + } + }, + { + "id":"b6c2d063-c02e-4510-abba-294cfc67d6ee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T07:45:21.092Z", + "completed":"2016-07-16T07:45:21.092Z", + "new_balance":"3201.59", + "value":"8.99" + } + }, + { + "id":"18f744f7-cd33-4ca1-a0fa-fe939ba29f0b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T12:36:35.275Z", + "completed":"2016-07-16T12:36:35.275Z", + "new_balance":"3197.06", + "value":"-4.53" + } + }, + { + "id":"131c591c-dac1-407c-b8c6-db86a57af9a2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T03:13:09.078Z", + "completed":"2016-07-17T03:13:09.078Z", + "new_balance":"3196.59", + "value":"-0.47" + } + }, + { + "id":"bda3177a-6f77-4049-9c32-0ab6c7351db6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T17:09:20.633Z", + "completed":"2016-07-17T17:09:20.633Z", + "new_balance":"3195.78", + "value":"-0.81" + } + }, + { + "id":"f8d7184a-6c92-41b6-a6ba-764116eb9ecf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T05:23:52.009Z", + "completed":"2016-07-19T05:23:52.009Z", + "new_balance":"3190.30", + "value":"-5.48" + } + }, + { + "id":"1c0fdeda-962c-4274-bb36-d19dde242e61", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T11:00:40.730Z", + "completed":"2016-07-21T11:00:40.730Z", + "new_balance":"3187.87", + "value":"-2.43" + } + }, + { + "id":"cd34cf29-281f-4705-b16f-0032ecf69b4d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T05:05:26.503Z", + "completed":"2016-07-23T05:05:26.503Z", + "new_balance":"3184.57", + "value":"-3.30" + } + }, + { + "id":"5cb14d4d-47dd-4bb2-8e8a-397116c3ba62", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T18:54:15.789Z", + "completed":"2016-07-25T18:54:15.789Z", + "new_balance":"3183.00", + "value":"-1.57" + } + }, + { + "id":"4dcec7dd-ecbb-417f-addc-352dbc132d54", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T03:13:45.153Z", + "completed":"2016-07-27T03:13:45.153Z", + "new_balance":"3182.48", + "value":"-0.52" + } + }, + { + "id":"5e5cbdcd-127a-4308-b463-dc49d5e78b75", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T09:44:32.625Z", + "completed":"2016-07-28T09:44:32.625Z", + "new_balance":"3160.12", + "value":"-22.36" + } + }, + { + "id":"a4dc7442-c7a6-485e-bbe7-d78acb2521da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T12:38:17.462Z", + "completed":"2016-07-28T12:38:17.462Z", + "new_balance":"3156.40", + "value":"-3.72" + } + }, + { + "id":"00d54efb-0fd7-40f6-a658-9b43c4bbfeba", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T18:48:52.406Z", + "completed":"2016-08-01T18:48:52.406Z", + "new_balance":"3297.38", + "value":"140.98" + } + }, + { + "id":"827429b0-9bda-43e2-bc95-02c87250672f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T08:41:42.722Z", + "completed":"2016-08-03T08:41:42.722Z", + "new_balance":"3265.66", + "value":"-31.72" + } + }, + { + "id":"1f78154d-b421-4cb6-a46e-445b3ddb3eca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T15:17:40.524Z", + "completed":"2016-08-03T15:17:40.524Z", + "new_balance":"3252.56", + "value":"-13.10" + } + }, + { + "id":"1ccfe172-8c85-4629-b52a-d7bd48c8bc30", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T04:12:26.572Z", + "completed":"2016-08-04T04:12:26.572Z", + "new_balance":"3251.24", + "value":"-1.32" + } + }, + { + "id":"aa06b5f3-d2ae-49f7-87d0-b08f98f68e7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T07:09:49.290Z", + "completed":"2016-08-07T07:09:49.290Z", + "new_balance":"3250.57", + "value":"-0.67" + } + }, + { + "id":"bd4c0b09-f098-4d19-b71a-198a3aecd552", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T07:53:07.197Z", + "completed":"2016-08-07T07:53:07.197Z", + "new_balance":"3248.38", + "value":"-2.19" + } + }, + { + "id":"daf20412-47d3-48a9-a4b6-f1baeb24e229", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T14:16:58.749Z", + "completed":"2016-08-07T14:16:58.749Z", + "new_balance":"3246.07", + "value":"-2.31" + } + }, + { + "id":"5ec9b77a-a568-4fbc-949b-cfb3b531eb5c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T03:46:14.401Z", + "completed":"2016-08-08T03:46:14.401Z", + "new_balance":"3241.50", + "value":"-4.57" + } + }, + { + "id":"1d276f91-8ae1-4310-8681-296cbc35dfb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T07:29:32.516Z", + "completed":"2016-08-08T07:29:32.516Z", + "new_balance":"3237.36", + "value":"-4.14" + } + }, + { + "id":"668f031b-c2b1-4c72-8b25-1fc349770eae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T11:52:46.257Z", + "completed":"2016-08-08T11:52:46.257Z", + "new_balance":"3229.66", + "value":"-7.70" + } + }, + { + "id":"5c1dd475-0790-4a04-a4eb-95a1979bf18f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T17:14:26.977Z", + "completed":"2016-08-09T17:14:26.977Z", + "new_balance":"3227.26", + "value":"-2.40" + } + }, + { + "id":"ffed2407-b205-4e74-b044-c2c2c120a999", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T06:39:06.858Z", + "completed":"2016-08-11T06:39:06.858Z", + "new_balance":"3226.74", + "value":"-0.52" + } + }, + { + "id":"1695f21b-1534-4247-8c5d-74a861be01d4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T13:14:26.721Z", + "completed":"2016-08-14T13:14:26.721Z", + "new_balance":"3223.86", + "value":"-2.88" + } + }, + { + "id":"0886435e-8796-4746-a0bf-b525dbb6b4df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T21:07:46.480Z", + "completed":"2016-08-15T21:07:46.480Z", + "new_balance":"3221.55", + "value":"-2.31" + } + }, + { + "id":"a745d878-ba2f-4565-a0b6-64ed603d83e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T09:08:40.624Z", + "completed":"2016-08-17T09:08:40.624Z", + "new_balance":"3216.94", + "value":"-4.61" + } + }, + { + "id":"c6021c7f-03dc-47cc-b8f0-9b1fe8475397", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T09:15:04.440Z", + "completed":"2016-08-17T09:15:04.440Z", + "new_balance":"3216.47", + "value":"-0.47" + } + }, + { + "id":"88235007-a100-4156-9ca3-ab98c4069de1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T08:07:26.378Z", + "completed":"2016-08-19T08:07:26.378Z", + "new_balance":"3215.88", + "value":"-0.59" + } + }, + { + "id":"eb0d7558-8b6b-429b-8fd1-4d0358f8094e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T23:03:40.658Z", + "completed":"2016-08-25T23:03:40.658Z", + "new_balance":"3227.28", + "value":"11.40" + } + }, + { + "id":"4ce76c60-12e9-4efa-b69c-fb3e51ad0d31", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T03:17:14.597Z", + "completed":"2016-08-28T03:17:14.597Z", + "new_balance":"3223.56", + "value":"-3.72" + } + }, + { + "id":"3bcb9ce9-4bc5-4c5f-8966-be350433b2cf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T06:52:37.214Z", + "completed":"2016-08-28T06:52:37.214Z", + "new_balance":"3201.20", + "value":"-22.36" + } + }, + { + "id":"d2488725-7459-48ea-bbfa-b8b85af0225a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T04:49:47.373Z", + "completed":"2016-09-01T04:49:47.373Z", + "new_balance":"3342.18", + "value":"140.98" + } + }, + { + "id":"dc4ba2b5-7ca7-4e2d-9eb8-be95516a6094", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T04:14:39.300Z", + "completed":"2016-09-03T04:14:39.300Z", + "new_balance":"3310.46", + "value":"-31.72" + } + }, + { + "id":"9ab68106-bd31-4e9b-8a7b-98eabbcca8ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:09:46.654Z", + "completed":"2016-09-04T10:09:46.654Z", + "new_balance":"3307.00", + "value":"-3.46" + } + }, + { + "id":"c772fba5-8dbf-42bf-aa84-1aebdddf7017", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T12:00:24.619Z", + "completed":"2016-09-04T12:00:24.619Z", + "new_balance":"3304.95", + "value":"-2.05" + } + }, + { + "id":"e3e22e16-fee8-4987-a2be-48bba1269368", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T16:25:20.716Z", + "completed":"2016-09-04T16:25:20.716Z", + "new_balance":"3300.34", + "value":"-4.61" + } + }, + { + "id":"8c573fe4-606f-4680-8935-8b349a447fa7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T18:15:18.238Z", + "completed":"2016-09-04T18:15:18.238Z", + "new_balance":"3297.04", + "value":"-3.30" + } + }, + { + "id":"6ea5dfd3-fc3e-41a7-9767-d559222e9b19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T01:39:02.730Z", + "completed":"2016-09-05T01:39:02.730Z", + "new_balance":"3290.40", + "value":"-6.64" + } + }, + { + "id":"b69b7a11-8226-4d1d-8c60-855c5092af6e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T03:32:26.291Z", + "completed":"2016-09-05T03:32:26.291Z", + "new_balance":"3289.10", + "value":"-1.30" + } + }, + { + "id":"1ca28df6-2cb3-4125-854f-8a5ac1e243a5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T11:33:33.719Z", + "completed":"2016-09-05T11:33:33.719Z", + "new_balance":"3288.63", + "value":"-0.47" + } + }, + { + "id":"d6af0caf-a0de-4dec-86ec-8b120fd73544", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T12:14:56.327Z", + "completed":"2016-09-05T12:14:56.327Z", + "new_balance":"3280.89", + "value":"-7.74" + } + }, + { + "id":"b977b705-249e-4465-93b1-8d6c7fe12e4b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T14:19:10.593Z", + "completed":"2016-09-05T14:19:10.593Z", + "new_balance":"3273.19", + "value":"-7.70" + } + }, + { + "id":"e1bf0f2a-d6c7-484f-8f11-34873b5bbdc4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T19:13:10.425Z", + "completed":"2016-09-05T19:13:10.425Z", + "new_balance":"3266.44", + "value":"-6.75" + } + }, + { + "id":"2f4bd503-87ec-467b-b091-d2d5e95dda38", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T07:16:44.052Z", + "completed":"2016-09-07T07:16:44.052Z", + "new_balance":"3265.97", + "value":"-0.47" + } + }, + { + "id":"472092e7-f471-4abd-9f19-71efbd3588de", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T07:44:49.129Z", + "completed":"2016-09-07T07:44:49.129Z", + "new_balance":"3265.17", + "value":"-0.80" + } + }, + { + "id":"4f28d913-1be8-4cda-a942-56cb1031fc36", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T15:22:25.474Z", + "completed":"2016-09-07T15:22:25.474Z", + "new_balance":"3264.37", + "value":"-0.80" + } + }, + { + "id":"22bc2142-c0ee-4760-bfae-74ca2880b895", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T17:52:56.586Z", + "completed":"2016-09-07T17:52:56.586Z", + "new_balance":"3263.60", + "value":"-0.77" + } + }, + { + "id":"a7064e2f-dd7a-4586-b506-25ab5d4332a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T14:53:36.509Z", + "completed":"2016-09-10T14:53:36.509Z", + "new_balance":"3260.89", + "value":"-2.71" + } + }, + { + "id":"85e221f5-d490-4116-94bd-4bcece806075", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T10:32:40.916Z", + "completed":"2016-09-11T10:32:40.916Z", + "new_balance":"3260.42", + "value":"-0.47" + } + }, + { + "id":"a26506c1-21af-4e3e-869b-af823859b16d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T20:10:43.827Z", + "completed":"2016-09-11T20:10:43.827Z", + "new_balance":"3257.70", + "value":"-2.72" + } + }, + { + "id":"dff16bd8-e316-41f5-ad18-5a12c7d8df89", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T21:41:07.605Z", + "completed":"2016-09-11T21:41:07.605Z", + "new_balance":"3256.10", + "value":"-1.60" + } + }, + { + "id":"15ae2414-e1f4-4c01-a41e-a695898e59e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T03:19:48.977Z", + "completed":"2016-09-12T03:19:48.977Z", + "new_balance":"3255.63", + "value":"-0.47" + } + }, + { + "id":"a9b1798e-2471-46ed-9411-7a485ecaf0ac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:53:14.753Z", + "completed":"2016-09-12T04:53:14.753Z", + "new_balance":"3249.47", + "value":"-6.16" + } + }, + { + "id":"00fbd43d-0073-4c94-8195-9e441f59cdac", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T08:06:53.171Z", + "completed":"2016-09-12T08:06:53.171Z", + "new_balance":"3239.32", + "value":"-10.15" + } + }, + { + "id":"e360ee19-fb7a-461b-9785-85bbeaf970bb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T19:55:06.710Z", + "completed":"2016-09-12T19:55:06.710Z", + "new_balance":"3236.73", + "value":"-2.59" + } + }, + { + "id":"2f8e8924-801c-4f92-9a35-39409701ce1d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T00:23:28.825Z", + "completed":"2016-09-13T00:23:28.825Z", + "new_balance":"3234.15", + "value":"-2.58" + } + }, + { + "id":"358ef237-6ab0-4e8d-856c-0eb5ebf806c2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T18:15:21.319Z", + "completed":"2016-09-14T18:15:21.319Z", + "new_balance":"3229.23", + "value":"-4.92" + } + }, + { + "id":"c4a926c2-be12-442f-8926-1956df3b44e3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T19:01:50.058Z", + "completed":"2016-09-14T19:01:50.058Z", + "new_balance":"3228.76", + "value":"-0.47" + } + }, + { + "id":"1e6987b2-5bd4-46cb-946b-1e5765161319", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T15:08:00.150Z", + "completed":"2016-09-16T15:08:00.150Z", + "new_balance":"3224.64", + "value":"-4.12" + } + }, + { + "id":"fc9a665c-ef7d-4d5a-b79d-3693d32d2e42", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T04:00:57.328Z", + "completed":"2016-09-18T04:00:57.328Z", + "new_balance":"3220.25", + "value":"-4.39" + } + }, + { + "id":"c6b63a01-f65f-4fe7-8f4a-f2054311f9bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T09:08:06.893Z", + "completed":"2016-09-21T09:08:06.893Z", + "new_balance":"3207.89", + "value":"-12.36" + } + }, + { + "id":"30e8b8ab-1682-4c1a-be7b-b79877d350bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:55:15.382Z", + "completed":"2016-09-21T10:55:15.382Z", + "new_balance":"3198.28", + "value":"-9.61" + } + }, + { + "id":"585d7c7d-e845-4192-90f0-96468e592d89", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T23:53:03.013Z", + "completed":"2016-09-23T23:53:03.013Z", + "new_balance":"3194.81", + "value":"-3.47" + } + }, + { + "id":"2563e7fc-dcc1-4d04-84e6-b6c2153ff7bb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T14:56:45.031Z", + "completed":"2016-09-24T14:56:45.031Z", + "new_balance":"3194.34", + "value":"-0.47" + } + }, + { + "id":"26249e06-0379-4ee6-ba23-e0bd545b7d45", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T06:57:49.919Z", + "completed":"2016-09-26T06:57:49.919Z", + "new_balance":"3192.99", + "value":"-1.35" + } + }, + { + "id":"a690b06c-bd82-4c63-a5c1-38fc0383e4dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T10:33:28.846Z", + "completed":"2016-09-26T10:33:28.846Z", + "new_balance":"3191.84", + "value":"-1.15" + } + }, + { + "id":"b8571c9d-3c7b-40ac-b50f-b57e501d4c22", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T18:18:21.677Z", + "completed":"2016-09-26T18:18:21.677Z", + "new_balance":"3189.45", + "value":"-2.39" + } + }, + { + "id":"a027e37e-d259-4a64-a856-0c4b97d21780", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T14:05:19.321Z", + "completed":"2016-09-27T14:05:19.321Z", + "new_balance":"3188.25", + "value":"-1.20" + } + }, + { + "id":"bec05479-90c3-4fb8-b8b7-780993acd8ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T06:18:10.566Z", + "completed":"2016-09-28T06:18:10.566Z", + "new_balance":"3184.53", + "value":"-3.72" + } + }, + { + "id":"9fc950d3-6fe9-4403-ba16-214eb99822f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T11:12:57.181Z", + "completed":"2016-09-28T11:12:57.181Z", + "new_balance":"3162.17", + "value":"-22.36" + } + }, + { + "id":"c2688d78-2e9e-432a-a17d-bd4f5b42c667", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T10:04:35.485Z", + "completed":"2016-10-01T10:04:35.485Z", + "new_balance":"3130.45", + "value":"-31.72" + } + }, + { + "id":"1a7f7f73-4737-4e57-bab5-b3af7cc7e9f3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T16:50:05.601Z", + "completed":"2016-10-01T16:50:05.601Z", + "new_balance":"3271.43", + "value":"140.98" + } + }, + { + "id":"bca09179-5792-462b-9f77-6d5508ecce14", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T17:09:10.182Z", + "completed":"2016-10-01T17:09:10.182Z", + "new_balance":"3454.13", + "value":"182.70" + } + }, + { + "id":"27d7f4c0-f3d9-4cfa-9155-d59a0a2d2c7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T14:32:44.265Z", + "completed":"2016-10-03T14:32:44.265Z", + "new_balance":"3453.46", + "value":"-0.67" + } + }, + { + "id":"85c1ec68-7d77-43d8-921a-df2e7014a8ce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T19:27:27.747Z", + "completed":"2016-10-03T19:27:27.747Z", + "new_balance":"3448.64", + "value":"-4.82" + } + }, + { + "id":"dfe1d5a8-4722-460c-83de-6b929379bc5d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T23:22:26.733Z", + "completed":"2016-10-03T23:22:26.733Z", + "new_balance":"3446.90", + "value":"-1.74" + } + }, + { + "id":"4c13cc78-5813-4cf1-902f-64fab14bf792", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T17:28:58.228Z", + "completed":"2016-10-05T17:28:58.228Z", + "new_balance":"3445.50", + "value":"-1.40" + } + }, + { + "id":"2e829bf2-d19c-436a-ad80-6d497bdea768", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T20:42:11.620Z", + "completed":"2016-10-05T20:42:11.620Z", + "new_balance":"3444.98", + "value":"-0.52" + } + }, + { + "id":"17be6557-ddc6-4887-82d5-8eb6657643b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T14:37:26.755Z", + "completed":"2016-10-06T14:37:26.755Z", + "new_balance":"3443.38", + "value":"-1.60" + } + }, + { + "id":"e0a2d5d1-2a25-4498-8833-a7c76578f5cd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T18:27:11.440Z", + "completed":"2016-10-09T18:27:11.440Z", + "new_balance":"3440.79", + "value":"-2.59" + } + }, + { + "id":"d41bef76-8ff6-4803-9ad3-eccd4066ba19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T17:55:51.983Z", + "completed":"2016-10-10T17:55:51.983Z", + "new_balance":"3439.11", + "value":"-1.68" + } + }, + { + "id":"9b42bd76-6cb1-4a87-86d2-2fed29fa12d6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T02:25:26.076Z", + "completed":"2016-10-11T02:25:26.076Z", + "new_balance":"3437.24", + "value":"-1.87" + } + }, + { + "id":"8c9c4098-92c2-4e6c-b0d2-ebe5223d231e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T12:32:56.558Z", + "completed":"2016-10-11T12:32:56.558Z", + "new_balance":"3434.93", + "value":"-2.31" + } + }, + { + "id":"a05af609-53a2-4bb6-bc81-762c5c7fc027", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T08:33:09.303Z", + "completed":"2016-10-14T08:33:09.303Z", + "new_balance":"3427.23", + "value":"-7.70" + } + }, + { + "id":"337f771d-397b-4bec-a794-de4bd62f2c72", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T20:13:31.557Z", + "completed":"2016-10-14T20:13:31.557Z", + "new_balance":"3421.10", + "value":"-6.13" + } + }, + { + "id":"8f599f2a-b148-4aa9-ba60-6cbb243fe6e0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T17:40:01.775Z", + "completed":"2016-10-17T17:40:01.775Z", + "new_balance":"3416.57", + "value":"-4.53" + } + }, + { + "id":"25f40c98-e3a5-4ed2-8225-b72f97ff9827", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T04:11:50.121Z", + "completed":"2016-10-18T04:11:50.121Z", + "new_balance":"3415.76", + "value":"-0.81" + } + }, + { + "id":"ec4c246c-a65e-499a-90dd-7809c82667f3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T04:12:24.023Z", + "completed":"2016-10-18T04:12:24.023Z", + "new_balance":"3410.28", + "value":"-5.48" + } + }, + { + "id":"14bab6bd-ff4e-4946-afb0-207915834158", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T13:12:26.620Z", + "completed":"2016-10-18T13:12:26.620Z", + "new_balance":"3409.81", + "value":"-0.47" + } + }, + { + "id":"e3ee2fcc-9d79-4e42-bc2b-79ae73899d34", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T05:46:00.512Z", + "completed":"2016-10-23T05:46:00.512Z", + "new_balance":"3407.38", + "value":"-2.43" + } + }, + { + "id":"96a62da5-12e6-4fd9-9200-c86507f370bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T13:05:52.446Z", + "completed":"2016-10-24T13:05:52.446Z", + "new_balance":"3405.81", + "value":"-1.57" + } + }, + { + "id":"451a46dd-8db2-422c-a5fb-9b36c41f395d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:25:56.343Z", + "completed":"2016-10-24T18:25:56.343Z", + "new_balance":"3402.51", + "value":"-3.30" + } + }, + { + "id":"5416a3b7-2f80-4936-8018-ac80a895f159", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T09:30:40.048Z", + "completed":"2016-10-26T09:30:40.048Z", + "new_balance":"3401.99", + "value":"-0.52" + } + }, + { + "id":"b2a6972d-6da9-4d69-a1d6-115665a06a00", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T15:56:26.887Z", + "completed":"2016-10-30T15:56:26.887Z", + "new_balance":"3398.27", + "value":"-3.72" + } + }, + { + "id":"8557adc2-601d-4644-a33b-400b2e2d35ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T21:47:44.191Z", + "completed":"2016-10-30T21:47:44.191Z", + "new_balance":"3375.91", + "value":"-22.36" + } + }, + { + "id":"0851d39b-b705-4601-92e2-434e5413ffdf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T07:11:49.072Z", + "completed":"2016-11-02T07:11:49.072Z", + "new_balance":"3375.24", + "value":"-0.67" + } + }, + { + "id":"fb683364-9efa-4955-b008-4f50efd331e9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T09:16:08.297Z", + "completed":"2016-11-02T09:16:08.297Z", + "new_balance":"3362.14", + "value":"-13.10" + } + }, + { + "id":"b146db4e-544f-4c18-af53-9d49d01c363b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T09:53:37.275Z", + "completed":"2016-11-02T09:53:37.275Z", + "new_balance":"3360.82", + "value":"-1.32" + } + }, + { + "id":"53f23f14-e996-4c31-be33-fa922460ec03", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T17:10:58.871Z", + "completed":"2016-11-02T17:10:58.871Z", + "new_balance":"3329.10", + "value":"-31.72" + } + }, + { + "id":"75426dc4-7a33-4df1-8f4a-166bdbf9ca7f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T15:11:47.191Z", + "completed":"2016-11-06T15:11:47.191Z", + "new_balance":"3326.91", + "value":"-2.19" + } + }, + { + "id":"9f9a38e0-c0ef-4302-ad6b-46f0522ce099", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T15:55:07.278Z", + "completed":"2016-11-06T15:55:07.278Z", + "new_balance":"3324.60", + "value":"-2.31" + } + }, + { + "id":"a30d03ae-4104-414c-ac3c-db0bed884454", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T10:28:45.975Z", + "completed":"2016-11-07T10:28:45.975Z", + "new_balance":"3320.03", + "value":"-4.57" + } + }, + { + "id":"c64fd105-2138-4a84-98e1-edd6dcd9fecc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T11:53:12.189Z", + "completed":"2016-11-07T11:53:12.189Z", + "new_balance":"3312.33", + "value":"-7.70" + } + }, + { + "id":"89dcfefb-3feb-49eb-9ab2-07f035bb5e04", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T12:52:29.126Z", + "completed":"2016-11-09T12:52:29.126Z", + "new_balance":"3453.31", + "value":"140.98" + } + }, + { + "id":"c1883093-522b-4cf4-a3c9-44b950eca261", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T01:55:13.522Z", + "completed":"2016-11-14T01:55:13.522Z", + "new_balance":"3449.17", + "value":"-4.14" + } + }, + { + "id":"6c872e11-4fac-426a-b6b2-362d5b4b48bf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T07:52:04.351Z", + "completed":"2016-11-14T07:52:04.351Z", + "new_balance":"3446.77", + "value":"-2.40" + } + }, + { + "id":"12d295c4-3039-43bc-9e1a-484a79f49604", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T01:09:41.637Z", + "completed":"2016-11-16T01:09:41.637Z", + "new_balance":"3446.25", + "value":"-0.52" + } + }, + { + "id":"585d1231-7943-4875-927c-791b9c13b1e5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T04:16:14.696Z", + "completed":"2016-11-20T04:16:14.696Z", + "new_balance":"3443.37", + "value":"-2.88" + } + }, + { + "id":"1fd46b7c-b65e-45ee-80c3-cb9c25caef19", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T00:09:20.157Z", + "completed":"2016-11-23T00:09:20.157Z", + "new_balance":"3438.76", + "value":"-4.61" + } + }, + { + "id":"529a57d3-e878-4bca-9a53-1784055f3fda", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T00:11:52.468Z", + "completed":"2016-11-23T00:11:52.468Z", + "new_balance":"3438.29", + "value":"-0.47" + } + }, + { + "id":"5bc3713b-d1ed-4ef7-adc8-c431f0c9b45a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T01:00:02.439Z", + "completed":"2016-11-23T01:00:02.439Z", + "new_balance":"3435.98", + "value":"-2.31" + } + }, + { + "id":"a046fb71-1097-4739-a953-56ea82d45dfb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T02:07:41.654Z", + "completed":"2016-11-28T02:07:41.654Z", + "new_balance":"3435.39", + "value":"-0.59" + } + }, + { + "id":"8c3b7cff-e3e3-42a6-ba33-9fb0e44686b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T05:26:59.696Z", + "completed":"2016-11-30T05:26:59.696Z", + "new_balance":"3431.67", + "value":"-3.72" + } + }, + { + "id":"eee07dca-2407-4bdb-a15e-b015b4637f63", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T21:41:10.705Z", + "completed":"2016-11-30T21:41:10.705Z", + "new_balance":"3409.31", + "value":"-22.36" + } + }, + { + "id":"14746307-e3a1-46a6-8078-45782e5a4106", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T10:56:15.708Z", + "completed":"2016-12-01T10:56:15.708Z", + "new_balance":"3550.29", + "value":"140.98" + } + }, + { + "id":"03e183fc-cbf4-484e-94d3-27022ae90101", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T12:24:55.602Z", + "completed":"2016-12-01T12:24:55.602Z", + "new_balance":"3518.57", + "value":"-31.72" + } + }, + { + "id":"3e8bd478-ca49-405f-89f4-7531de4b4882", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T02:22:19.249Z", + "completed":"2016-12-04T02:22:19.249Z", + "new_balance":"3516.52", + "value":"-2.05" + } + }, + { + "id":"766e0547-e560-491d-bdb7-57aace2bec14", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T20:37:52.814Z", + "completed":"2016-12-04T20:37:52.814Z", + "new_balance":"3513.06", + "value":"-3.46" + } + }, + { + "id":"dcbef522-1613-47f0-9401-404b3943df08", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T01:38:34.265Z", + "completed":"2016-12-11T01:38:34.265Z", + "new_balance":"3508.45", + "value":"-4.61" + } + }, + { + "id":"ebfffaa0-05a8-41d5-bfe6-3586aae409f0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T06:42:20.953Z", + "completed":"2016-12-11T06:42:20.953Z", + "new_balance":"3505.15", + "value":"-3.30" + } + }, + { + "id":"db1a3b09-0153-45be-9c0c-ff96efa860e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T00:32:09.235Z", + "completed":"2016-12-14T00:32:09.235Z", + "new_balance":"3498.40", + "value":"-6.75" + } + }, + { + "id":"328da122-badb-4e49-9ea6-7dc7a1f4885f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T05:07:41.024Z", + "completed":"2016-12-14T05:07:41.024Z", + "new_balance":"3491.76", + "value":"-6.64" + } + }, + { + "id":"f54f523b-d71c-44bb-8397-8f73f38cd2a9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T05:08:07.485Z", + "completed":"2016-12-14T05:08:07.485Z", + "new_balance":"3490.96", + "value":"-0.80" + } + }, + { + "id":"76d34608-402e-41c1-a315-3a472000b1cc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T08:13:04.582Z", + "completed":"2016-12-14T08:13:04.582Z", + "new_balance":"3490.16", + "value":"-0.80" + } + }, + { + "id":"bafd0c9b-6256-4732-bed2-e089e229dde2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T09:26:00.671Z", + "completed":"2016-12-14T09:26:00.671Z", + "new_balance":"3488.86", + "value":"-1.30" + } + }, + { + "id":"d8818610-90a2-4d71-8df5-4da3ad69ed74", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T13:32:11.862Z", + "completed":"2016-12-14T13:32:11.862Z", + "new_balance":"3488.39", + "value":"-0.47" + } + }, + { + "id":"1ca25b19-6d3c-477b-8861-325043a7228b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T14:38:47.898Z", + "completed":"2016-12-14T14:38:47.898Z", + "new_balance":"3480.69", + "value":"-7.70" + } + }, + { + "id":"13b1f08f-c133-4b15-9bc3-af371503877e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T20:42:21.150Z", + "completed":"2016-12-14T20:42:21.150Z", + "new_balance":"3472.95", + "value":"-7.74" + } + }, + { + "id":"68c4af96-23b6-47a9-99cc-b140e3da6e7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T20:58:23.923Z", + "completed":"2016-12-14T20:58:23.923Z", + "new_balance":"3472.48", + "value":"-0.47" + } + }, + { + "id":"56b54611-d167-41a8-90a4-fc2df7d28e9d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T10:52:15.254Z", + "completed":"2016-12-15T10:52:15.254Z", + "new_balance":"3472.01", + "value":"-0.47" + } + }, + { + "id":"9e99d9b8-4eee-44b1-831a-529332403d59", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T18:53:05.313Z", + "completed":"2016-12-15T18:53:05.313Z", + "new_balance":"3471.24", + "value":"-0.77" + } + }, + { + "id":"8d19f440-d4a1-4280-89fe-68cec7f82c28", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T23:17:41.997Z", + "completed":"2016-12-15T23:17:41.997Z", + "new_balance":"3468.53", + "value":"-2.71" + } + }, + { + "id":"35fa782b-df4b-4237-8683-411e9f1557a2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T05:02:01.369Z", + "completed":"2016-12-18T05:02:01.369Z", + "new_balance":"3468.06", + "value":"-0.47" + } + }, + { + "id":"1daa4e09-05aa-405e-b158-94d812e91554", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T13:04:12.409Z", + "completed":"2016-12-18T13:04:12.409Z", + "new_balance":"3465.34", + "value":"-2.72" + } + }, + { + "id":"fc96ee5f-7963-4f86-80ce-d5df181dce3e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T16:38:01.240Z", + "completed":"2016-12-18T16:38:01.240Z", + "new_balance":"3462.76", + "value":"-2.58" + } + }, + { + "id":"c27c9623-571e-41ed-97d6-73cb55794fa7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T17:13:41.566Z", + "completed":"2016-12-18T17:13:41.566Z", + "new_balance":"3462.29", + "value":"-0.47" + } + }, + { + "id":"8bef5642-30b7-48b5-9317-132c01895da2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T19:31:59.258Z", + "completed":"2016-12-18T19:31:59.258Z", + "new_balance":"3456.13", + "value":"-6.16" + } + }, + { + "id":"efe280cb-ee32-4a9e-bd6b-c98e5188030b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T20:26:53.700Z", + "completed":"2016-12-18T20:26:53.700Z", + "new_balance":"3454.53", + "value":"-1.60" + } + }, + { + "id":"a58d8a76-6308-45d5-b19b-272b00ad8319", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T21:28:29.241Z", + "completed":"2016-12-18T21:28:29.241Z", + "new_balance":"3451.94", + "value":"-2.59" + } + }, + { + "id":"066389db-8099-4a5c-80d8-0d1ebb87a01a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T22:39:45.435Z", + "completed":"2016-12-18T22:39:45.435Z", + "new_balance":"3441.79", + "value":"-10.15" + } + }, + { + "id":"3cf021ef-c9e3-4a4d-8141-4f59161c39dd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T06:27:06.079Z", + "completed":"2016-12-19T06:27:06.079Z", + "new_balance":"3437.40", + "value":"-4.39" + } + }, + { + "id":"1b4d66bd-a8c4-4bf2-b5a2-00a02d828f70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:39:49.464Z", + "completed":"2016-12-19T12:39:49.464Z", + "new_balance":"3432.48", + "value":"-4.92" + } + }, + { + "id":"a07b84e1-23ab-429b-a853-a62bad8b73f8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T21:08:17.473Z", + "completed":"2016-12-19T21:08:17.473Z", + "new_balance":"3428.36", + "value":"-4.12" + } + }, + { + "id":"2b35e498-892a-4d4d-9cc8-03d18240c13e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T04:26:17.492Z", + "completed":"2016-12-21T04:26:17.492Z", + "new_balance":"3418.75", + "value":"-9.61" + } + }, + { + "id":"736322d3-27d3-4b9e-8dd1-fa5b6069e874", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T12:55:04.534Z", + "completed":"2016-12-21T12:55:04.534Z", + "new_balance":"3415.28", + "value":"-3.47" + } + }, + { + "id":"e8c2aa20-af86-4fe6-9646-2a3ec7164648", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T13:40:57.977Z", + "completed":"2016-12-21T13:40:57.977Z", + "new_balance":"3414.13", + "value":"-1.15" + } + }, + { + "id":"03d6570f-6e08-48c7-bd32-b55d8a5b48d8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T18:41:52.367Z", + "completed":"2016-12-21T18:41:52.367Z", + "new_balance":"3401.77", + "value":"-12.36" + } + }, + { + "id":"29be6ca8-56eb-4dbf-aab4-372687ed4503", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T22:20:00.572Z", + "completed":"2016-12-21T22:20:00.572Z", + "new_balance":"3401.30", + "value":"-0.47" + } + }, + { + "id":"10002db0-6be0-4f68-8f57-7e2cd7e4890c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T01:04:12.066Z", + "completed":"2016-12-24T01:04:12.066Z", + "new_balance":"3400.10", + "value":"-1.20" + } + }, + { + "id":"e38a59e3-2a42-4456-9945-234fec1a300c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T01:48:11.183Z", + "completed":"2016-12-24T01:48:11.183Z", + "new_balance":"3397.71", + "value":"-2.39" + } + }, + { + "id":"fd22261b-45bb-448c-80e8-498d8a4b3350", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T21:47:53.985Z", + "completed":"2016-12-24T21:47:53.985Z", + "new_balance":"3396.36", + "value":"-1.35" + } + }, + { + "id":"cc001137-c23b-4fc3-bc00-eb760f9643db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T03:41:25.546Z", + "completed":"2016-12-30T03:41:25.546Z", + "new_balance":"3392.64", + "value":"-3.72" + } + }, + { + "id":"5ee72ff7-3f56-4909-a6fc-49abe9ac600f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T06:03:06.378Z", + "completed":"2016-12-30T06:03:06.378Z", + "new_balance":"3370.28", + "value":"-22.36" + } + }, + { + "id":"cd2f0b28-6526-4e49-9669-244cc905a98f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T10:44:28.698Z", + "completed":"2017-01-01T10:44:28.698Z", + "new_balance":"3552.98", + "value":"182.70" + } + }, + { + "id":"548a35c5-cc45-4c97-996d-9deaaebde91c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T15:36:56.070Z", + "completed":"2017-01-01T15:36:56.070Z", + "new_balance":"3693.96", + "value":"140.98" + } + }, + { + "id":"069c3d76-37d8-4ec3-a29c-a95f78368cc5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T20:39:54.577Z", + "completed":"2017-01-02T20:39:54.577Z", + "new_balance":"3662.24", + "value":"-31.72" + } + }, + { + "id":"64a45bf2-9627-4df8-8e22-d36f695275cd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T01:41:26.046Z", + "completed":"2017-01-03T01:41:26.046Z", + "new_balance":"3661.57", + "value":"-0.67" + } + }, + { + "id":"e52b7d21-18b9-4896-b31b-e1c045ffe7ed", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T07:14:48.346Z", + "completed":"2017-01-03T07:14:48.346Z", + "new_balance":"3659.83", + "value":"-1.74" + } + }, + { + "id":"aef250c7-4ca2-43cc-b385-ffa6037237ec", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T21:04:24.542Z", + "completed":"2017-01-03T21:04:24.542Z", + "new_balance":"3655.01", + "value":"-4.82" + } + }, + { + "id":"281a03b3-a498-4069-9953-a33a699fe7ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T16:11:38.632Z", + "completed":"2017-01-04T16:11:38.632Z", + "new_balance":"3653.61", + "value":"-1.40" + } + }, + { + "id":"dd005770-acbe-4b95-af81-c0fc038e8b3f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T12:01:29.799Z", + "completed":"2017-01-05T12:01:29.799Z", + "new_balance":"3653.09", + "value":"-0.52" + } + }, + { + "id":"e19533fa-c6f4-4379-8c51-df87e24f52f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T21:33:28.820Z", + "completed":"2017-01-07T21:33:28.820Z", + "new_balance":"3650.50", + "value":"-2.59" + } + }, + { + "id":"2a60027a-e86e-488d-a68e-8a7e27892042", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T22:48:25.222Z", + "completed":"2017-01-07T22:48:25.222Z", + "new_balance":"3648.90", + "value":"-1.60" + } + }, + { + "id":"db2ba4ba-110f-47f8-a913-6d44cc3103d9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T13:37:03.105Z", + "completed":"2017-01-08T13:37:03.105Z", + "new_balance":"3647.03", + "value":"-1.87" + } + }, + { + "id":"011c4589-9517-4969-bb60-f2245c0706fb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T22:03:53.905Z", + "completed":"2017-01-08T22:03:53.905Z", + "new_balance":"3645.35", + "value":"-1.68" + } + }, + { + "id":"93a95782-c5fd-4966-af8b-a75147bf593b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T02:34:11.826Z", + "completed":"2017-01-09T02:34:11.826Z", + "new_balance":"3643.04", + "value":"-2.31" + } + }, + { + "id":"3e4b782f-8707-4599-b39e-2dee4b9e1a78", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T06:55:17.822Z", + "completed":"2017-01-09T06:55:17.822Z", + "new_balance":"3636.91", + "value":"-6.13" + } + }, + { + "id":"e8dd9f1f-9a55-4d0a-a4e5-03542c7e1fbb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T09:26:20.196Z", + "completed":"2017-01-10T09:26:20.196Z", + "new_balance":"3632.38", + "value":"-4.53" + } + }, + { + "id":"53b5fb25-0d5f-4e3b-b317-2e63bae19e7a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T13:31:38.017Z", + "completed":"2017-01-10T13:31:38.017Z", + "new_balance":"3624.68", + "value":"-7.70" + } + }, + { + "id":"dc97b353-5091-44ff-8bd1-9473b8d71be9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T02:04:34.478Z", + "completed":"2017-01-11T02:04:34.478Z", + "new_balance":"3624.21", + "value":"-0.47" + } + }, + { + "id":"7928e8ed-5806-44d3-8c28-5b3cb3113e79", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T10:10:24.795Z", + "completed":"2017-01-11T10:10:24.795Z", + "new_balance":"3618.73", + "value":"-5.48" + } + }, + { + "id":"17af70be-9bcd-43cb-8759-5698891138be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T11:56:09.383Z", + "completed":"2017-01-11T11:56:09.383Z", + "new_balance":"3627.72", + "value":"8.99" + } + }, + { + "id":"e8dda221-0ba2-4c1b-9cf8-c82e9ca1360a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T03:22:57.978Z", + "completed":"2017-01-12T03:22:57.978Z", + "new_balance":"3626.91", + "value":"-0.81" + } + }, + { + "id":"7300f44f-ce2a-45ca-a6f1-14fd042defc0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T10:46:11.617Z", + "completed":"2017-01-15T10:46:11.617Z", + "new_balance":"3624.48", + "value":"-2.43" + } + }, + { + "id":"35bcf414-d9f2-419f-8a85-4bbd404f108d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T19:19:35.914Z", + "completed":"2017-01-16T19:19:35.914Z", + "new_balance":"3621.18", + "value":"-3.30" + } + }, + { + "id":"c85825eb-d196-48de-a304-5412e4550556", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T06:58:27.924Z", + "completed":"2017-01-17T06:58:27.924Z", + "new_balance":"3619.61", + "value":"-1.57" + } + }, + { + "id":"83b05285-7a7a-4422-83c4-9422008b6173", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T06:15:32.662Z", + "completed":"2017-01-20T06:15:32.662Z", + "new_balance":"3619.09", + "value":"-0.52" + } + }, + { + "id":"5782dd13-430c-421c-8077-2dcaa93af22c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T22:04:30.098Z", + "completed":"2017-01-21T22:04:30.098Z", + "new_balance":"3615.37", + "value":"-3.72" + } + }, + { + "id":"5c479c67-ee67-425f-a416-88b1c62879be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T10:53:29.740Z", + "completed":"2017-01-23T10:53:29.740Z", + "new_balance":"3593.01", + "value":"-22.36" + } + }, + { + "id":"f0e30805-8943-4764-912e-954c7bd578a0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T19:24:03.624Z", + "completed":"2017-02-01T19:24:03.624Z", + "new_balance":"3733.99", + "value":"140.98" + } + }, + { + "id":"06e930f6-39dc-49f8-98b8-19e12494b817", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T03:57:31.965Z", + "completed":"2017-02-03T03:57:31.965Z", + "new_balance":"3720.89", + "value":"-13.10" + } + }, + { + "id":"8e894e60-6f2c-42ce-85ac-395e0f2e42b8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T19:33:50.701Z", + "completed":"2017-02-03T19:33:50.701Z", + "new_balance":"3689.17", + "value":"-31.72" + } + }, + { + "id":"9e014ebf-d1c3-4e18-837a-17fe3e2a76e7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T08:31:16.467Z", + "completed":"2017-02-04T08:31:16.467Z", + "new_balance":"3687.85", + "value":"-1.32" + } + }, + { + "id":"9dbfa5a5-13b1-487e-b596-46dc41ccf526", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T11:30:48.479Z", + "completed":"2017-02-05T11:30:48.479Z", + "new_balance":"3687.18", + "value":"-0.67" + } + }, + { + "id":"8d6cda0c-f4d6-4c2a-b85e-54f27fbfaac7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T06:26:31.688Z", + "completed":"2017-02-06T06:26:31.688Z", + "new_balance":"3684.99", + "value":"-2.19" + } + }, + { + "id":"9fb836ad-5739-49e2-a2a9-3c33b6bb9630", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T01:45:51.245Z", + "completed":"2017-02-07T01:45:51.245Z", + "new_balance":"3677.29", + "value":"-7.70" + } + }, + { + "id":"3c4329f4-5986-45ab-8b55-f6cf080cd615", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T11:11:14.083Z", + "completed":"2017-02-07T11:11:14.083Z", + "new_balance":"3674.98", + "value":"-2.31" + } + }, + { + "id":"03083974-1f51-43f0-a993-a5ab071577ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T20:27:47.338Z", + "completed":"2017-02-07T20:27:47.338Z", + "new_balance":"3670.41", + "value":"-4.57" + } + }, + { + "id":"505ca8f3-9358-4e57-8df3-6da14792c853", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T02:47:05.101Z", + "completed":"2017-02-08T02:47:05.101Z", + "new_balance":"3666.27", + "value":"-4.14" + } + }, + { + "id":"8d25428d-d369-4822-9ad2-f3a725f2cac6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T11:56:41.438Z", + "completed":"2017-02-09T11:56:41.438Z", + "new_balance":"3663.87", + "value":"-2.40" + } + }, + { + "id":"2a117430-bc1c-4bbe-89d2-6cb20419cd57", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T19:28:58.435Z", + "completed":"2017-02-10T19:28:58.435Z", + "new_balance":"3663.35", + "value":"-0.52" + } + }, + { + "id":"e0df98ae-5d36-49b8-9540-33020d2e3ee1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T09:21:48.559Z", + "completed":"2017-02-12T09:21:48.559Z", + "new_balance":"3660.47", + "value":"-2.88" + } + }, + { + "id":"8c924b39-7421-4053-8591-ca0f8a104cff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T20:43:08.013Z", + "completed":"2017-02-14T20:43:08.013Z", + "new_balance":"3658.16", + "value":"-2.31" + } + }, + { + "id":"75fd1082-b3b3-4fe7-a724-5c8aa9696245", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T04:36:01.407Z", + "completed":"2017-02-16T04:36:01.407Z", + "new_balance":"3657.69", + "value":"-0.47" + } + }, + { + "id":"0a50fda4-9e4a-43d8-b2a0-a3f6fe2be81f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T09:20:46.194Z", + "completed":"2017-02-16T09:20:46.194Z", + "new_balance":"3653.08", + "value":"-4.61" + } + }, + { + "id":"054ffbb8-15f0-41ac-8d00-c667545af476", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T04:53:53.576Z", + "completed":"2017-02-18T04:53:53.576Z", + "new_balance":"3652.49", + "value":"-0.59" + } + }, + { + "id":"4d69edbc-3e36-4d00-9335-346a17b0018b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T05:06:16.509Z", + "completed":"2017-02-21T05:06:16.509Z", + "new_balance":"3648.77", + "value":"-3.72" + } + }, + { + "id":"6917be55-8e9c-465c-910e-35c3caae7f2d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T11:28:38.151Z", + "completed":"2017-02-21T11:28:38.151Z", + "new_balance":"3660.17", + "value":"11.40" + } + }, + { + "id":"9b77a198-4f21-4818-8eed-f9b74374b1b5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T17:46:26.751Z", + "completed":"2017-02-27T17:46:26.751Z", + "new_balance":"3637.81", + "value":"-22.36" + } + }, + { + "id":"1ac2a5be-f90b-454d-9e4a-553337b39c82", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T13:41:39.607Z", + "completed":"2017-03-01T13:41:39.607Z", + "new_balance":"3778.79", + "value":"140.98" + } + }, + { + "id":"36f4bdc8-becb-4c2e-ac64-0517cfe61322", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T16:55:21.097Z", + "completed":"2017-03-03T16:55:21.097Z", + "new_balance":"3747.07", + "value":"-31.72" + } + }, + { + "id":"d0be4554-bc00-4f28-85a4-7978ef3d480d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T01:16:10.411Z", + "completed":"2017-03-04T01:16:10.411Z", + "new_balance":"3742.46", + "value":"-4.61" + } + }, + { + "id":"2e89f768-25e8-47b1-98b4-828ee3cde4e8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T07:08:12.914Z", + "completed":"2017-03-04T07:08:12.914Z", + "new_balance":"3739.00", + "value":"-3.46" + } + }, + { + "id":"b0d6e1f7-080c-41a9-b9ce-3732e3462ca7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T09:24:21.868Z", + "completed":"2017-03-04T09:24:21.868Z", + "new_balance":"3736.95", + "value":"-2.05" + } + }, + { + "id":"d449606d-094a-4fad-b162-b357cd044afa", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T14:19:23.059Z", + "completed":"2017-03-04T14:19:23.059Z", + "new_balance":"3733.65", + "value":"-3.30" + } + }, + { + "id":"d56f9150-b77a-4206-a938-f24bacd65073", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T00:57:30.562Z", + "completed":"2017-03-05T00:57:30.562Z", + "new_balance":"3733.18", + "value":"-0.47" + } + }, + { + "id":"d8a6e17b-dfc7-41a9-af89-4915e10871da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T07:02:17.902Z", + "completed":"2017-03-05T07:02:17.902Z", + "new_balance":"3725.48", + "value":"-7.70" + } + }, + { + "id":"3dad7b4d-8944-4bff-9817-8bae9205ee9f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T11:08:16.670Z", + "completed":"2017-03-05T11:08:16.670Z", + "new_balance":"3718.73", + "value":"-6.75" + } + }, + { + "id":"89aadb56-920c-49d9-a38b-076170d659ad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T19:43:18.688Z", + "completed":"2017-03-05T19:43:18.688Z", + "new_balance":"3717.43", + "value":"-1.30" + } + }, + { + "id":"968646f8-8405-41ea-8edd-06b1e69513c8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T14:03:58.761Z", + "completed":"2017-03-06T14:03:58.761Z", + "new_balance":"3709.69", + "value":"-7.74" + } + }, + { + "id":"0e318d2e-bf79-4a61-9bb2-524166ef0a97", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T15:46:03.396Z", + "completed":"2017-03-06T15:46:03.396Z", + "new_balance":"3703.05", + "value":"-6.64" + } + }, + { + "id":"72655b4e-8e93-4e32-80e6-1b00ecdaacad", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T10:12:07.315Z", + "completed":"2017-03-07T10:12:07.315Z", + "new_balance":"3702.25", + "value":"-0.80" + } + }, + { + "id":"31fa9c90-8233-4e3f-b17c-bf7194e50761", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T13:07:52.339Z", + "completed":"2017-03-07T13:07:52.339Z", + "new_balance":"3701.78", + "value":"-0.47" + } + }, + { + "id":"b5fa9e92-36ed-4f8c-a003-ee6fc884c3cf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T05:18:45.490Z", + "completed":"2017-03-08T05:18:45.490Z", + "new_balance":"3700.98", + "value":"-0.80" + } + }, + { + "id":"c287bdac-18a3-441c-a8d5-06f98be5cc7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T08:53:04.808Z", + "completed":"2017-03-08T08:53:04.808Z", + "new_balance":"3700.21", + "value":"-0.77" + } + }, + { + "id":"348f6f8f-c715-446b-8c5c-7c0803e9aecd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T16:39:11.335Z", + "completed":"2017-03-10T16:39:11.335Z", + "new_balance":"3697.50", + "value":"-2.71" + } + }, + { + "id":"ab891c7d-e456-431b-832a-6648f23bc4f2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T16:01:33.713Z", + "completed":"2017-03-11T16:01:33.713Z", + "new_balance":"3697.03", + "value":"-0.47" + } + }, + { + "id":"6ba4c7eb-d3dc-4116-9a99-eefa4c113f50", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T17:47:11.418Z", + "completed":"2017-03-11T17:47:11.418Z", + "new_balance":"3694.31", + "value":"-2.72" + } + }, + { + "id":"e56f1eef-382a-45f7-92fd-6c4c6107cedf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T19:47:30.827Z", + "completed":"2017-03-11T19:47:30.827Z", + "new_balance":"3692.71", + "value":"-1.60" + } + }, + { + "id":"436f1f73-2040-44fb-978f-754639db5269", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T03:10:53.540Z", + "completed":"2017-03-12T03:10:53.540Z", + "new_balance":"3686.55", + "value":"-6.16" + } + }, + { + "id":"30b285da-cd90-48a9-91fb-9631933ac3e0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:18:07.068Z", + "completed":"2017-03-12T03:18:07.068Z", + "new_balance":"3683.96", + "value":"-2.59" + } + }, + { + "id":"3a7b342a-7392-4694-9ca0-e992ac46d5b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T07:54:45.275Z", + "completed":"2017-03-12T07:54:45.275Z", + "new_balance":"3683.49", + "value":"-0.47" + } + }, + { + "id":"5041c50a-5041-4df2-8458-4ba157e56e67", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T11:48:32.768Z", + "completed":"2017-03-12T11:48:32.768Z", + "new_balance":"3673.34", + "value":"-10.15" + } + }, + { + "id":"0d258dad-1624-42c9-9007-f748f9234dab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T13:56:00.416Z", + "completed":"2017-03-13T13:56:00.416Z", + "new_balance":"3670.76", + "value":"-2.58" + } + }, + { + "id":"323a89c7-e182-42c1-99b1-bed65be77ac6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T18:27:22.985Z", + "completed":"2017-03-13T18:27:22.985Z", + "new_balance":"3670.29", + "value":"-0.47" + } + }, + { + "id":"c767939a-bc8d-4394-990c-1e51ce4b9d44", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T11:39:18.184Z", + "completed":"2017-03-15T11:39:18.184Z", + "new_balance":"3666.17", + "value":"-4.12" + } + }, + { + "id":"4a3c3641-8d43-4a07-9c72-56781e8df69c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T11:55:36.929Z", + "completed":"2017-03-15T11:55:36.929Z", + "new_balance":"3661.25", + "value":"-4.92" + } + }, + { + "id":"208ff012-b88e-4f9d-a084-a19516b9d3f5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T10:20:08.409Z", + "completed":"2017-03-17T10:20:08.409Z", + "new_balance":"3656.86", + "value":"-4.39" + } + }, + { + "id":"bd9bf86c-c7d8-4b23-9456-6720a592951d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T10:00:02.122Z", + "completed":"2017-03-18T10:00:02.122Z", + "new_balance":"3647.25", + "value":"-9.61" + } + }, + { + "id":"2b25d09b-7583-465b-949b-cd363c16810b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T02:26:29.966Z", + "completed":"2017-03-20T02:26:29.966Z", + "new_balance":"3634.89", + "value":"-12.36" + } + }, + { + "id":"bf7a7baa-6437-4e5f-975a-fac7ba4920ef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T04:32:00.530Z", + "completed":"2017-03-22T04:32:00.530Z", + "new_balance":"3631.42", + "value":"-3.47" + } + }, + { + "id":"7b219425-be2d-44c3-b71f-f2b5fb5018d2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T09:06:15.231Z", + "completed":"2017-03-25T09:06:15.231Z", + "new_balance":"3630.95", + "value":"-0.47" + } + }, + { + "id":"54aabe51-c0cf-4c97-888c-ecd007b4d7be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T16:28:59.174Z", + "completed":"2017-03-25T16:28:59.174Z", + "new_balance":"3629.80", + "value":"-1.15" + } + }, + { + "id":"732174b2-c881-4133-8e76-0833579e0467", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T05:51:55.878Z", + "completed":"2017-03-26T05:51:55.878Z", + "new_balance":"3628.45", + "value":"-1.35" + } + }, + { + "id":"ab5246f5-da58-4c26-b116-00b4aaea7639", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T08:06:13.189Z", + "completed":"2017-03-26T08:06:13.189Z", + "new_balance":"3626.06", + "value":"-2.39" + } + }, + { + "id":"9bf984b5-ccd2-4485-a13e-82e1d05b5147", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T02:54:36.792Z", + "completed":"2017-03-27T02:54:36.792Z", + "new_balance":"3624.86", + "value":"-1.20" + } + }, + { + "id":"c614eb48-279d-4f59-b90f-10ccac6636a9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T08:44:50.450Z", + "completed":"2017-03-28T08:44:50.450Z", + "new_balance":"3621.14", + "value":"-3.72" + } + }, + { + "id":"ececc51d-aeb5-4106-9cd1-727aaad6bc5b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T19:29:37.734Z", + "completed":"2017-03-31T19:29:37.734Z", + "new_balance":"3598.78", + "value":"-22.36" + } + }, + { + "id":"111f00e8-acda-4f88-a7b4-101883eb3903", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T14:29:34.179Z", + "completed":"2017-04-01T14:29:34.179Z", + "new_balance":"3739.76", + "value":"140.98" + } + }, + { + "id":"f20037f2-34f3-42de-a837-3b444ba1614d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T18:56:39.260Z", + "completed":"2017-04-01T18:56:39.260Z", + "new_balance":"3708.04", + "value":"-31.72" + } + }, + { + "id":"b3203a20-fb9e-4098-9a09-6e49e3ebf633", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T22:42:19.637Z", + "completed":"2017-04-01T22:42:19.637Z", + "new_balance":"3890.74", + "value":"182.70" + } + }, + { + "id":"1e021127-db87-4099-9f31-1231ccaefcfb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T01:32:09.165Z", + "completed":"2017-04-03T01:32:09.165Z", + "new_balance":"3890.07", + "value":"-0.67" + } + }, + { + "id":"d7ec5007-68d7-48e2-937e-a061f0ddf754", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T07:37:22.486Z", + "completed":"2017-04-03T07:37:22.486Z", + "new_balance":"3885.25", + "value":"-4.82" + } + }, + { + "id":"6713d2c6-435f-402c-9772-108cd0dd142d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T13:35:16.023Z", + "completed":"2017-04-03T13:35:16.023Z", + "new_balance":"3883.51", + "value":"-1.74" + } + }, + { + "id":"e2cbba87-6177-4fe3-8694-cc581834d071", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T08:07:46.538Z", + "completed":"2017-04-05T08:07:46.538Z", + "new_balance":"3882.11", + "value":"-1.40" + } + }, + { + "id":"74791acb-4028-4bee-9a8f-538967aedf71", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T15:56:36.939Z", + "completed":"2017-04-05T15:56:36.939Z", + "new_balance":"3881.59", + "value":"-0.52" + } + }, + { + "id":"8f300c08-a7ec-473b-884d-7e9dd9477bee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T23:03:24.120Z", + "completed":"2017-04-06T23:03:24.120Z", + "new_balance":"3879.99", + "value":"-1.60" + } + }, + { + "id":"60b02278-ee1e-4a1d-86d8-433ca6b74ecb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T22:39:22.685Z", + "completed":"2017-04-09T22:39:22.685Z", + "new_balance":"3877.40", + "value":"-2.59" + } + }, + { + "id":"b5357b2e-3b13-4cc3-af62-780d7c7c3a32", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T16:05:22.258Z", + "completed":"2017-04-10T16:05:22.258Z", + "new_balance":"3875.72", + "value":"-1.68" + } + }, + { + "id":"0621a524-745b-4b8c-b716-37013a4fe428", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T01:40:36.689Z", + "completed":"2017-04-11T01:40:36.689Z", + "new_balance":"3873.41", + "value":"-2.31" + } + }, + { + "id":"80375505-32d1-47f2-86d0-15d9a7ef5447", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T03:30:57.510Z", + "completed":"2017-04-11T03:30:57.510Z", + "new_balance":"3871.54", + "value":"-1.87" + } + }, + { + "id":"f9f2bfdf-85ff-45a7-81d5-5c7ec92e8501", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T00:05:55.337Z", + "completed":"2017-04-13T00:05:55.337Z", + "new_balance":"3865.41", + "value":"-6.13" + } + }, + { + "id":"6079901a-760e-404a-9b00-e1b69ed5ae98", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T23:36:27.052Z", + "completed":"2017-04-13T23:36:27.052Z", + "new_balance":"3857.71", + "value":"-7.70" + } + }, + { + "id":"f6a21d33-67a3-497c-8f3e-194879012cea", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T07:12:20.519Z", + "completed":"2017-04-15T07:12:20.519Z", + "new_balance":"3853.18", + "value":"-4.53" + } + }, + { + "id":"71a9b0d0-4792-4340-9204-e5ea26cb41be", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T03:44:23.705Z", + "completed":"2017-04-16T03:44:23.705Z", + "new_balance":"3852.37", + "value":"-0.81" + } + }, + { + "id":"e94dc9e0-21f5-48df-80c8-32c0a020b64a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T17:48:15.798Z", + "completed":"2017-04-16T17:48:15.798Z", + "new_balance":"3851.90", + "value":"-0.47" + } + }, + { + "id":"216a7292-537e-4bbe-b468-6ac5f21ead2b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T05:05:53.490Z", + "completed":"2017-04-18T05:05:53.490Z", + "new_balance":"3846.42", + "value":"-5.48" + } + }, + { + "id":"c019ea64-d05b-4907-af31-765d65e93a3f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T07:56:12.002Z", + "completed":"2017-04-23T07:56:12.002Z", + "new_balance":"3843.99", + "value":"-2.43" + } + }, + { + "id":"c0b848c6-ff13-4ec6-b0ba-d07bfea1250a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T01:39:59.701Z", + "completed":"2017-04-24T01:39:59.701Z", + "new_balance":"3840.69", + "value":"-3.30" + } + }, + { + "id":"ac7792bc-5532-47eb-bba4-19f4da2aadb2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T02:32:32.156Z", + "completed":"2017-04-24T02:32:32.156Z", + "new_balance":"3839.12", + "value":"-1.57" + } + }, + { + "id":"934335de-cb0c-4bae-a049-5c55ae656b1f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T12:45:48.868Z", + "completed":"2017-04-26T12:45:48.868Z", + "new_balance":"3838.60", + "value":"-0.52" + } + }, + { + "id":"b24254d0-d254-43c7-ba01-b7091fa445b2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T06:30:43.750Z", + "completed":"2017-04-28T06:30:43.750Z", + "new_balance":"3834.88", + "value":"-3.72" + } + }, + { + "id":"82707d6c-4dbd-4ad8-ba39-95302204d670", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T18:21:49.249Z", + "completed":"2017-04-28T18:21:49.249Z", + "new_balance":"3812.52", + "value":"-22.36" + } + }, + { + "id":"a06ed6ae-5e43-4a75-ae82-3a100ba84db8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T01:14:26.118Z", + "completed":"2017-05-02T01:14:26.118Z", + "new_balance":"3811.20", + "value":"-1.32" + } + }, + { + "id":"e3f11a91-30e4-48d2-bd4f-e9a30f6a2a2f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T08:06:47.178Z", + "completed":"2017-05-02T08:06:47.178Z", + "new_balance":"3810.53", + "value":"-0.67" + } + }, + { + "id":"340e0aa6-dfb1-4b9b-b58a-cb698000458b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T11:56:48.665Z", + "completed":"2017-05-02T11:56:48.665Z", + "new_balance":"3778.81", + "value":"-31.72" + } + }, + { + "id":"6703bab1-f20a-457f-ab68-ab6564efdf98", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T13:34:09.237Z", + "completed":"2017-05-02T13:34:09.237Z", + "new_balance":"3765.71", + "value":"-13.10" + } + }, + { + "id":"23e48d26-a937-46cf-8933-d5015225fcf4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T00:28:33.888Z", + "completed":"2017-05-06T00:28:33.888Z", + "new_balance":"3763.40", + "value":"-2.31" + } + }, + { + "id":"f95f2aab-003e-4303-966f-1c52a24c075c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T19:03:21.143Z", + "completed":"2017-05-06T19:03:21.143Z", + "new_balance":"3761.21", + "value":"-2.19" + } + }, + { + "id":"fbfd0937-ad76-4d01-8055-44285c86460e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T12:47:26.863Z", + "completed":"2017-05-07T12:47:26.863Z", + "new_balance":"3756.64", + "value":"-4.57" + } + }, + { + "id":"4b6f6360-c069-47c9-86fa-7783fd6da086", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T15:13:10.254Z", + "completed":"2017-05-07T15:13:10.254Z", + "new_balance":"3748.94", + "value":"-7.70" + } + }, + { + "id":"f3d57f91-f4a5-4b4a-b626-1117be93feaf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T14:10:59.317Z", + "completed":"2017-05-09T14:10:59.317Z", + "new_balance":"3889.92", + "value":"140.98" + } + }, + { + "id":"2a45f873-7857-4c93-84c6-749b5a116cdb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T02:51:15.080Z", + "completed":"2017-05-14T02:51:15.080Z", + "new_balance":"3885.78", + "value":"-4.14" + } + }, + { + "id":"e5c465ce-59b0-470a-b6af-d62d5f9ced6c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T15:03:48.583Z", + "completed":"2017-05-14T15:03:48.583Z", + "new_balance":"3883.38", + "value":"-2.40" + } + }, + { + "id":"9bf87d04-0f33-4466-a9fa-4b700cb79e0d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T20:44:36.651Z", + "completed":"2017-05-16T20:44:36.651Z", + "new_balance":"3882.86", + "value":"-0.52" + } + }, + { + "id":"1e781d21-6c00-4362-bd52-9b420413d94a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T21:04:38.018Z", + "completed":"2017-05-21T21:04:38.018Z", + "new_balance":"3879.98", + "value":"-2.88" + } + }, + { + "id":"1dd05b62-f740-4008-a131-46a4402243a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T08:34:51.131Z", + "completed":"2017-05-23T08:34:51.131Z", + "new_balance":"3877.67", + "value":"-2.31" + } + }, + { + "id":"559a1ba4-1f38-4a4b-b3b1-015e194c0f4e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T14:00:02.888Z", + "completed":"2017-05-23T14:00:02.888Z", + "new_balance":"3877.20", + "value":"-0.47" + } + }, + { + "id":"3428ace0-728d-49d6-953d-25f66d7f4a5f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T08:54:05.707Z", + "completed":"2017-05-24T08:54:05.707Z", + "new_balance":"3872.59", + "value":"-4.61" + } + }, + { + "id":"9ce0f99b-46d9-4376-8cc3-433ef1e1e450", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T08:53:34.169Z", + "completed":"2017-05-27T08:53:34.169Z", + "new_balance":"3872.00", + "value":"-0.59" + } + }, + { + "id":"f7d963d4-8e68-4693-9cf2-25643deaf0df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T07:28:59.469Z", + "completed":"2017-05-30T07:28:59.469Z", + "new_balance":"3849.64", + "value":"-22.36" + } + }, + { + "id":"ab7ee752-632b-403a-b547-19d26ade005a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T17:50:56.269Z", + "completed":"2017-05-30T17:50:56.269Z", + "new_balance":"3845.92", + "value":"-3.72" + } + }, + { + "id":"b2ffb130-72f4-4313-b78a-792d51903891", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T18:41:59.996Z", + "completed":"2017-06-01T18:41:59.996Z", + "new_balance":"3814.20", + "value":"-31.72" + } + }, + { + "id":"710ee4c8-76cb-46bf-a138-79b67bbef6dc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T22:21:00.377Z", + "completed":"2017-06-01T22:21:00.377Z", + "new_balance":"3955.18", + "value":"140.98" + } + }, + { + "id":"1396b467-a8ba-4a41-bfbb-d09a103701bf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T01:44:13.749Z", + "completed":"2017-06-04T01:44:13.749Z", + "new_balance":"3951.72", + "value":"-3.46" + } + }, + { + "id":"99e0ba89-a1d4-4833-81b3-7d55fe3c3b7c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T15:45:01.290Z", + "completed":"2017-06-04T15:45:01.290Z", + "new_balance":"3949.67", + "value":"-2.05" + } + }, + { + "id":"4f41a261-910b-4a2f-892d-2734459fa682", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T06:45:05.128Z", + "completed":"2017-06-11T06:45:05.128Z", + "new_balance":"3945.06", + "value":"-4.61" + } + }, + { + "id":"f6ba7501-5bdf-424a-8811-6494c1143799", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T20:42:30.662Z", + "completed":"2017-06-11T20:42:30.662Z", + "new_balance":"3941.76", + "value":"-3.30" + } + }, + { + "id":"9ad59b98-1ddc-4722-96cc-b39f03002d37", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T06:22:55.277Z", + "completed":"2017-06-12T06:22:55.277Z", + "new_balance":"3940.46", + "value":"-1.30" + } + }, + { + "id":"8cd3da7d-bed9-4511-95e8-459ea83fa859", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T16:03:55.472Z", + "completed":"2017-06-12T16:03:55.472Z", + "new_balance":"3932.76", + "value":"-7.70" + } + }, + { + "id":"6a0efe6c-af02-4028-8770-7b1b6fa1c52e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T17:41:17.760Z", + "completed":"2017-06-12T17:41:17.760Z", + "new_balance":"3932.29", + "value":"-0.47" + } + }, + { + "id":"f26db9ca-ccc5-46ee-a979-d903d40d55d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T02:29:55.281Z", + "completed":"2017-06-13T02:29:55.281Z", + "new_balance":"3925.65", + "value":"-6.64" + } + }, + { + "id":"c7869e4c-5d30-4dd6-a124-9e239762bfb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T14:42:27.800Z", + "completed":"2017-06-13T14:42:27.800Z", + "new_balance":"3917.91", + "value":"-7.74" + } + }, + { + "id":"f303c066-92c4-4380-87ca-d6d88a8d91b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T16:04:32.862Z", + "completed":"2017-06-13T16:04:32.862Z", + "new_balance":"3911.16", + "value":"-6.75" + } + }, + { + "id":"05a9099b-64a6-4922-b3f7-9a5930557f15", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T02:09:00.049Z", + "completed":"2017-06-14T02:09:00.049Z", + "new_balance":"3910.69", + "value":"-0.47" + } + }, + { + "id":"0e0420af-54ef-487d-afb9-0a695fb8952b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T16:24:26.430Z", + "completed":"2017-06-14T16:24:26.430Z", + "new_balance":"3909.89", + "value":"-0.80" + } + }, + { + "id":"c7fcb7e6-252c-4304-8544-bb820b2b95ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T19:07:04.323Z", + "completed":"2017-06-14T19:07:04.323Z", + "new_balance":"3909.09", + "value":"-0.80" + } + }, + { + "id":"9bc28b18-7d10-45a4-9120-15e7ae67e770", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T11:27:52.446Z", + "completed":"2017-06-15T11:27:52.446Z", + "new_balance":"3906.38", + "value":"-2.71" + } + }, + { + "id":"2dc5fafe-43e1-4a21-b614-889c7cd6f41f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T14:04:18.001Z", + "completed":"2017-06-15T14:04:18.001Z", + "new_balance":"3905.91", + "value":"-0.47" + } + }, + { + "id":"b82117e9-1be1-4683-984a-c64b37b8b1e1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T14:57:42.742Z", + "completed":"2017-06-15T14:57:42.742Z", + "new_balance":"3905.14", + "value":"-0.77" + } + }, + { + "id":"b59ef453-e308-4bee-bcc3-3ef997815917", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T05:59:45.088Z", + "completed":"2017-06-16T05:59:45.088Z", + "new_balance":"3902.42", + "value":"-2.72" + } + }, + { + "id":"e50d98e7-9e46-4776-b7b5-110b16a87e43", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T22:43:07.723Z", + "completed":"2017-06-17T22:43:07.723Z", + "new_balance":"3900.82", + "value":"-1.60" + } + }, + { + "id":"c7617f4a-f42c-4c33-9f56-2340ceb33b26", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T04:13:41.488Z", + "completed":"2017-06-18T04:13:41.488Z", + "new_balance":"3898.23", + "value":"-2.59" + } + }, + { + "id":"df2aa5b5-1ca3-4576-98bd-2e2ae84f0b3d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T04:18:43.174Z", + "completed":"2017-06-18T04:18:43.174Z", + "new_balance":"3895.65", + "value":"-2.58" + } + }, + { + "id":"aa633c3c-4c5b-4f03-88b5-d3a964221f29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T04:45:26.315Z", + "completed":"2017-06-18T04:45:26.315Z", + "new_balance":"3885.50", + "value":"-10.15" + } + }, + { + "id":"40d20825-a496-42f9-8bfc-c3ed099c97a4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T11:33:10.078Z", + "completed":"2017-06-18T11:33:10.078Z", + "new_balance":"3885.03", + "value":"-0.47" + } + }, + { + "id":"f15656aa-2261-48d5-934e-75c834551360", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T17:57:25.198Z", + "completed":"2017-06-18T17:57:25.198Z", + "new_balance":"3884.56", + "value":"-0.47" + } + }, + { + "id":"a81508fb-0805-4fd4-aca8-f64a7ff3a5df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T22:47:07.470Z", + "completed":"2017-06-18T22:47:07.470Z", + "new_balance":"3878.40", + "value":"-6.16" + } + }, + { + "id":"f5ea2eb8-862e-463c-9c4d-4dc03f8cacab", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:30:22.091Z", + "completed":"2017-06-19T00:30:22.091Z", + "new_balance":"3873.48", + "value":"-4.92" + } + }, + { + "id":"3ad23742-bcb0-4b01-9e53-abaa535e9132", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T06:22:15.587Z", + "completed":"2017-06-19T06:22:15.587Z", + "new_balance":"3869.36", + "value":"-4.12" + } + }, + { + "id":"72cc99cf-e58b-4cbb-89f7-d333aea86e70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:49:36.694Z", + "completed":"2017-06-19T06:49:36.694Z", + "new_balance":"3864.97", + "value":"-4.39" + } + }, + { + "id":"c94ff66c-513b-4bc6-9d59-b234935cdeb2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T12:49:37.748Z", + "completed":"2017-06-21T12:49:37.748Z", + "new_balance":"3852.61", + "value":"-12.36" + } + }, + { + "id":"19dbba97-a2e7-45e0-9e30-e2517d273d96", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T15:24:13.795Z", + "completed":"2017-06-21T15:24:13.795Z", + "new_balance":"3843.00", + "value":"-9.61" + } + }, + { + "id":"4cc728d4-5324-4e61-9b77-ad01da92c111", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T08:46:47.309Z", + "completed":"2017-06-22T08:46:47.309Z", + "new_balance":"3841.85", + "value":"-1.15" + } + }, + { + "id":"08bd9627-a577-4e02-8a12-101f9a260224", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T10:42:03.810Z", + "completed":"2017-06-22T10:42:03.810Z", + "new_balance":"3838.38", + "value":"-3.47" + } + }, + { + "id":"21f8a983-3f58-4755-b949-0eb53a84e6ca", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T13:17:57.088Z", + "completed":"2017-06-22T13:17:57.088Z", + "new_balance":"3837.91", + "value":"-0.47" + } + }, + { + "id":"a22813a1-8c8b-4876-bc3f-e4d41c84a254", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T11:01:21.041Z", + "completed":"2017-06-23T11:01:21.041Z", + "new_balance":"3836.56", + "value":"-1.35" + } + }, + { + "id":"2a5e9971-dbe4-41f2-8b62-5165e6b8d1c5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T05:43:15.251Z", + "completed":"2017-06-24T05:43:15.251Z", + "new_balance":"3834.17", + "value":"-2.39" + } + }, + { + "id":"c1afe9cb-0be3-4b31-8623-9a03b1e27f4a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T01:59:16.908Z", + "completed":"2017-06-26T01:59:16.908Z", + "new_balance":"3832.97", + "value":"-1.20" + } + }, + { + "id":"1f69fd3c-de1e-4544-b76f-f2296efdd423", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T15:48:51.019Z", + "completed":"2017-06-30T15:48:51.019Z", + "new_balance":"3829.25", + "value":"-3.72" + } + }, + { + "id":"fac25591-8ac4-4792-bfff-2a6cb13b1603", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T22:27:45.554Z", + "completed":"2017-06-30T22:27:45.554Z", + "new_balance":"3806.89", + "value":"-22.36" + } + }, + { + "id":"b6f69536-9dae-4950-ac43-858c64c60782", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:58:30.004Z", + "completed":"2017-07-01T09:58:30.004Z", + "new_balance":"3947.87", + "value":"140.98" + } + }, + { + "id":"ee0ba7d0-e872-40eb-8da1-e476902671f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T16:36:58.721Z", + "completed":"2017-07-01T16:36:58.721Z", + "new_balance":"4130.57", + "value":"182.70" + } + }, + { + "id":"b5180800-2df1-462e-9961-57dde8076a33", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T15:27:44.676Z", + "completed":"2017-07-03T15:27:44.676Z", + "new_balance":"4098.85", + "value":"-31.72" + } + }, + { + "id":"d9592ab7-4697-4157-9e3f-8b3ad196d5cb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T05:18:36.328Z", + "completed":"2017-07-04T05:18:36.328Z", + "new_balance":"4094.03", + "value":"-4.82" + } + }, + { + "id":"06b96f6e-9441-4794-848e-c9d7d684114b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T13:48:20.296Z", + "completed":"2017-07-04T13:48:20.296Z", + "new_balance":"4093.36", + "value":"-0.67" + } + }, + { + "id":"5000fca4-d19c-4f45-836d-7319dc34342a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T23:05:45.470Z", + "completed":"2017-07-04T23:05:45.470Z", + "new_balance":"4091.62", + "value":"-1.74" + } + }, + { + "id":"d027df2b-eac1-4e44-9524-0af20cfdc42d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T13:55:32.100Z", + "completed":"2017-07-05T13:55:32.100Z", + "new_balance":"4090.22", + "value":"-1.40" + } + }, + { + "id":"709f413c-5469-47e7-8539-d5e44902e37c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T07:44:46.675Z", + "completed":"2017-07-07T07:44:46.675Z", + "new_balance":"4089.70", + "value":"-0.52" + } + }, + { + "id":"a84d258a-6017-464d-b46b-940e798bf5af", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T00:45:44.435Z", + "completed":"2017-07-11T00:45:44.435Z", + "new_balance":"4087.39", + "value":"-2.31" + } + }, + { + "id":"d54a9cbf-1138-4283-9e3d-b5ebadb032f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T06:25:57.231Z", + "completed":"2017-07-11T06:25:57.231Z", + "new_balance":"4085.71", + "value":"-1.68" + } + }, + { + "id":"7c690dc7-9565-4459-b2f0-30a50fdaaa32", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T08:47:40.211Z", + "completed":"2017-07-11T08:47:40.211Z", + "new_balance":"4083.84", + "value":"-1.87" + } + }, + { + "id":"97afc61b-6e9e-40d0-88e6-47624561ac06", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T14:52:52.406Z", + "completed":"2017-07-11T14:52:52.406Z", + "new_balance":"4081.25", + "value":"-2.59" + } + }, + { + "id":"27c0d30d-57fa-42ff-a1a9-a313a8158b07", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T15:08:19.645Z", + "completed":"2017-07-11T15:08:19.645Z", + "new_balance":"4079.65", + "value":"-1.60" + } + }, + { + "id":"6c395c9d-073d-4d5e-9970-31427c22d3f6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T04:10:39.842Z", + "completed":"2017-07-13T04:10:39.842Z", + "new_balance":"4073.52", + "value":"-6.13" + } + }, + { + "id":"c7be6520-df4e-4b05-8123-12d208bbf306", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T13:22:41.504Z", + "completed":"2017-07-13T13:22:41.504Z", + "new_balance":"4065.82", + "value":"-7.70" + } + }, + { + "id":"36074e4f-ae1c-48d2-9aac-be7b4dea2c80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T02:32:11.217Z", + "completed":"2017-07-16T02:32:11.217Z", + "new_balance":"4061.29", + "value":"-4.53" + } + }, + { + "id":"6cf87016-cc6e-4345-ae83-3a3a8fa62ec9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T21:48:15.770Z", + "completed":"2017-07-16T21:48:15.770Z", + "new_balance":"4070.28", + "value":"8.99" + } + }, + { + "id":"dd0c00a1-8b9c-4aec-8ff8-02be93bc764e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T14:37:07.971Z", + "completed":"2017-07-17T14:37:07.971Z", + "new_balance":"4069.81", + "value":"-0.47" + } + }, + { + "id":"00ab7df2-eb0d-480a-a2d5-759958011462", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T22:04:35.889Z", + "completed":"2017-07-17T22:04:35.889Z", + "new_balance":"4069.00", + "value":"-0.81" + } + }, + { + "id":"08daee98-a0e1-4b82-b9fa-b28eea4a9bc3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T04:49:08.196Z", + "completed":"2017-07-19T04:49:08.196Z", + "new_balance":"4063.52", + "value":"-5.48" + } + }, + { + "id":"5f63b0ae-acb3-4242-a43e-59c10a5b6f99", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T13:14:35.181Z", + "completed":"2017-07-21T13:14:35.181Z", + "new_balance":"4061.09", + "value":"-2.43" + } + }, + { + "id":"615ce896-3d63-45b2-8fe4-1da129170d01", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T18:18:42.532Z", + "completed":"2017-07-23T18:18:42.532Z", + "new_balance":"4057.79", + "value":"-3.30" + } + }, + { + "id":"0bc37f8f-c06a-41a3-b9f1-6e2e0b1a5473", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T11:09:09.239Z", + "completed":"2017-07-25T11:09:09.239Z", + "new_balance":"4056.22", + "value":"-1.57" + } + }, + { + "id":"f26c7803-699c-44cc-a4bd-0c46676e0938", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T10:43:21.676Z", + "completed":"2017-07-27T10:43:21.676Z", + "new_balance":"4055.70", + "value":"-0.52" + } + }, + { + "id":"a8929f60-8f93-47fb-8278-0d1cf87a5607", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T03:37:19.065Z", + "completed":"2017-07-28T03:37:19.065Z", + "new_balance":"4051.98", + "value":"-3.72" + } + }, + { + "id":"8e49f5ff-4649-4eb0-893f-ce0376f1e473", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T07:40:04.959Z", + "completed":"2017-07-28T07:40:04.959Z", + "new_balance":"4029.62", + "value":"-22.36" + } + }, + { + "id":"bcb76f47-e55e-4bd7-a4a9-6558e9e30020", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T18:34:54.717Z", + "completed":"2017-08-01T18:34:54.717Z", + "new_balance":"4170.60", + "value":"140.98" + } + }, + { + "id":"67270f8e-ce88-403a-938c-c4b636af138b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T12:22:21.875Z", + "completed":"2017-08-03T12:22:21.875Z", + "new_balance":"4138.88", + "value":"-31.72" + } + }, + { + "id":"b95d59f2-e05c-4d7c-ab8c-1b70c4fe1cf1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T17:21:32.915Z", + "completed":"2017-08-03T17:21:32.915Z", + "new_balance":"4125.78", + "value":"-13.10" + } + }, + { + "id":"e6869fa4-9a51-4c4d-87e3-b72a1f7baa6e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T13:43:24.093Z", + "completed":"2017-08-04T13:43:24.093Z", + "new_balance":"4124.46", + "value":"-1.32" + } + }, + { + "id":"e34a5ac5-055e-499c-b841-b0c49cd9af3a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T02:33:57.589Z", + "completed":"2017-08-07T02:33:57.589Z", + "new_balance":"4122.27", + "value":"-2.19" + } + }, + { + "id":"ceb0e9c2-e821-4676-b70d-4e41efd8c0ff", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:53:15.726Z", + "completed":"2017-08-07T09:53:15.726Z", + "new_balance":"4119.96", + "value":"-2.31" + } + }, + { + "id":"44775d67-c7ea-428f-b966-ac0555248d50", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T19:43:46.729Z", + "completed":"2017-08-07T19:43:46.729Z", + "new_balance":"4119.29", + "value":"-0.67" + } + }, + { + "id":"7920d02b-5ea6-4d2c-9b62-0c19a2f50802", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T03:04:09.763Z", + "completed":"2017-08-08T03:04:09.763Z", + "new_balance":"4111.59", + "value":"-7.70" + } + }, + { + "id":"f746fc8b-ea2e-4719-b030-3e9e8ac3f69e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T13:25:55.593Z", + "completed":"2017-08-08T13:25:55.593Z", + "new_balance":"4107.02", + "value":"-4.57" + } + }, + { + "id":"17455092-df06-419a-90f3-7faac686f99c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T21:03:08.820Z", + "completed":"2017-08-08T21:03:08.820Z", + "new_balance":"4102.88", + "value":"-4.14" + } + }, + { + "id":"f5d3576a-0288-4da7-a9bf-e6cfa36e526f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T20:54:09.623Z", + "completed":"2017-08-09T20:54:09.623Z", + "new_balance":"4100.48", + "value":"-2.40" + } + }, + { + "id":"095c49fd-8b95-4b07-b32b-511a035c81c3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T20:12:10.116Z", + "completed":"2017-08-11T20:12:10.116Z", + "new_balance":"4099.96", + "value":"-0.52" + } + }, + { + "id":"1d9a1cae-ec66-49ef-87ba-e6e6a0e4f255", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T02:11:53.387Z", + "completed":"2017-08-14T02:11:53.387Z", + "new_balance":"4097.08", + "value":"-2.88" + } + }, + { + "id":"0bec6fb1-3859-4cad-b8f1-e15b0df25c0e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T11:17:24.443Z", + "completed":"2017-08-15T11:17:24.443Z", + "new_balance":"4094.77", + "value":"-2.31" + } + }, + { + "id":"213721b7-345e-4cde-b79b-d6e5d4c8b735", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T06:49:14.056Z", + "completed":"2017-08-17T06:49:14.056Z", + "new_balance":"4090.16", + "value":"-4.61" + } + }, + { + "id":"3aa1be54-9072-4bc2-b668-bbe1634ef7b1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T12:29:05.949Z", + "completed":"2017-08-17T12:29:05.949Z", + "new_balance":"4089.69", + "value":"-0.47" + } + }, + { + "id":"ff30c977-c507-4d8f-8e76-b9e92e4a987e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T13:29:44.599Z", + "completed":"2017-08-19T13:29:44.599Z", + "new_balance":"4089.10", + "value":"-0.59" + } + }, + { + "id":"b2409c8d-8559-49ee-8b03-6a10aeac933a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T23:45:00.839Z", + "completed":"2017-08-25T23:45:00.839Z", + "new_balance":"4100.50", + "value":"11.40" + } + }, + { + "id":"ba8d34c5-b4ab-4668-ac23-f41572cdfc77", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T11:09:04.802Z", + "completed":"2017-08-28T11:09:04.802Z", + "new_balance":"4096.78", + "value":"-3.72" + } + }, + { + "id":"87befb63-782d-4f5a-973a-2d424d7f4f85", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T23:25:28.043Z", + "completed":"2017-08-28T23:25:28.043Z", + "new_balance":"4074.42", + "value":"-22.36" + } + }, + { + "id":"d07de6e4-c18d-4839-bb40-6a336ada6557", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T08:25:56.778Z", + "completed":"2017-09-01T08:25:56.778Z", + "new_balance":"4215.40", + "value":"140.98" + } + }, + { + "id":"7611fadf-aa44-4ea1-bf08-ed75abf6c0dc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T00:09:54.276Z", + "completed":"2017-09-03T00:09:54.276Z", + "new_balance":"4183.68", + "value":"-31.72" + } + }, + { + "id":"5b239081-ddd2-4dbf-bb0a-6dc36fbe59d0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T13:07:49.954Z", + "completed":"2017-09-04T13:07:49.954Z", + "new_balance":"4181.63", + "value":"-2.05" + } + }, + { + "id":"8930dce4-8b1a-41ae-8f9f-00a69241606d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T19:37:03.129Z", + "completed":"2017-09-04T19:37:03.129Z", + "new_balance":"4178.17", + "value":"-3.46" + } + }, + { + "id":"b612b9e6-b2b2-4df0-80f8-46e0957cab7d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T19:51:39.409Z", + "completed":"2017-09-04T19:51:39.409Z", + "new_balance":"4174.87", + "value":"-3.30" + } + }, + { + "id":"a38f51bb-3392-41d5-a5ea-9e868b256fa8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T20:42:54.530Z", + "completed":"2017-09-04T20:42:54.530Z", + "new_balance":"4170.26", + "value":"-4.61" + } + }, + { + "id":"d2f56788-367c-4dcc-a86a-c2e6300c846b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T03:20:42.429Z", + "completed":"2017-09-05T03:20:42.429Z", + "new_balance":"4169.79", + "value":"-0.47" + } + }, + { + "id":"5fb37231-e1e2-4bfc-94fc-06d1545bd3b3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T07:37:13.347Z", + "completed":"2017-09-05T07:37:13.347Z", + "new_balance":"4168.49", + "value":"-1.30" + } + }, + { + "id":"cd77db96-e229-4932-9ebf-a0b2bd19a3df", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T11:00:09.092Z", + "completed":"2017-09-05T11:00:09.092Z", + "new_balance":"4160.75", + "value":"-7.74" + } + }, + { + "id":"6b6f16b2-864a-4d22-ab81-f2a75b21cfc0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T11:25:05.513Z", + "completed":"2017-09-05T11:25:05.513Z", + "new_balance":"4154.00", + "value":"-6.75" + } + }, + { + "id":"e19c0661-9905-401c-a41f-75a80661dab2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T12:37:42.490Z", + "completed":"2017-09-05T12:37:42.490Z", + "new_balance":"4146.30", + "value":"-7.70" + } + }, + { + "id":"8977b3cb-5776-4d3b-80a9-450c7ad186c9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T18:53:39.603Z", + "completed":"2017-09-05T18:53:39.603Z", + "new_balance":"4139.66", + "value":"-6.64" + } + }, + { + "id":"80e41631-6085-46a3-935b-d9d34fb22810", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T06:30:43.751Z", + "completed":"2017-09-07T06:30:43.751Z", + "new_balance":"4138.86", + "value":"-0.80" + } + }, + { + "id":"88e80eb2-a2d9-4f2b-b9fd-73ce317428c1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T08:42:07.170Z", + "completed":"2017-09-07T08:42:07.170Z", + "new_balance":"4138.39", + "value":"-0.47" + } + }, + { + "id":"38af390b-1382-4a86-8836-5c1684225952", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T15:16:15.280Z", + "completed":"2017-09-07T15:16:15.280Z", + "new_balance":"4137.59", + "value":"-0.80" + } + }, + { + "id":"18afb587-7200-48cf-aadd-9155b0f719f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T19:46:08.868Z", + "completed":"2017-09-07T19:46:08.868Z", + "new_balance":"4136.82", + "value":"-0.77" + } + }, + { + "id":"09a2defb-dc88-4eb2-b31b-959feeb6e468", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T04:54:42.540Z", + "completed":"2017-09-10T04:54:42.540Z", + "new_balance":"4134.11", + "value":"-2.71" + } + }, + { + "id":"0c2e59d2-5bd2-43cd-84ff-5ed8084c4690", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T06:41:26.446Z", + "completed":"2017-09-11T06:41:26.446Z", + "new_balance":"4132.51", + "value":"-1.60" + } + }, + { + "id":"88e1c1a9-7397-40fe-b593-2b8816a7975d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T08:22:48.998Z", + "completed":"2017-09-11T08:22:48.998Z", + "new_balance":"4129.79", + "value":"-2.72" + } + }, + { + "id":"3d7e8a3c-a6f5-454d-9c8b-6d2017e99f2e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T16:11:47.412Z", + "completed":"2017-09-11T16:11:47.412Z", + "new_balance":"4129.32", + "value":"-0.47" + } + }, + { + "id":"a8ede710-328d-4d71-92cd-32f5b45441ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T15:18:26.982Z", + "completed":"2017-09-12T15:18:26.982Z", + "new_balance":"4126.73", + "value":"-2.59" + } + }, + { + "id":"10e9c63b-0908-4c19-95cb-5173f3f761db", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:23:52.124Z", + "completed":"2017-09-12T15:23:52.124Z", + "new_balance":"4116.58", + "value":"-10.15" + } + }, + { + "id":"e91e39e3-72a7-4131-a511-9cf50a69fdef", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T15:32:17.332Z", + "completed":"2017-09-12T15:32:17.332Z", + "new_balance":"4110.42", + "value":"-6.16" + } + }, + { + "id":"820f4636-71e9-41a9-961d-22f921b5d6e1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T15:51:12.151Z", + "completed":"2017-09-12T15:51:12.151Z", + "new_balance":"4109.95", + "value":"-0.47" + } + }, + { + "id":"7d28af3b-d86e-4683-9d09-fc57b8f9725a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T02:58:08.127Z", + "completed":"2017-09-13T02:58:08.127Z", + "new_balance":"4107.37", + "value":"-2.58" + } + }, + { + "id":"51b71f77-810c-4bf6-8db3-1014124b112a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T09:03:21.819Z", + "completed":"2017-09-14T09:03:21.819Z", + "new_balance":"4106.90", + "value":"-0.47" + } + }, + { + "id":"58e2d9ba-6aa2-477e-b368-7cc3c9e4f828", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T10:40:33.835Z", + "completed":"2017-09-14T10:40:33.835Z", + "new_balance":"4101.98", + "value":"-4.92" + } + }, + { + "id":"f4fafe78-38e3-42d8-81fd-f933694772ee", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T15:11:50.190Z", + "completed":"2017-09-16T15:11:50.190Z", + "new_balance":"4097.86", + "value":"-4.12" + } + }, + { + "id":"2b037485-6431-48a0-a8e7-5e249b656f29", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T07:46:29.503Z", + "completed":"2017-09-18T07:46:29.503Z", + "new_balance":"4093.47", + "value":"-4.39" + } + }, + { + "id":"9998fb61-a889-44b8-8994-d3a6b3540c3d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T03:08:16.439Z", + "completed":"2017-09-21T03:08:16.439Z", + "new_balance":"4083.86", + "value":"-9.61" + } + }, + { + "id":"fe3bbe74-26f9-4d91-8737-a31837888504", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T08:27:56.595Z", + "completed":"2017-09-21T08:27:56.595Z", + "new_balance":"4071.50", + "value":"-12.36" + } + }, + { + "id":"2db796a7-16f3-4c3b-95db-f87625210049", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T09:16:57.567Z", + "completed":"2017-09-23T09:16:57.567Z", + "new_balance":"4068.03", + "value":"-3.47" + } + }, + { + "id":"d68ff681-5e64-467b-b0fe-a96842cd3a56", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T01:54:26.272Z", + "completed":"2017-09-24T01:54:26.272Z", + "new_balance":"4067.56", + "value":"-0.47" + } + }, + { + "id":"672b34c2-f236-45c7-98ff-8eb993e0c1da", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T04:34:40.630Z", + "completed":"2017-09-26T04:34:40.630Z", + "new_balance":"4066.41", + "value":"-1.15" + } + }, + { + "id":"52001f82-0515-415b-adee-01a5d0232fc6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T06:36:09.800Z", + "completed":"2017-09-26T06:36:09.800Z", + "new_balance":"4064.02", + "value":"-2.39" + } + }, + { + "id":"5b14cb10-3dd2-4df0-8aed-2011871f5dd3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T09:31:16.094Z", + "completed":"2017-09-26T09:31:16.094Z", + "new_balance":"4062.67", + "value":"-1.35" + } + }, + { + "id":"b9d360d2-4779-4103-834b-06b873515b70", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T12:48:12.671Z", + "completed":"2017-09-27T12:48:12.671Z", + "new_balance":"4061.47", + "value":"-1.20" + } + }, + { + "id":"e7bb6cb8-c363-4962-a6b1-52eb216d3131", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T01:20:18.129Z", + "completed":"2017-09-28T01:20:18.129Z", + "new_balance":"4057.75", + "value":"-3.72" + } + }, + { + "id":"51cb28d9-b6bf-4183-bea4-f89e531b0a60", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T09:49:24.655Z", + "completed":"2017-09-28T09:49:24.655Z", + "new_balance":"4035.39", + "value":"-22.36" + } + }, + { + "id":"0c12817c-bb57-4507-8e1b-995c067430a6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T13:30:36.191Z", + "completed":"2017-10-01T13:30:36.191Z", + "new_balance":"4003.67", + "value":"-31.72" + } + }, + { + "id":"e48ace76-aee0-46a6-b154-7ce1a9f7c745", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T15:57:48.243Z", + "completed":"2017-10-01T15:57:48.243Z", + "new_balance":"4144.65", + "value":"140.98" + } + }, + { + "id":"76ddc979-3342-447e-a114-5f527d9d6cb3", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T18:10:25.109Z", + "completed":"2017-10-01T18:10:25.109Z", + "new_balance":"4327.35", + "value":"182.70" + } + }, + { + "id":"3af55684-d002-4aee-ab75-73b98da1180e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T05:24:09.176Z", + "completed":"2017-10-03T05:24:09.176Z", + "new_balance":"4322.53", + "value":"-4.82" + } + }, + { + "id":"e1321bc0-7647-4808-a8dd-91e4e60e5733", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T11:38:09.778Z", + "completed":"2017-10-03T11:38:09.778Z", + "new_balance":"4320.79", + "value":"-1.74" + } + }, + { + "id":"e8f57334-21ed-481a-a5a0-762851750bbe", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T18:10:34.875Z", + "completed":"2017-10-03T18:10:34.875Z", + "new_balance":"4320.12", + "value":"-0.67" + } + }, + { + "id":"ade8c4a6-c1f7-402a-9159-76ff90a8da80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:03:32.856Z", + "completed":"2017-10-05T13:03:32.856Z", + "new_balance":"4319.60", + "value":"-0.52" + } + }, + { + "id":"3176779d-1ba2-4e89-b2a0-b41d8bf73e10", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T21:48:35.812Z", + "completed":"2017-10-05T21:48:35.812Z", + "new_balance":"4318.20", + "value":"-1.40" + } + }, + { + "id":"76e29288-b7b1-4ed8-916b-5320f3efcbd7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:30:01.573Z", + "completed":"2017-10-06T05:30:01.573Z", + "new_balance":"4316.60", + "value":"-1.60" + } + }, + { + "id":"a1352d7f-1d16-4484-9d52-adde3c34e930", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T04:56:23.290Z", + "completed":"2017-10-09T04:56:23.290Z", + "new_balance":"4314.01", + "value":"-2.59" + } + }, + { + "id":"3a9d99b9-8671-4b3f-8af9-01a92b60e46c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:11:22.367Z", + "completed":"2017-10-10T19:11:22.367Z", + "new_balance":"4312.33", + "value":"-1.68" + } + }, + { + "id":"729f8038-1743-42c6-838f-a0bef88e03a7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T02:23:18.605Z", + "completed":"2017-10-11T02:23:18.605Z", + "new_balance":"4310.02", + "value":"-2.31" + } + }, + { + "id":"72dc1f74-6b7f-41d4-9f58-28016c73f881", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T11:33:06.731Z", + "completed":"2017-10-11T11:33:06.731Z", + "new_balance":"4308.15", + "value":"-1.87" + } + }, + { + "id":"980a7a10-46e1-42f0-96d0-b5710483b5f1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T07:03:17.745Z", + "completed":"2017-10-14T07:03:17.745Z", + "new_balance":"4302.02", + "value":"-6.13" + } + }, + { + "id":"a4a2c02e-3a14-43c1-8724-bb8c689aac63", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"HSBC ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T23:58:12.148Z", + "completed":"2017-10-14T23:58:12.148Z", + "new_balance":"4294.32", + "value":"-7.70" + } + }, + { + "id":"96af54f5-5dfc-4634-99c2-c4b2d387ffe7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T21:25:26.443Z", + "completed":"2017-10-17T21:25:26.443Z", + "new_balance":"4289.79", + "value":"-4.53" + } + }, + { + "id":"3c6a218a-5a46-4e6b-ad31-80cc0ddbd63a", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T09:35:59.160Z", + "completed":"2017-10-18T09:35:59.160Z", + "new_balance":"4284.31", + "value":"-5.48" + } + }, + { + "id":"992d524f-299b-40db-bd48-3d5b756e5a73", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T16:59:50.165Z", + "completed":"2017-10-18T16:59:50.165Z", + "new_balance":"4283.84", + "value":"-0.47" + } + }, + { + "id":"37909677-0bfd-44c5-893f-d7f29e68ec87", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T19:48:52.053Z", + "completed":"2017-10-18T19:48:52.053Z", + "new_balance":"4283.03", + "value":"-0.81" + } + }, + { + "id":"e9135104-58ff-4fc7-af8e-f27093697977", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T14:39:28.924Z", + "completed":"2017-10-23T14:39:28.924Z", + "new_balance":"4280.60", + "value":"-2.43" + } + }, + { + "id":"149c723c-ddfd-440b-b5fd-e385435ffd6f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T02:36:38.523Z", + "completed":"2017-10-24T02:36:38.523Z", + "new_balance":"4277.30", + "value":"-3.30" + } + }, + { + "id":"41173c98-b5c6-4aab-9a94-e777f886e436", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T05:15:09.565Z", + "completed":"2017-10-24T05:15:09.565Z", + "new_balance":"4275.73", + "value":"-1.57" + } + }, + { + "id":"39490008-282e-40e1-b803-81c8483f4598", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T02:28:48.618Z", + "completed":"2017-10-26T02:28:48.618Z", + "new_balance":"4275.21", + "value":"-0.52" + } + }, + { + "id":"4ba7d200-a675-4d44-85bc-fc6b9e969b35", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T03:41:23.473Z", + "completed":"2017-10-30T03:41:23.473Z", + "new_balance":"4271.49", + "value":"-3.72" + } + }, + { + "id":"ef96bf92-b409-4831-a853-337aed8af5b2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T03:43:45.476Z", + "completed":"2017-10-30T03:43:45.476Z", + "new_balance":"4249.13", + "value":"-22.36" + } + }, + { + "id":"2f83690c-2869-4f9f-86a7-e5a3798953a8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T04:13:29.537Z", + "completed":"2017-11-02T04:13:29.537Z", + "new_balance":"4217.41", + "value":"-31.72" + } + }, + { + "id":"8f0f183f-edd3-43f2-ae91-2cbc0776c964", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T06:35:50.654Z", + "completed":"2017-11-02T06:35:50.654Z", + "new_balance":"4204.31", + "value":"-13.10" + } + }, + { + "id":"c690132a-8220-493d-9d8b-764c8b35435b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T15:34:43.039Z", + "completed":"2017-11-02T15:34:43.039Z", + "new_balance":"4202.99", + "value":"-1.32" + } + }, + { + "id":"59ebd87b-3058-453f-986d-d3b786cdf1bc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T15:36:17.243Z", + "completed":"2017-11-02T15:36:17.243Z", + "new_balance":"4202.32", + "value":"-0.67" + } + }, + { + "id":"697a8e0d-2409-4561-8603-6c6016e70fbf", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T01:44:59.248Z", + "completed":"2017-11-06T01:44:59.248Z", + "new_balance":"4200.13", + "value":"-2.19" + } + }, + { + "id":"a0ca16e8-7df9-42e8-80ee-06e76b3fe533", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T19:54:12.872Z", + "completed":"2017-11-06T19:54:12.872Z", + "new_balance":"4197.82", + "value":"-2.31" + } + }, + { + "id":"27261156-3136-426e-bdfe-b1dc421c5708", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T05:20:52.541Z", + "completed":"2017-11-07T05:20:52.541Z", + "new_balance":"4190.12", + "value":"-7.70" + } + }, + { + "id":"d9f17340-6f1c-470b-a977-02590e37ce8b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Beef & Liberty" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T06:41:40.485Z", + "completed":"2017-11-07T06:41:40.485Z", + "new_balance":"4185.55", + "value":"-4.57" + } + }, + { + "id":"2b9b4896-f30a-4325-a8f6-06f181ab0905", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T03:05:01.946Z", + "completed":"2017-11-09T03:05:01.946Z", + "new_balance":"4326.53", + "value":"140.98" + } + }, + { + "id":"414c2cc9-074a-45e5-ab73-154d152b7ed9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:36:48.576Z", + "completed":"2017-11-14T06:36:48.576Z", + "new_balance":"4322.39", + "value":"-4.14" + } + }, + { + "id":"ae744b41-8ea3-40f1-ac4f-d36414a1a300", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T08:24:31.295Z", + "completed":"2017-11-14T08:24:31.295Z", + "new_balance":"4319.99", + "value":"-2.40" + } + }, + { + "id":"8022de34-5925-412c-b527-5e616f7098ed", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T05:18:05.261Z", + "completed":"2017-11-16T05:18:05.261Z", + "new_balance":"4319.47", + "value":"-0.52" + } + }, + { + "id":"90d777f0-384f-483d-9c50-8bed25331cce", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T14:13:12.647Z", + "completed":"2017-11-20T14:13:12.647Z", + "new_balance":"4316.59", + "value":"-2.88" + } + }, + { + "id":"4f0fb993-5399-4432-bdf3-df19a6537527", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T16:02:52.466Z", + "completed":"2017-11-23T16:02:52.466Z", + "new_balance":"4311.98", + "value":"-4.61" + } + }, + { + "id":"6ec700ce-9062-423c-b29b-3f23a69cfd80", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T17:07:35.093Z", + "completed":"2017-11-23T17:07:35.093Z", + "new_balance":"4309.67", + "value":"-2.31" + } + }, + { + "id":"e11852db-6119-4612-8e4a-1309d55c5322", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T21:43:19.939Z", + "completed":"2017-11-23T21:43:19.939Z", + "new_balance":"4309.20", + "value":"-0.47" + } + }, + { + "id":"696c8d09-eaf6-45ef-aafc-c9af5333ff55", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T09:26:32.465Z", + "completed":"2017-11-28T09:26:32.465Z", + "new_balance":"4308.61", + "value":"-0.59" + } + }, + { + "id":"fc631c3f-3046-4609-b3af-412495361fa2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T07:00:26.241Z", + "completed":"2017-11-30T07:00:26.241Z", + "new_balance":"4304.89", + "value":"-3.72" + } + }, + { + "id":"f3859915-975f-4239-9e71-e56d667b816c", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T16:53:54.703Z", + "completed":"2017-11-30T16:53:54.703Z", + "new_balance":"4282.53", + "value":"-22.36" + } + }, + { + "id":"1a7766fc-69bd-44e2-b5a4-9e4479dd07ae", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T04:00:58.115Z", + "completed":"2017-12-01T04:00:58.115Z", + "new_balance":"4250.81", + "value":"-31.72" + } + }, + { + "id":"c475a9ce-bfed-4cb2-a20b-b191596fa2bd", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T08:54:52.139Z", + "completed":"2017-12-01T08:54:52.139Z", + "new_balance":"4391.79", + "value":"140.98" + } + }, + { + "id":"5c041126-e402-46f2-bbbd-3506da9a0ff9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"NYX" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T05:12:56.825Z", + "completed":"2017-12-04T05:12:56.825Z", + "new_balance":"4388.33", + "value":"-3.46" + } + }, + { + "id":"5ecce007-3052-47d7-b10a-e882dcb33f83", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T08:25:09.333Z", + "completed":"2017-12-04T08:25:09.333Z", + "new_balance":"4386.28", + "value":"-2.05" + } + }, + { + "id":"0d85a05f-b1b8-4ccc-a836-c0bb47e5cad8", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T06:09:03.300Z", + "completed":"2017-12-11T06:09:03.300Z", + "new_balance":"4381.67", + "value":"-4.61" + } + }, + { + "id":"87d9a9bb-d448-4bbf-93d2-f9fade7a74a5", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pirata" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T09:05:35.674Z", + "completed":"2017-12-11T09:05:35.674Z", + "new_balance":"4378.37", + "value":"-3.30" + } + }, + { + "id":"424adfcd-157f-44c8-91d9-e45a38369529", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T03:04:35.833Z", + "completed":"2017-12-14T03:04:35.833Z", + "new_balance":"4371.62", + "value":"-6.75" + } + }, + { + "id":"e55b103c-db82-4101-b9f6-11776acdf749", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T03:39:53.896Z", + "completed":"2017-12-14T03:39:53.896Z", + "new_balance":"4370.82", + "value":"-0.80" + } + }, + { + "id":"2082ad06-dcc3-4248-ad37-27815a7cb131", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T03:47:59.035Z", + "completed":"2017-12-14T03:47:59.035Z", + "new_balance":"4370.35", + "value":"-0.47" + } + }, + { + "id":"347383c5-0a94-42f9-9aa2-b30e77053986", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T11:39:54.866Z", + "completed":"2017-12-14T11:39:54.866Z", + "new_balance":"4369.55", + "value":"-0.80" + } + }, + { + "id":"c966c802-285c-44f8-aeba-911866af6765", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stub Hub" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:55:39.227Z", + "completed":"2017-12-14T12:55:39.227Z", + "new_balance":"4362.91", + "value":"-6.64" + } + }, + { + "id":"1ca86347-e445-4e54-a87b-db7ead5d82d1", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T17:01:51.133Z", + "completed":"2017-12-14T17:01:51.133Z", + "new_balance":"4361.61", + "value":"-1.30" + } + }, + { + "id":"033f4c00-bc41-40bb-ab75-df0fd6534509", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T21:21:56.544Z", + "completed":"2017-12-14T21:21:56.544Z", + "new_balance":"4361.14", + "value":"-0.47" + } + }, + { + "id":"c30e4246-60b6-456c-98c0-dcd75131693f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T22:00:34.001Z", + "completed":"2017-12-14T22:00:34.001Z", + "new_balance":"4353.40", + "value":"-7.74" + } + }, + { + "id":"5c4c79e8-57b6-4ec8-b63f-579cca6e2be0", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T23:37:45.146Z", + "completed":"2017-12-14T23:37:45.146Z", + "new_balance":"4345.70", + "value":"-7.70" + } + }, + { + "id":"61347037-54b3-4f22-beae-5cc417c7da92", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T08:02:51.727Z", + "completed":"2017-12-15T08:02:51.727Z", + "new_balance":"4345.23", + "value":"-0.47" + } + }, + { + "id":"fca02361-d4a1-4cda-a9f6-181a72cb53b7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T17:16:23.223Z", + "completed":"2017-12-15T17:16:23.223Z", + "new_balance":"4344.46", + "value":"-0.77" + } + }, + { + "id":"6af5b8e1-56ed-4d64-ab7d-80381d4e3419", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T19:27:04.036Z", + "completed":"2017-12-15T19:27:04.036Z", + "new_balance":"4341.75", + "value":"-2.71" + } + }, + { + "id":"67d62dd2-f70e-4b6d-8a03-7e7663354d8b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T04:37:50.546Z", + "completed":"2017-12-18T04:37:50.546Z", + "new_balance":"4340.15", + "value":"-1.60" + } + }, + { + "id":"7dfc0aa8-f555-4514-a026-c6bd795f88e7", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T08:33:40.801Z", + "completed":"2017-12-18T08:33:40.801Z", + "new_balance":"4339.68", + "value":"-0.47" + } + }, + { + "id":"ab9bb89a-a3c1-44cd-84cf-f14bf06b2cea", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T13:38:27.413Z", + "completed":"2017-12-18T13:38:27.413Z", + "new_balance":"4337.10", + "value":"-2.58" + } + }, + { + "id":"257408d8-8591-4d73-a777-01a90be6a85e", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T16:42:50.555Z", + "completed":"2017-12-18T16:42:50.555Z", + "new_balance":"4334.51", + "value":"-2.59" + } + }, + { + "id":"efaadf38-7f41-43fc-b432-40ddd65f9cf6", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T21:10:19.203Z", + "completed":"2017-12-18T21:10:19.203Z", + "new_balance":"4331.79", + "value":"-2.72" + } + }, + { + "id":"4351d3ae-2136-4333-90d8-3e899d323a9b", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T21:28:54.902Z", + "completed":"2017-12-18T21:28:54.902Z", + "new_balance":"4331.32", + "value":"-0.47" + } + }, + { + "id":"5c911525-5d08-4e1f-b4ee-8c854e18dfeb", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T23:25:36.768Z", + "completed":"2017-12-18T23:25:36.768Z", + "new_balance":"4321.17", + "value":"-10.15" + } + }, + { + "id":"7cb088a4-c40b-4cc8-9f44-96afe4b02b6d", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T23:29:36.173Z", + "completed":"2017-12-18T23:29:36.173Z", + "new_balance":"4315.01", + "value":"-6.16" + } + }, + { + "id":"c672ab7e-b6bd-4020-8cd0-aae41eac2ba4", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Park n Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T05:58:44.537Z", + "completed":"2017-12-19T05:58:44.537Z", + "new_balance":"4310.09", + "value":"-4.92" + } + }, + { + "id":"2c08e514-4b2b-41c4-80f8-f50a9164dafc", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T07:57:00.945Z", + "completed":"2017-12-19T07:57:00.945Z", + "new_balance":"4305.97", + "value":"-4.12" + } + }, + { + "id":"141f1d15-5803-4b80-b37a-8c62f8769d02", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T19:32:44.722Z", + "completed":"2017-12-19T19:32:44.722Z", + "new_balance":"4301.58", + "value":"-4.39" + } + }, + { + "id":"26295b64-01d8-486f-bc10-3400a894b5e2", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T03:53:31.119Z", + "completed":"2017-12-21T03:53:31.119Z", + "new_balance":"4301.11", + "value":"-0.47" + } + }, + { + "id":"0584ab8f-d8e2-4df8-a9a2-6b64876f62f9", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Air China" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T04:24:43.357Z", + "completed":"2017-12-21T04:24:43.357Z", + "new_balance":"4288.75", + "value":"-12.36" + } + }, + { + "id":"22264825-d4d9-4c70-a4c7-f88710d36e41", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T06:41:32.439Z", + "completed":"2017-12-21T06:41:32.439Z", + "new_balance":"4279.14", + "value":"-9.61" + } + }, + { + "id":"8c833ae7-e836-4c25-a1b5-4eb9449dad52", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:31:19.693Z", + "completed":"2017-12-21T07:31:19.693Z", + "new_balance":"4277.99", + "value":"-1.15" + } + }, + { + "id":"30148f33-56f9-4935-a453-d7e977a3a428", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T07:54:36.627Z", + "completed":"2017-12-21T07:54:36.627Z", + "new_balance":"4274.52", + "value":"-3.47" + } + }, + { + "id":"9bcdce81-205a-4bd2-bbcf-4da6c4257317", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T11:42:28.661Z", + "completed":"2017-12-24T11:42:28.661Z", + "new_balance":"4272.13", + "value":"-2.39" + } + }, + { + "id":"20d793da-56e1-4566-b67b-84b227b0a585", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T14:32:28.463Z", + "completed":"2017-12-24T14:32:28.463Z", + "new_balance":"4270.93", + "value":"-1.20" + } + }, + { + "id":"57efd7ce-31fd-40bb-bedf-ed00b5a37308", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T19:58:17.302Z", + "completed":"2017-12-24T19:58:17.302Z", + "new_balance":"4269.58", + "value":"-1.35" + } + }, + { + "id":"6c92cbc2-a7fc-4a89-926f-ffdc8cce4e8f", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Neat" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T17:24:02.324Z", + "completed":"2017-12-30T17:24:02.324Z", + "new_balance":"4247.22", + "value":"-22.36" + } + }, + { + "id":"1da54bdb-c22f-490d-a370-3ecfacc81642", + "this_account":{ + "id":"bdfee55d-8259-4fef-a6d7-8c54079584de", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T21:12:46.475Z", + "completed":"2017-12-30T21:12:46.475Z", + "new_balance":"4243.50", + "value":"-3.72" + } + }, + { + "id":"23f9abff-bd60-45ea-af49-38d19b1d46ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T03:59:52.504Z", + "completed":"2016-03-01T03:59:52.504Z", + "new_balance":"2811.60", + "value":"-296.60" + } + }, + { + "id":"8b9a6d70-7d43-45d6-a7dc-a30785302807", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T07:09:02.783Z", + "completed":"2016-03-01T07:09:02.783Z", + "new_balance":"2534.12", + "value":"-277.48" + } + }, + { + "id":"3c3e983e-1c32-4715-8236-b3a7b2848ad6", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T10:55:34.847Z", + "completed":"2016-03-01T10:55:34.847Z", + "new_balance":"2511.76", + "value":"-22.36" + } + }, + { + "id":"823ae0d2-cbc4-480d-bec2-eebfc55aebc8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T15:03:38.936Z", + "completed":"2016-03-01T15:03:38.936Z", + "new_balance":"2488.52", + "value":"-23.24" + } + }, + { + "id":"b3c544ed-358a-48ac-b3cf-8546d0db6387", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T21:54:07.648Z", + "completed":"2016-03-01T21:54:07.648Z", + "new_balance":"2431.71", + "value":"-56.81" + } + }, + { + "id":"bab20fa6-609f-4e16-b012-cba648c65ab0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:47:30.163Z", + "completed":"2016-03-01T23:47:30.163Z", + "new_balance":"2418.61", + "value":"-13.10" + } + }, + { + "id":"0976dcb5-303d-4624-be70-009616f22a0f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T04:35:21.097Z", + "completed":"2016-03-12T04:35:21.097Z", + "new_balance":"2414.43", + "value":"-4.18" + } + }, + { + "id":"e1572068-20eb-45cf-a162-c414e4401526", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T10:46:48.239Z", + "completed":"2016-03-12T10:46:48.239Z", + "new_balance":"2357.62", + "value":"-56.81" + } + }, + { + "id":"8687dc31-1ba2-49ec-84af-c44fe1b6f81f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T16:56:35.784Z", + "completed":"2016-03-12T16:56:35.784Z", + "new_balance":"2334.38", + "value":"-23.24" + } + }, + { + "id":"1e97ad14-e4ea-4bca-892e-f8aeedb7b6c1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T21:26:55.884Z", + "completed":"2016-03-12T21:26:55.884Z", + "new_balance":"2329.23", + "value":"-5.15" + } + }, + { + "id":"c26efff9-c0ef-4cd1-9825-6f72778d82b1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T02:40:41.578Z", + "completed":"2016-03-14T02:40:41.578Z", + "new_balance":"2490.04", + "value":"160.81" + } + }, + { + "id":"5342a45d-ab77-4e2b-9157-64dce65c1425", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T05:14:35.602Z", + "completed":"2016-03-15T05:14:35.602Z", + "new_balance":"2520.31", + "value":"30.27" + } + }, + { + "id":"c675ad40-6767-460e-a448-26b98c75f6fd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T22:33:08.062Z", + "completed":"2016-03-16T22:33:08.062Z", + "new_balance":"2611.27", + "value":"90.96" + } + }, + { + "id":"15239c5f-a55b-46e9-9515-ce3ed00693db", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T09:18:10.041Z", + "completed":"2016-03-17T09:18:10.041Z", + "new_balance":"2605.79", + "value":"-5.48" + } + }, + { + "id":"e2bc265a-47bb-4bc6-bab1-e139c61c817e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T14:54:27.958Z", + "completed":"2016-03-17T14:54:27.958Z", + "new_balance":"2599.26", + "value":"-6.53" + } + }, + { + "id":"fa7a3853-85f6-4646-b51b-0e9f077df448", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T00:20:31.489Z", + "completed":"2016-03-19T00:20:31.489Z", + "new_balance":"2647.13", + "value":"47.87" + } + }, + { + "id":"e79cee5b-b44c-482c-8a73-c0e39274c060", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T08:24:41.311Z", + "completed":"2016-03-21T08:24:41.311Z", + "new_balance":"2639.94", + "value":"-7.19" + } + }, + { + "id":"e1b1efe6-56e8-4c3b-8558-d5f2336decde", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T13:37:04.339Z", + "completed":"2016-03-21T13:37:04.339Z", + "new_balance":"2646.78", + "value":"6.84" + } + }, + { + "id":"e4ec4b61-4894-43cc-a0bf-d43b2c0f4b9c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T08:13:15.986Z", + "completed":"2016-03-24T08:13:15.986Z", + "new_balance":"2596.56", + "value":"-50.22" + } + }, + { + "id":"728e5b48-a879-4f3a-acd6-b47b3be02f0a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T21:57:23.910Z", + "completed":"2016-03-24T21:57:23.910Z", + "new_balance":"2626.83", + "value":"30.27" + } + }, + { + "id":"9089bc34-9184-47f4-89cb-6e78e135ed36", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T08:58:24.609Z", + "completed":"2016-03-25T08:58:24.609Z", + "new_balance":"2557.75", + "value":"-69.08" + } + }, + { + "id":"6b203f6c-2785-4783-a15c-e4e8cc6437b8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T23:34:23.547Z", + "completed":"2016-03-25T23:34:23.547Z", + "new_balance":"2607.83", + "value":"50.08" + } + }, + { + "id":"ff173dd8-d5d3-4508-9684-005c879fbd82", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T07:27:00.119Z", + "completed":"2016-03-28T07:27:00.119Z", + "new_balance":"3016.65", + "value":"408.82" + } + }, + { + "id":"6aa5dd14-01b0-4a41-83b2-19d246a19d9a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T17:05:37.334Z", + "completed":"2016-03-28T17:05:37.334Z", + "new_balance":"3177.46", + "value":"160.81" + } + }, + { + "id":"644bcb31-3c36-4d68-bfcd-3fc7198897a8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T07:57:17.027Z", + "completed":"2016-03-30T07:57:17.027Z", + "new_balance":"3207.73", + "value":"30.27" + } + }, + { + "id":"f82e9f09-e83f-4d3f-b8fe-ee83c91f13d1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T10:09:06.105Z", + "completed":"2016-03-30T10:09:06.105Z", + "new_balance":"3228.62", + "value":"20.89" + } + }, + { + "id":"ce7e34cf-90f6-44c9-8f8d-aba524a7fcbf", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T01:55:36.525Z", + "completed":"2016-06-01T01:55:36.525Z", + "new_balance":"3206.26", + "value":"-22.36" + } + }, + { + "id":"82b09d87-4095-45a0-af7e-3c7fc00e77e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T02:28:39.185Z", + "completed":"2016-06-01T02:28:39.185Z", + "new_balance":"3183.02", + "value":"-23.24" + } + }, + { + "id":"a0af86ae-c8d0-4137-8e37-50557acd6e53", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T06:59:47.864Z", + "completed":"2016-06-01T06:59:47.864Z", + "new_balance":"2886.42", + "value":"-296.60" + } + }, + { + "id":"baf08c9c-cf9f-4fd7-a6bb-5b42467f3fa4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T08:36:11.497Z", + "completed":"2016-06-01T08:36:11.497Z", + "new_balance":"2608.94", + "value":"-277.48" + } + }, + { + "id":"53660fa1-070b-4dc0-8e49-180dbb9d0a09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T12:38:19.312Z", + "completed":"2016-06-01T12:38:19.312Z", + "new_balance":"2552.13", + "value":"-56.81" + } + }, + { + "id":"8c5c88df-69d2-4b57-8414-5ae3c325f7d2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T12:49:04.074Z", + "completed":"2016-06-01T12:49:04.074Z", + "new_balance":"2539.03", + "value":"-13.10" + } + }, + { + "id":"8ee71321-1b40-4728-b265-10863bf7a136", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:34:46.942Z", + "completed":"2016-06-04T09:34:46.942Z", + "new_balance":"2534.85", + "value":"-4.18" + } + }, + { + "id":"51777578-9042-4413-8323-895720ffbdee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T11:47:56.031Z", + "completed":"2016-06-04T11:47:56.031Z", + "new_balance":"2529.70", + "value":"-5.15" + } + }, + { + "id":"ffc323df-a8a3-4af7-bca2-97246ffcd750", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T12:16:18.092Z", + "completed":"2016-06-05T12:16:18.092Z", + "new_balance":"2472.89", + "value":"-56.81" + } + }, + { + "id":"a534262f-ee4e-41a2-b1a9-f25b3019ae3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T15:23:03.608Z", + "completed":"2016-06-05T15:23:03.608Z", + "new_balance":"2449.65", + "value":"-23.24" + } + }, + { + "id":"76a40df0-1e76-49b1-915a-f4623cc59c09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:41:52.416Z", + "completed":"2016-06-07T00:41:52.416Z", + "new_balance":"2610.46", + "value":"160.81" + } + }, + { + "id":"de13c914-4954-4900-8844-87f2206df97b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T04:25:32.270Z", + "completed":"2016-06-07T04:25:32.270Z", + "new_balance":"2701.42", + "value":"90.96" + } + }, + { + "id":"33b54a30-3c74-4a7b-8c21-bff9f808f890", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T11:13:55.905Z", + "completed":"2016-06-07T11:13:55.905Z", + "new_balance":"2731.69", + "value":"30.27" + } + }, + { + "id":"f36a64c1-9753-49e0-b3b1-330eef70f1f8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T16:20:35.235Z", + "completed":"2016-06-07T16:20:35.235Z", + "new_balance":"2725.16", + "value":"-6.53" + } + }, + { + "id":"2ca36a4c-f701-443c-8ca5-af17abf82b0c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T01:59:16.598Z", + "completed":"2016-06-11T01:59:16.598Z", + "new_balance":"2719.68", + "value":"-5.48" + } + }, + { + "id":"497484cd-724b-4782-aadc-0f6f8973e634", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T16:09:53.955Z", + "completed":"2016-06-14T16:09:53.955Z", + "new_balance":"2767.55", + "value":"47.87" + } + }, + { + "id":"78e21778-9cfa-4b2f-8581-1c72d642f380", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T22:04:41.373Z", + "completed":"2016-06-14T22:04:41.373Z", + "new_balance":"2760.36", + "value":"-7.19" + } + }, + { + "id":"9511a52a-8413-4a89-8a92-8a4749373814", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T23:18:57.963Z", + "completed":"2016-06-14T23:18:57.963Z", + "new_balance":"2767.20", + "value":"6.84" + } + }, + { + "id":"4fcc32c8-a0a4-44b5-afc2-86c57744a9e4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T05:41:24.808Z", + "completed":"2016-06-16T05:41:24.808Z", + "new_balance":"2716.98", + "value":"-50.22" + } + }, + { + "id":"a202663e-8596-47ed-98c7-1b49c2182e93", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T08:36:17.132Z", + "completed":"2016-06-16T08:36:17.132Z", + "new_balance":"2747.25", + "value":"30.27" + } + }, + { + "id":"22e42220-71be-4fa3-9ce3-a3bae959d151", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T08:59:41.727Z", + "completed":"2016-06-21T08:59:41.727Z", + "new_balance":"2678.17", + "value":"-69.08" + } + }, + { + "id":"90dc7765-8ebb-47b4-b3bd-e090d288d362", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T10:56:15.259Z", + "completed":"2016-06-21T10:56:15.259Z", + "new_balance":"2838.98", + "value":"160.81" + } + }, + { + "id":"d9949e5b-151d-4cea-beff-cfbca3e9ef69", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T15:05:15.500Z", + "completed":"2016-06-21T15:05:15.500Z", + "new_balance":"3247.80", + "value":"408.82" + } + }, + { + "id":"35402d86-9e25-4815-b449-3dd5e2c4b63d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:08:34.975Z", + "completed":"2016-06-21T23:08:34.975Z", + "new_balance":"3297.88", + "value":"50.08" + } + }, + { + "id":"d93632b5-f097-408c-990a-5de235fd7a25", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T01:45:30.760Z", + "completed":"2016-06-30T01:45:30.760Z", + "new_balance":"3328.15", + "value":"30.27" + } + }, + { + "id":"3e078154-3398-4698-91be-3879413608cc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T06:29:05.912Z", + "completed":"2016-06-30T06:29:05.912Z", + "new_balance":"3349.04", + "value":"20.89" + } + }, + { + "id":"356f57dc-a72a-45b3-991d-7725f1962238", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T02:10:51.621Z", + "completed":"2016-09-01T02:10:51.621Z", + "new_balance":"3326.68", + "value":"-22.36" + } + }, + { + "id":"d42b8d08-fb33-4cd6-b11a-add90acfae84", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T07:02:35.587Z", + "completed":"2016-09-01T07:02:35.587Z", + "new_balance":"3269.87", + "value":"-56.81" + } + }, + { + "id":"27ddb15a-4830-431c-984a-644e26eec33c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T11:17:22.734Z", + "completed":"2016-09-01T11:17:22.734Z", + "new_balance":"2992.39", + "value":"-277.48" + } + }, + { + "id":"95fadbd9-904c-415e-83ca-6602c929f1c8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T13:19:41.654Z", + "completed":"2016-09-01T13:19:41.654Z", + "new_balance":"2979.29", + "value":"-13.10" + } + }, + { + "id":"41d913f5-732d-410e-a7f6-e52e400f5469", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T17:35:03.913Z", + "completed":"2016-09-01T17:35:03.913Z", + "new_balance":"2682.69", + "value":"-296.60" + } + }, + { + "id":"2aa3773a-d0fc-47ec-b15b-e9e8b421ab22", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T19:27:52.438Z", + "completed":"2016-09-01T19:27:52.438Z", + "new_balance":"2659.45", + "value":"-23.24" + } + }, + { + "id":"cd4b03fe-642c-4dcd-92ea-39bc619f29a2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T04:32:10.270Z", + "completed":"2016-09-12T04:32:10.270Z", + "new_balance":"2655.27", + "value":"-4.18" + } + }, + { + "id":"58c8fcfc-d8ec-4cda-9aa9-511ccc03d5f5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T05:49:37.308Z", + "completed":"2016-09-12T05:49:37.308Z", + "new_balance":"2598.46", + "value":"-56.81" + } + }, + { + "id":"d1fec6e2-4fa4-43ce-8b1a-49adc0428b3d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T07:14:24.926Z", + "completed":"2016-09-12T07:14:24.926Z", + "new_balance":"2593.31", + "value":"-5.15" + } + }, + { + "id":"3b18a4a6-6672-4bcd-98c9-06dcd316b491", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T19:31:25.670Z", + "completed":"2016-09-12T19:31:25.670Z", + "new_balance":"2570.07", + "value":"-23.24" + } + }, + { + "id":"e1a1d682-8d24-4fdb-9dd6-3ed38d8fb734", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:27:51.815Z", + "completed":"2016-09-15T02:27:51.815Z", + "new_balance":"2730.88", + "value":"160.81" + } + }, + { + "id":"0df1c80a-004e-4961-b5e1-ab2db2c97888", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T12:04:43.789Z", + "completed":"2016-09-15T12:04:43.789Z", + "new_balance":"2761.15", + "value":"30.27" + } + }, + { + "id":"72f043f2-20e0-42fc-99df-ebef02089547", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T01:00:47.900Z", + "completed":"2016-09-17T01:00:47.900Z", + "new_balance":"2754.62", + "value":"-6.53" + } + }, + { + "id":"f8082943-c1ba-4be3-ac1a-77c26afd8f4e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:51:28.300Z", + "completed":"2016-09-17T12:51:28.300Z", + "new_balance":"2749.14", + "value":"-5.48" + } + }, + { + "id":"073303f8-00a7-4a89-a8b0-3014d62dac35", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T22:44:23.893Z", + "completed":"2016-09-17T22:44:23.893Z", + "new_balance":"2840.10", + "value":"90.96" + } + }, + { + "id":"c9d7fa53-ea8f-4e92-aa22-358570aea941", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T08:34:32.512Z", + "completed":"2016-09-19T08:34:32.512Z", + "new_balance":"2887.97", + "value":"47.87" + } + }, + { + "id":"0cef2a20-6512-499e-9a3c-8936c8104270", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T00:11:33.973Z", + "completed":"2016-09-21T00:11:33.973Z", + "new_balance":"2880.78", + "value":"-7.19" + } + }, + { + "id":"9e9af187-5b34-47cc-9eb6-8974c9787695", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T21:19:04.983Z", + "completed":"2016-09-21T21:19:04.983Z", + "new_balance":"2887.62", + "value":"6.84" + } + }, + { + "id":"664eadea-096a-4a38-927a-710e4fc958d7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T05:46:24.115Z", + "completed":"2016-09-24T05:46:24.115Z", + "new_balance":"2837.40", + "value":"-50.22" + } + }, + { + "id":"d1fb6ae6-659a-4c83-bf08-a7768304a59f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T14:41:04.992Z", + "completed":"2016-09-24T14:41:04.992Z", + "new_balance":"2867.67", + "value":"30.27" + } + }, + { + "id":"bd97ecf1-4ca3-422f-aa89-c078539e551c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T23:07:38.124Z", + "completed":"2016-09-25T23:07:38.124Z", + "new_balance":"2917.75", + "value":"50.08" + } + }, + { + "id":"149d88bc-5fde-485b-b9ec-299bd98ca6a8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T23:22:12.481Z", + "completed":"2016-09-25T23:22:12.481Z", + "new_balance":"2848.67", + "value":"-69.08" + } + }, + { + "id":"34499ece-b92b-4fcd-b328-8e4b6f26a19a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T14:31:13.052Z", + "completed":"2016-09-28T14:31:13.052Z", + "new_balance":"3257.49", + "value":"408.82" + } + }, + { + "id":"a6f1c02e-7e8f-4614-b31e-5da8cf1ad691", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T23:25:48.042Z", + "completed":"2016-09-28T23:25:48.042Z", + "new_balance":"3418.30", + "value":"160.81" + } + }, + { + "id":"5dae434b-4f00-4317-99bf-1ded7886432e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T12:23:21.323Z", + "completed":"2016-09-30T12:23:21.323Z", + "new_balance":"3439.19", + "value":"20.89" + } + }, + { + "id":"39665fa5-3f06-403b-99a2-aaecf8f8a7f0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T23:24:51.101Z", + "completed":"2016-09-30T23:24:51.101Z", + "new_balance":"3469.46", + "value":"30.27" + } + }, + { + "id":"37bd8672-171b-49b9-8265-78c61b6be1ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T05:44:02.817Z", + "completed":"2016-12-01T05:44:02.817Z", + "new_balance":"3412.65", + "value":"-56.81" + } + }, + { + "id":"b535d303-3914-46e9-8b20-eb1f700f10f0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T07:23:52.711Z", + "completed":"2016-12-01T07:23:52.711Z", + "new_balance":"3390.29", + "value":"-22.36" + } + }, + { + "id":"6b3d9c31-0f40-4249-bcd7-2dcbd8a5a9f4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:35:16.987Z", + "completed":"2016-12-01T13:35:16.987Z", + "new_balance":"3377.19", + "value":"-13.10" + } + }, + { + "id":"48252927-266e-4326-a56e-6db07341d747", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T14:21:05.522Z", + "completed":"2016-12-01T14:21:05.522Z", + "new_balance":"3099.71", + "value":"-277.48" + } + }, + { + "id":"dbdca811-189d-40fa-91c6-968a2b37698a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T18:10:52.299Z", + "completed":"2016-12-01T18:10:52.299Z", + "new_balance":"3076.47", + "value":"-23.24" + } + }, + { + "id":"1bb25d6f-9614-4254-951b-1c2a96541b4b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T19:31:06.344Z", + "completed":"2016-12-01T19:31:06.344Z", + "new_balance":"2779.87", + "value":"-296.60" + } + }, + { + "id":"43f78414-4093-4ff0-a832-2563a44d865b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T05:27:53.372Z", + "completed":"2016-12-04T05:27:53.372Z", + "new_balance":"2775.69", + "value":"-4.18" + } + }, + { + "id":"7b41294f-ccb9-43cd-9079-a9925a636b69", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:07:03.066Z", + "completed":"2016-12-04T14:07:03.066Z", + "new_balance":"2770.54", + "value":"-5.15" + } + }, + { + "id":"585c4fa5-e365-4590-ad3b-522cd1b1ac3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T00:39:56.197Z", + "completed":"2016-12-05T00:39:56.197Z", + "new_balance":"2713.73", + "value":"-56.81" + } + }, + { + "id":"6cb4d123-5af4-42fe-9093-2cbfa295b0ef", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T22:53:06.193Z", + "completed":"2016-12-05T22:53:06.193Z", + "new_balance":"2690.49", + "value":"-23.24" + } + }, + { + "id":"60de22a4-3612-40e5-88ec-26b1b8d50d39", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:52:11.567Z", + "completed":"2016-12-07T11:52:11.567Z", + "new_balance":"2851.30", + "value":"160.81" + } + }, + { + "id":"cafd1399-dae5-48b7-a30b-c5fa035fa8cd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T16:57:57.839Z", + "completed":"2016-12-07T16:57:57.839Z", + "new_balance":"2942.26", + "value":"90.96" + } + }, + { + "id":"1810d490-bead-4906-a30f-880a886529b9", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:07:30.978Z", + "completed":"2016-12-07T18:07:30.978Z", + "new_balance":"2972.53", + "value":"30.27" + } + }, + { + "id":"007e1318-0e16-49e4-a50e-52f09320bcd3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:12:02.611Z", + "completed":"2016-12-07T18:12:02.611Z", + "new_balance":"2966.00", + "value":"-6.53" + } + }, + { + "id":"a7aa67a9-a555-4515-9baa-fc134d07c539", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T13:26:15.332Z", + "completed":"2016-12-11T13:26:15.332Z", + "new_balance":"2960.52", + "value":"-5.48" + } + }, + { + "id":"5510e18f-809e-4d5d-af06-899044a8cb09", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:40:50.671Z", + "completed":"2016-12-14T01:40:50.671Z", + "new_balance":"2953.33", + "value":"-7.19" + } + }, + { + "id":"acf38478-b05e-4305-9c8b-4a37ee94ccdb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T08:47:17.764Z", + "completed":"2016-12-14T08:47:17.764Z", + "new_balance":"3001.20", + "value":"47.87" + } + }, + { + "id":"d2af5e6c-2f32-4943-b941-bd85d8ae4eee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T17:38:58.845Z", + "completed":"2016-12-14T17:38:58.845Z", + "new_balance":"3008.04", + "value":"6.84" + } + }, + { + "id":"d26671d4-5f9c-4da1-9ce8-7289a17a3292", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T08:52:53.315Z", + "completed":"2016-12-16T08:52:53.315Z", + "new_balance":"3038.31", + "value":"30.27" + } + }, + { + "id":"b09904bb-2e4f-4372-80e8-8c55843aea20", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T21:55:22.219Z", + "completed":"2016-12-16T21:55:22.219Z", + "new_balance":"2988.09", + "value":"-50.22" + } + }, + { + "id":"90bcc8b7-cda1-45ca-8e3c-bd5db73d5c3f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T01:08:55.009Z", + "completed":"2016-12-21T01:08:55.009Z", + "new_balance":"2919.01", + "value":"-69.08" + } + }, + { + "id":"c9e25186-29d9-4c74-b35a-e013ac6a8d34", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:55:36.967Z", + "completed":"2016-12-21T08:55:36.967Z", + "new_balance":"2969.09", + "value":"50.08" + } + }, + { + "id":"b406c47a-d40d-4e1e-8045-f20fb07b4097", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T13:30:51.192Z", + "completed":"2016-12-21T13:30:51.192Z", + "new_balance":"3129.90", + "value":"160.81" + } + }, + { + "id":"c935dedc-2d50-4731-a545-6f3fa1fa4883", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:35:13.992Z", + "completed":"2016-12-21T19:35:13.992Z", + "new_balance":"3538.72", + "value":"408.82" + } + }, + { + "id":"e617d68c-262d-485c-89b6-b9a9bbcd70e5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T23:13:14.776Z", + "completed":"2016-12-30T23:13:14.776Z", + "new_balance":"3568.99", + "value":"30.27" + } + }, + { + "id":"c4cc208c-141b-455a-8e5d-c6bf5e637c7f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T23:43:36.064Z", + "completed":"2016-12-30T23:43:36.064Z", + "new_balance":"3589.88", + "value":"20.89" + } + }, + { + "id":"68e18752-5fb0-44b2-82eb-10ada793f690", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T00:49:15.940Z", + "completed":"2017-03-01T00:49:15.940Z", + "new_balance":"3293.28", + "value":"-296.60" + } + }, + { + "id":"3e5047e6-8400-4976-865e-5e9b512c589d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T07:50:37.982Z", + "completed":"2017-03-01T07:50:37.982Z", + "new_balance":"3270.92", + "value":"-22.36" + } + }, + { + "id":"e0a8da08-a7a3-4706-9746-8f65051ac203", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T08:02:25.485Z", + "completed":"2017-03-01T08:02:25.485Z", + "new_balance":"2993.44", + "value":"-277.48" + } + }, + { + "id":"2f30f8c8-25ec-4dfd-838c-0b16f8feb1bd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T14:22:11.642Z", + "completed":"2017-03-01T14:22:11.642Z", + "new_balance":"2936.63", + "value":"-56.81" + } + }, + { + "id":"94f37389-e50b-431f-9c6a-a6c367d7345c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T15:56:35.728Z", + "completed":"2017-03-01T15:56:35.728Z", + "new_balance":"2913.39", + "value":"-23.24" + } + }, + { + "id":"7ead9157-5784-4eab-9c0f-bb6afd7e25ed", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T23:20:31.914Z", + "completed":"2017-03-01T23:20:31.914Z", + "new_balance":"2900.29", + "value":"-13.10" + } + }, + { + "id":"2fb4b0fc-8eaf-4d17-9182-14a158d7de3e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T13:52:21.461Z", + "completed":"2017-03-12T13:52:21.461Z", + "new_balance":"2895.14", + "value":"-5.15" + } + }, + { + "id":"067e8e52-62ac-4f1a-9717-260fb77edee2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T14:04:53.541Z", + "completed":"2017-03-12T14:04:53.541Z", + "new_balance":"2838.33", + "value":"-56.81" + } + }, + { + "id":"cae87a6d-15ac-4b2e-816d-658963f40031", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T16:59:19.391Z", + "completed":"2017-03-12T16:59:19.391Z", + "new_balance":"2815.09", + "value":"-23.24" + } + }, + { + "id":"7aff5dfa-498a-44a0-9004-0796475e35ad", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T17:50:29.076Z", + "completed":"2017-03-12T17:50:29.076Z", + "new_balance":"2810.91", + "value":"-4.18" + } + }, + { + "id":"323dc47c-d306-4fe5-823f-c92160a1b710", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T10:26:28.996Z", + "completed":"2017-03-14T10:26:28.996Z", + "new_balance":"2971.72", + "value":"160.81" + } + }, + { + "id":"768d9375-090c-4485-9762-01588329b6f3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T21:22:49.251Z", + "completed":"2017-03-15T21:22:49.251Z", + "new_balance":"3001.99", + "value":"30.27" + } + }, + { + "id":"f3eb806f-0022-41f8-b9f3-c07f6fc14051", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T19:57:45.532Z", + "completed":"2017-03-16T19:57:45.532Z", + "new_balance":"3092.95", + "value":"90.96" + } + }, + { + "id":"0da3f71c-dbba-4e06-908d-6d0ea0c8d98b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T10:40:21.407Z", + "completed":"2017-03-17T10:40:21.407Z", + "new_balance":"3087.47", + "value":"-5.48" + } + }, + { + "id":"0cfa21cc-b122-4db4-978e-9b7006958ac8", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T15:29:38.507Z", + "completed":"2017-03-17T15:29:38.507Z", + "new_balance":"3080.94", + "value":"-6.53" + } + }, + { + "id":"b3f11d0d-b295-4460-b8e3-5621789cb72f", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T14:13:53.750Z", + "completed":"2017-03-19T14:13:53.750Z", + "new_balance":"3128.81", + "value":"47.87" + } + }, + { + "id":"84218334-fb40-4a28-aeba-80350ffa81ef", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T18:47:42.040Z", + "completed":"2017-03-21T18:47:42.040Z", + "new_balance":"3135.65", + "value":"6.84" + } + }, + { + "id":"710ed66b-ec42-4622-ba09-d2f856e5b56e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T19:02:04.423Z", + "completed":"2017-03-21T19:02:04.423Z", + "new_balance":"3128.46", + "value":"-7.19" + } + }, + { + "id":"6a85dab9-bcaa-4646-a727-c7192401e782", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T02:35:59.613Z", + "completed":"2017-03-24T02:35:59.613Z", + "new_balance":"3158.73", + "value":"30.27" + } + }, + { + "id":"48deec8d-a0c7-4db6-8722-97d516de6b7b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T04:22:00.339Z", + "completed":"2017-03-24T04:22:00.339Z", + "new_balance":"3108.51", + "value":"-50.22" + } + }, + { + "id":"69370ce6-7623-44c6-a09a-6e191c5bbc3d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T01:07:46.658Z", + "completed":"2017-03-25T01:07:46.658Z", + "new_balance":"3158.59", + "value":"50.08" + } + }, + { + "id":"f3914b97-f8c3-4c10-9db0-e74227476033", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T21:49:13.052Z", + "completed":"2017-03-25T21:49:13.052Z", + "new_balance":"3089.51", + "value":"-69.08" + } + }, + { + "id":"d89b5412-7264-422e-92df-b1afd179a339", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:34:59.316Z", + "completed":"2017-03-28T16:34:59.316Z", + "new_balance":"3498.33", + "value":"408.82" + } + }, + { + "id":"b445f655-fd60-4eaa-919f-355a86ca6c64", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T22:07:48.338Z", + "completed":"2017-03-28T22:07:48.338Z", + "new_balance":"3659.14", + "value":"160.81" + } + }, + { + "id":"09cbb88c-73f2-44d3-a424-c04f955aa9dd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T11:20:58.915Z", + "completed":"2017-03-30T11:20:58.915Z", + "new_balance":"3680.03", + "value":"20.89" + } + }, + { + "id":"0f4a4ae8-4c6f-4e60-916e-3fd10c88a767", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T14:46:28.588Z", + "completed":"2017-03-30T14:46:28.588Z", + "new_balance":"3710.30", + "value":"30.27" + } + }, + { + "id":"4f765fe9-c329-43f8-a377-4c306a5e4fb2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T00:03:30.994Z", + "completed":"2017-06-01T00:03:30.994Z", + "new_balance":"3413.70", + "value":"-296.60" + } + }, + { + "id":"2260efc9-e794-413f-b8ea-c0b3ac6205e5", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T01:36:28.757Z", + "completed":"2017-06-01T01:36:28.757Z", + "new_balance":"3391.34", + "value":"-22.36" + } + }, + { + "id":"0f5e65ae-a18b-45be-928c-ff6c45d9ce00", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T02:02:55.900Z", + "completed":"2017-06-01T02:02:55.900Z", + "new_balance":"3113.86", + "value":"-277.48" + } + }, + { + "id":"01483b8e-4236-4b5e-8f6a-5be9661369df", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T04:01:22.489Z", + "completed":"2017-06-01T04:01:22.489Z", + "new_balance":"3090.62", + "value":"-23.24" + } + }, + { + "id":"7ce9766c-e706-4320-8d95-be3cd4a2e885", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T05:14:16.448Z", + "completed":"2017-06-01T05:14:16.448Z", + "new_balance":"3033.81", + "value":"-56.81" + } + }, + { + "id":"03a6f096-ae7f-4942-a0cf-727525d3fb8c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T16:42:51.648Z", + "completed":"2017-06-01T16:42:51.648Z", + "new_balance":"3020.71", + "value":"-13.10" + } + }, + { + "id":"e3ca71ec-573a-4feb-a78b-b92d076f2700", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T02:01:37.418Z", + "completed":"2017-06-04T02:01:37.418Z", + "new_balance":"3015.56", + "value":"-5.15" + } + }, + { + "id":"e2c2659a-14fd-45b7-b6cc-4ee5428d68a0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:19:42.586Z", + "completed":"2017-06-04T11:19:42.586Z", + "new_balance":"3011.38", + "value":"-4.18" + } + }, + { + "id":"2f1722a7-3e9d-4c39-b7b8-f5017f6824ae", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T19:46:39.545Z", + "completed":"2017-06-05T19:46:39.545Z", + "new_balance":"2988.14", + "value":"-23.24" + } + }, + { + "id":"6057ea33-7f14-4c23-aa6c-75ef854ce871", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T19:50:45.549Z", + "completed":"2017-06-05T19:50:45.549Z", + "new_balance":"2931.33", + "value":"-56.81" + } + }, + { + "id":"954b4a34-a1ff-44cd-ae58-03e1c8fe7db7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T01:34:48.249Z", + "completed":"2017-06-07T01:34:48.249Z", + "new_balance":"2961.60", + "value":"30.27" + } + }, + { + "id":"65506915-ec29-478c-aa33-43a6f4b5c728", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T07:48:37.950Z", + "completed":"2017-06-07T07:48:37.950Z", + "new_balance":"3052.56", + "value":"90.96" + } + }, + { + "id":"84ae9088-2a0f-48d3-866a-03b52cdcd29b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T09:01:06.487Z", + "completed":"2017-06-07T09:01:06.487Z", + "new_balance":"3213.37", + "value":"160.81" + } + }, + { + "id":"3790bc0a-5c5e-4b43-9dd3-e219430897a3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T20:21:45.534Z", + "completed":"2017-06-07T20:21:45.534Z", + "new_balance":"3206.84", + "value":"-6.53" + } + }, + { + "id":"4036677a-53fd-4111-9004-7e55890db7fd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T09:13:57.281Z", + "completed":"2017-06-11T09:13:57.281Z", + "new_balance":"3201.36", + "value":"-5.48" + } + }, + { + "id":"ca3258ef-62f3-4152-8385-c17a33cc1bdd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T00:47:29.555Z", + "completed":"2017-06-14T00:47:29.555Z", + "new_balance":"3249.23", + "value":"47.87" + } + }, + { + "id":"611118ce-b4da-458e-9a96-acb0cfc1a2f4", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T12:04:08.997Z", + "completed":"2017-06-14T12:04:08.997Z", + "new_balance":"3242.04", + "value":"-7.19" + } + }, + { + "id":"5f2ad244-a0ce-407a-adfa-e932644f4dd7", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T18:07:03.296Z", + "completed":"2017-06-14T18:07:03.296Z", + "new_balance":"3248.88", + "value":"6.84" + } + }, + { + "id":"f7d6ef14-dd8c-4bb1-ac35-ddf6fae471f1", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T07:35:33.296Z", + "completed":"2017-06-16T07:35:33.296Z", + "new_balance":"3279.15", + "value":"30.27" + } + }, + { + "id":"118dc22f-ce20-436a-bb2b-a797c77fe380", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T13:42:35.143Z", + "completed":"2017-06-16T13:42:35.143Z", + "new_balance":"3228.93", + "value":"-50.22" + } + }, + { + "id":"cae154ee-d6be-45f7-b026-d39df16f3a41", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T04:36:48.394Z", + "completed":"2017-06-21T04:36:48.394Z", + "new_balance":"3159.85", + "value":"-69.08" + } + }, + { + "id":"5063ef45-1ebe-4760-b95e-f680943e444a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T13:50:12.971Z", + "completed":"2017-06-21T13:50:12.971Z", + "new_balance":"3320.66", + "value":"160.81" + } + }, + { + "id":"588b4dbb-b290-4450-b2d0-d4fb65467bf2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T22:16:27.833Z", + "completed":"2017-06-21T22:16:27.833Z", + "new_balance":"3370.74", + "value":"50.08" + } + }, + { + "id":"6b32585f-8e13-4b99-af51-d63ddd172ec9", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T23:46:20.189Z", + "completed":"2017-06-21T23:46:20.189Z", + "new_balance":"3779.56", + "value":"408.82" + } + }, + { + "id":"9cb987c2-3c61-4f20-8495-ac4590a683cc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T01:22:34.114Z", + "completed":"2017-06-30T01:22:34.114Z", + "new_balance":"3800.45", + "value":"20.89" + } + }, + { + "id":"247c6a1a-cffe-4178-bc5b-d0ee0b8c91bb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T17:07:14.228Z", + "completed":"2017-06-30T17:07:14.228Z", + "new_balance":"3830.72", + "value":"30.27" + } + }, + { + "id":"c6e72198-7748-41b7-bcf3-d83f3d85778a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T00:22:44.867Z", + "completed":"2017-09-01T00:22:44.867Z", + "new_balance":"3807.48", + "value":"-23.24" + } + }, + { + "id":"32374a92-b446-49d3-8a38-ff5803f7f7b3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T02:07:41.734Z", + "completed":"2017-09-01T02:07:41.734Z", + "new_balance":"3510.88", + "value":"-296.60" + } + }, + { + "id":"79321dbc-68f4-41ad-941b-f0ebfcbafebc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T05:48:28.892Z", + "completed":"2017-09-01T05:48:28.892Z", + "new_balance":"3233.40", + "value":"-277.48" + } + }, + { + "id":"457ae349-e623-40a7-b2b8-8c4763913699", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T07:00:15.485Z", + "completed":"2017-09-01T07:00:15.485Z", + "new_balance":"3176.59", + "value":"-56.81" + } + }, + { + "id":"ccfbd842-b573-40d2-95e4-bb7fc4d239e2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T16:55:14.514Z", + "completed":"2017-09-01T16:55:14.514Z", + "new_balance":"3154.23", + "value":"-22.36" + } + }, + { + "id":"0cdb3ed7-cc57-47f1-bc4b-ca0ea8de3568", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T21:40:28.041Z", + "completed":"2017-09-01T21:40:28.041Z", + "new_balance":"3141.13", + "value":"-13.10" + } + }, + { + "id":"98f63235-3e19-4c7d-bf00-70558ed20ceb", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T10:46:15.072Z", + "completed":"2017-09-12T10:46:15.072Z", + "new_balance":"3136.95", + "value":"-4.18" + } + }, + { + "id":"cb88603c-70d2-4ca8-98be-50bcc405ad5e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T12:13:50.834Z", + "completed":"2017-09-12T12:13:50.834Z", + "new_balance":"3113.71", + "value":"-23.24" + } + }, + { + "id":"3d539071-cd4d-4c27-842e-2dc90c25775c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T13:14:21.425Z", + "completed":"2017-09-12T13:14:21.425Z", + "new_balance":"3056.90", + "value":"-56.81" + } + }, + { + "id":"ae732ad4-51ed-45a8-944c-8290e3e74407", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T15:42:24.434Z", + "completed":"2017-09-12T15:42:24.434Z", + "new_balance":"3051.75", + "value":"-5.15" + } + }, + { + "id":"7b72c0af-e820-4bee-be3d-f728d018f70e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T10:28:31.263Z", + "completed":"2017-09-15T10:28:31.263Z", + "new_balance":"3082.02", + "value":"30.27" + } + }, + { + "id":"7c815fcf-72a9-4b08-8375-c2617bafa6dd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T20:16:26.017Z", + "completed":"2017-09-15T20:16:26.017Z", + "new_balance":"3242.83", + "value":"160.81" + } + }, + { + "id":"f324316b-8717-4df1-84c8-5b20173db449", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T02:00:41.403Z", + "completed":"2017-09-17T02:00:41.403Z", + "new_balance":"3333.79", + "value":"90.96" + } + }, + { + "id":"72149884-5dd1-4341-9aac-317fbdb785dc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T17:32:51.879Z", + "completed":"2017-09-17T17:32:51.879Z", + "new_balance":"3327.26", + "value":"-6.53" + } + }, + { + "id":"8b1a57bf-919f-4081-b650-ab3b2bfaa196", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T19:58:20.286Z", + "completed":"2017-09-17T19:58:20.286Z", + "new_balance":"3321.78", + "value":"-5.48" + } + }, + { + "id":"17748e94-ad4a-4c25-a90a-59a40c573a9a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T18:21:06.182Z", + "completed":"2017-09-19T18:21:06.182Z", + "new_balance":"3369.65", + "value":"47.87" + } + }, + { + "id":"a91633ca-fb1f-48e5-86c5-24a37febd815", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:39:30.596Z", + "completed":"2017-09-21T14:39:30.596Z", + "new_balance":"3376.49", + "value":"6.84" + } + }, + { + "id":"8e1199f1-a239-4857-b1cd-06435f20f4e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:07:46.379Z", + "completed":"2017-09-21T20:07:46.379Z", + "new_balance":"3369.30", + "value":"-7.19" + } + }, + { + "id":"d992147e-fabc-45a0-91e0-0d96a5f749bc", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T18:21:26.054Z", + "completed":"2017-09-24T18:21:26.054Z", + "new_balance":"3319.08", + "value":"-50.22" + } + }, + { + "id":"c96ae328-c614-409a-8abf-63eef1fed5ab", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T21:23:58.723Z", + "completed":"2017-09-24T21:23:58.723Z", + "new_balance":"3349.35", + "value":"30.27" + } + }, + { + "id":"9581d4bd-dc38-4a69-894c-a2c4af92dd25", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T17:10:46.833Z", + "completed":"2017-09-25T17:10:46.833Z", + "new_balance":"3280.27", + "value":"-69.08" + } + }, + { + "id":"c0f38019-6d07-4fe5-9226-7579392e4024", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T18:07:15.084Z", + "completed":"2017-09-25T18:07:15.084Z", + "new_balance":"3330.35", + "value":"50.08" + } + }, + { + "id":"331b55c5-e62a-4693-b429-38061dc503a6", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T09:25:24.520Z", + "completed":"2017-09-28T09:25:24.520Z", + "new_balance":"3739.17", + "value":"408.82" + } + }, + { + "id":"bc6637b8-db1d-4ac6-b76d-58de72eec32c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T20:16:06.530Z", + "completed":"2017-09-28T20:16:06.530Z", + "new_balance":"3899.98", + "value":"160.81" + } + }, + { + "id":"6d652564-6e7d-440b-b522-1c4b8d6edebf", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T19:03:23.765Z", + "completed":"2017-09-30T19:03:23.765Z", + "new_balance":"3920.87", + "value":"20.89" + } + }, + { + "id":"7da5805b-8842-480e-b6d5-b44af270f460", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T21:07:52.722Z", + "completed":"2017-09-30T21:07:52.722Z", + "new_balance":"3951.14", + "value":"30.27" + } + }, + { + "id":"6960f2f0-3bd0-4703-a756-5cfb27ade67a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T03:20:04.893Z", + "completed":"2017-12-01T03:20:04.893Z", + "new_balance":"3894.33", + "value":"-56.81" + } + }, + { + "id":"396141ff-2e53-4667-9334-eb9a6e1769f2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T05:25:19.067Z", + "completed":"2017-12-01T05:25:19.067Z", + "new_balance":"3597.73", + "value":"-296.60" + } + }, + { + "id":"ef0f3acc-5bb5-4ca2-98a7-0d1aabf1b82a", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T12:15:36.548Z", + "completed":"2017-12-01T12:15:36.548Z", + "new_balance":"3584.63", + "value":"-13.10" + } + }, + { + "id":"a4dec51e-4712-4829-8484-235e9706b1ee", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T14:30:50.455Z", + "completed":"2017-12-01T14:30:50.455Z", + "new_balance":"3561.39", + "value":"-23.24" + } + }, + { + "id":"d3dbf03f-947f-4652-ba13-cea2c4476b55", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T16:21:40.049Z", + "completed":"2017-12-01T16:21:40.049Z", + "new_balance":"3283.91", + "value":"-277.48" + } + }, + { + "id":"f9c6b8e1-09f2-442c-961a-b4bbfabd7632", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T19:30:32.411Z", + "completed":"2017-12-01T19:30:32.411Z", + "new_balance":"3261.55", + "value":"-22.36" + } + }, + { + "id":"88cc0b10-1f43-4064-b034-a6e1c1b2a38b", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T12:05:13.066Z", + "completed":"2017-12-04T12:05:13.066Z", + "new_balance":"3257.37", + "value":"-4.18" + } + }, + { + "id":"28da4c78-9c44-47c8-a326-688905115931", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T20:16:38.583Z", + "completed":"2017-12-04T20:16:38.583Z", + "new_balance":"3252.22", + "value":"-5.15" + } + }, + { + "id":"abc4358d-10e8-4d8f-a6bd-6a1995cb6072", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T01:24:28.822Z", + "completed":"2017-12-05T01:24:28.822Z", + "new_balance":"3195.41", + "value":"-56.81" + } + }, + { + "id":"b2907eaf-8244-461c-9bff-c7619ce23670", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T02:38:47.106Z", + "completed":"2017-12-05T02:38:47.106Z", + "new_balance":"3172.17", + "value":"-23.24" + } + }, + { + "id":"bebc35a6-e6f5-419d-81d0-dffd05a73a9e", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:27:20.180Z", + "completed":"2017-12-07T10:27:20.180Z", + "new_balance":"3165.64", + "value":"-6.53" + } + }, + { + "id":"87f5a290-9371-448e-8712-20a07b34fe9c", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T11:10:47.862Z", + "completed":"2017-12-07T11:10:47.862Z", + "new_balance":"3256.60", + "value":"90.96" + } + }, + { + "id":"c7e09a6e-013c-47e5-8eb9-f4b221e44729", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T15:06:23.111Z", + "completed":"2017-12-07T15:06:23.111Z", + "new_balance":"3417.41", + "value":"160.81" + } + }, + { + "id":"a3f7494e-776d-4a4f-bbf1-d95b5f8e5d82", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:39:17.194Z", + "completed":"2017-12-07T21:39:17.194Z", + "new_balance":"3447.68", + "value":"30.27" + } + }, + { + "id":"9bcf93bc-3c18-42f6-867b-8349b0a04702", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T18:31:54.046Z", + "completed":"2017-12-11T18:31:54.046Z", + "new_balance":"3442.20", + "value":"-5.48" + } + }, + { + "id":"ef5af8ba-e5c9-4c2c-99a7-6a0b5bf722ae", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T08:02:17.029Z", + "completed":"2017-12-14T08:02:17.029Z", + "new_balance":"3435.01", + "value":"-7.19" + } + }, + { + "id":"e6d38cf7-f10a-438d-835c-467ce21ac9be", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T09:15:29.892Z", + "completed":"2017-12-14T09:15:29.892Z", + "new_balance":"3441.85", + "value":"6.84" + } + }, + { + "id":"f903ed85-2894-4e1e-9ac4-36ef2f3fa362", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:20:26.209Z", + "completed":"2017-12-14T15:20:26.209Z", + "new_balance":"3489.72", + "value":"47.87" + } + }, + { + "id":"5efcb664-da8c-4c2b-8121-511c22ec5c80", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T05:38:17.633Z", + "completed":"2017-12-16T05:38:17.633Z", + "new_balance":"3519.99", + "value":"30.27" + } + }, + { + "id":"f2a0ef28-405e-4e0f-a61f-951ef9381597", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T06:54:46.035Z", + "completed":"2017-12-16T06:54:46.035Z", + "new_balance":"3469.77", + "value":"-50.22" + } + }, + { + "id":"82ea1931-e413-4413-8d6d-bae1146641d0", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T06:55:56.421Z", + "completed":"2017-12-21T06:55:56.421Z", + "new_balance":"3519.85", + "value":"50.08" + } + }, + { + "id":"5635491f-df4b-4548-a2f9-1e893da4dc45", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T08:21:47.516Z", + "completed":"2017-12-21T08:21:47.516Z", + "new_balance":"3680.66", + "value":"160.81" + } + }, + { + "id":"d20ac5ea-3a6e-459f-bf5d-43622f5cc3e3", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:59:50.933Z", + "completed":"2017-12-21T18:59:50.933Z", + "new_balance":"4089.48", + "value":"408.82" + } + }, + { + "id":"77aa752b-a5df-438a-af10-378c86db0ccd", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T19:18:56.789Z", + "completed":"2017-12-21T19:18:56.789Z", + "new_balance":"4020.40", + "value":"-69.08" + } + }, + { + "id":"5b55af8a-a34e-4c8a-93bc-aea2c9e75ab2", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T02:25:25.500Z", + "completed":"2017-12-30T02:25:25.500Z", + "new_balance":"4050.67", + "value":"30.27" + } + }, + { + "id":"bfe2c5cf-a411-4884-8978-cf87d02bb46d", + "this_account":{ + "id":"c27283e8-58a7-4174-abb6-049e24b4016f", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T07:26:06.628Z", + "completed":"2017-12-30T07:26:06.628Z", + "new_balance":"4071.56", + "value":"20.89" + } + }, + { + "id":"69c552bb-747f-4931-92f9-d89b2cba2524", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-01-01T02:01:50.118Z", + "completed":"2016-01-01T02:01:50.118Z", + "new_balance":"7338.69", + "value":"-58.23" + } + }, + { + "id":"9d70b3f0-148e-4fbb-9f03-6f2fef53c2ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-01T06:09:10.431Z", + "completed":"2016-01-01T06:09:10.431Z", + "new_balance":"7336.37", + "value":"-2.32" + } + }, + { + "id":"7a8b27ec-5887-4ca4-b827-2155ff025690", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T16:29:01.574Z", + "completed":"2016-01-01T16:29:01.574Z", + "new_balance":"7332.93", + "value":"-3.44" + } + }, + { + "id":"3b7cdf9a-7c88-4db8-a918-66a98d3ca9ec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T19:06:31.719Z", + "completed":"2016-01-01T19:06:31.719Z", + "new_balance":"7317.68", + "value":"-15.25" + } + }, + { + "id":"3806af56-5495-4d1f-9932-ca2b55375d6d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-01T23:48:15.620Z", + "completed":"2016-01-01T23:48:15.620Z", + "new_balance":"7312.53", + "value":"-5.15" + } + }, + { + "id":"fdebdcf9-c675-433e-a105-226038620eea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-01-01T23:50:27.057Z", + "completed":"2016-01-01T23:50:27.057Z", + "new_balance":"7309.09", + "value":"-3.44" + } + }, + { + "id":"7ab790b6-fc8d-4f78-8fd7-e9ac218966d7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-02T04:18:10.007Z", + "completed":"2016-01-02T04:18:10.007Z", + "new_balance":"7299.40", + "value":"-9.69" + } + }, + { + "id":"26f85c1a-fe14-43ef-b63c-ee10d99b34a4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-01-02T20:53:07.685Z", + "completed":"2016-01-02T20:53:07.685Z", + "new_balance":"7292.30", + "value":"-7.10" + } + }, + { + "id":"0f3a8479-bd06-4b81-9a44-ba8261819093", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-04T14:58:46.152Z", + "completed":"2016-01-04T14:58:46.152Z", + "new_balance":"7288.52", + "value":"-3.78" + } + }, + { + "id":"75f78c1d-302d-419f-b043-fcf1f849a6b4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-04T18:19:33.142Z", + "completed":"2016-01-04T18:19:33.142Z", + "new_balance":"7285.61", + "value":"-2.91" + } + }, + { + "id":"8e75f583-494d-4934-b4f7-c23b2c558799", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-07T19:16:38.525Z", + "completed":"2016-01-07T19:16:38.525Z", + "new_balance":"7278.42", + "value":"-7.19" + } + }, + { + "id":"364b4611-fc68-4ce2-8c12-1f226ef0dd4c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-09T07:42:23.300Z", + "completed":"2016-01-09T07:42:23.300Z", + "new_balance":"7277.96", + "value":"-0.46" + } + }, + { + "id":"5617a9b0-1b55-4c3a-9c59-2ea270c03c43", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-01-10T17:24:08.037Z", + "completed":"2016-01-10T17:24:08.037Z", + "new_balance":"7275.28", + "value":"-2.68" + } + }, + { + "id":"e4cf37fa-56e7-4fc4-8928-a2e57304b5d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-12T05:52:28.177Z", + "completed":"2016-01-12T05:52:28.177Z", + "new_balance":"7272.06", + "value":"-3.22" + } + }, + { + "id":"c2d1075d-ff7d-40bb-8c1c-66f005f3acf1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-15T00:41:33.385Z", + "completed":"2016-01-15T00:41:33.385Z", + "new_balance":"7270.53", + "value":"-1.53" + } + }, + { + "id":"850e251c-483d-4bf2-b3a6-e15d9bc3d9d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-15T20:09:00.501Z", + "completed":"2016-01-15T20:09:00.501Z", + "new_balance":"7269.63", + "value":"-0.90" + } + }, + { + "id":"a0765cd8-7c0f-4017-b170-8ca83c64d593", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-17T03:32:36.297Z", + "completed":"2016-01-17T03:32:36.297Z", + "new_balance":"7267.52", + "value":"-2.11" + } + }, + { + "id":"424e4f58-6313-4ead-bab7-f40f831fa90c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-01-19T17:40:21.659Z", + "completed":"2016-01-19T17:40:21.659Z", + "new_balance":"7240.02", + "value":"-27.50" + } + }, + { + "id":"18afe271-2dbe-4be4-8a40-80ec70b78368", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-01-20T07:32:14.229Z", + "completed":"2016-01-20T07:32:14.229Z", + "new_balance":"7239.58", + "value":"-0.44" + } + }, + { + "id":"b1b896ef-6d1d-4e45-943d-93f8724d8b7f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-01-22T15:36:43.228Z", + "completed":"2016-01-22T15:36:43.228Z", + "new_balance":"7238.47", + "value":"-1.11" + } + }, + { + "id":"4986ea7a-ef79-422e-aee0-519a8b4029eb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-22T15:47:00.842Z", + "completed":"2016-01-22T15:47:00.842Z", + "new_balance":"7233.99", + "value":"-4.48" + } + }, + { + "id":"cee00798-2f69-4cec-a958-ef671d87310f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-24T16:36:07.769Z", + "completed":"2016-01-24T16:36:07.769Z", + "new_balance":"7231.18", + "value":"-2.81" + } + }, + { + "id":"95c08ff6-ac80-460d-b455-05805a5b251b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-01-25T08:58:17.419Z", + "completed":"2016-01-25T08:58:17.419Z", + "new_balance":"7230.74", + "value":"-0.44" + } + }, + { + "id":"36f37f77-458b-4ef0-aeb9-bafe27660eba", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-25T14:57:06.862Z", + "completed":"2016-01-25T14:57:06.862Z", + "new_balance":"7225.34", + "value":"-5.40" + } + }, + { + "id":"ebb972ea-cd36-4b41-85c1-cd04960d23c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-26T00:10:33.265Z", + "completed":"2016-01-26T00:10:33.265Z", + "new_balance":"7219.52", + "value":"-5.82" + } + }, + { + "id":"dc2ca397-eaac-41dd-95a3-fb44a7f6496c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-01T02:32:49.069Z", + "completed":"2016-02-01T02:32:49.069Z", + "new_balance":"7214.37", + "value":"-5.15" + } + }, + { + "id":"8e7255c2-8396-4996-927d-d8c52d3f3770", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T03:14:50.782Z", + "completed":"2016-02-01T03:14:50.782Z", + "new_balance":"7199.12", + "value":"-15.25" + } + }, + { + "id":"899f9b27-624d-4302-bd9b-10be1bf2a680", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-02-01T08:17:20.652Z", + "completed":"2016-02-01T08:17:20.652Z", + "new_balance":"7140.89", + "value":"-58.23" + } + }, + { + "id":"b50e26a2-7e70-4b4f-911a-c62fc29fb7f6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-01T10:48:51.149Z", + "completed":"2016-02-01T10:48:51.149Z", + "new_balance":"7138.57", + "value":"-2.32" + } + }, + { + "id":"f8ab76b1-5fcc-4b5b-b95b-98581c86bd8d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-02-01T13:43:18.354Z", + "completed":"2016-02-01T13:43:18.354Z", + "new_balance":"7135.13", + "value":"-3.44" + } + }, + { + "id":"c1434ba8-3bd5-4a8d-ad80-b6acb01d0e93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T15:38:16.985Z", + "completed":"2016-02-01T15:38:16.985Z", + "new_balance":"7317.83", + "value":"182.70" + } + }, + { + "id":"412db019-ffbc-41fa-9d55-4a7010ec8324", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-02T02:56:05.308Z", + "completed":"2016-02-02T02:56:05.308Z", + "new_balance":"7315.73", + "value":"-2.10" + } + }, + { + "id":"d2e750d2-58df-4917-9097-d0ccc67e49ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-02-02T06:33:29.275Z", + "completed":"2016-02-02T06:33:29.275Z", + "new_balance":"7308.63", + "value":"-7.10" + } + }, + { + "id":"a368ae02-62e3-4b6f-a348-dc4792f6ce35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-02T10:15:42.058Z", + "completed":"2016-02-02T10:15:42.058Z", + "new_balance":"7307.48", + "value":"-1.15" + } + }, + { + "id":"fa35ceaa-9248-409f-81fe-59f525ad92b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-02-03T02:45:19.518Z", + "completed":"2016-02-03T02:45:19.518Z", + "new_balance":"7305.08", + "value":"-2.40" + } + }, + { + "id":"2ea2fa7f-6b46-4e25-9afd-372360080de6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-02-03T03:27:46.284Z", + "completed":"2016-02-03T03:27:46.284Z", + "new_balance":"7301.75", + "value":"-3.33" + } + }, + { + "id":"fda7b63e-2962-4618-a543-058e0af39f16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-03T09:34:32.240Z", + "completed":"2016-02-03T09:34:32.240Z", + "new_balance":"7299.25", + "value":"-2.50" + } + }, + { + "id":"923e0083-c990-482d-9f5e-405e5c69416a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-06T20:29:13.883Z", + "completed":"2016-02-06T20:29:13.883Z", + "new_balance":"7292.06", + "value":"-7.19" + } + }, + { + "id":"df82cc9f-0b8f-42f2-aab6-403f0e1ff10f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-08T08:37:43.129Z", + "completed":"2016-02-08T08:37:43.129Z", + "new_balance":"7291.58", + "value":"-0.48" + } + }, + { + "id":"36a1563b-d684-40da-8031-f925e5543f56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-08T09:57:45.095Z", + "completed":"2016-02-08T09:57:45.095Z", + "new_balance":"7289.13", + "value":"-2.45" + } + }, + { + "id":"6ebb6449-f773-4c71-891f-136822dabd68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-08T21:51:14.207Z", + "completed":"2016-02-08T21:51:14.207Z", + "new_balance":"7286.10", + "value":"-3.03" + } + }, + { + "id":"4c9d3045-53aa-482a-9fa1-24cf688bc480", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T00:32:50.990Z", + "completed":"2016-02-09T00:32:50.990Z", + "new_balance":"7282.62", + "value":"-3.48" + } + }, + { + "id":"b0f5eea7-9fd2-4503-b2cb-0c07a2f812f0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-02-09T12:07:06.777Z", + "completed":"2016-02-09T12:07:06.777Z", + "new_balance":"7279.48", + "value":"-3.14" + } + }, + { + "id":"22666cc4-3215-415e-a4c6-694d02cd61e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-02-12T14:57:20.373Z", + "completed":"2016-02-12T14:57:20.373Z", + "new_balance":"7279.01", + "value":"-0.47" + } + }, + { + "id":"1be18e3d-c372-48a5-b5ee-ed8299960b87", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-02-13T14:08:40.398Z", + "completed":"2016-02-13T14:08:40.398Z", + "new_balance":"7278.24", + "value":"-0.77" + } + }, + { + "id":"61c25e6b-4c87-439f-9e44-0c2f95d00c52", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-13T15:16:02.258Z", + "completed":"2016-02-13T15:16:02.258Z", + "new_balance":"7271.81", + "value":"-6.43" + } + }, + { + "id":"b15a446f-fefb-43ae-92f9-7669fe28cf8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-02-13T20:38:40.276Z", + "completed":"2016-02-13T20:38:40.276Z", + "new_balance":"7275.89", + "value":"4.08" + } + }, + { + "id":"27c4bcef-1c71-4c5d-8c35-e517df4f83a7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T14:27:22.981Z", + "completed":"2016-02-14T14:27:22.981Z", + "new_balance":"7271.77", + "value":"-4.12" + } + }, + { + "id":"5e00f3cc-bad6-4e49-a9e0-02db90b1544f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-15T02:34:42.119Z", + "completed":"2016-02-15T02:34:42.119Z", + "new_balance":"7269.22", + "value":"-2.55" + } + }, + { + "id":"41e7b1fd-3074-4151-85f4-6ff666763c9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-28T01:06:07.681Z", + "completed":"2016-02-28T01:06:07.681Z", + "new_balance":"7266.28", + "value":"-2.94" + } + }, + { + "id":"2ba53034-7d07-42e0-a329-fbd4c9d20678", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T01:32:58.479Z", + "completed":"2016-03-01T01:32:58.479Z", + "new_balance":"7261.13", + "value":"-5.15" + } + }, + { + "id":"2f14e375-3318-4769-b735-b08fd3de6046", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T03:57:28.847Z", + "completed":"2016-03-01T03:57:28.847Z", + "new_balance":"7443.83", + "value":"182.70" + } + }, + { + "id":"43642818-880f-4abf-8c06-02b76c7ef5c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T08:52:57.699Z", + "completed":"2016-03-01T08:52:57.699Z", + "new_balance":"7428.58", + "value":"-15.25" + } + }, + { + "id":"2b427822-2d2e-4719-8dbc-2ef89ed4bfbe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-03-01T18:27:52.032Z", + "completed":"2016-03-01T18:27:52.032Z", + "new_balance":"7370.35", + "value":"-58.23" + } + }, + { + "id":"3466dd40-bae3-438c-b1ed-9d6f0e86eb4c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-01T22:07:41.052Z", + "completed":"2016-03-01T22:07:41.052Z", + "new_balance":"7368.03", + "value":"-2.32" + } + }, + { + "id":"12f1661f-a456-400d-8c2f-ec291edbcf16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-03-01T22:13:07.530Z", + "completed":"2016-03-01T22:13:07.530Z", + "new_balance":"7364.59", + "value":"-3.44" + } + }, + { + "id":"f52aceb6-62ad-4373-8b17-f1bd047414e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-03-02T21:39:41.508Z", + "completed":"2016-03-02T21:39:41.508Z", + "new_balance":"7357.49", + "value":"-7.10" + } + }, + { + "id":"53015d1b-0ad6-4298-9830-5fd40bf24337", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T03:53:44.524Z", + "completed":"2016-03-04T03:53:44.524Z", + "new_balance":"7354.19", + "value":"-3.30" + } + }, + { + "id":"d8722c80-9452-4278-b8a2-446c8b03a9f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-04T12:13:43.859Z", + "completed":"2016-03-04T12:13:43.859Z", + "new_balance":"7353.43", + "value":"-0.76" + } + }, + { + "id":"ba2f957f-8a7e-4c8c-a3c1-de6038244193", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T15:05:43.742Z", + "completed":"2016-03-04T15:05:43.742Z", + "new_balance":"7346.13", + "value":"-7.30" + } + }, + { + "id":"6bb81bc0-858d-4491-8dce-102f96b20943", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-03-04T21:40:30.991Z", + "completed":"2016-03-04T21:40:30.991Z", + "new_balance":"7344.88", + "value":"-1.25" + } + }, + { + "id":"04cab6de-cc77-49e5-925b-f90ffc3b59c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-05T03:19:41.510Z", + "completed":"2016-03-05T03:19:41.510Z", + "new_balance":"7340.84", + "value":"-4.04" + } + }, + { + "id":"e1cbbd3b-e3ed-4a74-98c7-ddab294ad579", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-05T16:02:51.121Z", + "completed":"2016-03-05T16:02:51.121Z", + "new_balance":"7340.44", + "value":"-0.40" + } + }, + { + "id":"7eade888-2c33-41b5-bc5a-091859b6574d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T01:15:18.093Z", + "completed":"2016-03-06T01:15:18.093Z", + "new_balance":"7333.14", + "value":"-7.30" + } + }, + { + "id":"beeb8c1e-4696-4b6d-97f1-826283fc14d6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-06T18:12:15.630Z", + "completed":"2016-03-06T18:12:15.630Z", + "new_balance":"7327.87", + "value":"-5.27" + } + }, + { + "id":"dea72211-5340-4e01-878e-9619d93c8503", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T18:54:43.349Z", + "completed":"2016-03-07T18:54:43.349Z", + "new_balance":"7323.60", + "value":"-4.27" + } + }, + { + "id":"4da880e6-9829-45c5-9e65-5acb5e11ce41", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T06:22:33.433Z", + "completed":"2016-03-08T06:22:33.433Z", + "new_balance":"7318.33", + "value":"-5.27" + } + }, + { + "id":"e94a03fd-95d6-48a4-b89a-a6b20e3afca3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-09T22:18:15.929Z", + "completed":"2016-03-09T22:18:15.929Z", + "new_balance":"7317.79", + "value":"-0.54" + } + }, + { + "id":"eb8d441e-0f20-45f5-841b-6d1eb607bdc2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T15:58:25.006Z", + "completed":"2016-03-10T15:58:25.006Z", + "new_balance":"7311.47", + "value":"-6.32" + } + }, + { + "id":"533b206b-bef7-40b3-9842-b8cf0fdaaab0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T13:02:58.428Z", + "completed":"2016-03-11T13:02:58.428Z", + "new_balance":"7310.70", + "value":"-0.77" + } + }, + { + "id":"ca7961dd-e3c4-4c3e-a1a6-e8419b85bcc5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-12T11:20:52.191Z", + "completed":"2016-03-12T11:20:52.191Z", + "new_balance":"7308.45", + "value":"-2.25" + } + }, + { + "id":"240e6d9c-60eb-47a3-a990-6e962e331a33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-12T15:03:05.387Z", + "completed":"2016-03-12T15:03:05.387Z", + "new_balance":"7307.40", + "value":"-1.05" + } + }, + { + "id":"32d806af-c1bb-4ffd-bc9d-bfee18d1a559", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T12:10:12.644Z", + "completed":"2016-03-13T12:10:12.644Z", + "new_balance":"7303.14", + "value":"-4.26" + } + }, + { + "id":"9a3bfcc1-de21-418f-b975-0d51407faf94", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-14T14:16:02.778Z", + "completed":"2016-03-14T14:16:02.778Z", + "new_balance":"7302.62", + "value":"-0.52" + } + }, + { + "id":"856ec28f-16a2-43ca-8884-4364f354b9e9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-16T04:30:13.820Z", + "completed":"2016-03-16T04:30:13.820Z", + "new_balance":"7297.80", + "value":"-4.82" + } + }, + { + "id":"2af7dd86-a9d2-4427-9f0f-608072f4d1b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-16T21:45:19.642Z", + "completed":"2016-03-16T21:45:19.642Z", + "new_balance":"7288.01", + "value":"-9.79" + } + }, + { + "id":"b75f905f-873d-455b-b233-a4366efcbe75", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-18T03:07:10.390Z", + "completed":"2016-03-18T03:07:10.390Z", + "new_balance":"7287.49", + "value":"-0.52" + } + }, + { + "id":"f8aac6b5-4b2a-4e3a-a3ab-1658981a3d1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T04:06:29.946Z", + "completed":"2016-03-19T04:06:29.946Z", + "new_balance":"7283.34", + "value":"-4.15" + } + }, + { + "id":"8f662ca3-135d-4017-90ac-61b3b15cb916", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-03-19T07:11:26.320Z", + "completed":"2016-03-19T07:11:26.320Z", + "new_balance":"7277.02", + "value":"-6.32" + } + }, + { + "id":"9e945d26-0570-4539-a062-0a612a75f678", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-19T23:39:26.821Z", + "completed":"2016-03-19T23:39:26.821Z", + "new_balance":"7272.73", + "value":"-4.29" + } + }, + { + "id":"29a6c038-5d54-428e-b37b-9a838cb2ee35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-20T14:04:22.242Z", + "completed":"2016-03-20T14:04:22.242Z", + "new_balance":"7267.57", + "value":"-5.16" + } + }, + { + "id":"fbadbf8f-39da-4371-8cfc-e0a5635d0c72", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-03-20T14:35:43.580Z", + "completed":"2016-03-20T14:35:43.580Z", + "new_balance":"7260.61", + "value":"-6.96" + } + }, + { + "id":"7f37b460-0320-4305-8982-4227159c5903", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-21T12:54:51.268Z", + "completed":"2016-03-21T12:54:51.268Z", + "new_balance":"7260.02", + "value":"-0.59" + } + }, + { + "id":"c977abf9-b9e4-4bb9-9534-ec80d12a1ebc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-03-21T20:59:36.213Z", + "completed":"2016-03-21T20:59:36.213Z", + "new_balance":"7259.26", + "value":"-0.76" + } + }, + { + "id":"93309ee7-7434-43fa-b078-4fe475859b49", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-03-23T12:49:26.272Z", + "completed":"2016-03-23T12:49:26.272Z", + "new_balance":"7258.35", + "value":"-0.91" + } + }, + { + "id":"26d016b0-c127-4107-a08b-8caeee5c6757", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-03-23T19:29:35.626Z", + "completed":"2016-03-23T19:29:35.626Z", + "new_balance":"7253.74", + "value":"-4.61" + } + }, + { + "id":"9404de85-47d2-41f4-a428-614850263b31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-24T13:04:41.032Z", + "completed":"2016-03-24T13:04:41.032Z", + "new_balance":"7250.19", + "value":"-3.55" + } + }, + { + "id":"0e29cf36-3d76-4ec3-b251-33301308fb1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-25T22:19:52.645Z", + "completed":"2016-03-25T22:19:52.645Z", + "new_balance":"7247.13", + "value":"-3.06" + } + }, + { + "id":"16718a45-e59e-4d61-9fd1-615b97c4d047", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-03-25T23:58:27.302Z", + "completed":"2016-03-25T23:58:27.302Z", + "new_balance":"7245.82", + "value":"-1.31" + } + }, + { + "id":"5fb4e478-2e70-4e84-9bfa-a1f2bb56a753", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-27T16:03:51.078Z", + "completed":"2016-03-27T16:03:51.078Z", + "new_balance":"7218.32", + "value":"-27.50" + } + }, + { + "id":"4265bfd0-91b8-4012-af14-90d348df3211", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-28T14:39:41.847Z", + "completed":"2016-03-28T14:39:41.847Z", + "new_balance":"7215.58", + "value":"-2.74" + } + }, + { + "id":"ea724813-3d6a-41f2-a9e3-ffa9f2666b39", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-04-01T04:59:24.610Z", + "completed":"2016-04-01T04:59:24.610Z", + "new_balance":"7157.35", + "value":"-58.23" + } + }, + { + "id":"bb357275-82dc-4c4a-b877-93f3f3bcd47b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T09:20:52.143Z", + "completed":"2016-04-01T09:20:52.143Z", + "new_balance":"7152.20", + "value":"-5.15" + } + }, + { + "id":"af6285ae-b267-4d4e-a8f5-133d94718940", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T13:14:18.158Z", + "completed":"2016-04-01T13:14:18.158Z", + "new_balance":"7136.95", + "value":"-15.25" + } + }, + { + "id":"019bb58e-d46a-4917-a77e-74f98b702c29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T18:26:49.507Z", + "completed":"2016-04-01T18:26:49.507Z", + "new_balance":"7134.63", + "value":"-2.32" + } + }, + { + "id":"7d1f2743-2a97-4caa-be65-3d1c3ae9d5be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-04-02T10:11:13.900Z", + "completed":"2016-04-02T10:11:13.900Z", + "new_balance":"7127.53", + "value":"-7.10" + } + }, + { + "id":"de16e3a8-aeaf-4100-9f8c-7e90ad8ade35", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-02T16:57:44.405Z", + "completed":"2016-04-02T16:57:44.405Z", + "new_balance":"7117.84", + "value":"-9.69" + } + }, + { + "id":"a191398c-7e4f-4600-9ec6-1d484ea698de", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T02:17:55.226Z", + "completed":"2016-04-03T02:17:55.226Z", + "new_balance":"7114.06", + "value":"-3.78" + } + }, + { + "id":"a708cae6-edc6-473c-8cfb-8f1de5888f27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T05:12:36.278Z", + "completed":"2016-04-03T05:12:36.278Z", + "new_balance":"7122.00", + "value":"7.94" + } + }, + { + "id":"4cf033f3-a165-4b9a-b173-b1e0a52fae26", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T06:21:29.676Z", + "completed":"2016-04-03T06:21:29.676Z", + "new_balance":"7118.22", + "value":"-3.78" + } + }, + { + "id":"f05282b6-6aec-4876-9068-aae770dd9573", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T10:13:45.708Z", + "completed":"2016-04-03T10:13:45.708Z", + "new_balance":"7130.56", + "value":"12.34" + } + }, + { + "id":"93662aa7-4ce8-428e-b714-ec3180212515", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-03T11:13:33.479Z", + "completed":"2016-04-03T11:13:33.479Z", + "new_balance":"7127.65", + "value":"-2.91" + } + }, + { + "id":"5ddd0261-bae2-4e98-a5ed-52575665720e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-04T07:55:14.431Z", + "completed":"2016-04-04T07:55:14.431Z", + "new_balance":"7120.46", + "value":"-7.19" + } + }, + { + "id":"2e372ef5-40da-41c4-a85d-6eb08e4ee577", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-04-05T18:04:06.521Z", + "completed":"2016-04-05T18:04:06.521Z", + "new_balance":"7117.78", + "value":"-2.68" + } + }, + { + "id":"edfd0a53-1148-4542-b745-9f0489a05b82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-05T22:56:49.220Z", + "completed":"2016-04-05T22:56:49.220Z", + "new_balance":"7117.32", + "value":"-0.46" + } + }, + { + "id":"9368dda7-03fe-4486-8d23-d795132ca22b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-07T03:06:13.325Z", + "completed":"2016-04-07T03:06:13.325Z", + "new_balance":"7114.10", + "value":"-3.22" + } + }, + { + "id":"910a5c4d-7507-490c-b9e1-ae16ef1d11a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-07T12:44:32.914Z", + "completed":"2016-04-07T12:44:32.914Z", + "new_balance":"7112.57", + "value":"-1.53" + } + }, + { + "id":"285d5a42-d4de-4bbe-8e37-d50ac633e50e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-08T22:44:59.907Z", + "completed":"2016-04-08T22:44:59.907Z", + "new_balance":"7111.67", + "value":"-0.90" + } + }, + { + "id":"cecbf91f-d0d7-477f-a322-0f328ecd3299", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-04-09T02:20:04.427Z", + "completed":"2016-04-09T02:20:04.427Z", + "new_balance":"7111.23", + "value":"-0.44" + } + }, + { + "id":"7d25f379-2340-42e0-b976-6758f64a4804", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-09T15:08:53.677Z", + "completed":"2016-04-09T15:08:53.677Z", + "new_balance":"7109.12", + "value":"-2.11" + } + }, + { + "id":"fcf71c36-dfe3-44e1-b8f7-c0fa87ae8b7d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-04-09T19:02:08.912Z", + "completed":"2016-04-09T19:02:08.912Z", + "new_balance":"7081.62", + "value":"-27.50" + } + }, + { + "id":"67b47132-df91-4b8e-b0d2-f1bd9916ffc9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T05:34:55.890Z", + "completed":"2016-04-10T05:34:55.890Z", + "new_balance":"7077.14", + "value":"-4.48" + } + }, + { + "id":"501a1c79-bac4-4a9c-a981-5183c45c9c4f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-04-17T09:03:17.375Z", + "completed":"2016-04-17T09:03:17.375Z", + "new_balance":"7076.03", + "value":"-1.11" + } + }, + { + "id":"fa8c1600-31a7-44c0-80a3-061098817432", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-18T10:30:17.017Z", + "completed":"2016-04-18T10:30:17.017Z", + "new_balance":"7073.22", + "value":"-2.81" + } + }, + { + "id":"2a2e063b-3e1c-4a0c-ac3f-133d058d213f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-25T00:07:54.523Z", + "completed":"2016-04-25T00:07:54.523Z", + "new_balance":"7067.82", + "value":"-5.40" + } + }, + { + "id":"740894ae-fce1-4c6f-8ff9-5f8ada4bdeef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-04-26T03:01:58.247Z", + "completed":"2016-04-26T03:01:58.247Z", + "new_balance":"7067.38", + "value":"-0.44" + } + }, + { + "id":"edb5ea2c-1920-4090-a498-693d1f0dc42a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-26T22:14:51.787Z", + "completed":"2016-04-26T22:14:51.787Z", + "new_balance":"7061.56", + "value":"-5.82" + } + }, + { + "id":"46051f04-3610-40d5-90ea-462d1cac118e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-05-02T01:28:31.401Z", + "completed":"2016-05-02T01:28:31.401Z", + "new_balance":"7054.46", + "value":"-7.10" + } + }, + { + "id":"320dab75-f720-4973-8b6f-be936dffa960", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-02T07:55:55.629Z", + "completed":"2016-05-02T07:55:55.629Z", + "new_balance":"7053.31", + "value":"-1.15" + } + }, + { + "id":"c4276231-9bd1-490c-8091-61a8e914da50", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-02T08:16:32.281Z", + "completed":"2016-05-02T08:16:32.281Z", + "new_balance":"7236.01", + "value":"182.70" + } + }, + { + "id":"c3c2d21f-ac89-4ce0-8d66-dbea56b2f4f4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:37:49.731Z", + "completed":"2016-05-02T11:37:49.731Z", + "new_balance":"7230.86", + "value":"-5.15" + } + }, + { + "id":"7a3a464b-9414-4efa-bd19-90dbc13cf867", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-05-02T16:46:34.858Z", + "completed":"2016-05-02T16:46:34.858Z", + "new_balance":"7172.63", + "value":"-58.23" + } + }, + { + "id":"8e2ea0de-6208-4c46-ae19-9a6121222870", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-05-02T16:48:55.859Z", + "completed":"2016-05-02T16:48:55.859Z", + "new_balance":"7169.19", + "value":"-3.44" + } + }, + { + "id":"db61442b-28f4-4ab4-80f5-689ae3b49582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T18:37:57.224Z", + "completed":"2016-05-02T18:37:57.224Z", + "new_balance":"7153.94", + "value":"-15.25" + } + }, + { + "id":"441b5678-1195-4360-ab64-c9e9ed3e4a27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-02T21:38:14.719Z", + "completed":"2016-05-02T21:38:14.719Z", + "new_balance":"7151.62", + "value":"-2.32" + } + }, + { + "id":"74bd25e1-0f7c-47b5-be54-33dda6bbbf93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-03T00:33:37.735Z", + "completed":"2016-05-03T00:33:37.735Z", + "new_balance":"7149.52", + "value":"-2.10" + } + }, + { + "id":"49195a70-870c-4654-a9e2-bcd6764e32c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-03T22:47:16.216Z", + "completed":"2016-05-03T22:47:16.216Z", + "new_balance":"7147.02", + "value":"-2.50" + } + }, + { + "id":"2e26f3d0-c0e2-4741-b06a-20cd32cb78c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-05-04T03:36:45.911Z", + "completed":"2016-05-04T03:36:45.911Z", + "new_balance":"7143.69", + "value":"-3.33" + } + }, + { + "id":"d37c4c1d-b210-4449-9f1d-2c9f10f94915", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-05-04T13:44:10.721Z", + "completed":"2016-05-04T13:44:10.721Z", + "new_balance":"7141.29", + "value":"-2.40" + } + }, + { + "id":"b2269083-a1da-4dce-86a0-1abd9553ddb3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-05T14:03:42.965Z", + "completed":"2016-05-05T14:03:42.965Z", + "new_balance":"7134.10", + "value":"-7.19" + } + }, + { + "id":"464dec61-99c8-414a-b99b-be7c2193d30c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-07T09:00:06.782Z", + "completed":"2016-05-07T09:00:06.782Z", + "new_balance":"7133.62", + "value":"-0.48" + } + }, + { + "id":"0aad2b62-b5ed-4066-ab50-d1237326a68a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-07T22:34:17.071Z", + "completed":"2016-05-07T22:34:17.071Z", + "new_balance":"7130.59", + "value":"-3.03" + } + }, + { + "id":"37a37e86-8b17-4768-b18c-f542ff549f08", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-05-12T17:33:23.539Z", + "completed":"2016-05-12T17:33:23.539Z", + "new_balance":"7127.45", + "value":"-3.14" + } + }, + { + "id":"fb18e440-8867-40ba-b7c9-415679ebbef1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-12T23:31:22.019Z", + "completed":"2016-05-12T23:31:22.019Z", + "new_balance":"7125.00", + "value":"-2.45" + } + }, + { + "id":"600a8c68-63a1-4f2b-b825-34fdc05c153d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T01:29:29.173Z", + "completed":"2016-05-14T01:29:29.173Z", + "new_balance":"7121.52", + "value":"-3.48" + } + }, + { + "id":"e24321ed-87d2-4f34-a7a3-4d89d0439991", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-05-16T11:11:11.310Z", + "completed":"2016-05-16T11:11:11.310Z", + "new_balance":"7121.05", + "value":"-0.47" + } + }, + { + "id":"0b801f53-d421-494d-9a2f-9ded9486ef7c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-05-18T13:24:42.993Z", + "completed":"2016-05-18T13:24:42.993Z", + "new_balance":"7120.28", + "value":"-0.77" + } + }, + { + "id":"ff0d6748-ce22-4845-9ab0-c7960b661d63", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-05-20T19:20:23.641Z", + "completed":"2016-05-20T19:20:23.641Z", + "new_balance":"7124.36", + "value":"4.08" + } + }, + { + "id":"a5a07764-51e3-42cd-8e0f-164188954a33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-21T16:23:03.723Z", + "completed":"2016-05-21T16:23:03.723Z", + "new_balance":"7117.93", + "value":"-6.43" + } + }, + { + "id":"a587576c-2726-44b5-819a-8cd04d2a82a7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-21T19:21:32.174Z", + "completed":"2016-05-21T19:21:32.174Z", + "new_balance":"7113.81", + "value":"-4.12" + } + }, + { + "id":"50e8404a-bc20-484d-9e49-8c5c4cde7aaa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T01:34:01.422Z", + "completed":"2016-05-27T01:34:01.422Z", + "new_balance":"7110.87", + "value":"-2.94" + } + }, + { + "id":"4f9be786-3df0-4b87-bf34-caea93bebf17", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-27T20:34:51.111Z", + "completed":"2016-05-27T20:34:51.111Z", + "new_balance":"7108.32", + "value":"-2.55" + } + }, + { + "id":"69fdd4a5-4750-4ab6-90df-3a648a73f0f3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T00:34:17.338Z", + "completed":"2016-06-01T00:34:17.338Z", + "new_balance":"7093.07", + "value":"-15.25" + } + }, + { + "id":"e59f3fb5-b9b8-4bd7-9669-6263244d11b8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-06-01T03:10:48.841Z", + "completed":"2016-06-01T03:10:48.841Z", + "new_balance":"7089.63", + "value":"-3.44" + } + }, + { + "id":"b46e03ba-5375-498a-9074-446055dd4d1c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T09:51:11.949Z", + "completed":"2016-06-01T09:51:11.949Z", + "new_balance":"7084.48", + "value":"-5.15" + } + }, + { + "id":"b4701b13-1a95-4935-88b2-b5be2d749c07", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T11:26:07.317Z", + "completed":"2016-06-01T11:26:07.317Z", + "new_balance":"7082.16", + "value":"-2.32" + } + }, + { + "id":"0f160db0-bacb-4832-8121-ac0e4c0dd3ab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-06-01T15:44:57.677Z", + "completed":"2016-06-01T15:44:57.677Z", + "new_balance":"7023.93", + "value":"-58.23" + } + }, + { + "id":"8d9ccb0c-8e4c-4ae3-9d52-92e49bf9f8d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-06-01T23:40:36.370Z", + "completed":"2016-06-01T23:40:36.370Z", + "new_balance":"7206.63", + "value":"182.70" + } + }, + { + "id":"fe8ca9ee-e0bb-4366-82cc-db94d7332572", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T06:57:11.956Z", + "completed":"2016-06-04T06:57:11.956Z", + "new_balance":"7194.67", + "value":"-11.96" + } + }, + { + "id":"8ea86f0b-01f0-4c65-b195-900c1bc6ef94", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-06-04T16:21:44.484Z", + "completed":"2016-06-04T16:21:44.484Z", + "new_balance":"7187.57", + "value":"-7.10" + } + }, + { + "id":"8cde2f38-300c-4e46-b273-6a902d2d908b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-11T11:50:35.635Z", + "completed":"2016-06-11T11:50:35.635Z", + "new_balance":"7184.27", + "value":"-3.30" + } + }, + { + "id":"cd8bd73b-c1ce-4c33-bd08-fcf46c4595c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-06-12T05:02:41.706Z", + "completed":"2016-06-12T05:02:41.706Z", + "new_balance":"7183.02", + "value":"-1.25" + } + }, + { + "id":"efb3ae35-8be3-4ec2-8d3e-5d6c2209aa84", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T12:45:49.026Z", + "completed":"2016-06-13T12:45:49.026Z", + "new_balance":"7175.72", + "value":"-7.30" + } + }, + { + "id":"e2d0dcc9-85e0-421a-bb0c-985e4bb55b9e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-06-13T20:48:07.005Z", + "completed":"2016-06-13T20:48:07.005Z", + "new_balance":"7174.96", + "value":"-0.76" + } + }, + { + "id":"017c132c-6eb4-4845-a112-ad1a42028eaf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-16T17:54:05.335Z", + "completed":"2016-06-16T17:54:05.335Z", + "new_balance":"7170.92", + "value":"-4.04" + } + }, + { + "id":"e71aede2-f92e-47e7-ab61-50f633030a7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-17T07:52:20.307Z", + "completed":"2016-06-17T07:52:20.307Z", + "new_balance":"7163.62", + "value":"-7.30" + } + }, + { + "id":"edf55077-c33c-4046-9aa1-97af6a592b23", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-17T12:43:48.921Z", + "completed":"2016-06-17T12:43:48.921Z", + "new_balance":"7163.22", + "value":"-0.40" + } + }, + { + "id":"697f0ab5-a8d0-4956-a7b8-04f97a2ac947", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T06:54:34.654Z", + "completed":"2016-06-18T06:54:34.654Z", + "new_balance":"7157.95", + "value":"-5.27" + } + }, + { + "id":"fd3d92c0-9be7-42ab-ab24-a815af5709ce", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T07:17:10.259Z", + "completed":"2016-06-19T07:17:10.259Z", + "new_balance":"7152.68", + "value":"-5.27" + } + }, + { + "id":"52240999-097f-4b12-b35e-09d587779fe4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T17:54:07.651Z", + "completed":"2016-06-19T17:54:07.651Z", + "new_balance":"7148.41", + "value":"-4.27" + } + }, + { + "id":"d516c91a-c849-40e4-9392-73a7c247dcfa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-21T00:10:04.015Z", + "completed":"2016-06-21T00:10:04.015Z", + "new_balance":"7147.87", + "value":"-0.54" + } + }, + { + "id":"d3fb4b7b-68bf-44d4-8ae4-dc23b0ed19d4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-21T17:17:44.548Z", + "completed":"2016-06-21T17:17:44.548Z", + "new_balance":"7141.55", + "value":"-6.32" + } + }, + { + "id":"a1a342d4-d890-4442-b945-f4f23fc18e44", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-23T03:27:33.452Z", + "completed":"2016-06-23T03:27:33.452Z", + "new_balance":"7140.78", + "value":"-0.77" + } + }, + { + "id":"d13252a0-41c2-488a-be1e-4fd55a89b1c3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T18:25:48.341Z", + "completed":"2016-06-23T18:25:48.341Z", + "new_balance":"7138.53", + "value":"-2.25" + } + }, + { + "id":"0f097493-14ee-4af2-bd23-7df5de3ac667", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-24T00:49:19.369Z", + "completed":"2016-06-24T00:49:19.369Z", + "new_balance":"7137.48", + "value":"-1.05" + } + }, + { + "id":"84467ddc-b042-4729-8b1b-206c9fbd0c47", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-24T07:35:38.206Z", + "completed":"2016-06-24T07:35:38.206Z", + "new_balance":"7133.22", + "value":"-4.26" + } + }, + { + "id":"c63d8599-158d-46ab-9fdc-8abad6f003d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T04:15:49.873Z", + "completed":"2016-06-28T04:15:49.873Z", + "new_balance":"7132.70", + "value":"-0.52" + } + }, + { + "id":"5601f8b1-0ed2-464e-a4c9-e7dccda1beb6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-28T11:15:50.964Z", + "completed":"2016-06-28T11:15:50.964Z", + "new_balance":"7122.91", + "value":"-9.79" + } + }, + { + "id":"3b686cdd-d2b5-475b-8a1b-a608f4fe6709", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-28T18:47:11.321Z", + "completed":"2016-06-28T18:47:11.321Z", + "new_balance":"7122.39", + "value":"-0.52" + } + }, + { + "id":"9b5c65fe-1ee5-46fc-b566-63cd15ef8b56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-28T19:38:56.237Z", + "completed":"2016-06-28T19:38:56.237Z", + "new_balance":"7117.57", + "value":"-4.82" + } + }, + { + "id":"b21e4bf7-cdfb-418b-9825-993c91af965a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T12:32:30.583Z", + "completed":"2016-06-29T12:32:30.583Z", + "new_balance":"7113.42", + "value":"-4.15" + } + }, + { + "id":"9d9b08dc-d6df-4d59-94d1-44b8331ad672", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-06-29T13:22:26.930Z", + "completed":"2016-06-29T13:22:26.930Z", + "new_balance":"7106.46", + "value":"-6.96" + } + }, + { + "id":"ca7cd018-6f6f-4b0a-a069-3e94f00a1d12", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-06-29T14:14:05.535Z", + "completed":"2016-06-29T14:14:05.535Z", + "new_balance":"7105.70", + "value":"-0.76" + } + }, + { + "id":"c458252a-a3fc-4a4e-a613-b9106ae043d1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-06-29T17:33:47.045Z", + "completed":"2016-06-29T17:33:47.045Z", + "new_balance":"7099.38", + "value":"-6.32" + } + }, + { + "id":"5311ba38-af6a-4933-a533-0e7b90b1d4be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T20:18:14.324Z", + "completed":"2016-06-29T20:18:14.324Z", + "new_balance":"7094.22", + "value":"-5.16" + } + }, + { + "id":"e1003f45-10ce-4db6-9bac-ab57364dd506", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-29T21:23:36.875Z", + "completed":"2016-06-29T21:23:36.875Z", + "new_balance":"7089.93", + "value":"-4.29" + } + }, + { + "id":"3c63377c-b7f4-473c-a019-0f6d2c71b5ef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-06-30T00:57:08.419Z", + "completed":"2016-06-30T00:57:08.419Z", + "new_balance":"7089.02", + "value":"-0.91" + } + }, + { + "id":"8a5f30c1-93cd-4906-8e62-435a50353458", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-30T13:51:08.131Z", + "completed":"2016-06-30T13:51:08.131Z", + "new_balance":"7085.47", + "value":"-3.55" + } + }, + { + "id":"802c10a3-7f18-49f2-ac16-478afbd6e6a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-06-30T22:58:41.263Z", + "completed":"2016-06-30T22:58:41.263Z", + "new_balance":"7080.86", + "value":"-4.61" + } + }, + { + "id":"6843b963-d020-4750-94d6-05a4bceaae15", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-30T23:55:35.006Z", + "completed":"2016-06-30T23:55:35.006Z", + "new_balance":"7080.27", + "value":"-0.59" + } + }, + { + "id":"b143ad69-c403-43e0-8704-76a10d857363", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-01T01:39:55.185Z", + "completed":"2016-07-01T01:39:55.185Z", + "new_balance":"7075.12", + "value":"-5.15" + } + }, + { + "id":"02c4fcb8-7e5e-4551-8596-c5f6c3d82902", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T02:54:08.596Z", + "completed":"2016-07-01T02:54:08.596Z", + "new_balance":"7072.06", + "value":"-3.06" + } + }, + { + "id":"d3beac39-5540-46fb-9c27-1748a604deb2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-07-01T04:39:46.467Z", + "completed":"2016-07-01T04:39:46.467Z", + "new_balance":"7013.83", + "value":"-58.23" + } + }, + { + "id":"a3c6cc61-3628-4fd6-8950-b02334e268fd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-01T05:06:24.291Z", + "completed":"2016-07-01T05:06:24.291Z", + "new_balance":"7011.51", + "value":"-2.32" + } + }, + { + "id":"aa1cb9c3-e5ee-4614-84d9-0a43af449e59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T05:40:43.574Z", + "completed":"2016-07-01T05:40:43.574Z", + "new_balance":"6984.01", + "value":"-27.50" + } + }, + { + "id":"293182da-abb4-4c0c-8595-aeed53d7e582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T10:35:24.963Z", + "completed":"2016-07-01T10:35:24.963Z", + "new_balance":"6980.57", + "value":"-3.44" + } + }, + { + "id":"9f5ce04a-f4cc-44c3-bcc9-fd4763dabf56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-07-01T11:49:11.716Z", + "completed":"2016-07-01T11:49:11.716Z", + "new_balance":"6977.13", + "value":"-3.44" + } + }, + { + "id":"0d9afd85-62b9-4e43-aae7-f800d7dbe59c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-07-01T16:18:34.560Z", + "completed":"2016-07-01T16:18:34.560Z", + "new_balance":"6975.82", + "value":"-1.31" + } + }, + { + "id":"969c9e3c-c865-465a-9a36-b767fa044f90", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T20:38:50.460Z", + "completed":"2016-07-01T20:38:50.460Z", + "new_balance":"6960.57", + "value":"-15.25" + } + }, + { + "id":"84be6458-2314-48b0-9fa0-6ef3a05d8510", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-01T23:59:09.608Z", + "completed":"2016-07-01T23:59:09.608Z", + "new_balance":"6957.83", + "value":"-2.74" + } + }, + { + "id":"3960880f-85fb-42b3-aeb9-5d4781bff3cb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-07-02T04:30:28.142Z", + "completed":"2016-07-02T04:30:28.142Z", + "new_balance":"6950.73", + "value":"-7.10" + } + }, + { + "id":"dd2492ad-9dfd-4fa3-9499-6fcfc4687bcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-03T15:12:27.574Z", + "completed":"2016-07-03T15:12:27.574Z", + "new_balance":"6940.26", + "value":"-10.47" + } + }, + { + "id":"ce430ac3-69bb-4bec-9062-e7c361d94108", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-04T17:40:49.832Z", + "completed":"2016-07-04T17:40:49.832Z", + "new_balance":"6938.48", + "value":"-1.78" + } + }, + { + "id":"bfb57be9-8a2b-423e-a757-f73789880db0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T13:28:23.075Z", + "completed":"2016-07-05T13:28:23.075Z", + "new_balance":"6928.84", + "value":"-9.64" + } + }, + { + "id":"fe6c3538-e01d-4d2d-8933-98bfaef04942", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-05T21:35:25.628Z", + "completed":"2016-07-05T21:35:25.628Z", + "new_balance":"6921.65", + "value":"-7.19" + } + }, + { + "id":"34cd10fa-fc26-4405-a58c-1eed2b8d2b5b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-06T13:23:18.268Z", + "completed":"2016-07-06T13:23:18.268Z", + "new_balance":"6921.19", + "value":"-0.46" + } + }, + { + "id":"7df3e5ff-5fe8-4e9f-b95b-d1873b59c3f4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-07-11T07:59:02.765Z", + "completed":"2016-07-11T07:59:02.765Z", + "new_balance":"6918.51", + "value":"-2.68" + } + }, + { + "id":"7b734fec-c3e0-470e-8bba-5012f62ae0d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-12T18:29:10.164Z", + "completed":"2016-07-12T18:29:10.164Z", + "new_balance":"6915.29", + "value":"-3.22" + } + }, + { + "id":"5e554d73-8138-45fd-b453-6c504cc27daa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-14T11:57:24.419Z", + "completed":"2016-07-14T11:57:24.419Z", + "new_balance":"6913.76", + "value":"-1.53" + } + }, + { + "id":"01ee614c-5ffb-4868-ba84-b8609df8d1d0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-16T08:13:25.543Z", + "completed":"2016-07-16T08:13:25.543Z", + "new_balance":"6912.86", + "value":"-0.90" + } + }, + { + "id":"0ecc624f-8c97-4c36-82f7-7ddefa099887", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-18T22:12:37.959Z", + "completed":"2016-07-18T22:12:37.959Z", + "new_balance":"6910.75", + "value":"-2.11" + } + }, + { + "id":"19829f2e-1d4d-4c47-bb5e-3d918daeab2a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-07-20T13:32:54.353Z", + "completed":"2016-07-20T13:32:54.353Z", + "new_balance":"6883.25", + "value":"-27.50" + } + }, + { + "id":"6436cfcb-d404-48ea-873f-364b075e4329", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-07-20T21:53:19.390Z", + "completed":"2016-07-20T21:53:19.390Z", + "new_balance":"6882.81", + "value":"-0.44" + } + }, + { + "id":"b4aed0a5-f498-4141-bc8c-e68e5c7ee5b4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-24T01:58:29.190Z", + "completed":"2016-07-24T01:58:29.190Z", + "new_balance":"6878.33", + "value":"-4.48" + } + }, + { + "id":"24685a05-0c38-49dd-b97f-8692f44802d3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-07-24T22:21:14.626Z", + "completed":"2016-07-24T22:21:14.626Z", + "new_balance":"6877.22", + "value":"-1.11" + } + }, + { + "id":"bfeef4fe-239f-479c-a244-8b06af4192d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T09:39:15.551Z", + "completed":"2016-07-25T09:39:15.551Z", + "new_balance":"6871.82", + "value":"-5.40" + } + }, + { + "id":"aa15288f-eea8-448a-a3fd-5215f2972289", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-25T10:02:23.504Z", + "completed":"2016-07-25T10:02:23.504Z", + "new_balance":"6869.01", + "value":"-2.81" + } + }, + { + "id":"2dfca0cf-9e83-4953-bdee-a8111d187bcf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-26T06:41:48.526Z", + "completed":"2016-07-26T06:41:48.526Z", + "new_balance":"6863.19", + "value":"-5.82" + } + }, + { + "id":"e3bc3384-e4f9-4449-9d17-34297961c2bd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-07-27T16:48:42.058Z", + "completed":"2016-07-27T16:48:42.058Z", + "new_balance":"6862.75", + "value":"-0.44" + } + }, + { + "id":"3d030739-bc12-48f3-8171-7647986fa084", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T00:49:08.147Z", + "completed":"2016-08-01T00:49:08.147Z", + "new_balance":"6847.50", + "value":"-15.25" + } + }, + { + "id":"2ea1abb1-1036-4e10-83fa-11acb0ba3726", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T13:39:52.372Z", + "completed":"2016-08-01T13:39:52.372Z", + "new_balance":"7030.20", + "value":"182.70" + } + }, + { + "id":"1777d940-3b0b-473d-9e11-bbbda20482eb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-08-01T14:25:52.418Z", + "completed":"2016-08-01T14:25:52.418Z", + "new_balance":"6971.97", + "value":"-58.23" + } + }, + { + "id":"4dfab4c1-4642-4fdb-a00b-f78663ea9f19", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-08-01T16:14:11.975Z", + "completed":"2016-08-01T16:14:11.975Z", + "new_balance":"6968.53", + "value":"-3.44" + } + }, + { + "id":"c136aa8c-78a8-46b5-833f-2a7a393155dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-01T17:01:44.965Z", + "completed":"2016-08-01T17:01:44.965Z", + "new_balance":"6966.21", + "value":"-2.32" + } + }, + { + "id":"24a96352-102f-47c0-91ee-279f097145e6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-01T17:03:19.988Z", + "completed":"2016-08-01T17:03:19.988Z", + "new_balance":"6961.06", + "value":"-5.15" + } + }, + { + "id":"2d802cdf-ee53-4df9-8073-1ed99a46bf55", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-08-02T00:14:18.559Z", + "completed":"2016-08-02T00:14:18.559Z", + "new_balance":"6953.96", + "value":"-7.10" + } + }, + { + "id":"ad4473e1-4609-42be-91bc-1a1a9cd6cef6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-03T21:24:57.184Z", + "completed":"2016-08-03T21:24:57.184Z", + "new_balance":"6953.50", + "value":"-0.46" + } + }, + { + "id":"6548a07a-6b1f-46aa-bac2-b4c686f268dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-04T05:35:00.443Z", + "completed":"2016-08-04T05:35:00.443Z", + "new_balance":"6950.58", + "value":"-2.92" + } + }, + { + "id":"eee3b4a1-8ae0-42ef-88fc-4383d02ad16a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T22:10:20.910Z", + "completed":"2016-08-07T22:10:20.910Z", + "new_balance":"6948.08", + "value":"-2.50" + } + }, + { + "id":"fca14485-1e7f-4602-93ed-568307e46fb8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-08-09T02:26:05.115Z", + "completed":"2016-08-09T02:26:05.115Z", + "new_balance":"6944.75", + "value":"-3.33" + } + }, + { + "id":"0710f27e-cad5-4b4f-b72a-1a71d225486a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-08-09T20:05:07.604Z", + "completed":"2016-08-09T20:05:07.604Z", + "new_balance":"6942.35", + "value":"-2.40" + } + }, + { + "id":"acc74223-4699-4650-afa0-14c56e515fd2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-10T10:48:09.423Z", + "completed":"2016-08-10T10:48:09.423Z", + "new_balance":"6935.16", + "value":"-7.19" + } + }, + { + "id":"20e05d73-14e0-4199-9079-388adc8f8cb1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-14T18:35:36.746Z", + "completed":"2016-08-14T18:35:36.746Z", + "new_balance":"6934.68", + "value":"-0.48" + } + }, + { + "id":"39ac7fdf-7858-4533-93ad-5ac9448dbbb1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-08-15T12:10:55.538Z", + "completed":"2016-08-15T12:10:55.538Z", + "new_balance":"6931.46", + "value":"-3.22" + } + }, + { + "id":"60e0e4b0-4c0a-454e-8938-244b9d1b4b03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-15T13:52:45.001Z", + "completed":"2016-08-15T13:52:45.001Z", + "new_balance":"6928.43", + "value":"-3.03" + } + }, + { + "id":"6a91a29e-8eb8-46c9-9065-6e0374a34238", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-08-16T17:42:46.391Z", + "completed":"2016-08-16T17:42:46.391Z", + "new_balance":"6925.29", + "value":"-3.14" + } + }, + { + "id":"2873d7ec-c9c5-4851-9816-790b8873344a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T23:00:22.524Z", + "completed":"2016-08-17T23:00:22.524Z", + "new_balance":"6921.81", + "value":"-3.48" + } + }, + { + "id":"ed09dc16-77f2-4133-abfc-1e162440a7d5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-08-20T21:06:29.034Z", + "completed":"2016-08-20T21:06:29.034Z", + "new_balance":"6921.04", + "value":"-0.77" + } + }, + { + "id":"b7b4ace3-0d8e-4866-8cfc-e20b3b7e7558", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-08-20T21:23:18.746Z", + "completed":"2016-08-20T21:23:18.746Z", + "new_balance":"6920.57", + "value":"-0.47" + } + }, + { + "id":"35d4e55d-b370-42de-994d-85961770f92f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-08-22T18:32:20.283Z", + "completed":"2016-08-22T18:32:20.283Z", + "new_balance":"6924.65", + "value":"4.08" + } + }, + { + "id":"3631ac83-41c2-4f37-bcfa-e23ac1b572be", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-23T10:16:10.646Z", + "completed":"2016-08-23T10:16:10.646Z", + "new_balance":"6920.53", + "value":"-4.12" + } + }, + { + "id":"ff8e0b7f-8ef2-4aef-9ccb-3d0d4ceb3fce", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T13:57:40.929Z", + "completed":"2016-08-23T13:57:40.929Z", + "new_balance":"6914.10", + "value":"-6.43" + } + }, + { + "id":"2b707600-69f9-46eb-9afa-b655f57fa998", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T00:41:33.198Z", + "completed":"2016-08-28T00:41:33.198Z", + "new_balance":"6911.16", + "value":"-2.94" + } + }, + { + "id":"79396492-2ae0-4b26-9fdd-667f6d55290d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-28T10:28:01.495Z", + "completed":"2016-08-28T10:28:01.495Z", + "new_balance":"6908.61", + "value":"-2.55" + } + }, + { + "id":"449178d9-5e92-47a6-a7be-f79422893171", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-09-01T05:32:20.380Z", + "completed":"2016-09-01T05:32:20.380Z", + "new_balance":"6850.38", + "value":"-58.23" + } + }, + { + "id":"0b5e9012-3e85-4462-8d1d-a9e9a9796d2f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T06:34:12.941Z", + "completed":"2016-09-01T06:34:12.941Z", + "new_balance":"6835.13", + "value":"-15.25" + } + }, + { + "id":"694b559a-e4ce-4f74-a9a9-c48b3f42cd61", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T09:56:52.399Z", + "completed":"2016-09-01T09:56:52.399Z", + "new_balance":"6829.98", + "value":"-5.15" + } + }, + { + "id":"1d5e4cda-ceae-4cc6-8287-d90262071157", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-09-01T10:12:26.887Z", + "completed":"2016-09-01T10:12:26.887Z", + "new_balance":"6826.54", + "value":"-3.44" + } + }, + { + "id":"4e55638e-ff7a-41d9-ba31-ed0b01458a51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T14:00:42.915Z", + "completed":"2016-09-01T14:00:42.915Z", + "new_balance":"7009.24", + "value":"182.70" + } + }, + { + "id":"1c19d5fb-b172-407f-b3dc-7bde9a52ab32", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-01T22:47:30.715Z", + "completed":"2016-09-01T22:47:30.715Z", + "new_balance":"7006.92", + "value":"-2.32" + } + }, + { + "id":"eed16d11-1481-4409-8a95-39afe67e4e24", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-09-02T01:41:40.952Z", + "completed":"2016-09-02T01:41:40.952Z", + "new_balance":"6999.82", + "value":"-7.10" + } + }, + { + "id":"80b8f842-018c-4d0d-814f-199cd6c5fe4e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-04T04:04:31.223Z", + "completed":"2016-09-04T04:04:31.223Z", + "new_balance":"6999.06", + "value":"-0.76" + } + }, + { + "id":"856929ad-ac1b-4b25-8f6d-5639f2165501", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T07:46:33.375Z", + "completed":"2016-09-04T07:46:33.375Z", + "new_balance":"6995.76", + "value":"-3.30" + } + }, + { + "id":"49d5d714-5745-4ed9-becf-bfce70bce868", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-04T14:52:31.617Z", + "completed":"2016-09-04T14:52:31.617Z", + "new_balance":"6988.46", + "value":"-7.30" + } + }, + { + "id":"8b9810a3-0037-409c-9a0b-d027ababb6c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-09-04T23:47:28.707Z", + "completed":"2016-09-04T23:47:28.707Z", + "new_balance":"6987.21", + "value":"-1.25" + } + }, + { + "id":"57b93273-c5a0-42df-9d57-f6af897c47ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-05T09:55:29.141Z", + "completed":"2016-09-05T09:55:29.141Z", + "new_balance":"6986.81", + "value":"-0.40" + } + }, + { + "id":"3696e676-6906-45b5-bae8-1a638584bc59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-05T23:56:43.330Z", + "completed":"2016-09-05T23:56:43.330Z", + "new_balance":"6982.77", + "value":"-4.04" + } + }, + { + "id":"9689e46c-e278-4347-a75b-01bcc4c702cf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T02:06:24.031Z", + "completed":"2016-09-06T02:06:24.031Z", + "new_balance":"6977.50", + "value":"-5.27" + } + }, + { + "id":"489ba7ac-250f-4e78-84a2-c4011dd0e4f2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-06T19:48:06.820Z", + "completed":"2016-09-06T19:48:06.820Z", + "new_balance":"6970.20", + "value":"-7.30" + } + }, + { + "id":"7d38beb1-6fa1-49a3-a1e0-dd38cad44454", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T12:34:35.235Z", + "completed":"2016-09-08T12:34:35.235Z", + "new_balance":"6965.93", + "value":"-4.27" + } + }, + { + "id":"bc349b0c-4a05-4c5f-9f13-e01e886056ad", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-08T17:32:19.919Z", + "completed":"2016-09-08T17:32:19.919Z", + "new_balance":"6960.66", + "value":"-5.27" + } + }, + { + "id":"f7a5acfb-395d-4bb6-b255-d8d497a8b48d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-10T04:45:01.124Z", + "completed":"2016-09-10T04:45:01.124Z", + "new_balance":"6960.12", + "value":"-0.54" + } + }, + { + "id":"3bb8d920-ec61-4883-82a1-fdb1d6a203e5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T17:34:46.577Z", + "completed":"2016-09-10T17:34:46.577Z", + "new_balance":"6953.80", + "value":"-6.32" + } + }, + { + "id":"d36ed7a4-acb3-4f13-a2e8-6c7365674f64", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T13:48:22.379Z", + "completed":"2016-09-11T13:48:22.379Z", + "new_balance":"6953.03", + "value":"-0.77" + } + }, + { + "id":"d7df9b91-53dd-443a-8215-b1c4673c0250", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-12T10:13:50.518Z", + "completed":"2016-09-12T10:13:50.518Z", + "new_balance":"6951.98", + "value":"-1.05" + } + }, + { + "id":"1fb51b1a-4af0-47cc-a9e6-f43502bc7a9b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-12T22:36:38.406Z", + "completed":"2016-09-12T22:36:38.406Z", + "new_balance":"6949.73", + "value":"-2.25" + } + }, + { + "id":"64da9b89-6d4e-4b5e-8f29-0554ba7ca516", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T16:11:00.991Z", + "completed":"2016-09-13T16:11:00.991Z", + "new_balance":"6945.47", + "value":"-4.26" + } + }, + { + "id":"a454d4ce-e748-4908-a537-6007aab104c5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-16T13:23:38.471Z", + "completed":"2016-09-16T13:23:38.471Z", + "new_balance":"6944.95", + "value":"-0.52" + } + }, + { + "id":"200ae624-4984-46ce-9542-af82ba61d1f5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-17T01:52:41.832Z", + "completed":"2016-09-17T01:52:41.832Z", + "new_balance":"6935.16", + "value":"-9.79" + } + }, + { + "id":"94d96a91-e53d-4ded-9568-823ef70ef15d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-17T13:12:11.094Z", + "completed":"2016-09-17T13:12:11.094Z", + "new_balance":"6930.34", + "value":"-4.82" + } + }, + { + "id":"b062ebcd-8f8f-450c-80a1-afde0a4609b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-18T03:03:18.595Z", + "completed":"2016-09-18T03:03:18.595Z", + "new_balance":"6929.82", + "value":"-0.52" + } + }, + { + "id":"23e03697-30f7-40da-b6b5-225ed06110c6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T01:24:19.091Z", + "completed":"2016-09-19T01:24:19.091Z", + "new_balance":"6925.67", + "value":"-4.15" + } + }, + { + "id":"3f010055-4928-473b-a663-30e3c5db6f5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-19T05:26:01.826Z", + "completed":"2016-09-19T05:26:01.826Z", + "new_balance":"6921.38", + "value":"-4.29" + } + }, + { + "id":"8756ba5e-bd8f-4b9f-afe1-ae93e98ed3ea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-09-19T22:42:27.473Z", + "completed":"2016-09-19T22:42:27.473Z", + "new_balance":"6915.06", + "value":"-6.32" + } + }, + { + "id":"4ce3660c-75f1-4003-ac07-5c207a42cf8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-09-20T16:29:42.195Z", + "completed":"2016-09-20T16:29:42.195Z", + "new_balance":"6908.10", + "value":"-6.96" + } + }, + { + "id":"3fbb7ef4-6312-4b97-b1ec-5ec5f6a82cfc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-20T21:09:19.938Z", + "completed":"2016-09-20T21:09:19.938Z", + "new_balance":"6902.94", + "value":"-5.16" + } + }, + { + "id":"36af8f20-1bdb-4181-b084-ec0e23fbd756", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-21T03:58:43.802Z", + "completed":"2016-09-21T03:58:43.802Z", + "new_balance":"6902.35", + "value":"-0.59" + } + }, + { + "id":"507145d2-9782-4575-8d88-a18e6e4d8648", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-09-21T04:38:51.937Z", + "completed":"2016-09-21T04:38:51.937Z", + "new_balance":"6901.59", + "value":"-0.76" + } + }, + { + "id":"791e1d86-0a52-46c0-926a-83318bad79c6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-09-23T00:08:16.578Z", + "completed":"2016-09-23T00:08:16.578Z", + "new_balance":"6896.98", + "value":"-4.61" + } + }, + { + "id":"7c283ef0-f6dc-4be9-a157-5d682c81c522", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-09-23T22:42:29.814Z", + "completed":"2016-09-23T22:42:29.814Z", + "new_balance":"6896.07", + "value":"-0.91" + } + }, + { + "id":"5e8c6db8-40d2-41bf-9140-d2498c02fc0d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-24T10:28:55.879Z", + "completed":"2016-09-24T10:28:55.879Z", + "new_balance":"6892.52", + "value":"-3.55" + } + }, + { + "id":"eb290b5b-a9ee-4836-ad03-19169f7e9e64", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-25T12:15:36.747Z", + "completed":"2016-09-25T12:15:36.747Z", + "new_balance":"6889.46", + "value":"-3.06" + } + }, + { + "id":"df94866d-9764-4b51-90de-9b7c96992e88", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-09-25T22:14:59.166Z", + "completed":"2016-09-25T22:14:59.166Z", + "new_balance":"6888.15", + "value":"-1.31" + } + }, + { + "id":"b2e8fea2-b152-4411-8fa2-a40a9cc7122e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-27T21:48:52.025Z", + "completed":"2016-09-27T21:48:52.025Z", + "new_balance":"6860.65", + "value":"-27.50" + } + }, + { + "id":"a06feff1-3eba-4ec4-8c5f-00df306f2db6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-29T10:11:27.345Z", + "completed":"2016-09-29T10:11:27.345Z", + "new_balance":"6857.91", + "value":"-2.74" + } + }, + { + "id":"abf44637-8677-4092-a7d9-3d39dcdaeed8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-10-01T03:43:29.489Z", + "completed":"2016-10-01T03:43:29.489Z", + "new_balance":"6799.68", + "value":"-58.23" + } + }, + { + "id":"e89201fb-df70-436f-add3-2768e29b1c16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T11:35:19.927Z", + "completed":"2016-10-01T11:35:19.927Z", + "new_balance":"6784.43", + "value":"-15.25" + } + }, + { + "id":"996c7b4c-8271-4b83-8ffd-fe23340b647a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T20:06:10.278Z", + "completed":"2016-10-01T20:06:10.278Z", + "new_balance":"6782.11", + "value":"-2.32" + } + }, + { + "id":"f39751cf-7f1a-4d2f-9e24-e636ddc0da3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T20:44:11.731Z", + "completed":"2016-10-01T20:44:11.731Z", + "new_balance":"6776.96", + "value":"-5.15" + } + }, + { + "id":"9154bbb1-26d2-48b6-9bd8-a6aae36bc53d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-02T16:21:07.362Z", + "completed":"2016-10-02T16:21:07.362Z", + "new_balance":"6767.27", + "value":"-9.69" + } + }, + { + "id":"ad06ffdd-a9f5-476e-a41e-92e1dc9d4e68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-10-02T19:21:31.024Z", + "completed":"2016-10-02T19:21:31.024Z", + "new_balance":"6760.17", + "value":"-7.10" + } + }, + { + "id":"cd52ecc6-eb58-4e69-8a73-692ce34ace23", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T09:20:22.593Z", + "completed":"2016-10-03T09:20:22.593Z", + "new_balance":"6747.07", + "value":"-13.10" + } + }, + { + "id":"80e278f5-a1a2-40ae-95ec-bdb2308ef71b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T09:36:52.007Z", + "completed":"2016-10-03T09:36:52.007Z", + "new_balance":"6743.29", + "value":"-3.78" + } + }, + { + "id":"683712ec-99d3-4017-8d69-9325bdaf6051", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T10:56:14.622Z", + "completed":"2016-10-03T10:56:14.622Z", + "new_balance":"6715.79", + "value":"-27.50" + } + }, + { + "id":"7735434b-4b52-4ebd-a650-93636dfbb930", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2016-10-03T11:29:51.152Z", + "completed":"2016-10-03T11:29:51.152Z", + "new_balance":"6658.98", + "value":"-56.81" + } + }, + { + "id":"85bd345a-b4fa-4c91-a69a-812f266071b8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-03T13:55:27.194Z", + "completed":"2016-10-03T13:55:27.194Z", + "new_balance":"6656.07", + "value":"-2.91" + } + }, + { + "id":"a50e5bdc-2322-4b98-b809-1c9257a27d70", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-04T11:07:49.509Z", + "completed":"2016-10-04T11:07:49.509Z", + "new_balance":"6648.88", + "value":"-7.19" + } + }, + { + "id":"08c2b7a5-4641-4b60-814b-a9e8f5b9ce6f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-10-05T06:42:17.498Z", + "completed":"2016-10-05T06:42:17.498Z", + "new_balance":"6646.20", + "value":"-2.68" + } + }, + { + "id":"43c734a2-2588-468d-9586-ec2c90130e13", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-05T08:33:42.784Z", + "completed":"2016-10-05T08:33:42.784Z", + "new_balance":"6645.74", + "value":"-0.46" + } + }, + { + "id":"2c310ae0-a21e-4689-abab-a78930d60f29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-07T12:40:40.496Z", + "completed":"2016-10-07T12:40:40.496Z", + "new_balance":"6642.52", + "value":"-3.22" + } + }, + { + "id":"a7ca779e-7425-4b4f-8200-fbd481a2538b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-07T17:41:39.777Z", + "completed":"2016-10-07T17:41:39.777Z", + "new_balance":"6640.99", + "value":"-1.53" + } + }, + { + "id":"9e898a5b-35e4-45ec-a0a8-7008f3dfb5c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-08T06:10:28.184Z", + "completed":"2016-10-08T06:10:28.184Z", + "new_balance":"6640.09", + "value":"-0.90" + } + }, + { + "id":"6c29d5b8-5490-46e7-bcff-fd969f2dfaa8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-10-09T07:02:02.182Z", + "completed":"2016-10-09T07:02:02.182Z", + "new_balance":"6639.65", + "value":"-0.44" + } + }, + { + "id":"9e47cca2-8dec-47d1-b377-172f49fa31b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-09T07:27:47.622Z", + "completed":"2016-10-09T07:27:47.622Z", + "new_balance":"6637.54", + "value":"-2.11" + } + }, + { + "id":"bbeadaaa-0dcd-4f9c-9286-2c5b1c6464ab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2016-10-09T12:25:22.249Z", + "completed":"2016-10-09T12:25:22.249Z", + "new_balance":"6610.04", + "value":"-27.50" + } + }, + { + "id":"ba6e5683-0d6a-4577-8dac-6577baff3011", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T21:23:32.281Z", + "completed":"2016-10-10T21:23:32.281Z", + "new_balance":"6605.56", + "value":"-4.48" + } + }, + { + "id":"a02f0d58-0412-46b3-9908-cdd5e350211a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-10-17T22:20:10.730Z", + "completed":"2016-10-17T22:20:10.730Z", + "new_balance":"6604.45", + "value":"-1.11" + } + }, + { + "id":"9b486136-a506-4417-926c-914e283bb71d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-18T19:05:18.144Z", + "completed":"2016-10-18T19:05:18.144Z", + "new_balance":"6601.64", + "value":"-2.81" + } + }, + { + "id":"08d0ac22-74e8-47f5-8949-d01dfe92f46c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-25T11:38:27.415Z", + "completed":"2016-10-25T11:38:27.415Z", + "new_balance":"6596.24", + "value":"-5.40" + } + }, + { + "id":"05fa7dc6-ae3c-4288-a377-0f32adcdc1a0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-26T10:18:33.296Z", + "completed":"2016-10-26T10:18:33.296Z", + "new_balance":"6590.42", + "value":"-5.82" + } + }, + { + "id":"ea0903ef-bd82-45ea-90d8-95d6dea234d3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-10-26T21:10:22.901Z", + "completed":"2016-10-26T21:10:22.901Z", + "new_balance":"6589.98", + "value":"-0.44" + } + }, + { + "id":"2f76757a-7b87-46ee-8734-3d7cb4a60035", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-11-02T04:36:18.480Z", + "completed":"2016-11-02T04:36:18.480Z", + "new_balance":"6531.75", + "value":"-58.23" + } + }, + { + "id":"954711c4-5508-4e43-8767-d0a46a138e0a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-02T09:20:46.969Z", + "completed":"2016-11-02T09:20:46.969Z", + "new_balance":"6529.43", + "value":"-2.32" + } + }, + { + "id":"057d0457-84ff-4e87-92aa-a2b4220af086", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-02T11:25:12.246Z", + "completed":"2016-11-02T11:25:12.246Z", + "new_balance":"6712.13", + "value":"182.70" + } + }, + { + "id":"dc5b39f0-5556-491a-9945-84fe3545cdd3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-02T16:43:47.109Z", + "completed":"2016-11-02T16:43:47.109Z", + "new_balance":"6710.98", + "value":"-1.15" + } + }, + { + "id":"2b951703-b4aa-4190-8cf1-0944e75d7b4e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-11-02T16:45:25.541Z", + "completed":"2016-11-02T16:45:25.541Z", + "new_balance":"6707.54", + "value":"-3.44" + } + }, + { + "id":"84cccb79-636d-4b9b-846b-34c8109c691c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T20:22:52.219Z", + "completed":"2016-11-02T20:22:52.219Z", + "new_balance":"6702.39", + "value":"-5.15" + } + }, + { + "id":"d72b55f3-307a-423b-ad1e-7c04a9c62913", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T22:23:07.761Z", + "completed":"2016-11-02T22:23:07.761Z", + "new_balance":"6687.14", + "value":"-15.25" + } + }, + { + "id":"e7a966c6-83c0-405e-9c80-536b7fcd7c10", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-11-02T23:07:54.887Z", + "completed":"2016-11-02T23:07:54.887Z", + "new_balance":"6680.04", + "value":"-7.10" + } + }, + { + "id":"aed20a46-e5ae-4062-9191-aab757ebf872", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-06T07:25:22.247Z", + "completed":"2016-11-06T07:25:22.247Z", + "new_balance":"6677.94", + "value":"-2.10" + } + }, + { + "id":"d0422e21-f960-4b3e-93ff-d511993dc861", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2016-11-07T12:11:33.333Z", + "completed":"2016-11-07T12:11:33.333Z", + "new_balance":"6674.61", + "value":"-3.33" + } + }, + { + "id":"4b27a87f-1096-472a-a63b-16b93ec7e978", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-11-07T17:34:42.425Z", + "completed":"2016-11-07T17:34:42.425Z", + "new_balance":"6672.21", + "value":"-2.40" + } + }, + { + "id":"d95b5d9f-9daf-4b3a-8f18-88b652006872", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T23:02:38.086Z", + "completed":"2016-11-07T23:02:38.086Z", + "new_balance":"6669.71", + "value":"-2.50" + } + }, + { + "id":"322e4ed1-436c-4677-bfb7-555b37f07429", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-09T00:21:27.364Z", + "completed":"2016-11-09T00:21:27.364Z", + "new_balance":"6669.23", + "value":"-0.48" + } + }, + { + "id":"8ca60f95-924c-4da9-9c65-310578ae6d0d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-09T03:00:10.310Z", + "completed":"2016-11-09T03:00:10.310Z", + "new_balance":"6662.04", + "value":"-7.19" + } + }, + { + "id":"62bf782c-9705-47a1-81c2-0731d34f9513", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-12T10:42:52.215Z", + "completed":"2016-11-12T10:42:52.215Z", + "new_balance":"6659.01", + "value":"-3.03" + } + }, + { + "id":"d9c35541-b3d1-417f-962b-f9b5b82cf234", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2016-11-12T22:58:46.308Z", + "completed":"2016-11-12T22:58:46.308Z", + "new_balance":"6656.56", + "value":"-2.45" + } + }, + { + "id":"7824e95e-e70e-4104-88cb-a3aa5b9bbb24", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-11-14T03:44:59.286Z", + "completed":"2016-11-14T03:44:59.286Z", + "new_balance":"6653.42", + "value":"-3.14" + } + }, + { + "id":"1da9f06c-de68-4a5c-95b1-9c493bbc2c33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T10:24:33.147Z", + "completed":"2016-11-14T10:24:33.147Z", + "new_balance":"6649.94", + "value":"-3.48" + } + }, + { + "id":"84ede549-25b7-44b1-8527-b7b0247dd1ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-11-16T13:45:39.855Z", + "completed":"2016-11-16T13:45:39.855Z", + "new_balance":"6649.47", + "value":"-0.47" + } + }, + { + "id":"8178ccb7-3ce8-43ba-8ed6-86ba0d54a197", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-11-18T14:32:28.972Z", + "completed":"2016-11-18T14:32:28.972Z", + "new_balance":"6648.70", + "value":"-0.77" + } + }, + { + "id":"6d9c4dd0-b7b0-4cd6-a8f0-1c758e5e0b68", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-11-20T05:24:31.965Z", + "completed":"2016-11-20T05:24:31.965Z", + "new_balance":"6652.78", + "value":"4.08" + } + }, + { + "id":"c47e479b-eaa4-4849-ba33-3ae0a3352f03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-21T01:15:42.076Z", + "completed":"2016-11-21T01:15:42.076Z", + "new_balance":"6646.35", + "value":"-6.43" + } + }, + { + "id":"31f4a9da-2dae-44a6-aae4-09746d2f4303", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-21T04:36:01.186Z", + "completed":"2016-11-21T04:36:01.186Z", + "new_balance":"6642.23", + "value":"-4.12" + } + }, + { + "id":"1ef1b016-4ac6-46f6-992c-725312c2a0b5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T12:55:08.760Z", + "completed":"2016-11-27T12:55:08.760Z", + "new_balance":"6639.29", + "value":"-2.94" + } + }, + { + "id":"a3f35c40-11ef-4e78-be5d-e57b237d11e7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-27T16:58:24.458Z", + "completed":"2016-11-27T16:58:24.458Z", + "new_balance":"6636.74", + "value":"-2.55" + } + }, + { + "id":"280db66c-e8c4-4c2a-bad2-e76db33de78f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2016-12-01T01:13:58.651Z", + "completed":"2016-12-01T01:13:58.651Z", + "new_balance":"6633.30", + "value":"-3.44" + } + }, + { + "id":"e39c0f4e-1cb4-40af-8a0c-5bebb74df1d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T01:17:42.737Z", + "completed":"2016-12-01T01:17:42.737Z", + "new_balance":"6630.98", + "value":"-2.32" + } + }, + { + "id":"274b25ca-eb20-460d-b838-8a54769124c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T08:09:48.343Z", + "completed":"2016-12-01T08:09:48.343Z", + "new_balance":"6615.73", + "value":"-15.25" + } + }, + { + "id":"ebbcd492-a309-4bd2-8956-31e80cda221d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T12:12:40.656Z", + "completed":"2016-12-01T12:12:40.656Z", + "new_balance":"6798.43", + "value":"182.70" + } + }, + { + "id":"f9c2ca6c-094e-4dae-b597-f113c1923dc2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2016-12-01T16:52:50.447Z", + "completed":"2016-12-01T16:52:50.447Z", + "new_balance":"6740.20", + "value":"-58.23" + } + }, + { + "id":"73dba7b7-06a9-48ea-bebd-663c1885d21d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T23:15:26.177Z", + "completed":"2016-12-01T23:15:26.177Z", + "new_balance":"6735.05", + "value":"-5.15" + } + }, + { + "id":"59899234-eed4-43f5-8789-aa34c39fc020", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2016-12-04T04:16:20.614Z", + "completed":"2016-12-04T04:16:20.614Z", + "new_balance":"6727.95", + "value":"-7.10" + } + }, + { + "id":"b515ec3d-ffa6-492a-ae2d-c9b99cd8c4e0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T15:37:51.377Z", + "completed":"2016-12-04T15:37:51.377Z", + "new_balance":"6715.99", + "value":"-11.96" + } + }, + { + "id":"3d330e8d-d3c3-457c-bfda-e4f9836aa9c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2016-12-12T06:12:05.375Z", + "completed":"2016-12-12T06:12:05.375Z", + "new_balance":"6714.74", + "value":"-1.25" + } + }, + { + "id":"57711342-141c-4472-a3e5-966cba4c10a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-12T20:27:33.237Z", + "completed":"2016-12-12T20:27:33.237Z", + "new_balance":"6711.44", + "value":"-3.30" + } + }, + { + "id":"b0cbf47a-9884-4815-83e0-352af09a1973", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-13T02:13:42.054Z", + "completed":"2016-12-13T02:13:42.054Z", + "new_balance":"6710.68", + "value":"-0.76" + } + }, + { + "id":"d2cbc103-5ab6-41d0-a753-5885d40331cb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-13T11:58:23.877Z", + "completed":"2016-12-13T11:58:23.877Z", + "new_balance":"6703.38", + "value":"-7.30" + } + }, + { + "id":"a3edee6c-94af-4eea-bcd7-b48446cfa822", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-16T19:29:03.154Z", + "completed":"2016-12-16T19:29:03.154Z", + "new_balance":"6699.34", + "value":"-4.04" + } + }, + { + "id":"720d72aa-5660-4a7b-87c3-4e1d96b59c79", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-18T03:26:02.985Z", + "completed":"2016-12-18T03:26:02.985Z", + "new_balance":"6698.94", + "value":"-0.40" + } + }, + { + "id":"f5544cdf-c568-4d03-ac9d-be3e3829a568", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T00:16:32.287Z", + "completed":"2016-12-19T00:16:32.287Z", + "new_balance":"6691.64", + "value":"-7.30" + } + }, + { + "id":"ee621723-8968-4379-bea4-726dffc1555c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T12:19:25.172Z", + "completed":"2016-12-19T12:19:25.172Z", + "new_balance":"6686.37", + "value":"-5.27" + } + }, + { + "id":"89a20f4c-8dac-46cf-a2c6-c4d0a3f5892e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-20T05:50:39.757Z", + "completed":"2016-12-20T05:50:39.757Z", + "new_balance":"6682.10", + "value":"-4.27" + } + }, + { + "id":"e9ee8470-b7ad-4273-a6de-9c11ff24e660", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T08:12:50.194Z", + "completed":"2016-12-21T08:12:50.194Z", + "new_balance":"6676.83", + "value":"-5.27" + } + }, + { + "id":"5ea20a11-74fc-4b51-b082-854a0e4bbe7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T01:24:16.316Z", + "completed":"2016-12-24T01:24:16.316Z", + "new_balance":"6672.57", + "value":"-4.26" + } + }, + { + "id":"e4ba966b-d3ee-4d9c-8fd2-266ddbb23e76", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T08:19:38.376Z", + "completed":"2016-12-24T08:19:38.376Z", + "new_balance":"6670.32", + "value":"-2.25" + } + }, + { + "id":"517bd16b-ef7b-43c7-9376-87f30b7fbc3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T11:51:14.155Z", + "completed":"2016-12-24T11:51:14.155Z", + "new_balance":"6669.55", + "value":"-0.77" + } + }, + { + "id":"fcd75fcf-76de-4f67-9d65-d3868ed2c670", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-24T18:17:07.145Z", + "completed":"2016-12-24T18:17:07.145Z", + "new_balance":"6669.01", + "value":"-0.54" + } + }, + { + "id":"445a1291-cc1d-4471-ac17-13dbc48a05b0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-24T18:38:45.491Z", + "completed":"2016-12-24T18:38:45.491Z", + "new_balance":"6667.96", + "value":"-1.05" + } + }, + { + "id":"b5262181-db79-4ed3-9138-8e83c960b547", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-24T19:27:48.358Z", + "completed":"2016-12-24T19:27:48.358Z", + "new_balance":"6661.64", + "value":"-6.32" + } + }, + { + "id":"ad4b3649-ac52-4ac9-91f8-cc4d72b0f72e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T00:07:28.712Z", + "completed":"2016-12-28T00:07:28.712Z", + "new_balance":"6661.12", + "value":"-0.52" + } + }, + { + "id":"3006e423-2434-4dc5-b1a0-560b20bf1875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-28T00:36:03.697Z", + "completed":"2016-12-28T00:36:03.697Z", + "new_balance":"6651.33", + "value":"-9.79" + } + }, + { + "id":"123145d2-6265-499d-ba11-d4834c1d0bb3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-28T08:34:31.973Z", + "completed":"2016-12-28T08:34:31.973Z", + "new_balance":"6650.81", + "value":"-0.52" + } + }, + { + "id":"e8c9b618-2cad-4d69-bb55-6493530f90c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-28T15:47:36.046Z", + "completed":"2016-12-28T15:47:36.046Z", + "new_balance":"6645.99", + "value":"-4.82" + } + }, + { + "id":"a0e9004f-92b1-4e64-9f4a-0e785b71e773", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T12:00:02.494Z", + "completed":"2016-12-29T12:00:02.494Z", + "new_balance":"6641.84", + "value":"-4.15" + } + }, + { + "id":"c5c8c60c-528f-4508-a171-651e9e65bf82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T16:27:23.681Z", + "completed":"2016-12-29T16:27:23.681Z", + "new_balance":"6636.68", + "value":"-5.16" + } + }, + { + "id":"f6aa384a-38ef-4167-8c51-4e92371508c8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2016-12-29T18:08:34.117Z", + "completed":"2016-12-29T18:08:34.117Z", + "new_balance":"6630.36", + "value":"-6.32" + } + }, + { + "id":"36f32979-8959-46a4-9e00-4b8200ce4085", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-29T19:40:39.889Z", + "completed":"2016-12-29T19:40:39.889Z", + "new_balance":"6626.07", + "value":"-4.29" + } + }, + { + "id":"42443cd2-f854-4a64-a5d8-39d131f7a711", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2016-12-29T20:38:40.740Z", + "completed":"2016-12-29T20:38:40.740Z", + "new_balance":"6625.31", + "value":"-0.76" + } + }, + { + "id":"5bb03e03-1ef3-48b5-b011-7885f3a88557", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2016-12-29T23:45:10.919Z", + "completed":"2016-12-29T23:45:10.919Z", + "new_balance":"6618.35", + "value":"-6.96" + } + }, + { + "id":"288599c4-45e7-4c3b-ae67-43afc0c2d345", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-30T00:01:41.145Z", + "completed":"2016-12-30T00:01:41.145Z", + "new_balance":"6617.76", + "value":"-0.59" + } + }, + { + "id":"d013e93b-980a-453c-9fdf-bed16aed1559", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2016-12-30T12:00:56.044Z", + "completed":"2016-12-30T12:00:56.044Z", + "new_balance":"6616.85", + "value":"-0.91" + } + }, + { + "id":"8075cca4-1265-49b6-b6d9-d544fb2a6b4d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-30T19:58:42.536Z", + "completed":"2016-12-30T19:58:42.536Z", + "new_balance":"6613.30", + "value":"-3.55" + } + }, + { + "id":"e3e0f96c-651a-450f-bfc0-a21e50d9a663", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2016-12-30T21:14:55.087Z", + "completed":"2016-12-30T21:14:55.087Z", + "new_balance":"6608.69", + "value":"-4.61" + } + }, + { + "id":"9c3a0d10-5bbd-4b17-a9f3-ed4c5e32d28d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T09:46:03.702Z", + "completed":"2016-12-31T09:46:03.702Z", + "new_balance":"6605.95", + "value":"-2.74" + } + }, + { + "id":"dfe78a5d-2dd3-40b9-a470-2dd7e9643d28", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-31T15:03:38.361Z", + "completed":"2016-12-31T15:03:38.361Z", + "new_balance":"6602.89", + "value":"-3.06" + } + }, + { + "id":"88ccc5ca-9246-4294-8d9a-2cec81bc1875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2016-12-31T17:55:16.894Z", + "completed":"2016-12-31T17:55:16.894Z", + "new_balance":"6601.58", + "value":"-1.31" + } + }, + { + "id":"7c26d038-91f2-415d-aa69-d9ca2d92c075", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T20:17:25.277Z", + "completed":"2016-12-31T20:17:25.277Z", + "new_balance":"6574.08", + "value":"-27.50" + } + }, + { + "id":"6f7b3d9b-a365-4244-b20b-df194b45cade", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-01-01T02:55:08.532Z", + "completed":"2017-01-01T02:55:08.532Z", + "new_balance":"6515.85", + "value":"-58.23" + } + }, + { + "id":"ce6415cc-1ee4-4bb7-ad64-0d0e5f5161f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-01T06:58:55.011Z", + "completed":"2017-01-01T06:58:55.011Z", + "new_balance":"6510.70", + "value":"-5.15" + } + }, + { + "id":"c0b5c76c-7d91-4b45-ad0d-bd58f577bbee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T10:15:53.855Z", + "completed":"2017-01-01T10:15:53.855Z", + "new_balance":"6507.26", + "value":"-3.44" + } + }, + { + "id":"c6668ef5-9dc7-4fa4-8b3a-f17f3f11d9da", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T13:43:12.117Z", + "completed":"2017-01-01T13:43:12.117Z", + "new_balance":"6492.01", + "value":"-15.25" + } + }, + { + "id":"188a9da7-3877-4a66-8240-14441c53eff8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-01T18:50:32.504Z", + "completed":"2017-01-01T18:50:32.504Z", + "new_balance":"6489.69", + "value":"-2.32" + } + }, + { + "id":"0b05d272-4a54-4343-bc61-61c1d5238d5c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-01-01T21:58:56.613Z", + "completed":"2017-01-01T21:58:56.613Z", + "new_balance":"6486.25", + "value":"-3.44" + } + }, + { + "id":"3f455e8e-486d-4bd8-8efd-4b9670af04ef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-02T12:35:17.662Z", + "completed":"2017-01-02T12:35:17.662Z", + "new_balance":"6476.56", + "value":"-9.69" + } + }, + { + "id":"17ef40a1-e20a-4211-af68-827f2af308bd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-01-02T18:14:30.403Z", + "completed":"2017-01-02T18:14:30.403Z", + "new_balance":"6469.46", + "value":"-7.10" + } + }, + { + "id":"d43b2027-9ff5-4f75-a6f5-8aaa27eeadeb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-04T08:56:46.594Z", + "completed":"2017-01-04T08:56:46.594Z", + "new_balance":"6466.55", + "value":"-2.91" + } + }, + { + "id":"54293f73-1763-436e-8831-a43db8efb02f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-04T11:52:16.295Z", + "completed":"2017-01-04T11:52:16.295Z", + "new_balance":"6462.77", + "value":"-3.78" + } + }, + { + "id":"ccf8657d-64bd-4790-ac5e-4b7c99c22a7e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-07T04:23:47.453Z", + "completed":"2017-01-07T04:23:47.453Z", + "new_balance":"6455.58", + "value":"-7.19" + } + }, + { + "id":"7241db6b-de44-46f7-8053-4ea9b9670bdd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-09T18:01:51.041Z", + "completed":"2017-01-09T18:01:51.041Z", + "new_balance":"6455.12", + "value":"-0.46" + } + }, + { + "id":"b4e81ff7-cf1e-46bc-8d48-4fe58504ea59", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-01-10T21:25:30.484Z", + "completed":"2017-01-10T21:25:30.484Z", + "new_balance":"6452.44", + "value":"-2.68" + } + }, + { + "id":"ef4df63e-afdd-43ea-a7ff-592e255ec786", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-12T09:09:51.545Z", + "completed":"2017-01-12T09:09:51.545Z", + "new_balance":"6449.22", + "value":"-3.22" + } + }, + { + "id":"919bb89d-2cbc-42aa-bb45-1282bb086abc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-15T22:05:11.414Z", + "completed":"2017-01-15T22:05:11.414Z", + "new_balance":"6448.32", + "value":"-0.90" + } + }, + { + "id":"15ec7caa-86c3-43d3-8f05-963b4b59de17", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-15T23:50:48.716Z", + "completed":"2017-01-15T23:50:48.716Z", + "new_balance":"6446.79", + "value":"-1.53" + } + }, + { + "id":"91a08ac8-0874-4004-ac8a-a496d75c9de3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-17T18:22:29.058Z", + "completed":"2017-01-17T18:22:29.058Z", + "new_balance":"6444.68", + "value":"-2.11" + } + }, + { + "id":"301cda4c-de94-4fd1-b01f-a52d2a67a880", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-01-19T13:07:59.436Z", + "completed":"2017-01-19T13:07:59.436Z", + "new_balance":"6417.18", + "value":"-27.50" + } + }, + { + "id":"84459d84-c0ee-4484-bcff-655d5eec870f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-01-20T17:54:44.990Z", + "completed":"2017-01-20T17:54:44.990Z", + "new_balance":"6416.74", + "value":"-0.44" + } + }, + { + "id":"cb070bc6-beb6-4992-ab03-4ec24ae8c75a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-22T11:17:44.458Z", + "completed":"2017-01-22T11:17:44.458Z", + "new_balance":"6412.26", + "value":"-4.48" + } + }, + { + "id":"b3d89b1f-fb6b-408b-b2c9-a65df42b9e88", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-01-22T19:50:27.868Z", + "completed":"2017-01-22T19:50:27.868Z", + "new_balance":"6411.15", + "value":"-1.11" + } + }, + { + "id":"0e4625cc-efac-4e4b-a42d-c8461b64f061", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-24T19:28:41.400Z", + "completed":"2017-01-24T19:28:41.400Z", + "new_balance":"6408.34", + "value":"-2.81" + } + }, + { + "id":"3d31cdf6-ec8d-42a2-934f-ab039c63c337", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-25T08:33:20.671Z", + "completed":"2017-01-25T08:33:20.671Z", + "new_balance":"6402.94", + "value":"-5.40" + } + }, + { + "id":"7e3b6acb-5b56-4f61-9582-82eb742cf239", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-01-25T12:00:08.941Z", + "completed":"2017-01-25T12:00:08.941Z", + "new_balance":"6402.50", + "value":"-0.44" + } + }, + { + "id":"1d0718df-108b-4ec4-aa16-148dbaab4d27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-26T18:13:22.615Z", + "completed":"2017-01-26T18:13:22.615Z", + "new_balance":"6396.68", + "value":"-5.82" + } + }, + { + "id":"eb25b8a0-4c8c-4392-ab15-eef807f5e6ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-01T00:42:10.518Z", + "completed":"2017-02-01T00:42:10.518Z", + "new_balance":"6391.53", + "value":"-5.15" + } + }, + { + "id":"77165467-bed9-49a2-9454-6ad53223bd6c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-02-01T06:21:43.928Z", + "completed":"2017-02-01T06:21:43.928Z", + "new_balance":"6333.30", + "value":"-58.23" + } + }, + { + "id":"83359fad-74e7-4df3-a14f-eb1ca95ce163", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-02-01T06:35:30.839Z", + "completed":"2017-02-01T06:35:30.839Z", + "new_balance":"6329.86", + "value":"-3.44" + } + }, + { + "id":"68116a10-f7f4-4703-a4cc-60d6067867a9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T15:14:03.485Z", + "completed":"2017-02-01T15:14:03.485Z", + "new_balance":"6512.56", + "value":"182.70" + } + }, + { + "id":"0536b610-1aa7-4fcc-9f4b-e928c36b4036", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T17:10:56.543Z", + "completed":"2017-02-01T17:10:56.543Z", + "new_balance":"6497.31", + "value":"-15.25" + } + }, + { + "id":"ab6e49a3-e27c-4473-afb0-81dbdcf276c9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-01T22:54:03.786Z", + "completed":"2017-02-01T22:54:03.786Z", + "new_balance":"6494.99", + "value":"-2.32" + } + }, + { + "id":"5489d3e6-b471-49d7-9ffa-9d64ad501f49", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-02T07:41:26.998Z", + "completed":"2017-02-02T07:41:26.998Z", + "new_balance":"6493.84", + "value":"-1.15" + } + }, + { + "id":"653c44e7-9e70-4336-b4a6-07eecc936106", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-02T19:37:43.627Z", + "completed":"2017-02-02T19:37:43.627Z", + "new_balance":"6491.74", + "value":"-2.10" + } + }, + { + "id":"cfee6fcf-7f6d-403a-bbbe-d02d47a4c7c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-02-02T23:21:39.646Z", + "completed":"2017-02-02T23:21:39.646Z", + "new_balance":"6484.64", + "value":"-7.10" + } + }, + { + "id":"9fe2118e-ed87-4507-a6c5-c5ce8aa99d78", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-02-03T01:35:30.193Z", + "completed":"2017-02-03T01:35:30.193Z", + "new_balance":"6481.31", + "value":"-3.33" + } + }, + { + "id":"33465129-1660-4579-9753-d5fe32955ede", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-02-03T19:03:12.218Z", + "completed":"2017-02-03T19:03:12.218Z", + "new_balance":"6478.91", + "value":"-2.40" + } + }, + { + "id":"0f88aec8-8e7a-4a4d-9441-636c3d6f568f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-03T19:28:30.352Z", + "completed":"2017-02-03T19:28:30.352Z", + "new_balance":"6476.41", + "value":"-2.50" + } + }, + { + "id":"9543d179-5310-4702-b630-2f0d726c7c27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-06T20:06:34.194Z", + "completed":"2017-02-06T20:06:34.194Z", + "new_balance":"6469.22", + "value":"-7.19" + } + }, + { + "id":"82b8b389-2525-4450-ab67-2698afac4939", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-08T02:11:21.281Z", + "completed":"2017-02-08T02:11:21.281Z", + "new_balance":"6468.74", + "value":"-0.48" + } + }, + { + "id":"631a52cb-dc9b-4393-9c7d-e1bfc567eaf9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-08T02:30:39.803Z", + "completed":"2017-02-08T02:30:39.803Z", + "new_balance":"6466.29", + "value":"-2.45" + } + }, + { + "id":"18976a88-83c8-49c8-b1bd-94b14eeabea0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-08T06:20:06.426Z", + "completed":"2017-02-08T06:20:06.426Z", + "new_balance":"6463.26", + "value":"-3.03" + } + }, + { + "id":"aea70d9c-eec4-4e7d-a535-70a9f6a4ab80", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T14:02:42.338Z", + "completed":"2017-02-09T14:02:42.338Z", + "new_balance":"6459.78", + "value":"-3.48" + } + }, + { + "id":"a4b896ff-839d-4720-90c3-cdd3b0dcf458", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-02-09T15:37:52.271Z", + "completed":"2017-02-09T15:37:52.271Z", + "new_balance":"6456.64", + "value":"-3.14" + } + }, + { + "id":"c8cbbf37-2ab5-4228-8a70-37446e3a3f8a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-02-12T10:27:45.235Z", + "completed":"2017-02-12T10:27:45.235Z", + "new_balance":"6456.17", + "value":"-0.47" + } + }, + { + "id":"40603620-48c4-4bd8-bb8a-7d260777af1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-13T03:45:02.672Z", + "completed":"2017-02-13T03:45:02.672Z", + "new_balance":"6449.74", + "value":"-6.43" + } + }, + { + "id":"04c1805d-b750-4de5-b9cc-84fc34e3407e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-02-13T12:31:32.585Z", + "completed":"2017-02-13T12:31:32.585Z", + "new_balance":"6448.97", + "value":"-0.77" + } + }, + { + "id":"76b9fba2-e2d8-4587-91d7-cc78702c32b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-02-13T17:52:44.182Z", + "completed":"2017-02-13T17:52:44.182Z", + "new_balance":"6453.05", + "value":"4.08" + } + }, + { + "id":"836a84b0-e204-462a-8ca1-165b6df0d8f8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T03:38:37.415Z", + "completed":"2017-02-14T03:38:37.415Z", + "new_balance":"6448.93", + "value":"-4.12" + } + }, + { + "id":"328e0645-9f28-4db6-9677-8eb753b80582", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-15T18:04:42.387Z", + "completed":"2017-02-15T18:04:42.387Z", + "new_balance":"6446.38", + "value":"-2.55" + } + }, + { + "id":"f5452502-5f4f-4600-860d-a34fb96454e7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-28T18:37:07.041Z", + "completed":"2017-02-28T18:37:07.041Z", + "new_balance":"6443.44", + "value":"-2.94" + } + }, + { + "id":"615f709a-ac7b-4da0-a54a-d50804ca5ec0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T00:33:32.033Z", + "completed":"2017-03-01T00:33:32.033Z", + "new_balance":"6428.19", + "value":"-15.25" + } + }, + { + "id":"7d851a74-30f9-4a8f-987f-3e77825399fe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T04:01:53.212Z", + "completed":"2017-03-01T04:01:53.212Z", + "new_balance":"6610.89", + "value":"182.70" + } + }, + { + "id":"4714148c-6786-4740-bec8-1b49a0bd47dd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-03-01T04:59:16.104Z", + "completed":"2017-03-01T04:59:16.104Z", + "new_balance":"6552.66", + "value":"-58.23" + } + }, + { + "id":"f5d9b866-8bbb-4a67-81f5-5e58460e077e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-01T08:49:52.253Z", + "completed":"2017-03-01T08:49:52.253Z", + "new_balance":"6550.34", + "value":"-2.32" + } + }, + { + "id":"0047ad51-b7b3-45b0-a9e9-ece95bcd7887", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T11:55:18.974Z", + "completed":"2017-03-01T11:55:18.974Z", + "new_balance":"6545.19", + "value":"-5.15" + } + }, + { + "id":"05716b2d-bc80-4f32-ab00-264d8ca9b5c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-03-01T19:11:33.951Z", + "completed":"2017-03-01T19:11:33.951Z", + "new_balance":"6541.75", + "value":"-3.44" + } + }, + { + "id":"9c13b681-e18c-4054-900e-0429d5a7f7dd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-03-02T03:46:43.617Z", + "completed":"2017-03-02T03:46:43.617Z", + "new_balance":"6534.65", + "value":"-7.10" + } + }, + { + "id":"3f741f69-ee85-476d-8144-9bc46a9ddb11", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-03-04T04:15:50.268Z", + "completed":"2017-03-04T04:15:50.268Z", + "new_balance":"6533.40", + "value":"-1.25" + } + }, + { + "id":"9f7e9191-ad02-4009-b2ed-1bca7069ad12", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T10:08:06.519Z", + "completed":"2017-03-04T10:08:06.519Z", + "new_balance":"6526.10", + "value":"-7.30" + } + }, + { + "id":"b5fc4dc2-af78-4f8c-8f4a-55fa7b740fb2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-04T10:47:26.196Z", + "completed":"2017-03-04T10:47:26.196Z", + "new_balance":"6525.34", + "value":"-0.76" + } + }, + { + "id":"58b6c474-109f-446d-aaf2-b01f37b68a34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T16:37:15.313Z", + "completed":"2017-03-04T16:37:15.313Z", + "new_balance":"6522.04", + "value":"-3.30" + } + }, + { + "id":"9c6d8b35-88a4-4646-ab14-235517d707a5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-05T05:10:15.561Z", + "completed":"2017-03-05T05:10:15.561Z", + "new_balance":"6521.64", + "value":"-0.40" + } + }, + { + "id":"0f62e130-7d6e-4885-a8b1-321a718816b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-05T19:37:20.636Z", + "completed":"2017-03-05T19:37:20.636Z", + "new_balance":"6517.60", + "value":"-4.04" + } + }, + { + "id":"6ad27b14-4f57-4182-ab1e-51e597c3f24d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T07:27:30.372Z", + "completed":"2017-03-06T07:27:30.372Z", + "new_balance":"6512.33", + "value":"-5.27" + } + }, + { + "id":"153d023b-823f-4f57-8dd7-8796c71622ea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-06T22:25:05.871Z", + "completed":"2017-03-06T22:25:05.871Z", + "new_balance":"6505.03", + "value":"-7.30" + } + }, + { + "id":"451a6011-10fe-474a-af33-c4cef257e37b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T03:20:24.396Z", + "completed":"2017-03-07T03:20:24.396Z", + "new_balance":"6500.76", + "value":"-4.27" + } + }, + { + "id":"ded6d676-b3ee-45a6-936e-10613eb4f518", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T11:22:02.637Z", + "completed":"2017-03-08T11:22:02.637Z", + "new_balance":"6495.49", + "value":"-5.27" + } + }, + { + "id":"13bf484e-dc16-446b-9582-f8852928252f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-09T21:24:18.443Z", + "completed":"2017-03-09T21:24:18.443Z", + "new_balance":"6494.95", + "value":"-0.54" + } + }, + { + "id":"64df3c36-c04b-4cc1-abe7-ff6bcd00df55", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T15:05:24.844Z", + "completed":"2017-03-10T15:05:24.844Z", + "new_balance":"6488.63", + "value":"-6.32" + } + }, + { + "id":"e3d52c72-ff68-4cdf-b537-01148472a88d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T22:18:42.440Z", + "completed":"2017-03-11T22:18:42.440Z", + "new_balance":"6487.86", + "value":"-0.77" + } + }, + { + "id":"00033368-4e87-4294-a80f-beb165b24ab4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-12T12:19:12.080Z", + "completed":"2017-03-12T12:19:12.080Z", + "new_balance":"6485.61", + "value":"-2.25" + } + }, + { + "id":"5b40dd2e-517a-41c4-88b3-d6e2708f21ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-12T18:32:05.445Z", + "completed":"2017-03-12T18:32:05.445Z", + "new_balance":"6484.56", + "value":"-1.05" + } + }, + { + "id":"7014624b-bc4d-4885-ab80-d27c478ed8dc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T16:34:30.294Z", + "completed":"2017-03-13T16:34:30.294Z", + "new_balance":"6480.30", + "value":"-4.26" + } + }, + { + "id":"62c5cebf-a071-4e17-9e1b-b3fed37bcd6f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-14T10:22:53.217Z", + "completed":"2017-03-14T10:22:53.217Z", + "new_balance":"6479.78", + "value":"-0.52" + } + }, + { + "id":"886766d1-0048-47cd-b6a2-870ebf64e49e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-16T03:26:40.737Z", + "completed":"2017-03-16T03:26:40.737Z", + "new_balance":"6474.96", + "value":"-4.82" + } + }, + { + "id":"9ed23ba8-f181-42a7-afa4-fff38106a1f5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-16T19:41:24.345Z", + "completed":"2017-03-16T19:41:24.345Z", + "new_balance":"6465.17", + "value":"-9.79" + } + }, + { + "id":"64796203-0ebd-4dbd-a137-60928a1df700", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-18T07:08:27.130Z", + "completed":"2017-03-18T07:08:27.130Z", + "new_balance":"6464.65", + "value":"-0.52" + } + }, + { + "id":"4dadb3b3-eb51-4f59-9460-79093be08d9a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-19T04:46:54.046Z", + "completed":"2017-03-19T04:46:54.046Z", + "new_balance":"6460.36", + "value":"-4.29" + } + }, + { + "id":"28c0e895-5bbf-4306-85c1-6ab098faf5a2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T05:41:21.404Z", + "completed":"2017-03-19T05:41:21.404Z", + "new_balance":"6456.21", + "value":"-4.15" + } + }, + { + "id":"6b55b4f8-2ac2-468c-be35-524e14f0944e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-03-19T15:52:10.066Z", + "completed":"2017-03-19T15:52:10.066Z", + "new_balance":"6449.89", + "value":"-6.32" + } + }, + { + "id":"a2c5ac27-57bb-43c7-bff0-3d310eb714b2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-03-20T12:34:56.149Z", + "completed":"2017-03-20T12:34:56.149Z", + "new_balance":"6442.93", + "value":"-6.96" + } + }, + { + "id":"477d6645-7922-4ee2-85b0-2197358b3eb4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-20T18:23:22.676Z", + "completed":"2017-03-20T18:23:22.676Z", + "new_balance":"6437.77", + "value":"-5.16" + } + }, + { + "id":"70c3f496-e94d-4a16-9034-150c85fa4b33", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-03-21T02:41:48.403Z", + "completed":"2017-03-21T02:41:48.403Z", + "new_balance":"6437.01", + "value":"-0.76" + } + }, + { + "id":"dfcecb02-494b-4122-b3c3-2507abd48d97", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-21T15:36:47.190Z", + "completed":"2017-03-21T15:36:47.190Z", + "new_balance":"6436.42", + "value":"-0.59" + } + }, + { + "id":"9fd76e95-7f58-49ad-9efb-bc275017e903", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-03-23T05:37:01.207Z", + "completed":"2017-03-23T05:37:01.207Z", + "new_balance":"6435.51", + "value":"-0.91" + } + }, + { + "id":"dc0a0d62-34a0-48a0-9933-9c5f860d411d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-03-23T23:25:48.656Z", + "completed":"2017-03-23T23:25:48.656Z", + "new_balance":"6430.90", + "value":"-4.61" + } + }, + { + "id":"852c2e0e-8fa5-4356-9f04-e44e5c297094", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-24T05:35:43.604Z", + "completed":"2017-03-24T05:35:43.604Z", + "new_balance":"6427.35", + "value":"-3.55" + } + }, + { + "id":"d0f64a5d-56eb-485f-bdbd-e761f313d19a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-03-25T01:50:20.752Z", + "completed":"2017-03-25T01:50:20.752Z", + "new_balance":"6426.04", + "value":"-1.31" + } + }, + { + "id":"f477c419-68f4-42e3-a178-9c5aad70944a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-25T02:40:15.682Z", + "completed":"2017-03-25T02:40:15.682Z", + "new_balance":"6422.98", + "value":"-3.06" + } + }, + { + "id":"0127ed48-3dd9-45bc-804f-e2c267e38cab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-27T22:27:09.157Z", + "completed":"2017-03-27T22:27:09.157Z", + "new_balance":"6395.48", + "value":"-27.50" + } + }, + { + "id":"ab520815-e362-45fc-8107-2a83b31cdd03", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-28T19:22:51.043Z", + "completed":"2017-03-28T19:22:51.043Z", + "new_balance":"6392.74", + "value":"-2.74" + } + }, + { + "id":"5c684557-1662-4a98-8a7a-ed5eef73e7e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T07:12:40.743Z", + "completed":"2017-04-01T07:12:40.743Z", + "new_balance":"6387.59", + "value":"-5.15" + } + }, + { + "id":"f3da54c4-c74d-40f0-b436-925d202e8cc3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T12:42:23.798Z", + "completed":"2017-04-01T12:42:23.798Z", + "new_balance":"6372.34", + "value":"-15.25" + } + }, + { + "id":"4464f08f-c2ab-49bf-a436-2cc4f2702aec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-04-01T13:31:06.688Z", + "completed":"2017-04-01T13:31:06.688Z", + "new_balance":"6314.11", + "value":"-58.23" + } + }, + { + "id":"30afd4bf-b87e-486f-a695-78b39ec77896", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T23:02:58.050Z", + "completed":"2017-04-01T23:02:58.050Z", + "new_balance":"6311.79", + "value":"-2.32" + } + }, + { + "id":"46c4a32b-6219-4dc2-92e5-edcc30a8f875", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-02T00:13:46.129Z", + "completed":"2017-04-02T00:13:46.129Z", + "new_balance":"6302.10", + "value":"-9.69" + } + }, + { + "id":"f04b397d-69c8-48cf-9ad3-b1e106cd1465", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-04-02T03:01:30.536Z", + "completed":"2017-04-02T03:01:30.536Z", + "new_balance":"6295.00", + "value":"-7.10" + } + }, + { + "id":"540cb7e8-50f6-443f-ba7f-6d801688e307", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T06:39:17.404Z", + "completed":"2017-04-03T06:39:17.404Z", + "new_balance":"6291.22", + "value":"-3.78" + } + }, + { + "id":"4693a90e-0c4c-423a-971f-0657e3864165", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T08:12:20.566Z", + "completed":"2017-04-03T08:12:20.566Z", + "new_balance":"6299.16", + "value":"7.94" + } + }, + { + "id":"171573e9-4271-4da3-896e-604635c2faa3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-03T12:03:41.362Z", + "completed":"2017-04-03T12:03:41.362Z", + "new_balance":"6296.25", + "value":"-2.91" + } + }, + { + "id":"b2ca0299-aa4e-4147-ba57-3bb23a86a100", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T16:54:57.911Z", + "completed":"2017-04-03T16:54:57.911Z", + "new_balance":"6292.47", + "value":"-3.78" + } + }, + { + "id":"1d9701f8-025a-4bad-bd23-5185b22259e4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T23:56:28.505Z", + "completed":"2017-04-03T23:56:28.505Z", + "new_balance":"6304.81", + "value":"12.34" + } + }, + { + "id":"9634c7e9-6a12-4e1f-87a0-9dbf8e3f9e06", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-04T07:10:37.698Z", + "completed":"2017-04-04T07:10:37.698Z", + "new_balance":"6297.62", + "value":"-7.19" + } + }, + { + "id":"9b971f66-60c0-43f5-8285-240688f6ae63", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-05T04:59:18.257Z", + "completed":"2017-04-05T04:59:18.257Z", + "new_balance":"6297.16", + "value":"-0.46" + } + }, + { + "id":"90f1d814-ff80-4b22-833c-03f631002e61", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-04-05T12:47:59.576Z", + "completed":"2017-04-05T12:47:59.576Z", + "new_balance":"6294.48", + "value":"-2.68" + } + }, + { + "id":"085b7ac7-cda1-4825-bc00-12cf289753ed", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-07T07:05:41.855Z", + "completed":"2017-04-07T07:05:41.855Z", + "new_balance":"6291.26", + "value":"-3.22" + } + }, + { + "id":"403f6092-8def-4002-a22a-15df61eef5fb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-07T22:22:14.208Z", + "completed":"2017-04-07T22:22:14.208Z", + "new_balance":"6289.73", + "value":"-1.53" + } + }, + { + "id":"cb2963e2-8869-4aa7-b928-93ff23c10fbe", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-08T23:38:58.267Z", + "completed":"2017-04-08T23:38:58.267Z", + "new_balance":"6288.83", + "value":"-0.90" + } + }, + { + "id":"b0e5ca8f-edd0-47b3-945e-4f209db34e70", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-04-09T17:44:18.341Z", + "completed":"2017-04-09T17:44:18.341Z", + "new_balance":"6288.39", + "value":"-0.44" + } + }, + { + "id":"3fcc0381-c7be-46fe-afed-69ee4b1c9389", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-04-09T19:48:00.157Z", + "completed":"2017-04-09T19:48:00.157Z", + "new_balance":"6260.89", + "value":"-27.50" + } + }, + { + "id":"a0a710bf-9387-4ea2-a367-56a74eeed626", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-09T21:55:41.760Z", + "completed":"2017-04-09T21:55:41.760Z", + "new_balance":"6258.78", + "value":"-2.11" + } + }, + { + "id":"a9424657-47f5-4386-8019-44d587ae9c3e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T00:35:55.830Z", + "completed":"2017-04-10T00:35:55.830Z", + "new_balance":"6254.30", + "value":"-4.48" + } + }, + { + "id":"f992cb50-c7f4-422c-8d7d-6f2c7d7185e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-04-17T10:49:04.814Z", + "completed":"2017-04-17T10:49:04.814Z", + "new_balance":"6253.19", + "value":"-1.11" + } + }, + { + "id":"3e1c0bbb-ebab-4608-ae3e-2f4cda7954b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-18T02:01:36.573Z", + "completed":"2017-04-18T02:01:36.573Z", + "new_balance":"6250.38", + "value":"-2.81" + } + }, + { + "id":"53557d46-70a6-44ce-9c78-667b656148ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-25T10:23:15.008Z", + "completed":"2017-04-25T10:23:15.008Z", + "new_balance":"6244.98", + "value":"-5.40" + } + }, + { + "id":"213fc4b8-ee8e-4a99-a0e7-456060887594", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-04-26T21:35:19.053Z", + "completed":"2017-04-26T21:35:19.053Z", + "new_balance":"6244.54", + "value":"-0.44" + } + }, + { + "id":"ad837cf1-6a3c-4e33-beeb-94576f59067c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-26T21:49:11.506Z", + "completed":"2017-04-26T21:49:11.506Z", + "new_balance":"6238.72", + "value":"-5.82" + } + }, + { + "id":"3969355f-cb20-4faf-ae80-7a46fd8c549e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-02T07:12:54.050Z", + "completed":"2017-05-02T07:12:54.050Z", + "new_balance":"6237.57", + "value":"-1.15" + } + }, + { + "id":"0791f32d-2664-44b6-b38b-4675210657db", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-05-02T14:08:08.272Z", + "completed":"2017-05-02T14:08:08.272Z", + "new_balance":"6179.34", + "value":"-58.23" + } + }, + { + "id":"5588064c-1161-4c1e-aae7-5d6306b60187", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-02T16:59:23.036Z", + "completed":"2017-05-02T16:59:23.036Z", + "new_balance":"6362.04", + "value":"182.70" + } + }, + { + "id":"12e1b530-2e3c-427f-8389-74d95869f29b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-05-02T17:55:47.978Z", + "completed":"2017-05-02T17:55:47.978Z", + "new_balance":"6358.60", + "value":"-3.44" + } + }, + { + "id":"b615d88c-dd52-492e-9549-58f0e113016f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-02T20:25:31.132Z", + "completed":"2017-05-02T20:25:31.132Z", + "new_balance":"6356.28", + "value":"-2.32" + } + }, + { + "id":"dfc210f9-83f7-4be1-a6a0-ae00c63054d9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-05-02T21:25:40.420Z", + "completed":"2017-05-02T21:25:40.420Z", + "new_balance":"6349.18", + "value":"-7.10" + } + }, + { + "id":"52a810e0-7469-482d-aa06-bf7c392290d4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T23:24:18.699Z", + "completed":"2017-05-02T23:24:18.699Z", + "new_balance":"6344.03", + "value":"-5.15" + } + }, + { + "id":"82aa7b33-e263-4a6a-9753-3d1d62374c2e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T23:42:14.833Z", + "completed":"2017-05-02T23:42:14.833Z", + "new_balance":"6328.78", + "value":"-15.25" + } + }, + { + "id":"473ece69-2081-4ddb-9df1-7e4407d13e3b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-03T16:03:15.969Z", + "completed":"2017-05-03T16:03:15.969Z", + "new_balance":"6326.28", + "value":"-2.50" + } + }, + { + "id":"bb7f5902-61c6-4201-b3c6-64f95f54763a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-03T16:31:33.128Z", + "completed":"2017-05-03T16:31:33.128Z", + "new_balance":"6324.18", + "value":"-2.10" + } + }, + { + "id":"4d85e399-a74f-4e5d-980d-091d0df4d02a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-05-04T05:39:03.443Z", + "completed":"2017-05-04T05:39:03.443Z", + "new_balance":"6321.78", + "value":"-2.40" + } + }, + { + "id":"02a0c13f-f035-40d7-9c0f-7992f70f0a60", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-05-04T17:04:08.056Z", + "completed":"2017-05-04T17:04:08.056Z", + "new_balance":"6318.45", + "value":"-3.33" + } + }, + { + "id":"8fa32e15-d4f9-4b08-bca6-734120515b16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-05T05:42:14.131Z", + "completed":"2017-05-05T05:42:14.131Z", + "new_balance":"6311.26", + "value":"-7.19" + } + }, + { + "id":"7e2b74f6-af5d-481e-ad5e-f184836b4a75", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-07T02:40:10.432Z", + "completed":"2017-05-07T02:40:10.432Z", + "new_balance":"6310.78", + "value":"-0.48" + } + }, + { + "id":"d0955fbc-6353-4798-85f8-8adde88a8a0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-07T22:19:30.877Z", + "completed":"2017-05-07T22:19:30.877Z", + "new_balance":"6307.75", + "value":"-3.03" + } + }, + { + "id":"7a9c89d9-c4ba-405c-8e65-58d271826fe0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-12T04:29:48.892Z", + "completed":"2017-05-12T04:29:48.892Z", + "new_balance":"6305.30", + "value":"-2.45" + } + }, + { + "id":"2749733c-81e6-4bb1-9f7e-33c8661edcdb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-05-12T10:21:54.066Z", + "completed":"2017-05-12T10:21:54.066Z", + "new_balance":"6302.16", + "value":"-3.14" + } + }, + { + "id":"b093bd97-bb22-4c50-aa2e-61e17d1f74b5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T06:04:19.766Z", + "completed":"2017-05-14T06:04:19.766Z", + "new_balance":"6298.68", + "value":"-3.48" + } + }, + { + "id":"a44f9630-f238-45aa-9656-a912ea713f8b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-05-16T13:23:00.960Z", + "completed":"2017-05-16T13:23:00.960Z", + "new_balance":"6298.21", + "value":"-0.47" + } + }, + { + "id":"19a8a65d-9ce4-45bf-a1ab-9acf15ee112f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-05-18T18:33:48.286Z", + "completed":"2017-05-18T18:33:48.286Z", + "new_balance":"6297.44", + "value":"-0.77" + } + }, + { + "id":"b87902bd-f44f-444a-b630-720b247f1413", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-05-20T05:13:34.151Z", + "completed":"2017-05-20T05:13:34.151Z", + "new_balance":"6301.52", + "value":"4.08" + } + }, + { + "id":"eebda4d7-a286-4914-a302-eefa23723288", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-21T05:19:55.631Z", + "completed":"2017-05-21T05:19:55.631Z", + "new_balance":"6297.40", + "value":"-4.12" + } + }, + { + "id":"83623599-5b14-4580-aceb-d24a231ecd7c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-21T10:22:40.110Z", + "completed":"2017-05-21T10:22:40.110Z", + "new_balance":"6290.97", + "value":"-6.43" + } + }, + { + "id":"f41e1b85-f85e-4cb2-9f8b-9d53b79ee3d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T14:08:44.987Z", + "completed":"2017-05-27T14:08:44.987Z", + "new_balance":"6288.42", + "value":"-2.55" + } + }, + { + "id":"04b91dd3-7e13-48de-8608-e9f8cadaf713", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-27T16:02:03.942Z", + "completed":"2017-05-27T16:02:03.942Z", + "new_balance":"6285.48", + "value":"-2.94" + } + }, + { + "id":"16746968-adf1-4437-9532-6b862fd6c05b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T00:13:44.375Z", + "completed":"2017-06-01T00:13:44.375Z", + "new_balance":"6283.16", + "value":"-2.32" + } + }, + { + "id":"84b5ffd8-f70f-4920-8f92-172ad37cee09", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T01:37:23.270Z", + "completed":"2017-06-01T01:37:23.270Z", + "new_balance":"6278.01", + "value":"-5.15" + } + }, + { + "id":"d5cad1fe-b38d-417b-9bca-0c4f5ce93179", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-06-01T11:55:32.699Z", + "completed":"2017-06-01T11:55:32.699Z", + "new_balance":"6219.78", + "value":"-58.23" + } + }, + { + "id":"ee78a4ed-63df-4487-a9d7-0d5c2d6f8957", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T13:55:18.341Z", + "completed":"2017-06-01T13:55:18.341Z", + "new_balance":"6204.53", + "value":"-15.25" + } + }, + { + "id":"a8cb650d-b428-4345-a409-a12ad4538812", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-06-01T18:31:47.076Z", + "completed":"2017-06-01T18:31:47.076Z", + "new_balance":"6387.23", + "value":"182.70" + } + }, + { + "id":"9a517363-9945-440a-bf96-8e073d534a5a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-06-01T20:17:09.358Z", + "completed":"2017-06-01T20:17:09.358Z", + "new_balance":"6383.79", + "value":"-3.44" + } + }, + { + "id":"15b4ce2c-082b-4b51-ba0c-866bc0c22f2d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-06-04T19:47:41.833Z", + "completed":"2017-06-04T19:47:41.833Z", + "new_balance":"6376.69", + "value":"-7.10" + } + }, + { + "id":"54b47bd3-891a-48d3-9eb2-9f7f85820c51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T20:50:00.127Z", + "completed":"2017-06-04T20:50:00.127Z", + "new_balance":"6364.73", + "value":"-11.96" + } + }, + { + "id":"9cf319aa-357f-473d-a387-dc814fa9345e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-11T17:27:37.717Z", + "completed":"2017-06-11T17:27:37.717Z", + "new_balance":"6361.43", + "value":"-3.30" + } + }, + { + "id":"5f7391c9-4486-486b-be70-1568754b734e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-06-12T00:42:01.082Z", + "completed":"2017-06-12T00:42:01.082Z", + "new_balance":"6360.18", + "value":"-1.25" + } + }, + { + "id":"d9b2041e-4458-41e5-8863-1ba49bbdaa1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-06-13T12:05:48.494Z", + "completed":"2017-06-13T12:05:48.494Z", + "new_balance":"6359.42", + "value":"-0.76" + } + }, + { + "id":"af919ec3-7ffc-4c88-91b2-a76cd9b867a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T17:03:07.712Z", + "completed":"2017-06-13T17:03:07.712Z", + "new_balance":"6352.12", + "value":"-7.30" + } + }, + { + "id":"23a45bd1-16c9-4158-8cea-00dba94a31e9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-16T23:05:28.616Z", + "completed":"2017-06-16T23:05:28.616Z", + "new_balance":"6348.08", + "value":"-4.04" + } + }, + { + "id":"0acd092f-1b48-4012-87a6-34ce6eeb3b3a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-17T00:23:04.641Z", + "completed":"2017-06-17T00:23:04.641Z", + "new_balance":"6340.78", + "value":"-7.30" + } + }, + { + "id":"973bb89a-4d50-4e4f-ae1b-ae81c9048a1f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-17T17:13:34.605Z", + "completed":"2017-06-17T17:13:34.605Z", + "new_balance":"6340.38", + "value":"-0.40" + } + }, + { + "id":"27b098a8-a633-4789-9cfb-7ae5488ecd82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T05:48:16.528Z", + "completed":"2017-06-18T05:48:16.528Z", + "new_balance":"6335.11", + "value":"-5.27" + } + }, + { + "id":"bb9d0a0d-9c19-4a11-aec8-07556278e9a1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T00:56:12.585Z", + "completed":"2017-06-19T00:56:12.585Z", + "new_balance":"6330.84", + "value":"-4.27" + } + }, + { + "id":"b4898f7e-9bda-4e8f-bcc7-f3560259ac0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T06:47:14.146Z", + "completed":"2017-06-19T06:47:14.146Z", + "new_balance":"6325.57", + "value":"-5.27" + } + }, + { + "id":"2dd80e3f-e772-4f3a-98b4-cc0cc45160a9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-21T14:09:11.185Z", + "completed":"2017-06-21T14:09:11.185Z", + "new_balance":"6325.03", + "value":"-0.54" + } + }, + { + "id":"5a3697cb-7c81-4e58-b80a-d55a7fadb62f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-21T21:54:07.040Z", + "completed":"2017-06-21T21:54:07.040Z", + "new_balance":"6318.71", + "value":"-6.32" + } + }, + { + "id":"7f6469ee-ef60-43c7-8915-5ca850ffadb8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T01:52:00.611Z", + "completed":"2017-06-23T01:52:00.611Z", + "new_balance":"6316.46", + "value":"-2.25" + } + }, + { + "id":"ad7d415c-ba39-4659-bdab-8437b8a77f6c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-23T04:20:56.343Z", + "completed":"2017-06-23T04:20:56.343Z", + "new_balance":"6315.69", + "value":"-0.77" + } + }, + { + "id":"ebfe2bf8-3230-4ae1-b600-843beb0a06b3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-24T05:43:41.139Z", + "completed":"2017-06-24T05:43:41.139Z", + "new_balance":"6311.43", + "value":"-4.26" + } + }, + { + "id":"f13d34c7-132f-429d-8862-3f20c5884f8d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-24T22:38:04.924Z", + "completed":"2017-06-24T22:38:04.924Z", + "new_balance":"6310.38", + "value":"-1.05" + } + }, + { + "id":"6544993e-9da3-4054-991c-ec57994c7600", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-28T01:39:03.602Z", + "completed":"2017-06-28T01:39:03.602Z", + "new_balance":"6300.59", + "value":"-9.79" + } + }, + { + "id":"2fb4d254-1f3c-4223-a48b-066a8d4bdfcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T11:04:23.121Z", + "completed":"2017-06-28T11:04:23.121Z", + "new_balance":"6300.07", + "value":"-0.52" + } + }, + { + "id":"98404e19-9263-4d08-ba9e-6f807f610c31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-28T20:00:24.083Z", + "completed":"2017-06-28T20:00:24.083Z", + "new_balance":"6295.25", + "value":"-4.82" + } + }, + { + "id":"4a7f4277-43ef-47ec-91b5-f415a3aab199", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-28T23:19:18.755Z", + "completed":"2017-06-28T23:19:18.755Z", + "new_balance":"6294.73", + "value":"-0.52" + } + }, + { + "id":"38246643-803b-4a63-b63b-3953950055f1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T03:08:04.961Z", + "completed":"2017-06-29T03:08:04.961Z", + "new_balance":"6289.57", + "value":"-5.16" + } + }, + { + "id":"93fc932a-3404-4e9e-8534-536e86451dff", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-06-29T11:27:52.865Z", + "completed":"2017-06-29T11:27:52.865Z", + "new_balance":"6288.81", + "value":"-0.76" + } + }, + { + "id":"ee3277d3-7784-4702-9353-d853de5e6a92", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T15:41:47.764Z", + "completed":"2017-06-29T15:41:47.764Z", + "new_balance":"6284.66", + "value":"-4.15" + } + }, + { + "id":"31c6c7a2-26c3-4be5-8e8e-12f7a1e94264", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-06-29T17:19:33.798Z", + "completed":"2017-06-29T17:19:33.798Z", + "new_balance":"6278.34", + "value":"-6.32" + } + }, + { + "id":"5d174b9c-65ca-4747-b2bb-56952e6f5503", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-29T21:47:20.863Z", + "completed":"2017-06-29T21:47:20.863Z", + "new_balance":"6274.05", + "value":"-4.29" + } + }, + { + "id":"5359373f-ae14-473f-9124-29dd8e0cd52b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-06-29T23:39:34.330Z", + "completed":"2017-06-29T23:39:34.330Z", + "new_balance":"6267.09", + "value":"-6.96" + } + }, + { + "id":"bc4bb47b-3c4f-453f-891f-52b0265a0ab6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-30T05:11:13.374Z", + "completed":"2017-06-30T05:11:13.374Z", + "new_balance":"6266.50", + "value":"-0.59" + } + }, + { + "id":"090f2da9-c59e-43e2-9789-5859cad893b6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-06-30T10:12:32.305Z", + "completed":"2017-06-30T10:12:32.305Z", + "new_balance":"6261.89", + "value":"-4.61" + } + }, + { + "id":"b0feaff0-7340-43db-9c5b-696e7ff71830", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-30T13:36:48.202Z", + "completed":"2017-06-30T13:36:48.202Z", + "new_balance":"6258.34", + "value":"-3.55" + } + }, + { + "id":"62edc59f-633a-4ba5-952a-ca8e78fc2553", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-06-30T16:59:36.670Z", + "completed":"2017-06-30T16:59:36.670Z", + "new_balance":"6257.43", + "value":"-0.91" + } + }, + { + "id":"605173a2-a01e-41f9-95da-2818dc3413ae", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T01:24:35.908Z", + "completed":"2017-07-01T01:24:35.908Z", + "new_balance":"6254.37", + "value":"-3.06" + } + }, + { + "id":"69333575-b121-442b-8222-cfd7c7164087", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T01:27:06.485Z", + "completed":"2017-07-01T01:27:06.485Z", + "new_balance":"6250.93", + "value":"-3.44" + } + }, + { + "id":"16be6e66-13a5-4207-896f-b8640dd52863", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T03:24:35.939Z", + "completed":"2017-07-01T03:24:35.939Z", + "new_balance":"6223.43", + "value":"-27.50" + } + }, + { + "id":"9b668d13-fe6f-499b-ae95-45a5cde1de95", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-01T12:07:30.937Z", + "completed":"2017-07-01T12:07:30.937Z", + "new_balance":"6221.11", + "value":"-2.32" + } + }, + { + "id":"05c9d554-85ba-4d91-b9fd-bbdb1b764ac7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-01T12:58:35.112Z", + "completed":"2017-07-01T12:58:35.112Z", + "new_balance":"6218.37", + "value":"-2.74" + } + }, + { + "id":"bae2dc3c-8ac8-4fa8-a368-0800f252e1c1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-07-01T13:13:01.307Z", + "completed":"2017-07-01T13:13:01.307Z", + "new_balance":"6214.93", + "value":"-3.44" + } + }, + { + "id":"cbb94b62-48c6-4c1d-b192-b44ab47f060d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-07-01T14:36:52.403Z", + "completed":"2017-07-01T14:36:52.403Z", + "new_balance":"6156.70", + "value":"-58.23" + } + }, + { + "id":"034e7208-5f5a-4120-a0c8-1cb7ee1ac9a8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-07-01T15:59:12.693Z", + "completed":"2017-07-01T15:59:12.693Z", + "new_balance":"6155.39", + "value":"-1.31" + } + }, + { + "id":"7e1179fc-505b-48a7-99d5-75a0979acaab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-01T17:32:28.460Z", + "completed":"2017-07-01T17:32:28.460Z", + "new_balance":"6150.24", + "value":"-5.15" + } + }, + { + "id":"d1178571-4001-4d5f-a68a-14d17185ae29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T23:19:17.075Z", + "completed":"2017-07-01T23:19:17.075Z", + "new_balance":"6134.99", + "value":"-15.25" + } + }, + { + "id":"73d87a75-a91e-43b4-8012-f293e140cc65", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-07-02T02:19:33.210Z", + "completed":"2017-07-02T02:19:33.210Z", + "new_balance":"6127.89", + "value":"-7.10" + } + }, + { + "id":"3fe5b9ef-5e7b-418d-9be2-f0006251b8b9", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-03T20:28:00.270Z", + "completed":"2017-07-03T20:28:00.270Z", + "new_balance":"6117.42", + "value":"-10.47" + } + }, + { + "id":"3c68c259-c8be-47a3-b5cb-4c42d64687fc", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-04T18:12:03.893Z", + "completed":"2017-07-04T18:12:03.893Z", + "new_balance":"6115.64", + "value":"-1.78" + } + }, + { + "id":"99463a5d-5286-41c4-b36f-aa46ef9c1ec3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T04:55:59.576Z", + "completed":"2017-07-05T04:55:59.576Z", + "new_balance":"6106.00", + "value":"-9.64" + } + }, + { + "id":"d787bbf6-b259-4532-92f7-4cc843e12473", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-05T17:33:11.456Z", + "completed":"2017-07-05T17:33:11.456Z", + "new_balance":"6098.81", + "value":"-7.19" + } + }, + { + "id":"07f73938-eab2-43db-a1b6-6193ebfa9fd6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-06T16:50:04.157Z", + "completed":"2017-07-06T16:50:04.157Z", + "new_balance":"6098.35", + "value":"-0.46" + } + }, + { + "id":"c82e5eae-2fb4-4c04-bc32-86f3fb1ab6bf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-07-11T13:16:03.702Z", + "completed":"2017-07-11T13:16:03.702Z", + "new_balance":"6095.67", + "value":"-2.68" + } + }, + { + "id":"0e352e47-55c7-4843-954e-e8b6c9893084", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-12T10:42:50.710Z", + "completed":"2017-07-12T10:42:50.710Z", + "new_balance":"6092.45", + "value":"-3.22" + } + }, + { + "id":"e0914fef-989a-4d69-b8bb-f77ef3fa4e2a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-14T15:19:04.139Z", + "completed":"2017-07-14T15:19:04.139Z", + "new_balance":"6090.92", + "value":"-1.53" + } + }, + { + "id":"4468722f-b725-41ef-a59c-48d85af66f5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-16T13:00:01.045Z", + "completed":"2017-07-16T13:00:01.045Z", + "new_balance":"6090.02", + "value":"-0.90" + } + }, + { + "id":"a6015c73-f404-4240-8fd1-34f7f1f0e044", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-18T11:54:57.433Z", + "completed":"2017-07-18T11:54:57.433Z", + "new_balance":"6087.91", + "value":"-2.11" + } + }, + { + "id":"40db28cd-1c52-4e3c-aff4-d6cc9bfeea13", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-07-20T16:29:18.463Z", + "completed":"2017-07-20T16:29:18.463Z", + "new_balance":"6060.41", + "value":"-27.50" + } + }, + { + "id":"13f1912b-8912-4f01-a952-d98c5da36847", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-07-20T21:06:49.107Z", + "completed":"2017-07-20T21:06:49.107Z", + "new_balance":"6059.97", + "value":"-0.44" + } + }, + { + "id":"018d857e-b21d-456c-8286-90df3d0f0526", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-07-24T02:04:56.572Z", + "completed":"2017-07-24T02:04:56.572Z", + "new_balance":"6058.86", + "value":"-1.11" + } + }, + { + "id":"73a684ec-86a5-43f4-8a53-04828f2f264c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-24T17:23:57.137Z", + "completed":"2017-07-24T17:23:57.137Z", + "new_balance":"6054.38", + "value":"-4.48" + } + }, + { + "id":"d0e2582d-12f4-4c52-a123-4c336d209b0c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T03:25:14.908Z", + "completed":"2017-07-25T03:25:14.908Z", + "new_balance":"6048.98", + "value":"-5.40" + } + }, + { + "id":"b45e9991-8e5c-420e-9783-248545632770", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-25T07:35:36.699Z", + "completed":"2017-07-25T07:35:36.699Z", + "new_balance":"6046.17", + "value":"-2.81" + } + }, + { + "id":"89bb5c1d-2e59-4c2c-b9df-9f8c7b9aa4e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-26T07:30:11.146Z", + "completed":"2017-07-26T07:30:11.146Z", + "new_balance":"6040.35", + "value":"-5.82" + } + }, + { + "id":"fa378fd0-4318-421b-89d5-446c5789f5c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-07-27T09:07:20.261Z", + "completed":"2017-07-27T09:07:20.261Z", + "new_balance":"6039.91", + "value":"-0.44" + } + }, + { + "id":"d12f8ec0-5883-4f4d-ac36-5509aaa4397e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T03:11:25.439Z", + "completed":"2017-08-01T03:11:25.439Z", + "new_balance":"6222.61", + "value":"182.70" + } + }, + { + "id":"94bd15e8-115a-4764-8122-79771978e0f0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-08-01T06:04:37.476Z", + "completed":"2017-08-01T06:04:37.476Z", + "new_balance":"6219.17", + "value":"-3.44" + } + }, + { + "id":"29c5f44b-2c9b-4e71-8cd8-41facc4e1207", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-01T08:03:55.121Z", + "completed":"2017-08-01T08:03:55.121Z", + "new_balance":"6214.02", + "value":"-5.15" + } + }, + { + "id":"7744597a-4acd-44b2-855e-cabfcd792169", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-08-01T08:42:52.896Z", + "completed":"2017-08-01T08:42:52.896Z", + "new_balance":"6155.79", + "value":"-58.23" + } + }, + { + "id":"15e513f5-981e-42f5-9d42-4f76ea1e20ba", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T13:43:36.294Z", + "completed":"2017-08-01T13:43:36.294Z", + "new_balance":"6140.54", + "value":"-15.25" + } + }, + { + "id":"c6b11810-2354-4eb0-a732-98eab2f11004", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-01T19:33:54.939Z", + "completed":"2017-08-01T19:33:54.939Z", + "new_balance":"6138.22", + "value":"-2.32" + } + }, + { + "id":"20d44006-4206-40d2-b6b1-0ca091ea4ee2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-08-02T19:49:26.600Z", + "completed":"2017-08-02T19:49:26.600Z", + "new_balance":"6131.12", + "value":"-7.10" + } + }, + { + "id":"8e6955db-e488-46a6-a8e7-c23589ed3e5b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-03T17:11:02.892Z", + "completed":"2017-08-03T17:11:02.892Z", + "new_balance":"6130.66", + "value":"-0.46" + } + }, + { + "id":"a2f03abd-8a2e-4199-82f5-801dbc37b778", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-04T11:31:10.594Z", + "completed":"2017-08-04T11:31:10.594Z", + "new_balance":"6127.74", + "value":"-2.92" + } + }, + { + "id":"c2964d04-d76e-4e2f-a3ef-fb07ebfa1a9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T09:20:34.287Z", + "completed":"2017-08-07T09:20:34.287Z", + "new_balance":"6125.24", + "value":"-2.50" + } + }, + { + "id":"938edaae-3235-4fcd-99ee-ff61c6eb5f16", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-08-09T01:40:58.764Z", + "completed":"2017-08-09T01:40:58.764Z", + "new_balance":"6122.84", + "value":"-2.40" + } + }, + { + "id":"0d6b9e8a-5337-4ae8-bf22-92515253ea34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-08-09T12:49:58.846Z", + "completed":"2017-08-09T12:49:58.846Z", + "new_balance":"6119.51", + "value":"-3.33" + } + }, + { + "id":"c9933ab0-8838-469e-a1b8-0329614cb355", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-10T08:34:50.446Z", + "completed":"2017-08-10T08:34:50.446Z", + "new_balance":"6112.32", + "value":"-7.19" + } + }, + { + "id":"aab17adc-dc09-4570-a304-e74e19eb6c83", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-14T20:45:20.600Z", + "completed":"2017-08-14T20:45:20.600Z", + "new_balance":"6111.84", + "value":"-0.48" + } + }, + { + "id":"5da2ebfe-b2c5-41ee-a5e2-f3011cc5978b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-08-15T08:26:05.689Z", + "completed":"2017-08-15T08:26:05.689Z", + "new_balance":"6108.62", + "value":"-3.22" + } + }, + { + "id":"d5637977-dee3-4c6c-adc1-4253d0643afd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-15T16:45:11.584Z", + "completed":"2017-08-15T16:45:11.584Z", + "new_balance":"6105.59", + "value":"-3.03" + } + }, + { + "id":"01c3ccc6-5962-4903-8e79-0638b87eca56", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-08-16T00:40:29.124Z", + "completed":"2017-08-16T00:40:29.124Z", + "new_balance":"6102.45", + "value":"-3.14" + } + }, + { + "id":"e3993d87-190d-4269-830a-261f87c35b9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T00:16:12.920Z", + "completed":"2017-08-17T00:16:12.920Z", + "new_balance":"6098.97", + "value":"-3.48" + } + }, + { + "id":"8e6eafbf-5892-4e1b-b922-5a4c581946b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-08-20T02:14:21.901Z", + "completed":"2017-08-20T02:14:21.901Z", + "new_balance":"6098.50", + "value":"-0.47" + } + }, + { + "id":"7b9edab0-768a-42f4-b672-c699c8a2d296", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-08-20T12:12:16.013Z", + "completed":"2017-08-20T12:12:16.013Z", + "new_balance":"6097.73", + "value":"-0.77" + } + }, + { + "id":"701671a9-2b85-4d9e-a7d4-679f37156861", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-08-22T22:40:09.923Z", + "completed":"2017-08-22T22:40:09.923Z", + "new_balance":"6101.81", + "value":"4.08" + } + }, + { + "id":"5fb2d462-4456-48ac-a5c8-7357ed27af93", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T06:41:22.292Z", + "completed":"2017-08-23T06:41:22.292Z", + "new_balance":"6095.38", + "value":"-6.43" + } + }, + { + "id":"3e796044-e275-413e-a37e-44e2592b5d1b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-23T18:58:00.376Z", + "completed":"2017-08-23T18:58:00.376Z", + "new_balance":"6091.26", + "value":"-4.12" + } + }, + { + "id":"385da43e-27d3-43ca-846c-0048c660826d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T14:42:31.291Z", + "completed":"2017-08-28T14:42:31.291Z", + "new_balance":"6088.32", + "value":"-2.94" + } + }, + { + "id":"241a18f9-066b-43c2-be5a-5b10b9736392", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-28T19:03:27.751Z", + "completed":"2017-08-28T19:03:27.751Z", + "new_balance":"6085.77", + "value":"-2.55" + } + }, + { + "id":"69a48daa-9c49-4e87-be8f-2a0a6cfd1a5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T04:15:59.022Z", + "completed":"2017-09-01T04:15:59.022Z", + "new_balance":"6080.62", + "value":"-5.15" + } + }, + { + "id":"f127f78d-d30d-42fa-943b-dfe7a9256025", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-09-01T14:46:40.742Z", + "completed":"2017-09-01T14:46:40.742Z", + "new_balance":"6022.39", + "value":"-58.23" + } + }, + { + "id":"fef37b76-0d4f-4f77-95c3-f0caa1ae1a52", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-09-01T16:23:29.489Z", + "completed":"2017-09-01T16:23:29.489Z", + "new_balance":"6018.95", + "value":"-3.44" + } + }, + { + "id":"a15e2f33-af02-4d00-bc5e-00c7aca15a38", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-01T18:27:19.542Z", + "completed":"2017-09-01T18:27:19.542Z", + "new_balance":"6016.63", + "value":"-2.32" + } + }, + { + "id":"9ed4905a-7f31-47d0-991f-4d2cb4cbdd41", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T20:59:28.872Z", + "completed":"2017-09-01T20:59:28.872Z", + "new_balance":"6199.33", + "value":"182.70" + } + }, + { + "id":"2b6dc483-379b-4707-b717-73856d7eda31", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T21:20:56.920Z", + "completed":"2017-09-01T21:20:56.920Z", + "new_balance":"6184.08", + "value":"-15.25" + } + }, + { + "id":"c4dea2da-8cb7-4e03-87c2-8eca2db1f2ec", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-09-02T08:01:34.561Z", + "completed":"2017-09-02T08:01:34.561Z", + "new_balance":"6176.98", + "value":"-7.10" + } + }, + { + "id":"7045ef4a-d639-4058-8234-a2a8fc3da62c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-04T01:57:36.290Z", + "completed":"2017-09-04T01:57:36.290Z", + "new_balance":"6169.68", + "value":"-7.30" + } + }, + { + "id":"bef9d6af-85a8-4d06-8abe-b6497afebaf6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-04T07:17:04.085Z", + "completed":"2017-09-04T07:17:04.085Z", + "new_balance":"6168.92", + "value":"-0.76" + } + }, + { + "id":"02dccfeb-e7ba-4970-ab0f-56c091360645", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T07:54:52.944Z", + "completed":"2017-09-04T07:54:52.944Z", + "new_balance":"6165.62", + "value":"-3.30" + } + }, + { + "id":"83e2bdbe-2d8c-486e-9ba1-499b265944ca", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-09-04T23:35:18.904Z", + "completed":"2017-09-04T23:35:18.904Z", + "new_balance":"6164.37", + "value":"-1.25" + } + }, + { + "id":"aa6f1657-c1ea-4936-890b-aa98ec818530", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-05T02:09:45.473Z", + "completed":"2017-09-05T02:09:45.473Z", + "new_balance":"6163.97", + "value":"-0.40" + } + }, + { + "id":"6c241399-96de-4160-945a-6fbbbd3aac7d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-05T03:57:06.157Z", + "completed":"2017-09-05T03:57:06.157Z", + "new_balance":"6159.93", + "value":"-4.04" + } + }, + { + "id":"92dda6e8-eea5-4890-8d73-2861025b7d67", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T01:13:13.182Z", + "completed":"2017-09-06T01:13:13.182Z", + "new_balance":"6152.63", + "value":"-7.30" + } + }, + { + "id":"e9bb1633-5042-49a6-bc22-252731b69bf8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-06T10:19:26.842Z", + "completed":"2017-09-06T10:19:26.842Z", + "new_balance":"6147.36", + "value":"-5.27" + } + }, + { + "id":"3e2fc611-76bb-4c49-975b-866face8bd34", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T18:24:44.211Z", + "completed":"2017-09-08T18:24:44.211Z", + "new_balance":"6143.09", + "value":"-4.27" + } + }, + { + "id":"23956376-3d16-421c-a678-fbd7ac620d7a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-08T22:31:25.578Z", + "completed":"2017-09-08T22:31:25.578Z", + "new_balance":"6137.82", + "value":"-5.27" + } + }, + { + "id":"9543f619-50af-44fb-af8f-939e337c0949", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-10T03:12:28.586Z", + "completed":"2017-09-10T03:12:28.586Z", + "new_balance":"6137.28", + "value":"-0.54" + } + }, + { + "id":"717ef394-debd-4859-b54a-c9adae7878c2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T04:55:23.261Z", + "completed":"2017-09-10T04:55:23.261Z", + "new_balance":"6130.96", + "value":"-6.32" + } + }, + { + "id":"099575fb-0b5e-4d13-bd38-519b2b88a607", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T12:34:45.051Z", + "completed":"2017-09-11T12:34:45.051Z", + "new_balance":"6130.19", + "value":"-0.77" + } + }, + { + "id":"473b819e-6adf-4128-abf0-02b5980492e6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-12T07:57:31.918Z", + "completed":"2017-09-12T07:57:31.918Z", + "new_balance":"6129.14", + "value":"-1.05" + } + }, + { + "id":"7cb0eefe-9259-4397-be64-bd9f46bd5a99", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-12T21:55:37.705Z", + "completed":"2017-09-12T21:55:37.705Z", + "new_balance":"6126.89", + "value":"-2.25" + } + }, + { + "id":"9af1eabd-992c-4fca-a35d-d6562f07f691", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T14:56:25.791Z", + "completed":"2017-09-13T14:56:25.791Z", + "new_balance":"6122.63", + "value":"-4.26" + } + }, + { + "id":"f2ef6a01-5b06-4cad-911e-976fa272271a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-16T23:13:11.380Z", + "completed":"2017-09-16T23:13:11.380Z", + "new_balance":"6122.11", + "value":"-0.52" + } + }, + { + "id":"fdb225c7-2f50-48b3-9e06-788c78319280", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-17T04:35:03.258Z", + "completed":"2017-09-17T04:35:03.258Z", + "new_balance":"6117.29", + "value":"-4.82" + } + }, + { + "id":"81f2462e-e169-4859-98b2-cac20ada8d51", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-17T04:57:50.153Z", + "completed":"2017-09-17T04:57:50.153Z", + "new_balance":"6107.50", + "value":"-9.79" + } + }, + { + "id":"3eebbf44-9323-4152-b47a-8189102deb92", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-18T20:56:27.642Z", + "completed":"2017-09-18T20:56:27.642Z", + "new_balance":"6106.98", + "value":"-0.52" + } + }, + { + "id":"e1bf2d08-d25c-4aed-8ff3-3ea5ec514794", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T05:51:48.134Z", + "completed":"2017-09-19T05:51:48.134Z", + "new_balance":"6100.66", + "value":"-6.32" + } + }, + { + "id":"1b55aa6c-b302-41b0-8c82-d65de3d93ad5", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-19T06:30:06.532Z", + "completed":"2017-09-19T06:30:06.532Z", + "new_balance":"6096.37", + "value":"-4.29" + } + }, + { + "id":"385ad1e7-5e81-4e47-95fa-0f18d656598f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-09-19T23:15:14.632Z", + "completed":"2017-09-19T23:15:14.632Z", + "new_balance":"6092.22", + "value":"-4.15" + } + }, + { + "id":"60dddfab-6ac6-4e2b-9ccf-9ecb7ed06471", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-09-20T12:03:31.380Z", + "completed":"2017-09-20T12:03:31.380Z", + "new_balance":"6085.26", + "value":"-6.96" + } + }, + { + "id":"699fead9-5471-4deb-be41-0ae008ceee29", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-20T17:34:44.684Z", + "completed":"2017-09-20T17:34:44.684Z", + "new_balance":"6080.10", + "value":"-5.16" + } + }, + { + "id":"91e633c0-e457-455c-9f5f-71bdcebdba5f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-09-21T10:48:42.736Z", + "completed":"2017-09-21T10:48:42.736Z", + "new_balance":"6079.34", + "value":"-0.76" + } + }, + { + "id":"b9d94532-d468-4f74-a2a2-bb167f967ef0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-21T12:45:49.271Z", + "completed":"2017-09-21T12:45:49.271Z", + "new_balance":"6078.75", + "value":"-0.59" + } + }, + { + "id":"e4da00c4-fa56-45e5-9af8-e27dab669afa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-09-23T07:25:38.217Z", + "completed":"2017-09-23T07:25:38.217Z", + "new_balance":"6077.84", + "value":"-0.91" + } + }, + { + "id":"8c0ca079-0528-4453-9441-aacc5e15e7f3", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-09-23T15:55:47.388Z", + "completed":"2017-09-23T15:55:47.388Z", + "new_balance":"6073.23", + "value":"-4.61" + } + }, + { + "id":"afc8be26-c43e-48a9-a0b5-ee9a13b711b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-24T01:57:44.839Z", + "completed":"2017-09-24T01:57:44.839Z", + "new_balance":"6069.68", + "value":"-3.55" + } + }, + { + "id":"ec06a796-ac3b-4ea5-ac02-358dbfbc0662", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-09-25T08:30:19.781Z", + "completed":"2017-09-25T08:30:19.781Z", + "new_balance":"6068.37", + "value":"-1.31" + } + }, + { + "id":"6c6a894e-96a8-45c9-964e-50682b99d5d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-25T16:44:13.588Z", + "completed":"2017-09-25T16:44:13.588Z", + "new_balance":"6065.31", + "value":"-3.06" + } + }, + { + "id":"d90b7446-bd8b-43d8-bfa0-732bcd882046", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-27T21:10:15.077Z", + "completed":"2017-09-27T21:10:15.077Z", + "new_balance":"6037.81", + "value":"-27.50" + } + }, + { + "id":"a840402c-e518-4407-a628-1813c2a647b2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-29T21:39:33.645Z", + "completed":"2017-09-29T21:39:33.645Z", + "new_balance":"6035.07", + "value":"-2.74" + } + }, + { + "id":"3e44cc22-4e42-4995-a410-33184f45562d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-10-01T00:51:30.291Z", + "completed":"2017-10-01T00:51:30.291Z", + "new_balance":"5976.84", + "value":"-58.23" + } + }, + { + "id":"b04e89e7-8bd5-4b19-ae5d-49b336640f96", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T14:44:43.632Z", + "completed":"2017-10-01T14:44:43.632Z", + "new_balance":"5974.52", + "value":"-2.32" + } + }, + { + "id":"457286a0-7686-417c-bc73-867e1288e094", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T16:57:09.444Z", + "completed":"2017-10-01T16:57:09.444Z", + "new_balance":"5959.27", + "value":"-15.25" + } + }, + { + "id":"6a7fa085-bb77-4dca-8963-511526eda666", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T19:08:48.907Z", + "completed":"2017-10-01T19:08:48.907Z", + "new_balance":"5954.12", + "value":"-5.15" + } + }, + { + "id":"7128276f-d213-4568-9856-770f8c9cca5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-10-02T14:04:01.294Z", + "completed":"2017-10-02T14:04:01.294Z", + "new_balance":"5947.02", + "value":"-7.10" + } + }, + { + "id":"78d05ba7-8375-44d4-a4dd-0879c7ec5cc7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-02T21:43:41.812Z", + "completed":"2017-10-02T21:43:41.812Z", + "new_balance":"5937.33", + "value":"-9.69" + } + }, + { + "id":"b1694f20-7b29-40f0-af53-96c302b44dab", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T05:23:54.628Z", + "completed":"2017-10-03T05:23:54.628Z", + "new_balance":"5924.23", + "value":"-13.10" + } + }, + { + "id":"676ebb1b-d4a7-4289-ac0e-2a930ff2fb02", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T06:28:56.784Z", + "completed":"2017-10-03T06:28:56.784Z", + "new_balance":"5920.45", + "value":"-3.78" + } + }, + { + "id":"e63f04a7-afce-4a1f-b4e9-4e19c754a595", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T08:18:34.218Z", + "completed":"2017-10-03T08:18:34.218Z", + "new_balance":"5863.64", + "value":"-56.81" + } + }, + { + "id":"b0b6e6ce-47aa-48a2-a15a-b8d15e74ef82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-03T18:09:19.384Z", + "completed":"2017-10-03T18:09:19.384Z", + "new_balance":"5860.73", + "value":"-2.91" + } + }, + { + "id":"87290ffc-6e23-4306-b953-488f5c9388c4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Payment of Cerdit Card", + "posted":"2017-10-03T21:41:07.128Z", + "completed":"2017-10-03T21:41:07.128Z", + "new_balance":"5833.23", + "value":"-27.50" + } + }, + { + "id":"97a64734-3574-43d5-9430-98503996c51b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-04T00:23:28.511Z", + "completed":"2017-10-04T00:23:28.511Z", + "new_balance":"5826.04", + "value":"-7.19" + } + }, + { + "id":"9575072e-e237-478b-a7ac-e99e66f7b5a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-05T00:03:57.109Z", + "completed":"2017-10-05T00:03:57.109Z", + "new_balance":"5825.58", + "value":"-0.46" + } + }, + { + "id":"cf1cec86-5dde-4ac9-a763-d90f3ce89d26", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-10-05T04:14:36.728Z", + "completed":"2017-10-05T04:14:36.728Z", + "new_balance":"5822.90", + "value":"-2.68" + } + }, + { + "id":"f6eb40b0-1f49-4141-85e8-104f057b3fac", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-07T03:02:16.694Z", + "completed":"2017-10-07T03:02:16.694Z", + "new_balance":"5821.37", + "value":"-1.53" + } + }, + { + "id":"1160bd49-d874-43bb-b887-d21015ca5365", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-07T06:02:16.551Z", + "completed":"2017-10-07T06:02:16.551Z", + "new_balance":"5818.15", + "value":"-3.22" + } + }, + { + "id":"abc6c8eb-f09c-4bf3-9122-f22009da357b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-08T17:12:09.605Z", + "completed":"2017-10-08T17:12:09.605Z", + "new_balance":"5817.25", + "value":"-0.90" + } + }, + { + "id":"b1108899-98ce-4934-818a-6618eff97ea0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-10-09T03:58:00.777Z", + "completed":"2017-10-09T03:58:00.777Z", + "new_balance":"5816.81", + "value":"-0.44" + } + }, + { + "id":"6156fcc4-2b43-4e75-a850-d914fa2be0c0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-09T09:02:41.749Z", + "completed":"2017-10-09T09:02:41.749Z", + "new_balance":"5814.70", + "value":"-2.11" + } + }, + { + "id":"6874c262-d8fb-485e-abd3-896478bf79a0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawal", + "posted":"2017-10-09T10:25:15.397Z", + "completed":"2017-10-09T10:25:15.397Z", + "new_balance":"5787.20", + "value":"-27.50" + } + }, + { + "id":"203f3ac3-5fa0-438b-80e9-a0ecfa1f7c25", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T21:37:25.136Z", + "completed":"2017-10-10T21:37:25.136Z", + "new_balance":"5782.72", + "value":"-4.48" + } + }, + { + "id":"f798f713-3ed5-412a-a98a-9b2bbdaa7806", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-10-17T23:02:42.926Z", + "completed":"2017-10-17T23:02:42.926Z", + "new_balance":"5781.61", + "value":"-1.11" + } + }, + { + "id":"ade42c3b-f832-4686-ae04-b7d20fa7d5fa", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-18T12:25:13.442Z", + "completed":"2017-10-18T12:25:13.442Z", + "new_balance":"5778.80", + "value":"-2.81" + } + }, + { + "id":"dc24d375-718d-468d-99f8-8bdd13f5cfbb", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-25T18:31:27.224Z", + "completed":"2017-10-25T18:31:27.224Z", + "new_balance":"5773.40", + "value":"-5.40" + } + }, + { + "id":"f51cd947-c7f9-4ceb-953f-6260300dc331", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-26T01:46:53.124Z", + "completed":"2017-10-26T01:46:53.124Z", + "new_balance":"5767.58", + "value":"-5.82" + } + }, + { + "id":"e3eca82b-d891-46af-8ff0-1bf73c3760a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-10-26T23:16:01.555Z", + "completed":"2017-10-26T23:16:01.555Z", + "new_balance":"5767.14", + "value":"-0.44" + } + }, + { + "id":"95ee96a7-11bf-4552-ac98-edcba87b0ac2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T06:48:30.380Z", + "completed":"2017-11-02T06:48:30.380Z", + "new_balance":"5761.99", + "value":"-5.15" + } + }, + { + "id":"c19049d4-5c5e-4bcd-9da3-91dd2cf70ab0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-02T12:48:59.180Z", + "completed":"2017-11-02T12:48:59.180Z", + "new_balance":"5760.84", + "value":"-1.15" + } + }, + { + "id":"cdb3d772-199d-4a2a-bb42-1c9411192d10", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-11-02T13:43:22.085Z", + "completed":"2017-11-02T13:43:22.085Z", + "new_balance":"5757.40", + "value":"-3.44" + } + }, + { + "id":"6b72fc06-15f6-43f4-ade4-ba8d7fdb61d8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-11-02T13:49:12.519Z", + "completed":"2017-11-02T13:49:12.519Z", + "new_balance":"5750.30", + "value":"-7.10" + } + }, + { + "id":"a2f4bd59-4c94-4fc9-9d97-34d9338fac15", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-02T13:59:45.154Z", + "completed":"2017-11-02T13:59:45.154Z", + "new_balance":"5747.98", + "value":"-2.32" + } + }, + { + "id":"088e6609-4020-4a82-9d1f-c8081df37c05", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-02T17:00:14.946Z", + "completed":"2017-11-02T17:00:14.946Z", + "new_balance":"5930.68", + "value":"182.70" + } + }, + { + "id":"2d4670f1-1d17-42f6-b4b5-0f9c76471504", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T18:59:05.513Z", + "completed":"2017-11-02T18:59:05.513Z", + "new_balance":"5915.43", + "value":"-15.25" + } + }, + { + "id":"205dadf1-be9b-4eb6-a47e-66c26e666a8c", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-11-02T21:35:40.862Z", + "completed":"2017-11-02T21:35:40.862Z", + "new_balance":"5857.20", + "value":"-58.23" + } + }, + { + "id":"6b7011be-1154-4724-b666-ab8ae4903630", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-06T04:11:07.008Z", + "completed":"2017-11-06T04:11:07.008Z", + "new_balance":"5855.10", + "value":"-2.10" + } + }, + { + "id":"e7cd560f-7ed4-4b46-b780-e0a3e65e9a76", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-11-07T00:55:28.509Z", + "completed":"2017-11-07T00:55:28.509Z", + "new_balance":"5852.70", + "value":"-2.40" + } + }, + { + "id":"36ad63da-90b0-4be7-939c-d612b8e0c62b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T04:38:54.471Z", + "completed":"2017-11-07T04:38:54.471Z", + "new_balance":"5850.20", + "value":"-2.50" + } + }, + { + "id":"325b1b82-277a-4dd2-a032-b9af9160b9e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"resturant", + "posted":"2017-11-07T17:38:54.199Z", + "completed":"2017-11-07T17:38:54.199Z", + "new_balance":"5846.87", + "value":"-3.33" + } + }, + { + "id":"6e77ab8d-114a-4c65-b2dc-1fd904378ac1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-09T14:28:16.623Z", + "completed":"2017-11-09T14:28:16.623Z", + "new_balance":"5846.39", + "value":"-0.48" + } + }, + { + "id":"d05fac5a-9981-49a5-ab87-010b72d02553", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-09T17:20:04.851Z", + "completed":"2017-11-09T17:20:04.851Z", + "new_balance":"5839.20", + "value":"-7.19" + } + }, + { + "id":"3cf1a065-876c-484d-bbf6-e85b56e28d95", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"restaurant", + "posted":"2017-11-12T10:50:47.084Z", + "completed":"2017-11-12T10:50:47.084Z", + "new_balance":"5836.75", + "value":"-2.45" + } + }, + { + "id":"e17fb2cd-63f4-4be9-a84a-9272c5c59333", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-12T22:12:57.785Z", + "completed":"2017-11-12T22:12:57.785Z", + "new_balance":"5833.72", + "value":"-3.03" + } + }, + { + "id":"22ffa0e9-7146-428b-88f5-b1855f929fd4", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-11-14T17:40:38.819Z", + "completed":"2017-11-14T17:40:38.819Z", + "new_balance":"5830.58", + "value":"-3.14" + } + }, + { + "id":"0146eeaa-4d18-4eeb-a397-1fb2ac354495", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Market Place By Jasons" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T18:33:45.822Z", + "completed":"2017-11-14T18:33:45.822Z", + "new_balance":"5827.10", + "value":"-3.48" + } + }, + { + "id":"e8d1c972-477c-40f0-9741-8eae4351ba9f", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-11-16T06:56:32.497Z", + "completed":"2017-11-16T06:56:32.497Z", + "new_balance":"5826.63", + "value":"-0.47" + } + }, + { + "id":"7b2c2e4a-4104-4d9b-afb7-4eb131ea56e2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-11-18T07:31:39.125Z", + "completed":"2017-11-18T07:31:39.125Z", + "new_balance":"5825.86", + "value":"-0.77" + } + }, + { + "id":"41ae1bbf-a4e9-43e7-8971-1d31b1d712b1", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-11-20T05:09:44.978Z", + "completed":"2017-11-20T05:09:44.978Z", + "new_balance":"5829.94", + "value":"4.08" + } + }, + { + "id":"17692ff7-7d0d-4cda-a458-3460bf5b5fea", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-21T16:59:55.954Z", + "completed":"2017-11-21T16:59:55.954Z", + "new_balance":"5825.82", + "value":"-4.12" + } + }, + { + "id":"209eb636-ecc3-4cf1-9f50-fb21802bc3bf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-21T22:38:57.732Z", + "completed":"2017-11-21T22:38:57.732Z", + "new_balance":"5819.39", + "value":"-6.43" + } + }, + { + "id":"52c0e584-7caa-462f-9904-782c2ca45bef", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:28:41.495Z", + "completed":"2017-11-27T00:28:41.495Z", + "new_balance":"5816.84", + "value":"-2.55" + } + }, + { + "id":"6c9a81e9-98cc-4dc1-be78-a0d93b0dc5ee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-27T00:37:30.710Z", + "completed":"2017-11-27T00:37:30.710Z", + "new_balance":"5813.90", + "value":"-2.94" + } + }, + { + "id":"3930c8fb-3c02-4524-a030-2e5f1e6ac73d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T00:04:53.817Z", + "completed":"2017-12-01T00:04:53.817Z", + "new_balance":"5808.75", + "value":"-5.15" + } + }, + { + "id":"ef7d3d88-8ffe-49ed-a4b9-ca8642c44c66", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"WSD" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T01:22:31.803Z", + "completed":"2017-12-01T01:22:31.803Z", + "new_balance":"5806.43", + "value":"-2.32" + } + }, + { + "id":"e99db5c6-1e03-4856-beb9-0fefb9cc215e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Directline" + }, + "details":{ + "type":"10218", + "description":"Insurance Ref IDE5467", + "posted":"2017-12-01T15:37:04.268Z", + "completed":"2017-12-01T15:37:04.268Z", + "new_balance":"5802.99", + "value":"-3.44" + } + }, + { + "id":"ef0824cb-07c9-4ff8-ab58-45836908a398", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Gov Hong Kong" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T16:28:36.851Z", + "completed":"2017-12-01T16:28:36.851Z", + "new_balance":"5787.74", + "value":"-15.25" + } + }, + { + "id":"4f8a2ec5-4303-44ae-933f-4bca59f229b7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T17:55:12.577Z", + "completed":"2017-12-01T17:55:12.577Z", + "new_balance":"5970.44", + "value":"182.70" + } + }, + { + "id":"150aa46e-02a9-45bf-aa02-abd44f722d5d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"DBS Bank" + }, + "details":{ + "type":"10218", + "description":"Mortgage Ref DDE23461", + "posted":"2017-12-01T22:50:40.975Z", + "completed":"2017-12-01T22:50:40.975Z", + "new_balance":"5912.21", + "value":"-58.23" + } + }, + { + "id":"d3a48ece-b316-4ee7-ad9a-43aab2b73bc8", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:01:02.970Z", + "completed":"2017-12-04T00:01:02.970Z", + "new_balance":"5900.25", + "value":"-11.96" + } + }, + { + "id":"1e399cce-81db-48f8-ad8a-7bc334a58853", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"OpenSky.tv" + }, + "details":{ + "type":"10218", + "description":"Monthly Sky", + "posted":"2017-12-04T23:06:44.008Z", + "completed":"2017-12-04T23:06:44.008Z", + "new_balance":"5893.15", + "value":"-7.10" + } + }, + { + "id":"4266e085-9fd2-494f-a0c1-dcd36b9c19c7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurtant/Takeway", + "posted":"2017-12-12T02:58:45.918Z", + "completed":"2017-12-12T02:58:45.918Z", + "new_balance":"5891.90", + "value":"-1.25" + } + }, + { + "id":"4acf7a4b-2d66-40d3-b0d8-4fc21cf5202b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-12T17:44:41.833Z", + "completed":"2017-12-12T17:44:41.833Z", + "new_balance":"5888.60", + "value":"-3.30" + } + }, + { + "id":"94eae4e0-4411-4616-9eac-018b758b07af", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-13T00:19:13.496Z", + "completed":"2017-12-13T00:19:13.496Z", + "new_balance":"5887.84", + "value":"-0.76" + } + }, + { + "id":"9dc0db05-17f9-40a1-9f7c-0a5a941d3dcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-13T14:06:33.264Z", + "completed":"2017-12-13T14:06:33.264Z", + "new_balance":"5880.54", + "value":"-7.30" + } + }, + { + "id":"fe95222b-3004-497f-9cb9-8788eaf85caf", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-16T19:05:49.595Z", + "completed":"2017-12-16T19:05:49.595Z", + "new_balance":"5876.50", + "value":"-4.04" + } + }, + { + "id":"07dc58e6-2cf4-4ca9-8727-3634086f164a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-18T20:44:58.819Z", + "completed":"2017-12-18T20:44:58.819Z", + "new_balance":"5876.10", + "value":"-0.40" + } + }, + { + "id":"2022aa46-306f-411d-a993-d4ac6cf7beb0", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T01:56:51.251Z", + "completed":"2017-12-19T01:56:51.251Z", + "new_balance":"5868.80", + "value":"-7.30" + } + }, + { + "id":"13708ca4-7e81-42f8-82d4-f2fe956ae237", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T08:55:42.503Z", + "completed":"2017-12-19T08:55:42.503Z", + "new_balance":"5863.53", + "value":"-5.27" + } + }, + { + "id":"dc135b7f-c7b9-4e89-afc2-6542066f462a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-20T07:59:01.734Z", + "completed":"2017-12-20T07:59:01.734Z", + "new_balance":"5859.26", + "value":"-4.27" + } + }, + { + "id":"01612b52-12aa-4971-8ef9-9bdf7c82b835", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T09:40:05.018Z", + "completed":"2017-12-21T09:40:05.018Z", + "new_balance":"5853.99", + "value":"-5.27" + } + }, + { + "id":"c2888aed-0d18-4bac-b98a-60e5ad275c27", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Topman" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T02:10:46.306Z", + "completed":"2017-12-24T02:10:46.306Z", + "new_balance":"5847.67", + "value":"-6.32" + } + }, + { + "id":"f78ae77f-dabd-49b5-ab68-7916fc22bb42", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T02:42:09.838Z", + "completed":"2017-12-24T02:42:09.838Z", + "new_balance":"5845.42", + "value":"-2.25" + } + }, + { + "id":"ea5b5236-b67a-481c-89b9-5af60dca0f77", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T04:48:40.806Z", + "completed":"2017-12-24T04:48:40.806Z", + "new_balance":"5844.37", + "value":"-1.05" + } + }, + { + "id":"77677274-5dd0-48fa-8b7b-a765baa60c21", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-24T06:35:35.356Z", + "completed":"2017-12-24T06:35:35.356Z", + "new_balance":"5840.11", + "value":"-4.26" + } + }, + { + "id":"7ba42a06-1c51-4082-8efd-9a46f1451a9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-24T09:16:26.877Z", + "completed":"2017-12-24T09:16:26.877Z", + "new_balance":"5839.34", + "value":"-0.77" + } + }, + { + "id":"af635f29-2ee7-4ab8-98da-40c41d5e09f6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-24T14:06:24.179Z", + "completed":"2017-12-24T14:06:24.179Z", + "new_balance":"5838.80", + "value":"-0.54" + } + }, + { + "id":"3ef1cef0-09af-4232-a11b-01297e0a433b", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T06:15:13.056Z", + "completed":"2017-12-28T06:15:13.056Z", + "new_balance":"5838.28", + "value":"-0.52" + } + }, + { + "id":"8c95f0a5-a9ed-46b0-bd9b-feb95d243c00", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-28T11:43:20.686Z", + "completed":"2017-12-28T11:43:20.686Z", + "new_balance":"5837.76", + "value":"-0.52" + } + }, + { + "id":"152bb6f2-7236-4902-af63-17cdd1409282", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Back Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-28T12:26:00.341Z", + "completed":"2017-12-28T12:26:00.341Z", + "new_balance":"5827.97", + "value":"-9.79" + } + }, + { + "id":"225c8f8d-a109-4b7b-bbd5-db59d0e58398", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-28T15:55:51.573Z", + "completed":"2017-12-28T15:55:51.573Z", + "new_balance":"5823.15", + "value":"-4.82" + } + }, + { + "id":"8cd82777-daf0-4461-9ad0-886a8e2eb638", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Capo" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T05:56:10.737Z", + "completed":"2017-12-29T05:56:10.737Z", + "new_balance":"5818.86", + "value":"-4.29" + } + }, + { + "id":"f2a8b0a0-00ad-4d7b-a4c8-1c223ac71c9d", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway", + "posted":"2017-12-29T07:28:41.248Z", + "completed":"2017-12-29T07:28:41.248Z", + "new_balance":"5811.90", + "value":"-6.96" + } + }, + { + "id":"f2808cc0-a639-47a3-ab02-e5edb138b7ac", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T07:43:21.101Z", + "completed":"2017-12-29T07:43:21.101Z", + "new_balance":"5805.58", + "value":"-6.32" + } + }, + { + "id":"1fbac485-a8d5-4ca4-9344-12d6923ec8de", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Royal Hong Kong Yatch Club" + }, + "details":{ + "type":"10218", + "description":"Yatch Club", + "posted":"2017-12-29T20:46:04.452Z", + "completed":"2017-12-29T20:46:04.452Z", + "new_balance":"5801.43", + "value":"-4.15" + } + }, + { + "id":"62326c02-8fd6-459f-beb4-612191f8d85a", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee", + "posted":"2017-12-29T21:03:12.263Z", + "completed":"2017-12-29T21:03:12.263Z", + "new_balance":"5800.67", + "value":"-0.76" + } + }, + { + "id":"45aa81e7-6b1d-4092-a66b-7c7126fb77a6", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"tin Lung Heen" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-29T23:53:30.710Z", + "completed":"2017-12-29T23:53:30.710Z", + "new_balance":"5795.51", + "value":"-5.16" + } + }, + { + "id":"757292a7-98cc-4614-a6b6-9f792269f293", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Watsons" + }, + "details":{ + "type":"10218", + "description":"Parmacy", + "posted":"2017-12-30T07:58:52.200Z", + "completed":"2017-12-30T07:58:52.200Z", + "new_balance":"5794.60", + "value":"-0.91" + } + }, + { + "id":"a10e3844-1ce6-4d7e-8694-0321ff9bdfb7", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-30T11:32:58.129Z", + "completed":"2017-12-30T11:32:58.129Z", + "new_balance":"5791.05", + "value":"-3.55" + } + }, + { + "id":"8ec1184b-b091-41f3-ae42-e37dadd0cbcd", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-30T15:50:10.909Z", + "completed":"2017-12-30T15:50:10.909Z", + "new_balance":"5790.46", + "value":"-0.59" + } + }, + { + "id":"c80cadd8-5127-4193-8c69-618562208aee", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Comeron Dental Centre" + }, + "details":{ + "type":"10218", + "description":"Dentist", + "posted":"2017-12-30T16:23:06.251Z", + "completed":"2017-12-30T16:23:06.251Z", + "new_balance":"5785.85", + "value":"-4.61" + } + }, + { + "id":"733a08b6-e0b3-4970-aa58-d689fcd9df82", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mr D Zhou" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T00:15:40.026Z", + "completed":"2017-12-31T00:15:40.026Z", + "new_balance":"5758.35", + "value":"-27.50" + } + }, + { + "id":"2621f199-d3b8-4ecc-9ab2-cf24d2d9cea2", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T06:28:31.352Z", + "completed":"2017-12-31T06:28:31.352Z", + "new_balance":"5755.61", + "value":"-2.74" + } + }, + { + "id":"f9b215ab-630e-42b0-bd2d-bd20af6c8d1e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-31T06:34:44.978Z", + "completed":"2017-12-31T06:34:44.978Z", + "new_balance":"5752.55", + "value":"-3.06" + } + }, + { + "id":"0853fe6f-55c2-45ed-8ccd-a8f75e70e07e", + "this_account":{ + "id":"c4a6b280-22b8-447e-9d61-248c15b652e9", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Resaurant/Takeway", + "posted":"2017-12-31T20:26:51.942Z", + "completed":"2017-12-31T20:26:51.942Z", + "new_balance":"5751.24", + "value":"-1.31" + } + }, + { + "id":"0591a3e5-536b-416b-ae7c-928c9ac70aad", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T10:16:41.412Z", + "completed":"2016-03-01T10:16:41.412Z", + "new_balance":"7408.61", + "value":"-163.48" + } + }, + { + "id":"7d16bc7e-578e-4c77-8a9e-1804b5f12c44", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T12:41:05.622Z", + "completed":"2016-03-01T12:41:05.622Z", + "new_balance":"3714.84", + "value":"-3693.77" + } + }, + { + "id":"c49f6271-e5b7-468d-b45c-572a81b8f238", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T17:22:48.431Z", + "completed":"2016-03-01T17:22:48.431Z", + "new_balance":"3397.63", + "value":"-317.21" + } + }, + { + "id":"4cb186ae-0666-4a9e-ab4d-5ff7e452e560", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T18:39:53.664Z", + "completed":"2016-03-01T18:39:53.664Z", + "new_balance":"2665.78", + "value":"-731.85" + } + }, + { + "id":"eec09313-5ac7-40bd-a7e2-4b71ee199815", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T20:21:30.767Z", + "completed":"2016-03-01T20:21:30.767Z", + "new_balance":"34.57", + "value":"-2631.21" + } + }, + { + "id":"1a866500-177e-4ad9-98de-9a972d512205", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T23:10:53.535Z", + "completed":"2016-03-01T23:10:53.535Z", + "new_balance":"-163.34", + "value":"-197.91" + } + }, + { + "id":"e48abc0e-2e47-4fdf-bc7a-6333cc2b89ad", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T00:50:38.887Z", + "completed":"2016-03-12T00:50:38.887Z", + "new_balance":"-210.24", + "value":"-46.90" + } + }, + { + "id":"7438262b-0266-495f-a0f3-bbcc7631b855", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T01:46:55.068Z", + "completed":"2016-03-12T01:46:55.068Z", + "new_balance":"-942.09", + "value":"-731.85" + } + }, + { + "id":"e3c8a92d-6301-4075-818e-2c8f38ea3e8f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T15:51:33.734Z", + "completed":"2016-03-12T15:51:33.734Z", + "new_balance":"-995.27", + "value":"-53.18" + } + }, + { + "id":"4c410f89-15e9-4aac-9ad1-d104abff65df", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T15:59:58.706Z", + "completed":"2016-03-12T15:59:58.706Z", + "new_balance":"-1312.48", + "value":"-317.21" + } + }, + { + "id":"b319bbf1-1f53-41a0-aa1a-8ce986509b03", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T21:24:48.322Z", + "completed":"2016-03-14T21:24:48.322Z", + "new_balance":"578.84", + "value":"1891.32" + } + }, + { + "id":"ee48690c-6456-4fd6-93f9-f070fe6cf198", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T03:17:26.008Z", + "completed":"2016-03-15T03:17:26.008Z", + "new_balance":"806.23", + "value":"227.39" + } + }, + { + "id":"fb57641e-f139-4716-9345-73a0e63d1561", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T15:18:52.615Z", + "completed":"2016-03-16T15:18:52.615Z", + "new_balance":"1707.21", + "value":"900.98" + } + }, + { + "id":"908041bd-5dce-4212-a720-71c2999f49f3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T05:21:07.243Z", + "completed":"2016-03-17T05:21:07.243Z", + "new_balance":"1628.13", + "value":"-79.08" + } + }, + { + "id":"c0088091-12ef-4100-9916-edc0d80809bf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T19:59:02.826Z", + "completed":"2016-03-17T19:59:02.826Z", + "new_balance":"1577.03", + "value":"-51.10" + } + }, + { + "id":"9cc177a1-d9b7-42fa-a39d-adcb1d24078c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T05:19:23.284Z", + "completed":"2016-03-19T05:19:23.284Z", + "new_balance":"2027.03", + "value":"450.00" + } + }, + { + "id":"96f9e2b3-b527-4f92-a172-3c69b251a677", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T02:52:57.356Z", + "completed":"2016-03-21T02:52:57.356Z", + "new_balance":"2088.28", + "value":"61.25" + } + }, + { + "id":"2f57a99e-c59d-4274-9c82-11f999142042", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T10:22:38.338Z", + "completed":"2016-03-21T10:22:38.338Z", + "new_balance":"2014.35", + "value":"-73.93" + } + }, + { + "id":"8bff9c1c-482a-4a72-8aa0-f10d91034180", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T00:09:55.659Z", + "completed":"2016-03-24T00:09:55.659Z", + "new_balance":"1487.79", + "value":"-526.56" + } + }, + { + "id":"e32762bd-064d-418b-adce-3a2a68c40d75", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T19:53:06.643Z", + "completed":"2016-03-24T19:53:06.643Z", + "new_balance":"1715.18", + "value":"227.39" + } + }, + { + "id":"cf096dee-7a5d-4d91-87ee-a0a4bfad1926", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T13:02:56.814Z", + "completed":"2016-03-25T13:02:56.814Z", + "new_balance":"2168.83", + "value":"453.65" + } + }, + { + "id":"7355b08e-dab6-43a9-91cc-3f0fb9a919e9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:49:34.804Z", + "completed":"2016-03-25T19:49:34.804Z", + "new_balance":"1501.68", + "value":"-667.15" + } + }, + { + "id":"f768c741-a3bf-4b7e-b9c6-b2a5aa38623e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T03:51:44.667Z", + "completed":"2016-03-28T03:51:44.667Z", + "new_balance":"4584.55", + "value":"3082.87" + } + }, + { + "id":"0cf48c6d-efe3-4eaf-a918-1ae81ace555a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:29:25.756Z", + "completed":"2016-03-28T18:29:25.756Z", + "new_balance":"6475.87", + "value":"1891.32" + } + }, + { + "id":"4a548325-62ef-4c0e-998f-ea2c733c867b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T01:16:15.360Z", + "completed":"2016-03-30T01:16:15.360Z", + "new_balance":"6703.26", + "value":"227.39" + } + }, + { + "id":"57b2b5d7-343b-4415-9485-ce15af5ebc8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T20:36:15.078Z", + "completed":"2016-03-30T20:36:15.078Z", + "new_balance":"6930.88", + "value":"227.62" + } + }, + { + "id":"fbb7071e-3c89-4573-b9c9-e77118dcc3eb", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T00:37:53.745Z", + "completed":"2016-06-01T00:37:53.745Z", + "new_balance":"3237.11", + "value":"-3693.77" + } + }, + { + "id":"cfd9464d-4f7b-4f1c-bc5b-afa6e1e4a9d0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T03:40:58.408Z", + "completed":"2016-06-01T03:40:58.408Z", + "new_balance":"2505.26", + "value":"-731.85" + } + }, + { + "id":"19c0ca9b-4d55-415c-bedf-ca90b0ec867c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:30:12.746Z", + "completed":"2016-06-01T04:30:12.746Z", + "new_balance":"2341.78", + "value":"-163.48" + } + }, + { + "id":"a83a7785-979b-4ac7-94df-65c6c2828f8e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T12:47:32.024Z", + "completed":"2016-06-01T12:47:32.024Z", + "new_balance":"-289.43", + "value":"-2631.21" + } + }, + { + "id":"adfa796a-84bd-4d95-9f8d-659651abd29d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T18:01:05.393Z", + "completed":"2016-06-01T18:01:05.393Z", + "new_balance":"-487.34", + "value":"-197.91" + } + }, + { + "id":"bb70faa9-2fd5-4784-bc17-ad2da93b3e68", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T19:00:50.541Z", + "completed":"2016-06-01T19:00:50.541Z", + "new_balance":"-804.55", + "value":"-317.21" + } + }, + { + "id":"90617cc6-a2b8-4afd-95bd-15ac15ac4fc1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T00:22:32.285Z", + "completed":"2016-06-04T00:22:32.285Z", + "new_balance":"-851.45", + "value":"-46.90" + } + }, + { + "id":"adcd19f0-041c-4c94-a8f5-9974a961a336", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:42:33.420Z", + "completed":"2016-06-04T09:42:33.420Z", + "new_balance":"-904.63", + "value":"-53.18" + } + }, + { + "id":"b71bc779-a192-4bc5-90c0-fba66a5b3411", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T03:13:49.376Z", + "completed":"2016-06-05T03:13:49.376Z", + "new_balance":"-1221.84", + "value":"-317.21" + } + }, + { + "id":"666f30e4-85e4-4ac6-8f65-512bd7d5a12e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T23:30:57.459Z", + "completed":"2016-06-05T23:30:57.459Z", + "new_balance":"-1953.69", + "value":"-731.85" + } + }, + { + "id":"cdf8ded5-2b9d-4668-94bd-ed292086a2a9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T08:45:45.602Z", + "completed":"2016-06-07T08:45:45.602Z", + "new_balance":"-1052.71", + "value":"900.98" + } + }, + { + "id":"4c90703b-156d-4d8c-9268-5e8946978db0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T19:57:58.480Z", + "completed":"2016-06-07T19:57:58.480Z", + "new_balance":"-1103.81", + "value":"-51.10" + } + }, + { + "id":"46a38551-d5e1-40f8-9f0a-0ff3633fdfba", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T21:37:28.391Z", + "completed":"2016-06-07T21:37:28.391Z", + "new_balance":"787.51", + "value":"1891.32" + } + }, + { + "id":"0d42d15d-185e-4da6-8330-d2183de2491e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T22:39:25.382Z", + "completed":"2016-06-07T22:39:25.382Z", + "new_balance":"1014.90", + "value":"227.39" + } + }, + { + "id":"84b0b957-1ce1-4ada-966f-6cf513d33e91", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T00:54:36.992Z", + "completed":"2016-06-11T00:54:36.992Z", + "new_balance":"935.82", + "value":"-79.08" + } + }, + { + "id":"409799d1-dbc3-4709-a83f-18b4f89c0804", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T01:58:38.331Z", + "completed":"2016-06-14T01:58:38.331Z", + "new_balance":"1385.82", + "value":"450.00" + } + }, + { + "id":"795cadb0-9c53-42b4-8c59-4c8f5c583000", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:32:50.994Z", + "completed":"2016-06-14T09:32:50.994Z", + "new_balance":"1447.07", + "value":"61.25" + } + }, + { + "id":"464c74ef-d01c-4e0b-b99a-0d68984d053f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T17:29:24.949Z", + "completed":"2016-06-14T17:29:24.949Z", + "new_balance":"1373.14", + "value":"-73.93" + } + }, + { + "id":"0527ad1d-30f4-4b9e-a3d3-573c32cfad4e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T18:21:49.703Z", + "completed":"2016-06-16T18:21:49.703Z", + "new_balance":"846.58", + "value":"-526.56" + } + }, + { + "id":"bb18492d-d5d9-4923-a9e3-2fdc1f561814", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T19:07:14.556Z", + "completed":"2016-06-16T19:07:14.556Z", + "new_balance":"1073.97", + "value":"227.39" + } + }, + { + "id":"5f2d0583-069b-4b98-8d11-ca35f3433de4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T02:58:00.150Z", + "completed":"2016-06-21T02:58:00.150Z", + "new_balance":"4156.84", + "value":"3082.87" + } + }, + { + "id":"0740d092-dd36-41fc-9e84-e971cce72679", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T03:43:33.632Z", + "completed":"2016-06-21T03:43:33.632Z", + "new_balance":"6048.16", + "value":"1891.32" + } + }, + { + "id":"2d4d30f4-16b5-428b-9d03-eb05c2dbad0f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T04:29:26.888Z", + "completed":"2016-06-21T04:29:26.888Z", + "new_balance":"6501.81", + "value":"453.65" + } + }, + { + "id":"75cd028b-61a6-449c-b129-734642d69c6a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T17:26:29.421Z", + "completed":"2016-06-21T17:26:29.421Z", + "new_balance":"5834.66", + "value":"-667.15" + } + }, + { + "id":"6af23e43-2807-41a6-ac1e-8ce4472322c3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T01:48:59.552Z", + "completed":"2016-06-30T01:48:59.552Z", + "new_balance":"6062.28", + "value":"227.62" + } + }, + { + "id":"8a08fd71-5c82-4b0f-81fe-4fd2c969bcf4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T21:03:35.944Z", + "completed":"2016-06-30T21:03:35.944Z", + "new_balance":"6289.67", + "value":"227.39" + } + }, + { + "id":"c0256a95-76d6-4a4d-9b99-648e4be63dbd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T01:09:56.201Z", + "completed":"2016-09-01T01:09:56.201Z", + "new_balance":"6091.76", + "value":"-197.91" + } + }, + { + "id":"a16f6f3c-51c0-49e2-af27-0ab19294e857", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T03:48:34.186Z", + "completed":"2016-09-01T03:48:34.186Z", + "new_balance":"5928.28", + "value":"-163.48" + } + }, + { + "id":"1939f4e2-db4f-4b7e-8dfc-ea0eb1a43a57", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T07:31:38.751Z", + "completed":"2016-09-01T07:31:38.751Z", + "new_balance":"5611.07", + "value":"-317.21" + } + }, + { + "id":"ae12acb4-17c8-4266-9376-99f19216cd17", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T13:17:58.552Z", + "completed":"2016-09-01T13:17:58.552Z", + "new_balance":"4879.22", + "value":"-731.85" + } + }, + { + "id":"5c797017-be86-4834-b6ca-c5141fef3ae8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T21:43:43.953Z", + "completed":"2016-09-01T21:43:43.953Z", + "new_balance":"2248.01", + "value":"-2631.21" + } + }, + { + "id":"d43fdd59-262a-4b7f-8942-36228dc60b27", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T23:11:59.623Z", + "completed":"2016-09-01T23:11:59.623Z", + "new_balance":"-1445.76", + "value":"-3693.77" + } + }, + { + "id":"cb52923c-36cb-402c-8c8e-94a73a6de8ec", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T00:15:37.914Z", + "completed":"2016-09-12T00:15:37.914Z", + "new_balance":"-2177.61", + "value":"-731.85" + } + }, + { + "id":"0ad34dd3-7402-4aec-ade5-8764516841fa", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T16:25:12.021Z", + "completed":"2016-09-12T16:25:12.021Z", + "new_balance":"-2494.82", + "value":"-317.21" + } + }, + { + "id":"b20bb9c5-c0ea-4262-a8b4-07a068b89db7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T16:31:52.948Z", + "completed":"2016-09-12T16:31:52.948Z", + "new_balance":"-2548.00", + "value":"-53.18" + } + }, + { + "id":"cfa910d8-b4cb-4a02-a9d4-897da53c6656", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T17:24:44.496Z", + "completed":"2016-09-12T17:24:44.496Z", + "new_balance":"-2594.90", + "value":"-46.90" + } + }, + { + "id":"335e7e96-94ec-4ac4-9c32-30ff4120fecc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T01:22:34.253Z", + "completed":"2016-09-15T01:22:34.253Z", + "new_balance":"-2367.51", + "value":"227.39" + } + }, + { + "id":"cd208755-a727-48d5-9ec1-e276c5d5c954", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T16:12:35.378Z", + "completed":"2016-09-15T16:12:35.378Z", + "new_balance":"-476.19", + "value":"1891.32" + } + }, + { + "id":"e8aed6ec-34bf-4a81-8a74-ef5b4dd806bf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T07:17:21.798Z", + "completed":"2016-09-17T07:17:21.798Z", + "new_balance":"-527.29", + "value":"-51.10" + } + }, + { + "id":"8e906da0-6f56-4092-86cf-d25268b0e880", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:14:20.596Z", + "completed":"2016-09-17T12:14:20.596Z", + "new_balance":"-606.37", + "value":"-79.08" + } + }, + { + "id":"27a9e0d8-9a17-4114-b9c8-6a1a6948cd85", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T21:49:15.592Z", + "completed":"2016-09-17T21:49:15.592Z", + "new_balance":"294.61", + "value":"900.98" + } + }, + { + "id":"6086ee3d-e6f7-4f59-81ac-6903e8fd3890", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T00:55:05.527Z", + "completed":"2016-09-19T00:55:05.527Z", + "new_balance":"744.61", + "value":"450.00" + } + }, + { + "id":"cad3b87e-bfd2-422a-922e-0fdefb1ec94d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T07:09:09.139Z", + "completed":"2016-09-21T07:09:09.139Z", + "new_balance":"805.86", + "value":"61.25" + } + }, + { + "id":"fa8b17db-c3ad-4e0b-a0a6-7563aaeb3a96", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T09:58:26.421Z", + "completed":"2016-09-21T09:58:26.421Z", + "new_balance":"731.93", + "value":"-73.93" + } + }, + { + "id":"1e3c48d8-1351-43cf-8bc5-80c6557efbca", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T18:25:22.608Z", + "completed":"2016-09-24T18:25:22.608Z", + "new_balance":"959.32", + "value":"227.39" + } + }, + { + "id":"2011a2be-2757-4d71-9d11-c2efc272c01d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T21:47:55.258Z", + "completed":"2016-09-24T21:47:55.258Z", + "new_balance":"432.76", + "value":"-526.56" + } + }, + { + "id":"a9a24120-67e1-495d-bdfb-483a7be7a83e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T10:18:03.424Z", + "completed":"2016-09-25T10:18:03.424Z", + "new_balance":"886.41", + "value":"453.65" + } + }, + { + "id":"1808ede3-1c99-44e8-a58f-1a48be0fde70", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T21:21:10.129Z", + "completed":"2016-09-25T21:21:10.129Z", + "new_balance":"219.26", + "value":"-667.15" + } + }, + { + "id":"b2bd8158-2eea-4aa8-ab2a-1fc362a286a4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T05:27:53.001Z", + "completed":"2016-09-28T05:27:53.001Z", + "new_balance":"3302.13", + "value":"3082.87" + } + }, + { + "id":"a4b885b4-716f-4c26-aab8-d07a49c35c2e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T16:34:46.829Z", + "completed":"2016-09-28T16:34:46.829Z", + "new_balance":"5193.45", + "value":"1891.32" + } + }, + { + "id":"872e10e0-2032-45ad-96f3-1d58731ec498", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T15:51:13.811Z", + "completed":"2016-09-30T15:51:13.811Z", + "new_balance":"5421.07", + "value":"227.62" + } + }, + { + "id":"96dbae6a-b5cd-43f4-9af8-2c0728df4216", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T23:17:12.717Z", + "completed":"2016-09-30T23:17:12.717Z", + "new_balance":"5648.46", + "value":"227.39" + } + }, + { + "id":"9f1a0fbc-1737-4aac-98f8-7fe025d70345", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T04:17:11.844Z", + "completed":"2016-12-01T04:17:11.844Z", + "new_balance":"4916.61", + "value":"-731.85" + } + }, + { + "id":"8c8b59ec-9bc4-4d90-8cb6-2e8c5e567679", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T10:49:30.765Z", + "completed":"2016-12-01T10:49:30.765Z", + "new_balance":"4599.40", + "value":"-317.21" + } + }, + { + "id":"8e9212ec-ffd6-4fe3-995c-0e6f9229e5ff", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T13:17:50.997Z", + "completed":"2016-12-01T13:17:50.997Z", + "new_balance":"905.63", + "value":"-3693.77" + } + }, + { + "id":"c0d8d3b8-57be-479b-8655-97eebc07e625", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T17:00:57.925Z", + "completed":"2016-12-01T17:00:57.925Z", + "new_balance":"-1725.58", + "value":"-2631.21" + } + }, + { + "id":"efb465c9-8174-40fd-b505-b7b5d95952f9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T19:33:17.794Z", + "completed":"2016-12-01T19:33:17.794Z", + "new_balance":"-1923.49", + "value":"-197.91" + } + }, + { + "id":"35a1db09-1ed6-41f6-88b3-48152a24a376", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T19:54:43.343Z", + "completed":"2016-12-01T19:54:43.343Z", + "new_balance":"-2086.97", + "value":"-163.48" + } + }, + { + "id":"f5156f64-bcf1-45f2-9ce5-65e18c765dc6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T18:47:36.907Z", + "completed":"2016-12-04T18:47:36.907Z", + "new_balance":"-2140.15", + "value":"-53.18" + } + }, + { + "id":"97fb2e07-2449-47a2-b619-309c08229a8c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:12:34.143Z", + "completed":"2016-12-04T21:12:34.143Z", + "new_balance":"-2187.05", + "value":"-46.90" + } + }, + { + "id":"82fd67e6-dc03-41b6-9033-49e5b59aaaa5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T14:26:09.314Z", + "completed":"2016-12-05T14:26:09.314Z", + "new_balance":"-2504.26", + "value":"-317.21" + } + }, + { + "id":"0afc1e09-d58d-4514-a028-df62ad0bf4fe", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T17:48:25.165Z", + "completed":"2016-12-05T17:48:25.165Z", + "new_balance":"-3236.11", + "value":"-731.85" + } + }, + { + "id":"84ee05aa-71f5-4573-843e-173f9cb553a5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T07:00:54.485Z", + "completed":"2016-12-07T07:00:54.485Z", + "new_balance":"-1344.79", + "value":"1891.32" + } + }, + { + "id":"dd1cf225-279b-4618-8a1a-1ed23a033866", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T13:16:48.104Z", + "completed":"2016-12-07T13:16:48.104Z", + "new_balance":"-443.81", + "value":"900.98" + } + }, + { + "id":"1e586351-1a9d-4dde-a6d2-cf80e96ca0df", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T18:25:06.614Z", + "completed":"2016-12-07T18:25:06.614Z", + "new_balance":"-216.42", + "value":"227.39" + } + }, + { + "id":"0080f60d-9c18-491d-b41f-b3652d79262e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T20:37:47.661Z", + "completed":"2016-12-07T20:37:47.661Z", + "new_balance":"-267.52", + "value":"-51.10" + } + }, + { + "id":"6031279a-3fda-48a8-94e7-aad4513eed90", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T11:58:54.387Z", + "completed":"2016-12-11T11:58:54.387Z", + "new_balance":"-346.60", + "value":"-79.08" + } + }, + { + "id":"6111d144-4c86-4583-ad7e-b1cb3cb6c8d7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T04:17:10.604Z", + "completed":"2016-12-14T04:17:10.604Z", + "new_balance":"-285.35", + "value":"61.25" + } + }, + { + "id":"cb7da7a3-6465-4a63-8a39-0bc5bf13f97a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T06:41:07.413Z", + "completed":"2016-12-14T06:41:07.413Z", + "new_balance":"-359.28", + "value":"-73.93" + } + }, + { + "id":"d2fc8fbf-678f-467b-8916-ae2eb36d1850", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T08:05:39.030Z", + "completed":"2016-12-14T08:05:39.030Z", + "new_balance":"90.72", + "value":"450.00" + } + }, + { + "id":"39da2006-11f0-4c4d-81c6-53b9f4b0fbcc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T13:48:29.055Z", + "completed":"2016-12-16T13:48:29.055Z", + "new_balance":"-435.84", + "value":"-526.56" + } + }, + { + "id":"d09d2cd4-bc45-4f23-859d-de30975cf371", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T14:26:20.200Z", + "completed":"2016-12-16T14:26:20.200Z", + "new_balance":"-208.45", + "value":"227.39" + } + }, + { + "id":"46ce5258-149f-46f5-bd49-4b1ab4a9c125", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T08:52:12.067Z", + "completed":"2016-12-21T08:52:12.067Z", + "new_balance":"2874.42", + "value":"3082.87" + } + }, + { + "id":"83893495-f4c3-45df-adf9-e68f1aae68d2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T10:58:19.661Z", + "completed":"2016-12-21T10:58:19.661Z", + "new_balance":"2207.27", + "value":"-667.15" + } + }, + { + "id":"f68e5c6e-860c-47b6-b3d7-31a43accad9e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T16:01:46.750Z", + "completed":"2016-12-21T16:01:46.750Z", + "new_balance":"4098.59", + "value":"1891.32" + } + }, + { + "id":"bd1bd939-72cd-4457-be9c-9fcb19d7518c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:20:13.881Z", + "completed":"2016-12-21T19:20:13.881Z", + "new_balance":"4552.24", + "value":"453.65" + } + }, + { + "id":"6d0a1da8-e691-4b84-a33c-ebf3d966bb78", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T02:55:00.514Z", + "completed":"2016-12-30T02:55:00.514Z", + "new_balance":"4779.63", + "value":"227.39" + } + }, + { + "id":"527058cb-68cb-425b-9163-dd19071b88ba", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T07:09:20.797Z", + "completed":"2016-12-30T07:09:20.797Z", + "new_balance":"5007.25", + "value":"227.62" + } + }, + { + "id":"002f85c8-dea9-4047-bbef-2f3e5e981bbc", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T01:37:22.617Z", + "completed":"2017-03-01T01:37:22.617Z", + "new_balance":"4809.34", + "value":"-197.91" + } + }, + { + "id":"3d07f3be-849b-46e4-bb27-7a04b59f3b8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T07:13:02.894Z", + "completed":"2017-03-01T07:13:02.894Z", + "new_balance":"4645.86", + "value":"-163.48" + } + }, + { + "id":"d4786851-ad42-4d58-b585-e90cd948098e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T07:15:01.240Z", + "completed":"2017-03-01T07:15:01.240Z", + "new_balance":"4328.65", + "value":"-317.21" + } + }, + { + "id":"e4b7aa5d-e92e-46ed-a7d5-258bd9dfac3d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T09:32:39.067Z", + "completed":"2017-03-01T09:32:39.067Z", + "new_balance":"3596.80", + "value":"-731.85" + } + }, + { + "id":"cf033715-bedf-434e-adda-2dbe43b2b2a2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T12:24:22.525Z", + "completed":"2017-03-01T12:24:22.525Z", + "new_balance":"-96.97", + "value":"-3693.77" + } + }, + { + "id":"d8ab3cd3-4ec4-4788-b42e-cbceb4103182", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T17:48:22.825Z", + "completed":"2017-03-01T17:48:22.825Z", + "new_balance":"-2728.18", + "value":"-2631.21" + } + }, + { + "id":"5bc12cfe-88b6-4770-bd85-0cdf85b75138", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T01:29:13.790Z", + "completed":"2017-03-12T01:29:13.790Z", + "new_balance":"-2775.08", + "value":"-46.90" + } + }, + { + "id":"f7a92190-da32-4eee-b2e6-8f3e91f3fedf", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T01:35:33.162Z", + "completed":"2017-03-12T01:35:33.162Z", + "new_balance":"-3092.29", + "value":"-317.21" + } + }, + { + "id":"0e2e7fe7-56b2-4561-986a-29234f87a169", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:38:12.915Z", + "completed":"2017-03-12T03:38:12.915Z", + "new_balance":"-3824.14", + "value":"-731.85" + } + }, + { + "id":"2ceef5d2-f864-45c8-b913-4058981defef", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T20:07:13.737Z", + "completed":"2017-03-12T20:07:13.737Z", + "new_balance":"-3877.32", + "value":"-53.18" + } + }, + { + "id":"b533ed5b-c4eb-4e41-8c06-d6deae46d5c5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T08:35:48.203Z", + "completed":"2017-03-14T08:35:48.203Z", + "new_balance":"-1986.00", + "value":"1891.32" + } + }, + { + "id":"c145746c-4e76-42d5-b7ee-df72abcaddd8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T22:46:41.868Z", + "completed":"2017-03-15T22:46:41.868Z", + "new_balance":"-1758.61", + "value":"227.39" + } + }, + { + "id":"55bd163b-4b1a-4a48-a913-2e83ceadfee0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T18:49:04.940Z", + "completed":"2017-03-16T18:49:04.940Z", + "new_balance":"-857.63", + "value":"900.98" + } + }, + { + "id":"d23ae6d7-253e-4a30-bba8-e83aa125b256", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T03:05:54.393Z", + "completed":"2017-03-17T03:05:54.393Z", + "new_balance":"-908.73", + "value":"-51.10" + } + }, + { + "id":"66fdee05-3110-4475-b0d7-f00fcff358e1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T09:09:32.401Z", + "completed":"2017-03-17T09:09:32.401Z", + "new_balance":"-987.81", + "value":"-79.08" + } + }, + { + "id":"d9482caf-0c81-4145-87b2-4a83d86ea995", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T14:29:44.282Z", + "completed":"2017-03-19T14:29:44.282Z", + "new_balance":"-537.81", + "value":"450.00" + } + }, + { + "id":"8cb590f1-5583-4d5f-9a9b-3583bf631472", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T10:43:58.648Z", + "completed":"2017-03-21T10:43:58.648Z", + "new_balance":"-476.56", + "value":"61.25" + } + }, + { + "id":"29c9e0b9-d97d-4fc3-a9c1-b83c52c8dc84", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T23:07:24.839Z", + "completed":"2017-03-21T23:07:24.839Z", + "new_balance":"-550.49", + "value":"-73.93" + } + }, + { + "id":"06e1dbfb-6e15-48f2-a522-f9662c456634", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T00:10:34.009Z", + "completed":"2017-03-24T00:10:34.009Z", + "new_balance":"-323.10", + "value":"227.39" + } + }, + { + "id":"2fa6d8f7-974a-42f5-9408-088813ec228a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T05:35:20.932Z", + "completed":"2017-03-24T05:35:20.932Z", + "new_balance":"-849.66", + "value":"-526.56" + } + }, + { + "id":"bbeea247-2df3-403b-a6b9-3c0af9099d12", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T19:10:49.840Z", + "completed":"2017-03-25T19:10:49.840Z", + "new_balance":"-396.01", + "value":"453.65" + } + }, + { + "id":"34d05193-2981-48e0-bc56-1f4af457aa04", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T20:15:56.495Z", + "completed":"2017-03-25T20:15:56.495Z", + "new_balance":"-1063.16", + "value":"-667.15" + } + }, + { + "id":"4fc964a4-28dc-47d9-8790-ae80c630f3ef", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T05:54:51.162Z", + "completed":"2017-03-28T05:54:51.162Z", + "new_balance":"2019.71", + "value":"3082.87" + } + }, + { + "id":"46dad42c-51ec-436d-aabe-da8adf95ed4d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T13:25:39.728Z", + "completed":"2017-03-28T13:25:39.728Z", + "new_balance":"3911.03", + "value":"1891.32" + } + }, + { + "id":"87b8a0c6-8998-4707-add2-0f28d5683a15", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T09:27:50.404Z", + "completed":"2017-03-30T09:27:50.404Z", + "new_balance":"4138.65", + "value":"227.62" + } + }, + { + "id":"6dca27ba-716c-45eb-acbf-571c74876873", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T21:55:33.212Z", + "completed":"2017-03-30T21:55:33.212Z", + "new_balance":"4366.04", + "value":"227.39" + } + }, + { + "id":"13325437-26cb-460a-b519-488bb0f679d6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T03:40:57.304Z", + "completed":"2017-06-01T03:40:57.304Z", + "new_balance":"3634.19", + "value":"-731.85" + } + }, + { + "id":"4cec849e-0361-49b3-a545-25a216f159d1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T07:41:06.735Z", + "completed":"2017-06-01T07:41:06.735Z", + "new_balance":"3436.28", + "value":"-197.91" + } + }, + { + "id":"219c013a-6f53-4f92-9f40-7083c9b54ff3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T11:46:36.096Z", + "completed":"2017-06-01T11:46:36.096Z", + "new_balance":"3119.07", + "value":"-317.21" + } + }, + { + "id":"e6f1c9ef-91e1-4ccb-a81d-dde9f5a0af06", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T14:25:19.317Z", + "completed":"2017-06-01T14:25:19.317Z", + "new_balance":"487.86", + "value":"-2631.21" + } + }, + { + "id":"b7120fea-0b77-421a-8520-f2a8d69059b4", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T15:13:58.122Z", + "completed":"2017-06-01T15:13:58.122Z", + "new_balance":"324.38", + "value":"-163.48" + } + }, + { + "id":"fe615c16-0089-4d4f-9c92-08c32fb177a1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T21:51:38.206Z", + "completed":"2017-06-01T21:51:38.206Z", + "new_balance":"-3369.39", + "value":"-3693.77" + } + }, + { + "id":"346298f7-37a5-4e43-a212-d59ab9cd47b7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T18:17:02.952Z", + "completed":"2017-06-04T18:17:02.952Z", + "new_balance":"-3422.57", + "value":"-53.18" + } + }, + { + "id":"36cd0e9a-6fc3-4fbc-9b56-c7499123112f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:47:22.302Z", + "completed":"2017-06-04T19:47:22.302Z", + "new_balance":"-3469.47", + "value":"-46.90" + } + }, + { + "id":"d4d40559-5743-44a6-8610-6d42d2bbe6f1", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T04:53:37.995Z", + "completed":"2017-06-05T04:53:37.995Z", + "new_balance":"-3786.68", + "value":"-317.21" + } + }, + { + "id":"6f346c32-6546-4b87-84e4-d6f269fd6a6f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T15:04:47.466Z", + "completed":"2017-06-05T15:04:47.466Z", + "new_balance":"-4518.53", + "value":"-731.85" + } + }, + { + "id":"be7dbd69-207f-4d1b-be32-384bdb52f142", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T02:00:34.264Z", + "completed":"2017-06-07T02:00:34.264Z", + "new_balance":"-4569.63", + "value":"-51.10" + } + }, + { + "id":"f4d0d926-ed72-4943-8105-1a454a636cee", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T05:16:46.282Z", + "completed":"2017-06-07T05:16:46.282Z", + "new_balance":"-2678.31", + "value":"1891.32" + } + }, + { + "id":"93da4637-a839-460f-8be2-ad090a833d24", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T16:40:11.256Z", + "completed":"2017-06-07T16:40:11.256Z", + "new_balance":"-2450.92", + "value":"227.39" + } + }, + { + "id":"d04549af-58a1-4694-83da-f6223c4f77f3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T19:10:05.782Z", + "completed":"2017-06-07T19:10:05.782Z", + "new_balance":"-1549.94", + "value":"900.98" + } + }, + { + "id":"48b77236-386c-4501-a5b1-162065440f9d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T03:56:25.098Z", + "completed":"2017-06-11T03:56:25.098Z", + "new_balance":"-1629.02", + "value":"-79.08" + } + }, + { + "id":"2e5577b2-ba18-4ce6-8a9c-28c72443db74", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T06:00:51.513Z", + "completed":"2017-06-14T06:00:51.513Z", + "new_balance":"-1567.77", + "value":"61.25" + } + }, + { + "id":"49cd4327-0f0f-45d3-94c1-57c470d8162c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T08:28:56.296Z", + "completed":"2017-06-14T08:28:56.296Z", + "new_balance":"-1117.77", + "value":"450.00" + } + }, + { + "id":"e1f45c77-91ac-4c42-a249-d7ccc17da7f5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T20:30:04.994Z", + "completed":"2017-06-14T20:30:04.994Z", + "new_balance":"-1191.70", + "value":"-73.93" + } + }, + { + "id":"4638e41a-0af1-4376-afe7-2ec963b3df84", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T02:01:26.885Z", + "completed":"2017-06-16T02:01:26.885Z", + "new_balance":"-964.31", + "value":"227.39" + } + }, + { + "id":"bb89a64f-ee99-4c5c-887c-4409681b21d8", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T10:31:11.232Z", + "completed":"2017-06-16T10:31:11.232Z", + "new_balance":"-1490.87", + "value":"-526.56" + } + }, + { + "id":"4e4df918-5497-40a7-afad-fb7eb8fdfa95", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T03:40:08.398Z", + "completed":"2017-06-21T03:40:08.398Z", + "new_balance":"1592.00", + "value":"3082.87" + } + }, + { + "id":"ed07b99b-fad5-47ac-b6b6-6aec893729c2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T03:55:22.190Z", + "completed":"2017-06-21T03:55:22.190Z", + "new_balance":"3483.32", + "value":"1891.32" + } + }, + { + "id":"dc923c40-2964-46b1-935c-54cbd25ed2e7", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T21:14:09.506Z", + "completed":"2017-06-21T21:14:09.506Z", + "new_balance":"2816.17", + "value":"-667.15" + } + }, + { + "id":"cd4b41a4-7f40-489d-9080-f89ddf341833", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T23:30:43.206Z", + "completed":"2017-06-21T23:30:43.206Z", + "new_balance":"3269.82", + "value":"453.65" + } + }, + { + "id":"37c29e3d-8c99-48f2-b0b5-a63b480cb293", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T04:31:55.826Z", + "completed":"2017-06-30T04:31:55.826Z", + "new_balance":"3497.44", + "value":"227.62" + } + }, + { + "id":"004920b2-398e-4c44-9cd3-37294aaa05c3", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T11:26:39.001Z", + "completed":"2017-06-30T11:26:39.001Z", + "new_balance":"3724.83", + "value":"227.39" + } + }, + { + "id":"2e165123-e44a-4838-8c6b-385936d4a459", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T02:44:08.391Z", + "completed":"2017-09-01T02:44:08.391Z", + "new_balance":"1093.62", + "value":"-2631.21" + } + }, + { + "id":"854d865d-82f8-46ab-85d7-e47987b9fc19", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T07:20:56.686Z", + "completed":"2017-09-01T07:20:56.686Z", + "new_balance":"361.77", + "value":"-731.85" + } + }, + { + "id":"2c002ef2-3cda-472e-a1a5-568a9930f3ea", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T07:47:07.206Z", + "completed":"2017-09-01T07:47:07.206Z", + "new_balance":"-3332.00", + "value":"-3693.77" + } + }, + { + "id":"d84e6a0d-1384-45ac-a97d-0890ccd1d3a6", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T13:32:46.521Z", + "completed":"2017-09-01T13:32:46.521Z", + "new_balance":"-3529.91", + "value":"-197.91" + } + }, + { + "id":"913fc9e7-e4e1-4c15-a0fb-087b1913eb12", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T15:38:34.839Z", + "completed":"2017-09-01T15:38:34.839Z", + "new_balance":"-3847.12", + "value":"-317.21" + } + }, + { + "id":"c89d42a8-d2c7-4696-a06a-fdfb907b7195", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T15:53:56.285Z", + "completed":"2017-09-01T15:53:56.285Z", + "new_balance":"-4010.60", + "value":"-163.48" + } + }, + { + "id":"31e9a1f2-65c3-40ea-813a-ffe295b3a836", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T09:43:23.383Z", + "completed":"2017-09-12T09:43:23.383Z", + "new_balance":"-4327.81", + "value":"-317.21" + } + }, + { + "id":"af2ae94b-a13c-4a31-a9e4-249d0c800296", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T14:55:08.588Z", + "completed":"2017-09-12T14:55:08.588Z", + "new_balance":"-4374.71", + "value":"-46.90" + } + }, + { + "id":"ace90788-ddba-449d-860d-50406b28e354", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T15:05:12.409Z", + "completed":"2017-09-12T15:05:12.409Z", + "new_balance":"-5106.56", + "value":"-731.85" + } + }, + { + "id":"461ee381-f8b3-4def-9b9a-f4ba36170474", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T21:40:35.972Z", + "completed":"2017-09-12T21:40:35.972Z", + "new_balance":"-5159.74", + "value":"-53.18" + } + }, + { + "id":"8117941f-6acd-4b32-98ab-dc0646225a4d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T12:58:01.546Z", + "completed":"2017-09-15T12:58:01.546Z", + "new_balance":"-3268.42", + "value":"1891.32" + } + }, + { + "id":"ca37b845-a4f3-4dfb-8bba-1de75cda1f51", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T22:18:28.630Z", + "completed":"2017-09-15T22:18:28.630Z", + "new_balance":"-3041.03", + "value":"227.39" + } + }, + { + "id":"1f26bb09-794c-4636-8a39-0e8a21f847ae", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T18:04:11.450Z", + "completed":"2017-09-17T18:04:11.450Z", + "new_balance":"-3120.11", + "value":"-79.08" + } + }, + { + "id":"ec748379-2b99-44ce-afd1-ebdfd5b9cf5d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T20:15:56.386Z", + "completed":"2017-09-17T20:15:56.386Z", + "new_balance":"-2219.13", + "value":"900.98" + } + }, + { + "id":"ece6b6ba-7c42-4144-9dac-f130ee77565f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T23:08:57.620Z", + "completed":"2017-09-17T23:08:57.620Z", + "new_balance":"-2270.23", + "value":"-51.10" + } + }, + { + "id":"492ba0f4-79a0-479c-bb28-a80431aadd67", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T04:25:51.506Z", + "completed":"2017-09-19T04:25:51.506Z", + "new_balance":"-1820.23", + "value":"450.00" + } + }, + { + "id":"8f72018e-0192-4169-8398-ad5d987f6547", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:18:05.228Z", + "completed":"2017-09-21T14:18:05.228Z", + "new_balance":"-1758.98", + "value":"61.25" + } + }, + { + "id":"92f63a2a-fcb6-4351-8974-c6acd722669a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T20:35:26.348Z", + "completed":"2017-09-21T20:35:26.348Z", + "new_balance":"-1832.91", + "value":"-73.93" + } + }, + { + "id":"b9dcfaed-ca4a-4a4f-b53d-631608d86de9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T01:33:52.553Z", + "completed":"2017-09-24T01:33:52.553Z", + "new_balance":"-1605.52", + "value":"227.39" + } + }, + { + "id":"2a0b10eb-4582-466b-a841-95233b894fc2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T23:09:28.198Z", + "completed":"2017-09-24T23:09:28.198Z", + "new_balance":"-2132.08", + "value":"-526.56" + } + }, + { + "id":"c48b7abb-9359-4e19-94c7-15fe0aa95fc0", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T03:22:20.169Z", + "completed":"2017-09-25T03:22:20.169Z", + "new_balance":"-1678.43", + "value":"453.65" + } + }, + { + "id":"14c70c68-c36a-470b-ae58-dad5119e5b31", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T08:03:46.364Z", + "completed":"2017-09-25T08:03:46.364Z", + "new_balance":"-2345.58", + "value":"-667.15" + } + }, + { + "id":"9b95bab5-6d80-4c65-b157-6a5256e80379", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T13:14:09.957Z", + "completed":"2017-09-28T13:14:09.957Z", + "new_balance":"737.29", + "value":"3082.87" + } + }, + { + "id":"462ad45d-329f-4e5b-9209-350c67b592a2", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T16:22:58.113Z", + "completed":"2017-09-28T16:22:58.113Z", + "new_balance":"2628.61", + "value":"1891.32" + } + }, + { + "id":"f4490973-1b2f-438c-82d9-ebb092d02374", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T12:07:18.952Z", + "completed":"2017-09-30T12:07:18.952Z", + "new_balance":"2856.00", + "value":"227.39" + } + }, + { + "id":"97e95d9b-8892-4b8b-830f-a980bac25620", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T23:00:53.831Z", + "completed":"2017-09-30T23:00:53.831Z", + "new_balance":"3083.62", + "value":"227.62" + } + }, + { + "id":"c17bab41-711f-4740-a27d-4e8090551fbd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T01:22:57.192Z", + "completed":"2017-12-01T01:22:57.192Z", + "new_balance":"452.41", + "value":"-2631.21" + } + }, + { + "id":"8abe1808-3912-4b9e-a0ee-2e265547e338", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T11:14:15.732Z", + "completed":"2017-12-01T11:14:15.732Z", + "new_balance":"-3241.36", + "value":"-3693.77" + } + }, + { + "id":"64ac872c-eda9-4c24-b620-3e7125decf8a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T12:59:32.034Z", + "completed":"2017-12-01T12:59:32.034Z", + "new_balance":"-3558.57", + "value":"-317.21" + } + }, + { + "id":"dee2ac0d-ce43-45a5-9d3d-14f5cd0d2178", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T13:57:14.812Z", + "completed":"2017-12-01T13:57:14.812Z", + "new_balance":"-3756.48", + "value":"-197.91" + } + }, + { + "id":"405ba94d-6286-481e-8a0f-dfa57783e414", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T15:55:21.465Z", + "completed":"2017-12-01T15:55:21.465Z", + "new_balance":"-4488.33", + "value":"-731.85" + } + }, + { + "id":"1d128375-6a43-4bca-aeb3-651c48e16078", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T18:42:57.719Z", + "completed":"2017-12-01T18:42:57.719Z", + "new_balance":"-4651.81", + "value":"-163.48" + } + }, + { + "id":"74fac8ad-4bcc-4ad5-9953-c57b091c8f8e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T06:10:34.920Z", + "completed":"2017-12-04T06:10:34.920Z", + "new_balance":"-4698.71", + "value":"-46.90" + } + }, + { + "id":"4ce898f0-f482-4748-aa62-d43c2f89293a", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T17:30:45.376Z", + "completed":"2017-12-04T17:30:45.376Z", + "new_balance":"-4751.89", + "value":"-53.18" + } + }, + { + "id":"d9399c89-90bc-42c6-80fa-4f2820a34105", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T15:54:25.343Z", + "completed":"2017-12-05T15:54:25.343Z", + "new_balance":"-5483.74", + "value":"-731.85" + } + }, + { + "id":"c280719f-2542-4393-8727-6e632c7611ca", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T21:08:04.253Z", + "completed":"2017-12-05T21:08:04.253Z", + "new_balance":"-5800.95", + "value":"-317.21" + } + }, + { + "id":"e8dfdbf5-4196-42f8-a0fc-9f0b2d4b7c52", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:16:53.397Z", + "completed":"2017-12-07T03:16:53.397Z", + "new_balance":"-5573.56", + "value":"227.39" + } + }, + { + "id":"43e95859-a7b8-447a-9076-0412bada11f9", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:50:08.395Z", + "completed":"2017-12-07T03:50:08.395Z", + "new_balance":"-3682.24", + "value":"1891.32" + } + }, + { + "id":"fe62f733-5872-4ee9-a066-68c9e81a0a7d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T07:01:00.072Z", + "completed":"2017-12-07T07:01:00.072Z", + "new_balance":"-3733.34", + "value":"-51.10" + } + }, + { + "id":"43d64e59-3059-43ea-9816-b37983f32b7d", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T07:35:15.770Z", + "completed":"2017-12-07T07:35:15.770Z", + "new_balance":"-2832.36", + "value":"900.98" + } + }, + { + "id":"473b7eb0-3876-4928-8e91-4180c3da280b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T19:22:33.560Z", + "completed":"2017-12-11T19:22:33.560Z", + "new_balance":"-2911.44", + "value":"-79.08" + } + }, + { + "id":"50841a3d-d666-4f16-9faf-60c5050eda2f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T04:45:20.690Z", + "completed":"2017-12-14T04:45:20.690Z", + "new_balance":"-2850.19", + "value":"61.25" + } + }, + { + "id":"4e0d9962-a28e-4890-93fa-fdba731dc6d5", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T14:27:55.079Z", + "completed":"2017-12-14T14:27:55.079Z", + "new_balance":"-2400.19", + "value":"450.00" + } + }, + { + "id":"09bcc656-51b6-4151-83be-53e1a4197fdd", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T22:54:09.590Z", + "completed":"2017-12-14T22:54:09.590Z", + "new_balance":"-2474.12", + "value":"-73.93" + } + }, + { + "id":"30976f08-67c8-40eb-a648-2a12dd711b2b", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T07:13:06.791Z", + "completed":"2017-12-16T07:13:06.791Z", + "new_balance":"-3000.68", + "value":"-526.56" + } + }, + { + "id":"780a7048-c2c4-4c3f-8464-350a202463ce", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T23:07:09.734Z", + "completed":"2017-12-16T23:07:09.734Z", + "new_balance":"-2773.29", + "value":"227.39" + } + }, + { + "id":"795481ce-65ff-4fc7-bf4d-cb077c4fb69e", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T06:30:24.323Z", + "completed":"2017-12-21T06:30:24.323Z", + "new_balance":"-3440.44", + "value":"-667.15" + } + }, + { + "id":"69adce2a-c10c-4f0c-883f-f9308385384f", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T18:54:12.683Z", + "completed":"2017-12-21T18:54:12.683Z", + "new_balance":"-1549.12", + "value":"1891.32" + } + }, + { + "id":"906b1dc7-2c1f-40db-87e0-bd5f7ada8ceb", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T23:35:41.820Z", + "completed":"2017-12-21T23:35:41.820Z", + "new_balance":"1533.75", + "value":"3082.87" + } + }, + { + "id":"fc22039e-a966-494e-b9c6-c609277b7180", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T23:39:08.285Z", + "completed":"2017-12-21T23:39:08.285Z", + "new_balance":"1987.40", + "value":"453.65" + } + }, + { + "id":"01a4f4f9-5f29-408e-b0d2-3c9ec8a17c4c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T03:35:20.406Z", + "completed":"2017-12-30T03:35:20.406Z", + "new_balance":"2214.79", + "value":"227.39" + } + }, + { + "id":"97622251-725b-4f41-9a64-82bba7dac13c", + "this_account":{ + "id":"c874ad5a-9e1d-4938-bcd8-71bfbcc2e088", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T22:25:52.320Z", + "completed":"2017-12-30T22:25:52.320Z", + "new_balance":"2442.41", + "value":"227.62" + } + }, + { + "id":"feec7016-b8f8-4a90-8de5-b725c320fffa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T07:58:16.248Z", + "completed":"2016-01-01T07:58:16.248Z", + "new_balance":"6045.10", + "value":"1022.42" + } + }, + { + "id":"f323ef80-854c-40f4-ab75-b8077ec350d0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-01-01T12:17:54.586Z", + "completed":"2016-01-01T12:17:54.586Z", + "new_balance":"7725.51", + "value":"1680.41" + } + }, + { + "id":"fe33af8b-a4f7-4cce-9557-7001e1e63615", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-01-02T07:48:55.891Z", + "completed":"2016-01-02T07:48:55.891Z", + "new_balance":"7317.94", + "value":"-407.57" + } + }, + { + "id":"5d1b3328-c600-4a6a-89b1-4f5c336e73a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-03T11:20:05.033Z", + "completed":"2016-01-03T11:20:05.033Z", + "new_balance":"7311.56", + "value":"-6.38" + } + }, + { + "id":"c00cd2a2-a4ea-46ea-9c7c-15dac77022fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-03T18:13:22.407Z", + "completed":"2016-01-03T18:13:22.407Z", + "new_balance":"7264.76", + "value":"-46.80" + } + }, + { + "id":"e904ef5a-e2f7-418f-8916-50ee2047ee68", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-03T23:53:15.497Z", + "completed":"2016-01-03T23:53:15.497Z", + "new_balance":"7247.14", + "value":"-17.62" + } + }, + { + "id":"20a810dd-76a1-45f6-9c24-7116059222d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-04T02:29:53.221Z", + "completed":"2016-01-04T02:29:53.221Z", + "new_balance":"7236.23", + "value":"-10.91" + } + }, + { + "id":"15dbf798-ba2b-4680-98e3-0346d7042c9b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-05T19:52:51.848Z", + "completed":"2016-01-05T19:52:51.848Z", + "new_balance":"7229.24", + "value":"-6.99" + } + }, + { + "id":"5b9f6682-ee32-42ce-8ab1-b6346286b6ec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-07T10:30:50.725Z", + "completed":"2016-01-07T10:30:50.725Z", + "new_balance":"7210.08", + "value":"-19.16" + } + }, + { + "id":"0c1809a0-40c7-4d25-8b04-2ec915bf06fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T18:32:11.867Z", + "completed":"2016-01-07T18:32:11.867Z", + "new_balance":"7185.15", + "value":"-24.93" + } + }, + { + "id":"36322d0e-9b7a-45ad-abf6-70cd94d4d8fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-08T13:51:04.664Z", + "completed":"2016-01-08T13:51:04.664Z", + "new_balance":"7169.14", + "value":"-16.01" + } + }, + { + "id":"4f88719e-96cb-407c-bee5-1ad08a7a6f7d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-08T15:49:10.038Z", + "completed":"2016-01-08T15:49:10.038Z", + "new_balance":"7154.15", + "value":"-14.99" + } + }, + { + "id":"48a085f5-1385-422f-9e9d-fe846dca33fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-09T07:31:11.119Z", + "completed":"2016-01-09T07:31:11.119Z", + "new_balance":"7124.99", + "value":"-29.16" + } + }, + { + "id":"a514fcbb-d179-405e-9e5b-de16eadbfa20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-01-09T15:47:29.887Z", + "completed":"2016-01-09T15:47:29.887Z", + "new_balance":"7079.93", + "value":"-45.06" + } + }, + { + "id":"26be7181-b470-432d-8673-ecd3e19a4750", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-10T04:36:45.930Z", + "completed":"2016-01-10T04:36:45.930Z", + "new_balance":"7035.45", + "value":"-44.48" + } + }, + { + "id":"2cae57e9-b04d-4a4e-82b2-7eb169c04c9d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-01-10T17:21:30.198Z", + "completed":"2016-01-10T17:21:30.198Z", + "new_balance":"6930.73", + "value":"-104.72" + } + }, + { + "id":"a30aec3f-8da3-460a-a8c2-203a24a3a2cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-11T02:40:31.003Z", + "completed":"2016-01-11T02:40:31.003Z", + "new_balance":"6924.96", + "value":"-5.77" + } + }, + { + "id":"2b85e8ab-2b03-43df-bdd6-03445f49fad7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-11T15:37:00.357Z", + "completed":"2016-01-11T15:37:00.357Z", + "new_balance":"7015.84", + "value":"90.88" + } + }, + { + "id":"946a2f31-25e4-4a77-9e62-eda950ed10a4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-01-11T23:22:06.807Z", + "completed":"2016-01-11T23:22:06.807Z", + "new_balance":"6936.76", + "value":"-79.08" + } + }, + { + "id":"3e75165a-c837-4e1d-a529-6cc60ea391a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T06:41:47.860Z", + "completed":"2016-01-12T06:41:47.860Z", + "new_balance":"6926.69", + "value":"-10.07" + } + }, + { + "id":"048c8c22-c0ea-41b1-83a5-4fe5795a81a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-01-15T21:01:52.418Z", + "completed":"2016-01-15T21:01:52.418Z", + "new_balance":"6901.29", + "value":"-25.40" + } + }, + { + "id":"c9eb0b8b-3fd3-4216-ac83-a3d92e7f37f3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-16T05:45:52.759Z", + "completed":"2016-01-16T05:45:52.759Z", + "new_balance":"6870.48", + "value":"-30.81" + } + }, + { + "id":"8380dbb2-39c6-4daa-ac81-b68706f40215", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T21:57:53.485Z", + "completed":"2016-01-17T21:57:53.485Z", + "new_balance":"6855.65", + "value":"-14.83" + } + }, + { + "id":"10806e5e-1aa7-4eff-965c-2ce9f2b555ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-01-20T22:25:00.018Z", + "completed":"2016-01-20T22:25:00.018Z", + "new_balance":"6848.66", + "value":"-6.99" + } + }, + { + "id":"19f766c6-501d-4b78-8cc5-c756bdeabe38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-01-21T12:10:01.761Z", + "completed":"2016-01-21T12:10:01.761Z", + "new_balance":"6799.88", + "value":"-48.78" + } + }, + { + "id":"f061ce9c-2a84-41cf-8e5d-9a4f0a96db14", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-01-23T17:39:43.205Z", + "completed":"2016-01-23T17:39:43.205Z", + "new_balance":"6601.97", + "value":"-197.91" + } + }, + { + "id":"9b005f83-f08d-4319-b681-2a651da6b5d6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-02-01T10:40:11.360Z", + "completed":"2016-02-01T10:40:11.360Z", + "new_balance":"7624.39", + "value":"1022.42" + } + }, + { + "id":"b585acdd-f3df-4469-82c8-71f0b6cea565", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-03T09:29:00.845Z", + "completed":"2016-02-03T09:29:00.845Z", + "new_balance":"7460.91", + "value":"-163.48" + } + }, + { + "id":"96c6582b-2adf-410d-aac0-fc8e63cfd37d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-02-03T21:59:03.399Z", + "completed":"2016-02-03T21:59:03.399Z", + "new_balance":"7053.34", + "value":"-407.57" + } + }, + { + "id":"6f17ab7f-ddab-4eeb-940e-d632d871c02f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-04T04:27:23.305Z", + "completed":"2016-02-04T04:27:23.305Z", + "new_balance":"7038.83", + "value":"-14.51" + } + }, + { + "id":"1ea59b0f-1f86-483f-b6e7-e24e6f849312", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-02-05T13:02:33.497Z", + "completed":"2016-02-05T13:02:33.497Z", + "new_balance":"7032.34", + "value":"-6.49" + } + }, + { + "id":"41c3a1c3-069d-4021-b939-9608d1f161c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-06T12:27:30.640Z", + "completed":"2016-02-06T12:27:30.640Z", + "new_balance":"7007.54", + "value":"-24.80" + } + }, + { + "id":"0634ee0f-a746-4222-aa79-c920dc54a389", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T06:32:35.406Z", + "completed":"2016-02-07T06:32:35.406Z", + "new_balance":"6966.19", + "value":"-41.35" + } + }, + { + "id":"caebe125-47ac-446a-a4f9-fa0be1080fff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-07T08:08:49.202Z", + "completed":"2016-02-07T08:08:49.202Z", + "new_balance":"6937.03", + "value":"-29.16" + } + }, + { + "id":"1265ac5e-a8af-4da8-8744-082b5e29536d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-02-07T09:06:27.698Z", + "completed":"2016-02-07T09:06:27.698Z", + "new_balance":"6832.31", + "value":"-104.72" + } + }, + { + "id":"9bcc8093-6db2-4ce3-9fa3-7e517b6bb749", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:34:22.725Z", + "completed":"2016-02-08T17:34:22.725Z", + "new_balance":"6781.75", + "value":"-50.56" + } + }, + { + "id":"afb43f3d-b73a-4a85-a966-095291b6449a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-09T21:25:24.916Z", + "completed":"2016-02-09T21:25:24.916Z", + "new_balance":"6755.95", + "value":"-25.80" + } + }, + { + "id":"768f1fe4-dfe5-4dc0-8821-a4d7cdd5d5ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-10T04:59:28.165Z", + "completed":"2016-02-10T04:59:28.165Z", + "new_balance":"6748.96", + "value":"-6.99" + } + }, + { + "id":"91bfbcd2-b295-49e6-8303-06f00246eff1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-02-12T02:04:12.968Z", + "completed":"2016-02-12T02:04:12.968Z", + "new_balance":"6713.77", + "value":"-35.19" + } + }, + { + "id":"f8f8d4ec-b21d-4d74-a089-44fc5fa61f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-14T19:31:42.126Z", + "completed":"2016-02-14T19:31:42.126Z", + "new_balance":"6684.61", + "value":"-29.16" + } + }, + { + "id":"fd037c46-58c2-4f99-a5a6-a0f03dff255d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-02-16T15:35:49.109Z", + "completed":"2016-02-16T15:35:49.109Z", + "new_balance":"6639.10", + "value":"-45.51" + } + }, + { + "id":"0d29d07e-d6e5-4f45-adc3-9794eaa1db0a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-02-16T20:51:56.108Z", + "completed":"2016-02-16T20:51:56.108Z", + "new_balance":"6633.33", + "value":"-5.77" + } + }, + { + "id":"ed8647c1-d794-4afb-b2ef-ab38f3a3c99e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-18T21:04:14.554Z", + "completed":"2016-02-18T21:04:14.554Z", + "new_balance":"6624.93", + "value":"-8.40" + } + }, + { + "id":"4a931b77-8360-41df-8d4a-e47ead20ccff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-02-21T07:29:28.672Z", + "completed":"2016-02-21T07:29:28.672Z", + "new_balance":"6576.15", + "value":"-48.78" + } + }, + { + "id":"22e8fc51-8584-4086-8799-3d32e0883f25", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-21T17:17:08.965Z", + "completed":"2016-02-21T17:17:08.965Z", + "new_balance":"6690.29", + "value":"114.14" + } + }, + { + "id":"1a3b2af8-4b65-4025-a4ef-4d6a73937aef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-02-27T21:42:38.824Z", + "completed":"2016-02-27T21:42:38.824Z", + "new_balance":"6492.38", + "value":"-197.91" + } + }, + { + "id":"e110786d-d842-4fa6-8a62-81b792bedbed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-01T13:35:23.080Z", + "completed":"2016-03-01T13:35:23.080Z", + "new_balance":"7514.80", + "value":"1022.42" + } + }, + { + "id":"6e16b42b-9546-47f1-b594-7161d923691a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-03-03T09:34:42.851Z", + "completed":"2016-03-03T09:34:42.851Z", + "new_balance":"7107.23", + "value":"-407.57" + } + }, + { + "id":"dc19f265-2f49-4289-804f-e0e02f01d8d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T01:39:39.187Z", + "completed":"2016-03-04T01:39:39.187Z", + "new_balance":"7075.78", + "value":"-31.45" + } + }, + { + "id":"a9af2ae8-e795-410b-aab8-81fa40c2cdcd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-04T08:56:48.304Z", + "completed":"2016-03-04T08:56:48.304Z", + "new_balance":"7044.97", + "value":"-30.81" + } + }, + { + "id":"0b8c1164-3fe5-4c0d-8777-cb842c75b57b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-04T14:06:15.803Z", + "completed":"2016-03-04T14:06:15.803Z", + "new_balance":"7027.97", + "value":"-17.00" + } + }, + { + "id":"2ab913af-d215-45b2-b2ac-5f1b3c117943", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-04T19:41:52.026Z", + "completed":"2016-03-04T19:41:52.026Z", + "new_balance":"6982.46", + "value":"-45.51" + } + }, + { + "id":"7c742d9b-60cb-4988-a54f-ee079a902da8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-03-05T02:50:45.132Z", + "completed":"2016-03-05T02:50:45.132Z", + "new_balance":"6877.74", + "value":"-104.72" + } + }, + { + "id":"8c2e96b6-34cb-4925-8d91-33fda61563f6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-05T11:06:15.068Z", + "completed":"2016-03-05T11:06:15.068Z", + "new_balance":"6832.20", + "value":"-45.54" + } + }, + { + "id":"7e52add1-943d-48de-acf3-4fdb2009dbfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-03-05T13:37:21.822Z", + "completed":"2016-03-05T13:37:21.822Z", + "new_balance":"6818.14", + "value":"-14.06" + } + }, + { + "id":"d8502ea7-3722-4765-9037-359227649332", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-05T16:41:02.045Z", + "completed":"2016-03-05T16:41:02.045Z", + "new_balance":"6812.37", + "value":"-5.77" + } + }, + { + "id":"fe2c3752-2724-4279-8751-4432fc55b302", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-03-06T12:53:07.400Z", + "completed":"2016-03-06T12:53:07.400Z", + "new_balance":"6713.25", + "value":"-99.12" + } + }, + { + "id":"9f7fd598-c017-478a-9f34-8c3efc44145f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-06T17:07:01.889Z", + "completed":"2016-03-06T17:07:01.889Z", + "new_balance":"6631.46", + "value":"-81.79" + } + }, + { + "id":"40235442-db0e-4908-953f-bdb9b77658cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-07T06:05:01.796Z", + "completed":"2016-03-07T06:05:01.796Z", + "new_balance":"6623.85", + "value":"-7.61" + } + }, + { + "id":"b9d69651-5c9b-41c7-82ce-6b9b83cb3067", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-07T18:00:20.011Z", + "completed":"2016-03-07T18:00:20.011Z", + "new_balance":"6618.08", + "value":"-5.77" + } + }, + { + "id":"a2a9594d-1e9a-4ec1-9e98-4fe5f2faf5d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-03-08T09:50:08.110Z", + "completed":"2016-03-08T09:50:08.110Z", + "new_balance":"6610.47", + "value":"-7.61" + } + }, + { + "id":"3ac9ddf2-ea6b-4f0c-8869-3b9c671d9f9e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-08T11:57:01.631Z", + "completed":"2016-03-08T11:57:01.631Z", + "new_balance":"6601.95", + "value":"-8.52" + } + }, + { + "id":"e68fa3da-feb4-4d0c-915a-0c83d36fc6c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-10T19:38:25.823Z", + "completed":"2016-03-10T19:38:25.823Z", + "new_balance":"6569.61", + "value":"-32.34" + } + }, + { + "id":"7e773865-838a-41c1-bdcb-c8d7c2238188", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T00:41:27.922Z", + "completed":"2016-03-11T00:41:27.922Z", + "new_balance":"6557.24", + "value":"-12.37" + } + }, + { + "id":"28c69327-bcda-4b85-9ad8-6a6a4821aaea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-11T04:18:56.099Z", + "completed":"2016-03-11T04:18:56.099Z", + "new_balance":"6551.47", + "value":"-5.77" + } + }, + { + "id":"f0556f2c-16fd-4e88-84c4-67a5858198d6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-11T13:02:09.224Z", + "completed":"2016-03-11T13:02:09.224Z", + "new_balance":"6527.17", + "value":"-24.30" + } + }, + { + "id":"1bb03103-235c-4067-b10a-952bb9405891", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T08:26:34.068Z", + "completed":"2016-03-12T08:26:34.068Z", + "new_balance":"6425.91", + "value":"-101.26" + } + }, + { + "id":"d9c5a022-4934-4171-a6da-c5de73e13d41", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:07:30.718Z", + "completed":"2016-03-12T15:07:30.718Z", + "new_balance":"6359.73", + "value":"-66.18" + } + }, + { + "id":"518b371c-498f-4224-8f06-f4d265611596", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T16:43:22.226Z", + "completed":"2016-03-12T16:43:22.226Z", + "new_balance":"6340.57", + "value":"-19.16" + } + }, + { + "id":"2d43cc4a-acaa-4e8a-aafe-7796a893d7a2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-12T18:39:43.451Z", + "completed":"2016-03-12T18:39:43.451Z", + "new_balance":"6334.80", + "value":"-5.77" + } + }, + { + "id":"9c1fff2f-0cce-4363-9b14-e365ded22439", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-13T03:28:34.484Z", + "completed":"2016-03-13T03:28:34.484Z", + "new_balance":"6329.03", + "value":"-5.77" + } + }, + { + "id":"44d7c8ed-a3a4-4a40-a741-c3c1d60d6a77", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-13T05:13:37.560Z", + "completed":"2016-03-13T05:13:37.560Z", + "new_balance":"6286.54", + "value":"-42.49" + } + }, + { + "id":"8b5caa04-2216-4aa5-a41c-88792b04ab99", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-03-15T09:08:28.026Z", + "completed":"2016-03-15T09:08:28.026Z", + "new_balance":"6237.65", + "value":"-48.89" + } + }, + { + "id":"86759b90-0bb1-470d-a59d-00b0dd0a30f4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-15T12:45:41.918Z", + "completed":"2016-03-15T12:45:41.918Z", + "new_balance":"6195.42", + "value":"-42.23" + } + }, + { + "id":"153e84ba-363f-4174-a56b-63b77efe6093", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-17T16:21:28.181Z", + "completed":"2016-03-17T16:21:28.181Z", + "new_balance":"6151.45", + "value":"-43.97" + } + }, + { + "id":"f54119d0-8cfd-4e90-909f-de0266123b65", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-03-18T07:19:45.831Z", + "completed":"2016-03-18T07:19:45.831Z", + "new_balance":"6053.95", + "value":"-97.50" + } + }, + { + "id":"6df9569f-8051-4456-b2c1-38370ceb09af", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-03-20T15:14:26.894Z", + "completed":"2016-03-20T15:14:26.894Z", + "new_balance":"5949.63", + "value":"-104.32" + } + }, + { + "id":"68ff9815-9afe-40f8-9e5d-619bdafd94e4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-22T06:09:32.738Z", + "completed":"2016-03-22T06:09:32.738Z", + "new_balance":"5909.31", + "value":"-40.32" + } + }, + { + "id":"fef29cc1-4606-4551-9582-a32e5ac997ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-25T06:45:24.096Z", + "completed":"2016-03-25T06:45:24.096Z", + "new_balance":"5896.30", + "value":"-13.01" + } + }, + { + "id":"4f320545-fd04-4abd-b53a-e7a1146f0320", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-25T18:24:02.068Z", + "completed":"2016-03-25T18:24:02.068Z", + "new_balance":"5890.53", + "value":"-5.77" + } + }, + { + "id":"5fa930f7-57ac-48d4-b85c-b1e74dd0a37c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T11:33:27.028Z", + "completed":"2016-03-26T11:33:27.028Z", + "new_balance":"5864.91", + "value":"-25.62" + } + }, + { + "id":"9ec69b36-b247-406c-aa65-6be6cea594ab", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-03-26T21:36:34.868Z", + "completed":"2016-03-26T21:36:34.868Z", + "new_balance":"5852.12", + "value":"-12.79" + } + }, + { + "id":"feac0456-ba35-4e76-ab5b-78022f96e5e3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-03-27T22:07:54.949Z", + "completed":"2016-03-27T22:07:54.949Z", + "new_balance":"5837.93", + "value":"-14.19" + } + }, + { + "id":"9857673f-f387-40c8-b040-931b5d0c7baf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-28T21:03:12.312Z", + "completed":"2016-03-28T21:03:12.312Z", + "new_balance":"5789.15", + "value":"-48.78" + } + }, + { + "id":"e298c9db-b6bd-4b2d-a6b7-50e72830b9d3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-03-31T21:26:46.876Z", + "completed":"2016-03-31T21:26:46.876Z", + "new_balance":"5591.24", + "value":"-197.91" + } + }, + { + "id":"78b48e91-dd24-46c2-b794-4b35d40ec901", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-04-01T00:51:31.171Z", + "completed":"2016-04-01T00:51:31.171Z", + "new_balance":"5183.67", + "value":"-407.57" + } + }, + { + "id":"bd785bd5-c2ba-4699-aece-6a8f5461745c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T01:11:12.627Z", + "completed":"2016-04-01T01:11:12.627Z", + "new_balance":"6206.09", + "value":"1022.42" + } + }, + { + "id":"96a8dad2-e5f9-4101-8c5a-792697c03b85", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-04-01T22:19:35.935Z", + "completed":"2016-04-01T22:19:35.935Z", + "new_balance":"7886.50", + "value":"1680.41" + } + }, + { + "id":"b83b6301-cda9-4da0-9014-bbcaa0787d1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-03T12:17:15.089Z", + "completed":"2016-04-03T12:17:15.089Z", + "new_balance":"7839.70", + "value":"-46.80" + } + }, + { + "id":"75e85c24-7d72-4812-9fe1-cd9531842a8d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-03T15:15:20.086Z", + "completed":"2016-04-03T15:15:20.086Z", + "new_balance":"7822.08", + "value":"-17.62" + } + }, + { + "id":"2e6d6e0a-4d74-4206-b631-000c00efb009", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-03T16:47:20.288Z", + "completed":"2016-04-03T16:47:20.288Z", + "new_balance":"7815.70", + "value":"-6.38" + } + }, + { + "id":"86f033ef-0c5b-4e16-962c-0b80435935cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T15:20:09.214Z", + "completed":"2016-04-05T15:20:09.214Z", + "new_balance":"7808.71", + "value":"-6.99" + } + }, + { + "id":"fab00a86-ee9a-4a7b-a8eb-8709f0f69145", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-05T23:15:25.856Z", + "completed":"2016-04-05T23:15:25.856Z", + "new_balance":"7797.80", + "value":"-10.91" + } + }, + { + "id":"b8f4ef70-39bf-4a78-bda2-c28d5427997e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-06T03:44:00.866Z", + "completed":"2016-04-06T03:44:00.866Z", + "new_balance":"7772.87", + "value":"-24.93" + } + }, + { + "id":"94b62b24-8506-458f-87eb-b6b126d54d28", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-09T06:20:30.694Z", + "completed":"2016-04-09T06:20:30.694Z", + "new_balance":"7753.71", + "value":"-19.16" + } + }, + { + "id":"5088dafc-15bb-4c1e-ab0b-008ea190102a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-10T02:54:27.434Z", + "completed":"2016-04-10T02:54:27.434Z", + "new_balance":"7738.72", + "value":"-14.99" + } + }, + { + "id":"75ae0389-fb72-4441-88f0-4444a0237a34", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T09:33:58.535Z", + "completed":"2016-04-11T09:33:58.535Z", + "new_balance":"7722.71", + "value":"-16.01" + } + }, + { + "id":"1648ee22-c4eb-46fe-ac45-08ac38dc1835", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T09:53:28.679Z", + "completed":"2016-04-11T09:53:28.679Z", + "new_balance":"7693.55", + "value":"-29.16" + } + }, + { + "id":"8a4249de-118f-4283-8f38-d3cbe9f8e243", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-04-13T11:30:30.088Z", + "completed":"2016-04-13T11:30:30.088Z", + "new_balance":"7648.49", + "value":"-45.06" + } + }, + { + "id":"42d43de9-8e64-4627-9357-82b721116557", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-04-13T15:11:14.864Z", + "completed":"2016-04-13T15:11:14.864Z", + "new_balance":"7543.77", + "value":"-104.72" + } + }, + { + "id":"b26d5869-0604-43e0-af6b-7e603627d50f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-15T16:37:44.625Z", + "completed":"2016-04-15T16:37:44.625Z", + "new_balance":"7499.29", + "value":"-44.48" + } + }, + { + "id":"f2a040f5-2361-46b9-a142-09ce51785477", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-16T00:55:13.284Z", + "completed":"2016-04-16T00:55:13.284Z", + "new_balance":"7489.22", + "value":"-10.07" + } + }, + { + "id":"6727fcd9-4877-4240-b099-ba61e0ffd3c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-16T19:26:06.438Z", + "completed":"2016-04-16T19:26:06.438Z", + "new_balance":"7483.45", + "value":"-5.77" + } + }, + { + "id":"2aca3c04-f00f-4b7f-ba95-2f1d76a624b4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-04-18T16:04:15.638Z", + "completed":"2016-04-18T16:04:15.638Z", + "new_balance":"7404.37", + "value":"-79.08" + } + }, + { + "id":"b0b652af-d7b4-4606-93e9-46b113a86ab4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-04-23T05:41:25.765Z", + "completed":"2016-04-23T05:41:25.765Z", + "new_balance":"7378.97", + "value":"-25.40" + } + }, + { + "id":"85f1596b-9cd9-465e-a0a5-ad814f20479a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T09:48:15.102Z", + "completed":"2016-04-24T09:48:15.102Z", + "new_balance":"7348.16", + "value":"-30.81" + } + }, + { + "id":"d16fc95e-c1f8-43fb-b126-344359344752", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-24T16:03:21.686Z", + "completed":"2016-04-24T16:03:21.686Z", + "new_balance":"7333.33", + "value":"-14.83" + } + }, + { + "id":"6cb68c16-780b-41de-a93b-ea70d0b423a9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-04-26T19:54:58.709Z", + "completed":"2016-04-26T19:54:58.709Z", + "new_balance":"7326.34", + "value":"-6.99" + } + }, + { + "id":"2c148d50-56e6-492f-a965-21df28097c6a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-04-28T09:47:09.804Z", + "completed":"2016-04-28T09:47:09.804Z", + "new_balance":"7128.43", + "value":"-197.91" + } + }, + { + "id":"b311e7d1-052c-4ada-b94a-c228102420a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-04-28T22:24:14.397Z", + "completed":"2016-04-28T22:24:14.397Z", + "new_balance":"7079.65", + "value":"-48.78" + } + }, + { + "id":"e163c9ff-3c9b-447a-a2d3-87700e2e3cf3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-02T02:39:19.974Z", + "completed":"2016-05-02T02:39:19.974Z", + "new_balance":"6916.17", + "value":"-163.48" + } + }, + { + "id":"b0cdf59d-6987-462d-bcb8-077b53650395", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-05-02T09:10:35.927Z", + "completed":"2016-05-02T09:10:35.927Z", + "new_balance":"6909.68", + "value":"-6.49" + } + }, + { + "id":"12dadcfa-0bb1-4efb-bf43-1386cd79ffed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-05-02T13:09:59.510Z", + "completed":"2016-05-02T13:09:59.510Z", + "new_balance":"6502.11", + "value":"-407.57" + } + }, + { + "id":"086eb9ae-d802-4942-8d0d-27b651e053cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-02T21:19:24.835Z", + "completed":"2016-05-02T21:19:24.835Z", + "new_balance":"6487.60", + "value":"-14.51" + } + }, + { + "id":"a7c35a0e-7493-46b5-ae30-2a0abb3b2f69", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-06T09:40:46.940Z", + "completed":"2016-05-06T09:40:46.940Z", + "new_balance":"6462.80", + "value":"-24.80" + } + }, + { + "id":"f2cb2d98-f461-47c0-b8e9-233816c2693c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-06T18:38:30.928Z", + "completed":"2016-05-06T18:38:30.928Z", + "new_balance":"6433.64", + "value":"-29.16" + } + }, + { + "id":"9926fc18-6ba9-4c55-8ef5-099a2d67ef5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-05-07T10:11:46.166Z", + "completed":"2016-05-07T10:11:46.166Z", + "new_balance":"6328.92", + "value":"-104.72" + } + }, + { + "id":"cbffd3a2-0bac-47e6-9dfe-ff6691ea040d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T11:32:51.902Z", + "completed":"2016-05-07T11:32:51.902Z", + "new_balance":"6287.57", + "value":"-41.35" + } + }, + { + "id":"22bdd76b-2665-4510-b4a9-c51e719a5301", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-05-09T17:39:54.328Z", + "completed":"2016-05-09T17:39:54.328Z", + "new_balance":"7309.99", + "value":"1022.42" + } + }, + { + "id":"4dcc3f55-7845-420e-8a2a-1888c637542b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T21:04:25.607Z", + "completed":"2016-05-14T21:04:25.607Z", + "new_balance":"7259.43", + "value":"-50.56" + } + }, + { + "id":"8fbe6277-4b66-4bc3-be99-4734ba03dd4f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-14T22:49:36.952Z", + "completed":"2016-05-14T22:49:36.952Z", + "new_balance":"7233.63", + "value":"-25.80" + } + }, + { + "id":"8acd28ff-cd88-450a-a8ed-8f64edb0617e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-16T22:30:35.823Z", + "completed":"2016-05-16T22:30:35.823Z", + "new_balance":"7226.64", + "value":"-6.99" + } + }, + { + "id":"36d92f0b-30e0-44ed-8bf4-07856979483c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-05-21T17:19:23.697Z", + "completed":"2016-05-21T17:19:23.697Z", + "new_balance":"7191.45", + "value":"-35.19" + } + }, + { + "id":"a8b890bf-b4e4-4744-a416-43a06572870c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-23T22:40:17.245Z", + "completed":"2016-05-23T22:40:17.245Z", + "new_balance":"7162.29", + "value":"-29.16" + } + }, + { + "id":"a5a307e3-7903-4802-b842-afb6bda8d87c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-05-23T23:50:06.159Z", + "completed":"2016-05-23T23:50:06.159Z", + "new_balance":"7156.52", + "value":"-5.77" + } + }, + { + "id":"9961866e-dac0-41e0-90df-c2b3ad854bef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-05-24T20:57:08.870Z", + "completed":"2016-05-24T20:57:08.870Z", + "new_balance":"7111.01", + "value":"-45.51" + } + }, + { + "id":"cc5112c9-9261-4a5b-aee9-c801e5bec6e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T02:40:17.846Z", + "completed":"2016-05-27T02:40:17.846Z", + "new_balance":"7102.61", + "value":"-8.40" + } + }, + { + "id":"e8197527-0f40-4f72-b090-436f26433a8d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-05-30T09:32:10.791Z", + "completed":"2016-05-30T09:32:10.791Z", + "new_balance":"7053.83", + "value":"-48.78" + } + }, + { + "id":"b7839c56-3829-44ae-9152-ee2c7168e7ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-05-30T11:48:08.860Z", + "completed":"2016-05-30T11:48:08.860Z", + "new_balance":"6855.92", + "value":"-197.91" + } + }, + { + "id":"ba456915-db63-4460-bb42-00ae7e8e0802", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2016-06-01T16:33:54.667Z", + "completed":"2016-06-01T16:33:54.667Z", + "new_balance":"7878.34", + "value":"1022.42" + } + }, + { + "id":"c29d9d05-eb1d-40f2-8eef-716e2d2d2577", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-06-01T23:23:56.510Z", + "completed":"2016-06-01T23:23:56.510Z", + "new_balance":"7470.77", + "value":"-407.57" + } + }, + { + "id":"4744ae94-8704-4c28-976e-214f340b93f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T05:02:26.596Z", + "completed":"2016-06-04T05:02:26.596Z", + "new_balance":"7439.32", + "value":"-31.45" + } + }, + { + "id":"b8aa6909-5417-4b84-b01d-4a19331924cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-04T23:43:18.268Z", + "completed":"2016-06-04T23:43:18.268Z", + "new_balance":"7422.32", + "value":"-17.00" + } + }, + { + "id":"3beadf1c-4886-4690-89a5-b6fcfdb96fbd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-11T00:52:22.646Z", + "completed":"2016-06-11T00:52:22.646Z", + "new_balance":"7376.81", + "value":"-45.51" + } + }, + { + "id":"f62a81cb-0f4a-4b2e-bdde-17563cd71313", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-11T21:12:23.326Z", + "completed":"2016-06-11T21:12:23.326Z", + "new_balance":"7346.00", + "value":"-30.81" + } + }, + { + "id":"b481a4f8-dbc7-42bd-a883-a5dcc3a1cf52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-06-12T04:18:05.865Z", + "completed":"2016-06-12T04:18:05.865Z", + "new_balance":"7331.94", + "value":"-14.06" + } + }, + { + "id":"1b339a62-7c66-4c31-bd07-0c2aa3a26bf6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-12T06:47:28.234Z", + "completed":"2016-06-12T06:47:28.234Z", + "new_balance":"7326.17", + "value":"-5.77" + } + }, + { + "id":"a6a6fe3e-133a-4bef-b457-87fc67a5da5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-06-12T12:21:48.483Z", + "completed":"2016-06-12T12:21:48.483Z", + "new_balance":"7221.45", + "value":"-104.72" + } + }, + { + "id":"9ff0a151-3748-4b4f-b7f5-0ac2e2a5ca23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-13T06:37:56.428Z", + "completed":"2016-06-13T06:37:56.428Z", + "new_balance":"7175.91", + "value":"-45.54" + } + }, + { + "id":"868c9d99-7b80-45f6-89d8-9a19b1eac7e8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-13T07:00:39.847Z", + "completed":"2016-06-13T07:00:39.847Z", + "new_balance":"7094.12", + "value":"-81.79" + } + }, + { + "id":"94c07ff8-32fc-4398-b3f8-bab6b830e0c2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-06-13T22:00:03.817Z", + "completed":"2016-06-13T22:00:03.817Z", + "new_balance":"6995.00", + "value":"-99.12" + } + }, + { + "id":"3fde963d-e3ad-4d25-8d6a-c84c58a49f52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-14T02:58:03.717Z", + "completed":"2016-06-14T02:58:03.717Z", + "new_balance":"6987.39", + "value":"-7.61" + } + }, + { + "id":"158d7f8d-1746-4400-8a55-3fd065e49b16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-14T16:33:36.759Z", + "completed":"2016-06-14T16:33:36.759Z", + "new_balance":"6981.62", + "value":"-5.77" + } + }, + { + "id":"36e5a61e-501f-4713-84b8-bfe58dae59f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-06-14T23:30:22.661Z", + "completed":"2016-06-14T23:30:22.661Z", + "new_balance":"6974.01", + "value":"-7.61" + } + }, + { + "id":"427c8207-3d48-489d-b941-bec1c1e6b502", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-15T01:50:12.074Z", + "completed":"2016-06-15T01:50:12.074Z", + "new_balance":"6968.24", + "value":"-5.77" + } + }, + { + "id":"5b81defd-86a5-4c88-8dbd-7e5c7acfd8c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T13:29:46.266Z", + "completed":"2016-06-15T13:29:46.266Z", + "new_balance":"6959.72", + "value":"-8.52" + } + }, + { + "id":"a74b75c5-4e23-4871-841c-8eb58f40cfb0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-15T20:50:55.100Z", + "completed":"2016-06-15T20:50:55.100Z", + "new_balance":"6927.38", + "value":"-32.34" + } + }, + { + "id":"7984b378-fa08-491a-ad02-f92f140353e0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-16T06:02:42.865Z", + "completed":"2016-06-16T06:02:42.865Z", + "new_balance":"6903.08", + "value":"-24.30" + } + }, + { + "id":"a63e6a5e-8a75-4540-a740-28a255c18b16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-17T11:47:18.241Z", + "completed":"2016-06-17T11:47:18.241Z", + "new_balance":"6890.71", + "value":"-12.37" + } + }, + { + "id":"2865e7cf-d27d-422d-8d02-90801c72f971", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-18T00:34:23.692Z", + "completed":"2016-06-18T00:34:23.692Z", + "new_balance":"6871.55", + "value":"-19.16" + } + }, + { + "id":"e7209de5-14ff-44f2-8b49-8c373dc188da", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T06:43:14.746Z", + "completed":"2016-06-18T06:43:14.746Z", + "new_balance":"6805.37", + "value":"-66.18" + } + }, + { + "id":"10558bb0-817f-49ba-9085-5089b4571f61", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-18T09:40:21.347Z", + "completed":"2016-06-18T09:40:21.347Z", + "new_balance":"6704.11", + "value":"-101.26" + } + }, + { + "id":"6a4fc033-4dc7-4951-b996-db239a1cd29a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-18T15:23:31.862Z", + "completed":"2016-06-18T15:23:31.862Z", + "new_balance":"6661.62", + "value":"-42.49" + } + }, + { + "id":"0c7e04cf-4ae0-427e-8a60-19ddeb2ba4a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T21:28:05.436Z", + "completed":"2016-06-18T21:28:05.436Z", + "new_balance":"6655.85", + "value":"-5.77" + } + }, + { + "id":"ee9fe7c9-b063-428e-97a2-0a6afc27f461", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-18T23:47:12.991Z", + "completed":"2016-06-18T23:47:12.991Z", + "new_balance":"6650.08", + "value":"-5.77" + } + }, + { + "id":"cb17b25c-4fd0-4aa0-83ca-915e71b8e3a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T02:15:10.804Z", + "completed":"2016-06-19T02:15:10.804Z", + "new_balance":"6607.85", + "value":"-42.23" + } + }, + { + "id":"fd545d9d-73ec-453e-940b-afc0c5622ec8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-19T04:24:33.832Z", + "completed":"2016-06-19T04:24:33.832Z", + "new_balance":"6563.88", + "value":"-43.97" + } + }, + { + "id":"f6b2c420-e268-4786-9986-2294373083d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-06-19T09:55:13.683Z", + "completed":"2016-06-19T09:55:13.683Z", + "new_balance":"6514.99", + "value":"-48.89" + } + }, + { + "id":"6a85f839-dc4c-454f-8f56-0cf67266ea00", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-06-21T08:29:41.291Z", + "completed":"2016-06-21T08:29:41.291Z", + "new_balance":"6417.49", + "value":"-97.50" + } + }, + { + "id":"2d54f92d-5e25-4540-b72f-0f5a26bbff32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-06-21T20:33:52.573Z", + "completed":"2016-06-21T20:33:52.573Z", + "new_balance":"6313.17", + "value":"-104.32" + } + }, + { + "id":"ab442bfa-f078-4050-a224-7b25e553a538", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-22T10:12:57.256Z", + "completed":"2016-06-22T10:12:57.256Z", + "new_balance":"6307.40", + "value":"-5.77" + } + }, + { + "id":"107af6ce-ee5e-4776-a83b-8e40f67d2112", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-22T12:19:46.104Z", + "completed":"2016-06-22T12:19:46.104Z", + "new_balance":"6294.39", + "value":"-13.01" + } + }, + { + "id":"ae3ff3df-6673-4b84-bddc-56ffc0ab4837", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-22T15:15:44.499Z", + "completed":"2016-06-22T15:15:44.499Z", + "new_balance":"6254.07", + "value":"-40.32" + } + }, + { + "id":"039c7a1a-3697-4c0b-bf76-a1a3ab02c6c5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-23T14:25:40.181Z", + "completed":"2016-06-23T14:25:40.181Z", + "new_balance":"6241.28", + "value":"-12.79" + } + }, + { + "id":"384f6e6a-ef19-4bb4-83b0-ab5ea4e5d783", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-06-24T07:36:11.895Z", + "completed":"2016-06-24T07:36:11.895Z", + "new_balance":"6215.66", + "value":"-25.62" + } + }, + { + "id":"4d5fa027-c80b-42e3-80f5-95b7b5ca335c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-06-26T20:14:04.674Z", + "completed":"2016-06-26T20:14:04.674Z", + "new_balance":"6201.47", + "value":"-14.19" + } + }, + { + "id":"fa87d5e6-c665-4794-b19b-f3e15ce362ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-06-30T06:00:28.904Z", + "completed":"2016-06-30T06:00:28.904Z", + "new_balance":"6003.56", + "value":"-197.91" + } + }, + { + "id":"46929cf0-a22f-4061-9436-66cfb9a243b6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-30T17:53:43.864Z", + "completed":"2016-06-30T17:53:43.864Z", + "new_balance":"5954.78", + "value":"-48.78" + } + }, + { + "id":"412ce528-565f-4210-9a77-29d85a9bd379", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T13:36:41.879Z", + "completed":"2016-07-01T13:36:41.879Z", + "new_balance":"6977.20", + "value":"1022.42" + } + }, + { + "id":"14c29dc4-1c2d-4501-8341-bde90a0ad2dc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T14:31:31.505Z", + "completed":"2016-07-01T14:31:31.505Z", + "new_balance":"8657.61", + "value":"1680.41" + } + }, + { + "id":"a39563a3-c046-44dd-bfed-64b736c92043", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-07-03T21:04:40.586Z", + "completed":"2016-07-03T21:04:40.586Z", + "new_balance":"8250.04", + "value":"-407.57" + } + }, + { + "id":"430557ed-e965-4ca4-8c42-11dd8ecb079a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-04T05:24:07.374Z", + "completed":"2016-07-04T05:24:07.374Z", + "new_balance":"8243.66", + "value":"-6.38" + } + }, + { + "id":"6ef4953d-4e33-40af-a6ec-6020aef27994", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-04T16:59:16.324Z", + "completed":"2016-07-04T16:59:16.324Z", + "new_balance":"8196.86", + "value":"-46.80" + } + }, + { + "id":"9d17cb3e-89e8-46a1-ae04-bf64bdf4c58a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-04T22:12:31.051Z", + "completed":"2016-07-04T22:12:31.051Z", + "new_balance":"8179.24", + "value":"-17.62" + } + }, + { + "id":"4b1c155f-833a-4c5f-8408-06e82d779b79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-05T19:21:44.658Z", + "completed":"2016-07-05T19:21:44.658Z", + "new_balance":"8168.33", + "value":"-10.91" + } + }, + { + "id":"d8cf9f10-f349-49fd-b05b-cbfac77602c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-07T14:14:42.428Z", + "completed":"2016-07-07T14:14:42.428Z", + "new_balance":"8161.34", + "value":"-6.99" + } + }, + { + "id":"27df7bbe-f1de-4cee-b31a-c7bef25d01c9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T00:19:59.720Z", + "completed":"2016-07-11T00:19:59.720Z", + "new_balance":"8136.41", + "value":"-24.93" + } + }, + { + "id":"ca08cd85-882e-4645-93fa-9656c1b0cf4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-11T04:28:59.364Z", + "completed":"2016-07-11T04:28:59.364Z", + "new_balance":"8107.25", + "value":"-29.16" + } + }, + { + "id":"6e8479da-6ad7-4fd2-899a-554a3bef6365", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-11T10:53:43.373Z", + "completed":"2016-07-11T10:53:43.373Z", + "new_balance":"8088.09", + "value":"-19.16" + } + }, + { + "id":"6d52bbd1-012b-4bdf-9da9-89a55eb7591d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-11T18:51:38.511Z", + "completed":"2016-07-11T18:51:38.511Z", + "new_balance":"8073.10", + "value":"-14.99" + } + }, + { + "id":"ec2e6ff6-4c5c-4f77-ac63-e8585af74734", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-11T20:27:16.757Z", + "completed":"2016-07-11T20:27:16.757Z", + "new_balance":"8057.09", + "value":"-16.01" + } + }, + { + "id":"2e7eccd9-d87a-4c7c-88b7-b5e444bf5413", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-07-13T02:13:03.773Z", + "completed":"2016-07-13T02:13:03.773Z", + "new_balance":"8012.03", + "value":"-45.06" + } + }, + { + "id":"e2357b05-2a58-471d-8b9a-98a6f4bb60df", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-07-13T20:44:34.930Z", + "completed":"2016-07-13T20:44:34.930Z", + "new_balance":"7907.31", + "value":"-104.72" + } + }, + { + "id":"db4d92b6-8bf4-4dff-9c60-4b68854feccf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-16T01:36:10.163Z", + "completed":"2016-07-16T01:36:10.163Z", + "new_balance":"7862.83", + "value":"-44.48" + } + }, + { + "id":"a957837e-9d61-4092-b906-cd4c3014af1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T11:30:27.781Z", + "completed":"2016-07-16T11:30:27.781Z", + "new_balance":"7953.71", + "value":"90.88" + } + }, + { + "id":"3c262b96-3cb6-4eee-a21c-f2d87c24af3e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-17T07:19:31.608Z", + "completed":"2016-07-17T07:19:31.608Z", + "new_balance":"7947.94", + "value":"-5.77" + } + }, + { + "id":"66032f3f-5e03-4d92-9757-94dd84d500fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T15:18:45.270Z", + "completed":"2016-07-17T15:18:45.270Z", + "new_balance":"7937.87", + "value":"-10.07" + } + }, + { + "id":"e9895c54-6d45-466e-9efa-0c1016abd956", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-07-19T02:30:36.808Z", + "completed":"2016-07-19T02:30:36.808Z", + "new_balance":"7858.79", + "value":"-79.08" + } + }, + { + "id":"341cf917-f488-41fd-844b-fd6fbfe3a91d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-07-21T08:30:02.892Z", + "completed":"2016-07-21T08:30:02.892Z", + "new_balance":"7833.39", + "value":"-25.40" + } + }, + { + "id":"5cfc19fb-992e-430f-8245-50e06a2167f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-23T18:50:23.781Z", + "completed":"2016-07-23T18:50:23.781Z", + "new_balance":"7802.58", + "value":"-30.81" + } + }, + { + "id":"23b5156e-eed3-4ea2-b19c-875117dd620d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-25T07:31:52.774Z", + "completed":"2016-07-25T07:31:52.774Z", + "new_balance":"7787.75", + "value":"-14.83" + } + }, + { + "id":"35d6d679-2110-4206-8be1-db86acf7a072", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-07-27T17:03:22.420Z", + "completed":"2016-07-27T17:03:22.420Z", + "new_balance":"7780.76", + "value":"-6.99" + } + }, + { + "id":"04195bd7-afac-411d-989d-9df7665052e7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-07-28T04:41:35.751Z", + "completed":"2016-07-28T04:41:35.751Z", + "new_balance":"7731.98", + "value":"-48.78" + } + }, + { + "id":"4ea802db-2404-49ba-af35-c721c0c79f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-07-28T13:54:31.320Z", + "completed":"2016-07-28T13:54:31.320Z", + "new_balance":"7534.07", + "value":"-197.91" + } + }, + { + "id":"f4390c6d-2324-46c2-a233-15d9a11f4029", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-08-01T07:48:41.974Z", + "completed":"2016-08-01T07:48:41.974Z", + "new_balance":"8556.49", + "value":"1022.42" + } + }, + { + "id":"c678eeef-25d2-474c-ba2b-7e8cdb6ebcb3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-08-03T12:58:17.351Z", + "completed":"2016-08-03T12:58:17.351Z", + "new_balance":"8148.92", + "value":"-407.57" + } + }, + { + "id":"faaff2a0-29e8-4fea-846a-46a39a0f04c8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-03T23:39:08.517Z", + "completed":"2016-08-03T23:39:08.517Z", + "new_balance":"7985.44", + "value":"-163.48" + } + }, + { + "id":"cdfa0919-87ee-4276-9b83-8a86e24dbed9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-04T07:29:05.753Z", + "completed":"2016-08-04T07:29:05.753Z", + "new_balance":"7970.93", + "value":"-14.51" + } + }, + { + "id":"a9aa6a58-b88d-4d78-94c0-bbf58a75a1f3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-07T02:51:28.509Z", + "completed":"2016-08-07T02:51:28.509Z", + "new_balance":"7946.13", + "value":"-24.80" + } + }, + { + "id":"83127e4a-bbc0-48b7-9fa2-0510a7f01643", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-08-07T09:33:00.923Z", + "completed":"2016-08-07T09:33:00.923Z", + "new_balance":"7939.64", + "value":"-6.49" + } + }, + { + "id":"b9af5306-5938-4c44-8d5d-78c22ae43446", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-07T16:20:09.589Z", + "completed":"2016-08-07T16:20:09.589Z", + "new_balance":"7910.48", + "value":"-29.16" + } + }, + { + "id":"d8c9ff47-c4c8-4dcb-b438-0a2577ab51fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-08T01:36:11.350Z", + "completed":"2016-08-08T01:36:11.350Z", + "new_balance":"7869.13", + "value":"-41.35" + } + }, + { + "id":"e381d522-0be0-4b09-af36-8f95032c889e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-08-08T15:32:14.106Z", + "completed":"2016-08-08T15:32:14.106Z", + "new_balance":"7764.41", + "value":"-104.72" + } + }, + { + "id":"6907e7c8-4e98-44a8-8e94-3c8f1fd26a09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T17:50:42.132Z", + "completed":"2016-08-08T17:50:42.132Z", + "new_balance":"7713.85", + "value":"-50.56" + } + }, + { + "id":"88e00893-74c3-4ce0-a91a-44ebf97a901d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-09T16:48:47.407Z", + "completed":"2016-08-09T16:48:47.407Z", + "new_balance":"7688.05", + "value":"-25.80" + } + }, + { + "id":"22393903-aa62-41ca-b89d-e60819a481bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-11T11:15:39.630Z", + "completed":"2016-08-11T11:15:39.630Z", + "new_balance":"7681.06", + "value":"-6.99" + } + }, + { + "id":"0fb4822a-dc71-40ed-8ee2-fa73db907c76", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-08-14T12:00:21.260Z", + "completed":"2016-08-14T12:00:21.260Z", + "new_balance":"7645.87", + "value":"-35.19" + } + }, + { + "id":"93f59b3a-c3fc-4a3b-bd2e-ff7afa68f84a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-15T17:13:08.965Z", + "completed":"2016-08-15T17:13:08.965Z", + "new_balance":"7616.71", + "value":"-29.16" + } + }, + { + "id":"426031fc-3263-4fd1-a411-4db0f8566e54", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-08-17T10:37:39.644Z", + "completed":"2016-08-17T10:37:39.644Z", + "new_balance":"7571.20", + "value":"-45.51" + } + }, + { + "id":"41e236ad-581f-4420-a13a-491706bbdac7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-08-17T20:43:25.783Z", + "completed":"2016-08-17T20:43:25.783Z", + "new_balance":"7565.43", + "value":"-5.77" + } + }, + { + "id":"dcf636f2-456f-4b6a-9317-6b30f16398fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-19T10:49:14.559Z", + "completed":"2016-08-19T10:49:14.559Z", + "new_balance":"7557.03", + "value":"-8.40" + } + }, + { + "id":"59e471dc-812b-43a5-b564-9bd2549aea43", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-25T04:40:28.315Z", + "completed":"2016-08-25T04:40:28.315Z", + "new_balance":"7671.17", + "value":"114.14" + } + }, + { + "id":"e3a56d9f-66c4-46a6-a412-838d2cccb56b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-08-28T08:40:13.937Z", + "completed":"2016-08-28T08:40:13.937Z", + "new_balance":"7622.39", + "value":"-48.78" + } + }, + { + "id":"bbadba3d-5ff2-4370-961e-17c00f5ce0c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-08-28T10:13:20.306Z", + "completed":"2016-08-28T10:13:20.306Z", + "new_balance":"7424.48", + "value":"-197.91" + } + }, + { + "id":"6e55638a-c887-4c15-804d-bdf1faa80b8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-01T07:58:58.405Z", + "completed":"2016-09-01T07:58:58.405Z", + "new_balance":"8446.90", + "value":"1022.42" + } + }, + { + "id":"74f1a06b-3fec-40d1-bd11-ea74f693d259", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-09-03T17:39:12.779Z", + "completed":"2016-09-03T17:39:12.779Z", + "new_balance":"8039.33", + "value":"-407.57" + } + }, + { + "id":"401208ce-fd0f-4e40-9ef0-c441883ef163", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-04T09:57:13.873Z", + "completed":"2016-09-04T09:57:13.873Z", + "new_balance":"8008.52", + "value":"-30.81" + } + }, + { + "id":"8fccf0ef-ee63-4e72-8880-ce009817cc30", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T10:05:12.102Z", + "completed":"2016-09-04T10:05:12.102Z", + "new_balance":"7963.01", + "value":"-45.51" + } + }, + { + "id":"a8c7ed34-8582-400b-83fe-bc3e77596edd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-04T16:28:51.406Z", + "completed":"2016-09-04T16:28:51.406Z", + "new_balance":"7946.01", + "value":"-17.00" + } + }, + { + "id":"6a584d8c-fad9-447e-a1ed-8d0f6402f5bb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-04T18:13:52.438Z", + "completed":"2016-09-04T18:13:52.438Z", + "new_balance":"7914.56", + "value":"-31.45" + } + }, + { + "id":"980e7ab1-8ddf-4ac2-bf23-fec2baffa119", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-05T06:07:06.454Z", + "completed":"2016-09-05T06:07:06.454Z", + "new_balance":"7832.77", + "value":"-81.79" + } + }, + { + "id":"78c41cb3-1497-4584-baaf-4ce93f01ba7e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-09-05T07:59:11.282Z", + "completed":"2016-09-05T07:59:11.282Z", + "new_balance":"7728.05", + "value":"-104.72" + } + }, + { + "id":"033cf596-a040-40bf-b0d8-1ddf516388c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-05T16:12:09.102Z", + "completed":"2016-09-05T16:12:09.102Z", + "new_balance":"7722.28", + "value":"-5.77" + } + }, + { + "id":"5e3239a3-8a7f-449e-ad60-e4e075254843", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-05T17:03:32.765Z", + "completed":"2016-09-05T17:03:32.765Z", + "new_balance":"7676.74", + "value":"-45.54" + } + }, + { + "id":"e5078d1d-5845-49eb-b248-825a776c0e22", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-09-05T19:10:32.711Z", + "completed":"2016-09-05T19:10:32.711Z", + "new_balance":"7577.62", + "value":"-99.12" + } + }, + { + "id":"eef50074-d01a-4bc1-b0fa-b73d7c293206", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-09-05T20:23:27.357Z", + "completed":"2016-09-05T20:23:27.357Z", + "new_balance":"7563.56", + "value":"-14.06" + } + }, + { + "id":"d55c2354-690e-466a-81b5-878b0b0fb9e4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T00:25:07.680Z", + "completed":"2016-09-07T00:25:07.680Z", + "new_balance":"7555.04", + "value":"-8.52" + } + }, + { + "id":"54814db8-32ab-4c8e-a7de-61e9fbf66920", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T00:34:09.874Z", + "completed":"2016-09-07T00:34:09.874Z", + "new_balance":"7547.43", + "value":"-7.61" + } + }, + { + "id":"8aaee176-8bd5-4b67-907d-7aa21b1024b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-09-07T11:43:20.816Z", + "completed":"2016-09-07T11:43:20.816Z", + "new_balance":"7539.82", + "value":"-7.61" + } + }, + { + "id":"730f727b-78fc-4f2d-aebe-674464c0a7fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-07T18:38:39.738Z", + "completed":"2016-09-07T18:38:39.738Z", + "new_balance":"7534.05", + "value":"-5.77" + } + }, + { + "id":"adffaae4-2ab2-40d3-b188-1f098bd615ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-10T21:13:18.630Z", + "completed":"2016-09-10T21:13:18.630Z", + "new_balance":"7501.71", + "value":"-32.34" + } + }, + { + "id":"4d093501-a2e4-4786-8ccb-23762c6df7c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-11T13:42:34.217Z", + "completed":"2016-09-11T13:42:34.217Z", + "new_balance":"7477.41", + "value":"-24.30" + } + }, + { + "id":"616c6621-468c-4426-8bb1-4e05fabb0d2b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T19:55:56.933Z", + "completed":"2016-09-11T19:55:56.933Z", + "new_balance":"7465.04", + "value":"-12.37" + } + }, + { + "id":"bf3f5433-a409-42a7-9209-b026db834e65", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-11T20:56:28.745Z", + "completed":"2016-09-11T20:56:28.745Z", + "new_balance":"7459.27", + "value":"-5.77" + } + }, + { + "id":"db68a43b-388d-49e5-b13c-0187a584a8d8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-12T03:59:27.176Z", + "completed":"2016-09-12T03:59:27.176Z", + "new_balance":"7453.50", + "value":"-5.77" + } + }, + { + "id":"e56ce3c3-a5b9-42e4-8e4d-90b74eeb9ce2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T05:10:26.262Z", + "completed":"2016-09-12T05:10:26.262Z", + "new_balance":"7352.24", + "value":"-101.26" + } + }, + { + "id":"ad49ded9-7ef8-40d5-bf72-f63cb0f98593", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T08:51:09.097Z", + "completed":"2016-09-12T08:51:09.097Z", + "new_balance":"7333.08", + "value":"-19.16" + } + }, + { + "id":"83362aff-cba1-4eca-bc26-bb90c73d24de", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T15:50:57.191Z", + "completed":"2016-09-12T15:50:57.191Z", + "new_balance":"7266.90", + "value":"-66.18" + } + }, + { + "id":"c629887b-5400-431e-8f85-21919e5a816b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-13T12:45:00.660Z", + "completed":"2016-09-13T12:45:00.660Z", + "new_balance":"7224.41", + "value":"-42.49" + } + }, + { + "id":"3d018534-8bd5-479c-8a3a-2800b602199c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-14T10:50:02.144Z", + "completed":"2016-09-14T10:50:02.144Z", + "new_balance":"7218.64", + "value":"-5.77" + } + }, + { + "id":"68e32475-f3d2-4e8b-b0ee-4f8b35c428c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:54:08.094Z", + "completed":"2016-09-14T19:54:08.094Z", + "new_balance":"7176.41", + "value":"-42.23" + } + }, + { + "id":"34604cc2-af7e-400c-a237-5d0c7c70d0bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-09-16T07:08:46.144Z", + "completed":"2016-09-16T07:08:46.144Z", + "new_balance":"7127.52", + "value":"-48.89" + } + }, + { + "id":"5ec2efa9-c708-4d99-a053-7aa75b1de011", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-18T11:06:04.944Z", + "completed":"2016-09-18T11:06:04.944Z", + "new_balance":"7083.55", + "value":"-43.97" + } + }, + { + "id":"e715b5a8-44d4-4128-a5a1-8b99072890d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-09-21T04:02:54.679Z", + "completed":"2016-09-21T04:02:54.679Z", + "new_balance":"6979.23", + "value":"-104.32" + } + }, + { + "id":"cd2caea8-d44b-4947-b06f-b188100ddecb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-09-21T10:14:27.200Z", + "completed":"2016-09-21T10:14:27.200Z", + "new_balance":"6881.73", + "value":"-97.50" + } + }, + { + "id":"5317a3f3-534b-4f0e-b21e-5d8c12e17e29", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-23T03:04:34.280Z", + "completed":"2016-09-23T03:04:34.280Z", + "new_balance":"6841.41", + "value":"-40.32" + } + }, + { + "id":"0787eca8-f4da-4ca0-9f0e-f8634deed268", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-24T21:41:13.227Z", + "completed":"2016-09-24T21:41:13.227Z", + "new_balance":"6835.64", + "value":"-5.77" + } + }, + { + "id":"5f645dfd-4e88-400e-8a58-c17fcbe6e270", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T05:39:00.469Z", + "completed":"2016-09-26T05:39:00.469Z", + "new_balance":"6810.02", + "value":"-25.62" + } + }, + { + "id":"68fc516d-fae4-4a8c-8ceb-5a5a027cfa82", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-09-26T14:56:21.618Z", + "completed":"2016-09-26T14:56:21.618Z", + "new_balance":"6797.23", + "value":"-12.79" + } + }, + { + "id":"f345a999-b49e-4f90-9f84-8807a7fcd569", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T21:05:11.977Z", + "completed":"2016-09-26T21:05:11.977Z", + "new_balance":"6784.22", + "value":"-13.01" + } + }, + { + "id":"fffe7b10-45bc-43e0-a665-32f0bb2e8a11", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-09-27T22:13:18.424Z", + "completed":"2016-09-27T22:13:18.424Z", + "new_balance":"6770.03", + "value":"-14.19" + } + }, + { + "id":"f1ff8f8f-63f3-4ead-9aae-868b1ba4033c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-09-28T07:38:27.229Z", + "completed":"2016-09-28T07:38:27.229Z", + "new_balance":"6572.12", + "value":"-197.91" + } + }, + { + "id":"d50d171c-ed6c-4fa4-add2-c9c502ae2b6e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-28T10:14:46.069Z", + "completed":"2016-09-28T10:14:46.069Z", + "new_balance":"6523.34", + "value":"-48.78" + } + }, + { + "id":"2b3d9fbc-5094-49df-9888-07eb1bd2bbd8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T00:51:28.660Z", + "completed":"2016-10-01T00:51:28.660Z", + "new_balance":"8203.75", + "value":"1680.41" + } + }, + { + "id":"3887c3ee-be57-4418-bf3e-d65daacc3b66", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-10-01T12:54:17.399Z", + "completed":"2016-10-01T12:54:17.399Z", + "new_balance":"9226.17", + "value":"1022.42" + } + }, + { + "id":"91b8f4cc-29e5-4578-8ca4-cae413b73cfb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-10-01T23:35:26.097Z", + "completed":"2016-10-01T23:35:26.097Z", + "new_balance":"8818.60", + "value":"-407.57" + } + }, + { + "id":"3a6737ef-a249-4de5-a250-298c2d567f42", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-03T09:15:08.432Z", + "completed":"2016-10-03T09:15:08.432Z", + "new_balance":"8812.22", + "value":"-6.38" + } + }, + { + "id":"b7cb820d-bd1e-4727-9f54-b6fae77cf722", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-03T15:03:53.093Z", + "completed":"2016-10-03T15:03:53.093Z", + "new_balance":"8765.42", + "value":"-46.80" + } + }, + { + "id":"f96abc60-9547-4030-89e4-3a6362242791", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-03T18:20:56.733Z", + "completed":"2016-10-03T18:20:56.733Z", + "new_balance":"8747.80", + "value":"-17.62" + } + }, + { + "id":"62b2441e-ec91-4782-9793-909697ecf59b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-05T18:15:49.235Z", + "completed":"2016-10-05T18:15:49.235Z", + "new_balance":"8736.89", + "value":"-10.91" + } + }, + { + "id":"25ddc735-60dc-4e81-8c17-c38ec339baa5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T18:17:19.220Z", + "completed":"2016-10-05T18:17:19.220Z", + "new_balance":"8729.90", + "value":"-6.99" + } + }, + { + "id":"ee7378fa-28b3-4671-b0d9-3c4e8e14bcf7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-06T00:27:11.401Z", + "completed":"2016-10-06T00:27:11.401Z", + "new_balance":"8704.97", + "value":"-24.93" + } + }, + { + "id":"cd82079d-767c-4d68-9926-7d550a6b469b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-09T13:46:13.599Z", + "completed":"2016-10-09T13:46:13.599Z", + "new_balance":"8685.81", + "value":"-19.16" + } + }, + { + "id":"e3a83c2d-f8ef-4551-bf8a-72e552d2f65b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-10T09:41:59.209Z", + "completed":"2016-10-10T09:41:59.209Z", + "new_balance":"8670.82", + "value":"-14.99" + } + }, + { + "id":"df7b1a14-cd96-49ab-989f-63a06c282b8f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T01:29:20.068Z", + "completed":"2016-10-11T01:29:20.068Z", + "new_balance":"8641.66", + "value":"-29.16" + } + }, + { + "id":"1c8f262b-5e94-4f16-bac5-49c69a424945", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T20:09:50.226Z", + "completed":"2016-10-11T20:09:50.226Z", + "new_balance":"8625.65", + "value":"-16.01" + } + }, + { + "id":"9a4e9d94-38c5-49ab-9907-e0cf3c467390", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-10-14T08:31:56.260Z", + "completed":"2016-10-14T08:31:56.260Z", + "new_balance":"8520.93", + "value":"-104.72" + } + }, + { + "id":"4de40aab-16ba-4512-8bb0-e2f6001d3f43", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-10-14T16:26:16.283Z", + "completed":"2016-10-14T16:26:16.283Z", + "new_balance":"8475.87", + "value":"-45.06" + } + }, + { + "id":"65301e33-e826-4369-82a9-2c5e235f5ee6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-17T22:48:22.486Z", + "completed":"2016-10-17T22:48:22.486Z", + "new_balance":"8431.39", + "value":"-44.48" + } + }, + { + "id":"e93ee3d6-6524-4b10-adc9-a54620271650", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-18T03:14:11.755Z", + "completed":"2016-10-18T03:14:11.755Z", + "new_balance":"8421.32", + "value":"-10.07" + } + }, + { + "id":"42366bd6-bccf-4d25-8e34-d6cd58f1f600", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-18T07:17:32.374Z", + "completed":"2016-10-18T07:17:32.374Z", + "new_balance":"8415.55", + "value":"-5.77" + } + }, + { + "id":"76edf03e-cc8c-461c-ad35-58dd8b7e28bb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-10-18T09:13:16.219Z", + "completed":"2016-10-18T09:13:16.219Z", + "new_balance":"8336.47", + "value":"-79.08" + } + }, + { + "id":"af8a4796-b5ea-4c58-a7fd-e9e4a987c217", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-10-23T01:48:54.684Z", + "completed":"2016-10-23T01:48:54.684Z", + "new_balance":"8311.07", + "value":"-25.40" + } + }, + { + "id":"90100b2a-dd72-4599-b1fc-46b357624545", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T05:08:39.778Z", + "completed":"2016-10-24T05:08:39.778Z", + "new_balance":"8280.26", + "value":"-30.81" + } + }, + { + "id":"129e5ff4-db54-40f0-9fce-4e20970007d1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-24T18:04:30.476Z", + "completed":"2016-10-24T18:04:30.476Z", + "new_balance":"8265.43", + "value":"-14.83" + } + }, + { + "id":"463fe44c-be47-4edb-be07-2856558b0cdd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-10-26T13:25:09.029Z", + "completed":"2016-10-26T13:25:09.029Z", + "new_balance":"8258.44", + "value":"-6.99" + } + }, + { + "id":"76774029-6382-4f06-ab27-dd7adad25bec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-10-30T17:59:00.914Z", + "completed":"2016-10-30T17:59:00.914Z", + "new_balance":"8060.53", + "value":"-197.91" + } + }, + { + "id":"bf417cb0-342d-4159-bd42-940db7ae16af", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-10-30T22:18:09.274Z", + "completed":"2016-10-30T22:18:09.274Z", + "new_balance":"8011.75", + "value":"-48.78" + } + }, + { + "id":"c44149e3-d485-44da-b489-5d11765a81e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-02T04:38:01.937Z", + "completed":"2016-11-02T04:38:01.937Z", + "new_balance":"7848.27", + "value":"-163.48" + } + }, + { + "id":"c19fcf6d-998d-481c-ae2e-e5231ae37651", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-02T08:22:22.040Z", + "completed":"2016-11-02T08:22:22.040Z", + "new_balance":"7833.76", + "value":"-14.51" + } + }, + { + "id":"b0da3ae3-478b-40dc-b988-a1ab37340bac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-11-02T10:59:01.270Z", + "completed":"2016-11-02T10:59:01.270Z", + "new_balance":"7827.27", + "value":"-6.49" + } + }, + { + "id":"c6248666-dea9-4438-95e8-c34a71e9ab69", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-11-02T20:19:58.083Z", + "completed":"2016-11-02T20:19:58.083Z", + "new_balance":"7419.70", + "value":"-407.57" + } + }, + { + "id":"b1b32d89-e778-423e-bd2b-71dad1bf1c9c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-06T04:21:09.323Z", + "completed":"2016-11-06T04:21:09.323Z", + "new_balance":"7394.90", + "value":"-24.80" + } + }, + { + "id":"8802fcfb-55c5-44d6-9a59-868b2f2f5eed", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-06T19:02:27.015Z", + "completed":"2016-11-06T19:02:27.015Z", + "new_balance":"7365.74", + "value":"-29.16" + } + }, + { + "id":"865bcdcc-2d9e-4b87-ba32-0283c31e9d9a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-11-07T10:48:15.172Z", + "completed":"2016-11-07T10:48:15.172Z", + "new_balance":"7261.02", + "value":"-104.72" + } + }, + { + "id":"9ee0bd1a-4668-4563-a8b0-c7361a22e2d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T14:33:06.733Z", + "completed":"2016-11-07T14:33:06.733Z", + "new_balance":"7219.67", + "value":"-41.35" + } + }, + { + "id":"f0728f92-7527-4051-903e-01087f7896b3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-11-09T01:31:48.718Z", + "completed":"2016-11-09T01:31:48.718Z", + "new_balance":"8242.09", + "value":"1022.42" + } + }, + { + "id":"0848b7c9-ba3e-4df6-b300-0a44ac90a23d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T16:40:00.642Z", + "completed":"2016-11-14T16:40:00.642Z", + "new_balance":"8191.53", + "value":"-50.56" + } + }, + { + "id":"8b2d6536-b9a0-4063-b39e-91fb043aad78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-14T17:55:41.267Z", + "completed":"2016-11-14T17:55:41.267Z", + "new_balance":"8165.73", + "value":"-25.80" + } + }, + { + "id":"85164928-d3b8-4c71-95d1-458ddd833da0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-16T01:03:14.067Z", + "completed":"2016-11-16T01:03:14.067Z", + "new_balance":"8158.74", + "value":"-6.99" + } + }, + { + "id":"53dc57b7-7edd-4b99-8e67-2033d68c1b92", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-11-20T13:34:19.555Z", + "completed":"2016-11-20T13:34:19.555Z", + "new_balance":"8123.55", + "value":"-35.19" + } + }, + { + "id":"066ece3a-aad1-4d02-96b1-39dcb9482ffa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-11-23T09:16:00.141Z", + "completed":"2016-11-23T09:16:00.141Z", + "new_balance":"8078.04", + "value":"-45.51" + } + }, + { + "id":"c5c92683-969c-49cb-90d2-8cb9f11a22c3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-11-23T19:49:57.070Z", + "completed":"2016-11-23T19:49:57.070Z", + "new_balance":"8072.27", + "value":"-5.77" + } + }, + { + "id":"fe402198-b51f-40d7-aeff-79c55ea8ab5c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-23T19:57:04.627Z", + "completed":"2016-11-23T19:57:04.627Z", + "new_balance":"8043.11", + "value":"-29.16" + } + }, + { + "id":"d4409134-990d-4472-8ce4-83bc7ee39a7c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-28T01:35:15.431Z", + "completed":"2016-11-28T01:35:15.431Z", + "new_balance":"8034.71", + "value":"-8.40" + } + }, + { + "id":"72c699b6-8657-40ad-89a1-e5a0b26c41ac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-11-30T05:53:31.326Z", + "completed":"2016-11-30T05:53:31.326Z", + "new_balance":"7985.93", + "value":"-48.78" + } + }, + { + "id":"9d2abe9e-642a-4bac-8595-9b568feb0dba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-11-30T17:49:38.461Z", + "completed":"2016-11-30T17:49:38.461Z", + "new_balance":"7788.02", + "value":"-197.91" + } + }, + { + "id":"68908c56-bea7-4919-9e37-4998e7b9c49a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-01T13:52:42.951Z", + "completed":"2016-12-01T13:52:42.951Z", + "new_balance":"8810.44", + "value":"1022.42" + } + }, + { + "id":"e7046046-4831-47df-b1b2-21ee94567a72", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2016-12-01T22:15:13.459Z", + "completed":"2016-12-01T22:15:13.459Z", + "new_balance":"8402.87", + "value":"-407.57" + } + }, + { + "id":"db33a9f6-e54d-4332-a881-a7e34268d7b3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-04T02:33:24.296Z", + "completed":"2016-12-04T02:33:24.296Z", + "new_balance":"8385.87", + "value":"-17.00" + } + }, + { + "id":"b89bc022-c753-4e58-8dd9-b139143da226", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T12:30:02.237Z", + "completed":"2016-12-04T12:30:02.237Z", + "new_balance":"8354.42", + "value":"-31.45" + } + }, + { + "id":"81d32f4b-24fb-4c68-9a0c-5560092106b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-11T05:22:08.122Z", + "completed":"2016-12-11T05:22:08.122Z", + "new_balance":"8308.91", + "value":"-45.51" + } + }, + { + "id":"b5c8f88a-23f0-4734-a3ab-344d86623995", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-11T07:43:38.372Z", + "completed":"2016-12-11T07:43:38.372Z", + "new_balance":"8278.10", + "value":"-30.81" + } + }, + { + "id":"a70c6f0b-0e22-4e4a-ba17-690ccce26fcc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T03:25:13.595Z", + "completed":"2016-12-14T03:25:13.595Z", + "new_balance":"8272.33", + "value":"-5.77" + } + }, + { + "id":"816ae6a4-e2b1-490f-a05b-b27c000cafe6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-14T03:50:45.496Z", + "completed":"2016-12-14T03:50:45.496Z", + "new_balance":"8226.79", + "value":"-45.54" + } + }, + { + "id":"5ba38c12-5a42-48ff-b8ee-919223ad14dc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2016-12-14T07:47:04.345Z", + "completed":"2016-12-14T07:47:04.345Z", + "new_balance":"8219.18", + "value":"-7.61" + } + }, + { + "id":"c9c338b1-2921-446d-89cf-e20ddb45e125", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2016-12-14T10:37:14.420Z", + "completed":"2016-12-14T10:37:14.420Z", + "new_balance":"8205.12", + "value":"-14.06" + } + }, + { + "id":"8908e379-0fdd-4009-98bc-1eb79cf0aed5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-14T12:20:27.365Z", + "completed":"2016-12-14T12:20:27.365Z", + "new_balance":"8123.33", + "value":"-81.79" + } + }, + { + "id":"009454ac-7117-42d4-948b-4865d4d40f06", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-14T15:55:03.851Z", + "completed":"2016-12-14T15:55:03.851Z", + "new_balance":"8117.56", + "value":"-5.77" + } + }, + { + "id":"8f3ceb5e-9beb-4f9d-9d27-ca0a599a211f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2016-12-14T15:56:59.324Z", + "completed":"2016-12-14T15:56:59.324Z", + "new_balance":"8018.44", + "value":"-99.12" + } + }, + { + "id":"df5b3a19-d58b-4589-879a-9fdaf72bec0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2016-12-14T17:04:30.648Z", + "completed":"2016-12-14T17:04:30.648Z", + "new_balance":"7913.72", + "value":"-104.72" + } + }, + { + "id":"fa4a7ac1-c998-453f-a266-54dde826f58d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-14T20:08:51.090Z", + "completed":"2016-12-14T20:08:51.090Z", + "new_balance":"7906.11", + "value":"-7.61" + } + }, + { + "id":"ac7716c2-14eb-4392-9287-1c1f80bd0e1f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T01:58:58.317Z", + "completed":"2016-12-15T01:58:58.317Z", + "new_balance":"7873.77", + "value":"-32.34" + } + }, + { + "id":"faa42341-7168-4bcd-98d4-7374c6cb6166", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-15T12:28:47.788Z", + "completed":"2016-12-15T12:28:47.788Z", + "new_balance":"7865.25", + "value":"-8.52" + } + }, + { + "id":"fc82bf2b-5743-492c-8c50-8144984fcbe0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-15T13:45:19.491Z", + "completed":"2016-12-15T13:45:19.491Z", + "new_balance":"7859.48", + "value":"-5.77" + } + }, + { + "id":"6e15f8c5-2f20-43cb-96f4-df58b965d677", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T00:39:55.701Z", + "completed":"2016-12-18T00:39:55.701Z", + "new_balance":"7758.22", + "value":"-101.26" + } + }, + { + "id":"963a142e-3710-4bb0-bbb4-fa6ca1abf474", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T02:18:31.149Z", + "completed":"2016-12-18T02:18:31.149Z", + "new_balance":"7752.45", + "value":"-5.77" + } + }, + { + "id":"afb5314d-591a-4373-bcce-a36885db766a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T03:04:04.877Z", + "completed":"2016-12-18T03:04:04.877Z", + "new_balance":"7740.08", + "value":"-12.37" + } + }, + { + "id":"4b533cad-d60d-453f-a39f-58b727da1aa0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-18T06:11:48.817Z", + "completed":"2016-12-18T06:11:48.817Z", + "new_balance":"7720.92", + "value":"-19.16" + } + }, + { + "id":"383820e2-8395-4bb1-be54-0154d80e9f07", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-18T07:30:34.038Z", + "completed":"2016-12-18T07:30:34.038Z", + "new_balance":"7696.62", + "value":"-24.30" + } + }, + { + "id":"16aee6e1-d7d8-47ff-a39d-c0661a4a5e90", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-18T08:24:07.772Z", + "completed":"2016-12-18T08:24:07.772Z", + "new_balance":"7690.85", + "value":"-5.77" + } + }, + { + "id":"38187429-ac97-4eb4-9195-1d996b2a74a1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-18T16:12:24.488Z", + "completed":"2016-12-18T16:12:24.488Z", + "new_balance":"7648.36", + "value":"-42.49" + } + }, + { + "id":"90782f67-123c-489b-b08c-e9e3d6c71ad4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-18T17:09:21.814Z", + "completed":"2016-12-18T17:09:21.814Z", + "new_balance":"7582.18", + "value":"-66.18" + } + }, + { + "id":"2a2d32c5-743f-4b20-9fc8-10886ecdc3ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T08:56:11.489Z", + "completed":"2016-12-19T08:56:11.489Z", + "new_balance":"7538.21", + "value":"-43.97" + } + }, + { + "id":"6296c092-539c-4e9f-9a19-662bc775ce64", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-19T23:03:06.903Z", + "completed":"2016-12-19T23:03:06.903Z", + "new_balance":"7495.98", + "value":"-42.23" + } + }, + { + "id":"c514ba83-8a58-4c8c-9b09-43389e528a4a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2016-12-19T23:16:13.085Z", + "completed":"2016-12-19T23:16:13.085Z", + "new_balance":"7447.09", + "value":"-48.89" + } + }, + { + "id":"185ba92d-50e7-4474-9b67-5f45b6bc4ed1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2016-12-21T00:53:55.689Z", + "completed":"2016-12-21T00:53:55.689Z", + "new_balance":"7342.77", + "value":"-104.32" + } + }, + { + "id":"1497ed2b-e5f1-4553-9140-a85caaf0b987", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-21T07:05:21.729Z", + "completed":"2016-12-21T07:05:21.729Z", + "new_balance":"7302.45", + "value":"-40.32" + } + }, + { + "id":"517f7147-bf25-4e16-93df-8a30056fcfc0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2016-12-21T12:14:32.068Z", + "completed":"2016-12-21T12:14:32.068Z", + "new_balance":"7204.95", + "value":"-97.50" + } + }, + { + "id":"7d17ba20-117c-4ce4-b9b7-94755eb6883d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-21T23:33:05.090Z", + "completed":"2016-12-21T23:33:05.090Z", + "new_balance":"7199.18", + "value":"-5.77" + } + }, + { + "id":"a66400cb-6bd1-4459-8fc4-673211e3ce80", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-21T23:40:47.096Z", + "completed":"2016-12-21T23:40:47.096Z", + "new_balance":"7186.17", + "value":"-13.01" + } + }, + { + "id":"dc0013a0-b7b6-44d1-95e0-95a36b6123bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T03:49:34.953Z", + "completed":"2016-12-24T03:49:34.953Z", + "new_balance":"7173.38", + "value":"-12.79" + } + }, + { + "id":"3a2de031-ba4e-4d93-81ac-d0cc053c7359", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2016-12-24T07:27:13.585Z", + "completed":"2016-12-24T07:27:13.585Z", + "new_balance":"7147.76", + "value":"-25.62" + } + }, + { + "id":"172b459f-c834-4a5b-9f21-58e08ed409a4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2016-12-24T07:30:56.437Z", + "completed":"2016-12-24T07:30:56.437Z", + "new_balance":"7133.57", + "value":"-14.19" + } + }, + { + "id":"e233779d-79bb-4a38-b456-b8dc0edb2741", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-30T12:50:49.743Z", + "completed":"2016-12-30T12:50:49.743Z", + "new_balance":"7084.79", + "value":"-48.78" + } + }, + { + "id":"afd61eef-4d59-432c-910c-26501b15d1ae", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2016-12-30T22:58:51.604Z", + "completed":"2016-12-30T22:58:51.604Z", + "new_balance":"6886.88", + "value":"-197.91" + } + }, + { + "id":"387b8933-c366-4109-8435-a07bd82d6d77", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T07:16:03.586Z", + "completed":"2017-01-01T07:16:03.586Z", + "new_balance":"7909.30", + "value":"1022.42" + } + }, + { + "id":"2d2b6b8b-4c6b-454e-8e37-7dfdd00fe660", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-01-01T08:55:53.544Z", + "completed":"2017-01-01T08:55:53.544Z", + "new_balance":"9589.71", + "value":"1680.41" + } + }, + { + "id":"4138a1fc-70e3-448e-a277-18a871c4254f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-01-02T10:35:53.181Z", + "completed":"2017-01-02T10:35:53.181Z", + "new_balance":"9182.14", + "value":"-407.57" + } + }, + { + "id":"2a3e30c7-45d7-4898-b8c7-495837196103", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-03T05:07:35.852Z", + "completed":"2017-01-03T05:07:35.852Z", + "new_balance":"9135.34", + "value":"-46.80" + } + }, + { + "id":"7c2246d4-b2f1-4b26-a6fa-d771ac532c39", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-03T11:23:06.648Z", + "completed":"2017-01-03T11:23:06.648Z", + "new_balance":"9128.96", + "value":"-6.38" + } + }, + { + "id":"f0fc6eb2-388f-4a70-8d63-65158dbf088c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-03T22:11:11.848Z", + "completed":"2017-01-03T22:11:11.848Z", + "new_balance":"9111.34", + "value":"-17.62" + } + }, + { + "id":"46f5a0e4-4738-454f-8036-39d679f9a1cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-04T04:09:42.702Z", + "completed":"2017-01-04T04:09:42.702Z", + "new_balance":"9100.43", + "value":"-10.91" + } + }, + { + "id":"5a0dabe0-02b1-419a-a6fa-2aab54af107d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-05T16:13:24.468Z", + "completed":"2017-01-05T16:13:24.468Z", + "new_balance":"9093.44", + "value":"-6.99" + } + }, + { + "id":"9ea3b35b-3b2c-4156-aa25-a0454a50b4d0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-07T16:03:30.660Z", + "completed":"2017-01-07T16:03:30.660Z", + "new_balance":"9074.28", + "value":"-19.16" + } + }, + { + "id":"f580340a-18ad-47e9-a626-324bd7734517", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T16:05:07.723Z", + "completed":"2017-01-07T16:05:07.723Z", + "new_balance":"9049.35", + "value":"-24.93" + } + }, + { + "id":"f336641c-5ff6-4c52-a03a-299afc99ee8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-08T00:45:40.393Z", + "completed":"2017-01-08T00:45:40.393Z", + "new_balance":"9034.36", + "value":"-14.99" + } + }, + { + "id":"686126fd-6c11-4775-8e8a-6f1eba481f80", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-08T10:25:29.546Z", + "completed":"2017-01-08T10:25:29.546Z", + "new_balance":"9018.35", + "value":"-16.01" + } + }, + { + "id":"6fe70870-2b4b-43f2-85a9-a90842715e01", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-01-09T01:31:53.500Z", + "completed":"2017-01-09T01:31:53.500Z", + "new_balance":"8973.29", + "value":"-45.06" + } + }, + { + "id":"0444ae47-b284-4476-b249-e77a6c083e12", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-09T13:02:02.259Z", + "completed":"2017-01-09T13:02:02.259Z", + "new_balance":"8944.13", + "value":"-29.16" + } + }, + { + "id":"05da05f9-394f-4456-8903-8dd8fdd48f93", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-01-10T00:42:26.410Z", + "completed":"2017-01-10T00:42:26.410Z", + "new_balance":"8839.41", + "value":"-104.72" + } + }, + { + "id":"ba0642f6-e70d-4190-8bea-b8cdcc17d9c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-10T08:58:11.660Z", + "completed":"2017-01-10T08:58:11.660Z", + "new_balance":"8794.93", + "value":"-44.48" + } + }, + { + "id":"a59e88f0-8470-4e93-8759-966544cb6dde", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-01-11T00:18:48.049Z", + "completed":"2017-01-11T00:18:48.049Z", + "new_balance":"8715.85", + "value":"-79.08" + } + }, + { + "id":"5874802c-9292-4a79-9d0b-743fa5e384a1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-11T00:21:42.870Z", + "completed":"2017-01-11T00:21:42.870Z", + "new_balance":"8806.73", + "value":"90.88" + } + }, + { + "id":"776efd41-b1ed-409f-aed9-fbcd0057a0ff", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-11T16:41:17.623Z", + "completed":"2017-01-11T16:41:17.623Z", + "new_balance":"8800.96", + "value":"-5.77" + } + }, + { + "id":"bcab8eef-d814-4754-a53a-d71d80eacca4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T08:02:58.725Z", + "completed":"2017-01-12T08:02:58.725Z", + "new_balance":"8790.89", + "value":"-10.07" + } + }, + { + "id":"d34b822c-4bfb-4f26-bf36-6c6beb1a3a21", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-01-15T23:56:12.571Z", + "completed":"2017-01-15T23:56:12.571Z", + "new_balance":"8765.49", + "value":"-25.40" + } + }, + { + "id":"8872a404-af58-4f8c-86bb-729707211ee4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-16T22:21:37.007Z", + "completed":"2017-01-16T22:21:37.007Z", + "new_balance":"8734.68", + "value":"-30.81" + } + }, + { + "id":"4131a83a-e1f9-4f98-aaba-6930325bffb5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T22:50:08.370Z", + "completed":"2017-01-17T22:50:08.370Z", + "new_balance":"8719.85", + "value":"-14.83" + } + }, + { + "id":"1dc519b3-1676-4d69-a76b-abe5bb6dcc17", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-01-20T18:42:48.472Z", + "completed":"2017-01-20T18:42:48.472Z", + "new_balance":"8712.86", + "value":"-6.99" + } + }, + { + "id":"f38be545-4785-49d1-a5d3-18587bacfc38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-01-21T02:43:11.788Z", + "completed":"2017-01-21T02:43:11.788Z", + "new_balance":"8664.08", + "value":"-48.78" + } + }, + { + "id":"c3a8a3df-7cbf-48f2-805c-1ccbe3c8996d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-01-23T15:38:21.515Z", + "completed":"2017-01-23T15:38:21.515Z", + "new_balance":"8466.17", + "value":"-197.91" + } + }, + { + "id":"d36da3b1-321e-4c34-bf2f-e5eec7f007b8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-02-01T11:48:34.210Z", + "completed":"2017-02-01T11:48:34.210Z", + "new_balance":"9488.59", + "value":"1022.42" + } + }, + { + "id":"f0edbeb9-0531-4859-8faf-9f738efa8e2b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-03T01:44:38.355Z", + "completed":"2017-02-03T01:44:38.355Z", + "new_balance":"9325.11", + "value":"-163.48" + } + }, + { + "id":"7ec86626-07f4-49cc-8886-8c1b0bb3b79b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-02-03T11:11:45.820Z", + "completed":"2017-02-03T11:11:45.820Z", + "new_balance":"8917.54", + "value":"-407.57" + } + }, + { + "id":"cd2e2981-882c-4bfb-8c6f-fd3b1f080c0c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-04T15:59:21.711Z", + "completed":"2017-02-04T15:59:21.711Z", + "new_balance":"8903.03", + "value":"-14.51" + } + }, + { + "id":"c166c023-5b79-4e13-a827-ee7afcf26cc0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-02-05T19:12:48.258Z", + "completed":"2017-02-05T19:12:48.258Z", + "new_balance":"8896.54", + "value":"-6.49" + } + }, + { + "id":"9139a3a8-288d-4b93-abb2-e7edbc05e557", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-06T16:56:21.008Z", + "completed":"2017-02-06T16:56:21.008Z", + "new_balance":"8871.74", + "value":"-24.80" + } + }, + { + "id":"b3825d9d-02de-4993-8275-0e1e8865f1a7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-02-07T06:42:16.489Z", + "completed":"2017-02-07T06:42:16.489Z", + "new_balance":"8767.02", + "value":"-104.72" + } + }, + { + "id":"1e5bc511-3db0-4fa1-8c51-9f985c73fe38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T09:48:18.323Z", + "completed":"2017-02-07T09:48:18.323Z", + "new_balance":"8725.67", + "value":"-41.35" + } + }, + { + "id":"6da7d7e6-3631-4439-a738-8fb272b2e0a3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-07T17:57:41.991Z", + "completed":"2017-02-07T17:57:41.991Z", + "new_balance":"8696.51", + "value":"-29.16" + } + }, + { + "id":"017d597e-6b87-4a21-87d7-654ecd73130d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T21:09:51.522Z", + "completed":"2017-02-08T21:09:51.522Z", + "new_balance":"8645.95", + "value":"-50.56" + } + }, + { + "id":"e4ef2e31-0b69-4fd5-873e-849658fc6c8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-09T13:00:21.515Z", + "completed":"2017-02-09T13:00:21.515Z", + "new_balance":"8620.15", + "value":"-25.80" + } + }, + { + "id":"34ee8887-99f9-48bd-8070-5b65ec031a5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-10T00:35:32.508Z", + "completed":"2017-02-10T00:35:32.508Z", + "new_balance":"8613.16", + "value":"-6.99" + } + }, + { + "id":"2fc8d6fe-00b6-4958-997a-88ea5977d0ca", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-02-12T12:16:29.800Z", + "completed":"2017-02-12T12:16:29.800Z", + "new_balance":"8577.97", + "value":"-35.19" + } + }, + { + "id":"4b137a93-933b-4f65-81b9-9763b9274b78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-14T23:54:02.773Z", + "completed":"2017-02-14T23:54:02.773Z", + "new_balance":"8548.81", + "value":"-29.16" + } + }, + { + "id":"ce4b3c40-727d-443c-bba7-9ec20ae170bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-02-16T09:01:09.254Z", + "completed":"2017-02-16T09:01:09.254Z", + "new_balance":"8503.30", + "value":"-45.51" + } + }, + { + "id":"875aad0d-a41d-4882-b0ec-09f9dde9d3a6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-02-16T23:22:00.644Z", + "completed":"2017-02-16T23:22:00.644Z", + "new_balance":"8497.53", + "value":"-5.77" + } + }, + { + "id":"510b4c74-94e4-4671-b7cd-4a2a4155baca", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-18T20:57:56.333Z", + "completed":"2017-02-18T20:57:56.333Z", + "new_balance":"8489.13", + "value":"-8.40" + } + }, + { + "id":"e276fb3b-5f4e-4271-ad02-9db937c48101", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-21T01:36:48.022Z", + "completed":"2017-02-21T01:36:48.022Z", + "new_balance":"8603.27", + "value":"114.14" + } + }, + { + "id":"537604a0-b459-4e4a-afe4-61ff3b1b0049", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-02-21T20:15:54.648Z", + "completed":"2017-02-21T20:15:54.648Z", + "new_balance":"8554.49", + "value":"-48.78" + } + }, + { + "id":"e714d45c-42a9-460c-93c9-ad087ca843a0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-02-27T07:56:08.242Z", + "completed":"2017-02-27T07:56:08.242Z", + "new_balance":"8356.58", + "value":"-197.91" + } + }, + { + "id":"aba4d6d1-7839-40b1-a6b1-776a5347bee3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-01T19:20:17.522Z", + "completed":"2017-03-01T19:20:17.522Z", + "new_balance":"9379.00", + "value":"1022.42" + } + }, + { + "id":"1b03331a-cad9-4de7-9005-310355d8d106", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-03-03T23:14:59.803Z", + "completed":"2017-03-03T23:14:59.803Z", + "new_balance":"8971.43", + "value":"-407.57" + } + }, + { + "id":"554b12fd-75d6-4c50-9b09-127ceb7892ec", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T07:51:58.849Z", + "completed":"2017-03-04T07:51:58.849Z", + "new_balance":"8939.98", + "value":"-31.45" + } + }, + { + "id":"bc30cf06-578a-4032-996e-b1dce945b75c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-04T09:46:19.795Z", + "completed":"2017-03-04T09:46:19.795Z", + "new_balance":"8909.17", + "value":"-30.81" + } + }, + { + "id":"d63fc7cd-a922-426f-9fde-9b7c3d40e1ad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-04T09:51:31.041Z", + "completed":"2017-03-04T09:51:31.041Z", + "new_balance":"8863.66", + "value":"-45.51" + } + }, + { + "id":"04689cd4-1d18-4929-ac46-f8cac0316861", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-04T13:02:09.696Z", + "completed":"2017-03-04T13:02:09.696Z", + "new_balance":"8846.66", + "value":"-17.00" + } + }, + { + "id":"ec438718-a9a0-41f2-a73b-0e3d30811675", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-05T04:34:21.829Z", + "completed":"2017-03-05T04:34:21.829Z", + "new_balance":"8840.89", + "value":"-5.77" + } + }, + { + "id":"5ce3b4f5-3c85-4f88-a8e4-1a46f35cb883", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-05T09:32:20.363Z", + "completed":"2017-03-05T09:32:20.363Z", + "new_balance":"8795.35", + "value":"-45.54" + } + }, + { + "id":"81e35b21-e9a5-42c0-a362-b20b096c7e13", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-03-05T11:21:04.329Z", + "completed":"2017-03-05T11:21:04.329Z", + "new_balance":"8781.29", + "value":"-14.06" + } + }, + { + "id":"15c12dbe-c330-464f-9af5-eb514f2fe831", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-03-05T13:55:15.798Z", + "completed":"2017-03-05T13:55:15.798Z", + "new_balance":"8676.57", + "value":"-104.72" + } + }, + { + "id":"d73c7aa3-5645-411a-be57-a0b0adbb81a5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-03-06T10:29:15.923Z", + "completed":"2017-03-06T10:29:15.923Z", + "new_balance":"8577.45", + "value":"-99.12" + } + }, + { + "id":"5ae8099b-93e5-41ea-9f55-d9218a9d4e8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-06T14:22:56.477Z", + "completed":"2017-03-06T14:22:56.477Z", + "new_balance":"8495.66", + "value":"-81.79" + } + }, + { + "id":"65893ab5-3e3b-4687-a214-4b22a73bb718", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-07T00:10:48.292Z", + "completed":"2017-03-07T00:10:48.292Z", + "new_balance":"8488.05", + "value":"-7.61" + } + }, + { + "id":"260b9e61-d728-4305-989e-d7276b9a4b23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-07T19:05:21.363Z", + "completed":"2017-03-07T19:05:21.363Z", + "new_balance":"8482.28", + "value":"-5.77" + } + }, + { + "id":"9ac97644-d764-450c-aed9-410d2fe1e43d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-08T03:47:18.187Z", + "completed":"2017-03-08T03:47:18.187Z", + "new_balance":"8473.76", + "value":"-8.52" + } + }, + { + "id":"7358601c-fe1f-439f-9dfb-beab61dcea18", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-03-08T15:06:01.776Z", + "completed":"2017-03-08T15:06:01.776Z", + "new_balance":"8466.15", + "value":"-7.61" + } + }, + { + "id":"47ee1f0f-9336-4ff8-b3b8-c9af1c7f0eef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-10T05:32:30.071Z", + "completed":"2017-03-10T05:32:30.071Z", + "new_balance":"8433.81", + "value":"-32.34" + } + }, + { + "id":"970e7b5d-52fb-470a-b665-303355327726", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T07:30:00.942Z", + "completed":"2017-03-11T07:30:00.942Z", + "new_balance":"8421.44", + "value":"-12.37" + } + }, + { + "id":"ecadf8d8-2573-4740-92be-495d5933a73c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-11T08:51:57.523Z", + "completed":"2017-03-11T08:51:57.523Z", + "new_balance":"8415.67", + "value":"-5.77" + } + }, + { + "id":"113ff575-7408-47ef-b0e9-25475d52ca54", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-11T10:23:23.143Z", + "completed":"2017-03-11T10:23:23.143Z", + "new_balance":"8391.37", + "value":"-24.30" + } + }, + { + "id":"6ab270dc-5d28-4333-9a73-ff7b23cf9676", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T03:04:44.295Z", + "completed":"2017-03-12T03:04:44.295Z", + "new_balance":"8372.21", + "value":"-19.16" + } + }, + { + "id":"8042e71c-8a92-4636-8573-af83e5e55517", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-12T08:50:52.533Z", + "completed":"2017-03-12T08:50:52.533Z", + "new_balance":"8366.44", + "value":"-5.77" + } + }, + { + "id":"8dd014ac-3732-4848-aaba-673ef88bf4c4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T13:52:32.887Z", + "completed":"2017-03-12T13:52:32.887Z", + "new_balance":"8300.26", + "value":"-66.18" + } + }, + { + "id":"04e3fc1f-1a80-4e13-861a-69d10f8f3b38", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T14:28:57.463Z", + "completed":"2017-03-12T14:28:57.463Z", + "new_balance":"8199.00", + "value":"-101.26" + } + }, + { + "id":"ac3ea329-75ef-4820-8091-128752b8fb51", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-13T06:21:02.975Z", + "completed":"2017-03-13T06:21:02.975Z", + "new_balance":"8193.23", + "value":"-5.77" + } + }, + { + "id":"d06cdc30-5d50-4a22-a5b5-1136de7e9df6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-13T06:49:59.517Z", + "completed":"2017-03-13T06:49:59.517Z", + "new_balance":"8150.74", + "value":"-42.49" + } + }, + { + "id":"64cdc1c1-2205-49c0-85f5-7120adef53b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-15T06:51:46.246Z", + "completed":"2017-03-15T06:51:46.246Z", + "new_balance":"8108.51", + "value":"-42.23" + } + }, + { + "id":"3b18b234-08d9-4590-b781-0d374eb22ce0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-03-15T10:32:48.908Z", + "completed":"2017-03-15T10:32:48.908Z", + "new_balance":"8059.62", + "value":"-48.89" + } + }, + { + "id":"9b27ba4d-b7f9-4ea8-91f8-316237f502ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-17T16:03:53.741Z", + "completed":"2017-03-17T16:03:53.741Z", + "new_balance":"8015.65", + "value":"-43.97" + } + }, + { + "id":"a5bcb1b7-49c5-488a-a54e-6bea8cdc3cad", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-03-18T19:19:56.024Z", + "completed":"2017-03-18T19:19:56.024Z", + "new_balance":"7918.15", + "value":"-97.50" + } + }, + { + "id":"e1e89ace-ec1d-48e2-aaea-696c8f9680fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-03-20T16:20:39.583Z", + "completed":"2017-03-20T16:20:39.583Z", + "new_balance":"7813.83", + "value":"-104.32" + } + }, + { + "id":"bacbcccc-c6ca-4b83-95b3-ffe2cec505f0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-22T19:37:15.547Z", + "completed":"2017-03-22T19:37:15.547Z", + "new_balance":"7773.51", + "value":"-40.32" + } + }, + { + "id":"f653d084-50a9-4f31-ac23-774a055a310a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-25T00:34:05.168Z", + "completed":"2017-03-25T00:34:05.168Z", + "new_balance":"7767.74", + "value":"-5.77" + } + }, + { + "id":"23d081c6-dfc3-4a28-aeaf-bdfebffa757c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-25T14:50:57.536Z", + "completed":"2017-03-25T14:50:57.536Z", + "new_balance":"7754.73", + "value":"-13.01" + } + }, + { + "id":"652581ab-6a0c-4dec-a9df-bf70b7ceb465", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T01:05:31.108Z", + "completed":"2017-03-26T01:05:31.108Z", + "new_balance":"7729.11", + "value":"-25.62" + } + }, + { + "id":"eeb3d10c-e63b-4d73-a307-a285d587135f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-03-26T22:57:21.997Z", + "completed":"2017-03-26T22:57:21.997Z", + "new_balance":"7716.32", + "value":"-12.79" + } + }, + { + "id":"93c3caa6-8c9b-434e-aedf-4c8be76c95d9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-03-27T21:30:38.419Z", + "completed":"2017-03-27T21:30:38.419Z", + "new_balance":"7702.13", + "value":"-14.19" + } + }, + { + "id":"936edf5e-7d26-48ff-84ad-9063266885cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-28T17:55:40.872Z", + "completed":"2017-03-28T17:55:40.872Z", + "new_balance":"7653.35", + "value":"-48.78" + } + }, + { + "id":"b490c73d-4246-4635-8200-aba7a6878a5f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-03-31T11:47:35.706Z", + "completed":"2017-03-31T11:47:35.706Z", + "new_balance":"7455.44", + "value":"-197.91" + } + }, + { + "id":"07e87f25-484e-4a2f-91aa-3c34b4770e3b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-04-01T11:47:57.270Z", + "completed":"2017-04-01T11:47:57.270Z", + "new_balance":"7047.87", + "value":"-407.57" + } + }, + { + "id":"d5a722e6-72bb-42f8-9395-9043812e59ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T21:35:17.748Z", + "completed":"2017-04-01T21:35:17.748Z", + "new_balance":"8070.29", + "value":"1022.42" + } + }, + { + "id":"adf3a9da-6d88-4a5a-a41c-d8231fb80614", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-04-01T22:14:53.421Z", + "completed":"2017-04-01T22:14:53.421Z", + "new_balance":"9750.70", + "value":"1680.41" + } + }, + { + "id":"bdaf2139-4bd8-45d5-b3a8-d6286c39cf02", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-03T17:02:34.775Z", + "completed":"2017-04-03T17:02:34.775Z", + "new_balance":"9744.32", + "value":"-6.38" + } + }, + { + "id":"7de56883-2f2e-4865-84e9-9e14526b5ebd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-03T21:17:12.457Z", + "completed":"2017-04-03T21:17:12.457Z", + "new_balance":"9697.52", + "value":"-46.80" + } + }, + { + "id":"0a0d78ce-f6f9-4386-9591-b5553cc7ee8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-03T22:06:36.196Z", + "completed":"2017-04-03T22:06:36.196Z", + "new_balance":"9679.90", + "value":"-17.62" + } + }, + { + "id":"2ba32320-b733-4388-b5df-7399dc7b436d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-05T15:41:54.481Z", + "completed":"2017-04-05T15:41:54.481Z", + "new_balance":"9668.99", + "value":"-10.91" + } + }, + { + "id":"78c7f525-0a89-41d9-b596-f4564da5e7bf", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T19:50:04.758Z", + "completed":"2017-04-05T19:50:04.758Z", + "new_balance":"9662.00", + "value":"-6.99" + } + }, + { + "id":"d6ff3d2e-de90-4bf5-8450-b9425c7f00f9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-06T08:49:31.192Z", + "completed":"2017-04-06T08:49:31.192Z", + "new_balance":"9637.07", + "value":"-24.93" + } + }, + { + "id":"305b99c2-bde5-4c3a-87ee-c16c14373fe4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-09T05:35:32.623Z", + "completed":"2017-04-09T05:35:32.623Z", + "new_balance":"9617.91", + "value":"-19.16" + } + }, + { + "id":"c6dff8a8-2530-44d8-b73a-702e50d57f09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-10T14:15:07.265Z", + "completed":"2017-04-10T14:15:07.265Z", + "new_balance":"9602.92", + "value":"-14.99" + } + }, + { + "id":"34226da5-c4e4-48f9-ab88-55b0f8a3e0f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T04:48:40.627Z", + "completed":"2017-04-11T04:48:40.627Z", + "new_balance":"9573.76", + "value":"-29.16" + } + }, + { + "id":"c3fbdfae-88b0-4e9c-963d-4a1e57f66007", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T14:00:33.652Z", + "completed":"2017-04-11T14:00:33.652Z", + "new_balance":"9557.75", + "value":"-16.01" + } + }, + { + "id":"92c969a6-7184-48ae-a5ea-6f42eadb5c01", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-04-13T05:05:21.847Z", + "completed":"2017-04-13T05:05:21.847Z", + "new_balance":"9453.03", + "value":"-104.72" + } + }, + { + "id":"29d089e2-a091-4b0a-952c-89455d5aea32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-04-13T19:11:42.347Z", + "completed":"2017-04-13T19:11:42.347Z", + "new_balance":"9407.97", + "value":"-45.06" + } + }, + { + "id":"d457f9e1-5705-4818-9414-8963ec088840", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-15T13:33:09.849Z", + "completed":"2017-04-15T13:33:09.849Z", + "new_balance":"9363.49", + "value":"-44.48" + } + }, + { + "id":"00337b85-5025-426d-bbcb-6faab78c52bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-16T21:27:10.217Z", + "completed":"2017-04-16T21:27:10.217Z", + "new_balance":"9353.42", + "value":"-10.07" + } + }, + { + "id":"8e6afa6d-d2d6-4db2-9463-1ad3beceef13", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-16T23:29:38.684Z", + "completed":"2017-04-16T23:29:38.684Z", + "new_balance":"9347.65", + "value":"-5.77" + } + }, + { + "id":"19d08d1e-6081-4fa2-8ea3-ae28221a8d8f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-04-18T11:35:58.344Z", + "completed":"2017-04-18T11:35:58.344Z", + "new_balance":"9268.57", + "value":"-79.08" + } + }, + { + "id":"06f4bc51-ef42-488a-b3c5-8b3c3320fb4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-04-23T20:44:20.381Z", + "completed":"2017-04-23T20:44:20.381Z", + "new_balance":"9243.17", + "value":"-25.40" + } + }, + { + "id":"df0b15f9-c861-4982-87c0-48a896234825", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T00:19:49.074Z", + "completed":"2017-04-24T00:19:49.074Z", + "new_balance":"9212.36", + "value":"-30.81" + } + }, + { + "id":"6bcdb459-584f-426b-9fd5-0865a3d51984", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-24T11:07:20.588Z", + "completed":"2017-04-24T11:07:20.588Z", + "new_balance":"9197.53", + "value":"-14.83" + } + }, + { + "id":"292fee6c-3a9c-44bf-8a05-9fdb86d30bf9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-04-26T00:05:50.494Z", + "completed":"2017-04-26T00:05:50.494Z", + "new_balance":"9190.54", + "value":"-6.99" + } + }, + { + "id":"df06746a-01e8-4952-80f9-e36970e1f1a3", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-04-28T11:56:26.912Z", + "completed":"2017-04-28T11:56:26.912Z", + "new_balance":"9141.76", + "value":"-48.78" + } + }, + { + "id":"c621e969-dd29-4ff7-8956-c22532e5b781", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-04-28T20:52:19.847Z", + "completed":"2017-04-28T20:52:19.847Z", + "new_balance":"8943.85", + "value":"-197.91" + } + }, + { + "id":"012ef02d-4ee3-42cb-bf1f-5684126cbb86", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-05-02T03:49:00.091Z", + "completed":"2017-05-02T03:49:00.091Z", + "new_balance":"8937.36", + "value":"-6.49" + } + }, + { + "id":"83e460da-ee07-4218-87d1-9c64de824894", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-02T06:52:56.368Z", + "completed":"2017-05-02T06:52:56.368Z", + "new_balance":"8922.85", + "value":"-14.51" + } + }, + { + "id":"beb14377-dc7e-43cf-975f-e57444e2b0de", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-05-02T13:05:53.932Z", + "completed":"2017-05-02T13:05:53.932Z", + "new_balance":"8515.28", + "value":"-407.57" + } + }, + { + "id":"b4ff3a54-28b3-4cc4-aafd-27ad80a4590b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-02T23:19:31.136Z", + "completed":"2017-05-02T23:19:31.136Z", + "new_balance":"8351.80", + "value":"-163.48" + } + }, + { + "id":"2ba79942-e255-4bb0-95f9-a29d817d5298", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-06T09:55:55.628Z", + "completed":"2017-05-06T09:55:55.628Z", + "new_balance":"8327.00", + "value":"-24.80" + } + }, + { + "id":"8ea6d403-38a1-4865-8a5c-de36b1633036", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-06T18:43:07.707Z", + "completed":"2017-05-06T18:43:07.707Z", + "new_balance":"8297.84", + "value":"-29.16" + } + }, + { + "id":"c71b3079-ec0b-44d8-907e-0061489c5f5b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T02:05:13.570Z", + "completed":"2017-05-07T02:05:13.570Z", + "new_balance":"8256.49", + "value":"-41.35" + } + }, + { + "id":"1cb939ad-34be-4c87-9f9d-b962b7fd2903", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-05-07T22:19:47.081Z", + "completed":"2017-05-07T22:19:47.081Z", + "new_balance":"8151.77", + "value":"-104.72" + } + }, + { + "id":"9af889b2-c193-42be-bee7-af84f3e3d606", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-05-09T07:41:01.692Z", + "completed":"2017-05-09T07:41:01.692Z", + "new_balance":"9174.19", + "value":"1022.42" + } + }, + { + "id":"2e2fd184-a1a3-4018-8916-0ff38cd8cc2a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T05:33:27.660Z", + "completed":"2017-05-14T05:33:27.660Z", + "new_balance":"9148.39", + "value":"-25.80" + } + }, + { + "id":"aaeef9c3-b71d-4bea-9f3a-f3c1d54b1ff7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-14T05:39:01.146Z", + "completed":"2017-05-14T05:39:01.146Z", + "new_balance":"9097.83", + "value":"-50.56" + } + }, + { + "id":"073ca560-e259-43a2-9bb4-fa6bafbac8b5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-16T23:13:01.515Z", + "completed":"2017-05-16T23:13:01.515Z", + "new_balance":"9090.84", + "value":"-6.99" + } + }, + { + "id":"daf3cd2d-dccc-414b-ae64-4cb78c109af8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-05-21T23:12:13.214Z", + "completed":"2017-05-21T23:12:13.214Z", + "new_balance":"9055.65", + "value":"-35.19" + } + }, + { + "id":"b0a6924d-71f6-4c3a-bf85-9d32c99e9db2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-05-23T10:43:55.920Z", + "completed":"2017-05-23T10:43:55.920Z", + "new_balance":"9049.88", + "value":"-5.77" + } + }, + { + "id":"f4edf51d-f084-433c-9b5c-108100a28c0f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-23T13:10:01.460Z", + "completed":"2017-05-23T13:10:01.460Z", + "new_balance":"9020.72", + "value":"-29.16" + } + }, + { + "id":"8f58d756-d471-499c-805d-6b316d18c889", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-05-24T21:50:34.503Z", + "completed":"2017-05-24T21:50:34.503Z", + "new_balance":"8975.21", + "value":"-45.51" + } + }, + { + "id":"0670bf22-95b3-4466-b20f-64109fb62c84", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T07:45:57.470Z", + "completed":"2017-05-27T07:45:57.470Z", + "new_balance":"8966.81", + "value":"-8.40" + } + }, + { + "id":"e9bda619-f273-4d4d-8609-f3d035c84130", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-05-30T01:08:17.382Z", + "completed":"2017-05-30T01:08:17.382Z", + "new_balance":"8918.03", + "value":"-48.78" + } + }, + { + "id":"e6bf8bd2-4d22-47cb-8de7-1ed2f5dc2043", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-05-30T05:17:22.132Z", + "completed":"2017-05-30T05:17:22.132Z", + "new_balance":"8720.12", + "value":"-197.91" + } + }, + { + "id":"5288346b-255d-4c66-89e1-57cffb00d648", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-06-01T02:04:06.287Z", + "completed":"2017-06-01T02:04:06.287Z", + "new_balance":"8312.55", + "value":"-407.57" + } + }, + { + "id":"3f107043-72fe-4491-8c9d-a9660bc40e34", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33215", + "posted":"2017-06-01T11:38:15.957Z", + "completed":"2017-06-01T11:38:15.957Z", + "new_balance":"9334.97", + "value":"1022.42" + } + }, + { + "id":"4e8f87a2-d43b-493a-91b6-bb68150f3840", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T05:13:51.995Z", + "completed":"2017-06-04T05:13:51.995Z", + "new_balance":"9303.52", + "value":"-31.45" + } + }, + { + "id":"5f414f98-1c6b-47f9-befd-53859b613de4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-04T10:28:01.690Z", + "completed":"2017-06-04T10:28:01.690Z", + "new_balance":"9286.52", + "value":"-17.00" + } + }, + { + "id":"1a523252-5b80-4cf3-8afb-4c3a9826c501", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-11T04:26:35.172Z", + "completed":"2017-06-11T04:26:35.172Z", + "new_balance":"9255.71", + "value":"-30.81" + } + }, + { + "id":"b4d2dd8f-6537-41f5-883a-724c3b67ff74", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-11T07:24:00.297Z", + "completed":"2017-06-11T07:24:00.297Z", + "new_balance":"9210.20", + "value":"-45.51" + } + }, + { + "id":"32e29b57-ddc4-4a81-ae89-89c783b214e0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-12T00:19:10.348Z", + "completed":"2017-06-12T00:19:10.348Z", + "new_balance":"9204.43", + "value":"-5.77" + } + }, + { + "id":"8e431c07-1f86-483b-abdc-9d2de7e247cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-06-12T02:03:06.762Z", + "completed":"2017-06-12T02:03:06.762Z", + "new_balance":"9190.37", + "value":"-14.06" + } + }, + { + "id":"076f2144-08c2-4ab7-8a0b-02183940c45a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-06-12T13:44:07.291Z", + "completed":"2017-06-12T13:44:07.291Z", + "new_balance":"9085.65", + "value":"-104.72" + } + }, + { + "id":"612f7321-2085-469a-bfe7-e732f87c7a5a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-06-13T03:42:04.855Z", + "completed":"2017-06-13T03:42:04.855Z", + "new_balance":"8986.53", + "value":"-99.12" + } + }, + { + "id":"3298d391-1b8b-4007-bb34-6481a7c4fb35", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-13T04:40:37.393Z", + "completed":"2017-06-13T04:40:37.393Z", + "new_balance":"8940.99", + "value":"-45.54" + } + }, + { + "id":"94d8bb53-aa03-4697-9534-1f4c079a9a44", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-13T11:49:25.049Z", + "completed":"2017-06-13T11:49:25.049Z", + "new_balance":"8859.20", + "value":"-81.79" + } + }, + { + "id":"4a6159f6-7150-4cd4-baa3-c2059fe5002f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-14T01:06:08.209Z", + "completed":"2017-06-14T01:06:08.209Z", + "new_balance":"8853.43", + "value":"-5.77" + } + }, + { + "id":"9fe0a0c1-2748-48c1-8330-cad5ff1cbc2d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-06-14T02:25:55.362Z", + "completed":"2017-06-14T02:25:55.362Z", + "new_balance":"8845.82", + "value":"-7.61" + } + }, + { + "id":"39cadd43-ca27-4dab-958a-0b319024a7fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-14T16:05:39.588Z", + "completed":"2017-06-14T16:05:39.588Z", + "new_balance":"8838.21", + "value":"-7.61" + } + }, + { + "id":"81783e5b-a3d2-4f91-a3ed-32431ee4cbf6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T06:53:08.345Z", + "completed":"2017-06-15T06:53:08.345Z", + "new_balance":"8829.69", + "value":"-8.52" + } + }, + { + "id":"fb751a07-7eb3-4de8-b6a1-8f801aa494b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-15T17:00:44.444Z", + "completed":"2017-06-15T17:00:44.444Z", + "new_balance":"8797.35", + "value":"-32.34" + } + }, + { + "id":"a539d527-4b0c-4d3d-b5e8-78125c7db12a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-15T17:17:52.475Z", + "completed":"2017-06-15T17:17:52.475Z", + "new_balance":"8791.58", + "value":"-5.77" + } + }, + { + "id":"45e98440-d2d4-488e-9dd3-ca1a2f1e89f1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-16T03:04:49.212Z", + "completed":"2017-06-16T03:04:49.212Z", + "new_balance":"8767.28", + "value":"-24.30" + } + }, + { + "id":"93cfd246-54a2-4080-bfff-72a8a1dac62b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-17T05:26:34.869Z", + "completed":"2017-06-17T05:26:34.869Z", + "new_balance":"8754.91", + "value":"-12.37" + } + }, + { + "id":"e734ffae-fbd5-4591-9cad-bc29f66f21fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T02:22:48.655Z", + "completed":"2017-06-18T02:22:48.655Z", + "new_balance":"8653.65", + "value":"-101.26" + } + }, + { + "id":"8b346872-0f7c-41fa-8b4c-617adc0cfc2f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T08:43:34.354Z", + "completed":"2017-06-18T08:43:34.354Z", + "new_balance":"8647.88", + "value":"-5.77" + } + }, + { + "id":"cff8ac56-1ab1-42b2-84db-e43b00f27de0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-18T12:13:09.519Z", + "completed":"2017-06-18T12:13:09.519Z", + "new_balance":"8642.11", + "value":"-5.77" + } + }, + { + "id":"4877d2df-bc1e-4904-a195-1112fc34cd0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-18T14:20:03.955Z", + "completed":"2017-06-18T14:20:03.955Z", + "new_balance":"8622.95", + "value":"-19.16" + } + }, + { + "id":"fb2c379e-f1d1-49d0-85b2-bd49e6f8b7fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-18T19:23:18.929Z", + "completed":"2017-06-18T19:23:18.929Z", + "new_balance":"8580.46", + "value":"-42.49" + } + }, + { + "id":"a168cd4c-e47f-4684-b1a4-415798ef7b96", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-18T19:54:39.584Z", + "completed":"2017-06-18T19:54:39.584Z", + "new_balance":"8514.28", + "value":"-66.18" + } + }, + { + "id":"da777f97-ec7d-4716-8ee5-3eb7d2c9b06b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T02:25:40.571Z", + "completed":"2017-06-19T02:25:40.571Z", + "new_balance":"8470.31", + "value":"-43.97" + } + }, + { + "id":"b63555e7-f93d-4a20-ab8b-3067966253ef", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-19T19:55:32.511Z", + "completed":"2017-06-19T19:55:32.511Z", + "new_balance":"8428.08", + "value":"-42.23" + } + }, + { + "id":"45baee03-ee9b-4240-b20f-cab9e82319c1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-06-19T23:02:29.948Z", + "completed":"2017-06-19T23:02:29.948Z", + "new_balance":"8379.19", + "value":"-48.89" + } + }, + { + "id":"42481918-5c8f-43fa-8613-612e48344369", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-06-21T03:32:04.831Z", + "completed":"2017-06-21T03:32:04.831Z", + "new_balance":"8274.87", + "value":"-104.32" + } + }, + { + "id":"6e33d894-b689-4397-852a-fdd761c4ed26", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-06-21T03:42:22.415Z", + "completed":"2017-06-21T03:42:22.415Z", + "new_balance":"8177.37", + "value":"-97.50" + } + }, + { + "id":"330356f3-2ce2-4aa9-aef8-26ba90a01ff8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-22T00:07:09.251Z", + "completed":"2017-06-22T00:07:09.251Z", + "new_balance":"8137.05", + "value":"-40.32" + } + }, + { + "id":"a760f417-3df2-4a69-8625-32981e8a0b8b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-22T00:16:29.963Z", + "completed":"2017-06-22T00:16:29.963Z", + "new_balance":"8131.28", + "value":"-5.77" + } + }, + { + "id":"698c8460-c583-49c5-90d4-ffa5a15d396a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-22T13:59:14.893Z", + "completed":"2017-06-22T13:59:14.893Z", + "new_balance":"8118.27", + "value":"-13.01" + } + }, + { + "id":"2842815e-5007-4005-97e4-08ad7c289caa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-23T11:36:33.156Z", + "completed":"2017-06-23T11:36:33.156Z", + "new_balance":"8105.48", + "value":"-12.79" + } + }, + { + "id":"ccc9b612-9ab6-44f6-8896-e49dcda58c31", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-06-24T04:10:55.532Z", + "completed":"2017-06-24T04:10:55.532Z", + "new_balance":"8079.86", + "value":"-25.62" + } + }, + { + "id":"35b000da-5898-4021-bba9-32ad804f6503", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-06-26T19:46:49.498Z", + "completed":"2017-06-26T19:46:49.498Z", + "new_balance":"8065.67", + "value":"-14.19" + } + }, + { + "id":"d595c4e9-4bfa-4381-986f-4ddcf33af27f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-06-30T05:31:18.347Z", + "completed":"2017-06-30T05:31:18.347Z", + "new_balance":"7867.76", + "value":"-197.91" + } + }, + { + "id":"cf0269ef-9af1-483a-9798-4e046473bea0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-30T20:46:30.801Z", + "completed":"2017-06-30T20:46:30.801Z", + "new_balance":"7818.98", + "value":"-48.78" + } + }, + { + "id":"f4aadc7e-a5e9-4c56-89e5-11a1f74c3e23", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:06:39.539Z", + "completed":"2017-07-01T09:06:39.539Z", + "new_balance":"9499.39", + "value":"1680.41" + } + }, + { + "id":"491c9c6b-2b74-497e-83a1-f69865add620", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T09:57:09.552Z", + "completed":"2017-07-01T09:57:09.552Z", + "new_balance":"10521.81", + "value":"1022.42" + } + }, + { + "id":"5d605caa-8845-4186-8ca2-036e648e3dfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-07-03T09:43:34.822Z", + "completed":"2017-07-03T09:43:34.822Z", + "new_balance":"10114.24", + "value":"-407.57" + } + }, + { + "id":"7394bc6d-d256-4634-a914-2fc0e826413e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-04T00:47:14.613Z", + "completed":"2017-07-04T00:47:14.613Z", + "new_balance":"10096.62", + "value":"-17.62" + } + }, + { + "id":"63107122-0095-49cd-bf2e-4be061cd6ee6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-04T01:29:32.671Z", + "completed":"2017-07-04T01:29:32.671Z", + "new_balance":"10090.24", + "value":"-6.38" + } + }, + { + "id":"827683d7-5409-4d72-86bf-19094efc8c87", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-04T02:48:35.780Z", + "completed":"2017-07-04T02:48:35.780Z", + "new_balance":"10043.44", + "value":"-46.80" + } + }, + { + "id":"b0dcd73b-8684-494a-9b5b-4d0e3e3f7425", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-05T07:24:25.638Z", + "completed":"2017-07-05T07:24:25.638Z", + "new_balance":"10032.53", + "value":"-10.91" + } + }, + { + "id":"2bef0eeb-9114-4f56-9ca9-abd93e5906ba", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-07T02:57:42.527Z", + "completed":"2017-07-07T02:57:42.527Z", + "new_balance":"10025.54", + "value":"-6.99" + } + }, + { + "id":"238620b6-40af-4910-95df-89c0c109853e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-11T03:19:59.722Z", + "completed":"2017-07-11T03:19:59.722Z", + "new_balance":"10010.55", + "value":"-14.99" + } + }, + { + "id":"082b17f6-04cb-40be-92f1-9bd9db6847cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-11T03:23:02.444Z", + "completed":"2017-07-11T03:23:02.444Z", + "new_balance":"9991.39", + "value":"-19.16" + } + }, + { + "id":"943e9577-fa3e-4226-af11-5c7fe75bac7b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-11T07:59:38.283Z", + "completed":"2017-07-11T07:59:38.283Z", + "new_balance":"9962.23", + "value":"-29.16" + } + }, + { + "id":"fc9fd524-ef9b-4524-a660-32efa4755bb0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T09:10:13.701Z", + "completed":"2017-07-11T09:10:13.701Z", + "new_balance":"9937.30", + "value":"-24.93" + } + }, + { + "id":"8b4fb7d6-7d4b-4c85-a785-0753f4457e20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-11T09:14:13.628Z", + "completed":"2017-07-11T09:14:13.628Z", + "new_balance":"9921.29", + "value":"-16.01" + } + }, + { + "id":"ebc3a0c4-ea97-4a4d-b673-e16cbd9511f8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-07-13T00:05:33.798Z", + "completed":"2017-07-13T00:05:33.798Z", + "new_balance":"9816.57", + "value":"-104.72" + } + }, + { + "id":"d6c01fdd-28b6-4d01-ba74-2c59e746c269", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-07-13T19:28:44.329Z", + "completed":"2017-07-13T19:28:44.329Z", + "new_balance":"9771.51", + "value":"-45.06" + } + }, + { + "id":"6f8294f7-dd36-42e7-964d-e52ec4d8d38c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-16T07:51:45.737Z", + "completed":"2017-07-16T07:51:45.737Z", + "new_balance":"9727.03", + "value":"-44.48" + } + }, + { + "id":"83f0b393-fe2e-47bf-8d5e-085b4c8f4d99", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T18:07:08.169Z", + "completed":"2017-07-16T18:07:08.169Z", + "new_balance":"9817.91", + "value":"90.88" + } + }, + { + "id":"cf5bf439-f312-4a9a-8f09-dfbcd4741ff7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-17T08:48:08.780Z", + "completed":"2017-07-17T08:48:08.780Z", + "new_balance":"9812.14", + "value":"-5.77" + } + }, + { + "id":"f1f82088-ade9-4637-aefd-ca88b3370af7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T21:41:27.709Z", + "completed":"2017-07-17T21:41:27.709Z", + "new_balance":"9802.07", + "value":"-10.07" + } + }, + { + "id":"430fb996-95ae-44f1-a0d3-b3bd73ffa6cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-07-19T14:10:12.496Z", + "completed":"2017-07-19T14:10:12.496Z", + "new_balance":"9722.99", + "value":"-79.08" + } + }, + { + "id":"65e4635a-8abf-45fb-871c-878b8d82ae5d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-07-21T13:35:04.909Z", + "completed":"2017-07-21T13:35:04.909Z", + "new_balance":"9697.59", + "value":"-25.40" + } + }, + { + "id":"f47047ee-0f3c-44dd-af15-0ccae965ab09", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-23T11:18:31.033Z", + "completed":"2017-07-23T11:18:31.033Z", + "new_balance":"9666.78", + "value":"-30.81" + } + }, + { + "id":"d243c3fe-33c9-4c18-b504-50dbb14f55fb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-25T08:44:17.843Z", + "completed":"2017-07-25T08:44:17.843Z", + "new_balance":"9651.95", + "value":"-14.83" + } + }, + { + "id":"75167802-1b69-47ef-89c1-29a0c121455a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-07-27T09:25:14.018Z", + "completed":"2017-07-27T09:25:14.018Z", + "new_balance":"9644.96", + "value":"-6.99" + } + }, + { + "id":"0b88ceac-9ee9-43a1-bcca-743016f2082d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-07-28T06:20:00.749Z", + "completed":"2017-07-28T06:20:00.749Z", + "new_balance":"9447.05", + "value":"-197.91" + } + }, + { + "id":"030dfe58-1c3e-41e1-b933-960fbbaa9968", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-07-28T14:48:39.492Z", + "completed":"2017-07-28T14:48:39.492Z", + "new_balance":"9398.27", + "value":"-48.78" + } + }, + { + "id":"90f075f5-d624-4a7f-a88f-4b2c7da17b91", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-08-01T12:08:07.118Z", + "completed":"2017-08-01T12:08:07.118Z", + "new_balance":"10420.69", + "value":"1022.42" + } + }, + { + "id":"0e5d96f2-98fe-42fc-a1e5-fbeae25ad4aa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-03T05:09:30.897Z", + "completed":"2017-08-03T05:09:30.897Z", + "new_balance":"10257.21", + "value":"-163.48" + } + }, + { + "id":"602a676e-e77c-4f78-bbfb-ea1076c1c30d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-08-03T07:58:57.411Z", + "completed":"2017-08-03T07:58:57.411Z", + "new_balance":"9849.64", + "value":"-407.57" + } + }, + { + "id":"0b71971b-9519-4a7c-ad94-e6fa8a04e128", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-04T20:52:33.378Z", + "completed":"2017-08-04T20:52:33.378Z", + "new_balance":"9835.13", + "value":"-14.51" + } + }, + { + "id":"36043465-744e-4cc0-bdc6-97b9bcf77d79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-07T10:21:25.470Z", + "completed":"2017-08-07T10:21:25.470Z", + "new_balance":"9805.97", + "value":"-29.16" + } + }, + { + "id":"73fea8da-a60c-47c2-bfb4-7aca3eebf873", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-08-07T12:50:00.493Z", + "completed":"2017-08-07T12:50:00.493Z", + "new_balance":"9799.48", + "value":"-6.49" + } + }, + { + "id":"c8b25372-b141-44e2-94e4-8e14ad3a912f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-07T20:10:18.350Z", + "completed":"2017-08-07T20:10:18.350Z", + "new_balance":"9774.68", + "value":"-24.80" + } + }, + { + "id":"8dc44a50-b024-41ec-aabb-c81c99143c07", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T13:20:12.433Z", + "completed":"2017-08-08T13:20:12.433Z", + "new_balance":"9724.12", + "value":"-50.56" + } + }, + { + "id":"5ac24944-58e6-4141-a3b7-df5831aa932a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-08-08T17:06:26.729Z", + "completed":"2017-08-08T17:06:26.729Z", + "new_balance":"9619.40", + "value":"-104.72" + } + }, + { + "id":"af8c67b4-acde-4e5b-a9c3-c8b329db1d7f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-08T17:35:54.284Z", + "completed":"2017-08-08T17:35:54.284Z", + "new_balance":"9578.05", + "value":"-41.35" + } + }, + { + "id":"c9adcae5-61cc-4b8b-91f3-4167f44cb1ac", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-09T16:32:43.798Z", + "completed":"2017-08-09T16:32:43.798Z", + "new_balance":"9552.25", + "value":"-25.80" + } + }, + { + "id":"64104a33-b534-4f4d-a154-a3af765273b7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-11T01:04:12.751Z", + "completed":"2017-08-11T01:04:12.751Z", + "new_balance":"9545.26", + "value":"-6.99" + } + }, + { + "id":"6cca7879-f0f3-4669-9ef9-a1d55b1b6ee4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-08-14T21:45:55.489Z", + "completed":"2017-08-14T21:45:55.489Z", + "new_balance":"9510.07", + "value":"-35.19" + } + }, + { + "id":"769a04eb-ee97-420e-8925-1d2583386b7f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-15T04:58:53.097Z", + "completed":"2017-08-15T04:58:53.097Z", + "new_balance":"9480.91", + "value":"-29.16" + } + }, + { + "id":"86c06944-24dc-4fa7-b100-ce0805c382c0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-08-17T07:21:47.664Z", + "completed":"2017-08-17T07:21:47.664Z", + "new_balance":"9475.14", + "value":"-5.77" + } + }, + { + "id":"60263426-9881-49e0-9178-477f1b2bbbfb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-08-17T09:40:12.068Z", + "completed":"2017-08-17T09:40:12.068Z", + "new_balance":"9429.63", + "value":"-45.51" + } + }, + { + "id":"7642d3ff-0d14-493c-9dfe-21b0cc343720", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-19T02:53:40.563Z", + "completed":"2017-08-19T02:53:40.563Z", + "new_balance":"9421.23", + "value":"-8.40" + } + }, + { + "id":"faf37fd8-88b2-44f8-9f62-ac0b3be301b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-25T12:51:35.771Z", + "completed":"2017-08-25T12:51:35.771Z", + "new_balance":"9535.37", + "value":"114.14" + } + }, + { + "id":"6572f8e0-15bc-4b45-8aab-0b80361e327e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-08-28T05:58:35.810Z", + "completed":"2017-08-28T05:58:35.810Z", + "new_balance":"9486.59", + "value":"-48.78" + } + }, + { + "id":"5a8cc61e-b6ff-434a-b2e3-64910ccef50b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-08-28T23:34:45.366Z", + "completed":"2017-08-28T23:34:45.366Z", + "new_balance":"9288.68", + "value":"-197.91" + } + }, + { + "id":"2b4fc568-3a39-4947-8f98-196582bc71e5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-01T17:18:47.257Z", + "completed":"2017-09-01T17:18:47.257Z", + "new_balance":"10311.10", + "value":"1022.42" + } + }, + { + "id":"3664bbcf-b2b5-4155-b7cf-8770536eb9b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-09-03T12:24:23.807Z", + "completed":"2017-09-03T12:24:23.807Z", + "new_balance":"9903.53", + "value":"-407.57" + } + }, + { + "id":"91210b50-d559-4614-bb57-371190d617cc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-04T04:30:16.328Z", + "completed":"2017-09-04T04:30:16.328Z", + "new_balance":"9886.53", + "value":"-17.00" + } + }, + { + "id":"7e836cea-1230-41e5-8e99-081a30538481", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T05:12:07.319Z", + "completed":"2017-09-04T05:12:07.319Z", + "new_balance":"9841.02", + "value":"-45.51" + } + }, + { + "id":"5c73a3f0-5646-4104-8912-3308a928d06f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-04T06:00:38.856Z", + "completed":"2017-09-04T06:00:38.856Z", + "new_balance":"9810.21", + "value":"-30.81" + } + }, + { + "id":"a82eff59-e91d-43d4-9978-b7ad77342d78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-04T23:11:10.946Z", + "completed":"2017-09-04T23:11:10.946Z", + "new_balance":"9778.76", + "value":"-31.45" + } + }, + { + "id":"f4a1afee-2570-424f-95ff-e58505b19ab1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-05T00:21:27.286Z", + "completed":"2017-09-05T00:21:27.286Z", + "new_balance":"9733.22", + "value":"-45.54" + } + }, + { + "id":"dedcfe1c-e821-406e-82b9-86554b908547", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-05T10:55:53.277Z", + "completed":"2017-09-05T10:55:53.277Z", + "new_balance":"9727.45", + "value":"-5.77" + } + }, + { + "id":"17faf907-46b8-44c8-8d69-6dcba08578ee", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-09-05T13:17:44.782Z", + "completed":"2017-09-05T13:17:44.782Z", + "new_balance":"9713.39", + "value":"-14.06" + } + }, + { + "id":"1e203234-9a07-4962-8d8e-645d9303e79c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-09-05T15:23:59.362Z", + "completed":"2017-09-05T15:23:59.362Z", + "new_balance":"9614.27", + "value":"-99.12" + } + }, + { + "id":"d4a6ee80-edf9-4f90-b073-7a2507925dc5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-09-05T18:50:03.714Z", + "completed":"2017-09-05T18:50:03.714Z", + "new_balance":"9509.55", + "value":"-104.72" + } + }, + { + "id":"c7810027-8b11-415b-ad76-9b4b43faa9c0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-05T19:57:43.465Z", + "completed":"2017-09-05T19:57:43.465Z", + "new_balance":"9427.76", + "value":"-81.79" + } + }, + { + "id":"740ba1b8-0ff3-4a33-a30d-e399af30a400", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T03:49:31.281Z", + "completed":"2017-09-07T03:49:31.281Z", + "new_balance":"9420.15", + "value":"-7.61" + } + }, + { + "id":"a8a2e4b8-f72c-4278-a973-0aec42e0b9ea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-09-07T07:18:45.396Z", + "completed":"2017-09-07T07:18:45.396Z", + "new_balance":"9412.54", + "value":"-7.61" + } + }, + { + "id":"0e096c9a-8a01-456a-9a08-e248625e94e9", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-07T09:20:51.734Z", + "completed":"2017-09-07T09:20:51.734Z", + "new_balance":"9406.77", + "value":"-5.77" + } + }, + { + "id":"8a66a317-9fd9-4264-88ae-445c48ca833c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T21:46:58.458Z", + "completed":"2017-09-07T21:46:58.458Z", + "new_balance":"9398.25", + "value":"-8.52" + } + }, + { + "id":"b74e8dd7-f3f0-4bd7-8aa7-1b346c2bde0d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-10T12:35:14.505Z", + "completed":"2017-09-10T12:35:14.505Z", + "new_balance":"9365.91", + "value":"-32.34" + } + }, + { + "id":"986f37cd-9669-48ba-9423-dafbddeac607", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-11T00:07:55.732Z", + "completed":"2017-09-11T00:07:55.732Z", + "new_balance":"9341.61", + "value":"-24.30" + } + }, + { + "id":"104d442b-9999-4eae-b917-0bc3b8964b91", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T01:23:06.324Z", + "completed":"2017-09-11T01:23:06.324Z", + "new_balance":"9329.24", + "value":"-12.37" + } + }, + { + "id":"5bdab332-7dc3-4694-9397-11054f9048f6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-11T16:59:43.665Z", + "completed":"2017-09-11T16:59:43.665Z", + "new_balance":"9323.47", + "value":"-5.77" + } + }, + { + "id":"7f340a9a-5ef8-46ee-a108-3c6760406ded", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T08:34:41.634Z", + "completed":"2017-09-12T08:34:41.634Z", + "new_balance":"9257.29", + "value":"-66.18" + } + }, + { + "id":"cac2b6d3-f72c-4c3e-b0c2-4de64e0a57cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T13:27:12.380Z", + "completed":"2017-09-12T13:27:12.380Z", + "new_balance":"9156.03", + "value":"-101.26" + } + }, + { + "id":"4d09c195-3334-4daf-8483-86aa9df6b857", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T21:59:25.936Z", + "completed":"2017-09-12T21:59:25.936Z", + "new_balance":"9136.87", + "value":"-19.16" + } + }, + { + "id":"986dd1a5-87f7-4546-8a61-5b858c8d9ac2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-12T23:15:35.796Z", + "completed":"2017-09-12T23:15:35.796Z", + "new_balance":"9131.10", + "value":"-5.77" + } + }, + { + "id":"c7177661-8aea-4842-88c3-cabf07c2207d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-13T02:01:05.581Z", + "completed":"2017-09-13T02:01:05.581Z", + "new_balance":"9088.61", + "value":"-42.49" + } + }, + { + "id":"8c06e9e4-eb96-45c5-856d-dc3115c4e7ea", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T05:50:46.655Z", + "completed":"2017-09-14T05:50:46.655Z", + "new_balance":"9046.38", + "value":"-42.23" + } + }, + { + "id":"ecc60022-7749-45cd-9152-e6fc28814786", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-14T10:05:27.379Z", + "completed":"2017-09-14T10:05:27.379Z", + "new_balance":"9040.61", + "value":"-5.77" + } + }, + { + "id":"f7eb3680-e233-4c2c-b005-dcc23678fa52", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-09-16T06:16:27.359Z", + "completed":"2017-09-16T06:16:27.359Z", + "new_balance":"8991.72", + "value":"-48.89" + } + }, + { + "id":"405ed6c6-7274-4598-86cd-93b417803d20", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-18T22:31:52.123Z", + "completed":"2017-09-18T22:31:52.123Z", + "new_balance":"8947.75", + "value":"-43.97" + } + }, + { + "id":"488dcaf0-a7e5-48eb-b1b0-c2ea364af006", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-09-21T04:33:37.882Z", + "completed":"2017-09-21T04:33:37.882Z", + "new_balance":"8843.43", + "value":"-104.32" + } + }, + { + "id":"6f73b64a-8e3d-48cd-9500-1823c16cbf9d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Booking.com" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-09-21T04:40:21.161Z", + "completed":"2017-09-21T04:40:21.161Z", + "new_balance":"8745.93", + "value":"-97.50" + } + }, + { + "id":"87a39fb8-7797-4335-89d2-ea1d7fb59e22", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-23T21:57:45.126Z", + "completed":"2017-09-23T21:57:45.126Z", + "new_balance":"8705.61", + "value":"-40.32" + } + }, + { + "id":"ced63dfb-bb7e-4a3b-928e-18075bedaf85", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-24T06:56:37.132Z", + "completed":"2017-09-24T06:56:37.132Z", + "new_balance":"8699.84", + "value":"-5.77" + } + }, + { + "id":"895c291f-fb8e-465c-a55d-421ab5068b0b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T03:50:48.299Z", + "completed":"2017-09-26T03:50:48.299Z", + "new_balance":"8674.22", + "value":"-25.62" + } + }, + { + "id":"8aaddfaf-802a-44f5-b62d-f3a3d45fb3c2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:05:24.155Z", + "completed":"2017-09-26T08:05:24.155Z", + "new_balance":"8661.21", + "value":"-13.01" + } + }, + { + "id":"a2705b4e-f576-4b1a-99ec-bffb73c36287", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-09-26T09:02:17.225Z", + "completed":"2017-09-26T09:02:17.225Z", + "new_balance":"8648.42", + "value":"-12.79" + } + }, + { + "id":"436225ee-a7b9-4dfa-be69-08fc83d55e63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-09-27T00:03:22.739Z", + "completed":"2017-09-27T00:03:22.739Z", + "new_balance":"8634.23", + "value":"-14.19" + } + }, + { + "id":"f89be6ff-5463-4122-94bf-4e3357495aaa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-09-28T09:06:03.589Z", + "completed":"2017-09-28T09:06:03.589Z", + "new_balance":"8436.32", + "value":"-197.91" + } + }, + { + "id":"570e6c9c-6078-472b-aadd-b4aaf26155bd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-28T19:09:22.380Z", + "completed":"2017-09-28T19:09:22.380Z", + "new_balance":"8387.54", + "value":"-48.78" + } + }, + { + "id":"308f2007-78fe-4545-9d37-4f5d9ace1371", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T00:31:56.216Z", + "completed":"2017-10-01T00:31:56.216Z", + "new_balance":"10067.95", + "value":"1680.41" + } + }, + { + "id":"6bd2d4ad-811e-4b91-a9c0-d87b8a2c131b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-10-01T07:18:03.797Z", + "completed":"2017-10-01T07:18:03.797Z", + "new_balance":"9660.38", + "value":"-407.57" + } + }, + { + "id":"b5eaa324-64d0-417c-8d9b-ca24a7e0c94f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-10-01T14:24:44.240Z", + "completed":"2017-10-01T14:24:44.240Z", + "new_balance":"10682.80", + "value":"1022.42" + } + }, + { + "id":"dcebf38d-1d34-4913-8514-45182e6405b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Burger King" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-03T01:59:18.989Z", + "completed":"2017-10-03T01:59:18.989Z", + "new_balance":"10676.42", + "value":"-6.38" + } + }, + { + "id":"288527a4-a2d5-4dc0-aadc-8b221a224095", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-03T07:16:57.158Z", + "completed":"2017-10-03T07:16:57.158Z", + "new_balance":"10658.80", + "value":"-17.62" + } + }, + { + "id":"b3d21638-5f69-4c2b-b940-0a13c5e438d7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"New Look" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-03T17:34:26.715Z", + "completed":"2017-10-03T17:34:26.715Z", + "new_balance":"10612.00", + "value":"-46.80" + } + }, + { + "id":"aa6b71e4-d59f-4cb3-8f53-5359ce7c829b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-05T11:02:04.984Z", + "completed":"2017-10-05T11:02:04.984Z", + "new_balance":"10601.09", + "value":"-10.91" + } + }, + { + "id":"d395653a-c11f-40cc-925b-b9497567638c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T13:38:50.163Z", + "completed":"2017-10-05T13:38:50.163Z", + "new_balance":"10594.10", + "value":"-6.99" + } + }, + { + "id":"d35a98ba-baf3-482e-966f-fe3f4c12ac1a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-06T05:10:47.469Z", + "completed":"2017-10-06T05:10:47.469Z", + "new_balance":"10569.17", + "value":"-24.93" + } + }, + { + "id":"60a39236-27f5-4814-9609-fdf65a6ab18b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-09T23:32:01.307Z", + "completed":"2017-10-09T23:32:01.307Z", + "new_balance":"10550.01", + "value":"-19.16" + } + }, + { + "id":"ae49106f-58fa-494c-aa91-c4df313dee70", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-10T19:43:45.058Z", + "completed":"2017-10-10T19:43:45.058Z", + "new_balance":"10535.02", + "value":"-14.99" + } + }, + { + "id":"9a50ee9a-f9a0-44ba-9d5b-029a383c8757", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T03:00:11.118Z", + "completed":"2017-10-11T03:00:11.118Z", + "new_balance":"10505.86", + "value":"-29.16" + } + }, + { + "id":"41a72215-73aa-43da-8483-9e55d7e4c6c6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Body Shop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T13:42:02.699Z", + "completed":"2017-10-11T13:42:02.699Z", + "new_balance":"10489.85", + "value":"-16.01" + } + }, + { + "id":"e01d82b0-08ea-40fc-a523-ee88ed5ea50e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-10-14T01:35:49.290Z", + "completed":"2017-10-14T01:35:49.290Z", + "new_balance":"10385.13", + "value":"-104.72" + } + }, + { + "id":"698dd2d8-20ac-49de-b71e-eedae220a34c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-10-14T08:17:37.074Z", + "completed":"2017-10-14T08:17:37.074Z", + "new_balance":"10340.07", + "value":"-45.06" + } + }, + { + "id":"0adebef8-431a-4598-a486-ebc8b6a71e78", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-17T15:23:33.440Z", + "completed":"2017-10-17T15:23:33.440Z", + "new_balance":"10295.59", + "value":"-44.48" + } + }, + { + "id":"ad629dd8-24dc-449b-a65b-d3bd6eb6d397", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-18T02:09:32.319Z", + "completed":"2017-10-18T02:09:32.319Z", + "new_balance":"10285.52", + "value":"-10.07" + } + }, + { + "id":"d9925dcb-3844-4ad7-a81d-0b9be4548665", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-10-18T02:27:14.903Z", + "completed":"2017-10-18T02:27:14.903Z", + "new_balance":"10206.44", + "value":"-79.08" + } + }, + { + "id":"488aa704-4788-4e05-bcea-05d564b878e1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-18T23:34:14.664Z", + "completed":"2017-10-18T23:34:14.664Z", + "new_balance":"10200.67", + "value":"-5.77" + } + }, + { + "id":"4846a030-88c4-4e44-abde-7ef0002aeec5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-10-23T11:14:57.015Z", + "completed":"2017-10-23T11:14:57.015Z", + "new_balance":"10175.27", + "value":"-25.40" + } + }, + { + "id":"eee04505-934f-4663-a16b-0bfe0fd29cd4", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T10:24:54.252Z", + "completed":"2017-10-24T10:24:54.252Z", + "new_balance":"10160.44", + "value":"-14.83" + } + }, + { + "id":"8f38e822-c430-489f-915f-adca2effd46d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-24T16:14:38.829Z", + "completed":"2017-10-24T16:14:38.829Z", + "new_balance":"10129.63", + "value":"-30.81" + } + }, + { + "id":"b84e6b9f-c7c2-4ae3-8380-9927cbe8bde6", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-10-26T23:29:27.582Z", + "completed":"2017-10-26T23:29:27.582Z", + "new_balance":"10122.64", + "value":"-6.99" + } + }, + { + "id":"66663542-8744-44f0-9dde-381f5e1b85d5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-10-30T08:52:56.556Z", + "completed":"2017-10-30T08:52:56.556Z", + "new_balance":"9924.73", + "value":"-197.91" + } + }, + { + "id":"04c10aa4-1d5e-4df9-aac7-fa06f9c55ad8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-10-30T21:56:05.233Z", + "completed":"2017-10-30T21:56:05.233Z", + "new_balance":"9875.95", + "value":"-48.78" + } + }, + { + "id":"902e2ebe-51a2-4724-be3e-17cc57893633", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-11-02T12:13:25.157Z", + "completed":"2017-11-02T12:13:25.157Z", + "new_balance":"9468.38", + "value":"-407.57" + } + }, + { + "id":"6f474c01-9c1d-4815-9290-ab74bbde741c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-02T12:22:32.166Z", + "completed":"2017-11-02T12:22:32.166Z", + "new_balance":"9304.90", + "value":"-163.48" + } + }, + { + "id":"65e181a1-f42d-4769-a399-e913005552b7", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-11-02T13:03:12.484Z", + "completed":"2017-11-02T13:03:12.484Z", + "new_balance":"9298.41", + "value":"-6.49" + } + }, + { + "id":"fab00b49-8d3f-45c8-925e-2e5258e7a668", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-02T13:47:03.429Z", + "completed":"2017-11-02T13:47:03.429Z", + "new_balance":"9283.90", + "value":"-14.51" + } + }, + { + "id":"ded3e274-51d3-47ae-b788-50ae93e560cd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-06T22:20:07.259Z", + "completed":"2017-11-06T22:20:07.259Z", + "new_balance":"9254.74", + "value":"-29.16" + } + }, + { + "id":"b2dc0f84-714c-410f-978e-34f85dc34d16", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-06T23:46:13.765Z", + "completed":"2017-11-06T23:46:13.765Z", + "new_balance":"9229.94", + "value":"-24.80" + } + }, + { + "id":"0ac6a03b-8c58-469a-93c6-934a14c63c4b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-11-07T02:43:23.646Z", + "completed":"2017-11-07T02:43:23.646Z", + "new_balance":"9125.22", + "value":"-104.72" + } + }, + { + "id":"d54753d6-466f-4da7-b167-45149941f053", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hand Made Burger Company" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T07:20:46.223Z", + "completed":"2017-11-07T07:20:46.223Z", + "new_balance":"9083.87", + "value":"-41.35" + } + }, + { + "id":"afd7ff9a-5ae8-4fb8-b1fd-67bd23a4af3d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-11-09T00:54:30.655Z", + "completed":"2017-11-09T00:54:30.655Z", + "new_balance":"10106.29", + "value":"1022.42" + } + }, + { + "id":"444c902e-738b-44b0-b92a-efec48562276", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T06:46:47.513Z", + "completed":"2017-11-14T06:46:47.513Z", + "new_balance":"10055.73", + "value":"-50.56" + } + }, + { + "id":"7a273f84-0231-4705-b4cb-f615c52ac164", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-14T11:48:09.057Z", + "completed":"2017-11-14T11:48:09.057Z", + "new_balance":"10029.93", + "value":"-25.80" + } + }, + { + "id":"7f597962-3578-4d31-ab4a-f57536b23255", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-16T01:27:55.240Z", + "completed":"2017-11-16T01:27:55.240Z", + "new_balance":"10022.94", + "value":"-6.99" + } + }, + { + "id":"a4ff0876-eda5-4848-92c3-c76a1db33885", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-11-20T10:29:06.367Z", + "completed":"2017-11-20T10:29:06.367Z", + "new_balance":"9987.75", + "value":"-35.19" + } + }, + { + "id":"8a70f255-41ab-44e9-b58e-5bc4ef537331", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-11-23T15:03:33.412Z", + "completed":"2017-11-23T15:03:33.412Z", + "new_balance":"9981.98", + "value":"-5.77" + } + }, + { + "id":"ccc4d0ef-654f-4b24-a39b-eb8b05e887fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-11-23T16:27:08.789Z", + "completed":"2017-11-23T16:27:08.789Z", + "new_balance":"9936.47", + "value":"-45.51" + } + }, + { + "id":"51aceb13-e991-45e7-990d-94669feaf53f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-23T19:03:32.238Z", + "completed":"2017-11-23T19:03:32.238Z", + "new_balance":"9907.31", + "value":"-29.16" + } + }, + { + "id":"548277d7-d529-43b2-b97d-4048f2de91fe", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-28T04:53:58.869Z", + "completed":"2017-11-28T04:53:58.869Z", + "new_balance":"9898.91", + "value":"-8.40" + } + }, + { + "id":"52afc0b4-cefa-448d-96f1-81f6b1b74fc1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-11-30T11:10:12.687Z", + "completed":"2017-11-30T11:10:12.687Z", + "new_balance":"9850.13", + "value":"-48.78" + } + }, + { + "id":"0cb5b60d-a5c1-4e84-a9c1-1ef6a46a5118", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-11-30T20:07:52.645Z", + "completed":"2017-11-30T20:07:52.645Z", + "new_balance":"9652.22", + "value":"-197.91" + } + }, + { + "id":"e36cadfa-4fc9-4494-9c70-bbaea640a55b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"My Service Mercedes Benz" + }, + "details":{ + "type":"10218", + "description":"Car Servicing", + "posted":"2017-12-01T02:59:52.460Z", + "completed":"2017-12-01T02:59:52.460Z", + "new_balance":"9244.65", + "value":"-407.57" + } + }, + { + "id":"4eefd170-44fa-4daa-8a13-9a785abd1427", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-01T16:59:01.498Z", + "completed":"2017-12-01T16:59:01.498Z", + "new_balance":"10267.07", + "value":"1022.42" + } + }, + { + "id":"e6c1b395-02d2-4f89-b569-714dbdae0d8e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-04T13:13:50.588Z", + "completed":"2017-12-04T13:13:50.588Z", + "new_balance":"10250.07", + "value":"-17.00" + } + }, + { + "id":"2f00b459-a899-433c-9b24-9d86b4048f6c", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Boots" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T23:44:36.724Z", + "completed":"2017-12-04T23:44:36.724Z", + "new_balance":"10218.62", + "value":"-31.45" + } + }, + { + "id":"53019b50-e437-4aa3-8514-243585987c63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-11T07:03:15.672Z", + "completed":"2017-12-11T07:03:15.672Z", + "new_balance":"10173.11", + "value":"-45.51" + } + }, + { + "id":"8c4371f0-2fe8-4a6b-bbd4-4ffff8d5567a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Zizzi" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-11T16:40:45.023Z", + "completed":"2017-12-11T16:40:45.023Z", + "new_balance":"10142.30", + "value":"-30.81" + } + }, + { + "id":"3c154398-f61a-4dbc-ad07-0a27c14abc1e", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Showcase Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema", + "posted":"2017-12-14T01:40:16.804Z", + "completed":"2017-12-14T01:40:16.804Z", + "new_balance":"10128.24", + "value":"-14.06" + } + }, + { + "id":"98421c7f-9043-42d6-abb5-ef9bf42d6bf5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T04:35:46.715Z", + "completed":"2017-12-14T04:35:46.715Z", + "new_balance":"10122.47", + "value":"-5.77" + } + }, + { + "id":"eec297e7-9350-4df3-b982-c089370c978b", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-14T04:59:02.415Z", + "completed":"2017-12-14T04:59:02.415Z", + "new_balance":"10114.86", + "value":"-7.61" + } + }, + { + "id":"0a27416c-3c86-4662-9c68-70c5b815e1e2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ticket Master" + }, + "details":{ + "type":"10218", + "description":"Tickets", + "posted":"2017-12-14T12:03:56.723Z", + "completed":"2017-12-14T12:03:56.723Z", + "new_balance":"10015.74", + "value":"-99.12" + } + }, + { + "id":"5c87b0dd-c745-4887-a376-4418b6029a63", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Netflix" + }, + "details":{ + "type":"10218", + "description":"Monthly Netflix Membership", + "posted":"2017-12-14T12:47:18.130Z", + "completed":"2017-12-14T12:47:18.130Z", + "new_balance":"10008.13", + "value":"-7.61" + } + }, + { + "id":"8e45d525-3596-457b-a663-25b9c71ba4fc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash Withdrawals", + "posted":"2017-12-14T12:52:53.449Z", + "completed":"2017-12-14T12:52:53.449Z", + "new_balance":"9903.41", + "value":"-104.72" + } + }, + { + "id":"38c220ba-7ac7-475b-8a89-a4e32a956f31", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-14T13:47:01.957Z", + "completed":"2017-12-14T13:47:01.957Z", + "new_balance":"9857.87", + "value":"-45.54" + } + }, + { + "id":"f0a690a4-48c5-467b-a6ff-6f36be896769", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-14T13:54:32.007Z", + "completed":"2017-12-14T13:54:32.007Z", + "new_balance":"9776.08", + "value":"-81.79" + } + }, + { + "id":"ca0da5c2-8da8-4260-9f8f-11493b509dfa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-14T20:41:22.937Z", + "completed":"2017-12-14T20:41:22.937Z", + "new_balance":"9770.31", + "value":"-5.77" + } + }, + { + "id":"92647e24-46fb-4381-a117-0ef198f254f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T03:50:33.870Z", + "completed":"2017-12-15T03:50:33.870Z", + "new_balance":"9761.79", + "value":"-8.52" + } + }, + { + "id":"05cec10c-216e-4859-96c3-a25e01ccf20d", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-15T20:33:11.000Z", + "completed":"2017-12-15T20:33:11.000Z", + "new_balance":"9729.45", + "value":"-32.34" + } + }, + { + "id":"5c349027-3802-4f53-8021-ecb0f42797cb", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-15T22:43:01.254Z", + "completed":"2017-12-15T22:43:01.254Z", + "new_balance":"9723.68", + "value":"-5.77" + } + }, + { + "id":"37457cb6-a0f6-48ab-99a6-8665715817d2", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T01:03:08.383Z", + "completed":"2017-12-18T01:03:08.383Z", + "new_balance":"9717.91", + "value":"-5.77" + } + }, + { + "id":"8cba0b4f-2896-49b6-a200-fadb1c7b504f", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Coach and Horses" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T01:41:08.106Z", + "completed":"2017-12-18T01:41:08.106Z", + "new_balance":"9675.42", + "value":"-42.49" + } + }, + { + "id":"26b8ce92-23f9-42ff-bbd3-5efd7f301476", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Hollywood Bowling" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-18T02:57:04.848Z", + "completed":"2017-12-18T02:57:04.848Z", + "new_balance":"9651.12", + "value":"-24.30" + } + }, + { + "id":"e3ff290b-05a5-4ba6-b67a-c0c54e5091e8", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Nando's" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-18T04:59:09.553Z", + "completed":"2017-12-18T04:59:09.553Z", + "new_balance":"9638.75", + "value":"-12.37" + } + }, + { + "id":"0e8437f8-06c6-42dd-bd92-e9fb33e777fd", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"All Saints" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T05:15:42.659Z", + "completed":"2017-12-18T05:15:42.659Z", + "new_balance":"9537.49", + "value":"-101.26" + } + }, + { + "id":"b23b6252-4733-402e-9088-a86dd7e085fa", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Topshop" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-18T13:32:00.858Z", + "completed":"2017-12-18T13:32:00.858Z", + "new_balance":"9471.31", + "value":"-66.18" + } + }, + { + "id":"d1b56dbe-5185-4e46-86d7-6c36447558b0", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-18T20:08:37.829Z", + "completed":"2017-12-18T20:08:37.829Z", + "new_balance":"9465.54", + "value":"-5.77" + } + }, + { + "id":"2e779b61-50d6-4acf-b770-72c266c08086", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-18T21:37:29.708Z", + "completed":"2017-12-18T21:37:29.708Z", + "new_balance":"9446.38", + "value":"-19.16" + } + }, + { + "id":"314001e9-0631-4331-803f-2eab8b9d4fae", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Waitrose" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T00:57:08.131Z", + "completed":"2017-12-19T00:57:08.131Z", + "new_balance":"9404.15", + "value":"-42.23" + } + }, + { + "id":"de75ecd6-bd8c-4c54-a51b-a4c4a5a152f5", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-19T01:43:22.880Z", + "completed":"2017-12-19T01:43:22.880Z", + "new_balance":"9360.18", + "value":"-43.97" + } + }, + { + "id":"d8ad0b2f-58b8-43e5-9590-762a553e9c4a", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10218", + "description":"Restaurant/Takeway", + "posted":"2017-12-19T12:50:34.837Z", + "completed":"2017-12-19T12:50:34.837Z", + "new_balance":"9311.29", + "value":"-48.89" + } + }, + { + "id":"460a2fd8-f4d5-4fa5-961c-f7726a1f0d75", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"" + }, + "details":{ + "type":"10218", + "description":"Booking.com", + "posted":"2017-12-21T00:45:28.982Z", + "completed":"2017-12-21T00:45:28.982Z", + "new_balance":"9213.79", + "value":"-97.50" + } + }, + { + "id":"ad510f8d-d3d3-4ad2-bdee-39ef3b1c3f32", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Accessorize" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-21T07:28:02.860Z", + "completed":"2017-12-21T07:28:02.860Z", + "new_balance":"9200.78", + "value":"-13.01" + } + }, + { + "id":"8561104d-a23e-4bd6-9afc-3b1ccb23c080", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Easyjet" + }, + "details":{ + "type":"10218", + "description":"Flights", + "posted":"2017-12-21T12:01:59.383Z", + "completed":"2017-12-21T12:01:59.383Z", + "new_balance":"9096.46", + "value":"-104.32" + } + }, + { + "id":"3065c08b-47b4-4e1e-8ff6-cfa4f1c8e9b1", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-21T21:01:12.565Z", + "completed":"2017-12-21T21:01:12.565Z", + "new_balance":"9056.14", + "value":"-40.32" + } + }, + { + "id":"b429dc5a-45fa-44c1-82e7-2203b6abe327", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-21T22:48:40.822Z", + "completed":"2017-12-21T22:48:40.822Z", + "new_balance":"9050.37", + "value":"-5.77" + } + }, + { + "id":"572e7e6a-e4d7-42cc-a9fa-c4c632fcab79", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Costa Coffee" + }, + "details":{ + "type":"10218", + "description":"Coffee", + "posted":"2017-12-24T03:33:10.589Z", + "completed":"2017-12-24T03:33:10.589Z", + "new_balance":"9036.18", + "value":"-14.19" + } + }, + { + "id":"33e18b34-e804-4d12-8acf-dbb2d23b0188", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T05:54:23.936Z", + "completed":"2017-12-24T05:54:23.936Z", + "new_balance":"9010.56", + "value":"-25.62" + } + }, + { + "id":"63ac37e0-6b63-4e96-a54c-ad6327fca941", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10218", + "description":"Bar", + "posted":"2017-12-24T19:56:47.519Z", + "completed":"2017-12-24T19:56:47.519Z", + "new_balance":"8997.77", + "value":"-12.79" + } + }, + { + "id":"806ae365-4f2c-49df-a6ad-63761aae84bc", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10218", + "description":"Saving", + "posted":"2017-12-30T01:16:20.062Z", + "completed":"2017-12-30T01:16:20.062Z", + "new_balance":"8799.86", + "value":"-197.91" + } + }, + { + "id":"2512ca28-a987-4382-8aa4-f310f80d2019", + "this_account":{ + "id":"d2888907-2b2b-4941-8ed9-03a352ebf034", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-30T14:25:26.579Z", + "completed":"2017-12-30T14:25:26.579Z", + "new_balance":"8751.08", + "value":"-48.78" + } + }, + { + "id":"650d95d6-0b00-48a2-bc4d-cde8ec7330c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:52:36.871Z", + "completed":"2016-01-01T01:52:36.871Z", + "new_balance":"5127.94", + "value":"-34.43" + } + }, + { + "id":"878ce3d8-5844-4c37-b2c6-4ea19815f719", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-01-01T06:07:18.980Z", + "completed":"2016-01-01T06:07:18.980Z", + "new_balance":"5093.51", + "value":"-34.43" + } + }, + { + "id":"c3f1836c-14cd-4f6b-9b75-2ce8bdccf399", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-01-01T18:47:07.134Z", + "completed":"2016-01-01T18:47:07.134Z", + "new_balance":"5046.61", + "value":"-46.90" + } + }, + { + "id":"292b6948-51da-4ae9-9a38-7c28b59a5ab3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-01T19:58:09.617Z", + "completed":"2016-01-01T19:58:09.617Z", + "new_balance":"4941.89", + "value":"-104.72" + } + }, + { + "id":"a2ec21ad-3515-48d0-8eb7-7734e3bcfbdb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-05T15:13:13.797Z", + "completed":"2016-01-05T15:13:13.797Z", + "new_balance":"4860.68", + "value":"-81.21" + } + }, + { + "id":"1e9a3f16-87e7-4f8f-a064-d83e1c5bab3a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-05T22:43:31.742Z", + "completed":"2016-01-05T22:43:31.742Z", + "new_balance":"4793.23", + "value":"-67.45" + } + }, + { + "id":"49326cb9-6472-42ff-a67b-e5ebf7f828f7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-08T07:14:21.432Z", + "completed":"2016-01-08T07:14:21.432Z", + "new_balance":"4782.32", + "value":"-10.91" + } + }, + { + "id":"48cde51f-33ab-4d47-8a8a-1ea306ae0e6d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-10T05:37:09.688Z", + "completed":"2016-01-10T05:37:09.688Z", + "new_balance":"4735.86", + "value":"-46.46" + } + }, + { + "id":"227f130e-0428-450a-b18b-c0e30de59b3a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-11T21:04:16.664Z", + "completed":"2016-01-11T21:04:16.664Z", + "new_balance":"4679.22", + "value":"-56.64" + } + }, + { + "id":"b8455ddd-b8ef-483c-9afa-07797617d9cf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-01-12T20:26:47.067Z", + "completed":"2016-01-12T20:26:47.067Z", + "new_balance":"4644.79", + "value":"-34.43" + } + }, + { + "id":"2d02ec4b-1c00-4486-9a3a-b85e959ae137", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-01-13T06:52:26.139Z", + "completed":"2016-01-13T06:52:26.139Z", + "new_balance":"4639.14", + "value":"-5.65" + } + }, + { + "id":"b0fd8634-6e70-4220-a143-71ae4f87e9d1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-01-13T22:09:20.486Z", + "completed":"2016-01-13T22:09:20.486Z", + "new_balance":"4635.55", + "value":"-3.59" + } + }, + { + "id":"88c68811-7fd6-4908-ade9-f831d960d99e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-01-16T03:37:32.418Z", + "completed":"2016-01-16T03:37:32.418Z", + "new_balance":"4552.46", + "value":"-83.09" + } + }, + { + "id":"4e0abd06-3539-46d7-8102-7f80c3ee6206", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-01-19T03:01:57.606Z", + "completed":"2016-01-19T03:01:57.606Z", + "new_balance":"4471.02", + "value":"-81.44" + } + }, + { + "id":"ff62014a-0169-4cd5-922d-2ddefa7af2a7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-01-19T09:45:15.637Z", + "completed":"2016-01-19T09:45:15.637Z", + "new_balance":"4389.81", + "value":"-81.21" + } + }, + { + "id":"d2b7abf5-1d44-479d-8543-101c972bec11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-01-24T02:09:27.785Z", + "completed":"2016-01-24T02:09:27.785Z", + "new_balance":"4362.36", + "value":"-27.45" + } + }, + { + "id":"a0b069ba-ba71-4e5c-b4f0-81d57442a81c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-01-27T09:22:36.908Z", + "completed":"2016-01-27T09:22:36.908Z", + "new_balance":"6712.57", + "value":"2350.21" + } + }, + { + "id":"6ca637e5-699c-46ae-8433-94e7c9b60acf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-01-27T10:23:31.069Z", + "completed":"2016-01-27T10:23:31.069Z", + "new_balance":"6684.59", + "value":"-27.98" + } + }, + { + "id":"05b3d39c-9615-43ec-b333-45b64eab1587", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-01-31T23:58:34.504Z", + "completed":"2016-01-31T23:58:34.504Z", + "new_balance":"6367.38", + "value":"-317.21" + } + }, + { + "id":"320ef198-8559-4761-a2a5-a64d5257dadf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-02-01T02:47:51.621Z", + "completed":"2016-02-01T02:47:51.621Z", + "new_balance":"6320.48", + "value":"-46.90" + } + }, + { + "id":"faef671d-857f-417f-9c89-d1de37bd591c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-02-01T18:19:09.060Z", + "completed":"2016-02-01T18:19:09.060Z", + "new_balance":"6286.05", + "value":"-34.43" + } + }, + { + "id":"b933c285-5b0e-46b9-b7ec-02f9e77f04b3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-02-01T21:06:43.182Z", + "completed":"2016-02-01T21:06:43.182Z", + "new_balance":"6181.33", + "value":"-104.72" + } + }, + { + "id":"0b1c0429-8ad2-4ecc-ae22-016adc12443d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-02-01T23:56:01.206Z", + "completed":"2016-02-01T23:56:01.206Z", + "new_balance":"6146.90", + "value":"-34.43" + } + }, + { + "id":"26caeceb-713c-4ade-9f59-332542ee2d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-03T20:34:58.896Z", + "completed":"2016-02-03T20:34:58.896Z", + "new_balance":"6140.18", + "value":"-6.72" + } + }, + { + "id":"45577062-b8a3-4674-871c-86a574baaf93", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-04T14:54:30.495Z", + "completed":"2016-02-04T14:54:30.495Z", + "new_balance":"6058.97", + "value":"-81.21" + } + }, + { + "id":"ec1d359e-e170-448f-b2c2-382ecee5be64", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-06T13:56:39.298Z", + "completed":"2016-02-06T13:56:39.298Z", + "new_balance":"5952.16", + "value":"-106.81" + } + }, + { + "id":"e0b4d03c-2380-417f-bc61-999f425e74d4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-06T17:13:08.234Z", + "completed":"2016-02-06T17:13:08.234Z", + "new_balance":"5870.99", + "value":"-81.17" + } + }, + { + "id":"edf6cbf8-ef4d-4231-b11e-3313f1a12c5b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-07T13:30:05.900Z", + "completed":"2016-02-07T13:30:05.900Z", + "new_balance":"5842.96", + "value":"-28.03" + } + }, + { + "id":"261b3861-b94d-4819-b485-999faf4f7d38", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-08T19:16:50.268Z", + "completed":"2016-02-08T19:16:50.268Z", + "new_balance":"5827.67", + "value":"-15.29" + } + }, + { + "id":"2124f558-8dba-43e6-90a1-8ea6767810ef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-09T12:50:55.993Z", + "completed":"2016-02-09T12:50:55.993Z", + "new_balance":"5784.72", + "value":"-42.95" + } + }, + { + "id":"0eb5b276-3de6-49bd-92d0-aa5916e90206", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-02-11T05:08:54.117Z", + "completed":"2016-02-11T05:08:54.117Z", + "new_balance":"5757.99", + "value":"-26.73" + } + }, + { + "id":"442e0c44-e771-46bd-83d6-f743492cdf06", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-02-13T09:07:08.345Z", + "completed":"2016-02-13T09:07:08.345Z", + "new_balance":"5716.45", + "value":"-41.54" + } + }, + { + "id":"a20fb4bf-0f8a-48ca-b7df-3e90661c498a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-02-17T07:59:09.386Z", + "completed":"2016-02-17T07:59:09.386Z", + "new_balance":"5709.46", + "value":"-6.99" + } + }, + { + "id":"a7b69097-6c8b-4c7a-9568-7894a5ffe4cc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-02-19T20:55:39.030Z", + "completed":"2016-02-19T20:55:39.030Z", + "new_balance":"5659.52", + "value":"-49.94" + } + }, + { + "id":"48604d14-642b-4b34-a72d-993815718b77", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-02-21T18:24:41.730Z", + "completed":"2016-02-21T18:24:41.730Z", + "new_balance":"5578.31", + "value":"-81.21" + } + }, + { + "id":"4e91f581-e50a-457b-b7f4-3767039eeb11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-02-24T07:13:06.936Z", + "completed":"2016-02-24T07:13:06.936Z", + "new_balance":"5550.33", + "value":"-27.98" + } + }, + { + "id":"abafa594-61f0-4f31-918e-61e8a1937b11", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-02-26T17:54:23.327Z", + "completed":"2016-02-26T17:54:23.327Z", + "new_balance":"7900.54", + "value":"2350.21" + } + }, + { + "id":"4597f411-ba2b-485b-8244-ae6ceebed423", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-03-01T05:01:07.732Z", + "completed":"2016-03-01T05:01:07.732Z", + "new_balance":"7795.82", + "value":"-104.72" + } + }, + { + "id":"f53d49e0-d980-424d-a3fe-3ed7e53b1bc8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T08:36:02.256Z", + "completed":"2016-03-01T08:36:02.256Z", + "new_balance":"7761.39", + "value":"-34.43" + } + }, + { + "id":"8f8b1ffe-dc1a-4edf-85a1-6c5447e46013", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-03-01T12:08:11.205Z", + "completed":"2016-03-01T12:08:11.205Z", + "new_balance":"7726.96", + "value":"-34.43" + } + }, + { + "id":"d6ff7637-506f-4a82-af5e-c88b59e506d1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-03-01T19:07:57.382Z", + "completed":"2016-03-01T19:07:57.382Z", + "new_balance":"7680.06", + "value":"-46.90" + } + }, + { + "id":"39c99bfa-0e41-4650-a0ef-ee9f9c20b73e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-03-09T14:51:30.032Z", + "completed":"2016-03-09T14:51:30.032Z", + "new_balance":"7616.49", + "value":"-63.57" + } + }, + { + "id":"af739ab4-35fb-412e-ab91-4e2f22b79d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-09T15:18:00.996Z", + "completed":"2016-03-09T15:18:00.996Z", + "new_balance":"7555.12", + "value":"-61.37" + } + }, + { + "id":"c5156ad7-53d8-4fa6-819e-def5bc1ada2b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-17T03:44:49.772Z", + "completed":"2016-03-17T03:44:49.772Z", + "new_balance":"7466.63", + "value":"-88.49" + } + }, + { + "id":"f7293353-a5fb-4c19-b1ca-7c15200452d7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:17:13.119Z", + "completed":"2016-03-18T02:17:13.119Z", + "new_balance":"7421.16", + "value":"-45.47" + } + }, + { + "id":"1a1c52c3-e66c-4694-a1e4-e9b3903f0766", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-18T02:22:31.651Z", + "completed":"2016-03-18T02:22:31.651Z", + "new_balance":"7339.37", + "value":"-81.79" + } + }, + { + "id":"ffda946e-76d7-4681-a2d7-382d3f5c1702", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-03-18T04:12:51.190Z", + "completed":"2016-03-18T04:12:51.190Z", + "new_balance":"7299.73", + "value":"-39.64" + } + }, + { + "id":"da3b1a96-8e98-4ecf-b801-9973b94fe153", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-03-18T23:23:50.883Z", + "completed":"2016-03-18T23:23:50.883Z", + "new_balance":"7292.96", + "value":"-6.77" + } + }, + { + "id":"71d87400-4644-4886-8c84-a9147f6a1aa7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-03-22T06:19:18.878Z", + "completed":"2016-03-22T06:19:18.878Z", + "new_balance":"7188.77", + "value":"-104.19" + } + }, + { + "id":"c7cc023e-42db-4a96-9f30-49f9282e977b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-03-29T09:41:54.098Z", + "completed":"2016-03-29T09:41:54.098Z", + "new_balance":"7160.79", + "value":"-27.98" + } + }, + { + "id":"455068a6-aac2-47ba-b074-3cb3ceec9625", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-03-29T10:08:45.964Z", + "completed":"2016-03-29T10:08:45.964Z", + "new_balance":"9511.00", + "value":"2350.21" + } + }, + { + "id":"c36fa08f-66a6-45bb-a33a-846323f2e0db", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-03-31T23:09:28.761Z", + "completed":"2016-03-31T23:09:28.761Z", + "new_balance":"9193.79", + "value":"-317.21" + } + }, + { + "id":"ef35c29f-6dba-4c81-9581-71653cb49e6e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T00:15:35.701Z", + "completed":"2016-04-01T00:15:35.701Z", + "new_balance":"9159.36", + "value":"-34.43" + } + }, + { + "id":"bd2e93b7-ccbb-4817-8fe9-9a3a53d4d615", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-04-01T04:01:36.678Z", + "completed":"2016-04-01T04:01:36.678Z", + "new_balance":"9054.64", + "value":"-104.72" + } + }, + { + "id":"e1dec067-51c6-42c1-983d-c911ba29d7e8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-04-01T16:28:30.267Z", + "completed":"2016-04-01T16:28:30.267Z", + "new_balance":"9007.74", + "value":"-46.90" + } + }, + { + "id":"130adb0a-bac2-423b-a3ca-2b24de2260f1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-04-01T16:29:46.114Z", + "completed":"2016-04-01T16:29:46.114Z", + "new_balance":"8973.31", + "value":"-34.43" + } + }, + { + "id":"1b82ddc7-6519-4926-acf4-aaf4d52ffc15", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-02T21:03:10.231Z", + "completed":"2016-04-02T21:03:10.231Z", + "new_balance":"8878.98", + "value":"-94.33" + } + }, + { + "id":"61ec8a03-9cf7-4e47-80a7-015daa344d89", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-05T00:36:20.687Z", + "completed":"2016-04-05T00:36:20.687Z", + "new_balance":"8837.55", + "value":"-41.43" + } + }, + { + "id":"db87e184-7af9-46c8-ada3-eb6ec3ef3d44", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-04-05T01:46:51.797Z", + "completed":"2016-04-05T01:46:51.797Z", + "new_balance":"8832.91", + "value":"-4.64" + } + }, + { + "id":"881d84da-7b2b-4a7f-ac7a-60e0f257a95d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-05T05:33:07.642Z", + "completed":"2016-04-05T05:33:07.642Z", + "new_balance":"8751.70", + "value":"-81.21" + } + }, + { + "id":"a8404050-fabe-4f17-a700-a068ced26513", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-04-05T13:38:37.627Z", + "completed":"2016-04-05T13:38:37.627Z", + "new_balance":"8717.27", + "value":"-34.43" + } + }, + { + "id":"51e905b1-2001-4bbf-b9f3-9d698de63e94", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-05T14:50:24.418Z", + "completed":"2016-04-05T14:50:24.418Z", + "new_balance":"8662.43", + "value":"-54.84" + } + }, + { + "id":"489e894f-beb3-4c1a-a066-31e118afbbf8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T16:36:44.340Z", + "completed":"2016-04-05T16:36:44.340Z", + "new_balance":"8655.85", + "value":"-6.58" + } + }, + { + "id":"96880d46-d2c3-4928-aeea-f78471470bf7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-04-05T22:18:30.163Z", + "completed":"2016-04-05T22:18:30.163Z", + "new_balance":"8643.92", + "value":"-11.93" + } + }, + { + "id":"34c978b1-7f28-4d5e-ab89-1eac821f1455", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-04-08T14:25:24.424Z", + "completed":"2016-04-08T14:25:24.424Z", + "new_balance":"8546.00", + "value":"-97.92" + } + }, + { + "id":"ce2456a1-6ef1-4f3c-b5bd-f70abefda539", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-04-10T21:31:15.509Z", + "completed":"2016-04-10T21:31:15.509Z", + "new_balance":"8489.87", + "value":"-56.13" + } + }, + { + "id":"3cb39dab-ab24-456c-843d-b9a25108c5fd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-04-11T09:05:44.128Z", + "completed":"2016-04-11T09:05:44.128Z", + "new_balance":"8408.66", + "value":"-81.21" + } + }, + { + "id":"a27f4e60-0c73-4848-a570-dfa79f8f4765", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-04-11T20:42:10.893Z", + "completed":"2016-04-11T20:42:10.893Z", + "new_balance":"8381.21", + "value":"-27.45" + } + }, + { + "id":"f26b7859-f667-4ff3-92f3-4f99c51d9c8f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-04-13T09:47:23.086Z", + "completed":"2016-04-13T09:47:23.086Z", + "new_balance":"8353.23", + "value":"-27.98" + } + }, + { + "id":"f86d93a0-d508-44af-8d9f-fa8c88228ec1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2016-04-18T15:25:45.898Z", + "completed":"2016-04-18T15:25:45.898Z", + "new_balance":"10703.44", + "value":"2350.21" + } + }, + { + "id":"c584da94-fbf7-4597-a928-32abc7f8cdc9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-04-25T16:14:33.206Z", + "completed":"2016-04-25T16:14:33.206Z", + "new_balance":"10386.23", + "value":"-317.21" + } + }, + { + "id":"1e427024-d261-4be2-b25e-313dc171dbcc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-05-02T07:00:25.455Z", + "completed":"2016-05-02T07:00:25.455Z", + "new_balance":"10351.80", + "value":"-34.43" + } + }, + { + "id":"873c2750-aa56-4225-88a5-ad85777203e9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-05-02T17:37:31.548Z", + "completed":"2016-05-02T17:37:31.548Z", + "new_balance":"10304.90", + "value":"-46.90" + } + }, + { + "id":"714fdd6f-89f2-4e06-9f13-c08310fdf56c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T18:13:50.029Z", + "completed":"2016-05-02T18:13:50.029Z", + "new_balance":"10270.47", + "value":"-34.43" + } + }, + { + "id":"21fa8e06-dbf2-4860-889e-772e7ae3377a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-05-02T23:14:40.489Z", + "completed":"2016-05-02T23:14:40.489Z", + "new_balance":"10165.75", + "value":"-104.72" + } + }, + { + "id":"f1820e55-5e35-4756-8ccc-33f5c2af642b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T05:30:47.464Z", + "completed":"2016-05-04T05:30:47.464Z", + "new_balance":"10084.54", + "value":"-81.21" + } + }, + { + "id":"fcce3906-ff72-4997-a27d-c6530077dcec", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-04T13:11:23.773Z", + "completed":"2016-05-04T13:11:23.773Z", + "new_balance":"10077.96", + "value":"-6.58" + } + }, + { + "id":"77c6c733-9940-48db-b961-eb1a346b5db5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-06T09:28:56.817Z", + "completed":"2016-05-06T09:28:56.817Z", + "new_balance":"9997.75", + "value":"-80.21" + } + }, + { + "id":"2a6c5100-4ba2-4a67-ab5a-25b62ef13c40", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-07T13:06:48.288Z", + "completed":"2016-05-07T13:06:48.288Z", + "new_balance":"9903.42", + "value":"-94.33" + } + }, + { + "id":"01f594a2-6f46-4cf1-aa25-5493576487c7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-07T17:00:21.055Z", + "completed":"2016-05-07T17:00:21.055Z", + "new_balance":"9868.91", + "value":"-34.51" + } + }, + { + "id":"28514e11-48f4-4123-b41b-ed8da6bc077e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-09T10:22:47.514Z", + "completed":"2016-05-09T10:22:47.514Z", + "new_balance":"9856.98", + "value":"-11.93" + } + }, + { + "id":"b5ebb318-9471-4014-bf69-d0bbf96f6039", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-09T10:34:54.214Z", + "completed":"2016-05-09T10:34:54.214Z", + "new_balance":"9814.03", + "value":"-42.95" + } + }, + { + "id":"cdc625f9-b33b-417f-b43b-e83f07519629", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-05-13T01:31:54.968Z", + "completed":"2016-05-13T01:31:54.968Z", + "new_balance":"9785.84", + "value":"-28.19" + } + }, + { + "id":"f5a3fbbb-bdc0-4a99-8644-71af300f7c55", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-05-13T10:26:26.944Z", + "completed":"2016-05-13T10:26:26.944Z", + "new_balance":"9751.33", + "value":"-34.51" + } + }, + { + "id":"c82618b9-4f3f-451f-9ed6-5b23b816c188", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-05-13T18:44:36.414Z", + "completed":"2016-05-13T18:44:36.414Z", + "new_balance":"9744.75", + "value":"-6.58" + } + }, + { + "id":"05a2c58d-f45b-44f5-89e5-9b45cc28f41c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-05-14T18:12:30.026Z", + "completed":"2016-05-14T18:12:30.026Z", + "new_balance":"9663.54", + "value":"-81.21" + } + }, + { + "id":"a7edcc09-fc86-447b-80ef-6b367f34c17b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-05-14T23:15:38.116Z", + "completed":"2016-05-14T23:15:38.116Z", + "new_balance":"9598.31", + "value":"-65.23" + } + }, + { + "id":"ce6e69e5-53c5-4b69-8a3c-44fc2452d349", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-05-15T01:07:32.852Z", + "completed":"2016-05-15T01:07:32.852Z", + "new_balance":"9570.33", + "value":"-27.98" + } + }, + { + "id":"b111ba08-e6df-414e-ab21-7ed703a82a99", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-05-30T10:24:19.208Z", + "completed":"2016-05-30T10:24:19.208Z", + "new_balance":"9253.12", + "value":"-317.21" + } + }, + { + "id":"f48f7e50-bb37-429e-bc1d-cbc8d640def2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2016-05-30T21:59:18.198Z", + "completed":"2016-05-30T21:59:18.198Z", + "new_balance":"11603.33", + "value":"2350.21" + } + }, + { + "id":"14b5b383-cb7a-4220-88e2-b8b71faf2e27", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-06-01T08:49:42.990Z", + "completed":"2016-06-01T08:49:42.990Z", + "new_balance":"11556.43", + "value":"-46.90" + } + }, + { + "id":"86e7d476-3068-4a79-a261-f031629e4835", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-06-01T10:18:24.598Z", + "completed":"2016-06-01T10:18:24.598Z", + "new_balance":"11522.00", + "value":"-34.43" + } + }, + { + "id":"f16bd198-739f-474e-889d-fca8d2df2df9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T12:28:49.830Z", + "completed":"2016-06-01T12:28:49.830Z", + "new_balance":"11487.57", + "value":"-34.43" + } + }, + { + "id":"41a4bbef-2f6e-4817-847b-2e3a45d215ec", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-06-01T14:34:32.241Z", + "completed":"2016-06-01T14:34:32.241Z", + "new_balance":"11382.85", + "value":"-104.72" + } + }, + { + "id":"55958f65-b872-4807-a975-b0460488ab49", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-06-04T10:26:06.728Z", + "completed":"2016-06-04T10:26:06.728Z", + "new_balance":"11319.28", + "value":"-63.57" + } + }, + { + "id":"f8b49c16-260a-46f7-a56f-b4c7b3635f90", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-04T16:17:02.351Z", + "completed":"2016-06-04T16:17:02.351Z", + "new_balance":"11257.91", + "value":"-61.37" + } + }, + { + "id":"8d9bea55-0e0e-4454-8564-cfefe72cd3d9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T09:13:08.939Z", + "completed":"2016-06-11T09:13:08.939Z", + "new_balance":"11176.12", + "value":"-81.79" + } + }, + { + "id":"01f27e9d-2649-414c-9cd9-e4d1df0ffca9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-11T12:36:04.421Z", + "completed":"2016-06-11T12:36:04.421Z", + "new_balance":"11087.63", + "value":"-88.49" + } + }, + { + "id":"a15db7f7-07d9-4e27-a5b7-93b9dbaa81fd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-11T20:27:22.748Z", + "completed":"2016-06-11T20:27:22.748Z", + "new_balance":"11042.16", + "value":"-45.47" + } + }, + { + "id":"f11a74bf-1c41-4178-ace6-39300f6f81e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-06-12T10:39:07.942Z", + "completed":"2016-06-12T10:39:07.942Z", + "new_balance":"11035.39", + "value":"-6.77" + } + }, + { + "id":"0e0475aa-3f8b-4b34-9ae3-920a30037d05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-06-12T13:43:06.643Z", + "completed":"2016-06-12T13:43:06.643Z", + "new_balance":"10995.75", + "value":"-39.64" + } + }, + { + "id":"a2ea2ea8-90ab-4738-bc0d-3671ab6e943d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-06-16T22:52:07.707Z", + "completed":"2016-06-16T22:52:07.707Z", + "new_balance":"10891.56", + "value":"-104.19" + } + }, + { + "id":"6fcdb1ba-b19d-4735-8907-100cb89e8df3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-06-29T14:35:09.800Z", + "completed":"2016-06-29T14:35:09.800Z", + "new_balance":"10863.58", + "value":"-27.98" + } + }, + { + "id":"f6be9141-b3d3-4fb7-9cb0-dd2892db4b39", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2016-06-30T00:48:05.708Z", + "completed":"2016-06-30T00:48:05.708Z", + "new_balance":"13213.79", + "value":"2350.21" + } + }, + { + "id":"eddf0cee-75c0-4507-974c-e4743e98b0d9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-06-30T11:56:55.792Z", + "completed":"2016-06-30T11:56:55.792Z", + "new_balance":"12896.58", + "value":"-317.21" + } + }, + { + "id":"e0e4275c-d73d-4517-bddc-d74dc71e0e8c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-07-01T01:52:01.411Z", + "completed":"2016-07-01T01:52:01.411Z", + "new_balance":"12849.68", + "value":"-46.90" + } + }, + { + "id":"aaef29c2-d4fa-4095-9d4f-5f7c2b3ba368", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-01T05:11:25.466Z", + "completed":"2016-07-01T05:11:25.466Z", + "new_balance":"12744.96", + "value":"-104.72" + } + }, + { + "id":"56fb514e-9f50-494e-9e68-d5df1e68060c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-07-01T11:48:30.021Z", + "completed":"2016-07-01T11:48:30.021Z", + "new_balance":"12710.53", + "value":"-34.43" + } + }, + { + "id":"4bc10081-cd3a-41c3-8a5f-85d5ca7e7251", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T15:12:19.792Z", + "completed":"2016-07-01T15:12:19.792Z", + "new_balance":"12676.10", + "value":"-34.43" + } + }, + { + "id":"e6ad83af-3b36-46d9-87c7-25a4eeb7c0b9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-05T06:44:54.526Z", + "completed":"2016-07-05T06:44:54.526Z", + "new_balance":"12594.89", + "value":"-81.21" + } + }, + { + "id":"1323db3e-70c2-482a-97c8-0087e49fc530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-05T16:13:12.059Z", + "completed":"2016-07-05T16:13:12.059Z", + "new_balance":"12527.44", + "value":"-67.45" + } + }, + { + "id":"999c24ab-728b-42ea-a5ef-b3327a365c4e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-08T23:47:39.875Z", + "completed":"2016-07-08T23:47:39.875Z", + "new_balance":"12516.53", + "value":"-10.91" + } + }, + { + "id":"c35367a0-fbb2-4d5e-8b24-fa1846966162", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-10T12:18:00.833Z", + "completed":"2016-07-10T12:18:00.833Z", + "new_balance":"12470.07", + "value":"-46.46" + } + }, + { + "id":"abccc5ac-83fb-4fbe-b9b4-8fa5497e1404", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-12T01:06:15.001Z", + "completed":"2016-07-12T01:06:15.001Z", + "new_balance":"12413.43", + "value":"-56.64" + } + }, + { + "id":"98ae4bad-556e-46f7-b261-0e7584f5e1d8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-07-12T04:30:28.368Z", + "completed":"2016-07-12T04:30:28.368Z", + "new_balance":"12379.00", + "value":"-34.43" + } + }, + { + "id":"e5d22450-c935-4a76-9a16-10e6d97ca50e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-07-13T15:48:04.850Z", + "completed":"2016-07-13T15:48:04.850Z", + "new_balance":"12375.41", + "value":"-3.59" + } + }, + { + "id":"e075b2de-5b4e-4eff-8ece-0dc22dd2cbfd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-07-13T20:17:59.678Z", + "completed":"2016-07-13T20:17:59.678Z", + "new_balance":"12369.76", + "value":"-5.65" + } + }, + { + "id":"f42f6c52-0f58-4f63-a665-00983168b231", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-07-18T17:53:19.457Z", + "completed":"2016-07-18T17:53:19.457Z", + "new_balance":"12286.67", + "value":"-83.09" + } + }, + { + "id":"e9ce9ac1-9cca-4cae-8262-17526b72e880", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-07-20T11:28:26.385Z", + "completed":"2016-07-20T11:28:26.385Z", + "new_balance":"12205.23", + "value":"-81.44" + } + }, + { + "id":"d267a2f8-5837-4ddf-a0b8-3258afd71761", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-07-20T19:26:08.022Z", + "completed":"2016-07-20T19:26:08.022Z", + "new_balance":"12124.02", + "value":"-81.21" + } + }, + { + "id":"08cfbb4e-492d-48a1-96bd-82fd027f6357", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-07-24T02:33:17.091Z", + "completed":"2016-07-24T02:33:17.091Z", + "new_balance":"12096.57", + "value":"-27.45" + } + }, + { + "id":"4b6cc53f-f22b-406e-8000-d86c78d67f8d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-07-29T00:41:15.062Z", + "completed":"2016-07-29T00:41:15.062Z", + "new_balance":"14446.78", + "value":"2350.21" + } + }, + { + "id":"16295e39-bb71-43b1-8b55-1255726e8f71", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-07-29T10:12:14.051Z", + "completed":"2016-07-29T10:12:14.051Z", + "new_balance":"14418.80", + "value":"-27.98" + } + }, + { + "id":"36e3c6da-bb0d-4c88-aa37-22451e456c97", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-07-30T14:24:45.234Z", + "completed":"2016-07-30T14:24:45.234Z", + "new_balance":"14101.59", + "value":"-317.21" + } + }, + { + "id":"3880bc66-4c45-47f2-a105-926b563f0913", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-08-01T03:10:02.713Z", + "completed":"2016-08-01T03:10:02.713Z", + "new_balance":"13996.87", + "value":"-104.72" + } + }, + { + "id":"deda1cdb-9062-4a25-9d89-64d95b949dc7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-08-01T08:50:59.961Z", + "completed":"2016-08-01T08:50:59.961Z", + "new_balance":"13962.44", + "value":"-34.43" + } + }, + { + "id":"7453bf6d-0096-4b4b-820f-21a8e3aa6d03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T19:39:42.363Z", + "completed":"2016-08-01T19:39:42.363Z", + "new_balance":"13928.01", + "value":"-34.43" + } + }, + { + "id":"3678cdbc-5329-4c50-b188-54a6d6219eb1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-08-01T20:57:53.927Z", + "completed":"2016-08-01T20:57:53.927Z", + "new_balance":"13881.11", + "value":"-46.90" + } + }, + { + "id":"2b4f07ae-5a8c-469c-a557-c9753fcd4f36", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-03T16:47:21.692Z", + "completed":"2016-08-03T16:47:21.692Z", + "new_balance":"13874.39", + "value":"-6.72" + } + }, + { + "id":"c298905c-dd68-4e2b-9f4c-06107fe89c21", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-04T19:05:26.646Z", + "completed":"2016-08-04T19:05:26.646Z", + "new_balance":"13793.18", + "value":"-81.21" + } + }, + { + "id":"2598a722-36e6-4844-bf40-d0a3e3810fed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-08T00:35:50.357Z", + "completed":"2016-08-08T00:35:50.357Z", + "new_balance":"13777.89", + "value":"-15.29" + } + }, + { + "id":"a30d7bff-68bc-4574-9a2c-8c9e8a282c4b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T06:52:13.449Z", + "completed":"2016-08-08T06:52:13.449Z", + "new_balance":"13696.72", + "value":"-81.17" + } + }, + { + "id":"d91f039d-2b3b-4fb9-9bbd-28d726e4995c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-08T10:17:36.325Z", + "completed":"2016-08-08T10:17:36.325Z", + "new_balance":"13668.69", + "value":"-28.03" + } + }, + { + "id":"5e0d5116-21cb-49e1-b4e9-08747e8ab6df", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-08T14:44:41.781Z", + "completed":"2016-08-08T14:44:41.781Z", + "new_balance":"13561.88", + "value":"-106.81" + } + }, + { + "id":"07a760e2-95d9-4ed8-8c89-cab8a62049b5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-09T15:40:17.207Z", + "completed":"2016-08-09T15:40:17.207Z", + "new_balance":"13518.93", + "value":"-42.95" + } + }, + { + "id":"7eeceffc-8338-4ce2-8a9d-e72f95b5bdce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-08-14T04:36:01.301Z", + "completed":"2016-08-14T04:36:01.301Z", + "new_balance":"13492.20", + "value":"-26.73" + } + }, + { + "id":"66919b49-9a21-4287-a407-64f8d54b1c6d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-08-15T10:23:29.324Z", + "completed":"2016-08-15T10:23:29.324Z", + "new_balance":"13450.66", + "value":"-41.54" + } + }, + { + "id":"b6c7ccdc-af05-4ec7-b124-ba72b799b61e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-08-19T17:34:50.211Z", + "completed":"2016-08-19T17:34:50.211Z", + "new_balance":"13443.67", + "value":"-6.99" + } + }, + { + "id":"e4365aea-81d4-4a84-b502-4fbb12a5fb59", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-08-22T15:08:09.657Z", + "completed":"2016-08-22T15:08:09.657Z", + "new_balance":"13393.73", + "value":"-49.94" + } + }, + { + "id":"4b9128ed-7f99-4f4f-9d09-617e3e90ddc1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-08-26T18:56:56.098Z", + "completed":"2016-08-26T18:56:56.098Z", + "new_balance":"13312.52", + "value":"-81.21" + } + }, + { + "id":"26f73768-4dfd-4a0e-8ccc-a9fc7b4d2673", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-28T22:43:59.415Z", + "completed":"2016-08-28T22:43:59.415Z", + "new_balance":"12995.31", + "value":"-317.21" + } + }, + { + "id":"aa636254-4da8-49a5-ba47-3a7208628033", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-08-29T09:59:32.916Z", + "completed":"2016-08-29T09:59:32.916Z", + "new_balance":"12967.33", + "value":"-27.98" + } + }, + { + "id":"5de161b6-bce3-479f-8703-f4a68a2444c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-08-29T16:40:43.964Z", + "completed":"2016-08-29T16:40:43.964Z", + "new_balance":"15317.54", + "value":"2350.21" + } + }, + { + "id":"93e732ff-bce3-433c-962b-96c3f0467d13", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-08-30T11:30:58.551Z", + "completed":"2016-08-30T11:30:58.551Z", + "new_balance":"15000.33", + "value":"-317.21" + } + }, + { + "id":"76bd1f7a-9b8d-42a5-9364-aa08fa6458fe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-09-01T07:30:26.967Z", + "completed":"2016-09-01T07:30:26.967Z", + "new_balance":"14953.43", + "value":"-46.90" + } + }, + { + "id":"2bcf3a93-d5df-43f2-8cda-e73f85ab1133", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T17:07:27.008Z", + "completed":"2016-09-01T17:07:27.008Z", + "new_balance":"14919.00", + "value":"-34.43" + } + }, + { + "id":"6991e182-fa3a-4916-988a-225f39a8f67b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-09-01T21:52:47.178Z", + "completed":"2016-09-01T21:52:47.178Z", + "new_balance":"14884.57", + "value":"-34.43" + } + }, + { + "id":"7bb0a62c-05f2-424e-bbf3-83d86d2077c1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-09-01T23:13:53.001Z", + "completed":"2016-09-01T23:13:53.001Z", + "new_balance":"14779.85", + "value":"-104.72" + } + }, + { + "id":"9163cf00-afec-412a-a539-783afef7c0e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-09-09T05:39:07.173Z", + "completed":"2016-09-09T05:39:07.173Z", + "new_balance":"14716.28", + "value":"-63.57" + } + }, + { + "id":"c375a1da-7c68-4662-a89e-5123950d1428", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-09T22:10:54.276Z", + "completed":"2016-09-09T22:10:54.276Z", + "new_balance":"14654.91", + "value":"-61.37" + } + }, + { + "id":"9c337f9e-1dad-4b78-8fbc-e2c389b252f4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-17T22:11:42.706Z", + "completed":"2016-09-17T22:11:42.706Z", + "new_balance":"14566.42", + "value":"-88.49" + } + }, + { + "id":"32651484-36e0-428b-a581-372e7a1976fa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-09-18T03:10:31.546Z", + "completed":"2016-09-18T03:10:31.546Z", + "new_balance":"14559.65", + "value":"-6.77" + } + }, + { + "id":"7718f70c-c9a0-411a-a68a-fb8e4c167b3d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T07:06:02.002Z", + "completed":"2016-09-18T07:06:02.002Z", + "new_balance":"14477.86", + "value":"-81.79" + } + }, + { + "id":"fb208005-ac2b-421b-be16-e3f6c0261141", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-18T09:30:28.734Z", + "completed":"2016-09-18T09:30:28.734Z", + "new_balance":"14432.39", + "value":"-45.47" + } + }, + { + "id":"62365199-39fc-4679-bb2a-cfcd607aba6e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-09-18T18:54:14.726Z", + "completed":"2016-09-18T18:54:14.726Z", + "new_balance":"14392.75", + "value":"-39.64" + } + }, + { + "id":"a6ddbf28-f4f8-4bbe-8f46-a95447586cef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-09-22T09:14:35.131Z", + "completed":"2016-09-22T09:14:35.131Z", + "new_balance":"14288.56", + "value":"-104.19" + } + }, + { + "id":"7f2f4ada-6c05-4fba-b41e-3ba75c6c8026", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2016-09-29T12:48:47.645Z", + "completed":"2016-09-29T12:48:47.645Z", + "new_balance":"16638.77", + "value":"2350.21" + } + }, + { + "id":"7bc6180d-9b4f-45e0-92e1-90a4f3df0bf3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-09-29T14:29:15.796Z", + "completed":"2016-09-29T14:29:15.796Z", + "new_balance":"16610.79", + "value":"-27.98" + } + }, + { + "id":"c28c5acb-771e-48b7-8e26-d2dd245ece05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-09-30T00:54:33.047Z", + "completed":"2016-09-30T00:54:33.047Z", + "new_balance":"16293.58", + "value":"-317.21" + } + }, + { + "id":"100a3217-343f-454e-aaf2-768458ca6bbc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-10-01T01:49:13.622Z", + "completed":"2016-10-01T01:49:13.622Z", + "new_balance":"16259.15", + "value":"-34.43" + } + }, + { + "id":"2fbb2372-41dc-4db2-b82c-3927129390c1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-10-01T03:02:05.458Z", + "completed":"2016-10-01T03:02:05.458Z", + "new_balance":"16212.25", + "value":"-46.90" + } + }, + { + "id":"a8dd1ff3-8e2c-4739-abd3-4126e7d5afef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-10-01T15:50:32.040Z", + "completed":"2016-10-01T15:50:32.040Z", + "new_balance":"16177.82", + "value":"-34.43" + } + }, + { + "id":"37a92ed9-ad49-4e91-98ba-6da360e02114", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-10-01T16:05:47.366Z", + "completed":"2016-10-01T16:05:47.366Z", + "new_balance":"16073.10", + "value":"-104.72" + } + }, + { + "id":"6a59f225-75b5-4f34-a209-c5dbedf51e9a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-02T18:09:45.597Z", + "completed":"2016-10-02T18:09:45.597Z", + "new_balance":"15978.77", + "value":"-94.33" + } + }, + { + "id":"cd0befb5-a4b9-4259-8f3e-416c9b744364", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T10:17:28.043Z", + "completed":"2016-10-05T10:17:28.043Z", + "new_balance":"15972.19", + "value":"-6.58" + } + }, + { + "id":"a46424f3-818e-4aec-8b9e-84577e5ab978", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-05T12:35:05.800Z", + "completed":"2016-10-05T12:35:05.800Z", + "new_balance":"15890.98", + "value":"-81.21" + } + }, + { + "id":"d7432c70-0a75-443b-9d77-1c28c9fd6123", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-10-05T15:50:27.920Z", + "completed":"2016-10-05T15:50:27.920Z", + "new_balance":"15879.05", + "value":"-11.93" + } + }, + { + "id":"3535c1d5-49ab-478f-a7e9-ee7c5069f528", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2016-10-05T17:13:55.566Z", + "completed":"2016-10-05T17:13:55.566Z", + "new_balance":"15874.41", + "value":"-4.64" + } + }, + { + "id":"d93519d7-3fbd-4a71-a275-e8708695570e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-05T17:59:40.153Z", + "completed":"2016-10-05T17:59:40.153Z", + "new_balance":"15819.57", + "value":"-54.84" + } + }, + { + "id":"61eee633-cd75-454a-9802-8ba168416419", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2016-10-05T18:08:37.214Z", + "completed":"2016-10-05T18:08:37.214Z", + "new_balance":"15785.14", + "value":"-34.43" + } + }, + { + "id":"bfdbbbcb-1291-4ae7-8250-c53223305062", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-05T19:29:40.771Z", + "completed":"2016-10-05T19:29:40.771Z", + "new_balance":"15743.71", + "value":"-41.43" + } + }, + { + "id":"42bc2e12-e217-4102-9a68-47cd6abbf730", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-10-09T11:55:39.941Z", + "completed":"2016-10-09T11:55:39.941Z", + "new_balance":"15645.79", + "value":"-97.92" + } + }, + { + "id":"3b69e6e2-4d3c-4c6b-b705-2823af98a930", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-10-11T07:52:27.100Z", + "completed":"2016-10-11T07:52:27.100Z", + "new_balance":"15589.66", + "value":"-56.13" + } + }, + { + "id":"8d0950af-b20b-4c86-8c96-9c6de0ac1990", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-10-12T12:25:31.982Z", + "completed":"2016-10-12T12:25:31.982Z", + "new_balance":"15562.21", + "value":"-27.45" + } + }, + { + "id":"5c72d1d8-e675-4d61-a3a0-049e6d18fee4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-10-12T15:50:33.116Z", + "completed":"2016-10-12T15:50:33.116Z", + "new_balance":"15481.00", + "value":"-81.21" + } + }, + { + "id":"931a3955-7eb0-4fa0-9a8f-66a5c8cee226", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-10-20T04:27:07.583Z", + "completed":"2016-10-20T04:27:07.583Z", + "new_balance":"15453.02", + "value":"-27.98" + } + }, + { + "id":"1b02bd62-07a1-4bfc-8a50-4ac3e3d69c08", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2016-10-29T11:38:18.641Z", + "completed":"2016-10-29T11:38:18.641Z", + "new_balance":"17803.23", + "value":"2350.21" + } + }, + { + "id":"b166da4b-0fac-40f7-91d9-1160206b9364", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-10-30T06:09:09.327Z", + "completed":"2016-10-30T06:09:09.327Z", + "new_balance":"17486.02", + "value":"-317.21" + } + }, + { + "id":"600aad27-f8ae-4572-8f86-4c64f0ded7ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-11-02T03:48:58.224Z", + "completed":"2016-11-02T03:48:58.224Z", + "new_balance":"17451.59", + "value":"-34.43" + } + }, + { + "id":"e6d6de8d-d76b-432b-97cb-f2d48eaeb9bc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-11-02T06:30:46.071Z", + "completed":"2016-11-02T06:30:46.071Z", + "new_balance":"17404.69", + "value":"-46.90" + } + }, + { + "id":"8c205e11-1f70-4003-8ece-20f90eb492d4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2016-11-02T07:49:29.595Z", + "completed":"2016-11-02T07:49:29.595Z", + "new_balance":"17370.26", + "value":"-34.43" + } + }, + { + "id":"1cb8086a-9497-4373-bc31-e165c01a77ae", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-11-02T21:46:10.278Z", + "completed":"2016-11-02T21:46:10.278Z", + "new_balance":"17265.54", + "value":"-104.72" + } + }, + { + "id":"db71faad-bcd3-4ab7-8f59-a91260de3b28", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T06:29:13.971Z", + "completed":"2016-11-04T06:29:13.971Z", + "new_balance":"17258.96", + "value":"-6.58" + } + }, + { + "id":"8b3dc528-5aa4-4656-a978-adb26a9e7d4a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-04T06:37:59.224Z", + "completed":"2016-11-04T06:37:59.224Z", + "new_balance":"17177.75", + "value":"-81.21" + } + }, + { + "id":"4ca4ce96-4e64-40f6-910b-64ee715cfcf0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-06T22:21:48.686Z", + "completed":"2016-11-06T22:21:48.686Z", + "new_balance":"17097.54", + "value":"-80.21" + } + }, + { + "id":"dc0d73c8-e8ae-46a5-9a2e-ad0d20cb1782", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-07T02:45:09.261Z", + "completed":"2016-11-07T02:45:09.261Z", + "new_balance":"17063.03", + "value":"-34.51" + } + }, + { + "id":"65bb9e3c-dd99-4a59-91f4-cb9703ca5dd8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-07T07:52:43.768Z", + "completed":"2016-11-07T07:52:43.768Z", + "new_balance":"16968.70", + "value":"-94.33" + } + }, + { + "id":"4de4fca0-cc5b-4e8c-9841-70d9ae45343b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-09T00:17:05.319Z", + "completed":"2016-11-09T00:17:05.319Z", + "new_balance":"16925.75", + "value":"-42.95" + } + }, + { + "id":"a5ed9930-48b4-4085-a60a-a6f8db315e67", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-09T19:48:43.611Z", + "completed":"2016-11-09T19:48:43.611Z", + "new_balance":"16913.82", + "value":"-11.93" + } + }, + { + "id":"9f5f6a65-a84a-46d6-96dc-e1f36c1dfa58", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2016-11-13T09:47:02.848Z", + "completed":"2016-11-13T09:47:02.848Z", + "new_balance":"16885.63", + "value":"-28.19" + } + }, + { + "id":"6d697e13-e434-47be-b12a-c6c1744cba34", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-11-13T11:14:17.453Z", + "completed":"2016-11-13T11:14:17.453Z", + "new_balance":"16879.05", + "value":"-6.58" + } + }, + { + "id":"a6d32fe9-58ad-4e88-886e-080cc7d2089e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-11-13T20:11:04.864Z", + "completed":"2016-11-13T20:11:04.864Z", + "new_balance":"16844.54", + "value":"-34.51" + } + }, + { + "id":"b17512e8-eb15-4687-8a85-2a6bf998af42", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-11-14T02:41:16.978Z", + "completed":"2016-11-14T02:41:16.978Z", + "new_balance":"16779.31", + "value":"-65.23" + } + }, + { + "id":"88b30a1c-f76b-4009-a994-d927ba5a89ff", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-11-14T02:43:26.205Z", + "completed":"2016-11-14T02:43:26.205Z", + "new_balance":"16698.10", + "value":"-81.21" + } + }, + { + "id":"d447cffd-0ee3-41be-8eac-f4b7bf2db0df", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-11-15T23:35:07.836Z", + "completed":"2016-11-15T23:35:07.836Z", + "new_balance":"16670.12", + "value":"-27.98" + } + }, + { + "id":"fd61c37f-47be-4561-a57d-3039968fc9b2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-11-30T10:04:53.782Z", + "completed":"2016-11-30T10:04:53.782Z", + "new_balance":"16352.91", + "value":"-317.21" + } + }, + { + "id":"c31367ea-d9a2-4f3f-abcd-6cce11fad96e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2016-11-30T10:45:23.391Z", + "completed":"2016-11-30T10:45:23.391Z", + "new_balance":"18703.12", + "value":"2350.21" + } + }, + { + "id":"33c9a524-9646-4734-b137-74fffb3d3514", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2016-12-01T00:29:11.288Z", + "completed":"2016-12-01T00:29:11.288Z", + "new_balance":"18598.40", + "value":"-104.72" + } + }, + { + "id":"77482bd6-cdf5-4aef-9796-8531e0e8c902", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T03:12:44.622Z", + "completed":"2016-12-01T03:12:44.622Z", + "new_balance":"18563.97", + "value":"-34.43" + } + }, + { + "id":"cd8df943-b7cb-4439-86ad-c00a908863cd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2016-12-01T13:39:42.101Z", + "completed":"2016-12-01T13:39:42.101Z", + "new_balance":"18517.07", + "value":"-46.90" + } + }, + { + "id":"3ce6ea3d-971e-4db5-a163-d2ebb9ba03ac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2016-12-01T22:51:22.484Z", + "completed":"2016-12-01T22:51:22.484Z", + "new_balance":"18482.64", + "value":"-34.43" + } + }, + { + "id":"e1908b85-cebc-4eb7-b3a4-1b90cab644a5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-04T00:19:37.788Z", + "completed":"2016-12-04T00:19:37.788Z", + "new_balance":"18421.27", + "value":"-61.37" + } + }, + { + "id":"e58fd08b-6ce4-42cb-b2ac-2e7ed8e8715b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2016-12-04T10:52:11.908Z", + "completed":"2016-12-04T10:52:11.908Z", + "new_balance":"18357.70", + "value":"-63.57" + } + }, + { + "id":"8db1a697-34bd-4963-ab53-77f07e1c5cd0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-11T06:13:16.800Z", + "completed":"2016-12-11T06:13:16.800Z", + "new_balance":"18269.21", + "value":"-88.49" + } + }, + { + "id":"2c776f63-08a9-4481-9f42-702107c2e14d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T06:55:16.593Z", + "completed":"2016-12-11T06:55:16.593Z", + "new_balance":"18187.42", + "value":"-81.79" + } + }, + { + "id":"5ad1d3bd-68e9-4d36-a2df-a436e69cb088", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-11T07:12:33.532Z", + "completed":"2016-12-11T07:12:33.532Z", + "new_balance":"18141.95", + "value":"-45.47" + } + }, + { + "id":"42fdbe40-3171-4134-bd1b-07ba55732f7c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2016-12-12T18:40:10.094Z", + "completed":"2016-12-12T18:40:10.094Z", + "new_balance":"18102.31", + "value":"-39.64" + } + }, + { + "id":"7d35d393-2bda-4592-85ff-11067c5a5e47", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2016-12-12T19:39:08.585Z", + "completed":"2016-12-12T19:39:08.585Z", + "new_balance":"18095.54", + "value":"-6.77" + } + }, + { + "id":"7920a234-5d85-44fe-b1b7-97298bdcc2c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2016-12-16T23:30:37.216Z", + "completed":"2016-12-16T23:30:37.216Z", + "new_balance":"17991.35", + "value":"-104.19" + } + }, + { + "id":"7bb95280-09be-44ce-9bf5-b85a7ba0cde6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2016-12-29T09:29:46.076Z", + "completed":"2016-12-29T09:29:46.076Z", + "new_balance":"17963.37", + "value":"-27.98" + } + }, + { + "id":"2d47b536-3b67-41c6-b21e-6c78ac897a53", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2016-12-30T02:20:39.837Z", + "completed":"2016-12-30T02:20:39.837Z", + "new_balance":"20313.58", + "value":"2350.21" + } + }, + { + "id":"4eb4a2a5-57e3-4728-acea-d9a11c095368", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2016-12-30T05:25:18.112Z", + "completed":"2016-12-30T05:25:18.112Z", + "new_balance":"19996.37", + "value":"-317.21" + } + }, + { + "id":"155e6ab0-fa47-4fde-90d8-a22505b88bc6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-01-01T09:41:43.028Z", + "completed":"2017-01-01T09:41:43.028Z", + "new_balance":"19961.94", + "value":"-34.43" + } + }, + { + "id":"3b399933-1357-4bc4-a925-799ce381c928", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-01T10:01:45.222Z", + "completed":"2017-01-01T10:01:45.222Z", + "new_balance":"19857.22", + "value":"-104.72" + } + }, + { + "id":"ccbe6a42-bef2-4bc8-8ec7-17f375b2d29e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T15:21:03.039Z", + "completed":"2017-01-01T15:21:03.039Z", + "new_balance":"19822.79", + "value":"-34.43" + } + }, + { + "id":"5d0089d4-0ba7-4859-ba73-40342f4b5a5c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-01-01T23:07:59.471Z", + "completed":"2017-01-01T23:07:59.471Z", + "new_balance":"19775.89", + "value":"-46.90" + } + }, + { + "id":"d0faa6be-ce14-4808-b9ed-41c8449c5530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-05T08:55:38.159Z", + "completed":"2017-01-05T08:55:38.159Z", + "new_balance":"19694.68", + "value":"-81.21" + } + }, + { + "id":"a7966097-2a6f-4b9a-9c56-d3d6928deded", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-05T18:03:33.481Z", + "completed":"2017-01-05T18:03:33.481Z", + "new_balance":"19627.23", + "value":"-67.45" + } + }, + { + "id":"6d5539b8-d42c-4477-ad90-80571c9f9c85", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-08T06:37:25.345Z", + "completed":"2017-01-08T06:37:25.345Z", + "new_balance":"19616.32", + "value":"-10.91" + } + }, + { + "id":"47363558-e7a9-44c4-86ce-2ee3010cd7cc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-10T10:07:06.100Z", + "completed":"2017-01-10T10:07:06.100Z", + "new_balance":"19569.86", + "value":"-46.46" + } + }, + { + "id":"871f8e7c-c0ad-4a2f-b512-a8616e6b5648", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-11T01:40:53.328Z", + "completed":"2017-01-11T01:40:53.328Z", + "new_balance":"19513.22", + "value":"-56.64" + } + }, + { + "id":"d2e25537-fa4d-41f1-be71-981517abf74f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-01-12T15:59:28.963Z", + "completed":"2017-01-12T15:59:28.963Z", + "new_balance":"19478.79", + "value":"-34.43" + } + }, + { + "id":"02ad2ffd-00bd-4cf0-9ef6-a3a268f4d3f9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-01-13T02:08:17.435Z", + "completed":"2017-01-13T02:08:17.435Z", + "new_balance":"19475.20", + "value":"-3.59" + } + }, + { + "id":"fdeb98f5-8d9c-4df8-a793-b4d8dfd5d857", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-01-13T18:27:19.534Z", + "completed":"2017-01-13T18:27:19.534Z", + "new_balance":"19469.55", + "value":"-5.65" + } + }, + { + "id":"c2b01a9b-1ed4-4467-99f6-d3832a290eaa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-01-16T11:35:06.470Z", + "completed":"2017-01-16T11:35:06.470Z", + "new_balance":"19386.46", + "value":"-83.09" + } + }, + { + "id":"7cfafaa1-87f4-4b96-b494-7ebd20ad83fa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-01-19T05:46:39.134Z", + "completed":"2017-01-19T05:46:39.134Z", + "new_balance":"19305.25", + "value":"-81.21" + } + }, + { + "id":"a537540e-618e-4acb-8b11-9e81a5e5d993", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-01-19T10:54:59.300Z", + "completed":"2017-01-19T10:54:59.300Z", + "new_balance":"19223.81", + "value":"-81.44" + } + }, + { + "id":"83fe2d0b-9879-4c4e-9b98-1c722de6fa4b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-01-24T15:01:24.760Z", + "completed":"2017-01-24T15:01:24.760Z", + "new_balance":"19196.36", + "value":"-27.45" + } + }, + { + "id":"b6dd9e83-53f4-4904-8c39-70d50fbdbcb2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-01-27T05:49:31.082Z", + "completed":"2017-01-27T05:49:31.082Z", + "new_balance":"21546.57", + "value":"2350.21" + } + }, + { + "id":"83219123-8da1-4b69-bad0-9d31b1cc5bce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-01-27T18:56:17.968Z", + "completed":"2017-01-27T18:56:17.968Z", + "new_balance":"21518.59", + "value":"-27.98" + } + }, + { + "id":"e5ba3f46-0d10-4f1b-9e2b-40183d4072a0", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-01-31T13:45:10.471Z", + "completed":"2017-01-31T13:45:10.471Z", + "new_balance":"21201.38", + "value":"-317.21" + } + }, + { + "id":"82383f40-0be8-4129-a0b9-c0d5e4a138fb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-02-01T04:11:44.480Z", + "completed":"2017-02-01T04:11:44.480Z", + "new_balance":"21154.48", + "value":"-46.90" + } + }, + { + "id":"296f6ab3-d5bf-4859-a89a-6cd9683fa127", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-02-01T05:05:53.503Z", + "completed":"2017-02-01T05:05:53.503Z", + "new_balance":"21049.76", + "value":"-104.72" + } + }, + { + "id":"79d58255-f596-48b4-965c-c0c88fbccc72", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-02-01T06:32:12.439Z", + "completed":"2017-02-01T06:32:12.439Z", + "new_balance":"21015.33", + "value":"-34.43" + } + }, + { + "id":"cfecc897-dcdf-4ff8-a9e8-5f4ebc2bb691", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-02-01T14:28:05.007Z", + "completed":"2017-02-01T14:28:05.007Z", + "new_balance":"20980.90", + "value":"-34.43" + } + }, + { + "id":"af5576e5-1839-4e59-a7dc-1e0592472ac5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-03T15:04:11.634Z", + "completed":"2017-02-03T15:04:11.634Z", + "new_balance":"20974.18", + "value":"-6.72" + } + }, + { + "id":"005b8538-4b7a-4f7d-afa4-1354b9b84700", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-04T17:19:06.635Z", + "completed":"2017-02-04T17:19:06.635Z", + "new_balance":"20892.97", + "value":"-81.21" + } + }, + { + "id":"494f55ad-6eba-4eee-ba7a-50b0f2150c0c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-06T11:38:00.688Z", + "completed":"2017-02-06T11:38:00.688Z", + "new_balance":"20786.16", + "value":"-106.81" + } + }, + { + "id":"ba8ef6f3-9196-4cdb-9079-70f23684f26a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-06T12:26:15.421Z", + "completed":"2017-02-06T12:26:15.421Z", + "new_balance":"20704.99", + "value":"-81.17" + } + }, + { + "id":"be7ae1ea-3d58-42d8-8206-f0d767ae4dc1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-07T22:04:21.858Z", + "completed":"2017-02-07T22:04:21.858Z", + "new_balance":"20676.96", + "value":"-28.03" + } + }, + { + "id":"a62bf4a7-1f6e-4d30-b237-b8a1646441b1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-08T09:08:19.788Z", + "completed":"2017-02-08T09:08:19.788Z", + "new_balance":"20661.67", + "value":"-15.29" + } + }, + { + "id":"59fbd311-a591-4a64-9eb1-8c41f5a09e02", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-09T23:26:24.082Z", + "completed":"2017-02-09T23:26:24.082Z", + "new_balance":"20618.72", + "value":"-42.95" + } + }, + { + "id":"96bc0361-47a5-429a-8e81-7fc854d37311", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-02-11T08:01:07.039Z", + "completed":"2017-02-11T08:01:07.039Z", + "new_balance":"20591.99", + "value":"-26.73" + } + }, + { + "id":"57dde1b5-f675-4faa-9c96-840a234f21b4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-02-13T04:41:28.230Z", + "completed":"2017-02-13T04:41:28.230Z", + "new_balance":"20550.45", + "value":"-41.54" + } + }, + { + "id":"1ef37af1-4a94-4378-bab9-95fad03f3769", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-02-17T02:05:19.337Z", + "completed":"2017-02-17T02:05:19.337Z", + "new_balance":"20543.46", + "value":"-6.99" + } + }, + { + "id":"ea599892-e504-4da6-912c-e373b2685a63", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-02-19T12:16:12.328Z", + "completed":"2017-02-19T12:16:12.328Z", + "new_balance":"20493.52", + "value":"-49.94" + } + }, + { + "id":"507f53fb-3b19-4252-82bc-751b3884a16f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-02-21T21:30:04.241Z", + "completed":"2017-02-21T21:30:04.241Z", + "new_balance":"20412.31", + "value":"-81.21" + } + }, + { + "id":"f47dcc89-0a66-4134-b8bc-69e1c8b04f46", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-02-24T20:55:18.726Z", + "completed":"2017-02-24T20:55:18.726Z", + "new_balance":"20384.33", + "value":"-27.98" + } + }, + { + "id":"5f455be0-01fb-4ab3-bd86-667979dd04e9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-02-26T04:40:12.659Z", + "completed":"2017-02-26T04:40:12.659Z", + "new_balance":"22734.54", + "value":"2350.21" + } + }, + { + "id":"0fe63e64-b040-49e8-8e89-015a0a589a61", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-03-01T11:16:18.001Z", + "completed":"2017-03-01T11:16:18.001Z", + "new_balance":"22629.82", + "value":"-104.72" + } + }, + { + "id":"00411dba-5b5d-4425-832a-812b8aa7f530", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-03-01T18:50:03.958Z", + "completed":"2017-03-01T18:50:03.958Z", + "new_balance":"22595.39", + "value":"-34.43" + } + }, + { + "id":"14fdc7ef-596f-471d-b82b-3d273501a6b7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-03-01T19:30:09.185Z", + "completed":"2017-03-01T19:30:09.185Z", + "new_balance":"22548.49", + "value":"-46.90" + } + }, + { + "id":"39bc57da-6976-42a1-b121-55be604713a2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T23:21:35.124Z", + "completed":"2017-03-01T23:21:35.124Z", + "new_balance":"22514.06", + "value":"-34.43" + } + }, + { + "id":"a86203fa-06dc-4fe4-8195-80c86de11c7f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-03-09T01:43:12.025Z", + "completed":"2017-03-09T01:43:12.025Z", + "new_balance":"22450.49", + "value":"-63.57" + } + }, + { + "id":"1ff890bc-4e40-4bfd-945f-6a401a5b8b76", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-09T10:17:34.897Z", + "completed":"2017-03-09T10:17:34.897Z", + "new_balance":"22389.12", + "value":"-61.37" + } + }, + { + "id":"af1d43fb-30f6-4031-9c88-f79b56e5ba81", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-17T16:44:14.151Z", + "completed":"2017-03-17T16:44:14.151Z", + "new_balance":"22300.63", + "value":"-88.49" + } + }, + { + "id":"8e4c40e6-f456-46fe-a890-cb97121ac94f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T02:29:17.805Z", + "completed":"2017-03-18T02:29:17.805Z", + "new_balance":"22218.84", + "value":"-81.79" + } + }, + { + "id":"25a79a02-14d9-4291-9196-fecf3f08eb03", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-03-18T05:15:00.117Z", + "completed":"2017-03-18T05:15:00.117Z", + "new_balance":"22179.20", + "value":"-39.64" + } + }, + { + "id":"4b6394cc-c5a6-4c26-a472-eac9a2c05df1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-03-18T10:34:07.924Z", + "completed":"2017-03-18T10:34:07.924Z", + "new_balance":"22172.43", + "value":"-6.77" + } + }, + { + "id":"c47b06fe-f3a1-44b8-9ae3-527c843b55d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-18T14:35:31.489Z", + "completed":"2017-03-18T14:35:31.489Z", + "new_balance":"22126.96", + "value":"-45.47" + } + }, + { + "id":"9d690315-42ae-46e9-b8b4-9b527c8ea165", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-03-22T02:16:46.611Z", + "completed":"2017-03-22T02:16:46.611Z", + "new_balance":"22022.77", + "value":"-104.19" + } + }, + { + "id":"0277bea4-266a-443d-9736-a50bed876cfe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-03-29T03:35:19.091Z", + "completed":"2017-03-29T03:35:19.091Z", + "new_balance":"24372.98", + "value":"2350.21" + } + }, + { + "id":"907dfda3-60f8-477a-b8be-3724255a3667", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-03-29T14:54:23.375Z", + "completed":"2017-03-29T14:54:23.375Z", + "new_balance":"24345.00", + "value":"-27.98" + } + }, + { + "id":"10ea2412-fb7d-4d9a-96fc-e681c42cdc51", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-03-31T01:18:18.303Z", + "completed":"2017-03-31T01:18:18.303Z", + "new_balance":"24027.79", + "value":"-317.21" + } + }, + { + "id":"d894f1f3-cb74-4da4-9ff9-2653b767da3c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T04:22:55.560Z", + "completed":"2017-04-01T04:22:55.560Z", + "new_balance":"23993.36", + "value":"-34.43" + } + }, + { + "id":"f8557eb1-73ac-4d6c-b0d0-e05c16ca2f33", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-04-01T14:13:41.954Z", + "completed":"2017-04-01T14:13:41.954Z", + "new_balance":"23946.46", + "value":"-46.90" + } + }, + { + "id":"5ce61967-2c94-40dc-956f-c4245b23960e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-04-01T14:15:43.237Z", + "completed":"2017-04-01T14:15:43.237Z", + "new_balance":"23841.74", + "value":"-104.72" + } + }, + { + "id":"5660c874-0511-43a1-a557-6181471587e1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-04-01T16:16:45.752Z", + "completed":"2017-04-01T16:16:45.752Z", + "new_balance":"23807.31", + "value":"-34.43" + } + }, + { + "id":"efecc0da-e787-4b65-b078-908b82bbb338", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-02T17:13:59.077Z", + "completed":"2017-04-02T17:13:59.077Z", + "new_balance":"23712.98", + "value":"-94.33" + } + }, + { + "id":"f738c507-3ea2-4e44-97e3-0ae53fbc0436", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T03:20:10.444Z", + "completed":"2017-04-05T03:20:10.444Z", + "new_balance":"23706.40", + "value":"-6.58" + } + }, + { + "id":"d7c62127-f3d8-4fc9-8df1-a19fc1125665", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-05T03:59:48.545Z", + "completed":"2017-04-05T03:59:48.545Z", + "new_balance":"23625.19", + "value":"-81.21" + } + }, + { + "id":"49c82e9d-43ce-4595-8664-2fe9d78d9e73", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-05T04:30:02.524Z", + "completed":"2017-04-05T04:30:02.524Z", + "new_balance":"23570.35", + "value":"-54.84" + } + }, + { + "id":"62704b5d-11d1-43ae-beb9-974829d6d07f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-04-05T06:27:30.427Z", + "completed":"2017-04-05T06:27:30.427Z", + "new_balance":"23558.42", + "value":"-11.93" + } + }, + { + "id":"711dfdc7-ba80-4ef2-893e-59148b530946", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-04-05T10:11:34.401Z", + "completed":"2017-04-05T10:11:34.401Z", + "new_balance":"23523.99", + "value":"-34.43" + } + }, + { + "id":"cf569389-7e5b-4160-8ae2-22c76e9b2ec3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-05T13:24:38.731Z", + "completed":"2017-04-05T13:24:38.731Z", + "new_balance":"23482.56", + "value":"-41.43" + } + }, + { + "id":"1d0c3a53-7d83-4a1e-bda4-05cce49978fe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-04-05T22:40:17.784Z", + "completed":"2017-04-05T22:40:17.784Z", + "new_balance":"23477.92", + "value":"-4.64" + } + }, + { + "id":"945a86b3-3fd5-418f-ab18-15860e954ce3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-04-08T12:46:35.433Z", + "completed":"2017-04-08T12:46:35.433Z", + "new_balance":"23380.00", + "value":"-97.92" + } + }, + { + "id":"4b8fbb3e-79c0-4b80-b9f1-853228dba3ea", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-04-10T22:12:47.516Z", + "completed":"2017-04-10T22:12:47.516Z", + "new_balance":"23323.87", + "value":"-56.13" + } + }, + { + "id":"cff3a41a-3de8-4e4c-8367-a1fffe9599b8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-04-11T00:41:48.646Z", + "completed":"2017-04-11T00:41:48.646Z", + "new_balance":"23296.42", + "value":"-27.45" + } + }, + { + "id":"ff2091a2-990d-494f-ae8c-dd14439d8430", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-04-11T23:48:19.245Z", + "completed":"2017-04-11T23:48:19.245Z", + "new_balance":"23215.21", + "value":"-81.21" + } + }, + { + "id":"fbfdba64-3ea9-42e0-9464-9943adacb436", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-04-13T19:32:14.034Z", + "completed":"2017-04-13T19:32:14.034Z", + "new_balance":"23187.23", + "value":"-27.98" + } + }, + { + "id":"2b1f5103-e16f-439f-a079-aafb11fc6bc3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 78431", + "posted":"2017-04-18T18:11:50.005Z", + "completed":"2017-04-18T18:11:50.005Z", + "new_balance":"25537.44", + "value":"2350.21" + } + }, + { + "id":"7222446f-89e9-452d-90a0-99719db07a08", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-04-25T12:15:42.253Z", + "completed":"2017-04-25T12:15:42.253Z", + "new_balance":"25220.23", + "value":"-317.21" + } + }, + { + "id":"8b1fa2ed-ab8d-446b-b3e9-9fd127cc41c4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-05-02T02:06:15.956Z", + "completed":"2017-05-02T02:06:15.956Z", + "new_balance":"25185.80", + "value":"-34.43" + } + }, + { + "id":"e2a87ecb-7385-41fb-a001-3f0ef5ba90c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-05-02T07:01:22.803Z", + "completed":"2017-05-02T07:01:22.803Z", + "new_balance":"25138.90", + "value":"-46.90" + } + }, + { + "id":"ecef4ec0-bebc-47a2-9afe-97f2830ea8c3", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-05-02T07:56:30.936Z", + "completed":"2017-05-02T07:56:30.936Z", + "new_balance":"25034.18", + "value":"-104.72" + } + }, + { + "id":"f5fef037-5900-4def-871f-b2161ec46b86", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T22:20:25.992Z", + "completed":"2017-05-02T22:20:25.992Z", + "new_balance":"24999.75", + "value":"-34.43" + } + }, + { + "id":"54cc398e-d5a1-42b1-94c2-d7303f57d0cd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T16:11:29.504Z", + "completed":"2017-05-04T16:11:29.504Z", + "new_balance":"24918.54", + "value":"-81.21" + } + }, + { + "id":"a8c05546-aa8a-4ff5-b817-b2bd0e26545a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-04T18:15:20.405Z", + "completed":"2017-05-04T18:15:20.405Z", + "new_balance":"24911.96", + "value":"-6.58" + } + }, + { + "id":"103535f1-1898-4893-b24e-8393ea5d7299", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-06T04:21:06.881Z", + "completed":"2017-05-06T04:21:06.881Z", + "new_balance":"24831.75", + "value":"-80.21" + } + }, + { + "id":"5ba553e7-08d8-4e8f-938c-ce465753027e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-07T07:00:40.444Z", + "completed":"2017-05-07T07:00:40.444Z", + "new_balance":"24797.24", + "value":"-34.51" + } + }, + { + "id":"c65ca5ed-c009-4996-bed2-07a5b0a1852f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-07T12:41:29.762Z", + "completed":"2017-05-07T12:41:29.762Z", + "new_balance":"24702.91", + "value":"-94.33" + } + }, + { + "id":"4421b205-8429-4c07-913f-3cba43738bb8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-09T07:42:24.708Z", + "completed":"2017-05-09T07:42:24.708Z", + "new_balance":"24690.98", + "value":"-11.93" + } + }, + { + "id":"d46f9334-d327-43ea-ba06-175c50a11f6a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-09T12:30:32.524Z", + "completed":"2017-05-09T12:30:32.524Z", + "new_balance":"24648.03", + "value":"-42.95" + } + }, + { + "id":"3c5bd802-0d73-42fc-a598-5a0e7a88e98b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-05-13T03:20:14.642Z", + "completed":"2017-05-13T03:20:14.642Z", + "new_balance":"24641.45", + "value":"-6.58" + } + }, + { + "id":"6d18cb98-dd76-4752-a4a9-5b136bf00461", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-05-13T15:20:37.668Z", + "completed":"2017-05-13T15:20:37.668Z", + "new_balance":"24613.26", + "value":"-28.19" + } + }, + { + "id":"a38e77dd-be1c-459e-a030-f7217adfc9d6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-05-13T22:32:55.241Z", + "completed":"2017-05-13T22:32:55.241Z", + "new_balance":"24578.75", + "value":"-34.51" + } + }, + { + "id":"b7fd49de-2c87-4e3f-bcd2-ee43416d167b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-05-14T09:13:47.019Z", + "completed":"2017-05-14T09:13:47.019Z", + "new_balance":"24513.52", + "value":"-65.23" + } + }, + { + "id":"bdaaf724-b2d9-4998-be7f-7fbc82a256e1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-05-14T20:25:57.073Z", + "completed":"2017-05-14T20:25:57.073Z", + "new_balance":"24432.31", + "value":"-81.21" + } + }, + { + "id":"12fe5737-0d6b-436d-aeb4-b825549c7cff", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-05-15T18:46:15.923Z", + "completed":"2017-05-15T18:46:15.923Z", + "new_balance":"24404.33", + "value":"-27.98" + } + }, + { + "id":"fc0853fa-a1b6-4522-b26b-7ecb3430b4e5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-05-30T05:29:08.415Z", + "completed":"2017-05-30T05:29:08.415Z", + "new_balance":"24087.12", + "value":"-317.21" + } + }, + { + "id":"c59bf404-298a-4dc6-85c5-07096af10f82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 765139", + "posted":"2017-05-30T08:45:59.302Z", + "completed":"2017-05-30T08:45:59.302Z", + "new_balance":"26437.33", + "value":"2350.21" + } + }, + { + "id":"bfb2e269-3fb8-4349-a594-899f8bc91fd7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-06-01T05:25:22.184Z", + "completed":"2017-06-01T05:25:22.184Z", + "new_balance":"26390.43", + "value":"-46.90" + } + }, + { + "id":"f5cf92dc-4151-484b-8832-86396f14d2c6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T14:21:11.673Z", + "completed":"2017-06-01T14:21:11.673Z", + "new_balance":"26356.00", + "value":"-34.43" + } + }, + { + "id":"96ba1395-76fa-4f30-a169-6df8aabcd528", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-06-01T16:31:26.057Z", + "completed":"2017-06-01T16:31:26.057Z", + "new_balance":"26321.57", + "value":"-34.43" + } + }, + { + "id":"51c41dac-ee78-47cd-a8de-77b27dc469dd", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-06-01T19:09:16.844Z", + "completed":"2017-06-01T19:09:16.844Z", + "new_balance":"26216.85", + "value":"-104.72" + } + }, + { + "id":"7717c343-7477-4ed6-9b93-2a0a522e7b50", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-04T10:00:33.508Z", + "completed":"2017-06-04T10:00:33.508Z", + "new_balance":"26155.48", + "value":"-61.37" + } + }, + { + "id":"bcb0c66a-e73b-4e2c-aeda-8f3e511e4482", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-06-04T17:41:11.607Z", + "completed":"2017-06-04T17:41:11.607Z", + "new_balance":"26091.91", + "value":"-63.57" + } + }, + { + "id":"97855a6d-680d-4c8e-bfb3-6b234835b47f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T11:54:36.696Z", + "completed":"2017-06-11T11:54:36.696Z", + "new_balance":"26010.12", + "value":"-81.79" + } + }, + { + "id":"e102bb93-5f0b-46ad-b897-39b79b3e4bb7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-11T14:01:38.621Z", + "completed":"2017-06-11T14:01:38.621Z", + "new_balance":"25921.63", + "value":"-88.49" + } + }, + { + "id":"5c346cb5-4c64-47c6-a542-4f05f314a4b1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-11T18:20:51.136Z", + "completed":"2017-06-11T18:20:51.136Z", + "new_balance":"25876.16", + "value":"-45.47" + } + }, + { + "id":"35e6f90b-cbb6-4435-97f3-8573ceafccfe", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-06-12T04:28:58.760Z", + "completed":"2017-06-12T04:28:58.760Z", + "new_balance":"25869.39", + "value":"-6.77" + } + }, + { + "id":"8748c7dd-b95d-446d-9ba7-62a1f87f9afb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-06-12T23:26:12.452Z", + "completed":"2017-06-12T23:26:12.452Z", + "new_balance":"25829.75", + "value":"-39.64" + } + }, + { + "id":"1c1d5b5b-d51c-42cf-88a8-b4497665106f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-06-16T23:16:04.741Z", + "completed":"2017-06-16T23:16:04.741Z", + "new_balance":"25725.56", + "value":"-104.19" + } + }, + { + "id":"128e0d36-1bc9-445f-b42f-75344c3d1297", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-06-29T20:42:54.235Z", + "completed":"2017-06-29T20:42:54.235Z", + "new_balance":"25697.58", + "value":"-27.98" + } + }, + { + "id":"821e2727-f756-45b9-b378-de68c45d967a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 45871", + "posted":"2017-06-30T01:19:23.003Z", + "completed":"2017-06-30T01:19:23.003Z", + "new_balance":"28047.79", + "value":"2350.21" + } + }, + { + "id":"c29afe3f-6e7b-4776-b8fb-69dc327d924b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-06-30T17:26:41.701Z", + "completed":"2017-06-30T17:26:41.701Z", + "new_balance":"27730.58", + "value":"-317.21" + } + }, + { + "id":"89814a7c-d270-4746-b5e8-94cfdeb0195d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-01T00:16:18.048Z", + "completed":"2017-07-01T00:16:18.048Z", + "new_balance":"27625.86", + "value":"-104.72" + } + }, + { + "id":"f51f7a4c-f1fb-4199-9963-231ca0dc122d", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-07-01T03:56:33.496Z", + "completed":"2017-07-01T03:56:33.496Z", + "new_balance":"27591.43", + "value":"-34.43" + } + }, + { + "id":"f2f9e7b3-15b9-47d1-904c-f316c6f49fd5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-07-01T10:26:35.456Z", + "completed":"2017-07-01T10:26:35.456Z", + "new_balance":"27544.53", + "value":"-46.90" + } + }, + { + "id":"b25b6b1c-514f-4d31-b5b7-ad7d7bced7a7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T11:46:28.341Z", + "completed":"2017-07-01T11:46:28.341Z", + "new_balance":"27510.10", + "value":"-34.43" + } + }, + { + "id":"77c5a191-db8d-4055-acaf-4fffa01fd42e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-05T15:16:36.403Z", + "completed":"2017-07-05T15:16:36.403Z", + "new_balance":"27442.65", + "value":"-67.45" + } + }, + { + "id":"4168b599-12a9-4698-bc23-ce8671b3c64c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-05T20:25:52.220Z", + "completed":"2017-07-05T20:25:52.220Z", + "new_balance":"27361.44", + "value":"-81.21" + } + }, + { + "id":"b49eb0cf-84ca-4f1f-bd40-b9b82d54e324", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-08T13:48:12.996Z", + "completed":"2017-07-08T13:48:12.996Z", + "new_balance":"27350.53", + "value":"-10.91" + } + }, + { + "id":"28b1fb11-ff71-4d9c-906a-5ebb570ca42c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-10T06:52:31.599Z", + "completed":"2017-07-10T06:52:31.599Z", + "new_balance":"27304.07", + "value":"-46.46" + } + }, + { + "id":"f023cc37-6662-4d73-b661-80889f6f4ed2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-12T05:13:30.622Z", + "completed":"2017-07-12T05:13:30.622Z", + "new_balance":"27247.43", + "value":"-56.64" + } + }, + { + "id":"66c5755e-027e-4f62-9ad4-38adc9063a82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-07-12T17:20:29.359Z", + "completed":"2017-07-12T17:20:29.359Z", + "new_balance":"27213.00", + "value":"-34.43" + } + }, + { + "id":"d3b83e15-25b9-463d-9e82-65a493bea743", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-07-13T03:51:57.862Z", + "completed":"2017-07-13T03:51:57.862Z", + "new_balance":"27207.35", + "value":"-5.65" + } + }, + { + "id":"4fe55885-4ad0-4300-be07-27e295197a0c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-07-13T17:43:25.399Z", + "completed":"2017-07-13T17:43:25.399Z", + "new_balance":"27203.76", + "value":"-3.59" + } + }, + { + "id":"85f7617f-232a-4da8-91aa-74168074fb33", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-07-18T15:05:18.975Z", + "completed":"2017-07-18T15:05:18.975Z", + "new_balance":"27120.67", + "value":"-83.09" + } + }, + { + "id":"e2092fce-2b4d-43bb-b7fb-e784537c74a9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-07-20T03:42:03.858Z", + "completed":"2017-07-20T03:42:03.858Z", + "new_balance":"27039.46", + "value":"-81.21" + } + }, + { + "id":"437a1ad0-269c-45c6-940e-570db14bb9ef", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-07-20T19:58:41.583Z", + "completed":"2017-07-20T19:58:41.583Z", + "new_balance":"26958.02", + "value":"-81.44" + } + }, + { + "id":"0b18c501-3cc6-427f-a748-6ff89197c4ab", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-07-24T09:46:28.541Z", + "completed":"2017-07-24T09:46:28.541Z", + "new_balance":"26930.57", + "value":"-27.45" + } + }, + { + "id":"ebb371ed-7845-4f9e-b882-28fd73886d94", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-07-29T15:53:16.918Z", + "completed":"2017-07-29T15:53:16.918Z", + "new_balance":"29280.78", + "value":"2350.21" + } + }, + { + "id":"e5c5de31-dd89-4163-abc2-bd60f2f73909", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-07-29T16:23:27.807Z", + "completed":"2017-07-29T16:23:27.807Z", + "new_balance":"29252.80", + "value":"-27.98" + } + }, + { + "id":"9f3f3a72-ffbf-4a09-8ffb-eeeeb2f6a325", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-07-30T16:02:25.885Z", + "completed":"2017-07-30T16:02:25.885Z", + "new_balance":"28935.59", + "value":"-317.21" + } + }, + { + "id":"e6c67eda-8b4b-4a9b-a95c-cb82cbba5998", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T01:51:50.895Z", + "completed":"2017-08-01T01:51:50.895Z", + "new_balance":"28901.16", + "value":"-34.43" + } + }, + { + "id":"7e8adc4b-51af-40c2-a61e-49a97b5a2bac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-08-01T04:16:49.983Z", + "completed":"2017-08-01T04:16:49.983Z", + "new_balance":"28866.73", + "value":"-34.43" + } + }, + { + "id":"fc7dafd4-f134-414f-8b20-47fd1fc90b46", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-08-01T07:08:33.610Z", + "completed":"2017-08-01T07:08:33.610Z", + "new_balance":"28819.83", + "value":"-46.90" + } + }, + { + "id":"a1ca9e5b-ddcc-4f55-8be8-6398286bc7f4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-08-01T16:10:07.608Z", + "completed":"2017-08-01T16:10:07.608Z", + "new_balance":"28715.11", + "value":"-104.72" + } + }, + { + "id":"62a2e9ac-2073-4897-91d4-09da439e71fb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-03T19:35:38.993Z", + "completed":"2017-08-03T19:35:38.993Z", + "new_balance":"28708.39", + "value":"-6.72" + } + }, + { + "id":"01b3f218-6378-4273-ac49-a7421af50db5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-04T11:21:14.086Z", + "completed":"2017-08-04T11:21:14.086Z", + "new_balance":"28627.18", + "value":"-81.21" + } + }, + { + "id":"05b1405e-9abc-47c8-9155-c5cdc5d6f7ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-08T04:58:53.631Z", + "completed":"2017-08-08T04:58:53.631Z", + "new_balance":"28611.89", + "value":"-15.29" + } + }, + { + "id":"3e70df14-b56a-4d5e-a888-e94a3a8eb369", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-08T15:25:27.491Z", + "completed":"2017-08-08T15:25:27.491Z", + "new_balance":"28505.08", + "value":"-106.81" + } + }, + { + "id":"fcbd499c-4d9f-4718-a6e0-15eec6227175", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T17:22:20.903Z", + "completed":"2017-08-08T17:22:20.903Z", + "new_balance":"28477.05", + "value":"-28.03" + } + }, + { + "id":"64a4a4e3-27e8-45f9-95ac-748db5d976c9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-08T20:22:04.931Z", + "completed":"2017-08-08T20:22:04.931Z", + "new_balance":"28395.88", + "value":"-81.17" + } + }, + { + "id":"2d8a6b60-8701-4748-a1e3-21c09f844e4f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-09T21:50:36.961Z", + "completed":"2017-08-09T21:50:36.961Z", + "new_balance":"28352.93", + "value":"-42.95" + } + }, + { + "id":"651dc187-b84a-4d30-9cce-dc0ca5814962", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-08-14T03:53:53.924Z", + "completed":"2017-08-14T03:53:53.924Z", + "new_balance":"28326.20", + "value":"-26.73" + } + }, + { + "id":"9b4d9e78-4335-489c-9004-1f62e5b9ad98", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-08-15T20:15:11.544Z", + "completed":"2017-08-15T20:15:11.544Z", + "new_balance":"28284.66", + "value":"-41.54" + } + }, + { + "id":"b8ee416c-6af2-4a43-863c-49a14eece337", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-08-19T01:55:06.465Z", + "completed":"2017-08-19T01:55:06.465Z", + "new_balance":"28277.67", + "value":"-6.99" + } + }, + { + "id":"6b448741-18df-44f3-8dff-98a3aa3377c2", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-08-22T01:58:34.860Z", + "completed":"2017-08-22T01:58:34.860Z", + "new_balance":"28227.73", + "value":"-49.94" + } + }, + { + "id":"af378227-363a-4704-903b-ab59199ed9c5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-08-26T23:25:58.942Z", + "completed":"2017-08-26T23:25:58.942Z", + "new_balance":"28146.52", + "value":"-81.21" + } + }, + { + "id":"cb77f10a-e6e6-42ee-9a03-e79789a73455", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-28T09:38:21.085Z", + "completed":"2017-08-28T09:38:21.085Z", + "new_balance":"27829.31", + "value":"-317.21" + } + }, + { + "id":"4f02007c-f5d9-485e-b948-fb6834eccbbc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-08-29T05:09:39.119Z", + "completed":"2017-08-29T05:09:39.119Z", + "new_balance":"27801.33", + "value":"-27.98" + } + }, + { + "id":"bf8fc7e7-689b-4e00-adee-a5c6dc406867", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-08-29T10:52:20.222Z", + "completed":"2017-08-29T10:52:20.222Z", + "new_balance":"30151.54", + "value":"2350.21" + } + }, + { + "id":"bc5a3401-b9f7-4c30-bdac-61f5cb87cf40", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-08-30T01:48:32.318Z", + "completed":"2017-08-30T01:48:32.318Z", + "new_balance":"29834.33", + "value":"-317.21" + } + }, + { + "id":"8aa9341a-b8f0-462c-bb62-f4357a4ff2ed", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T01:12:52.146Z", + "completed":"2017-09-01T01:12:52.146Z", + "new_balance":"29799.90", + "value":"-34.43" + } + }, + { + "id":"01f94821-d176-4e57-927b-ce8098c111f9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-09-01T11:23:34.220Z", + "completed":"2017-09-01T11:23:34.220Z", + "new_balance":"29765.47", + "value":"-34.43" + } + }, + { + "id":"43dfa41d-614b-49e9-bfd4-0acd7fb1d793", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-09-01T13:35:14.366Z", + "completed":"2017-09-01T13:35:14.366Z", + "new_balance":"29718.57", + "value":"-46.90" + } + }, + { + "id":"ca151fa9-fa6d-4a5d-afaa-2a10490955d6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-09-01T16:01:42.358Z", + "completed":"2017-09-01T16:01:42.358Z", + "new_balance":"29613.85", + "value":"-104.72" + } + }, + { + "id":"16169983-afed-453b-a340-4f15b76731db", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-09T10:03:26.709Z", + "completed":"2017-09-09T10:03:26.709Z", + "new_balance":"29552.48", + "value":"-61.37" + } + }, + { + "id":"020b9685-9232-4183-99eb-c623e2a81401", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-09-09T11:20:34.629Z", + "completed":"2017-09-09T11:20:34.629Z", + "new_balance":"29488.91", + "value":"-63.57" + } + }, + { + "id":"7bebb58a-2ebe-4577-85c9-9c45310a81e4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-17T14:16:28.266Z", + "completed":"2017-09-17T14:16:28.266Z", + "new_balance":"29400.42", + "value":"-88.49" + } + }, + { + "id":"eb712204-503c-4505-9416-8051890d7fe9", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-09-18T03:38:48.021Z", + "completed":"2017-09-18T03:38:48.021Z", + "new_balance":"29393.65", + "value":"-6.77" + } + }, + { + "id":"4bee50f5-ae9f-42bf-9164-6efe37410fbb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T10:44:34.483Z", + "completed":"2017-09-18T10:44:34.483Z", + "new_balance":"29348.18", + "value":"-45.47" + } + }, + { + "id":"ef937e86-4716-4813-8c22-d62e6ec0a09c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-18T19:16:16.520Z", + "completed":"2017-09-18T19:16:16.520Z", + "new_balance":"29266.39", + "value":"-81.79" + } + }, + { + "id":"ed941031-29db-41e0-89f1-84b93b6e53ce", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-09-18T21:43:11.821Z", + "completed":"2017-09-18T21:43:11.821Z", + "new_balance":"29226.75", + "value":"-39.64" + } + }, + { + "id":"49c3ccb0-4383-4f47-8978-80de813ed7d8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-09-22T19:53:29.624Z", + "completed":"2017-09-22T19:53:29.624Z", + "new_balance":"29122.56", + "value":"-104.19" + } + }, + { + "id":"ba6dd85a-e1b3-466f-9e44-c442dba2400b", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pay" + }, + "details":{ + "type":"10219", + "description":"Income", + "posted":"2017-09-29T06:53:14.319Z", + "completed":"2017-09-29T06:53:14.319Z", + "new_balance":"31472.77", + "value":"2350.21" + } + }, + { + "id":"6c2b8612-952b-4d58-bf36-6dab873c9bb1", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-09-29T16:23:55.019Z", + "completed":"2017-09-29T16:23:55.019Z", + "new_balance":"31444.79", + "value":"-27.98" + } + }, + { + "id":"6b471e66-a9d9-4594-a0c5-ee0f6c2c96e6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-09-30T08:02:35.159Z", + "completed":"2017-09-30T08:02:35.159Z", + "new_balance":"31127.58", + "value":"-317.21" + } + }, + { + "id":"ad33570a-342b-4c4b-8294-33c7b9af9424", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-10-01T06:38:36.575Z", + "completed":"2017-10-01T06:38:36.575Z", + "new_balance":"31093.15", + "value":"-34.43" + } + }, + { + "id":"1f4d560c-0df3-41fb-949b-582713e0ca8f", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-10-01T10:09:31.104Z", + "completed":"2017-10-01T10:09:31.104Z", + "new_balance":"30988.43", + "value":"-104.72" + } + }, + { + "id":"c74fd754-1fb7-4bac-a19e-23a2155ae860", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-10-01T11:27:41.849Z", + "completed":"2017-10-01T11:27:41.849Z", + "new_balance":"30954.00", + "value":"-34.43" + } + }, + { + "id":"f000edd0-0162-4d2b-a5e3-b861425e8183", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-10-01T22:53:28.217Z", + "completed":"2017-10-01T22:53:28.217Z", + "new_balance":"30907.10", + "value":"-46.90" + } + }, + { + "id":"f45a4862-9ec7-44ac-8b6f-c4ad144d87b8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-02T10:31:52.516Z", + "completed":"2017-10-02T10:31:52.516Z", + "new_balance":"30812.77", + "value":"-94.33" + } + }, + { + "id":"a285ce98-7466-4898-89fc-641dcc8a00c8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sainsbury's" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-05T05:56:40.178Z", + "completed":"2017-10-05T05:56:40.178Z", + "new_balance":"30757.93", + "value":"-54.84" + } + }, + { + "id":"688ba33f-0ba7-4d7e-9409-9ca3128c1ae4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"NCP Car Park" + }, + "details":{ + "type":"10219", + "description":"Parking", + "posted":"2017-10-05T07:06:01.828Z", + "completed":"2017-10-05T07:06:01.828Z", + "new_balance":"30753.29", + "value":"-4.64" + } + }, + { + "id":"16631bb1-e09b-451e-84ac-ff1ee2655a20", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-05T07:21:10.995Z", + "completed":"2017-10-05T07:21:10.995Z", + "new_balance":"30711.86", + "value":"-41.43" + } + }, + { + "id":"8a6a58e5-0840-4a72-a9ea-a560410ff23a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-05T14:21:09.570Z", + "completed":"2017-10-05T14:21:09.570Z", + "new_balance":"30630.65", + "value":"-81.21" + } + }, + { + "id":"35984a4e-ebb1-490b-9387-144ff78fee09", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Interflora" + }, + "details":{ + "type":"10219", + "description":"Florist", + "posted":"2017-10-05T19:17:34.025Z", + "completed":"2017-10-05T19:17:34.025Z", + "new_balance":"30596.22", + "value":"-34.43" + } + }, + { + "id":"87846dee-28c4-4932-84c6-0ab0b1da6af4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T22:14:12.772Z", + "completed":"2017-10-05T22:14:12.772Z", + "new_balance":"30589.64", + "value":"-6.58" + } + }, + { + "id":"f62ca967-3b3c-4fcd-9793-8ba6361efff7", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-10-05T22:26:40.381Z", + "completed":"2017-10-05T22:26:40.381Z", + "new_balance":"30577.71", + "value":"-11.93" + } + }, + { + "id":"dbec2de0-3354-4d91-8313-11b5bb3e041e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-10-09T01:24:55.779Z", + "completed":"2017-10-09T01:24:55.779Z", + "new_balance":"30479.79", + "value":"-97.92" + } + }, + { + "id":"7c93c31b-ab7e-421a-bb1b-b0a99feb0efa", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-10-11T02:02:59.273Z", + "completed":"2017-10-11T02:02:59.273Z", + "new_balance":"30423.66", + "value":"-56.13" + } + }, + { + "id":"75f147c6-d41e-4303-8691-2d3a4f58d62c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-10-12T04:30:48.814Z", + "completed":"2017-10-12T04:30:48.814Z", + "new_balance":"30396.21", + "value":"-27.45" + } + }, + { + "id":"8e8bab5a-a788-4082-8b71-e3ff0a5402b6", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-10-12T23:56:33.100Z", + "completed":"2017-10-12T23:56:33.100Z", + "new_balance":"30315.00", + "value":"-81.21" + } + }, + { + "id":"d58dd485-9f8b-46cf-a161-c76b7b5df692", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-10-20T11:15:03.121Z", + "completed":"2017-10-20T11:15:03.121Z", + "new_balance":"30287.02", + "value":"-27.98" + } + }, + { + "id":"6f26c6ec-4776-4bc3-847e-fa47354fe2a8", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 56412", + "posted":"2017-10-29T14:53:50.778Z", + "completed":"2017-10-29T14:53:50.778Z", + "new_balance":"32637.23", + "value":"2350.21" + } + }, + { + "id":"c4cdd1c2-8226-4fa4-8e11-a9a6e7079338", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-10-30T00:21:16.764Z", + "completed":"2017-10-30T00:21:16.764Z", + "new_balance":"32320.02", + "value":"-317.21" + } + }, + { + "id":"4ada8a76-023e-4e1b-925d-928547a70b3e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Council Tax", + "posted":"2017-11-02T02:03:12.203Z", + "completed":"2017-11-02T02:03:12.203Z", + "new_balance":"32285.59", + "value":"-34.43" + } + }, + { + "id":"797a86d1-7057-4148-9915-aae7dcea8021", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-11-02T02:24:12.584Z", + "completed":"2017-11-02T02:24:12.584Z", + "new_balance":"32251.16", + "value":"-34.43" + } + }, + { + "id":"0d2317e5-015f-4390-85d2-2aaa31281469", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-11-02T16:02:56.272Z", + "completed":"2017-11-02T16:02:56.272Z", + "new_balance":"32146.44", + "value":"-104.72" + } + }, + { + "id":"d1217eaf-a65c-4085-b763-d455fcfa3ecc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-11-02T21:01:46.380Z", + "completed":"2017-11-02T21:01:46.380Z", + "new_balance":"32099.54", + "value":"-46.90" + } + }, + { + "id":"65b9acb2-8b53-4723-9b7f-1e32461b5e5c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"WH Smith" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T09:18:01.331Z", + "completed":"2017-11-04T09:18:01.331Z", + "new_balance":"32092.96", + "value":"-6.58" + } + }, + { + "id":"ea89642d-7c05-45c6-be01-123bde708e60", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-04T20:01:21.453Z", + "completed":"2017-11-04T20:01:21.453Z", + "new_balance":"32011.75", + "value":"-81.21" + } + }, + { + "id":"a09e07b5-a7dc-4f0c-ad6c-05efdefaef71", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Harvey Nichols" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-06T04:51:59.083Z", + "completed":"2017-11-06T04:51:59.083Z", + "new_balance":"31931.54", + "value":"-80.21" + } + }, + { + "id":"61fd5423-d5a4-4821-980e-48df49fb0e72", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-07T07:29:39.624Z", + "completed":"2017-11-07T07:29:39.624Z", + "new_balance":"31897.03", + "value":"-34.51" + } + }, + { + "id":"52ee52ab-4a6e-47ce-bc31-2781a8ef9735", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Gordon Ramsay Resturant" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-07T17:09:42.803Z", + "completed":"2017-11-07T17:09:42.803Z", + "new_balance":"31802.70", + "value":"-94.33" + } + }, + { + "id":"e72f34f1-a43e-422a-870a-a89bb1a85a82", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-09T01:01:44.384Z", + "completed":"2017-11-09T01:01:44.384Z", + "new_balance":"31759.75", + "value":"-42.95" + } + }, + { + "id":"73a769c2-1dda-4711-89f4-a80e63928561", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-09T03:52:05.597Z", + "completed":"2017-11-09T03:52:05.597Z", + "new_balance":"31747.82", + "value":"-11.93" + } + }, + { + "id":"6fb72d53-ee72-470c-abbc-007e79657190", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-11-13T00:22:57.737Z", + "completed":"2017-11-13T00:22:57.737Z", + "new_balance":"31741.24", + "value":"-6.58" + } + }, + { + "id":"02c2a402-c17c-456e-b8c2-ce36fd3acc0e", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Prezzo" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-11-13T08:26:13.360Z", + "completed":"2017-11-13T08:26:13.360Z", + "new_balance":"31706.73", + "value":"-34.51" + } + }, + { + "id":"129d4342-db03-43b6-818d-a8d8a77142bb", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Revolution Bar" + }, + "details":{ + "type":"10219", + "description":"Bar", + "posted":"2017-11-13T23:28:38.874Z", + "completed":"2017-11-13T23:28:38.874Z", + "new_balance":"31678.54", + "value":"-28.19" + } + }, + { + "id":"99f70613-7320-4de0-8733-b8f81303e4ac", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-11-14T08:12:07.927Z", + "completed":"2017-11-14T08:12:07.927Z", + "new_balance":"31597.33", + "value":"-81.21" + } + }, + { + "id":"90988e66-66bf-4e24-842f-cbee2829dc7c", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-11-14T10:20:23.439Z", + "completed":"2017-11-14T10:20:23.439Z", + "new_balance":"31532.10", + "value":"-65.23" + } + }, + { + "id":"aa4f3312-86f9-4d26-95f3-6e2b65d571ad", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-11-15T06:45:23.704Z", + "completed":"2017-11-15T06:45:23.704Z", + "new_balance":"31504.12", + "value":"-27.98" + } + }, + { + "id":"fe127f46-620c-4384-87ad-71ae31f0c185", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-11-30T04:10:06.041Z", + "completed":"2017-11-30T04:10:06.041Z", + "new_balance":"31186.91", + "value":"-317.21" + } + }, + { + "id":"4f502da6-0722-4b55-945d-419479fbdd5a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 66412", + "posted":"2017-11-30T09:33:01.849Z", + "completed":"2017-11-30T09:33:01.849Z", + "new_balance":"33537.12", + "value":"2350.21" + } + }, + { + "id":"499262cf-7447-4f7e-8b99-e10f85ac9c05", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10219", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T00:43:21.145Z", + "completed":"2017-12-01T00:43:21.145Z", + "new_balance":"33502.69", + "value":"-34.43" + } + }, + { + "id":"d9488e2a-622b-4953-89b2-3a1070f9d736", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Gas" + }, + "details":{ + "type":"10219", + "description":"Gas/Elec", + "posted":"2017-12-01T02:42:40.533Z", + "completed":"2017-12-01T02:42:40.533Z", + "new_balance":"33397.97", + "value":"-104.72" + } + }, + { + "id":"87054e96-c37f-448e-a9c8-80bb79e56d50", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Duddingston Golf Club" + }, + "details":{ + "type":"10219", + "description":"Monthly Golf membership", + "posted":"2017-12-01T06:43:41.474Z", + "completed":"2017-12-01T06:43:41.474Z", + "new_balance":"33351.07", + "value":"-46.90" + } + }, + { + "id":"33e2c131-3362-4a79-93f2-86b9c2c4e383", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10219", + "description":"Water", + "posted":"2017-12-01T20:31:44.759Z", + "completed":"2017-12-01T20:31:44.759Z", + "new_balance":"33316.64", + "value":"-34.43" + } + }, + { + "id":"f97c6840-30e5-45ca-b059-44b5013f80d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10219", + "description":"Filling Station", + "posted":"2017-12-04T02:22:31.908Z", + "completed":"2017-12-04T02:22:31.908Z", + "new_balance":"33253.07", + "value":"-63.57" + } + }, + { + "id":"773ef711-ef18-4578-8459-fa8d4fc6d61a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-04T06:14:19.051Z", + "completed":"2017-12-04T06:14:19.051Z", + "new_balance":"33191.70", + "value":"-61.37" + } + }, + { + "id":"b2046101-f6fa-4ded-aa11-f98aa2cfef4a", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Cellar Door" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-11T02:05:04.004Z", + "completed":"2017-12-11T02:05:04.004Z", + "new_balance":"33103.21", + "value":"-88.49" + } + }, + { + "id":"8e047e66-85cb-4699-9254-15663c36f2bc", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Debenhams" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T14:21:01.301Z", + "completed":"2017-12-11T14:21:01.301Z", + "new_balance":"33021.42", + "value":"-81.79" + } + }, + { + "id":"631a1b05-9538-4917-807d-70e1050fb734", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-11T14:56:13.283Z", + "completed":"2017-12-11T14:56:13.283Z", + "new_balance":"32975.95", + "value":"-45.47" + } + }, + { + "id":"ae22f401-d918-48c2-a0b5-93c7601496e4", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Express" + }, + "details":{ + "type":"10219", + "description":"Restaurants", + "posted":"2017-12-12T13:34:55.712Z", + "completed":"2017-12-12T13:34:55.712Z", + "new_balance":"32936.31", + "value":"-39.64" + } + }, + { + "id":"7e30e9ba-db95-42fa-a5b4-615faf8c9fb5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10219", + "description":"Coffee", + "posted":"2017-12-12T20:59:44.030Z", + "completed":"2017-12-12T20:59:44.030Z", + "new_balance":"32929.54", + "value":"-6.77" + } + }, + { + "id":"aece329e-5165-4b8b-982a-9842fade6425", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Marks and Spencers" + }, + "details":{ + "type":"10219", + "description":"Shopping", + "posted":"2017-12-16T02:23:18.045Z", + "completed":"2017-12-16T02:23:18.045Z", + "new_balance":"32825.35", + "value":"-104.19" + } + }, + { + "id":"5de47451-cbc6-4ed0-ada6-f7461eb73fcf", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10219", + "description":"BT", + "posted":"2017-12-29T14:56:43.994Z", + "completed":"2017-12-29T14:56:43.994Z", + "new_balance":"32797.37", + "value":"-27.98" + } + }, + { + "id":"ad535303-12a7-4215-8d24-ec929b26b5d5", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10219", + "description":"Pay Ref 89416", + "posted":"2017-12-30T00:28:20.724Z", + "completed":"2017-12-30T00:28:20.724Z", + "new_balance":"35147.58", + "value":"2350.21" + } + }, + { + "id":"0106c6f8-9124-4e47-b7a6-c250d9699e30", + "this_account":{ + "id":"d3d88566-aba7-4d11-aa58-3968cccb4da7", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"RBS Savings" + }, + "details":{ + "type":"10219", + "description":"Savings", + "posted":"2017-12-30T05:22:29.281Z", + "completed":"2017-12-30T05:22:29.281Z", + "new_balance":"34830.37", + "value":"-317.21" + } + }, + { + "id":"c49bae3e-d395-4898-a786-5f0b097b2d2d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T17:50:48.605Z", + "completed":"2016-03-02T17:50:48.605Z", + "new_balance":"14230.74", + "value":"-118.32" + } + }, + { + "id":"6a79e95f-c71f-4456-a131-1773fa278633", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T19:07:41.138Z", + "completed":"2016-03-02T19:07:41.138Z", + "new_balance":"14201.87", + "value":"-28.87" + } + }, + { + "id":"6dc6ecbe-5d01-4c9d-8fa4-ad90e7a8924c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T07:44:17.028Z", + "completed":"2016-03-03T07:44:17.028Z", + "new_balance":"13752.16", + "value":"-449.71" + } + }, + { + "id":"ecc6a296-3131-49be-8323-37ff6b471eaa", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T10:39:27.374Z", + "completed":"2016-03-03T10:39:27.374Z", + "new_balance":"13744.97", + "value":"-7.19" + } + }, + { + "id":"b6edf44f-c1d8-4ebe-bc0a-b2248c948334", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T11:21:55.836Z", + "completed":"2016-03-04T11:21:55.836Z", + "new_balance":"13712.76", + "value":"-32.21" + } + }, + { + "id":"5490a86b-4a85-4e58-bb90-186c2bacd8fd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T22:30:49.033Z", + "completed":"2016-03-04T22:30:49.033Z", + "new_balance":"13705.66", + "value":"-7.10" + } + }, + { + "id":"f94f0c8c-e83b-4930-a5c0-eb93eba558ac", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T01:15:23.878Z", + "completed":"2016-03-07T01:15:23.878Z", + "new_balance":"13700.51", + "value":"-5.15" + } + }, + { + "id":"7e9eda2c-ae62-48a8-b87c-33143c6960b9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T01:22:59.823Z", + "completed":"2016-03-09T01:22:59.823Z", + "new_balance":"13582.19", + "value":"-118.32" + } + }, + { + "id":"3f5f4905-109e-408d-85c1-919b9ef733a5", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T23:07:30.260Z", + "completed":"2016-03-16T23:07:30.260Z", + "new_balance":"13497.27", + "value":"-84.92" + } + }, + { + "id":"34a8f146-9cef-4d59-8349-da60b5e0f9d2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T21:40:07.607Z", + "completed":"2016-03-25T21:40:07.607Z", + "new_balance":"13412.35", + "value":"-84.92" + } + }, + { + "id":"5fe367bd-fd87-44af-869c-ddf008b42cf0", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T13:06:05.078Z", + "completed":"2016-03-30T13:06:05.078Z", + "new_balance":"13134.87", + "value":"-277.48" + } + }, + { + "id":"2bb3037c-f5bc-4bfc-bd47-82135db70f1d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T00:11:05.149Z", + "completed":"2016-06-07T00:11:05.149Z", + "new_balance":"13106.00", + "value":"-28.87" + } + }, + { + "id":"209b2983-85a2-4c72-8613-0b3cee162455", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T05:16:37.674Z", + "completed":"2016-06-07T05:16:37.674Z", + "new_balance":"12656.29", + "value":"-449.71" + } + }, + { + "id":"fa32e1b6-5da8-455b-9da9-f0f74704e9e1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T18:51:08.976Z", + "completed":"2016-06-07T18:51:08.976Z", + "new_balance":"12537.97", + "value":"-118.32" + } + }, + { + "id":"4c25971d-a0d9-42f8-9b19-986c3b329b41", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T04:08:48.398Z", + "completed":"2016-06-10T04:08:48.398Z", + "new_balance":"12530.87", + "value":"-7.10" + } + }, + { + "id":"fefe2c2c-7e45-4c02-8126-00063edbdc07", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T13:01:09.248Z", + "completed":"2016-06-14T13:01:09.248Z", + "new_balance":"12498.66", + "value":"-32.21" + } + }, + { + "id":"37bfec1a-bff2-4ae8-b048-b4b22cb2c1be", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T00:39:31.480Z", + "completed":"2016-06-19T00:39:31.480Z", + "new_balance":"12491.47", + "value":"-7.19" + } + }, + { + "id":"ba0c61b0-2e60-4c09-b5e1-7deadf82aacd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T07:20:16.225Z", + "completed":"2016-06-19T07:20:16.225Z", + "new_balance":"12486.32", + "value":"-5.15" + } + }, + { + "id":"2b7fa22d-a12d-4fcc-8094-855deeccc54a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T10:06:40.984Z", + "completed":"2016-06-20T10:06:40.984Z", + "new_balance":"12368.00", + "value":"-118.32" + } + }, + { + "id":"50ddd1e7-b8dd-4640-acd5-1b35d4f889f4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T02:12:51.433Z", + "completed":"2016-06-28T02:12:51.433Z", + "new_balance":"12283.08", + "value":"-84.92" + } + }, + { + "id":"08beca5d-a728-47b8-9b2b-704994969185", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T15:43:04.173Z", + "completed":"2016-07-01T15:43:04.173Z", + "new_balance":"12198.16", + "value":"-84.92" + } + }, + { + "id":"bbafbcc5-b0bb-4b5b-b266-3a7bec3eaaa2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T16:36:05.399Z", + "completed":"2016-07-01T16:36:05.399Z", + "new_balance":"11920.68", + "value":"-277.48" + } + }, + { + "id":"61b3df89-1ae3-443d-b71b-7b50568dc609", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T01:04:05.417Z", + "completed":"2016-09-02T01:04:05.417Z", + "new_balance":"11891.81", + "value":"-28.87" + } + }, + { + "id":"c38f6b75-a5ba-4fb1-963a-43a9c5bb7c6e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T21:53:57.650Z", + "completed":"2016-09-02T21:53:57.650Z", + "new_balance":"11773.49", + "value":"-118.32" + } + }, + { + "id":"7932f485-d51f-4926-b99f-3920dc4bced4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T11:49:48.969Z", + "completed":"2016-09-03T11:49:48.969Z", + "new_balance":"11769.31", + "value":"-4.18" + } + }, + { + "id":"51864e84-6935-4d0f-bf5f-0fc38a653d6e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T11:58:49.111Z", + "completed":"2016-09-03T11:58:49.111Z", + "new_balance":"11319.60", + "value":"-449.71" + } + }, + { + "id":"8ad9bc74-edef-4197-a38d-6ffbe67e7080", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T16:27:08.562Z", + "completed":"2016-09-03T16:27:08.562Z", + "new_balance":"11312.41", + "value":"-7.19" + } + }, + { + "id":"76494e09-96c0-422e-b6b4-58de5a87693c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T18:12:31.125Z", + "completed":"2016-09-04T18:12:31.125Z", + "new_balance":"11280.20", + "value":"-32.21" + } + }, + { + "id":"55301988-fb38-4644-a581-9b853d653c5e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T03:51:36.645Z", + "completed":"2016-09-07T03:51:36.645Z", + "new_balance":"11275.05", + "value":"-5.15" + } + }, + { + "id":"c1ea0967-5f53-493b-9439-0a397353698a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T22:42:48.290Z", + "completed":"2016-09-09T22:42:48.290Z", + "new_balance":"11156.73", + "value":"-118.32" + } + }, + { + "id":"65421bbb-bcd6-4d52-8a0b-0c3b33bdbcd6", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T16:54:33.489Z", + "completed":"2016-09-16T16:54:33.489Z", + "new_balance":"11071.81", + "value":"-84.92" + } + }, + { + "id":"1519245d-e8c3-472e-abbd-d0897478bb77", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:11:41.032Z", + "completed":"2016-09-25T03:11:41.032Z", + "new_balance":"10986.89", + "value":"-84.92" + } + }, + { + "id":"97e5f1f2-2760-4ae6-bd5c-72ce7e06d01e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T09:59:05.869Z", + "completed":"2016-09-30T09:59:05.869Z", + "new_balance":"10709.41", + "value":"-277.48" + } + }, + { + "id":"6baf4f9a-1e75-4a4e-bbbe-65d1c84a57ca", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T08:13:10.178Z", + "completed":"2016-12-07T08:13:10.178Z", + "new_balance":"10591.09", + "value":"-118.32" + } + }, + { + "id":"3ddaf0a5-f7a5-468d-8b3a-05af8a05c5bb", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T18:20:54.896Z", + "completed":"2016-12-07T18:20:54.896Z", + "new_balance":"10562.22", + "value":"-28.87" + } + }, + { + "id":"e332757a-43fd-4ffe-b491-2173d76e8efe", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T22:05:03.213Z", + "completed":"2016-12-07T22:05:03.213Z", + "new_balance":"10112.51", + "value":"-449.71" + } + }, + { + "id":"d9250a07-301b-40a1-8a74-d3d4d4fc1068", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T09:16:25.814Z", + "completed":"2016-12-11T09:16:25.814Z", + "new_balance":"10105.41", + "value":"-7.10" + } + }, + { + "id":"f00057b9-a620-402e-89f8-4df9982a273f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T18:21:04.225Z", + "completed":"2016-12-11T18:21:04.225Z", + "new_balance":"10098.22", + "value":"-7.19" + } + }, + { + "id":"0f9133ba-0b29-4f56-aac0-ef300ccc42f4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T23:44:35.858Z", + "completed":"2016-12-14T23:44:35.858Z", + "new_balance":"10066.01", + "value":"-32.21" + } + }, + { + "id":"7b41abd9-50db-4934-a0a7-a706c334ab1a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T07:09:24.423Z", + "completed":"2016-12-20T07:09:24.423Z", + "new_balance":"10060.86", + "value":"-5.15" + } + }, + { + "id":"8afa49c8-a2c3-4427-8bd2-9f6a36f9cac5", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T15:49:38.984Z", + "completed":"2016-12-22T15:49:38.984Z", + "new_balance":"9942.54", + "value":"-118.32" + } + }, + { + "id":"cb8c9080-e67f-41ab-8387-5648f44b69cd", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T10:19:17.551Z", + "completed":"2016-12-28T10:19:17.551Z", + "new_balance":"9857.62", + "value":"-84.92" + } + }, + { + "id":"5174e940-6e55-4cc5-8864-e1c21df9959f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T13:22:46.796Z", + "completed":"2016-12-31T13:22:46.796Z", + "new_balance":"9772.70", + "value":"-84.92" + } + }, + { + "id":"8a6e3c7e-5a01-46b6-890b-83ca75ca2bbe", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T17:30:16.492Z", + "completed":"2016-12-31T17:30:16.492Z", + "new_balance":"9495.22", + "value":"-277.48" + } + }, + { + "id":"3a26a40d-c008-416e-8b1a-a159d817fc36", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T02:06:14.352Z", + "completed":"2017-03-02T02:06:14.352Z", + "new_balance":"9466.35", + "value":"-28.87" + } + }, + { + "id":"1f4258ad-2ada-49bf-923a-949bc5f2e704", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T20:07:00.582Z", + "completed":"2017-03-02T20:07:00.582Z", + "new_balance":"9348.03", + "value":"-118.32" + } + }, + { + "id":"4630e9c3-bf37-4dd3-b2e0-3e5db30e293f", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T00:00:25.280Z", + "completed":"2017-03-03T00:00:25.280Z", + "new_balance":"8898.32", + "value":"-449.71" + } + }, + { + "id":"5b02862c-3d19-48a1-9e92-c43f4d905fc2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T09:35:19.541Z", + "completed":"2017-03-03T09:35:19.541Z", + "new_balance":"8891.13", + "value":"-7.19" + } + }, + { + "id":"817fb14c-03b7-47c2-9669-6973d1ccfc61", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T15:28:30.360Z", + "completed":"2017-03-04T15:28:30.360Z", + "new_balance":"8858.92", + "value":"-32.21" + } + }, + { + "id":"1fb6ff7c-714b-47a1-82f0-7e7ceb8f795b", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T23:50:39.066Z", + "completed":"2017-03-04T23:50:39.066Z", + "new_balance":"8851.82", + "value":"-7.10" + } + }, + { + "id":"ed8aa125-4e28-4423-b497-8be0b8f8e95c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T00:31:57.083Z", + "completed":"2017-03-07T00:31:57.083Z", + "new_balance":"8846.67", + "value":"-5.15" + } + }, + { + "id":"07bd0a4b-3d38-4776-9075-e8c5f67aaa69", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T20:53:41.117Z", + "completed":"2017-03-09T20:53:41.117Z", + "new_balance":"8728.35", + "value":"-118.32" + } + }, + { + "id":"1dda0fdc-3ded-41ae-9eb3-8917babc909c", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T02:05:21.541Z", + "completed":"2017-03-16T02:05:21.541Z", + "new_balance":"8643.43", + "value":"-84.92" + } + }, + { + "id":"177c27f3-25a7-4f0c-87fa-84b82eb64eb9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T23:44:17.595Z", + "completed":"2017-03-25T23:44:17.595Z", + "new_balance":"8558.51", + "value":"-84.92" + } + }, + { + "id":"0d14d3f8-0f33-40cb-9523-c65c1d56492a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T06:19:20.436Z", + "completed":"2017-03-30T06:19:20.436Z", + "new_balance":"8281.03", + "value":"-277.48" + } + }, + { + "id":"2f2f60c6-9716-4bd5-878a-0b7b1a75a9e1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T08:17:25.826Z", + "completed":"2017-06-07T08:17:25.826Z", + "new_balance":"7831.32", + "value":"-449.71" + } + }, + { + "id":"9609da5d-662d-4be6-b904-a8ffc9228762", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T09:41:08.197Z", + "completed":"2017-06-07T09:41:08.197Z", + "new_balance":"7713.00", + "value":"-118.32" + } + }, + { + "id":"f098860b-5a33-4f90-b1d7-f5c6328a0402", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T20:52:00.959Z", + "completed":"2017-06-07T20:52:00.959Z", + "new_balance":"7684.13", + "value":"-28.87" + } + }, + { + "id":"06dd0dfe-f806-4751-9f89-929bcc102250", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T03:03:13.028Z", + "completed":"2017-06-10T03:03:13.028Z", + "new_balance":"7677.03", + "value":"-7.10" + } + }, + { + "id":"e7f585ee-992d-4891-850c-a22ef2d59c24", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T22:37:37.469Z", + "completed":"2017-06-14T22:37:37.469Z", + "new_balance":"7644.82", + "value":"-32.21" + } + }, + { + "id":"f4bbf126-f6df-442a-aaf1-f8d4a2e379d4", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T00:50:46.774Z", + "completed":"2017-06-19T00:50:46.774Z", + "new_balance":"7639.67", + "value":"-5.15" + } + }, + { + "id":"fd912376-b22a-45f2-8134-a30e85e36a1d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T23:22:46.783Z", + "completed":"2017-06-19T23:22:46.783Z", + "new_balance":"7632.48", + "value":"-7.19" + } + }, + { + "id":"75695e45-2056-4d8c-bee6-8467e93b9425", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T09:39:12.952Z", + "completed":"2017-06-20T09:39:12.952Z", + "new_balance":"7514.16", + "value":"-118.32" + } + }, + { + "id":"d81b76e3-0612-4caf-84bd-f4150e5e0362", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T15:46:27.112Z", + "completed":"2017-06-28T15:46:27.112Z", + "new_balance":"7429.24", + "value":"-84.92" + } + }, + { + "id":"f8d587fc-96fd-4d70-a83e-9beb26c414fc", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T08:59:04.789Z", + "completed":"2017-07-01T08:59:04.789Z", + "new_balance":"7151.76", + "value":"-277.48" + } + }, + { + "id":"4c6858d8-c0ed-4fc7-b175-1099af1fb5ee", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T17:13:06.437Z", + "completed":"2017-07-01T17:13:06.437Z", + "new_balance":"7066.84", + "value":"-84.92" + } + }, + { + "id":"9fa4bc59-949e-4c83-82ba-da980829ee78", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T08:52:39.439Z", + "completed":"2017-09-02T08:52:39.439Z", + "new_balance":"6948.52", + "value":"-118.32" + } + }, + { + "id":"a2d84c5a-60ad-4b4d-89ea-9ec1fb4cb3fb", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T09:30:27.398Z", + "completed":"2017-09-02T09:30:27.398Z", + "new_balance":"6919.65", + "value":"-28.87" + } + }, + { + "id":"7e1b0f25-eafb-4669-87f0-bb9ce3d261f9", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T05:13:59.029Z", + "completed":"2017-09-03T05:13:59.029Z", + "new_balance":"6912.46", + "value":"-7.19" + } + }, + { + "id":"2d55cb2e-bb4e-40e1-9a56-da2580354395", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T11:53:13.592Z", + "completed":"2017-09-03T11:53:13.592Z", + "new_balance":"6462.75", + "value":"-449.71" + } + }, + { + "id":"3e5dcd48-87de-4ac8-b24f-148d525ea6ab", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T23:07:52.811Z", + "completed":"2017-09-03T23:07:52.811Z", + "new_balance":"6458.57", + "value":"-4.18" + } + }, + { + "id":"8bb761f5-fc52-4de0-9728-d279cf5ddfc2", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T16:14:33.905Z", + "completed":"2017-09-04T16:14:33.905Z", + "new_balance":"6426.36", + "value":"-32.21" + } + }, + { + "id":"043fe373-28fe-4c4a-8734-33f96f7be8b1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T04:14:05.839Z", + "completed":"2017-09-07T04:14:05.839Z", + "new_balance":"6421.21", + "value":"-5.15" + } + }, + { + "id":"ecf19a48-b357-48f1-9daf-e2a75dbbc427", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T06:03:47.791Z", + "completed":"2017-09-09T06:03:47.791Z", + "new_balance":"6302.89", + "value":"-118.32" + } + }, + { + "id":"3b39ad3a-0ef7-429a-872d-582b7b3266c8", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T10:52:43.933Z", + "completed":"2017-09-16T10:52:43.933Z", + "new_balance":"6217.97", + "value":"-84.92" + } + }, + { + "id":"4489ec7f-0b1a-4afc-b7a5-22c691757a3e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T02:44:13.704Z", + "completed":"2017-09-25T02:44:13.704Z", + "new_balance":"6133.05", + "value":"-84.92" + } + }, + { + "id":"2bad19ca-4e36-4d86-a8ac-94bdb0465db3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T06:51:17.939Z", + "completed":"2017-09-30T06:51:17.939Z", + "new_balance":"5855.57", + "value":"-277.48" + } + }, + { + "id":"2407eedd-1727-46bc-a772-2578d935c9b1", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T04:13:31.855Z", + "completed":"2017-12-07T04:13:31.855Z", + "new_balance":"5405.86", + "value":"-449.71" + } + }, + { + "id":"7fdbb008-8c12-49c2-aea9-b98ef0ca9446", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T07:04:47.995Z", + "completed":"2017-12-07T07:04:47.995Z", + "new_balance":"5287.54", + "value":"-118.32" + } + }, + { + "id":"98589029-45b9-447c-9d88-cd02462a8fc3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T09:37:52.260Z", + "completed":"2017-12-07T09:37:52.260Z", + "new_balance":"5258.67", + "value":"-28.87" + } + }, + { + "id":"62ac72f0-81bd-4abe-a024-264312712df3", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T06:04:52.272Z", + "completed":"2017-12-11T06:04:52.272Z", + "new_balance":"5251.57", + "value":"-7.10" + } + }, + { + "id":"4e50f7e2-ba19-4aa7-813d-bad24b90edde", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T20:41:45.824Z", + "completed":"2017-12-11T20:41:45.824Z", + "new_balance":"5244.38", + "value":"-7.19" + } + }, + { + "id":"2a6b0f61-08ee-4ad7-857b-029e2405936e", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T17:21:31.749Z", + "completed":"2017-12-14T17:21:31.749Z", + "new_balance":"5212.17", + "value":"-32.21" + } + }, + { + "id":"d3fa9a09-88bb-4611-8989-ac1e7eb950ed", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T12:13:58.923Z", + "completed":"2017-12-20T12:13:58.923Z", + "new_balance":"5207.02", + "value":"-5.15" + } + }, + { + "id":"2bc5c440-cc8e-417f-b060-ec2c33450fa6", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T09:05:49.249Z", + "completed":"2017-12-22T09:05:49.249Z", + "new_balance":"5088.70", + "value":"-118.32" + } + }, + { + "id":"99aa7523-db23-478a-ae73-a511214410db", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T11:37:03.494Z", + "completed":"2017-12-28T11:37:03.494Z", + "new_balance":"5003.78", + "value":"-84.92" + } + }, + { + "id":"c63bf220-40c3-4049-a1fe-7abc8b2d1d5d", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T18:56:50.742Z", + "completed":"2017-12-31T18:56:50.742Z", + "new_balance":"4918.86", + "value":"-84.92" + } + }, + { + "id":"1a226279-9bea-449d-809c-5c3dc6e4db6a", + "this_account":{ + "id":"e4294686-5cc3-40b9-a9e0-b3ba15da65f2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T22:10:00.663Z", + "completed":"2017-12-31T22:10:00.663Z", + "new_balance":"4641.38", + "value":"-277.48" + } + }, + { + "id":"7977ec0f-c66a-4e47-89cf-fa9380491cc7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T01:29:59.641Z", + "completed":"2016-01-01T01:29:59.641Z", + "new_balance":"5399.92", + "value":"-61.87" + } + }, + { + "id":"1552520b-9fe0-4258-aa02-b51d2a752e99", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-01-01T20:09:05.249Z", + "completed":"2016-01-01T20:09:05.249Z", + "new_balance":"5338.05", + "value":"-61.87" + } + }, + { + "id":"943bc293-25f3-467c-bd7f-7ac6e57f2c30", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-01-03T13:26:24.858Z", + "completed":"2016-01-03T13:26:24.858Z", + "new_balance":"4827.51", + "value":"-510.54" + } + }, + { + "id":"0eba5ebe-6ac0-43bb-8bef-77fc37166e7f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-01-03T14:07:35.336Z", + "completed":"2016-01-03T14:07:35.336Z", + "new_balance":"4793.08", + "value":"-34.43" + } + }, + { + "id":"ec3fd4b2-eb96-452d-88e8-eed2d4ad0333", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-01-03T16:09:27.105Z", + "completed":"2016-01-03T16:09:27.105Z", + "new_balance":"4719.15", + "value":"-73.93" + } + }, + { + "id":"c6c10b61-e0e8-486d-b17b-ac54d0ea5827", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-01-03T19:23:20.728Z", + "completed":"2016-01-03T19:23:20.728Z", + "new_balance":"4694.59", + "value":"-24.56" + } + }, + { + "id":"b03426af-9964-43c4-8831-a9521c396987", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T02:43:11.072Z", + "completed":"2016-01-05T02:43:11.072Z", + "new_balance":"4650.61", + "value":"-43.98" + } + }, + { + "id":"a9f8a25f-face-4cc0-81fa-789cf8c16d1b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-05T11:18:38.084Z", + "completed":"2016-01-05T11:18:38.084Z", + "new_balance":"4637.60", + "value":"-13.01" + } + }, + { + "id":"638b4142-b3de-4cdc-abf0-7526a2bf7417", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-05T17:04:32.029Z", + "completed":"2016-01-05T17:04:32.029Z", + "new_balance":"4584.42", + "value":"-53.18" + } + }, + { + "id":"ba99cc5f-9176-4843-aba4-206dad10b6b4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-06T16:03:02.742Z", + "completed":"2016-01-06T16:03:02.742Z", + "new_balance":"4561.73", + "value":"-22.69" + } + }, + { + "id":"f5bde9e7-a212-43dd-9852-f7a512117b09", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-01-06T21:02:41.781Z", + "completed":"2016-01-06T21:02:41.781Z", + "new_balance":"4531.85", + "value":"-29.88" + } + }, + { + "id":"dc6573be-9f63-4c78-afa8-fc705b4d1ea9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-07T20:44:13.413Z", + "completed":"2016-01-07T20:44:13.413Z", + "new_balance":"4492.68", + "value":"-39.17" + } + }, + { + "id":"05ea8b78-f6dc-4081-865d-f8dd8d5d83a9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-10T03:56:25.402Z", + "completed":"2016-01-10T03:56:25.402Z", + "new_balance":"4439.50", + "value":"-53.18" + } + }, + { + "id":"b5d2c62d-aea4-46a7-883f-64772cdf5c7f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-10T10:50:06.424Z", + "completed":"2016-01-10T10:50:06.424Z", + "new_balance":"4414.63", + "value":"-24.87" + } + }, + { + "id":"51690670-12b6-48b6-a191-1c6cb2034375", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T08:41:53.890Z", + "completed":"2016-01-12T08:41:53.890Z", + "new_balance":"4394.56", + "value":"-20.07" + } + }, + { + "id":"b56e15bc-e8da-4fd8-b5d3-2f53e8ca4b0c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T09:32:08.625Z", + "completed":"2016-01-12T09:32:08.625Z", + "new_balance":"4370.00", + "value":"-24.56" + } + }, + { + "id":"c5a3af7a-fbe5-4f92-9879-e3382b530f48", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-12T18:56:50.493Z", + "completed":"2016-01-12T18:56:50.493Z", + "new_balance":"4330.83", + "value":"-39.17" + } + }, + { + "id":"4e47b2b4-3b6f-46b6-bd2a-186c08c6370c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-15T14:30:00.122Z", + "completed":"2016-01-15T14:30:00.122Z", + "new_balance":"4314.43", + "value":"-16.40" + } + }, + { + "id":"a9835e73-7fde-457a-9dd1-0b565bbe085e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-16T02:27:35.300Z", + "completed":"2016-01-16T02:27:35.300Z", + "new_balance":"4261.25", + "value":"-53.18" + } + }, + { + "id":"2263ce55-37f1-4504-bf4a-8a1a55f93d36", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-16T18:56:05.636Z", + "completed":"2016-01-16T18:56:05.636Z", + "new_balance":"4255.10", + "value":"-6.15" + } + }, + { + "id":"82b0be61-d6cb-4a72-8e9e-2bc0383d34a3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-17T14:00:42.200Z", + "completed":"2016-01-17T14:00:42.200Z", + "new_balance":"4193.92", + "value":"-61.18" + } + }, + { + "id":"ac094567-1645-4e9b-8dd7-793fd1574968", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-01-17T17:54:34.863Z", + "completed":"2016-01-17T17:54:34.863Z", + "new_balance":"4162.60", + "value":"-31.32" + } + }, + { + "id":"bf69d3b8-11fe-49df-8aa2-180af18987e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-01-19T04:16:38.810Z", + "completed":"2016-01-19T04:16:38.810Z", + "new_balance":"4132.20", + "value":"-30.40" + } + }, + { + "id":"248b4c47-ddd9-4b87-8d2d-ae15105aae40", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-01-20T18:54:55.132Z", + "completed":"2016-01-20T18:54:55.132Z", + "new_balance":"4079.02", + "value":"-53.18" + } + }, + { + "id":"493dcd8f-f335-47dd-9477-f1eb24e548ce", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-23T18:47:03.863Z", + "completed":"2016-01-23T18:47:03.863Z", + "new_balance":"4063.19", + "value":"-15.83" + } + }, + { + "id":"294fbe33-9e02-4b4e-a640-4430550a36cc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-01-26T00:18:27.720Z", + "completed":"2016-01-26T00:18:27.720Z", + "new_balance":"4004.71", + "value":"-58.48" + } + }, + { + "id":"fb087814-a1d9-4628-9a0b-e32cae0f312a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2016-01-27T19:00:42.289Z", + "completed":"2016-01-27T19:00:42.289Z", + "new_balance":"5193.22", + "value":"1188.51" + } + }, + { + "id":"2c4b21be-1def-44a2-9540-e958c6aa392d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-01-28T23:47:39.232Z", + "completed":"2016-01-28T23:47:39.232Z", + "new_balance":"5158.79", + "value":"-34.43" + } + }, + { + "id":"0a2fc927-19ef-4e04-9024-8c74ef65f3ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-01-30T01:23:18.675Z", + "completed":"2016-01-30T01:23:18.675Z", + "new_balance":"5116.45", + "value":"-42.34" + } + }, + { + "id":"cdd4379f-aea8-4c0d-9472-2b054e73f0d7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-02-03T11:00:05.056Z", + "completed":"2016-02-03T11:00:05.056Z", + "new_balance":"5091.89", + "value":"-24.56" + } + }, + { + "id":"5073cf60-5a77-4d3c-93bf-236f91c96df7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-02-03T14:01:37.633Z", + "completed":"2016-02-03T14:01:37.633Z", + "new_balance":"5057.46", + "value":"-34.43" + } + }, + { + "id":"ba3c6039-09bf-4d16-afa6-1463e0063ac5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-02-03T16:54:21.715Z", + "completed":"2016-02-03T16:54:21.715Z", + "new_balance":"4546.92", + "value":"-510.54" + } + }, + { + "id":"69d97b18-641c-481c-8e45-399b6e33177d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-02-03T21:42:03.114Z", + "completed":"2016-02-03T21:42:03.114Z", + "new_balance":"4472.99", + "value":"-73.93" + } + }, + { + "id":"67388be3-4d14-4f93-b4b3-c0b43de725e1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-08T03:02:25.803Z", + "completed":"2016-02-08T03:02:25.803Z", + "new_balance":"4419.81", + "value":"-53.18" + } + }, + { + "id":"c62a99de-01e6-430e-85ad-d5a048883a5f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-08T17:30:29.701Z", + "completed":"2016-02-08T17:30:29.701Z", + "new_balance":"4375.83", + "value":"-43.98" + } + }, + { + "id":"3f76cc93-b099-4294-9601-a411a8493405", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-11T21:52:21.361Z", + "completed":"2016-02-11T21:52:21.361Z", + "new_balance":"4386.72", + "value":"10.89" + } + }, + { + "id":"c1a3a0de-37fc-45d6-a66f-286cfabe9d20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-13T08:56:30.958Z", + "completed":"2016-02-13T08:56:30.958Z", + "new_balance":"4356.84", + "value":"-29.88" + } + }, + { + "id":"723f8573-b252-4e48-9111-bc46346f1dae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-14T17:25:42.779Z", + "completed":"2016-02-14T17:25:42.779Z", + "new_balance":"4328.99", + "value":"-27.85" + } + }, + { + "id":"9a0465ca-4202-439b-8b1b-82ca02d71f43", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-17T11:00:23.870Z", + "completed":"2016-02-17T11:00:23.870Z", + "new_balance":"4318.08", + "value":"-10.91" + } + }, + { + "id":"cc962573-7858-4dd2-94c5-8dabb3ab79b3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-02-21T07:03:20.494Z", + "completed":"2016-02-21T07:03:20.494Z", + "new_balance":"4276.95", + "value":"-41.13" + } + }, + { + "id":"72367499-2955-40a2-aef3-0b0ea2b63d78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-23T06:11:41.004Z", + "completed":"2016-02-23T06:11:41.004Z", + "new_balance":"4236.03", + "value":"-40.92" + } + }, + { + "id":"2c63191a-db7c-459d-9107-9b076dc75fa0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-02-23T13:53:17.555Z", + "completed":"2016-02-23T13:53:17.555Z", + "new_balance":"4182.85", + "value":"-53.18" + } + }, + { + "id":"a4d2aa79-6c62-4049-96be-16012bacaf87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-24T04:48:24.987Z", + "completed":"2016-02-24T04:48:24.987Z", + "new_balance":"4171.94", + "value":"-10.91" + } + }, + { + "id":"f5d5d5d6-d116-4ced-9c2c-ef58e56c0fa7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2016-02-27T07:07:09.334Z", + "completed":"2016-02-27T07:07:09.334Z", + "new_balance":"5360.45", + "value":"1188.51" + } + }, + { + "id":"13a98164-3b87-4440-b291-c185dfe7d910", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-02-27T12:38:31.894Z", + "completed":"2016-02-27T12:38:31.894Z", + "new_balance":"5343.71", + "value":"-16.74" + } + }, + { + "id":"ffaa3a86-b404-4a59-ac7b-cb1481b5b172", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-02-27T23:30:00.169Z", + "completed":"2016-02-27T23:30:00.169Z", + "new_balance":"5285.23", + "value":"-58.48" + } + }, + { + "id":"22d09c7f-07d2-4491-b37b-110aa3d21e6d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-02-28T17:46:24.230Z", + "completed":"2016-02-28T17:46:24.230Z", + "new_balance":"5250.80", + "value":"-34.43" + } + }, + { + "id":"bc3103ed-dd1d-40d2-9877-a0b1bf9ee183", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-02-28T23:51:40.476Z", + "completed":"2016-02-28T23:51:40.476Z", + "new_balance":"5208.46", + "value":"-42.34" + } + }, + { + "id":"c65b2311-1ca9-462f-9770-7c9684c1585b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-03-01T20:29:39.994Z", + "completed":"2016-03-01T20:29:39.994Z", + "new_balance":"5146.59", + "value":"-61.87" + } + }, + { + "id":"13edc6b8-1c41-43cf-8fe3-5603677f4360", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-03-03T01:37:59.998Z", + "completed":"2016-03-03T01:37:59.998Z", + "new_balance":"5112.16", + "value":"-34.43" + } + }, + { + "id":"a059ee60-f987-41ed-9e97-2fb68e495ea2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-03-03T07:24:11.378Z", + "completed":"2016-03-03T07:24:11.378Z", + "new_balance":"5087.60", + "value":"-24.56" + } + }, + { + "id":"cba50bae-f843-4748-b4d8-d19c3d6bb085", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-03T09:44:01.982Z", + "completed":"2016-03-03T09:44:01.982Z", + "new_balance":"4577.06", + "value":"-510.54" + } + }, + { + "id":"4e544329-9385-4b7b-8768-9f336672162e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-03T18:19:54.232Z", + "completed":"2016-03-03T18:19:54.232Z", + "new_balance":"4503.13", + "value":"-73.93" + } + }, + { + "id":"4f77fb28-bdbe-4d54-9907-a050deeec1d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-05T14:45:42.193Z", + "completed":"2016-03-05T14:45:42.193Z", + "new_balance":"4449.95", + "value":"-53.18" + } + }, + { + "id":"d2bd672a-6027-4645-9d6b-029095b4ee79", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-05T22:29:40.525Z", + "completed":"2016-03-05T22:29:40.525Z", + "new_balance":"4401.29", + "value":"-48.66" + } + }, + { + "id":"c5147714-cef4-4b1b-9537-1cae7d7c2fe9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-07T08:31:04.871Z", + "completed":"2016-03-07T08:31:04.871Z", + "new_balance":"4387.62", + "value":"-13.67" + } + }, + { + "id":"2ebf97a3-43f9-4cfb-9da5-5d1ae5c5e634", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-09T18:58:22.618Z", + "completed":"2016-03-09T18:58:22.618Z", + "new_balance":"4334.44", + "value":"-53.18" + } + }, + { + "id":"b04e57c2-df29-486a-ae06-0e78125ff9ae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-11T08:31:36.433Z", + "completed":"2016-03-11T08:31:36.433Z", + "new_balance":"4323.44", + "value":"-11.00" + } + }, + { + "id":"bd4dd7b8-d566-49f1-aa65-df385552e9cb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-13T21:49:49.648Z", + "completed":"2016-03-13T21:49:49.648Z", + "new_balance":"4265.76", + "value":"-57.68" + } + }, + { + "id":"9447d4ec-cdd0-4ff5-9fa4-b9eecd627f22", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T18:17:59.238Z", + "completed":"2016-03-14T18:17:59.238Z", + "new_balance":"4329.12", + "value":"63.36" + } + }, + { + "id":"14218121-7396-4440-a280-3a5d81813177", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-14T23:22:24.224Z", + "completed":"2016-03-14T23:22:24.224Z", + "new_balance":"4317.19", + "value":"-11.93" + } + }, + { + "id":"12bf36db-4b19-411c-a0c6-124bd6ef5f68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-03-15T05:16:59.784Z", + "completed":"2016-03-15T05:16:59.784Z", + "new_balance":"4274.85", + "value":"-42.34" + } + }, + { + "id":"6fe8b681-5a0d-4aa8-9dc0-797e209873d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T01:47:58.474Z", + "completed":"2016-03-26T01:47:58.474Z", + "new_balance":"4249.48", + "value":"-25.37" + } + }, + { + "id":"b0a47755-8621-40ab-a1e9-5fbb1252c3a0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-03-26T03:48:58.749Z", + "completed":"2016-03-26T03:48:58.749Z", + "new_balance":"4202.55", + "value":"-46.93" + } + }, + { + "id":"7455f43d-43af-4fbb-afba-1275834b42a5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-26T06:26:07.804Z", + "completed":"2016-03-26T06:26:07.804Z", + "new_balance":"4175.71", + "value":"-26.84" + } + }, + { + "id":"94f21e9b-9b26-4ad4-90b7-d82fbcffa1bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-03-27T08:07:29.714Z", + "completed":"2016-03-27T08:07:29.714Z", + "new_balance":"4122.53", + "value":"-53.18" + } + }, + { + "id":"945c320b-78b0-442d-b21b-ded6038fa504", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-27T08:11:02.479Z", + "completed":"2016-03-27T08:11:02.479Z", + "new_balance":"4055.95", + "value":"-66.58" + } + }, + { + "id":"e50c8975-7479-4038-af0c-c7205c9ecf71", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2016-03-27T15:17:35.569Z", + "completed":"2016-03-27T15:17:35.569Z", + "new_balance":"5244.46", + "value":"1188.51" + } + }, + { + "id":"0c6e7c58-5e08-4d6c-b726-3924c521687d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-03-28T15:10:03.634Z", + "completed":"2016-03-28T15:10:03.634Z", + "new_balance":"5210.03", + "value":"-34.43" + } + }, + { + "id":"41ca3b32-16b3-464f-a91f-d086f89ba9f0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-03-30T05:53:32.921Z", + "completed":"2016-03-30T05:53:32.921Z", + "new_balance":"5167.69", + "value":"-42.34" + } + }, + { + "id":"e84e9b98-5f78-4fa0-916b-0b95299b6a92", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-04-01T04:57:46.882Z", + "completed":"2016-04-01T04:57:46.882Z", + "new_balance":"5105.82", + "value":"-61.87" + } + }, + { + "id":"bd2fdd1c-9179-4ead-90d0-b61dfa4135d6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-04-01T05:32:24.596Z", + "completed":"2016-04-01T05:32:24.596Z", + "new_balance":"5081.26", + "value":"-24.56" + } + }, + { + "id":"aa48ef45-24e6-480c-a48f-fe59c35f2038", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-04-01T06:32:19.558Z", + "completed":"2016-04-01T06:32:19.558Z", + "new_balance":"4570.72", + "value":"-510.54" + } + }, + { + "id":"cdde3b10-fd5f-40d3-8c13-18b7ccf78cea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-04-01T16:16:23.850Z", + "completed":"2016-04-01T16:16:23.850Z", + "new_balance":"4536.29", + "value":"-34.43" + } + }, + { + "id":"e90918c0-ca48-4322-b3ea-9fd9a62a5cab", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-04-01T23:04:21.394Z", + "completed":"2016-04-01T23:04:21.394Z", + "new_balance":"4462.36", + "value":"-73.93" + } + }, + { + "id":"01e445a0-e62d-4d59-a4a1-e1b3d2aa0d4e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-05T02:54:09.293Z", + "completed":"2016-04-05T02:54:09.293Z", + "new_balance":"4409.18", + "value":"-53.18" + } + }, + { + "id":"9412cd39-3d24-4b0c-bf0c-b244d648c791", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T04:22:00.578Z", + "completed":"2016-04-05T04:22:00.578Z", + "new_balance":"4396.17", + "value":"-13.01" + } + }, + { + "id":"3e2ba45d-0038-4504-aa3b-ad11fb52ba9f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-05T05:54:30.890Z", + "completed":"2016-04-05T05:54:30.890Z", + "new_balance":"4373.48", + "value":"-22.69" + } + }, + { + "id":"1cb5078c-49f9-4b48-a5f0-69b6bd112544", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-05T12:42:09.753Z", + "completed":"2016-04-05T12:42:09.753Z", + "new_balance":"4329.50", + "value":"-43.98" + } + }, + { + "id":"aabc80bd-e893-437c-9bef-c83cd00cdce8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-04-07T08:44:52.808Z", + "completed":"2016-04-07T08:44:52.808Z", + "new_balance":"4299.62", + "value":"-29.88" + } + }, + { + "id":"c55a0359-e278-4fc5-96c8-8b7900b1791b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-09T04:21:37.327Z", + "completed":"2016-04-09T04:21:37.327Z", + "new_balance":"4246.44", + "value":"-53.18" + } + }, + { + "id":"424a333f-6599-4ed4-89cd-c75d3f85ad4c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-09T17:40:50.823Z", + "completed":"2016-04-09T17:40:50.823Z", + "new_balance":"4221.57", + "value":"-24.87" + } + }, + { + "id":"36beb272-e0d2-4326-a49e-539b4dceaeef", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:08:27.019Z", + "completed":"2016-04-10T03:08:27.019Z", + "new_balance":"4182.40", + "value":"-39.17" + } + }, + { + "id":"60777040-51d4-4ca5-aa28-dd38ef19647c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T03:52:45.329Z", + "completed":"2016-04-10T03:52:45.329Z", + "new_balance":"4157.84", + "value":"-24.56" + } + }, + { + "id":"44a406e9-d3f1-4284-a4ca-feb39818a78a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-10T04:06:33.488Z", + "completed":"2016-04-10T04:06:33.488Z", + "new_balance":"4141.44", + "value":"-16.40" + } + }, + { + "id":"14f631bf-5fe9-4054-88d0-d6f547787405", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-10T14:25:31.266Z", + "completed":"2016-04-10T14:25:31.266Z", + "new_balance":"4121.37", + "value":"-20.07" + } + }, + { + "id":"d0ef6173-6ee2-4e03-a785-d27ca6e208d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T07:01:07.362Z", + "completed":"2016-04-11T07:01:07.362Z", + "new_balance":"4060.19", + "value":"-61.18" + } + }, + { + "id":"2d5398e1-0e2f-4a4e-b789-1677a0759cc4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-04-11T11:28:47.034Z", + "completed":"2016-04-11T11:28:47.034Z", + "new_balance":"4028.87", + "value":"-31.32" + } + }, + { + "id":"0a48a71e-cba0-473d-882c-dad36459c95a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-11T16:46:39.338Z", + "completed":"2016-04-11T16:46:39.338Z", + "new_balance":"3975.69", + "value":"-53.18" + } + }, + { + "id":"13806817-a845-4e2f-aa61-9c68bf1906ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-11T17:22:55.684Z", + "completed":"2016-04-11T17:22:55.684Z", + "new_balance":"3969.54", + "value":"-6.15" + } + }, + { + "id":"bd5e40e9-c15b-44c5-9189-83a6c8ae6792", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-04-11T21:17:32.375Z", + "completed":"2016-04-11T21:17:32.375Z", + "new_balance":"3939.14", + "value":"-30.40" + } + }, + { + "id":"770e2f4f-aa82-4df7-b215-84c1bee42565", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-04-21T03:14:48.426Z", + "completed":"2016-04-21T03:14:48.426Z", + "new_balance":"3885.96", + "value":"-53.18" + } + }, + { + "id":"11eda351-4271-4af7-a644-8e81caeb65a8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-23T10:19:12.422Z", + "completed":"2016-04-23T10:19:12.422Z", + "new_balance":"3870.13", + "value":"-15.83" + } + }, + { + "id":"3d006ec1-1a0e-4cc5-a268-5741379a6e95", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-04-29T03:32:18.530Z", + "completed":"2016-04-29T03:32:18.530Z", + "new_balance":"3811.65", + "value":"-58.48" + } + }, + { + "id":"f8b9915b-c6c0-49c2-8e0a-4f8e2273bbbf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-04-29T10:39:51.721Z", + "completed":"2016-04-29T10:39:51.721Z", + "new_balance":"3777.22", + "value":"-34.43" + } + }, + { + "id":"63d674c6-feea-4583-94c3-cfe44955fb87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2016-04-29T20:05:45.443Z", + "completed":"2016-04-29T20:05:45.443Z", + "new_balance":"4965.73", + "value":"1188.51" + } + }, + { + "id":"d76c0e3c-7375-4455-a60b-076d8f09982d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-04-30T00:21:50.099Z", + "completed":"2016-04-30T00:21:50.099Z", + "new_balance":"4923.39", + "value":"-42.34" + } + }, + { + "id":"c24382c4-8923-4370-9c9f-7c6ac21b89e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-05-02T06:46:26.634Z", + "completed":"2016-05-02T06:46:26.634Z", + "new_balance":"4898.83", + "value":"-24.56" + } + }, + { + "id":"8b5b283a-b9fe-4918-8134-187691877a86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-05-02T07:56:53.030Z", + "completed":"2016-05-02T07:56:53.030Z", + "new_balance":"4388.29", + "value":"-510.54" + } + }, + { + "id":"02a0bc31-5257-4aed-a103-67dd8b7ab97e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-05-02T11:56:38.373Z", + "completed":"2016-05-02T11:56:38.373Z", + "new_balance":"4314.36", + "value":"-73.93" + } + }, + { + "id":"3e86b9ce-61e1-4dc1-83ac-f8f58674cf31", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-05-02T23:39:09.262Z", + "completed":"2016-05-02T23:39:09.262Z", + "new_balance":"4252.49", + "value":"-61.87" + } + }, + { + "id":"464bb3a1-f609-4746-979d-b0c9b458eb71", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-06T08:18:26.047Z", + "completed":"2016-05-06T08:18:26.047Z", + "new_balance":"4208.51", + "value":"-43.98" + } + }, + { + "id":"6552bce4-3261-42e4-98f1-9474d3ff2619", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-05-07T05:36:15.948Z", + "completed":"2016-05-07T05:36:15.948Z", + "new_balance":"4167.38", + "value":"-41.13" + } + }, + { + "id":"7d8abbc5-bd6b-40c2-a33c-016a7924d462", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-07T14:58:44.250Z", + "completed":"2016-05-07T14:58:44.250Z", + "new_balance":"4137.50", + "value":"-29.88" + } + }, + { + "id":"07d1f072-210c-4dc1-a5b3-4188bfee4cec", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T16:26:31.359Z", + "completed":"2016-05-07T16:26:31.359Z", + "new_balance":"4109.65", + "value":"-27.85" + } + }, + { + "id":"7ffb50ed-696b-412e-884f-197c091bc271", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-07T20:08:53.414Z", + "completed":"2016-05-07T20:08:53.414Z", + "new_balance":"4098.74", + "value":"-10.91" + } + }, + { + "id":"7e276f25-cc3f-4d37-9c8d-8ddb14565fda", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-08T04:11:29.371Z", + "completed":"2016-05-08T04:11:29.371Z", + "new_balance":"4057.82", + "value":"-40.92" + } + }, + { + "id":"92881bdc-fff0-4310-8cb3-87ff8780ec87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-05-09T19:36:33.190Z", + "completed":"2016-05-09T19:36:33.190Z", + "new_balance":"4023.39", + "value":"-34.43" + } + }, + { + "id":"ffb23970-d3e1-4d53-9480-fb910a9fdf8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-13T19:27:15.034Z", + "completed":"2016-05-13T19:27:15.034Z", + "new_balance":"3970.21", + "value":"-53.18" + } + }, + { + "id":"a791ba10-ca6f-4643-bdee-9eb7a302aaed", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-05-26T17:32:34.809Z", + "completed":"2016-05-26T17:32:34.809Z", + "new_balance":"3917.03", + "value":"-53.18" + } + }, + { + "id":"65272d51-62e2-49f2-90b3-a898f4fc8e9b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-26T21:47:54.134Z", + "completed":"2016-05-26T21:47:54.134Z", + "new_balance":"3906.12", + "value":"-10.91" + } + }, + { + "id":"40468a3d-ec70-4cef-bb81-c4518ea10eca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-05-27T16:08:14.092Z", + "completed":"2016-05-27T16:08:14.092Z", + "new_balance":"3889.38", + "value":"-16.74" + } + }, + { + "id":"6b30045f-6064-41d8-9c2d-c482cd50c7f2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-05-27T22:31:57.484Z", + "completed":"2016-05-27T22:31:57.484Z", + "new_balance":"3830.90", + "value":"-58.48" + } + }, + { + "id":"244123f0-2825-49bb-8099-6edfe9228c94", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-05-30T09:16:05.073Z", + "completed":"2016-05-30T09:16:05.073Z", + "new_balance":"3796.47", + "value":"-34.43" + } + }, + { + "id":"9fa245f5-5964-40c3-9975-cd2613209484", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2016-05-30T13:51:44.554Z", + "completed":"2016-05-30T13:51:44.554Z", + "new_balance":"4984.98", + "value":"1188.51" + } + }, + { + "id":"15a40e84-dc96-4156-a5d3-76e0ff7fc104", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-05-30T14:37:42.998Z", + "completed":"2016-05-30T14:37:42.998Z", + "new_balance":"4942.64", + "value":"-42.34" + } + }, + { + "id":"2f5ea592-a65a-48f7-b2d6-8471aaf0c7ab", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T07:45:44.720Z", + "completed":"2016-06-01T07:45:44.720Z", + "new_balance":"4868.71", + "value":"-73.93" + } + }, + { + "id":"a4405051-fc77-4989-9ced-f84e51612292", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T07:47:08.389Z", + "completed":"2016-06-01T07:47:08.389Z", + "new_balance":"4815.53", + "value":"-53.18" + } + }, + { + "id":"5faa2c3e-0160-41dc-97a9-336546e9bebb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-06-01T08:32:52.805Z", + "completed":"2016-06-01T08:32:52.805Z", + "new_balance":"4781.10", + "value":"-34.43" + } + }, + { + "id":"6a59f26d-515a-4027-90b6-0bf3ca060799", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-06-01T08:49:21.604Z", + "completed":"2016-06-01T08:49:21.604Z", + "new_balance":"4756.54", + "value":"-24.56" + } + }, + { + "id":"749cfca3-ee30-4cd1-a80c-a4f03e60ca87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-06-01T11:21:38.212Z", + "completed":"2016-06-01T11:21:38.212Z", + "new_balance":"4694.67", + "value":"-61.87" + } + }, + { + "id":"dbe0c072-e199-438a-a424-21bc72c9a979", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-01T13:10:47.086Z", + "completed":"2016-06-01T13:10:47.086Z", + "new_balance":"4641.49", + "value":"-53.18" + } + }, + { + "id":"b16ebca2-57c9-4765-b165-cd626a549b14", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T13:37:20.042Z", + "completed":"2016-06-01T13:37:20.042Z", + "new_balance":"4130.95", + "value":"-510.54" + } + }, + { + "id":"fb1fa820-18a0-4d04-83a1-a380a861d1bb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T22:49:10.161Z", + "completed":"2016-06-01T22:49:10.161Z", + "new_balance":"4117.28", + "value":"-13.67" + } + }, + { + "id":"cb99a9c8-d4c8-4d2e-a069-c0458b498876", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T23:18:07.635Z", + "completed":"2016-06-01T23:18:07.635Z", + "new_balance":"4068.62", + "value":"-48.66" + } + }, + { + "id":"3ece1106-9640-47ae-9c4d-00c624eb6beb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-02T15:50:11.212Z", + "completed":"2016-06-02T15:50:11.212Z", + "new_balance":"4057.62", + "value":"-11.00" + } + }, + { + "id":"d3056cfe-53f8-43ff-9206-51c0183eaf5d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T18:19:59.156Z", + "completed":"2016-06-02T18:19:59.156Z", + "new_balance":"4045.69", + "value":"-11.93" + } + }, + { + "id":"1427d5c1-8a7f-43fc-9ce7-18279b354e0a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-02T19:08:49.537Z", + "completed":"2016-06-02T19:08:49.537Z", + "new_balance":"3988.01", + "value":"-57.68" + } + }, + { + "id":"7f15dfd6-4e76-4e26-a948-e31fa84b9e41", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-06-04T08:19:51.601Z", + "completed":"2016-06-04T08:19:51.601Z", + "new_balance":"3941.08", + "value":"-46.93" + } + }, + { + "id":"b950d374-ed26-4056-9d2f-24e95fa3ae04", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T13:25:59.671Z", + "completed":"2016-06-04T13:25:59.671Z", + "new_balance":"3915.71", + "value":"-25.37" + } + }, + { + "id":"981f3bfb-754b-471d-9c71-c5f4956dec7a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-04T17:07:54.796Z", + "completed":"2016-06-04T17:07:54.796Z", + "new_balance":"3873.37", + "value":"-42.34" + } + }, + { + "id":"959941c6-159f-4c19-ad01-46cbcbe34b20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T07:51:59.126Z", + "completed":"2016-06-05T07:51:59.126Z", + "new_balance":"3846.53", + "value":"-26.84" + } + }, + { + "id":"0e470e29-6046-4a7f-bdf2-109e90f2fa34", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-05T10:54:51.368Z", + "completed":"2016-06-05T10:54:51.368Z", + "new_balance":"3779.95", + "value":"-66.58" + } + }, + { + "id":"221d88aa-77af-4d21-8474-a2803eb0019a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-06-18T23:53:22.068Z", + "completed":"2016-06-18T23:53:22.068Z", + "new_balance":"3726.77", + "value":"-53.18" + } + }, + { + "id":"7ffff937-7e54-4c47-9d9f-33fdf9d019dc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-06-30T03:30:43.704Z", + "completed":"2016-06-30T03:30:43.704Z", + "new_balance":"3692.34", + "value":"-34.43" + } + }, + { + "id":"abe60493-2272-4888-ab4a-609c94f2c747", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-06-30T07:13:54.554Z", + "completed":"2016-06-30T07:13:54.554Z", + "new_balance":"3650.00", + "value":"-42.34" + } + }, + { + "id":"76581be0-94f9-4916-bf49-c99f82b21738", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-06-30T10:20:16.921Z", + "completed":"2016-06-30T10:20:16.921Z", + "new_balance":"3608.47", + "value":"-41.53" + } + }, + { + "id":"b14be296-207a-4914-b7d8-726c96cc1118", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2016-06-30T11:26:05.336Z", + "completed":"2016-06-30T11:26:05.336Z", + "new_balance":"4796.98", + "value":"1188.51" + } + }, + { + "id":"3f2482f4-98b7-4e78-bbbc-78517f13e020", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-07-01T05:46:42.989Z", + "completed":"2016-07-01T05:46:42.989Z", + "new_balance":"4735.11", + "value":"-61.87" + } + }, + { + "id":"5de509f8-86fc-41b2-b18b-6c5728bad68e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-07-03T01:55:13.692Z", + "completed":"2016-07-03T01:55:13.692Z", + "new_balance":"4700.68", + "value":"-34.43" + } + }, + { + "id":"dbc3a22c-b87d-4134-a1d9-97c7d6e147b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-07-03T07:21:10.066Z", + "completed":"2016-07-03T07:21:10.066Z", + "new_balance":"4190.14", + "value":"-510.54" + } + }, + { + "id":"eb0e10ed-b5c0-49b8-a3a1-2d0085dc15e0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-07-03T22:18:03.685Z", + "completed":"2016-07-03T22:18:03.685Z", + "new_balance":"4116.21", + "value":"-73.93" + } + }, + { + "id":"fb751c63-823c-4aa2-b11c-a3ebffb22f3d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-07-03T22:50:53.809Z", + "completed":"2016-07-03T22:50:53.809Z", + "new_balance":"4091.65", + "value":"-24.56" + } + }, + { + "id":"c7526bdb-dfce-4e9e-8048-34dda58ca959", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-05T11:14:57.380Z", + "completed":"2016-07-05T11:14:57.380Z", + "new_balance":"4038.47", + "value":"-53.18" + } + }, + { + "id":"291163b4-0f2a-4544-aed6-dadcaa5f4135", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T15:27:31.878Z", + "completed":"2016-07-05T15:27:31.878Z", + "new_balance":"4025.46", + "value":"-13.01" + } + }, + { + "id":"9e2cb4f7-79f3-45c8-8942-341486b99bdf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-05T23:11:18.303Z", + "completed":"2016-07-05T23:11:18.303Z", + "new_balance":"3981.48", + "value":"-43.98" + } + }, + { + "id":"7f7fc87f-e425-438e-ac8c-d3cc578f0391", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-07-06T00:41:42.294Z", + "completed":"2016-07-06T00:41:42.294Z", + "new_balance":"3951.60", + "value":"-29.88" + } + }, + { + "id":"9e301cf9-ba8f-41a3-a6c4-39a62b3c48a1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-06T05:58:11.905Z", + "completed":"2016-07-06T05:58:11.905Z", + "new_balance":"3928.91", + "value":"-22.69" + } + }, + { + "id":"37221ed9-1c1d-4aa4-8a4d-aba903e0ba17", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-07T03:08:03.881Z", + "completed":"2016-07-07T03:08:03.881Z", + "new_balance":"3889.74", + "value":"-39.17" + } + }, + { + "id":"94d9ff92-5183-4bc5-92c6-355379ee55fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-10T07:04:00.795Z", + "completed":"2016-07-10T07:04:00.795Z", + "new_balance":"3864.87", + "value":"-24.87" + } + }, + { + "id":"a3f876c4-b3f2-4555-bb7a-466caa8dbade", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-10T22:02:57.025Z", + "completed":"2016-07-10T22:02:57.025Z", + "new_balance":"3811.69", + "value":"-53.18" + } + }, + { + "id":"c907eb5b-56f2-4ae5-a15b-aba2a05f8900", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T16:57:14.990Z", + "completed":"2016-07-12T16:57:14.990Z", + "new_balance":"3791.62", + "value":"-20.07" + } + }, + { + "id":"7a7641be-7a8a-451a-9b6a-de385d7b5e82", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T19:43:03.826Z", + "completed":"2016-07-12T19:43:03.826Z", + "new_balance":"3752.45", + "value":"-39.17" + } + }, + { + "id":"9bcc73ff-1d20-467c-8385-65deaf3ca60a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-12T23:08:18.025Z", + "completed":"2016-07-12T23:08:18.025Z", + "new_balance":"3727.89", + "value":"-24.56" + } + }, + { + "id":"ac832673-135a-4563-b3eb-d4a4dff7e872", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-15T20:36:21.205Z", + "completed":"2016-07-15T20:36:21.205Z", + "new_balance":"3711.49", + "value":"-16.40" + } + }, + { + "id":"16bdc3a9-cf51-4392-ac40-6e06ebaccea6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-16T09:04:24.293Z", + "completed":"2016-07-16T09:04:24.293Z", + "new_balance":"3658.31", + "value":"-53.18" + } + }, + { + "id":"5b282985-abcd-403b-998d-16c0b49a95f9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-16T16:12:43.745Z", + "completed":"2016-07-16T16:12:43.745Z", + "new_balance":"3652.16", + "value":"-6.15" + } + }, + { + "id":"a9fb7917-7817-406d-a6fb-e3ec06f83374", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-07-17T12:06:24.123Z", + "completed":"2016-07-17T12:06:24.123Z", + "new_balance":"3620.84", + "value":"-31.32" + } + }, + { + "id":"4ac8186a-2e37-4171-96cf-1653bc5048d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-17T16:47:28.205Z", + "completed":"2016-07-17T16:47:28.205Z", + "new_balance":"3559.66", + "value":"-61.18" + } + }, + { + "id":"9b1697c3-95ea-4789-8505-78f9073cc240", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-07-19T09:39:35.534Z", + "completed":"2016-07-19T09:39:35.534Z", + "new_balance":"3529.26", + "value":"-30.40" + } + }, + { + "id":"8e45c384-a7d3-40b6-b123-a3246ac9506f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-07-20T19:46:20.151Z", + "completed":"2016-07-20T19:46:20.151Z", + "new_balance":"3476.08", + "value":"-53.18" + } + }, + { + "id":"acd363b7-565c-49fd-919c-6665884b4afe", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-23T21:15:27.076Z", + "completed":"2016-07-23T21:15:27.076Z", + "new_balance":"3460.25", + "value":"-15.83" + } + }, + { + "id":"8bac7133-18cd-461f-a70f-091496b6e9ce", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-07-26T15:31:13.432Z", + "completed":"2016-07-26T15:31:13.432Z", + "new_balance":"3401.77", + "value":"-58.48" + } + }, + { + "id":"728a160d-e7ae-4bb4-b623-ba210fabb5fc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2016-07-27T03:34:39.420Z", + "completed":"2016-07-27T03:34:39.420Z", + "new_balance":"4590.28", + "value":"1188.51" + } + }, + { + "id":"6ff00e84-b2d2-4aae-bc20-779d77d915a7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-07-28T14:11:10.777Z", + "completed":"2016-07-28T14:11:10.777Z", + "new_balance":"4555.85", + "value":"-34.43" + } + }, + { + "id":"5a69939b-dbb4-47a1-bd74-d058dcfc9557", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-07-30T14:41:55.334Z", + "completed":"2016-07-30T14:41:55.334Z", + "new_balance":"4513.51", + "value":"-42.34" + } + }, + { + "id":"ba4b0d3f-10a4-483a-87ad-c1c57f3aab84", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-08-01T13:19:29.524Z", + "completed":"2016-08-01T13:19:29.524Z", + "new_balance":"4451.64", + "value":"-61.87" + } + }, + { + "id":"64038e4a-c3bf-4168-b43a-be03da81849d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-08-03T00:39:46.948Z", + "completed":"2016-08-03T00:39:46.948Z", + "new_balance":"3941.10", + "value":"-510.54" + } + }, + { + "id":"d30551ab-7fba-4dd5-a9bb-b552603cdcb5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-08-03T12:05:02.325Z", + "completed":"2016-08-03T12:05:02.325Z", + "new_balance":"3867.17", + "value":"-73.93" + } + }, + { + "id":"19c1137c-71b8-45db-a6d4-01e6bedde697", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-08-03T12:36:50.860Z", + "completed":"2016-08-03T12:36:50.860Z", + "new_balance":"3842.61", + "value":"-24.56" + } + }, + { + "id":"50ca8e3a-7755-4ede-9550-985896ad6e4f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-08-03T14:45:54.075Z", + "completed":"2016-08-03T14:45:54.075Z", + "new_balance":"3808.18", + "value":"-34.43" + } + }, + { + "id":"963bb620-4fa0-4f1b-b91c-f401016315ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-08T10:21:11.937Z", + "completed":"2016-08-08T10:21:11.937Z", + "new_balance":"3755.00", + "value":"-53.18" + } + }, + { + "id":"ff386361-ddaa-4910-a1f6-796b08ec5126", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-08T18:46:30.136Z", + "completed":"2016-08-08T18:46:30.136Z", + "new_balance":"3711.02", + "value":"-43.98" + } + }, + { + "id":"be4db306-0ec5-4079-be36-5d964681c55b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-11T09:14:00.568Z", + "completed":"2016-08-11T09:14:00.568Z", + "new_balance":"3721.91", + "value":"10.89" + } + }, + { + "id":"bcc73b34-765d-4fb5-8a0b-0bcb65d0403a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-13T08:11:35.251Z", + "completed":"2016-08-13T08:11:35.251Z", + "new_balance":"3692.03", + "value":"-29.88" + } + }, + { + "id":"3ecc4c64-f320-42b5-85ba-18e50a032e68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-14T05:39:53.308Z", + "completed":"2016-08-14T05:39:53.308Z", + "new_balance":"3664.18", + "value":"-27.85" + } + }, + { + "id":"e2fc7940-673f-408d-89ab-7a3dfbba8a58", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-17T05:12:37.193Z", + "completed":"2016-08-17T05:12:37.193Z", + "new_balance":"3653.27", + "value":"-10.91" + } + }, + { + "id":"c7afe06e-3932-4d4b-ba06-5582cbc4149e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-08-21T23:57:44.689Z", + "completed":"2016-08-21T23:57:44.689Z", + "new_balance":"3612.14", + "value":"-41.13" + } + }, + { + "id":"e36e9fa3-dc81-4398-9e72-fc85203117b0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-23T15:14:13.459Z", + "completed":"2016-08-23T15:14:13.459Z", + "new_balance":"3571.22", + "value":"-40.92" + } + }, + { + "id":"ce821997-0715-47ff-b4a4-ebcc16c90490", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-08-23T23:04:34.900Z", + "completed":"2016-08-23T23:04:34.900Z", + "new_balance":"3518.04", + "value":"-53.18" + } + }, + { + "id":"88a06204-f4b4-4538-939f-3c894c4eeb03", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-24T20:01:34.478Z", + "completed":"2016-08-24T20:01:34.478Z", + "new_balance":"3507.13", + "value":"-10.91" + } + }, + { + "id":"4be41a77-c92f-4ec0-a15e-66266cc5a31e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-08-27T08:07:27.219Z", + "completed":"2016-08-27T08:07:27.219Z", + "new_balance":"3448.65", + "value":"-58.48" + } + }, + { + "id":"4ea9cfff-d0fb-4810-ad3e-3e793112a2fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2016-08-27T12:09:42.237Z", + "completed":"2016-08-27T12:09:42.237Z", + "new_balance":"4637.16", + "value":"1188.51" + } + }, + { + "id":"d396ba3a-da96-49d3-98b5-5b9858fb67de", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-08-27T21:46:54.251Z", + "completed":"2016-08-27T21:46:54.251Z", + "new_balance":"4620.42", + "value":"-16.74" + } + }, + { + "id":"ec8e59d9-1d70-4363-a2bc-f986fd844e26", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-08-28T19:07:14.552Z", + "completed":"2016-08-28T19:07:14.552Z", + "new_balance":"4585.99", + "value":"-34.43" + } + }, + { + "id":"2ae3427a-8024-4bc7-a974-07a790bc7f8d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-08-30T15:18:34.166Z", + "completed":"2016-08-30T15:18:34.166Z", + "new_balance":"4543.65", + "value":"-42.34" + } + }, + { + "id":"ce16a996-e390-460d-b755-0bb6884a5761", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-09-01T14:30:29.190Z", + "completed":"2016-09-01T14:30:29.190Z", + "new_balance":"4481.78", + "value":"-61.87" + } + }, + { + "id":"428bdc99-0a61-4329-afae-d541a59347ba", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-03T08:41:07.611Z", + "completed":"2016-09-03T08:41:07.611Z", + "new_balance":"4407.85", + "value":"-73.93" + } + }, + { + "id":"9969e9e1-d5b0-4fb6-909b-ca88904f41dd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-09-03T13:46:28.387Z", + "completed":"2016-09-03T13:46:28.387Z", + "new_balance":"4373.42", + "value":"-34.43" + } + }, + { + "id":"16486864-fc39-4708-b746-4830572449b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-09-03T15:09:12.284Z", + "completed":"2016-09-03T15:09:12.284Z", + "new_balance":"4348.86", + "value":"-24.56" + } + }, + { + "id":"3b1bb60e-7872-4d5e-af34-1d582226efa1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-03T20:12:02.449Z", + "completed":"2016-09-03T20:12:02.449Z", + "new_balance":"3838.32", + "value":"-510.54" + } + }, + { + "id":"710e125a-d11b-441a-bfd3-bc0a6a983f94", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-05T09:45:20.589Z", + "completed":"2016-09-05T09:45:20.589Z", + "new_balance":"3785.14", + "value":"-53.18" + } + }, + { + "id":"6521ad8a-3f6c-4dc6-977a-c68d0ca36973", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-05T18:55:20.233Z", + "completed":"2016-09-05T18:55:20.233Z", + "new_balance":"3736.48", + "value":"-48.66" + } + }, + { + "id":"4e78920b-c340-4245-b67b-a35d52cd6105", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-07T10:51:22.194Z", + "completed":"2016-09-07T10:51:22.194Z", + "new_balance":"3722.81", + "value":"-13.67" + } + }, + { + "id":"bc9048f5-7185-4dd0-b275-47276730f93d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-09T23:41:46.440Z", + "completed":"2016-09-09T23:41:46.440Z", + "new_balance":"3669.63", + "value":"-53.18" + } + }, + { + "id":"5cb5bed4-c647-499b-bbdb-3e0ab71e543c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-11T17:45:37.845Z", + "completed":"2016-09-11T17:45:37.845Z", + "new_balance":"3658.63", + "value":"-11.00" + } + }, + { + "id":"d7574a0e-a1c2-42ac-956d-270d41f166c2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-13T01:26:29.430Z", + "completed":"2016-09-13T01:26:29.430Z", + "new_balance":"3600.95", + "value":"-57.68" + } + }, + { + "id":"48182e67-ac71-47f7-b947-38c45653d143", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T00:36:19.495Z", + "completed":"2016-09-14T00:36:19.495Z", + "new_balance":"3664.31", + "value":"63.36" + } + }, + { + "id":"4d279df1-3741-41a9-926c-4c98e98090d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-14T19:55:26.665Z", + "completed":"2016-09-14T19:55:26.665Z", + "new_balance":"3652.38", + "value":"-11.93" + } + }, + { + "id":"63d263a0-a0e0-4417-9044-c6e7368cd04e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-09-15T22:22:47.686Z", + "completed":"2016-09-15T22:22:47.686Z", + "new_balance":"3610.04", + "value":"-42.34" + } + }, + { + "id":"99f59fab-e57d-4db7-9636-724ad7332faa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T14:03:21.545Z", + "completed":"2016-09-26T14:03:21.545Z", + "new_balance":"3584.67", + "value":"-25.37" + } + }, + { + "id":"02ae186b-bd50-4c73-99d1-a139df88d58a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-26T15:43:08.722Z", + "completed":"2016-09-26T15:43:08.722Z", + "new_balance":"3557.83", + "value":"-26.84" + } + }, + { + "id":"f6ff5540-861f-4c32-ad1b-9bffd06b8b81", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-09-26T21:20:02.365Z", + "completed":"2016-09-26T21:20:02.365Z", + "new_balance":"3510.90", + "value":"-46.93" + } + }, + { + "id":"7c2e7a7d-78b8-40dd-846c-8e3f9c569596", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-27T00:17:47.623Z", + "completed":"2016-09-27T00:17:47.623Z", + "new_balance":"3444.32", + "value":"-66.58" + } + }, + { + "id":"82cee88c-3d05-43fd-8b78-6980bf2cefe3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-09-27T16:20:34.466Z", + "completed":"2016-09-27T16:20:34.466Z", + "new_balance":"3391.14", + "value":"-53.18" + } + }, + { + "id":"34a20f8a-47a6-44d2-856c-f53c8df7f64c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2016-09-27T20:26:03.872Z", + "completed":"2016-09-27T20:26:03.872Z", + "new_balance":"4579.65", + "value":"1188.51" + } + }, + { + "id":"1da06c1b-ead5-4afc-8ad3-459dd693e13b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-09-28T13:01:21.386Z", + "completed":"2016-09-28T13:01:21.386Z", + "new_balance":"4545.22", + "value":"-34.43" + } + }, + { + "id":"2f633868-9c2f-426e-9527-1796f4aa6812", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-09-30T10:25:12.472Z", + "completed":"2016-09-30T10:25:12.472Z", + "new_balance":"4502.88", + "value":"-42.34" + } + }, + { + "id":"0327c05d-2027-470b-b13d-a74433b69057", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-10-01T01:00:53.428Z", + "completed":"2016-10-01T01:00:53.428Z", + "new_balance":"4478.32", + "value":"-24.56" + } + }, + { + "id":"d3b6c61b-8df3-4300-9802-7d04cd43b8f4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-10-01T04:52:13.056Z", + "completed":"2016-10-01T04:52:13.056Z", + "new_balance":"4443.89", + "value":"-34.43" + } + }, + { + "id":"4266b57e-55ed-4bf0-a788-2bf43ef5a74c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-10-01T05:03:24.878Z", + "completed":"2016-10-01T05:03:24.878Z", + "new_balance":"4382.02", + "value":"-61.87" + } + }, + { + "id":"f821737f-6d82-437f-ace0-efb10ded3ac1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-10-01T11:21:17.518Z", + "completed":"2016-10-01T11:21:17.518Z", + "new_balance":"4308.09", + "value":"-73.93" + } + }, + { + "id":"a01ae30e-b528-4f1c-be6d-777ab7e843b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-10-01T18:14:01.809Z", + "completed":"2016-10-01T18:14:01.809Z", + "new_balance":"3797.55", + "value":"-510.54" + } + }, + { + "id":"ec42eed0-3980-4ba1-8da2-a5418d8ca628", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-05T05:51:39.028Z", + "completed":"2016-10-05T05:51:39.028Z", + "new_balance":"3774.86", + "value":"-22.69" + } + }, + { + "id":"4de1f0c5-a897-4e23-9d9f-8422256e9085", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T12:55:09.103Z", + "completed":"2016-10-05T12:55:09.103Z", + "new_balance":"3761.85", + "value":"-13.01" + } + }, + { + "id":"269e99ab-410d-4635-9de6-71165e5367cf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-05T19:49:00.751Z", + "completed":"2016-10-05T19:49:00.751Z", + "new_balance":"3708.67", + "value":"-53.18" + } + }, + { + "id":"15cb3c4d-0754-4ada-800c-272b6b1b55de", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-05T22:42:44.837Z", + "completed":"2016-10-05T22:42:44.837Z", + "new_balance":"3664.69", + "value":"-43.98" + } + }, + { + "id":"c7dabe40-acfb-4ecf-b720-01181ce8dcd4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2016-10-07T07:04:50.470Z", + "completed":"2016-10-07T07:04:50.470Z", + "new_balance":"3634.81", + "value":"-29.88" + } + }, + { + "id":"67245ebd-0217-466d-b71f-0b180edafec2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-09T13:06:58.960Z", + "completed":"2016-10-09T13:06:58.960Z", + "new_balance":"3609.94", + "value":"-24.87" + } + }, + { + "id":"993524cd-d601-41b9-b26c-3a98afbab327", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-09T17:02:38.361Z", + "completed":"2016-10-09T17:02:38.361Z", + "new_balance":"3556.76", + "value":"-53.18" + } + }, + { + "id":"ea0a81bf-ec29-4c41-a9ec-928235e71386", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-10T03:03:47.857Z", + "completed":"2016-10-10T03:03:47.857Z", + "new_balance":"3540.36", + "value":"-16.40" + } + }, + { + "id":"b39dccff-ef65-4870-8a09-eb42f570a516", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T03:15:48.540Z", + "completed":"2016-10-10T03:15:48.540Z", + "new_balance":"3515.80", + "value":"-24.56" + } + }, + { + "id":"79670868-b581-47e7-90b5-e18b5dfa1c67", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T09:25:16.213Z", + "completed":"2016-10-10T09:25:16.213Z", + "new_balance":"3476.63", + "value":"-39.17" + } + }, + { + "id":"5408cc6d-3a03-4b56-9522-3cd6ef45790f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-10T18:45:18.099Z", + "completed":"2016-10-10T18:45:18.099Z", + "new_balance":"3456.56", + "value":"-20.07" + } + }, + { + "id":"0efb93d0-8117-46a8-a591-b01e74d5b2b2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-10-11T00:31:38.082Z", + "completed":"2016-10-11T00:31:38.082Z", + "new_balance":"3426.16", + "value":"-30.40" + } + }, + { + "id":"1df47138-9edb-4ad1-9234-686723fb82bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T10:35:16.161Z", + "completed":"2016-10-11T10:35:16.161Z", + "new_balance":"3364.98", + "value":"-61.18" + } + }, + { + "id":"393e7de0-5697-4898-9ea5-51cfac592582", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-11T13:16:31.589Z", + "completed":"2016-10-11T13:16:31.589Z", + "new_balance":"3358.83", + "value":"-6.15" + } + }, + { + "id":"6a3d89e0-73d3-4495-a5d9-d47739bc7760", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-11T19:23:30.982Z", + "completed":"2016-10-11T19:23:30.982Z", + "new_balance":"3305.65", + "value":"-53.18" + } + }, + { + "id":"f4d8c6aa-0af2-4aab-b737-e9bedd1e021d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-10-11T22:31:50.720Z", + "completed":"2016-10-11T22:31:50.720Z", + "new_balance":"3274.33", + "value":"-31.32" + } + }, + { + "id":"5bfbe73b-aaad-4966-9353-1c97ad8beb7a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-10-21T08:10:46.089Z", + "completed":"2016-10-21T08:10:46.089Z", + "new_balance":"3221.15", + "value":"-53.18" + } + }, + { + "id":"6fd3cd32-2636-49ef-bdcd-b6c4e785c6f8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-23T02:44:22.761Z", + "completed":"2016-10-23T02:44:22.761Z", + "new_balance":"3205.32", + "value":"-15.83" + } + }, + { + "id":"0dafbf76-151c-40aa-bc92-b6cb82afded0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-10-29T03:30:56.937Z", + "completed":"2016-10-29T03:30:56.937Z", + "new_balance":"3146.84", + "value":"-58.48" + } + }, + { + "id":"6ed123e5-fd9a-421d-91e8-537e5993309b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-10-29T03:36:11.027Z", + "completed":"2016-10-29T03:36:11.027Z", + "new_balance":"3112.41", + "value":"-34.43" + } + }, + { + "id":"48192cc6-7933-4076-b911-9519ddee464d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2016-10-29T22:43:18.165Z", + "completed":"2016-10-29T22:43:18.165Z", + "new_balance":"4300.92", + "value":"1188.51" + } + }, + { + "id":"396220ab-1499-46e0-9169-100e1c5ea3d0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-10-30T14:34:07.147Z", + "completed":"2016-10-30T14:34:07.147Z", + "new_balance":"4258.58", + "value":"-42.34" + } + }, + { + "id":"d9143690-0f94-4499-94cb-16f86a75654b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-11-02T14:08:51.762Z", + "completed":"2016-11-02T14:08:51.762Z", + "new_balance":"4184.65", + "value":"-73.93" + } + }, + { + "id":"0c865e0f-a42c-478d-ba64-941bfd928a78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-11-02T21:15:34.283Z", + "completed":"2016-11-02T21:15:34.283Z", + "new_balance":"4160.09", + "value":"-24.56" + } + }, + { + "id":"e8a119ad-6643-4916-a141-ed4f3c528429", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-11-02T21:17:21.262Z", + "completed":"2016-11-02T21:17:21.262Z", + "new_balance":"4098.22", + "value":"-61.87" + } + }, + { + "id":"0cade5dd-91a1-4d82-bae0-bacc03b29936", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-11-02T23:45:24.557Z", + "completed":"2016-11-02T23:45:24.557Z", + "new_balance":"3587.68", + "value":"-510.54" + } + }, + { + "id":"36de83af-f739-461f-b03c-3b543d347a38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-06T06:39:48.334Z", + "completed":"2016-11-06T06:39:48.334Z", + "new_balance":"3543.70", + "value":"-43.98" + } + }, + { + "id":"4154c633-ceba-457e-9539-779ac848b651", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2016-11-07T09:39:51.149Z", + "completed":"2016-11-07T09:39:51.149Z", + "new_balance":"3502.57", + "value":"-41.13" + } + }, + { + "id":"afca52f0-2f24-4f34-93b0-2ca4f75199ac", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T10:46:40.820Z", + "completed":"2016-11-07T10:46:40.820Z", + "new_balance":"3474.72", + "value":"-27.85" + } + }, + { + "id":"d858c62b-38fd-45ab-a340-f9b376622a40", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-07T16:47:42.382Z", + "completed":"2016-11-07T16:47:42.382Z", + "new_balance":"3444.84", + "value":"-29.88" + } + }, + { + "id":"31c6a487-b398-46e7-aa23-bc1c3a08b99b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-07T22:26:55.665Z", + "completed":"2016-11-07T22:26:55.665Z", + "new_balance":"3433.93", + "value":"-10.91" + } + }, + { + "id":"e9fc7ffa-fbc3-4342-b544-e871d39a494c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-08T14:24:57.937Z", + "completed":"2016-11-08T14:24:57.937Z", + "new_balance":"3393.01", + "value":"-40.92" + } + }, + { + "id":"ab60aff3-3c50-4679-8162-fac1276d5d4b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-11-09T10:03:04.919Z", + "completed":"2016-11-09T10:03:04.919Z", + "new_balance":"3358.58", + "value":"-34.43" + } + }, + { + "id":"572f08cb-b0f4-4288-9052-7cbb1d20983d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-13T18:58:28.130Z", + "completed":"2016-11-13T18:58:28.130Z", + "new_balance":"3305.40", + "value":"-53.18" + } + }, + { + "id":"dd30c6dc-a714-48d9-9ebb-a10ec7c692d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-11-26T10:08:13.593Z", + "completed":"2016-11-26T10:08:13.593Z", + "new_balance":"3252.22", + "value":"-53.18" + } + }, + { + "id":"49bce125-1bc5-4852-8f8f-28e93ba08cdb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-26T10:52:33.740Z", + "completed":"2016-11-26T10:52:33.740Z", + "new_balance":"3241.31", + "value":"-10.91" + } + }, + { + "id":"d9606f7b-9cda-4cb5-b1e5-5fb67f7d5a4d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-11-27T03:06:19.177Z", + "completed":"2016-11-27T03:06:19.177Z", + "new_balance":"3182.83", + "value":"-58.48" + } + }, + { + "id":"37d54d6d-fe6d-458e-935a-e074b9f1e2ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-11-27T14:13:44.507Z", + "completed":"2016-11-27T14:13:44.507Z", + "new_balance":"3166.09", + "value":"-16.74" + } + }, + { + "id":"18123fcf-a85a-4f85-8b5d-448330b134b7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-11-30T02:04:13.316Z", + "completed":"2016-11-30T02:04:13.316Z", + "new_balance":"3123.75", + "value":"-42.34" + } + }, + { + "id":"4185b31c-189b-4f20-a877-5f429ec07b3b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2016-11-30T06:23:05.426Z", + "completed":"2016-11-30T06:23:05.426Z", + "new_balance":"4312.26", + "value":"1188.51" + } + }, + { + "id":"d5d06fba-d4db-43ab-8944-4d1e75cee17b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-11-30T16:34:48.335Z", + "completed":"2016-11-30T16:34:48.335Z", + "new_balance":"4277.83", + "value":"-34.43" + } + }, + { + "id":"eff4b316-5019-4870-b180-6d597ac6b2a2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T00:33:13.716Z", + "completed":"2016-12-01T00:33:13.716Z", + "new_balance":"4203.90", + "value":"-73.93" + } + }, + { + "id":"dfa9f047-4f8c-41c3-8ca4-13ae4c7ad7a2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T00:52:41.173Z", + "completed":"2016-12-01T00:52:41.173Z", + "new_balance":"4150.72", + "value":"-53.18" + } + }, + { + "id":"bc1a78d4-5aa9-475a-9391-d661efc6810f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-01T06:25:40.934Z", + "completed":"2016-12-01T06:25:40.934Z", + "new_balance":"4097.54", + "value":"-53.18" + } + }, + { + "id":"241b1dbe-ebf5-45da-8a72-e6d15ad8f17d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T06:46:32.506Z", + "completed":"2016-12-01T06:46:32.506Z", + "new_balance":"3587.00", + "value":"-510.54" + } + }, + { + "id":"41d93973-8fe3-4112-940d-47164094b2e2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2016-12-01T14:20:30.443Z", + "completed":"2016-12-01T14:20:30.443Z", + "new_balance":"3525.13", + "value":"-61.87" + } + }, + { + "id":"3e6ee476-b25a-428a-9ee4-e5159b860609", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T17:29:31.897Z", + "completed":"2016-12-01T17:29:31.897Z", + "new_balance":"3476.47", + "value":"-48.66" + } + }, + { + "id":"d2aa7f25-1848-418b-aede-349df54186c3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2016-12-01T20:02:52.033Z", + "completed":"2016-12-01T20:02:52.033Z", + "new_balance":"3442.04", + "value":"-34.43" + } + }, + { + "id":"c89ab741-85cb-4857-b937-6bc9115e2801", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2016-12-01T21:54:22.000Z", + "completed":"2016-12-01T21:54:22.000Z", + "new_balance":"3417.48", + "value":"-24.56" + } + }, + { + "id":"d95a5fac-8fa6-41f3-ae52-f1eb7f609f41", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T22:13:25.892Z", + "completed":"2016-12-01T22:13:25.892Z", + "new_balance":"3403.81", + "value":"-13.67" + } + }, + { + "id":"df889faf-c5bb-452d-a7b8-1780d8f96ded", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-02T17:31:17.718Z", + "completed":"2016-12-02T17:31:17.718Z", + "new_balance":"3392.81", + "value":"-11.00" + } + }, + { + "id":"429becc5-dad8-45ac-8a78-35b50ff1b737", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T20:54:47.175Z", + "completed":"2016-12-02T20:54:47.175Z", + "new_balance":"3380.88", + "value":"-11.93" + } + }, + { + "id":"11683496-69e6-4bba-aa31-f3cb3c5bb733", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-02T22:14:45.149Z", + "completed":"2016-12-02T22:14:45.149Z", + "new_balance":"3323.20", + "value":"-57.68" + } + }, + { + "id":"5a33c2dc-8b2b-4498-a634-4e2679b24b7c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-04T00:13:25.758Z", + "completed":"2016-12-04T00:13:25.758Z", + "new_balance":"3280.86", + "value":"-42.34" + } + }, + { + "id":"2f586916-e016-42b5-a63b-033f72c1bdae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2016-12-04T14:34:25.023Z", + "completed":"2016-12-04T14:34:25.023Z", + "new_balance":"3233.93", + "value":"-46.93" + } + }, + { + "id":"8f710fe6-3cda-464e-94a7-ff407016fa77", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:43:08.152Z", + "completed":"2016-12-04T21:43:08.152Z", + "new_balance":"3208.56", + "value":"-25.37" + } + }, + { + "id":"0d0ce223-d455-446d-bc1e-c2ae9883bd38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T02:19:24.104Z", + "completed":"2016-12-05T02:19:24.104Z", + "new_balance":"3181.72", + "value":"-26.84" + } + }, + { + "id":"5c6284e8-5854-4044-affc-55120e56f57b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-05T11:40:54.818Z", + "completed":"2016-12-05T11:40:54.818Z", + "new_balance":"3115.14", + "value":"-66.58" + } + }, + { + "id":"f9fe7222-60ae-4b63-96d6-c8974bf51da3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2016-12-18T23:10:16.708Z", + "completed":"2016-12-18T23:10:16.708Z", + "new_balance":"3061.96", + "value":"-53.18" + } + }, + { + "id":"85381608-8a63-416e-8780-c10e76d05b78", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2016-12-30T01:06:27.513Z", + "completed":"2016-12-30T01:06:27.513Z", + "new_balance":"3019.62", + "value":"-42.34" + } + }, + { + "id":"e424e6c7-cb1c-4b32-a44f-089035177b77", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2016-12-30T01:49:43.570Z", + "completed":"2016-12-30T01:49:43.570Z", + "new_balance":"4208.13", + "value":"1188.51" + } + }, + { + "id":"c110810e-f678-4cde-9ae1-2cc68b3480f2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2016-12-30T02:30:49.682Z", + "completed":"2016-12-30T02:30:49.682Z", + "new_balance":"4166.60", + "value":"-41.53" + } + }, + { + "id":"a35bc26c-9b23-4f5c-9b6b-5b94982197a6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2016-12-30T09:30:10.620Z", + "completed":"2016-12-30T09:30:10.620Z", + "new_balance":"4132.17", + "value":"-34.43" + } + }, + { + "id":"6a9d8099-192d-4fe7-a34d-49f12e2929cf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T14:28:28.201Z", + "completed":"2017-01-01T14:28:28.201Z", + "new_balance":"4070.30", + "value":"-61.87" + } + }, + { + "id":"e984ab8d-aef6-4317-81c6-b02f6891307a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-01-01T21:26:16.430Z", + "completed":"2017-01-01T21:26:16.430Z", + "new_balance":"4008.43", + "value":"-61.87" + } + }, + { + "id":"a448eaaf-a9fc-4f95-b49f-a76daed7effc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-01-03T10:25:19.911Z", + "completed":"2017-01-03T10:25:19.911Z", + "new_balance":"3983.87", + "value":"-24.56" + } + }, + { + "id":"cbde2839-1c6e-4ff6-ac6c-dd2dc9c9b4b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-01-03T13:43:08.755Z", + "completed":"2017-01-03T13:43:08.755Z", + "new_balance":"3909.94", + "value":"-73.93" + } + }, + { + "id":"002da409-c72b-4b34-af60-55f1dfe2b30b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-01-03T20:21:42.123Z", + "completed":"2017-01-03T20:21:42.123Z", + "new_balance":"3875.51", + "value":"-34.43" + } + }, + { + "id":"ff87650f-cdea-4a9c-ab92-fb651acc795a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-01-03T23:32:36.862Z", + "completed":"2017-01-03T23:32:36.862Z", + "new_balance":"3364.97", + "value":"-510.54" + } + }, + { + "id":"4f677000-013d-4094-9b42-88e60b58c013", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-05T10:27:43.605Z", + "completed":"2017-01-05T10:27:43.605Z", + "new_balance":"3311.79", + "value":"-53.18" + } + }, + { + "id":"187456f3-29d4-4644-8661-aaf0d97e1536", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T14:00:51.975Z", + "completed":"2017-01-05T14:00:51.975Z", + "new_balance":"3298.78", + "value":"-13.01" + } + }, + { + "id":"19bbcc77-6793-4937-b2d3-971c8cb1eff1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-05T21:26:07.823Z", + "completed":"2017-01-05T21:26:07.823Z", + "new_balance":"3254.80", + "value":"-43.98" + } + }, + { + "id":"39d3d707-3015-4731-b4a9-a77ccabe04e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-01-06T02:50:27.701Z", + "completed":"2017-01-06T02:50:27.701Z", + "new_balance":"3224.92", + "value":"-29.88" + } + }, + { + "id":"56b07574-3e9c-4ff3-8f32-b7dd5211616a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-06T21:31:11.631Z", + "completed":"2017-01-06T21:31:11.631Z", + "new_balance":"3202.23", + "value":"-22.69" + } + }, + { + "id":"0b43c863-fad4-4671-8023-da634cf1d8e9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-07T13:50:42.355Z", + "completed":"2017-01-07T13:50:42.355Z", + "new_balance":"3163.06", + "value":"-39.17" + } + }, + { + "id":"67983a10-1445-4224-86b0-6a35a6c16024", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-10T03:50:36.639Z", + "completed":"2017-01-10T03:50:36.639Z", + "new_balance":"3109.88", + "value":"-53.18" + } + }, + { + "id":"3844270f-ed5a-42ef-8591-c22a0477eabf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-10T23:10:45.125Z", + "completed":"2017-01-10T23:10:45.125Z", + "new_balance":"3085.01", + "value":"-24.87" + } + }, + { + "id":"28bad410-9549-40b6-a302-531d19faf117", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T05:09:33.511Z", + "completed":"2017-01-12T05:09:33.511Z", + "new_balance":"3064.94", + "value":"-20.07" + } + }, + { + "id":"2f89b08c-dffa-496b-99be-68a9cc24bf7e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T08:28:01.640Z", + "completed":"2017-01-12T08:28:01.640Z", + "new_balance":"3040.38", + "value":"-24.56" + } + }, + { + "id":"ec390555-b98c-48b1-bb74-2571f4dc5b88", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-12T13:46:26.784Z", + "completed":"2017-01-12T13:46:26.784Z", + "new_balance":"3001.21", + "value":"-39.17" + } + }, + { + "id":"4128db25-4d6f-4d2d-a4d6-9d75f5f5b3fb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-15T07:22:06.848Z", + "completed":"2017-01-15T07:22:06.848Z", + "new_balance":"2984.81", + "value":"-16.40" + } + }, + { + "id":"1d66194e-1c8b-43fc-97ad-364455530cdc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-16T03:22:45.371Z", + "completed":"2017-01-16T03:22:45.371Z", + "new_balance":"2978.66", + "value":"-6.15" + } + }, + { + "id":"9ba6768e-9817-4a83-9635-10c1fa7ef0b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-16T21:35:39.278Z", + "completed":"2017-01-16T21:35:39.278Z", + "new_balance":"2925.48", + "value":"-53.18" + } + }, + { + "id":"107a8bb0-b0dc-4e78-81cf-c80168cccab9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-01-17T04:44:12.710Z", + "completed":"2017-01-17T04:44:12.710Z", + "new_balance":"2894.16", + "value":"-31.32" + } + }, + { + "id":"9f9e4d9b-58c4-4fe4-89ff-28e693037db4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-17T14:01:40.427Z", + "completed":"2017-01-17T14:01:40.427Z", + "new_balance":"2832.98", + "value":"-61.18" + } + }, + { + "id":"ada8b021-6e0a-4e70-bfa1-81c1efdc51d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-01-19T14:39:57.574Z", + "completed":"2017-01-19T14:39:57.574Z", + "new_balance":"2802.58", + "value":"-30.40" + } + }, + { + "id":"04bada37-0eca-46bf-94aa-b4f723e45dd5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-01-20T11:27:57.895Z", + "completed":"2017-01-20T11:27:57.895Z", + "new_balance":"2749.40", + "value":"-53.18" + } + }, + { + "id":"9d1dd66d-326e-45bd-8735-3a1ac554328b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-23T19:39:06.216Z", + "completed":"2017-01-23T19:39:06.216Z", + "new_balance":"2733.57", + "value":"-15.83" + } + }, + { + "id":"c145b970-7bae-42cd-a5eb-96f9ab571569", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-01-26T14:30:57.491Z", + "completed":"2017-01-26T14:30:57.491Z", + "new_balance":"2675.09", + "value":"-58.48" + } + }, + { + "id":"e981db3c-c7e2-4634-ae64-b581fd8033a6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID66581", + "posted":"2017-01-27T18:36:42.050Z", + "completed":"2017-01-27T18:36:42.050Z", + "new_balance":"3863.60", + "value":"1188.51" + } + }, + { + "id":"41244c4e-760c-4657-bedc-e190dd0358a0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-01-28T06:51:49.638Z", + "completed":"2017-01-28T06:51:49.638Z", + "new_balance":"3829.17", + "value":"-34.43" + } + }, + { + "id":"d996743f-34b5-4535-94cb-ff7620982efb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-01-30T06:15:59.197Z", + "completed":"2017-01-30T06:15:59.197Z", + "new_balance":"3786.83", + "value":"-42.34" + } + }, + { + "id":"4f81c43a-97a9-4fce-a188-59f0ab1eee33", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-02-03T16:25:59.631Z", + "completed":"2017-02-03T16:25:59.631Z", + "new_balance":"3712.90", + "value":"-73.93" + } + }, + { + "id":"ec234326-d01a-4d15-8a68-7eb653727603", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-02-03T19:35:19.059Z", + "completed":"2017-02-03T19:35:19.059Z", + "new_balance":"3202.36", + "value":"-510.54" + } + }, + { + "id":"9a35a8a3-39b8-467d-8eb5-531d0c287ed8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-02-03T21:46:44.969Z", + "completed":"2017-02-03T21:46:44.969Z", + "new_balance":"3177.80", + "value":"-24.56" + } + }, + { + "id":"2525f7ab-bdc7-484c-92de-29136e4d1120", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-02-03T23:06:19.998Z", + "completed":"2017-02-03T23:06:19.998Z", + "new_balance":"3143.37", + "value":"-34.43" + } + }, + { + "id":"cf8cbf1e-6c14-42dd-b6f9-85d1792af8fa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-08T03:01:59.492Z", + "completed":"2017-02-08T03:01:59.492Z", + "new_balance":"3090.19", + "value":"-53.18" + } + }, + { + "id":"3accf777-3e86-4554-bb5e-c238e4b91eae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-08T04:02:54.664Z", + "completed":"2017-02-08T04:02:54.664Z", + "new_balance":"3046.21", + "value":"-43.98" + } + }, + { + "id":"c701a551-99b7-4806-8487-a78ecec0635f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-11T17:17:46.436Z", + "completed":"2017-02-11T17:17:46.436Z", + "new_balance":"3057.10", + "value":"10.89" + } + }, + { + "id":"d417f844-fc90-49f4-9a3b-c4d5134637ea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-13T19:27:00.349Z", + "completed":"2017-02-13T19:27:00.349Z", + "new_balance":"3027.22", + "value":"-29.88" + } + }, + { + "id":"a6846100-82b2-45ce-84e2-5410aadb16db", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-14T10:50:51.232Z", + "completed":"2017-02-14T10:50:51.232Z", + "new_balance":"2999.37", + "value":"-27.85" + } + }, + { + "id":"85a47e15-a09e-4fb3-91e4-6c65d4c90b38", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-17T14:27:33.723Z", + "completed":"2017-02-17T14:27:33.723Z", + "new_balance":"2988.46", + "value":"-10.91" + } + }, + { + "id":"dd407e1e-c66c-458f-84c3-56a1b12ffc1e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-02-21T05:54:31.708Z", + "completed":"2017-02-21T05:54:31.708Z", + "new_balance":"2947.33", + "value":"-41.13" + } + }, + { + "id":"66e248b6-45d9-41a2-acbf-daf4c9980ed4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-23T00:57:57.962Z", + "completed":"2017-02-23T00:57:57.962Z", + "new_balance":"2906.41", + "value":"-40.92" + } + }, + { + "id":"0a13c8b3-6415-430a-bed8-2bb5bd8a2450", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-02-23T17:27:51.006Z", + "completed":"2017-02-23T17:27:51.006Z", + "new_balance":"2853.23", + "value":"-53.18" + } + }, + { + "id":"20393370-a751-4f39-a228-fcc32effc04e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-24T10:21:10.374Z", + "completed":"2017-02-24T10:21:10.374Z", + "new_balance":"2842.32", + "value":"-10.91" + } + }, + { + "id":"4cb2eb14-7d8c-4519-a7f8-e621fe2ea449", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-02-27T02:04:20.992Z", + "completed":"2017-02-27T02:04:20.992Z", + "new_balance":"2825.58", + "value":"-16.74" + } + }, + { + "id":"df5137ea-0334-4902-a837-b5b5e71c201d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-02-27T19:39:24.545Z", + "completed":"2017-02-27T19:39:24.545Z", + "new_balance":"2767.10", + "value":"-58.48" + } + }, + { + "id":"69879ebd-b462-4a32-ae54-55b77657ef87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76581", + "posted":"2017-02-27T21:12:35.040Z", + "completed":"2017-02-27T21:12:35.040Z", + "new_balance":"3955.61", + "value":"1188.51" + } + }, + { + "id":"3b0e5101-850d-4def-b5aa-736877a2a058", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-02-28T16:40:39.773Z", + "completed":"2017-02-28T16:40:39.773Z", + "new_balance":"3913.27", + "value":"-42.34" + } + }, + { + "id":"9437896e-05bf-4164-ba99-70c4ccc0d3bc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-02-28T18:21:11.911Z", + "completed":"2017-02-28T18:21:11.911Z", + "new_balance":"3878.84", + "value":"-34.43" + } + }, + { + "id":"de13606a-da3a-49a9-8b80-ef4c744f1c92", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-03-01T09:20:02.408Z", + "completed":"2017-03-01T09:20:02.408Z", + "new_balance":"3816.97", + "value":"-61.87" + } + }, + { + "id":"825c53ff-1621-466e-ad3d-263e95ef5152", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-03-03T03:43:54.509Z", + "completed":"2017-03-03T03:43:54.509Z", + "new_balance":"3792.41", + "value":"-24.56" + } + }, + { + "id":"f32f3090-6863-4cd4-8b84-4cfdc1b098ee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-03T05:46:18.897Z", + "completed":"2017-03-03T05:46:18.897Z", + "new_balance":"3718.48", + "value":"-73.93" + } + }, + { + "id":"6125fefb-4959-4daa-b605-16936e8f46a4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-03T12:12:28.962Z", + "completed":"2017-03-03T12:12:28.962Z", + "new_balance":"3207.94", + "value":"-510.54" + } + }, + { + "id":"9854d937-bc09-41e1-bca7-d5c5213b3ad9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-03-03T14:50:18.077Z", + "completed":"2017-03-03T14:50:18.077Z", + "new_balance":"3173.51", + "value":"-34.43" + } + }, + { + "id":"b50fe0c7-33e5-4825-9d37-f18a1bc7018e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-05T02:26:51.307Z", + "completed":"2017-03-05T02:26:51.307Z", + "new_balance":"3120.33", + "value":"-53.18" + } + }, + { + "id":"e6109e9b-92aa-40b3-a563-dc84012d76e0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-05T19:36:23.782Z", + "completed":"2017-03-05T19:36:23.782Z", + "new_balance":"3071.67", + "value":"-48.66" + } + }, + { + "id":"1b14f844-39fd-4435-8526-a686948824ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-07T14:20:48.714Z", + "completed":"2017-03-07T14:20:48.714Z", + "new_balance":"3058.00", + "value":"-13.67" + } + }, + { + "id":"fa1ac145-5161-46e8-831a-1e713769d059", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-09T10:18:06.097Z", + "completed":"2017-03-09T10:18:06.097Z", + "new_balance":"3004.82", + "value":"-53.18" + } + }, + { + "id":"3bcfda96-7bdd-402a-80b7-0725a9e5afba", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-11T17:20:54.761Z", + "completed":"2017-03-11T17:20:54.761Z", + "new_balance":"2993.82", + "value":"-11.00" + } + }, + { + "id":"4f220d94-a158-4211-9ffc-9e6a3cad3216", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-13T20:40:50.231Z", + "completed":"2017-03-13T20:40:50.231Z", + "new_balance":"2936.14", + "value":"-57.68" + } + }, + { + "id":"0f347c1a-dffd-4423-92ee-35f7cbb2bbec", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T07:31:40.378Z", + "completed":"2017-03-14T07:31:40.378Z", + "new_balance":"2924.21", + "value":"-11.93" + } + }, + { + "id":"f18aaef7-ede6-44fc-8bed-57d98c3d1762", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-14T18:45:05.965Z", + "completed":"2017-03-14T18:45:05.965Z", + "new_balance":"2987.57", + "value":"63.36" + } + }, + { + "id":"2bd8530a-2e6f-4023-a770-6226318e95f3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-03-15T20:00:07.871Z", + "completed":"2017-03-15T20:00:07.871Z", + "new_balance":"2945.23", + "value":"-42.34" + } + }, + { + "id":"62e5ce24-3b7f-4d22-8bdb-a7c6f8fd2a86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T09:22:37.853Z", + "completed":"2017-03-26T09:22:37.853Z", + "new_balance":"2919.86", + "value":"-25.37" + } + }, + { + "id":"54627a47-a1c3-48c2-bd4e-146a3e9cb678", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-26T15:38:32.901Z", + "completed":"2017-03-26T15:38:32.901Z", + "new_balance":"2893.02", + "value":"-26.84" + } + }, + { + "id":"1ff74940-cc9d-4935-a2be-fade7abd80e1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-03-26T19:55:28.764Z", + "completed":"2017-03-26T19:55:28.764Z", + "new_balance":"2846.09", + "value":"-46.93" + } + }, + { + "id":"0bc3f6a7-a70f-42d6-bbf8-371a7643c6ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-27T06:22:14.827Z", + "completed":"2017-03-27T06:22:14.827Z", + "new_balance":"2779.51", + "value":"-66.58" + } + }, + { + "id":"8f11ce8f-6c61-47e8-97ab-adb84e6c3920", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-03-27T07:27:22.961Z", + "completed":"2017-03-27T07:27:22.961Z", + "new_balance":"2726.33", + "value":"-53.18" + } + }, + { + "id":"8fd90755-f0ba-4aa7-b1a8-79d183f4d4d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID76781", + "posted":"2017-03-27T10:04:40.808Z", + "completed":"2017-03-27T10:04:40.808Z", + "new_balance":"3914.84", + "value":"1188.51" + } + }, + { + "id":"11de817d-786d-46fc-bbf6-eb867e65641e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-03-28T07:37:18.016Z", + "completed":"2017-03-28T07:37:18.016Z", + "new_balance":"3880.41", + "value":"-34.43" + } + }, + { + "id":"b9da712e-8a40-447e-8469-e531cc4292f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-03-30T12:58:01.305Z", + "completed":"2017-03-30T12:58:01.305Z", + "new_balance":"3838.07", + "value":"-42.34" + } + }, + { + "id":"7d322266-6771-4bb0-8b13-1cd296c0378f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-04-01T00:31:56.209Z", + "completed":"2017-04-01T00:31:56.209Z", + "new_balance":"3803.64", + "value":"-34.43" + } + }, + { + "id":"91850ec0-ab89-4c50-875d-652456c8219a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-04-01T02:53:02.219Z", + "completed":"2017-04-01T02:53:02.219Z", + "new_balance":"3741.77", + "value":"-61.87" + } + }, + { + "id":"196a0697-536a-4ff3-aecd-10f556f91dd7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-04-01T08:16:56.454Z", + "completed":"2017-04-01T08:16:56.454Z", + "new_balance":"3717.21", + "value":"-24.56" + } + }, + { + "id":"87c89915-7250-475c-a44c-834eea431f8f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-04-01T09:32:36.545Z", + "completed":"2017-04-01T09:32:36.545Z", + "new_balance":"3206.67", + "value":"-510.54" + } + }, + { + "id":"62e6bfc0-05df-404d-8a3d-cdfdd3c33f80", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-04-01T20:00:54.698Z", + "completed":"2017-04-01T20:00:54.698Z", + "new_balance":"3132.74", + "value":"-73.93" + } + }, + { + "id":"a0cedb7b-42c1-4a7e-95c2-41c300377750", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-05T10:35:51.400Z", + "completed":"2017-04-05T10:35:51.400Z", + "new_balance":"3079.56", + "value":"-53.18" + } + }, + { + "id":"6333a0fa-d7d6-47be-92a5-1eb45407a880", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-05T16:40:55.207Z", + "completed":"2017-04-05T16:40:55.207Z", + "new_balance":"3056.87", + "value":"-22.69" + } + }, + { + "id":"4e04c6a4-313b-4d6b-a63c-91c74eab0c19", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T17:41:36.746Z", + "completed":"2017-04-05T17:41:36.746Z", + "new_balance":"3043.86", + "value":"-13.01" + } + }, + { + "id":"992e5cb7-52ee-4c72-9ee9-cbdb117c142a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-05T20:59:22.033Z", + "completed":"2017-04-05T20:59:22.033Z", + "new_balance":"2999.88", + "value":"-43.98" + } + }, + { + "id":"78f6aee7-9f07-40d8-8f6e-7c54f3bc6590", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-04-07T10:04:55.381Z", + "completed":"2017-04-07T10:04:55.381Z", + "new_balance":"2970.00", + "value":"-29.88" + } + }, + { + "id":"c218ec22-714b-4920-9332-e9a9ab2f9418", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-09T19:07:31.220Z", + "completed":"2017-04-09T19:07:31.220Z", + "new_balance":"2916.82", + "value":"-53.18" + } + }, + { + "id":"c2d0c6e8-d3f8-456d-9174-e5d4628d3f68", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-09T23:38:50.689Z", + "completed":"2017-04-09T23:38:50.689Z", + "new_balance":"2891.95", + "value":"-24.87" + } + }, + { + "id":"8b7fb553-1018-4bab-8ccc-03a9f3e7bd05", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T06:34:03.174Z", + "completed":"2017-04-10T06:34:03.174Z", + "new_balance":"2852.78", + "value":"-39.17" + } + }, + { + "id":"753581df-268d-4044-91e4-3c8fa7ab0c32", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T06:34:22.775Z", + "completed":"2017-04-10T06:34:22.775Z", + "new_balance":"2828.22", + "value":"-24.56" + } + }, + { + "id":"15d179a4-40d4-4cfb-b8be-3e2fd1003af4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-10T12:13:22.008Z", + "completed":"2017-04-10T12:13:22.008Z", + "new_balance":"2808.15", + "value":"-20.07" + } + }, + { + "id":"1c5b0392-25b4-466e-9275-a9106182354d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-10T13:32:10.662Z", + "completed":"2017-04-10T13:32:10.662Z", + "new_balance":"2791.75", + "value":"-16.40" + } + }, + { + "id":"ed9b931b-c9e5-47cd-8d03-d676091acc4c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-11T00:56:21.911Z", + "completed":"2017-04-11T00:56:21.911Z", + "new_balance":"2738.57", + "value":"-53.18" + } + }, + { + "id":"85334781-ca71-46d9-b23d-7af9f914bad4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T01:46:00.205Z", + "completed":"2017-04-11T01:46:00.205Z", + "new_balance":"2677.39", + "value":"-61.18" + } + }, + { + "id":"e4a2749a-02cc-4dda-90d7-99d34786f14e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-04-11T13:31:03.545Z", + "completed":"2017-04-11T13:31:03.545Z", + "new_balance":"2646.07", + "value":"-31.32" + } + }, + { + "id":"220f9eea-df51-4bd0-9871-d1eebac11c02", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-04-11T17:25:16.396Z", + "completed":"2017-04-11T17:25:16.396Z", + "new_balance":"2615.67", + "value":"-30.40" + } + }, + { + "id":"549937f9-e380-4653-b222-d4c6b35fefbb", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-11T23:34:00.309Z", + "completed":"2017-04-11T23:34:00.309Z", + "new_balance":"2609.52", + "value":"-6.15" + } + }, + { + "id":"b3ea22c3-2a88-470c-b950-333b3dfba6d7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-04-21T18:11:33.608Z", + "completed":"2017-04-21T18:11:33.608Z", + "new_balance":"2556.34", + "value":"-53.18" + } + }, + { + "id":"2778c39b-ef7c-4e7e-9cac-e6bed60d54b2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-23T04:34:30.186Z", + "completed":"2017-04-23T04:34:30.186Z", + "new_balance":"2540.51", + "value":"-15.83" + } + }, + { + "id":"2c9d7dbe-d050-41f1-b0e8-29fc5bc0fadd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-04-29T01:16:11.466Z", + "completed":"2017-04-29T01:16:11.466Z", + "new_balance":"2482.03", + "value":"-58.48" + } + }, + { + "id":"7d92d3d0-fae8-4af0-9719-122804126db4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID12681", + "posted":"2017-04-29T03:49:32.361Z", + "completed":"2017-04-29T03:49:32.361Z", + "new_balance":"3670.54", + "value":"1188.51" + } + }, + { + "id":"f1bcbbc8-3850-41aa-8eb0-e16ff51cf3f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-04-29T11:52:38.807Z", + "completed":"2017-04-29T11:52:38.807Z", + "new_balance":"3636.11", + "value":"-34.43" + } + }, + { + "id":"6f97d5d8-ef0b-433f-80ad-d7998359be8b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-04-30T14:33:17.532Z", + "completed":"2017-04-30T14:33:17.532Z", + "new_balance":"3593.77", + "value":"-42.34" + } + }, + { + "id":"72eb1778-697a-4d2e-9902-9571df03324a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-05-02T08:10:04.561Z", + "completed":"2017-05-02T08:10:04.561Z", + "new_balance":"3083.23", + "value":"-510.54" + } + }, + { + "id":"0669d73c-e9e2-4eac-a63d-cbe41e571d55", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-05-02T08:32:17.321Z", + "completed":"2017-05-02T08:32:17.321Z", + "new_balance":"3021.36", + "value":"-61.87" + } + }, + { + "id":"8948959e-6014-4a82-8908-5f81b4662b20", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-05-02T13:27:57.230Z", + "completed":"2017-05-02T13:27:57.230Z", + "new_balance":"2947.43", + "value":"-73.93" + } + }, + { + "id":"c1259d9b-ec94-438c-a80f-db4f6bf5702e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-05-02T23:02:32.515Z", + "completed":"2017-05-02T23:02:32.515Z", + "new_balance":"2922.87", + "value":"-24.56" + } + }, + { + "id":"a39ced5d-8bfd-43fb-861a-2273a40fc1be", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-06T15:38:13.036Z", + "completed":"2017-05-06T15:38:13.036Z", + "new_balance":"2878.89", + "value":"-43.98" + } + }, + { + "id":"8d011984-e428-4370-9882-fec83d247116", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T06:14:41.119Z", + "completed":"2017-05-07T06:14:41.119Z", + "new_balance":"2851.04", + "value":"-27.85" + } + }, + { + "id":"052b71ed-b96f-40a4-bcfb-1d0edf2c7991", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-07T09:02:20.089Z", + "completed":"2017-05-07T09:02:20.089Z", + "new_balance":"2821.16", + "value":"-29.88" + } + }, + { + "id":"74d78c53-7405-49ed-b792-77d15c579477", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-05-07T11:42:52.533Z", + "completed":"2017-05-07T11:42:52.533Z", + "new_balance":"2780.03", + "value":"-41.13" + } + }, + { + "id":"b19267e5-612c-4bb0-aaa8-9a027f4c9e01", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-07T18:30:57.458Z", + "completed":"2017-05-07T18:30:57.458Z", + "new_balance":"2769.12", + "value":"-10.91" + } + }, + { + "id":"b76dd82c-2499-489e-8e3f-107537f138f6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-08T00:58:37.952Z", + "completed":"2017-05-08T00:58:37.952Z", + "new_balance":"2728.20", + "value":"-40.92" + } + }, + { + "id":"2a92f98d-cef6-4def-b3cd-f9b6a1304df9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-05-09T12:40:21.483Z", + "completed":"2017-05-09T12:40:21.483Z", + "new_balance":"2693.77", + "value":"-34.43" + } + }, + { + "id":"e40a8e4d-bfc6-4ede-8d66-ef17dcac7a4a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-13T05:54:32.859Z", + "completed":"2017-05-13T05:54:32.859Z", + "new_balance":"2640.59", + "value":"-53.18" + } + }, + { + "id":"c9e765c0-7ece-4354-99aa-72f3093cb2f4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-26T08:03:43.354Z", + "completed":"2017-05-26T08:03:43.354Z", + "new_balance":"2629.68", + "value":"-10.91" + } + }, + { + "id":"f37aeef7-bbb9-4424-93b3-c22f0b9cc5ef", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-05-26T12:41:06.192Z", + "completed":"2017-05-26T12:41:06.192Z", + "new_balance":"2576.50", + "value":"-53.18" + } + }, + { + "id":"4dc972a3-de10-42af-bbd5-ca1928334e1e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-05-27T02:47:05.842Z", + "completed":"2017-05-27T02:47:05.842Z", + "new_balance":"2518.02", + "value":"-58.48" + } + }, + { + "id":"0fffa28e-8520-4ccb-ab8a-d22ebe179944", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-05-27T14:35:47.336Z", + "completed":"2017-05-27T14:35:47.336Z", + "new_balance":"2501.28", + "value":"-16.74" + } + }, + { + "id":"5bccd4de-26cc-4843-899f-c45b53e57675", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-05-30T03:49:28.032Z", + "completed":"2017-05-30T03:49:28.032Z", + "new_balance":"2466.85", + "value":"-34.43" + } + }, + { + "id":"4d4edd58-5f45-496d-a919-77b014fc64ea", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-05-30T13:42:50.085Z", + "completed":"2017-05-30T13:42:50.085Z", + "new_balance":"2424.51", + "value":"-42.34" + } + }, + { + "id":"5f78e4ea-bb3b-4c80-aee7-e90976843238", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID33681", + "posted":"2017-05-30T21:20:13.655Z", + "completed":"2017-05-30T21:20:13.655Z", + "new_balance":"3613.02", + "value":"1188.51" + } + }, + { + "id":"84f95833-2b08-451a-aba7-021cfb678224", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T00:40:40.794Z", + "completed":"2017-06-01T00:40:40.794Z", + "new_balance":"3599.35", + "value":"-13.67" + } + }, + { + "id":"d30c00ae-261b-4462-96e8-636f607a6568", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T06:09:13.799Z", + "completed":"2017-06-01T06:09:13.799Z", + "new_balance":"3550.69", + "value":"-48.66" + } + }, + { + "id":"ea238bed-c595-4038-8c88-fab1909387d1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T08:13:45.450Z", + "completed":"2017-06-01T08:13:45.450Z", + "new_balance":"3040.15", + "value":"-510.54" + } + }, + { + "id":"949e4d34-0c55-4da0-bfa5-df3d91883872", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-06-01T12:55:25.445Z", + "completed":"2017-06-01T12:55:25.445Z", + "new_balance":"3005.72", + "value":"-34.43" + } + }, + { + "id":"d662cedd-dde6-4221-b5f6-45fb5941ebd9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-06-01T13:42:41.108Z", + "completed":"2017-06-01T13:42:41.108Z", + "new_balance":"2981.16", + "value":"-24.56" + } + }, + { + "id":"077997ac-b7e8-4dc9-ac2c-a8ced57308bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T15:18:25.426Z", + "completed":"2017-06-01T15:18:25.426Z", + "new_balance":"2927.98", + "value":"-53.18" + } + }, + { + "id":"4104a61f-6eb8-4ce1-b8db-ac5698b0fc63", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-06-01T15:55:26.613Z", + "completed":"2017-06-01T15:55:26.613Z", + "new_balance":"2866.11", + "value":"-61.87" + } + }, + { + "id":"2802b06a-fd28-4c44-8bbd-a9f878501035", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T20:15:15.918Z", + "completed":"2017-06-01T20:15:15.918Z", + "new_balance":"2792.18", + "value":"-73.93" + } + }, + { + "id":"e8a9355b-a719-4648-b270-b66b6682f0f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-01T22:09:24.455Z", + "completed":"2017-06-01T22:09:24.455Z", + "new_balance":"2739.00", + "value":"-53.18" + } + }, + { + "id":"1f3886f6-f101-4764-9ad6-3002a4997a69", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T06:18:40.522Z", + "completed":"2017-06-02T06:18:40.522Z", + "new_balance":"2681.32", + "value":"-57.68" + } + }, + { + "id":"bd7630f4-801e-49a3-b94a-544e11dcaf8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-02T08:49:16.320Z", + "completed":"2017-06-02T08:49:16.320Z", + "new_balance":"2669.39", + "value":"-11.93" + } + }, + { + "id":"59d79b72-89a1-4060-8fb4-3550037f9549", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-02T20:18:15.076Z", + "completed":"2017-06-02T20:18:15.076Z", + "new_balance":"2658.39", + "value":"-11.00" + } + }, + { + "id":"68b56ee4-9db9-4b29-b657-3c3841940806", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-04T16:33:02.175Z", + "completed":"2017-06-04T16:33:02.175Z", + "new_balance":"2616.05", + "value":"-42.34" + } + }, + { + "id":"5b2a71b6-a76a-4b6f-8367-c8b89fcc2167", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T22:06:13.315Z", + "completed":"2017-06-04T22:06:13.315Z", + "new_balance":"2590.68", + "value":"-25.37" + } + }, + { + "id":"a72640fd-90bf-457d-8907-70bfca317010", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-06-04T22:58:01.628Z", + "completed":"2017-06-04T22:58:01.628Z", + "new_balance":"2543.75", + "value":"-46.93" + } + }, + { + "id":"ef0e4e4f-e38c-433d-a9c7-5dc9378ccd60", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T06:56:53.396Z", + "completed":"2017-06-05T06:56:53.396Z", + "new_balance":"2477.17", + "value":"-66.58" + } + }, + { + "id":"74e6af08-4d44-4bdf-95c6-01385f903a08", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-05T13:25:36.571Z", + "completed":"2017-06-05T13:25:36.571Z", + "new_balance":"2450.33", + "value":"-26.84" + } + }, + { + "id":"ef8676f7-7ca1-46d6-b7a0-16fc0dbae38f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-06-18T00:00:54.037Z", + "completed":"2017-06-18T00:00:54.037Z", + "new_balance":"2397.15", + "value":"-53.18" + } + }, + { + "id":"405db6d1-fded-4284-a9a0-25fee13e3161", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-06-30T04:24:58.086Z", + "completed":"2017-06-30T04:24:58.086Z", + "new_balance":"2355.62", + "value":"-41.53" + } + }, + { + "id":"f0bdc8c1-712c-415c-b1ee-f35168a8bdee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-06-30T11:30:45.624Z", + "completed":"2017-06-30T11:30:45.624Z", + "new_balance":"2313.28", + "value":"-42.34" + } + }, + { + "id":"52eac480-1f8f-47c8-afc6-c84aae1c52aa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-06-30T12:42:10.029Z", + "completed":"2017-06-30T12:42:10.029Z", + "new_balance":"2278.85", + "value":"-34.43" + } + }, + { + "id":"495765c1-c514-4c00-b6e6-ac393f9d52c8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 411139", + "posted":"2017-06-30T19:47:58.970Z", + "completed":"2017-06-30T19:47:58.970Z", + "new_balance":"3467.36", + "value":"1188.51" + } + }, + { + "id":"f71c442d-caab-42e7-a35c-a253a9716e5a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-07-01T02:01:24.662Z", + "completed":"2017-07-01T02:01:24.662Z", + "new_balance":"3405.49", + "value":"-61.87" + } + }, + { + "id":"e5057247-ea54-4260-b12b-4510eb2b99b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-07-03T00:07:47.028Z", + "completed":"2017-07-03T00:07:47.028Z", + "new_balance":"2894.95", + "value":"-510.54" + } + }, + { + "id":"6416fc23-8f4b-4dd0-8907-976213b86ec0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-07-03T02:05:00.939Z", + "completed":"2017-07-03T02:05:00.939Z", + "new_balance":"2821.02", + "value":"-73.93" + } + }, + { + "id":"6df122a4-a5f4-450b-872f-2a7f5be05fd8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-07-03T06:58:17.090Z", + "completed":"2017-07-03T06:58:17.090Z", + "new_balance":"2796.46", + "value":"-24.56" + } + }, + { + "id":"6c3032d1-5166-4a60-8dd3-40f66d7ea0bd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-07-03T11:59:39.463Z", + "completed":"2017-07-03T11:59:39.463Z", + "new_balance":"2762.03", + "value":"-34.43" + } + }, + { + "id":"89ced9e6-1a0b-4e1f-af73-035fdfffba6a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T00:15:34.717Z", + "completed":"2017-07-05T00:15:34.717Z", + "new_balance":"2718.05", + "value":"-43.98" + } + }, + { + "id":"8a04133f-4da6-4be7-a7dd-bf596e1062c8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-05T07:05:34.423Z", + "completed":"2017-07-05T07:05:34.423Z", + "new_balance":"2705.04", + "value":"-13.01" + } + }, + { + "id":"ac37d7b6-3ebb-4671-8ed3-231c37ec6ecf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-05T18:49:38.665Z", + "completed":"2017-07-05T18:49:38.665Z", + "new_balance":"2651.86", + "value":"-53.18" + } + }, + { + "id":"310792de-05af-4b2b-9bea-fd52b9587200", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-06T11:56:38.345Z", + "completed":"2017-07-06T11:56:38.345Z", + "new_balance":"2629.17", + "value":"-22.69" + } + }, + { + "id":"a3d7d314-49e6-4dc0-8476-b79e4c05cd87", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-07-06T23:36:58.230Z", + "completed":"2017-07-06T23:36:58.230Z", + "new_balance":"2599.29", + "value":"-29.88" + } + }, + { + "id":"641c16d7-3c47-4e1f-8f97-2bde9b494da6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-07T04:57:14.209Z", + "completed":"2017-07-07T04:57:14.209Z", + "new_balance":"2560.12", + "value":"-39.17" + } + }, + { + "id":"f484a197-9daa-460c-bda9-093bb3105118", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-10T04:41:55.711Z", + "completed":"2017-07-10T04:41:55.711Z", + "new_balance":"2506.94", + "value":"-53.18" + } + }, + { + "id":"e8c7f6f0-f0a5-4451-adef-6ccbe7510ee2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-10T19:22:00.418Z", + "completed":"2017-07-10T19:22:00.418Z", + "new_balance":"2482.07", + "value":"-24.87" + } + }, + { + "id":"13058240-0813-47e0-9a77-a67d6d76d092", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T10:06:54.270Z", + "completed":"2017-07-12T10:06:54.270Z", + "new_balance":"2462.00", + "value":"-20.07" + } + }, + { + "id":"8861ebae-6234-4aab-a020-6b052bd291e7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T14:49:58.287Z", + "completed":"2017-07-12T14:49:58.287Z", + "new_balance":"2422.83", + "value":"-39.17" + } + }, + { + "id":"ba81312a-dfa5-4c72-99b5-00195899a2f7", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-12T17:07:20.185Z", + "completed":"2017-07-12T17:07:20.185Z", + "new_balance":"2398.27", + "value":"-24.56" + } + }, + { + "id":"62c94b87-901f-4f9f-ab06-ddefe95d2e0b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-15T19:10:01.642Z", + "completed":"2017-07-15T19:10:01.642Z", + "new_balance":"2381.87", + "value":"-16.40" + } + }, + { + "id":"b02396c5-dd16-4907-91ef-859ba0fca4b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-16T11:44:13.015Z", + "completed":"2017-07-16T11:44:13.015Z", + "new_balance":"2328.69", + "value":"-53.18" + } + }, + { + "id":"171ddae8-fa68-4630-aa80-df19f9b57082", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-16T23:02:51.835Z", + "completed":"2017-07-16T23:02:51.835Z", + "new_balance":"2322.54", + "value":"-6.15" + } + }, + { + "id":"d277a670-8cca-4bd8-a5d5-e2b5ded510ca", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-17T08:11:20.931Z", + "completed":"2017-07-17T08:11:20.931Z", + "new_balance":"2261.36", + "value":"-61.18" + } + }, + { + "id":"7b1a5b77-5a08-4c58-8830-3a0243df7509", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-07-17T17:11:34.448Z", + "completed":"2017-07-17T17:11:34.448Z", + "new_balance":"2230.04", + "value":"-31.32" + } + }, + { + "id":"d36bcdd8-8248-4ceb-9a2f-14b63001f9b5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-07-19T22:26:00.090Z", + "completed":"2017-07-19T22:26:00.090Z", + "new_balance":"2199.64", + "value":"-30.40" + } + }, + { + "id":"e02884d0-0a77-46e8-b1e2-19f2398e8243", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-07-20T13:07:17.763Z", + "completed":"2017-07-20T13:07:17.763Z", + "new_balance":"2146.46", + "value":"-53.18" + } + }, + { + "id":"c9f61b30-df77-4e99-a9f0-8de72bf6d5ae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-23T23:42:56.356Z", + "completed":"2017-07-23T23:42:56.356Z", + "new_balance":"2130.63", + "value":"-15.83" + } + }, + { + "id":"6487bc3f-bdc9-43bd-b497-0d3f61ac27d3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-07-26T17:48:13.435Z", + "completed":"2017-07-26T17:48:13.435Z", + "new_balance":"2072.15", + "value":"-58.48" + } + }, + { + "id":"7d518805-2f14-4891-8b56-aac9a451a074", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35215", + "posted":"2017-07-27T19:47:58.062Z", + "completed":"2017-07-27T19:47:58.062Z", + "new_balance":"3260.66", + "value":"1188.51" + } + }, + { + "id":"85343a71-63a4-4b0b-a114-b054955fce2e", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-07-28T02:59:07.742Z", + "completed":"2017-07-28T02:59:07.742Z", + "new_balance":"3226.23", + "value":"-34.43" + } + }, + { + "id":"6f6c9be7-1526-4b26-89aa-efb81d97f5d2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-07-30T07:20:17.650Z", + "completed":"2017-07-30T07:20:17.650Z", + "new_balance":"3183.89", + "value":"-42.34" + } + }, + { + "id":"49612ef2-61f4-4a5c-9496-68acab743827", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-08-01T22:27:18.689Z", + "completed":"2017-08-01T22:27:18.689Z", + "new_balance":"3122.02", + "value":"-61.87" + } + }, + { + "id":"d500f840-b626-4024-a7d3-284f248ca5d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-08-03T01:26:47.171Z", + "completed":"2017-08-03T01:26:47.171Z", + "new_balance":"2611.48", + "value":"-510.54" + } + }, + { + "id":"877bb700-6387-4087-b260-7f199464b153", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-08-03T02:24:53.866Z", + "completed":"2017-08-03T02:24:53.866Z", + "new_balance":"2537.55", + "value":"-73.93" + } + }, + { + "id":"974c607f-eacb-42c5-8673-1ce0521d4d0f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-08-03T03:04:52.990Z", + "completed":"2017-08-03T03:04:52.990Z", + "new_balance":"2503.12", + "value":"-34.43" + } + }, + { + "id":"79737cae-bc75-4017-b4cc-297e92cba63b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-08-03T15:45:13.641Z", + "completed":"2017-08-03T15:45:13.641Z", + "new_balance":"2478.56", + "value":"-24.56" + } + }, + { + "id":"428e3565-7d11-458f-b1f1-54ba12abb037", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-08T17:25:35.767Z", + "completed":"2017-08-08T17:25:35.767Z", + "new_balance":"2434.58", + "value":"-43.98" + } + }, + { + "id":"8065e353-3245-4d7f-bcff-9d2fc2a1b1d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-08T23:28:23.791Z", + "completed":"2017-08-08T23:28:23.791Z", + "new_balance":"2381.40", + "value":"-53.18" + } + }, + { + "id":"32e068d4-67a9-4c70-bc69-917585c6e38a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-11T08:19:29.238Z", + "completed":"2017-08-11T08:19:29.238Z", + "new_balance":"2392.29", + "value":"10.89" + } + }, + { + "id":"ffa56429-ecea-40d8-9223-b122f45ed3d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-13T19:47:53.975Z", + "completed":"2017-08-13T19:47:53.975Z", + "new_balance":"2362.41", + "value":"-29.88" + } + }, + { + "id":"ca7c5548-f727-4431-92dc-fc6919d3f046", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-14T09:16:43.009Z", + "completed":"2017-08-14T09:16:43.009Z", + "new_balance":"2334.56", + "value":"-27.85" + } + }, + { + "id":"bebd8318-f602-419e-9f25-7ddbb1cf1f50", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-17T10:22:16.194Z", + "completed":"2017-08-17T10:22:16.194Z", + "new_balance":"2323.65", + "value":"-10.91" + } + }, + { + "id":"dc904b30-5ac2-49c8-b1c8-dee2be6baf8f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-08-21T22:17:01.731Z", + "completed":"2017-08-21T22:17:01.731Z", + "new_balance":"2282.52", + "value":"-41.13" + } + }, + { + "id":"63852cc0-fc1d-43d1-a364-a3d0e584537f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-08-23T18:41:10.061Z", + "completed":"2017-08-23T18:41:10.061Z", + "new_balance":"2229.34", + "value":"-53.18" + } + }, + { + "id":"2443b87b-d0f7-491e-acef-393b0c95779f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-23T20:02:28.326Z", + "completed":"2017-08-23T20:02:28.326Z", + "new_balance":"2188.42", + "value":"-40.92" + } + }, + { + "id":"30a4557a-5152-43d5-81f3-794411a75846", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-24T18:26:31.745Z", + "completed":"2017-08-24T18:26:31.745Z", + "new_balance":"2177.51", + "value":"-10.91" + } + }, + { + "id":"4cb42a97-54f5-4532-aa19-e1d0982bb42d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-08-27T01:08:19.965Z", + "completed":"2017-08-27T01:08:19.965Z", + "new_balance":"2160.77", + "value":"-16.74" + } + }, + { + "id":"fdd2af0a-ed21-49d3-bd27-1d3c84af5b86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-08-27T14:58:52.370Z", + "completed":"2017-08-27T14:58:52.370Z", + "new_balance":"2102.29", + "value":"-58.48" + } + }, + { + "id":"97892435-48c0-439d-b1e0-5e35fece7a1a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID35781", + "posted":"2017-08-27T21:08:12.688Z", + "completed":"2017-08-27T21:08:12.688Z", + "new_balance":"3290.80", + "value":"1188.51" + } + }, + { + "id":"22d2b446-7f6d-45ab-ba5b-c1e81ab30c6a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-08-28T19:38:12.641Z", + "completed":"2017-08-28T19:38:12.641Z", + "new_balance":"3256.37", + "value":"-34.43" + } + }, + { + "id":"f4e4965c-ae86-48fb-b40e-bd49c0725c2f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-08-30T06:56:44.583Z", + "completed":"2017-08-30T06:56:44.583Z", + "new_balance":"3214.03", + "value":"-42.34" + } + }, + { + "id":"56c65ed4-f799-4a3b-9ee9-b1d3813ab0d4", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-09-01T18:48:57.114Z", + "completed":"2017-09-01T18:48:57.114Z", + "new_balance":"3152.16", + "value":"-61.87" + } + }, + { + "id":"986a321d-c624-4fa6-9146-108b60b8be1a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-09-03T02:40:49.421Z", + "completed":"2017-09-03T02:40:49.421Z", + "new_balance":"3117.73", + "value":"-34.43" + } + }, + { + "id":"23008f10-64e8-4c2c-b59c-7069ab70c45b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-09-03T08:28:39.469Z", + "completed":"2017-09-03T08:28:39.469Z", + "new_balance":"3093.17", + "value":"-24.56" + } + }, + { + "id":"c1ff62af-3728-404a-b81c-ed1715a78c04", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-03T12:05:55.796Z", + "completed":"2017-09-03T12:05:55.796Z", + "new_balance":"3019.24", + "value":"-73.93" + } + }, + { + "id":"810b8068-840a-4609-a6db-0014e4b5b05f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-03T15:57:18.737Z", + "completed":"2017-09-03T15:57:18.737Z", + "new_balance":"2508.70", + "value":"-510.54" + } + }, + { + "id":"f2f6e1ea-0c7b-470a-8e17-d2b8c89dd633", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-05T01:21:19.640Z", + "completed":"2017-09-05T01:21:19.640Z", + "new_balance":"2460.04", + "value":"-48.66" + } + }, + { + "id":"5f4d4d30-599a-42bf-be69-c4df123a124a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-05T23:02:33.505Z", + "completed":"2017-09-05T23:02:33.505Z", + "new_balance":"2406.86", + "value":"-53.18" + } + }, + { + "id":"188c661d-c56c-4208-98bb-251798dd3221", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-07T13:30:43.974Z", + "completed":"2017-09-07T13:30:43.974Z", + "new_balance":"2393.19", + "value":"-13.67" + } + }, + { + "id":"768deca7-cf62-41a1-8f3f-2380e87b9c5f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-09T12:21:40.970Z", + "completed":"2017-09-09T12:21:40.970Z", + "new_balance":"2340.01", + "value":"-53.18" + } + }, + { + "id":"6eafd0f7-fe0d-4413-84d8-91f7fc328d91", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-11T00:29:33.983Z", + "completed":"2017-09-11T00:29:33.983Z", + "new_balance":"2329.01", + "value":"-11.00" + } + }, + { + "id":"73b623b7-b63a-4d23-bc90-b48cc7afe852", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-13T18:26:58.086Z", + "completed":"2017-09-13T18:26:58.086Z", + "new_balance":"2271.33", + "value":"-57.68" + } + }, + { + "id":"7c4e2e2a-900e-4621-ac78-8f21e8668472", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T02:00:19.775Z", + "completed":"2017-09-14T02:00:19.775Z", + "new_balance":"2259.40", + "value":"-11.93" + } + }, + { + "id":"d460014d-a0b4-4d22-8c24-1e11ddd0fab2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-14T14:16:54.742Z", + "completed":"2017-09-14T14:16:54.742Z", + "new_balance":"2322.76", + "value":"63.36" + } + }, + { + "id":"9fb6ee98-ccb5-446c-ad88-1ec3b617869f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-09-15T17:57:21.058Z", + "completed":"2017-09-15T17:57:21.058Z", + "new_balance":"2280.42", + "value":"-42.34" + } + }, + { + "id":"2e134505-910b-476c-b73c-641e44e1ac39", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-09-26T05:24:34.869Z", + "completed":"2017-09-26T05:24:34.869Z", + "new_balance":"2233.49", + "value":"-46.93" + } + }, + { + "id":"2f25b4b6-85e3-4c4c-b5aa-3ebaebdd77f8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T08:18:54.912Z", + "completed":"2017-09-26T08:18:54.912Z", + "new_balance":"2208.12", + "value":"-25.37" + } + }, + { + "id":"25748f37-9bbf-4891-8c54-3e9d09f05990", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-26T16:08:44.394Z", + "completed":"2017-09-26T16:08:44.394Z", + "new_balance":"2181.28", + "value":"-26.84" + } + }, + { + "id":"c244c887-d2f3-4d5c-a316-a50bac77c52a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-09-27T03:33:32.124Z", + "completed":"2017-09-27T03:33:32.124Z", + "new_balance":"2128.10", + "value":"-53.18" + } + }, + { + "id":"134f49f3-9b27-4a27-b7bd-3513680f576d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-27T13:12:32.671Z", + "completed":"2017-09-27T13:12:32.671Z", + "new_balance":"2061.52", + "value":"-66.58" + } + }, + { + "id":"dbe1344c-97e0-4424-bcbd-d2b5a123d958", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID39815", + "posted":"2017-09-27T19:53:59.403Z", + "completed":"2017-09-27T19:53:59.403Z", + "new_balance":"3250.03", + "value":"1188.51" + } + }, + { + "id":"e7e636d4-dd35-48ff-b483-6323bf0a6167", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-09-28T14:46:21.836Z", + "completed":"2017-09-28T14:46:21.836Z", + "new_balance":"3215.60", + "value":"-34.43" + } + }, + { + "id":"c0adbd9a-1488-4c3a-86e4-d944d22594ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-09-30T02:52:35.852Z", + "completed":"2017-09-30T02:52:35.852Z", + "new_balance":"3173.26", + "value":"-42.34" + } + }, + { + "id":"61457c6d-5154-4efe-9916-0d64dcbe5d86", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-10-01T05:46:09.835Z", + "completed":"2017-10-01T05:46:09.835Z", + "new_balance":"2662.72", + "value":"-510.54" + } + }, + { + "id":"afe3acc9-a91b-4090-8a19-70e06399f3ee", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-10-01T07:44:26.181Z", + "completed":"2017-10-01T07:44:26.181Z", + "new_balance":"2588.79", + "value":"-73.93" + } + }, + { + "id":"8025e57a-6824-40bc-97c7-df3e3c9bb90c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-10-01T08:35:16.088Z", + "completed":"2017-10-01T08:35:16.088Z", + "new_balance":"2554.36", + "value":"-34.43" + } + }, + { + "id":"76da8f94-c9f9-4873-850a-a47cf0a7c959", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-10-01T08:47:26.763Z", + "completed":"2017-10-01T08:47:26.763Z", + "new_balance":"2529.80", + "value":"-24.56" + } + }, + { + "id":"c7551bd0-480f-4514-86b2-6b5aa8a8f2d5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-10-01T15:53:45.852Z", + "completed":"2017-10-01T15:53:45.852Z", + "new_balance":"2467.93", + "value":"-61.87" + } + }, + { + "id":"943a96ba-f798-4764-82b0-dfd360f8882a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T06:11:17.959Z", + "completed":"2017-10-05T06:11:17.959Z", + "new_balance":"2423.95", + "value":"-43.98" + } + }, + { + "id":"14c72d4c-4298-47e6-bae8-4905e575e75b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-05T18:14:47.252Z", + "completed":"2017-10-05T18:14:47.252Z", + "new_balance":"2410.94", + "value":"-13.01" + } + }, + { + "id":"267cd172-63fd-4c29-8b4c-e42fd135c9b8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-05T19:23:09.912Z", + "completed":"2017-10-05T19:23:09.912Z", + "new_balance":"2388.25", + "value":"-22.69" + } + }, + { + "id":"bab49972-5e6d-4203-bbdb-907f82d6e781", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-05T22:19:10.414Z", + "completed":"2017-10-05T22:19:10.414Z", + "new_balance":"2335.07", + "value":"-53.18" + } + }, + { + "id":"97712686-d3b2-44cd-ba2b-dc559d591fdc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Specsavers" + }, + "details":{ + "type":"10218", + "description":"Optician", + "posted":"2017-10-07T03:31:07.948Z", + "completed":"2017-10-07T03:31:07.948Z", + "new_balance":"2305.19", + "value":"-29.88" + } + }, + { + "id":"17ecef72-d287-4a2e-bfc7-ba040fcb1931", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-09T01:10:19.210Z", + "completed":"2017-10-09T01:10:19.210Z", + "new_balance":"2280.32", + "value":"-24.87" + } + }, + { + "id":"a8ea411d-63ab-485d-93d8-4f3fa50ca30f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-09T17:58:45.514Z", + "completed":"2017-10-09T17:58:45.514Z", + "new_balance":"2227.14", + "value":"-53.18" + } + }, + { + "id":"ecb99383-11e0-4514-93ab-bb47b5697a8c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-10T03:58:48.132Z", + "completed":"2017-10-10T03:58:48.132Z", + "new_balance":"2210.74", + "value":"-16.40" + } + }, + { + "id":"25321feb-52f3-4170-9f4d-33f72e86e9d0", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Next" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T08:17:42.044Z", + "completed":"2017-10-10T08:17:42.044Z", + "new_balance":"2190.67", + "value":"-20.07" + } + }, + { + "id":"3da58f97-e668-4302-935a-e68c7160b321", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Clarks" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T16:32:09.414Z", + "completed":"2017-10-10T16:32:09.414Z", + "new_balance":"2166.11", + "value":"-24.56" + } + }, + { + "id":"a97f0098-576c-4ee9-8f2d-6ff11371c7dd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-10T18:07:24.802Z", + "completed":"2017-10-10T18:07:24.802Z", + "new_balance":"2126.94", + "value":"-39.17" + } + }, + { + "id":"121551c8-5552-44b9-b138-04f4f219adf6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T04:10:54.706Z", + "completed":"2017-10-11T04:10:54.706Z", + "new_balance":"2065.76", + "value":"-61.18" + } + }, + { + "id":"e6e2b9a3-a958-4d93-ab18-21f90db7ba9b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-10-11T05:15:41.847Z", + "completed":"2017-10-11T05:15:41.847Z", + "new_balance":"2035.36", + "value":"-30.40" + } + }, + { + "id":"7e003243-5517-467e-9da2-b47aa6b004ed", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-11T06:21:42.999Z", + "completed":"2017-10-11T06:21:42.999Z", + "new_balance":"2029.21", + "value":"-6.15" + } + }, + { + "id":"04f5f057-b9c8-46f8-b48c-f12e6b0b9e48", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-11T16:25:23.960Z", + "completed":"2017-10-11T16:25:23.960Z", + "new_balance":"1976.03", + "value":"-53.18" + } + }, + { + "id":"d7786f69-52e3-43ce-b2af-43d0b88fd867", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-10-11T23:20:57.947Z", + "completed":"2017-10-11T23:20:57.947Z", + "new_balance":"1944.71", + "value":"-31.32" + } + }, + { + "id":"7611c8ce-9367-45f8-b1dd-bbb759fc47f1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"High Street ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-10-21T03:07:38.122Z", + "completed":"2017-10-21T03:07:38.122Z", + "new_balance":"1891.53", + "value":"-53.18" + } + }, + { + "id":"0cb02df8-51ed-4ba6-8eb5-519cb07c3922", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-23T05:15:33.763Z", + "completed":"2017-10-23T05:15:33.763Z", + "new_balance":"1875.70", + "value":"-15.83" + } + }, + { + "id":"a7722439-111f-47bb-ad0d-af987d184762", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-10-29T09:48:29.051Z", + "completed":"2017-10-29T09:48:29.051Z", + "new_balance":"1841.27", + "value":"-34.43" + } + }, + { + "id":"a6765411-8ad9-4411-b781-af7fc90d0499", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID22781", + "posted":"2017-10-29T11:43:31.317Z", + "completed":"2017-10-29T11:43:31.317Z", + "new_balance":"3029.78", + "value":"1188.51" + } + }, + { + "id":"0f38847d-442e-4d96-95ca-d6f5b47dd584", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-10-29T16:55:32.928Z", + "completed":"2017-10-29T16:55:32.928Z", + "new_balance":"2971.30", + "value":"-58.48" + } + }, + { + "id":"69185b0a-b30c-477e-ae7b-d282f62f43ff", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-10-30T22:52:39.117Z", + "completed":"2017-10-30T22:52:39.117Z", + "new_balance":"2928.96", + "value":"-42.34" + } + }, + { + "id":"e5dae0ca-1f68-4bc7-b5fb-4213dda4665d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-11-02T00:08:20.306Z", + "completed":"2017-11-02T00:08:20.306Z", + "new_balance":"2867.09", + "value":"-61.87" + } + }, + { + "id":"cdc7719a-3d59-434c-b3ef-88fff565aa26", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-11-02T04:46:02.841Z", + "completed":"2017-11-02T04:46:02.841Z", + "new_balance":"2356.55", + "value":"-510.54" + } + }, + { + "id":"d658ee30-40e6-4590-add9-e502a58326b6", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-11-02T13:40:40.627Z", + "completed":"2017-11-02T13:40:40.627Z", + "new_balance":"2282.62", + "value":"-73.93" + } + }, + { + "id":"39474b78-b981-4f6f-892c-c0c589c8368b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-11-02T18:46:15.325Z", + "completed":"2017-11-02T18:46:15.325Z", + "new_balance":"2258.06", + "value":"-24.56" + } + }, + { + "id":"c6fefd36-f8d9-422a-abdc-6a1e2a4611ac", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-06T05:42:00.875Z", + "completed":"2017-11-06T05:42:00.875Z", + "new_balance":"2214.08", + "value":"-43.98" + } + }, + { + "id":"45e24c65-4619-40be-8db2-3d408ffe2b47", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Ebay" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T14:32:59.576Z", + "completed":"2017-11-07T14:32:59.576Z", + "new_balance":"2186.23", + "value":"-27.85" + } + }, + { + "id":"c0850a69-9085-47ec-b000-4bd0f156f5c2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"The Book People" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-07T19:00:42.050Z", + "completed":"2017-11-07T19:00:42.050Z", + "new_balance":"2175.32", + "value":"-10.91" + } + }, + { + "id":"9be265b0-abc5-4b30-86a7-ac118a4576c9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Dominos" + }, + "details":{ + "type":"10218", + "description":"Takeaway", + "posted":"2017-11-07T21:10:14.359Z", + "completed":"2017-11-07T21:10:14.359Z", + "new_balance":"2134.19", + "value":"-41.13" + } + }, + { + "id":"1fd3afb6-0a63-43d3-9eec-08a193f22992", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-07T22:29:26.959Z", + "completed":"2017-11-07T22:29:26.959Z", + "new_balance":"2104.31", + "value":"-29.88" + } + }, + { + "id":"e870d81c-32c9-4016-b611-ceb3d1920fae", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-08T20:22:01.310Z", + "completed":"2017-11-08T20:22:01.310Z", + "new_balance":"2063.39", + "value":"-40.92" + } + }, + { + "id":"a82b6d58-19c2-4930-9822-529ade3bc74d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-11-09T05:29:17.229Z", + "completed":"2017-11-09T05:29:17.229Z", + "new_balance":"2028.96", + "value":"-34.43" + } + }, + { + "id":"51fb58fe-2a49-4f99-b3ea-ea8f7f85e1e2", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-13T22:07:23.657Z", + "completed":"2017-11-13T22:07:23.657Z", + "new_balance":"1975.78", + "value":"-53.18" + } + }, + { + "id":"6d487737-5a39-4a31-819a-17f658e3ffcd", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Argos" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-26T16:19:30.738Z", + "completed":"2017-11-26T16:19:30.738Z", + "new_balance":"1964.87", + "value":"-10.91" + } + }, + { + "id":"f7242a42-0bf1-496c-9157-0db1c3513b0b", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-11-26T21:09:10.898Z", + "completed":"2017-11-26T21:09:10.898Z", + "new_balance":"1911.69", + "value":"-53.18" + } + }, + { + "id":"d314cb49-0670-4188-9f11-ee794e5a7b9c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-11-27T00:44:24.911Z", + "completed":"2017-11-27T00:44:24.911Z", + "new_balance":"1894.95", + "value":"-16.74" + } + }, + { + "id":"2baf02bc-bffd-4d53-84ee-fa1c64db3239", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-11-27T14:20:25.801Z", + "completed":"2017-11-27T14:20:25.801Z", + "new_balance":"1836.47", + "value":"-58.48" + } + }, + { + "id":"671d579f-cb9f-482f-961e-e5a0841ff74d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID281781", + "posted":"2017-11-30T04:25:34.084Z", + "completed":"2017-11-30T04:25:34.084Z", + "new_balance":"3024.98", + "value":"1188.51" + } + }, + { + "id":"3f0d7731-bcee-4ccc-aa86-a6aedcf2c89a", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-11-30T15:23:10.103Z", + "completed":"2017-11-30T15:23:10.103Z", + "new_balance":"2990.55", + "value":"-34.43" + } + }, + { + "id":"abe4018a-f8a4-4fe3-bfc8-cf660fdb0a1d", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-11-30T22:04:46.310Z", + "completed":"2017-11-30T22:04:46.310Z", + "new_balance":"2948.21", + "value":"-42.34" + } + }, + { + "id":"89e0904e-2c2d-4aad-a151-a0e0c8620273", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"EON" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T01:29:40.851Z", + "completed":"2017-12-01T01:29:40.851Z", + "new_balance":"2874.28", + "value":"-73.93" + } + }, + { + "id":"f405bcb3-d4de-4681-88a7-afeaf78da6ad", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Council Tax" + }, + "details":{ + "type":"10218", + "description":"Tax Ref 4583245", + "posted":"2017-12-01T07:02:34.997Z", + "completed":"2017-12-01T07:02:34.997Z", + "new_balance":"2812.41", + "value":"-61.87" + } + }, + { + "id":"1f70f68c-faaf-456a-b18b-35fceed62e05", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:28:08.767Z", + "completed":"2017-12-01T07:28:08.767Z", + "new_balance":"2301.87", + "value":"-510.54" + } + }, + { + "id":"74ff1839-631e-4ddb-8bef-538b482c8db5", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T10:49:50.963Z", + "completed":"2017-12-01T10:49:50.963Z", + "new_balance":"2248.69", + "value":"-53.18" + } + }, + { + "id":"01e391fc-a214-4235-a4cb-02f9a887f4a9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T11:58:59.717Z", + "completed":"2017-12-01T11:58:59.717Z", + "new_balance":"2235.02", + "value":"-13.67" + } + }, + { + "id":"67e19a00-34ae-47dc-a000-343d4134e2d8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T18:35:50.759Z", + "completed":"2017-12-01T18:35:50.759Z", + "new_balance":"2186.36", + "value":"-48.66" + } + }, + { + "id":"9d54f594-d8f2-4ec3-ae7a-f84388803efc", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Seven Trent Water" + }, + "details":{ + "type":"10218", + "description":"Water", + "posted":"2017-12-01T19:47:33.407Z", + "completed":"2017-12-01T19:47:33.407Z", + "new_balance":"2151.93", + "value":"-34.43" + } + }, + { + "id":"d866daf9-de32-4523-88af-cfbb578dd519", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Talk Talk" + }, + "details":{ + "type":"10218", + "description":"Telephone", + "posted":"2017-12-01T21:10:16.478Z", + "completed":"2017-12-01T21:10:16.478Z", + "new_balance":"2127.37", + "value":"-24.56" + } + }, + { + "id":"051a8437-7e35-4d9d-b363-aacac55a9e5c", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Mastercard" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-01T21:37:18.759Z", + "completed":"2017-12-01T21:37:18.759Z", + "new_balance":"2074.19", + "value":"-53.18" + } + }, + { + "id":"27c6453f-7342-4a4f-b72a-973a6ddbd7fa", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-02T16:17:16.258Z", + "completed":"2017-12-02T16:17:16.258Z", + "new_balance":"2063.19", + "value":"-11.00" + } + }, + { + "id":"ef68e9b6-a0da-4f07-9e10-a0dbc3898fd1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T17:02:42.643Z", + "completed":"2017-12-02T17:02:42.643Z", + "new_balance":"2005.51", + "value":"-57.68" + } + }, + { + "id":"fd7b9768-82a8-4fc2-9ff2-002b378e1840", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Poundland" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-02T21:17:47.336Z", + "completed":"2017-12-02T21:17:47.336Z", + "new_balance":"1993.58", + "value":"-11.93" + } + }, + { + "id":"61c51c69-fa02-4719-a5e3-870534a5aad3", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Pizza Hut" + }, + "details":{ + "type":"10218", + "description":"Restaurant", + "posted":"2017-12-04T09:03:20.080Z", + "completed":"2017-12-04T09:03:20.080Z", + "new_balance":"1946.65", + "value":"-46.93" + } + }, + { + "id":"8b70ddfa-68e4-469d-9087-4aec0620d6d9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-04T11:02:39.328Z", + "completed":"2017-12-04T11:02:39.328Z", + "new_balance":"1904.31", + "value":"-42.34" + } + }, + { + "id":"ec35a193-76f5-4f96-9af7-39c4495d4eff", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"CO-OP" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:00:58.771Z", + "completed":"2017-12-04T16:00:58.771Z", + "new_balance":"1878.94", + "value":"-25.37" + } + }, + { + "id":"975570ac-8d73-464c-83cd-c647fa5e9139", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Sport Direct" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T03:43:33.407Z", + "completed":"2017-12-05T03:43:33.407Z", + "new_balance":"1852.10", + "value":"-26.84" + } + }, + { + "id":"476e56de-8136-482a-9d2a-9356c8a9d9b9", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-05T13:02:54.868Z", + "completed":"2017-12-05T13:02:54.868Z", + "new_balance":"1785.52", + "value":"-66.58" + } + }, + { + "id":"4952b9b2-ccf2-458a-9f48-80091f2b1958", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Asda ATM" + }, + "details":{ + "type":"10218", + "description":"Cash withdrawal", + "posted":"2017-12-18T10:33:38.493Z", + "completed":"2017-12-18T10:33:38.493Z", + "new_balance":"1732.34", + "value":"-53.18" + } + }, + { + "id":"f1197a32-405c-472c-be50-f13759ffd1b1", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Texaco Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling station", + "posted":"2017-12-30T00:31:40.556Z", + "completed":"2017-12-30T00:31:40.556Z", + "new_balance":"1690.81", + "value":"-41.53" + } + }, + { + "id":"a3583207-4c6e-4f74-9ec4-77ace36ea4bf", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Pay Ref 651139", + "posted":"2017-12-30T16:52:18.745Z", + "completed":"2017-12-30T16:52:18.745Z", + "new_balance":"2879.32", + "value":"1188.51" + } + }, + { + "id":"ffe3b26f-f6b3-4640-9a46-718bac638de8", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Post Office Savings" + }, + "details":{ + "type":"10218", + "description":"Savings", + "posted":"2017-12-30T18:29:32.437Z", + "completed":"2017-12-30T18:29:32.437Z", + "new_balance":"2836.98", + "value":"-42.34" + } + }, + { + "id":"e78d8779-a6ea-40cf-87bf-e27e74e4932f", + "this_account":{ + "id":"e858e5ee-1643-4743-ac82-739b4c6a8ffe", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Three Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile phone", + "posted":"2017-12-30T21:21:56.004Z", + "completed":"2017-12-30T21:21:56.004Z", + "new_balance":"2802.55", + "value":"-34.43" + } + }, + { + "id":"89d75907-09ca-433b-a676-e8268b8f71e2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T01:26:20.512Z", + "completed":"2016-03-01T01:26:20.512Z", + "new_balance":"2070.17", + "value":"-277.48" + } + }, + { + "id":"1e592634-2d36-4a5e-bdea-f69869343f39", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T01:28:39.066Z", + "completed":"2016-03-01T01:28:39.066Z", + "new_balance":"1773.57", + "value":"-296.60" + } + }, + { + "id":"c0ca5c2d-fa97-4296-86fc-46b77532cf8d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T04:29:56.187Z", + "completed":"2016-03-01T04:29:56.187Z", + "new_balance":"1751.21", + "value":"-22.36" + } + }, + { + "id":"34bd5449-ce39-40a5-b2c9-f755bf5637f0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T05:22:16.045Z", + "completed":"2016-03-01T05:22:16.045Z", + "new_balance":"1727.97", + "value":"-23.24" + } + }, + { + "id":"8dfb0bf6-c712-4464-9e2c-609ac07d834f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T12:26:39.010Z", + "completed":"2016-03-01T12:26:39.010Z", + "new_balance":"1714.87", + "value":"-13.10" + } + }, + { + "id":"03bae0aa-b0a4-45b7-95d5-94c351771424", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T19:43:15.090Z", + "completed":"2016-03-01T19:43:15.090Z", + "new_balance":"1658.06", + "value":"-56.81" + } + }, + { + "id":"fce8b977-1eb9-41cd-a511-f004e96f0666", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T01:28:23.992Z", + "completed":"2016-03-12T01:28:23.992Z", + "new_balance":"1653.88", + "value":"-4.18" + } + }, + { + "id":"49ab62cd-3a59-450a-8edb-d0570223f430", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T02:52:27.596Z", + "completed":"2016-03-12T02:52:27.596Z", + "new_balance":"1630.64", + "value":"-23.24" + } + }, + { + "id":"89847f16-f0cc-4dd3-89b8-c9f20ab783db", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T13:07:43.228Z", + "completed":"2016-03-12T13:07:43.228Z", + "new_balance":"1625.49", + "value":"-5.15" + } + }, + { + "id":"2c2be3af-1b9f-4c4d-934b-2f0f0d6093e2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T15:15:16.071Z", + "completed":"2016-03-12T15:15:16.071Z", + "new_balance":"1568.68", + "value":"-56.81" + } + }, + { + "id":"36391524-3b06-40dc-adfe-c37133becf64", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T00:58:14.290Z", + "completed":"2016-03-14T00:58:14.290Z", + "new_balance":"1729.49", + "value":"160.81" + } + }, + { + "id":"d5359cf5-75c9-4ebf-b645-6e48f8f512ef", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T23:14:40.099Z", + "completed":"2016-03-15T23:14:40.099Z", + "new_balance":"1759.76", + "value":"30.27" + } + }, + { + "id":"2093de2c-45da-476b-a664-2027e4e17283", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T11:50:02.809Z", + "completed":"2016-03-16T11:50:02.809Z", + "new_balance":"1850.72", + "value":"90.96" + } + }, + { + "id":"1acb2ca9-b6ae-465f-bfab-37449fafecbb", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T01:35:40.057Z", + "completed":"2016-03-17T01:35:40.057Z", + "new_balance":"1844.19", + "value":"-6.53" + } + }, + { + "id":"ad1b1d07-8e1a-41b9-a04f-1d586e5c34dc", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T11:14:58.568Z", + "completed":"2016-03-17T11:14:58.568Z", + "new_balance":"1838.71", + "value":"-5.48" + } + }, + { + "id":"d1ae038c-51b2-440c-be59-f0b85c62f967", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T11:48:16.823Z", + "completed":"2016-03-19T11:48:16.823Z", + "new_balance":"1886.58", + "value":"47.87" + } + }, + { + "id":"5d85f691-e99b-49f5-9e55-76137fa9cbd0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T08:13:27.103Z", + "completed":"2016-03-21T08:13:27.103Z", + "new_balance":"1893.42", + "value":"6.84" + } + }, + { + "id":"7cd1a2e2-f21c-4832-9ab0-a29bfd57f269", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T21:12:53.761Z", + "completed":"2016-03-21T21:12:53.761Z", + "new_balance":"1886.23", + "value":"-7.19" + } + }, + { + "id":"a4a1b651-c70a-4437-b748-63e24b3521ed", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:38:08.804Z", + "completed":"2016-03-24T01:38:08.804Z", + "new_balance":"1916.50", + "value":"30.27" + } + }, + { + "id":"0fa04c41-e269-4797-9d7d-848ceace49fd", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T08:13:16.974Z", + "completed":"2016-03-24T08:13:16.974Z", + "new_balance":"1866.28", + "value":"-50.22" + } + }, + { + "id":"6dfd03f6-9150-4a9a-863b-a176cf333a05", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T13:21:32.071Z", + "completed":"2016-03-25T13:21:32.071Z", + "new_balance":"1916.36", + "value":"50.08" + } + }, + { + "id":"8f853d53-c20c-4f4e-9ea4-3f42167775c3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T19:21:28.619Z", + "completed":"2016-03-25T19:21:28.619Z", + "new_balance":"1847.28", + "value":"-69.08" + } + }, + { + "id":"1e8c1852-47f6-49bb-87aa-25ef68983120", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T02:53:24.851Z", + "completed":"2016-03-28T02:53:24.851Z", + "new_balance":"2256.10", + "value":"408.82" + } + }, + { + "id":"8afca148-87ec-4617-a750-0c6594495c44", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T18:35:04.127Z", + "completed":"2016-03-28T18:35:04.127Z", + "new_balance":"2416.91", + "value":"160.81" + } + }, + { + "id":"f6c5acbb-a9ca-4c9e-ad54-9e8ebb515cf4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T07:37:12.382Z", + "completed":"2016-03-30T07:37:12.382Z", + "new_balance":"2437.80", + "value":"20.89" + } + }, + { + "id":"0aa029f0-fec5-48f7-8794-5edd5ad8c42a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T08:11:30.382Z", + "completed":"2016-03-30T08:11:30.382Z", + "new_balance":"2468.07", + "value":"30.27" + } + }, + { + "id":"9c296b68-e6a4-42bb-88ff-6d0bd270707e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T06:10:03.081Z", + "completed":"2016-06-01T06:10:03.081Z", + "new_balance":"2190.59", + "value":"-277.48" + } + }, + { + "id":"c7d0b495-802b-48b8-a3be-03d8ff3d5599", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T11:58:00.939Z", + "completed":"2016-06-01T11:58:00.939Z", + "new_balance":"2167.35", + "value":"-23.24" + } + }, + { + "id":"b1d8185b-0e04-4b61-944c-86f6deb60ebe", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T12:13:10.260Z", + "completed":"2016-06-01T12:13:10.260Z", + "new_balance":"2154.25", + "value":"-13.10" + } + }, + { + "id":"4b47b888-b3c8-41fe-8014-be6a5c87297b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T13:32:15.796Z", + "completed":"2016-06-01T13:32:15.796Z", + "new_balance":"2097.44", + "value":"-56.81" + } + }, + { + "id":"35b26b6b-8405-40ba-8888-7d692f3bf8bf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T16:47:12.032Z", + "completed":"2016-06-01T16:47:12.032Z", + "new_balance":"2075.08", + "value":"-22.36" + } + }, + { + "id":"8bbe54dc-4a67-4ca4-bffa-d958fb8fd7dc", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T22:55:19.592Z", + "completed":"2016-06-01T22:55:19.592Z", + "new_balance":"1778.48", + "value":"-296.60" + } + }, + { + "id":"6847bb10-b37a-488f-ab47-ca50c0e71113", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:56:35.341Z", + "completed":"2016-06-04T04:56:35.341Z", + "new_balance":"1774.30", + "value":"-4.18" + } + }, + { + "id":"5f95cc78-aeaf-4d11-b250-60ea31c5232a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T10:11:51.491Z", + "completed":"2016-06-04T10:11:51.491Z", + "new_balance":"1769.15", + "value":"-5.15" + } + }, + { + "id":"7ecddde4-8e82-4769-984e-4125ab6545b3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T09:31:52.955Z", + "completed":"2016-06-05T09:31:52.955Z", + "new_balance":"1712.34", + "value":"-56.81" + } + }, + { + "id":"38a75204-727d-483d-913c-864a4a56cffa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T13:27:57.211Z", + "completed":"2016-06-05T13:27:57.211Z", + "new_balance":"1689.10", + "value":"-23.24" + } + }, + { + "id":"4ee5ae8f-668d-413c-9c7e-f9502f7e839c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T12:51:33.305Z", + "completed":"2016-06-07T12:51:33.305Z", + "new_balance":"1719.37", + "value":"30.27" + } + }, + { + "id":"cc455571-ff33-4d74-b332-5d593aa41cfe", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T20:30:04.942Z", + "completed":"2016-06-07T20:30:04.942Z", + "new_balance":"1880.18", + "value":"160.81" + } + }, + { + "id":"23d4248d-82cf-4a47-9d7d-dc3f41a2ae7e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T21:21:58.801Z", + "completed":"2016-06-07T21:21:58.801Z", + "new_balance":"1873.65", + "value":"-6.53" + } + }, + { + "id":"0e9ca7f2-21d9-486c-bb7f-e870baa8c710", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T21:44:42.251Z", + "completed":"2016-06-07T21:44:42.251Z", + "new_balance":"1964.61", + "value":"90.96" + } + }, + { + "id":"851aa2c7-1ed9-49d9-9e42-be2d607a2fea", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T04:02:39.000Z", + "completed":"2016-06-11T04:02:39.000Z", + "new_balance":"1959.13", + "value":"-5.48" + } + }, + { + "id":"116459c8-0fb8-4d21-8ff8-4b698f830896", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T02:20:32.157Z", + "completed":"2016-06-14T02:20:32.157Z", + "new_balance":"2007.00", + "value":"47.87" + } + }, + { + "id":"f72a2942-e995-4fb6-8837-7f9a856b0d82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T03:29:18.973Z", + "completed":"2016-06-14T03:29:18.973Z", + "new_balance":"1999.81", + "value":"-7.19" + } + }, + { + "id":"8c9d84e5-4d43-41ed-8a04-c34692331894", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:26:51.619Z", + "completed":"2016-06-14T09:26:51.619Z", + "new_balance":"2006.65", + "value":"6.84" + } + }, + { + "id":"bf070a47-8127-40e9-910c-8a990e87a628", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T09:49:22.370Z", + "completed":"2016-06-16T09:49:22.370Z", + "new_balance":"2036.92", + "value":"30.27" + } + }, + { + "id":"49e6acb3-94bc-4957-9563-3f0d34f174ad", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T16:17:22.838Z", + "completed":"2016-06-16T16:17:22.838Z", + "new_balance":"1986.70", + "value":"-50.22" + } + }, + { + "id":"342ca787-2412-463d-ba93-58a1e1f162d6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T05:58:22.162Z", + "completed":"2016-06-21T05:58:22.162Z", + "new_balance":"2036.78", + "value":"50.08" + } + }, + { + "id":"d16dff0c-3057-4ac6-a5c5-3b86fd6b9e96", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T06:14:45.884Z", + "completed":"2016-06-21T06:14:45.884Z", + "new_balance":"1967.70", + "value":"-69.08" + } + }, + { + "id":"f76895ab-fa32-487e-a8f5-cec86031303c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T14:02:53.042Z", + "completed":"2016-06-21T14:02:53.042Z", + "new_balance":"2128.51", + "value":"160.81" + } + }, + { + "id":"eba51875-f325-46c7-90af-a65f0444ca7c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T17:26:49.281Z", + "completed":"2016-06-21T17:26:49.281Z", + "new_balance":"2537.33", + "value":"408.82" + } + }, + { + "id":"6ac4f96f-c33a-47e3-9f90-67324fd5ded4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T09:52:16.771Z", + "completed":"2016-06-30T09:52:16.771Z", + "new_balance":"2567.60", + "value":"30.27" + } + }, + { + "id":"e90ecf26-b7ca-4e4a-9c71-d88ae474dc22", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T12:14:35.577Z", + "completed":"2016-06-30T12:14:35.577Z", + "new_balance":"2588.49", + "value":"20.89" + } + }, + { + "id":"58591098-83a6-4bdc-a6d2-5a6af3b24d55", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T03:17:16.538Z", + "completed":"2016-09-01T03:17:16.538Z", + "new_balance":"2575.39", + "value":"-13.10" + } + }, + { + "id":"9fdb6060-bdfc-44bc-b8fb-da2e4727cd67", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T03:49:32.385Z", + "completed":"2016-09-01T03:49:32.385Z", + "new_balance":"2297.91", + "value":"-277.48" + } + }, + { + "id":"fc79077f-920d-49ee-9946-d918e3022f78", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T05:24:42.707Z", + "completed":"2016-09-01T05:24:42.707Z", + "new_balance":"2001.31", + "value":"-296.60" + } + }, + { + "id":"8b7b2180-a16c-4865-9e0a-cfd3edf4cd1e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T13:38:03.353Z", + "completed":"2016-09-01T13:38:03.353Z", + "new_balance":"1944.50", + "value":"-56.81" + } + }, + { + "id":"1f41e822-2634-4160-868f-f677d0f05d9d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T15:16:14.888Z", + "completed":"2016-09-01T15:16:14.888Z", + "new_balance":"1921.26", + "value":"-23.24" + } + }, + { + "id":"714fd4e9-4ec1-4abc-980d-9c8a912df90c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T16:27:12.006Z", + "completed":"2016-09-01T16:27:12.006Z", + "new_balance":"1898.90", + "value":"-22.36" + } + }, + { + "id":"c3670e23-1a24-479d-b298-e3f04b2e98ae", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T00:10:51.400Z", + "completed":"2016-09-12T00:10:51.400Z", + "new_balance":"1894.72", + "value":"-4.18" + } + }, + { + "id":"4be11392-cfe8-4208-ad0b-460e989edf10", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T10:40:29.951Z", + "completed":"2016-09-12T10:40:29.951Z", + "new_balance":"1889.57", + "value":"-5.15" + } + }, + { + "id":"48f1615e-9020-4ac2-bd41-ee08689a6c58", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T17:08:29.762Z", + "completed":"2016-09-12T17:08:29.762Z", + "new_balance":"1866.33", + "value":"-23.24" + } + }, + { + "id":"5cd189c6-262b-42cf-9402-5ca29c6dbb7b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T23:27:55.425Z", + "completed":"2016-09-12T23:27:55.425Z", + "new_balance":"1809.52", + "value":"-56.81" + } + }, + { + "id":"56408fad-a36b-490d-bb95-d77e709ac190", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T02:11:52.623Z", + "completed":"2016-09-15T02:11:52.623Z", + "new_balance":"1970.33", + "value":"160.81" + } + }, + { + "id":"06a10a1a-63de-48bb-b09d-7d289bcb586f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T09:18:01.794Z", + "completed":"2016-09-15T09:18:01.794Z", + "new_balance":"2000.60", + "value":"30.27" + } + }, + { + "id":"d7b3f49e-9efb-4761-979e-0a57eb7aeaaf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T06:17:56.422Z", + "completed":"2016-09-17T06:17:56.422Z", + "new_balance":"2091.56", + "value":"90.96" + } + }, + { + "id":"1e50a798-ed0c-46eb-97d8-e01211ca508e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T08:29:19.790Z", + "completed":"2016-09-17T08:29:19.790Z", + "new_balance":"2085.03", + "value":"-6.53" + } + }, + { + "id":"4a31b460-1949-4a0c-816d-3478f5803647", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T23:05:12.142Z", + "completed":"2016-09-17T23:05:12.142Z", + "new_balance":"2079.55", + "value":"-5.48" + } + }, + { + "id":"bb923dd1-c167-447e-b3a1-f1615911f7d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T13:42:50.068Z", + "completed":"2016-09-19T13:42:50.068Z", + "new_balance":"2127.42", + "value":"47.87" + } + }, + { + "id":"a5d4340e-7634-47f2-8c34-6f53a31f2734", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T11:56:07.887Z", + "completed":"2016-09-21T11:56:07.887Z", + "new_balance":"2134.26", + "value":"6.84" + } + }, + { + "id":"82dda9fc-d246-46ba-8f39-8c55535e8b82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T20:10:27.835Z", + "completed":"2016-09-21T20:10:27.835Z", + "new_balance":"2127.07", + "value":"-7.19" + } + }, + { + "id":"673c6c2a-fea5-474b-9142-020db7af5140", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T12:52:37.264Z", + "completed":"2016-09-24T12:52:37.264Z", + "new_balance":"2157.34", + "value":"30.27" + } + }, + { + "id":"9dd21b13-25ee-4743-9166-b115352beb69", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T19:22:18.694Z", + "completed":"2016-09-24T19:22:18.694Z", + "new_balance":"2107.12", + "value":"-50.22" + } + }, + { + "id":"499769f8-6d52-43e8-9fdd-36bfebe0e3a5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T00:45:21.786Z", + "completed":"2016-09-25T00:45:21.786Z", + "new_balance":"2038.04", + "value":"-69.08" + } + }, + { + "id":"c0216fdc-07ce-4e5c-b466-cc2d203629f9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T15:09:50.427Z", + "completed":"2016-09-25T15:09:50.427Z", + "new_balance":"2088.12", + "value":"50.08" + } + }, + { + "id":"6d613735-c880-46e0-a13d-b7f7e7f59858", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T20:30:45.870Z", + "completed":"2016-09-28T20:30:45.870Z", + "new_balance":"2496.94", + "value":"408.82" + } + }, + { + "id":"ee49fb9c-b560-46c6-9bc0-b4d5d2024c11", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T21:53:38.187Z", + "completed":"2016-09-28T21:53:38.187Z", + "new_balance":"2657.75", + "value":"160.81" + } + }, + { + "id":"f3eae58a-14a6-4b40-9f30-12b6584d3cb0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:13:14.979Z", + "completed":"2016-09-30T14:13:14.979Z", + "new_balance":"2678.64", + "value":"20.89" + } + }, + { + "id":"14d73c6e-2bf1-4ce6-83c6-c274e33cc3a8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T22:21:14.887Z", + "completed":"2016-09-30T22:21:14.887Z", + "new_balance":"2708.91", + "value":"30.27" + } + }, + { + "id":"433426da-76c5-4fab-b464-7f09b8de059c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T05:29:49.715Z", + "completed":"2016-12-01T05:29:49.715Z", + "new_balance":"2686.55", + "value":"-22.36" + } + }, + { + "id":"6d8e6a30-e124-46c1-bdf9-01565224aa90", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T07:31:57.991Z", + "completed":"2016-12-01T07:31:57.991Z", + "new_balance":"2663.31", + "value":"-23.24" + } + }, + { + "id":"41a8e889-9414-4eb8-9ce3-ff21b9dd5239", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T08:34:42.748Z", + "completed":"2016-12-01T08:34:42.748Z", + "new_balance":"2606.50", + "value":"-56.81" + } + }, + { + "id":"e4680c32-dd00-483a-b4a1-1ef4f77a992d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T14:47:20.387Z", + "completed":"2016-12-01T14:47:20.387Z", + "new_balance":"2329.02", + "value":"-277.48" + } + }, + { + "id":"6ab8c188-1563-4c6d-a924-e2f045b71c10", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T18:21:54.055Z", + "completed":"2016-12-01T18:21:54.055Z", + "new_balance":"2315.92", + "value":"-13.10" + } + }, + { + "id":"39b03d94-0f94-43e4-818d-6bb33b630aba", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T22:45:44.950Z", + "completed":"2016-12-01T22:45:44.950Z", + "new_balance":"2019.32", + "value":"-296.60" + } + }, + { + "id":"553bcdb3-11df-4808-889e-cbcea0f3848d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T07:04:50.778Z", + "completed":"2016-12-04T07:04:50.778Z", + "new_balance":"2014.17", + "value":"-5.15" + } + }, + { + "id":"b08b746e-8746-40cc-8277-65b2d334bbdf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T22:08:29.550Z", + "completed":"2016-12-04T22:08:29.550Z", + "new_balance":"2009.99", + "value":"-4.18" + } + }, + { + "id":"fa85626c-2743-4e11-a43b-5a8eeb72978c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T07:50:36.240Z", + "completed":"2016-12-05T07:50:36.240Z", + "new_balance":"1953.18", + "value":"-56.81" + } + }, + { + "id":"7cd82e15-7164-4dc3-bae8-ebe6bbef5c59", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T23:09:48.812Z", + "completed":"2016-12-05T23:09:48.812Z", + "new_balance":"1929.94", + "value":"-23.24" + } + }, + { + "id":"9f1cf1cb-4db2-43a5-ac37-1e5b81e7029c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T06:21:01.038Z", + "completed":"2016-12-07T06:21:01.038Z", + "new_balance":"2090.75", + "value":"160.81" + } + }, + { + "id":"76d8422a-ddb0-419c-9933-3b233ec9934f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T09:59:21.619Z", + "completed":"2016-12-07T09:59:21.619Z", + "new_balance":"2084.22", + "value":"-6.53" + } + }, + { + "id":"449c5704-9fd4-4790-bc2f-49e34625eb98", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:02:46.118Z", + "completed":"2016-12-07T11:02:46.118Z", + "new_balance":"2114.49", + "value":"30.27" + } + }, + { + "id":"b668fb6d-c73d-434d-b0d8-e6be1caa8604", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T23:56:22.733Z", + "completed":"2016-12-07T23:56:22.733Z", + "new_balance":"2205.45", + "value":"90.96" + } + }, + { + "id":"a7b9904d-4be9-4bc4-ae80-cd064704dbd2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T03:57:21.230Z", + "completed":"2016-12-11T03:57:21.230Z", + "new_balance":"2199.97", + "value":"-5.48" + } + }, + { + "id":"d4162e9b-f3b5-402f-b751-c048ba222164", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T10:55:10.848Z", + "completed":"2016-12-14T10:55:10.848Z", + "new_balance":"2247.84", + "value":"47.87" + } + }, + { + "id":"82364bc8-2279-46df-bc07-4637a08717a0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:36:26.657Z", + "completed":"2016-12-14T21:36:26.657Z", + "new_balance":"2240.65", + "value":"-7.19" + } + }, + { + "id":"f5a4fbd7-ac3f-408c-bc57-cbab5e859e98", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:50:13.602Z", + "completed":"2016-12-14T21:50:13.602Z", + "new_balance":"2247.49", + "value":"6.84" + } + }, + { + "id":"d85d3034-16c4-42df-a65a-209f8d56f3c9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T17:53:54.620Z", + "completed":"2016-12-16T17:53:54.620Z", + "new_balance":"2197.27", + "value":"-50.22" + } + }, + { + "id":"04a60604-b737-452b-aa53-2b18374b9323", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T19:22:37.120Z", + "completed":"2016-12-16T19:22:37.120Z", + "new_balance":"2227.54", + "value":"30.27" + } + }, + { + "id":"be12c40d-ed61-4619-bd34-0f53e8179cf3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T06:10:59.765Z", + "completed":"2016-12-21T06:10:59.765Z", + "new_balance":"2388.35", + "value":"160.81" + } + }, + { + "id":"5a2cb1c8-4688-4101-9f8e-8165ad45ba21", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T07:33:43.850Z", + "completed":"2016-12-21T07:33:43.850Z", + "new_balance":"2438.43", + "value":"50.08" + } + }, + { + "id":"7bd19c72-3e2a-4731-bcd9-48e9ea92eb0e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:26:08.067Z", + "completed":"2016-12-21T19:26:08.067Z", + "new_balance":"2847.25", + "value":"408.82" + } + }, + { + "id":"db22c156-9fd6-4291-963c-84c269bc5e4b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T22:22:45.395Z", + "completed":"2016-12-21T22:22:45.395Z", + "new_balance":"2778.17", + "value":"-69.08" + } + }, + { + "id":"776d3c7c-d98b-423d-b78a-6d4794d1b76b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T03:10:04.631Z", + "completed":"2016-12-30T03:10:04.631Z", + "new_balance":"2799.06", + "value":"20.89" + } + }, + { + "id":"aebdf726-1444-4321-9c08-ca26a508e1d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T03:37:20.273Z", + "completed":"2016-12-30T03:37:20.273Z", + "new_balance":"2829.33", + "value":"30.27" + } + }, + { + "id":"5a44b25d-a038-4e0d-8d25-e7d3f605396a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T00:41:16.694Z", + "completed":"2017-03-01T00:41:16.694Z", + "new_balance":"2806.97", + "value":"-22.36" + } + }, + { + "id":"874ea56b-2d0d-4533-beac-5b33624d6281", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T02:59:05.933Z", + "completed":"2017-03-01T02:59:05.933Z", + "new_balance":"2750.16", + "value":"-56.81" + } + }, + { + "id":"5bc71659-078c-452b-b6ae-e98fa7316c07", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T11:24:43.314Z", + "completed":"2017-03-01T11:24:43.314Z", + "new_balance":"2472.68", + "value":"-277.48" + } + }, + { + "id":"c6bc7ead-3dd2-4368-be36-48bdba342467", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T17:43:02.860Z", + "completed":"2017-03-01T17:43:02.860Z", + "new_balance":"2176.08", + "value":"-296.60" + } + }, + { + "id":"5dcd9567-01d6-4b6b-89b3-7f3ba2ec128d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T23:12:33.959Z", + "completed":"2017-03-01T23:12:33.959Z", + "new_balance":"2152.84", + "value":"-23.24" + } + }, + { + "id":"8396dfc8-32d1-406f-a09a-5f9d47627271", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T23:41:59.183Z", + "completed":"2017-03-01T23:41:59.183Z", + "new_balance":"2139.74", + "value":"-13.10" + } + }, + { + "id":"0686ed7a-144b-47e9-aa7b-38fdf9d25228", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T00:25:14.055Z", + "completed":"2017-03-12T00:25:14.055Z", + "new_balance":"2134.59", + "value":"-5.15" + } + }, + { + "id":"1a915aa3-239b-40c9-8b98-fd9353e106b0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T04:34:48.683Z", + "completed":"2017-03-12T04:34:48.683Z", + "new_balance":"2077.78", + "value":"-56.81" + } + }, + { + "id":"39e1b874-91f1-48d0-ac30-1d800f6db523", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T19:31:11.466Z", + "completed":"2017-03-12T19:31:11.466Z", + "new_balance":"2054.54", + "value":"-23.24" + } + }, + { + "id":"d827cc47-f021-4e8c-80e2-0329d9b5158e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T21:52:18.762Z", + "completed":"2017-03-12T21:52:18.762Z", + "new_balance":"2050.36", + "value":"-4.18" + } + }, + { + "id":"ef745405-df12-4f56-bfd3-ec6f0910a478", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T08:51:54.311Z", + "completed":"2017-03-14T08:51:54.311Z", + "new_balance":"2211.17", + "value":"160.81" + } + }, + { + "id":"335b027d-a439-4e2d-9bf7-e6c3d7487cde", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T22:34:07.626Z", + "completed":"2017-03-15T22:34:07.626Z", + "new_balance":"2241.44", + "value":"30.27" + } + }, + { + "id":"b7b37640-cee2-460e-893a-427bcbce45ce", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T22:31:30.106Z", + "completed":"2017-03-16T22:31:30.106Z", + "new_balance":"2332.40", + "value":"90.96" + } + }, + { + "id":"9bf9e921-3349-42db-80ef-7081dd7f2774", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T02:03:56.747Z", + "completed":"2017-03-17T02:03:56.747Z", + "new_balance":"2325.87", + "value":"-6.53" + } + }, + { + "id":"b5d5edf7-37c2-49c2-b0a4-0f7e9910b073", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T18:12:33.799Z", + "completed":"2017-03-17T18:12:33.799Z", + "new_balance":"2320.39", + "value":"-5.48" + } + }, + { + "id":"a7afcd44-f2ad-4dd1-9157-8556956b1a3b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T13:01:40.862Z", + "completed":"2017-03-19T13:01:40.862Z", + "new_balance":"2368.26", + "value":"47.87" + } + }, + { + "id":"4bfd9012-ea1b-454c-88aa-a668ae83c29f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T02:57:46.238Z", + "completed":"2017-03-21T02:57:46.238Z", + "new_balance":"2375.10", + "value":"6.84" + } + }, + { + "id":"e635dfde-9d83-4ee8-a558-3520ec6c1e49", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T06:35:38.897Z", + "completed":"2017-03-21T06:35:38.897Z", + "new_balance":"2367.91", + "value":"-7.19" + } + }, + { + "id":"531cb8a8-9f04-4499-8791-75b2d17ce5f0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T09:36:46.685Z", + "completed":"2017-03-24T09:36:46.685Z", + "new_balance":"2317.69", + "value":"-50.22" + } + }, + { + "id":"d884047d-1ae7-4f52-afd0-a03185b2dd8d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T14:16:47.505Z", + "completed":"2017-03-24T14:16:47.505Z", + "new_balance":"2347.96", + "value":"30.27" + } + }, + { + "id":"4c0d4507-d3fd-47cd-9a63-5480d6ace9ff", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T06:51:00.302Z", + "completed":"2017-03-25T06:51:00.302Z", + "new_balance":"2398.04", + "value":"50.08" + } + }, + { + "id":"ea3cd737-b5d9-4654-8961-5c23f5573af6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T21:59:06.608Z", + "completed":"2017-03-25T21:59:06.608Z", + "new_balance":"2328.96", + "value":"-69.08" + } + }, + { + "id":"2f8d2ded-7153-4194-84d6-2d61deb953db", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T05:46:54.354Z", + "completed":"2017-03-28T05:46:54.354Z", + "new_balance":"2737.78", + "value":"408.82" + } + }, + { + "id":"6b08e118-08cb-450f-a588-3df6267ae2a8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:18:44.729Z", + "completed":"2017-03-28T16:18:44.729Z", + "new_balance":"2898.59", + "value":"160.81" + } + }, + { + "id":"2918e1fb-a5fa-423c-b96c-091c57fe8c86", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T02:31:23.542Z", + "completed":"2017-03-30T02:31:23.542Z", + "new_balance":"2928.86", + "value":"30.27" + } + }, + { + "id":"1dbc83c8-71ea-421c-b507-e54b711ee36f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T20:47:01.718Z", + "completed":"2017-03-30T20:47:01.718Z", + "new_balance":"2949.75", + "value":"20.89" + } + }, + { + "id":"56e04037-8101-45a1-ac97-5c0516050440", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T10:08:17.856Z", + "completed":"2017-06-01T10:08:17.856Z", + "new_balance":"2926.51", + "value":"-23.24" + } + }, + { + "id":"59038ff2-2c5a-4c88-9d94-23fe56192cc5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T12:56:00.936Z", + "completed":"2017-06-01T12:56:00.936Z", + "new_balance":"2629.91", + "value":"-296.60" + } + }, + { + "id":"edf2cd5a-0d28-43ed-a2c6-1f8379ef016d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T13:33:16.570Z", + "completed":"2017-06-01T13:33:16.570Z", + "new_balance":"2352.43", + "value":"-277.48" + } + }, + { + "id":"dc0aed43-d5d2-4edd-bb75-3e3ba48a2f4e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T16:16:01.137Z", + "completed":"2017-06-01T16:16:01.137Z", + "new_balance":"2295.62", + "value":"-56.81" + } + }, + { + "id":"721afc0a-9483-4c52-9f50-6471bc223219", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T17:59:25.390Z", + "completed":"2017-06-01T17:59:25.390Z", + "new_balance":"2282.52", + "value":"-13.10" + } + }, + { + "id":"3838f605-65e0-4026-8e00-44b8b3e73297", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T23:49:12.084Z", + "completed":"2017-06-01T23:49:12.084Z", + "new_balance":"2260.16", + "value":"-22.36" + } + }, + { + "id":"d0589486-3a36-48c5-8203-97ee1b39601f", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T04:05:14.622Z", + "completed":"2017-06-04T04:05:14.622Z", + "new_balance":"2255.98", + "value":"-4.18" + } + }, + { + "id":"65c271fe-711e-4873-ae51-d4f1e8c5b303", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T10:16:18.144Z", + "completed":"2017-06-04T10:16:18.144Z", + "new_balance":"2250.83", + "value":"-5.15" + } + }, + { + "id":"cdf63fb9-ea7d-4139-bd63-61096a745686", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T02:39:34.639Z", + "completed":"2017-06-05T02:39:34.639Z", + "new_balance":"2194.02", + "value":"-56.81" + } + }, + { + "id":"3b9ac737-0734-4d2c-88e8-76552e324e82", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T16:17:28.453Z", + "completed":"2017-06-05T16:17:28.453Z", + "new_balance":"2170.78", + "value":"-23.24" + } + }, + { + "id":"af628a1a-dbfd-44e7-a83f-e7b085889f3d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T06:48:38.651Z", + "completed":"2017-06-07T06:48:38.651Z", + "new_balance":"2331.59", + "value":"160.81" + } + }, + { + "id":"87fdbe96-715a-4724-98e0-f0d448f1dbfa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T18:37:00.514Z", + "completed":"2017-06-07T18:37:00.514Z", + "new_balance":"2361.86", + "value":"30.27" + } + }, + { + "id":"09b2470a-6e8f-47e5-8acd-f013a1388df4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T21:00:03.034Z", + "completed":"2017-06-07T21:00:03.034Z", + "new_balance":"2355.33", + "value":"-6.53" + } + }, + { + "id":"64d7b775-0684-486c-a304-5e3885477a29", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T21:49:19.555Z", + "completed":"2017-06-07T21:49:19.555Z", + "new_balance":"2446.29", + "value":"90.96" + } + }, + { + "id":"652f58af-90d8-41a5-8ade-8c0518db6c9c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T07:03:40.726Z", + "completed":"2017-06-11T07:03:40.726Z", + "new_balance":"2440.81", + "value":"-5.48" + } + }, + { + "id":"0c51272c-b055-440b-a219-5862bbabb36b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T05:59:56.463Z", + "completed":"2017-06-14T05:59:56.463Z", + "new_balance":"2488.68", + "value":"47.87" + } + }, + { + "id":"dba72fbe-e501-4c3a-bac1-52c258680901", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T12:00:53.629Z", + "completed":"2017-06-14T12:00:53.629Z", + "new_balance":"2481.49", + "value":"-7.19" + } + }, + { + "id":"a423c08c-425e-4a97-88bc-61ec8a734438", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:32:50.646Z", + "completed":"2017-06-14T13:32:50.646Z", + "new_balance":"2488.33", + "value":"6.84" + } + }, + { + "id":"0be05256-35da-4aba-8c4c-c323e6397d85", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T07:42:44.563Z", + "completed":"2017-06-16T07:42:44.563Z", + "new_balance":"2438.11", + "value":"-50.22" + } + }, + { + "id":"051ef3a2-0867-4387-a036-5513577d9031", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T20:57:17.626Z", + "completed":"2017-06-16T20:57:17.626Z", + "new_balance":"2468.38", + "value":"30.27" + } + }, + { + "id":"ad9b4bc7-45c0-431a-8ff7-6d7e2f5dbdb7", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T10:43:24.028Z", + "completed":"2017-06-21T10:43:24.028Z", + "new_balance":"2399.30", + "value":"-69.08" + } + }, + { + "id":"c4bf59ee-7e1e-4983-beb2-a76fbfe2cf55", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T11:07:26.205Z", + "completed":"2017-06-21T11:07:26.205Z", + "new_balance":"2449.38", + "value":"50.08" + } + }, + { + "id":"c4742360-2259-42a1-8a0f-834bdd7f96c6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:57:21.592Z", + "completed":"2017-06-21T14:57:21.592Z", + "new_balance":"2610.19", + "value":"160.81" + } + }, + { + "id":"f2f26571-9178-4dba-8bda-b324827cbea4", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T18:19:47.549Z", + "completed":"2017-06-21T18:19:47.549Z", + "new_balance":"3019.01", + "value":"408.82" + } + }, + { + "id":"ab7ab48e-9d4e-4f95-94f1-f18d81fa1ba3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T01:49:13.125Z", + "completed":"2017-06-30T01:49:13.125Z", + "new_balance":"3049.28", + "value":"30.27" + } + }, + { + "id":"322139a2-45e6-4872-a0f8-3238ce53be0c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T20:13:06.808Z", + "completed":"2017-06-30T20:13:06.808Z", + "new_balance":"3070.17", + "value":"20.89" + } + }, + { + "id":"fb8da42e-7b7c-4510-a008-c58e2e5601c2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T02:14:32.171Z", + "completed":"2017-09-01T02:14:32.171Z", + "new_balance":"3013.36", + "value":"-56.81" + } + }, + { + "id":"1a2470ab-9cfa-4340-8c7a-67bd0938acc8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T02:26:20.988Z", + "completed":"2017-09-01T02:26:20.988Z", + "new_balance":"2991.00", + "value":"-22.36" + } + }, + { + "id":"679f2603-76cd-43ed-8758-f2d43c17545b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T04:00:41.766Z", + "completed":"2017-09-01T04:00:41.766Z", + "new_balance":"2967.76", + "value":"-23.24" + } + }, + { + "id":"d07bc9b3-5b8e-49f5-9d3b-a2b498a0bc3d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:52:09.077Z", + "completed":"2017-09-01T05:52:09.077Z", + "new_balance":"2954.66", + "value":"-13.10" + } + }, + { + "id":"59576ed4-b177-4197-94f9-e490660dfe1e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:14:11.363Z", + "completed":"2017-09-01T06:14:11.363Z", + "new_balance":"2677.18", + "value":"-277.48" + } + }, + { + "id":"001077f7-0801-4e63-a9a2-831ed5e9b014", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T19:39:53.224Z", + "completed":"2017-09-01T19:39:53.224Z", + "new_balance":"2380.58", + "value":"-296.60" + } + }, + { + "id":"87a6fe39-e048-4453-8be3-f51601cc94fa", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T09:24:09.805Z", + "completed":"2017-09-12T09:24:09.805Z", + "new_balance":"2376.40", + "value":"-4.18" + } + }, + { + "id":"6df00ee6-8f34-434b-8a31-69963993331d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T09:52:43.420Z", + "completed":"2017-09-12T09:52:43.420Z", + "new_balance":"2319.59", + "value":"-56.81" + } + }, + { + "id":"f81ed790-9faa-4b3c-828b-445d189a03bf", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T19:41:17.600Z", + "completed":"2017-09-12T19:41:17.600Z", + "new_balance":"2296.35", + "value":"-23.24" + } + }, + { + "id":"0a21c5ec-4b0a-4bdf-9d70-21be9609addb", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T21:25:01.542Z", + "completed":"2017-09-12T21:25:01.542Z", + "new_balance":"2291.20", + "value":"-5.15" + } + }, + { + "id":"dcd21f63-2b70-4e16-a099-d9d7ad73cb6c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T04:21:44.941Z", + "completed":"2017-09-15T04:21:44.941Z", + "new_balance":"2321.47", + "value":"30.27" + } + }, + { + "id":"374b955f-bee5-407d-9394-dacdfcbe8a3c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T10:32:00.455Z", + "completed":"2017-09-15T10:32:00.455Z", + "new_balance":"2482.28", + "value":"160.81" + } + }, + { + "id":"02c5cd92-b5ac-4e1a-96a5-e208b721a7d0", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T03:36:34.614Z", + "completed":"2017-09-17T03:36:34.614Z", + "new_balance":"2476.80", + "value":"-5.48" + } + }, + { + "id":"2ac983fd-be2d-4e83-b02e-f8aade05c90e", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T07:59:29.581Z", + "completed":"2017-09-17T07:59:29.581Z", + "new_balance":"2470.27", + "value":"-6.53" + } + }, + { + "id":"1ba70dd9-b988-44e2-9ac1-d1ad8606074a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T09:19:49.855Z", + "completed":"2017-09-17T09:19:49.855Z", + "new_balance":"2561.23", + "value":"90.96" + } + }, + { + "id":"f4c68da8-2a17-4a7a-a840-06b1c355844a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T14:37:54.411Z", + "completed":"2017-09-19T14:37:54.411Z", + "new_balance":"2609.10", + "value":"47.87" + } + }, + { + "id":"d7c482b6-5f6b-46df-a2d3-e7db508e6a80", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:33:33.277Z", + "completed":"2017-09-21T05:33:33.277Z", + "new_balance":"2615.94", + "value":"6.84" + } + }, + { + "id":"249681ae-229f-41de-9f47-20961cfa90e8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T07:16:47.781Z", + "completed":"2017-09-21T07:16:47.781Z", + "new_balance":"2608.75", + "value":"-7.19" + } + }, + { + "id":"a65bafdb-7ef2-47c6-b408-a07e01f11194", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T13:57:29.133Z", + "completed":"2017-09-24T13:57:29.133Z", + "new_balance":"2558.53", + "value":"-50.22" + } + }, + { + "id":"1898a0b0-096f-42a3-b1cf-c611f5540f16", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T21:40:16.842Z", + "completed":"2017-09-24T21:40:16.842Z", + "new_balance":"2588.80", + "value":"30.27" + } + }, + { + "id":"7e0ffadc-9335-4dcf-a167-218ec49eed69", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T07:10:44.448Z", + "completed":"2017-09-25T07:10:44.448Z", + "new_balance":"2519.72", + "value":"-69.08" + } + }, + { + "id":"e769ae3d-bf10-4824-8c46-765f534762b3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T09:24:38.931Z", + "completed":"2017-09-25T09:24:38.931Z", + "new_balance":"2569.80", + "value":"50.08" + } + }, + { + "id":"2de053e0-4494-42a2-ac15-c3d7b4ec8729", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T05:34:00.680Z", + "completed":"2017-09-28T05:34:00.680Z", + "new_balance":"2978.62", + "value":"408.82" + } + }, + { + "id":"a8f10ecd-5118-42f3-8d8d-42d64b2979d3", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T12:09:00.996Z", + "completed":"2017-09-28T12:09:00.996Z", + "new_balance":"3139.43", + "value":"160.81" + } + }, + { + "id":"23104ee5-bc31-4c4d-bbd0-05879378da57", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T05:16:47.222Z", + "completed":"2017-09-30T05:16:47.222Z", + "new_balance":"3160.32", + "value":"20.89" + } + }, + { + "id":"f54ed057-a4b3-4387-9213-2506b0079315", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T06:20:56.492Z", + "completed":"2017-09-30T06:20:56.492Z", + "new_balance":"3190.59", + "value":"30.27" + } + }, + { + "id":"23460593-d985-45ed-a81c-cde3e9a88c52", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T00:59:21.177Z", + "completed":"2017-12-01T00:59:21.177Z", + "new_balance":"3168.23", + "value":"-22.36" + } + }, + { + "id":"01f2613e-4e60-4788-a69d-170772c382c9", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T04:21:38.878Z", + "completed":"2017-12-01T04:21:38.878Z", + "new_balance":"3111.42", + "value":"-56.81" + } + }, + { + "id":"05471324-9b00-4ad6-a77a-7810a8a51767", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T04:48:54.124Z", + "completed":"2017-12-01T04:48:54.124Z", + "new_balance":"3088.18", + "value":"-23.24" + } + }, + { + "id":"91fe4e87-a3d6-49f3-b838-292d3a88b49a", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T06:38:12.251Z", + "completed":"2017-12-01T06:38:12.251Z", + "new_balance":"2810.70", + "value":"-277.48" + } + }, + { + "id":"e990eb37-e79c-497d-8ada-7ec4fcb79e35", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T13:40:44.810Z", + "completed":"2017-12-01T13:40:44.810Z", + "new_balance":"2514.10", + "value":"-296.60" + } + }, + { + "id":"cf99d92e-cd68-4729-acb3-564be576f618", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T17:07:18.385Z", + "completed":"2017-12-01T17:07:18.385Z", + "new_balance":"2501.00", + "value":"-13.10" + } + }, + { + "id":"bb67c4f7-93aa-4535-821b-0fcd683cec72", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T13:31:18.785Z", + "completed":"2017-12-04T13:31:18.785Z", + "new_balance":"2495.85", + "value":"-5.15" + } + }, + { + "id":"bc8327e5-55ae-44ce-b73a-3ca7c362d9b6", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T14:05:37.384Z", + "completed":"2017-12-04T14:05:37.384Z", + "new_balance":"2491.67", + "value":"-4.18" + } + }, + { + "id":"7f184e55-8927-46d4-a44d-be166da3a0b2", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T10:37:41.987Z", + "completed":"2017-12-05T10:37:41.987Z", + "new_balance":"2434.86", + "value":"-56.81" + } + }, + { + "id":"45adeb20-6906-4a57-82a8-610ffd577296", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T16:48:23.902Z", + "completed":"2017-12-05T16:48:23.902Z", + "new_balance":"2411.62", + "value":"-23.24" + } + }, + { + "id":"d094db36-1b8c-4837-8367-cc0fab92af15", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T06:00:00.601Z", + "completed":"2017-12-07T06:00:00.601Z", + "new_balance":"2572.43", + "value":"160.81" + } + }, + { + "id":"21a18efe-4bc9-42dc-b947-e7f061a11aac", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T16:41:15.217Z", + "completed":"2017-12-07T16:41:15.217Z", + "new_balance":"2602.70", + "value":"30.27" + } + }, + { + "id":"e8ec0efd-6733-4346-a9a7-d137e977085b", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T19:44:56.432Z", + "completed":"2017-12-07T19:44:56.432Z", + "new_balance":"2596.17", + "value":"-6.53" + } + }, + { + "id":"6aa89eaa-7417-47f4-b350-e50b62045875", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T23:41:08.062Z", + "completed":"2017-12-07T23:41:08.062Z", + "new_balance":"2687.13", + "value":"90.96" + } + }, + { + "id":"0d6822d8-a17e-42c2-b7c6-6d8391029d4d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T00:55:55.260Z", + "completed":"2017-12-11T00:55:55.260Z", + "new_balance":"2681.65", + "value":"-5.48" + } + }, + { + "id":"b5fdd14f-c970-4171-9d85-66fe8dc8b353", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T03:13:52.967Z", + "completed":"2017-12-14T03:13:52.967Z", + "new_balance":"2674.46", + "value":"-7.19" + } + }, + { + "id":"9db490b7-4c29-4a53-9391-57a7f4d402f5", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T07:49:01.484Z", + "completed":"2017-12-14T07:49:01.484Z", + "new_balance":"2681.30", + "value":"6.84" + } + }, + { + "id":"3361bfd0-c13b-4c2c-834e-f56bdd3be143", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T15:00:35.420Z", + "completed":"2017-12-14T15:00:35.420Z", + "new_balance":"2729.17", + "value":"47.87" + } + }, + { + "id":"a198a89b-b837-4ae1-b904-aeea2623f9ac", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T08:11:47.686Z", + "completed":"2017-12-16T08:11:47.686Z", + "new_balance":"2678.95", + "value":"-50.22" + } + }, + { + "id":"05fe3969-654b-442b-b95c-7b6900de381c", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T13:45:43.168Z", + "completed":"2017-12-16T13:45:43.168Z", + "new_balance":"2709.22", + "value":"30.27" + } + }, + { + "id":"b36bf282-de87-4579-ac25-2ec005b2d575", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T05:13:32.406Z", + "completed":"2017-12-21T05:13:32.406Z", + "new_balance":"2759.30", + "value":"50.08" + } + }, + { + "id":"a37758a7-643f-4f4b-a20b-730f5c3179f8", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T10:43:37.714Z", + "completed":"2017-12-21T10:43:37.714Z", + "new_balance":"2920.11", + "value":"160.81" + } + }, + { + "id":"8ea45ec7-81a7-49a9-aa9f-2e143324a29d", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T11:33:16.079Z", + "completed":"2017-12-21T11:33:16.079Z", + "new_balance":"3328.93", + "value":"408.82" + } + }, + { + "id":"b11e9923-657e-44cd-a7b5-d6017735a303", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T13:35:21.556Z", + "completed":"2017-12-21T13:35:21.556Z", + "new_balance":"3259.85", + "value":"-69.08" + } + }, + { + "id":"a0d90250-aa9e-4c8f-88d2-1719a3d37188", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T06:47:53.497Z", + "completed":"2017-12-30T06:47:53.497Z", + "new_balance":"3290.12", + "value":"30.27" + } + }, + { + "id":"1417c352-8e5a-4cd7-ab94-7898983b1b59", + "this_account":{ + "id":"e9b2be9f-719e-410a-8df2-7b5d3206f15c", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T23:01:27.626Z", + "completed":"2017-12-30T23:01:27.626Z", + "new_balance":"3311.01", + "value":"20.89" + } + }, + { + "id":"130fea5c-23c1-43fa-b874-f342ed72a8d4", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T01:29:41.860Z", + "completed":"2016-03-02T01:29:41.860Z", + "new_balance":"13246.16", + "value":"-28.87" + } + }, + { + "id":"00c62106-1988-4317-9c08-416fcbe7d28a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-02T07:49:40.922Z", + "completed":"2016-03-02T07:49:40.922Z", + "new_balance":"13127.84", + "value":"-118.32" + } + }, + { + "id":"dc088f02-3113-4e29-b9eb-6f930e678f1c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-03T10:57:18.765Z", + "completed":"2016-03-03T10:57:18.765Z", + "new_balance":"13120.65", + "value":"-7.19" + } + }, + { + "id":"035adaa8-4527-4683-a6ed-1c2f90b898aa", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-03T21:51:28.593Z", + "completed":"2016-03-03T21:51:28.593Z", + "new_balance":"12670.94", + "value":"-449.71" + } + }, + { + "id":"765c0a45-a847-4d4d-9389-3a7334b5e09b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-04T14:32:06.562Z", + "completed":"2016-03-04T14:32:06.562Z", + "new_balance":"12663.84", + "value":"-7.10" + } + }, + { + "id":"254f252a-6d3d-4dd7-a673-283fc806e968", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-04T16:44:21.939Z", + "completed":"2016-03-04T16:44:21.939Z", + "new_balance":"12631.63", + "value":"-32.21" + } + }, + { + "id":"0ff446a3-475d-499d-84c2-57fe5ec904e3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-03-07T06:48:24.113Z", + "completed":"2016-03-07T06:48:24.113Z", + "new_balance":"12626.48", + "value":"-5.15" + } + }, + { + "id":"f0493a2d-1303-48dd-99e6-7d3bde905116", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-03-09T02:06:12.330Z", + "completed":"2016-03-09T02:06:12.330Z", + "new_balance":"12508.16", + "value":"-118.32" + } + }, + { + "id":"a09380a8-5fb6-4800-8d04-9aad916be2e0", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-16T18:35:07.165Z", + "completed":"2016-03-16T18:35:07.165Z", + "new_balance":"12423.24", + "value":"-84.92" + } + }, + { + "id":"a192995b-a887-4810-82a3-ee74bf3f3906", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T11:35:39.302Z", + "completed":"2016-03-25T11:35:39.302Z", + "new_balance":"12338.32", + "value":"-84.92" + } + }, + { + "id":"cf56de2e-a6f0-4e3c-a674-e5cedca4cc9f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-03-30T21:42:04.641Z", + "completed":"2016-03-30T21:42:04.641Z", + "new_balance":"12060.84", + "value":"-277.48" + } + }, + { + "id":"d3a3d40f-5baa-4bdb-8011-eb66724e5eee", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T03:33:59.886Z", + "completed":"2016-06-07T03:33:59.886Z", + "new_balance":"11611.13", + "value":"-449.71" + } + }, + { + "id":"210b4af3-7309-48a3-8a4a-07e103d2401c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T06:19:58.389Z", + "completed":"2016-06-07T06:19:58.389Z", + "new_balance":"11582.26", + "value":"-28.87" + } + }, + { + "id":"1f86d92e-a651-409a-8264-8c91e18003e6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-07T13:10:19.318Z", + "completed":"2016-06-07T13:10:19.318Z", + "new_balance":"11463.94", + "value":"-118.32" + } + }, + { + "id":"ea1c75e8-7edd-45df-be5b-c8dd385f1b7b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-06-10T00:59:32.293Z", + "completed":"2016-06-10T00:59:32.293Z", + "new_balance":"11456.84", + "value":"-7.10" + } + }, + { + "id":"6da1a1da-0c77-474d-9bcb-e6f8193bed85", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-14T16:20:59.165Z", + "completed":"2016-06-14T16:20:59.165Z", + "new_balance":"11424.63", + "value":"-32.21" + } + }, + { + "id":"acf59d94-bc3c-4e58-b81e-647635ee1049", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-06-19T10:58:29.833Z", + "completed":"2016-06-19T10:58:29.833Z", + "new_balance":"11417.44", + "value":"-7.19" + } + }, + { + "id":"8cd6e793-1ca7-4fab-9d66-dca0b48a5922", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-06-19T20:54:11.398Z", + "completed":"2016-06-19T20:54:11.398Z", + "new_balance":"11412.29", + "value":"-5.15" + } + }, + { + "id":"21109553-8641-46df-ac25-c777cf6c3d2d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-06-20T12:21:53.679Z", + "completed":"2016-06-20T12:21:53.679Z", + "new_balance":"11293.97", + "value":"-118.32" + } + }, + { + "id":"93928678-e7c0-45f3-8096-4b27603b5296", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-28T01:15:57.581Z", + "completed":"2016-06-28T01:15:57.581Z", + "new_balance":"11209.05", + "value":"-84.92" + } + }, + { + "id":"02a1c2e8-e7a7-4206-b758-2ba52420c7c8", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-07-01T07:00:51.347Z", + "completed":"2016-07-01T07:00:51.347Z", + "new_balance":"10931.57", + "value":"-277.48" + } + }, + { + "id":"9745257f-4d8a-4458-abdb-8f549759f8c3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-07-01T07:12:16.933Z", + "completed":"2016-07-01T07:12:16.933Z", + "new_balance":"10846.65", + "value":"-84.92" + } + }, + { + "id":"d134ad59-3ae4-4570-8521-5ea60e35b18f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T14:40:14.119Z", + "completed":"2016-09-02T14:40:14.119Z", + "new_balance":"10817.78", + "value":"-28.87" + } + }, + { + "id":"e22f1d18-02b2-4cc8-b2a5-9ff8d0f918c2", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-02T20:59:59.695Z", + "completed":"2016-09-02T20:59:59.695Z", + "new_balance":"10699.46", + "value":"-118.32" + } + }, + { + "id":"fa54afc3-a93d-4dd0-820f-9ca8bde76cff", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-03T02:04:26.060Z", + "completed":"2016-09-03T02:04:26.060Z", + "new_balance":"10249.75", + "value":"-449.71" + } + }, + { + "id":"9d2442b0-a413-4a3a-8aa4-241c828ac3ec", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-03T11:07:24.372Z", + "completed":"2016-09-03T11:07:24.372Z", + "new_balance":"10242.56", + "value":"-7.19" + } + }, + { + "id":"c32a10c5-86e4-45c8-b9f8-484bd42f2e1c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-03T14:14:00.175Z", + "completed":"2016-09-03T14:14:00.175Z", + "new_balance":"10238.38", + "value":"-4.18" + } + }, + { + "id":"7e1b1d5e-3d8a-4a77-846e-d44274adb088", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-04T10:48:54.204Z", + "completed":"2016-09-04T10:48:54.204Z", + "new_balance":"10206.17", + "value":"-32.21" + } + }, + { + "id":"8e7d8db9-db3d-49ee-b58d-76b9fdced985", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-09-07T12:42:35.008Z", + "completed":"2016-09-07T12:42:35.008Z", + "new_balance":"10201.02", + "value":"-5.15" + } + }, + { + "id":"399093ef-91a4-4014-9f7c-1332cfdbec44", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-09-09T09:40:03.415Z", + "completed":"2016-09-09T09:40:03.415Z", + "new_balance":"10082.70", + "value":"-118.32" + } + }, + { + "id":"68690fa5-9bc4-41f5-8aac-da75bbdb614d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-16T11:54:09.205Z", + "completed":"2016-09-16T11:54:09.205Z", + "new_balance":"9997.78", + "value":"-84.92" + } + }, + { + "id":"c5cb9401-6b7a-4453-aeac-3115b790e3ad", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T06:10:20.077Z", + "completed":"2016-09-25T06:10:20.077Z", + "new_balance":"9912.86", + "value":"-84.92" + } + }, + { + "id":"a026a879-ceb0-48bf-89a4-71d82ab7cfce", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-09-30T12:59:36.159Z", + "completed":"2016-09-30T12:59:36.159Z", + "new_balance":"9635.38", + "value":"-277.48" + } + }, + { + "id":"1c0eb01f-d484-4852-ab9a-2996c6161fc9", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T14:45:30.299Z", + "completed":"2016-12-07T14:45:30.299Z", + "new_balance":"9606.51", + "value":"-28.87" + } + }, + { + "id":"1ac2738c-6e6d-4218-bf67-41e6cb9a05da", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T19:06:43.606Z", + "completed":"2016-12-07T19:06:43.606Z", + "new_balance":"9488.19", + "value":"-118.32" + } + }, + { + "id":"d0b94442-ef1c-4c60-be7d-f938f9a8d597", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-07T20:27:48.534Z", + "completed":"2016-12-07T20:27:48.534Z", + "new_balance":"9038.48", + "value":"-449.71" + } + }, + { + "id":"f2f7cd06-c723-4e60-b4d9-900ef824771d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-12-11T05:07:13.127Z", + "completed":"2016-12-11T05:07:13.127Z", + "new_balance":"9031.29", + "value":"-7.19" + } + }, + { + "id":"b2507e28-75b8-4241-b835-ae5a0032f6dc", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-12-11T10:28:04.282Z", + "completed":"2016-12-11T10:28:04.282Z", + "new_balance":"9024.19", + "value":"-7.10" + } + }, + { + "id":"cb1c5122-0e0f-46fc-80aa-6dbbb15dc269", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-14T20:30:37.915Z", + "completed":"2016-12-14T20:30:37.915Z", + "new_balance":"8991.98", + "value":"-32.21" + } + }, + { + "id":"05eb573f-a867-4bd4-911b-563e3da06840", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2016-12-20T17:50:24.609Z", + "completed":"2016-12-20T17:50:24.609Z", + "new_balance":"8986.83", + "value":"-5.15" + } + }, + { + "id":"f9ae8735-964e-482a-8e42-9ea9e2e930d9", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2016-12-22T02:17:05.226Z", + "completed":"2016-12-22T02:17:05.226Z", + "new_balance":"8868.51", + "value":"-118.32" + } + }, + { + "id":"1b6b03b4-51a8-44f1-800d-b9cc2b496d09", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-28T22:49:30.981Z", + "completed":"2016-12-28T22:49:30.981Z", + "new_balance":"8783.59", + "value":"-84.92" + } + }, + { + "id":"d7a6480e-4a99-47aa-a6b5-aec2b9142d39", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-31T03:27:04.315Z", + "completed":"2016-12-31T03:27:04.315Z", + "new_balance":"8698.67", + "value":"-84.92" + } + }, + { + "id":"6dcf9888-3e16-42e3-a506-650c6b17e489", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2016-12-31T16:26:37.047Z", + "completed":"2016-12-31T16:26:37.047Z", + "new_balance":"8421.19", + "value":"-277.48" + } + }, + { + "id":"0eadf9ba-6442-4868-a2d7-48d7c9dda964", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T03:08:06.458Z", + "completed":"2017-03-02T03:08:06.458Z", + "new_balance":"8302.87", + "value":"-118.32" + } + }, + { + "id":"fcb69983-19ec-46f7-a323-1842b640d97c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-02T21:02:04.845Z", + "completed":"2017-03-02T21:02:04.845Z", + "new_balance":"8274.00", + "value":"-28.87" + } + }, + { + "id":"549769fb-bd79-4747-ac43-74d1df197ec6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-03T09:44:09.954Z", + "completed":"2017-03-03T09:44:09.954Z", + "new_balance":"8266.81", + "value":"-7.19" + } + }, + { + "id":"cccdc725-1d65-4607-bbb8-50105b86eb01", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-03T13:27:18.488Z", + "completed":"2017-03-03T13:27:18.488Z", + "new_balance":"7817.10", + "value":"-449.71" + } + }, + { + "id":"f3b0d088-f01b-4dff-9bb8-2e6562308570", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-04T02:38:57.789Z", + "completed":"2017-03-04T02:38:57.789Z", + "new_balance":"7810.00", + "value":"-7.10" + } + }, + { + "id":"4a73236f-517f-45b9-bab2-aa60b03b3808", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-04T15:13:20.363Z", + "completed":"2017-03-04T15:13:20.363Z", + "new_balance":"7777.79", + "value":"-32.21" + } + }, + { + "id":"542d3a56-a358-40eb-a3b1-9a5c184e968b", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-03-07T14:53:51.887Z", + "completed":"2017-03-07T14:53:51.887Z", + "new_balance":"7772.64", + "value":"-5.15" + } + }, + { + "id":"a01636d8-dbe3-4abc-80f9-c34767290a8c", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-03-09T08:42:52.833Z", + "completed":"2017-03-09T08:42:52.833Z", + "new_balance":"7654.32", + "value":"-118.32" + } + }, + { + "id":"d9fd5089-0e61-4c3d-b804-a937933fb163", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-16T05:16:38.773Z", + "completed":"2017-03-16T05:16:38.773Z", + "new_balance":"7569.40", + "value":"-84.92" + } + }, + { + "id":"7a9e4197-29f7-42a9-9d9e-0b8de0e9d1c5", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T02:19:45.874Z", + "completed":"2017-03-25T02:19:45.874Z", + "new_balance":"7484.48", + "value":"-84.92" + } + }, + { + "id":"84b7769a-d346-4a6c-aa93-39633ba4b5cf", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-03-30T11:04:49.981Z", + "completed":"2017-03-30T11:04:49.981Z", + "new_balance":"7207.00", + "value":"-277.48" + } + }, + { + "id":"f0e98f0c-89a2-4f53-a1d1-08138bb6126e", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T01:38:20.562Z", + "completed":"2017-06-07T01:38:20.562Z", + "new_balance":"6757.29", + "value":"-449.71" + } + }, + { + "id":"186ff641-9f4d-489d-a464-7ed145ff5ca8", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T03:21:02.481Z", + "completed":"2017-06-07T03:21:02.481Z", + "new_balance":"6728.42", + "value":"-28.87" + } + }, + { + "id":"9b46df02-653e-4556-865d-3a09f2d2d631", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-07T16:17:25.163Z", + "completed":"2017-06-07T16:17:25.163Z", + "new_balance":"6610.10", + "value":"-118.32" + } + }, + { + "id":"ccacfe1a-55cf-4c12-94a5-28c51bf05071", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-06-10T02:55:32.159Z", + "completed":"2017-06-10T02:55:32.159Z", + "new_balance":"6603.00", + "value":"-7.10" + } + }, + { + "id":"ad5f6956-e0aa-4792-8b0a-80ff46226dbb", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-14T18:44:47.701Z", + "completed":"2017-06-14T18:44:47.701Z", + "new_balance":"6570.79", + "value":"-32.21" + } + }, + { + "id":"76520917-e7ec-4964-8f4c-a074aafbdf40", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-06-19T05:55:25.731Z", + "completed":"2017-06-19T05:55:25.731Z", + "new_balance":"6563.60", + "value":"-7.19" + } + }, + { + "id":"2d522376-8255-461d-bd0d-a7495d970a26", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-06-19T12:32:13.721Z", + "completed":"2017-06-19T12:32:13.721Z", + "new_balance":"6558.45", + "value":"-5.15" + } + }, + { + "id":"764e77fb-6945-48be-87dc-f729d5ddd050", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-06-20T01:21:34.050Z", + "completed":"2017-06-20T01:21:34.050Z", + "new_balance":"6440.13", + "value":"-118.32" + } + }, + { + "id":"28f02331-8086-47b7-817a-d83101bf1d59", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-28T19:04:58.415Z", + "completed":"2017-06-28T19:04:58.415Z", + "new_balance":"6355.21", + "value":"-84.92" + } + }, + { + "id":"7beeed55-f93e-4449-a5c0-8f0b2fbc4947", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-07-01T00:51:00.524Z", + "completed":"2017-07-01T00:51:00.524Z", + "new_balance":"6270.29", + "value":"-84.92" + } + }, + { + "id":"eed4917c-6edb-48b5-8a39-198fb70d656a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-07-01T11:02:52.226Z", + "completed":"2017-07-01T11:02:52.226Z", + "new_balance":"5992.81", + "value":"-277.48" + } + }, + { + "id":"a959aab4-f066-43d7-91e4-0a5d6de37363", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T05:39:26.582Z", + "completed":"2017-09-02T05:39:26.582Z", + "new_balance":"5874.49", + "value":"-118.32" + } + }, + { + "id":"994acd66-0a91-4df7-96e6-c73325897c9a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-02T19:30:53.198Z", + "completed":"2017-09-02T19:30:53.198Z", + "new_balance":"5845.62", + "value":"-28.87" + } + }, + { + "id":"8454d66d-24ae-4bf6-ab97-b9538813add6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-03T07:15:32.379Z", + "completed":"2017-09-03T07:15:32.379Z", + "new_balance":"5838.43", + "value":"-7.19" + } + }, + { + "id":"ba731d87-977f-4227-8db3-157d4b8a54bd", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-03T09:26:19.936Z", + "completed":"2017-09-03T09:26:19.936Z", + "new_balance":"5834.25", + "value":"-4.18" + } + }, + { + "id":"6adf6fcf-a417-4dd6-b04c-071826f17116", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-03T13:41:58.992Z", + "completed":"2017-09-03T13:41:58.992Z", + "new_balance":"5384.54", + "value":"-449.71" + } + }, + { + "id":"898eb380-3282-4c50-ab83-b0de8690f461", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-04T16:57:09.636Z", + "completed":"2017-09-04T16:57:09.636Z", + "new_balance":"5352.33", + "value":"-32.21" + } + }, + { + "id":"00af6f84-e32a-4f3c-a455-25ee1b37af22", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-09-07T06:32:45.058Z", + "completed":"2017-09-07T06:32:45.058Z", + "new_balance":"5347.18", + "value":"-5.15" + } + }, + { + "id":"3e8be691-62e9-4729-affd-1613dc084df4", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-09-09T19:54:14.165Z", + "completed":"2017-09-09T19:54:14.165Z", + "new_balance":"5228.86", + "value":"-118.32" + } + }, + { + "id":"fef6d839-3cf9-413e-90cf-3809be87efb6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-16T15:17:12.001Z", + "completed":"2017-09-16T15:17:12.001Z", + "new_balance":"5143.94", + "value":"-84.92" + } + }, + { + "id":"1550c4df-fc99-4111-8db1-0f6fe875f15d", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T22:23:23.167Z", + "completed":"2017-09-25T22:23:23.167Z", + "new_balance":"5059.02", + "value":"-84.92" + } + }, + { + "id":"d6ad5f52-4aca-46f5-9b0a-1cb02200d4d3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-09-30T04:28:15.913Z", + "completed":"2017-09-30T04:28:15.913Z", + "new_balance":"4781.54", + "value":"-277.48" + } + }, + { + "id":"676a8ad4-b07c-4f79-9b72-75d983cab600", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Kwok" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T08:58:05.613Z", + "completed":"2017-12-07T08:58:05.613Z", + "new_balance":"4663.22", + "value":"-118.32" + } + }, + { + "id":"3a28ce23-cacd-47d2-9ad8-927026f26da6", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Miss Lee" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T10:34:27.657Z", + "completed":"2017-12-07T10:34:27.657Z", + "new_balance":"4213.51", + "value":"-449.71" + } + }, + { + "id":"96012345-7682-4187-af0c-c0f9e34cb95f", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice Mr Fan" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-07T18:29:50.832Z", + "completed":"2017-12-07T18:29:50.832Z", + "new_balance":"4184.64", + "value":"-28.87" + } + }, + { + "id":"acc8c123-0e8e-4fa3-9c17-3835b8e86f16", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-12-11T00:59:55.999Z", + "completed":"2017-12-11T00:59:55.999Z", + "new_balance":"4177.54", + "value":"-7.10" + } + }, + { + "id":"e7ad1cb8-9250-47ac-bd56-411a4c78f1da", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Smartone" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-12-11T07:46:09.222Z", + "completed":"2017-12-11T07:46:09.222Z", + "new_balance":"4170.35", + "value":"-7.19" + } + }, + { + "id":"7e8a26b2-1415-4fbc-9951-fff90574f30a", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 76542 Mr Tin" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-14T23:02:55.035Z", + "completed":"2017-12-14T23:02:55.035Z", + "new_balance":"4138.14", + "value":"-32.21" + } + }, + { + "id":"a4878847-937b-468c-b72c-67198639dc48", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Speedway Diner" + }, + "details":{ + "type":"10218", + "description":"Resaurant", + "posted":"2017-12-20T03:51:58.901Z", + "completed":"2017-12-20T03:51:58.901Z", + "new_balance":"4132.99", + "value":"-5.15" + } + }, + { + "id":"1ec265ec-f185-4a4d-804a-cd30e015f2bb", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business insurance Ref FD1245", + "posted":"2017-12-22T16:02:27.793Z", + "completed":"2017-12-22T16:02:27.793Z", + "new_balance":"4014.67", + "value":"-118.32" + } + }, + { + "id":"ff601e97-141f-45b6-915f-34d6b3c7deb3", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 986 Mr Woo" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-28T01:47:07.178Z", + "completed":"2017-12-28T01:47:07.178Z", + "new_balance":"3929.75", + "value":"-84.92" + } + }, + { + "id":"ca9b7038-a90c-402a-afbe-55eb74db27c1", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary" + }, + "details":{ + "type":"10218", + "description":"Salary Ref ID34215", + "posted":"2017-12-31T08:38:16.827Z", + "completed":"2017-12-31T08:38:16.827Z", + "new_balance":"3652.27", + "value":"-277.48" + } + }, + { + "id":"c770d522-3543-4aa2-9272-cb9ffa964a52", + "this_account":{ + "id":"ea524d61-b799-4645-8873-6332cf71033e", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Paid Invoice 2297 Miss Wang" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-31T21:24:49.687Z", + "completed":"2017-12-31T21:24:49.687Z", + "new_balance":"3567.35", + "value":"-84.92" + } + }, + { + "id":"5354a641-2b86-4002-8215-cbedbab46adb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T01:13:22.710Z", + "completed":"2016-03-01T01:13:22.710Z", + "new_balance":"11776.36", + "value":"-317.21" + } + }, + { + "id":"28fdb4e1-ffaa-4cd5-86f0-34484238deeb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T02:35:37.064Z", + "completed":"2016-03-01T02:35:37.064Z", + "new_balance":"11044.51", + "value":"-731.85" + } + }, + { + "id":"6f1661e7-7860-4bdd-ad5e-4e9125eaf0b7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T05:57:10.518Z", + "completed":"2016-03-01T05:57:10.518Z", + "new_balance":"7350.74", + "value":"-3693.77" + } + }, + { + "id":"3ade835d-e31d-4783-8160-1100566398f5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T18:02:18.688Z", + "completed":"2016-03-01T18:02:18.688Z", + "new_balance":"7152.83", + "value":"-197.91" + } + }, + { + "id":"97718770-dbf0-4924-803a-52fd1e06fa83", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T23:21:50.369Z", + "completed":"2016-03-01T23:21:50.369Z", + "new_balance":"4521.62", + "value":"-2631.21" + } + }, + { + "id":"a3c7b6d2-5106-4b56-a3ca-d83c48fef4bb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:32:49.815Z", + "completed":"2016-03-01T23:32:49.815Z", + "new_balance":"4358.14", + "value":"-163.48" + } + }, + { + "id":"b1d8c3fd-4286-4ed4-84e7-8443582d326a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T03:22:50.535Z", + "completed":"2016-03-12T03:22:50.535Z", + "new_balance":"4040.93", + "value":"-317.21" + } + }, + { + "id":"26d5e771-40e9-4534-bf70-5871308ee4c0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T05:54:23.319Z", + "completed":"2016-03-12T05:54:23.319Z", + "new_balance":"3309.08", + "value":"-731.85" + } + }, + { + "id":"a564982f-c5fe-44d9-9f0f-8176bcc8b2b2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T12:36:58.440Z", + "completed":"2016-03-12T12:36:58.440Z", + "new_balance":"3255.90", + "value":"-53.18" + } + }, + { + "id":"b931b434-a159-4d4f-86ea-9f0bc27daa02", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T15:34:41.847Z", + "completed":"2016-03-12T15:34:41.847Z", + "new_balance":"3209.00", + "value":"-46.90" + } + }, + { + "id":"b6f8294d-a96d-4f9c-9d92-b22ac1854a88", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T12:56:21.401Z", + "completed":"2016-03-14T12:56:21.401Z", + "new_balance":"5100.32", + "value":"1891.32" + } + }, + { + "id":"9d96f29a-c19e-4428-a2fc-bc5773d8c584", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T13:51:35.234Z", + "completed":"2016-03-15T13:51:35.234Z", + "new_balance":"5327.71", + "value":"227.39" + } + }, + { + "id":"76e6726e-cd09-4cb8-90e5-9d1c56c2f85f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T23:35:36.412Z", + "completed":"2016-03-16T23:35:36.412Z", + "new_balance":"6228.69", + "value":"900.98" + } + }, + { + "id":"99c24ca2-c397-4c2a-8c26-522825863fd3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T01:13:34.136Z", + "completed":"2016-03-17T01:13:34.136Z", + "new_balance":"6177.59", + "value":"-51.10" + } + }, + { + "id":"bec49a2b-110d-4b79-87a3-479f236f33df", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:35:41.571Z", + "completed":"2016-03-17T12:35:41.571Z", + "new_balance":"6098.51", + "value":"-79.08" + } + }, + { + "id":"37e202c1-a2f0-48dc-9a0c-aeb2a2f539da", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T12:19:08.480Z", + "completed":"2016-03-19T12:19:08.480Z", + "new_balance":"6548.51", + "value":"450.00" + } + }, + { + "id":"78f1b18e-b7c6-405a-b494-f37c50082e8d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T06:59:17.817Z", + "completed":"2016-03-21T06:59:17.817Z", + "new_balance":"6609.76", + "value":"61.25" + } + }, + { + "id":"a8084b71-e896-4953-9cf0-d510d2989daa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T19:16:39.467Z", + "completed":"2016-03-21T19:16:39.467Z", + "new_balance":"6535.83", + "value":"-73.93" + } + }, + { + "id":"f2514e77-47fd-478b-ba9c-e1c9940dbc99", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T09:16:35.223Z", + "completed":"2016-03-24T09:16:35.223Z", + "new_balance":"6763.22", + "value":"227.39" + } + }, + { + "id":"6dff50ab-4230-4c4f-a989-4a0cc14c5b38", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T19:26:12.011Z", + "completed":"2016-03-24T19:26:12.011Z", + "new_balance":"6236.66", + "value":"-526.56" + } + }, + { + "id":"78144675-38f6-49ac-af5d-9b0dfaaf19e0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T02:12:03.707Z", + "completed":"2016-03-25T02:12:03.707Z", + "new_balance":"5569.51", + "value":"-667.15" + } + }, + { + "id":"f6f0db22-e457-4799-8732-8e8d6cad1d34", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T12:03:10.416Z", + "completed":"2016-03-25T12:03:10.416Z", + "new_balance":"6023.16", + "value":"453.65" + } + }, + { + "id":"a48aa454-6b62-49ff-ab0d-a461aad4e27c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T02:57:38.103Z", + "completed":"2016-03-28T02:57:38.103Z", + "new_balance":"7914.48", + "value":"1891.32" + } + }, + { + "id":"34724e40-592e-45aa-84ec-774c9acadddf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T21:29:03.823Z", + "completed":"2016-03-28T21:29:03.823Z", + "new_balance":"10997.35", + "value":"3082.87" + } + }, + { + "id":"5d70f0d4-b0b3-4ed0-82ed-cf935456d8f2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T05:55:26.107Z", + "completed":"2016-03-30T05:55:26.107Z", + "new_balance":"11224.74", + "value":"227.39" + } + }, + { + "id":"834ecc4a-e20e-4e02-9582-6fa61ce56f52", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T06:06:01.983Z", + "completed":"2016-03-30T06:06:01.983Z", + "new_balance":"11452.36", + "value":"227.62" + } + }, + { + "id":"410d3cd2-fbc7-4819-93eb-ba0cdd05a2ac", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T03:34:02.822Z", + "completed":"2016-06-01T03:34:02.822Z", + "new_balance":"8821.15", + "value":"-2631.21" + } + }, + { + "id":"6beb6bc0-c968-4d2d-a837-921701406f9c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T04:20:45.744Z", + "completed":"2016-06-01T04:20:45.744Z", + "new_balance":"8089.30", + "value":"-731.85" + } + }, + { + "id":"0bbcf3c9-5e18-4fb1-a5fb-c26d1a472514", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:24:03.642Z", + "completed":"2016-06-01T04:24:03.642Z", + "new_balance":"7925.82", + "value":"-163.48" + } + }, + { + "id":"95953295-5871-4737-abf1-ff74cdd5d12a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T06:14:56.756Z", + "completed":"2016-06-01T06:14:56.756Z", + "new_balance":"4232.05", + "value":"-3693.77" + } + }, + { + "id":"83277eda-2e61-4464-b596-72f813b9f300", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T11:20:44.394Z", + "completed":"2016-06-01T11:20:44.394Z", + "new_balance":"3914.84", + "value":"-317.21" + } + }, + { + "id":"a63bafeb-363d-4274-bb40-6bdf6c59fb1b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T11:25:43.068Z", + "completed":"2016-06-01T11:25:43.068Z", + "new_balance":"3716.93", + "value":"-197.91" + } + }, + { + "id":"1f2c96e2-ec5b-4855-a0e1-2dfaeb0f0ee2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T21:56:26.345Z", + "completed":"2016-06-04T21:56:26.345Z", + "new_balance":"3670.03", + "value":"-46.90" + } + }, + { + "id":"914756ae-334f-4d10-880c-df82e9b480a6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T23:38:09.746Z", + "completed":"2016-06-04T23:38:09.746Z", + "new_balance":"3616.85", + "value":"-53.18" + } + }, + { + "id":"0130854e-eb30-4d2a-b7f0-c65f804cb166", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T03:39:00.787Z", + "completed":"2016-06-05T03:39:00.787Z", + "new_balance":"3299.64", + "value":"-317.21" + } + }, + { + "id":"7adb6d06-b439-49c3-8bdc-5a431f795822", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T12:28:32.395Z", + "completed":"2016-06-05T12:28:32.395Z", + "new_balance":"2567.79", + "value":"-731.85" + } + }, + { + "id":"c175663d-51af-43d1-8a14-83a42f9b1ff3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T00:24:50.456Z", + "completed":"2016-06-07T00:24:50.456Z", + "new_balance":"4459.11", + "value":"1891.32" + } + }, + { + "id":"9628d0eb-89fb-4ed7-a96b-479dfd85954b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T10:55:41.529Z", + "completed":"2016-06-07T10:55:41.529Z", + "new_balance":"4408.01", + "value":"-51.10" + } + }, + { + "id":"7b10a834-968d-4f4e-8241-19806774d2ca", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T17:32:44.327Z", + "completed":"2016-06-07T17:32:44.327Z", + "new_balance":"5308.99", + "value":"900.98" + } + }, + { + "id":"e7db6d90-d285-468e-a06a-f0bc751fa92b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T23:45:23.256Z", + "completed":"2016-06-07T23:45:23.256Z", + "new_balance":"5536.38", + "value":"227.39" + } + }, + { + "id":"ef285570-a748-4fee-a5e3-f9f92add7c7e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T10:54:56.080Z", + "completed":"2016-06-11T10:54:56.080Z", + "new_balance":"5457.30", + "value":"-79.08" + } + }, + { + "id":"64e9995a-53ae-46fe-a59d-00f3abea309f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T09:05:37.998Z", + "completed":"2016-06-14T09:05:37.998Z", + "new_balance":"5907.30", + "value":"450.00" + } + }, + { + "id":"6b0ff083-ed1f-4e9e-bd54-982422cc5060", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T18:21:27.085Z", + "completed":"2016-06-14T18:21:27.085Z", + "new_balance":"5968.55", + "value":"61.25" + } + }, + { + "id":"3a126874-5f81-42c8-a02e-4c55eb96a541", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T21:09:15.720Z", + "completed":"2016-06-14T21:09:15.720Z", + "new_balance":"5894.62", + "value":"-73.93" + } + }, + { + "id":"4a797f4c-a71d-4739-bbeb-103e882078b4", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T11:10:28.307Z", + "completed":"2016-06-16T11:10:28.307Z", + "new_balance":"6122.01", + "value":"227.39" + } + }, + { + "id":"9cd15fbe-9c26-4a15-ad01-64e2230e611b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T17:34:29.399Z", + "completed":"2016-06-16T17:34:29.399Z", + "new_balance":"5595.45", + "value":"-526.56" + } + }, + { + "id":"b04a3fee-21be-4c09-8823-d37387955aaa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T06:15:16.828Z", + "completed":"2016-06-21T06:15:16.828Z", + "new_balance":"7486.77", + "value":"1891.32" + } + }, + { + "id":"789761c5-66fa-4ceb-83b9-d43a8ed31f27", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T07:50:46.112Z", + "completed":"2016-06-21T07:50:46.112Z", + "new_balance":"7940.42", + "value":"453.65" + } + }, + { + "id":"88b79c6c-2f1a-40aa-8039-9857b438c2e6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T10:46:18.518Z", + "completed":"2016-06-21T10:46:18.518Z", + "new_balance":"7273.27", + "value":"-667.15" + } + }, + { + "id":"68228091-617e-4080-a55e-38858064cbcf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T16:27:43.491Z", + "completed":"2016-06-21T16:27:43.491Z", + "new_balance":"10356.14", + "value":"3082.87" + } + }, + { + "id":"e0fd67e5-a084-4707-9a16-18b0f568d62a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T09:13:48.036Z", + "completed":"2016-06-30T09:13:48.036Z", + "new_balance":"10583.53", + "value":"227.39" + } + }, + { + "id":"1aa50a7e-9bb5-44ed-a0eb-f0fa3c86ee77", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T14:34:45.875Z", + "completed":"2016-06-30T14:34:45.875Z", + "new_balance":"10811.15", + "value":"227.62" + } + }, + { + "id":"0513a067-c316-4d15-8660-46586f0cf5d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T04:02:01.635Z", + "completed":"2016-09-01T04:02:01.635Z", + "new_balance":"10493.94", + "value":"-317.21" + } + }, + { + "id":"ba44cba2-e4e2-4f24-bc42-846eec310b11", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T05:44:19.792Z", + "completed":"2016-09-01T05:44:19.792Z", + "new_balance":"10296.03", + "value":"-197.91" + } + }, + { + "id":"c7380117-884c-405e-90f2-50f8d20b0a8a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T08:34:43.823Z", + "completed":"2016-09-01T08:34:43.823Z", + "new_balance":"6602.26", + "value":"-3693.77" + } + }, + { + "id":"c307a515-e234-4a29-be3e-acf171409a21", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T14:59:48.861Z", + "completed":"2016-09-01T14:59:48.861Z", + "new_balance":"6438.78", + "value":"-163.48" + } + }, + { + "id":"0cd73522-c98e-4b8e-9d1d-b0f65c2c1305", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T18:53:36.169Z", + "completed":"2016-09-01T18:53:36.169Z", + "new_balance":"3807.57", + "value":"-2631.21" + } + }, + { + "id":"a9921356-0aa6-4aa6-af3b-f99c7928fc2b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T23:11:48.149Z", + "completed":"2016-09-01T23:11:48.149Z", + "new_balance":"3075.72", + "value":"-731.85" + } + }, + { + "id":"d1002966-3eca-4b58-bc17-03cccc2189a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T06:00:44.355Z", + "completed":"2016-09-12T06:00:44.355Z", + "new_balance":"2758.51", + "value":"-317.21" + } + }, + { + "id":"d896373a-49dc-4660-85cf-c879134b84f7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T10:22:40.986Z", + "completed":"2016-09-12T10:22:40.986Z", + "new_balance":"2711.61", + "value":"-46.90" + } + }, + { + "id":"9f658551-47c4-4ec4-9130-e563b57964ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T11:46:06.142Z", + "completed":"2016-09-12T11:46:06.142Z", + "new_balance":"2658.43", + "value":"-53.18" + } + }, + { + "id":"f53e17e2-8d1c-41f2-bdc8-97520d007097", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T15:05:09.453Z", + "completed":"2016-09-12T15:05:09.453Z", + "new_balance":"1926.58", + "value":"-731.85" + } + }, + { + "id":"81876b4a-c969-465a-83fd-f09f793a0120", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T00:27:19.945Z", + "completed":"2016-09-15T00:27:19.945Z", + "new_balance":"2153.97", + "value":"227.39" + } + }, + { + "id":"ca5941f0-c8ab-48d4-9f91-6d7a9dac1ebe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T23:04:12.491Z", + "completed":"2016-09-15T23:04:12.491Z", + "new_balance":"4045.29", + "value":"1891.32" + } + }, + { + "id":"0b85e141-78ba-47a2-abaf-9cf53bdb1d57", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T09:00:49.404Z", + "completed":"2016-09-17T09:00:49.404Z", + "new_balance":"3994.19", + "value":"-51.10" + } + }, + { + "id":"4671117d-a456-4fa9-973d-580bdc77f392", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T17:06:46.255Z", + "completed":"2016-09-17T17:06:46.255Z", + "new_balance":"3915.11", + "value":"-79.08" + } + }, + { + "id":"12920d5a-e2c9-481b-aaad-8b1d987fe5c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T19:50:45.043Z", + "completed":"2016-09-17T19:50:45.043Z", + "new_balance":"4816.09", + "value":"900.98" + } + }, + { + "id":"0efaab58-b37f-4da5-a580-fd6d111164a8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T02:46:38.462Z", + "completed":"2016-09-19T02:46:38.462Z", + "new_balance":"5266.09", + "value":"450.00" + } + }, + { + "id":"2729bfb9-e5dc-489c-8dad-3db27bff9ff4", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T04:21:34.307Z", + "completed":"2016-09-21T04:21:34.307Z", + "new_balance":"5192.16", + "value":"-73.93" + } + }, + { + "id":"2b2bad17-3b96-4156-a999-6628e2b8dffe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T16:21:26.214Z", + "completed":"2016-09-21T16:21:26.214Z", + "new_balance":"5253.41", + "value":"61.25" + } + }, + { + "id":"f39f88c7-9b55-45ae-ac8c-6d7bf23dcf33", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T15:52:59.482Z", + "completed":"2016-09-24T15:52:59.482Z", + "new_balance":"4726.85", + "value":"-526.56" + } + }, + { + "id":"86a2a027-bc75-433d-9b43-a6838c62874f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T21:20:28.536Z", + "completed":"2016-09-24T21:20:28.536Z", + "new_balance":"4954.24", + "value":"227.39" + } + }, + { + "id":"5f86c202-c079-4284-96b8-d82fa5227ecf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T03:15:51.695Z", + "completed":"2016-09-25T03:15:51.695Z", + "new_balance":"4287.09", + "value":"-667.15" + } + }, + { + "id":"781db7c0-8b74-4078-8019-46fb2f4edb16", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T21:14:06.121Z", + "completed":"2016-09-25T21:14:06.121Z", + "new_balance":"4740.74", + "value":"453.65" + } + }, + { + "id":"f14b8f4d-2e6d-408c-8b84-63010f0c1bb0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T03:33:43.493Z", + "completed":"2016-09-28T03:33:43.493Z", + "new_balance":"6632.06", + "value":"1891.32" + } + }, + { + "id":"f8b4d125-3648-4a66-a206-d1fe8136c616", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T20:18:22.637Z", + "completed":"2016-09-28T20:18:22.637Z", + "new_balance":"9714.93", + "value":"3082.87" + } + }, + { + "id":"39a0d991-efdb-49c3-88ab-eb1a9516f28a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T11:58:22.035Z", + "completed":"2016-09-30T11:58:22.035Z", + "new_balance":"9942.32", + "value":"227.39" + } + }, + { + "id":"9b11a8a3-bf0b-47a1-b97f-e773ebe55ca1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:09:55.827Z", + "completed":"2016-09-30T14:09:55.827Z", + "new_balance":"10169.94", + "value":"227.62" + } + }, + { + "id":"98bf5815-bcd5-4cc7-8beb-1915234f3d33", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T00:24:06.326Z", + "completed":"2016-12-01T00:24:06.326Z", + "new_balance":"9438.09", + "value":"-731.85" + } + }, + { + "id":"b030d02e-1458-4f50-b313-e785e856d684", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T03:56:30.254Z", + "completed":"2016-12-01T03:56:30.254Z", + "new_balance":"5744.32", + "value":"-3693.77" + } + }, + { + "id":"7c1ab632-bfb4-4778-a2b3-cee74ae8e862", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T04:54:32.441Z", + "completed":"2016-12-01T04:54:32.441Z", + "new_balance":"5427.11", + "value":"-317.21" + } + }, + { + "id":"c3e7618c-e97e-47c5-9a4f-de2f85a01f44", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T13:48:01.874Z", + "completed":"2016-12-01T13:48:01.874Z", + "new_balance":"5263.63", + "value":"-163.48" + } + }, + { + "id":"8bb7c6d0-1e9d-44d3-ab93-2643b75591a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T19:38:01.429Z", + "completed":"2016-12-01T19:38:01.429Z", + "new_balance":"2632.42", + "value":"-2631.21" + } + }, + { + "id":"03ad8691-e641-46ce-8042-6cedc5c54865", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T22:15:52.581Z", + "completed":"2016-12-01T22:15:52.581Z", + "new_balance":"2434.51", + "value":"-197.91" + } + }, + { + "id":"e6fdb53e-0487-48bb-9bea-45f70b2fb3ff", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T14:03:21.939Z", + "completed":"2016-12-04T14:03:21.939Z", + "new_balance":"2381.33", + "value":"-53.18" + } + }, + { + "id":"ecab8755-52ab-4ad5-b0e8-260fb70db3d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T17:10:57.771Z", + "completed":"2016-12-04T17:10:57.771Z", + "new_balance":"2334.43", + "value":"-46.90" + } + }, + { + "id":"21b54905-7049-4e82-aa77-14bfe7b4e8fc", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T14:44:41.881Z", + "completed":"2016-12-05T14:44:41.881Z", + "new_balance":"2017.22", + "value":"-317.21" + } + }, + { + "id":"b84b5865-ba9e-4747-a835-9f7a9d8bb6a5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T19:42:23.306Z", + "completed":"2016-12-05T19:42:23.306Z", + "new_balance":"1285.37", + "value":"-731.85" + } + }, + { + "id":"f01df27f-ed95-4a23-a60a-d9debb8f6c44", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:36:54.097Z", + "completed":"2016-12-07T03:36:54.097Z", + "new_balance":"1234.27", + "value":"-51.10" + } + }, + { + "id":"9f8c3a0d-b85b-4c0e-bd13-a74b7a194123", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T10:56:07.215Z", + "completed":"2016-12-07T10:56:07.215Z", + "new_balance":"1461.66", + "value":"227.39" + } + }, + { + "id":"65c849da-30e1-49c6-90e8-fb590bf317c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T11:39:56.795Z", + "completed":"2016-12-07T11:39:56.795Z", + "new_balance":"3352.98", + "value":"1891.32" + } + }, + { + "id":"64e2e77c-dcb9-4a8b-b125-b52a9e182c62", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T17:31:09.987Z", + "completed":"2016-12-07T17:31:09.987Z", + "new_balance":"4253.96", + "value":"900.98" + } + }, + { + "id":"ab97b7e4-b49a-4bc2-ba5a-5d195fb6371a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T06:25:25.728Z", + "completed":"2016-12-11T06:25:25.728Z", + "new_balance":"4174.88", + "value":"-79.08" + } + }, + { + "id":"02d88f3c-245c-4e43-b7f5-2954d0085ba0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T00:22:04.783Z", + "completed":"2016-12-14T00:22:04.783Z", + "new_balance":"4236.13", + "value":"61.25" + } + }, + { + "id":"0f1bb741-c5b0-42ad-97ef-c9831540c87f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T01:01:37.201Z", + "completed":"2016-12-14T01:01:37.201Z", + "new_balance":"4162.20", + "value":"-73.93" + } + }, + { + "id":"73e8023f-d942-4ef2-933b-9a6c9bcfec48", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T06:41:09.577Z", + "completed":"2016-12-14T06:41:09.577Z", + "new_balance":"4612.20", + "value":"450.00" + } + }, + { + "id":"f6a692fc-d40b-4839-916e-9419dd35712a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T03:45:57.734Z", + "completed":"2016-12-16T03:45:57.734Z", + "new_balance":"4839.59", + "value":"227.39" + } + }, + { + "id":"12e09fe9-8f3a-4067-af66-9fe237790505", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T06:23:16.554Z", + "completed":"2016-12-16T06:23:16.554Z", + "new_balance":"4313.03", + "value":"-526.56" + } + }, + { + "id":"33c09be7-3507-40b5-998a-e4dc48ccf041", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T03:01:38.993Z", + "completed":"2016-12-21T03:01:38.993Z", + "new_balance":"4766.68", + "value":"453.65" + } + }, + { + "id":"d2a3c904-a258-4a05-ad22-a710e5eb596a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T03:45:38.884Z", + "completed":"2016-12-21T03:45:38.884Z", + "new_balance":"4099.53", + "value":"-667.15" + } + }, + { + "id":"1a5e089f-46ad-4f57-ae6b-aa9e2d60e260", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T19:05:30.558Z", + "completed":"2016-12-21T19:05:30.558Z", + "new_balance":"7182.40", + "value":"3082.87" + } + }, + { + "id":"a0143b6e-ec20-4e63-820c-afb189bf9127", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T21:20:45.548Z", + "completed":"2016-12-21T21:20:45.548Z", + "new_balance":"9073.72", + "value":"1891.32" + } + }, + { + "id":"d7c41bd8-a10e-4380-b018-e14274b5ab3f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T12:45:03.932Z", + "completed":"2016-12-30T12:45:03.932Z", + "new_balance":"9301.11", + "value":"227.39" + } + }, + { + "id":"3829ec4f-5fdb-4861-b242-fca58c226fba", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T13:11:04.138Z", + "completed":"2016-12-30T13:11:04.138Z", + "new_balance":"9528.73", + "value":"227.62" + } + }, + { + "id":"83167d85-4e7b-4da6-a7af-2057e49386d1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T02:08:14.852Z", + "completed":"2017-03-01T02:08:14.852Z", + "new_balance":"9365.25", + "value":"-163.48" + } + }, + { + "id":"b6b97ccb-ec0e-4a9b-bb1b-65f0bbfd8119", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T07:13:10.017Z", + "completed":"2017-03-01T07:13:10.017Z", + "new_balance":"8633.40", + "value":"-731.85" + } + }, + { + "id":"3166d488-3287-40b3-8b10-e1b486f5de21", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T08:04:41.159Z", + "completed":"2017-03-01T08:04:41.159Z", + "new_balance":"6002.19", + "value":"-2631.21" + } + }, + { + "id":"94ceec72-a57b-4c8f-a184-b56e145f57d6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T12:53:23.840Z", + "completed":"2017-03-01T12:53:23.840Z", + "new_balance":"2308.42", + "value":"-3693.77" + } + }, + { + "id":"ecbcfadf-3e4d-438c-9da2-84aeeea91e8f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T16:19:34.897Z", + "completed":"2017-03-01T16:19:34.897Z", + "new_balance":"2110.51", + "value":"-197.91" + } + }, + { + "id":"b3f5da6a-7f16-4931-a8ee-863feb370c88", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T17:15:37.491Z", + "completed":"2017-03-01T17:15:37.491Z", + "new_balance":"1793.30", + "value":"-317.21" + } + }, + { + "id":"d3991589-fcf5-46d6-a6d5-332515ccfd0a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T03:56:29.992Z", + "completed":"2017-03-12T03:56:29.992Z", + "new_balance":"1740.12", + "value":"-53.18" + } + }, + { + "id":"bea7b298-06c9-4716-9ced-47d274e4870b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T12:29:08.447Z", + "completed":"2017-03-12T12:29:08.447Z", + "new_balance":"1008.27", + "value":"-731.85" + } + }, + { + "id":"19ec8d92-3460-49d6-9968-081d661e7c84", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T12:31:13.990Z", + "completed":"2017-03-12T12:31:13.990Z", + "new_balance":"961.37", + "value":"-46.90" + } + }, + { + "id":"966d60d5-b647-4b86-bc02-a15415b6e674", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T16:38:51.106Z", + "completed":"2017-03-12T16:38:51.106Z", + "new_balance":"644.16", + "value":"-317.21" + } + }, + { + "id":"7769e8be-0b78-436a-8021-a293dbaf8571", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T22:05:39.701Z", + "completed":"2017-03-14T22:05:39.701Z", + "new_balance":"2535.48", + "value":"1891.32" + } + }, + { + "id":"0d7a0c3b-bd0f-4f9d-ae87-94e4b4399c03", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T20:10:41.579Z", + "completed":"2017-03-15T20:10:41.579Z", + "new_balance":"2762.87", + "value":"227.39" + } + }, + { + "id":"71975edd-da4e-4e3e-81a3-048d312b0200", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T14:24:44.873Z", + "completed":"2017-03-16T14:24:44.873Z", + "new_balance":"3663.85", + "value":"900.98" + } + }, + { + "id":"871d2d95-8e1f-4690-8159-2b8b37ffafb6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T01:20:04.153Z", + "completed":"2017-03-17T01:20:04.153Z", + "new_balance":"3612.75", + "value":"-51.10" + } + }, + { + "id":"83f59724-de9d-4ed6-b72a-b4d0466ddeb3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T07:10:16.654Z", + "completed":"2017-03-17T07:10:16.654Z", + "new_balance":"3533.67", + "value":"-79.08" + } + }, + { + "id":"49357121-0e5f-4a19-8129-b4ed7cad17d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:30:11.685Z", + "completed":"2017-03-19T15:30:11.685Z", + "new_balance":"3983.67", + "value":"450.00" + } + }, + { + "id":"8c600521-c797-4e4c-852f-838fc3dbd439", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T09:39:33.299Z", + "completed":"2017-03-21T09:39:33.299Z", + "new_balance":"4044.92", + "value":"61.25" + } + }, + { + "id":"2b9631a6-eccb-4386-b824-fb048ea77fe1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T23:09:20.292Z", + "completed":"2017-03-21T23:09:20.292Z", + "new_balance":"3970.99", + "value":"-73.93" + } + }, + { + "id":"81c0c28c-71a7-4996-a689-1a3de6103e0f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T07:37:57.091Z", + "completed":"2017-03-24T07:37:57.091Z", + "new_balance":"4198.38", + "value":"227.39" + } + }, + { + "id":"23d24e03-1834-4965-86df-3ee885ddc02c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T20:34:35.331Z", + "completed":"2017-03-24T20:34:35.331Z", + "new_balance":"3671.82", + "value":"-526.56" + } + }, + { + "id":"3384c941-abca-4f8c-844e-c215c2708d65", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T05:04:43.850Z", + "completed":"2017-03-25T05:04:43.850Z", + "new_balance":"3004.67", + "value":"-667.15" + } + }, + { + "id":"46de3daf-2044-4aea-8eb8-37320fd4ff47", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T06:45:05.300Z", + "completed":"2017-03-25T06:45:05.300Z", + "new_balance":"3458.32", + "value":"453.65" + } + }, + { + "id":"155ccc0b-6a99-4714-b012-4a8c8ae6db02", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T11:23:52.710Z", + "completed":"2017-03-28T11:23:52.710Z", + "new_balance":"5349.64", + "value":"1891.32" + } + }, + { + "id":"5f8206a1-814b-45d6-b668-4091ddec2af1", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T16:43:14.585Z", + "completed":"2017-03-28T16:43:14.585Z", + "new_balance":"8432.51", + "value":"3082.87" + } + }, + { + "id":"bea80e38-f7fd-49de-a27d-af88fee7373d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T04:05:29.269Z", + "completed":"2017-03-30T04:05:29.269Z", + "new_balance":"8659.90", + "value":"227.39" + } + }, + { + "id":"f4fb007c-c388-49e6-9f82-3fa2092b2e58", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T14:09:06.289Z", + "completed":"2017-03-30T14:09:06.289Z", + "new_balance":"8887.52", + "value":"227.62" + } + }, + { + "id":"7264dbb3-1602-484f-b94e-18d5ea4c9c76", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T07:04:18.927Z", + "completed":"2017-06-01T07:04:18.927Z", + "new_balance":"5193.75", + "value":"-3693.77" + } + }, + { + "id":"5ee0b533-469e-46c7-bb55-21cf9635d8d0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T09:00:39.524Z", + "completed":"2017-06-01T09:00:39.524Z", + "new_balance":"4995.84", + "value":"-197.91" + } + }, + { + "id":"443cf298-d068-4028-9aa3-b7166767e327", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T13:57:35.649Z", + "completed":"2017-06-01T13:57:35.649Z", + "new_balance":"4263.99", + "value":"-731.85" + } + }, + { + "id":"b102295e-467a-4ca5-a639-957bf1c3209e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T15:12:11.619Z", + "completed":"2017-06-01T15:12:11.619Z", + "new_balance":"1632.78", + "value":"-2631.21" + } + }, + { + "id":"65e02fd3-1eb2-44a9-aee7-3d0b6e14955f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T16:56:04.951Z", + "completed":"2017-06-01T16:56:04.951Z", + "new_balance":"1469.30", + "value":"-163.48" + } + }, + { + "id":"ef69cfbb-a3c2-46bb-a6a3-159ea8454cf6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T19:04:01.920Z", + "completed":"2017-06-01T19:04:01.920Z", + "new_balance":"1152.09", + "value":"-317.21" + } + }, + { + "id":"6b33fcdb-0396-4ebd-a106-2f08884614cb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T04:38:13.304Z", + "completed":"2017-06-04T04:38:13.304Z", + "new_balance":"1098.91", + "value":"-53.18" + } + }, + { + "id":"beeb994e-a487-4eba-b1c0-b2973d8aed6a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T11:57:49.333Z", + "completed":"2017-06-04T11:57:49.333Z", + "new_balance":"1052.01", + "value":"-46.90" + } + }, + { + "id":"e1d394cb-cc1c-4920-abc2-a0577d4feb6f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T04:22:02.870Z", + "completed":"2017-06-05T04:22:02.870Z", + "new_balance":"320.16", + "value":"-731.85" + } + }, + { + "id":"6241c100-697a-4652-93ba-9a0699e6eb00", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T09:00:24.424Z", + "completed":"2017-06-05T09:00:24.424Z", + "new_balance":"2.95", + "value":"-317.21" + } + }, + { + "id":"28d7566d-86e3-47d1-891d-f2d2916953bf", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T02:41:26.747Z", + "completed":"2017-06-07T02:41:26.747Z", + "new_balance":"903.93", + "value":"900.98" + } + }, + { + "id":"c0eeb1c1-d922-429e-9034-fdf38dc9b382", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:29:31.236Z", + "completed":"2017-06-07T08:29:31.236Z", + "new_balance":"2795.25", + "value":"1891.32" + } + }, + { + "id":"bb1022a1-e8ba-4296-9dfa-61cd8c27eef5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T09:33:04.537Z", + "completed":"2017-06-07T09:33:04.537Z", + "new_balance":"2744.15", + "value":"-51.10" + } + }, + { + "id":"425ae611-1b81-453a-8e78-15c3c7b61909", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T14:15:42.654Z", + "completed":"2017-06-07T14:15:42.654Z", + "new_balance":"2971.54", + "value":"227.39" + } + }, + { + "id":"9c5ae538-d642-4617-bb5e-d1be4a367a1f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T05:22:20.531Z", + "completed":"2017-06-11T05:22:20.531Z", + "new_balance":"2892.46", + "value":"-79.08" + } + }, + { + "id":"ac73600d-7766-4170-b7fd-c72b78e9baac", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T02:19:18.206Z", + "completed":"2017-06-14T02:19:18.206Z", + "new_balance":"2818.53", + "value":"-73.93" + } + }, + { + "id":"1e631341-a6d5-4cf2-8869-b1462b598c94", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T15:50:25.604Z", + "completed":"2017-06-14T15:50:25.604Z", + "new_balance":"3268.53", + "value":"450.00" + } + }, + { + "id":"9cd60a29-ba78-45ff-b02f-43b0866da9c9", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T22:43:50.243Z", + "completed":"2017-06-14T22:43:50.243Z", + "new_balance":"3329.78", + "value":"61.25" + } + }, + { + "id":"53891cd2-5c5e-4705-a3b3-8100bc10c7bb", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T18:49:57.174Z", + "completed":"2017-06-16T18:49:57.174Z", + "new_balance":"3557.17", + "value":"227.39" + } + }, + { + "id":"1c2ffd26-345c-4024-867d-c243ef7728c2", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T23:26:47.722Z", + "completed":"2017-06-16T23:26:47.722Z", + "new_balance":"3030.61", + "value":"-526.56" + } + }, + { + "id":"5bff8510-decd-4e9f-a4ec-1971ee13198b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T12:37:13.809Z", + "completed":"2017-06-21T12:37:13.809Z", + "new_balance":"2363.46", + "value":"-667.15" + } + }, + { + "id":"88bc0660-34b1-4a8f-8e60-7e84e5bccd10", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T14:21:25.871Z", + "completed":"2017-06-21T14:21:25.871Z", + "new_balance":"5446.33", + "value":"3082.87" + } + }, + { + "id":"c046b00b-732a-49dc-a5dd-9eaaaca24a6a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:17:01.708Z", + "completed":"2017-06-21T20:17:01.708Z", + "new_balance":"7337.65", + "value":"1891.32" + } + }, + { + "id":"d6e428ad-ea3a-41cf-8298-fbe851d52eb7", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T22:49:55.187Z", + "completed":"2017-06-21T22:49:55.187Z", + "new_balance":"7791.30", + "value":"453.65" + } + }, + { + "id":"cbc1d1b8-7081-44f9-9182-65ebc8dcf4ed", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T09:24:55.004Z", + "completed":"2017-06-30T09:24:55.004Z", + "new_balance":"8018.92", + "value":"227.62" + } + }, + { + "id":"bd93de9d-4357-4201-a8d3-242c54de9091", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T18:38:56.280Z", + "completed":"2017-06-30T18:38:56.280Z", + "new_balance":"8246.31", + "value":"227.39" + } + }, + { + "id":"0aa23e1a-e6c1-48a5-b409-4089cc143813", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T01:18:07.072Z", + "completed":"2017-09-01T01:18:07.072Z", + "new_balance":"5615.10", + "value":"-2631.21" + } + }, + { + "id":"67b3ece2-5345-4be5-a140-75407af2ae7b", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T13:52:36.247Z", + "completed":"2017-09-01T13:52:36.247Z", + "new_balance":"1921.33", + "value":"-3693.77" + } + }, + { + "id":"4ec259b3-630e-4831-8e8a-fcbefedbebb6", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T14:29:18.243Z", + "completed":"2017-09-01T14:29:18.243Z", + "new_balance":"1757.85", + "value":"-163.48" + } + }, + { + "id":"11525607-7741-4d87-a76f-c05814b26d9c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T17:50:01.828Z", + "completed":"2017-09-01T17:50:01.828Z", + "new_balance":"1559.94", + "value":"-197.91" + } + }, + { + "id":"b0470d69-3cd7-4e7c-a3e1-f5dc43ba5095", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T17:55:41.097Z", + "completed":"2017-09-01T17:55:41.097Z", + "new_balance":"1242.73", + "value":"-317.21" + } + }, + { + "id":"c6f6f044-535d-4bb0-b7c1-44f29a3667da", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T18:13:46.839Z", + "completed":"2017-09-01T18:13:46.839Z", + "new_balance":"510.88", + "value":"-731.85" + } + }, + { + "id":"6233dbe7-7169-46cf-b341-457d64e331fa", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T00:06:28.228Z", + "completed":"2017-09-12T00:06:28.228Z", + "new_balance":"463.98", + "value":"-46.90" + } + }, + { + "id":"9f164df2-8ca5-4a2d-80c5-1bdf9a683b65", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T14:05:07.662Z", + "completed":"2017-09-12T14:05:07.662Z", + "new_balance":"410.80", + "value":"-53.18" + } + }, + { + "id":"de8f912e-6f73-4298-971e-2f5d5b466788", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T17:12:02.960Z", + "completed":"2017-09-12T17:12:02.960Z", + "new_balance":"-321.05", + "value":"-731.85" + } + }, + { + "id":"88afa335-a756-44ea-a2a7-b5f5eda02989", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T22:40:09.744Z", + "completed":"2017-09-12T22:40:09.744Z", + "new_balance":"-638.26", + "value":"-317.21" + } + }, + { + "id":"743e1bab-3b23-4a3b-bb63-318640a401ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T09:19:35.484Z", + "completed":"2017-09-15T09:19:35.484Z", + "new_balance":"-410.87", + "value":"227.39" + } + }, + { + "id":"e2ef15fa-8d4a-4ce6-b6c9-11cb34a18e9e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T18:15:20.389Z", + "completed":"2017-09-15T18:15:20.389Z", + "new_balance":"1480.45", + "value":"1891.32" + } + }, + { + "id":"ebff3e1b-cbaa-48a4-83f7-6974ba8ca96c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T00:19:51.014Z", + "completed":"2017-09-17T00:19:51.014Z", + "new_balance":"1429.35", + "value":"-51.10" + } + }, + { + "id":"e87936b9-2ee4-4050-85fe-0c33e2b2fb30", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T06:02:53.526Z", + "completed":"2017-09-17T06:02:53.526Z", + "new_balance":"2330.33", + "value":"900.98" + } + }, + { + "id":"6f185857-9faa-4c74-a2a2-2d6b785d733d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T10:31:14.303Z", + "completed":"2017-09-17T10:31:14.303Z", + "new_balance":"2251.25", + "value":"-79.08" + } + }, + { + "id":"f8b2eb34-5fb3-45a3-9941-cf2d007fb44e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T17:04:24.722Z", + "completed":"2017-09-19T17:04:24.722Z", + "new_balance":"2701.25", + "value":"450.00" + } + }, + { + "id":"8a4223c3-fad2-4283-90b2-e86a5bdb1f78", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T05:40:19.690Z", + "completed":"2017-09-21T05:40:19.690Z", + "new_balance":"2762.50", + "value":"61.25" + } + }, + { + "id":"c87dc568-9398-4b4f-959c-28c35aede354", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T16:31:00.625Z", + "completed":"2017-09-21T16:31:00.625Z", + "new_balance":"2688.57", + "value":"-73.93" + } + }, + { + "id":"0004d953-7346-4c39-b038-1654e208c224", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T04:53:06.800Z", + "completed":"2017-09-24T04:53:06.800Z", + "new_balance":"2162.01", + "value":"-526.56" + } + }, + { + "id":"511972ec-71e6-4c4d-bd4b-bc3162f8c765", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T17:46:57.888Z", + "completed":"2017-09-24T17:46:57.888Z", + "new_balance":"2389.40", + "value":"227.39" + } + }, + { + "id":"82103a6d-32db-4196-84a1-edf8e4a101ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T23:13:18.945Z", + "completed":"2017-09-25T23:13:18.945Z", + "new_balance":"2843.05", + "value":"453.65" + } + }, + { + "id":"77e76069-5a4c-4972-a098-1c22c4b17f28", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T23:38:40.302Z", + "completed":"2017-09-25T23:38:40.302Z", + "new_balance":"2175.90", + "value":"-667.15" + } + }, + { + "id":"c213c575-b9cc-466e-89c0-1a7fd305d0ab", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T11:42:00.602Z", + "completed":"2017-09-28T11:42:00.602Z", + "new_balance":"4067.22", + "value":"1891.32" + } + }, + { + "id":"109b2cdd-e3d3-443c-af9b-03f37a6a0c0e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T21:06:02.849Z", + "completed":"2017-09-28T21:06:02.849Z", + "new_balance":"7150.09", + "value":"3082.87" + } + }, + { + "id":"4e41753c-55b1-48fe-9a5c-965e7db84601", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T06:49:56.888Z", + "completed":"2017-09-30T06:49:56.888Z", + "new_balance":"7377.71", + "value":"227.62" + } + }, + { + "id":"c0dae5c1-1fd1-4070-849e-8dacd9c69a78", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T10:15:58.424Z", + "completed":"2017-09-30T10:15:58.424Z", + "new_balance":"7605.10", + "value":"227.39" + } + }, + { + "id":"d5cabcea-8783-43f9-b87c-4fac110eee1e", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T00:47:18.312Z", + "completed":"2017-12-01T00:47:18.312Z", + "new_balance":"3911.33", + "value":"-3693.77" + } + }, + { + "id":"091cb9e7-93a7-42b0-8a1b-82bcc1ef9cfe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T00:59:19.303Z", + "completed":"2017-12-01T00:59:19.303Z", + "new_balance":"3179.48", + "value":"-731.85" + } + }, + { + "id":"59e33791-4f83-4d9a-b4bf-ed00d406ae15", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T01:13:36.035Z", + "completed":"2017-12-01T01:13:36.035Z", + "new_balance":"2981.57", + "value":"-197.91" + } + }, + { + "id":"e1d997bf-1bfe-4929-92ee-0d18f71002c3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T11:08:12.584Z", + "completed":"2017-12-01T11:08:12.584Z", + "new_balance":"2664.36", + "value":"-317.21" + } + }, + { + "id":"70bdf6d4-1b8b-458a-adb5-43a94aaa60f5", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T16:00:33.390Z", + "completed":"2017-12-01T16:00:33.390Z", + "new_balance":"2500.88", + "value":"-163.48" + } + }, + { + "id":"80a8c30c-e77d-49e6-bc38-ecea4a607348", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T20:36:06.592Z", + "completed":"2017-12-01T20:36:06.592Z", + "new_balance":"-130.33", + "value":"-2631.21" + } + }, + { + "id":"226756d6-75a3-4b3a-bd64-5fcc822d2a1c", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:48:47.278Z", + "completed":"2017-12-04T00:48:47.278Z", + "new_balance":"-177.23", + "value":"-46.90" + } + }, + { + "id":"1d9ce354-3baf-48d5-8954-e1a2b4224d8d", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T18:04:24.279Z", + "completed":"2017-12-04T18:04:24.279Z", + "new_balance":"-230.41", + "value":"-53.18" + } + }, + { + "id":"eed868be-ad53-46c3-95dd-770a459745d0", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T01:42:33.168Z", + "completed":"2017-12-05T01:42:33.168Z", + "new_balance":"-962.26", + "value":"-731.85" + } + }, + { + "id":"9434703a-6b62-4ac4-b0db-3acd81389e09", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T22:54:30.844Z", + "completed":"2017-12-05T22:54:30.844Z", + "new_balance":"-1279.47", + "value":"-317.21" + } + }, + { + "id":"1b43351f-c595-47b3-9875-6795e30546ef", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T00:52:11.644Z", + "completed":"2017-12-07T00:52:11.644Z", + "new_balance":"-1330.57", + "value":"-51.10" + } + }, + { + "id":"74a00a6e-c179-4fe4-bda3-59a9b6e3a55a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T07:57:31.850Z", + "completed":"2017-12-07T07:57:31.850Z", + "new_balance":"-429.59", + "value":"900.98" + } + }, + { + "id":"b7593763-ce98-4ba2-936e-3500d5710825", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T12:56:27.231Z", + "completed":"2017-12-07T12:56:27.231Z", + "new_balance":"1461.73", + "value":"1891.32" + } + }, + { + "id":"462e6782-d5a2-4302-bbee-20f52dc1a03a", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T12:58:25.728Z", + "completed":"2017-12-07T12:58:25.728Z", + "new_balance":"1689.12", + "value":"227.39" + } + }, + { + "id":"d214309a-6246-4a69-ae71-49dfb8a531d8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T12:44:39.839Z", + "completed":"2017-12-11T12:44:39.839Z", + "new_balance":"1610.04", + "value":"-79.08" + } + }, + { + "id":"f1239f51-f8fa-4464-acd6-ee4153105c37", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T06:29:06.819Z", + "completed":"2017-12-14T06:29:06.819Z", + "new_balance":"2060.04", + "value":"450.00" + } + }, + { + "id":"6b3d2270-1e4c-47b4-a44f-2e036d53f0fe", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:34:35.358Z", + "completed":"2017-12-14T19:34:35.358Z", + "new_balance":"1986.11", + "value":"-73.93" + } + }, + { + "id":"8d9b491a-1e4b-4e18-8fef-aec6e290e298", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:56:28.900Z", + "completed":"2017-12-14T19:56:28.900Z", + "new_balance":"2047.36", + "value":"61.25" + } + }, + { + "id":"5b792063-48f5-433b-bb96-99a4bc711c52", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T00:13:30.162Z", + "completed":"2017-12-16T00:13:30.162Z", + "new_balance":"1520.80", + "value":"-526.56" + } + }, + { + "id":"9f8bb80e-5bc2-48b2-a9da-e4ed44fa7486", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T18:57:51.005Z", + "completed":"2017-12-16T18:57:51.005Z", + "new_balance":"1748.19", + "value":"227.39" + } + }, + { + "id":"bc5815be-dad4-4687-9230-ac60d561ac79", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T01:44:06.257Z", + "completed":"2017-12-21T01:44:06.257Z", + "new_balance":"3639.51", + "value":"1891.32" + } + }, + { + "id":"0c708003-c597-43bf-83e1-86441efa4d27", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T02:21:40.920Z", + "completed":"2017-12-21T02:21:40.920Z", + "new_balance":"6722.38", + "value":"3082.87" + } + }, + { + "id":"cf92cdb4-8329-4298-b6af-817a1387d1a3", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T09:12:24.454Z", + "completed":"2017-12-21T09:12:24.454Z", + "new_balance":"7176.03", + "value":"453.65" + } + }, + { + "id":"3f8c9d0e-457e-4ec7-ac98-056e1fb9f79f", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T15:27:41.857Z", + "completed":"2017-12-21T15:27:41.857Z", + "new_balance":"6508.88", + "value":"-667.15" + } + }, + { + "id":"e8982d9e-8e4e-433d-83ef-918204e957a8", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T01:30:58.624Z", + "completed":"2017-12-30T01:30:58.624Z", + "new_balance":"6736.27", + "value":"227.39" + } + }, + { + "id":"00f0a936-ed04-4d3e-a963-bec3f7868d99", + "this_account":{ + "id":"eb8b08b7-158e-46e1-b308-fa8e5a758f89", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T17:08:32.824Z", + "completed":"2017-12-30T17:08:32.824Z", + "new_balance":"6963.89", + "value":"227.62" + } + }, + { + "id":"911e65d8-4121-47d5-800c-a610391f31ac", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T05:03:55.349Z", + "completed":"2016-03-01T05:03:55.349Z", + "new_balance":"3584.78", + "value":"-23.24" + } + }, + { + "id":"28b39016-b5ec-4c54-be6f-d8a26efc8fc9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T06:00:39.963Z", + "completed":"2016-03-01T06:00:39.963Z", + "new_balance":"3288.18", + "value":"-296.60" + } + }, + { + "id":"b88367aa-d7eb-400d-b97d-745ac65ced48", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T09:27:41.602Z", + "completed":"2016-03-01T09:27:41.602Z", + "new_balance":"3010.70", + "value":"-277.48" + } + }, + { + "id":"64aafcba-e180-4aa0-b86b-e85076f6f5fc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T10:03:53.640Z", + "completed":"2016-03-01T10:03:53.640Z", + "new_balance":"2953.89", + "value":"-56.81" + } + }, + { + "id":"8163e88a-140d-47aa-b76f-a3aa93d845f6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T17:33:46.258Z", + "completed":"2016-03-01T17:33:46.258Z", + "new_balance":"2931.53", + "value":"-22.36" + } + }, + { + "id":"25400222-9a50-45cf-914b-de4315c30c49", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T23:58:24.817Z", + "completed":"2016-03-01T23:58:24.817Z", + "new_balance":"2918.43", + "value":"-13.10" + } + }, + { + "id":"d1f0dc41-afb1-47af-852c-94222d7dd7df", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T04:32:25.162Z", + "completed":"2016-03-12T04:32:25.162Z", + "new_balance":"2914.25", + "value":"-4.18" + } + }, + { + "id":"24610f39-caab-4363-b516-10352b88e6f0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T15:39:46.706Z", + "completed":"2016-03-12T15:39:46.706Z", + "new_balance":"2909.10", + "value":"-5.15" + } + }, + { + "id":"56400769-bcbd-48dc-963b-1ee366edace4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T19:42:56.763Z", + "completed":"2016-03-12T19:42:56.763Z", + "new_balance":"2852.29", + "value":"-56.81" + } + }, + { + "id":"8e0cf3c5-ff15-4a8f-bb3c-e1cbfd5e4d7a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T20:07:25.713Z", + "completed":"2016-03-12T20:07:25.713Z", + "new_balance":"2829.05", + "value":"-23.24" + } + }, + { + "id":"3122b6c7-e104-4e20-baad-5ebeb2e87a95", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T05:56:21.801Z", + "completed":"2016-03-14T05:56:21.801Z", + "new_balance":"2989.86", + "value":"160.81" + } + }, + { + "id":"ade57b76-81b9-474f-8543-6203c95416dc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T22:01:19.304Z", + "completed":"2016-03-15T22:01:19.304Z", + "new_balance":"3020.13", + "value":"30.27" + } + }, + { + "id":"3a2f93cc-64b1-4694-8d0f-60e6e8a39375", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T14:34:02.664Z", + "completed":"2016-03-16T14:34:02.664Z", + "new_balance":"3111.09", + "value":"90.96" + } + }, + { + "id":"da7a9546-3c98-4b62-bf5c-b31ef000a526", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T04:30:01.010Z", + "completed":"2016-03-17T04:30:01.010Z", + "new_balance":"3104.56", + "value":"-6.53" + } + }, + { + "id":"94f9aa08-d061-4258-bc1a-9dd7f1f60a99", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T11:19:42.858Z", + "completed":"2016-03-17T11:19:42.858Z", + "new_balance":"3099.08", + "value":"-5.48" + } + }, + { + "id":"421c9050-176f-41c9-8b31-b402323dd675", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T20:04:41.358Z", + "completed":"2016-03-19T20:04:41.358Z", + "new_balance":"3146.95", + "value":"47.87" + } + }, + { + "id":"b5727137-cdf5-4200-b725-01125c813126", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T14:04:06.909Z", + "completed":"2016-03-21T14:04:06.909Z", + "new_balance":"3139.76", + "value":"-7.19" + } + }, + { + "id":"e26c2443-2ce9-4d4c-9957-30b571a615d3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T17:54:16.004Z", + "completed":"2016-03-21T17:54:16.004Z", + "new_balance":"3146.60", + "value":"6.84" + } + }, + { + "id":"61f86232-dc3d-4d89-9bff-4e14ab98d4d7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T02:00:01.008Z", + "completed":"2016-03-24T02:00:01.008Z", + "new_balance":"3176.87", + "value":"30.27" + } + }, + { + "id":"817e76cf-8ccd-44da-80f3-2777ac401cf8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T21:06:08.648Z", + "completed":"2016-03-24T21:06:08.648Z", + "new_balance":"3126.65", + "value":"-50.22" + } + }, + { + "id":"8e61ca16-e282-455e-ae08-f3ab9cb240d3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T21:32:20.498Z", + "completed":"2016-03-25T21:32:20.498Z", + "new_balance":"3176.73", + "value":"50.08" + } + }, + { + "id":"2a17c24e-b336-47da-8a00-656229659b85", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T21:57:31.824Z", + "completed":"2016-03-25T21:57:31.824Z", + "new_balance":"3107.65", + "value":"-69.08" + } + }, + { + "id":"fa8ba922-7434-4980-b69d-a119337f3a05", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T01:01:33.338Z", + "completed":"2016-03-28T01:01:33.338Z", + "new_balance":"3268.46", + "value":"160.81" + } + }, + { + "id":"42562d41-55e1-4649-b6e7-df4aa6b25dad", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T21:03:09.847Z", + "completed":"2016-03-28T21:03:09.847Z", + "new_balance":"3677.28", + "value":"408.82" + } + }, + { + "id":"aa8d6919-bad5-4093-a2db-bb8c1039cd66", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T14:54:47.085Z", + "completed":"2016-03-30T14:54:47.085Z", + "new_balance":"3707.55", + "value":"30.27" + } + }, + { + "id":"62ea02ea-104a-4214-8845-6ef9f1ad3a37", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T21:46:29.455Z", + "completed":"2016-03-30T21:46:29.455Z", + "new_balance":"3728.44", + "value":"20.89" + } + }, + { + "id":"c8fa2c82-98c0-4c84-9993-cbf78204131c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T01:33:04.310Z", + "completed":"2016-06-01T01:33:04.310Z", + "new_balance":"3450.96", + "value":"-277.48" + } + }, + { + "id":"bd086cf6-3b71-477a-a2a1-67a037c5d9aa", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T03:35:28.348Z", + "completed":"2016-06-01T03:35:28.348Z", + "new_balance":"3394.15", + "value":"-56.81" + } + }, + { + "id":"5bf9a6bd-93d2-4f21-9956-6901763c226b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T04:24:24.035Z", + "completed":"2016-06-01T04:24:24.035Z", + "new_balance":"3381.05", + "value":"-13.10" + } + }, + { + "id":"d92ed283-cd65-4c5b-9bc5-107adde60d8d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T12:43:39.734Z", + "completed":"2016-06-01T12:43:39.734Z", + "new_balance":"3084.45", + "value":"-296.60" + } + }, + { + "id":"e5f697f9-f151-49c0-aa56-f5627a7ed7d9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T19:32:13.448Z", + "completed":"2016-06-01T19:32:13.448Z", + "new_balance":"3061.21", + "value":"-23.24" + } + }, + { + "id":"f510f9a8-8f7d-4865-a9b4-44272c1378a9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T19:44:59.750Z", + "completed":"2016-06-01T19:44:59.750Z", + "new_balance":"3038.85", + "value":"-22.36" + } + }, + { + "id":"549c5a2b-8218-4f87-bb3e-433b48649da2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T09:03:50.924Z", + "completed":"2016-06-04T09:03:50.924Z", + "new_balance":"3033.70", + "value":"-5.15" + } + }, + { + "id":"ce01f4eb-cf18-4b10-b1b7-a517c3003b34", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T16:37:54.078Z", + "completed":"2016-06-04T16:37:54.078Z", + "new_balance":"3029.52", + "value":"-4.18" + } + }, + { + "id":"f9086fff-7432-4843-9643-660fe26a7a53", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T14:57:13.563Z", + "completed":"2016-06-05T14:57:13.563Z", + "new_balance":"2972.71", + "value":"-56.81" + } + }, + { + "id":"c008463f-ad47-4856-9b19-197f4690abd6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T20:28:07.424Z", + "completed":"2016-06-05T20:28:07.424Z", + "new_balance":"2949.47", + "value":"-23.24" + } + }, + { + "id":"cb26c2f5-ae82-4c43-85b2-a71dfc530d81", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T01:12:52.629Z", + "completed":"2016-06-07T01:12:52.629Z", + "new_balance":"2942.94", + "value":"-6.53" + } + }, + { + "id":"8b5d5c93-9204-4651-bc05-d8436737bb3b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T04:13:04.075Z", + "completed":"2016-06-07T04:13:04.075Z", + "new_balance":"2973.21", + "value":"30.27" + } + }, + { + "id":"7135508b-7cdd-47e2-90d2-9ab587be0f35", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T08:59:26.448Z", + "completed":"2016-06-07T08:59:26.448Z", + "new_balance":"3134.02", + "value":"160.81" + } + }, + { + "id":"e0f64087-b481-4fab-8e29-223f95ed17b3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T11:54:03.279Z", + "completed":"2016-06-07T11:54:03.279Z", + "new_balance":"3224.98", + "value":"90.96" + } + }, + { + "id":"be935c51-f4e7-49d0-9d68-937f7d7182a0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T04:24:49.557Z", + "completed":"2016-06-11T04:24:49.557Z", + "new_balance":"3219.50", + "value":"-5.48" + } + }, + { + "id":"308d9407-ca60-4175-bf31-3c91213e90df", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T05:02:49.914Z", + "completed":"2016-06-14T05:02:49.914Z", + "new_balance":"3226.34", + "value":"6.84" + } + }, + { + "id":"a8c8bbb6-369d-4540-9a43-c7a9955ec14a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T08:49:50.257Z", + "completed":"2016-06-14T08:49:50.257Z", + "new_balance":"3219.15", + "value":"-7.19" + } + }, + { + "id":"b5f3e08c-d3b3-4486-bde2-6e3bcdbd9fd9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T14:10:45.942Z", + "completed":"2016-06-14T14:10:45.942Z", + "new_balance":"3267.02", + "value":"47.87" + } + }, + { + "id":"fb6c9bbd-1472-460a-9267-3dfebf99770f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T16:34:01.294Z", + "completed":"2016-06-16T16:34:01.294Z", + "new_balance":"3216.80", + "value":"-50.22" + } + }, + { + "id":"3d175141-1554-4d9d-be65-06238f8eeff8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T17:15:15.817Z", + "completed":"2016-06-16T17:15:15.817Z", + "new_balance":"3247.07", + "value":"30.27" + } + }, + { + "id":"70f3865b-0423-4867-a338-ac1471cec42e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T00:14:24.776Z", + "completed":"2016-06-21T00:14:24.776Z", + "new_balance":"3297.15", + "value":"50.08" + } + }, + { + "id":"d7f478eb-c91e-4315-910e-95c88f646e0d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T15:42:07.476Z", + "completed":"2016-06-21T15:42:07.476Z", + "new_balance":"3228.07", + "value":"-69.08" + } + }, + { + "id":"5bb5a2c8-c7f9-4436-bb20-b1e9b1792540", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T20:50:31.911Z", + "completed":"2016-06-21T20:50:31.911Z", + "new_balance":"3388.88", + "value":"160.81" + } + }, + { + "id":"5070099c-1edd-48ec-9bdb-37982888a403", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T21:54:29.985Z", + "completed":"2016-06-21T21:54:29.985Z", + "new_balance":"3797.70", + "value":"408.82" + } + }, + { + "id":"407b34f0-e573-4110-a428-19d6f6442cf1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T13:05:50.821Z", + "completed":"2016-06-30T13:05:50.821Z", + "new_balance":"3818.59", + "value":"20.89" + } + }, + { + "id":"e7b11e58-db7a-4bc3-9299-d4cef61a8c9f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T16:58:12.197Z", + "completed":"2016-06-30T16:58:12.197Z", + "new_balance":"3848.86", + "value":"30.27" + } + }, + { + "id":"4ab48261-819d-4203-b33b-834ba48c859a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T04:45:45.396Z", + "completed":"2016-09-01T04:45:45.396Z", + "new_balance":"3825.62", + "value":"-23.24" + } + }, + { + "id":"6362b88a-0d4d-445d-b0b6-626de6b67b37", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T07:04:24.785Z", + "completed":"2016-09-01T07:04:24.785Z", + "new_balance":"3529.02", + "value":"-296.60" + } + }, + { + "id":"db9ae066-9639-489b-815f-c7602b0e911e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T15:50:58.697Z", + "completed":"2016-09-01T15:50:58.697Z", + "new_balance":"3515.92", + "value":"-13.10" + } + }, + { + "id":"5f896479-0d82-458b-a3c8-536848bb320e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T19:01:03.065Z", + "completed":"2016-09-01T19:01:03.065Z", + "new_balance":"3493.56", + "value":"-22.36" + } + }, + { + "id":"b271bb8d-dd52-49f8-a8bc-7ba9b745a64d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T20:52:20.641Z", + "completed":"2016-09-01T20:52:20.641Z", + "new_balance":"3436.75", + "value":"-56.81" + } + }, + { + "id":"fbc08c38-386f-46c5-81c3-97120e263786", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T22:47:15.690Z", + "completed":"2016-09-01T22:47:15.690Z", + "new_balance":"3159.27", + "value":"-277.48" + } + }, + { + "id":"2e08c1f3-3283-40b9-bd7d-6c11e543f5cf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T04:28:32.515Z", + "completed":"2016-09-12T04:28:32.515Z", + "new_balance":"3136.03", + "value":"-23.24" + } + }, + { + "id":"bc4d2e60-7988-457b-81a0-24d880fe1ec6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T11:51:49.480Z", + "completed":"2016-09-12T11:51:49.480Z", + "new_balance":"3130.88", + "value":"-5.15" + } + }, + { + "id":"ad464b30-7ff7-48f3-b73d-1ba3106a938f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T14:37:58.979Z", + "completed":"2016-09-12T14:37:58.979Z", + "new_balance":"3074.07", + "value":"-56.81" + } + }, + { + "id":"e1fd1be3-1072-4b84-8d1a-c62fdbd082a9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T20:32:26.274Z", + "completed":"2016-09-12T20:32:26.274Z", + "new_balance":"3069.89", + "value":"-4.18" + } + }, + { + "id":"7e8e9147-9d75-49cb-b79f-ff3bd2818b52", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T18:11:28.172Z", + "completed":"2016-09-15T18:11:28.172Z", + "new_balance":"3230.70", + "value":"160.81" + } + }, + { + "id":"25841487-d80f-4a68-a6e1-c7ca437583a3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T19:01:57.582Z", + "completed":"2016-09-15T19:01:57.582Z", + "new_balance":"3260.97", + "value":"30.27" + } + }, + { + "id":"909d8c14-a3b0-4aa0-a377-9bbc81b186d4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T03:09:53.658Z", + "completed":"2016-09-17T03:09:53.658Z", + "new_balance":"3255.49", + "value":"-5.48" + } + }, + { + "id":"ce096ad1-9331-4e5c-9d75-7af7f492d7b4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T14:52:36.546Z", + "completed":"2016-09-17T14:52:36.546Z", + "new_balance":"3248.96", + "value":"-6.53" + } + }, + { + "id":"c2d58ac1-e742-4527-8d48-d070288f93ff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T17:44:41.338Z", + "completed":"2016-09-17T17:44:41.338Z", + "new_balance":"3339.92", + "value":"90.96" + } + }, + { + "id":"0d9aaea4-3fdf-477d-9fd3-21617ddfb276", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T16:33:29.225Z", + "completed":"2016-09-19T16:33:29.225Z", + "new_balance":"3387.79", + "value":"47.87" + } + }, + { + "id":"32e2912e-c053-4fe1-976c-b65a7086b6d0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T13:01:44.192Z", + "completed":"2016-09-21T13:01:44.192Z", + "new_balance":"3394.63", + "value":"6.84" + } + }, + { + "id":"af5d9f7f-e7a8-473b-94b4-f63a06c53597", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T22:44:10.639Z", + "completed":"2016-09-21T22:44:10.639Z", + "new_balance":"3387.44", + "value":"-7.19" + } + }, + { + "id":"be28e7de-303e-472a-9421-527ba0fdbb48", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T00:16:09.329Z", + "completed":"2016-09-24T00:16:09.329Z", + "new_balance":"3417.71", + "value":"30.27" + } + }, + { + "id":"cf1af8a2-5cc5-4198-87dd-e6b76daad352", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T07:59:16.523Z", + "completed":"2016-09-24T07:59:16.523Z", + "new_balance":"3367.49", + "value":"-50.22" + } + }, + { + "id":"8c4b4399-6cbd-44ff-8de4-aa8cb5164d53", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T11:52:32.584Z", + "completed":"2016-09-25T11:52:32.584Z", + "new_balance":"3417.57", + "value":"50.08" + } + }, + { + "id":"2d4a908c-161f-4f12-acd9-b697b99e2bd8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T15:44:00.776Z", + "completed":"2016-09-25T15:44:00.776Z", + "new_balance":"3348.49", + "value":"-69.08" + } + }, + { + "id":"d97b27aa-7d0d-42f9-99e6-499a26cae59b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T04:30:13.584Z", + "completed":"2016-09-28T04:30:13.584Z", + "new_balance":"3757.31", + "value":"408.82" + } + }, + { + "id":"efc3ec33-fd26-49d9-b959-b2319e1d640e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T07:30:38.449Z", + "completed":"2016-09-28T07:30:38.449Z", + "new_balance":"3918.12", + "value":"160.81" + } + }, + { + "id":"bb37fc3d-f825-4f2b-8bd2-f2727da02dbd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T07:03:56.687Z", + "completed":"2016-09-30T07:03:56.687Z", + "new_balance":"3948.39", + "value":"30.27" + } + }, + { + "id":"91771df6-31fe-4944-b744-dd7f91517a69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T12:53:45.353Z", + "completed":"2016-09-30T12:53:45.353Z", + "new_balance":"3969.28", + "value":"20.89" + } + }, + { + "id":"82a25917-21fc-446a-bba3-9f764d68f75d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T02:40:16.755Z", + "completed":"2016-12-01T02:40:16.755Z", + "new_balance":"3946.04", + "value":"-23.24" + } + }, + { + "id":"6d5d7093-666f-49c1-bc2b-0071880cec63", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T05:12:03.698Z", + "completed":"2016-12-01T05:12:03.698Z", + "new_balance":"3923.68", + "value":"-22.36" + } + }, + { + "id":"47e01892-5f7d-4e01-b3b2-1f1f507e094e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T05:19:39.859Z", + "completed":"2016-12-01T05:19:39.859Z", + "new_balance":"3866.87", + "value":"-56.81" + } + }, + { + "id":"644f242e-d8f8-46a0-8beb-ff4b176f04c6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T05:48:30.195Z", + "completed":"2016-12-01T05:48:30.195Z", + "new_balance":"3853.77", + "value":"-13.10" + } + }, + { + "id":"2cc1d86c-81b4-4c61-b0e1-8c9900fd1f5e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T10:40:51.711Z", + "completed":"2016-12-01T10:40:51.711Z", + "new_balance":"3576.29", + "value":"-277.48" + } + }, + { + "id":"cb52875c-6e86-48cc-b3ce-7e97912b44bd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T11:13:22.631Z", + "completed":"2016-12-01T11:13:22.631Z", + "new_balance":"3279.69", + "value":"-296.60" + } + }, + { + "id":"187efff7-4cde-4438-98ee-e3a07e19dba1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T06:10:23.589Z", + "completed":"2016-12-04T06:10:23.589Z", + "new_balance":"3274.54", + "value":"-5.15" + } + }, + { + "id":"f1df9b3f-b50e-41b3-ac09-a247ffc8f47f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T21:06:13.549Z", + "completed":"2016-12-04T21:06:13.549Z", + "new_balance":"3270.36", + "value":"-4.18" + } + }, + { + "id":"d926ab1f-f0eb-4d4e-8143-f91cf58c3b23", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T06:01:14.600Z", + "completed":"2016-12-05T06:01:14.600Z", + "new_balance":"3213.55", + "value":"-56.81" + } + }, + { + "id":"39cfaaf2-4f9c-49ad-9ee3-89974e2e9f7e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T23:05:58.650Z", + "completed":"2016-12-05T23:05:58.650Z", + "new_balance":"3190.31", + "value":"-23.24" + } + }, + { + "id":"b79c901a-863f-497b-bdc6-13382280499c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T01:53:39.333Z", + "completed":"2016-12-07T01:53:39.333Z", + "new_balance":"3281.27", + "value":"90.96" + } + }, + { + "id":"04ac6020-f38d-436b-8f86-dca76085e5ec", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T10:32:06.531Z", + "completed":"2016-12-07T10:32:06.531Z", + "new_balance":"3311.54", + "value":"30.27" + } + }, + { + "id":"1df08eba-e406-4fad-8f51-c30916637c2f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T12:59:46.244Z", + "completed":"2016-12-07T12:59:46.244Z", + "new_balance":"3472.35", + "value":"160.81" + } + }, + { + "id":"c0ce0555-a3d5-4440-a6e4-f8849ec139d4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T13:58:40.415Z", + "completed":"2016-12-07T13:58:40.415Z", + "new_balance":"3465.82", + "value":"-6.53" + } + }, + { + "id":"d1d395ae-7b23-4234-9629-afc50c708fe2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T08:59:57.073Z", + "completed":"2016-12-11T08:59:57.073Z", + "new_balance":"3460.34", + "value":"-5.48" + } + }, + { + "id":"c70de2b0-decb-4572-b776-b7e05c16a949", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T05:46:53.119Z", + "completed":"2016-12-14T05:46:53.119Z", + "new_balance":"3508.21", + "value":"47.87" + } + }, + { + "id":"40a1e1af-a3bf-4328-9c60-8727d9aa2d7d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T18:11:24.104Z", + "completed":"2016-12-14T18:11:24.104Z", + "new_balance":"3515.05", + "value":"6.84" + } + }, + { + "id":"36130575-bd44-4a25-8a74-2119a1b5df18", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T21:32:34.571Z", + "completed":"2016-12-14T21:32:34.571Z", + "new_balance":"3507.86", + "value":"-7.19" + } + }, + { + "id":"ff714bb9-273b-47bf-9b1d-702b863844cd", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T12:30:33.311Z", + "completed":"2016-12-16T12:30:33.311Z", + "new_balance":"3457.64", + "value":"-50.22" + } + }, + { + "id":"120c99c2-51a7-4726-8959-18d832e6da69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T18:29:15.544Z", + "completed":"2016-12-16T18:29:15.544Z", + "new_balance":"3487.91", + "value":"30.27" + } + }, + { + "id":"da82badc-c058-4691-9105-8b7aea9c2cf1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T11:11:07.528Z", + "completed":"2016-12-21T11:11:07.528Z", + "new_balance":"3896.73", + "value":"408.82" + } + }, + { + "id":"b2857757-a759-4c45-a03a-f2503250f254", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T11:27:42.645Z", + "completed":"2016-12-21T11:27:42.645Z", + "new_balance":"3827.65", + "value":"-69.08" + } + }, + { + "id":"d0df0ce5-0b15-42e9-827d-dd33d3f70dec", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T14:09:37.962Z", + "completed":"2016-12-21T14:09:37.962Z", + "new_balance":"3988.46", + "value":"160.81" + } + }, + { + "id":"9f4c8bfd-747c-409b-8c3f-5d590451e3d6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T16:50:24.724Z", + "completed":"2016-12-21T16:50:24.724Z", + "new_balance":"4038.54", + "value":"50.08" + } + }, + { + "id":"4994f357-ad8b-477d-915d-aeae165fbf6a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T00:37:50.485Z", + "completed":"2016-12-30T00:37:50.485Z", + "new_balance":"4068.81", + "value":"30.27" + } + }, + { + "id":"27b64aa5-d65b-47b9-963e-e642d2984d93", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T20:57:38.791Z", + "completed":"2016-12-30T20:57:38.791Z", + "new_balance":"4089.70", + "value":"20.89" + } + }, + { + "id":"20919e88-a653-4daf-9134-1298c43478f0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T02:47:14.962Z", + "completed":"2017-03-01T02:47:14.962Z", + "new_balance":"4076.60", + "value":"-13.10" + } + }, + { + "id":"41c15799-3518-4e4e-9f88-2c07436b89d5", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T02:55:06.948Z", + "completed":"2017-03-01T02:55:06.948Z", + "new_balance":"3780.00", + "value":"-296.60" + } + }, + { + "id":"ff5847b3-d9d0-44ff-9e8e-3699c5ecddc9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T07:58:57.671Z", + "completed":"2017-03-01T07:58:57.671Z", + "new_balance":"3757.64", + "value":"-22.36" + } + }, + { + "id":"0f79d18b-9fdb-447f-a3f6-877abd8c8062", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T16:13:17.102Z", + "completed":"2017-03-01T16:13:17.102Z", + "new_balance":"3734.40", + "value":"-23.24" + } + }, + { + "id":"7c77149f-f148-459e-88c9-6bec9b1516d6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T17:02:45.414Z", + "completed":"2017-03-01T17:02:45.414Z", + "new_balance":"3677.59", + "value":"-56.81" + } + }, + { + "id":"9dc81083-1792-4822-be15-b4b2d3967a47", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T22:42:13.190Z", + "completed":"2017-03-01T22:42:13.190Z", + "new_balance":"3400.11", + "value":"-277.48" + } + }, + { + "id":"2e06b836-3447-49a1-88dc-a019a54eb8f6", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T01:31:04.812Z", + "completed":"2017-03-12T01:31:04.812Z", + "new_balance":"3376.87", + "value":"-23.24" + } + }, + { + "id":"76354d34-da4d-4cd0-ac43-15f341e5872f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T08:55:06.509Z", + "completed":"2017-03-12T08:55:06.509Z", + "new_balance":"3372.69", + "value":"-4.18" + } + }, + { + "id":"4d6a1172-f5e5-4088-bed7-996ade442ec4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T08:55:37.336Z", + "completed":"2017-03-12T08:55:37.336Z", + "new_balance":"3367.54", + "value":"-5.15" + } + }, + { + "id":"380ee848-2300-4399-82e4-401f77d3f3d7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T21:48:49.530Z", + "completed":"2017-03-12T21:48:49.530Z", + "new_balance":"3310.73", + "value":"-56.81" + } + }, + { + "id":"2494dcf1-2e68-44e7-a159-d6b53ebb6376", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T00:32:47.263Z", + "completed":"2017-03-14T00:32:47.263Z", + "new_balance":"3471.54", + "value":"160.81" + } + }, + { + "id":"7f01bbaa-f736-4827-b3dd-7aa05ed60ab8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T10:39:42.221Z", + "completed":"2017-03-15T10:39:42.221Z", + "new_balance":"3501.81", + "value":"30.27" + } + }, + { + "id":"b9bb3f0b-2113-4770-bed2-c64b73693679", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T21:19:44.503Z", + "completed":"2017-03-16T21:19:44.503Z", + "new_balance":"3592.77", + "value":"90.96" + } + }, + { + "id":"80aca2f2-7de9-455d-a8c8-159e1302a48c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T12:24:57.065Z", + "completed":"2017-03-17T12:24:57.065Z", + "new_balance":"3587.29", + "value":"-5.48" + } + }, + { + "id":"0e9ea020-6429-45a5-b1aa-d301b5885f30", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T18:43:14.258Z", + "completed":"2017-03-17T18:43:14.258Z", + "new_balance":"3580.76", + "value":"-6.53" + } + }, + { + "id":"c3f934fc-8c21-425f-9c17-ac08088dd2ca", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T19:20:21.433Z", + "completed":"2017-03-19T19:20:21.433Z", + "new_balance":"3628.63", + "value":"47.87" + } + }, + { + "id":"a1a3d2d0-dafd-4f96-95f8-eaee50ef0aee", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T02:07:19.772Z", + "completed":"2017-03-21T02:07:19.772Z", + "new_balance":"3621.44", + "value":"-7.19" + } + }, + { + "id":"4506ba4b-190f-42fc-b434-d410804e483f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T23:36:47.906Z", + "completed":"2017-03-21T23:36:47.906Z", + "new_balance":"3628.28", + "value":"6.84" + } + }, + { + "id":"bb2424e2-ff45-4114-b581-409f876f50d2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T18:56:22.947Z", + "completed":"2017-03-24T18:56:22.947Z", + "new_balance":"3578.06", + "value":"-50.22" + } + }, + { + "id":"2ce8c3f8-e39b-4189-a0fc-392f46923f8f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T21:55:08.442Z", + "completed":"2017-03-24T21:55:08.442Z", + "new_balance":"3608.33", + "value":"30.27" + } + }, + { + "id":"f1cb0edf-335d-4c0f-b9aa-c983d85949ed", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T14:15:11.789Z", + "completed":"2017-03-25T14:15:11.789Z", + "new_balance":"3658.41", + "value":"50.08" + } + }, + { + "id":"8606bd1d-9192-4c5b-afad-c7ed2733d3a7", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T17:36:47.146Z", + "completed":"2017-03-25T17:36:47.146Z", + "new_balance":"3589.33", + "value":"-69.08" + } + }, + { + "id":"3edee864-0191-4ebf-86aa-e94ea02ab454", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T00:08:30.096Z", + "completed":"2017-03-28T00:08:30.096Z", + "new_balance":"3998.15", + "value":"408.82" + } + }, + { + "id":"a612aecc-7410-425f-b291-af5cecb3729e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T00:12:57.306Z", + "completed":"2017-03-28T00:12:57.306Z", + "new_balance":"4158.96", + "value":"160.81" + } + }, + { + "id":"44e2e13e-e4e7-41bc-87b4-00fb8115d4f8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T04:12:49.370Z", + "completed":"2017-03-30T04:12:49.370Z", + "new_balance":"4179.85", + "value":"20.89" + } + }, + { + "id":"b2ade28a-33ee-457c-a91d-5a2f094eeb54", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T23:06:10.659Z", + "completed":"2017-03-30T23:06:10.659Z", + "new_balance":"4210.12", + "value":"30.27" + } + }, + { + "id":"312198e4-40af-4edf-965c-f4a4a819dd3b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T00:46:38.594Z", + "completed":"2017-06-01T00:46:38.594Z", + "new_balance":"4186.88", + "value":"-23.24" + } + }, + { + "id":"98d39e5a-5556-4a1c-8aa0-6d0eb92d884c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T01:05:59.909Z", + "completed":"2017-06-01T01:05:59.909Z", + "new_balance":"4164.52", + "value":"-22.36" + } + }, + { + "id":"af6333df-98ba-4e35-a131-a37dc9e2728c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T11:10:44.955Z", + "completed":"2017-06-01T11:10:44.955Z", + "new_balance":"4107.71", + "value":"-56.81" + } + }, + { + "id":"147ccfeb-e469-4edb-b179-f90a11cccd9d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T11:58:42.749Z", + "completed":"2017-06-01T11:58:42.749Z", + "new_balance":"3830.23", + "value":"-277.48" + } + }, + { + "id":"0bc36ca4-494a-4c10-83fc-d135102b838c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T15:16:30.728Z", + "completed":"2017-06-01T15:16:30.728Z", + "new_balance":"3533.63", + "value":"-296.60" + } + }, + { + "id":"5daa7394-f436-4e43-a087-a6bfe8672eff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T22:20:43.120Z", + "completed":"2017-06-01T22:20:43.120Z", + "new_balance":"3520.53", + "value":"-13.10" + } + }, + { + "id":"c647afdc-658c-4a4d-ad8e-eae466c511ab", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T07:58:23.851Z", + "completed":"2017-06-04T07:58:23.851Z", + "new_balance":"3515.38", + "value":"-5.15" + } + }, + { + "id":"e25aa3ea-7937-4a89-9d5f-95002f76c360", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T19:15:07.944Z", + "completed":"2017-06-04T19:15:07.944Z", + "new_balance":"3511.20", + "value":"-4.18" + } + }, + { + "id":"f25ed237-6dda-41f0-bd05-f9fa29a69811", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T00:04:11.205Z", + "completed":"2017-06-05T00:04:11.205Z", + "new_balance":"3487.96", + "value":"-23.24" + } + }, + { + "id":"db950591-736c-4163-86be-f33cc2894f44", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T19:09:48.160Z", + "completed":"2017-06-05T19:09:48.160Z", + "new_balance":"3431.15", + "value":"-56.81" + } + }, + { + "id":"ee2f41d9-2060-459d-8c46-98570b668a17", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T04:21:54.971Z", + "completed":"2017-06-07T04:21:54.971Z", + "new_balance":"3424.62", + "value":"-6.53" + } + }, + { + "id":"8eb25842-2f38-4dbb-b61b-0099d6709ba0", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T07:20:40.209Z", + "completed":"2017-06-07T07:20:40.209Z", + "new_balance":"3585.43", + "value":"160.81" + } + }, + { + "id":"821ce9be-c89d-440d-8533-d8c789e68f9f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T10:59:32.996Z", + "completed":"2017-06-07T10:59:32.996Z", + "new_balance":"3615.70", + "value":"30.27" + } + }, + { + "id":"a7ab0895-8efc-4bd9-b447-1e9b40180ecc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T21:16:32.808Z", + "completed":"2017-06-07T21:16:32.808Z", + "new_balance":"3706.66", + "value":"90.96" + } + }, + { + "id":"4d452d13-9f33-4ce3-93f1-6b55d60233bf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T03:49:07.541Z", + "completed":"2017-06-11T03:49:07.541Z", + "new_balance":"3701.18", + "value":"-5.48" + } + }, + { + "id":"1a4d5d41-5329-4893-9301-6d8cb58b9876", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T02:38:22.885Z", + "completed":"2017-06-14T02:38:22.885Z", + "new_balance":"3749.05", + "value":"47.87" + } + }, + { + "id":"b1efa001-8a09-4d3e-95fc-d50316a5a0f2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T03:58:06.781Z", + "completed":"2017-06-14T03:58:06.781Z", + "new_balance":"3741.86", + "value":"-7.19" + } + }, + { + "id":"872ef453-00dd-4a35-9a7d-229e75005766", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T11:52:53.458Z", + "completed":"2017-06-14T11:52:53.458Z", + "new_balance":"3748.70", + "value":"6.84" + } + }, + { + "id":"2ea88bab-5a38-468b-b653-0a020592a0e9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T01:08:57.053Z", + "completed":"2017-06-16T01:08:57.053Z", + "new_balance":"3698.48", + "value":"-50.22" + } + }, + { + "id":"713d47c2-cd09-44ab-9096-fb24c4630a65", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T06:57:48.229Z", + "completed":"2017-06-16T06:57:48.229Z", + "new_balance":"3728.75", + "value":"30.27" + } + }, + { + "id":"3d509602-4039-4404-b8d4-82415a31562c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T06:57:16.615Z", + "completed":"2017-06-21T06:57:16.615Z", + "new_balance":"4137.57", + "value":"408.82" + } + }, + { + "id":"aab569e1-2a0f-47e2-a33b-9d4c50d82815", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T08:29:02.237Z", + "completed":"2017-06-21T08:29:02.237Z", + "new_balance":"4068.49", + "value":"-69.08" + } + }, + { + "id":"d670553e-a1e0-43cc-820d-0fce50304f8c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T15:24:36.745Z", + "completed":"2017-06-21T15:24:36.745Z", + "new_balance":"4118.57", + "value":"50.08" + } + }, + { + "id":"7d7a1cb7-03e8-4fa5-9e09-a515f0a6dd03", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T16:45:22.281Z", + "completed":"2017-06-21T16:45:22.281Z", + "new_balance":"4279.38", + "value":"160.81" + } + }, + { + "id":"1bf56e29-7b7b-4001-b64d-f53654ef2033", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T03:45:44.680Z", + "completed":"2017-06-30T03:45:44.680Z", + "new_balance":"4309.65", + "value":"30.27" + } + }, + { + "id":"3c1ba272-495d-4a4e-9f01-8b491db96e69", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T17:49:58.379Z", + "completed":"2017-06-30T17:49:58.379Z", + "new_balance":"4330.54", + "value":"20.89" + } + }, + { + "id":"55d2deb0-0f19-4744-a62b-6b4842463e02", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T02:02:13.680Z", + "completed":"2017-09-01T02:02:13.680Z", + "new_balance":"4273.73", + "value":"-56.81" + } + }, + { + "id":"bbbeaa8c-56e5-46da-ae3d-b58a0e89ebff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Cable Tv" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:39:54.701Z", + "completed":"2017-09-01T05:39:54.701Z", + "new_balance":"4260.63", + "value":"-13.10" + } + }, + { + "id":"4b8af717-57dc-4f3c-aabe-0486698cf6aa", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T09:07:28.382Z", + "completed":"2017-09-01T09:07:28.382Z", + "new_balance":"4237.39", + "value":"-23.24" + } + }, + { + "id":"1b9c5c23-9df2-468a-9462-0ab920344e6a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T10:03:11.341Z", + "completed":"2017-09-01T10:03:11.341Z", + "new_balance":"4215.03", + "value":"-22.36" + } + }, + { + "id":"6385dec0-1b5a-44fd-8df4-d9573a35a7ff", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T10:52:27.567Z", + "completed":"2017-09-01T10:52:27.567Z", + "new_balance":"3918.43", + "value":"-296.60" + } + }, + { + "id":"0d6d040f-ac6b-4eda-982e-68f03c4192d1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T12:38:28.965Z", + "completed":"2017-09-01T12:38:28.965Z", + "new_balance":"3640.95", + "value":"-277.48" + } + }, + { + "id":"be04f2fb-9bd0-4e03-afab-a56322f1196b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T06:25:55.753Z", + "completed":"2017-09-12T06:25:55.753Z", + "new_balance":"3617.71", + "value":"-23.24" + } + }, + { + "id":"65b21a63-bbf7-4499-a566-b90843346aa4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T06:29:18.845Z", + "completed":"2017-09-12T06:29:18.845Z", + "new_balance":"3613.53", + "value":"-4.18" + } + }, + { + "id":"837ef0ef-c906-4ee9-8bc8-195b8dc5cf10", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T16:00:48.229Z", + "completed":"2017-09-12T16:00:48.229Z", + "new_balance":"3608.38", + "value":"-5.15" + } + }, + { + "id":"9a940a76-0fce-4fff-b3c0-bd3938fc2279", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T16:54:20.118Z", + "completed":"2017-09-12T16:54:20.118Z", + "new_balance":"3551.57", + "value":"-56.81" + } + }, + { + "id":"645db0ab-a7b1-4013-91dd-bbd967711992", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T13:25:56.308Z", + "completed":"2017-09-15T13:25:56.308Z", + "new_balance":"3712.38", + "value":"160.81" + } + }, + { + "id":"4c8da840-6dd5-480a-8dba-1c4211c41cdc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T15:09:54.759Z", + "completed":"2017-09-15T15:09:54.759Z", + "new_balance":"3742.65", + "value":"30.27" + } + }, + { + "id":"f3d37ea5-e1d7-4d83-a404-e1bdcf7d2808", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T06:44:55.709Z", + "completed":"2017-09-17T06:44:55.709Z", + "new_balance":"3737.17", + "value":"-5.48" + } + }, + { + "id":"2f74936b-0515-4325-af38-14e05ea4819d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T11:59:40.802Z", + "completed":"2017-09-17T11:59:40.802Z", + "new_balance":"3730.64", + "value":"-6.53" + } + }, + { + "id":"f7bc3de7-8553-47cd-b847-5ad22cfee57a", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T22:27:21.315Z", + "completed":"2017-09-17T22:27:21.315Z", + "new_balance":"3821.60", + "value":"90.96" + } + }, + { + "id":"7a6bca9e-9929-417c-b99c-faee3579904b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T21:20:17.170Z", + "completed":"2017-09-19T21:20:17.170Z", + "new_balance":"3869.47", + "value":"47.87" + } + }, + { + "id":"75f99a98-4a3e-4d57-8f67-1a07f2e61d4b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T10:51:11.454Z", + "completed":"2017-09-21T10:51:11.454Z", + "new_balance":"3862.28", + "value":"-7.19" + } + }, + { + "id":"2aca4185-63fd-4d91-81b1-8cc913ffb775", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T14:00:13.984Z", + "completed":"2017-09-21T14:00:13.984Z", + "new_balance":"3869.12", + "value":"6.84" + } + }, + { + "id":"bb3b5322-3ae8-4ed5-b6c9-2c79bab39a3f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T04:01:26.433Z", + "completed":"2017-09-24T04:01:26.433Z", + "new_balance":"3899.39", + "value":"30.27" + } + }, + { + "id":"7c3212b5-ffe9-4d92-bdad-5f377b077105", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T21:56:25.183Z", + "completed":"2017-09-24T21:56:25.183Z", + "new_balance":"3849.17", + "value":"-50.22" + } + }, + { + "id":"ed9486a6-fa7e-4065-9a73-b23882c65696", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T10:02:38.040Z", + "completed":"2017-09-25T10:02:38.040Z", + "new_balance":"3780.09", + "value":"-69.08" + } + }, + { + "id":"41094bc4-12cc-4987-9cc4-1be2e64ee51b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T10:26:17.366Z", + "completed":"2017-09-25T10:26:17.366Z", + "new_balance":"3830.17", + "value":"50.08" + } + }, + { + "id":"05185365-7a4e-48b7-9368-e0ae9ba686f5", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T05:59:27.393Z", + "completed":"2017-09-28T05:59:27.393Z", + "new_balance":"3990.98", + "value":"160.81" + } + }, + { + "id":"66cad4a9-b7a2-425d-9dbb-e9e63c712460", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T21:22:37.378Z", + "completed":"2017-09-28T21:22:37.378Z", + "new_balance":"4399.80", + "value":"408.82" + } + }, + { + "id":"ffe7ef8e-1553-4029-b0f3-8f7dd022b090", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T04:05:51.405Z", + "completed":"2017-09-30T04:05:51.405Z", + "new_balance":"4420.69", + "value":"20.89" + } + }, + { + "id":"e1d5a02a-ac22-4236-8b07-7d84ca5f3bfe", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T16:38:19.303Z", + "completed":"2017-09-30T16:38:19.303Z", + "new_balance":"4450.96", + "value":"30.27" + } + }, + { + "id":"daa9265d-a0b1-4cd0-ab8d-dbd3f36839f2", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"AIG" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T02:31:53.758Z", + "completed":"2017-12-01T02:31:53.758Z", + "new_balance":"4428.60", + "value":"-22.36" + } + }, + { + "id":"88b95b52-08c3-4915-bdfa-44815a5dc48e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mr R Bao" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T03:25:09.280Z", + "completed":"2017-12-01T03:25:09.280Z", + "new_balance":"4151.12", + "value":"-277.48" + } + }, + { + "id":"8be69934-d13c-4337-b107-75c359e99b88", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T07:30:43.920Z", + "completed":"2017-12-01T07:30:43.920Z", + "new_balance":"4094.31", + "value":"-56.81" + } + }, + { + "id":"bacc55e2-3ccb-441e-8716-ee26da5b47e1", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"CLP" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T10:32:15.482Z", + "completed":"2017-12-01T10:32:15.482Z", + "new_balance":"4071.07", + "value":"-23.24" + } + }, + { + "id":"9cfca4fd-41e8-4161-9cad-d0c393656aa3", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T13:24:10.336Z", + "completed":"2017-12-01T13:24:10.336Z", + "new_balance":"4057.97", + "value":"-13.10" + } + }, + { + "id":"b3afdf3d-c681-45a5-bd69-54cbb3be20dc", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Salary Mrs F Dunn" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T23:30:45.274Z", + "completed":"2017-12-01T23:30:45.274Z", + "new_balance":"3761.37", + "value":"-296.60" + } + }, + { + "id":"e3b99100-cebb-4c57-8423-2afda20ce4b4", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T02:16:39.643Z", + "completed":"2017-12-04T02:16:39.643Z", + "new_balance":"3756.22", + "value":"-5.15" + } + }, + { + "id":"a42e793a-8c7d-4351-9aa4-789501303a3e", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T10:03:19.929Z", + "completed":"2017-12-04T10:03:19.929Z", + "new_balance":"3752.04", + "value":"-4.18" + } + }, + { + "id":"b7e5ffbc-5f5e-4afc-b1f4-217c8cae15d9", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Peak Tram" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T04:27:30.203Z", + "completed":"2017-12-05T04:27:30.203Z", + "new_balance":"3728.80", + "value":"-23.24" + } + }, + { + "id":"711a75db-5206-42f0-9772-0f156cbb4314", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Mira" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T05:10:21.897Z", + "completed":"2017-12-05T05:10:21.897Z", + "new_balance":"3671.99", + "value":"-56.81" + } + }, + { + "id":"08f889c4-eff3-4d5f-af5a-f6ffa401e5ea", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Stately Home" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T01:02:00.220Z", + "completed":"2017-12-07T01:02:00.220Z", + "new_balance":"3762.95", + "value":"90.96" + } + }, + { + "id":"c13c6048-d9d0-49d3-99e3-a3ae6ebe6a42", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Liu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T10:41:05.087Z", + "completed":"2017-12-07T10:41:05.087Z", + "new_balance":"3923.76", + "value":"160.81" + } + }, + { + "id":"28c5e0de-05fb-43be-9351-588e2943a203", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Hong Kong Youth Hostels Association" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T14:14:30.816Z", + "completed":"2017-12-07T14:14:30.816Z", + "new_balance":"3954.03", + "value":"30.27" + } + }, + { + "id":"d9d792d3-d32f-40a5-9b0d-79fb31d4e997", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:47:26.632Z", + "completed":"2017-12-07T21:47:26.632Z", + "new_balance":"3947.50", + "value":"-6.53" + } + }, + { + "id":"6fd21a7b-c7e5-4cc7-84cb-2c25ae339fad", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"MTR" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T11:43:56.565Z", + "completed":"2017-12-11T11:43:56.565Z", + "new_balance":"3942.02", + "value":"-5.48" + } + }, + { + "id":"f931a4a7-ebbb-45b1-8bdf-42c35c5cea4b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation The Hong Kong Society for the Blind" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T10:12:45.170Z", + "completed":"2017-12-14T10:12:45.170Z", + "new_balance":"3989.89", + "value":"47.87" + } + }, + { + "id":"ab53fe31-33f4-41d3-bb9c-7bbfed569a5c", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Page Wu" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T13:05:01.407Z", + "completed":"2017-12-14T13:05:01.407Z", + "new_balance":"3996.73", + "value":"6.84" + } + }, + { + "id":"96b08944-b5cd-4da8-a808-31c8b79f9b33", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Sun Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T19:17:38.010Z", + "completed":"2017-12-14T19:17:38.010Z", + "new_balance":"3989.54", + "value":"-7.19" + } + }, + { + "id":"1b51996b-4ccc-47af-a392-e4f981eaf97d", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Staint Paul's Hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T02:04:21.791Z", + "completed":"2017-12-16T02:04:21.791Z", + "new_balance":"3939.32", + "value":"-50.22" + } + }, + { + "id":"9f47e559-fe6f-486a-b681-2a29c76b9e5b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Yang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T14:26:56.925Z", + "completed":"2017-12-16T14:26:56.925Z", + "new_balance":"3969.59", + "value":"30.27" + } + }, + { + "id":"fa46bca7-925e-4732-be51-a84ff99a213f", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Po Leung Kuk" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T04:15:41.450Z", + "completed":"2017-12-21T04:15:41.450Z", + "new_balance":"3900.51", + "value":"-69.08" + } + }, + { + "id":"3a55b564-b509-4d35-b612-7973ca4a3e6b", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Feeding Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T05:37:30.673Z", + "completed":"2017-12-21T05:37:30.673Z", + "new_balance":"3950.59", + "value":"50.08" + } + }, + { + "id":"ce770786-a5a7-4de8-a2c9-be19c4be3423", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Mr Huang" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T06:40:33.410Z", + "completed":"2017-12-21T06:40:33.410Z", + "new_balance":"4111.40", + "value":"160.81" + } + }, + { + "id":"b0bf4a7d-4007-4af9-921c-2ce3154379cf", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Honds on Hong Kong" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T22:58:05.224Z", + "completed":"2017-12-21T22:58:05.224Z", + "new_balance":"4520.22", + "value":"408.82" + } + }, + { + "id":"46f743a7-9c8e-45c2-85e8-862728532833", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Miss Xing" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T16:39:52.866Z", + "completed":"2017-12-30T16:39:52.866Z", + "new_balance":"4541.11", + "value":"20.89" + } + }, + { + "id":"270a89f2-8564-428c-946d-3c1c0c5837b8", + "this_account":{ + "id":"f751de0f-18dd-46dc-8b36-5f9664cf0431", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T21:04:02.455Z", + "completed":"2017-12-30T21:04:02.455Z", + "new_balance":"4571.38", + "value":"30.27" + } + }, + { + "id":"e313008a-aa7a-453a-9f8b-2732b515e614", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2016-03-01T01:33:54.831Z", + "completed":"2016-03-01T01:33:54.831Z", + "new_balance":"5641.40", + "value":"-4.61" + } + }, + { + "id":"340f649e-bd34-4ba8-af39-f5ef62d1cc46", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2016-03-02T12:43:49.457Z", + "completed":"2016-03-02T12:43:49.457Z", + "new_balance":"5634.21", + "value":"-7.19" + } + }, + { + "id":"42fea56d-ec86-427b-a036-84fa8d4754f5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2016-03-06T02:42:36.568Z", + "completed":"2016-03-06T02:42:36.568Z", + "new_balance":"5627.68", + "value":"-6.53" + } + }, + { + "id":"dac11108-995a-4d35-ba61-a4018e8940b1", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2016-03-11T11:45:06.851Z", + "completed":"2016-03-11T11:45:06.851Z", + "new_balance":"5627.03", + "value":"-0.65" + } + }, + { + "id":"d77607f6-4500-4f9d-b7f9-260b206179dd", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2016-03-13T14:16:34.494Z", + "completed":"2016-03-13T14:16:34.494Z", + "new_balance":"5626.69", + "value":"-0.34" + } + }, + { + "id":"3821cdc0-fc92-4542-98e7-30d5c6814904", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2016-03-16T13:19:21.453Z", + "completed":"2016-03-16T13:19:21.453Z", + "new_balance":"5603.45", + "value":"-23.24" + } + }, + { + "id":"4eced185-1224-4bce-bd2f-8640d4d3f6f4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2016-03-17T08:15:51.341Z", + "completed":"2016-03-17T08:15:51.341Z", + "new_balance":"5599.18", + "value":"-4.27" + } + }, + { + "id":"6a52cf54-528b-4d69-b16c-dd346ed232c3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2016-03-17T12:34:27.727Z", + "completed":"2016-03-17T12:34:27.727Z", + "new_balance":"5586.08", + "value":"-13.10" + } + }, + { + "id":"25942afe-0470-447d-a57a-6665427f3468", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2016-03-19T20:59:36.847Z", + "completed":"2016-03-19T20:59:36.847Z", + "new_balance":"5585.74", + "value":"-0.34" + } + }, + { + "id":"daf4fabc-c0f1-4ff7-ba87-c53e04367bdd", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2016-03-21T18:40:32.400Z", + "completed":"2016-03-21T18:40:32.400Z", + "new_balance":"5583.42", + "value":"-2.32" + } + }, + { + "id":"5797fa38-f54c-4388-9433-99ecf22573bf", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2016-03-23T11:25:43.758Z", + "completed":"2016-03-23T11:25:43.758Z", + "new_balance":"5578.81", + "value":"-4.61" + } + }, + { + "id":"3d8568fa-cd54-4763-b3f1-0f6efe873ad7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2016-03-24T09:09:48.516Z", + "completed":"2016-03-24T09:09:48.516Z", + "new_balance":"5578.16", + "value":"-0.65" + } + }, + { + "id":"686cdd29-0d8c-4d6f-8e80-6d1a22bd08cb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2016-03-26T23:42:47.916Z", + "completed":"2016-03-26T23:42:47.916Z", + "new_balance":"5577.01", + "value":"-1.15" + } + }, + { + "id":"cdad70e7-00e3-41ba-a329-a2e28038a185", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2016-04-01T10:14:16.486Z", + "completed":"2016-04-01T10:14:16.486Z", + "new_balance":"5575.86", + "value":"-1.15" + } + }, + { + "id":"e37950fa-00f3-4292-a8ae-5da50b8d1c00", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2016-06-01T16:16:18.461Z", + "completed":"2016-06-01T16:16:18.461Z", + "new_balance":"5571.25", + "value":"-4.61" + } + }, + { + "id":"20ba1f5f-b026-4c7d-8cd5-47e2f5df7178", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2016-06-04T16:08:38.327Z", + "completed":"2016-06-04T16:08:38.327Z", + "new_balance":"5564.06", + "value":"-7.19" + } + }, + { + "id":"ef512001-2cab-4bf3-948e-2b24cc2b1fd4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2016-06-19T21:53:02.940Z", + "completed":"2016-06-19T21:53:02.940Z", + "new_balance":"5557.53", + "value":"-6.53" + } + }, + { + "id":"a09b709c-5ce1-4914-b98c-030ccd185ee5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2016-06-21T12:46:03.025Z", + "completed":"2016-06-21T12:46:03.025Z", + "new_balance":"5556.88", + "value":"-0.65" + } + }, + { + "id":"12ea88d3-39ac-4a0b-b7db-ab8b2c434d96", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2016-06-24T22:43:17.850Z", + "completed":"2016-06-24T22:43:17.850Z", + "new_balance":"5556.54", + "value":"-0.34" + } + }, + { + "id":"2f9e38a2-a5ea-4813-9490-d05fb4985c0f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2016-06-28T06:59:04.862Z", + "completed":"2016-06-28T06:59:04.862Z", + "new_balance":"5552.27", + "value":"-4.27" + } + }, + { + "id":"878223a2-2d01-40ea-87d6-7fb64174cb19", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2016-06-28T08:04:36.888Z", + "completed":"2016-06-28T08:04:36.888Z", + "new_balance":"5539.17", + "value":"-13.10" + } + }, + { + "id":"669d7192-5e32-49ba-a7c0-bb54b93636d0", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2016-06-28T22:39:04.962Z", + "completed":"2016-06-28T22:39:04.962Z", + "new_balance":"5515.93", + "value":"-23.24" + } + }, + { + "id":"271cdf07-17d7-4edc-a416-d0fdc4f16eac", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2016-06-29T03:06:32.890Z", + "completed":"2016-06-29T03:06:32.890Z", + "new_balance":"5515.59", + "value":"-0.34" + } + }, + { + "id":"b58b5aca-140e-4fde-accc-c7d98ca17511", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2016-06-30T09:35:04.349Z", + "completed":"2016-06-30T09:35:04.349Z", + "new_balance":"5510.98", + "value":"-4.61" + } + }, + { + "id":"517fce1b-da0b-41bc-8b7f-ec4450621e07", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2016-06-30T12:39:27.515Z", + "completed":"2016-06-30T12:39:27.515Z", + "new_balance":"5508.66", + "value":"-2.32" + } + }, + { + "id":"6d7da8f5-aec9-4e60-ac33-b5a14cb252d5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2016-06-30T22:26:41.739Z", + "completed":"2016-06-30T22:26:41.739Z", + "new_balance":"5508.01", + "value":"-0.65" + } + }, + { + "id":"56e768fc-260e-4d08-a6b6-990287531c8b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2016-09-01T01:23:17.359Z", + "completed":"2016-09-01T01:23:17.359Z", + "new_balance":"5506.16", + "value":"-1.85" + } + }, + { + "id":"deb3410f-a8dd-412d-a1fe-f54856d8ef3a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2016-09-02T12:14:34.144Z", + "completed":"2016-09-02T12:14:34.144Z", + "new_balance":"5498.97", + "value":"-7.19" + } + }, + { + "id":"e7f9730a-d5a5-4f42-b2b4-61b86502328c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2016-09-07T07:06:03.179Z", + "completed":"2016-09-07T07:06:03.179Z", + "new_balance":"5492.44", + "value":"-6.53" + } + }, + { + "id":"8ee7545f-09ac-498b-8fd9-42f8b1bef19f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2016-09-11T07:23:03.727Z", + "completed":"2016-09-11T07:23:03.727Z", + "new_balance":"5491.79", + "value":"-0.65" + } + }, + { + "id":"ea25ac49-d516-4314-ac5f-e3c842c84906", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2016-09-15T01:33:46.175Z", + "completed":"2016-09-15T01:33:46.175Z", + "new_balance":"5490.39", + "value":"-1.40" + } + }, + { + "id":"a803dc26-8caf-42b0-ae97-9c571456330e", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2016-09-17T01:46:05.524Z", + "completed":"2016-09-17T01:46:05.524Z", + "new_balance":"5467.15", + "value":"-23.24" + } + }, + { + "id":"b214d44b-810b-4d93-85db-22127dd774df", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2016-09-17T11:14:52.479Z", + "completed":"2016-09-17T11:14:52.479Z", + "new_balance":"5462.88", + "value":"-4.27" + } + }, + { + "id":"f41eb145-587c-407b-b0d5-134e52fbe328", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2016-09-17T23:19:29.393Z", + "completed":"2016-09-17T23:19:29.393Z", + "new_balance":"5449.78", + "value":"-13.10" + } + }, + { + "id":"d4ef14e3-1afb-4838-b19d-88cb0aaa3de9", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2016-09-19T13:53:30.082Z", + "completed":"2016-09-19T13:53:30.082Z", + "new_balance":"5449.44", + "value":"-0.34" + } + }, + { + "id":"8636610c-1bb7-45bb-9e2a-2664b970da1d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2016-09-21T23:53:32.419Z", + "completed":"2016-09-21T23:53:32.419Z", + "new_balance":"5447.12", + "value":"-2.32" + } + }, + { + "id":"17e52cf4-6ad4-408a-92dd-5d733e97808a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2016-09-23T22:14:31.205Z", + "completed":"2016-09-23T22:14:31.205Z", + "new_balance":"5442.51", + "value":"-4.61" + } + }, + { + "id":"43f62060-d935-4926-b383-c224be105337", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2016-09-24T04:34:45.488Z", + "completed":"2016-09-24T04:34:45.488Z", + "new_balance":"5441.86", + "value":"-0.65" + } + }, + { + "id":"424af69f-3a78-4663-9da4-65f5d2578e50", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2016-09-27T01:40:26.738Z", + "completed":"2016-09-27T01:40:26.738Z", + "new_balance":"5440.71", + "value":"-1.15" + } + }, + { + "id":"39da9b74-1cbd-43e2-b5cc-5855be5c6205", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2016-10-01T19:56:35.269Z", + "completed":"2016-10-01T19:56:35.269Z", + "new_balance":"5439.56", + "value":"-1.15" + } + }, + { + "id":"e24ebeea-c6e4-46b4-9a9f-f3599b850c5a", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2016-12-01T02:40:24.410Z", + "completed":"2016-12-01T02:40:24.410Z", + "new_balance":"5434.95", + "value":"-4.61" + } + }, + { + "id":"cf897364-338f-41c7-881c-a765ea911344", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2016-12-04T03:29:45.039Z", + "completed":"2016-12-04T03:29:45.039Z", + "new_balance":"5427.76", + "value":"-7.19" + } + }, + { + "id":"a5d452a8-9cad-40f5-9632-cda77a3f253b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2016-12-19T12:02:00.360Z", + "completed":"2016-12-19T12:02:00.360Z", + "new_balance":"5421.23", + "value":"-6.53" + } + }, + { + "id":"23ce88fa-a919-48eb-8bc7-4f6c9cf904d8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2016-12-24T06:44:44.678Z", + "completed":"2016-12-24T06:44:44.678Z", + "new_balance":"5420.89", + "value":"-0.34" + } + }, + { + "id":"3135995b-6344-4f8f-9709-547b37701e37", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2016-12-24T12:23:21.547Z", + "completed":"2016-12-24T12:23:21.547Z", + "new_balance":"5420.24", + "value":"-0.65" + } + }, + { + "id":"32225484-7e36-48a3-8985-c3d3a9a9b8c8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2016-12-28T01:40:09.513Z", + "completed":"2016-12-28T01:40:09.513Z", + "new_balance":"5397.00", + "value":"-23.24" + } + }, + { + "id":"fd746c04-2ad4-4519-b61c-7c334b690172", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2016-12-28T06:05:51.378Z", + "completed":"2016-12-28T06:05:51.378Z", + "new_balance":"5383.90", + "value":"-13.10" + } + }, + { + "id":"f23c76c0-55c7-4326-82da-ff1e044c2665", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2016-12-28T13:53:31.654Z", + "completed":"2016-12-28T13:53:31.654Z", + "new_balance":"5379.63", + "value":"-4.27" + } + }, + { + "id":"3edcc225-50ed-47ec-b904-88b5bf6ef139", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2016-12-29T02:26:12.434Z", + "completed":"2016-12-29T02:26:12.434Z", + "new_balance":"5379.29", + "value":"-0.34" + } + }, + { + "id":"71bc9c62-3bcb-4f3f-94e4-bed0c2302127", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2016-12-30T06:59:23.168Z", + "completed":"2016-12-30T06:59:23.168Z", + "new_balance":"5374.68", + "value":"-4.61" + } + }, + { + "id":"09881a11-f6ae-4132-8b47-0981769ca840", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2016-12-30T09:57:13.060Z", + "completed":"2016-12-30T09:57:13.060Z", + "new_balance":"5374.03", + "value":"-0.65" + } + }, + { + "id":"5dc5b1af-4a07-4492-9dc7-bded250f5a87", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2016-12-30T15:48:18.900Z", + "completed":"2016-12-30T15:48:18.900Z", + "new_balance":"5371.71", + "value":"-2.32" + } + }, + { + "id":"2f4dde83-d219-4859-8860-9b9cfc09929c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7712139", + "posted":"2017-03-01T06:49:57.009Z", + "completed":"2017-03-01T06:49:57.009Z", + "new_balance":"5367.10", + "value":"-4.61" + } + }, + { + "id":"78d6859e-fc23-4c3d-a79b-debcea99f533", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695831", + "posted":"2017-03-02T01:35:33.611Z", + "completed":"2017-03-02T01:35:33.611Z", + "new_balance":"5359.91", + "value":"-7.19" + } + }, + { + "id":"1fd05b19-7ee1-44ec-b47f-3e6f343d2a86", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC3421711", + "posted":"2017-03-06T16:47:09.337Z", + "completed":"2017-03-06T16:47:09.337Z", + "new_balance":"5353.38", + "value":"-6.53" + } + }, + { + "id":"60840545-1828-4530-bc4c-9d2d7e143ded", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1225656", + "posted":"2017-03-11T22:11:43.509Z", + "completed":"2017-03-11T22:11:43.509Z", + "new_balance":"5352.73", + "value":"-0.65" + } + }, + { + "id":"aa6af343-47dd-461a-afc9-543b3c805202", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1776843", + "posted":"2017-03-13T06:32:03.629Z", + "completed":"2017-03-13T06:32:03.629Z", + "new_balance":"5352.39", + "value":"-0.34" + } + }, + { + "id":"ae4e8be3-46fe-4e99-aea4-027fa23a9ab7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Amazon" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8755412", + "posted":"2017-03-16T16:52:26.149Z", + "completed":"2017-03-16T16:52:26.149Z", + "new_balance":"5329.15", + "value":"-23.24" + } + }, + { + "id":"f59cd970-c6b9-4830-bf38-0708db638ceb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0066915", + "posted":"2017-03-17T02:58:27.703Z", + "completed":"2017-03-17T02:58:27.703Z", + "new_balance":"5316.05", + "value":"-13.10" + } + }, + { + "id":"ba53c199-7ba7-47c2-b831-49f2f057d474", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC7655412", + "posted":"2017-03-17T04:22:06.652Z", + "completed":"2017-03-17T04:22:06.652Z", + "new_balance":"5311.78", + "value":"-4.27" + } + }, + { + "id":"e1bf92cb-bc41-4fed-bea4-0058b35b2a0d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1406843", + "posted":"2017-03-19T04:00:57.813Z", + "completed":"2017-03-19T04:00:57.813Z", + "new_balance":"5311.44", + "value":"-0.34" + } + }, + { + "id":"f90a0927-eb5a-466a-82c9-52e3612b6b78", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC7714143", + "posted":"2017-03-21T20:07:34.461Z", + "completed":"2017-03-21T20:07:34.461Z", + "new_balance":"5309.12", + "value":"-2.32" + } + }, + { + "id":"8bb7f1d8-5f5b-447b-b5df-d533c42a9216", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC70595431", + "posted":"2017-03-23T16:00:12.687Z", + "completed":"2017-03-23T16:00:12.687Z", + "new_balance":"5304.51", + "value":"-4.61" + } + }, + { + "id":"cefc2fed-b062-4331-a620-9d7524973fd8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6146612", + "posted":"2017-03-24T19:22:24.752Z", + "completed":"2017-03-24T19:22:24.752Z", + "new_balance":"5303.86", + "value":"-0.65" + } + }, + { + "id":"d549cfcc-61d3-4abf-b733-7a20d95c3a0c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1421712", + "posted":"2017-03-26T18:19:34.504Z", + "completed":"2017-03-26T18:19:34.504Z", + "new_balance":"5302.71", + "value":"-1.15" + } + }, + { + "id":"b231cc8d-ea97-4414-9451-48b970f1f885", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432872", + "posted":"2017-04-01T00:56:45.419Z", + "completed":"2017-04-01T00:56:45.419Z", + "new_balance":"5301.56", + "value":"-1.15" + } + }, + { + "id":"7edf8d34-9545-4489-b14c-04b6d9caddbe", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC80895431", + "posted":"2017-06-01T01:46:42.970Z", + "completed":"2017-06-01T01:46:42.970Z", + "new_balance":"5296.95", + "value":"-4.61" + } + }, + { + "id":"171702a7-35e7-46be-8e1e-aea49ce06ef8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC1695432", + "posted":"2017-06-04T19:37:57.512Z", + "completed":"2017-06-04T19:37:57.512Z", + "new_balance":"5289.76", + "value":"-7.19" + } + }, + { + "id":"1cd87043-426d-4648-a016-574e373cbca4", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC1235412", + "posted":"2017-06-19T17:58:09.128Z", + "completed":"2017-06-19T17:58:09.128Z", + "new_balance":"5283.23", + "value":"-6.53" + } + }, + { + "id":"bc87b8b7-0bc3-495b-b167-1687bcbbdb06", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC2347651", + "posted":"2017-06-21T15:12:03.451Z", + "completed":"2017-06-21T15:12:03.451Z", + "new_balance":"5282.58", + "value":"-0.65" + } + }, + { + "id":"5501238f-0179-46f4-b43d-30001645c231", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5431124", + "posted":"2017-06-24T18:47:52.488Z", + "completed":"2017-06-24T18:47:52.488Z", + "new_balance":"5282.24", + "value":"-0.34" + } + }, + { + "id":"bddc711c-2eed-405e-807e-81a08e8be3ea", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant Ref CC5455412", + "posted":"2017-06-28T04:14:04.169Z", + "completed":"2017-06-28T04:14:04.169Z", + "new_balance":"5277.97", + "value":"-4.27" + } + }, + { + "id":"9f204422-0725-4a92-a63e-28b4cc3ab46c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC7645331", + "posted":"2017-06-28T05:51:14.922Z", + "completed":"2017-06-28T05:51:14.922Z", + "new_balance":"5264.87", + "value":"-13.10" + } + }, + { + "id":"2b10395e-2ee4-4375-9725-51a303edc9a6", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8089531", + "posted":"2017-06-28T06:14:59.774Z", + "completed":"2017-06-28T06:14:59.774Z", + "new_balance":"5241.63", + "value":"-23.24" + } + }, + { + "id":"606c1e29-d2d9-4ec4-a36b-8f32f7d78194", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5131124", + "posted":"2017-06-29T06:31:35.268Z", + "completed":"2017-06-29T06:31:35.268Z", + "new_balance":"5241.29", + "value":"-0.34" + } + }, + { + "id":"6910f444-b4e9-460c-9476-ccf5199c40a5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC4532111", + "posted":"2017-06-30T05:17:44.335Z", + "completed":"2017-06-30T05:17:44.335Z", + "new_balance":"5240.64", + "value":"-0.65" + } + }, + { + "id":"f2a59c5c-94f4-48aa-a627-a335951eafde", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC2214143", + "posted":"2017-06-30T15:49:26.024Z", + "completed":"2017-06-30T15:49:26.024Z", + "new_balance":"5238.32", + "value":"-2.32" + } + }, + { + "id":"36766d2e-501b-49b4-8629-0063b560dd73", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC5656121", + "posted":"2017-06-30T19:14:51.024Z", + "completed":"2017-06-30T19:14:51.024Z", + "new_balance":"5233.71", + "value":"-4.61" + } + }, + { + "id":"6d83a136-e70c-4a7f-9656-26076812a353", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097864", + "posted":"2017-09-01T11:01:02.956Z", + "completed":"2017-09-01T11:01:02.956Z", + "new_balance":"5231.86", + "value":"-1.85" + } + }, + { + "id":"08c4814a-943d-454e-9da9-4780e95a902d", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station Ref CC8895831", + "posted":"2017-09-02T07:54:31.031Z", + "completed":"2017-09-02T07:54:31.031Z", + "new_balance":"5224.67", + "value":"-7.19" + } + }, + { + "id":"61aaa258-974f-407c-b006-723076be29f7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971342", + "posted":"2017-09-07T01:38:57.197Z", + "completed":"2017-09-07T01:38:57.197Z", + "new_balance":"5218.14", + "value":"-6.53" + } + }, + { + "id":"531e0b89-f96c-476d-8658-9f7d3e1e76a8", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1265481", + "posted":"2017-09-11T01:13:19.104Z", + "completed":"2017-09-11T01:13:19.104Z", + "new_balance":"5217.49", + "value":"-0.65" + } + }, + { + "id":"463d9f9b-e9b5-455c-b91c-c3d8c5bf43d3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1290843", + "posted":"2017-09-15T06:36:42.986Z", + "completed":"2017-09-15T06:36:42.986Z", + "new_balance":"5216.09", + "value":"-1.40" + } + }, + { + "id":"8e9025bb-9412-4b6e-b784-e1e6f7ce9925", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"Restaurant CC1456239", + "posted":"2017-09-17T02:17:23.003Z", + "completed":"2017-09-17T02:17:23.003Z", + "new_balance":"5211.82", + "value":"-4.27" + } + }, + { + "id":"f569a92e-52ac-4326-90b7-56d07fb734be", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC3766864", + "posted":"2017-09-17T06:28:50.511Z", + "completed":"2017-09-17T06:28:50.511Z", + "new_balance":"5198.72", + "value":"-13.10" + } + }, + { + "id":"6ebece39-4fe1-415b-ab59-be90731d80b5", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8797864", + "posted":"2017-09-17T10:33:18.830Z", + "completed":"2017-09-17T10:33:18.830Z", + "new_balance":"5175.48", + "value":"-23.24" + } + }, + { + "id":"1529a73a-d8ad-46ff-865d-860fc3b2c6ba", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC1256843", + "posted":"2017-09-19T09:31:13.788Z", + "completed":"2017-09-19T09:31:13.788Z", + "new_balance":"5175.14", + "value":"-0.34" + } + }, + { + "id":"2feb7869-8e8a-4477-bcf5-b34247d05d1c", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC0126384", + "posted":"2017-09-21T03:06:00.658Z", + "completed":"2017-09-21T03:06:00.658Z", + "new_balance":"5172.82", + "value":"-2.32" + } + }, + { + "id":"99aeaa93-39e6-4295-8c35-0e19263a340e", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC8794125", + "posted":"2017-09-23T10:48:33.372Z", + "completed":"2017-09-23T10:48:33.372Z", + "new_balance":"5168.21", + "value":"-4.61" + } + }, + { + "id":"61d432f4-847b-41ce-98b2-855cdddfcda3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC6759031", + "posted":"2017-09-24T13:35:24.824Z", + "completed":"2017-09-24T13:35:24.824Z", + "new_balance":"5167.56", + "value":"-0.65" + } + }, + { + "id":"761e0fc7-7632-4875-963e-e00eb7635448", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5971542", + "posted":"2017-09-27T21:37:53.272Z", + "completed":"2017-09-27T21:37:53.272Z", + "new_balance":"5166.41", + "value":"-1.15" + } + }, + { + "id":"ec63c150-b2a5-4e88-b971-2773a8902131", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC5432871", + "posted":"2017-10-01T21:13:36.126Z", + "completed":"2017-10-01T21:13:36.126Z", + "new_balance":"5165.26", + "value":"-1.15" + } + }, + { + "id":"51b9c7d0-1b66-4313-a517-a8d4a2aa3e17", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC6797804", + "posted":"2017-12-01T06:18:31.340Z", + "completed":"2017-12-01T06:18:31.340Z", + "new_balance":"5160.65", + "value":"-4.61" + } + }, + { + "id":"ae3719ca-8369-4b5e-aec8-9064d567e791", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station CC6784305", + "posted":"2017-12-04T17:36:43.454Z", + "completed":"2017-12-04T17:36:43.454Z", + "new_balance":"5153.46", + "value":"-7.19" + } + }, + { + "id":"0151f947-6a45-4b28-b0c1-d513ecf7b955", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Peninsula" + }, + "details":{ + "type":"10218", + "description":"Bar Ref CC6784321", + "posted":"2017-12-19T10:19:49.471Z", + "completed":"2017-12-19T10:19:49.471Z", + "new_balance":"5146.93", + "value":"-6.53" + } + }, + { + "id":"dec22126-0ad7-4a6e-9148-f0b661eff4cc", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578951", + "posted":"2017-12-24T01:36:27.383Z", + "completed":"2017-12-24T01:36:27.383Z", + "new_balance":"5146.59", + "value":"-0.34" + } + }, + { + "id":"ebadb793-4731-4956-8b5c-024589b46edb", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Food Panda" + }, + "details":{ + "type":"10218", + "description":"Takeway Ref CC1115656", + "posted":"2017-12-24T23:58:25.516Z", + "completed":"2017-12-24T23:58:25.516Z", + "new_balance":"5145.94", + "value":"-0.65" + } + }, + { + "id":"613e1ef8-b830-4d49-8e43-540185837cd2", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Blue Nile" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC0097804", + "posted":"2017-12-28T04:04:32.242Z", + "completed":"2017-12-28T04:04:32.242Z", + "new_balance":"5122.70", + "value":"-23.24" + } + }, + { + "id":"e29fd47b-4024-4e21-83fa-cb7548b905f3", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Zara" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC4453211", + "posted":"2017-12-28T17:22:56.100Z", + "completed":"2017-12-28T17:22:56.100Z", + "new_balance":"5109.60", + "value":"-13.10" + } + }, + { + "id":"02b12587-843f-4caa-8b81-07319412a46f", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Little Bao" + }, + "details":{ + "type":"10218", + "description":"resturant Ref CC5987661", + "posted":"2017-12-28T22:39:36.407Z", + "completed":"2017-12-28T22:39:36.407Z", + "new_balance":"5105.33", + "value":"-4.27" + } + }, + { + "id":"304d398e-c5d1-478c-a790-bc917a2e1ed7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Starbucks" + }, + "details":{ + "type":"10218", + "description":"coffee Ref CC5578151", + "posted":"2017-12-29T14:08:42.713Z", + "completed":"2017-12-29T14:08:42.713Z", + "new_balance":"5104.99", + "value":"-0.34" + } + }, + { + "id":"01431f90-a831-46d9-bf52-ee71b3c0dac6", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"City Super" + }, + "details":{ + "type":"10218", + "description":"Shopping Ref CC1132387", + "posted":"2017-12-30T00:16:15.155Z", + "completed":"2017-12-30T00:16:15.155Z", + "new_balance":"5100.38", + "value":"-4.61" + } + }, + { + "id":"53c862c3-4e66-46bf-9f95-6d38b2217f9b", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"The Grand Cinema" + }, + "details":{ + "type":"10218", + "description":"Cinema Ref CC4976651", + "posted":"2017-12-30T05:11:21.279Z", + "completed":"2017-12-30T05:11:21.279Z", + "new_balance":"5098.06", + "value":"-2.32" + } + }, + { + "id":"7f2494d9-d7cf-43b2-a2aa-b60c3671e9e7", + "this_account":{ + "id":"f9c3e804-6aed-43fd-b129-103d80db6af2", + "bank":"hsbc.01.hk.hsbc" + }, + "counterparty":{ + "name":"Mack Car Park" + }, + "details":{ + "type":"10218", + "description":"Parking Ref CC7846612", + "posted":"2017-12-30T10:07:09.543Z", + "completed":"2017-12-30T10:07:09.543Z", + "new_balance":"5097.41", + "value":"-0.65" + } + }, + { + "id":"f9a55fc2-3e09-4269-a80a-96b506aa33c6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-03-01T03:06:45.017Z", + "completed":"2016-03-01T03:06:45.017Z", + "new_balance":"6871.54", + "value":"-317.21" + } + }, + { + "id":"46b6b150-2234-4e9e-bc62-24fe9e32df58", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-03-01T04:05:35.267Z", + "completed":"2016-03-01T04:05:35.267Z", + "new_balance":"6673.63", + "value":"-197.91" + } + }, + { + "id":"9ad11c8e-2ed8-40c1-a6a9-2f508a0633f2", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2016-03-01T05:12:12.675Z", + "completed":"2016-03-01T05:12:12.675Z", + "new_balance":"4042.42", + "value":"-2631.21" + } + }, + { + "id":"4717b1d3-f04c-4780-b227-b756e281c9ee", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-03-01T19:46:27.595Z", + "completed":"2016-03-01T19:46:27.595Z", + "new_balance":"3878.94", + "value":"-163.48" + } + }, + { + "id":"35ab2cba-8135-4912-81bb-0273bb963e9a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2016-03-01T22:18:25.179Z", + "completed":"2016-03-01T22:18:25.179Z", + "new_balance":"185.17", + "value":"-3693.77" + } + }, + { + "id":"ea98e92a-1f5c-4365-9584-77430a72e2d9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-03-01T22:58:47.270Z", + "completed":"2016-03-01T22:58:47.270Z", + "new_balance":"-546.68", + "value":"-731.85" + } + }, + { + "id":"3f7ee0be-cc9e-44ee-a827-8719031f4f5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-03-12T02:28:44.542Z", + "completed":"2016-03-12T02:28:44.542Z", + "new_balance":"-1278.53", + "value":"-731.85" + } + }, + { + "id":"07c5f5fe-1f86-427e-9c9a-1844d88b63c7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-03-12T09:33:59.461Z", + "completed":"2016-03-12T09:33:59.461Z", + "new_balance":"-1325.43", + "value":"-46.90" + } + }, + { + "id":"92f14620-8391-40dd-9c2b-e7102534039d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-03-12T14:58:51.899Z", + "completed":"2016-03-12T14:58:51.899Z", + "new_balance":"-1642.64", + "value":"-317.21" + } + }, + { + "id":"b5ed4c84-65cb-4349-a5b1-214218bebb8f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-03-12T18:36:37.398Z", + "completed":"2016-03-12T18:36:37.398Z", + "new_balance":"-1695.82", + "value":"-53.18" + } + }, + { + "id":"4e5eac22-a649-46c9-ae8f-eaa11d5c4569", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-14T01:20:44.609Z", + "completed":"2016-03-14T01:20:44.609Z", + "new_balance":"195.50", + "value":"1891.32" + } + }, + { + "id":"5f759919-3b2c-4a1c-8b6e-02abb7545d7f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-15T06:36:33.221Z", + "completed":"2016-03-15T06:36:33.221Z", + "new_balance":"422.89", + "value":"227.39" + } + }, + { + "id":"2cd93d52-663e-468f-b6d6-b1a4dc225f99", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-03-16T00:04:28.472Z", + "completed":"2016-03-16T00:04:28.472Z", + "new_balance":"1323.87", + "value":"900.98" + } + }, + { + "id":"ccbe13c6-ace3-4156-ab02-5d3696bc54a3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T02:42:24.448Z", + "completed":"2016-03-17T02:42:24.448Z", + "new_balance":"1272.77", + "value":"-51.10" + } + }, + { + "id":"fffd7d60-b724-4940-b99d-d899aa46a49d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-17T12:51:01.327Z", + "completed":"2016-03-17T12:51:01.327Z", + "new_balance":"1193.69", + "value":"-79.08" + } + }, + { + "id":"f798d84a-66aa-45c4-b7cc-140be808662b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-19T22:04:10.271Z", + "completed":"2016-03-19T22:04:10.271Z", + "new_balance":"1643.69", + "value":"450.00" + } + }, + { + "id":"d3e92458-f2e8-42b0-a3b7-a9344f427d30", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-03-21T10:04:36.988Z", + "completed":"2016-03-21T10:04:36.988Z", + "new_balance":"1569.76", + "value":"-73.93" + } + }, + { + "id":"38143be1-bcdf-49e0-bf2f-0c1c7ab0feda", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-21T20:00:35.700Z", + "completed":"2016-03-21T20:00:35.700Z", + "new_balance":"1631.01", + "value":"61.25" + } + }, + { + "id":"aebf2662-7579-42dc-bd47-62c434752bd8", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-24T01:04:25.151Z", + "completed":"2016-03-24T01:04:25.151Z", + "new_balance":"1858.40", + "value":"227.39" + } + }, + { + "id":"3c84fb8b-7336-4168-9498-645d66afa679", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-24T14:16:51.033Z", + "completed":"2016-03-24T14:16:51.033Z", + "new_balance":"1331.84", + "value":"-526.56" + } + }, + { + "id":"1400c624-31a5-4545-bf38-a10f11894c7c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-03-25T05:32:07.166Z", + "completed":"2016-03-25T05:32:07.166Z", + "new_balance":"664.69", + "value":"-667.15" + } + }, + { + "id":"6ad60b55-7762-4507-8d97-a7a1533e6f64", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-25T09:10:56.505Z", + "completed":"2016-03-25T09:10:56.505Z", + "new_balance":"1118.34", + "value":"453.65" + } + }, + { + "id":"ab917bc8-4ad4-4f5b-80fb-20bc17cfe445", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T11:46:02.146Z", + "completed":"2016-03-28T11:46:02.146Z", + "new_balance":"3009.66", + "value":"1891.32" + } + }, + { + "id":"9a60b892-baaa-48b4-9cdb-9a0e8d0d81b9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-28T14:57:04.912Z", + "completed":"2016-03-28T14:57:04.912Z", + "new_balance":"6092.53", + "value":"3082.87" + } + }, + { + "id":"89576027-cdfc-47e8-9275-2fb16d93a6da", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T03:39:54.574Z", + "completed":"2016-03-30T03:39:54.574Z", + "new_balance":"6320.15", + "value":"227.62" + } + }, + { + "id":"154b6e69-ddd3-4457-8279-cb2970ee8eae", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-03-30T16:02:11.558Z", + "completed":"2016-03-30T16:02:11.558Z", + "new_balance":"6547.54", + "value":"227.39" + } + }, + { + "id":"6ef305c7-3b69-4a53-8880-65d89579bec7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-06-01T00:24:52.486Z", + "completed":"2016-06-01T00:24:52.486Z", + "new_balance":"6230.33", + "value":"-317.21" + } + }, + { + "id":"294ecc63-7dff-4068-b2e7-6e515377f8b6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-06-01T01:02:46.683Z", + "completed":"2016-06-01T01:02:46.683Z", + "new_balance":"6032.42", + "value":"-197.91" + } + }, + { + "id":"c81ae1e7-a7d5-446d-a36f-dc8273bfc7e1", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-01T07:57:49.098Z", + "completed":"2016-06-01T07:57:49.098Z", + "new_balance":"5868.94", + "value":"-163.48" + } + }, + { + "id":"332f640d-c071-43d5-9f04-bc6c44a0ee51", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2016-06-01T16:56:01.175Z", + "completed":"2016-06-01T16:56:01.175Z", + "new_balance":"3237.73", + "value":"-2631.21" + } + }, + { + "id":"a367e3f6-5deb-4c4c-8f54-3fb0c1f1a79d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2016-06-01T17:57:28.796Z", + "completed":"2016-06-01T17:57:28.796Z", + "new_balance":"-456.04", + "value":"-3693.77" + } + }, + { + "id":"b5c04f15-5ff3-4d2c-bcdc-2df1ef0cb941", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-06-01T22:23:19.133Z", + "completed":"2016-06-01T22:23:19.133Z", + "new_balance":"-1187.89", + "value":"-731.85" + } + }, + { + "id":"af31eca7-7719-4454-9789-7a1f8b421249", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T01:41:21.505Z", + "completed":"2016-06-04T01:41:21.505Z", + "new_balance":"-1241.07", + "value":"-53.18" + } + }, + { + "id":"adb5b19f-345f-456d-8b83-11f6d3e93662", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-06-04T04:50:22.824Z", + "completed":"2016-06-04T04:50:22.824Z", + "new_balance":"-1287.97", + "value":"-46.90" + } + }, + { + "id":"15212088-b8e3-4ca0-b411-b890ab0d5105", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-06-05T09:44:55.254Z", + "completed":"2016-06-05T09:44:55.254Z", + "new_balance":"-1605.18", + "value":"-317.21" + } + }, + { + "id":"2dd83170-4a01-4284-8c61-1ea9001d50ee", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-06-05T19:45:31.295Z", + "completed":"2016-06-05T19:45:31.295Z", + "new_balance":"-2337.03", + "value":"-731.85" + } + }, + { + "id":"d8a9bc02-136a-4e38-a640-b7162ceebb8d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T09:16:43.298Z", + "completed":"2016-06-07T09:16:43.298Z", + "new_balance":"-445.71", + "value":"1891.32" + } + }, + { + "id":"2616e105-ab0a-4220-a1f9-c616ae93275d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T13:36:20.168Z", + "completed":"2016-06-07T13:36:20.168Z", + "new_balance":"-218.32", + "value":"227.39" + } + }, + { + "id":"e94dd737-1464-425c-b323-61197c436660", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-06-07T16:10:35.544Z", + "completed":"2016-06-07T16:10:35.544Z", + "new_balance":"682.66", + "value":"900.98" + } + }, + { + "id":"52bbd0d8-67e5-4830-b964-2405ea5bffdd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-07T17:46:23.157Z", + "completed":"2016-06-07T17:46:23.157Z", + "new_balance":"631.56", + "value":"-51.10" + } + }, + { + "id":"7808f1e8-69e7-49e7-94bd-0654da95cf7a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-11T15:47:22.117Z", + "completed":"2016-06-11T15:47:22.117Z", + "new_balance":"552.48", + "value":"-79.08" + } + }, + { + "id":"c650722e-2fb3-42cd-9995-a1e0b4b4fd2a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T01:45:10.608Z", + "completed":"2016-06-14T01:45:10.608Z", + "new_balance":"1002.48", + "value":"450.00" + } + }, + { + "id":"5ff1d0c8-ded0-4153-b030-f94b5f9b53aa", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T08:11:47.829Z", + "completed":"2016-06-14T08:11:47.829Z", + "new_balance":"1063.73", + "value":"61.25" + } + }, + { + "id":"93fd321c-7db1-4b9c-91d2-beae29c3c786", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-14T12:49:39.148Z", + "completed":"2016-06-14T12:49:39.148Z", + "new_balance":"989.80", + "value":"-73.93" + } + }, + { + "id":"b3f338cb-96e8-4668-b225-74d3a0815899", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-16T12:24:49.589Z", + "completed":"2016-06-16T12:24:49.589Z", + "new_balance":"1217.19", + "value":"227.39" + } + }, + { + "id":"3a14f4e4-0d6c-4a56-8cc8-10b6b7b26da7", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-16T15:45:36.018Z", + "completed":"2016-06-16T15:45:36.018Z", + "new_balance":"690.63", + "value":"-526.56" + } + }, + { + "id":"c0ab3f4b-4e14-40c9-938a-df96f08db404", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-06-21T01:27:29.207Z", + "completed":"2016-06-21T01:27:29.207Z", + "new_balance":"23.48", + "value":"-667.15" + } + }, + { + "id":"b6ff2ead-a268-48f4-9c59-974b32796816", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T11:03:16.593Z", + "completed":"2016-06-21T11:03:16.593Z", + "new_balance":"1914.80", + "value":"1891.32" + } + }, + { + "id":"af0e2cd4-f206-4a8b-9739-3a26ad871359", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T15:48:11.566Z", + "completed":"2016-06-21T15:48:11.566Z", + "new_balance":"4997.67", + "value":"3082.87" + } + }, + { + "id":"52b60e59-a1d0-447a-92e8-4601fda7fd84", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-21T23:55:10.685Z", + "completed":"2016-06-21T23:55:10.685Z", + "new_balance":"5451.32", + "value":"453.65" + } + }, + { + "id":"f3155648-7bf2-4a17-8f11-cdbec580c219", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T14:25:54.268Z", + "completed":"2016-06-30T14:25:54.268Z", + "new_balance":"5678.71", + "value":"227.39" + } + }, + { + "id":"13c66ed3-f985-4fd8-8884-162f5d26bb24", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-06-30T17:04:18.381Z", + "completed":"2016-06-30T17:04:18.381Z", + "new_balance":"5906.33", + "value":"227.62" + } + }, + { + "id":"655651fe-9fbb-4cb8-af4d-1912f19054f3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-09-01T01:26:18.985Z", + "completed":"2016-09-01T01:26:18.985Z", + "new_balance":"5708.42", + "value":"-197.91" + } + }, + { + "id":"f04191ea-b54e-4764-81b9-f2bee52d6360", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2016-09-01T05:22:30.334Z", + "completed":"2016-09-01T05:22:30.334Z", + "new_balance":"3077.21", + "value":"-2631.21" + } + }, + { + "id":"ceee26ee-1544-4aea-af1d-8c53c266469b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-09-01T08:17:02.284Z", + "completed":"2016-09-01T08:17:02.284Z", + "new_balance":"2345.36", + "value":"-731.85" + } + }, + { + "id":"ec619507-5321-4b85-80ab-471df407dee3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2016-09-01T15:18:57.081Z", + "completed":"2016-09-01T15:18:57.081Z", + "new_balance":"2181.88", + "value":"-163.48" + } + }, + { + "id":"d565ff1f-269a-4066-8391-e76e1ceb1d6a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-09-01T17:57:54.757Z", + "completed":"2016-09-01T17:57:54.757Z", + "new_balance":"1864.67", + "value":"-317.21" + } + }, + { + "id":"c54cf744-0f34-4a07-9d86-09c94c7dcf17", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2016-09-01T18:54:07.274Z", + "completed":"2016-09-01T18:54:07.274Z", + "new_balance":"-1829.10", + "value":"-3693.77" + } + }, + { + "id":"6a7e38bf-d6cc-4791-9fb6-da94cccf1114", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-09-12T01:15:07.627Z", + "completed":"2016-09-12T01:15:07.627Z", + "new_balance":"-2146.31", + "value":"-317.21" + } + }, + { + "id":"b96402b7-8e9f-400f-96aa-774e37343302", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-09-12T09:21:38.863Z", + "completed":"2016-09-12T09:21:38.863Z", + "new_balance":"-2193.21", + "value":"-46.90" + } + }, + { + "id":"7e85e267-b93b-4906-9cc9-8e4b00280c1b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2016-09-12T13:08:33.924Z", + "completed":"2016-09-12T13:08:33.924Z", + "new_balance":"-2246.39", + "value":"-53.18" + } + }, + { + "id":"a43dd407-2288-42c0-babf-8de64bce225d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-09-12T19:59:14.884Z", + "completed":"2016-09-12T19:59:14.884Z", + "new_balance":"-2978.24", + "value":"-731.85" + } + }, + { + "id":"bea37dee-f9b3-4bf3-9fb4-bb99e0154f5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T06:39:10.603Z", + "completed":"2016-09-15T06:39:10.603Z", + "new_balance":"-2750.85", + "value":"227.39" + } + }, + { + "id":"b3fb82ca-cfbb-4aa3-b307-497bb3fb9702", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-15T13:47:30.370Z", + "completed":"2016-09-15T13:47:30.370Z", + "new_balance":"-859.53", + "value":"1891.32" + } + }, + { + "id":"b175c78e-f5b2-4f93-ace6-ea9f4647cbc3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-09-17T01:31:18.777Z", + "completed":"2016-09-17T01:31:18.777Z", + "new_balance":"41.45", + "value":"900.98" + } + }, + { + "id":"2947142f-776a-45a6-b12f-4d1e888be7db", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T12:17:57.316Z", + "completed":"2016-09-17T12:17:57.316Z", + "new_balance":"-9.65", + "value":"-51.10" + } + }, + { + "id":"331aa50e-d544-49a2-9405-28ab80d65a9b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-17T17:41:10.650Z", + "completed":"2016-09-17T17:41:10.650Z", + "new_balance":"-88.73", + "value":"-79.08" + } + }, + { + "id":"c588887c-9a97-48b4-8aac-f01b36ecf424", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-19T11:27:52.162Z", + "completed":"2016-09-19T11:27:52.162Z", + "new_balance":"361.27", + "value":"450.00" + } + }, + { + "id":"0558a3bd-841b-413d-b707-489663572673", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-21T18:11:35.705Z", + "completed":"2016-09-21T18:11:35.705Z", + "new_balance":"422.52", + "value":"61.25" + } + }, + { + "id":"3c14b400-8e52-4247-845a-787841cc8988", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2016-09-21T22:02:52.578Z", + "completed":"2016-09-21T22:02:52.578Z", + "new_balance":"348.59", + "value":"-73.93" + } + }, + { + "id":"9d943f2f-c25b-4451-9bcc-4147b99370c9", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-24T22:08:00.542Z", + "completed":"2016-09-24T22:08:00.542Z", + "new_balance":"575.98", + "value":"227.39" + } + }, + { + "id":"c35f26cf-db3b-41a7-b344-b5990ff84a6c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-24T23:50:51.122Z", + "completed":"2016-09-24T23:50:51.122Z", + "new_balance":"49.42", + "value":"-526.56" + } + }, + { + "id":"9585987f-4af6-4942-b7cc-70a874189eab", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-09-25T07:57:02.616Z", + "completed":"2016-09-25T07:57:02.616Z", + "new_balance":"-617.73", + "value":"-667.15" + } + }, + { + "id":"88f54cfb-affb-40aa-ad4c-9db959195848", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-25T13:18:15.461Z", + "completed":"2016-09-25T13:18:15.461Z", + "new_balance":"-164.08", + "value":"453.65" + } + }, + { + "id":"4cd29c3e-43dd-49b4-ac4e-a6f28c4230bd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T14:08:17.084Z", + "completed":"2016-09-28T14:08:17.084Z", + "new_balance":"1727.24", + "value":"1891.32" + } + }, + { + "id":"b563b62a-61db-47d7-8358-7f850dc3e641", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-28T19:50:47.314Z", + "completed":"2016-09-28T19:50:47.314Z", + "new_balance":"4810.11", + "value":"3082.87" + } + }, + { + "id":"196aa069-6600-41e5-81c9-cf8d34b4ac5e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T14:17:04.867Z", + "completed":"2016-09-30T14:17:04.867Z", + "new_balance":"5037.50", + "value":"227.39" + } + }, + { + "id":"19a735ea-4581-4078-9dbb-d9a608fa0bf4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-09-30T22:49:21.672Z", + "completed":"2016-09-30T22:49:21.672Z", + "new_balance":"5265.12", + "value":"227.62" + } + }, + { + "id":"e628358b-a1aa-41c8-a151-ce7c87492ffc", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2016-12-01T06:36:45.794Z", + "completed":"2016-12-01T06:36:45.794Z", + "new_balance":"2633.91", + "value":"-2631.21" + } + }, + { + "id":"720a8a01-8332-4c69-ba06-8f1eb350b2a4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2016-12-01T12:26:13.557Z", + "completed":"2016-12-01T12:26:13.557Z", + "new_balance":"2436.00", + "value":"-197.91" + } + }, + { + "id":"b2948071-12a2-461c-944c-e67d3fe0233a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2016-12-01T16:34:11.006Z", + "completed":"2016-12-01T16:34:11.006Z", + "new_balance":"1704.15", + "value":"-731.85" + } + }, + { + "id":"209bf902-de6a-4cbc-9d99-49c396a39b45", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2016-12-01T19:36:39.054Z", + "completed":"2016-12-01T19:36:39.054Z", + "new_balance":"1386.94", + "value":"-317.21" + } + }, + { + "id":"e5bd803c-4da9-4985-88db-2b44d9185592", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2016-12-01T21:41:21.396Z", + "completed":"2016-12-01T21:41:21.396Z", + "new_balance":"-2306.83", + "value":"-3693.77" + } + }, + { + "id":"0770452f-d7ee-4c4a-aa0d-1cf914c0b996", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-01T21:43:44.761Z", + "completed":"2016-12-01T21:43:44.761Z", + "new_balance":"-2470.31", + "value":"-163.48" + } + }, + { + "id":"f4e77bb3-d381-47ef-a148-dbde1185e2cb", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T01:55:57.495Z", + "completed":"2016-12-04T01:55:57.495Z", + "new_balance":"-2523.49", + "value":"-53.18" + } + }, + { + "id":"5c06b7f8-515d-4c66-a9f7-c555f5d84b5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2016-12-04T06:42:08.384Z", + "completed":"2016-12-04T06:42:08.384Z", + "new_balance":"-2570.39", + "value":"-46.90" + } + }, + { + "id":"4f69c2c7-ac3c-432f-b765-a1bd89fd533d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2016-12-05T00:35:20.814Z", + "completed":"2016-12-05T00:35:20.814Z", + "new_balance":"-3302.24", + "value":"-731.85" + } + }, + { + "id":"6d606cd2-5d82-405c-9253-d1a792858c04", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2016-12-05T12:47:26.381Z", + "completed":"2016-12-05T12:47:26.381Z", + "new_balance":"-3619.45", + "value":"-317.21" + } + }, + { + "id":"0d477e46-6b5c-4192-bf15-69ac700aabbc", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T03:45:38.234Z", + "completed":"2016-12-07T03:45:38.234Z", + "new_balance":"-3670.55", + "value":"-51.10" + } + }, + { + "id":"90c461f5-10db-4fc8-9993-f712d0ada28a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2016-12-07T11:20:07.469Z", + "completed":"2016-12-07T11:20:07.469Z", + "new_balance":"-2769.57", + "value":"900.98" + } + }, + { + "id":"72a3b05d-5f4a-440f-9539-939e53385111", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T17:46:51.498Z", + "completed":"2016-12-07T17:46:51.498Z", + "new_balance":"-878.25", + "value":"1891.32" + } + }, + { + "id":"6582a5db-da7c-4fc7-afd3-bfcaef3e6007", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-07T22:50:24.016Z", + "completed":"2016-12-07T22:50:24.016Z", + "new_balance":"-650.86", + "value":"227.39" + } + }, + { + "id":"886968cc-06ed-4d3d-b354-f29a1c486975", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-11T01:55:26.796Z", + "completed":"2016-12-11T01:55:26.796Z", + "new_balance":"-729.94", + "value":"-79.08" + } + }, + { + "id":"25d5dd39-b894-4125-92f3-b480b79cb536", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T09:15:47.494Z", + "completed":"2016-12-14T09:15:47.494Z", + "new_balance":"-668.69", + "value":"61.25" + } + }, + { + "id":"c8a9d767-d05e-4f64-8422-18445f610748", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T10:06:56.299Z", + "completed":"2016-12-14T10:06:56.299Z", + "new_balance":"-742.62", + "value":"-73.93" + } + }, + { + "id":"c5dc11e5-b816-4f5f-ac93-dfc5a2959a90", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-14T15:21:47.742Z", + "completed":"2016-12-14T15:21:47.742Z", + "new_balance":"-292.62", + "value":"450.00" + } + }, + { + "id":"66b0db08-f94d-4b92-bb35-d915b8e14f74", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-16T01:12:11.514Z", + "completed":"2016-12-16T01:12:11.514Z", + "new_balance":"-819.18", + "value":"-526.56" + } + }, + { + "id":"9fea5c37-370b-4f28-80e2-21de423e7bdb", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-16T20:31:31.636Z", + "completed":"2016-12-16T20:31:31.636Z", + "new_balance":"-591.79", + "value":"227.39" + } + }, + { + "id":"3afbef63-7cb2-47b7-88c7-a59c6b748d61", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T05:16:45.958Z", + "completed":"2016-12-21T05:16:45.958Z", + "new_balance":"1299.53", + "value":"1891.32" + } + }, + { + "id":"ac1a15e8-d15d-4fe7-b0d0-5903260e1071", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T12:55:41.449Z", + "completed":"2016-12-21T12:55:41.449Z", + "new_balance":"1753.18", + "value":"453.65" + } + }, + { + "id":"b8e9b0be-66ac-4afb-9bac-e68c05ff5d08", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2016-12-21T21:28:39.886Z", + "completed":"2016-12-21T21:28:39.886Z", + "new_balance":"1086.03", + "value":"-667.15" + } + }, + { + "id":"192ffd80-d3a4-411d-8f38-d4e86f678306", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-21T22:05:32.639Z", + "completed":"2016-12-21T22:05:32.639Z", + "new_balance":"4168.90", + "value":"3082.87" + } + }, + { + "id":"7e05a982-8dbc-41fd-9746-248df984a71d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T18:30:15.569Z", + "completed":"2016-12-30T18:30:15.569Z", + "new_balance":"4396.29", + "value":"227.39" + } + }, + { + "id":"40fe3a8c-31a4-4112-90b9-b728d7dbc2ef", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2016-12-30T22:30:34.928Z", + "completed":"2016-12-30T22:30:34.928Z", + "new_balance":"4623.91", + "value":"227.62" + } + }, + { + "id":"500c7396-2a99-4473-ac29-10b5fc1ba03d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-03-01T00:53:41.673Z", + "completed":"2017-03-01T00:53:41.673Z", + "new_balance":"3892.06", + "value":"-731.85" + } + }, + { + "id":"6de7069f-f1a5-4e8e-a2b3-a92201000aba", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-03-01T03:14:14.937Z", + "completed":"2017-03-01T03:14:14.937Z", + "new_balance":"3694.15", + "value":"-197.91" + } + }, + { + "id":"48154e4a-af8b-407e-af57-ba766f21277c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref QW164924", + "posted":"2017-03-01T07:10:36.168Z", + "completed":"2017-03-01T07:10:36.168Z", + "new_balance":"0.38", + "value":"-3693.77" + } + }, + { + "id":"0cd4014c-3c43-40de-8939-8d66ca541c09", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-03-01T07:47:42.044Z", + "completed":"2017-03-01T07:47:42.044Z", + "new_balance":"-316.83", + "value":"-317.21" + } + }, + { + "id":"2dbcd8e8-290e-4e99-9ea9-edf123c179ad", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-03-01T21:01:48.014Z", + "completed":"2017-03-01T21:01:48.014Z", + "new_balance":"-480.31", + "value":"-163.48" + } + }, + { + "id":"a8cf8c38-98c7-4c08-a9ab-bd50b16f8bba", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref TF950134", + "posted":"2017-03-01T21:11:08.435Z", + "completed":"2017-03-01T21:11:08.435Z", + "new_balance":"-3111.52", + "value":"-2631.21" + } + }, + { + "id":"e263fced-7f92-4e08-89ad-88fd2647fba6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-03-12T05:43:21.337Z", + "completed":"2017-03-12T05:43:21.337Z", + "new_balance":"-3428.73", + "value":"-317.21" + } + }, + { + "id":"b3bf0be9-8232-475d-88df-83ac440ecf27", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-03-12T10:03:57.322Z", + "completed":"2017-03-12T10:03:57.322Z", + "new_balance":"-4160.58", + "value":"-731.85" + } + }, + { + "id":"a1c926f8-3b47-47f5-9812-178c6508b424", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-03-12T10:36:45.244Z", + "completed":"2017-03-12T10:36:45.244Z", + "new_balance":"-4207.48", + "value":"-46.90" + } + }, + { + "id":"f39daa91-6171-432a-be68-1dbf29af8b4a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-03-12T22:54:05.618Z", + "completed":"2017-03-12T22:54:05.618Z", + "new_balance":"-4260.66", + "value":"-53.18" + } + }, + { + "id":"4da1690c-be79-4c9d-9dc6-888d88e0d675", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-14T13:16:09.297Z", + "completed":"2017-03-14T13:16:09.297Z", + "new_balance":"-2369.34", + "value":"1891.32" + } + }, + { + "id":"d90f9887-3ec5-46a4-ba88-4ee0f9c1cf21", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-15T12:48:28.690Z", + "completed":"2017-03-15T12:48:28.690Z", + "new_balance":"-2141.95", + "value":"227.39" + } + }, + { + "id":"116bf671-ce7a-4eb2-b61d-2eeb25d691c2", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-03-16T20:35:03.733Z", + "completed":"2017-03-16T20:35:03.733Z", + "new_balance":"-1240.97", + "value":"900.98" + } + }, + { + "id":"1601457f-46b3-49c4-8d41-3209d9b71f70", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T02:27:39.443Z", + "completed":"2017-03-17T02:27:39.443Z", + "new_balance":"-1320.05", + "value":"-79.08" + } + }, + { + "id":"6ed0773e-ace4-4b22-b5be-796ae6bbbe94", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-17T22:19:38.245Z", + "completed":"2017-03-17T22:19:38.245Z", + "new_balance":"-1371.15", + "value":"-51.10" + } + }, + { + "id":"6fea2ba6-708d-47a7-a910-f71c65838545", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-19T15:13:50.323Z", + "completed":"2017-03-19T15:13:50.323Z", + "new_balance":"-921.15", + "value":"450.00" + } + }, + { + "id":"97a67ba2-bd60-411f-bea2-38742bf59e3d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-21T09:54:26.625Z", + "completed":"2017-03-21T09:54:26.625Z", + "new_balance":"-859.90", + "value":"61.25" + } + }, + { + "id":"ab39e64d-c57d-4139-bf4c-e98ec602148c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-03-21T21:14:55.011Z", + "completed":"2017-03-21T21:14:55.011Z", + "new_balance":"-933.83", + "value":"-73.93" + } + }, + { + "id":"a1bf75ea-8ef2-4d2e-ba6c-eb87baee19a0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-24T03:32:35.804Z", + "completed":"2017-03-24T03:32:35.804Z", + "new_balance":"-1460.39", + "value":"-526.56" + } + }, + { + "id":"05aa8e56-e7fa-4e00-8ae4-49fac878d59c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-24T04:55:42.452Z", + "completed":"2017-03-24T04:55:42.452Z", + "new_balance":"-1233.00", + "value":"227.39" + } + }, + { + "id":"61cd3ee6-35b4-4908-a251-2a2d472277af", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-03-25T14:42:58.528Z", + "completed":"2017-03-25T14:42:58.528Z", + "new_balance":"-1900.15", + "value":"-667.15" + } + }, + { + "id":"cff891a8-45aa-49e9-ae0d-13c90c0725ef", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-25T14:55:56.179Z", + "completed":"2017-03-25T14:55:56.179Z", + "new_balance":"-1446.50", + "value":"453.65" + } + }, + { + "id":"24027688-437e-4fb0-a03c-849c5fa34ab3", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T06:08:26.228Z", + "completed":"2017-03-28T06:08:26.228Z", + "new_balance":"1636.37", + "value":"3082.87" + } + }, + { + "id":"0a01a80e-c31d-4a18-a28f-bf444cd73f9d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-28T15:51:30.437Z", + "completed":"2017-03-28T15:51:30.437Z", + "new_balance":"3527.69", + "value":"1891.32" + } + }, + { + "id":"26491beb-5293-4432-964a-af53da2efc2f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T13:49:14.719Z", + "completed":"2017-03-30T13:49:14.719Z", + "new_balance":"3755.08", + "value":"227.39" + } + }, + { + "id":"1ae861f6-1a39-49c5-b172-70273efbce36", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-03-30T22:58:39.512Z", + "completed":"2017-03-30T22:58:39.512Z", + "new_balance":"3982.70", + "value":"227.62" + } + }, + { + "id":"3ed5010c-afd3-43a9-9876-10bfa1ff8172", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-06-01T00:58:39.086Z", + "completed":"2017-06-01T00:58:39.086Z", + "new_balance":"3665.49", + "value":"-317.21" + } + }, + { + "id":"cd406e3d-dcb5-4d4b-91eb-33d9e850b34c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-01T10:33:38.362Z", + "completed":"2017-06-01T10:33:38.362Z", + "new_balance":"3502.01", + "value":"-163.48" + } + }, + { + "id":"686cb028-f9dc-438b-86d9-40ddd8fce56f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-06-01T14:00:56.466Z", + "completed":"2017-06-01T14:00:56.466Z", + "new_balance":"3304.10", + "value":"-197.91" + } + }, + { + "id":"d248af47-9673-4d48-9b95-26fdf57d6a5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-06-01T15:36:09.331Z", + "completed":"2017-06-01T15:36:09.331Z", + "new_balance":"2572.25", + "value":"-731.85" + } + }, + { + "id":"41157019-8a88-4d8b-bf47-7ee779785e5a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG90112", + "posted":"2017-06-01T17:52:08.561Z", + "completed":"2017-06-01T17:52:08.561Z", + "new_balance":"-1121.52", + "value":"-3693.77" + } + }, + { + "id":"f847a37d-df9c-4137-bbd5-8c3a0d41d75c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref FG76912", + "posted":"2017-06-01T18:51:40.027Z", + "completed":"2017-06-01T18:51:40.027Z", + "new_balance":"-3752.73", + "value":"-2631.21" + } + }, + { + "id":"b84ad335-532d-44e5-a73c-a47e26358962", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T06:29:52.625Z", + "completed":"2017-06-04T06:29:52.625Z", + "new_balance":"-3805.91", + "value":"-53.18" + } + }, + { + "id":"be388de7-7c43-4594-ac0a-07a5d860c584", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-06-04T14:17:01.606Z", + "completed":"2017-06-04T14:17:01.606Z", + "new_balance":"-3852.81", + "value":"-46.90" + } + }, + { + "id":"9ab10e1d-05fc-48d9-8b1c-f0538f759b5d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-06-05T06:13:55.910Z", + "completed":"2017-06-05T06:13:55.910Z", + "new_balance":"-4584.66", + "value":"-731.85" + } + }, + { + "id":"5b3d19e4-4f0b-4ca7-9796-bc58fb93ab18", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-06-05T20:33:12.465Z", + "completed":"2017-06-05T20:33:12.465Z", + "new_balance":"-4901.87", + "value":"-317.21" + } + }, + { + "id":"87b43d16-b2f2-4aa4-8b5a-192a0676541b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T08:58:50.342Z", + "completed":"2017-06-07T08:58:50.342Z", + "new_balance":"-4674.48", + "value":"227.39" + } + }, + { + "id":"d6678d23-a409-45b6-a75e-96c13aad037a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-06-07T10:45:11.205Z", + "completed":"2017-06-07T10:45:11.205Z", + "new_balance":"-3773.50", + "value":"900.98" + } + }, + { + "id":"fef2020c-2343-4862-8337-6736de36654a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T11:31:38.848Z", + "completed":"2017-06-07T11:31:38.848Z", + "new_balance":"-1882.18", + "value":"1891.32" + } + }, + { + "id":"b02d245d-7187-4ae3-83fc-27025c586fbe", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-07T15:49:09.618Z", + "completed":"2017-06-07T15:49:09.618Z", + "new_balance":"-1933.28", + "value":"-51.10" + } + }, + { + "id":"38258084-dd58-455b-8228-029618883a1b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-11T16:00:59.199Z", + "completed":"2017-06-11T16:00:59.199Z", + "new_balance":"-2012.36", + "value":"-79.08" + } + }, + { + "id":"e2c8fd66-8bda-49fe-befd-9cb8cf78551e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T10:36:06.739Z", + "completed":"2017-06-14T10:36:06.739Z", + "new_balance":"-1951.11", + "value":"61.25" + } + }, + { + "id":"48cb12c4-41c7-41d9-862f-1abe28337ce8", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T13:31:46.131Z", + "completed":"2017-06-14T13:31:46.131Z", + "new_balance":"-2025.04", + "value":"-73.93" + } + }, + { + "id":"540f8d2a-cff6-402e-9d7d-0496d702aa5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-14T16:56:25.004Z", + "completed":"2017-06-14T16:56:25.004Z", + "new_balance":"-1575.04", + "value":"450.00" + } + }, + { + "id":"f149fffd-5966-4f66-af14-6712628eff68", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-16T06:21:40.161Z", + "completed":"2017-06-16T06:21:40.161Z", + "new_balance":"-2101.60", + "value":"-526.56" + } + }, + { + "id":"6c0e8d5b-db81-48c5-bd07-633078486c34", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-16T17:04:58.931Z", + "completed":"2017-06-16T17:04:58.931Z", + "new_balance":"-1874.21", + "value":"227.39" + } + }, + { + "id":"2342e7c7-639f-456b-a52c-9d9f01248467", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T16:45:04.201Z", + "completed":"2017-06-21T16:45:04.201Z", + "new_balance":"17.11", + "value":"1891.32" + } + }, + { + "id":"175db885-2c68-4136-a6b8-b519416889d0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T17:13:50.415Z", + "completed":"2017-06-21T17:13:50.415Z", + "new_balance":"3099.98", + "value":"3082.87" + } + }, + { + "id":"8776ccde-5ca4-4354-a694-6827ec458a65", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-06-21T18:34:30.806Z", + "completed":"2017-06-21T18:34:30.806Z", + "new_balance":"2432.83", + "value":"-667.15" + } + }, + { + "id":"907e8bce-de0d-4748-a2d2-1134865136e4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-21T20:37:27.723Z", + "completed":"2017-06-21T20:37:27.723Z", + "new_balance":"2886.48", + "value":"453.65" + } + }, + { + "id":"cbd59d50-84f6-47fb-92d8-bf6f0bd20055", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T04:14:35.039Z", + "completed":"2017-06-30T04:14:35.039Z", + "new_balance":"3114.10", + "value":"227.62" + } + }, + { + "id":"06ac444d-9de1-4ef0-945a-6760ece9e38a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-06-30T21:59:26.756Z", + "completed":"2017-06-30T21:59:26.756Z", + "new_balance":"3341.49", + "value":"227.39" + } + }, + { + "id":"b75c5e96-223b-4eb8-9bd2-63c51aec1793", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-09-01T03:50:00.267Z", + "completed":"2017-09-01T03:50:00.267Z", + "new_balance":"3143.58", + "value":"-197.91" + } + }, + { + "id":"0261f85f-be8b-4d7f-b299-135ab0744e2a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"British Telecom" + }, + "details":{ + "type":"10218", + "description":"BT", + "posted":"2017-09-01T05:37:03.548Z", + "completed":"2017-09-01T05:37:03.548Z", + "new_balance":"2980.10", + "value":"-163.48" + } + }, + { + "id":"ddd5586c-8ecd-42f0-ba5b-2f1a4021b39b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref PT563127", + "posted":"2017-09-01T06:46:55.138Z", + "completed":"2017-09-01T06:46:55.138Z", + "new_balance":"348.89", + "value":"-2631.21" + } + }, + { + "id":"5275514a-7288-422f-a4f1-a6aaab3a8a5d", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-09-01T13:14:46.651Z", + "completed":"2017-09-01T13:14:46.651Z", + "new_balance":"31.68", + "value":"-317.21" + } + }, + { + "id":"6c646b52-48e6-47c6-858e-e8191451aab0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-09-01T15:31:50.331Z", + "completed":"2017-09-01T15:31:50.331Z", + "new_balance":"-700.17", + "value":"-731.85" + } + }, + { + "id":"a2dc9889-ffb2-45df-b516-3aae73be3e5f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref ED453127", + "posted":"2017-09-01T23:20:23.191Z", + "completed":"2017-09-01T23:20:23.191Z", + "new_balance":"-4393.94", + "value":"-3693.77" + } + }, + { + "id":"93aa0932-626a-4d2d-a8f9-2108679d6a89", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Shell Filling Station" + }, + "details":{ + "type":"10218", + "description":"Filling Station", + "posted":"2017-09-12T03:31:27.921Z", + "completed":"2017-09-12T03:31:27.921Z", + "new_balance":"-4447.12", + "value":"-53.18" + } + }, + { + "id":"ba6581f8-cf2f-4668-a521-6a3cfa0a67b5", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-09-12T03:57:55.277Z", + "completed":"2017-09-12T03:57:55.277Z", + "new_balance":"-5178.97", + "value":"-731.85" + } + }, + { + "id":"05dc36c4-e436-43e0-a59d-3aa968f944b6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-09-12T22:14:16.638Z", + "completed":"2017-09-12T22:14:16.638Z", + "new_balance":"-5225.87", + "value":"-46.90" + } + }, + { + "id":"698a355b-acb1-4826-ba19-155747f3c00c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-09-12T22:55:35.069Z", + "completed":"2017-09-12T22:55:35.069Z", + "new_balance":"-5543.08", + "value":"-317.21" + } + }, + { + "id":"476d9e54-44cb-45e1-bee8-6d71dad72807", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T17:06:27.617Z", + "completed":"2017-09-15T17:06:27.617Z", + "new_balance":"-3651.76", + "value":"1891.32" + } + }, + { + "id":"2773467e-d5b0-44ba-97a4-0257fe8d19dd", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-15T19:37:34.885Z", + "completed":"2017-09-15T19:37:34.885Z", + "new_balance":"-3424.37", + "value":"227.39" + } + }, + { + "id":"81341af6-cf65-406d-96eb-a785ee828b83", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T11:19:25.183Z", + "completed":"2017-09-17T11:19:25.183Z", + "new_balance":"-3503.45", + "value":"-79.08" + } + }, + { + "id":"fbbe45fd-9984-4907-9f86-352fa06f05a4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-17T12:54:37.518Z", + "completed":"2017-09-17T12:54:37.518Z", + "new_balance":"-3554.55", + "value":"-51.10" + } + }, + { + "id":"676db106-93a1-49f3-8d4a-4f0a8ca1e9d5", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-09-17T15:40:55.240Z", + "completed":"2017-09-17T15:40:55.240Z", + "new_balance":"-2653.57", + "value":"900.98" + } + }, + { + "id":"c5019a81-b3cf-4c1b-b38b-5db286a5354c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-19T18:23:29.163Z", + "completed":"2017-09-19T18:23:29.163Z", + "new_balance":"-2203.57", + "value":"450.00" + } + }, + { + "id":"281a2b1f-4239-4e38-89c4-939188c9dbe4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-21T15:05:57.845Z", + "completed":"2017-09-21T15:05:57.845Z", + "new_balance":"-2142.32", + "value":"61.25" + } + }, + { + "id":"22ddd208-7f23-4ec1-9f25-2253baa20028", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"Mobile", + "posted":"2017-09-21T18:53:36.579Z", + "completed":"2017-09-21T18:53:36.579Z", + "new_balance":"-2216.25", + "value":"-73.93" + } + }, + { + "id":"c8f88baf-437b-47dd-98da-79c01c4f319c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-24T00:42:45.118Z", + "completed":"2017-09-24T00:42:45.118Z", + "new_balance":"-1988.86", + "value":"227.39" + } + }, + { + "id":"fd76d565-4b20-49f4-9bcb-2436f1d82670", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-24T23:06:52.985Z", + "completed":"2017-09-24T23:06:52.985Z", + "new_balance":"-2515.42", + "value":"-526.56" + } + }, + { + "id":"b976a502-682d-43ec-9216-2c29754584b0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-09-25T08:48:03.982Z", + "completed":"2017-09-25T08:48:03.982Z", + "new_balance":"-3182.57", + "value":"-667.15" + } + }, + { + "id":"0562db56-65af-4875-8b4d-75869faf11d0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-25T12:41:21.646Z", + "completed":"2017-09-25T12:41:21.646Z", + "new_balance":"-2728.92", + "value":"453.65" + } + }, + { + "id":"a381a0a7-aec0-434e-a06c-8b42fe411d33", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T08:40:36.975Z", + "completed":"2017-09-28T08:40:36.975Z", + "new_balance":"-837.60", + "value":"1891.32" + } + }, + { + "id":"0b457a40-19d0-4c68-8fdf-cdf418dc69e0", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-28T12:33:42.232Z", + "completed":"2017-09-28T12:33:42.232Z", + "new_balance":"2245.27", + "value":"3082.87" + } + }, + { + "id":"82399570-ee96-4105-ba7b-9434b788fad4", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T00:33:13.566Z", + "completed":"2017-09-30T00:33:13.566Z", + "new_balance":"2472.66", + "value":"227.39" + } + }, + { + "id":"e39ca9b9-d3a0-499f-8068-3b0bfe83c82a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-09-30T08:54:58.108Z", + "completed":"2017-09-30T08:54:58.108Z", + "new_balance":"2700.28", + "value":"227.62" + } + }, + { + "id":"19f1e5b2-ae05-4c82-a509-82901fb2f95b", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rent" + }, + "details":{ + "type":"10218", + "description":"Rent", + "posted":"2017-12-01T00:40:50.003Z", + "completed":"2017-12-01T00:40:50.003Z", + "new_balance":"1968.43", + "value":"-731.85" + } + }, + { + "id":"2b0406fe-f003-46b5-a8a8-cf936141b91e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-01T02:00:21.996Z", + "completed":"2017-12-01T02:00:21.996Z", + "new_balance":"1804.95", + "value":"-163.48" + } + }, + { + "id":"2eec1798-cc07-4874-8d99-570341334392", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"SSE" + }, + "details":{ + "type":"10218", + "description":"Gas/Elec", + "posted":"2017-12-01T06:54:45.063Z", + "completed":"2017-12-01T06:54:45.063Z", + "new_balance":"1487.74", + "value":"-317.21" + } + }, + { + "id":"76060008-ecc8-47e8-84ac-c14cba088f6f", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mr R Turner" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref GY674312", + "posted":"2017-12-01T09:24:08.107Z", + "completed":"2017-12-01T09:24:08.107Z", + "new_balance":"-1143.47", + "value":"-2631.21" + } + }, + { + "id":"4d323b15-a5ed-4564-93e8-a157b1d77505", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Salary Mrs F White" + }, + "details":{ + "type":"10218", + "description":"Transfer Ref KK198436", + "posted":"2017-12-01T13:03:30.553Z", + "completed":"2017-12-01T13:03:30.553Z", + "new_balance":"-4837.24", + "value":"-3693.77" + } + }, + { + "id":"fb7659a0-feaf-478d-8f8e-a5af22d70713", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Directline for Business" + }, + "details":{ + "type":"10218", + "description":"Business Rates", + "posted":"2017-12-01T19:22:49.014Z", + "completed":"2017-12-01T19:22:49.014Z", + "new_balance":"-5035.15", + "value":"-197.91" + } + }, + { + "id":"64442c0b-3948-48f5-bb48-68f677520fd6", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Tesco" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T00:52:57.087Z", + "completed":"2017-12-04T00:52:57.087Z", + "new_balance":"-5082.05", + "value":"-46.90" + } + }, + { + "id":"6626bc78-ac63-4c7f-9593-c3d2e83429ff", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Credit Card Visa" + }, + "details":{ + "type":"10218", + "description":"Shopping", + "posted":"2017-12-04T16:24:24.330Z", + "completed":"2017-12-04T16:24:24.330Z", + "new_balance":"-5135.23", + "value":"-53.18" + } + }, + { + "id":"b418ccf6-bd6b-442a-aeef-67ed9a97ae36", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Spa London" + }, + "details":{ + "type":"10218", + "description":"Spa", + "posted":"2017-12-05T03:26:25.715Z", + "completed":"2017-12-05T03:26:25.715Z", + "new_balance":"-5867.08", + "value":"-731.85" + } + }, + { + "id":"9c683d41-c8b9-4c37-a078-091d909f59fa", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"London Eye" + }, + "details":{ + "type":"10218", + "description":"London arttraction", + "posted":"2017-12-05T06:24:10.137Z", + "completed":"2017-12-05T06:24:10.137Z", + "new_balance":"-6184.29", + "value":"-317.21" + } + }, + { + "id":"3affc922-e93b-48ac-9f54-b7024edf2c0e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Corner Store" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T03:27:05.788Z", + "completed":"2017-12-07T03:27:05.788Z", + "new_balance":"-5956.90", + "value":"227.39" + } + }, + { + "id":"73dd924b-bc18-46f1-b64d-0296ac346338", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Savills" + }, + "details":{ + "type":"10218", + "description":"Estate Agent", + "posted":"2017-12-07T16:45:15.471Z", + "completed":"2017-12-07T16:45:15.471Z", + "new_balance":"-5055.92", + "value":"900.98" + } + }, + { + "id":"980a8737-8d07-4703-9e76-f42301f124e1", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Mcdonalds" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T17:15:57.021Z", + "completed":"2017-12-07T17:15:57.021Z", + "new_balance":"-5107.02", + "value":"-51.10" + } + }, + { + "id":"7e015841-a064-4b9f-ac22-50fcd761d85e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Cooper" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-07T21:40:10.203Z", + "completed":"2017-12-07T21:40:10.203Z", + "new_balance":"-3215.70", + "value":"1891.32" + } + }, + { + "id":"bce22101-69f0-4c9c-979a-ab8bd3a90532", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"trainline" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-11T23:05:37.361Z", + "completed":"2017-12-11T23:05:37.361Z", + "new_balance":"-3294.78", + "value":"-79.08" + } + }, + { + "id":"44cd0b0c-d1da-4068-83f7-1c988e2b821a", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Page Family" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T03:33:01.633Z", + "completed":"2017-12-14T03:33:01.633Z", + "new_balance":"-3233.53", + "value":"61.25" + } + }, + { + "id":"40925ab3-bd80-4883-a83c-946099148e71", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Eye Company" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T11:38:54.123Z", + "completed":"2017-12-14T11:38:54.123Z", + "new_balance":"-2783.53", + "value":"450.00" + } + }, + { + "id":"b4d8deec-cbfb-44a8-99c8-837fe3c9b75e", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Orange Mobile" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-14T13:19:28.816Z", + "completed":"2017-12-14T13:19:28.816Z", + "new_balance":"-2857.46", + "value":"-73.93" + } + }, + { + "id":"265a5413-9218-4001-8ff2-e5e68e545401", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Royal Edinburgh hospital" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-16T07:55:35.628Z", + "completed":"2017-12-16T07:55:35.628Z", + "new_balance":"-3384.02", + "value":"-526.56" + } + }, + { + "id":"e59dd2ae-73b8-4a0b-8079-7da4e9dc2c84", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr and Mrs Waterhouse" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-16T11:00:58.664Z", + "completed":"2017-12-16T11:00:58.664Z", + "new_balance":"-3156.63", + "value":"227.39" + } + }, + { + "id":"2df57a9c-7f2b-4876-b933-46840d524e71", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Rainbow hospice" + }, + "details":{ + "type":"10218", + "description":"Transfer", + "posted":"2017-12-21T00:57:29.636Z", + "completed":"2017-12-21T00:57:29.636Z", + "new_balance":"-3823.78", + "value":"-667.15" + } + }, + { + "id":"7ac5078f-01bf-4f82-b74b-aa595b76cb1c", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Keepers arms" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T12:53:50.670Z", + "completed":"2017-12-21T12:53:50.670Z", + "new_balance":"-740.91", + "value":"3082.87" + } + }, + { + "id":"19a6d1e6-3d7a-4d4f-b0e4-9350cb729000", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation The Union" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T13:29:55.857Z", + "completed":"2017-12-21T13:29:55.857Z", + "new_balance":"-287.26", + "value":"453.65" + } + }, + { + "id":"8790c752-04c5-4a4f-abe6-b356775ccd91", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Mr James" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-21T16:22:03.232Z", + "completed":"2017-12-21T16:22:03.232Z", + "new_balance":"1604.06", + "value":"1891.32" + } + }, + { + "id":"0eb02f0f-e619-413e-b51a-b501c24e0715", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Miss Heath" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T01:46:28.984Z", + "completed":"2017-12-30T01:46:28.984Z", + "new_balance":"1831.68", + "value":"227.62" + } + }, + { + "id":"d0922df2-95e0-4ce6-b50c-311fe7302509", + "this_account":{ + "id":"fe7dc8f8-4e18-4bd1-b965-f8cbd4547223", + "bank":"hsbc.01.uk.uk" + }, + "counterparty":{ + "name":"Donation Smile Train" + }, + "details":{ + "type":"10218", + "description":"", + "posted":"2017-12-30T07:31:17.012Z", + "completed":"2017-12-30T07:31:17.012Z", + "new_balance":"2059.07", + "value":"227.39" + } + } + ] +} \ No newline at end of file diff --git a/example_input/users.json b/example_input/users.json new file mode 100644 index 0000000..a480380 --- /dev/null +++ b/example_input/users.json @@ -0,0 +1,54 @@ +{ + "users": [ + { + "user_name": "super.user.1", + "password": "X!16a99a4e", + "email": "super.user.1@x.y" + }, + { + "user_name": "super.user.2", + "password": "X!8bd5ad03", + "email": "super.user.2@x.y" + }, + { + "user_name": "super.user.3", + "password": "X!fd32256a", + "email": "super.user.3@x.y" + }, + { + "user_name": "super.user.4", + "password": "X!fd9f36a7", + "email": "super.user.4@x.y" + }, + { + "user_name": "super.user.5", + "password": "X!b0362f35", + "email": "super.user.5@x.y" + }, + { + "user_name": "super.user.6", + "password": "X!2aa5f9a2", + "email": "super.user.6@x.y" + }, + { + "user_name": "super.user.7", + "password": "X!038fbe24", + "email": "super.user.7@x.y" + }, + { + "user_name": "super.user.8", + "password": "X!bbe98532", + "email": "super.user.8@x.y" + }, + { + "user_name": "super.user.9", + "password": "X!5d064260", + "email": "super.user.9@x.y" + }, + { + "user_name": "super.user.10", + "password": "X!80258f24", + "email": "super.user.10@x.y" + } + ] +} \ No newline at end of file diff --git a/object/Transaction.py b/object/Transaction.py new file mode 100644 index 0000000..b92911e --- /dev/null +++ b/object/Transaction.py @@ -0,0 +1,22 @@ +import json + +class Transaction: + def __init__(self, id, this_account, counterparty, detail): + self.id = id + self.this_account_id = this_account['id'] + self.this_account_bank = this_account['bank'] + self.counterparty = counterparty['name'] + self.detail_type= detail['type'] + self.detail_description= detail['description'] + self.detail_posted= detail['posted'] + self.detail_completed= detail['completed'] + self.detail_new_balance= detail['new_balance'] + self.detail_value= detail['value'] + + @staticmethod + def load(path): + with open(path, encoding="utf-8") as file: + file_content = file.read() + json_object = json.loads(file_content) + return json_object + diff --git a/object/User.py b/object/User.py index 0cf0187..1d4cf0e 100644 --- a/object/User.py +++ b/object/User.py @@ -11,6 +11,9 @@ def __init__(self, user_name, password, email=None): self.user_name = user_name self.password= password self.email = email + name_array = user_name.split('.') + self.first_name =name_array[0] + self.last_name ='.'.join(name_array[1:]) if len(name_array)>1 else '' @staticmethod def load(path): @@ -126,4 +129,46 @@ def __str__(self): return self.user_name+"\t"+self.email def oauth_logout(self): - pass \ No newline at end of file + pass + + def to_json(self): + return { + "email":self.email, + "username":self.user_name, + "password":self.password, + "first_name":self.first_name, + "last_name":self.last_name + } + + def create_user(self, user): + url = settings.API_HOST + "/obp/v2.0.0/users" + result = self.session.request('POST', url, json=user.to_json(), verify=settings.VERIFY) + if result.status_code == 201: + print("saved {} as users".format(user.user_name)) + user_id = json.loads(result.text)['user_id'] + return True, user_id + elif result.status_code == 409 and json.loads(result.text)['message']=='User with the same username already exists.': + print("{} already exists".format(user.user_name)) + url = settings.API_HOST + "/obp/v3.0.0/users/username/{}".format(user.user_name) + result = self.session.request('GET', url, verify=settings.VERIFY) + user_id = json.loads(result.text)['user_id'] + return True, user_id + else: + print("did NOT save customer {}".format( + result.content if result is not None and result.content is not None else "")) + return False, None + + def addRole(self, user_id, role, bank_id=""): + url = settings.API_HOST + "/obp/v2.0.0/users/{}/entitlements".format(user_id) + entitlement = { + "bank_id": bank_id, + "role_name": role + } + result = self.session.request('POST', url, json=entitlement, verify=settings.VERIFY) + if result.status_code == 201: + print("add {} to {} {}".format(role, user_id, bank_id)) + return True + else: + print("did NOT save entitlement {}".format( + result.content if result is not None and result.content is not None else "")) + return False diff --git a/run/CreateUsers.py b/run/CreateUsers.py new file mode 100644 index 0000000..4f3f234 --- /dev/null +++ b/run/CreateUsers.py @@ -0,0 +1,35 @@ +import settings + +import json +from object.User import User + +if __name__=="__main__": + + adminUserUsername = settings.ADMIN_USERNAME + adminPassword = settings.ADMIN_PASSWORD + + print("login as administrator: ") + admin_user = User(adminUserUsername, adminPassword) + session = admin_user.direct_login() + print("ok!!!") + + json_object_user = User.load(settings.FILE_ROOT + "users.json") + url = settings.API_HOST + '/obp/v3.0.0/banks' + result = session.request('GET', url, verify=settings.VERIFY) + banks = [bank['id'] for bank in json.loads(result.content)['banks']] + if 'users' in json_object_user: + users = json_object_user['users'] + for user in users: + user_name = user['user_name'] + password = user['password'] + email = user['email'] + + user_object = User(user_name, password, email) + flag, user_id = admin_user.create_user(user_object) + if flag: + admin_user.addRole(user_id, "CanUseFirehoseAtAnyBank") + admin_user.addRole(user_id, "CanCreateBank") + admin_user.addRole(user_id, "CanCreateAtmAtAnyBank") + for bank_id in banks: + admin_user.addRole(user_id, "CanCreateAccount", bank_id) + admin_user.addRole(user_id, "CanCreateBranch", bank_id) diff --git a/run/TransactionGenerator.py b/run/TransactionGenerator.py new file mode 100644 index 0000000..cd64522 --- /dev/null +++ b/run/TransactionGenerator.py @@ -0,0 +1,11 @@ +import settings +from object.Transaction import Transaction + +if __name__=='__main__': + json_transaction = Transaction.load(settings.FILE_ROOT+"transactions.json") + + if 'transactions' in json_transaction: + transactions = json_transaction['transactions'] + for transaction in transactions: + transaction_object = Transaction(transaction['id'], transaction['this_account'], transaction['counterparty'], transaction['details']) + print(transaction_object.detail_value) \ No newline at end of file From a005f5eee7eeba3d0bf10a85e82e47915d9f23f8 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Mon, 18 Feb 2019 23:56:15 +0800 Subject: [PATCH 6/7] OAUTH_BASE_URL --> REDIRECT_URL --- object/User.py | 2 +- run/CreateUsers.py | 46 ++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 41 insertions(+), 7 deletions(-) diff --git a/object/User.py b/object/User.py index 1d4cf0e..3cdad3d 100644 --- a/object/User.py +++ b/object/User.py @@ -169,6 +169,6 @@ def addRole(self, user_id, role, bank_id=""): print("add {} to {} {}".format(role, user_id, bank_id)) return True else: - print("did NOT save entitlement {}".format( + print("did NOT save {} entitlement {}".format(role, result.content if result is not None and result.content is not None else "")) return False diff --git a/run/CreateUsers.py b/run/CreateUsers.py index 4f3f234..bce630b 100644 --- a/run/CreateUsers.py +++ b/run/CreateUsers.py @@ -3,6 +3,31 @@ import json from object.User import User +exclude_roles = [ + 'CanCreateEntitlementAtAnyBank', + 'CanCreateEntitlementAtOneBank', + 'CanDeleteEntitlementAtAnyBank', + 'CanDeleteEntitlementAtOneBank', + 'CanDeleteEntitlementRequestsAtAnyBank', + 'CanDeleteEntitlementRequestsAtOneBank', + 'CanDeleteScopeAtAnyBank', + 'CanDisableConsumers', + 'CanEnableConsumers', + 'CanCreateSandbox', + 'CanGetAnyUser', + 'CanGetConsumers' +] + +def is_available(role): + if role in exclude_roles: + return False + elif 'scope' in role.lower(): + return False + elif 'entitlement' in role.lower(): + return False + else: + return True + if __name__=="__main__": adminUserUsername = settings.ADMIN_USERNAME @@ -17,6 +42,12 @@ url = settings.API_HOST + '/obp/v3.0.0/banks' result = session.request('GET', url, verify=settings.VERIFY) banks = [bank['id'] for bank in json.loads(result.content)['banks']] + + url = settings.API_HOST + '/obp/v3.1.0/roles' + result = session.request('GET', url, verify=settings.VERIFY) + roles = json.loads(result.content)['roles'] + + if 'users' in json_object_user: users = json_object_user['users'] for user in users: @@ -27,9 +58,12 @@ user_object = User(user_name, password, email) flag, user_id = admin_user.create_user(user_object) if flag: - admin_user.addRole(user_id, "CanUseFirehoseAtAnyBank") - admin_user.addRole(user_id, "CanCreateBank") - admin_user.addRole(user_id, "CanCreateAtmAtAnyBank") - for bank_id in banks: - admin_user.addRole(user_id, "CanCreateAccount", bank_id) - admin_user.addRole(user_id, "CanCreateBranch", bank_id) + for role in roles: + if not is_available(role['role']): + print('{} skip!!!'.format(role['role'])) + continue + if role['requires_bank_id']: + for bank_id in banks: + admin_user.addRole(user_id, role['role'], bank_id) + else: + admin_user.addRole(user_id, role['role']) \ No newline at end of file From 2266f88f35274686c5d47097776acd5850dd0c62 Mon Sep 17 00:00:00 2001 From: PengfeiLi0218 Date: Sat, 23 Feb 2019 10:30:28 +0800 Subject: [PATCH 7/7] get firehose accounts and transactions --- object/User.py | 8 +---- run/GetBranches.py | 45 +++++++++++++++++++++++++++++ run/GetFirehoseAccountsAtOneBank.py | 41 ++++++++++++++++++++++++++ run/PostCounterpartyScript.py | 4 +-- run/PostCustomerScript.py | 6 ++-- 5 files changed, 92 insertions(+), 12 deletions(-) create mode 100644 run/GetBranches.py create mode 100644 run/GetFirehoseAccountsAtOneBank.py diff --git a/object/User.py b/object/User.py index 3cdad3d..5a9bc4d 100644 --- a/object/User.py +++ b/object/User.py @@ -111,13 +111,7 @@ def get_user_private_account(self): def get_user_other_account(self, bank_id, account_id, view_id): - session = OAuth1Session( - settings.OAUTH_CONSUMER_KEY, - settings.OAUTH_CONSUMER_SECRET, - resource_owner_key=self.access_token, - resource_owner_secret=self.access_secret, - ) - result = session.get( + result = self.session.get( settings.API_HOST+"/obp/v3.1.0/banks/"+bank_id+"/accounts/"+account_id+"/"+view_id+"/other_accounts") if result.status_code==200: diff --git a/run/GetBranches.py b/run/GetBranches.py new file mode 100644 index 0000000..6056e06 --- /dev/null +++ b/run/GetBranches.py @@ -0,0 +1,45 @@ +import settings +from object.Branch import Branch +import os +import json + +from object.User import User + +if __name__=='__main__': + if not os.path.exists("data.json"): + json_string, json_atm = Branch.get_branches_from_web("https://www.hsbc.com.hk/personal/contact-us/branch-locator.html") + + with open('data.json', 'w') as outfile: + outfile.write(json_string) + + with open('atm.json', 'w') as outfile: + outfile.write(json_atm) + + with open('data.json') as f: + data = json.load(f) + with open('atm.json') as f: + data_atms = json.load(f) + adminUserUsername = settings.ADMIN_USERNAME + adminPassword = settings.ADMIN_PASSWORD + + print("login as administrator: ") + admin_user = User(adminUserUsername, adminPassword) + + session = admin_user.direct_login() + print("ok!!!") + url = settings.API_HOST + "/obp/v3.1.0/banks/{}/branches".format("hsbc.01.hk.hsbc") + url_atm = settings.API_HOST + "/obp/v3.1.0/banks/{}/atms".format("hsbc.01.hk.hsbc") + for row in data: + result = session.request('POST', url, json=row, verify=settings.VERIFY) + if result.status_code == 201: + print("saved {} as branch".format(row['name'])) + + else: + print("did NOT save branch {}, \nmessage: {}".format(row['name'], result.text)) + for row in data_atms: + result = session.request('POST', url_atm, json=row, verify=settings.VERIFY) + if result.status_code == 201: + print("saved {} as atms".format(row['name'])) + + else: + print("did NOT save atm {}, \nmessage: {}".format(row['name'], result.text)) \ No newline at end of file diff --git a/run/GetFirehoseAccountsAtOneBank.py b/run/GetFirehoseAccountsAtOneBank.py new file mode 100644 index 0000000..6413004 --- /dev/null +++ b/run/GetFirehoseAccountsAtOneBank.py @@ -0,0 +1,41 @@ +import settings +from object.User import User +import json + +if __name__=='__main__': + adminUserUsername = settings.ADMIN_USERNAME + adminPassword = settings.ADMIN_PASSWORD + + print("login as user: ") + admin_user = User(adminUserUsername, adminPassword) + session = admin_user.direct_login() + print("ok!!!") + + url = settings.API_HOST + '/obp/v3.0.0/banks' + result = session.request('GET', url, verify=settings.VERIFY) + banks = [bank['id'] for bank in json.loads(result.content)['banks']] + + for bank in banks: + url = settings.API_HOST + '/obp/v3.0.0/banks/{}/firehose/accounts/views/{}'.format(bank, "owner") + result = session.request('GET', url, verify=settings.VERIFY) + if result.status_code==200: + accounts_list = json.loads(result.content)['accounts'] + for account in accounts_list: + print(json.dumps(account, indent=4)) + firehose_url = settings.API_HOST + '/obp/v3.0.0/banks/{}/firehose/accounts/{}/views/{}/transactions'\ + .format(bank,account['id'], "owner") + firehose_result= session.request('GET', url, verify=settings.VERIFY) + print("firehose transactions:") + if firehose_result.status_code==200: + print(firehose_result.content) + else: + print("{} get failed".format(account['id'])) + + transaction_url = settings.API_HOST + '/obp/v3.0.0/banks/{}/accounts/{}/{}/transactions'\ + .format(bank,account['id'], "owner") + transaction_result = session.request('GET', url, verify=settings.VERIFY) + print("transactions:") + if transaction_result.status_code==200: + print(transaction_result.content) + else: + print("{} get failed".format(account['id'])) \ No newline at end of file diff --git a/run/PostCounterpartyScript.py b/run/PostCounterpartyScript.py index 67614ec..f1d36f8 100644 --- a/run/PostCounterpartyScript.py +++ b/run/PostCounterpartyScript.py @@ -6,11 +6,11 @@ from object.User import User if __name__ == "__main__": - json_object_counterparty= PostCounterparty.load(settings.FILE_ROOT+"OBP_sandbox_counterparties_pretty.json") + json_object_counterparty= PostCounterparty.load(settings.FILE_ROOT+"OBP_sandbox_counterparties_pretty_2.json") counterparty_list = [val for sublist in json_object_counterparty for val in sublist] - json_object_user=User.load(settings.FILE_ROOT+"OBP_sandbox_pretty.json") + json_object_user=User.load(settings.FILE_ROOT+"OBP_sandbox_pretty_2.json") for user_dict in json_object_user['users']: user = User(user_dict['user_name'], user_dict['password'], user_dict['email']) diff --git a/run/PostCustomerScript.py b/run/PostCustomerScript.py index 006bef2..3bdc3f8 100644 --- a/run/PostCustomerScript.py +++ b/run/PostCustomerScript.py @@ -8,7 +8,7 @@ adminUserUsername = settings.ADMIN_USERNAME adminPassword = settings.ADMIN_PASSWORD - json_customers = PostCustomer.load(settings.FILE_ROOT+"OBP_sandbox_customers_pretty.json") + json_customers = PostCustomer.load(settings.FILE_ROOT+"OBP_sandbox_customers_pretty_2.json") print("Got {} records".format(len(json_customers))) @@ -30,12 +30,12 @@ customer['credit_limit'] ) for customer in json_customers] - json_user = User.load(settings.FILE_ROOT+"OBP_sandbox_pretty.json") + json_user = User.load(settings.FILE_ROOT+"OBP_sandbox_pretty_2.json") print("Got {} users".format(len(json_user['users']))) print("login as user: ") admin_user = User(adminUserUsername, adminPassword) - session = admin_user.oauth_login() + session = admin_user.direct_login() print("ok!!!") print("Got {} banks".format(len(json_user['banks'])))